@kl1/contracts 1.0.66 → 1.0.68
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 +2328 -2331
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2328 -2331
- package/dist/index.mjs.map +1 -1
- package/dist/src/app/index.d.ts +17 -0
- package/dist/src/app/index.d.ts.map +1 -0
- package/dist/src/call-log/schema.d.ts +4 -4
- package/dist/src/call-log/validation.d.ts +2 -2
- package/dist/src/channel/index.d.ts +67 -707
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/channel/validation.d.ts +19 -0
- package/dist/src/channel/validation.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +600 -600
- package/dist/src/chat/schema.d.ts +74 -74
- package/dist/src/chat/validation.d.ts +128 -128
- package/dist/src/comment/index.d.ts +609 -609
- package/dist/src/comment/schema.d.ts +144 -144
- package/dist/src/contract.d.ts +3401 -4062
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +90 -90
- package/dist/src/cx-log/schema.d.ts +62 -62
- package/dist/src/dashboard/index.d.ts +16 -31
- package/dist/src/dashboard/index.d.ts.map +1 -1
- package/dist/src/dashboard/schema.d.ts +6 -15
- package/dist/src/dashboard/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +78 -78
- package/dist/src/line/index.d.ts +96 -96
- package/dist/src/line/schema.d.ts +19 -19
- package/dist/src/line/schema.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +24 -24
- package/dist/src/mail/mail-server.d.ts +216 -0
- package/dist/src/mail/mail-server.d.ts.map +1 -0
- package/dist/src/mail/room-contract.d.ts +24 -24
- package/dist/src/mail/schemas/room-validation.schema.d.ts +8 -8
- package/dist/src/mail/schemas/room.schema.d.ts +4 -4
- package/dist/src/messenger/index.d.ts +78 -78
- package/dist/src/platform-contact/schema.d.ts +30 -0
- package/dist/src/platform-contact/schema.d.ts.map +1 -0
- package/dist/src/telephony-cdr/index.d.ts +38 -38
- package/dist/src/telephony-cdr/schema.d.ts +6 -6
- package/dist/src/telephony-cdr/validation.d.ts +5 -5
- package/dist/src/telephony-cdr/validation.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +1084 -1084
- package/dist/src/ticket/schema.d.ts +72 -72
- package/dist/src/ticket/validation.d.ts +12 -12
- package/dist/src/user-presence-status-log/index.d.ts +4 -9
- package/dist/src/user-presence-status-log/index.d.ts.map +1 -1
- package/dist/src/user-presence-status-log/validation.d.ts +7 -0
- package/dist/src/user-presence-status-log/validation.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +19 -19
- package/dist/src/wrap-up-form/schema.d.ts +2 -2
- package/dist/src/wrap-up-form/validation.d.ts +3 -3
- package/package.json +1 -1
@@ -1841,7 +1841,7 @@ export declare const roomContract: {
|
|
1841
1841
|
updatedAt: Date;
|
1842
1842
|
deletedAt: Date | null;
|
1843
1843
|
}[];
|
1844
|
-
|
1844
|
+
resolved: boolean;
|
1845
1845
|
lastMessage: {
|
1846
1846
|
id: string;
|
1847
1847
|
direction: string;
|
@@ -1928,7 +1928,7 @@ export declare const roomContract: {
|
|
1928
1928
|
phone: string | null;
|
1929
1929
|
notification_count: number | null;
|
1930
1930
|
};
|
1931
|
-
|
1931
|
+
note: string;
|
1932
1932
|
assigneeId: string | null;
|
1933
1933
|
subject: string;
|
1934
1934
|
from: {
|
@@ -2251,7 +2251,7 @@ export declare const roomContract: {
|
|
2251
2251
|
updatedAt: Date;
|
2252
2252
|
deletedAt: Date | null;
|
2253
2253
|
}[];
|
2254
|
-
|
2254
|
+
resolved: boolean;
|
2255
2255
|
lastMessage: {
|
2256
2256
|
id: string;
|
2257
2257
|
direction: string;
|
@@ -2338,7 +2338,7 @@ export declare const roomContract: {
|
|
2338
2338
|
phone: string | null;
|
2339
2339
|
notification_count: number | null;
|
2340
2340
|
};
|
2341
|
-
|
2341
|
+
note: string;
|
2342
2342
|
assigneeId: string | null;
|
2343
2343
|
subject: string;
|
2344
2344
|
from: {
|
@@ -2666,7 +2666,7 @@ export declare const roomContract: {
|
|
2666
2666
|
updatedAt: Date;
|
2667
2667
|
deletedAt: Date | null;
|
2668
2668
|
}[];
|
2669
|
-
|
2669
|
+
resolved: boolean;
|
2670
2670
|
lastMessage: {
|
2671
2671
|
id: string;
|
2672
2672
|
direction: string;
|
@@ -2753,7 +2753,7 @@ export declare const roomContract: {
|
|
2753
2753
|
phone: string | null;
|
2754
2754
|
notification_count: number | null;
|
2755
2755
|
};
|
2756
|
-
|
2756
|
+
note: string;
|
2757
2757
|
assigneeId: string | null;
|
2758
2758
|
subject: string;
|
2759
2759
|
from: {
|
@@ -3082,7 +3082,7 @@ export declare const roomContract: {
|
|
3082
3082
|
updatedAt: Date;
|
3083
3083
|
deletedAt: Date | null;
|
3084
3084
|
}[];
|
3085
|
-
|
3085
|
+
resolved: boolean;
|
3086
3086
|
lastMessage: {
|
3087
3087
|
id: string;
|
3088
3088
|
direction: string;
|
@@ -3169,7 +3169,7 @@ export declare const roomContract: {
|
|
3169
3169
|
phone: string | null;
|
3170
3170
|
notification_count: number | null;
|
3171
3171
|
};
|
3172
|
-
|
3172
|
+
note: string;
|
3173
3173
|
assigneeId: string | null;
|
3174
3174
|
subject: string;
|
3175
3175
|
from: {
|
@@ -5268,7 +5268,7 @@ export declare const roomContract: {
|
|
5268
5268
|
updatedAt: Date;
|
5269
5269
|
deletedAt: Date | null;
|
5270
5270
|
}[];
|
5271
|
-
|
5271
|
+
resolved: boolean;
|
5272
5272
|
lastMessage: {
|
5273
5273
|
id: string;
|
5274
5274
|
direction: string;
|
@@ -5355,7 +5355,7 @@ export declare const roomContract: {
|
|
5355
5355
|
phone: string | null;
|
5356
5356
|
notification_count: number | null;
|
5357
5357
|
};
|
5358
|
-
|
5358
|
+
note: string;
|
5359
5359
|
assigneeId: string | null;
|
5360
5360
|
subject: string;
|
5361
5361
|
from: {
|
@@ -5678,7 +5678,7 @@ export declare const roomContract: {
|
|
5678
5678
|
updatedAt: Date;
|
5679
5679
|
deletedAt: Date | null;
|
5680
5680
|
}[];
|
5681
|
-
|
5681
|
+
resolved: boolean;
|
5682
5682
|
lastMessage: {
|
5683
5683
|
id: string;
|
5684
5684
|
direction: string;
|
@@ -5765,7 +5765,7 @@ export declare const roomContract: {
|
|
5765
5765
|
phone: string | null;
|
5766
5766
|
notification_count: number | null;
|
5767
5767
|
};
|
5768
|
-
|
5768
|
+
note: string;
|
5769
5769
|
assigneeId: string | null;
|
5770
5770
|
subject: string;
|
5771
5771
|
from: {
|
@@ -6090,7 +6090,7 @@ export declare const roomContract: {
|
|
6090
6090
|
updatedAt: Date;
|
6091
6091
|
deletedAt: Date | null;
|
6092
6092
|
}[];
|
6093
|
-
|
6093
|
+
resolved: boolean;
|
6094
6094
|
lastMessage: {
|
6095
6095
|
id: string;
|
6096
6096
|
direction: string;
|
@@ -6177,7 +6177,7 @@ export declare const roomContract: {
|
|
6177
6177
|
phone: string | null;
|
6178
6178
|
notification_count: number | null;
|
6179
6179
|
};
|
6180
|
-
|
6180
|
+
note: string;
|
6181
6181
|
assigneeId: string | null;
|
6182
6182
|
subject: string;
|
6183
6183
|
from: {
|
@@ -6503,7 +6503,7 @@ export declare const roomContract: {
|
|
6503
6503
|
updatedAt: Date;
|
6504
6504
|
deletedAt: Date | null;
|
6505
6505
|
}[];
|
6506
|
-
|
6506
|
+
resolved: boolean;
|
6507
6507
|
lastMessage: {
|
6508
6508
|
id: string;
|
6509
6509
|
direction: string;
|
@@ -6590,7 +6590,7 @@ export declare const roomContract: {
|
|
6590
6590
|
phone: string | null;
|
6591
6591
|
notification_count: number | null;
|
6592
6592
|
};
|
6593
|
-
|
6593
|
+
note: string;
|
6594
6594
|
assigneeId: string | null;
|
6595
6595
|
subject: string;
|
6596
6596
|
from: {
|
@@ -8965,7 +8965,7 @@ export declare const roomContract: {
|
|
8965
8965
|
updatedAt: Date;
|
8966
8966
|
deletedAt: Date | null;
|
8967
8967
|
}[];
|
8968
|
-
|
8968
|
+
resolved: boolean;
|
8969
8969
|
lastMessage: {
|
8970
8970
|
id: string;
|
8971
8971
|
direction: string;
|
@@ -9052,7 +9052,7 @@ export declare const roomContract: {
|
|
9052
9052
|
phone: string | null;
|
9053
9053
|
notification_count: number | null;
|
9054
9054
|
};
|
9055
|
-
|
9055
|
+
note: string;
|
9056
9056
|
assigneeId: string | null;
|
9057
9057
|
subject: string;
|
9058
9058
|
from: {
|
@@ -9375,7 +9375,7 @@ export declare const roomContract: {
|
|
9375
9375
|
updatedAt: Date;
|
9376
9376
|
deletedAt: Date | null;
|
9377
9377
|
}[];
|
9378
|
-
|
9378
|
+
resolved: boolean;
|
9379
9379
|
lastMessage: {
|
9380
9380
|
id: string;
|
9381
9381
|
direction: string;
|
@@ -9462,7 +9462,7 @@ export declare const roomContract: {
|
|
9462
9462
|
phone: string | null;
|
9463
9463
|
notification_count: number | null;
|
9464
9464
|
};
|
9465
|
-
|
9465
|
+
note: string;
|
9466
9466
|
assigneeId: string | null;
|
9467
9467
|
subject: string;
|
9468
9468
|
from: {
|
@@ -9787,7 +9787,7 @@ export declare const roomContract: {
|
|
9787
9787
|
updatedAt: Date;
|
9788
9788
|
deletedAt: Date | null;
|
9789
9789
|
}[];
|
9790
|
-
|
9790
|
+
resolved: boolean;
|
9791
9791
|
lastMessage: {
|
9792
9792
|
id: string;
|
9793
9793
|
direction: string;
|
@@ -9874,7 +9874,7 @@ export declare const roomContract: {
|
|
9874
9874
|
phone: string | null;
|
9875
9875
|
notification_count: number | null;
|
9876
9876
|
};
|
9877
|
-
|
9877
|
+
note: string;
|
9878
9878
|
assigneeId: string | null;
|
9879
9879
|
subject: string;
|
9880
9880
|
from: {
|
@@ -10200,7 +10200,7 @@ export declare const roomContract: {
|
|
10200
10200
|
updatedAt: Date;
|
10201
10201
|
deletedAt: Date | null;
|
10202
10202
|
}[];
|
10203
|
-
|
10203
|
+
resolved: boolean;
|
10204
10204
|
lastMessage: {
|
10205
10205
|
id: string;
|
10206
10206
|
direction: string;
|
@@ -10287,7 +10287,7 @@ export declare const roomContract: {
|
|
10287
10287
|
phone: string | null;
|
10288
10288
|
notification_count: number | null;
|
10289
10289
|
};
|
10290
|
-
|
10290
|
+
note: string;
|
10291
10291
|
assigneeId: string | null;
|
10292
10292
|
subject: string;
|
10293
10293
|
from: {
|
@@ -1759,7 +1759,7 @@ export declare const RoomContractsValidationSchema: {
|
|
1759
1759
|
updatedAt: Date;
|
1760
1760
|
deletedAt: Date | null;
|
1761
1761
|
}[];
|
1762
|
-
|
1762
|
+
resolved: boolean;
|
1763
1763
|
lastMessage: {
|
1764
1764
|
id: string;
|
1765
1765
|
direction: string;
|
@@ -1846,7 +1846,7 @@ export declare const RoomContractsValidationSchema: {
|
|
1846
1846
|
phone: string | null;
|
1847
1847
|
notification_count: number | null;
|
1848
1848
|
};
|
1849
|
-
|
1849
|
+
note: string;
|
1850
1850
|
assigneeId: string | null;
|
1851
1851
|
subject: string;
|
1852
1852
|
from: {
|
@@ -2169,7 +2169,7 @@ export declare const RoomContractsValidationSchema: {
|
|
2169
2169
|
updatedAt: Date;
|
2170
2170
|
deletedAt: Date | null;
|
2171
2171
|
}[];
|
2172
|
-
|
2172
|
+
resolved: boolean;
|
2173
2173
|
lastMessage: {
|
2174
2174
|
id: string;
|
2175
2175
|
direction: string;
|
@@ -2256,7 +2256,7 @@ export declare const RoomContractsValidationSchema: {
|
|
2256
2256
|
phone: string | null;
|
2257
2257
|
notification_count: number | null;
|
2258
2258
|
};
|
2259
|
-
|
2259
|
+
note: string;
|
2260
2260
|
assigneeId: string | null;
|
2261
2261
|
subject: string;
|
2262
2262
|
from: {
|
@@ -2584,7 +2584,7 @@ export declare const RoomContractsValidationSchema: {
|
|
2584
2584
|
updatedAt: Date;
|
2585
2585
|
deletedAt: Date | null;
|
2586
2586
|
}[];
|
2587
|
-
|
2587
|
+
resolved: boolean;
|
2588
2588
|
lastMessage: {
|
2589
2589
|
id: string;
|
2590
2590
|
direction: string;
|
@@ -2671,7 +2671,7 @@ export declare const RoomContractsValidationSchema: {
|
|
2671
2671
|
phone: string | null;
|
2672
2672
|
notification_count: number | null;
|
2673
2673
|
};
|
2674
|
-
|
2674
|
+
note: string;
|
2675
2675
|
assigneeId: string | null;
|
2676
2676
|
subject: string;
|
2677
2677
|
from: {
|
@@ -2999,7 +2999,7 @@ export declare const RoomContractsValidationSchema: {
|
|
2999
2999
|
updatedAt: Date;
|
3000
3000
|
deletedAt: Date | null;
|
3001
3001
|
}[];
|
3002
|
-
|
3002
|
+
resolved: boolean;
|
3003
3003
|
lastMessage: {
|
3004
3004
|
id: string;
|
3005
3005
|
direction: string;
|
@@ -3086,7 +3086,7 @@ export declare const RoomContractsValidationSchema: {
|
|
3086
3086
|
phone: string | null;
|
3087
3087
|
notification_count: number | null;
|
3088
3088
|
};
|
3089
|
-
|
3089
|
+
note: string;
|
3090
3090
|
assigneeId: string | null;
|
3091
3091
|
subject: string;
|
3092
3092
|
from: {
|
@@ -1812,7 +1812,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1812
1812
|
updatedAt: Date;
|
1813
1813
|
deletedAt: Date | null;
|
1814
1814
|
}[];
|
1815
|
-
|
1815
|
+
resolved: boolean;
|
1816
1816
|
lastMessage: {
|
1817
1817
|
id: string;
|
1818
1818
|
direction: string;
|
@@ -1899,7 +1899,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1899
1899
|
phone: string | null;
|
1900
1900
|
notification_count: number | null;
|
1901
1901
|
};
|
1902
|
-
|
1902
|
+
note: string;
|
1903
1903
|
assigneeId: string | null;
|
1904
1904
|
subject: string;
|
1905
1905
|
from: {
|
@@ -2222,7 +2222,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2222
2222
|
updatedAt: Date;
|
2223
2223
|
deletedAt: Date | null;
|
2224
2224
|
}[];
|
2225
|
-
|
2225
|
+
resolved: boolean;
|
2226
2226
|
lastMessage: {
|
2227
2227
|
id: string;
|
2228
2228
|
direction: string;
|
@@ -2309,7 +2309,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2309
2309
|
phone: string | null;
|
2310
2310
|
notification_count: number | null;
|
2311
2311
|
};
|
2312
|
-
|
2312
|
+
note: string;
|
2313
2313
|
assigneeId: string | null;
|
2314
2314
|
subject: string;
|
2315
2315
|
from: {
|