@pexip-engage-public/plugin-state
Advanced tools
Comparing version 1.3.1 to 1.3.2-canary-20231215135519
# @pexip-engage-public/plugin-state | ||
## 1.3.2-canary-20231215135519 | ||
### Patch Changes | ||
- ccaf64df1: chore: remove deprecated config values from plugin | ||
## 1.3.1 | ||
@@ -4,0 +10,0 @@ |
{ | ||
"name": "@pexip-engage-public/plugin-state", | ||
"version": "1.3.1", | ||
"version": "1.3.2-canary-20231215135519", | ||
"homepage": "https://github.com/skedify/frontend-mono/tree/develop/apps/plugin-remix/packages/plugin-state#readme", | ||
@@ -5,0 +5,0 @@ "bugs": { |
@@ -60,7 +60,5 @@ import { z } from "zod"; | ||
customer_number: StringFormSchema, | ||
date_of_birth: StringFormSchema, | ||
email: z.string().email().nullish(), | ||
external_id: StringFormSchema, | ||
first_name: StringFormSchema, | ||
gender: StringFormSchema, | ||
id: z.coerce.string().nullish(), | ||
@@ -82,4 +80,2 @@ is_existing: BooleanFormSchema, | ||
phone_number: StringFormSchema, | ||
preferred_contact_id: StringFormSchema, | ||
preferred_office_id: StringFormSchema, | ||
// TODO: is validated against TIMEZONE_LIST in legacy plugin: See https://skedify.atlassian.net/browse/SKED-9964 | ||
@@ -86,0 +82,0 @@ timezone: StringFormSchema, |
@@ -11,7 +11,5 @@ import { z } from "zod"; | ||
customer_number: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
date_of_birth: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
email: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
first_name: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
gender: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
id: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
@@ -47,4 +45,2 @@ is_existing: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodString, string | null, string>, z.ZodEffects<z.ZodBoolean, "on" | null, boolean>]>>>; | ||
phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
preferred_contact_id: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
preferred_office_id: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
timezone: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
@@ -54,7 +50,5 @@ }, "strip", z.ZodTypeAny, { | ||
customer_number?: string | null | undefined; | ||
date_of_birth?: string | null | undefined; | ||
email?: string | null | undefined; | ||
external_id?: string | null | undefined; | ||
first_name?: string | null | undefined; | ||
gender?: string | null | undefined; | ||
id?: string | null | undefined; | ||
@@ -74,4 +68,2 @@ is_existing?: string | null | undefined; | ||
phone_number?: string | null | undefined; | ||
preferred_contact_id?: string | null | undefined; | ||
preferred_office_id?: string | null | undefined; | ||
timezone?: string | null | undefined; | ||
@@ -81,7 +73,5 @@ }, { | ||
customer_number?: string | null | undefined; | ||
date_of_birth?: string | null | undefined; | ||
email?: string | null | undefined; | ||
external_id?: string | null | undefined; | ||
first_name?: string | null | undefined; | ||
gender?: string | null | undefined; | ||
id?: string | null | undefined; | ||
@@ -101,4 +91,2 @@ is_existing?: string | boolean | null | undefined; | ||
phone_number?: string | null | undefined; | ||
preferred_contact_id?: string | null | undefined; | ||
preferred_office_id?: string | null | undefined; | ||
timezone?: string | null | undefined; | ||
@@ -143,7 +131,5 @@ }>; | ||
customer_number: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
date_of_birth: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
email: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
first_name: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
gender: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
id: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
@@ -179,4 +165,2 @@ is_existing: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodString, string | null, string>, z.ZodEffects<z.ZodBoolean, "on" | null, boolean>]>>>; | ||
phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
preferred_contact_id: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
preferred_office_id: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
timezone: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
@@ -186,7 +170,5 @@ }, "strip", z.ZodTypeAny, { | ||
customer_number?: string | null | undefined; | ||
date_of_birth?: string | null | undefined; | ||
email?: string | null | undefined; | ||
external_id?: string | null | undefined; | ||
first_name?: string | null | undefined; | ||
gender?: string | null | undefined; | ||
id?: string | null | undefined; | ||
@@ -206,4 +188,2 @@ is_existing?: string | null | undefined; | ||
phone_number?: string | null | undefined; | ||
preferred_contact_id?: string | null | undefined; | ||
preferred_office_id?: string | null | undefined; | ||
timezone?: string | null | undefined; | ||
@@ -213,7 +193,5 @@ }, { | ||
customer_number?: string | null | undefined; | ||
date_of_birth?: string | null | undefined; | ||
email?: string | null | undefined; | ||
external_id?: string | null | undefined; | ||
first_name?: string | null | undefined; | ||
gender?: string | null | undefined; | ||
id?: string | null | undefined; | ||
@@ -233,4 +211,2 @@ is_existing?: string | boolean | null | undefined; | ||
phone_number?: string | null | undefined; | ||
preferred_contact_id?: string | null | undefined; | ||
preferred_office_id?: string | null | undefined; | ||
timezone?: string | null | undefined; | ||
@@ -425,7 +401,5 @@ }>>; | ||
customer_number: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
date_of_birth: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
email: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
first_name: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
gender: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
id: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
@@ -461,4 +435,2 @@ is_existing: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodString, string | null, string>, z.ZodEffects<z.ZodBoolean, "on" | null, boolean>]>>>; | ||
phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
preferred_contact_id: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
preferred_office_id: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
timezone: z.ZodOptional<z.ZodNullable<z.ZodString>>; | ||
@@ -468,7 +440,5 @@ }, "strip", z.ZodTypeAny, { | ||
customer_number?: string | null | undefined; | ||
date_of_birth?: string | null | undefined; | ||
email?: string | null | undefined; | ||
external_id?: string | null | undefined; | ||
first_name?: string | null | undefined; | ||
gender?: string | null | undefined; | ||
id?: string | null | undefined; | ||
@@ -488,4 +458,2 @@ is_existing?: string | null | undefined; | ||
phone_number?: string | null | undefined; | ||
preferred_contact_id?: string | null | undefined; | ||
preferred_office_id?: string | null | undefined; | ||
timezone?: string | null | undefined; | ||
@@ -495,7 +463,5 @@ }, { | ||
customer_number?: string | null | undefined; | ||
date_of_birth?: string | null | undefined; | ||
email?: string | null | undefined; | ||
external_id?: string | null | undefined; | ||
first_name?: string | null | undefined; | ||
gender?: string | null | undefined; | ||
id?: string | null | undefined; | ||
@@ -515,4 +481,2 @@ is_existing?: string | boolean | null | undefined; | ||
phone_number?: string | null | undefined; | ||
preferred_contact_id?: string | null | undefined; | ||
preferred_office_id?: string | null | undefined; | ||
timezone?: string | null | undefined; | ||
@@ -638,7 +602,5 @@ }>>; | ||
customer_number?: string | null | undefined; | ||
date_of_birth?: string | null | undefined; | ||
email?: string | null | undefined; | ||
external_id?: string | null | undefined; | ||
first_name?: string | null | undefined; | ||
gender?: string | null | undefined; | ||
id?: string | null | undefined; | ||
@@ -658,4 +620,2 @@ is_existing?: string | null | undefined; | ||
phone_number?: string | null | undefined; | ||
preferred_contact_id?: string | null | undefined; | ||
preferred_office_id?: string | null | undefined; | ||
timezone?: string | null | undefined; | ||
@@ -705,7 +665,5 @@ } | undefined; | ||
customer_number?: string | null | undefined; | ||
date_of_birth?: string | null | undefined; | ||
email?: string | null | undefined; | ||
external_id?: string | null | undefined; | ||
first_name?: string | null | undefined; | ||
gender?: string | null | undefined; | ||
id?: string | null | undefined; | ||
@@ -725,4 +683,2 @@ is_existing?: string | boolean | null | undefined; | ||
phone_number?: string | null | undefined; | ||
preferred_contact_id?: string | null | undefined; | ||
preferred_office_id?: string | null | undefined; | ||
timezone?: string | null | undefined; | ||
@@ -800,7 +756,5 @@ } | undefined; | ||
customer_number?: string | null | undefined; | ||
date_of_birth?: string | null | undefined; | ||
email?: string | null | undefined; | ||
external_id?: string | null | undefined; | ||
first_name?: string | null | undefined; | ||
gender?: string | null | undefined; | ||
id?: string | null | undefined; | ||
@@ -820,4 +774,2 @@ is_existing?: string | null | undefined; | ||
phone_number?: string | null | undefined; | ||
preferred_contact_id?: string | null | undefined; | ||
preferred_office_id?: string | null | undefined; | ||
timezone?: string | null | undefined; | ||
@@ -860,7 +812,5 @@ } | undefined; | ||
customer_number?: string | null | undefined; | ||
date_of_birth?: string | null | undefined; | ||
email?: string | null | undefined; | ||
external_id?: string | null | undefined; | ||
first_name?: string | null | undefined; | ||
gender?: string | null | undefined; | ||
id?: string | null | undefined; | ||
@@ -880,4 +830,2 @@ is_existing?: string | null | undefined; | ||
phone_number?: string | null | undefined; | ||
preferred_contact_id?: string | null | undefined; | ||
preferred_office_id?: string | null | undefined; | ||
timezone?: string | null | undefined; | ||
@@ -912,7 +860,5 @@ } | undefined; | ||
customer_number?: string | null | undefined; | ||
date_of_birth?: string | null | undefined; | ||
email?: string | null | undefined; | ||
external_id?: string | null | undefined; | ||
first_name?: string | null | undefined; | ||
gender?: string | null | undefined; | ||
id?: string | null | undefined; | ||
@@ -932,4 +878,2 @@ is_existing?: string | boolean | null | undefined; | ||
phone_number?: string | null | undefined; | ||
preferred_contact_id?: string | null | undefined; | ||
preferred_office_id?: string | null | undefined; | ||
timezone?: string | null | undefined; | ||
@@ -995,7 +939,5 @@ } | undefined; | ||
customer_number?: string | null | undefined; | ||
date_of_birth?: string | null | undefined; | ||
email?: string | null | undefined; | ||
external_id?: string | null | undefined; | ||
first_name?: string | null | undefined; | ||
gender?: string | null | undefined; | ||
id?: string | null | undefined; | ||
@@ -1015,4 +957,2 @@ is_existing?: string | boolean | null | undefined; | ||
phone_number?: string | null | undefined; | ||
preferred_contact_id?: string | null | undefined; | ||
preferred_office_id?: string | null | undefined; | ||
timezone?: string | null | undefined; | ||
@@ -1019,0 +959,0 @@ } | undefined; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
96790
1654
2