New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@pexip-engage-public/plugin

Package Overview
Dependencies
Maintainers
0
Versions
243
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pexip-engage-public/plugin - npm Package Compare versions

Comparing version

to
1.1.3-canary-20250314152045

6

CHANGELOG.md
# @pexip-engage-public/plugin
## 1.1.3-canary-20250314152045
### Patch Changes
- 85dfd80: bug: properly calculate `isSchedulable` again. #3511 introduced a regression where unschedulable combinations lead to the params just being ignored.
## 1.1.2

@@ -4,0 +10,0 @@

20

dist/state/PluginState.schema.d.ts

@@ -210,9 +210,9 @@ import { z } from "zod";

}>>;
employees: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
employees: z.ZodOptional<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">>;
meetingTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<["VIDEO", "PHONE", "ON_LOCATION", "OFFICE"]>, "many">>;
offices: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
subjectGroups: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
subjects: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
schedulable: z.ZodDefault<z.ZodBoolean>;

@@ -821,7 +821,2 @@ /** 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: ({

@@ -851,2 +846,3 @@ intent?: "callback" | undefined;

};
employees?: string[] | undefined;
customer?: {

@@ -879,2 +875,6 @@ id?: string | null | undefined;

} | undefined;
meetingTypes?: ("VIDEO" | "PHONE" | "ON_LOCATION" | "OFFICE")[] | undefined;
offices?: string[] | undefined;
subjects?: string[] | undefined;
subjectGroups?: string[] | undefined;
questions?: Record<string, string | string[]> | undefined;

@@ -881,0 +881,0 @@ subjectId?: string | undefined;

@@ -41,9 +41,9 @@ import { z } from "zod";

// resolved values used for SRS
employees: z.string().array().default([]),
employees: z.string().array().optional(),
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([]),
meetingTypes: MeetingTypeSchema.array().optional(),
offices: z.string().array().optional(),
subjectGroups: z.string().array().optional(),
subjects: z.string().array().optional(),
schedulable: z.boolean().default(true),

@@ -50,0 +50,0 @@ /** Marking certain steps as (automatically) skipped or not. */

{
"name": "@pexip-engage-public/plugin",
"version": "1.1.2",
"version": "1.1.3-canary-20250314152045",
"homepage": "https://github.com/skedify/frontend-mono/tree/develop/apps/booking-plugin/packages/plugin-public#readme",

@@ -5,0 +5,0 @@ "bugs": {

@@ -63,9 +63,9 @@ import { z } from "zod";

// resolved values used for SRS
employees: z.string().array().default([]),
employees: z.string().array().optional(),
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([]),
meetingTypes: MeetingTypeSchema.array().optional(),
offices: z.string().array().optional(),
subjectGroups: z.string().array().optional(),
subjects: z.string().array().optional(),
schedulable: z.boolean().default(true),

@@ -72,0 +72,0 @@ /** Marking certain steps as (automatically) skipped or not. */

Sorry, the diff of this file is not supported yet