@kl1/contracts 1.1.27-uat → 1.1.27
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 +1781 -1887
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1780 -1887
- package/dist/index.mjs.map +1 -1
- package/dist/src/business-calendar/index.d.ts +474 -68
- package/dist/src/business-calendar/index.d.ts.map +1 -1
- package/dist/src/business-calendar/schema.d.ts +122 -41
- package/dist/src/business-calendar/schema.d.ts.map +1 -1
- package/dist/src/business-calendar/validation.d.ts +62 -112
- package/dist/src/business-calendar/validation.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +914 -118
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +213 -39
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +164 -24
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +11636 -4802
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +13 -8
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +15 -12
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +152 -12
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +152 -12
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +33 -2243
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/message-contract.d.ts +1 -2045
- package/dist/src/mail/message-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +32 -200
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/message-validation.schema.d.ts +0 -3
- package/dist/src/mail/schemas/message-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/message.schema.d.ts +0 -6
- package/dist/src/mail/schemas/message.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +12 -68
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +8 -54
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +152 -12
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/call-report.schema.d.ts +62 -62
- package/dist/src/telephony-cdr/call-report.schema.d.ts.map +1 -1
- package/dist/src/telephony-cdr/index.d.ts +1 -622
- package/dist/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +152 -12
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +152 -12
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/workflow-rule/index.d.ts +7305 -0
- package/dist/src/workflow-rule/index.d.ts.map +1 -0
- package/dist/src/workflow-rule/schema.d.ts +27 -0
- package/dist/src/workflow-rule/schema.d.ts.map +1 -0
- package/dist/src/wrap-up-form/index.d.ts +475 -22
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/schema.d.ts +4 -4
- package/dist/src/wrap-up-form/validation.d.ts +6 -0
- package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
- package/package.json +4 -10
package/dist/src/chat/index.d.ts
CHANGED
@@ -1632,7 +1632,7 @@ export declare const receiveMessageContract: {
|
|
1632
1632
|
}>, "many">;
|
1633
1633
|
callFrom: z.ZodNullable<z.ZodString>;
|
1634
1634
|
callTo: z.ZodNullable<z.ZodString>;
|
1635
|
-
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
1635
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
1636
1636
|
id: z.ZodString;
|
1637
1637
|
createdAt: z.ZodDate;
|
1638
1638
|
updatedAt: z.ZodDate;
|
@@ -1665,7 +1665,7 @@ export declare const receiveMessageContract: {
|
|
1665
1665
|
booleanValue: boolean | null;
|
1666
1666
|
numberValue: number | null;
|
1667
1667
|
dateValue: Date | null;
|
1668
|
-
}>, "many"
|
1668
|
+
}>, "many">>>;
|
1669
1669
|
}, "strip", z.ZodTypeAny, {
|
1670
1670
|
type: string;
|
1671
1671
|
id: string;
|
@@ -1716,7 +1716,7 @@ export declare const receiveMessageContract: {
|
|
1716
1716
|
booleanValue: boolean | null;
|
1717
1717
|
numberValue: number | null;
|
1718
1718
|
dateValue: Date | null;
|
1719
|
-
}[] | undefined;
|
1719
|
+
}[] | null | undefined;
|
1720
1720
|
}, {
|
1721
1721
|
type: string;
|
1722
1722
|
id: string;
|
@@ -1767,7 +1767,7 @@ export declare const receiveMessageContract: {
|
|
1767
1767
|
booleanValue: boolean | null;
|
1768
1768
|
numberValue: number | null;
|
1769
1769
|
dateValue: Date | null;
|
1770
|
-
}[] | undefined;
|
1770
|
+
}[] | null | undefined;
|
1771
1771
|
}>>;
|
1772
1772
|
}, "strip", z.ZodTypeAny, {
|
1773
1773
|
id: string;
|
@@ -1835,7 +1835,7 @@ export declare const receiveMessageContract: {
|
|
1835
1835
|
booleanValue: boolean | null;
|
1836
1836
|
numberValue: number | null;
|
1837
1837
|
dateValue: Date | null;
|
1838
|
-
}[] | undefined;
|
1838
|
+
}[] | null | undefined;
|
1839
1839
|
} | null;
|
1840
1840
|
}, {
|
1841
1841
|
id: string;
|
@@ -1903,7 +1903,7 @@ export declare const receiveMessageContract: {
|
|
1903
1903
|
booleanValue: boolean | null;
|
1904
1904
|
numberValue: number | null;
|
1905
1905
|
dateValue: Date | null;
|
1906
|
-
}[] | undefined;
|
1906
|
+
}[] | null | undefined;
|
1907
1907
|
} | null;
|
1908
1908
|
}>>;
|
1909
1909
|
}, "strip", z.ZodTypeAny, {
|
@@ -2209,7 +2209,7 @@ export declare const receiveMessageContract: {
|
|
2209
2209
|
booleanValue: boolean | null;
|
2210
2210
|
numberValue: number | null;
|
2211
2211
|
dateValue: Date | null;
|
2212
|
-
}[] | undefined;
|
2212
|
+
}[] | null | undefined;
|
2213
2213
|
} | null;
|
2214
2214
|
} | undefined;
|
2215
2215
|
}, {
|
@@ -2515,7 +2515,7 @@ export declare const receiveMessageContract: {
|
|
2515
2515
|
booleanValue: boolean | null;
|
2516
2516
|
numberValue: number | null;
|
2517
2517
|
dateValue: Date | null;
|
2518
|
-
}[] | undefined;
|
2518
|
+
}[] | null | undefined;
|
2519
2519
|
} | null;
|
2520
2520
|
} | undefined;
|
2521
2521
|
}>>;
|
@@ -3476,7 +3476,7 @@ export declare const receiveMessageContract: {
|
|
3476
3476
|
booleanValue: boolean | null;
|
3477
3477
|
numberValue: number | null;
|
3478
3478
|
dateValue: Date | null;
|
3479
|
-
}[] | undefined;
|
3479
|
+
}[] | null | undefined;
|
3480
3480
|
} | null;
|
3481
3481
|
} | undefined;
|
3482
3482
|
} | null;
|
@@ -3944,7 +3944,7 @@ export declare const receiveMessageContract: {
|
|
3944
3944
|
booleanValue: boolean | null;
|
3945
3945
|
numberValue: number | null;
|
3946
3946
|
dateValue: Date | null;
|
3947
|
-
}[] | undefined;
|
3947
|
+
}[] | null | undefined;
|
3948
3948
|
} | null;
|
3949
3949
|
} | undefined;
|
3950
3950
|
} | null;
|
@@ -4414,7 +4414,7 @@ export declare const receiveMessageContract: {
|
|
4414
4414
|
booleanValue: boolean | null;
|
4415
4415
|
numberValue: number | null;
|
4416
4416
|
dateValue: Date | null;
|
4417
|
-
}[] | undefined;
|
4417
|
+
}[] | null | undefined;
|
4418
4418
|
} | null;
|
4419
4419
|
} | undefined;
|
4420
4420
|
} | null;
|
@@ -4884,7 +4884,7 @@ export declare const receiveMessageContract: {
|
|
4884
4884
|
booleanValue: boolean | null;
|
4885
4885
|
numberValue: number | null;
|
4886
4886
|
dateValue: Date | null;
|
4887
|
-
}[] | undefined;
|
4887
|
+
}[] | null | undefined;
|
4888
4888
|
} | null;
|
4889
4889
|
} | undefined;
|
4890
4890
|
} | null;
|
@@ -7076,7 +7076,7 @@ export declare const mainChatContract: {
|
|
7076
7076
|
}>, "many">;
|
7077
7077
|
callFrom: z.ZodNullable<z.ZodString>;
|
7078
7078
|
callTo: z.ZodNullable<z.ZodString>;
|
7079
|
-
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
7079
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
7080
7080
|
id: z.ZodString;
|
7081
7081
|
createdAt: z.ZodDate;
|
7082
7082
|
updatedAt: z.ZodDate;
|
@@ -7109,7 +7109,7 @@ export declare const mainChatContract: {
|
|
7109
7109
|
booleanValue: boolean | null;
|
7110
7110
|
numberValue: number | null;
|
7111
7111
|
dateValue: Date | null;
|
7112
|
-
}>, "many"
|
7112
|
+
}>, "many">>>;
|
7113
7113
|
}, "strip", z.ZodTypeAny, {
|
7114
7114
|
type: string;
|
7115
7115
|
id: string;
|
@@ -7160,7 +7160,7 @@ export declare const mainChatContract: {
|
|
7160
7160
|
booleanValue: boolean | null;
|
7161
7161
|
numberValue: number | null;
|
7162
7162
|
dateValue: Date | null;
|
7163
|
-
}[] | undefined;
|
7163
|
+
}[] | null | undefined;
|
7164
7164
|
}, {
|
7165
7165
|
type: string;
|
7166
7166
|
id: string;
|
@@ -7211,7 +7211,7 @@ export declare const mainChatContract: {
|
|
7211
7211
|
booleanValue: boolean | null;
|
7212
7212
|
numberValue: number | null;
|
7213
7213
|
dateValue: Date | null;
|
7214
|
-
}[] | undefined;
|
7214
|
+
}[] | null | undefined;
|
7215
7215
|
}>>;
|
7216
7216
|
}, "strip", z.ZodTypeAny, {
|
7217
7217
|
id: string;
|
@@ -7279,7 +7279,7 @@ export declare const mainChatContract: {
|
|
7279
7279
|
booleanValue: boolean | null;
|
7280
7280
|
numberValue: number | null;
|
7281
7281
|
dateValue: Date | null;
|
7282
|
-
}[] | undefined;
|
7282
|
+
}[] | null | undefined;
|
7283
7283
|
} | null;
|
7284
7284
|
}, {
|
7285
7285
|
id: string;
|
@@ -7347,9 +7347,34 @@ export declare const mainChatContract: {
|
|
7347
7347
|
booleanValue: boolean | null;
|
7348
7348
|
numberValue: number | null;
|
7349
7349
|
dateValue: Date | null;
|
7350
|
-
}[] | undefined;
|
7350
|
+
}[] | null | undefined;
|
7351
7351
|
} | null;
|
7352
7352
|
}>;
|
7353
|
+
workflowRule: z.ZodObject<{
|
7354
|
+
id: z.ZodString;
|
7355
|
+
createdAt: z.ZodDate;
|
7356
|
+
updatedAt: z.ZodDate;
|
7357
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
7358
|
+
name: z.ZodString;
|
7359
|
+
isActive: z.ZodBoolean;
|
7360
|
+
type: z.ZodString;
|
7361
|
+
}, "strip", z.ZodTypeAny, {
|
7362
|
+
type: string;
|
7363
|
+
id: string;
|
7364
|
+
name: string;
|
7365
|
+
createdAt: Date;
|
7366
|
+
updatedAt: Date;
|
7367
|
+
deletedAt: Date | null;
|
7368
|
+
isActive: boolean;
|
7369
|
+
}, {
|
7370
|
+
type: string;
|
7371
|
+
id: string;
|
7372
|
+
name: string;
|
7373
|
+
createdAt: Date;
|
7374
|
+
updatedAt: Date;
|
7375
|
+
deletedAt: Date | null;
|
7376
|
+
isActive: boolean;
|
7377
|
+
}>;
|
7353
7378
|
}, "strip", z.ZodTypeAny, {
|
7354
7379
|
id: string;
|
7355
7380
|
channel: {
|
@@ -7696,9 +7721,18 @@ export declare const mainChatContract: {
|
|
7696
7721
|
booleanValue: boolean | null;
|
7697
7722
|
numberValue: number | null;
|
7698
7723
|
dateValue: Date | null;
|
7699
|
-
}[] | undefined;
|
7724
|
+
}[] | null | undefined;
|
7700
7725
|
} | null;
|
7701
7726
|
};
|
7727
|
+
workflowRule: {
|
7728
|
+
type: string;
|
7729
|
+
id: string;
|
7730
|
+
name: string;
|
7731
|
+
createdAt: Date;
|
7732
|
+
updatedAt: Date;
|
7733
|
+
deletedAt: Date | null;
|
7734
|
+
isActive: boolean;
|
7735
|
+
};
|
7702
7736
|
}, {
|
7703
7737
|
id: string;
|
7704
7738
|
channel: {
|
@@ -8045,9 +8079,18 @@ export declare const mainChatContract: {
|
|
8045
8079
|
booleanValue: boolean | null;
|
8046
8080
|
numberValue: number | null;
|
8047
8081
|
dateValue: Date | null;
|
8048
|
-
}[] | undefined;
|
8082
|
+
}[] | null | undefined;
|
8049
8083
|
} | null;
|
8050
8084
|
};
|
8085
|
+
workflowRule: {
|
8086
|
+
type: string;
|
8087
|
+
id: string;
|
8088
|
+
name: string;
|
8089
|
+
createdAt: Date;
|
8090
|
+
updatedAt: Date;
|
8091
|
+
deletedAt: Date | null;
|
8092
|
+
isActive: boolean;
|
8093
|
+
};
|
8051
8094
|
}>, "many">;
|
8052
8095
|
unreadCountsByAssignee: z.ZodArray<z.ZodObject<{
|
8053
8096
|
assigneeId: z.ZodString;
|
@@ -8406,9 +8449,18 @@ export declare const mainChatContract: {
|
|
8406
8449
|
booleanValue: boolean | null;
|
8407
8450
|
numberValue: number | null;
|
8408
8451
|
dateValue: Date | null;
|
8409
|
-
}[] | undefined;
|
8452
|
+
}[] | null | undefined;
|
8410
8453
|
} | null;
|
8411
8454
|
};
|
8455
|
+
workflowRule: {
|
8456
|
+
type: string;
|
8457
|
+
id: string;
|
8458
|
+
name: string;
|
8459
|
+
createdAt: Date;
|
8460
|
+
updatedAt: Date;
|
8461
|
+
deletedAt: Date | null;
|
8462
|
+
isActive: boolean;
|
8463
|
+
};
|
8412
8464
|
}[];
|
8413
8465
|
total: number;
|
8414
8466
|
page: number;
|
@@ -8765,9 +8817,18 @@ export declare const mainChatContract: {
|
|
8765
8817
|
booleanValue: boolean | null;
|
8766
8818
|
numberValue: number | null;
|
8767
8819
|
dateValue: Date | null;
|
8768
|
-
}[] | undefined;
|
8820
|
+
}[] | null | undefined;
|
8769
8821
|
} | null;
|
8770
8822
|
};
|
8823
|
+
workflowRule: {
|
8824
|
+
type: string;
|
8825
|
+
id: string;
|
8826
|
+
name: string;
|
8827
|
+
createdAt: Date;
|
8828
|
+
updatedAt: Date;
|
8829
|
+
deletedAt: Date | null;
|
8830
|
+
isActive: boolean;
|
8831
|
+
};
|
8771
8832
|
}[];
|
8772
8833
|
total: number;
|
8773
8834
|
page: number;
|
@@ -11641,7 +11702,7 @@ export declare const mainChatContract: {
|
|
11641
11702
|
}>, "many">;
|
11642
11703
|
callFrom: z.ZodNullable<z.ZodString>;
|
11643
11704
|
callTo: z.ZodNullable<z.ZodString>;
|
11644
|
-
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
11705
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
11645
11706
|
id: z.ZodString;
|
11646
11707
|
createdAt: z.ZodDate;
|
11647
11708
|
updatedAt: z.ZodDate;
|
@@ -11674,7 +11735,7 @@ export declare const mainChatContract: {
|
|
11674
11735
|
booleanValue: boolean | null;
|
11675
11736
|
numberValue: number | null;
|
11676
11737
|
dateValue: Date | null;
|
11677
|
-
}>, "many"
|
11738
|
+
}>, "many">>>;
|
11678
11739
|
}, "strip", z.ZodTypeAny, {
|
11679
11740
|
type: string;
|
11680
11741
|
id: string;
|
@@ -11725,7 +11786,7 @@ export declare const mainChatContract: {
|
|
11725
11786
|
booleanValue: boolean | null;
|
11726
11787
|
numberValue: number | null;
|
11727
11788
|
dateValue: Date | null;
|
11728
|
-
}[] | undefined;
|
11789
|
+
}[] | null | undefined;
|
11729
11790
|
}, {
|
11730
11791
|
type: string;
|
11731
11792
|
id: string;
|
@@ -11776,7 +11837,7 @@ export declare const mainChatContract: {
|
|
11776
11837
|
booleanValue: boolean | null;
|
11777
11838
|
numberValue: number | null;
|
11778
11839
|
dateValue: Date | null;
|
11779
|
-
}[] | undefined;
|
11840
|
+
}[] | null | undefined;
|
11780
11841
|
}>>;
|
11781
11842
|
}, "strip", z.ZodTypeAny, {
|
11782
11843
|
id: string;
|
@@ -11844,7 +11905,7 @@ export declare const mainChatContract: {
|
|
11844
11905
|
booleanValue: boolean | null;
|
11845
11906
|
numberValue: number | null;
|
11846
11907
|
dateValue: Date | null;
|
11847
|
-
}[] | undefined;
|
11908
|
+
}[] | null | undefined;
|
11848
11909
|
} | null;
|
11849
11910
|
}, {
|
11850
11911
|
id: string;
|
@@ -11912,9 +11973,34 @@ export declare const mainChatContract: {
|
|
11912
11973
|
booleanValue: boolean | null;
|
11913
11974
|
numberValue: number | null;
|
11914
11975
|
dateValue: Date | null;
|
11915
|
-
}[] | undefined;
|
11976
|
+
}[] | null | undefined;
|
11916
11977
|
} | null;
|
11917
11978
|
}>;
|
11979
|
+
workflowRule: z.ZodObject<{
|
11980
|
+
id: z.ZodString;
|
11981
|
+
createdAt: z.ZodDate;
|
11982
|
+
updatedAt: z.ZodDate;
|
11983
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
11984
|
+
name: z.ZodString;
|
11985
|
+
isActive: z.ZodBoolean;
|
11986
|
+
type: z.ZodString;
|
11987
|
+
}, "strip", z.ZodTypeAny, {
|
11988
|
+
type: string;
|
11989
|
+
id: string;
|
11990
|
+
name: string;
|
11991
|
+
createdAt: Date;
|
11992
|
+
updatedAt: Date;
|
11993
|
+
deletedAt: Date | null;
|
11994
|
+
isActive: boolean;
|
11995
|
+
}, {
|
11996
|
+
type: string;
|
11997
|
+
id: string;
|
11998
|
+
name: string;
|
11999
|
+
createdAt: Date;
|
12000
|
+
updatedAt: Date;
|
12001
|
+
deletedAt: Date | null;
|
12002
|
+
isActive: boolean;
|
12003
|
+
}>;
|
11918
12004
|
}, "strip", z.ZodTypeAny, {
|
11919
12005
|
id: string;
|
11920
12006
|
channel: {
|
@@ -12261,9 +12347,18 @@ export declare const mainChatContract: {
|
|
12261
12347
|
booleanValue: boolean | null;
|
12262
12348
|
numberValue: number | null;
|
12263
12349
|
dateValue: Date | null;
|
12264
|
-
}[] | undefined;
|
12350
|
+
}[] | null | undefined;
|
12265
12351
|
} | null;
|
12266
12352
|
};
|
12353
|
+
workflowRule: {
|
12354
|
+
type: string;
|
12355
|
+
id: string;
|
12356
|
+
name: string;
|
12357
|
+
createdAt: Date;
|
12358
|
+
updatedAt: Date;
|
12359
|
+
deletedAt: Date | null;
|
12360
|
+
isActive: boolean;
|
12361
|
+
};
|
12267
12362
|
}, {
|
12268
12363
|
id: string;
|
12269
12364
|
channel: {
|
@@ -12610,9 +12705,18 @@ export declare const mainChatContract: {
|
|
12610
12705
|
booleanValue: boolean | null;
|
12611
12706
|
numberValue: number | null;
|
12612
12707
|
dateValue: Date | null;
|
12613
|
-
}[] | undefined;
|
12708
|
+
}[] | null | undefined;
|
12614
12709
|
} | null;
|
12615
12710
|
};
|
12711
|
+
workflowRule: {
|
12712
|
+
type: string;
|
12713
|
+
id: string;
|
12714
|
+
name: string;
|
12715
|
+
createdAt: Date;
|
12716
|
+
updatedAt: Date;
|
12717
|
+
deletedAt: Date | null;
|
12718
|
+
isActive: boolean;
|
12719
|
+
};
|
12616
12720
|
}>;
|
12617
12721
|
}, "strip", z.ZodTypeAny, {
|
12618
12722
|
data: {
|
@@ -12961,9 +13065,18 @@ export declare const mainChatContract: {
|
|
12961
13065
|
booleanValue: boolean | null;
|
12962
13066
|
numberValue: number | null;
|
12963
13067
|
dateValue: Date | null;
|
12964
|
-
}[] | undefined;
|
13068
|
+
}[] | null | undefined;
|
12965
13069
|
} | null;
|
12966
13070
|
};
|
13071
|
+
workflowRule: {
|
13072
|
+
type: string;
|
13073
|
+
id: string;
|
13074
|
+
name: string;
|
13075
|
+
createdAt: Date;
|
13076
|
+
updatedAt: Date;
|
13077
|
+
deletedAt: Date | null;
|
13078
|
+
isActive: boolean;
|
13079
|
+
};
|
12967
13080
|
};
|
12968
13081
|
requestId: string;
|
12969
13082
|
}, {
|
@@ -13313,9 +13426,18 @@ export declare const mainChatContract: {
|
|
13313
13426
|
booleanValue: boolean | null;
|
13314
13427
|
numberValue: number | null;
|
13315
13428
|
dateValue: Date | null;
|
13316
|
-
}[] | undefined;
|
13429
|
+
}[] | null | undefined;
|
13317
13430
|
} | null;
|
13318
13431
|
};
|
13432
|
+
workflowRule: {
|
13433
|
+
type: string;
|
13434
|
+
id: string;
|
13435
|
+
name: string;
|
13436
|
+
createdAt: Date;
|
13437
|
+
updatedAt: Date;
|
13438
|
+
deletedAt: Date | null;
|
13439
|
+
isActive: boolean;
|
13440
|
+
};
|
13319
13441
|
};
|
13320
13442
|
requestId: string;
|
13321
13443
|
}>;
|
@@ -15601,7 +15723,7 @@ export declare const mainChatContract: {
|
|
15601
15723
|
}>, "many">;
|
15602
15724
|
callFrom: z.ZodNullable<z.ZodString>;
|
15603
15725
|
callTo: z.ZodNullable<z.ZodString>;
|
15604
|
-
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
15726
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
15605
15727
|
id: z.ZodString;
|
15606
15728
|
createdAt: z.ZodDate;
|
15607
15729
|
updatedAt: z.ZodDate;
|
@@ -15634,7 +15756,7 @@ export declare const mainChatContract: {
|
|
15634
15756
|
booleanValue: boolean | null;
|
15635
15757
|
numberValue: number | null;
|
15636
15758
|
dateValue: Date | null;
|
15637
|
-
}>, "many"
|
15759
|
+
}>, "many">>>;
|
15638
15760
|
}, "strip", z.ZodTypeAny, {
|
15639
15761
|
type: string;
|
15640
15762
|
id: string;
|
@@ -15685,7 +15807,7 @@ export declare const mainChatContract: {
|
|
15685
15807
|
booleanValue: boolean | null;
|
15686
15808
|
numberValue: number | null;
|
15687
15809
|
dateValue: Date | null;
|
15688
|
-
}[] | undefined;
|
15810
|
+
}[] | null | undefined;
|
15689
15811
|
}, {
|
15690
15812
|
type: string;
|
15691
15813
|
id: string;
|
@@ -15736,7 +15858,7 @@ export declare const mainChatContract: {
|
|
15736
15858
|
booleanValue: boolean | null;
|
15737
15859
|
numberValue: number | null;
|
15738
15860
|
dateValue: Date | null;
|
15739
|
-
}[] | undefined;
|
15861
|
+
}[] | null | undefined;
|
15740
15862
|
}>>;
|
15741
15863
|
}, "strip", z.ZodTypeAny, {
|
15742
15864
|
id: string;
|
@@ -15804,7 +15926,7 @@ export declare const mainChatContract: {
|
|
15804
15926
|
booleanValue: boolean | null;
|
15805
15927
|
numberValue: number | null;
|
15806
15928
|
dateValue: Date | null;
|
15807
|
-
}[] | undefined;
|
15929
|
+
}[] | null | undefined;
|
15808
15930
|
} | null;
|
15809
15931
|
}, {
|
15810
15932
|
id: string;
|
@@ -15872,9 +15994,34 @@ export declare const mainChatContract: {
|
|
15872
15994
|
booleanValue: boolean | null;
|
15873
15995
|
numberValue: number | null;
|
15874
15996
|
dateValue: Date | null;
|
15875
|
-
}[] | undefined;
|
15997
|
+
}[] | null | undefined;
|
15876
15998
|
} | null;
|
15877
15999
|
}>;
|
16000
|
+
workflowRule: z.ZodObject<{
|
16001
|
+
id: z.ZodString;
|
16002
|
+
createdAt: z.ZodDate;
|
16003
|
+
updatedAt: z.ZodDate;
|
16004
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
16005
|
+
name: z.ZodString;
|
16006
|
+
isActive: z.ZodBoolean;
|
16007
|
+
type: z.ZodString;
|
16008
|
+
}, "strip", z.ZodTypeAny, {
|
16009
|
+
type: string;
|
16010
|
+
id: string;
|
16011
|
+
name: string;
|
16012
|
+
createdAt: Date;
|
16013
|
+
updatedAt: Date;
|
16014
|
+
deletedAt: Date | null;
|
16015
|
+
isActive: boolean;
|
16016
|
+
}, {
|
16017
|
+
type: string;
|
16018
|
+
id: string;
|
16019
|
+
name: string;
|
16020
|
+
createdAt: Date;
|
16021
|
+
updatedAt: Date;
|
16022
|
+
deletedAt: Date | null;
|
16023
|
+
isActive: boolean;
|
16024
|
+
}>;
|
15878
16025
|
}, "strip", z.ZodTypeAny, {
|
15879
16026
|
id: string;
|
15880
16027
|
channel: {
|
@@ -16221,9 +16368,18 @@ export declare const mainChatContract: {
|
|
16221
16368
|
booleanValue: boolean | null;
|
16222
16369
|
numberValue: number | null;
|
16223
16370
|
dateValue: Date | null;
|
16224
|
-
}[] | undefined;
|
16371
|
+
}[] | null | undefined;
|
16225
16372
|
} | null;
|
16226
16373
|
};
|
16374
|
+
workflowRule: {
|
16375
|
+
type: string;
|
16376
|
+
id: string;
|
16377
|
+
name: string;
|
16378
|
+
createdAt: Date;
|
16379
|
+
updatedAt: Date;
|
16380
|
+
deletedAt: Date | null;
|
16381
|
+
isActive: boolean;
|
16382
|
+
};
|
16227
16383
|
}, {
|
16228
16384
|
id: string;
|
16229
16385
|
channel: {
|
@@ -16570,9 +16726,18 @@ export declare const mainChatContract: {
|
|
16570
16726
|
booleanValue: boolean | null;
|
16571
16727
|
numberValue: number | null;
|
16572
16728
|
dateValue: Date | null;
|
16573
|
-
}[] | undefined;
|
16729
|
+
}[] | null | undefined;
|
16574
16730
|
} | null;
|
16575
16731
|
};
|
16732
|
+
workflowRule: {
|
16733
|
+
type: string;
|
16734
|
+
id: string;
|
16735
|
+
name: string;
|
16736
|
+
createdAt: Date;
|
16737
|
+
updatedAt: Date;
|
16738
|
+
deletedAt: Date | null;
|
16739
|
+
isActive: boolean;
|
16740
|
+
};
|
16576
16741
|
}>;
|
16577
16742
|
upload: z.ZodObject<{
|
16578
16743
|
id: z.ZodString;
|
@@ -18209,6 +18374,31 @@ export declare const mainChatContract: {
|
|
18209
18374
|
telephonySignature: string | null;
|
18210
18375
|
};
|
18211
18376
|
}>;
|
18377
|
+
workflowRule: z.ZodObject<{
|
18378
|
+
id: z.ZodString;
|
18379
|
+
createdAt: z.ZodDate;
|
18380
|
+
updatedAt: z.ZodDate;
|
18381
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
18382
|
+
name: z.ZodString;
|
18383
|
+
isActive: z.ZodBoolean;
|
18384
|
+
type: z.ZodString;
|
18385
|
+
}, "strip", z.ZodTypeAny, {
|
18386
|
+
type: string;
|
18387
|
+
id: string;
|
18388
|
+
name: string;
|
18389
|
+
createdAt: Date;
|
18390
|
+
updatedAt: Date;
|
18391
|
+
deletedAt: Date | null;
|
18392
|
+
isActive: boolean;
|
18393
|
+
}, {
|
18394
|
+
type: string;
|
18395
|
+
id: string;
|
18396
|
+
name: string;
|
18397
|
+
createdAt: Date;
|
18398
|
+
updatedAt: Date;
|
18399
|
+
deletedAt: Date | null;
|
18400
|
+
isActive: boolean;
|
18401
|
+
}>;
|
18212
18402
|
}, "strip", z.ZodTypeAny, {
|
18213
18403
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
18214
18404
|
message: string;
|
@@ -18665,9 +18855,27 @@ export declare const mainChatContract: {
|
|
18665
18855
|
booleanValue: boolean | null;
|
18666
18856
|
numberValue: number | null;
|
18667
18857
|
dateValue: Date | null;
|
18668
|
-
}[] | undefined;
|
18858
|
+
}[] | null | undefined;
|
18669
18859
|
} | null;
|
18670
18860
|
};
|
18861
|
+
workflowRule: {
|
18862
|
+
type: string;
|
18863
|
+
id: string;
|
18864
|
+
name: string;
|
18865
|
+
createdAt: Date;
|
18866
|
+
updatedAt: Date;
|
18867
|
+
deletedAt: Date | null;
|
18868
|
+
isActive: boolean;
|
18869
|
+
};
|
18870
|
+
};
|
18871
|
+
workflowRule: {
|
18872
|
+
type: string;
|
18873
|
+
id: string;
|
18874
|
+
name: string;
|
18875
|
+
createdAt: Date;
|
18876
|
+
updatedAt: Date;
|
18877
|
+
deletedAt: Date | null;
|
18878
|
+
isActive: boolean;
|
18671
18879
|
};
|
18672
18880
|
readAt: Date;
|
18673
18881
|
platformMessageId: string;
|
@@ -19340,9 +19548,27 @@ export declare const mainChatContract: {
|
|
19340
19548
|
booleanValue: boolean | null;
|
19341
19549
|
numberValue: number | null;
|
19342
19550
|
dateValue: Date | null;
|
19343
|
-
}[] | undefined;
|
19551
|
+
}[] | null | undefined;
|
19344
19552
|
} | null;
|
19345
19553
|
};
|
19554
|
+
workflowRule: {
|
19555
|
+
type: string;
|
19556
|
+
id: string;
|
19557
|
+
name: string;
|
19558
|
+
createdAt: Date;
|
19559
|
+
updatedAt: Date;
|
19560
|
+
deletedAt: Date | null;
|
19561
|
+
isActive: boolean;
|
19562
|
+
};
|
19563
|
+
};
|
19564
|
+
workflowRule: {
|
19565
|
+
type: string;
|
19566
|
+
id: string;
|
19567
|
+
name: string;
|
19568
|
+
createdAt: Date;
|
19569
|
+
updatedAt: Date;
|
19570
|
+
deletedAt: Date | null;
|
19571
|
+
isActive: boolean;
|
19346
19572
|
};
|
19347
19573
|
readAt: Date;
|
19348
19574
|
platformMessageId: string;
|
@@ -20017,9 +20243,27 @@ export declare const mainChatContract: {
|
|
20017
20243
|
booleanValue: boolean | null;
|
20018
20244
|
numberValue: number | null;
|
20019
20245
|
dateValue: Date | null;
|
20020
|
-
}[] | undefined;
|
20246
|
+
}[] | null | undefined;
|
20021
20247
|
} | null;
|
20022
20248
|
};
|
20249
|
+
workflowRule: {
|
20250
|
+
type: string;
|
20251
|
+
id: string;
|
20252
|
+
name: string;
|
20253
|
+
createdAt: Date;
|
20254
|
+
updatedAt: Date;
|
20255
|
+
deletedAt: Date | null;
|
20256
|
+
isActive: boolean;
|
20257
|
+
};
|
20258
|
+
};
|
20259
|
+
workflowRule: {
|
20260
|
+
type: string;
|
20261
|
+
id: string;
|
20262
|
+
name: string;
|
20263
|
+
createdAt: Date;
|
20264
|
+
updatedAt: Date;
|
20265
|
+
deletedAt: Date | null;
|
20266
|
+
isActive: boolean;
|
20023
20267
|
};
|
20024
20268
|
readAt: Date;
|
20025
20269
|
platformMessageId: string;
|
@@ -20695,9 +20939,27 @@ export declare const mainChatContract: {
|
|
20695
20939
|
booleanValue: boolean | null;
|
20696
20940
|
numberValue: number | null;
|
20697
20941
|
dateValue: Date | null;
|
20698
|
-
}[] | undefined;
|
20942
|
+
}[] | null | undefined;
|
20699
20943
|
} | null;
|
20700
20944
|
};
|
20945
|
+
workflowRule: {
|
20946
|
+
type: string;
|
20947
|
+
id: string;
|
20948
|
+
name: string;
|
20949
|
+
createdAt: Date;
|
20950
|
+
updatedAt: Date;
|
20951
|
+
deletedAt: Date | null;
|
20952
|
+
isActive: boolean;
|
20953
|
+
};
|
20954
|
+
};
|
20955
|
+
workflowRule: {
|
20956
|
+
type: string;
|
20957
|
+
id: string;
|
20958
|
+
name: string;
|
20959
|
+
createdAt: Date;
|
20960
|
+
updatedAt: Date;
|
20961
|
+
deletedAt: Date | null;
|
20962
|
+
isActive: boolean;
|
20701
20963
|
};
|
20702
20964
|
readAt: Date;
|
20703
20965
|
platformMessageId: string;
|
@@ -22929,7 +23191,7 @@ export declare const mainChatContract: {
|
|
22929
23191
|
}>, "many">;
|
22930
23192
|
callFrom: z.ZodNullable<z.ZodString>;
|
22931
23193
|
callTo: z.ZodNullable<z.ZodString>;
|
22932
|
-
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
23194
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
22933
23195
|
id: z.ZodString;
|
22934
23196
|
createdAt: z.ZodDate;
|
22935
23197
|
updatedAt: z.ZodDate;
|
@@ -22962,7 +23224,7 @@ export declare const mainChatContract: {
|
|
22962
23224
|
booleanValue: boolean | null;
|
22963
23225
|
numberValue: number | null;
|
22964
23226
|
dateValue: Date | null;
|
22965
|
-
}>, "many"
|
23227
|
+
}>, "many">>>;
|
22966
23228
|
}, "strip", z.ZodTypeAny, {
|
22967
23229
|
type: string;
|
22968
23230
|
id: string;
|
@@ -23013,7 +23275,7 @@ export declare const mainChatContract: {
|
|
23013
23275
|
booleanValue: boolean | null;
|
23014
23276
|
numberValue: number | null;
|
23015
23277
|
dateValue: Date | null;
|
23016
|
-
}[] | undefined;
|
23278
|
+
}[] | null | undefined;
|
23017
23279
|
}, {
|
23018
23280
|
type: string;
|
23019
23281
|
id: string;
|
@@ -23064,7 +23326,7 @@ export declare const mainChatContract: {
|
|
23064
23326
|
booleanValue: boolean | null;
|
23065
23327
|
numberValue: number | null;
|
23066
23328
|
dateValue: Date | null;
|
23067
|
-
}[] | undefined;
|
23329
|
+
}[] | null | undefined;
|
23068
23330
|
}>>;
|
23069
23331
|
}, "strip", z.ZodTypeAny, {
|
23070
23332
|
id: string;
|
@@ -23132,7 +23394,7 @@ export declare const mainChatContract: {
|
|
23132
23394
|
booleanValue: boolean | null;
|
23133
23395
|
numberValue: number | null;
|
23134
23396
|
dateValue: Date | null;
|
23135
|
-
}[] | undefined;
|
23397
|
+
}[] | null | undefined;
|
23136
23398
|
} | null;
|
23137
23399
|
}, {
|
23138
23400
|
id: string;
|
@@ -23200,9 +23462,34 @@ export declare const mainChatContract: {
|
|
23200
23462
|
booleanValue: boolean | null;
|
23201
23463
|
numberValue: number | null;
|
23202
23464
|
dateValue: Date | null;
|
23203
|
-
}[] | undefined;
|
23465
|
+
}[] | null | undefined;
|
23204
23466
|
} | null;
|
23205
23467
|
}>;
|
23468
|
+
workflowRule: z.ZodObject<{
|
23469
|
+
id: z.ZodString;
|
23470
|
+
createdAt: z.ZodDate;
|
23471
|
+
updatedAt: z.ZodDate;
|
23472
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
23473
|
+
name: z.ZodString;
|
23474
|
+
isActive: z.ZodBoolean;
|
23475
|
+
type: z.ZodString;
|
23476
|
+
}, "strip", z.ZodTypeAny, {
|
23477
|
+
type: string;
|
23478
|
+
id: string;
|
23479
|
+
name: string;
|
23480
|
+
createdAt: Date;
|
23481
|
+
updatedAt: Date;
|
23482
|
+
deletedAt: Date | null;
|
23483
|
+
isActive: boolean;
|
23484
|
+
}, {
|
23485
|
+
type: string;
|
23486
|
+
id: string;
|
23487
|
+
name: string;
|
23488
|
+
createdAt: Date;
|
23489
|
+
updatedAt: Date;
|
23490
|
+
deletedAt: Date | null;
|
23491
|
+
isActive: boolean;
|
23492
|
+
}>;
|
23206
23493
|
}, "strip", z.ZodTypeAny, {
|
23207
23494
|
id: string;
|
23208
23495
|
channel: {
|
@@ -23549,9 +23836,18 @@ export declare const mainChatContract: {
|
|
23549
23836
|
booleanValue: boolean | null;
|
23550
23837
|
numberValue: number | null;
|
23551
23838
|
dateValue: Date | null;
|
23552
|
-
}[] | undefined;
|
23839
|
+
}[] | null | undefined;
|
23553
23840
|
} | null;
|
23554
23841
|
};
|
23842
|
+
workflowRule: {
|
23843
|
+
type: string;
|
23844
|
+
id: string;
|
23845
|
+
name: string;
|
23846
|
+
createdAt: Date;
|
23847
|
+
updatedAt: Date;
|
23848
|
+
deletedAt: Date | null;
|
23849
|
+
isActive: boolean;
|
23850
|
+
};
|
23555
23851
|
}, {
|
23556
23852
|
id: string;
|
23557
23853
|
channel: {
|
@@ -23898,9 +24194,18 @@ export declare const mainChatContract: {
|
|
23898
24194
|
booleanValue: boolean | null;
|
23899
24195
|
numberValue: number | null;
|
23900
24196
|
dateValue: Date | null;
|
23901
|
-
}[] | undefined;
|
24197
|
+
}[] | null | undefined;
|
23902
24198
|
} | null;
|
23903
24199
|
};
|
24200
|
+
workflowRule: {
|
24201
|
+
type: string;
|
24202
|
+
id: string;
|
24203
|
+
name: string;
|
24204
|
+
createdAt: Date;
|
24205
|
+
updatedAt: Date;
|
24206
|
+
deletedAt: Date | null;
|
24207
|
+
isActive: boolean;
|
24208
|
+
};
|
23904
24209
|
}>;
|
23905
24210
|
upload: z.ZodObject<{
|
23906
24211
|
id: z.ZodString;
|
@@ -25537,6 +25842,31 @@ export declare const mainChatContract: {
|
|
25537
25842
|
telephonySignature: string | null;
|
25538
25843
|
};
|
25539
25844
|
}>;
|
25845
|
+
workflowRule: z.ZodObject<{
|
25846
|
+
id: z.ZodString;
|
25847
|
+
createdAt: z.ZodDate;
|
25848
|
+
updatedAt: z.ZodDate;
|
25849
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
25850
|
+
name: z.ZodString;
|
25851
|
+
isActive: z.ZodBoolean;
|
25852
|
+
type: z.ZodString;
|
25853
|
+
}, "strip", z.ZodTypeAny, {
|
25854
|
+
type: string;
|
25855
|
+
id: string;
|
25856
|
+
name: string;
|
25857
|
+
createdAt: Date;
|
25858
|
+
updatedAt: Date;
|
25859
|
+
deletedAt: Date | null;
|
25860
|
+
isActive: boolean;
|
25861
|
+
}, {
|
25862
|
+
type: string;
|
25863
|
+
id: string;
|
25864
|
+
name: string;
|
25865
|
+
createdAt: Date;
|
25866
|
+
updatedAt: Date;
|
25867
|
+
deletedAt: Date | null;
|
25868
|
+
isActive: boolean;
|
25869
|
+
}>;
|
25540
25870
|
}, "strip", z.ZodTypeAny, {
|
25541
25871
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
25542
25872
|
message: string;
|
@@ -25993,9 +26323,27 @@ export declare const mainChatContract: {
|
|
25993
26323
|
booleanValue: boolean | null;
|
25994
26324
|
numberValue: number | null;
|
25995
26325
|
dateValue: Date | null;
|
25996
|
-
}[] | undefined;
|
26326
|
+
}[] | null | undefined;
|
25997
26327
|
} | null;
|
25998
26328
|
};
|
26329
|
+
workflowRule: {
|
26330
|
+
type: string;
|
26331
|
+
id: string;
|
26332
|
+
name: string;
|
26333
|
+
createdAt: Date;
|
26334
|
+
updatedAt: Date;
|
26335
|
+
deletedAt: Date | null;
|
26336
|
+
isActive: boolean;
|
26337
|
+
};
|
26338
|
+
};
|
26339
|
+
workflowRule: {
|
26340
|
+
type: string;
|
26341
|
+
id: string;
|
26342
|
+
name: string;
|
26343
|
+
createdAt: Date;
|
26344
|
+
updatedAt: Date;
|
26345
|
+
deletedAt: Date | null;
|
26346
|
+
isActive: boolean;
|
25999
26347
|
};
|
26000
26348
|
readAt: Date;
|
26001
26349
|
platformMessageId: string;
|
@@ -26668,9 +27016,27 @@ export declare const mainChatContract: {
|
|
26668
27016
|
booleanValue: boolean | null;
|
26669
27017
|
numberValue: number | null;
|
26670
27018
|
dateValue: Date | null;
|
26671
|
-
}[] | undefined;
|
27019
|
+
}[] | null | undefined;
|
26672
27020
|
} | null;
|
26673
27021
|
};
|
27022
|
+
workflowRule: {
|
27023
|
+
type: string;
|
27024
|
+
id: string;
|
27025
|
+
name: string;
|
27026
|
+
createdAt: Date;
|
27027
|
+
updatedAt: Date;
|
27028
|
+
deletedAt: Date | null;
|
27029
|
+
isActive: boolean;
|
27030
|
+
};
|
27031
|
+
};
|
27032
|
+
workflowRule: {
|
27033
|
+
type: string;
|
27034
|
+
id: string;
|
27035
|
+
name: string;
|
27036
|
+
createdAt: Date;
|
27037
|
+
updatedAt: Date;
|
27038
|
+
deletedAt: Date | null;
|
27039
|
+
isActive: boolean;
|
26674
27040
|
};
|
26675
27041
|
readAt: Date;
|
26676
27042
|
platformMessageId: string;
|
@@ -27345,9 +27711,27 @@ export declare const mainChatContract: {
|
|
27345
27711
|
booleanValue: boolean | null;
|
27346
27712
|
numberValue: number | null;
|
27347
27713
|
dateValue: Date | null;
|
27348
|
-
}[] | undefined;
|
27714
|
+
}[] | null | undefined;
|
27349
27715
|
} | null;
|
27350
27716
|
};
|
27717
|
+
workflowRule: {
|
27718
|
+
type: string;
|
27719
|
+
id: string;
|
27720
|
+
name: string;
|
27721
|
+
createdAt: Date;
|
27722
|
+
updatedAt: Date;
|
27723
|
+
deletedAt: Date | null;
|
27724
|
+
isActive: boolean;
|
27725
|
+
};
|
27726
|
+
};
|
27727
|
+
workflowRule: {
|
27728
|
+
type: string;
|
27729
|
+
id: string;
|
27730
|
+
name: string;
|
27731
|
+
createdAt: Date;
|
27732
|
+
updatedAt: Date;
|
27733
|
+
deletedAt: Date | null;
|
27734
|
+
isActive: boolean;
|
27351
27735
|
};
|
27352
27736
|
readAt: Date;
|
27353
27737
|
platformMessageId: string;
|
@@ -28026,9 +28410,27 @@ export declare const mainChatContract: {
|
|
28026
28410
|
booleanValue: boolean | null;
|
28027
28411
|
numberValue: number | null;
|
28028
28412
|
dateValue: Date | null;
|
28029
|
-
}[] | undefined;
|
28413
|
+
}[] | null | undefined;
|
28030
28414
|
} | null;
|
28031
28415
|
};
|
28416
|
+
workflowRule: {
|
28417
|
+
type: string;
|
28418
|
+
id: string;
|
28419
|
+
name: string;
|
28420
|
+
createdAt: Date;
|
28421
|
+
updatedAt: Date;
|
28422
|
+
deletedAt: Date | null;
|
28423
|
+
isActive: boolean;
|
28424
|
+
};
|
28425
|
+
};
|
28426
|
+
workflowRule: {
|
28427
|
+
type: string;
|
28428
|
+
id: string;
|
28429
|
+
name: string;
|
28430
|
+
createdAt: Date;
|
28431
|
+
updatedAt: Date;
|
28432
|
+
deletedAt: Date | null;
|
28433
|
+
isActive: boolean;
|
28032
28434
|
};
|
28033
28435
|
readAt: Date;
|
28034
28436
|
platformMessageId: string;
|
@@ -30153,7 +30555,7 @@ export declare const mainChatContract: {
|
|
30153
30555
|
}>, "many">;
|
30154
30556
|
callFrom: z.ZodNullable<z.ZodString>;
|
30155
30557
|
callTo: z.ZodNullable<z.ZodString>;
|
30156
|
-
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
30558
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
30157
30559
|
id: z.ZodString;
|
30158
30560
|
createdAt: z.ZodDate;
|
30159
30561
|
updatedAt: z.ZodDate;
|
@@ -30186,7 +30588,7 @@ export declare const mainChatContract: {
|
|
30186
30588
|
booleanValue: boolean | null;
|
30187
30589
|
numberValue: number | null;
|
30188
30590
|
dateValue: Date | null;
|
30189
|
-
}>, "many"
|
30591
|
+
}>, "many">>>;
|
30190
30592
|
}, "strip", z.ZodTypeAny, {
|
30191
30593
|
type: string;
|
30192
30594
|
id: string;
|
@@ -30237,7 +30639,7 @@ export declare const mainChatContract: {
|
|
30237
30639
|
booleanValue: boolean | null;
|
30238
30640
|
numberValue: number | null;
|
30239
30641
|
dateValue: Date | null;
|
30240
|
-
}[] | undefined;
|
30642
|
+
}[] | null | undefined;
|
30241
30643
|
}, {
|
30242
30644
|
type: string;
|
30243
30645
|
id: string;
|
@@ -30288,7 +30690,7 @@ export declare const mainChatContract: {
|
|
30288
30690
|
booleanValue: boolean | null;
|
30289
30691
|
numberValue: number | null;
|
30290
30692
|
dateValue: Date | null;
|
30291
|
-
}[] | undefined;
|
30693
|
+
}[] | null | undefined;
|
30292
30694
|
}>>;
|
30293
30695
|
}, "strip", z.ZodTypeAny, {
|
30294
30696
|
id: string;
|
@@ -30356,7 +30758,7 @@ export declare const mainChatContract: {
|
|
30356
30758
|
booleanValue: boolean | null;
|
30357
30759
|
numberValue: number | null;
|
30358
30760
|
dateValue: Date | null;
|
30359
|
-
}[] | undefined;
|
30761
|
+
}[] | null | undefined;
|
30360
30762
|
} | null;
|
30361
30763
|
}, {
|
30362
30764
|
id: string;
|
@@ -30424,9 +30826,34 @@ export declare const mainChatContract: {
|
|
30424
30826
|
booleanValue: boolean | null;
|
30425
30827
|
numberValue: number | null;
|
30426
30828
|
dateValue: Date | null;
|
30427
|
-
}[] | undefined;
|
30829
|
+
}[] | null | undefined;
|
30428
30830
|
} | null;
|
30429
30831
|
}>;
|
30832
|
+
workflowRule: z.ZodObject<{
|
30833
|
+
id: z.ZodString;
|
30834
|
+
createdAt: z.ZodDate;
|
30835
|
+
updatedAt: z.ZodDate;
|
30836
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
30837
|
+
name: z.ZodString;
|
30838
|
+
isActive: z.ZodBoolean;
|
30839
|
+
type: z.ZodString;
|
30840
|
+
}, "strip", z.ZodTypeAny, {
|
30841
|
+
type: string;
|
30842
|
+
id: string;
|
30843
|
+
name: string;
|
30844
|
+
createdAt: Date;
|
30845
|
+
updatedAt: Date;
|
30846
|
+
deletedAt: Date | null;
|
30847
|
+
isActive: boolean;
|
30848
|
+
}, {
|
30849
|
+
type: string;
|
30850
|
+
id: string;
|
30851
|
+
name: string;
|
30852
|
+
createdAt: Date;
|
30853
|
+
updatedAt: Date;
|
30854
|
+
deletedAt: Date | null;
|
30855
|
+
isActive: boolean;
|
30856
|
+
}>;
|
30430
30857
|
solveMessage: z.ZodString;
|
30431
30858
|
}, "strip", z.ZodTypeAny, {
|
30432
30859
|
id: string;
|
@@ -30774,9 +31201,18 @@ export declare const mainChatContract: {
|
|
30774
31201
|
booleanValue: boolean | null;
|
30775
31202
|
numberValue: number | null;
|
30776
31203
|
dateValue: Date | null;
|
30777
|
-
}[] | undefined;
|
31204
|
+
}[] | null | undefined;
|
30778
31205
|
} | null;
|
30779
31206
|
};
|
31207
|
+
workflowRule: {
|
31208
|
+
type: string;
|
31209
|
+
id: string;
|
31210
|
+
name: string;
|
31211
|
+
createdAt: Date;
|
31212
|
+
updatedAt: Date;
|
31213
|
+
deletedAt: Date | null;
|
31214
|
+
isActive: boolean;
|
31215
|
+
};
|
30780
31216
|
solveMessage: string;
|
30781
31217
|
}, {
|
30782
31218
|
id: string;
|
@@ -31124,9 +31560,18 @@ export declare const mainChatContract: {
|
|
31124
31560
|
booleanValue: boolean | null;
|
31125
31561
|
numberValue: number | null;
|
31126
31562
|
dateValue: Date | null;
|
31127
|
-
}[] | undefined;
|
31563
|
+
}[] | null | undefined;
|
31128
31564
|
} | null;
|
31129
31565
|
};
|
31566
|
+
workflowRule: {
|
31567
|
+
type: string;
|
31568
|
+
id: string;
|
31569
|
+
name: string;
|
31570
|
+
createdAt: Date;
|
31571
|
+
updatedAt: Date;
|
31572
|
+
deletedAt: Date | null;
|
31573
|
+
isActive: boolean;
|
31574
|
+
};
|
31130
31575
|
solveMessage: string;
|
31131
31576
|
}>;
|
31132
31577
|
}, "strip", z.ZodTypeAny, {
|
@@ -31476,9 +31921,18 @@ export declare const mainChatContract: {
|
|
31476
31921
|
booleanValue: boolean | null;
|
31477
31922
|
numberValue: number | null;
|
31478
31923
|
dateValue: Date | null;
|
31479
|
-
}[] | undefined;
|
31924
|
+
}[] | null | undefined;
|
31480
31925
|
} | null;
|
31481
31926
|
};
|
31927
|
+
workflowRule: {
|
31928
|
+
type: string;
|
31929
|
+
id: string;
|
31930
|
+
name: string;
|
31931
|
+
createdAt: Date;
|
31932
|
+
updatedAt: Date;
|
31933
|
+
deletedAt: Date | null;
|
31934
|
+
isActive: boolean;
|
31935
|
+
};
|
31482
31936
|
solveMessage: string;
|
31483
31937
|
};
|
31484
31938
|
requestId: string;
|
@@ -31829,9 +32283,18 @@ export declare const mainChatContract: {
|
|
31829
32283
|
booleanValue: boolean | null;
|
31830
32284
|
numberValue: number | null;
|
31831
32285
|
dateValue: Date | null;
|
31832
|
-
}[] | undefined;
|
32286
|
+
}[] | null | undefined;
|
31833
32287
|
} | null;
|
31834
32288
|
};
|
32289
|
+
workflowRule: {
|
32290
|
+
type: string;
|
32291
|
+
id: string;
|
32292
|
+
name: string;
|
32293
|
+
createdAt: Date;
|
32294
|
+
updatedAt: Date;
|
32295
|
+
deletedAt: Date | null;
|
32296
|
+
isActive: boolean;
|
32297
|
+
};
|
31835
32298
|
solveMessage: string;
|
31836
32299
|
};
|
31837
32300
|
requestId: string;
|
@@ -33748,7 +34211,7 @@ export declare const mainChatContract: {
|
|
33748
34211
|
}>, "many">;
|
33749
34212
|
callFrom: z.ZodNullable<z.ZodString>;
|
33750
34213
|
callTo: z.ZodNullable<z.ZodString>;
|
33751
|
-
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
34214
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
33752
34215
|
id: z.ZodString;
|
33753
34216
|
createdAt: z.ZodDate;
|
33754
34217
|
updatedAt: z.ZodDate;
|
@@ -33781,7 +34244,7 @@ export declare const mainChatContract: {
|
|
33781
34244
|
booleanValue: boolean | null;
|
33782
34245
|
numberValue: number | null;
|
33783
34246
|
dateValue: Date | null;
|
33784
|
-
}>, "many"
|
34247
|
+
}>, "many">>>;
|
33785
34248
|
}, "strip", z.ZodTypeAny, {
|
33786
34249
|
type: string;
|
33787
34250
|
id: string;
|
@@ -33832,7 +34295,7 @@ export declare const mainChatContract: {
|
|
33832
34295
|
booleanValue: boolean | null;
|
33833
34296
|
numberValue: number | null;
|
33834
34297
|
dateValue: Date | null;
|
33835
|
-
}[] | undefined;
|
34298
|
+
}[] | null | undefined;
|
33836
34299
|
}, {
|
33837
34300
|
type: string;
|
33838
34301
|
id: string;
|
@@ -33883,7 +34346,7 @@ export declare const mainChatContract: {
|
|
33883
34346
|
booleanValue: boolean | null;
|
33884
34347
|
numberValue: number | null;
|
33885
34348
|
dateValue: Date | null;
|
33886
|
-
}[] | undefined;
|
34349
|
+
}[] | null | undefined;
|
33887
34350
|
}>>;
|
33888
34351
|
}, "strip", z.ZodTypeAny, {
|
33889
34352
|
id: string;
|
@@ -33951,7 +34414,7 @@ export declare const mainChatContract: {
|
|
33951
34414
|
booleanValue: boolean | null;
|
33952
34415
|
numberValue: number | null;
|
33953
34416
|
dateValue: Date | null;
|
33954
|
-
}[] | undefined;
|
34417
|
+
}[] | null | undefined;
|
33955
34418
|
} | null;
|
33956
34419
|
}, {
|
33957
34420
|
id: string;
|
@@ -34019,9 +34482,34 @@ export declare const mainChatContract: {
|
|
34019
34482
|
booleanValue: boolean | null;
|
34020
34483
|
numberValue: number | null;
|
34021
34484
|
dateValue: Date | null;
|
34022
|
-
}[] | undefined;
|
34485
|
+
}[] | null | undefined;
|
34023
34486
|
} | null;
|
34024
34487
|
}>;
|
34488
|
+
workflowRule: z.ZodObject<{
|
34489
|
+
id: z.ZodString;
|
34490
|
+
createdAt: z.ZodDate;
|
34491
|
+
updatedAt: z.ZodDate;
|
34492
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
34493
|
+
name: z.ZodString;
|
34494
|
+
isActive: z.ZodBoolean;
|
34495
|
+
type: z.ZodString;
|
34496
|
+
}, "strip", z.ZodTypeAny, {
|
34497
|
+
type: string;
|
34498
|
+
id: string;
|
34499
|
+
name: string;
|
34500
|
+
createdAt: Date;
|
34501
|
+
updatedAt: Date;
|
34502
|
+
deletedAt: Date | null;
|
34503
|
+
isActive: boolean;
|
34504
|
+
}, {
|
34505
|
+
type: string;
|
34506
|
+
id: string;
|
34507
|
+
name: string;
|
34508
|
+
createdAt: Date;
|
34509
|
+
updatedAt: Date;
|
34510
|
+
deletedAt: Date | null;
|
34511
|
+
isActive: boolean;
|
34512
|
+
}>;
|
34025
34513
|
}, "strip", z.ZodTypeAny, {
|
34026
34514
|
id: string;
|
34027
34515
|
channel: {
|
@@ -34368,9 +34856,18 @@ export declare const mainChatContract: {
|
|
34368
34856
|
booleanValue: boolean | null;
|
34369
34857
|
numberValue: number | null;
|
34370
34858
|
dateValue: Date | null;
|
34371
|
-
}[] | undefined;
|
34859
|
+
}[] | null | undefined;
|
34372
34860
|
} | null;
|
34373
34861
|
};
|
34862
|
+
workflowRule: {
|
34863
|
+
type: string;
|
34864
|
+
id: string;
|
34865
|
+
name: string;
|
34866
|
+
createdAt: Date;
|
34867
|
+
updatedAt: Date;
|
34868
|
+
deletedAt: Date | null;
|
34869
|
+
isActive: boolean;
|
34870
|
+
};
|
34374
34871
|
}, {
|
34375
34872
|
id: string;
|
34376
34873
|
channel: {
|
@@ -34717,9 +35214,18 @@ export declare const mainChatContract: {
|
|
34717
35214
|
booleanValue: boolean | null;
|
34718
35215
|
numberValue: number | null;
|
34719
35216
|
dateValue: Date | null;
|
34720
|
-
}[] | undefined;
|
35217
|
+
}[] | null | undefined;
|
34721
35218
|
} | null;
|
34722
35219
|
};
|
35220
|
+
workflowRule: {
|
35221
|
+
type: string;
|
35222
|
+
id: string;
|
35223
|
+
name: string;
|
35224
|
+
createdAt: Date;
|
35225
|
+
updatedAt: Date;
|
35226
|
+
deletedAt: Date | null;
|
35227
|
+
isActive: boolean;
|
35228
|
+
};
|
34723
35229
|
}>;
|
34724
35230
|
}, "strip", z.ZodTypeAny, {
|
34725
35231
|
data: {
|
@@ -35068,9 +35574,18 @@ export declare const mainChatContract: {
|
|
35068
35574
|
booleanValue: boolean | null;
|
35069
35575
|
numberValue: number | null;
|
35070
35576
|
dateValue: Date | null;
|
35071
|
-
}[] | undefined;
|
35577
|
+
}[] | null | undefined;
|
35072
35578
|
} | null;
|
35073
35579
|
};
|
35580
|
+
workflowRule: {
|
35581
|
+
type: string;
|
35582
|
+
id: string;
|
35583
|
+
name: string;
|
35584
|
+
createdAt: Date;
|
35585
|
+
updatedAt: Date;
|
35586
|
+
deletedAt: Date | null;
|
35587
|
+
isActive: boolean;
|
35588
|
+
};
|
35074
35589
|
};
|
35075
35590
|
requestId: string;
|
35076
35591
|
}, {
|
@@ -35420,12 +35935,31 @@ export declare const mainChatContract: {
|
|
35420
35935
|
booleanValue: boolean | null;
|
35421
35936
|
numberValue: number | null;
|
35422
35937
|
dateValue: Date | null;
|
35423
|
-
}[] | undefined;
|
35938
|
+
}[] | null | undefined;
|
35424
35939
|
} | null;
|
35425
35940
|
};
|
35941
|
+
workflowRule: {
|
35942
|
+
type: string;
|
35943
|
+
id: string;
|
35944
|
+
name: string;
|
35945
|
+
createdAt: Date;
|
35946
|
+
updatedAt: Date;
|
35947
|
+
deletedAt: Date | null;
|
35948
|
+
isActive: boolean;
|
35949
|
+
};
|
35426
35950
|
};
|
35427
35951
|
requestId: string;
|
35428
35952
|
}>;
|
35953
|
+
409: z.ZodObject<{
|
35954
|
+
message: z.ZodString;
|
35955
|
+
error: z.ZodAny;
|
35956
|
+
}, "strip", z.ZodTypeAny, {
|
35957
|
+
message: string;
|
35958
|
+
error?: any;
|
35959
|
+
}, {
|
35960
|
+
message: string;
|
35961
|
+
error?: any;
|
35962
|
+
}>;
|
35429
35963
|
};
|
35430
35964
|
path: "chat/room/assignee/update";
|
35431
35965
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
@@ -37326,7 +37860,7 @@ export declare const mainChatContract: {
|
|
37326
37860
|
}>, "many">;
|
37327
37861
|
callFrom: z.ZodNullable<z.ZodString>;
|
37328
37862
|
callTo: z.ZodNullable<z.ZodString>;
|
37329
|
-
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
37863
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
37330
37864
|
id: z.ZodString;
|
37331
37865
|
createdAt: z.ZodDate;
|
37332
37866
|
updatedAt: z.ZodDate;
|
@@ -37359,7 +37893,7 @@ export declare const mainChatContract: {
|
|
37359
37893
|
booleanValue: boolean | null;
|
37360
37894
|
numberValue: number | null;
|
37361
37895
|
dateValue: Date | null;
|
37362
|
-
}>, "many"
|
37896
|
+
}>, "many">>>;
|
37363
37897
|
}, "strip", z.ZodTypeAny, {
|
37364
37898
|
type: string;
|
37365
37899
|
id: string;
|
@@ -37410,7 +37944,7 @@ export declare const mainChatContract: {
|
|
37410
37944
|
booleanValue: boolean | null;
|
37411
37945
|
numberValue: number | null;
|
37412
37946
|
dateValue: Date | null;
|
37413
|
-
}[] | undefined;
|
37947
|
+
}[] | null | undefined;
|
37414
37948
|
}, {
|
37415
37949
|
type: string;
|
37416
37950
|
id: string;
|
@@ -37461,7 +37995,7 @@ export declare const mainChatContract: {
|
|
37461
37995
|
booleanValue: boolean | null;
|
37462
37996
|
numberValue: number | null;
|
37463
37997
|
dateValue: Date | null;
|
37464
|
-
}[] | undefined;
|
37998
|
+
}[] | null | undefined;
|
37465
37999
|
}>>;
|
37466
38000
|
}, "strip", z.ZodTypeAny, {
|
37467
38001
|
id: string;
|
@@ -37529,7 +38063,7 @@ export declare const mainChatContract: {
|
|
37529
38063
|
booleanValue: boolean | null;
|
37530
38064
|
numberValue: number | null;
|
37531
38065
|
dateValue: Date | null;
|
37532
|
-
}[] | undefined;
|
38066
|
+
}[] | null | undefined;
|
37533
38067
|
} | null;
|
37534
38068
|
}, {
|
37535
38069
|
id: string;
|
@@ -37597,9 +38131,34 @@ export declare const mainChatContract: {
|
|
37597
38131
|
booleanValue: boolean | null;
|
37598
38132
|
numberValue: number | null;
|
37599
38133
|
dateValue: Date | null;
|
37600
|
-
}[] | undefined;
|
38134
|
+
}[] | null | undefined;
|
37601
38135
|
} | null;
|
37602
38136
|
}>;
|
38137
|
+
workflowRule: z.ZodObject<{
|
38138
|
+
id: z.ZodString;
|
38139
|
+
createdAt: z.ZodDate;
|
38140
|
+
updatedAt: z.ZodDate;
|
38141
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
38142
|
+
name: z.ZodString;
|
38143
|
+
isActive: z.ZodBoolean;
|
38144
|
+
type: z.ZodString;
|
38145
|
+
}, "strip", z.ZodTypeAny, {
|
38146
|
+
type: string;
|
38147
|
+
id: string;
|
38148
|
+
name: string;
|
38149
|
+
createdAt: Date;
|
38150
|
+
updatedAt: Date;
|
38151
|
+
deletedAt: Date | null;
|
38152
|
+
isActive: boolean;
|
38153
|
+
}, {
|
38154
|
+
type: string;
|
38155
|
+
id: string;
|
38156
|
+
name: string;
|
38157
|
+
createdAt: Date;
|
38158
|
+
updatedAt: Date;
|
38159
|
+
deletedAt: Date | null;
|
38160
|
+
isActive: boolean;
|
38161
|
+
}>;
|
37603
38162
|
}, "strip", z.ZodTypeAny, {
|
37604
38163
|
id: string;
|
37605
38164
|
channel: {
|
@@ -37946,9 +38505,18 @@ export declare const mainChatContract: {
|
|
37946
38505
|
booleanValue: boolean | null;
|
37947
38506
|
numberValue: number | null;
|
37948
38507
|
dateValue: Date | null;
|
37949
|
-
}[] | undefined;
|
38508
|
+
}[] | null | undefined;
|
37950
38509
|
} | null;
|
37951
38510
|
};
|
38511
|
+
workflowRule: {
|
38512
|
+
type: string;
|
38513
|
+
id: string;
|
38514
|
+
name: string;
|
38515
|
+
createdAt: Date;
|
38516
|
+
updatedAt: Date;
|
38517
|
+
deletedAt: Date | null;
|
38518
|
+
isActive: boolean;
|
38519
|
+
};
|
37952
38520
|
}, {
|
37953
38521
|
id: string;
|
37954
38522
|
channel: {
|
@@ -38295,9 +38863,18 @@ export declare const mainChatContract: {
|
|
38295
38863
|
booleanValue: boolean | null;
|
38296
38864
|
numberValue: number | null;
|
38297
38865
|
dateValue: Date | null;
|
38298
|
-
}[] | undefined;
|
38866
|
+
}[] | null | undefined;
|
38299
38867
|
} | null;
|
38300
38868
|
};
|
38869
|
+
workflowRule: {
|
38870
|
+
type: string;
|
38871
|
+
id: string;
|
38872
|
+
name: string;
|
38873
|
+
createdAt: Date;
|
38874
|
+
updatedAt: Date;
|
38875
|
+
deletedAt: Date | null;
|
38876
|
+
isActive: boolean;
|
38877
|
+
};
|
38301
38878
|
}>;
|
38302
38879
|
latestIncomingMessage: z.ZodObject<{
|
38303
38880
|
message: z.ZodString;
|
@@ -38689,9 +39266,18 @@ export declare const mainChatContract: {
|
|
38689
39266
|
booleanValue: boolean | null;
|
38690
39267
|
numberValue: number | null;
|
38691
39268
|
dateValue: Date | null;
|
38692
|
-
}[] | undefined;
|
39269
|
+
}[] | null | undefined;
|
38693
39270
|
} | null;
|
38694
39271
|
};
|
39272
|
+
workflowRule: {
|
39273
|
+
type: string;
|
39274
|
+
id: string;
|
39275
|
+
name: string;
|
39276
|
+
createdAt: Date;
|
39277
|
+
updatedAt: Date;
|
39278
|
+
deletedAt: Date | null;
|
39279
|
+
isActive: boolean;
|
39280
|
+
};
|
38695
39281
|
};
|
38696
39282
|
latestIncomingMessage: {
|
38697
39283
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
@@ -39055,9 +39641,18 @@ export declare const mainChatContract: {
|
|
39055
39641
|
booleanValue: boolean | null;
|
39056
39642
|
numberValue: number | null;
|
39057
39643
|
dateValue: Date | null;
|
39058
|
-
}[] | undefined;
|
39644
|
+
}[] | null | undefined;
|
39059
39645
|
} | null;
|
39060
39646
|
};
|
39647
|
+
workflowRule: {
|
39648
|
+
type: string;
|
39649
|
+
id: string;
|
39650
|
+
name: string;
|
39651
|
+
createdAt: Date;
|
39652
|
+
updatedAt: Date;
|
39653
|
+
deletedAt: Date | null;
|
39654
|
+
isActive: boolean;
|
39655
|
+
};
|
39061
39656
|
};
|
39062
39657
|
latestIncomingMessage: {
|
39063
39658
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
@@ -39423,9 +40018,18 @@ export declare const mainChatContract: {
|
|
39423
40018
|
booleanValue: boolean | null;
|
39424
40019
|
numberValue: number | null;
|
39425
40020
|
dateValue: Date | null;
|
39426
|
-
}[] | undefined;
|
40021
|
+
}[] | null | undefined;
|
39427
40022
|
} | null;
|
39428
40023
|
};
|
40024
|
+
workflowRule: {
|
40025
|
+
type: string;
|
40026
|
+
id: string;
|
40027
|
+
name: string;
|
40028
|
+
createdAt: Date;
|
40029
|
+
updatedAt: Date;
|
40030
|
+
deletedAt: Date | null;
|
40031
|
+
isActive: boolean;
|
40032
|
+
};
|
39429
40033
|
};
|
39430
40034
|
latestIncomingMessage: {
|
39431
40035
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
@@ -39792,9 +40396,18 @@ export declare const mainChatContract: {
|
|
39792
40396
|
booleanValue: boolean | null;
|
39793
40397
|
numberValue: number | null;
|
39794
40398
|
dateValue: Date | null;
|
39795
|
-
}[] | undefined;
|
40399
|
+
}[] | null | undefined;
|
39796
40400
|
} | null;
|
39797
40401
|
};
|
40402
|
+
workflowRule: {
|
40403
|
+
type: string;
|
40404
|
+
id: string;
|
40405
|
+
name: string;
|
40406
|
+
createdAt: Date;
|
40407
|
+
updatedAt: Date;
|
40408
|
+
deletedAt: Date | null;
|
40409
|
+
isActive: boolean;
|
40410
|
+
};
|
39798
40411
|
};
|
39799
40412
|
latestIncomingMessage: {
|
39800
40413
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
@@ -41724,7 +42337,7 @@ export declare const mainChatContract: {
|
|
41724
42337
|
}>, "many">;
|
41725
42338
|
callFrom: z.ZodNullable<z.ZodString>;
|
41726
42339
|
callTo: z.ZodNullable<z.ZodString>;
|
41727
|
-
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
42340
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
41728
42341
|
id: z.ZodString;
|
41729
42342
|
createdAt: z.ZodDate;
|
41730
42343
|
updatedAt: z.ZodDate;
|
@@ -41757,7 +42370,7 @@ export declare const mainChatContract: {
|
|
41757
42370
|
booleanValue: boolean | null;
|
41758
42371
|
numberValue: number | null;
|
41759
42372
|
dateValue: Date | null;
|
41760
|
-
}>, "many"
|
42373
|
+
}>, "many">>>;
|
41761
42374
|
}, "strip", z.ZodTypeAny, {
|
41762
42375
|
type: string;
|
41763
42376
|
id: string;
|
@@ -41808,7 +42421,7 @@ export declare const mainChatContract: {
|
|
41808
42421
|
booleanValue: boolean | null;
|
41809
42422
|
numberValue: number | null;
|
41810
42423
|
dateValue: Date | null;
|
41811
|
-
}[] | undefined;
|
42424
|
+
}[] | null | undefined;
|
41812
42425
|
}, {
|
41813
42426
|
type: string;
|
41814
42427
|
id: string;
|
@@ -41859,7 +42472,7 @@ export declare const mainChatContract: {
|
|
41859
42472
|
booleanValue: boolean | null;
|
41860
42473
|
numberValue: number | null;
|
41861
42474
|
dateValue: Date | null;
|
41862
|
-
}[] | undefined;
|
42475
|
+
}[] | null | undefined;
|
41863
42476
|
}>>;
|
41864
42477
|
}, "strip", z.ZodTypeAny, {
|
41865
42478
|
id: string;
|
@@ -41927,7 +42540,7 @@ export declare const mainChatContract: {
|
|
41927
42540
|
booleanValue: boolean | null;
|
41928
42541
|
numberValue: number | null;
|
41929
42542
|
dateValue: Date | null;
|
41930
|
-
}[] | undefined;
|
42543
|
+
}[] | null | undefined;
|
41931
42544
|
} | null;
|
41932
42545
|
}, {
|
41933
42546
|
id: string;
|
@@ -41995,9 +42608,34 @@ export declare const mainChatContract: {
|
|
41995
42608
|
booleanValue: boolean | null;
|
41996
42609
|
numberValue: number | null;
|
41997
42610
|
dateValue: Date | null;
|
41998
|
-
}[] | undefined;
|
42611
|
+
}[] | null | undefined;
|
41999
42612
|
} | null;
|
42000
42613
|
}>;
|
42614
|
+
workflowRule: z.ZodObject<{
|
42615
|
+
id: z.ZodString;
|
42616
|
+
createdAt: z.ZodDate;
|
42617
|
+
updatedAt: z.ZodDate;
|
42618
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
42619
|
+
name: z.ZodString;
|
42620
|
+
isActive: z.ZodBoolean;
|
42621
|
+
type: z.ZodString;
|
42622
|
+
}, "strip", z.ZodTypeAny, {
|
42623
|
+
type: string;
|
42624
|
+
id: string;
|
42625
|
+
name: string;
|
42626
|
+
createdAt: Date;
|
42627
|
+
updatedAt: Date;
|
42628
|
+
deletedAt: Date | null;
|
42629
|
+
isActive: boolean;
|
42630
|
+
}, {
|
42631
|
+
type: string;
|
42632
|
+
id: string;
|
42633
|
+
name: string;
|
42634
|
+
createdAt: Date;
|
42635
|
+
updatedAt: Date;
|
42636
|
+
deletedAt: Date | null;
|
42637
|
+
isActive: boolean;
|
42638
|
+
}>;
|
42001
42639
|
contact: z.ZodObject<{
|
42002
42640
|
id: z.ZodString;
|
42003
42641
|
createdAt: z.ZodDate;
|
@@ -43129,9 +43767,18 @@ export declare const mainChatContract: {
|
|
43129
43767
|
booleanValue: boolean | null;
|
43130
43768
|
numberValue: number | null;
|
43131
43769
|
dateValue: Date | null;
|
43132
|
-
}[] | undefined;
|
43770
|
+
}[] | null | undefined;
|
43133
43771
|
} | null;
|
43134
43772
|
};
|
43773
|
+
workflowRule: {
|
43774
|
+
type: string;
|
43775
|
+
id: string;
|
43776
|
+
name: string;
|
43777
|
+
createdAt: Date;
|
43778
|
+
updatedAt: Date;
|
43779
|
+
deletedAt: Date | null;
|
43780
|
+
isActive: boolean;
|
43781
|
+
};
|
43135
43782
|
openMessage: string;
|
43136
43783
|
}, {
|
43137
43784
|
id: string;
|
@@ -43576,9 +44223,18 @@ export declare const mainChatContract: {
|
|
43576
44223
|
booleanValue: boolean | null;
|
43577
44224
|
numberValue: number | null;
|
43578
44225
|
dateValue: Date | null;
|
43579
|
-
}[] | undefined;
|
44226
|
+
}[] | null | undefined;
|
43580
44227
|
} | null;
|
43581
44228
|
};
|
44229
|
+
workflowRule: {
|
44230
|
+
type: string;
|
44231
|
+
id: string;
|
44232
|
+
name: string;
|
44233
|
+
createdAt: Date;
|
44234
|
+
updatedAt: Date;
|
44235
|
+
deletedAt: Date | null;
|
44236
|
+
isActive: boolean;
|
44237
|
+
};
|
43582
44238
|
openMessage: string;
|
43583
44239
|
}>;
|
43584
44240
|
}, "strip", z.ZodTypeAny, {
|
@@ -44025,9 +44681,18 @@ export declare const mainChatContract: {
|
|
44025
44681
|
booleanValue: boolean | null;
|
44026
44682
|
numberValue: number | null;
|
44027
44683
|
dateValue: Date | null;
|
44028
|
-
}[] | undefined;
|
44684
|
+
}[] | null | undefined;
|
44029
44685
|
} | null;
|
44030
44686
|
};
|
44687
|
+
workflowRule: {
|
44688
|
+
type: string;
|
44689
|
+
id: string;
|
44690
|
+
name: string;
|
44691
|
+
createdAt: Date;
|
44692
|
+
updatedAt: Date;
|
44693
|
+
deletedAt: Date | null;
|
44694
|
+
isActive: boolean;
|
44695
|
+
};
|
44031
44696
|
openMessage: string;
|
44032
44697
|
};
|
44033
44698
|
requestId: string;
|
@@ -44475,9 +45140,18 @@ export declare const mainChatContract: {
|
|
44475
45140
|
booleanValue: boolean | null;
|
44476
45141
|
numberValue: number | null;
|
44477
45142
|
dateValue: Date | null;
|
44478
|
-
}[] | undefined;
|
45143
|
+
}[] | null | undefined;
|
44479
45144
|
} | null;
|
44480
45145
|
};
|
45146
|
+
workflowRule: {
|
45147
|
+
type: string;
|
45148
|
+
id: string;
|
45149
|
+
name: string;
|
45150
|
+
createdAt: Date;
|
45151
|
+
updatedAt: Date;
|
45152
|
+
deletedAt: Date | null;
|
45153
|
+
isActive: boolean;
|
45154
|
+
};
|
44481
45155
|
openMessage: string;
|
44482
45156
|
};
|
44483
45157
|
requestId: string;
|
@@ -46382,7 +47056,7 @@ export declare const mainChatContract: {
|
|
46382
47056
|
}>, "many">;
|
46383
47057
|
callFrom: z.ZodNullable<z.ZodString>;
|
46384
47058
|
callTo: z.ZodNullable<z.ZodString>;
|
46385
|
-
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
47059
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
46386
47060
|
id: z.ZodString;
|
46387
47061
|
createdAt: z.ZodDate;
|
46388
47062
|
updatedAt: z.ZodDate;
|
@@ -46415,7 +47089,7 @@ export declare const mainChatContract: {
|
|
46415
47089
|
booleanValue: boolean | null;
|
46416
47090
|
numberValue: number | null;
|
46417
47091
|
dateValue: Date | null;
|
46418
|
-
}>, "many"
|
47092
|
+
}>, "many">>>;
|
46419
47093
|
}, "strip", z.ZodTypeAny, {
|
46420
47094
|
type: string;
|
46421
47095
|
id: string;
|
@@ -46466,7 +47140,7 @@ export declare const mainChatContract: {
|
|
46466
47140
|
booleanValue: boolean | null;
|
46467
47141
|
numberValue: number | null;
|
46468
47142
|
dateValue: Date | null;
|
46469
|
-
}[] | undefined;
|
47143
|
+
}[] | null | undefined;
|
46470
47144
|
}, {
|
46471
47145
|
type: string;
|
46472
47146
|
id: string;
|
@@ -46517,7 +47191,7 @@ export declare const mainChatContract: {
|
|
46517
47191
|
booleanValue: boolean | null;
|
46518
47192
|
numberValue: number | null;
|
46519
47193
|
dateValue: Date | null;
|
46520
|
-
}[] | undefined;
|
47194
|
+
}[] | null | undefined;
|
46521
47195
|
}>>;
|
46522
47196
|
}, "strip", z.ZodTypeAny, {
|
46523
47197
|
id: string;
|
@@ -46585,7 +47259,7 @@ export declare const mainChatContract: {
|
|
46585
47259
|
booleanValue: boolean | null;
|
46586
47260
|
numberValue: number | null;
|
46587
47261
|
dateValue: Date | null;
|
46588
|
-
}[] | undefined;
|
47262
|
+
}[] | null | undefined;
|
46589
47263
|
} | null;
|
46590
47264
|
}, {
|
46591
47265
|
id: string;
|
@@ -46653,9 +47327,34 @@ export declare const mainChatContract: {
|
|
46653
47327
|
booleanValue: boolean | null;
|
46654
47328
|
numberValue: number | null;
|
46655
47329
|
dateValue: Date | null;
|
46656
|
-
}[] | undefined;
|
47330
|
+
}[] | null | undefined;
|
46657
47331
|
} | null;
|
46658
47332
|
}>;
|
47333
|
+
workflowRule: z.ZodObject<{
|
47334
|
+
id: z.ZodString;
|
47335
|
+
createdAt: z.ZodDate;
|
47336
|
+
updatedAt: z.ZodDate;
|
47337
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
47338
|
+
name: z.ZodString;
|
47339
|
+
isActive: z.ZodBoolean;
|
47340
|
+
type: z.ZodString;
|
47341
|
+
}, "strip", z.ZodTypeAny, {
|
47342
|
+
type: string;
|
47343
|
+
id: string;
|
47344
|
+
name: string;
|
47345
|
+
createdAt: Date;
|
47346
|
+
updatedAt: Date;
|
47347
|
+
deletedAt: Date | null;
|
47348
|
+
isActive: boolean;
|
47349
|
+
}, {
|
47350
|
+
type: string;
|
47351
|
+
id: string;
|
47352
|
+
name: string;
|
47353
|
+
createdAt: Date;
|
47354
|
+
updatedAt: Date;
|
47355
|
+
deletedAt: Date | null;
|
47356
|
+
isActive: boolean;
|
47357
|
+
}>;
|
46659
47358
|
description: z.ZodNullable<z.ZodString>;
|
46660
47359
|
}, "strip", z.ZodTypeAny, {
|
46661
47360
|
id: string;
|
@@ -47004,9 +47703,18 @@ export declare const mainChatContract: {
|
|
47004
47703
|
booleanValue: boolean | null;
|
47005
47704
|
numberValue: number | null;
|
47006
47705
|
dateValue: Date | null;
|
47007
|
-
}[] | undefined;
|
47706
|
+
}[] | null | undefined;
|
47008
47707
|
} | null;
|
47009
47708
|
};
|
47709
|
+
workflowRule: {
|
47710
|
+
type: string;
|
47711
|
+
id: string;
|
47712
|
+
name: string;
|
47713
|
+
createdAt: Date;
|
47714
|
+
updatedAt: Date;
|
47715
|
+
deletedAt: Date | null;
|
47716
|
+
isActive: boolean;
|
47717
|
+
};
|
47010
47718
|
}, {
|
47011
47719
|
id: string;
|
47012
47720
|
channel: {
|
@@ -47354,9 +48062,18 @@ export declare const mainChatContract: {
|
|
47354
48062
|
booleanValue: boolean | null;
|
47355
48063
|
numberValue: number | null;
|
47356
48064
|
dateValue: Date | null;
|
47357
|
-
}[] | undefined;
|
48065
|
+
}[] | null | undefined;
|
47358
48066
|
} | null;
|
47359
48067
|
};
|
48068
|
+
workflowRule: {
|
48069
|
+
type: string;
|
48070
|
+
id: string;
|
48071
|
+
name: string;
|
48072
|
+
createdAt: Date;
|
48073
|
+
updatedAt: Date;
|
48074
|
+
deletedAt: Date | null;
|
48075
|
+
isActive: boolean;
|
48076
|
+
};
|
47360
48077
|
}>;
|
47361
48078
|
}, "strip", z.ZodTypeAny, {
|
47362
48079
|
data: {
|
@@ -47706,9 +48423,18 @@ export declare const mainChatContract: {
|
|
47706
48423
|
booleanValue: boolean | null;
|
47707
48424
|
numberValue: number | null;
|
47708
48425
|
dateValue: Date | null;
|
47709
|
-
}[] | undefined;
|
48426
|
+
}[] | null | undefined;
|
47710
48427
|
} | null;
|
47711
48428
|
};
|
48429
|
+
workflowRule: {
|
48430
|
+
type: string;
|
48431
|
+
id: string;
|
48432
|
+
name: string;
|
48433
|
+
createdAt: Date;
|
48434
|
+
updatedAt: Date;
|
48435
|
+
deletedAt: Date | null;
|
48436
|
+
isActive: boolean;
|
48437
|
+
};
|
47712
48438
|
};
|
47713
48439
|
requestId: string;
|
47714
48440
|
}, {
|
@@ -48059,9 +48785,18 @@ export declare const mainChatContract: {
|
|
48059
48785
|
booleanValue: boolean | null;
|
48060
48786
|
numberValue: number | null;
|
48061
48787
|
dateValue: Date | null;
|
48062
|
-
}[] | undefined;
|
48788
|
+
}[] | null | undefined;
|
48063
48789
|
} | null;
|
48064
48790
|
};
|
48791
|
+
workflowRule: {
|
48792
|
+
type: string;
|
48793
|
+
id: string;
|
48794
|
+
name: string;
|
48795
|
+
createdAt: Date;
|
48796
|
+
updatedAt: Date;
|
48797
|
+
deletedAt: Date | null;
|
48798
|
+
isActive: boolean;
|
48799
|
+
};
|
48065
48800
|
};
|
48066
48801
|
requestId: string;
|
48067
48802
|
}>;
|
@@ -49976,7 +50711,7 @@ export declare const mainChatContract: {
|
|
49976
50711
|
}>, "many">;
|
49977
50712
|
callFrom: z.ZodNullable<z.ZodString>;
|
49978
50713
|
callTo: z.ZodNullable<z.ZodString>;
|
49979
|
-
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
50714
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
49980
50715
|
id: z.ZodString;
|
49981
50716
|
createdAt: z.ZodDate;
|
49982
50717
|
updatedAt: z.ZodDate;
|
@@ -50009,7 +50744,7 @@ export declare const mainChatContract: {
|
|
50009
50744
|
booleanValue: boolean | null;
|
50010
50745
|
numberValue: number | null;
|
50011
50746
|
dateValue: Date | null;
|
50012
|
-
}>, "many"
|
50747
|
+
}>, "many">>>;
|
50013
50748
|
}, "strip", z.ZodTypeAny, {
|
50014
50749
|
type: string;
|
50015
50750
|
id: string;
|
@@ -50060,7 +50795,7 @@ export declare const mainChatContract: {
|
|
50060
50795
|
booleanValue: boolean | null;
|
50061
50796
|
numberValue: number | null;
|
50062
50797
|
dateValue: Date | null;
|
50063
|
-
}[] | undefined;
|
50798
|
+
}[] | null | undefined;
|
50064
50799
|
}, {
|
50065
50800
|
type: string;
|
50066
50801
|
id: string;
|
@@ -50111,7 +50846,7 @@ export declare const mainChatContract: {
|
|
50111
50846
|
booleanValue: boolean | null;
|
50112
50847
|
numberValue: number | null;
|
50113
50848
|
dateValue: Date | null;
|
50114
|
-
}[] | undefined;
|
50849
|
+
}[] | null | undefined;
|
50115
50850
|
}>>;
|
50116
50851
|
}, "strip", z.ZodTypeAny, {
|
50117
50852
|
id: string;
|
@@ -50179,7 +50914,7 @@ export declare const mainChatContract: {
|
|
50179
50914
|
booleanValue: boolean | null;
|
50180
50915
|
numberValue: number | null;
|
50181
50916
|
dateValue: Date | null;
|
50182
|
-
}[] | undefined;
|
50917
|
+
}[] | null | undefined;
|
50183
50918
|
} | null;
|
50184
50919
|
}, {
|
50185
50920
|
id: string;
|
@@ -50247,9 +50982,34 @@ export declare const mainChatContract: {
|
|
50247
50982
|
booleanValue: boolean | null;
|
50248
50983
|
numberValue: number | null;
|
50249
50984
|
dateValue: Date | null;
|
50250
|
-
}[] | undefined;
|
50985
|
+
}[] | null | undefined;
|
50251
50986
|
} | null;
|
50252
50987
|
}>;
|
50988
|
+
workflowRule: z.ZodObject<{
|
50989
|
+
id: z.ZodString;
|
50990
|
+
createdAt: z.ZodDate;
|
50991
|
+
updatedAt: z.ZodDate;
|
50992
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
50993
|
+
name: z.ZodString;
|
50994
|
+
isActive: z.ZodBoolean;
|
50995
|
+
type: z.ZodString;
|
50996
|
+
}, "strip", z.ZodTypeAny, {
|
50997
|
+
type: string;
|
50998
|
+
id: string;
|
50999
|
+
name: string;
|
51000
|
+
createdAt: Date;
|
51001
|
+
updatedAt: Date;
|
51002
|
+
deletedAt: Date | null;
|
51003
|
+
isActive: boolean;
|
51004
|
+
}, {
|
51005
|
+
type: string;
|
51006
|
+
id: string;
|
51007
|
+
name: string;
|
51008
|
+
createdAt: Date;
|
51009
|
+
updatedAt: Date;
|
51010
|
+
deletedAt: Date | null;
|
51011
|
+
isActive: boolean;
|
51012
|
+
}>;
|
50253
51013
|
}, "strip", z.ZodTypeAny, {
|
50254
51014
|
id: string;
|
50255
51015
|
channel: {
|
@@ -50596,9 +51356,18 @@ export declare const mainChatContract: {
|
|
50596
51356
|
booleanValue: boolean | null;
|
50597
51357
|
numberValue: number | null;
|
50598
51358
|
dateValue: Date | null;
|
50599
|
-
}[] | undefined;
|
51359
|
+
}[] | null | undefined;
|
50600
51360
|
} | null;
|
50601
51361
|
};
|
51362
|
+
workflowRule: {
|
51363
|
+
type: string;
|
51364
|
+
id: string;
|
51365
|
+
name: string;
|
51366
|
+
createdAt: Date;
|
51367
|
+
updatedAt: Date;
|
51368
|
+
deletedAt: Date | null;
|
51369
|
+
isActive: boolean;
|
51370
|
+
};
|
50602
51371
|
}, {
|
50603
51372
|
id: string;
|
50604
51373
|
channel: {
|
@@ -50945,9 +51714,18 @@ export declare const mainChatContract: {
|
|
50945
51714
|
booleanValue: boolean | null;
|
50946
51715
|
numberValue: number | null;
|
50947
51716
|
dateValue: Date | null;
|
50948
|
-
}[] | undefined;
|
51717
|
+
}[] | null | undefined;
|
50949
51718
|
} | null;
|
50950
51719
|
};
|
51720
|
+
workflowRule: {
|
51721
|
+
type: string;
|
51722
|
+
id: string;
|
51723
|
+
name: string;
|
51724
|
+
createdAt: Date;
|
51725
|
+
updatedAt: Date;
|
51726
|
+
deletedAt: Date | null;
|
51727
|
+
isActive: boolean;
|
51728
|
+
};
|
50951
51729
|
}>, "many">;
|
50952
51730
|
}, "strip", z.ZodTypeAny, {
|
50953
51731
|
data: {
|
@@ -51296,9 +52074,18 @@ export declare const mainChatContract: {
|
|
51296
52074
|
booleanValue: boolean | null;
|
51297
52075
|
numberValue: number | null;
|
51298
52076
|
dateValue: Date | null;
|
51299
|
-
}[] | undefined;
|
52077
|
+
}[] | null | undefined;
|
51300
52078
|
} | null;
|
51301
52079
|
};
|
52080
|
+
workflowRule: {
|
52081
|
+
type: string;
|
52082
|
+
id: string;
|
52083
|
+
name: string;
|
52084
|
+
createdAt: Date;
|
52085
|
+
updatedAt: Date;
|
52086
|
+
deletedAt: Date | null;
|
52087
|
+
isActive: boolean;
|
52088
|
+
};
|
51302
52089
|
}[];
|
51303
52090
|
total: number;
|
51304
52091
|
page: number;
|
@@ -51651,9 +52438,18 @@ export declare const mainChatContract: {
|
|
51651
52438
|
booleanValue: boolean | null;
|
51652
52439
|
numberValue: number | null;
|
51653
52440
|
dateValue: Date | null;
|
51654
|
-
}[] | undefined;
|
52441
|
+
}[] | null | undefined;
|
51655
52442
|
} | null;
|
51656
52443
|
};
|
52444
|
+
workflowRule: {
|
52445
|
+
type: string;
|
52446
|
+
id: string;
|
52447
|
+
name: string;
|
52448
|
+
createdAt: Date;
|
52449
|
+
updatedAt: Date;
|
52450
|
+
deletedAt: Date | null;
|
52451
|
+
isActive: boolean;
|
52452
|
+
};
|
51657
52453
|
}[];
|
51658
52454
|
total: number;
|
51659
52455
|
page: number;
|