@tailor-platform/create-sdk 1.60.3 → 1.63.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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @tailor-platform/create-sdk
2
2
 
3
+ ## 1.63.0
4
+
5
+ ## 1.62.0
6
+
7
+ ## 1.61.0
8
+
3
9
  ## 1.60.3
4
10
 
5
11
  ## 1.60.2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tailor-platform/create-sdk",
3
- "version": "1.60.3",
3
+ "version": "1.63.0",
4
4
  "description": "A CLI tool to quickly create a new Tailor Platform SDK project",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -14,7 +14,7 @@
14
14
  "typecheck": "tsc --noEmit"
15
15
  },
16
16
  "devDependencies": {
17
- "@tailor-platform/sdk": "1.60.3",
17
+ "@tailor-platform/sdk": "1.63.0",
18
18
  "@types/node": "24.13.1",
19
19
  "oxfmt": "0.53.0",
20
20
  "oxlint": "1.68.0",
@@ -14,7 +14,7 @@
14
14
  "typecheck": "tsc --noEmit"
15
15
  },
16
16
  "devDependencies": {
17
- "@tailor-platform/sdk": "1.60.3",
17
+ "@tailor-platform/sdk": "1.63.0",
18
18
  "@types/node": "24.13.1",
19
19
  "oxfmt": "0.53.0",
20
20
  "oxlint": "1.68.0",
@@ -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, useProfile: true });
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
 
@@ -12,7 +12,7 @@
12
12
  "typecheck": "tsc --noEmit"
13
13
  },
14
14
  "devDependencies": {
15
- "@tailor-platform/sdk": "1.60.3",
15
+ "@tailor-platform/sdk": "1.63.0",
16
16
  "@types/node": "24.13.1",
17
17
  "oxfmt": "0.53.0",
18
18
  "oxlint": "1.68.0",
@@ -12,7 +12,7 @@
12
12
  "typecheck": "tsc --noEmit"
13
13
  },
14
14
  "devDependencies": {
15
- "@tailor-platform/sdk": "1.60.3",
15
+ "@tailor-platform/sdk": "1.63.0",
16
16
  "@types/node": "24.13.1",
17
17
  "oxfmt": "0.53.0",
18
18
  "oxlint": "1.68.0",
@@ -13,7 +13,7 @@
13
13
  "typecheck": "tsc --noEmit"
14
14
  },
15
15
  "devDependencies": {
16
- "@tailor-platform/sdk": "1.60.3",
16
+ "@tailor-platform/sdk": "1.63.0",
17
17
  "@types/node": "24.13.1",
18
18
  "oxfmt": "0.53.0",
19
19
  "oxlint": "1.68.0",
@@ -14,7 +14,7 @@
14
14
  "typecheck": "tsc --noEmit"
15
15
  },
16
16
  "devDependencies": {
17
- "@tailor-platform/sdk": "1.60.3",
17
+ "@tailor-platform/sdk": "1.63.0",
18
18
  "@types/node": "24.13.1",
19
19
  "oxfmt": "0.53.0",
20
20
  "oxlint": "1.68.0",
@@ -12,7 +12,7 @@
12
12
  "typecheck": "tsc --noEmit"
13
13
  },
14
14
  "devDependencies": {
15
- "@tailor-platform/sdk": "1.60.3",
15
+ "@tailor-platform/sdk": "1.63.0",
16
16
  "@types/node": "24.13.1",
17
17
  "oxfmt": "0.53.0",
18
18
  "oxlint": "1.68.0",
@@ -14,7 +14,7 @@
14
14
  "typecheck": "tsc --noEmit"
15
15
  },
16
16
  "devDependencies": {
17
- "@tailor-platform/sdk": "1.60.3",
17
+ "@tailor-platform/sdk": "1.63.0",
18
18
  "@types/node": "24.13.1",
19
19
  "oxfmt": "0.53.0",
20
20
  "oxlint": "1.68.0",
@@ -53,6 +53,9 @@ export async function setup(project: TestProject): Promise<void> {
53
53
  }
54
54
  createdWorkspace = await setupWorkspace(workspaceName, workspaceRegion);
55
55
  process.env.TAILOR_PLATFORM_WORKSPACE_ID = createdWorkspace.id;
56
+ // This pipeline deploys a fresh app into a per-run workspace, so let the
57
+ // SDK inject a missing app id even in CI (normally a hard error there).
58
+ process.env.TAILOR_PLATFORM_SDK_ALLOW_CI_ID_INJECTION = "true";
56
59
  await deployApplication();
57
60
  }
58
61
 
@@ -15,7 +15,7 @@
15
15
  "typecheck": "tsc --noEmit"
16
16
  },
17
17
  "devDependencies": {
18
- "@tailor-platform/sdk": "1.60.3",
18
+ "@tailor-platform/sdk": "1.63.0",
19
19
  "@types/node": "24.13.1",
20
20
  "graphql": "16.14.1",
21
21
  "graphql-request": "7.4.0",