@kl1/contracts 1.2.6-uat → 1.2.8-uat

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.
@@ -4242,13 +4242,13 @@ export declare const automationQueueContract: {
4242
4242
  };
4243
4243
  checkHasAssignedRoom: {
4244
4244
  body: z.ZodObject<{
4245
- userId: z.ZodString;
4245
+ userId: z.ZodOptional<z.ZodString>;
4246
4246
  queueId: z.ZodOptional<z.ZodString>;
4247
4247
  }, "strip", z.ZodTypeAny, {
4248
- userId: string;
4248
+ userId?: string | undefined;
4249
4249
  queueId?: string | undefined;
4250
4250
  }, {
4251
- userId: string;
4251
+ userId?: string | undefined;
4252
4252
  queueId?: string | undefined;
4253
4253
  }>;
4254
4254
  method: "POST";
@@ -51,13 +51,13 @@ export declare const UpdateAutomationQueueSchema: z.ZodObject<{
51
51
  maximumAssignPerAgent: number;
52
52
  }>;
53
53
  export declare const CheckHasAssignedRoomSchema: z.ZodObject<{
54
- userId: z.ZodString;
54
+ userId: z.ZodOptional<z.ZodString>;
55
55
  queueId: z.ZodOptional<z.ZodString>;
56
56
  }, "strip", z.ZodTypeAny, {
57
- userId: string;
57
+ userId?: string | undefined;
58
58
  queueId?: string | undefined;
59
59
  }, {
60
- userId: string;
60
+ userId?: string | undefined;
61
61
  queueId?: string | undefined;
62
62
  }>;
63
63
  //# sourceMappingURL=validation.d.ts.map