@tailor-platform/create-sdk 1.60.2 → 1.62.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/templates/executor/package.json +1 -1
- package/templates/generators/package.json +1 -1
- package/templates/generators/src/seed/exec.mjs +1 -1
- package/templates/hello-world/package.json +1 -1
- package/templates/inventory-management/package.json +1 -1
- package/templates/multi-application/package.json +1 -1
- package/templates/resolver/package.json +1 -1
- package/templates/static-web-site/package.json +1 -1
- package/templates/tailordb/package.json +1 -1
- package/templates/workflow/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -237,7 +237,7 @@ const appInfo = await show({ configPath, profile: values.profile });
|
|
|
237
237
|
const authNamespace = appInfo.auth;
|
|
238
238
|
|
|
239
239
|
// Initialize operator client (once for all namespaces)
|
|
240
|
-
const accessToken = await loadAccessToken({ profile: values.profile
|
|
240
|
+
const accessToken = await loadAccessToken({ profile: values.profile });
|
|
241
241
|
const workspaceId = await loadWorkspaceId({ profile: values.profile });
|
|
242
242
|
const operatorClient = await initOperatorClient(accessToken);
|
|
243
243
|
|