@kl1/contracts 1.1.34-uat → 1.1.36-uat
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 +51 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +51 -4
- package/dist/index.mjs.map +1 -1
- package/dist/src/business-calendar/index.d.ts +1 -1
- package/dist/src/chat/index.d.ts +128 -118
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +18 -18
- package/dist/src/chat/validation.d.ts +24 -24
- package/dist/src/contract.d.ts +701 -247
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +8 -8
- package/dist/src/cx-log/schema.d.ts +12 -12
- package/dist/src/instagram/index.d.ts +12 -12
- package/dist/src/line/index.d.ts +12 -12
- package/dist/src/mail/mail-contract.d.ts +30 -30
- package/dist/src/mail/room-contract.d.ts +30 -30
- package/dist/src/mail/schemas/room-validation.schema.d.ts +10 -10
- package/dist/src/mail/schemas/room.schema.d.ts +8 -8
- package/dist/src/messenger/index.d.ts +12 -12
- package/dist/src/viber/index.d.ts +12 -12
- package/dist/src/webchat/index.d.ts +12 -12
- package/dist/src/workflow-rule/index.d.ts +20 -20
- package/dist/src/wrap-up-form/index.d.ts +466 -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 +3 -0
- package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
- package/package.json +1 -1
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,7 +7347,7 @@ 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
7353
|
workflowRule: z.ZodObject<{
|
@@ -7721,7 +7721,7 @@ export declare const mainChatContract: {
|
|
7721
7721
|
booleanValue: boolean | null;
|
7722
7722
|
numberValue: number | null;
|
7723
7723
|
dateValue: Date | null;
|
7724
|
-
}[] | undefined;
|
7724
|
+
}[] | null | undefined;
|
7725
7725
|
} | null;
|
7726
7726
|
};
|
7727
7727
|
workflowRule: {
|
@@ -8079,7 +8079,7 @@ export declare const mainChatContract: {
|
|
8079
8079
|
booleanValue: boolean | null;
|
8080
8080
|
numberValue: number | null;
|
8081
8081
|
dateValue: Date | null;
|
8082
|
-
}[] | undefined;
|
8082
|
+
}[] | null | undefined;
|
8083
8083
|
} | null;
|
8084
8084
|
};
|
8085
8085
|
workflowRule: {
|
@@ -8449,7 +8449,7 @@ export declare const mainChatContract: {
|
|
8449
8449
|
booleanValue: boolean | null;
|
8450
8450
|
numberValue: number | null;
|
8451
8451
|
dateValue: Date | null;
|
8452
|
-
}[] | undefined;
|
8452
|
+
}[] | null | undefined;
|
8453
8453
|
} | null;
|
8454
8454
|
};
|
8455
8455
|
workflowRule: {
|
@@ -8817,7 +8817,7 @@ export declare const mainChatContract: {
|
|
8817
8817
|
booleanValue: boolean | null;
|
8818
8818
|
numberValue: number | null;
|
8819
8819
|
dateValue: Date | null;
|
8820
|
-
}[] | undefined;
|
8820
|
+
}[] | null | undefined;
|
8821
8821
|
} | null;
|
8822
8822
|
};
|
8823
8823
|
workflowRule: {
|
@@ -11702,7 +11702,7 @@ export declare const mainChatContract: {
|
|
11702
11702
|
}>, "many">;
|
11703
11703
|
callFrom: z.ZodNullable<z.ZodString>;
|
11704
11704
|
callTo: z.ZodNullable<z.ZodString>;
|
11705
|
-
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
11705
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
11706
11706
|
id: z.ZodString;
|
11707
11707
|
createdAt: z.ZodDate;
|
11708
11708
|
updatedAt: z.ZodDate;
|
@@ -11735,7 +11735,7 @@ export declare const mainChatContract: {
|
|
11735
11735
|
booleanValue: boolean | null;
|
11736
11736
|
numberValue: number | null;
|
11737
11737
|
dateValue: Date | null;
|
11738
|
-
}>, "many"
|
11738
|
+
}>, "many">>>;
|
11739
11739
|
}, "strip", z.ZodTypeAny, {
|
11740
11740
|
type: string;
|
11741
11741
|
id: string;
|
@@ -11786,7 +11786,7 @@ export declare const mainChatContract: {
|
|
11786
11786
|
booleanValue: boolean | null;
|
11787
11787
|
numberValue: number | null;
|
11788
11788
|
dateValue: Date | null;
|
11789
|
-
}[] | undefined;
|
11789
|
+
}[] | null | undefined;
|
11790
11790
|
}, {
|
11791
11791
|
type: string;
|
11792
11792
|
id: string;
|
@@ -11837,7 +11837,7 @@ export declare const mainChatContract: {
|
|
11837
11837
|
booleanValue: boolean | null;
|
11838
11838
|
numberValue: number | null;
|
11839
11839
|
dateValue: Date | null;
|
11840
|
-
}[] | undefined;
|
11840
|
+
}[] | null | undefined;
|
11841
11841
|
}>>;
|
11842
11842
|
}, "strip", z.ZodTypeAny, {
|
11843
11843
|
id: string;
|
@@ -11905,7 +11905,7 @@ export declare const mainChatContract: {
|
|
11905
11905
|
booleanValue: boolean | null;
|
11906
11906
|
numberValue: number | null;
|
11907
11907
|
dateValue: Date | null;
|
11908
|
-
}[] | undefined;
|
11908
|
+
}[] | null | undefined;
|
11909
11909
|
} | null;
|
11910
11910
|
}, {
|
11911
11911
|
id: string;
|
@@ -11973,7 +11973,7 @@ export declare const mainChatContract: {
|
|
11973
11973
|
booleanValue: boolean | null;
|
11974
11974
|
numberValue: number | null;
|
11975
11975
|
dateValue: Date | null;
|
11976
|
-
}[] | undefined;
|
11976
|
+
}[] | null | undefined;
|
11977
11977
|
} | null;
|
11978
11978
|
}>;
|
11979
11979
|
workflowRule: z.ZodObject<{
|
@@ -12347,7 +12347,7 @@ export declare const mainChatContract: {
|
|
12347
12347
|
booleanValue: boolean | null;
|
12348
12348
|
numberValue: number | null;
|
12349
12349
|
dateValue: Date | null;
|
12350
|
-
}[] | undefined;
|
12350
|
+
}[] | null | undefined;
|
12351
12351
|
} | null;
|
12352
12352
|
};
|
12353
12353
|
workflowRule: {
|
@@ -12705,7 +12705,7 @@ export declare const mainChatContract: {
|
|
12705
12705
|
booleanValue: boolean | null;
|
12706
12706
|
numberValue: number | null;
|
12707
12707
|
dateValue: Date | null;
|
12708
|
-
}[] | undefined;
|
12708
|
+
}[] | null | undefined;
|
12709
12709
|
} | null;
|
12710
12710
|
};
|
12711
12711
|
workflowRule: {
|
@@ -13065,7 +13065,7 @@ export declare const mainChatContract: {
|
|
13065
13065
|
booleanValue: boolean | null;
|
13066
13066
|
numberValue: number | null;
|
13067
13067
|
dateValue: Date | null;
|
13068
|
-
}[] | undefined;
|
13068
|
+
}[] | null | undefined;
|
13069
13069
|
} | null;
|
13070
13070
|
};
|
13071
13071
|
workflowRule: {
|
@@ -13426,7 +13426,7 @@ export declare const mainChatContract: {
|
|
13426
13426
|
booleanValue: boolean | null;
|
13427
13427
|
numberValue: number | null;
|
13428
13428
|
dateValue: Date | null;
|
13429
|
-
}[] | undefined;
|
13429
|
+
}[] | null | undefined;
|
13430
13430
|
} | null;
|
13431
13431
|
};
|
13432
13432
|
workflowRule: {
|
@@ -15723,7 +15723,7 @@ export declare const mainChatContract: {
|
|
15723
15723
|
}>, "many">;
|
15724
15724
|
callFrom: z.ZodNullable<z.ZodString>;
|
15725
15725
|
callTo: z.ZodNullable<z.ZodString>;
|
15726
|
-
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
15726
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
15727
15727
|
id: z.ZodString;
|
15728
15728
|
createdAt: z.ZodDate;
|
15729
15729
|
updatedAt: z.ZodDate;
|
@@ -15756,7 +15756,7 @@ export declare const mainChatContract: {
|
|
15756
15756
|
booleanValue: boolean | null;
|
15757
15757
|
numberValue: number | null;
|
15758
15758
|
dateValue: Date | null;
|
15759
|
-
}>, "many"
|
15759
|
+
}>, "many">>>;
|
15760
15760
|
}, "strip", z.ZodTypeAny, {
|
15761
15761
|
type: string;
|
15762
15762
|
id: string;
|
@@ -15807,7 +15807,7 @@ export declare const mainChatContract: {
|
|
15807
15807
|
booleanValue: boolean | null;
|
15808
15808
|
numberValue: number | null;
|
15809
15809
|
dateValue: Date | null;
|
15810
|
-
}[] | undefined;
|
15810
|
+
}[] | null | undefined;
|
15811
15811
|
}, {
|
15812
15812
|
type: string;
|
15813
15813
|
id: string;
|
@@ -15858,7 +15858,7 @@ export declare const mainChatContract: {
|
|
15858
15858
|
booleanValue: boolean | null;
|
15859
15859
|
numberValue: number | null;
|
15860
15860
|
dateValue: Date | null;
|
15861
|
-
}[] | undefined;
|
15861
|
+
}[] | null | undefined;
|
15862
15862
|
}>>;
|
15863
15863
|
}, "strip", z.ZodTypeAny, {
|
15864
15864
|
id: string;
|
@@ -15926,7 +15926,7 @@ export declare const mainChatContract: {
|
|
15926
15926
|
booleanValue: boolean | null;
|
15927
15927
|
numberValue: number | null;
|
15928
15928
|
dateValue: Date | null;
|
15929
|
-
}[] | undefined;
|
15929
|
+
}[] | null | undefined;
|
15930
15930
|
} | null;
|
15931
15931
|
}, {
|
15932
15932
|
id: string;
|
@@ -15994,7 +15994,7 @@ export declare const mainChatContract: {
|
|
15994
15994
|
booleanValue: boolean | null;
|
15995
15995
|
numberValue: number | null;
|
15996
15996
|
dateValue: Date | null;
|
15997
|
-
}[] | undefined;
|
15997
|
+
}[] | null | undefined;
|
15998
15998
|
} | null;
|
15999
15999
|
}>;
|
16000
16000
|
workflowRule: z.ZodObject<{
|
@@ -16368,7 +16368,7 @@ export declare const mainChatContract: {
|
|
16368
16368
|
booleanValue: boolean | null;
|
16369
16369
|
numberValue: number | null;
|
16370
16370
|
dateValue: Date | null;
|
16371
|
-
}[] | undefined;
|
16371
|
+
}[] | null | undefined;
|
16372
16372
|
} | null;
|
16373
16373
|
};
|
16374
16374
|
workflowRule: {
|
@@ -16726,7 +16726,7 @@ export declare const mainChatContract: {
|
|
16726
16726
|
booleanValue: boolean | null;
|
16727
16727
|
numberValue: number | null;
|
16728
16728
|
dateValue: Date | null;
|
16729
|
-
}[] | undefined;
|
16729
|
+
}[] | null | undefined;
|
16730
16730
|
} | null;
|
16731
16731
|
};
|
16732
16732
|
workflowRule: {
|
@@ -18855,7 +18855,7 @@ export declare const mainChatContract: {
|
|
18855
18855
|
booleanValue: boolean | null;
|
18856
18856
|
numberValue: number | null;
|
18857
18857
|
dateValue: Date | null;
|
18858
|
-
}[] | undefined;
|
18858
|
+
}[] | null | undefined;
|
18859
18859
|
} | null;
|
18860
18860
|
};
|
18861
18861
|
workflowRule: {
|
@@ -19548,7 +19548,7 @@ export declare const mainChatContract: {
|
|
19548
19548
|
booleanValue: boolean | null;
|
19549
19549
|
numberValue: number | null;
|
19550
19550
|
dateValue: Date | null;
|
19551
|
-
}[] | undefined;
|
19551
|
+
}[] | null | undefined;
|
19552
19552
|
} | null;
|
19553
19553
|
};
|
19554
19554
|
workflowRule: {
|
@@ -20243,7 +20243,7 @@ export declare const mainChatContract: {
|
|
20243
20243
|
booleanValue: boolean | null;
|
20244
20244
|
numberValue: number | null;
|
20245
20245
|
dateValue: Date | null;
|
20246
|
-
}[] | undefined;
|
20246
|
+
}[] | null | undefined;
|
20247
20247
|
} | null;
|
20248
20248
|
};
|
20249
20249
|
workflowRule: {
|
@@ -20939,7 +20939,7 @@ export declare const mainChatContract: {
|
|
20939
20939
|
booleanValue: boolean | null;
|
20940
20940
|
numberValue: number | null;
|
20941
20941
|
dateValue: Date | null;
|
20942
|
-
}[] | undefined;
|
20942
|
+
}[] | null | undefined;
|
20943
20943
|
} | null;
|
20944
20944
|
};
|
20945
20945
|
workflowRule: {
|
@@ -23191,7 +23191,7 @@ export declare const mainChatContract: {
|
|
23191
23191
|
}>, "many">;
|
23192
23192
|
callFrom: z.ZodNullable<z.ZodString>;
|
23193
23193
|
callTo: z.ZodNullable<z.ZodString>;
|
23194
|
-
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
23194
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
23195
23195
|
id: z.ZodString;
|
23196
23196
|
createdAt: z.ZodDate;
|
23197
23197
|
updatedAt: z.ZodDate;
|
@@ -23224,7 +23224,7 @@ export declare const mainChatContract: {
|
|
23224
23224
|
booleanValue: boolean | null;
|
23225
23225
|
numberValue: number | null;
|
23226
23226
|
dateValue: Date | null;
|
23227
|
-
}>, "many"
|
23227
|
+
}>, "many">>>;
|
23228
23228
|
}, "strip", z.ZodTypeAny, {
|
23229
23229
|
type: string;
|
23230
23230
|
id: string;
|
@@ -23275,7 +23275,7 @@ export declare const mainChatContract: {
|
|
23275
23275
|
booleanValue: boolean | null;
|
23276
23276
|
numberValue: number | null;
|
23277
23277
|
dateValue: Date | null;
|
23278
|
-
}[] | undefined;
|
23278
|
+
}[] | null | undefined;
|
23279
23279
|
}, {
|
23280
23280
|
type: string;
|
23281
23281
|
id: string;
|
@@ -23326,7 +23326,7 @@ export declare const mainChatContract: {
|
|
23326
23326
|
booleanValue: boolean | null;
|
23327
23327
|
numberValue: number | null;
|
23328
23328
|
dateValue: Date | null;
|
23329
|
-
}[] | undefined;
|
23329
|
+
}[] | null | undefined;
|
23330
23330
|
}>>;
|
23331
23331
|
}, "strip", z.ZodTypeAny, {
|
23332
23332
|
id: string;
|
@@ -23394,7 +23394,7 @@ export declare const mainChatContract: {
|
|
23394
23394
|
booleanValue: boolean | null;
|
23395
23395
|
numberValue: number | null;
|
23396
23396
|
dateValue: Date | null;
|
23397
|
-
}[] | undefined;
|
23397
|
+
}[] | null | undefined;
|
23398
23398
|
} | null;
|
23399
23399
|
}, {
|
23400
23400
|
id: string;
|
@@ -23462,7 +23462,7 @@ export declare const mainChatContract: {
|
|
23462
23462
|
booleanValue: boolean | null;
|
23463
23463
|
numberValue: number | null;
|
23464
23464
|
dateValue: Date | null;
|
23465
|
-
}[] | undefined;
|
23465
|
+
}[] | null | undefined;
|
23466
23466
|
} | null;
|
23467
23467
|
}>;
|
23468
23468
|
workflowRule: z.ZodObject<{
|
@@ -23836,7 +23836,7 @@ export declare const mainChatContract: {
|
|
23836
23836
|
booleanValue: boolean | null;
|
23837
23837
|
numberValue: number | null;
|
23838
23838
|
dateValue: Date | null;
|
23839
|
-
}[] | undefined;
|
23839
|
+
}[] | null | undefined;
|
23840
23840
|
} | null;
|
23841
23841
|
};
|
23842
23842
|
workflowRule: {
|
@@ -24194,7 +24194,7 @@ export declare const mainChatContract: {
|
|
24194
24194
|
booleanValue: boolean | null;
|
24195
24195
|
numberValue: number | null;
|
24196
24196
|
dateValue: Date | null;
|
24197
|
-
}[] | undefined;
|
24197
|
+
}[] | null | undefined;
|
24198
24198
|
} | null;
|
24199
24199
|
};
|
24200
24200
|
workflowRule: {
|
@@ -26323,7 +26323,7 @@ export declare const mainChatContract: {
|
|
26323
26323
|
booleanValue: boolean | null;
|
26324
26324
|
numberValue: number | null;
|
26325
26325
|
dateValue: Date | null;
|
26326
|
-
}[] | undefined;
|
26326
|
+
}[] | null | undefined;
|
26327
26327
|
} | null;
|
26328
26328
|
};
|
26329
26329
|
workflowRule: {
|
@@ -27016,7 +27016,7 @@ export declare const mainChatContract: {
|
|
27016
27016
|
booleanValue: boolean | null;
|
27017
27017
|
numberValue: number | null;
|
27018
27018
|
dateValue: Date | null;
|
27019
|
-
}[] | undefined;
|
27019
|
+
}[] | null | undefined;
|
27020
27020
|
} | null;
|
27021
27021
|
};
|
27022
27022
|
workflowRule: {
|
@@ -27711,7 +27711,7 @@ export declare const mainChatContract: {
|
|
27711
27711
|
booleanValue: boolean | null;
|
27712
27712
|
numberValue: number | null;
|
27713
27713
|
dateValue: Date | null;
|
27714
|
-
}[] | undefined;
|
27714
|
+
}[] | null | undefined;
|
27715
27715
|
} | null;
|
27716
27716
|
};
|
27717
27717
|
workflowRule: {
|
@@ -28410,7 +28410,7 @@ export declare const mainChatContract: {
|
|
28410
28410
|
booleanValue: boolean | null;
|
28411
28411
|
numberValue: number | null;
|
28412
28412
|
dateValue: Date | null;
|
28413
|
-
}[] | undefined;
|
28413
|
+
}[] | null | undefined;
|
28414
28414
|
} | null;
|
28415
28415
|
};
|
28416
28416
|
workflowRule: {
|
@@ -30555,7 +30555,7 @@ export declare const mainChatContract: {
|
|
30555
30555
|
}>, "many">;
|
30556
30556
|
callFrom: z.ZodNullable<z.ZodString>;
|
30557
30557
|
callTo: z.ZodNullable<z.ZodString>;
|
30558
|
-
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
30558
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
30559
30559
|
id: z.ZodString;
|
30560
30560
|
createdAt: z.ZodDate;
|
30561
30561
|
updatedAt: z.ZodDate;
|
@@ -30588,7 +30588,7 @@ export declare const mainChatContract: {
|
|
30588
30588
|
booleanValue: boolean | null;
|
30589
30589
|
numberValue: number | null;
|
30590
30590
|
dateValue: Date | null;
|
30591
|
-
}>, "many"
|
30591
|
+
}>, "many">>>;
|
30592
30592
|
}, "strip", z.ZodTypeAny, {
|
30593
30593
|
type: string;
|
30594
30594
|
id: string;
|
@@ -30639,7 +30639,7 @@ export declare const mainChatContract: {
|
|
30639
30639
|
booleanValue: boolean | null;
|
30640
30640
|
numberValue: number | null;
|
30641
30641
|
dateValue: Date | null;
|
30642
|
-
}[] | undefined;
|
30642
|
+
}[] | null | undefined;
|
30643
30643
|
}, {
|
30644
30644
|
type: string;
|
30645
30645
|
id: string;
|
@@ -30690,7 +30690,7 @@ export declare const mainChatContract: {
|
|
30690
30690
|
booleanValue: boolean | null;
|
30691
30691
|
numberValue: number | null;
|
30692
30692
|
dateValue: Date | null;
|
30693
|
-
}[] | undefined;
|
30693
|
+
}[] | null | undefined;
|
30694
30694
|
}>>;
|
30695
30695
|
}, "strip", z.ZodTypeAny, {
|
30696
30696
|
id: string;
|
@@ -30758,7 +30758,7 @@ export declare const mainChatContract: {
|
|
30758
30758
|
booleanValue: boolean | null;
|
30759
30759
|
numberValue: number | null;
|
30760
30760
|
dateValue: Date | null;
|
30761
|
-
}[] | undefined;
|
30761
|
+
}[] | null | undefined;
|
30762
30762
|
} | null;
|
30763
30763
|
}, {
|
30764
30764
|
id: string;
|
@@ -30826,7 +30826,7 @@ export declare const mainChatContract: {
|
|
30826
30826
|
booleanValue: boolean | null;
|
30827
30827
|
numberValue: number | null;
|
30828
30828
|
dateValue: Date | null;
|
30829
|
-
}[] | undefined;
|
30829
|
+
}[] | null | undefined;
|
30830
30830
|
} | null;
|
30831
30831
|
}>;
|
30832
30832
|
workflowRule: z.ZodObject<{
|
@@ -31201,7 +31201,7 @@ export declare const mainChatContract: {
|
|
31201
31201
|
booleanValue: boolean | null;
|
31202
31202
|
numberValue: number | null;
|
31203
31203
|
dateValue: Date | null;
|
31204
|
-
}[] | undefined;
|
31204
|
+
}[] | null | undefined;
|
31205
31205
|
} | null;
|
31206
31206
|
};
|
31207
31207
|
workflowRule: {
|
@@ -31560,7 +31560,7 @@ export declare const mainChatContract: {
|
|
31560
31560
|
booleanValue: boolean | null;
|
31561
31561
|
numberValue: number | null;
|
31562
31562
|
dateValue: Date | null;
|
31563
|
-
}[] | undefined;
|
31563
|
+
}[] | null | undefined;
|
31564
31564
|
} | null;
|
31565
31565
|
};
|
31566
31566
|
workflowRule: {
|
@@ -31921,7 +31921,7 @@ export declare const mainChatContract: {
|
|
31921
31921
|
booleanValue: boolean | null;
|
31922
31922
|
numberValue: number | null;
|
31923
31923
|
dateValue: Date | null;
|
31924
|
-
}[] | undefined;
|
31924
|
+
}[] | null | undefined;
|
31925
31925
|
} | null;
|
31926
31926
|
};
|
31927
31927
|
workflowRule: {
|
@@ -32283,7 +32283,7 @@ export declare const mainChatContract: {
|
|
32283
32283
|
booleanValue: boolean | null;
|
32284
32284
|
numberValue: number | null;
|
32285
32285
|
dateValue: Date | null;
|
32286
|
-
}[] | undefined;
|
32286
|
+
}[] | null | undefined;
|
32287
32287
|
} | null;
|
32288
32288
|
};
|
32289
32289
|
workflowRule: {
|
@@ -34211,7 +34211,7 @@ export declare const mainChatContract: {
|
|
34211
34211
|
}>, "many">;
|
34212
34212
|
callFrom: z.ZodNullable<z.ZodString>;
|
34213
34213
|
callTo: z.ZodNullable<z.ZodString>;
|
34214
|
-
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
34214
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
34215
34215
|
id: z.ZodString;
|
34216
34216
|
createdAt: z.ZodDate;
|
34217
34217
|
updatedAt: z.ZodDate;
|
@@ -34244,7 +34244,7 @@ export declare const mainChatContract: {
|
|
34244
34244
|
booleanValue: boolean | null;
|
34245
34245
|
numberValue: number | null;
|
34246
34246
|
dateValue: Date | null;
|
34247
|
-
}>, "many"
|
34247
|
+
}>, "many">>>;
|
34248
34248
|
}, "strip", z.ZodTypeAny, {
|
34249
34249
|
type: string;
|
34250
34250
|
id: string;
|
@@ -34295,7 +34295,7 @@ export declare const mainChatContract: {
|
|
34295
34295
|
booleanValue: boolean | null;
|
34296
34296
|
numberValue: number | null;
|
34297
34297
|
dateValue: Date | null;
|
34298
|
-
}[] | undefined;
|
34298
|
+
}[] | null | undefined;
|
34299
34299
|
}, {
|
34300
34300
|
type: string;
|
34301
34301
|
id: string;
|
@@ -34346,7 +34346,7 @@ export declare const mainChatContract: {
|
|
34346
34346
|
booleanValue: boolean | null;
|
34347
34347
|
numberValue: number | null;
|
34348
34348
|
dateValue: Date | null;
|
34349
|
-
}[] | undefined;
|
34349
|
+
}[] | null | undefined;
|
34350
34350
|
}>>;
|
34351
34351
|
}, "strip", z.ZodTypeAny, {
|
34352
34352
|
id: string;
|
@@ -34414,7 +34414,7 @@ export declare const mainChatContract: {
|
|
34414
34414
|
booleanValue: boolean | null;
|
34415
34415
|
numberValue: number | null;
|
34416
34416
|
dateValue: Date | null;
|
34417
|
-
}[] | undefined;
|
34417
|
+
}[] | null | undefined;
|
34418
34418
|
} | null;
|
34419
34419
|
}, {
|
34420
34420
|
id: string;
|
@@ -34482,7 +34482,7 @@ export declare const mainChatContract: {
|
|
34482
34482
|
booleanValue: boolean | null;
|
34483
34483
|
numberValue: number | null;
|
34484
34484
|
dateValue: Date | null;
|
34485
|
-
}[] | undefined;
|
34485
|
+
}[] | null | undefined;
|
34486
34486
|
} | null;
|
34487
34487
|
}>;
|
34488
34488
|
workflowRule: z.ZodObject<{
|
@@ -34856,7 +34856,7 @@ export declare const mainChatContract: {
|
|
34856
34856
|
booleanValue: boolean | null;
|
34857
34857
|
numberValue: number | null;
|
34858
34858
|
dateValue: Date | null;
|
34859
|
-
}[] | undefined;
|
34859
|
+
}[] | null | undefined;
|
34860
34860
|
} | null;
|
34861
34861
|
};
|
34862
34862
|
workflowRule: {
|
@@ -35214,7 +35214,7 @@ export declare const mainChatContract: {
|
|
35214
35214
|
booleanValue: boolean | null;
|
35215
35215
|
numberValue: number | null;
|
35216
35216
|
dateValue: Date | null;
|
35217
|
-
}[] | undefined;
|
35217
|
+
}[] | null | undefined;
|
35218
35218
|
} | null;
|
35219
35219
|
};
|
35220
35220
|
workflowRule: {
|
@@ -35574,7 +35574,7 @@ export declare const mainChatContract: {
|
|
35574
35574
|
booleanValue: boolean | null;
|
35575
35575
|
numberValue: number | null;
|
35576
35576
|
dateValue: Date | null;
|
35577
|
-
}[] | undefined;
|
35577
|
+
}[] | null | undefined;
|
35578
35578
|
} | null;
|
35579
35579
|
};
|
35580
35580
|
workflowRule: {
|
@@ -35935,7 +35935,7 @@ export declare const mainChatContract: {
|
|
35935
35935
|
booleanValue: boolean | null;
|
35936
35936
|
numberValue: number | null;
|
35937
35937
|
dateValue: Date | null;
|
35938
|
-
}[] | undefined;
|
35938
|
+
}[] | null | undefined;
|
35939
35939
|
} | null;
|
35940
35940
|
};
|
35941
35941
|
workflowRule: {
|
@@ -35950,6 +35950,16 @@ export declare const mainChatContract: {
|
|
35950
35950
|
};
|
35951
35951
|
requestId: string;
|
35952
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
|
+
}>;
|
35953
35963
|
};
|
35954
35964
|
path: "chat/room/assignee/update";
|
35955
35965
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
@@ -37850,7 +37860,7 @@ export declare const mainChatContract: {
|
|
37850
37860
|
}>, "many">;
|
37851
37861
|
callFrom: z.ZodNullable<z.ZodString>;
|
37852
37862
|
callTo: z.ZodNullable<z.ZodString>;
|
37853
|
-
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
37863
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
37854
37864
|
id: z.ZodString;
|
37855
37865
|
createdAt: z.ZodDate;
|
37856
37866
|
updatedAt: z.ZodDate;
|
@@ -37883,7 +37893,7 @@ export declare const mainChatContract: {
|
|
37883
37893
|
booleanValue: boolean | null;
|
37884
37894
|
numberValue: number | null;
|
37885
37895
|
dateValue: Date | null;
|
37886
|
-
}>, "many"
|
37896
|
+
}>, "many">>>;
|
37887
37897
|
}, "strip", z.ZodTypeAny, {
|
37888
37898
|
type: string;
|
37889
37899
|
id: string;
|
@@ -37934,7 +37944,7 @@ export declare const mainChatContract: {
|
|
37934
37944
|
booleanValue: boolean | null;
|
37935
37945
|
numberValue: number | null;
|
37936
37946
|
dateValue: Date | null;
|
37937
|
-
}[] | undefined;
|
37947
|
+
}[] | null | undefined;
|
37938
37948
|
}, {
|
37939
37949
|
type: string;
|
37940
37950
|
id: string;
|
@@ -37985,7 +37995,7 @@ export declare const mainChatContract: {
|
|
37985
37995
|
booleanValue: boolean | null;
|
37986
37996
|
numberValue: number | null;
|
37987
37997
|
dateValue: Date | null;
|
37988
|
-
}[] | undefined;
|
37998
|
+
}[] | null | undefined;
|
37989
37999
|
}>>;
|
37990
38000
|
}, "strip", z.ZodTypeAny, {
|
37991
38001
|
id: string;
|
@@ -38053,7 +38063,7 @@ export declare const mainChatContract: {
|
|
38053
38063
|
booleanValue: boolean | null;
|
38054
38064
|
numberValue: number | null;
|
38055
38065
|
dateValue: Date | null;
|
38056
|
-
}[] | undefined;
|
38066
|
+
}[] | null | undefined;
|
38057
38067
|
} | null;
|
38058
38068
|
}, {
|
38059
38069
|
id: string;
|
@@ -38121,7 +38131,7 @@ export declare const mainChatContract: {
|
|
38121
38131
|
booleanValue: boolean | null;
|
38122
38132
|
numberValue: number | null;
|
38123
38133
|
dateValue: Date | null;
|
38124
|
-
}[] | undefined;
|
38134
|
+
}[] | null | undefined;
|
38125
38135
|
} | null;
|
38126
38136
|
}>;
|
38127
38137
|
workflowRule: z.ZodObject<{
|
@@ -38495,7 +38505,7 @@ export declare const mainChatContract: {
|
|
38495
38505
|
booleanValue: boolean | null;
|
38496
38506
|
numberValue: number | null;
|
38497
38507
|
dateValue: Date | null;
|
38498
|
-
}[] | undefined;
|
38508
|
+
}[] | null | undefined;
|
38499
38509
|
} | null;
|
38500
38510
|
};
|
38501
38511
|
workflowRule: {
|
@@ -38853,7 +38863,7 @@ export declare const mainChatContract: {
|
|
38853
38863
|
booleanValue: boolean | null;
|
38854
38864
|
numberValue: number | null;
|
38855
38865
|
dateValue: Date | null;
|
38856
|
-
}[] | undefined;
|
38866
|
+
}[] | null | undefined;
|
38857
38867
|
} | null;
|
38858
38868
|
};
|
38859
38869
|
workflowRule: {
|
@@ -39256,7 +39266,7 @@ export declare const mainChatContract: {
|
|
39256
39266
|
booleanValue: boolean | null;
|
39257
39267
|
numberValue: number | null;
|
39258
39268
|
dateValue: Date | null;
|
39259
|
-
}[] | undefined;
|
39269
|
+
}[] | null | undefined;
|
39260
39270
|
} | null;
|
39261
39271
|
};
|
39262
39272
|
workflowRule: {
|
@@ -39631,7 +39641,7 @@ export declare const mainChatContract: {
|
|
39631
39641
|
booleanValue: boolean | null;
|
39632
39642
|
numberValue: number | null;
|
39633
39643
|
dateValue: Date | null;
|
39634
|
-
}[] | undefined;
|
39644
|
+
}[] | null | undefined;
|
39635
39645
|
} | null;
|
39636
39646
|
};
|
39637
39647
|
workflowRule: {
|
@@ -40008,7 +40018,7 @@ export declare const mainChatContract: {
|
|
40008
40018
|
booleanValue: boolean | null;
|
40009
40019
|
numberValue: number | null;
|
40010
40020
|
dateValue: Date | null;
|
40011
|
-
}[] | undefined;
|
40021
|
+
}[] | null | undefined;
|
40012
40022
|
} | null;
|
40013
40023
|
};
|
40014
40024
|
workflowRule: {
|
@@ -40386,7 +40396,7 @@ export declare const mainChatContract: {
|
|
40386
40396
|
booleanValue: boolean | null;
|
40387
40397
|
numberValue: number | null;
|
40388
40398
|
dateValue: Date | null;
|
40389
|
-
}[] | undefined;
|
40399
|
+
}[] | null | undefined;
|
40390
40400
|
} | null;
|
40391
40401
|
};
|
40392
40402
|
workflowRule: {
|
@@ -42327,7 +42337,7 @@ export declare const mainChatContract: {
|
|
42327
42337
|
}>, "many">;
|
42328
42338
|
callFrom: z.ZodNullable<z.ZodString>;
|
42329
42339
|
callTo: z.ZodNullable<z.ZodString>;
|
42330
|
-
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
42340
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
42331
42341
|
id: z.ZodString;
|
42332
42342
|
createdAt: z.ZodDate;
|
42333
42343
|
updatedAt: z.ZodDate;
|
@@ -42360,7 +42370,7 @@ export declare const mainChatContract: {
|
|
42360
42370
|
booleanValue: boolean | null;
|
42361
42371
|
numberValue: number | null;
|
42362
42372
|
dateValue: Date | null;
|
42363
|
-
}>, "many"
|
42373
|
+
}>, "many">>>;
|
42364
42374
|
}, "strip", z.ZodTypeAny, {
|
42365
42375
|
type: string;
|
42366
42376
|
id: string;
|
@@ -42411,7 +42421,7 @@ export declare const mainChatContract: {
|
|
42411
42421
|
booleanValue: boolean | null;
|
42412
42422
|
numberValue: number | null;
|
42413
42423
|
dateValue: Date | null;
|
42414
|
-
}[] | undefined;
|
42424
|
+
}[] | null | undefined;
|
42415
42425
|
}, {
|
42416
42426
|
type: string;
|
42417
42427
|
id: string;
|
@@ -42462,7 +42472,7 @@ export declare const mainChatContract: {
|
|
42462
42472
|
booleanValue: boolean | null;
|
42463
42473
|
numberValue: number | null;
|
42464
42474
|
dateValue: Date | null;
|
42465
|
-
}[] | undefined;
|
42475
|
+
}[] | null | undefined;
|
42466
42476
|
}>>;
|
42467
42477
|
}, "strip", z.ZodTypeAny, {
|
42468
42478
|
id: string;
|
@@ -42530,7 +42540,7 @@ export declare const mainChatContract: {
|
|
42530
42540
|
booleanValue: boolean | null;
|
42531
42541
|
numberValue: number | null;
|
42532
42542
|
dateValue: Date | null;
|
42533
|
-
}[] | undefined;
|
42543
|
+
}[] | null | undefined;
|
42534
42544
|
} | null;
|
42535
42545
|
}, {
|
42536
42546
|
id: string;
|
@@ -42598,7 +42608,7 @@ export declare const mainChatContract: {
|
|
42598
42608
|
booleanValue: boolean | null;
|
42599
42609
|
numberValue: number | null;
|
42600
42610
|
dateValue: Date | null;
|
42601
|
-
}[] | undefined;
|
42611
|
+
}[] | null | undefined;
|
42602
42612
|
} | null;
|
42603
42613
|
}>;
|
42604
42614
|
workflowRule: z.ZodObject<{
|
@@ -43757,7 +43767,7 @@ export declare const mainChatContract: {
|
|
43757
43767
|
booleanValue: boolean | null;
|
43758
43768
|
numberValue: number | null;
|
43759
43769
|
dateValue: Date | null;
|
43760
|
-
}[] | undefined;
|
43770
|
+
}[] | null | undefined;
|
43761
43771
|
} | null;
|
43762
43772
|
};
|
43763
43773
|
workflowRule: {
|
@@ -44213,7 +44223,7 @@ export declare const mainChatContract: {
|
|
44213
44223
|
booleanValue: boolean | null;
|
44214
44224
|
numberValue: number | null;
|
44215
44225
|
dateValue: Date | null;
|
44216
|
-
}[] | undefined;
|
44226
|
+
}[] | null | undefined;
|
44217
44227
|
} | null;
|
44218
44228
|
};
|
44219
44229
|
workflowRule: {
|
@@ -44671,7 +44681,7 @@ export declare const mainChatContract: {
|
|
44671
44681
|
booleanValue: boolean | null;
|
44672
44682
|
numberValue: number | null;
|
44673
44683
|
dateValue: Date | null;
|
44674
|
-
}[] | undefined;
|
44684
|
+
}[] | null | undefined;
|
44675
44685
|
} | null;
|
44676
44686
|
};
|
44677
44687
|
workflowRule: {
|
@@ -45130,7 +45140,7 @@ export declare const mainChatContract: {
|
|
45130
45140
|
booleanValue: boolean | null;
|
45131
45141
|
numberValue: number | null;
|
45132
45142
|
dateValue: Date | null;
|
45133
|
-
}[] | undefined;
|
45143
|
+
}[] | null | undefined;
|
45134
45144
|
} | null;
|
45135
45145
|
};
|
45136
45146
|
workflowRule: {
|
@@ -47046,7 +47056,7 @@ export declare const mainChatContract: {
|
|
47046
47056
|
}>, "many">;
|
47047
47057
|
callFrom: z.ZodNullable<z.ZodString>;
|
47048
47058
|
callTo: z.ZodNullable<z.ZodString>;
|
47049
|
-
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
47059
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
47050
47060
|
id: z.ZodString;
|
47051
47061
|
createdAt: z.ZodDate;
|
47052
47062
|
updatedAt: z.ZodDate;
|
@@ -47079,7 +47089,7 @@ export declare const mainChatContract: {
|
|
47079
47089
|
booleanValue: boolean | null;
|
47080
47090
|
numberValue: number | null;
|
47081
47091
|
dateValue: Date | null;
|
47082
|
-
}>, "many"
|
47092
|
+
}>, "many">>>;
|
47083
47093
|
}, "strip", z.ZodTypeAny, {
|
47084
47094
|
type: string;
|
47085
47095
|
id: string;
|
@@ -47130,7 +47140,7 @@ export declare const mainChatContract: {
|
|
47130
47140
|
booleanValue: boolean | null;
|
47131
47141
|
numberValue: number | null;
|
47132
47142
|
dateValue: Date | null;
|
47133
|
-
}[] | undefined;
|
47143
|
+
}[] | null | undefined;
|
47134
47144
|
}, {
|
47135
47145
|
type: string;
|
47136
47146
|
id: string;
|
@@ -47181,7 +47191,7 @@ export declare const mainChatContract: {
|
|
47181
47191
|
booleanValue: boolean | null;
|
47182
47192
|
numberValue: number | null;
|
47183
47193
|
dateValue: Date | null;
|
47184
|
-
}[] | undefined;
|
47194
|
+
}[] | null | undefined;
|
47185
47195
|
}>>;
|
47186
47196
|
}, "strip", z.ZodTypeAny, {
|
47187
47197
|
id: string;
|
@@ -47249,7 +47259,7 @@ export declare const mainChatContract: {
|
|
47249
47259
|
booleanValue: boolean | null;
|
47250
47260
|
numberValue: number | null;
|
47251
47261
|
dateValue: Date | null;
|
47252
|
-
}[] | undefined;
|
47262
|
+
}[] | null | undefined;
|
47253
47263
|
} | null;
|
47254
47264
|
}, {
|
47255
47265
|
id: string;
|
@@ -47317,7 +47327,7 @@ export declare const mainChatContract: {
|
|
47317
47327
|
booleanValue: boolean | null;
|
47318
47328
|
numberValue: number | null;
|
47319
47329
|
dateValue: Date | null;
|
47320
|
-
}[] | undefined;
|
47330
|
+
}[] | null | undefined;
|
47321
47331
|
} | null;
|
47322
47332
|
}>;
|
47323
47333
|
workflowRule: z.ZodObject<{
|
@@ -47693,7 +47703,7 @@ export declare const mainChatContract: {
|
|
47693
47703
|
booleanValue: boolean | null;
|
47694
47704
|
numberValue: number | null;
|
47695
47705
|
dateValue: Date | null;
|
47696
|
-
}[] | undefined;
|
47706
|
+
}[] | null | undefined;
|
47697
47707
|
} | null;
|
47698
47708
|
};
|
47699
47709
|
workflowRule: {
|
@@ -48052,7 +48062,7 @@ export declare const mainChatContract: {
|
|
48052
48062
|
booleanValue: boolean | null;
|
48053
48063
|
numberValue: number | null;
|
48054
48064
|
dateValue: Date | null;
|
48055
|
-
}[] | undefined;
|
48065
|
+
}[] | null | undefined;
|
48056
48066
|
} | null;
|
48057
48067
|
};
|
48058
48068
|
workflowRule: {
|
@@ -48413,7 +48423,7 @@ export declare const mainChatContract: {
|
|
48413
48423
|
booleanValue: boolean | null;
|
48414
48424
|
numberValue: number | null;
|
48415
48425
|
dateValue: Date | null;
|
48416
|
-
}[] | undefined;
|
48426
|
+
}[] | null | undefined;
|
48417
48427
|
} | null;
|
48418
48428
|
};
|
48419
48429
|
workflowRule: {
|
@@ -48775,7 +48785,7 @@ export declare const mainChatContract: {
|
|
48775
48785
|
booleanValue: boolean | null;
|
48776
48786
|
numberValue: number | null;
|
48777
48787
|
dateValue: Date | null;
|
48778
|
-
}[] | undefined;
|
48788
|
+
}[] | null | undefined;
|
48779
48789
|
} | null;
|
48780
48790
|
};
|
48781
48791
|
workflowRule: {
|
@@ -50701,7 +50711,7 @@ export declare const mainChatContract: {
|
|
50701
50711
|
}>, "many">;
|
50702
50712
|
callFrom: z.ZodNullable<z.ZodString>;
|
50703
50713
|
callTo: z.ZodNullable<z.ZodString>;
|
50704
|
-
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
50714
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
50705
50715
|
id: z.ZodString;
|
50706
50716
|
createdAt: z.ZodDate;
|
50707
50717
|
updatedAt: z.ZodDate;
|
@@ -50734,7 +50744,7 @@ export declare const mainChatContract: {
|
|
50734
50744
|
booleanValue: boolean | null;
|
50735
50745
|
numberValue: number | null;
|
50736
50746
|
dateValue: Date | null;
|
50737
|
-
}>, "many"
|
50747
|
+
}>, "many">>>;
|
50738
50748
|
}, "strip", z.ZodTypeAny, {
|
50739
50749
|
type: string;
|
50740
50750
|
id: string;
|
@@ -50785,7 +50795,7 @@ export declare const mainChatContract: {
|
|
50785
50795
|
booleanValue: boolean | null;
|
50786
50796
|
numberValue: number | null;
|
50787
50797
|
dateValue: Date | null;
|
50788
|
-
}[] | undefined;
|
50798
|
+
}[] | null | undefined;
|
50789
50799
|
}, {
|
50790
50800
|
type: string;
|
50791
50801
|
id: string;
|
@@ -50836,7 +50846,7 @@ export declare const mainChatContract: {
|
|
50836
50846
|
booleanValue: boolean | null;
|
50837
50847
|
numberValue: number | null;
|
50838
50848
|
dateValue: Date | null;
|
50839
|
-
}[] | undefined;
|
50849
|
+
}[] | null | undefined;
|
50840
50850
|
}>>;
|
50841
50851
|
}, "strip", z.ZodTypeAny, {
|
50842
50852
|
id: string;
|
@@ -50904,7 +50914,7 @@ export declare const mainChatContract: {
|
|
50904
50914
|
booleanValue: boolean | null;
|
50905
50915
|
numberValue: number | null;
|
50906
50916
|
dateValue: Date | null;
|
50907
|
-
}[] | undefined;
|
50917
|
+
}[] | null | undefined;
|
50908
50918
|
} | null;
|
50909
50919
|
}, {
|
50910
50920
|
id: string;
|
@@ -50972,7 +50982,7 @@ export declare const mainChatContract: {
|
|
50972
50982
|
booleanValue: boolean | null;
|
50973
50983
|
numberValue: number | null;
|
50974
50984
|
dateValue: Date | null;
|
50975
|
-
}[] | undefined;
|
50985
|
+
}[] | null | undefined;
|
50976
50986
|
} | null;
|
50977
50987
|
}>;
|
50978
50988
|
workflowRule: z.ZodObject<{
|
@@ -51346,7 +51356,7 @@ export declare const mainChatContract: {
|
|
51346
51356
|
booleanValue: boolean | null;
|
51347
51357
|
numberValue: number | null;
|
51348
51358
|
dateValue: Date | null;
|
51349
|
-
}[] | undefined;
|
51359
|
+
}[] | null | undefined;
|
51350
51360
|
} | null;
|
51351
51361
|
};
|
51352
51362
|
workflowRule: {
|
@@ -51704,7 +51714,7 @@ export declare const mainChatContract: {
|
|
51704
51714
|
booleanValue: boolean | null;
|
51705
51715
|
numberValue: number | null;
|
51706
51716
|
dateValue: Date | null;
|
51707
|
-
}[] | undefined;
|
51717
|
+
}[] | null | undefined;
|
51708
51718
|
} | null;
|
51709
51719
|
};
|
51710
51720
|
workflowRule: {
|
@@ -52064,7 +52074,7 @@ export declare const mainChatContract: {
|
|
52064
52074
|
booleanValue: boolean | null;
|
52065
52075
|
numberValue: number | null;
|
52066
52076
|
dateValue: Date | null;
|
52067
|
-
}[] | undefined;
|
52077
|
+
}[] | null | undefined;
|
52068
52078
|
} | null;
|
52069
52079
|
};
|
52070
52080
|
workflowRule: {
|
@@ -52428,7 +52438,7 @@ export declare const mainChatContract: {
|
|
52428
52438
|
booleanValue: boolean | null;
|
52429
52439
|
numberValue: number | null;
|
52430
52440
|
dateValue: Date | null;
|
52431
|
-
}[] | undefined;
|
52441
|
+
}[] | null | undefined;
|
52432
52442
|
} | null;
|
52433
52443
|
};
|
52434
52444
|
workflowRule: {
|