@pexip-engage-public/plugin
Advanced tools
Comparing version
# @pexip-engage-public/plugin | ||
## 1.1.0-canary-20250306161014 | ||
### Minor Changes | ||
- 6a579d6: #3464: Resolve external IDs on bootup | ||
## 1.0.83 | ||
@@ -4,0 +10,0 @@ |
@@ -39,2 +39,3 @@ import { z } from "zod"; | ||
language: z.ZodEffects<z.ZodOptional<z.ZodString>, "da" | "de" | "el" | "en" | "es" | "fr" | "nl" | "no" | "en-US" | "en-GB" | "cimode" | undefined, string | undefined>; | ||
/** @deprecated Only use me during application init! */ | ||
employees: z.ZodDefault<z.ZodObject<{ | ||
@@ -235,2 +236,3 @@ ids: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>, string[], string | string[] | null | undefined>; | ||
initialFormattedAddress: z.ZodOptional<z.ZodString>; | ||
/** @deprecated Only use me during application init! */ | ||
meetingTypes: z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>, string[], string | string[] | null | undefined>, MeetingType[], string | string[] | null | undefined>; | ||
@@ -245,2 +247,3 @@ oauth: z.ZodDefault<z.ZodObject<{ | ||
}>>; | ||
/** @deprecated Only use me during application init! */ | ||
offices: z.ZodDefault<z.ZodObject<{ | ||
@@ -278,2 +281,3 @@ ids: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>, string[], string | string[] | null | undefined>; | ||
}>>; | ||
/** @deprecated Only use me during application init! */ | ||
subjects: z.ZodDefault<z.ZodObject<{ | ||
@@ -289,2 +293,3 @@ ids: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>, string[], string | string[] | null | undefined>; | ||
}>>; | ||
/** @deprecated Only use me during application init! */ | ||
subjectGroups: z.ZodDefault<z.ZodObject<{ | ||
@@ -291,0 +296,0 @@ ids: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>, string[], string | string[] | null | undefined>; |
@@ -48,2 +48,3 @@ import { z } from "zod"; | ||
.transform((value) => getSupportedLng(value)), | ||
/** @deprecated Only use me during application init! */ | ||
employees: z.object({ ids: util.coerced.array, type: IdTypeSchema }).default({}), | ||
@@ -93,2 +94,3 @@ application: z | ||
initialFormattedAddress: z.string().optional(), | ||
/** @deprecated Only use me during application init! */ | ||
meetingTypes: util.coerced.array.transform((val) => val.filter(isMeetingType)), | ||
@@ -101,2 +103,3 @@ oauth: z | ||
.default({}), | ||
/** @deprecated Only use me during application init! */ | ||
offices: z.object({ ids: util.coerced.array, type: IdTypeSchema }).default({}), | ||
@@ -122,3 +125,5 @@ /** | ||
.default({}), | ||
/** @deprecated Only use me during application init! */ | ||
subjects: z.object({ ids: util.coerced.array, type: IdTypeSchema }).default({}), | ||
/** @deprecated Only use me during application init! */ | ||
subjectGroups: z.object({ ids: util.coerced.array, type: IdTypeSchema }).default({}), | ||
@@ -125,0 +130,0 @@ timetable: z |
@@ -210,4 +210,9 @@ import { z } from "zod"; | ||
}>>; | ||
employees: z.ZodDefault<z.ZodArray<z.ZodString, "many">>; | ||
leadSegmentId: z.ZodOptional<z.ZodString>; | ||
listingId: z.ZodOptional<z.ZodString>; | ||
meetingTypes: z.ZodDefault<z.ZodArray<z.ZodEnum<["VIDEO", "PHONE", "ON_LOCATION", "OFFICE"]>, "many">>; | ||
offices: z.ZodDefault<z.ZodArray<z.ZodString, "many">>; | ||
subjectGroups: z.ZodDefault<z.ZodArray<z.ZodString, "many">>; | ||
subjects: z.ZodDefault<z.ZodArray<z.ZodString, "many">>; | ||
schedulable: z.ZodDefault<z.ZodBoolean>; | ||
@@ -816,2 +821,7 @@ /** Marking certain steps as (automatically) skipped or not. */ | ||
flow: string; | ||
employees: string[]; | ||
meetingTypes: ("VIDEO" | "PHONE" | "ON_LOCATION" | "OFFICE")[]; | ||
offices: string[]; | ||
subjects: string[]; | ||
subjectGroups: string[]; | ||
timetable: ({ | ||
@@ -990,2 +1000,3 @@ intent?: "callback" | undefined; | ||
flow?: string | undefined; | ||
employees?: string[] | undefined; | ||
customer?: { | ||
@@ -1018,2 +1029,6 @@ id?: string | null | undefined; | ||
} | undefined; | ||
meetingTypes?: ("VIDEO" | "PHONE" | "ON_LOCATION" | "OFFICE")[] | undefined; | ||
offices?: string[] | undefined; | ||
subjects?: string[] | undefined; | ||
subjectGroups?: string[] | undefined; | ||
timetable?: (({ | ||
@@ -1020,0 +1035,0 @@ intent?: "callback" | undefined; |
@@ -41,4 +41,9 @@ import { z } from "zod"; | ||
// resolved values used for SRS | ||
employees: z.string().array().default([]), | ||
leadSegmentId: z.string().optional(), | ||
listingId: z.string().optional(), | ||
meetingTypes: MeetingTypeSchema.array().default([]), | ||
offices: z.string().array().default([]), | ||
subjectGroups: z.string().array().default([]), | ||
subjects: z.string().array().default([]), | ||
schedulable: z.boolean().default(true), | ||
@@ -45,0 +50,0 @@ /** Marking certain steps as (automatically) skipped or not. */ |
{ | ||
"name": "@pexip-engage-public/plugin", | ||
"version": "1.0.83", | ||
"version": "1.1.0-canary-20250306161014", | ||
"homepage": "https://github.com/skedify/frontend-mono/tree/develop/apps/booking-plugin/packages/plugin-public#readme", | ||
@@ -41,4 +41,4 @@ "bugs": { | ||
"zod": "^3.24.2", | ||
"@pexip-engage-public/graphql": "1.0.64", | ||
"@pexip-engage/utils": "0.1.35" | ||
"@pexip-engage/utils": "0.1.35", | ||
"@pexip-engage-public/graphql": "1.0.64" | ||
}, | ||
@@ -45,0 +45,0 @@ "devDependencies": { |
@@ -64,2 +64,3 @@ import { z } from "zod"; | ||
.transform((value) => getSupportedLng(value)), | ||
/** @deprecated Only use me during application init! */ | ||
employees: z.object({ ids: util.coerced.array, type: IdTypeSchema }).default({}), | ||
@@ -109,2 +110,3 @@ application: z | ||
initialFormattedAddress: z.string().optional(), | ||
/** @deprecated Only use me during application init! */ | ||
meetingTypes: util.coerced.array.transform((val) => val.filter(isMeetingType)), | ||
@@ -117,2 +119,3 @@ oauth: z | ||
.default({}), | ||
/** @deprecated Only use me during application init! */ | ||
offices: z.object({ ids: util.coerced.array, type: IdTypeSchema }).default({}), | ||
@@ -138,3 +141,5 @@ /** | ||
.default({}), | ||
/** @deprecated Only use me during application init! */ | ||
subjects: z.object({ ids: util.coerced.array, type: IdTypeSchema }).default({}), | ||
/** @deprecated Only use me during application init! */ | ||
subjectGroups: z.object({ ids: util.coerced.array, type: IdTypeSchema }).default({}), | ||
@@ -141,0 +146,0 @@ timetable: z |
@@ -63,4 +63,9 @@ import { z } from "zod"; | ||
// resolved values used for SRS | ||
employees: z.string().array().default([]), | ||
leadSegmentId: z.string().optional(), | ||
listingId: z.string().optional(), | ||
meetingTypes: MeetingTypeSchema.array().default([]), | ||
offices: z.string().array().default([]), | ||
subjectGroups: z.string().array().default([]), | ||
subjects: z.string().array().default([]), | ||
schedulable: z.boolean().default(true), | ||
@@ -67,0 +72,0 @@ /** Marking certain steps as (automatically) skipped or not. */ |
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
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
443680
0.63%7943
0.51%2
100%