@tailor-platform/sdk 1.15.0 → 1.15.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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @tailor-platform/sdk
2
2
 
3
+ ## 1.15.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#608](https://github.com/tailor-platform/sdk/pull/608) [`17fbd24`](https://github.com/tailor-platform/sdk/commit/17fbd243bd2925d3c4b6fe0d61f0a3ab24c3bece) Thanks [@k1LoW](https://github.com/k1LoW)! - Add validation to require allowedEmailDomains when allowGoogleOauth is enabled
8
+
3
9
  ## 1.15.0
4
10
 
5
11
  ### Minor Changes
@@ -98382,6 +98382,9 @@ const IdPUserAuthPolicySchema = z.object({
98382
98382
  }).refine((data$1) => data$1.allowGoogleOauth === void 0 || data$1.allowGoogleOauth === false || !data$1.useNonEmailIdentifier, {
98383
98383
  message: "allowGoogleOauth cannot be set when useNonEmailIdentifier is true",
98384
98384
  path: ["allowGoogleOauth"]
98385
+ }).refine((data$1) => !data$1.allowGoogleOauth || data$1.allowedEmailDomains && data$1.allowedEmailDomains.length > 0, {
98386
+ message: "allowGoogleOauth requires allowedEmailDomains to be set",
98387
+ path: ["allowGoogleOauth"]
98385
98388
  });
98386
98389
  const IdPSchema = z.object({
98387
98390
  name: z.string(),
@@ -98576,4 +98579,4 @@ function defineApplication(params) {
98576
98579
 
98577
98580
  //#endregion
98578
98581
  export { ExecutorSchema as a, functionSchema as c, loadFilesWithIgnores as d, logger as f, createExecutorService as i, stringifyFunction as l, symbols as m, WorkflowJobSchema as n, OAuth2ClientSchema as o, styles as p, WorkflowSchema as r, ResolverSchema as s, defineApplication as t, tailorUserMap as u };
98579
- //# sourceMappingURL=application-DPunZ4lc.mjs.map
98582
+ //# sourceMappingURL=application-B0TR65qY.mjs.map