@tailor-platform/sdk 1.19.0 → 1.20.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 (42) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/dist/{application-A6PZjujv.mjs → application-Bli2ieqY.mjs} +97952 -97659
  3. package/dist/application-Bli2ieqY.mjs.map +1 -0
  4. package/dist/{application-nPS5veK6.mjs → application-CZdieD3K.mjs} +2 -2
  5. package/dist/cli/index.mjs +117 -62
  6. package/dist/cli/index.mjs.map +1 -1
  7. package/dist/cli/lib.d.mts +116 -58
  8. package/dist/cli/lib.mjs +6 -6
  9. package/dist/cli/lib.mjs.map +1 -1
  10. package/dist/cli/skills.mjs +1 -1
  11. package/dist/cli/skills.mjs.map +1 -1
  12. package/dist/configure/index.d.mts +4 -4
  13. package/dist/configure/index.mjs.map +1 -1
  14. package/dist/{index-B91ZpOcd.d.mts → index-B86CIKCW.d.mts} +2 -2
  15. package/dist/{index-B6pvy1MK.d.mts → index-CGjiOz_W.d.mts} +2 -2
  16. package/dist/{index-CPzbMghQ.d.mts → index-CIXOwe6g.d.mts} +2 -2
  17. package/dist/{index-ClLZCbcm.d.mts → index-DcY0e3S5.d.mts} +4 -43
  18. package/dist/{index-DDqKNFh4.d.mts → index-i6QUsr5p.d.mts} +2 -2
  19. package/dist/{package-json-DUY2kB6z.mjs → package-json-3H5gfhA4.mjs} +2 -2
  20. package/dist/package-json-3H5gfhA4.mjs.map +1 -0
  21. package/dist/package-json-DTDAqRRJ.mjs +3 -0
  22. package/dist/plugin/builtin/enum-constants/index.d.mts +2 -2
  23. package/dist/plugin/builtin/file-utils/index.d.mts +2 -2
  24. package/dist/plugin/builtin/kysely-type/index.d.mts +2 -2
  25. package/dist/plugin/builtin/seed/index.d.mts +2 -2
  26. package/dist/plugin/index.d.mts +1 -1
  27. package/dist/telemetry-Dhzj9Ncm.mjs +3 -0
  28. package/dist/{telemetry-rFq0QdvJ.mjs → telemetry-DuBhnd0X.mjs} +2 -2
  29. package/dist/telemetry-DuBhnd0X.mjs.map +1 -0
  30. package/dist/{types-CJF3Y1x8.d.mts → types-C14GuyPI.d.mts} +87 -3
  31. package/dist/{types-CblXasFV.d.mts → types-CNw4p8V7.d.mts} +2 -2
  32. package/dist/{update-Cr5c7h1r.mjs → update-DkpWgrzL.mjs} +338 -160
  33. package/dist/update-DkpWgrzL.mjs.map +1 -0
  34. package/dist/utils/test/index.d.mts +3 -3
  35. package/docs/cli/application.md +2 -0
  36. package/package.json +1 -1
  37. package/dist/application-A6PZjujv.mjs.map +0 -1
  38. package/dist/package-json-DUY2kB6z.mjs.map +0 -1
  39. package/dist/package-json-Dd1AnA5F.mjs +0 -3
  40. package/dist/telemetry-9A1BZqbl.mjs +0 -3
  41. package/dist/telemetry-rFq0QdvJ.mjs.map +0 -1
  42. package/dist/update-Cr5c7h1r.mjs.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
1
1
  # @tailor-platform/sdk
2
2
 
3
+ ## 1.20.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#644](https://github.com/tailor-platform/sdk/pull/644) [`e7ac6ae`](https://github.com/tailor-platform/sdk/commit/e7ac6aeabeb85786fff2e71629377a55c9a45bb3) Thanks [@dqn](https://github.com/dqn)! - Add bundle caching to accelerate apply command
8
+
9
+ ### Patch Changes
10
+
11
+ - [#648](https://github.com/tailor-platform/sdk/pull/648) [`484cd98`](https://github.com/tailor-platform/sdk/commit/484cd989163b441385dd2794a9580716825de658) Thanks [@k1LoW](https://github.com/k1LoW)! - Add `gqlOperations` option for IdP configuration
12
+
13
+ Configure which GraphQL operations are enabled for IdP users. All operations are enabled by default (set `false` to disable):
14
+
15
+ - `create`: Enable \_createUser mutation (default: true)
16
+ - `update`: Enable \_updateUser mutation (default: true)
17
+ - `delete`: Enable \_deleteUser mutation (default: true)
18
+ - `read`: Enable \_users and \_user queries (default: true)
19
+ - `sendPasswordResetEmail`: Enable \_sendPasswordResetEmail mutation (default: true)
20
+
21
+ Supports `"query"` alias for read-only mode (disables all mutations):
22
+
23
+ ```typescript
24
+ defineIdp("my-idp", {
25
+ authorization: "loggedIn",
26
+ clients: ["my-client"],
27
+ gqlOperations: "query", // Equivalent to { create: false, update: false, delete: false, read: true, sendPasswordResetEmail: false }
28
+ });
29
+ ```
30
+
31
+ - [#639](https://github.com/tailor-platform/sdk/pull/639) [`2d25e53`](https://github.com/tailor-platform/sdk/commit/2d25e534c34bc0297f95ead6f163e02b1567e93a) Thanks [@dqn](https://github.com/dqn)! - Refactor CLI internal directory layout to align with package-by-feature boundaries, colocating apply/generate command logic under commands and consolidating shared CLI helpers.
32
+
33
+ - [#650](https://github.com/tailor-platform/sdk/pull/650) [`55fb921`](https://github.com/tailor-platform/sdk/commit/55fb9210e4a0bd45a4d82d3f91df3930b4273d49) Thanks [@toiroakr](https://github.com/toiroakr)! - Add GitHub Actions workflow for automated dependency review on Renovate PRs using Claude
34
+
3
35
  ## 1.19.0
4
36
 
5
37
  ### Minor Changes