@tailor-platform/sdk 1.10.0 → 1.10.1
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/dist/{application-R26DC-sK.mjs → application-BKBo5tGD.mjs} +4 -1
- package/dist/application-BKBo5tGD.mjs.map +1 -0
- package/dist/application-a12-7TT3.mjs +4 -0
- package/dist/cli/index.mjs +2 -2
- package/dist/cli/lib.d.mts +1 -2
- package/dist/cli/lib.mjs +2 -2
- package/dist/configure/index.d.mts +2 -2
- package/dist/{index-DnoS_Mi4.d.mts → index-BQw6I-mY.d.mts} +10 -10
- package/dist/{index-DcOTucF6.d.mts → index-CoqePlnt.d.mts} +7 -7
- package/dist/{update-C877GWkA.mjs → update-Exhc9AkY.mjs} +3 -3
- package/dist/{update-C877GWkA.mjs.map → update-Exhc9AkY.mjs.map} +1 -1
- package/dist/utils/test/index.d.mts +2 -2
- package/package.json +1 -1
- package/dist/application-COnpGp0d.mjs +0 -4
- package/dist/application-R26DC-sK.mjs.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @tailor-platform/sdk
|
|
2
2
|
|
|
3
|
+
## 1.10.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#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.
|
|
8
|
+
|
|
3
9
|
## 1.10.0
|
|
4
10
|
|
|
5
11
|
### 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-
|
|
98390
|
+
//# sourceMappingURL=application-BKBo5tGD.mjs.map
|