@kl1/contracts 1.1.99-uat → 1.2.1-uat

Sign up to get free protection for your applications and to get access to all the features.
@@ -214464,11 +214464,11 @@ export declare const telephonyContract: {
214464
214464
  id: string;
214465
214465
  trunkName: string;
214466
214466
  }>, "many">;
214467
- status: import("zod").ZodArray<import("zod").ZodEnum<["ANSWERED", "NO ANSWER", "FAILED"]>, "many">;
214467
+ status: import("zod").ZodArray<import("zod").ZodEnum<["ANSWERED", "NO ANSWER", "BUSY", "FAILED"]>, "many">;
214468
214468
  type: import("zod").ZodArray<import("zod").ZodEnum<["Inbound", "Outbound", "Internal"]>, "many">;
214469
214469
  }, "strip", import("zod").ZodTypeAny, {
214470
214470
  type: ("Inbound" | "Outbound" | "Internal")[];
214471
- status: ("ANSWERED" | "NO ANSWER" | "FAILED")[];
214471
+ status: ("ANSWERED" | "NO ANSWER" | "BUSY" | "FAILED")[];
214472
214472
  requestId: string;
214473
214473
  trunks: {
214474
214474
  id: string;
@@ -214476,7 +214476,7 @@ export declare const telephonyContract: {
214476
214476
  }[];
214477
214477
  }, {
214478
214478
  type: ("Inbound" | "Outbound" | "Internal")[];
214479
- status: ("ANSWERED" | "NO ANSWER" | "FAILED")[];
214479
+ status: ("ANSWERED" | "NO ANSWER" | "BUSY" | "FAILED")[];
214480
214480
  requestId: string;
214481
214481
  trunks: {
214482
214482
  id: string;
@@ -223502,14 +223502,17 @@ export declare const workflowContract: {
223502
223502
  assigneeId: import("zod").ZodString;
223503
223503
  roomId: import("zod").ZodString;
223504
223504
  workflowId: import("zod").ZodString;
223505
+ queueId: import("zod").ZodOptional<import("zod").ZodString>;
223505
223506
  }, "strip", import("zod").ZodTypeAny, {
223506
223507
  assigneeId: string;
223507
223508
  roomId: string;
223508
223509
  workflowId: string;
223510
+ queueId?: string | undefined;
223509
223511
  }, {
223510
223512
  assigneeId: string;
223511
223513
  roomId: string;
223512
223514
  workflowId: string;
223515
+ queueId?: string | undefined;
223513
223516
  }>;
223514
223517
  summary: "Update room assignee";
223515
223518
  method: "POST";
@@ -231410,6 +231413,57 @@ export declare const workflowContract: {
231410
231413
  'x-code'?: string | undefined;
231411
231414
  }>;
231412
231415
  };
231416
+ emitMessage: {
231417
+ body: import("zod").ZodObject<{
231418
+ messageId: import("zod").ZodString;
231419
+ }, "strip", import("zod").ZodTypeAny, {
231420
+ messageId: string;
231421
+ }, {
231422
+ messageId: string;
231423
+ }>;
231424
+ summary: "Get message by ID";
231425
+ method: "POST";
231426
+ responses: {
231427
+ 200: import("zod").ZodObject<{
231428
+ requestId: import("zod").ZodString;
231429
+ }, "strip", import("zod").ZodTypeAny, {
231430
+ requestId: string;
231431
+ }, {
231432
+ requestId: string;
231433
+ }>;
231434
+ 403: import("zod").ZodObject<{
231435
+ message: import("zod").ZodString;
231436
+ error: import("zod").ZodAny;
231437
+ }, "strip", import("zod").ZodTypeAny, {
231438
+ message: string;
231439
+ error?: any;
231440
+ }, {
231441
+ message: string;
231442
+ error?: any;
231443
+ }>;
231444
+ 404: import("zod").ZodObject<{
231445
+ message: import("zod").ZodString;
231446
+ error: import("zod").ZodAny;
231447
+ }, "strip", import("zod").ZodTypeAny, {
231448
+ message: string;
231449
+ error?: any;
231450
+ }, {
231451
+ message: string;
231452
+ error?: any;
231453
+ }>;
231454
+ };
231455
+ path: "workflow/chat/message/emit";
231456
+ headers: import("zod").ZodObject<{
231457
+ 'x-tenant': import("zod").ZodString;
231458
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
231459
+ }, "strip", import("zod").ZodTypeAny, {
231460
+ 'x-tenant': string;
231461
+ 'x-code'?: string | undefined;
231462
+ }, {
231463
+ 'x-tenant': string;
231464
+ 'x-code'?: string | undefined;
231465
+ }>;
231466
+ };
231413
231467
  };
231414
231468
  };
231415
231469
  export declare const ticketSettingContract: {