@tailor-platform/sdk 1.10.0 → 1.11.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,21 @@
1
1
  # @tailor-platform/sdk
2
2
 
3
+ ## 1.11.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#531](https://github.com/tailor-platform/sdk/pull/531) [`a3066a3`](https://github.com/tailor-platform/sdk/commit/a3066a399cb26ef91da1e871da0616311b104c26) Thanks [@toiroakr](https://github.com/toiroakr)! - Add executor list, get, and webhook commands to CLI
8
+
9
+ ### Patch Changes
10
+
11
+ - [#569](https://github.com/tailor-platform/sdk/pull/569) [`cec1970`](https://github.com/tailor-platform/sdk/commit/cec1970581e39caedf84a1c89e0dbdbd5c53c0c0) Thanks [@toiroakr](https://github.com/toiroakr)! - Fix BigInt serialization in error logging for API requests
12
+
13
+ ## 1.10.1
14
+
15
+ ### Patch Changes
16
+
17
+ - [#567](https://github.com/tailor-platform/sdk/pull/567) [`480309f`](https://github.com/tailor-platform/sdk/commit/480309f4d085bf05fbc00e7f215778a22ffd424a) Thanks [@k1LoW](https://github.com/k1LoW)! - Add schema validation to reject `requireDpop: true` for browser client type in OAuth2 client configuration. Browser clients don't support DPoP, and this validation provides early feedback at the SDK level before deployment.
18
+
3
19
  ## 1.10.0
4
20
 
5
21
  ### Minor Changes
@@ -97848,6 +97848,9 @@ const OAuth2ClientSchema = z.object({
97848
97848
  nanos: 0
97849
97849
  } : void 0),
97850
97850
  requireDpop: z.boolean().optional()
97851
+ }).refine((data$1) => !(data$1.clientType === "browser" && data$1.requireDpop === true), {
97852
+ message: "requireDpop cannot be set to true for browser clients as they don't support DPoP",
97853
+ path: ["requireDpop"]
97851
97854
  });
97852
97855
  const SCIMAuthorizationSchema = z.object({
97853
97856
  type: z.union([z.literal("oauth2"), z.literal("bearer")]),
@@ -98384,4 +98387,4 @@ function defineApplication(config) {
98384
98387
 
98385
98388
  //#endregion
98386
98389
  export { OAuth2ClientSchema as a, tailorUserMap as c, styles as d, symbols as f, ExecutorSchema as i, loadFilesWithIgnores as l, WorkflowJobSchema as n, ResolverSchema as o, WorkflowSchema as r, stringifyFunction as s, defineApplication as t, logger as u };
98387
- //# sourceMappingURL=application-R26DC-sK.mjs.map
98390
+ //# sourceMappingURL=application-BKBo5tGD.mjs.map