@kl1/contracts 1.0.66 → 1.0.68

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.
Files changed (53) hide show
  1. package/dist/index.js +2328 -2331
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +2328 -2331
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/app/index.d.ts +17 -0
  6. package/dist/src/app/index.d.ts.map +1 -0
  7. package/dist/src/call-log/schema.d.ts +4 -4
  8. package/dist/src/call-log/validation.d.ts +2 -2
  9. package/dist/src/channel/index.d.ts +67 -707
  10. package/dist/src/channel/index.d.ts.map +1 -1
  11. package/dist/src/channel/validation.d.ts +19 -0
  12. package/dist/src/channel/validation.d.ts.map +1 -1
  13. package/dist/src/chat/index.d.ts +600 -600
  14. package/dist/src/chat/schema.d.ts +74 -74
  15. package/dist/src/chat/validation.d.ts +128 -128
  16. package/dist/src/comment/index.d.ts +609 -609
  17. package/dist/src/comment/schema.d.ts +144 -144
  18. package/dist/src/contract.d.ts +3401 -4062
  19. package/dist/src/contract.d.ts.map +1 -1
  20. package/dist/src/cx-log/index.d.ts +90 -90
  21. package/dist/src/cx-log/schema.d.ts +62 -62
  22. package/dist/src/dashboard/index.d.ts +16 -31
  23. package/dist/src/dashboard/index.d.ts.map +1 -1
  24. package/dist/src/dashboard/schema.d.ts +6 -15
  25. package/dist/src/dashboard/schema.d.ts.map +1 -1
  26. package/dist/src/instagram/index.d.ts +78 -78
  27. package/dist/src/line/index.d.ts +96 -96
  28. package/dist/src/line/schema.d.ts +19 -19
  29. package/dist/src/line/schema.d.ts.map +1 -1
  30. package/dist/src/mail/mail-contract.d.ts +24 -24
  31. package/dist/src/mail/mail-server.d.ts +216 -0
  32. package/dist/src/mail/mail-server.d.ts.map +1 -0
  33. package/dist/src/mail/room-contract.d.ts +24 -24
  34. package/dist/src/mail/schemas/room-validation.schema.d.ts +8 -8
  35. package/dist/src/mail/schemas/room.schema.d.ts +4 -4
  36. package/dist/src/messenger/index.d.ts +78 -78
  37. package/dist/src/platform-contact/schema.d.ts +30 -0
  38. package/dist/src/platform-contact/schema.d.ts.map +1 -0
  39. package/dist/src/telephony-cdr/index.d.ts +38 -38
  40. package/dist/src/telephony-cdr/schema.d.ts +6 -6
  41. package/dist/src/telephony-cdr/validation.d.ts +5 -5
  42. package/dist/src/telephony-cdr/validation.d.ts.map +1 -1
  43. package/dist/src/ticket/index.d.ts +1084 -1084
  44. package/dist/src/ticket/schema.d.ts +72 -72
  45. package/dist/src/ticket/validation.d.ts +12 -12
  46. package/dist/src/user-presence-status-log/index.d.ts +4 -9
  47. package/dist/src/user-presence-status-log/index.d.ts.map +1 -1
  48. package/dist/src/user-presence-status-log/validation.d.ts +7 -0
  49. package/dist/src/user-presence-status-log/validation.d.ts.map +1 -1
  50. package/dist/src/wrap-up-form/index.d.ts +19 -19
  51. package/dist/src/wrap-up-form/schema.d.ts +2 -2
  52. package/dist/src/wrap-up-form/validation.d.ts +3 -3
  53. package/package.json +1 -1
@@ -2157,6 +2157,42 @@ export declare const TicketSchema: z.ZodObject<{
2157
2157
  }[];
2158
2158
  }[];
2159
2159
  }[];
2160
+ customFields: {
2161
+ id: string;
2162
+ createdAt: Date;
2163
+ updatedAt: Date;
2164
+ deletedAt: Date | null;
2165
+ attribute: {
2166
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
2167
+ id: string;
2168
+ position: number;
2169
+ createdAt: Date;
2170
+ updatedAt: Date;
2171
+ deletedAt: Date | null;
2172
+ systemName: string;
2173
+ displayName: string;
2174
+ isDefault: boolean;
2175
+ isArchived: boolean;
2176
+ isRequired: boolean;
2177
+ isUnique: boolean;
2178
+ };
2179
+ textValue: string | null;
2180
+ booleanValue: boolean | null;
2181
+ numberValue: number | null;
2182
+ dateValue: Date | null;
2183
+ uploads: {
2184
+ id: string;
2185
+ createdAt: Date;
2186
+ updatedAt: Date;
2187
+ deletedAt: Date | null;
2188
+ fileName: string;
2189
+ fileKey: string;
2190
+ bucketName: string;
2191
+ fileSize: number;
2192
+ fileUrl: string | null;
2193
+ status?: string | undefined;
2194
+ }[];
2195
+ }[];
2160
2196
  contact: {
2161
2197
  id: string;
2162
2198
  channel: string | null;
@@ -2261,42 +2297,6 @@ export declare const TicketSchema: z.ZodObject<{
2261
2297
  };
2262
2298
  }[] | undefined;
2263
2299
  };
2264
- customFields: {
2265
- id: string;
2266
- createdAt: Date;
2267
- updatedAt: Date;
2268
- deletedAt: Date | null;
2269
- attribute: {
2270
- type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
2271
- id: string;
2272
- position: number;
2273
- createdAt: Date;
2274
- updatedAt: Date;
2275
- deletedAt: Date | null;
2276
- systemName: string;
2277
- displayName: string;
2278
- isDefault: boolean;
2279
- isArchived: boolean;
2280
- isRequired: boolean;
2281
- isUnique: boolean;
2282
- };
2283
- textValue: string | null;
2284
- booleanValue: boolean | null;
2285
- numberValue: number | null;
2286
- dateValue: Date | null;
2287
- uploads: {
2288
- id: string;
2289
- createdAt: Date;
2290
- updatedAt: Date;
2291
- deletedAt: Date | null;
2292
- fileName: string;
2293
- fileKey: string;
2294
- bucketName: string;
2295
- fileSize: number;
2296
- fileUrl: string | null;
2297
- status?: string | undefined;
2298
- }[];
2299
- }[];
2300
2300
  tags: {
2301
2301
  id: string;
2302
2302
  name: string;
@@ -2490,6 +2490,42 @@ export declare const TicketSchema: z.ZodObject<{
2490
2490
  }[];
2491
2491
  }[];
2492
2492
  }[];
2493
+ customFields: {
2494
+ id: string;
2495
+ createdAt: Date;
2496
+ updatedAt: Date;
2497
+ deletedAt: Date | null;
2498
+ attribute: {
2499
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
2500
+ id: string;
2501
+ position: number;
2502
+ createdAt: Date;
2503
+ updatedAt: Date;
2504
+ deletedAt: Date | null;
2505
+ systemName: string;
2506
+ displayName: string;
2507
+ isDefault: boolean;
2508
+ isArchived: boolean;
2509
+ isRequired: boolean;
2510
+ isUnique: boolean;
2511
+ };
2512
+ textValue: string | null;
2513
+ booleanValue: boolean | null;
2514
+ numberValue: number | null;
2515
+ dateValue: Date | null;
2516
+ uploads: {
2517
+ id: string;
2518
+ createdAt: Date;
2519
+ updatedAt: Date;
2520
+ deletedAt: Date | null;
2521
+ fileName: string;
2522
+ fileKey: string;
2523
+ bucketName: string;
2524
+ fileSize: number;
2525
+ fileUrl: string | null;
2526
+ status?: string | undefined;
2527
+ }[];
2528
+ }[];
2493
2529
  contact: {
2494
2530
  id: string;
2495
2531
  channel: string | null;
@@ -2594,42 +2630,6 @@ export declare const TicketSchema: z.ZodObject<{
2594
2630
  };
2595
2631
  }[] | undefined;
2596
2632
  };
2597
- customFields: {
2598
- id: string;
2599
- createdAt: Date;
2600
- updatedAt: Date;
2601
- deletedAt: Date | null;
2602
- attribute: {
2603
- type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
2604
- id: string;
2605
- position: number;
2606
- createdAt: Date;
2607
- updatedAt: Date;
2608
- deletedAt: Date | null;
2609
- systemName: string;
2610
- displayName: string;
2611
- isDefault: boolean;
2612
- isArchived: boolean;
2613
- isRequired: boolean;
2614
- isUnique: boolean;
2615
- };
2616
- textValue: string | null;
2617
- booleanValue: boolean | null;
2618
- numberValue: number | null;
2619
- dateValue: Date | null;
2620
- uploads: {
2621
- id: string;
2622
- createdAt: Date;
2623
- updatedAt: Date;
2624
- deletedAt: Date | null;
2625
- fileName: string;
2626
- fileKey: string;
2627
- bucketName: string;
2628
- fileSize: number;
2629
- fileUrl: string | null;
2630
- status?: string | undefined;
2631
- }[];
2632
- }[];
2633
2633
  tags: {
2634
2634
  id: string;
2635
2635
  name: string;
@@ -112,12 +112,12 @@ export declare const CreateTicketValidationSchema: z.ZodObject<{
112
112
  isRequired: boolean;
113
113
  attributeId: string;
114
114
  };
115
- contact: {
116
- [x: string]: any;
117
- };
118
115
  customFields: {
119
116
  [x: string]: any;
120
117
  }[];
118
+ contact: {
119
+ [x: string]: any;
120
+ };
121
121
  tags: {
122
122
  [x: string]: any;
123
123
  };
@@ -153,12 +153,12 @@ export declare const CreateTicketValidationSchema: z.ZodObject<{
153
153
  isRequired: boolean;
154
154
  attributeId: string;
155
155
  };
156
- contact: {
157
- [x: string]: any;
158
- };
159
156
  customFields: {
160
157
  [x: string]: any;
161
158
  }[];
159
+ contact: {
160
+ [x: string]: any;
161
+ };
162
162
  tags: {
163
163
  [x: string]: any;
164
164
  };
@@ -274,12 +274,12 @@ export declare const UpdateTicketValidationSchema: z.ZodObject<{
274
274
  isRequired: boolean;
275
275
  attributeId: string;
276
276
  };
277
- contact: {
278
- [x: string]: any;
279
- };
280
277
  customFields: {
281
278
  [x: string]: any;
282
279
  }[];
280
+ contact: {
281
+ [x: string]: any;
282
+ };
283
283
  tags: {
284
284
  [x: string]: any;
285
285
  };
@@ -315,12 +315,12 @@ export declare const UpdateTicketValidationSchema: z.ZodObject<{
315
315
  isRequired: boolean;
316
316
  attributeId: string;
317
317
  };
318
- contact: {
319
- [x: string]: any;
320
- };
321
318
  customFields: {
322
319
  [x: string]: any;
323
320
  }[];
321
+ contact: {
322
+ [x: string]: any;
323
+ };
324
324
  tags: {
325
325
  [x: string]: any;
326
326
  };
@@ -1,8 +1,9 @@
1
1
  import z from 'zod';
2
2
  import { UserPresenceStatusLogSchema } from './schema';
3
- import { UserPresenceStatusLogParamsSchema } from './validation';
3
+ import { UserPresenceStatusLogExportParamsSchema, UserPresenceStatusLogParamsSchema } from './validation';
4
4
  export type GetUserPresenceStatusLogRequest = z.infer<typeof UserPresenceStatusLogParamsSchema>;
5
5
  export type UserPresenceStatusLog = z.infer<typeof UserPresenceStatusLogSchema>;
6
+ export type UserPresenceStatusLogExport = z.infer<typeof UserPresenceStatusLogExportParamsSchema>;
6
7
  export declare const userPresenceStatusLogContract: {
7
8
  getUserPresenceStatusLog: {
8
9
  summary: "Get all user presence status log.";
@@ -352,19 +353,13 @@ export declare const userPresenceStatusLogContract: {
352
353
  };
353
354
  getExportData: {
354
355
  method: "GET";
355
- query: z.ZodOptional<z.ZodObject<{
356
- page: z.ZodDefault<z.ZodNumber>;
357
- pageSize: z.ZodDefault<z.ZodNumber>;
356
+ query: z.ZodObject<{
358
357
  selectedDate: z.ZodOptional<z.ZodString>;
359
358
  }, "strip", z.ZodTypeAny, {
360
- page: number;
361
- pageSize: number;
362
359
  selectedDate?: string | undefined;
363
360
  }, {
364
- page?: number | undefined;
365
- pageSize?: number | undefined;
366
361
  selectedDate?: string | undefined;
367
- }>>;
362
+ }>;
368
363
  responses: {
369
364
  200: null;
370
365
  400: z.ZodObject<{
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/user-presence-status-log/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAOpB,OAAO,EAAE,2BAA2B,EAAE,MAAM,UAAU,CAAC;AACvD,OAAO,EAAE,iCAAiC,EAAE,MAAM,cAAc,CAAC;AAEjE,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,KAAK,CACnD,OAAO,iCAAiC,CACzC,CAAC;AACF,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAEhF,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkCzC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/user-presence-status-log/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAOpB,OAAO,EAAE,2BAA2B,EAAE,MAAM,UAAU,CAAC;AACvD,OAAO,EACL,uCAAuC,EACvC,iCAAiC,EAClC,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,KAAK,CACnD,OAAO,iCAAiC,CACzC,CAAC;AACF,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAChF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAC/C,OAAO,uCAAuC,CAC/C,CAAC;AAEF,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkCzC,CAAC"}
@@ -12,4 +12,11 @@ export declare const UserPresenceStatusLogParamsSchema: z.ZodOptional<z.ZodObjec
12
12
  pageSize?: number | undefined;
13
13
  selectedDate?: string | undefined;
14
14
  }>>;
15
+ export declare const UserPresenceStatusLogExportParamsSchema: z.ZodObject<{
16
+ selectedDate: z.ZodOptional<z.ZodString>;
17
+ }, "strip", z.ZodTypeAny, {
18
+ selectedDate?: string | undefined;
19
+ }, {
20
+ selectedDate?: string | undefined;
21
+ }>;
15
22
  //# sourceMappingURL=validation.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../src/user-presence-status-log/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB,eAAO,MAAM,iCAAiC;;;;;;;;;;;;GAMjC,CAAC"}
1
+ {"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../src/user-presence-status-log/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB,eAAO,MAAM,iCAAiC;;;;;;;;;;;;GAMjC,CAAC;AAEd,eAAO,MAAM,uCAAuC;;;;;;EAElD,CAAC"}
@@ -67,9 +67,9 @@ export declare const wrapUpFormContract: {
67
67
  updatedAt: Date;
68
68
  deletedAt: Date | null;
69
69
  }[];
70
+ note: string | null;
70
71
  callFrom: string | null;
71
72
  callTo: string | null;
72
- note: string | null;
73
73
  }, {
74
74
  id: string;
75
75
  disposition: string | null;
@@ -83,9 +83,9 @@ export declare const wrapUpFormContract: {
83
83
  updatedAt: Date;
84
84
  deletedAt: Date | null;
85
85
  }[];
86
+ note: string | null;
86
87
  callFrom: string | null;
87
88
  callTo: string | null;
88
- note: string | null;
89
89
  }>;
90
90
  }, "strip", z.ZodTypeAny, {
91
91
  requestId: string;
@@ -102,9 +102,9 @@ export declare const wrapUpFormContract: {
102
102
  updatedAt: Date;
103
103
  deletedAt: Date | null;
104
104
  }[];
105
+ note: string | null;
105
106
  callFrom: string | null;
106
107
  callTo: string | null;
107
- note: string | null;
108
108
  };
109
109
  }, {
110
110
  requestId: string;
@@ -121,9 +121,9 @@ export declare const wrapUpFormContract: {
121
121
  updatedAt: Date;
122
122
  deletedAt: Date | null;
123
123
  }[];
124
+ note: string | null;
124
125
  callFrom: string | null;
125
126
  callTo: string | null;
126
- note: string | null;
127
127
  };
128
128
  }>;
129
129
  400: z.ZodObject<{
@@ -231,9 +231,9 @@ export declare const wrapUpFormContract: {
231
231
  updatedAt: Date;
232
232
  deletedAt: Date | null;
233
233
  }[];
234
+ note: string | null;
234
235
  callFrom: string | null;
235
236
  callTo: string | null;
236
- note: string | null;
237
237
  }, {
238
238
  id: string;
239
239
  disposition: string | null;
@@ -247,9 +247,9 @@ export declare const wrapUpFormContract: {
247
247
  updatedAt: Date;
248
248
  deletedAt: Date | null;
249
249
  }[];
250
+ note: string | null;
250
251
  callFrom: string | null;
251
252
  callTo: string | null;
252
- note: string | null;
253
253
  }>;
254
254
  }, "strip", z.ZodTypeAny, {
255
255
  requestId: string;
@@ -266,9 +266,9 @@ export declare const wrapUpFormContract: {
266
266
  updatedAt: Date;
267
267
  deletedAt: Date | null;
268
268
  }[];
269
+ note: string | null;
269
270
  callFrom: string | null;
270
271
  callTo: string | null;
271
- note: string | null;
272
272
  };
273
273
  }, {
274
274
  requestId: string;
@@ -285,9 +285,9 @@ export declare const wrapUpFormContract: {
285
285
  updatedAt: Date;
286
286
  deletedAt: Date | null;
287
287
  }[];
288
+ note: string | null;
288
289
  callFrom: string | null;
289
290
  callTo: string | null;
290
- note: string | null;
291
291
  };
292
292
  }>;
293
293
  401: z.ZodObject<{
@@ -345,9 +345,9 @@ export declare const wrapUpFormContract: {
345
345
  updatedAt: Date;
346
346
  deletedAt: Date | null;
347
347
  }[];
348
+ note: string | null;
348
349
  callFrom: string | null;
349
350
  callTo: string | null;
350
- note: string | null;
351
351
  }, z.ZodTypeDef, {
352
352
  id: string;
353
353
  disposition: string | null;
@@ -361,9 +361,9 @@ export declare const wrapUpFormContract: {
361
361
  updatedAt: Date;
362
362
  deletedAt: Date | null;
363
363
  }[];
364
+ note: string | null;
364
365
  callFrom: string | null;
365
366
  callTo: string | null;
366
- note: string | null;
367
367
  }>, "many">;
368
368
  }, "strip", z.ZodTypeAny, {
369
369
  data: {
@@ -379,9 +379,9 @@ export declare const wrapUpFormContract: {
379
379
  updatedAt: Date;
380
380
  deletedAt: Date | null;
381
381
  }[];
382
+ note: string | null;
382
383
  callFrom: string | null;
383
384
  callTo: string | null;
384
- note: string | null;
385
385
  }[];
386
386
  total: number;
387
387
  page: number;
@@ -401,9 +401,9 @@ export declare const wrapUpFormContract: {
401
401
  updatedAt: Date;
402
402
  deletedAt: Date | null;
403
403
  }[];
404
+ note: string | null;
404
405
  callFrom: string | null;
405
406
  callTo: string | null;
406
- note: string | null;
407
407
  }[];
408
408
  total: number;
409
409
  page?: number | undefined;
@@ -459,21 +459,21 @@ export declare const wrapUpFormContract: {
459
459
  updateWrapUpForm: {
460
460
  body: z.ZodObject<{
461
461
  disposition: z.ZodOptional<z.ZodNullable<z.ZodString>>;
462
+ note: z.ZodOptional<z.ZodNullable<z.ZodString>>;
462
463
  callFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
463
464
  callTo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
464
- note: z.ZodOptional<z.ZodNullable<z.ZodString>>;
465
465
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
466
466
  }, "strip", z.ZodTypeAny, {
467
467
  disposition?: string | null | undefined;
468
+ note?: string | null | undefined;
468
469
  callFrom?: string | null | undefined;
469
470
  callTo?: string | null | undefined;
470
- note?: string | null | undefined;
471
471
  tags?: string[] | undefined;
472
472
  }, {
473
473
  disposition?: string | null | undefined;
474
+ note?: string | null | undefined;
474
475
  callFrom?: string | null | undefined;
475
476
  callTo?: string | null | undefined;
476
- note?: string | null | undefined;
477
477
  tags?: string[] | undefined;
478
478
  }>;
479
479
  summary: "Update a wrap up form.";
@@ -529,9 +529,9 @@ export declare const wrapUpFormContract: {
529
529
  updatedAt: Date;
530
530
  deletedAt: Date | null;
531
531
  }[];
532
+ note: string | null;
532
533
  callFrom: string | null;
533
534
  callTo: string | null;
534
- note: string | null;
535
535
  }, {
536
536
  id: string;
537
537
  disposition: string | null;
@@ -545,9 +545,9 @@ export declare const wrapUpFormContract: {
545
545
  updatedAt: Date;
546
546
  deletedAt: Date | null;
547
547
  }[];
548
+ note: string | null;
548
549
  callFrom: string | null;
549
550
  callTo: string | null;
550
- note: string | null;
551
551
  }>;
552
552
  }, "strip", z.ZodTypeAny, {
553
553
  requestId: string;
@@ -564,9 +564,9 @@ export declare const wrapUpFormContract: {
564
564
  updatedAt: Date;
565
565
  deletedAt: Date | null;
566
566
  }[];
567
+ note: string | null;
567
568
  callFrom: string | null;
568
569
  callTo: string | null;
569
- note: string | null;
570
570
  };
571
571
  }, {
572
572
  requestId: string;
@@ -583,9 +583,9 @@ export declare const wrapUpFormContract: {
583
583
  updatedAt: Date;
584
584
  deletedAt: Date | null;
585
585
  }[];
586
+ note: string | null;
586
587
  callFrom: string | null;
587
588
  callTo: string | null;
588
- note: string | null;
589
589
  };
590
590
  }>;
591
591
  400: z.ZodObject<{
@@ -40,9 +40,9 @@ export declare const WrapUpFormSchema: z.ZodObject<{
40
40
  updatedAt: Date;
41
41
  deletedAt: Date | null;
42
42
  }[];
43
+ note: string | null;
43
44
  callFrom: string | null;
44
45
  callTo: string | null;
45
- note: string | null;
46
46
  }, {
47
47
  id: string;
48
48
  disposition: string | null;
@@ -56,8 +56,8 @@ export declare const WrapUpFormSchema: z.ZodObject<{
56
56
  updatedAt: Date;
57
57
  deletedAt: Date | null;
58
58
  }[];
59
+ note: string | null;
59
60
  callFrom: string | null;
60
61
  callTo: string | null;
61
- note: string | null;
62
62
  }>;
63
63
  //# sourceMappingURL=schema.d.ts.map
@@ -17,21 +17,21 @@ export declare const CreateWrapUpFormSchema: z.ZodObject<{
17
17
  }>;
18
18
  export declare const UpdateWrapUpFormSchema: z.ZodObject<{
19
19
  disposition: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20
+ note: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20
21
  callFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21
22
  callTo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22
- note: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23
23
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
24
24
  }, "strip", z.ZodTypeAny, {
25
25
  disposition?: string | null | undefined;
26
+ note?: string | null | undefined;
26
27
  callFrom?: string | null | undefined;
27
28
  callTo?: string | null | undefined;
28
- note?: string | null | undefined;
29
29
  tags?: string[] | undefined;
30
30
  }, {
31
31
  disposition?: string | null | undefined;
32
+ note?: string | null | undefined;
32
33
  callFrom?: string | null | undefined;
33
34
  callTo?: string | null | undefined;
34
- note?: string | null | undefined;
35
35
  tags?: string[] | undefined;
36
36
  }>;
37
37
  export declare const CreateCXLogWrapUpFormSchema: z.ZodObject<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kl1/contracts",
3
- "version": "1.0.66",
3
+ "version": "1.0.68",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/src/index.d.ts",