@kl1/contracts 1.0.49 → 1.0.50
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.
- package/dist/index.js +3320 -3422
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3320 -3422
- package/dist/index.mjs.map +1 -1
- package/dist/src/app/index.d.ts +17 -0
- package/dist/src/app/index.d.ts.map +1 -0
- package/dist/src/attribute/index.d.ts +12 -12
- package/dist/src/attribute/schema.d.ts +2 -2
- package/dist/src/chat/index.d.ts +211 -211
- package/dist/src/chat/schema.d.ts +48 -54
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +62 -62
- package/dist/src/comment/index.d.ts +94 -94
- package/dist/src/comment/schema.d.ts +26 -26
- package/dist/src/company/index.d.ts +32 -32
- package/dist/src/company/schema.d.ts +10 -10
- package/dist/src/company/validation.d.ts +18 -18
- package/dist/src/contact/index.d.ts +88 -88
- package/dist/src/contact/schema.d.ts +14 -14
- package/dist/src/contact/validation.d.ts +72 -72
- package/dist/src/contract.d.ts +1363 -8150
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/custom-field/schema.d.ts +2 -2
- package/dist/src/cx-log/index.d.ts +52 -52
- package/dist/src/cx-log/schema.d.ts +44 -44
- package/dist/src/mail/mail-contract.d.ts +12 -12
- package/dist/src/mail/mail-server.d.ts +216 -0
- package/dist/src/mail/mail-server.d.ts.map +1 -0
- package/dist/src/mail/room-contract.d.ts +12 -12
- package/dist/src/mail/schemas/room-validation.schema.d.ts +4 -4
- package/dist/src/mail/schemas/room.schema.d.ts +2 -2
- package/dist/src/messenger/index.d.ts +32 -32
- package/dist/src/platform-contact/schema.d.ts +30 -0
- package/dist/src/platform-contact/schema.d.ts.map +1 -0
- package/dist/src/telephony-cdr/index.d.ts +60 -68
- package/dist/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/schema.d.ts +12 -12
- package/dist/src/telephony-cdr/validation.d.ts +8 -26
- package/dist/src/telephony-cdr/validation.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +118 -118
- package/dist/src/ticket/schema.d.ts +22 -22
- package/dist/src/wrap-up-form/index.d.ts +1 -143
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/validation.d.ts +0 -13
- package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/src/instagram/index.d.ts +0 -6643
- package/dist/src/instagram/index.d.ts.map +0 -1
- package/dist/src/instagram/schema.d.ts +0 -2
- package/dist/src/instagram/schema.d.ts.map +0 -1
- package/dist/src/instagram/validation.d.ts +0 -109
- package/dist/src/instagram/validation.d.ts.map +0 -1
package/dist/src/chat/index.d.ts
CHANGED
@@ -20,7 +20,7 @@ export declare const receiveMessageContract: {
|
|
20
20
|
message: z.ZodObject<{
|
21
21
|
message: z.ZodString;
|
22
22
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
23
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "
|
23
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
|
24
24
|
metadata: z.ZodAny;
|
25
25
|
platformId: z.ZodString;
|
26
26
|
platformMessageId: z.ZodString;
|
@@ -172,9 +172,9 @@ export declare const receiveMessageContract: {
|
|
172
172
|
createdAt: Date;
|
173
173
|
updatedAt: Date;
|
174
174
|
deletedAt: Date | null;
|
175
|
+
isDefault: boolean;
|
175
176
|
systemName: string;
|
176
177
|
displayName: string;
|
177
|
-
isDefault: boolean;
|
178
178
|
isArchived: boolean;
|
179
179
|
isRequired: boolean;
|
180
180
|
isUnique: boolean;
|
@@ -185,9 +185,9 @@ export declare const receiveMessageContract: {
|
|
185
185
|
createdAt: Date;
|
186
186
|
updatedAt: Date;
|
187
187
|
deletedAt: Date | null;
|
188
|
+
isDefault: boolean;
|
188
189
|
systemName: string;
|
189
190
|
displayName: string;
|
190
|
-
isDefault: boolean;
|
191
191
|
isArchived: boolean;
|
192
192
|
isRequired: boolean;
|
193
193
|
isUnique: boolean;
|
@@ -204,9 +204,9 @@ export declare const receiveMessageContract: {
|
|
204
204
|
createdAt: Date;
|
205
205
|
updatedAt: Date;
|
206
206
|
deletedAt: Date | null;
|
207
|
+
isDefault: boolean;
|
207
208
|
systemName: string;
|
208
209
|
displayName: string;
|
209
|
-
isDefault: boolean;
|
210
210
|
isArchived: boolean;
|
211
211
|
isRequired: boolean;
|
212
212
|
isUnique: boolean;
|
@@ -227,9 +227,9 @@ export declare const receiveMessageContract: {
|
|
227
227
|
createdAt: Date;
|
228
228
|
updatedAt: Date;
|
229
229
|
deletedAt: Date | null;
|
230
|
+
isDefault: boolean;
|
230
231
|
systemName: string;
|
231
232
|
displayName: string;
|
232
|
-
isDefault: boolean;
|
233
233
|
isArchived: boolean;
|
234
234
|
isRequired: boolean;
|
235
235
|
isUnique: boolean;
|
@@ -328,9 +328,9 @@ export declare const receiveMessageContract: {
|
|
328
328
|
createdAt: Date;
|
329
329
|
updatedAt: Date;
|
330
330
|
deletedAt: Date | null;
|
331
|
+
isDefault: boolean;
|
331
332
|
systemName: string;
|
332
333
|
displayName: string;
|
333
|
-
isDefault: boolean;
|
334
334
|
isArchived: boolean;
|
335
335
|
isRequired: boolean;
|
336
336
|
isUnique: boolean;
|
@@ -341,9 +341,9 @@ export declare const receiveMessageContract: {
|
|
341
341
|
createdAt: Date;
|
342
342
|
updatedAt: Date;
|
343
343
|
deletedAt: Date | null;
|
344
|
+
isDefault: boolean;
|
344
345
|
systemName: string;
|
345
346
|
displayName: string;
|
346
|
-
isDefault: boolean;
|
347
347
|
isArchived: boolean;
|
348
348
|
isRequired: boolean;
|
349
349
|
isUnique: boolean;
|
@@ -437,9 +437,9 @@ export declare const receiveMessageContract: {
|
|
437
437
|
createdAt: Date;
|
438
438
|
updatedAt: Date;
|
439
439
|
deletedAt: Date | null;
|
440
|
+
isDefault: boolean;
|
440
441
|
systemName: string;
|
441
442
|
displayName: string;
|
442
|
-
isDefault: boolean;
|
443
443
|
isArchived: boolean;
|
444
444
|
isRequired: boolean;
|
445
445
|
isUnique: boolean;
|
@@ -479,9 +479,9 @@ export declare const receiveMessageContract: {
|
|
479
479
|
createdAt: Date;
|
480
480
|
updatedAt: Date;
|
481
481
|
deletedAt: Date | null;
|
482
|
+
isDefault: boolean;
|
482
483
|
systemName: string;
|
483
484
|
displayName: string;
|
484
|
-
isDefault: boolean;
|
485
485
|
isArchived: boolean;
|
486
486
|
isRequired: boolean;
|
487
487
|
isUnique: boolean;
|
@@ -634,9 +634,9 @@ export declare const receiveMessageContract: {
|
|
634
634
|
createdAt: Date;
|
635
635
|
updatedAt: Date;
|
636
636
|
deletedAt: Date | null;
|
637
|
+
isDefault: boolean;
|
637
638
|
systemName: string;
|
638
639
|
displayName: string;
|
639
|
-
isDefault: boolean;
|
640
640
|
isArchived: boolean;
|
641
641
|
isRequired: boolean;
|
642
642
|
isUnique: boolean;
|
@@ -737,9 +737,9 @@ export declare const receiveMessageContract: {
|
|
737
737
|
createdAt: Date;
|
738
738
|
updatedAt: Date;
|
739
739
|
deletedAt: Date | null;
|
740
|
+
isDefault: boolean;
|
740
741
|
systemName: string;
|
741
742
|
displayName: string;
|
742
|
-
isDefault: boolean;
|
743
743
|
isArchived: boolean;
|
744
744
|
isRequired: boolean;
|
745
745
|
isUnique: boolean;
|
@@ -854,9 +854,9 @@ export declare const receiveMessageContract: {
|
|
854
854
|
createdAt: Date;
|
855
855
|
updatedAt: Date;
|
856
856
|
deletedAt: Date | null;
|
857
|
+
isDefault: boolean;
|
857
858
|
systemName: string;
|
858
859
|
displayName: string;
|
859
|
-
isDefault: boolean;
|
860
860
|
isArchived: boolean;
|
861
861
|
isRequired: boolean;
|
862
862
|
isUnique: boolean;
|
@@ -972,9 +972,9 @@ export declare const receiveMessageContract: {
|
|
972
972
|
createdAt: Date;
|
973
973
|
updatedAt: Date;
|
974
974
|
deletedAt: Date | null;
|
975
|
+
isDefault: boolean;
|
975
976
|
systemName: string;
|
976
977
|
displayName: string;
|
977
|
-
isDefault: boolean;
|
978
978
|
isArchived: boolean;
|
979
979
|
isRequired: boolean;
|
980
980
|
isUnique: boolean;
|
@@ -1741,9 +1741,9 @@ export declare const receiveMessageContract: {
|
|
1741
1741
|
createdAt: Date;
|
1742
1742
|
updatedAt: Date;
|
1743
1743
|
deletedAt: Date | null;
|
1744
|
+
isDefault: boolean;
|
1744
1745
|
systemName: string;
|
1745
1746
|
displayName: string;
|
1746
|
-
isDefault: boolean;
|
1747
1747
|
isArchived: boolean;
|
1748
1748
|
isRequired: boolean;
|
1749
1749
|
isUnique: boolean;
|
@@ -2014,9 +2014,9 @@ export declare const receiveMessageContract: {
|
|
2014
2014
|
createdAt: Date;
|
2015
2015
|
updatedAt: Date;
|
2016
2016
|
deletedAt: Date | null;
|
2017
|
+
isDefault: boolean;
|
2017
2018
|
systemName: string;
|
2018
2019
|
displayName: string;
|
2019
|
-
isDefault: boolean;
|
2020
2020
|
isArchived: boolean;
|
2021
2021
|
isRequired: boolean;
|
2022
2022
|
isUnique: boolean;
|
@@ -2893,7 +2893,7 @@ export declare const receiveMessageContract: {
|
|
2893
2893
|
};
|
2894
2894
|
}>>;
|
2895
2895
|
}, "strip", z.ZodTypeAny, {
|
2896
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "
|
2896
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "reopen" | "handed_over" | "updated" | "started";
|
2897
2897
|
message: string;
|
2898
2898
|
direction: "incoming" | "outgoing" | "system";
|
2899
2899
|
platformId: string;
|
@@ -2939,9 +2939,9 @@ export declare const receiveMessageContract: {
|
|
2939
2939
|
createdAt: Date;
|
2940
2940
|
updatedAt: Date;
|
2941
2941
|
deletedAt: Date | null;
|
2942
|
+
isDefault: boolean;
|
2942
2943
|
systemName: string;
|
2943
2944
|
displayName: string;
|
2944
|
-
isDefault: boolean;
|
2945
2945
|
isArchived: boolean;
|
2946
2946
|
isRequired: boolean;
|
2947
2947
|
isUnique: boolean;
|
@@ -3324,7 +3324,7 @@ export declare const receiveMessageContract: {
|
|
3324
3324
|
};
|
3325
3325
|
} | undefined;
|
3326
3326
|
}, {
|
3327
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "
|
3327
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "reopen" | "handed_over" | "updated" | "started";
|
3328
3328
|
message: string;
|
3329
3329
|
direction: "incoming" | "outgoing" | "system";
|
3330
3330
|
platformId: string;
|
@@ -3370,9 +3370,9 @@ export declare const receiveMessageContract: {
|
|
3370
3370
|
createdAt: Date;
|
3371
3371
|
updatedAt: Date;
|
3372
3372
|
deletedAt: Date | null;
|
3373
|
+
isDefault: boolean;
|
3373
3374
|
systemName: string;
|
3374
3375
|
displayName: string;
|
3375
|
-
isDefault: boolean;
|
3376
3376
|
isArchived: boolean;
|
3377
3377
|
isRequired: boolean;
|
3378
3378
|
isUnique: boolean;
|
@@ -3757,7 +3757,7 @@ export declare const receiveMessageContract: {
|
|
3757
3757
|
}>;
|
3758
3758
|
}, "strip", z.ZodTypeAny, {
|
3759
3759
|
message: {
|
3760
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "
|
3760
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "reopen" | "handed_over" | "updated" | "started";
|
3761
3761
|
message: string;
|
3762
3762
|
direction: "incoming" | "outgoing" | "system";
|
3763
3763
|
platformId: string;
|
@@ -3803,9 +3803,9 @@ export declare const receiveMessageContract: {
|
|
3803
3803
|
createdAt: Date;
|
3804
3804
|
updatedAt: Date;
|
3805
3805
|
deletedAt: Date | null;
|
3806
|
+
isDefault: boolean;
|
3806
3807
|
systemName: string;
|
3807
3808
|
displayName: string;
|
3808
|
-
isDefault: boolean;
|
3809
3809
|
isArchived: boolean;
|
3810
3810
|
isRequired: boolean;
|
3811
3811
|
isUnique: boolean;
|
@@ -4190,7 +4190,7 @@ export declare const receiveMessageContract: {
|
|
4190
4190
|
};
|
4191
4191
|
}, {
|
4192
4192
|
message: {
|
4193
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "
|
4193
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "reopen" | "handed_over" | "updated" | "started";
|
4194
4194
|
message: string;
|
4195
4195
|
direction: "incoming" | "outgoing" | "system";
|
4196
4196
|
platformId: string;
|
@@ -4236,9 +4236,9 @@ export declare const receiveMessageContract: {
|
|
4236
4236
|
createdAt: Date;
|
4237
4237
|
updatedAt: Date;
|
4238
4238
|
deletedAt: Date | null;
|
4239
|
+
isDefault: boolean;
|
4239
4240
|
systemName: string;
|
4240
4241
|
displayName: string;
|
4241
|
-
isDefault: boolean;
|
4242
4242
|
isArchived: boolean;
|
4243
4243
|
isRequired: boolean;
|
4244
4244
|
isUnique: boolean;
|
@@ -4684,23 +4684,23 @@ export declare const mainChatContract: {
|
|
4684
4684
|
createdAt: Date;
|
4685
4685
|
updatedAt: Date;
|
4686
4686
|
deletedAt: Date | null;
|
4687
|
-
entityId: string;
|
4688
4687
|
attributeId: string;
|
4689
4688
|
textValue: string | null;
|
4690
4689
|
booleanValue: boolean | null;
|
4691
4690
|
numberValue: number | null;
|
4692
4691
|
dateValue: Date | null;
|
4692
|
+
entityId: string;
|
4693
4693
|
}, {
|
4694
4694
|
id: string;
|
4695
4695
|
createdAt: Date;
|
4696
4696
|
updatedAt: Date;
|
4697
4697
|
deletedAt: Date | null;
|
4698
|
-
entityId: string;
|
4699
4698
|
attributeId: string;
|
4700
4699
|
textValue: string | null;
|
4701
4700
|
booleanValue: boolean | null;
|
4702
4701
|
numberValue: number | null;
|
4703
4702
|
dateValue: Date | null;
|
4703
|
+
entityId: string;
|
4704
4704
|
}>, "many">>;
|
4705
4705
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
4706
4706
|
phone: z.ZodOptional<z.ZodString>;
|
@@ -4729,12 +4729,12 @@ export declare const mainChatContract: {
|
|
4729
4729
|
createdAt: Date;
|
4730
4730
|
updatedAt: Date;
|
4731
4731
|
deletedAt: Date | null;
|
4732
|
-
entityId: string;
|
4733
4732
|
attributeId: string;
|
4734
4733
|
textValue: string | null;
|
4735
4734
|
booleanValue: boolean | null;
|
4736
4735
|
numberValue: number | null;
|
4737
4736
|
dateValue: Date | null;
|
4737
|
+
entityId: string;
|
4738
4738
|
}[] | undefined;
|
4739
4739
|
tags?: string[] | undefined;
|
4740
4740
|
phone?: string | undefined;
|
@@ -4761,12 +4761,12 @@ export declare const mainChatContract: {
|
|
4761
4761
|
createdAt: Date;
|
4762
4762
|
updatedAt: Date;
|
4763
4763
|
deletedAt: Date | null;
|
4764
|
-
entityId: string;
|
4765
4764
|
attributeId: string;
|
4766
4765
|
textValue: string | null;
|
4767
4766
|
booleanValue: boolean | null;
|
4768
4767
|
numberValue: number | null;
|
4769
4768
|
dateValue: Date | null;
|
4769
|
+
entityId: string;
|
4770
4770
|
}[] | undefined;
|
4771
4771
|
tags?: string[] | undefined;
|
4772
4772
|
phone?: string | undefined;
|
@@ -4928,9 +4928,9 @@ export declare const mainChatContract: {
|
|
4928
4928
|
createdAt: Date;
|
4929
4929
|
updatedAt: Date;
|
4930
4930
|
deletedAt: Date | null;
|
4931
|
+
isDefault: boolean;
|
4931
4932
|
systemName: string;
|
4932
4933
|
displayName: string;
|
4933
|
-
isDefault: boolean;
|
4934
4934
|
isArchived: boolean;
|
4935
4935
|
isRequired: boolean;
|
4936
4936
|
isUnique: boolean;
|
@@ -4941,9 +4941,9 @@ export declare const mainChatContract: {
|
|
4941
4941
|
createdAt: Date;
|
4942
4942
|
updatedAt: Date;
|
4943
4943
|
deletedAt: Date | null;
|
4944
|
+
isDefault: boolean;
|
4944
4945
|
systemName: string;
|
4945
4946
|
displayName: string;
|
4946
|
-
isDefault: boolean;
|
4947
4947
|
isArchived: boolean;
|
4948
4948
|
isRequired: boolean;
|
4949
4949
|
isUnique: boolean;
|
@@ -4960,9 +4960,9 @@ export declare const mainChatContract: {
|
|
4960
4960
|
createdAt: Date;
|
4961
4961
|
updatedAt: Date;
|
4962
4962
|
deletedAt: Date | null;
|
4963
|
+
isDefault: boolean;
|
4963
4964
|
systemName: string;
|
4964
4965
|
displayName: string;
|
4965
|
-
isDefault: boolean;
|
4966
4966
|
isArchived: boolean;
|
4967
4967
|
isRequired: boolean;
|
4968
4968
|
isUnique: boolean;
|
@@ -4983,9 +4983,9 @@ export declare const mainChatContract: {
|
|
4983
4983
|
createdAt: Date;
|
4984
4984
|
updatedAt: Date;
|
4985
4985
|
deletedAt: Date | null;
|
4986
|
+
isDefault: boolean;
|
4986
4987
|
systemName: string;
|
4987
4988
|
displayName: string;
|
4988
|
-
isDefault: boolean;
|
4989
4989
|
isArchived: boolean;
|
4990
4990
|
isRequired: boolean;
|
4991
4991
|
isUnique: boolean;
|
@@ -5084,9 +5084,9 @@ export declare const mainChatContract: {
|
|
5084
5084
|
createdAt: Date;
|
5085
5085
|
updatedAt: Date;
|
5086
5086
|
deletedAt: Date | null;
|
5087
|
+
isDefault: boolean;
|
5087
5088
|
systemName: string;
|
5088
5089
|
displayName: string;
|
5089
|
-
isDefault: boolean;
|
5090
5090
|
isArchived: boolean;
|
5091
5091
|
isRequired: boolean;
|
5092
5092
|
isUnique: boolean;
|
@@ -5097,9 +5097,9 @@ export declare const mainChatContract: {
|
|
5097
5097
|
createdAt: Date;
|
5098
5098
|
updatedAt: Date;
|
5099
5099
|
deletedAt: Date | null;
|
5100
|
+
isDefault: boolean;
|
5100
5101
|
systemName: string;
|
5101
5102
|
displayName: string;
|
5102
|
-
isDefault: boolean;
|
5103
5103
|
isArchived: boolean;
|
5104
5104
|
isRequired: boolean;
|
5105
5105
|
isUnique: boolean;
|
@@ -5193,9 +5193,9 @@ export declare const mainChatContract: {
|
|
5193
5193
|
createdAt: Date;
|
5194
5194
|
updatedAt: Date;
|
5195
5195
|
deletedAt: Date | null;
|
5196
|
+
isDefault: boolean;
|
5196
5197
|
systemName: string;
|
5197
5198
|
displayName: string;
|
5198
|
-
isDefault: boolean;
|
5199
5199
|
isArchived: boolean;
|
5200
5200
|
isRequired: boolean;
|
5201
5201
|
isUnique: boolean;
|
@@ -5235,9 +5235,9 @@ export declare const mainChatContract: {
|
|
5235
5235
|
createdAt: Date;
|
5236
5236
|
updatedAt: Date;
|
5237
5237
|
deletedAt: Date | null;
|
5238
|
+
isDefault: boolean;
|
5238
5239
|
systemName: string;
|
5239
5240
|
displayName: string;
|
5240
|
-
isDefault: boolean;
|
5241
5241
|
isArchived: boolean;
|
5242
5242
|
isRequired: boolean;
|
5243
5243
|
isUnique: boolean;
|
@@ -5390,9 +5390,9 @@ export declare const mainChatContract: {
|
|
5390
5390
|
createdAt: Date;
|
5391
5391
|
updatedAt: Date;
|
5392
5392
|
deletedAt: Date | null;
|
5393
|
+
isDefault: boolean;
|
5393
5394
|
systemName: string;
|
5394
5395
|
displayName: string;
|
5395
|
-
isDefault: boolean;
|
5396
5396
|
isArchived: boolean;
|
5397
5397
|
isRequired: boolean;
|
5398
5398
|
isUnique: boolean;
|
@@ -5493,9 +5493,9 @@ export declare const mainChatContract: {
|
|
5493
5493
|
createdAt: Date;
|
5494
5494
|
updatedAt: Date;
|
5495
5495
|
deletedAt: Date | null;
|
5496
|
+
isDefault: boolean;
|
5496
5497
|
systemName: string;
|
5497
5498
|
displayName: string;
|
5498
|
-
isDefault: boolean;
|
5499
5499
|
isArchived: boolean;
|
5500
5500
|
isRequired: boolean;
|
5501
5501
|
isUnique: boolean;
|
@@ -5610,9 +5610,9 @@ export declare const mainChatContract: {
|
|
5610
5610
|
createdAt: Date;
|
5611
5611
|
updatedAt: Date;
|
5612
5612
|
deletedAt: Date | null;
|
5613
|
+
isDefault: boolean;
|
5613
5614
|
systemName: string;
|
5614
5615
|
displayName: string;
|
5615
|
-
isDefault: boolean;
|
5616
5616
|
isArchived: boolean;
|
5617
5617
|
isRequired: boolean;
|
5618
5618
|
isUnique: boolean;
|
@@ -5728,9 +5728,9 @@ export declare const mainChatContract: {
|
|
5728
5728
|
createdAt: Date;
|
5729
5729
|
updatedAt: Date;
|
5730
5730
|
deletedAt: Date | null;
|
5731
|
+
isDefault: boolean;
|
5731
5732
|
systemName: string;
|
5732
5733
|
displayName: string;
|
5733
|
-
isDefault: boolean;
|
5734
5734
|
isArchived: boolean;
|
5735
5735
|
isRequired: boolean;
|
5736
5736
|
isUnique: boolean;
|
@@ -6819,9 +6819,9 @@ export declare const mainChatContract: {
|
|
6819
6819
|
createdAt: Date;
|
6820
6820
|
updatedAt: Date;
|
6821
6821
|
deletedAt: Date | null;
|
6822
|
+
isDefault: boolean;
|
6822
6823
|
systemName: string;
|
6823
6824
|
displayName: string;
|
6824
|
-
isDefault: boolean;
|
6825
6825
|
isArchived: boolean;
|
6826
6826
|
isRequired: boolean;
|
6827
6827
|
isUnique: boolean;
|
@@ -7138,9 +7138,9 @@ export declare const mainChatContract: {
|
|
7138
7138
|
createdAt: Date;
|
7139
7139
|
updatedAt: Date;
|
7140
7140
|
deletedAt: Date | null;
|
7141
|
+
isDefault: boolean;
|
7141
7142
|
systemName: string;
|
7142
7143
|
displayName: string;
|
7143
|
-
isDefault: boolean;
|
7144
7144
|
isArchived: boolean;
|
7145
7145
|
isRequired: boolean;
|
7146
7146
|
isUnique: boolean;
|
@@ -7469,9 +7469,9 @@ export declare const mainChatContract: {
|
|
7469
7469
|
createdAt: Date;
|
7470
7470
|
updatedAt: Date;
|
7471
7471
|
deletedAt: Date | null;
|
7472
|
+
isDefault: boolean;
|
7472
7473
|
systemName: string;
|
7473
7474
|
displayName: string;
|
7474
|
-
isDefault: boolean;
|
7475
7475
|
isArchived: boolean;
|
7476
7476
|
isRequired: boolean;
|
7477
7477
|
isUnique: boolean;
|
@@ -7798,9 +7798,9 @@ export declare const mainChatContract: {
|
|
7798
7798
|
createdAt: Date;
|
7799
7799
|
updatedAt: Date;
|
7800
7800
|
deletedAt: Date | null;
|
7801
|
+
isDefault: boolean;
|
7801
7802
|
systemName: string;
|
7802
7803
|
displayName: string;
|
7803
|
-
isDefault: boolean;
|
7804
7804
|
isArchived: boolean;
|
7805
7805
|
isRequired: boolean;
|
7806
7806
|
isUnique: boolean;
|
@@ -8188,9 +8188,9 @@ export declare const mainChatContract: {
|
|
8188
8188
|
createdAt: Date;
|
8189
8189
|
updatedAt: Date;
|
8190
8190
|
deletedAt: Date | null;
|
8191
|
+
isDefault: boolean;
|
8191
8192
|
systemName: string;
|
8192
8193
|
displayName: string;
|
8193
|
-
isDefault: boolean;
|
8194
8194
|
isArchived: boolean;
|
8195
8195
|
isRequired: boolean;
|
8196
8196
|
isUnique: boolean;
|
@@ -8201,9 +8201,9 @@ export declare const mainChatContract: {
|
|
8201
8201
|
createdAt: Date;
|
8202
8202
|
updatedAt: Date;
|
8203
8203
|
deletedAt: Date | null;
|
8204
|
+
isDefault: boolean;
|
8204
8205
|
systemName: string;
|
8205
8206
|
displayName: string;
|
8206
|
-
isDefault: boolean;
|
8207
8207
|
isArchived: boolean;
|
8208
8208
|
isRequired: boolean;
|
8209
8209
|
isUnique: boolean;
|
@@ -8220,9 +8220,9 @@ export declare const mainChatContract: {
|
|
8220
8220
|
createdAt: Date;
|
8221
8221
|
updatedAt: Date;
|
8222
8222
|
deletedAt: Date | null;
|
8223
|
+
isDefault: boolean;
|
8223
8224
|
systemName: string;
|
8224
8225
|
displayName: string;
|
8225
|
-
isDefault: boolean;
|
8226
8226
|
isArchived: boolean;
|
8227
8227
|
isRequired: boolean;
|
8228
8228
|
isUnique: boolean;
|
@@ -8243,9 +8243,9 @@ export declare const mainChatContract: {
|
|
8243
8243
|
createdAt: Date;
|
8244
8244
|
updatedAt: Date;
|
8245
8245
|
deletedAt: Date | null;
|
8246
|
+
isDefault: boolean;
|
8246
8247
|
systemName: string;
|
8247
8248
|
displayName: string;
|
8248
|
-
isDefault: boolean;
|
8249
8249
|
isArchived: boolean;
|
8250
8250
|
isRequired: boolean;
|
8251
8251
|
isUnique: boolean;
|
@@ -8344,9 +8344,9 @@ export declare const mainChatContract: {
|
|
8344
8344
|
createdAt: Date;
|
8345
8345
|
updatedAt: Date;
|
8346
8346
|
deletedAt: Date | null;
|
8347
|
+
isDefault: boolean;
|
8347
8348
|
systemName: string;
|
8348
8349
|
displayName: string;
|
8349
|
-
isDefault: boolean;
|
8350
8350
|
isArchived: boolean;
|
8351
8351
|
isRequired: boolean;
|
8352
8352
|
isUnique: boolean;
|
@@ -8357,9 +8357,9 @@ export declare const mainChatContract: {
|
|
8357
8357
|
createdAt: Date;
|
8358
8358
|
updatedAt: Date;
|
8359
8359
|
deletedAt: Date | null;
|
8360
|
+
isDefault: boolean;
|
8360
8361
|
systemName: string;
|
8361
8362
|
displayName: string;
|
8362
|
-
isDefault: boolean;
|
8363
8363
|
isArchived: boolean;
|
8364
8364
|
isRequired: boolean;
|
8365
8365
|
isUnique: boolean;
|
@@ -8453,9 +8453,9 @@ export declare const mainChatContract: {
|
|
8453
8453
|
createdAt: Date;
|
8454
8454
|
updatedAt: Date;
|
8455
8455
|
deletedAt: Date | null;
|
8456
|
+
isDefault: boolean;
|
8456
8457
|
systemName: string;
|
8457
8458
|
displayName: string;
|
8458
|
-
isDefault: boolean;
|
8459
8459
|
isArchived: boolean;
|
8460
8460
|
isRequired: boolean;
|
8461
8461
|
isUnique: boolean;
|
@@ -8495,9 +8495,9 @@ export declare const mainChatContract: {
|
|
8495
8495
|
createdAt: Date;
|
8496
8496
|
updatedAt: Date;
|
8497
8497
|
deletedAt: Date | null;
|
8498
|
+
isDefault: boolean;
|
8498
8499
|
systemName: string;
|
8499
8500
|
displayName: string;
|
8500
|
-
isDefault: boolean;
|
8501
8501
|
isArchived: boolean;
|
8502
8502
|
isRequired: boolean;
|
8503
8503
|
isUnique: boolean;
|
@@ -8650,9 +8650,9 @@ export declare const mainChatContract: {
|
|
8650
8650
|
createdAt: Date;
|
8651
8651
|
updatedAt: Date;
|
8652
8652
|
deletedAt: Date | null;
|
8653
|
+
isDefault: boolean;
|
8653
8654
|
systemName: string;
|
8654
8655
|
displayName: string;
|
8655
|
-
isDefault: boolean;
|
8656
8656
|
isArchived: boolean;
|
8657
8657
|
isRequired: boolean;
|
8658
8658
|
isUnique: boolean;
|
@@ -8753,9 +8753,9 @@ export declare const mainChatContract: {
|
|
8753
8753
|
createdAt: Date;
|
8754
8754
|
updatedAt: Date;
|
8755
8755
|
deletedAt: Date | null;
|
8756
|
+
isDefault: boolean;
|
8756
8757
|
systemName: string;
|
8757
8758
|
displayName: string;
|
8758
|
-
isDefault: boolean;
|
8759
8759
|
isArchived: boolean;
|
8760
8760
|
isRequired: boolean;
|
8761
8761
|
isUnique: boolean;
|
@@ -8858,9 +8858,9 @@ export declare const mainChatContract: {
|
|
8858
8858
|
createdAt: Date;
|
8859
8859
|
updatedAt: Date;
|
8860
8860
|
deletedAt: Date | null;
|
8861
|
+
isDefault: boolean;
|
8861
8862
|
systemName: string;
|
8862
8863
|
displayName: string;
|
8863
|
-
isDefault: boolean;
|
8864
8864
|
isArchived: boolean;
|
8865
8865
|
isRequired: boolean;
|
8866
8866
|
isUnique: boolean;
|
@@ -8964,9 +8964,9 @@ export declare const mainChatContract: {
|
|
8964
8964
|
createdAt: Date;
|
8965
8965
|
updatedAt: Date;
|
8966
8966
|
deletedAt: Date | null;
|
8967
|
+
isDefault: boolean;
|
8967
8968
|
systemName: string;
|
8968
8969
|
displayName: string;
|
8969
|
-
isDefault: boolean;
|
8970
8970
|
isArchived: boolean;
|
8971
8971
|
isRequired: boolean;
|
8972
8972
|
isUnique: boolean;
|
@@ -9264,9 +9264,9 @@ export declare const mainChatContract: {
|
|
9264
9264
|
createdAt: Date;
|
9265
9265
|
updatedAt: Date;
|
9266
9266
|
deletedAt: Date | null;
|
9267
|
+
isDefault: boolean;
|
9267
9268
|
systemName: string;
|
9268
9269
|
displayName: string;
|
9269
|
-
isDefault: boolean;
|
9270
9270
|
isArchived: boolean;
|
9271
9271
|
isRequired: boolean;
|
9272
9272
|
isUnique: boolean;
|
@@ -9277,9 +9277,9 @@ export declare const mainChatContract: {
|
|
9277
9277
|
createdAt: Date;
|
9278
9278
|
updatedAt: Date;
|
9279
9279
|
deletedAt: Date | null;
|
9280
|
+
isDefault: boolean;
|
9280
9281
|
systemName: string;
|
9281
9282
|
displayName: string;
|
9282
|
-
isDefault: boolean;
|
9283
9283
|
isArchived: boolean;
|
9284
9284
|
isRequired: boolean;
|
9285
9285
|
isUnique: boolean;
|
@@ -9296,9 +9296,9 @@ export declare const mainChatContract: {
|
|
9296
9296
|
createdAt: Date;
|
9297
9297
|
updatedAt: Date;
|
9298
9298
|
deletedAt: Date | null;
|
9299
|
+
isDefault: boolean;
|
9299
9300
|
systemName: string;
|
9300
9301
|
displayName: string;
|
9301
|
-
isDefault: boolean;
|
9302
9302
|
isArchived: boolean;
|
9303
9303
|
isRequired: boolean;
|
9304
9304
|
isUnique: boolean;
|
@@ -9319,9 +9319,9 @@ export declare const mainChatContract: {
|
|
9319
9319
|
createdAt: Date;
|
9320
9320
|
updatedAt: Date;
|
9321
9321
|
deletedAt: Date | null;
|
9322
|
+
isDefault: boolean;
|
9322
9323
|
systemName: string;
|
9323
9324
|
displayName: string;
|
9324
|
-
isDefault: boolean;
|
9325
9325
|
isArchived: boolean;
|
9326
9326
|
isRequired: boolean;
|
9327
9327
|
isUnique: boolean;
|
@@ -9420,9 +9420,9 @@ export declare const mainChatContract: {
|
|
9420
9420
|
createdAt: Date;
|
9421
9421
|
updatedAt: Date;
|
9422
9422
|
deletedAt: Date | null;
|
9423
|
+
isDefault: boolean;
|
9423
9424
|
systemName: string;
|
9424
9425
|
displayName: string;
|
9425
|
-
isDefault: boolean;
|
9426
9426
|
isArchived: boolean;
|
9427
9427
|
isRequired: boolean;
|
9428
9428
|
isUnique: boolean;
|
@@ -9433,9 +9433,9 @@ export declare const mainChatContract: {
|
|
9433
9433
|
createdAt: Date;
|
9434
9434
|
updatedAt: Date;
|
9435
9435
|
deletedAt: Date | null;
|
9436
|
+
isDefault: boolean;
|
9436
9437
|
systemName: string;
|
9437
9438
|
displayName: string;
|
9438
|
-
isDefault: boolean;
|
9439
9439
|
isArchived: boolean;
|
9440
9440
|
isRequired: boolean;
|
9441
9441
|
isUnique: boolean;
|
@@ -9529,9 +9529,9 @@ export declare const mainChatContract: {
|
|
9529
9529
|
createdAt: Date;
|
9530
9530
|
updatedAt: Date;
|
9531
9531
|
deletedAt: Date | null;
|
9532
|
+
isDefault: boolean;
|
9532
9533
|
systemName: string;
|
9533
9534
|
displayName: string;
|
9534
|
-
isDefault: boolean;
|
9535
9535
|
isArchived: boolean;
|
9536
9536
|
isRequired: boolean;
|
9537
9537
|
isUnique: boolean;
|
@@ -9571,9 +9571,9 @@ export declare const mainChatContract: {
|
|
9571
9571
|
createdAt: Date;
|
9572
9572
|
updatedAt: Date;
|
9573
9573
|
deletedAt: Date | null;
|
9574
|
+
isDefault: boolean;
|
9574
9575
|
systemName: string;
|
9575
9576
|
displayName: string;
|
9576
|
-
isDefault: boolean;
|
9577
9577
|
isArchived: boolean;
|
9578
9578
|
isRequired: boolean;
|
9579
9579
|
isUnique: boolean;
|
@@ -9726,9 +9726,9 @@ export declare const mainChatContract: {
|
|
9726
9726
|
createdAt: Date;
|
9727
9727
|
updatedAt: Date;
|
9728
9728
|
deletedAt: Date | null;
|
9729
|
+
isDefault: boolean;
|
9729
9730
|
systemName: string;
|
9730
9731
|
displayName: string;
|
9731
|
-
isDefault: boolean;
|
9732
9732
|
isArchived: boolean;
|
9733
9733
|
isRequired: boolean;
|
9734
9734
|
isUnique: boolean;
|
@@ -9829,9 +9829,9 @@ export declare const mainChatContract: {
|
|
9829
9829
|
createdAt: Date;
|
9830
9830
|
updatedAt: Date;
|
9831
9831
|
deletedAt: Date | null;
|
9832
|
+
isDefault: boolean;
|
9832
9833
|
systemName: string;
|
9833
9834
|
displayName: string;
|
9834
|
-
isDefault: boolean;
|
9835
9835
|
isArchived: boolean;
|
9836
9836
|
isRequired: boolean;
|
9837
9837
|
isUnique: boolean;
|
@@ -9946,9 +9946,9 @@ export declare const mainChatContract: {
|
|
9946
9946
|
createdAt: Date;
|
9947
9947
|
updatedAt: Date;
|
9948
9948
|
deletedAt: Date | null;
|
9949
|
+
isDefault: boolean;
|
9949
9950
|
systemName: string;
|
9950
9951
|
displayName: string;
|
9951
|
-
isDefault: boolean;
|
9952
9952
|
isArchived: boolean;
|
9953
9953
|
isRequired: boolean;
|
9954
9954
|
isUnique: boolean;
|
@@ -10064,9 +10064,9 @@ export declare const mainChatContract: {
|
|
10064
10064
|
createdAt: Date;
|
10065
10065
|
updatedAt: Date;
|
10066
10066
|
deletedAt: Date | null;
|
10067
|
+
isDefault: boolean;
|
10067
10068
|
systemName: string;
|
10068
10069
|
displayName: string;
|
10069
|
-
isDefault: boolean;
|
10070
10070
|
isArchived: boolean;
|
10071
10071
|
isRequired: boolean;
|
10072
10072
|
isUnique: boolean;
|
@@ -11155,9 +11155,9 @@ export declare const mainChatContract: {
|
|
11155
11155
|
createdAt: Date;
|
11156
11156
|
updatedAt: Date;
|
11157
11157
|
deletedAt: Date | null;
|
11158
|
+
isDefault: boolean;
|
11158
11159
|
systemName: string;
|
11159
11160
|
displayName: string;
|
11160
|
-
isDefault: boolean;
|
11161
11161
|
isArchived: boolean;
|
11162
11162
|
isRequired: boolean;
|
11163
11163
|
isUnique: boolean;
|
@@ -11474,9 +11474,9 @@ export declare const mainChatContract: {
|
|
11474
11474
|
createdAt: Date;
|
11475
11475
|
updatedAt: Date;
|
11476
11476
|
deletedAt: Date | null;
|
11477
|
+
isDefault: boolean;
|
11477
11478
|
systemName: string;
|
11478
11479
|
displayName: string;
|
11479
|
-
isDefault: boolean;
|
11480
11480
|
isArchived: boolean;
|
11481
11481
|
isRequired: boolean;
|
11482
11482
|
isUnique: boolean;
|
@@ -11795,9 +11795,9 @@ export declare const mainChatContract: {
|
|
11795
11795
|
createdAt: Date;
|
11796
11796
|
updatedAt: Date;
|
11797
11797
|
deletedAt: Date | null;
|
11798
|
+
isDefault: boolean;
|
11798
11799
|
systemName: string;
|
11799
11800
|
displayName: string;
|
11800
|
-
isDefault: boolean;
|
11801
11801
|
isArchived: boolean;
|
11802
11802
|
isRequired: boolean;
|
11803
11803
|
isUnique: boolean;
|
@@ -12117,9 +12117,9 @@ export declare const mainChatContract: {
|
|
12117
12117
|
createdAt: Date;
|
12118
12118
|
updatedAt: Date;
|
12119
12119
|
deletedAt: Date | null;
|
12120
|
+
isDefault: boolean;
|
12120
12121
|
systemName: string;
|
12121
12122
|
displayName: string;
|
12122
|
-
isDefault: boolean;
|
12123
12123
|
isArchived: boolean;
|
12124
12124
|
isRequired: boolean;
|
12125
12125
|
isUnique: boolean;
|
@@ -12371,7 +12371,7 @@ export declare const mainChatContract: {
|
|
12371
12371
|
sendMessage: {
|
12372
12372
|
body: z.ZodObject<{
|
12373
12373
|
roomId: z.ZodString;
|
12374
|
-
messageType: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "
|
12374
|
+
messageType: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
|
12375
12375
|
message: z.ZodOptional<z.ZodString>;
|
12376
12376
|
messageAttachments: z.ZodOptional<z.ZodObject<{
|
12377
12377
|
bucketName: z.ZodString;
|
@@ -12614,7 +12614,7 @@ export declare const mainChatContract: {
|
|
12614
12614
|
}>>;
|
12615
12615
|
file: z.ZodOptional<z.ZodType<File, z.ZodTypeDef, File>>;
|
12616
12616
|
}, "strip", z.ZodTypeAny, {
|
12617
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "
|
12617
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "reopen" | "handed_over" | "updated" | "started";
|
12618
12618
|
roomId: string;
|
12619
12619
|
message?: string | undefined;
|
12620
12620
|
messageAttachments?: {
|
@@ -12676,7 +12676,7 @@ export declare const mainChatContract: {
|
|
12676
12676
|
} | undefined;
|
12677
12677
|
file?: File | undefined;
|
12678
12678
|
}, {
|
12679
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "
|
12679
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "reopen" | "handed_over" | "updated" | "started";
|
12680
12680
|
roomId: string;
|
12681
12681
|
message?: string | undefined;
|
12682
12682
|
messageAttachments?: {
|
@@ -12866,7 +12866,7 @@ export declare const mainChatContract: {
|
|
12866
12866
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
12867
12867
|
message: z.ZodString;
|
12868
12868
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
12869
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "
|
12869
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
|
12870
12870
|
readAt: z.ZodDate;
|
12871
12871
|
metadata: z.ZodAny;
|
12872
12872
|
platformId: z.ZodString;
|
@@ -13023,9 +13023,9 @@ export declare const mainChatContract: {
|
|
13023
13023
|
createdAt: Date;
|
13024
13024
|
updatedAt: Date;
|
13025
13025
|
deletedAt: Date | null;
|
13026
|
+
isDefault: boolean;
|
13026
13027
|
systemName: string;
|
13027
13028
|
displayName: string;
|
13028
|
-
isDefault: boolean;
|
13029
13029
|
isArchived: boolean;
|
13030
13030
|
isRequired: boolean;
|
13031
13031
|
isUnique: boolean;
|
@@ -13036,9 +13036,9 @@ export declare const mainChatContract: {
|
|
13036
13036
|
createdAt: Date;
|
13037
13037
|
updatedAt: Date;
|
13038
13038
|
deletedAt: Date | null;
|
13039
|
+
isDefault: boolean;
|
13039
13040
|
systemName: string;
|
13040
13041
|
displayName: string;
|
13041
|
-
isDefault: boolean;
|
13042
13042
|
isArchived: boolean;
|
13043
13043
|
isRequired: boolean;
|
13044
13044
|
isUnique: boolean;
|
@@ -13055,9 +13055,9 @@ export declare const mainChatContract: {
|
|
13055
13055
|
createdAt: Date;
|
13056
13056
|
updatedAt: Date;
|
13057
13057
|
deletedAt: Date | null;
|
13058
|
+
isDefault: boolean;
|
13058
13059
|
systemName: string;
|
13059
13060
|
displayName: string;
|
13060
|
-
isDefault: boolean;
|
13061
13061
|
isArchived: boolean;
|
13062
13062
|
isRequired: boolean;
|
13063
13063
|
isUnique: boolean;
|
@@ -13078,9 +13078,9 @@ export declare const mainChatContract: {
|
|
13078
13078
|
createdAt: Date;
|
13079
13079
|
updatedAt: Date;
|
13080
13080
|
deletedAt: Date | null;
|
13081
|
+
isDefault: boolean;
|
13081
13082
|
systemName: string;
|
13082
13083
|
displayName: string;
|
13083
|
-
isDefault: boolean;
|
13084
13084
|
isArchived: boolean;
|
13085
13085
|
isRequired: boolean;
|
13086
13086
|
isUnique: boolean;
|
@@ -13179,9 +13179,9 @@ export declare const mainChatContract: {
|
|
13179
13179
|
createdAt: Date;
|
13180
13180
|
updatedAt: Date;
|
13181
13181
|
deletedAt: Date | null;
|
13182
|
+
isDefault: boolean;
|
13182
13183
|
systemName: string;
|
13183
13184
|
displayName: string;
|
13184
|
-
isDefault: boolean;
|
13185
13185
|
isArchived: boolean;
|
13186
13186
|
isRequired: boolean;
|
13187
13187
|
isUnique: boolean;
|
@@ -13192,9 +13192,9 @@ export declare const mainChatContract: {
|
|
13192
13192
|
createdAt: Date;
|
13193
13193
|
updatedAt: Date;
|
13194
13194
|
deletedAt: Date | null;
|
13195
|
+
isDefault: boolean;
|
13195
13196
|
systemName: string;
|
13196
13197
|
displayName: string;
|
13197
|
-
isDefault: boolean;
|
13198
13198
|
isArchived: boolean;
|
13199
13199
|
isRequired: boolean;
|
13200
13200
|
isUnique: boolean;
|
@@ -13288,9 +13288,9 @@ export declare const mainChatContract: {
|
|
13288
13288
|
createdAt: Date;
|
13289
13289
|
updatedAt: Date;
|
13290
13290
|
deletedAt: Date | null;
|
13291
|
+
isDefault: boolean;
|
13291
13292
|
systemName: string;
|
13292
13293
|
displayName: string;
|
13293
|
-
isDefault: boolean;
|
13294
13294
|
isArchived: boolean;
|
13295
13295
|
isRequired: boolean;
|
13296
13296
|
isUnique: boolean;
|
@@ -13330,9 +13330,9 @@ export declare const mainChatContract: {
|
|
13330
13330
|
createdAt: Date;
|
13331
13331
|
updatedAt: Date;
|
13332
13332
|
deletedAt: Date | null;
|
13333
|
+
isDefault: boolean;
|
13333
13334
|
systemName: string;
|
13334
13335
|
displayName: string;
|
13335
|
-
isDefault: boolean;
|
13336
13336
|
isArchived: boolean;
|
13337
13337
|
isRequired: boolean;
|
13338
13338
|
isUnique: boolean;
|
@@ -13485,9 +13485,9 @@ export declare const mainChatContract: {
|
|
13485
13485
|
createdAt: Date;
|
13486
13486
|
updatedAt: Date;
|
13487
13487
|
deletedAt: Date | null;
|
13488
|
+
isDefault: boolean;
|
13488
13489
|
systemName: string;
|
13489
13490
|
displayName: string;
|
13490
|
-
isDefault: boolean;
|
13491
13491
|
isArchived: boolean;
|
13492
13492
|
isRequired: boolean;
|
13493
13493
|
isUnique: boolean;
|
@@ -13588,9 +13588,9 @@ export declare const mainChatContract: {
|
|
13588
13588
|
createdAt: Date;
|
13589
13589
|
updatedAt: Date;
|
13590
13590
|
deletedAt: Date | null;
|
13591
|
+
isDefault: boolean;
|
13591
13592
|
systemName: string;
|
13592
13593
|
displayName: string;
|
13593
|
-
isDefault: boolean;
|
13594
13594
|
isArchived: boolean;
|
13595
13595
|
isRequired: boolean;
|
13596
13596
|
isUnique: boolean;
|
@@ -13705,9 +13705,9 @@ export declare const mainChatContract: {
|
|
13705
13705
|
createdAt: Date;
|
13706
13706
|
updatedAt: Date;
|
13707
13707
|
deletedAt: Date | null;
|
13708
|
+
isDefault: boolean;
|
13708
13709
|
systemName: string;
|
13709
13710
|
displayName: string;
|
13710
|
-
isDefault: boolean;
|
13711
13711
|
isArchived: boolean;
|
13712
13712
|
isRequired: boolean;
|
13713
13713
|
isUnique: boolean;
|
@@ -13823,9 +13823,9 @@ export declare const mainChatContract: {
|
|
13823
13823
|
createdAt: Date;
|
13824
13824
|
updatedAt: Date;
|
13825
13825
|
deletedAt: Date | null;
|
13826
|
+
isDefault: boolean;
|
13826
13827
|
systemName: string;
|
13827
13828
|
displayName: string;
|
13828
|
-
isDefault: boolean;
|
13829
13829
|
isArchived: boolean;
|
13830
13830
|
isRequired: boolean;
|
13831
13831
|
isUnique: boolean;
|
@@ -14914,9 +14914,9 @@ export declare const mainChatContract: {
|
|
14914
14914
|
createdAt: Date;
|
14915
14915
|
updatedAt: Date;
|
14916
14916
|
deletedAt: Date | null;
|
14917
|
+
isDefault: boolean;
|
14917
14918
|
systemName: string;
|
14918
14919
|
displayName: string;
|
14919
|
-
isDefault: boolean;
|
14920
14920
|
isArchived: boolean;
|
14921
14921
|
isRequired: boolean;
|
14922
14922
|
isUnique: boolean;
|
@@ -15233,9 +15233,9 @@ export declare const mainChatContract: {
|
|
15233
15233
|
createdAt: Date;
|
15234
15234
|
updatedAt: Date;
|
15235
15235
|
deletedAt: Date | null;
|
15236
|
+
isDefault: boolean;
|
15236
15237
|
systemName: string;
|
15237
15238
|
displayName: string;
|
15238
|
-
isDefault: boolean;
|
15239
15239
|
isArchived: boolean;
|
15240
15240
|
isRequired: boolean;
|
15241
15241
|
isUnique: boolean;
|
@@ -16110,7 +16110,7 @@ export declare const mainChatContract: {
|
|
16110
16110
|
};
|
16111
16111
|
}>;
|
16112
16112
|
}, "strip", z.ZodTypeAny, {
|
16113
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "
|
16113
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "reopen" | "handed_over" | "updated" | "started";
|
16114
16114
|
message: string;
|
16115
16115
|
id: string;
|
16116
16116
|
url: string;
|
@@ -16118,6 +16118,7 @@ export declare const mainChatContract: {
|
|
16118
16118
|
createdAt: Date;
|
16119
16119
|
updatedAt: Date;
|
16120
16120
|
deletedAt: Date | null;
|
16121
|
+
platformId: string;
|
16121
16122
|
actor: {
|
16122
16123
|
id: string;
|
16123
16124
|
address: string | null;
|
@@ -16162,7 +16163,6 @@ export declare const mainChatContract: {
|
|
16162
16163
|
telephonySignature: string | null;
|
16163
16164
|
};
|
16164
16165
|
};
|
16165
|
-
platformId: string;
|
16166
16166
|
upload: {
|
16167
16167
|
id: string;
|
16168
16168
|
createdAt: Date;
|
@@ -16309,9 +16309,9 @@ export declare const mainChatContract: {
|
|
16309
16309
|
createdAt: Date;
|
16310
16310
|
updatedAt: Date;
|
16311
16311
|
deletedAt: Date | null;
|
16312
|
+
isDefault: boolean;
|
16312
16313
|
systemName: string;
|
16313
16314
|
displayName: string;
|
16314
|
-
isDefault: boolean;
|
16315
16315
|
isArchived: boolean;
|
16316
16316
|
isRequired: boolean;
|
16317
16317
|
isUnique: boolean;
|
@@ -16592,7 +16592,7 @@ export declare const mainChatContract: {
|
|
16592
16592
|
metadata?: any;
|
16593
16593
|
template?: any;
|
16594
16594
|
}, {
|
16595
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "
|
16595
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "reopen" | "handed_over" | "updated" | "started";
|
16596
16596
|
message: string;
|
16597
16597
|
id: string;
|
16598
16598
|
url: string;
|
@@ -16600,6 +16600,7 @@ export declare const mainChatContract: {
|
|
16600
16600
|
createdAt: Date;
|
16601
16601
|
updatedAt: Date;
|
16602
16602
|
deletedAt: Date | null;
|
16603
|
+
platformId: string;
|
16603
16604
|
actor: {
|
16604
16605
|
id: string;
|
16605
16606
|
address: string | null;
|
@@ -16644,7 +16645,6 @@ export declare const mainChatContract: {
|
|
16644
16645
|
telephonySignature: string | null;
|
16645
16646
|
};
|
16646
16647
|
};
|
16647
|
-
platformId: string;
|
16648
16648
|
upload: {
|
16649
16649
|
id: string;
|
16650
16650
|
createdAt: Date;
|
@@ -16791,9 +16791,9 @@ export declare const mainChatContract: {
|
|
16791
16791
|
createdAt: Date;
|
16792
16792
|
updatedAt: Date;
|
16793
16793
|
deletedAt: Date | null;
|
16794
|
+
isDefault: boolean;
|
16794
16795
|
systemName: string;
|
16795
16796
|
displayName: string;
|
16796
|
-
isDefault: boolean;
|
16797
16797
|
isArchived: boolean;
|
16798
16798
|
isRequired: boolean;
|
16799
16799
|
isUnique: boolean;
|
@@ -17076,7 +17076,7 @@ export declare const mainChatContract: {
|
|
17076
17076
|
}>, "many">;
|
17077
17077
|
}, "strip", z.ZodTypeAny, {
|
17078
17078
|
data: {
|
17079
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "
|
17079
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "reopen" | "handed_over" | "updated" | "started";
|
17080
17080
|
message: string;
|
17081
17081
|
id: string;
|
17082
17082
|
url: string;
|
@@ -17084,6 +17084,7 @@ export declare const mainChatContract: {
|
|
17084
17084
|
createdAt: Date;
|
17085
17085
|
updatedAt: Date;
|
17086
17086
|
deletedAt: Date | null;
|
17087
|
+
platformId: string;
|
17087
17088
|
actor: {
|
17088
17089
|
id: string;
|
17089
17090
|
address: string | null;
|
@@ -17128,7 +17129,6 @@ export declare const mainChatContract: {
|
|
17128
17129
|
telephonySignature: string | null;
|
17129
17130
|
};
|
17130
17131
|
};
|
17131
|
-
platformId: string;
|
17132
17132
|
upload: {
|
17133
17133
|
id: string;
|
17134
17134
|
createdAt: Date;
|
@@ -17275,9 +17275,9 @@ export declare const mainChatContract: {
|
|
17275
17275
|
createdAt: Date;
|
17276
17276
|
updatedAt: Date;
|
17277
17277
|
deletedAt: Date | null;
|
17278
|
+
isDefault: boolean;
|
17278
17279
|
systemName: string;
|
17279
17280
|
displayName: string;
|
17280
|
-
isDefault: boolean;
|
17281
17281
|
isArchived: boolean;
|
17282
17282
|
isRequired: boolean;
|
17283
17283
|
isUnique: boolean;
|
@@ -17564,7 +17564,7 @@ export declare const mainChatContract: {
|
|
17564
17564
|
requestId: string;
|
17565
17565
|
}, {
|
17566
17566
|
data: {
|
17567
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "
|
17567
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "reopen" | "handed_over" | "updated" | "started";
|
17568
17568
|
message: string;
|
17569
17569
|
id: string;
|
17570
17570
|
url: string;
|
@@ -17572,6 +17572,7 @@ export declare const mainChatContract: {
|
|
17572
17572
|
createdAt: Date;
|
17573
17573
|
updatedAt: Date;
|
17574
17574
|
deletedAt: Date | null;
|
17575
|
+
platformId: string;
|
17575
17576
|
actor: {
|
17576
17577
|
id: string;
|
17577
17578
|
address: string | null;
|
@@ -17616,7 +17617,6 @@ export declare const mainChatContract: {
|
|
17616
17617
|
telephonySignature: string | null;
|
17617
17618
|
};
|
17618
17619
|
};
|
17619
|
-
platformId: string;
|
17620
17620
|
upload: {
|
17621
17621
|
id: string;
|
17622
17622
|
createdAt: Date;
|
@@ -17763,9 +17763,9 @@ export declare const mainChatContract: {
|
|
17763
17763
|
createdAt: Date;
|
17764
17764
|
updatedAt: Date;
|
17765
17765
|
deletedAt: Date | null;
|
17766
|
+
isDefault: boolean;
|
17766
17767
|
systemName: string;
|
17767
17768
|
displayName: string;
|
17768
|
-
isDefault: boolean;
|
17769
17769
|
isArchived: boolean;
|
17770
17770
|
isRequired: boolean;
|
17771
17771
|
isUnique: boolean;
|
@@ -18796,9 +18796,9 @@ export declare const mainChatContract: {
|
|
18796
18796
|
createdAt: Date;
|
18797
18797
|
updatedAt: Date;
|
18798
18798
|
deletedAt: Date | null;
|
18799
|
+
isDefault: boolean;
|
18799
18800
|
systemName: string;
|
18800
18801
|
displayName: string;
|
18801
|
-
isDefault: boolean;
|
18802
18802
|
isArchived: boolean;
|
18803
18803
|
isRequired: boolean;
|
18804
18804
|
isUnique: boolean;
|
@@ -18809,9 +18809,9 @@ export declare const mainChatContract: {
|
|
18809
18809
|
createdAt: Date;
|
18810
18810
|
updatedAt: Date;
|
18811
18811
|
deletedAt: Date | null;
|
18812
|
+
isDefault: boolean;
|
18812
18813
|
systemName: string;
|
18813
18814
|
displayName: string;
|
18814
|
-
isDefault: boolean;
|
18815
18815
|
isArchived: boolean;
|
18816
18816
|
isRequired: boolean;
|
18817
18817
|
isUnique: boolean;
|
@@ -18828,9 +18828,9 @@ export declare const mainChatContract: {
|
|
18828
18828
|
createdAt: Date;
|
18829
18829
|
updatedAt: Date;
|
18830
18830
|
deletedAt: Date | null;
|
18831
|
+
isDefault: boolean;
|
18831
18832
|
systemName: string;
|
18832
18833
|
displayName: string;
|
18833
|
-
isDefault: boolean;
|
18834
18834
|
isArchived: boolean;
|
18835
18835
|
isRequired: boolean;
|
18836
18836
|
isUnique: boolean;
|
@@ -18851,9 +18851,9 @@ export declare const mainChatContract: {
|
|
18851
18851
|
createdAt: Date;
|
18852
18852
|
updatedAt: Date;
|
18853
18853
|
deletedAt: Date | null;
|
18854
|
+
isDefault: boolean;
|
18854
18855
|
systemName: string;
|
18855
18856
|
displayName: string;
|
18856
|
-
isDefault: boolean;
|
18857
18857
|
isArchived: boolean;
|
18858
18858
|
isRequired: boolean;
|
18859
18859
|
isUnique: boolean;
|
@@ -18952,9 +18952,9 @@ export declare const mainChatContract: {
|
|
18952
18952
|
createdAt: Date;
|
18953
18953
|
updatedAt: Date;
|
18954
18954
|
deletedAt: Date | null;
|
18955
|
+
isDefault: boolean;
|
18955
18956
|
systemName: string;
|
18956
18957
|
displayName: string;
|
18957
|
-
isDefault: boolean;
|
18958
18958
|
isArchived: boolean;
|
18959
18959
|
isRequired: boolean;
|
18960
18960
|
isUnique: boolean;
|
@@ -18965,9 +18965,9 @@ export declare const mainChatContract: {
|
|
18965
18965
|
createdAt: Date;
|
18966
18966
|
updatedAt: Date;
|
18967
18967
|
deletedAt: Date | null;
|
18968
|
+
isDefault: boolean;
|
18968
18969
|
systemName: string;
|
18969
18970
|
displayName: string;
|
18970
|
-
isDefault: boolean;
|
18971
18971
|
isArchived: boolean;
|
18972
18972
|
isRequired: boolean;
|
18973
18973
|
isUnique: boolean;
|
@@ -19061,9 +19061,9 @@ export declare const mainChatContract: {
|
|
19061
19061
|
createdAt: Date;
|
19062
19062
|
updatedAt: Date;
|
19063
19063
|
deletedAt: Date | null;
|
19064
|
+
isDefault: boolean;
|
19064
19065
|
systemName: string;
|
19065
19066
|
displayName: string;
|
19066
|
-
isDefault: boolean;
|
19067
19067
|
isArchived: boolean;
|
19068
19068
|
isRequired: boolean;
|
19069
19069
|
isUnique: boolean;
|
@@ -19103,9 +19103,9 @@ export declare const mainChatContract: {
|
|
19103
19103
|
createdAt: Date;
|
19104
19104
|
updatedAt: Date;
|
19105
19105
|
deletedAt: Date | null;
|
19106
|
+
isDefault: boolean;
|
19106
19107
|
systemName: string;
|
19107
19108
|
displayName: string;
|
19108
|
-
isDefault: boolean;
|
19109
19109
|
isArchived: boolean;
|
19110
19110
|
isRequired: boolean;
|
19111
19111
|
isUnique: boolean;
|
@@ -19258,9 +19258,9 @@ export declare const mainChatContract: {
|
|
19258
19258
|
createdAt: Date;
|
19259
19259
|
updatedAt: Date;
|
19260
19260
|
deletedAt: Date | null;
|
19261
|
+
isDefault: boolean;
|
19261
19262
|
systemName: string;
|
19262
19263
|
displayName: string;
|
19263
|
-
isDefault: boolean;
|
19264
19264
|
isArchived: boolean;
|
19265
19265
|
isRequired: boolean;
|
19266
19266
|
isUnique: boolean;
|
@@ -19361,9 +19361,9 @@ export declare const mainChatContract: {
|
|
19361
19361
|
createdAt: Date;
|
19362
19362
|
updatedAt: Date;
|
19363
19363
|
deletedAt: Date | null;
|
19364
|
+
isDefault: boolean;
|
19364
19365
|
systemName: string;
|
19365
19366
|
displayName: string;
|
19366
|
-
isDefault: boolean;
|
19367
19367
|
isArchived: boolean;
|
19368
19368
|
isRequired: boolean;
|
19369
19369
|
isUnique: boolean;
|
@@ -19478,9 +19478,9 @@ export declare const mainChatContract: {
|
|
19478
19478
|
createdAt: Date;
|
19479
19479
|
updatedAt: Date;
|
19480
19480
|
deletedAt: Date | null;
|
19481
|
+
isDefault: boolean;
|
19481
19482
|
systemName: string;
|
19482
19483
|
displayName: string;
|
19483
|
-
isDefault: boolean;
|
19484
19484
|
isArchived: boolean;
|
19485
19485
|
isRequired: boolean;
|
19486
19486
|
isUnique: boolean;
|
@@ -19596,9 +19596,9 @@ export declare const mainChatContract: {
|
|
19596
19596
|
createdAt: Date;
|
19597
19597
|
updatedAt: Date;
|
19598
19598
|
deletedAt: Date | null;
|
19599
|
+
isDefault: boolean;
|
19599
19600
|
systemName: string;
|
19600
19601
|
displayName: string;
|
19601
|
-
isDefault: boolean;
|
19602
19602
|
isArchived: boolean;
|
19603
19603
|
isRequired: boolean;
|
19604
19604
|
isUnique: boolean;
|
@@ -20124,9 +20124,9 @@ export declare const mainChatContract: {
|
|
20124
20124
|
createdAt: Date;
|
20125
20125
|
updatedAt: Date;
|
20126
20126
|
deletedAt: Date | null;
|
20127
|
+
isDefault: boolean;
|
20127
20128
|
systemName: string;
|
20128
20129
|
displayName: string;
|
20129
|
-
isDefault: boolean;
|
20130
20130
|
isArchived: boolean;
|
20131
20131
|
isRequired: boolean;
|
20132
20132
|
isUnique: boolean;
|
@@ -20444,9 +20444,9 @@ export declare const mainChatContract: {
|
|
20444
20444
|
createdAt: Date;
|
20445
20445
|
updatedAt: Date;
|
20446
20446
|
deletedAt: Date | null;
|
20447
|
+
isDefault: boolean;
|
20447
20448
|
systemName: string;
|
20448
20449
|
displayName: string;
|
20449
|
-
isDefault: boolean;
|
20450
20450
|
isArchived: boolean;
|
20451
20451
|
isRequired: boolean;
|
20452
20452
|
isUnique: boolean;
|
@@ -20766,9 +20766,9 @@ export declare const mainChatContract: {
|
|
20766
20766
|
createdAt: Date;
|
20767
20767
|
updatedAt: Date;
|
20768
20768
|
deletedAt: Date | null;
|
20769
|
+
isDefault: boolean;
|
20769
20770
|
systemName: string;
|
20770
20771
|
displayName: string;
|
20771
|
-
isDefault: boolean;
|
20772
20772
|
isArchived: boolean;
|
20773
20773
|
isRequired: boolean;
|
20774
20774
|
isUnique: boolean;
|
@@ -21089,9 +21089,9 @@ export declare const mainChatContract: {
|
|
21089
21089
|
createdAt: Date;
|
21090
21090
|
updatedAt: Date;
|
21091
21091
|
deletedAt: Date | null;
|
21092
|
+
isDefault: boolean;
|
21092
21093
|
systemName: string;
|
21093
21094
|
displayName: string;
|
21094
|
-
isDefault: boolean;
|
21095
21095
|
isArchived: boolean;
|
21096
21096
|
isRequired: boolean;
|
21097
21097
|
isUnique: boolean;
|
@@ -21513,9 +21513,9 @@ export declare const mainChatContract: {
|
|
21513
21513
|
createdAt: Date;
|
21514
21514
|
updatedAt: Date;
|
21515
21515
|
deletedAt: Date | null;
|
21516
|
+
isDefault: boolean;
|
21516
21517
|
systemName: string;
|
21517
21518
|
displayName: string;
|
21518
|
-
isDefault: boolean;
|
21519
21519
|
isArchived: boolean;
|
21520
21520
|
isRequired: boolean;
|
21521
21521
|
isUnique: boolean;
|
@@ -21526,9 +21526,9 @@ export declare const mainChatContract: {
|
|
21526
21526
|
createdAt: Date;
|
21527
21527
|
updatedAt: Date;
|
21528
21528
|
deletedAt: Date | null;
|
21529
|
+
isDefault: boolean;
|
21529
21530
|
systemName: string;
|
21530
21531
|
displayName: string;
|
21531
|
-
isDefault: boolean;
|
21532
21532
|
isArchived: boolean;
|
21533
21533
|
isRequired: boolean;
|
21534
21534
|
isUnique: boolean;
|
@@ -21545,9 +21545,9 @@ export declare const mainChatContract: {
|
|
21545
21545
|
createdAt: Date;
|
21546
21546
|
updatedAt: Date;
|
21547
21547
|
deletedAt: Date | null;
|
21548
|
+
isDefault: boolean;
|
21548
21549
|
systemName: string;
|
21549
21550
|
displayName: string;
|
21550
|
-
isDefault: boolean;
|
21551
21551
|
isArchived: boolean;
|
21552
21552
|
isRequired: boolean;
|
21553
21553
|
isUnique: boolean;
|
@@ -21568,9 +21568,9 @@ export declare const mainChatContract: {
|
|
21568
21568
|
createdAt: Date;
|
21569
21569
|
updatedAt: Date;
|
21570
21570
|
deletedAt: Date | null;
|
21571
|
+
isDefault: boolean;
|
21571
21572
|
systemName: string;
|
21572
21573
|
displayName: string;
|
21573
|
-
isDefault: boolean;
|
21574
21574
|
isArchived: boolean;
|
21575
21575
|
isRequired: boolean;
|
21576
21576
|
isUnique: boolean;
|
@@ -21669,9 +21669,9 @@ export declare const mainChatContract: {
|
|
21669
21669
|
createdAt: Date;
|
21670
21670
|
updatedAt: Date;
|
21671
21671
|
deletedAt: Date | null;
|
21672
|
+
isDefault: boolean;
|
21672
21673
|
systemName: string;
|
21673
21674
|
displayName: string;
|
21674
|
-
isDefault: boolean;
|
21675
21675
|
isArchived: boolean;
|
21676
21676
|
isRequired: boolean;
|
21677
21677
|
isUnique: boolean;
|
@@ -21682,9 +21682,9 @@ export declare const mainChatContract: {
|
|
21682
21682
|
createdAt: Date;
|
21683
21683
|
updatedAt: Date;
|
21684
21684
|
deletedAt: Date | null;
|
21685
|
+
isDefault: boolean;
|
21685
21686
|
systemName: string;
|
21686
21687
|
displayName: string;
|
21687
|
-
isDefault: boolean;
|
21688
21688
|
isArchived: boolean;
|
21689
21689
|
isRequired: boolean;
|
21690
21690
|
isUnique: boolean;
|
@@ -21778,9 +21778,9 @@ export declare const mainChatContract: {
|
|
21778
21778
|
createdAt: Date;
|
21779
21779
|
updatedAt: Date;
|
21780
21780
|
deletedAt: Date | null;
|
21781
|
+
isDefault: boolean;
|
21781
21782
|
systemName: string;
|
21782
21783
|
displayName: string;
|
21783
|
-
isDefault: boolean;
|
21784
21784
|
isArchived: boolean;
|
21785
21785
|
isRequired: boolean;
|
21786
21786
|
isUnique: boolean;
|
@@ -21820,9 +21820,9 @@ export declare const mainChatContract: {
|
|
21820
21820
|
createdAt: Date;
|
21821
21821
|
updatedAt: Date;
|
21822
21822
|
deletedAt: Date | null;
|
21823
|
+
isDefault: boolean;
|
21823
21824
|
systemName: string;
|
21824
21825
|
displayName: string;
|
21825
|
-
isDefault: boolean;
|
21826
21826
|
isArchived: boolean;
|
21827
21827
|
isRequired: boolean;
|
21828
21828
|
isUnique: boolean;
|
@@ -21975,9 +21975,9 @@ export declare const mainChatContract: {
|
|
21975
21975
|
createdAt: Date;
|
21976
21976
|
updatedAt: Date;
|
21977
21977
|
deletedAt: Date | null;
|
21978
|
+
isDefault: boolean;
|
21978
21979
|
systemName: string;
|
21979
21980
|
displayName: string;
|
21980
|
-
isDefault: boolean;
|
21981
21981
|
isArchived: boolean;
|
21982
21982
|
isRequired: boolean;
|
21983
21983
|
isUnique: boolean;
|
@@ -22078,9 +22078,9 @@ export declare const mainChatContract: {
|
|
22078
22078
|
createdAt: Date;
|
22079
22079
|
updatedAt: Date;
|
22080
22080
|
deletedAt: Date | null;
|
22081
|
+
isDefault: boolean;
|
22081
22082
|
systemName: string;
|
22082
22083
|
displayName: string;
|
22083
|
-
isDefault: boolean;
|
22084
22084
|
isArchived: boolean;
|
22085
22085
|
isRequired: boolean;
|
22086
22086
|
isUnique: boolean;
|
@@ -22195,9 +22195,9 @@ export declare const mainChatContract: {
|
|
22195
22195
|
createdAt: Date;
|
22196
22196
|
updatedAt: Date;
|
22197
22197
|
deletedAt: Date | null;
|
22198
|
+
isDefault: boolean;
|
22198
22199
|
systemName: string;
|
22199
22200
|
displayName: string;
|
22200
|
-
isDefault: boolean;
|
22201
22201
|
isArchived: boolean;
|
22202
22202
|
isRequired: boolean;
|
22203
22203
|
isUnique: boolean;
|
@@ -22313,9 +22313,9 @@ export declare const mainChatContract: {
|
|
22313
22313
|
createdAt: Date;
|
22314
22314
|
updatedAt: Date;
|
22315
22315
|
deletedAt: Date | null;
|
22316
|
+
isDefault: boolean;
|
22316
22317
|
systemName: string;
|
22317
22318
|
displayName: string;
|
22318
|
-
isDefault: boolean;
|
22319
22319
|
isArchived: boolean;
|
22320
22320
|
isRequired: boolean;
|
22321
22321
|
isUnique: boolean;
|
@@ -23404,9 +23404,9 @@ export declare const mainChatContract: {
|
|
23404
23404
|
createdAt: Date;
|
23405
23405
|
updatedAt: Date;
|
23406
23406
|
deletedAt: Date | null;
|
23407
|
+
isDefault: boolean;
|
23407
23408
|
systemName: string;
|
23408
23409
|
displayName: string;
|
23409
|
-
isDefault: boolean;
|
23410
23410
|
isArchived: boolean;
|
23411
23411
|
isRequired: boolean;
|
23412
23412
|
isUnique: boolean;
|
@@ -23723,9 +23723,9 @@ export declare const mainChatContract: {
|
|
23723
23723
|
createdAt: Date;
|
23724
23724
|
updatedAt: Date;
|
23725
23725
|
deletedAt: Date | null;
|
23726
|
+
isDefault: boolean;
|
23726
23727
|
systemName: string;
|
23727
23728
|
displayName: string;
|
23728
|
-
isDefault: boolean;
|
23729
23729
|
isArchived: boolean;
|
23730
23730
|
isRequired: boolean;
|
23731
23731
|
isUnique: boolean;
|
@@ -24044,9 +24044,9 @@ export declare const mainChatContract: {
|
|
24044
24044
|
createdAt: Date;
|
24045
24045
|
updatedAt: Date;
|
24046
24046
|
deletedAt: Date | null;
|
24047
|
+
isDefault: boolean;
|
24047
24048
|
systemName: string;
|
24048
24049
|
displayName: string;
|
24049
|
-
isDefault: boolean;
|
24050
24050
|
isArchived: boolean;
|
24051
24051
|
isRequired: boolean;
|
24052
24052
|
isUnique: boolean;
|
@@ -24366,9 +24366,9 @@ export declare const mainChatContract: {
|
|
24366
24366
|
createdAt: Date;
|
24367
24367
|
updatedAt: Date;
|
24368
24368
|
deletedAt: Date | null;
|
24369
|
+
isDefault: boolean;
|
24369
24370
|
systemName: string;
|
24370
24371
|
displayName: string;
|
24371
|
-
isDefault: boolean;
|
24372
24372
|
isArchived: boolean;
|
24373
24373
|
isRequired: boolean;
|
24374
24374
|
isUnique: boolean;
|
@@ -24776,9 +24776,9 @@ export declare const mainChatContract: {
|
|
24776
24776
|
createdAt: Date;
|
24777
24777
|
updatedAt: Date;
|
24778
24778
|
deletedAt: Date | null;
|
24779
|
+
isDefault: boolean;
|
24779
24780
|
systemName: string;
|
24780
24781
|
displayName: string;
|
24781
|
-
isDefault: boolean;
|
24782
24782
|
isArchived: boolean;
|
24783
24783
|
isRequired: boolean;
|
24784
24784
|
isUnique: boolean;
|
@@ -24789,9 +24789,9 @@ export declare const mainChatContract: {
|
|
24789
24789
|
createdAt: Date;
|
24790
24790
|
updatedAt: Date;
|
24791
24791
|
deletedAt: Date | null;
|
24792
|
+
isDefault: boolean;
|
24792
24793
|
systemName: string;
|
24793
24794
|
displayName: string;
|
24794
|
-
isDefault: boolean;
|
24795
24795
|
isArchived: boolean;
|
24796
24796
|
isRequired: boolean;
|
24797
24797
|
isUnique: boolean;
|
@@ -24808,9 +24808,9 @@ export declare const mainChatContract: {
|
|
24808
24808
|
createdAt: Date;
|
24809
24809
|
updatedAt: Date;
|
24810
24810
|
deletedAt: Date | null;
|
24811
|
+
isDefault: boolean;
|
24811
24812
|
systemName: string;
|
24812
24813
|
displayName: string;
|
24813
|
-
isDefault: boolean;
|
24814
24814
|
isArchived: boolean;
|
24815
24815
|
isRequired: boolean;
|
24816
24816
|
isUnique: boolean;
|
@@ -24831,9 +24831,9 @@ export declare const mainChatContract: {
|
|
24831
24831
|
createdAt: Date;
|
24832
24832
|
updatedAt: Date;
|
24833
24833
|
deletedAt: Date | null;
|
24834
|
+
isDefault: boolean;
|
24834
24835
|
systemName: string;
|
24835
24836
|
displayName: string;
|
24836
|
-
isDefault: boolean;
|
24837
24837
|
isArchived: boolean;
|
24838
24838
|
isRequired: boolean;
|
24839
24839
|
isUnique: boolean;
|
@@ -24932,9 +24932,9 @@ export declare const mainChatContract: {
|
|
24932
24932
|
createdAt: Date;
|
24933
24933
|
updatedAt: Date;
|
24934
24934
|
deletedAt: Date | null;
|
24935
|
+
isDefault: boolean;
|
24935
24936
|
systemName: string;
|
24936
24937
|
displayName: string;
|
24937
|
-
isDefault: boolean;
|
24938
24938
|
isArchived: boolean;
|
24939
24939
|
isRequired: boolean;
|
24940
24940
|
isUnique: boolean;
|
@@ -24945,9 +24945,9 @@ export declare const mainChatContract: {
|
|
24945
24945
|
createdAt: Date;
|
24946
24946
|
updatedAt: Date;
|
24947
24947
|
deletedAt: Date | null;
|
24948
|
+
isDefault: boolean;
|
24948
24949
|
systemName: string;
|
24949
24950
|
displayName: string;
|
24950
|
-
isDefault: boolean;
|
24951
24951
|
isArchived: boolean;
|
24952
24952
|
isRequired: boolean;
|
24953
24953
|
isUnique: boolean;
|
@@ -25041,9 +25041,9 @@ export declare const mainChatContract: {
|
|
25041
25041
|
createdAt: Date;
|
25042
25042
|
updatedAt: Date;
|
25043
25043
|
deletedAt: Date | null;
|
25044
|
+
isDefault: boolean;
|
25044
25045
|
systemName: string;
|
25045
25046
|
displayName: string;
|
25046
|
-
isDefault: boolean;
|
25047
25047
|
isArchived: boolean;
|
25048
25048
|
isRequired: boolean;
|
25049
25049
|
isUnique: boolean;
|
@@ -25083,9 +25083,9 @@ export declare const mainChatContract: {
|
|
25083
25083
|
createdAt: Date;
|
25084
25084
|
updatedAt: Date;
|
25085
25085
|
deletedAt: Date | null;
|
25086
|
+
isDefault: boolean;
|
25086
25087
|
systemName: string;
|
25087
25088
|
displayName: string;
|
25088
|
-
isDefault: boolean;
|
25089
25089
|
isArchived: boolean;
|
25090
25090
|
isRequired: boolean;
|
25091
25091
|
isUnique: boolean;
|
@@ -25238,9 +25238,9 @@ export declare const mainChatContract: {
|
|
25238
25238
|
createdAt: Date;
|
25239
25239
|
updatedAt: Date;
|
25240
25240
|
deletedAt: Date | null;
|
25241
|
+
isDefault: boolean;
|
25241
25242
|
systemName: string;
|
25242
25243
|
displayName: string;
|
25243
|
-
isDefault: boolean;
|
25244
25244
|
isArchived: boolean;
|
25245
25245
|
isRequired: boolean;
|
25246
25246
|
isUnique: boolean;
|
@@ -25341,9 +25341,9 @@ export declare const mainChatContract: {
|
|
25341
25341
|
createdAt: Date;
|
25342
25342
|
updatedAt: Date;
|
25343
25343
|
deletedAt: Date | null;
|
25344
|
+
isDefault: boolean;
|
25344
25345
|
systemName: string;
|
25345
25346
|
displayName: string;
|
25346
|
-
isDefault: boolean;
|
25347
25347
|
isArchived: boolean;
|
25348
25348
|
isRequired: boolean;
|
25349
25349
|
isUnique: boolean;
|
@@ -25458,9 +25458,9 @@ export declare const mainChatContract: {
|
|
25458
25458
|
createdAt: Date;
|
25459
25459
|
updatedAt: Date;
|
25460
25460
|
deletedAt: Date | null;
|
25461
|
+
isDefault: boolean;
|
25461
25462
|
systemName: string;
|
25462
25463
|
displayName: string;
|
25463
|
-
isDefault: boolean;
|
25464
25464
|
isArchived: boolean;
|
25465
25465
|
isRequired: boolean;
|
25466
25466
|
isUnique: boolean;
|
@@ -25576,9 +25576,9 @@ export declare const mainChatContract: {
|
|
25576
25576
|
createdAt: Date;
|
25577
25577
|
updatedAt: Date;
|
25578
25578
|
deletedAt: Date | null;
|
25579
|
+
isDefault: boolean;
|
25579
25580
|
systemName: string;
|
25580
25581
|
displayName: string;
|
25581
|
-
isDefault: boolean;
|
25582
25582
|
isArchived: boolean;
|
25583
25583
|
isRequired: boolean;
|
25584
25584
|
isUnique: boolean;
|
@@ -26667,9 +26667,9 @@ export declare const mainChatContract: {
|
|
26667
26667
|
createdAt: Date;
|
26668
26668
|
updatedAt: Date;
|
26669
26669
|
deletedAt: Date | null;
|
26670
|
+
isDefault: boolean;
|
26670
26671
|
systemName: string;
|
26671
26672
|
displayName: string;
|
26672
|
-
isDefault: boolean;
|
26673
26673
|
isArchived: boolean;
|
26674
26674
|
isRequired: boolean;
|
26675
26675
|
isUnique: boolean;
|
@@ -26986,9 +26986,9 @@ export declare const mainChatContract: {
|
|
26986
26986
|
createdAt: Date;
|
26987
26987
|
updatedAt: Date;
|
26988
26988
|
deletedAt: Date | null;
|
26989
|
+
isDefault: boolean;
|
26989
26990
|
systemName: string;
|
26990
26991
|
displayName: string;
|
26991
|
-
isDefault: boolean;
|
26992
26992
|
isArchived: boolean;
|
26993
26993
|
isRequired: boolean;
|
26994
26994
|
isUnique: boolean;
|
@@ -27307,9 +27307,9 @@ export declare const mainChatContract: {
|
|
27307
27307
|
createdAt: Date;
|
27308
27308
|
updatedAt: Date;
|
27309
27309
|
deletedAt: Date | null;
|
27310
|
+
isDefault: boolean;
|
27310
27311
|
systemName: string;
|
27311
27312
|
displayName: string;
|
27312
|
-
isDefault: boolean;
|
27313
27313
|
isArchived: boolean;
|
27314
27314
|
isRequired: boolean;
|
27315
27315
|
isUnique: boolean;
|
@@ -27629,9 +27629,9 @@ export declare const mainChatContract: {
|
|
27629
27629
|
createdAt: Date;
|
27630
27630
|
updatedAt: Date;
|
27631
27631
|
deletedAt: Date | null;
|
27632
|
+
isDefault: boolean;
|
27632
27633
|
systemName: string;
|
27633
27634
|
displayName: string;
|
27634
|
-
isDefault: boolean;
|
27635
27635
|
isArchived: boolean;
|
27636
27636
|
isRequired: boolean;
|
27637
27637
|
isUnique: boolean;
|
@@ -28614,9 +28614,9 @@ export declare const mainChatContract: {
|
|
28614
28614
|
createdAt: Date;
|
28615
28615
|
updatedAt: Date;
|
28616
28616
|
deletedAt: Date | null;
|
28617
|
+
isDefault: boolean;
|
28617
28618
|
systemName: string;
|
28618
28619
|
displayName: string;
|
28619
|
-
isDefault: boolean;
|
28620
28620
|
isArchived: boolean;
|
28621
28621
|
isRequired: boolean;
|
28622
28622
|
isUnique: boolean;
|
@@ -28627,9 +28627,9 @@ export declare const mainChatContract: {
|
|
28627
28627
|
createdAt: Date;
|
28628
28628
|
updatedAt: Date;
|
28629
28629
|
deletedAt: Date | null;
|
28630
|
+
isDefault: boolean;
|
28630
28631
|
systemName: string;
|
28631
28632
|
displayName: string;
|
28632
|
-
isDefault: boolean;
|
28633
28633
|
isArchived: boolean;
|
28634
28634
|
isRequired: boolean;
|
28635
28635
|
isUnique: boolean;
|
@@ -28646,9 +28646,9 @@ export declare const mainChatContract: {
|
|
28646
28646
|
createdAt: Date;
|
28647
28647
|
updatedAt: Date;
|
28648
28648
|
deletedAt: Date | null;
|
28649
|
+
isDefault: boolean;
|
28649
28650
|
systemName: string;
|
28650
28651
|
displayName: string;
|
28651
|
-
isDefault: boolean;
|
28652
28652
|
isArchived: boolean;
|
28653
28653
|
isRequired: boolean;
|
28654
28654
|
isUnique: boolean;
|
@@ -28669,9 +28669,9 @@ export declare const mainChatContract: {
|
|
28669
28669
|
createdAt: Date;
|
28670
28670
|
updatedAt: Date;
|
28671
28671
|
deletedAt: Date | null;
|
28672
|
+
isDefault: boolean;
|
28672
28673
|
systemName: string;
|
28673
28674
|
displayName: string;
|
28674
|
-
isDefault: boolean;
|
28675
28675
|
isArchived: boolean;
|
28676
28676
|
isRequired: boolean;
|
28677
28677
|
isUnique: boolean;
|
@@ -28770,9 +28770,9 @@ export declare const mainChatContract: {
|
|
28770
28770
|
createdAt: Date;
|
28771
28771
|
updatedAt: Date;
|
28772
28772
|
deletedAt: Date | null;
|
28773
|
+
isDefault: boolean;
|
28773
28774
|
systemName: string;
|
28774
28775
|
displayName: string;
|
28775
|
-
isDefault: boolean;
|
28776
28776
|
isArchived: boolean;
|
28777
28777
|
isRequired: boolean;
|
28778
28778
|
isUnique: boolean;
|
@@ -28783,9 +28783,9 @@ export declare const mainChatContract: {
|
|
28783
28783
|
createdAt: Date;
|
28784
28784
|
updatedAt: Date;
|
28785
28785
|
deletedAt: Date | null;
|
28786
|
+
isDefault: boolean;
|
28786
28787
|
systemName: string;
|
28787
28788
|
displayName: string;
|
28788
|
-
isDefault: boolean;
|
28789
28789
|
isArchived: boolean;
|
28790
28790
|
isRequired: boolean;
|
28791
28791
|
isUnique: boolean;
|
@@ -28879,9 +28879,9 @@ export declare const mainChatContract: {
|
|
28879
28879
|
createdAt: Date;
|
28880
28880
|
updatedAt: Date;
|
28881
28881
|
deletedAt: Date | null;
|
28882
|
+
isDefault: boolean;
|
28882
28883
|
systemName: string;
|
28883
28884
|
displayName: string;
|
28884
|
-
isDefault: boolean;
|
28885
28885
|
isArchived: boolean;
|
28886
28886
|
isRequired: boolean;
|
28887
28887
|
isUnique: boolean;
|
@@ -28921,9 +28921,9 @@ export declare const mainChatContract: {
|
|
28921
28921
|
createdAt: Date;
|
28922
28922
|
updatedAt: Date;
|
28923
28923
|
deletedAt: Date | null;
|
28924
|
+
isDefault: boolean;
|
28924
28925
|
systemName: string;
|
28925
28926
|
displayName: string;
|
28926
|
-
isDefault: boolean;
|
28927
28927
|
isArchived: boolean;
|
28928
28928
|
isRequired: boolean;
|
28929
28929
|
isUnique: boolean;
|
@@ -29076,9 +29076,9 @@ export declare const mainChatContract: {
|
|
29076
29076
|
createdAt: Date;
|
29077
29077
|
updatedAt: Date;
|
29078
29078
|
deletedAt: Date | null;
|
29079
|
+
isDefault: boolean;
|
29079
29080
|
systemName: string;
|
29080
29081
|
displayName: string;
|
29081
|
-
isDefault: boolean;
|
29082
29082
|
isArchived: boolean;
|
29083
29083
|
isRequired: boolean;
|
29084
29084
|
isUnique: boolean;
|
@@ -29179,9 +29179,9 @@ export declare const mainChatContract: {
|
|
29179
29179
|
createdAt: Date;
|
29180
29180
|
updatedAt: Date;
|
29181
29181
|
deletedAt: Date | null;
|
29182
|
+
isDefault: boolean;
|
29182
29183
|
systemName: string;
|
29183
29184
|
displayName: string;
|
29184
|
-
isDefault: boolean;
|
29185
29185
|
isArchived: boolean;
|
29186
29186
|
isRequired: boolean;
|
29187
29187
|
isUnique: boolean;
|
@@ -29296,9 +29296,9 @@ export declare const mainChatContract: {
|
|
29296
29296
|
createdAt: Date;
|
29297
29297
|
updatedAt: Date;
|
29298
29298
|
deletedAt: Date | null;
|
29299
|
+
isDefault: boolean;
|
29299
29300
|
systemName: string;
|
29300
29301
|
displayName: string;
|
29301
|
-
isDefault: boolean;
|
29302
29302
|
isArchived: boolean;
|
29303
29303
|
isRequired: boolean;
|
29304
29304
|
isUnique: boolean;
|
@@ -29414,9 +29414,9 @@ export declare const mainChatContract: {
|
|
29414
29414
|
createdAt: Date;
|
29415
29415
|
updatedAt: Date;
|
29416
29416
|
deletedAt: Date | null;
|
29417
|
+
isDefault: boolean;
|
29417
29418
|
systemName: string;
|
29418
29419
|
displayName: string;
|
29419
|
-
isDefault: boolean;
|
29420
29420
|
isArchived: boolean;
|
29421
29421
|
isRequired: boolean;
|
29422
29422
|
isUnique: boolean;
|
@@ -29960,9 +29960,9 @@ export declare const mainChatContract: {
|
|
29960
29960
|
createdAt: Date;
|
29961
29961
|
updatedAt: Date;
|
29962
29962
|
deletedAt: Date | null;
|
29963
|
+
isDefault: boolean;
|
29963
29964
|
systemName: string;
|
29964
29965
|
displayName: string;
|
29965
|
-
isDefault: boolean;
|
29966
29966
|
isArchived: boolean;
|
29967
29967
|
isRequired: boolean;
|
29968
29968
|
isUnique: boolean;
|
@@ -29973,9 +29973,9 @@ export declare const mainChatContract: {
|
|
29973
29973
|
createdAt: Date;
|
29974
29974
|
updatedAt: Date;
|
29975
29975
|
deletedAt: Date | null;
|
29976
|
+
isDefault: boolean;
|
29976
29977
|
systemName: string;
|
29977
29978
|
displayName: string;
|
29978
|
-
isDefault: boolean;
|
29979
29979
|
isArchived: boolean;
|
29980
29980
|
isRequired: boolean;
|
29981
29981
|
isUnique: boolean;
|
@@ -29992,9 +29992,9 @@ export declare const mainChatContract: {
|
|
29992
29992
|
createdAt: Date;
|
29993
29993
|
updatedAt: Date;
|
29994
29994
|
deletedAt: Date | null;
|
29995
|
+
isDefault: boolean;
|
29995
29996
|
systemName: string;
|
29996
29997
|
displayName: string;
|
29997
|
-
isDefault: boolean;
|
29998
29998
|
isArchived: boolean;
|
29999
29999
|
isRequired: boolean;
|
30000
30000
|
isUnique: boolean;
|
@@ -30015,9 +30015,9 @@ export declare const mainChatContract: {
|
|
30015
30015
|
createdAt: Date;
|
30016
30016
|
updatedAt: Date;
|
30017
30017
|
deletedAt: Date | null;
|
30018
|
+
isDefault: boolean;
|
30018
30019
|
systemName: string;
|
30019
30020
|
displayName: string;
|
30020
|
-
isDefault: boolean;
|
30021
30021
|
isArchived: boolean;
|
30022
30022
|
isRequired: boolean;
|
30023
30023
|
isUnique: boolean;
|
@@ -30116,9 +30116,9 @@ export declare const mainChatContract: {
|
|
30116
30116
|
createdAt: Date;
|
30117
30117
|
updatedAt: Date;
|
30118
30118
|
deletedAt: Date | null;
|
30119
|
+
isDefault: boolean;
|
30119
30120
|
systemName: string;
|
30120
30121
|
displayName: string;
|
30121
|
-
isDefault: boolean;
|
30122
30122
|
isArchived: boolean;
|
30123
30123
|
isRequired: boolean;
|
30124
30124
|
isUnique: boolean;
|
@@ -30129,9 +30129,9 @@ export declare const mainChatContract: {
|
|
30129
30129
|
createdAt: Date;
|
30130
30130
|
updatedAt: Date;
|
30131
30131
|
deletedAt: Date | null;
|
30132
|
+
isDefault: boolean;
|
30132
30133
|
systemName: string;
|
30133
30134
|
displayName: string;
|
30134
|
-
isDefault: boolean;
|
30135
30135
|
isArchived: boolean;
|
30136
30136
|
isRequired: boolean;
|
30137
30137
|
isUnique: boolean;
|
@@ -30225,9 +30225,9 @@ export declare const mainChatContract: {
|
|
30225
30225
|
createdAt: Date;
|
30226
30226
|
updatedAt: Date;
|
30227
30227
|
deletedAt: Date | null;
|
30228
|
+
isDefault: boolean;
|
30228
30229
|
systemName: string;
|
30229
30230
|
displayName: string;
|
30230
|
-
isDefault: boolean;
|
30231
30231
|
isArchived: boolean;
|
30232
30232
|
isRequired: boolean;
|
30233
30233
|
isUnique: boolean;
|
@@ -30267,9 +30267,9 @@ export declare const mainChatContract: {
|
|
30267
30267
|
createdAt: Date;
|
30268
30268
|
updatedAt: Date;
|
30269
30269
|
deletedAt: Date | null;
|
30270
|
+
isDefault: boolean;
|
30270
30271
|
systemName: string;
|
30271
30272
|
displayName: string;
|
30272
|
-
isDefault: boolean;
|
30273
30273
|
isArchived: boolean;
|
30274
30274
|
isRequired: boolean;
|
30275
30275
|
isUnique: boolean;
|
@@ -30422,9 +30422,9 @@ export declare const mainChatContract: {
|
|
30422
30422
|
createdAt: Date;
|
30423
30423
|
updatedAt: Date;
|
30424
30424
|
deletedAt: Date | null;
|
30425
|
+
isDefault: boolean;
|
30425
30426
|
systemName: string;
|
30426
30427
|
displayName: string;
|
30427
|
-
isDefault: boolean;
|
30428
30428
|
isArchived: boolean;
|
30429
30429
|
isRequired: boolean;
|
30430
30430
|
isUnique: boolean;
|
@@ -30525,9 +30525,9 @@ export declare const mainChatContract: {
|
|
30525
30525
|
createdAt: Date;
|
30526
30526
|
updatedAt: Date;
|
30527
30527
|
deletedAt: Date | null;
|
30528
|
+
isDefault: boolean;
|
30528
30529
|
systemName: string;
|
30529
30530
|
displayName: string;
|
30530
|
-
isDefault: boolean;
|
30531
30531
|
isArchived: boolean;
|
30532
30532
|
isRequired: boolean;
|
30533
30533
|
isUnique: boolean;
|
@@ -30680,9 +30680,9 @@ export declare const mainChatContract: {
|
|
30680
30680
|
createdAt: Date;
|
30681
30681
|
updatedAt: Date;
|
30682
30682
|
deletedAt: Date | null;
|
30683
|
+
isDefault: boolean;
|
30683
30684
|
systemName: string;
|
30684
30685
|
displayName: string;
|
30685
|
-
isDefault: boolean;
|
30686
30686
|
isArchived: boolean;
|
30687
30687
|
isRequired: boolean;
|
30688
30688
|
isUnique: boolean;
|
@@ -30804,9 +30804,9 @@ export declare const mainChatContract: {
|
|
30804
30804
|
createdAt: Date;
|
30805
30805
|
updatedAt: Date;
|
30806
30806
|
deletedAt: Date | null;
|
30807
|
+
isDefault: boolean;
|
30807
30808
|
systemName: string;
|
30808
30809
|
displayName: string;
|
30809
|
-
isDefault: boolean;
|
30810
30810
|
isArchived: boolean;
|
30811
30811
|
isRequired: boolean;
|
30812
30812
|
isUnique: boolean;
|
@@ -31104,9 +31104,9 @@ export declare const mainChatContract: {
|
|
31104
31104
|
createdAt: Date;
|
31105
31105
|
updatedAt: Date;
|
31106
31106
|
deletedAt: Date | null;
|
31107
|
+
isDefault: boolean;
|
31107
31108
|
systemName: string;
|
31108
31109
|
displayName: string;
|
31109
|
-
isDefault: boolean;
|
31110
31110
|
isArchived: boolean;
|
31111
31111
|
isRequired: boolean;
|
31112
31112
|
isUnique: boolean;
|
@@ -31228,9 +31228,9 @@ export declare const mainChatContract: {
|
|
31228
31228
|
createdAt: Date;
|
31229
31229
|
updatedAt: Date;
|
31230
31230
|
deletedAt: Date | null;
|
31231
|
+
isDefault: boolean;
|
31231
31232
|
systemName: string;
|
31232
31233
|
displayName: string;
|
31233
|
-
isDefault: boolean;
|
31234
31234
|
isArchived: boolean;
|
31235
31235
|
isRequired: boolean;
|
31236
31236
|
isUnique: boolean;
|
@@ -31530,9 +31530,9 @@ export declare const mainChatContract: {
|
|
31530
31530
|
createdAt: Date;
|
31531
31531
|
updatedAt: Date;
|
31532
31532
|
deletedAt: Date | null;
|
31533
|
+
isDefault: boolean;
|
31533
31534
|
systemName: string;
|
31534
31535
|
displayName: string;
|
31535
|
-
isDefault: boolean;
|
31536
31536
|
isArchived: boolean;
|
31537
31537
|
isRequired: boolean;
|
31538
31538
|
isUnique: boolean;
|
@@ -31654,9 +31654,9 @@ export declare const mainChatContract: {
|
|
31654
31654
|
createdAt: Date;
|
31655
31655
|
updatedAt: Date;
|
31656
31656
|
deletedAt: Date | null;
|
31657
|
+
isDefault: boolean;
|
31657
31658
|
systemName: string;
|
31658
31659
|
displayName: string;
|
31659
|
-
isDefault: boolean;
|
31660
31660
|
isArchived: boolean;
|
31661
31661
|
isRequired: boolean;
|
31662
31662
|
isUnique: boolean;
|
@@ -31957,9 +31957,9 @@ export declare const mainChatContract: {
|
|
31957
31957
|
createdAt: Date;
|
31958
31958
|
updatedAt: Date;
|
31959
31959
|
deletedAt: Date | null;
|
31960
|
+
isDefault: boolean;
|
31960
31961
|
systemName: string;
|
31961
31962
|
displayName: string;
|
31962
|
-
isDefault: boolean;
|
31963
31963
|
isArchived: boolean;
|
31964
31964
|
isRequired: boolean;
|
31965
31965
|
isUnique: boolean;
|
@@ -32081,9 +32081,9 @@ export declare const mainChatContract: {
|
|
32081
32081
|
createdAt: Date;
|
32082
32082
|
updatedAt: Date;
|
32083
32083
|
deletedAt: Date | null;
|
32084
|
+
isDefault: boolean;
|
32084
32085
|
systemName: string;
|
32085
32086
|
displayName: string;
|
32086
|
-
isDefault: boolean;
|
32087
32087
|
isArchived: boolean;
|
32088
32088
|
isRequired: boolean;
|
32089
32089
|
isUnique: boolean;
|
@@ -33057,9 +33057,9 @@ export declare const mainChatContract: {
|
|
33057
33057
|
createdAt: Date;
|
33058
33058
|
updatedAt: Date;
|
33059
33059
|
deletedAt: Date | null;
|
33060
|
+
isDefault: boolean;
|
33060
33061
|
systemName: string;
|
33061
33062
|
displayName: string;
|
33062
|
-
isDefault: boolean;
|
33063
33063
|
isArchived: boolean;
|
33064
33064
|
isRequired: boolean;
|
33065
33065
|
isUnique: boolean;
|
@@ -33070,9 +33070,9 @@ export declare const mainChatContract: {
|
|
33070
33070
|
createdAt: Date;
|
33071
33071
|
updatedAt: Date;
|
33072
33072
|
deletedAt: Date | null;
|
33073
|
+
isDefault: boolean;
|
33073
33074
|
systemName: string;
|
33074
33075
|
displayName: string;
|
33075
|
-
isDefault: boolean;
|
33076
33076
|
isArchived: boolean;
|
33077
33077
|
isRequired: boolean;
|
33078
33078
|
isUnique: boolean;
|
@@ -33089,9 +33089,9 @@ export declare const mainChatContract: {
|
|
33089
33089
|
createdAt: Date;
|
33090
33090
|
updatedAt: Date;
|
33091
33091
|
deletedAt: Date | null;
|
33092
|
+
isDefault: boolean;
|
33092
33093
|
systemName: string;
|
33093
33094
|
displayName: string;
|
33094
|
-
isDefault: boolean;
|
33095
33095
|
isArchived: boolean;
|
33096
33096
|
isRequired: boolean;
|
33097
33097
|
isUnique: boolean;
|
@@ -33112,9 +33112,9 @@ export declare const mainChatContract: {
|
|
33112
33112
|
createdAt: Date;
|
33113
33113
|
updatedAt: Date;
|
33114
33114
|
deletedAt: Date | null;
|
33115
|
+
isDefault: boolean;
|
33115
33116
|
systemName: string;
|
33116
33117
|
displayName: string;
|
33117
|
-
isDefault: boolean;
|
33118
33118
|
isArchived: boolean;
|
33119
33119
|
isRequired: boolean;
|
33120
33120
|
isUnique: boolean;
|
@@ -33213,9 +33213,9 @@ export declare const mainChatContract: {
|
|
33213
33213
|
createdAt: Date;
|
33214
33214
|
updatedAt: Date;
|
33215
33215
|
deletedAt: Date | null;
|
33216
|
+
isDefault: boolean;
|
33216
33217
|
systemName: string;
|
33217
33218
|
displayName: string;
|
33218
|
-
isDefault: boolean;
|
33219
33219
|
isArchived: boolean;
|
33220
33220
|
isRequired: boolean;
|
33221
33221
|
isUnique: boolean;
|
@@ -33226,9 +33226,9 @@ export declare const mainChatContract: {
|
|
33226
33226
|
createdAt: Date;
|
33227
33227
|
updatedAt: Date;
|
33228
33228
|
deletedAt: Date | null;
|
33229
|
+
isDefault: boolean;
|
33229
33230
|
systemName: string;
|
33230
33231
|
displayName: string;
|
33231
|
-
isDefault: boolean;
|
33232
33232
|
isArchived: boolean;
|
33233
33233
|
isRequired: boolean;
|
33234
33234
|
isUnique: boolean;
|
@@ -33322,9 +33322,9 @@ export declare const mainChatContract: {
|
|
33322
33322
|
createdAt: Date;
|
33323
33323
|
updatedAt: Date;
|
33324
33324
|
deletedAt: Date | null;
|
33325
|
+
isDefault: boolean;
|
33325
33326
|
systemName: string;
|
33326
33327
|
displayName: string;
|
33327
|
-
isDefault: boolean;
|
33328
33328
|
isArchived: boolean;
|
33329
33329
|
isRequired: boolean;
|
33330
33330
|
isUnique: boolean;
|
@@ -33364,9 +33364,9 @@ export declare const mainChatContract: {
|
|
33364
33364
|
createdAt: Date;
|
33365
33365
|
updatedAt: Date;
|
33366
33366
|
deletedAt: Date | null;
|
33367
|
+
isDefault: boolean;
|
33367
33368
|
systemName: string;
|
33368
33369
|
displayName: string;
|
33369
|
-
isDefault: boolean;
|
33370
33370
|
isArchived: boolean;
|
33371
33371
|
isRequired: boolean;
|
33372
33372
|
isUnique: boolean;
|
@@ -33519,9 +33519,9 @@ export declare const mainChatContract: {
|
|
33519
33519
|
createdAt: Date;
|
33520
33520
|
updatedAt: Date;
|
33521
33521
|
deletedAt: Date | null;
|
33522
|
+
isDefault: boolean;
|
33522
33523
|
systemName: string;
|
33523
33524
|
displayName: string;
|
33524
|
-
isDefault: boolean;
|
33525
33525
|
isArchived: boolean;
|
33526
33526
|
isRequired: boolean;
|
33527
33527
|
isUnique: boolean;
|
@@ -33622,9 +33622,9 @@ export declare const mainChatContract: {
|
|
33622
33622
|
createdAt: Date;
|
33623
33623
|
updatedAt: Date;
|
33624
33624
|
deletedAt: Date | null;
|
33625
|
+
isDefault: boolean;
|
33625
33626
|
systemName: string;
|
33626
33627
|
displayName: string;
|
33627
|
-
isDefault: boolean;
|
33628
33628
|
isArchived: boolean;
|
33629
33629
|
isRequired: boolean;
|
33630
33630
|
isUnique: boolean;
|
@@ -33739,9 +33739,9 @@ export declare const mainChatContract: {
|
|
33739
33739
|
createdAt: Date;
|
33740
33740
|
updatedAt: Date;
|
33741
33741
|
deletedAt: Date | null;
|
33742
|
+
isDefault: boolean;
|
33742
33743
|
systemName: string;
|
33743
33744
|
displayName: string;
|
33744
|
-
isDefault: boolean;
|
33745
33745
|
isArchived: boolean;
|
33746
33746
|
isRequired: boolean;
|
33747
33747
|
isUnique: boolean;
|
@@ -33857,9 +33857,9 @@ export declare const mainChatContract: {
|
|
33857
33857
|
createdAt: Date;
|
33858
33858
|
updatedAt: Date;
|
33859
33859
|
deletedAt: Date | null;
|
33860
|
+
isDefault: boolean;
|
33860
33861
|
systemName: string;
|
33861
33862
|
displayName: string;
|
33862
|
-
isDefault: boolean;
|
33863
33863
|
isArchived: boolean;
|
33864
33864
|
isRequired: boolean;
|
33865
33865
|
isUnique: boolean;
|
@@ -34386,9 +34386,9 @@ export declare const mainChatContract: {
|
|
34386
34386
|
createdAt: Date;
|
34387
34387
|
updatedAt: Date;
|
34388
34388
|
deletedAt: Date | null;
|
34389
|
+
isDefault: boolean;
|
34389
34390
|
systemName: string;
|
34390
34391
|
displayName: string;
|
34391
|
-
isDefault: boolean;
|
34392
34392
|
isArchived: boolean;
|
34393
34393
|
isRequired: boolean;
|
34394
34394
|
isUnique: boolean;
|
@@ -34706,9 +34706,9 @@ export declare const mainChatContract: {
|
|
34706
34706
|
createdAt: Date;
|
34707
34707
|
updatedAt: Date;
|
34708
34708
|
deletedAt: Date | null;
|
34709
|
+
isDefault: boolean;
|
34709
34710
|
systemName: string;
|
34710
34711
|
displayName: string;
|
34711
|
-
isDefault: boolean;
|
34712
34712
|
isArchived: boolean;
|
34713
34713
|
isRequired: boolean;
|
34714
34714
|
isUnique: boolean;
|
@@ -35028,9 +35028,9 @@ export declare const mainChatContract: {
|
|
35028
35028
|
createdAt: Date;
|
35029
35029
|
updatedAt: Date;
|
35030
35030
|
deletedAt: Date | null;
|
35031
|
+
isDefault: boolean;
|
35031
35032
|
systemName: string;
|
35032
35033
|
displayName: string;
|
35033
|
-
isDefault: boolean;
|
35034
35034
|
isArchived: boolean;
|
35035
35035
|
isRequired: boolean;
|
35036
35036
|
isUnique: boolean;
|
@@ -35351,9 +35351,9 @@ export declare const mainChatContract: {
|
|
35351
35351
|
createdAt: Date;
|
35352
35352
|
updatedAt: Date;
|
35353
35353
|
deletedAt: Date | null;
|
35354
|
+
isDefault: boolean;
|
35354
35355
|
systemName: string;
|
35355
35356
|
displayName: string;
|
35356
|
-
isDefault: boolean;
|
35357
35357
|
isArchived: boolean;
|
35358
35358
|
isRequired: boolean;
|
35359
35359
|
isUnique: boolean;
|
@@ -35770,9 +35770,9 @@ export declare const mainChatContract: {
|
|
35770
35770
|
createdAt: Date;
|
35771
35771
|
updatedAt: Date;
|
35772
35772
|
deletedAt: Date | null;
|
35773
|
+
isDefault: boolean;
|
35773
35774
|
systemName: string;
|
35774
35775
|
displayName: string;
|
35775
|
-
isDefault: boolean;
|
35776
35776
|
isArchived: boolean;
|
35777
35777
|
isRequired: boolean;
|
35778
35778
|
isUnique: boolean;
|
@@ -35783,9 +35783,9 @@ export declare const mainChatContract: {
|
|
35783
35783
|
createdAt: Date;
|
35784
35784
|
updatedAt: Date;
|
35785
35785
|
deletedAt: Date | null;
|
35786
|
+
isDefault: boolean;
|
35786
35787
|
systemName: string;
|
35787
35788
|
displayName: string;
|
35788
|
-
isDefault: boolean;
|
35789
35789
|
isArchived: boolean;
|
35790
35790
|
isRequired: boolean;
|
35791
35791
|
isUnique: boolean;
|
@@ -35802,9 +35802,9 @@ export declare const mainChatContract: {
|
|
35802
35802
|
createdAt: Date;
|
35803
35803
|
updatedAt: Date;
|
35804
35804
|
deletedAt: Date | null;
|
35805
|
+
isDefault: boolean;
|
35805
35806
|
systemName: string;
|
35806
35807
|
displayName: string;
|
35807
|
-
isDefault: boolean;
|
35808
35808
|
isArchived: boolean;
|
35809
35809
|
isRequired: boolean;
|
35810
35810
|
isUnique: boolean;
|
@@ -35825,9 +35825,9 @@ export declare const mainChatContract: {
|
|
35825
35825
|
createdAt: Date;
|
35826
35826
|
updatedAt: Date;
|
35827
35827
|
deletedAt: Date | null;
|
35828
|
+
isDefault: boolean;
|
35828
35829
|
systemName: string;
|
35829
35830
|
displayName: string;
|
35830
|
-
isDefault: boolean;
|
35831
35831
|
isArchived: boolean;
|
35832
35832
|
isRequired: boolean;
|
35833
35833
|
isUnique: boolean;
|
@@ -35926,9 +35926,9 @@ export declare const mainChatContract: {
|
|
35926
35926
|
createdAt: Date;
|
35927
35927
|
updatedAt: Date;
|
35928
35928
|
deletedAt: Date | null;
|
35929
|
+
isDefault: boolean;
|
35929
35930
|
systemName: string;
|
35930
35931
|
displayName: string;
|
35931
|
-
isDefault: boolean;
|
35932
35932
|
isArchived: boolean;
|
35933
35933
|
isRequired: boolean;
|
35934
35934
|
isUnique: boolean;
|
@@ -35939,9 +35939,9 @@ export declare const mainChatContract: {
|
|
35939
35939
|
createdAt: Date;
|
35940
35940
|
updatedAt: Date;
|
35941
35941
|
deletedAt: Date | null;
|
35942
|
+
isDefault: boolean;
|
35942
35943
|
systemName: string;
|
35943
35944
|
displayName: string;
|
35944
|
-
isDefault: boolean;
|
35945
35945
|
isArchived: boolean;
|
35946
35946
|
isRequired: boolean;
|
35947
35947
|
isUnique: boolean;
|
@@ -36035,9 +36035,9 @@ export declare const mainChatContract: {
|
|
36035
36035
|
createdAt: Date;
|
36036
36036
|
updatedAt: Date;
|
36037
36037
|
deletedAt: Date | null;
|
36038
|
+
isDefault: boolean;
|
36038
36039
|
systemName: string;
|
36039
36040
|
displayName: string;
|
36040
|
-
isDefault: boolean;
|
36041
36041
|
isArchived: boolean;
|
36042
36042
|
isRequired: boolean;
|
36043
36043
|
isUnique: boolean;
|
@@ -36077,9 +36077,9 @@ export declare const mainChatContract: {
|
|
36077
36077
|
createdAt: Date;
|
36078
36078
|
updatedAt: Date;
|
36079
36079
|
deletedAt: Date | null;
|
36080
|
+
isDefault: boolean;
|
36080
36081
|
systemName: string;
|
36081
36082
|
displayName: string;
|
36082
|
-
isDefault: boolean;
|
36083
36083
|
isArchived: boolean;
|
36084
36084
|
isRequired: boolean;
|
36085
36085
|
isUnique: boolean;
|
@@ -36232,9 +36232,9 @@ export declare const mainChatContract: {
|
|
36232
36232
|
createdAt: Date;
|
36233
36233
|
updatedAt: Date;
|
36234
36234
|
deletedAt: Date | null;
|
36235
|
+
isDefault: boolean;
|
36235
36236
|
systemName: string;
|
36236
36237
|
displayName: string;
|
36237
|
-
isDefault: boolean;
|
36238
36238
|
isArchived: boolean;
|
36239
36239
|
isRequired: boolean;
|
36240
36240
|
isUnique: boolean;
|
@@ -36335,9 +36335,9 @@ export declare const mainChatContract: {
|
|
36335
36335
|
createdAt: Date;
|
36336
36336
|
updatedAt: Date;
|
36337
36337
|
deletedAt: Date | null;
|
36338
|
+
isDefault: boolean;
|
36338
36339
|
systemName: string;
|
36339
36340
|
displayName: string;
|
36340
|
-
isDefault: boolean;
|
36341
36341
|
isArchived: boolean;
|
36342
36342
|
isRequired: boolean;
|
36343
36343
|
isUnique: boolean;
|
@@ -36452,9 +36452,9 @@ export declare const mainChatContract: {
|
|
36452
36452
|
createdAt: Date;
|
36453
36453
|
updatedAt: Date;
|
36454
36454
|
deletedAt: Date | null;
|
36455
|
+
isDefault: boolean;
|
36455
36456
|
systemName: string;
|
36456
36457
|
displayName: string;
|
36457
|
-
isDefault: boolean;
|
36458
36458
|
isArchived: boolean;
|
36459
36459
|
isRequired: boolean;
|
36460
36460
|
isUnique: boolean;
|
@@ -36570,9 +36570,9 @@ export declare const mainChatContract: {
|
|
36570
36570
|
createdAt: Date;
|
36571
36571
|
updatedAt: Date;
|
36572
36572
|
deletedAt: Date | null;
|
36573
|
+
isDefault: boolean;
|
36573
36574
|
systemName: string;
|
36574
36575
|
displayName: string;
|
36575
|
-
isDefault: boolean;
|
36576
36576
|
isArchived: boolean;
|
36577
36577
|
isRequired: boolean;
|
36578
36578
|
isUnique: boolean;
|
@@ -37661,9 +37661,9 @@ export declare const mainChatContract: {
|
|
37661
37661
|
createdAt: Date;
|
37662
37662
|
updatedAt: Date;
|
37663
37663
|
deletedAt: Date | null;
|
37664
|
+
isDefault: boolean;
|
37664
37665
|
systemName: string;
|
37665
37666
|
displayName: string;
|
37666
|
-
isDefault: boolean;
|
37667
37667
|
isArchived: boolean;
|
37668
37668
|
isRequired: boolean;
|
37669
37669
|
isUnique: boolean;
|
@@ -37980,9 +37980,9 @@ export declare const mainChatContract: {
|
|
37980
37980
|
createdAt: Date;
|
37981
37981
|
updatedAt: Date;
|
37982
37982
|
deletedAt: Date | null;
|
37983
|
+
isDefault: boolean;
|
37983
37984
|
systemName: string;
|
37984
37985
|
displayName: string;
|
37985
|
-
isDefault: boolean;
|
37986
37986
|
isArchived: boolean;
|
37987
37987
|
isRequired: boolean;
|
37988
37988
|
isUnique: boolean;
|
@@ -38301,9 +38301,9 @@ export declare const mainChatContract: {
|
|
38301
38301
|
createdAt: Date;
|
38302
38302
|
updatedAt: Date;
|
38303
38303
|
deletedAt: Date | null;
|
38304
|
+
isDefault: boolean;
|
38304
38305
|
systemName: string;
|
38305
38306
|
displayName: string;
|
38306
|
-
isDefault: boolean;
|
38307
38307
|
isArchived: boolean;
|
38308
38308
|
isRequired: boolean;
|
38309
38309
|
isUnique: boolean;
|
@@ -38626,9 +38626,9 @@ export declare const mainChatContract: {
|
|
38626
38626
|
createdAt: Date;
|
38627
38627
|
updatedAt: Date;
|
38628
38628
|
deletedAt: Date | null;
|
38629
|
+
isDefault: boolean;
|
38629
38630
|
systemName: string;
|
38630
38631
|
displayName: string;
|
38631
|
-
isDefault: boolean;
|
38632
38632
|
isArchived: boolean;
|
38633
38633
|
isRequired: boolean;
|
38634
38634
|
isUnique: boolean;
|