You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`isReady` and `isConfigured` methods are now optional in the `APL` interface
8
+
- All APL implementations are now exported from dedicated paths `@saleor/app-sdk/APL/*` where `*` is one of the implementations. Now tree shaking is available
@@ -71,7 +71,7 @@ export class EnvAPL implements APL {
71
71
// eslint-disable-next-line no-console
72
72
console.log(JSON.stringify(authData,null,2));
73
73
console.warn(
74
-
"🛑'printAuthDataOnRegister' option should be turned off once APL is configured, to avoid possible leaks"
74
+
"🛑'printAuthDataOnRegister' option should be turned off once APL is configured, to avoid possible leaks",
75
75
);
76
76
}
77
77
debug("Called set method");
@@ -85,7 +85,7 @@ export class EnvAPL implements APL {
85
85
86
86
if(saleorApiUrl!==this.options.env.saleorApiUrl){
87
87
thrownewError(
88
-
`Requested AuthData for domain "${saleorApiUrl}", however APL is configured for ${this.options.env.saleorApiUrl}. You may trying to install app in invalid Saleor URL `
88
+
`Requested AuthData for domain "${saleorApiUrl}", however APL is configured for ${this.options.env.saleorApiUrl}. You may trying to install app in invalid Saleor URL `,
0 commit comments