@kl1/contracts 1.0.47 → 1.0.49

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 (69) hide show
  1. package/dist/index.js +3441 -3175
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +3441 -3175
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/activity-log/index.d.ts +7 -7
  6. package/dist/src/activity-log/schema.d.ts +7 -7
  7. package/dist/src/attribute/index.d.ts +12 -12
  8. package/dist/src/attribute/schema.d.ts +2 -2
  9. package/dist/src/auth/index.d.ts +7 -7
  10. package/dist/src/call-log/schema.d.ts +3 -3
  11. package/dist/src/channel/index.d.ts +36 -36
  12. package/dist/src/channel/schema.d.ts +8 -10
  13. package/dist/src/channel/schema.d.ts.map +1 -1
  14. package/dist/src/chat/index.d.ts +564 -561
  15. package/dist/src/chat/index.d.ts.map +1 -1
  16. package/dist/src/chat/schema.d.ts +127 -121
  17. package/dist/src/chat/schema.d.ts.map +1 -1
  18. package/dist/src/chat/validation.d.ts +183 -180
  19. package/dist/src/chat/validation.d.ts.map +1 -1
  20. package/dist/src/comment/index.d.ts +212 -212
  21. package/dist/src/comment/schema.d.ts +60 -60
  22. package/dist/src/company/index.d.ts +32 -32
  23. package/dist/src/company/schema.d.ts +10 -10
  24. package/dist/src/company/validation.d.ts +18 -18
  25. package/dist/src/contact/index.d.ts +88 -88
  26. package/dist/src/contact/schema.d.ts +14 -14
  27. package/dist/src/contact/validation.d.ts +72 -72
  28. package/dist/src/contract.d.ts +9174 -2386
  29. package/dist/src/contract.d.ts.map +1 -1
  30. package/dist/src/custom-field/schema.d.ts +2 -2
  31. package/dist/src/cx-log/index.d.ts +118 -118
  32. package/dist/src/cx-log/schema.d.ts +98 -98
  33. package/dist/src/extension/index.d.ts +33 -27
  34. package/dist/src/extension/index.d.ts.map +1 -1
  35. package/dist/src/extension/schema.d.ts +3 -3
  36. package/dist/src/extension/validation.d.ts +12 -6
  37. package/dist/src/extension/validation.d.ts.map +1 -1
  38. package/dist/src/instagram/index.d.ts +6643 -0
  39. package/dist/src/instagram/index.d.ts.map +1 -0
  40. package/dist/src/instagram/schema.d.ts +2 -0
  41. package/dist/src/instagram/schema.d.ts.map +1 -0
  42. package/dist/src/instagram/validation.d.ts +109 -0
  43. package/dist/src/instagram/validation.d.ts.map +1 -0
  44. package/dist/src/mail/mail-contract.d.ts +12 -12
  45. package/dist/src/mail/room-contract.d.ts +12 -12
  46. package/dist/src/mail/schemas/room-validation.schema.d.ts +4 -4
  47. package/dist/src/mail/schemas/room.schema.d.ts +2 -2
  48. package/dist/src/messenger/index.d.ts +94 -94
  49. package/dist/src/telephony-agent-presence-status/index.d.ts +23 -23
  50. package/dist/src/telephony-agent-presence-status/schema.d.ts +7 -7
  51. package/dist/src/telephony-cdr/index.d.ts +99 -99
  52. package/dist/src/telephony-cdr/schema.d.ts +32 -32
  53. package/dist/src/ticket/index.d.ts +214 -214
  54. package/dist/src/ticket/schema.d.ts +36 -36
  55. package/dist/src/user/index.d.ts +23 -23
  56. package/dist/src/user/schema.d.ts +5 -5
  57. package/dist/src/user-presence-status-log/index.d.ts +4 -4
  58. package/dist/src/user-presence-status-log/schema.d.ts +7 -7
  59. package/dist/src/wrap-up-form/index.d.ts +143 -1
  60. package/dist/src/wrap-up-form/index.d.ts.map +1 -1
  61. package/dist/src/wrap-up-form/validation.d.ts +13 -0
  62. package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
  63. package/package.json +1 -1
  64. package/dist/src/app/index.d.ts +0 -17
  65. package/dist/src/app/index.d.ts.map +0 -1
  66. package/dist/src/mail/mail-server.d.ts +0 -216
  67. package/dist/src/mail/mail-server.d.ts.map +0 -1
  68. package/dist/src/platform-contact/schema.d.ts +0 -30
  69. package/dist/src/platform-contact/schema.d.ts.map +0 -1
@@ -98,7 +98,7 @@ export declare const CommentSchema: z.ZodObject<{
98
98
  sipServerUrl: z.ZodString;
99
99
  sipUserName: z.ZodString;
100
100
  webphoneLoginUser: z.ZodString;
101
- extensionId: z.ZodNumber;
101
+ extensionId: z.ZodNullable<z.ZodString>;
102
102
  extensionName: z.ZodString;
103
103
  telephonySignature: z.ZodNullable<z.ZodString>;
104
104
  }, "strip", z.ZodTypeAny, {
@@ -110,7 +110,7 @@ export declare const CommentSchema: z.ZodObject<{
110
110
  sipServerUrl: string;
111
111
  sipUserName: string;
112
112
  webphoneLoginUser: string;
113
- extensionId: number;
113
+ extensionId: string | null;
114
114
  extensionName: string;
115
115
  telephonySignature: string | null;
116
116
  }, {
@@ -122,7 +122,7 @@ export declare const CommentSchema: z.ZodObject<{
122
122
  sipServerUrl: string;
123
123
  sipUserName: string;
124
124
  webphoneLoginUser: string;
125
- extensionId: number;
125
+ extensionId: string | null;
126
126
  extensionName: string;
127
127
  telephonySignature: string | null;
128
128
  }>;
@@ -165,7 +165,7 @@ export declare const CommentSchema: z.ZodObject<{
165
165
  sipServerUrl: string;
166
166
  sipUserName: string;
167
167
  webphoneLoginUser: string;
168
- extensionId: number;
168
+ extensionId: string | null;
169
169
  extensionName: string;
170
170
  telephonySignature: string | null;
171
171
  };
@@ -208,7 +208,7 @@ export declare const CommentSchema: z.ZodObject<{
208
208
  sipServerUrl: string;
209
209
  sipUserName: string;
210
210
  webphoneLoginUser: string;
211
- extensionId: number;
211
+ extensionId: string | null;
212
212
  extensionName: string;
213
213
  telephonySignature: string | null;
214
214
  };
@@ -282,7 +282,7 @@ export declare const CommentSchema: z.ZodObject<{
282
282
  sipServerUrl: string;
283
283
  sipUserName: string;
284
284
  webphoneLoginUser: string;
285
- extensionId: number;
285
+ extensionId: string | null;
286
286
  extensionName: string;
287
287
  telephonySignature: string | null;
288
288
  };
@@ -341,7 +341,7 @@ export declare const CommentSchema: z.ZodObject<{
341
341
  sipServerUrl: string;
342
342
  sipUserName: string;
343
343
  webphoneLoginUser: string;
344
- extensionId: number;
344
+ extensionId: string | null;
345
345
  extensionName: string;
346
346
  telephonySignature: string | null;
347
347
  };
@@ -460,7 +460,7 @@ export declare const CommentSchema: z.ZodObject<{
460
460
  sipServerUrl: z.ZodString;
461
461
  sipUserName: z.ZodString;
462
462
  webphoneLoginUser: z.ZodString;
463
- extensionId: z.ZodNumber;
463
+ extensionId: z.ZodNullable<z.ZodString>;
464
464
  extensionName: z.ZodString;
465
465
  telephonySignature: z.ZodNullable<z.ZodString>;
466
466
  }, "strip", z.ZodTypeAny, {
@@ -472,7 +472,7 @@ export declare const CommentSchema: z.ZodObject<{
472
472
  sipServerUrl: string;
473
473
  sipUserName: string;
474
474
  webphoneLoginUser: string;
475
- extensionId: number;
475
+ extensionId: string | null;
476
476
  extensionName: string;
477
477
  telephonySignature: string | null;
478
478
  }, {
@@ -484,7 +484,7 @@ export declare const CommentSchema: z.ZodObject<{
484
484
  sipServerUrl: string;
485
485
  sipUserName: string;
486
486
  webphoneLoginUser: string;
487
- extensionId: number;
487
+ extensionId: string | null;
488
488
  extensionName: string;
489
489
  telephonySignature: string | null;
490
490
  }>;
@@ -527,7 +527,7 @@ export declare const CommentSchema: z.ZodObject<{
527
527
  sipServerUrl: string;
528
528
  sipUserName: string;
529
529
  webphoneLoginUser: string;
530
- extensionId: number;
530
+ extensionId: string | null;
531
531
  extensionName: string;
532
532
  telephonySignature: string | null;
533
533
  };
@@ -570,7 +570,7 @@ export declare const CommentSchema: z.ZodObject<{
570
570
  sipServerUrl: string;
571
571
  sipUserName: string;
572
572
  webphoneLoginUser: string;
573
- extensionId: number;
573
+ extensionId: string | null;
574
574
  extensionName: string;
575
575
  telephonySignature: string | null;
576
576
  };
@@ -665,7 +665,7 @@ export declare const CommentSchema: z.ZodObject<{
665
665
  sipServerUrl: z.ZodString;
666
666
  sipUserName: z.ZodString;
667
667
  webphoneLoginUser: z.ZodString;
668
- extensionId: z.ZodNumber;
668
+ extensionId: z.ZodNullable<z.ZodString>;
669
669
  extensionName: z.ZodString;
670
670
  telephonySignature: z.ZodNullable<z.ZodString>;
671
671
  }, "strip", z.ZodTypeAny, {
@@ -677,7 +677,7 @@ export declare const CommentSchema: z.ZodObject<{
677
677
  sipServerUrl: string;
678
678
  sipUserName: string;
679
679
  webphoneLoginUser: string;
680
- extensionId: number;
680
+ extensionId: string | null;
681
681
  extensionName: string;
682
682
  telephonySignature: string | null;
683
683
  }, {
@@ -689,7 +689,7 @@ export declare const CommentSchema: z.ZodObject<{
689
689
  sipServerUrl: string;
690
690
  sipUserName: string;
691
691
  webphoneLoginUser: string;
692
- extensionId: number;
692
+ extensionId: string | null;
693
693
  extensionName: string;
694
694
  telephonySignature: string | null;
695
695
  }>;
@@ -732,7 +732,7 @@ export declare const CommentSchema: z.ZodObject<{
732
732
  sipServerUrl: string;
733
733
  sipUserName: string;
734
734
  webphoneLoginUser: string;
735
- extensionId: number;
735
+ extensionId: string | null;
736
736
  extensionName: string;
737
737
  telephonySignature: string | null;
738
738
  };
@@ -775,7 +775,7 @@ export declare const CommentSchema: z.ZodObject<{
775
775
  sipServerUrl: string;
776
776
  sipUserName: string;
777
777
  webphoneLoginUser: string;
778
- extensionId: number;
778
+ extensionId: string | null;
779
779
  extensionName: string;
780
780
  telephonySignature: string | null;
781
781
  };
@@ -852,9 +852,9 @@ export declare const CommentSchema: z.ZodObject<{
852
852
  createdAt: Date;
853
853
  updatedAt: Date;
854
854
  deletedAt: Date | null;
855
- isDefault: boolean;
856
855
  systemName: string;
857
856
  displayName: string;
857
+ isDefault: boolean;
858
858
  isArchived: boolean;
859
859
  isRequired: boolean;
860
860
  isUnique: boolean;
@@ -865,9 +865,9 @@ export declare const CommentSchema: z.ZodObject<{
865
865
  createdAt: Date;
866
866
  updatedAt: Date;
867
867
  deletedAt: Date | null;
868
- isDefault: boolean;
869
868
  systemName: string;
870
869
  displayName: string;
870
+ isDefault: boolean;
871
871
  isArchived: boolean;
872
872
  isRequired: boolean;
873
873
  isUnique: boolean;
@@ -918,9 +918,9 @@ export declare const CommentSchema: z.ZodObject<{
918
918
  createdAt: Date;
919
919
  updatedAt: Date;
920
920
  deletedAt: Date | null;
921
- isDefault: boolean;
922
921
  systemName: string;
923
922
  displayName: string;
923
+ isDefault: boolean;
924
924
  isArchived: boolean;
925
925
  isRequired: boolean;
926
926
  isUnique: boolean;
@@ -953,9 +953,9 @@ export declare const CommentSchema: z.ZodObject<{
953
953
  createdAt: Date;
954
954
  updatedAt: Date;
955
955
  deletedAt: Date | null;
956
- isDefault: boolean;
957
956
  systemName: string;
958
957
  displayName: string;
958
+ isDefault: boolean;
959
959
  isArchived: boolean;
960
960
  isRequired: boolean;
961
961
  isUnique: boolean;
@@ -1205,9 +1205,9 @@ export declare const CommentSchema: z.ZodObject<{
1205
1205
  createdAt: Date;
1206
1206
  updatedAt: Date;
1207
1207
  deletedAt: Date | null;
1208
- isDefault: boolean;
1209
1208
  systemName: string;
1210
1209
  displayName: string;
1210
+ isDefault: boolean;
1211
1211
  isArchived: boolean;
1212
1212
  isRequired: boolean;
1213
1213
  isUnique: boolean;
@@ -1218,9 +1218,9 @@ export declare const CommentSchema: z.ZodObject<{
1218
1218
  createdAt: Date;
1219
1219
  updatedAt: Date;
1220
1220
  deletedAt: Date | null;
1221
- isDefault: boolean;
1222
1221
  systemName: string;
1223
1222
  displayName: string;
1223
+ isDefault: boolean;
1224
1224
  isArchived: boolean;
1225
1225
  isRequired: boolean;
1226
1226
  isUnique: boolean;
@@ -1237,9 +1237,9 @@ export declare const CommentSchema: z.ZodObject<{
1237
1237
  createdAt: Date;
1238
1238
  updatedAt: Date;
1239
1239
  deletedAt: Date | null;
1240
- isDefault: boolean;
1241
1240
  systemName: string;
1242
1241
  displayName: string;
1242
+ isDefault: boolean;
1243
1243
  isArchived: boolean;
1244
1244
  isRequired: boolean;
1245
1245
  isUnique: boolean;
@@ -1260,9 +1260,9 @@ export declare const CommentSchema: z.ZodObject<{
1260
1260
  createdAt: Date;
1261
1261
  updatedAt: Date;
1262
1262
  deletedAt: Date | null;
1263
- isDefault: boolean;
1264
1263
  systemName: string;
1265
1264
  displayName: string;
1265
+ isDefault: boolean;
1266
1266
  isArchived: boolean;
1267
1267
  isRequired: boolean;
1268
1268
  isUnique: boolean;
@@ -1361,9 +1361,9 @@ export declare const CommentSchema: z.ZodObject<{
1361
1361
  createdAt: Date;
1362
1362
  updatedAt: Date;
1363
1363
  deletedAt: Date | null;
1364
- isDefault: boolean;
1365
1364
  systemName: string;
1366
1365
  displayName: string;
1366
+ isDefault: boolean;
1367
1367
  isArchived: boolean;
1368
1368
  isRequired: boolean;
1369
1369
  isUnique: boolean;
@@ -1374,9 +1374,9 @@ export declare const CommentSchema: z.ZodObject<{
1374
1374
  createdAt: Date;
1375
1375
  updatedAt: Date;
1376
1376
  deletedAt: Date | null;
1377
- isDefault: boolean;
1378
1377
  systemName: string;
1379
1378
  displayName: string;
1379
+ isDefault: boolean;
1380
1380
  isArchived: boolean;
1381
1381
  isRequired: boolean;
1382
1382
  isUnique: boolean;
@@ -1470,9 +1470,9 @@ export declare const CommentSchema: z.ZodObject<{
1470
1470
  createdAt: Date;
1471
1471
  updatedAt: Date;
1472
1472
  deletedAt: Date | null;
1473
- isDefault: boolean;
1474
1473
  systemName: string;
1475
1474
  displayName: string;
1475
+ isDefault: boolean;
1476
1476
  isArchived: boolean;
1477
1477
  isRequired: boolean;
1478
1478
  isUnique: boolean;
@@ -1512,9 +1512,9 @@ export declare const CommentSchema: z.ZodObject<{
1512
1512
  createdAt: Date;
1513
1513
  updatedAt: Date;
1514
1514
  deletedAt: Date | null;
1515
- isDefault: boolean;
1516
1515
  systemName: string;
1517
1516
  displayName: string;
1517
+ isDefault: boolean;
1518
1518
  isArchived: boolean;
1519
1519
  isRequired: boolean;
1520
1520
  isUnique: boolean;
@@ -1667,9 +1667,9 @@ export declare const CommentSchema: z.ZodObject<{
1667
1667
  createdAt: Date;
1668
1668
  updatedAt: Date;
1669
1669
  deletedAt: Date | null;
1670
- isDefault: boolean;
1671
1670
  systemName: string;
1672
1671
  displayName: string;
1672
+ isDefault: boolean;
1673
1673
  isArchived: boolean;
1674
1674
  isRequired: boolean;
1675
1675
  isUnique: boolean;
@@ -1770,9 +1770,9 @@ export declare const CommentSchema: z.ZodObject<{
1770
1770
  createdAt: Date;
1771
1771
  updatedAt: Date;
1772
1772
  deletedAt: Date | null;
1773
- isDefault: boolean;
1774
1773
  systemName: string;
1775
1774
  displayName: string;
1775
+ isDefault: boolean;
1776
1776
  isArchived: boolean;
1777
1777
  isRequired: boolean;
1778
1778
  isUnique: boolean;
@@ -1907,9 +1907,9 @@ export declare const CommentSchema: z.ZodObject<{
1907
1907
  createdAt: Date;
1908
1908
  updatedAt: Date;
1909
1909
  deletedAt: Date | null;
1910
- isDefault: boolean;
1911
1910
  systemName: string;
1912
1911
  displayName: string;
1912
+ isDefault: boolean;
1913
1913
  isArchived: boolean;
1914
1914
  isRequired: boolean;
1915
1915
  isUnique: boolean;
@@ -2003,9 +2003,9 @@ export declare const CommentSchema: z.ZodObject<{
2003
2003
  createdAt: Date;
2004
2004
  updatedAt: Date;
2005
2005
  deletedAt: Date | null;
2006
- isDefault: boolean;
2007
2006
  systemName: string;
2008
2007
  displayName: string;
2008
+ isDefault: boolean;
2009
2009
  isArchived: boolean;
2010
2010
  isRequired: boolean;
2011
2011
  isUnique: boolean;
@@ -2077,7 +2077,7 @@ export declare const CommentSchema: z.ZodObject<{
2077
2077
  sipServerUrl: string;
2078
2078
  sipUserName: string;
2079
2079
  webphoneLoginUser: string;
2080
- extensionId: number;
2080
+ extensionId: string | null;
2081
2081
  extensionName: string;
2082
2082
  telephonySignature: string | null;
2083
2083
  };
@@ -2121,7 +2121,7 @@ export declare const CommentSchema: z.ZodObject<{
2121
2121
  sipServerUrl: string;
2122
2122
  sipUserName: string;
2123
2123
  webphoneLoginUser: string;
2124
- extensionId: number;
2124
+ extensionId: string | null;
2125
2125
  extensionName: string;
2126
2126
  telephonySignature: string | null;
2127
2127
  };
@@ -2180,9 +2180,9 @@ export declare const CommentSchema: z.ZodObject<{
2180
2180
  createdAt: Date;
2181
2181
  updatedAt: Date;
2182
2182
  deletedAt: Date | null;
2183
- isDefault: boolean;
2184
2183
  systemName: string;
2185
2184
  displayName: string;
2185
+ isDefault: boolean;
2186
2186
  isArchived: boolean;
2187
2187
  isRequired: boolean;
2188
2188
  isUnique: boolean;
@@ -2276,9 +2276,9 @@ export declare const CommentSchema: z.ZodObject<{
2276
2276
  createdAt: Date;
2277
2277
  updatedAt: Date;
2278
2278
  deletedAt: Date | null;
2279
- isDefault: boolean;
2280
2279
  systemName: string;
2281
2280
  displayName: string;
2281
+ isDefault: boolean;
2282
2282
  isArchived: boolean;
2283
2283
  isRequired: boolean;
2284
2284
  isUnique: boolean;
@@ -2350,7 +2350,7 @@ export declare const CommentSchema: z.ZodObject<{
2350
2350
  sipServerUrl: string;
2351
2351
  sipUserName: string;
2352
2352
  webphoneLoginUser: string;
2353
- extensionId: number;
2353
+ extensionId: string | null;
2354
2354
  extensionName: string;
2355
2355
  telephonySignature: string | null;
2356
2356
  };
@@ -2394,7 +2394,7 @@ export declare const CommentSchema: z.ZodObject<{
2394
2394
  sipServerUrl: string;
2395
2395
  sipUserName: string;
2396
2396
  webphoneLoginUser: string;
2397
- extensionId: number;
2397
+ extensionId: string | null;
2398
2398
  extensionName: string;
2399
2399
  telephonySignature: string | null;
2400
2400
  };
@@ -2490,7 +2490,7 @@ export declare const CommentSchema: z.ZodObject<{
2490
2490
  sipServerUrl: z.ZodString;
2491
2491
  sipUserName: z.ZodString;
2492
2492
  webphoneLoginUser: z.ZodString;
2493
- extensionId: z.ZodNumber;
2493
+ extensionId: z.ZodNullable<z.ZodString>;
2494
2494
  extensionName: z.ZodString;
2495
2495
  telephonySignature: z.ZodNullable<z.ZodString>;
2496
2496
  }, "strip", z.ZodTypeAny, {
@@ -2502,7 +2502,7 @@ export declare const CommentSchema: z.ZodObject<{
2502
2502
  sipServerUrl: string;
2503
2503
  sipUserName: string;
2504
2504
  webphoneLoginUser: string;
2505
- extensionId: number;
2505
+ extensionId: string | null;
2506
2506
  extensionName: string;
2507
2507
  telephonySignature: string | null;
2508
2508
  }, {
@@ -2514,7 +2514,7 @@ export declare const CommentSchema: z.ZodObject<{
2514
2514
  sipServerUrl: string;
2515
2515
  sipUserName: string;
2516
2516
  webphoneLoginUser: string;
2517
- extensionId: number;
2517
+ extensionId: string | null;
2518
2518
  extensionName: string;
2519
2519
  telephonySignature: string | null;
2520
2520
  }>;
@@ -2557,7 +2557,7 @@ export declare const CommentSchema: z.ZodObject<{
2557
2557
  sipServerUrl: string;
2558
2558
  sipUserName: string;
2559
2559
  webphoneLoginUser: string;
2560
- extensionId: number;
2560
+ extensionId: string | null;
2561
2561
  extensionName: string;
2562
2562
  telephonySignature: string | null;
2563
2563
  };
@@ -2600,7 +2600,7 @@ export declare const CommentSchema: z.ZodObject<{
2600
2600
  sipServerUrl: string;
2601
2601
  sipUserName: string;
2602
2602
  webphoneLoginUser: string;
2603
- extensionId: number;
2603
+ extensionId: string | null;
2604
2604
  extensionName: string;
2605
2605
  telephonySignature: string | null;
2606
2606
  };
@@ -2655,7 +2655,7 @@ export declare const CommentSchema: z.ZodObject<{
2655
2655
  sipServerUrl: string;
2656
2656
  sipUserName: string;
2657
2657
  webphoneLoginUser: string;
2658
- extensionId: number;
2658
+ extensionId: string | null;
2659
2659
  extensionName: string;
2660
2660
  telephonySignature: string | null;
2661
2661
  };
@@ -2709,11 +2709,13 @@ export declare const CommentSchema: z.ZodObject<{
2709
2709
  sipServerUrl: string;
2710
2710
  sipUserName: string;
2711
2711
  webphoneLoginUser: string;
2712
- extensionId: number;
2712
+ extensionId: string | null;
2713
2713
  extensionName: string;
2714
2714
  telephonySignature: string | null;
2715
2715
  };
2716
2716
  };
2717
+ comment: string;
2718
+ mentions: string[];
2717
2719
  ticket: {
2718
2720
  type: string;
2719
2721
  id: string;
@@ -2767,9 +2769,9 @@ export declare const CommentSchema: z.ZodObject<{
2767
2769
  createdAt: Date;
2768
2770
  updatedAt: Date;
2769
2771
  deletedAt: Date | null;
2770
- isDefault: boolean;
2771
2772
  systemName: string;
2772
2773
  displayName: string;
2774
+ isDefault: boolean;
2773
2775
  isArchived: boolean;
2774
2776
  isRequired: boolean;
2775
2777
  isUnique: boolean;
@@ -2863,9 +2865,9 @@ export declare const CommentSchema: z.ZodObject<{
2863
2865
  createdAt: Date;
2864
2866
  updatedAt: Date;
2865
2867
  deletedAt: Date | null;
2866
- isDefault: boolean;
2867
2868
  systemName: string;
2868
2869
  displayName: string;
2870
+ isDefault: boolean;
2869
2871
  isArchived: boolean;
2870
2872
  isRequired: boolean;
2871
2873
  isUnique: boolean;
@@ -2937,7 +2939,7 @@ export declare const CommentSchema: z.ZodObject<{
2937
2939
  sipServerUrl: string;
2938
2940
  sipUserName: string;
2939
2941
  webphoneLoginUser: string;
2940
- extensionId: number;
2942
+ extensionId: string | null;
2941
2943
  extensionName: string;
2942
2944
  telephonySignature: string | null;
2943
2945
  };
@@ -2981,15 +2983,13 @@ export declare const CommentSchema: z.ZodObject<{
2981
2983
  sipServerUrl: string;
2982
2984
  sipUserName: string;
2983
2985
  webphoneLoginUser: string;
2984
- extensionId: number;
2986
+ extensionId: string | null;
2985
2987
  extensionName: string;
2986
2988
  telephonySignature: string | null;
2987
2989
  };
2988
2990
  } | null | undefined;
2989
2991
  ticketNumber?: number | undefined;
2990
2992
  };
2991
- comment: string;
2992
- mentions: string[];
2993
2993
  }, {
2994
2994
  id: string;
2995
2995
  createdAt: Date;
@@ -3040,7 +3040,7 @@ export declare const CommentSchema: z.ZodObject<{
3040
3040
  sipServerUrl: string;
3041
3041
  sipUserName: string;
3042
3042
  webphoneLoginUser: string;
3043
- extensionId: number;
3043
+ extensionId: string | null;
3044
3044
  extensionName: string;
3045
3045
  telephonySignature: string | null;
3046
3046
  };
@@ -3094,11 +3094,13 @@ export declare const CommentSchema: z.ZodObject<{
3094
3094
  sipServerUrl: string;
3095
3095
  sipUserName: string;
3096
3096
  webphoneLoginUser: string;
3097
- extensionId: number;
3097
+ extensionId: string | null;
3098
3098
  extensionName: string;
3099
3099
  telephonySignature: string | null;
3100
3100
  };
3101
3101
  };
3102
+ comment: string;
3103
+ mentions: string[];
3102
3104
  ticket: {
3103
3105
  type: string;
3104
3106
  id: string;
@@ -3152,9 +3154,9 @@ export declare const CommentSchema: z.ZodObject<{
3152
3154
  createdAt: Date;
3153
3155
  updatedAt: Date;
3154
3156
  deletedAt: Date | null;
3155
- isDefault: boolean;
3156
3157
  systemName: string;
3157
3158
  displayName: string;
3159
+ isDefault: boolean;
3158
3160
  isArchived: boolean;
3159
3161
  isRequired: boolean;
3160
3162
  isUnique: boolean;
@@ -3248,9 +3250,9 @@ export declare const CommentSchema: z.ZodObject<{
3248
3250
  createdAt: Date;
3249
3251
  updatedAt: Date;
3250
3252
  deletedAt: Date | null;
3251
- isDefault: boolean;
3252
3253
  systemName: string;
3253
3254
  displayName: string;
3255
+ isDefault: boolean;
3254
3256
  isArchived: boolean;
3255
3257
  isRequired: boolean;
3256
3258
  isUnique: boolean;
@@ -3322,7 +3324,7 @@ export declare const CommentSchema: z.ZodObject<{
3322
3324
  sipServerUrl: string;
3323
3325
  sipUserName: string;
3324
3326
  webphoneLoginUser: string;
3325
- extensionId: number;
3327
+ extensionId: string | null;
3326
3328
  extensionName: string;
3327
3329
  telephonySignature: string | null;
3328
3330
  };
@@ -3366,14 +3368,12 @@ export declare const CommentSchema: z.ZodObject<{
3366
3368
  sipServerUrl: string;
3367
3369
  sipUserName: string;
3368
3370
  webphoneLoginUser: string;
3369
- extensionId: number;
3371
+ extensionId: string | null;
3370
3372
  extensionName: string;
3371
3373
  telephonySignature: string | null;
3372
3374
  };
3373
3375
  } | null | undefined;
3374
3376
  ticketNumber?: number | undefined;
3375
3377
  };
3376
- comment: string;
3377
- mentions: string[];
3378
3378
  }>;
3379
3379
  //# sourceMappingURL=schema.d.ts.map