@tailor-platform/sdk 1.76.2 → 1.78.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.
Files changed (88) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/dist/{application-CqjCcZ2n.mjs → application-CUxVA7Fs.mjs} +8 -8
  3. package/dist/application-CUxVA7Fs.mjs.map +1 -0
  4. package/dist/application-Dp_-ioiP.mjs +3 -0
  5. package/dist/cli/commands/deploy/deploy.d.mts +8 -3
  6. package/dist/cli/commands/show.d.mts +9 -3
  7. package/dist/cli/commands/workspace/create.d.mts +3 -0
  8. package/dist/cli/commands/workspace/list.d.mts +1 -0
  9. package/dist/cli/commands/workspace/transform.d.mts +2 -0
  10. package/dist/cli/index.mjs +69 -22
  11. package/dist/cli/index.mjs.map +1 -1
  12. package/dist/cli/lib.d.mts +2 -2
  13. package/dist/cli/lib.mjs +2 -2
  14. package/dist/cli/lib.mjs.map +1 -1
  15. package/dist/cli/shared/workspace-name.d.mts +1 -0
  16. package/dist/cli/skills.mjs +1 -1
  17. package/dist/completion/zsh-worker.zsh +18 -1
  18. package/dist/configure/index.mjs +198 -4
  19. package/dist/configure/index.mjs.map +1 -1
  20. package/dist/configure/services/idp/index.d.mts +1 -4
  21. package/dist/{crashreport-DZDr-TvH.mjs → crashreport-BNWUM6Kf.mjs} +2 -2
  22. package/dist/{crashreport-DZDr-TvH.mjs.map → crashreport-BNWUM6Kf.mjs.map} +1 -1
  23. package/dist/{crashreport-np4-_DX2.mjs → crashreport-BafWvjjX.mjs} +1 -1
  24. package/dist/errors-DVFS0AZk.mjs +100 -0
  25. package/dist/errors-DVFS0AZk.mjs.map +1 -0
  26. package/dist/{globals-z6zYMjlr.mjs → globals-CvizbGLY.mjs} +2 -2
  27. package/dist/{globals-z6zYMjlr.mjs.map → globals-CvizbGLY.mjs.map} +1 -1
  28. package/dist/{logger-BEiZZ3qT.mjs → logger-BwS4ppwO.mjs} +3 -3
  29. package/dist/logger-BwS4ppwO.mjs.map +1 -0
  30. package/dist/{registry-CTgoVWc_.mjs → registry-CYBRvfaU.mjs} +2 -2
  31. package/dist/{registry-CTgoVWc_.mjs.map → registry-CYBRvfaU.mjs.map} +1 -1
  32. package/dist/{runtime-DlklyuHN.mjs → runtime-BD2vYJFT.mjs} +1169 -539
  33. package/dist/runtime-BD2vYJFT.mjs.map +1 -0
  34. package/dist/{schema-DbTR1c6M.mjs → schema-U6DxoZ8D.mjs} +203 -3
  35. package/dist/schema-U6DxoZ8D.mjs.map +1 -0
  36. package/dist/{secretmanager-Bd45j7an.mjs → secretmanager-IY4UvinW.mjs} +42 -9
  37. package/dist/secretmanager-IY4UvinW.mjs.map +1 -0
  38. package/dist/service-CghpdV-9.mjs +3 -0
  39. package/dist/{service-DBFZQloR.mjs → service-Cp0I7ZFe.mjs} +3 -3
  40. package/dist/{service-DBFZQloR.mjs.map → service-Cp0I7ZFe.mjs.map} +1 -1
  41. package/dist/{service-BCRJ-3NV.mjs → service-D12iQGcS.mjs} +2 -2
  42. package/dist/{service-BCRJ-3NV.mjs.map → service-D12iQGcS.mjs.map} +1 -1
  43. package/dist/{test-env-key-IPapa1KJ.mjs → test-env-key-DuZycyWM.mjs} +2 -2
  44. package/dist/{test-env-key-IPapa1KJ.mjs.map → test-env-key-DuZycyWM.mjs.map} +1 -1
  45. package/dist/types/auth.generated.d.mts +9 -36
  46. package/dist/types/executor.generated.d.mts +19 -59
  47. package/dist/types/idp.generated.d.mts +518 -517
  48. package/dist/types/resolver.generated.d.mts +6 -2
  49. package/dist/types/tailordb.generated.d.mts +8 -7
  50. package/dist/utils/test/index.mjs +1 -1
  51. package/dist/vitest/environment.mjs +1 -1
  52. package/dist/vitest/index.d.mts +8 -8
  53. package/dist/vitest/index.mjs +600 -186
  54. package/dist/vitest/index.mjs.map +1 -1
  55. package/dist/vitest/mock.d.mts +8 -8
  56. package/dist/vitest/mocks/aigateway.d.mts +14 -4
  57. package/dist/vitest/mocks/authconnection.d.mts +14 -4
  58. package/dist/vitest/mocks/file.d.mts +24 -6
  59. package/dist/vitest/mocks/iconv.d.mts +28 -4
  60. package/dist/vitest/mocks/idp.d.mts +25 -9
  61. package/dist/vitest/mocks/secretmanager.d.mts +13 -4
  62. package/dist/vitest/mocks/tailordb.d.mts +48 -7
  63. package/dist/vitest/mocks/workflow.d.mts +41 -9
  64. package/dist/vitest/setup.mjs +2 -2
  65. package/docs/cli/application.md +58 -11
  66. package/docs/cli/setup.md +1 -1
  67. package/docs/cli/workspace.md +6 -4
  68. package/docs/cli-reference.md +12 -8
  69. package/docs/runtime.md +3 -4
  70. package/docs/services/aigateway.md +2 -0
  71. package/docs/services/tailordb.md +42 -0
  72. package/docs/services/workflow.md +1 -1
  73. package/docs/testing.md +103 -89
  74. package/package.json +7 -7
  75. package/dist/application-6zsDLGKv.mjs +0 -3
  76. package/dist/application-CqjCcZ2n.mjs.map +0 -1
  77. package/dist/errors-Dtf2WPaW.mjs +0 -42
  78. package/dist/errors-Dtf2WPaW.mjs.map +0 -1
  79. package/dist/field-runtime-D4QWRiB1.mjs +0 -203
  80. package/dist/field-runtime-D4QWRiB1.mjs.map +0 -1
  81. package/dist/logger-BEiZZ3qT.mjs.map +0 -1
  82. package/dist/runtime-DlklyuHN.mjs.map +0 -1
  83. package/dist/schema-DbTR1c6M.mjs.map +0 -1
  84. package/dist/secretmanager-Bd45j7an.mjs.map +0 -1
  85. package/dist/service-CPMlIg3X.mjs +0 -3
  86. package/dist/types-BzJ7A_fn.mjs +0 -199
  87. package/dist/types-BzJ7A_fn.mjs.map +0 -1
  88. package/dist/types-CG9H7HuE.mjs +0 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # @tailor-platform/sdk
2
2
 
3
+ ## 1.78.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1753](https://github.com/tailor-platform/sdk/pull/1753) [`6bff945`](https://github.com/tailor-platform/sdk/commit/6bff94505f3dbe11a8be36ef301e3641ee2cba89) Thanks [@dqn](https://github.com/dqn)! - Add typed, service-specific Vitest mock controls for runtime APIs and update generated project tests to use them.
8
+
9
+ - [#1754](https://github.com/tailor-platform/sdk/pull/1754) [`10392ff`](https://github.com/tailor-platform/sdk/commit/10392ff07fa50d90ba7e4846bf1dc14011dde2eb) Thanks [@dqn](https://github.com/dqn)! - Guide workspace selection and optional creation during deploy when no workspace is configured, with machine-readable recovery actions that preserve environment and profile settings
10
+
11
+ ### Patch Changes
12
+
13
+ - [#1763](https://github.com/tailor-platform/sdk/pull/1763) [`2abbe40`](https://github.com/tailor-platform/sdk/commit/2abbe409ed77eb5e1c50d4aa0b65fbf26843fdb1) Thanks [@dqn](https://github.com/dqn)! - Reduce duplicated schema-derived type declarations.
14
+
15
+ - [#1770](https://github.com/tailor-platform/sdk/pull/1770) [`9ca5eaa`](https://github.com/tailor-platform/sdk/commit/9ca5eaa4c92b699aa49c79913975cdcfd702214d) Thanks [@toiroakr](https://github.com/toiroakr)! - Document the type-level `gqlOperations` feature (`.features({ gqlOperations })`, including the `"query"` read-only alias) and the namespace-level `db.tailordb.gqlOperations` default in `tailor.config.ts`, clarifying that the namespace default also updates types that already exist on the platform.
16
+
17
+ - [#1764](https://github.com/tailor-platform/sdk/pull/1764) [`7895ed6`](https://github.com/tailor-platform/sdk/commit/7895ed621dc87ec0307ddb511307a0daac637556) Thanks [@k1LoW](https://github.com/k1LoW)! - Correct the execution policy matching semantics in the workflow docs: overlapping policies now stack (every matching cap is enforced independently and the tightest blocks), not longest-prefix-wins.
18
+
19
+ ## 1.77.0
20
+
21
+ ### Minor Changes
22
+
23
+ - [#1758](https://github.com/tailor-platform/sdk/pull/1758) [`e596975`](https://github.com/tailor-platform/sdk/commit/e596975eeb4ca1479554f98aaf449b5c21c98610) Thanks [@toiroakr](https://github.com/toiroakr)! - Show the URL of each configured AI Gateway in the `show` command output.
24
+
25
+ ### Patch Changes
26
+
27
+ - [#1717](https://github.com/tailor-platform/sdk/pull/1717) [`34aff11`](https://github.com/tailor-platform/sdk/commit/34aff110c6f2cebd2e86fa82e45216d6360368e1) Thanks [@renovate](https://github.com/apps/renovate)! - fix(deps): update oxc
28
+
3
29
  ## 1.76.2
4
30
 
5
31
  ### Patch Changes
@@ -1,7 +1,7 @@
1
1
  import { n as isSdkBranded } from "./brand-Eo4pLXPJ.mjs";
2
2
  import { t as assertDefined } from "./assert-DBxo8jPo.mjs";
3
- import { a as parseBoolean, n as logger, r as styles } from "./logger-BEiZZ3qT.mjs";
4
- import { a as TailorFieldSchema, i as AuthInvokerSchema, n as ExecutorSchema, o as loadFilesWithIgnores, r as AuthConfigSchema, s as functionSchema, t as createExecutorService } from "./service-BCRJ-3NV.mjs";
3
+ import { a as parseBoolean, n as logger, r as styles } from "./logger-BwS4ppwO.mjs";
4
+ import { a as TailorFieldSchema, i as AuthInvokerSchema, n as ExecutorSchema, o as loadFilesWithIgnores, r as AuthConfigSchema, s as functionSchema, t as createExecutorService } from "./service-D12iQGcS.mjs";
5
5
  import { t as multiline } from "./multiline-sfHpTZZK.mjs";
6
6
  import { t as isPluginGeneratedType } from "./type-source-DH_LH20p.mjs";
7
7
  import { t as userAgent } from "./user-agent-DX2Jnw0-.mjs";
@@ -234,9 +234,9 @@ async function bearerTokenInterceptor(accessToken) {
234
234
  /**
235
235
  * Create an interceptor that retries failed unary requests with backoff.
236
236
  *
237
- * Retries any unary method on `Unavailable`/`ResourceExhausted`, and `Internal`
238
- * only for methods declared idempotent, up to 3 attempts (despite the historical
239
- * "idempotent" naming, the first two codes are retried regardless of idempotency).
237
+ * Retries unary methods on `Unavailable`/`ResourceExhausted`, and `Internal`
238
+ * only for methods declared idempotent, up to 3 attempts. Workspace creation is
239
+ * excluded because it has no idempotency key and a lost response is ambiguous.
240
240
  * As a targeted exception for the deploy/apply flow, a post-retry `AlreadyExists`
241
241
  * from an allowlisted Create (see `RETRY_SAFE_CREATE_METHODS`) is treated as
242
242
  * success, since it means a prior attempt already committed the resource
@@ -261,10 +261,10 @@ function retryInterceptor() {
261
261
  logger.debug(`retry: ${req.method.name} returned AlreadyExists on attempt ${i + 1}; treating as success (prior attempt likely committed)`);
262
262
  return synthesizeEmptyUnaryResponse(req);
263
263
  }
264
- const { reportCrash } = await import("./crashreport-np4-_DX2.mjs");
264
+ const { reportCrash } = await import("./crashreport-BafWvjjX.mjs");
265
265
  await reportCrash(error, "handledError");
266
266
  }
267
- if (isRetirable(error, req.method.idempotency)) {
267
+ if (req.method.name !== "CreateWorkspace" && isRetirable(error, req.method.idempotency)) {
268
268
  lastError = error;
269
269
  logger.debug(`retry: ${req.method.name} attempt ${i + 1} failed with ${connectCodeName(error)}; retrying`);
270
270
  continue;
@@ -5546,4 +5546,4 @@ async function loadApplication(params) {
5546
5546
 
5547
5547
  //#endregion
5548
5548
  export { fetchAllTolerant as A, initOperatorClient as B, createBundleCache as C, closeConnectionPool as D, hashFile as E, getConsoleBaseUrl as F, byName as G, normalizeBaseUrl as H, getOAuth2ClientId as I, LOG_LEVELS as K, getOrNull as L, fetchPaged as M, fetchPlatformMachineUserToken as N, defaultPlatformBaseUrl as O, fetchUserInfo as P, getPlatformBaseUrl as R, hasGenerationHooks as S, hashContent as T, rememberPlatformConfigForToken as U, isDefaultPlatform as V, resolveStaticWebsiteUrls as W, platformBundleDefinePlugin as _, resolveInlineSourcemap as a, resolveBundleLogLevel as b, ResolverSchema as c, buildExecutorArgsExpr as d, buildResolverOperationHookExpr as f, stringifyFunction as g, TailorDBTypeSchema as h, resolverBundleKey as i, fetchMachineUserToken as j, fetchAll as k, HTTP_METHODS as l, assertUniqueTailorDBTypeNamesWithExternal as m, generatePluginFilesIfNeeded as n, WorkflowJobFunctionExecutionPolicySchema as o, assertUniqueLocalTailorDBTypeNames as p, loadApplication as r, WorkflowJobSchema as s, defineApplication as t, INVOKER_EXPR as u, composeFunctionTreeshakeOptions as v, getDistDir as w, getPluginGenerationDependencies as x, createLogLevelTreeshakeOptions as y, initOAuth2Client as z };
5549
- //# sourceMappingURL=application-CqjCcZ2n.mjs.map
5549
+ //# sourceMappingURL=application-CUxVA7Fs.mjs.map