@kl1/contracts 1.0.14 → 1.0.16
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 +401 -219
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +401 -219
- package/dist/index.mjs.map +1 -1
- package/dist/src/call-log/schema.d.ts +2 -2
- package/dist/src/chat/index.d.ts +1437 -3140
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +256 -47
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +5327 -92
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contact/index.d.ts +3302 -0
- package/dist/src/contact/index.d.ts.map +1 -1
- package/dist/src/contact/validation.d.ts +3064 -0
- package/dist/src/contact/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +18240 -11472
- 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 +4 -4
- package/dist/src/mail/mail-contract.d.ts +12 -12
- package/dist/src/mail/room-contract.d.ts +12 -12
- package/dist/src/mail/schemas/room-validation.schema.d.ts +4 -4
- package/dist/src/mail/schemas/room.schema.d.ts +2 -2
- package/dist/src/messenger/index.d.ts +5232 -54
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/platform-contact/schema.d.ts +2 -2
- package/dist/src/ticket/schema.d.ts +2 -2
- package/package.json +1 -1
@@ -1928,6 +1928,7 @@ export declare const roomContract: {
|
|
1928
1928
|
notification_count: number | null;
|
1929
1929
|
};
|
1930
1930
|
assigneeId: string | null;
|
1931
|
+
note: string;
|
1931
1932
|
subject: string;
|
1932
1933
|
from: {
|
1933
1934
|
id: string;
|
@@ -1962,7 +1963,6 @@ export declare const roomContract: {
|
|
1962
1963
|
deletedAt: Date | null;
|
1963
1964
|
}[];
|
1964
1965
|
resolved: boolean;
|
1965
|
-
note: string;
|
1966
1966
|
mailId: string;
|
1967
1967
|
lastMessageId: string;
|
1968
1968
|
firstMessageId: string;
|
@@ -2338,6 +2338,7 @@ export declare const roomContract: {
|
|
2338
2338
|
notification_count: number | null;
|
2339
2339
|
};
|
2340
2340
|
assigneeId: string | null;
|
2341
|
+
note: string;
|
2341
2342
|
subject: string;
|
2342
2343
|
from: {
|
2343
2344
|
id: string;
|
@@ -2372,7 +2373,6 @@ export declare const roomContract: {
|
|
2372
2373
|
deletedAt: Date | null;
|
2373
2374
|
}[];
|
2374
2375
|
resolved: boolean;
|
2375
|
-
note: string;
|
2376
2376
|
mailId: string;
|
2377
2377
|
lastMessageId: string;
|
2378
2378
|
firstMessageId: string;
|
@@ -2753,6 +2753,7 @@ export declare const roomContract: {
|
|
2753
2753
|
notification_count: number | null;
|
2754
2754
|
};
|
2755
2755
|
assigneeId: string | null;
|
2756
|
+
note: string;
|
2756
2757
|
subject: string;
|
2757
2758
|
from: {
|
2758
2759
|
id: string;
|
@@ -2787,7 +2788,6 @@ export declare const roomContract: {
|
|
2787
2788
|
deletedAt: Date | null;
|
2788
2789
|
}[];
|
2789
2790
|
resolved: boolean;
|
2790
|
-
note: string;
|
2791
2791
|
mailId: string;
|
2792
2792
|
lastMessageId: string;
|
2793
2793
|
firstMessageId: string;
|
@@ -3169,6 +3169,7 @@ export declare const roomContract: {
|
|
3169
3169
|
notification_count: number | null;
|
3170
3170
|
};
|
3171
3171
|
assigneeId: string | null;
|
3172
|
+
note: string;
|
3172
3173
|
subject: string;
|
3173
3174
|
from: {
|
3174
3175
|
id: string;
|
@@ -3203,7 +3204,6 @@ export declare const roomContract: {
|
|
3203
3204
|
deletedAt: Date | null;
|
3204
3205
|
}[];
|
3205
3206
|
resolved: boolean;
|
3206
|
-
note: string;
|
3207
3207
|
mailId: string;
|
3208
3208
|
lastMessageId: string;
|
3209
3209
|
firstMessageId: string;
|
@@ -5355,6 +5355,7 @@ export declare const roomContract: {
|
|
5355
5355
|
notification_count: number | null;
|
5356
5356
|
};
|
5357
5357
|
assigneeId: string | null;
|
5358
|
+
note: string;
|
5358
5359
|
subject: string;
|
5359
5360
|
from: {
|
5360
5361
|
id: string;
|
@@ -5389,7 +5390,6 @@ export declare const roomContract: {
|
|
5389
5390
|
deletedAt: Date | null;
|
5390
5391
|
}[];
|
5391
5392
|
resolved: boolean;
|
5392
|
-
note: string;
|
5393
5393
|
mailId: string;
|
5394
5394
|
lastMessageId: string;
|
5395
5395
|
firstMessageId: string;
|
@@ -5765,6 +5765,7 @@ export declare const roomContract: {
|
|
5765
5765
|
notification_count: number | null;
|
5766
5766
|
};
|
5767
5767
|
assigneeId: string | null;
|
5768
|
+
note: string;
|
5768
5769
|
subject: string;
|
5769
5770
|
from: {
|
5770
5771
|
id: string;
|
@@ -5799,7 +5800,6 @@ export declare const roomContract: {
|
|
5799
5800
|
deletedAt: Date | null;
|
5800
5801
|
}[];
|
5801
5802
|
resolved: boolean;
|
5802
|
-
note: string;
|
5803
5803
|
mailId: string;
|
5804
5804
|
lastMessageId: string;
|
5805
5805
|
firstMessageId: string;
|
@@ -6177,6 +6177,7 @@ export declare const roomContract: {
|
|
6177
6177
|
notification_count: number | null;
|
6178
6178
|
};
|
6179
6179
|
assigneeId: string | null;
|
6180
|
+
note: string;
|
6180
6181
|
subject: string;
|
6181
6182
|
from: {
|
6182
6183
|
id: string;
|
@@ -6211,7 +6212,6 @@ export declare const roomContract: {
|
|
6211
6212
|
deletedAt: Date | null;
|
6212
6213
|
}[];
|
6213
6214
|
resolved: boolean;
|
6214
|
-
note: string;
|
6215
6215
|
mailId: string;
|
6216
6216
|
lastMessageId: string;
|
6217
6217
|
firstMessageId: string;
|
@@ -6590,6 +6590,7 @@ export declare const roomContract: {
|
|
6590
6590
|
notification_count: number | null;
|
6591
6591
|
};
|
6592
6592
|
assigneeId: string | null;
|
6593
|
+
note: string;
|
6593
6594
|
subject: string;
|
6594
6595
|
from: {
|
6595
6596
|
id: string;
|
@@ -6624,7 +6625,6 @@ export declare const roomContract: {
|
|
6624
6625
|
deletedAt: Date | null;
|
6625
6626
|
}[];
|
6626
6627
|
resolved: boolean;
|
6627
|
-
note: string;
|
6628
6628
|
mailId: string;
|
6629
6629
|
lastMessageId: string;
|
6630
6630
|
firstMessageId: string;
|
@@ -9038,6 +9038,7 @@ export declare const roomContract: {
|
|
9038
9038
|
notification_count: number | null;
|
9039
9039
|
};
|
9040
9040
|
assigneeId: string | null;
|
9041
|
+
note: string;
|
9041
9042
|
subject: string;
|
9042
9043
|
from: {
|
9043
9044
|
id: string;
|
@@ -9072,7 +9073,6 @@ export declare const roomContract: {
|
|
9072
9073
|
deletedAt: Date | null;
|
9073
9074
|
}[];
|
9074
9075
|
resolved: boolean;
|
9075
|
-
note: string;
|
9076
9076
|
mailId: string;
|
9077
9077
|
lastMessageId: string;
|
9078
9078
|
firstMessageId: string;
|
@@ -9448,6 +9448,7 @@ export declare const roomContract: {
|
|
9448
9448
|
notification_count: number | null;
|
9449
9449
|
};
|
9450
9450
|
assigneeId: string | null;
|
9451
|
+
note: string;
|
9451
9452
|
subject: string;
|
9452
9453
|
from: {
|
9453
9454
|
id: string;
|
@@ -9482,7 +9483,6 @@ export declare const roomContract: {
|
|
9482
9483
|
deletedAt: Date | null;
|
9483
9484
|
}[];
|
9484
9485
|
resolved: boolean;
|
9485
|
-
note: string;
|
9486
9486
|
mailId: string;
|
9487
9487
|
lastMessageId: string;
|
9488
9488
|
firstMessageId: string;
|
@@ -9860,6 +9860,7 @@ export declare const roomContract: {
|
|
9860
9860
|
notification_count: number | null;
|
9861
9861
|
};
|
9862
9862
|
assigneeId: string | null;
|
9863
|
+
note: string;
|
9863
9864
|
subject: string;
|
9864
9865
|
from: {
|
9865
9866
|
id: string;
|
@@ -9894,7 +9895,6 @@ export declare const roomContract: {
|
|
9894
9895
|
deletedAt: Date | null;
|
9895
9896
|
}[];
|
9896
9897
|
resolved: boolean;
|
9897
|
-
note: string;
|
9898
9898
|
mailId: string;
|
9899
9899
|
lastMessageId: string;
|
9900
9900
|
firstMessageId: string;
|
@@ -10273,6 +10273,7 @@ export declare const roomContract: {
|
|
10273
10273
|
notification_count: number | null;
|
10274
10274
|
};
|
10275
10275
|
assigneeId: string | null;
|
10276
|
+
note: string;
|
10276
10277
|
subject: string;
|
10277
10278
|
from: {
|
10278
10279
|
id: string;
|
@@ -10307,7 +10308,6 @@ export declare const roomContract: {
|
|
10307
10308
|
deletedAt: Date | null;
|
10308
10309
|
}[];
|
10309
10310
|
resolved: boolean;
|
10310
|
-
note: string;
|
10311
10311
|
mailId: string;
|
10312
10312
|
lastMessageId: string;
|
10313
10313
|
firstMessageId: string;
|
@@ -1846,6 +1846,7 @@ export declare const RoomContractsValidationSchema: {
|
|
1846
1846
|
notification_count: number | null;
|
1847
1847
|
};
|
1848
1848
|
assigneeId: string | null;
|
1849
|
+
note: string;
|
1849
1850
|
subject: string;
|
1850
1851
|
from: {
|
1851
1852
|
id: string;
|
@@ -1880,7 +1881,6 @@ export declare const RoomContractsValidationSchema: {
|
|
1880
1881
|
deletedAt: Date | null;
|
1881
1882
|
}[];
|
1882
1883
|
resolved: boolean;
|
1883
|
-
note: string;
|
1884
1884
|
mailId: string;
|
1885
1885
|
lastMessageId: string;
|
1886
1886
|
firstMessageId: string;
|
@@ -2256,6 +2256,7 @@ export declare const RoomContractsValidationSchema: {
|
|
2256
2256
|
notification_count: number | null;
|
2257
2257
|
};
|
2258
2258
|
assigneeId: string | null;
|
2259
|
+
note: string;
|
2259
2260
|
subject: string;
|
2260
2261
|
from: {
|
2261
2262
|
id: string;
|
@@ -2290,7 +2291,6 @@ export declare const RoomContractsValidationSchema: {
|
|
2290
2291
|
deletedAt: Date | null;
|
2291
2292
|
}[];
|
2292
2293
|
resolved: boolean;
|
2293
|
-
note: string;
|
2294
2294
|
mailId: string;
|
2295
2295
|
lastMessageId: string;
|
2296
2296
|
firstMessageId: string;
|
@@ -2671,6 +2671,7 @@ export declare const RoomContractsValidationSchema: {
|
|
2671
2671
|
notification_count: number | null;
|
2672
2672
|
};
|
2673
2673
|
assigneeId: string | null;
|
2674
|
+
note: string;
|
2674
2675
|
subject: string;
|
2675
2676
|
from: {
|
2676
2677
|
id: string;
|
@@ -2705,7 +2706,6 @@ export declare const RoomContractsValidationSchema: {
|
|
2705
2706
|
deletedAt: Date | null;
|
2706
2707
|
}[];
|
2707
2708
|
resolved: boolean;
|
2708
|
-
note: string;
|
2709
2709
|
mailId: string;
|
2710
2710
|
lastMessageId: string;
|
2711
2711
|
firstMessageId: string;
|
@@ -3086,6 +3086,7 @@ export declare const RoomContractsValidationSchema: {
|
|
3086
3086
|
notification_count: number | null;
|
3087
3087
|
};
|
3088
3088
|
assigneeId: string | null;
|
3089
|
+
note: string;
|
3089
3090
|
subject: string;
|
3090
3091
|
from: {
|
3091
3092
|
id: string;
|
@@ -3120,7 +3121,6 @@ export declare const RoomContractsValidationSchema: {
|
|
3120
3121
|
deletedAt: Date | null;
|
3121
3122
|
}[];
|
3122
3123
|
resolved: boolean;
|
3123
|
-
note: string;
|
3124
3124
|
mailId: string;
|
3125
3125
|
lastMessageId: string;
|
3126
3126
|
firstMessageId: string;
|
@@ -1899,6 +1899,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1899
1899
|
notification_count: number | null;
|
1900
1900
|
};
|
1901
1901
|
assigneeId: string | null;
|
1902
|
+
note: string;
|
1902
1903
|
subject: string;
|
1903
1904
|
from: {
|
1904
1905
|
id: string;
|
@@ -1933,7 +1934,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1933
1934
|
deletedAt: Date | null;
|
1934
1935
|
}[];
|
1935
1936
|
resolved: boolean;
|
1936
|
-
note: string;
|
1937
1937
|
mailId: string;
|
1938
1938
|
lastMessageId: string;
|
1939
1939
|
firstMessageId: string;
|
@@ -2309,6 +2309,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2309
2309
|
notification_count: number | null;
|
2310
2310
|
};
|
2311
2311
|
assigneeId: string | null;
|
2312
|
+
note: string;
|
2312
2313
|
subject: string;
|
2313
2314
|
from: {
|
2314
2315
|
id: string;
|
@@ -2343,7 +2344,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2343
2344
|
deletedAt: Date | null;
|
2344
2345
|
}[];
|
2345
2346
|
resolved: boolean;
|
2346
|
-
note: string;
|
2347
2347
|
mailId: string;
|
2348
2348
|
lastMessageId: string;
|
2349
2349
|
firstMessageId: string;
|