@kl1/contracts 1.0.34 → 1.0.36
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 +1030 -924
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1029 -924
- package/dist/index.mjs.map +1 -1
- package/dist/src/activity-log/index.d.ts +17 -10
- package/dist/src/activity-log/index.d.ts.map +1 -1
- package/dist/src/activity-log/schema.d.ts +17 -10
- package/dist/src/activity-log/schema.d.ts.map +1 -1
- package/dist/src/auth/index.d.ts +17 -10
- package/dist/src/auth/index.d.ts.map +1 -1
- package/dist/src/channel/index.d.ts +650 -51
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/channel/schema.d.ts +18 -12
- package/dist/src/channel/schema.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +12464 -12390
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +227 -110
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +1158 -1545
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/comment/index.d.ts +1128 -491
- package/dist/src/comment/index.d.ts.map +1 -1
- package/dist/src/comment/schema.d.ts +319 -140
- package/dist/src/comment/schema.d.ts.map +1 -1
- package/dist/src/contact/index.d.ts +77 -0
- package/dist/src/contact/index.d.ts.map +1 -1
- package/dist/src/contact/schema.d.ts +16 -0
- package/dist/src/contact/schema.d.ts.map +1 -1
- package/dist/src/contact/validation.d.ts +63 -0
- package/dist/src/contact/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +28088 -29053
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +243 -72
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +193 -56
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/extension/index.d.ts +29 -120
- package/dist/src/extension/index.d.ts.map +1 -1
- package/dist/src/extension/schema.d.ts +3 -0
- package/dist/src/extension/schema.d.ts.map +1 -1
- package/dist/src/extension/validation.d.ts +6 -0
- package/dist/src/extension/validation.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +7 -0
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +7 -0
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +5 -0
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +442 -100
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/telephony-agent-presence-status/index.d.ts +57 -34
- package/dist/src/telephony-agent-presence-status/index.d.ts.map +1 -1
- package/dist/src/telephony-agent-presence-status/schema.d.ts +17 -10
- package/dist/src/telephony-agent-presence-status/schema.d.ts.map +1 -1
- package/dist/src/telephony-cdr/schema.d.ts +53 -0
- package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
- package/dist/src/telephony-extension/index.d.ts +2 -0
- package/dist/src/telephony-extension/index.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +3022 -1253
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/schema.d.ts +236 -167
- package/dist/src/ticket/schema.d.ts.map +1 -1
- package/dist/src/upload/schema.d.ts +3 -0
- package/dist/src/upload/schema.d.ts.map +1 -1
- package/dist/src/user/index.d.ts +57 -34
- package/dist/src/user/index.d.ts.map +1 -1
- package/dist/src/user/schema.d.ts +11 -6
- package/dist/src/user/schema.d.ts.map +1 -1
- package/dist/src/user-presence-status-log/index.d.ts +12 -8
- package/dist/src/user-presence-status-log/index.d.ts.map +1 -1
- package/dist/src/user-presence-status-log/schema.d.ts +17 -10
- package/dist/src/user-presence-status-log/schema.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/src/app/index.d.ts +0 -17
- package/dist/src/app/index.d.ts.map +0 -1
- package/dist/src/mail/mail-server.d.ts +0 -216
- package/dist/src/mail/mail-server.d.ts.map +0 -1
- package/dist/src/platform-contact/schema.d.ts +0 -30
- package/dist/src/platform-contact/schema.d.ts.map +0 -1
@@ -357,6 +357,7 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
357
357
|
fileName: z.ZodString;
|
358
358
|
fileSize: z.ZodNumber;
|
359
359
|
fileKey: z.ZodString;
|
360
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
360
361
|
}, "strip", z.ZodTypeAny, {
|
361
362
|
id: string;
|
362
363
|
createdAt: Date;
|
@@ -366,6 +367,7 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
366
367
|
fileKey: string;
|
367
368
|
bucketName: string;
|
368
369
|
fileSize: number;
|
370
|
+
fileUrl: string | null;
|
369
371
|
}, {
|
370
372
|
id: string;
|
371
373
|
createdAt: Date;
|
@@ -375,6 +377,7 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
375
377
|
fileKey: string;
|
376
378
|
bucketName: string;
|
377
379
|
fileSize: number;
|
380
|
+
fileUrl: string | null;
|
378
381
|
}>;
|
379
382
|
}, "strip", z.ZodTypeAny, {
|
380
383
|
id: string;
|
@@ -391,6 +394,7 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
391
394
|
fileKey: string;
|
392
395
|
bucketName: string;
|
393
396
|
fileSize: number;
|
397
|
+
fileUrl: string | null;
|
394
398
|
};
|
395
399
|
}, {
|
396
400
|
id: string;
|
@@ -407,6 +411,7 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
407
411
|
fileKey: string;
|
408
412
|
bucketName: string;
|
409
413
|
fileSize: number;
|
414
|
+
fileUrl: string | null;
|
410
415
|
};
|
411
416
|
}>, "many">;
|
412
417
|
}, "strip", z.ZodTypeAny, {
|
@@ -447,6 +452,7 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
447
452
|
fileKey: string;
|
448
453
|
bucketName: string;
|
449
454
|
fileSize: number;
|
455
|
+
fileUrl: string | null;
|
450
456
|
};
|
451
457
|
}[];
|
452
458
|
}, {
|
@@ -487,6 +493,7 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
487
493
|
fileKey: string;
|
488
494
|
bucketName: string;
|
489
495
|
fileSize: number;
|
496
|
+
fileUrl: string | null;
|
490
497
|
};
|
491
498
|
}[];
|
492
499
|
}>, "many">;
|
@@ -640,6 +647,7 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
640
647
|
fileKey: string;
|
641
648
|
bucketName: string;
|
642
649
|
fileSize: number;
|
650
|
+
fileUrl: string | null;
|
643
651
|
};
|
644
652
|
}[];
|
645
653
|
}[];
|
@@ -741,6 +749,7 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
741
749
|
fileKey: string;
|
742
750
|
bucketName: string;
|
743
751
|
fileSize: number;
|
752
|
+
fileUrl: string | null;
|
744
753
|
};
|
745
754
|
}[];
|
746
755
|
}[];
|
@@ -856,6 +865,7 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
856
865
|
fileKey: string;
|
857
866
|
bucketName: string;
|
858
867
|
fileSize: number;
|
868
|
+
fileUrl: string | null;
|
859
869
|
};
|
860
870
|
}[];
|
861
871
|
}[];
|
@@ -972,6 +982,7 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
972
982
|
fileKey: string;
|
973
983
|
bucketName: string;
|
974
984
|
fileSize: number;
|
985
|
+
fileUrl: string | null;
|
975
986
|
};
|
976
987
|
}[];
|
977
988
|
}[];
|
@@ -1370,6 +1381,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1370
1381
|
fileName: z.ZodString;
|
1371
1382
|
fileSize: z.ZodNumber;
|
1372
1383
|
fileKey: z.ZodString;
|
1384
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
1373
1385
|
}, "strip", z.ZodTypeAny, {
|
1374
1386
|
id: string;
|
1375
1387
|
createdAt: Date;
|
@@ -1379,6 +1391,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1379
1391
|
fileKey: string;
|
1380
1392
|
bucketName: string;
|
1381
1393
|
fileSize: number;
|
1394
|
+
fileUrl: string | null;
|
1382
1395
|
}, {
|
1383
1396
|
id: string;
|
1384
1397
|
createdAt: Date;
|
@@ -1388,6 +1401,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1388
1401
|
fileKey: string;
|
1389
1402
|
bucketName: string;
|
1390
1403
|
fileSize: number;
|
1404
|
+
fileUrl: string | null;
|
1391
1405
|
}>;
|
1392
1406
|
}, "strip", z.ZodTypeAny, {
|
1393
1407
|
id: string;
|
@@ -1404,6 +1418,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1404
1418
|
fileKey: string;
|
1405
1419
|
bucketName: string;
|
1406
1420
|
fileSize: number;
|
1421
|
+
fileUrl: string | null;
|
1407
1422
|
};
|
1408
1423
|
}, {
|
1409
1424
|
id: string;
|
@@ -1420,6 +1435,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1420
1435
|
fileKey: string;
|
1421
1436
|
bucketName: string;
|
1422
1437
|
fileSize: number;
|
1438
|
+
fileUrl: string | null;
|
1423
1439
|
};
|
1424
1440
|
}>, "many">;
|
1425
1441
|
}, "strip", z.ZodTypeAny, {
|
@@ -1460,6 +1476,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1460
1476
|
fileKey: string;
|
1461
1477
|
bucketName: string;
|
1462
1478
|
fileSize: number;
|
1479
|
+
fileUrl: string | null;
|
1463
1480
|
};
|
1464
1481
|
}[];
|
1465
1482
|
}, {
|
@@ -1500,6 +1517,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1500
1517
|
fileKey: string;
|
1501
1518
|
bucketName: string;
|
1502
1519
|
fileSize: number;
|
1520
|
+
fileUrl: string | null;
|
1503
1521
|
};
|
1504
1522
|
}[];
|
1505
1523
|
}>, "many">;
|
@@ -1653,6 +1671,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1653
1671
|
fileKey: string;
|
1654
1672
|
bucketName: string;
|
1655
1673
|
fileSize: number;
|
1674
|
+
fileUrl: string | null;
|
1656
1675
|
};
|
1657
1676
|
}[];
|
1658
1677
|
}[];
|
@@ -1754,6 +1773,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1754
1773
|
fileKey: string;
|
1755
1774
|
bucketName: string;
|
1756
1775
|
fileSize: number;
|
1776
|
+
fileUrl: string | null;
|
1757
1777
|
};
|
1758
1778
|
}[];
|
1759
1779
|
}[];
|
@@ -1869,6 +1889,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1869
1889
|
fileKey: string;
|
1870
1890
|
bucketName: string;
|
1871
1891
|
fileSize: number;
|
1892
|
+
fileUrl: string | null;
|
1872
1893
|
};
|
1873
1894
|
}[];
|
1874
1895
|
}[];
|
@@ -1985,6 +2006,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1985
2006
|
fileKey: string;
|
1986
2007
|
bucketName: string;
|
1987
2008
|
fileSize: number;
|
2009
|
+
fileUrl: string | null;
|
1988
2010
|
};
|
1989
2011
|
}[];
|
1990
2012
|
}[];
|
@@ -2123,7 +2145,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2123
2145
|
displayName: string;
|
2124
2146
|
}[];
|
2125
2147
|
}>, "many">;
|
2126
|
-
extension: z.
|
2148
|
+
extension: z.ZodObject<{
|
2127
2149
|
id: z.ZodString;
|
2128
2150
|
createdAt: z.ZodDate;
|
2129
2151
|
updatedAt: z.ZodDate;
|
@@ -2131,6 +2153,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2131
2153
|
userId: z.ZodNullable<z.ZodString>;
|
2132
2154
|
sipServerUrl: z.ZodString;
|
2133
2155
|
sipUserName: z.ZodString;
|
2156
|
+
webphoneLoginUser: z.ZodString;
|
2134
2157
|
extensionId: z.ZodNumber;
|
2135
2158
|
extensionName: z.ZodString;
|
2136
2159
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -2142,6 +2165,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2142
2165
|
userId: string | null;
|
2143
2166
|
sipServerUrl: string;
|
2144
2167
|
sipUserName: string;
|
2168
|
+
webphoneLoginUser: string;
|
2145
2169
|
extensionId: number;
|
2146
2170
|
extensionName: string;
|
2147
2171
|
telephonySignature: string | null;
|
@@ -2153,10 +2177,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2153
2177
|
userId: string | null;
|
2154
2178
|
sipServerUrl: string;
|
2155
2179
|
sipUserName: string;
|
2180
|
+
webphoneLoginUser: string;
|
2156
2181
|
extensionId: number;
|
2157
2182
|
extensionName: string;
|
2158
2183
|
telephonySignature: string | null;
|
2159
|
-
}
|
2184
|
+
}>;
|
2160
2185
|
}, "strip", z.ZodTypeAny, {
|
2161
2186
|
id: string;
|
2162
2187
|
address: string | null;
|
@@ -2187,7 +2212,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2187
2212
|
displayName: string;
|
2188
2213
|
}[];
|
2189
2214
|
}[];
|
2190
|
-
extension
|
2215
|
+
extension: {
|
2191
2216
|
id: string;
|
2192
2217
|
createdAt: Date;
|
2193
2218
|
updatedAt: Date;
|
@@ -2195,10 +2220,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2195
2220
|
userId: string | null;
|
2196
2221
|
sipServerUrl: string;
|
2197
2222
|
sipUserName: string;
|
2223
|
+
webphoneLoginUser: string;
|
2198
2224
|
extensionId: number;
|
2199
2225
|
extensionName: string;
|
2200
2226
|
telephonySignature: string | null;
|
2201
|
-
}
|
2227
|
+
};
|
2202
2228
|
}, {
|
2203
2229
|
id: string;
|
2204
2230
|
address: string | null;
|
@@ -2229,7 +2255,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2229
2255
|
displayName: string;
|
2230
2256
|
}[];
|
2231
2257
|
}[];
|
2232
|
-
extension
|
2258
|
+
extension: {
|
2233
2259
|
id: string;
|
2234
2260
|
createdAt: Date;
|
2235
2261
|
updatedAt: Date;
|
@@ -2237,10 +2263,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2237
2263
|
userId: string | null;
|
2238
2264
|
sipServerUrl: string;
|
2239
2265
|
sipUserName: string;
|
2266
|
+
webphoneLoginUser: string;
|
2240
2267
|
extensionId: number;
|
2241
2268
|
extensionName: string;
|
2242
2269
|
telephonySignature: string | null;
|
2243
|
-
}
|
2270
|
+
};
|
2244
2271
|
}>;
|
2245
2272
|
assignee: z.ZodObject<{
|
2246
2273
|
id: z.ZodString;
|
@@ -2322,7 +2349,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2322
2349
|
displayName: string;
|
2323
2350
|
}[];
|
2324
2351
|
}>, "many">;
|
2325
|
-
extension: z.
|
2352
|
+
extension: z.ZodObject<{
|
2326
2353
|
id: z.ZodString;
|
2327
2354
|
createdAt: z.ZodDate;
|
2328
2355
|
updatedAt: z.ZodDate;
|
@@ -2330,6 +2357,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2330
2357
|
userId: z.ZodNullable<z.ZodString>;
|
2331
2358
|
sipServerUrl: z.ZodString;
|
2332
2359
|
sipUserName: z.ZodString;
|
2360
|
+
webphoneLoginUser: z.ZodString;
|
2333
2361
|
extensionId: z.ZodNumber;
|
2334
2362
|
extensionName: z.ZodString;
|
2335
2363
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -2341,6 +2369,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2341
2369
|
userId: string | null;
|
2342
2370
|
sipServerUrl: string;
|
2343
2371
|
sipUserName: string;
|
2372
|
+
webphoneLoginUser: string;
|
2344
2373
|
extensionId: number;
|
2345
2374
|
extensionName: string;
|
2346
2375
|
telephonySignature: string | null;
|
@@ -2352,10 +2381,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2352
2381
|
userId: string | null;
|
2353
2382
|
sipServerUrl: string;
|
2354
2383
|
sipUserName: string;
|
2384
|
+
webphoneLoginUser: string;
|
2355
2385
|
extensionId: number;
|
2356
2386
|
extensionName: string;
|
2357
2387
|
telephonySignature: string | null;
|
2358
|
-
}
|
2388
|
+
}>;
|
2359
2389
|
}, "strip", z.ZodTypeAny, {
|
2360
2390
|
id: string;
|
2361
2391
|
address: string | null;
|
@@ -2386,7 +2416,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2386
2416
|
displayName: string;
|
2387
2417
|
}[];
|
2388
2418
|
}[];
|
2389
|
-
extension
|
2419
|
+
extension: {
|
2390
2420
|
id: string;
|
2391
2421
|
createdAt: Date;
|
2392
2422
|
updatedAt: Date;
|
@@ -2394,10 +2424,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2394
2424
|
userId: string | null;
|
2395
2425
|
sipServerUrl: string;
|
2396
2426
|
sipUserName: string;
|
2427
|
+
webphoneLoginUser: string;
|
2397
2428
|
extensionId: number;
|
2398
2429
|
extensionName: string;
|
2399
2430
|
telephonySignature: string | null;
|
2400
|
-
}
|
2431
|
+
};
|
2401
2432
|
}, {
|
2402
2433
|
id: string;
|
2403
2434
|
address: string | null;
|
@@ -2428,7 +2459,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2428
2459
|
displayName: string;
|
2429
2460
|
}[];
|
2430
2461
|
}[];
|
2431
|
-
extension
|
2462
|
+
extension: {
|
2432
2463
|
id: string;
|
2433
2464
|
createdAt: Date;
|
2434
2465
|
updatedAt: Date;
|
@@ -2436,10 +2467,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2436
2467
|
userId: string | null;
|
2437
2468
|
sipServerUrl: string;
|
2438
2469
|
sipUserName: string;
|
2470
|
+
webphoneLoginUser: string;
|
2439
2471
|
extensionId: number;
|
2440
2472
|
extensionName: string;
|
2441
2473
|
telephonySignature: string | null;
|
2442
|
-
}
|
2474
|
+
};
|
2443
2475
|
}>;
|
2444
2476
|
channel: z.ZodOptional<z.ZodObject<{
|
2445
2477
|
id: z.ZodOptional<z.ZodString>;
|
@@ -2550,7 +2582,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2550
2582
|
displayName: string;
|
2551
2583
|
}[];
|
2552
2584
|
}>, "many">;
|
2553
|
-
extension: z.
|
2585
|
+
extension: z.ZodObject<{
|
2554
2586
|
id: z.ZodString;
|
2555
2587
|
createdAt: z.ZodDate;
|
2556
2588
|
updatedAt: z.ZodDate;
|
@@ -2558,6 +2590,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2558
2590
|
userId: z.ZodNullable<z.ZodString>;
|
2559
2591
|
sipServerUrl: z.ZodString;
|
2560
2592
|
sipUserName: z.ZodString;
|
2593
|
+
webphoneLoginUser: z.ZodString;
|
2561
2594
|
extensionId: z.ZodNumber;
|
2562
2595
|
extensionName: z.ZodString;
|
2563
2596
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -2569,6 +2602,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2569
2602
|
userId: string | null;
|
2570
2603
|
sipServerUrl: string;
|
2571
2604
|
sipUserName: string;
|
2605
|
+
webphoneLoginUser: string;
|
2572
2606
|
extensionId: number;
|
2573
2607
|
extensionName: string;
|
2574
2608
|
telephonySignature: string | null;
|
@@ -2580,10 +2614,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2580
2614
|
userId: string | null;
|
2581
2615
|
sipServerUrl: string;
|
2582
2616
|
sipUserName: string;
|
2617
|
+
webphoneLoginUser: string;
|
2583
2618
|
extensionId: number;
|
2584
2619
|
extensionName: string;
|
2585
2620
|
telephonySignature: string | null;
|
2586
|
-
}
|
2621
|
+
}>;
|
2587
2622
|
}, "strip", z.ZodTypeAny, {
|
2588
2623
|
id: string;
|
2589
2624
|
address: string | null;
|
@@ -2614,7 +2649,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2614
2649
|
displayName: string;
|
2615
2650
|
}[];
|
2616
2651
|
}[];
|
2617
|
-
extension
|
2652
|
+
extension: {
|
2618
2653
|
id: string;
|
2619
2654
|
createdAt: Date;
|
2620
2655
|
updatedAt: Date;
|
@@ -2622,10 +2657,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2622
2657
|
userId: string | null;
|
2623
2658
|
sipServerUrl: string;
|
2624
2659
|
sipUserName: string;
|
2660
|
+
webphoneLoginUser: string;
|
2625
2661
|
extensionId: number;
|
2626
2662
|
extensionName: string;
|
2627
2663
|
telephonySignature: string | null;
|
2628
|
-
}
|
2664
|
+
};
|
2629
2665
|
}, {
|
2630
2666
|
id: string;
|
2631
2667
|
address: string | null;
|
@@ -2656,7 +2692,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2656
2692
|
displayName: string;
|
2657
2693
|
}[];
|
2658
2694
|
}[];
|
2659
|
-
extension
|
2695
|
+
extension: {
|
2660
2696
|
id: string;
|
2661
2697
|
createdAt: Date;
|
2662
2698
|
updatedAt: Date;
|
@@ -2664,10 +2700,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2664
2700
|
userId: string | null;
|
2665
2701
|
sipServerUrl: string;
|
2666
2702
|
sipUserName: string;
|
2703
|
+
webphoneLoginUser: string;
|
2667
2704
|
extensionId: number;
|
2668
2705
|
extensionName: string;
|
2669
2706
|
telephonySignature: string | null;
|
2670
|
-
}
|
2707
|
+
};
|
2671
2708
|
}>>;
|
2672
2709
|
}, "strip", z.ZodTypeAny, {
|
2673
2710
|
id?: string | undefined;
|
@@ -2718,7 +2755,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2718
2755
|
displayName: string;
|
2719
2756
|
}[];
|
2720
2757
|
}[];
|
2721
|
-
extension
|
2758
|
+
extension: {
|
2722
2759
|
id: string;
|
2723
2760
|
createdAt: Date;
|
2724
2761
|
updatedAt: Date;
|
@@ -2726,10 +2763,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2726
2763
|
userId: string | null;
|
2727
2764
|
sipServerUrl: string;
|
2728
2765
|
sipUserName: string;
|
2766
|
+
webphoneLoginUser: string;
|
2729
2767
|
extensionId: number;
|
2730
2768
|
extensionName: string;
|
2731
2769
|
telephonySignature: string | null;
|
2732
|
-
}
|
2770
|
+
};
|
2733
2771
|
} | undefined;
|
2734
2772
|
}, {
|
2735
2773
|
id?: string | undefined;
|
@@ -2780,7 +2818,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2780
2818
|
displayName: string;
|
2781
2819
|
}[];
|
2782
2820
|
}[];
|
2783
|
-
extension
|
2821
|
+
extension: {
|
2784
2822
|
id: string;
|
2785
2823
|
createdAt: Date;
|
2786
2824
|
updatedAt: Date;
|
@@ -2788,10 +2826,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2788
2826
|
userId: string | null;
|
2789
2827
|
sipServerUrl: string;
|
2790
2828
|
sipUserName: string;
|
2829
|
+
webphoneLoginUser: string;
|
2791
2830
|
extensionId: number;
|
2792
2831
|
extensionName: string;
|
2793
2832
|
telephonySignature: string | null;
|
2794
|
-
}
|
2833
|
+
};
|
2795
2834
|
} | undefined;
|
2796
2835
|
}>>;
|
2797
2836
|
cxlog: z.ZodObject<{
|
@@ -2977,7 +3016,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2977
3016
|
displayName: string;
|
2978
3017
|
}[];
|
2979
3018
|
}[];
|
2980
|
-
extension
|
3019
|
+
extension: {
|
2981
3020
|
id: string;
|
2982
3021
|
createdAt: Date;
|
2983
3022
|
updatedAt: Date;
|
@@ -2985,10 +3024,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2985
3024
|
userId: string | null;
|
2986
3025
|
sipServerUrl: string;
|
2987
3026
|
sipUserName: string;
|
3027
|
+
webphoneLoginUser: string;
|
2988
3028
|
extensionId: number;
|
2989
3029
|
extensionName: string;
|
2990
3030
|
telephonySignature: string | null;
|
2991
|
-
}
|
3031
|
+
};
|
2992
3032
|
};
|
2993
3033
|
firstResponseTime: number;
|
2994
3034
|
lastMessage: string;
|
@@ -3056,6 +3096,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3056
3096
|
fileKey: string;
|
3057
3097
|
bucketName: string;
|
3058
3098
|
fileSize: number;
|
3099
|
+
fileUrl: string | null;
|
3059
3100
|
};
|
3060
3101
|
}[];
|
3061
3102
|
}[];
|
@@ -3144,7 +3185,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3144
3185
|
displayName: string;
|
3145
3186
|
}[];
|
3146
3187
|
}[];
|
3147
|
-
extension
|
3188
|
+
extension: {
|
3148
3189
|
id: string;
|
3149
3190
|
createdAt: Date;
|
3150
3191
|
updatedAt: Date;
|
@@ -3152,10 +3193,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3152
3193
|
userId: string | null;
|
3153
3194
|
sipServerUrl: string;
|
3154
3195
|
sipUserName: string;
|
3196
|
+
webphoneLoginUser: string;
|
3155
3197
|
extensionId: number;
|
3156
3198
|
extensionName: string;
|
3157
3199
|
telephonySignature: string | null;
|
3158
|
-
}
|
3200
|
+
};
|
3159
3201
|
};
|
3160
3202
|
cxlog: {
|
3161
3203
|
id: string;
|
@@ -3241,7 +3283,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3241
3283
|
displayName: string;
|
3242
3284
|
}[];
|
3243
3285
|
}[];
|
3244
|
-
extension
|
3286
|
+
extension: {
|
3245
3287
|
id: string;
|
3246
3288
|
createdAt: Date;
|
3247
3289
|
updatedAt: Date;
|
@@ -3249,10 +3291,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3249
3291
|
userId: string | null;
|
3250
3292
|
sipServerUrl: string;
|
3251
3293
|
sipUserName: string;
|
3294
|
+
webphoneLoginUser: string;
|
3252
3295
|
extensionId: number;
|
3253
3296
|
extensionName: string;
|
3254
3297
|
telephonySignature: string | null;
|
3255
|
-
}
|
3298
|
+
};
|
3256
3299
|
} | undefined;
|
3257
3300
|
} | undefined;
|
3258
3301
|
}, {
|
@@ -3291,7 +3334,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3291
3334
|
displayName: string;
|
3292
3335
|
}[];
|
3293
3336
|
}[];
|
3294
|
-
extension
|
3337
|
+
extension: {
|
3295
3338
|
id: string;
|
3296
3339
|
createdAt: Date;
|
3297
3340
|
updatedAt: Date;
|
@@ -3299,10 +3342,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3299
3342
|
userId: string | null;
|
3300
3343
|
sipServerUrl: string;
|
3301
3344
|
sipUserName: string;
|
3345
|
+
webphoneLoginUser: string;
|
3302
3346
|
extensionId: number;
|
3303
3347
|
extensionName: string;
|
3304
3348
|
telephonySignature: string | null;
|
3305
|
-
}
|
3349
|
+
};
|
3306
3350
|
};
|
3307
3351
|
firstResponseTime: number;
|
3308
3352
|
lastMessage: string;
|
@@ -3370,6 +3414,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3370
3414
|
fileKey: string;
|
3371
3415
|
bucketName: string;
|
3372
3416
|
fileSize: number;
|
3417
|
+
fileUrl: string | null;
|
3373
3418
|
};
|
3374
3419
|
}[];
|
3375
3420
|
}[];
|
@@ -3458,7 +3503,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3458
3503
|
displayName: string;
|
3459
3504
|
}[];
|
3460
3505
|
}[];
|
3461
|
-
extension
|
3506
|
+
extension: {
|
3462
3507
|
id: string;
|
3463
3508
|
createdAt: Date;
|
3464
3509
|
updatedAt: Date;
|
@@ -3466,10 +3511,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3466
3511
|
userId: string | null;
|
3467
3512
|
sipServerUrl: string;
|
3468
3513
|
sipUserName: string;
|
3514
|
+
webphoneLoginUser: string;
|
3469
3515
|
extensionId: number;
|
3470
3516
|
extensionName: string;
|
3471
3517
|
telephonySignature: string | null;
|
3472
|
-
}
|
3518
|
+
};
|
3473
3519
|
};
|
3474
3520
|
cxlog: {
|
3475
3521
|
id: string;
|
@@ -3555,7 +3601,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3555
3601
|
displayName: string;
|
3556
3602
|
}[];
|
3557
3603
|
}[];
|
3558
|
-
extension
|
3604
|
+
extension: {
|
3559
3605
|
id: string;
|
3560
3606
|
createdAt: Date;
|
3561
3607
|
updatedAt: Date;
|
@@ -3563,10 +3609,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3563
3609
|
userId: string | null;
|
3564
3610
|
sipServerUrl: string;
|
3565
3611
|
sipUserName: string;
|
3612
|
+
webphoneLoginUser: string;
|
3566
3613
|
extensionId: number;
|
3567
3614
|
extensionName: string;
|
3568
3615
|
telephonySignature: string | null;
|
3569
|
-
}
|
3616
|
+
};
|
3570
3617
|
} | undefined;
|
3571
3618
|
} | undefined;
|
3572
3619
|
}>;
|
@@ -3928,6 +3975,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
3928
3975
|
fileName: z.ZodString;
|
3929
3976
|
fileSize: z.ZodNumber;
|
3930
3977
|
fileKey: z.ZodString;
|
3978
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
3931
3979
|
}, "strip", z.ZodTypeAny, {
|
3932
3980
|
id: string;
|
3933
3981
|
createdAt: Date;
|
@@ -3937,6 +3985,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
3937
3985
|
fileKey: string;
|
3938
3986
|
bucketName: string;
|
3939
3987
|
fileSize: number;
|
3988
|
+
fileUrl: string | null;
|
3940
3989
|
}, {
|
3941
3990
|
id: string;
|
3942
3991
|
createdAt: Date;
|
@@ -3946,6 +3995,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
3946
3995
|
fileKey: string;
|
3947
3996
|
bucketName: string;
|
3948
3997
|
fileSize: number;
|
3998
|
+
fileUrl: string | null;
|
3949
3999
|
}>;
|
3950
4000
|
}, "strip", z.ZodTypeAny, {
|
3951
4001
|
id: string;
|
@@ -3962,6 +4012,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
3962
4012
|
fileKey: string;
|
3963
4013
|
bucketName: string;
|
3964
4014
|
fileSize: number;
|
4015
|
+
fileUrl: string | null;
|
3965
4016
|
};
|
3966
4017
|
}, {
|
3967
4018
|
id: string;
|
@@ -3978,6 +4029,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
3978
4029
|
fileKey: string;
|
3979
4030
|
bucketName: string;
|
3980
4031
|
fileSize: number;
|
4032
|
+
fileUrl: string | null;
|
3981
4033
|
};
|
3982
4034
|
}>, "many">;
|
3983
4035
|
}, "strip", z.ZodTypeAny, {
|
@@ -4018,6 +4070,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4018
4070
|
fileKey: string;
|
4019
4071
|
bucketName: string;
|
4020
4072
|
fileSize: number;
|
4073
|
+
fileUrl: string | null;
|
4021
4074
|
};
|
4022
4075
|
}[];
|
4023
4076
|
}, {
|
@@ -4058,6 +4111,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4058
4111
|
fileKey: string;
|
4059
4112
|
bucketName: string;
|
4060
4113
|
fileSize: number;
|
4114
|
+
fileUrl: string | null;
|
4061
4115
|
};
|
4062
4116
|
}[];
|
4063
4117
|
}>, "many">;
|
@@ -4211,6 +4265,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4211
4265
|
fileKey: string;
|
4212
4266
|
bucketName: string;
|
4213
4267
|
fileSize: number;
|
4268
|
+
fileUrl: string | null;
|
4214
4269
|
};
|
4215
4270
|
}[];
|
4216
4271
|
}[];
|
@@ -4312,6 +4367,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4312
4367
|
fileKey: string;
|
4313
4368
|
bucketName: string;
|
4314
4369
|
fileSize: number;
|
4370
|
+
fileUrl: string | null;
|
4315
4371
|
};
|
4316
4372
|
}[];
|
4317
4373
|
}[];
|
@@ -4427,6 +4483,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4427
4483
|
fileKey: string;
|
4428
4484
|
bucketName: string;
|
4429
4485
|
fileSize: number;
|
4486
|
+
fileUrl: string | null;
|
4430
4487
|
};
|
4431
4488
|
}[];
|
4432
4489
|
}[];
|
@@ -4543,6 +4600,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4543
4600
|
fileKey: string;
|
4544
4601
|
bucketName: string;
|
4545
4602
|
fileSize: number;
|
4603
|
+
fileUrl: string | null;
|
4546
4604
|
};
|
4547
4605
|
}[];
|
4548
4606
|
}[];
|
@@ -4681,7 +4739,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4681
4739
|
displayName: string;
|
4682
4740
|
}[];
|
4683
4741
|
}>, "many">;
|
4684
|
-
extension: z.
|
4742
|
+
extension: z.ZodObject<{
|
4685
4743
|
id: z.ZodString;
|
4686
4744
|
createdAt: z.ZodDate;
|
4687
4745
|
updatedAt: z.ZodDate;
|
@@ -4689,6 +4747,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4689
4747
|
userId: z.ZodNullable<z.ZodString>;
|
4690
4748
|
sipServerUrl: z.ZodString;
|
4691
4749
|
sipUserName: z.ZodString;
|
4750
|
+
webphoneLoginUser: z.ZodString;
|
4692
4751
|
extensionId: z.ZodNumber;
|
4693
4752
|
extensionName: z.ZodString;
|
4694
4753
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -4700,6 +4759,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4700
4759
|
userId: string | null;
|
4701
4760
|
sipServerUrl: string;
|
4702
4761
|
sipUserName: string;
|
4762
|
+
webphoneLoginUser: string;
|
4703
4763
|
extensionId: number;
|
4704
4764
|
extensionName: string;
|
4705
4765
|
telephonySignature: string | null;
|
@@ -4711,10 +4771,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4711
4771
|
userId: string | null;
|
4712
4772
|
sipServerUrl: string;
|
4713
4773
|
sipUserName: string;
|
4774
|
+
webphoneLoginUser: string;
|
4714
4775
|
extensionId: number;
|
4715
4776
|
extensionName: string;
|
4716
4777
|
telephonySignature: string | null;
|
4717
|
-
}
|
4778
|
+
}>;
|
4718
4779
|
}, "strip", z.ZodTypeAny, {
|
4719
4780
|
id: string;
|
4720
4781
|
address: string | null;
|
@@ -4745,7 +4806,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4745
4806
|
displayName: string;
|
4746
4807
|
}[];
|
4747
4808
|
}[];
|
4748
|
-
extension
|
4809
|
+
extension: {
|
4749
4810
|
id: string;
|
4750
4811
|
createdAt: Date;
|
4751
4812
|
updatedAt: Date;
|
@@ -4753,10 +4814,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4753
4814
|
userId: string | null;
|
4754
4815
|
sipServerUrl: string;
|
4755
4816
|
sipUserName: string;
|
4817
|
+
webphoneLoginUser: string;
|
4756
4818
|
extensionId: number;
|
4757
4819
|
extensionName: string;
|
4758
4820
|
telephonySignature: string | null;
|
4759
|
-
}
|
4821
|
+
};
|
4760
4822
|
}, {
|
4761
4823
|
id: string;
|
4762
4824
|
address: string | null;
|
@@ -4787,7 +4849,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4787
4849
|
displayName: string;
|
4788
4850
|
}[];
|
4789
4851
|
}[];
|
4790
|
-
extension
|
4852
|
+
extension: {
|
4791
4853
|
id: string;
|
4792
4854
|
createdAt: Date;
|
4793
4855
|
updatedAt: Date;
|
@@ -4795,10 +4857,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4795
4857
|
userId: string | null;
|
4796
4858
|
sipServerUrl: string;
|
4797
4859
|
sipUserName: string;
|
4860
|
+
webphoneLoginUser: string;
|
4798
4861
|
extensionId: number;
|
4799
4862
|
extensionName: string;
|
4800
4863
|
telephonySignature: string | null;
|
4801
|
-
}
|
4864
|
+
};
|
4802
4865
|
}>;
|
4803
4866
|
assignee: z.ZodObject<{
|
4804
4867
|
id: z.ZodString;
|
@@ -4880,7 +4943,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4880
4943
|
displayName: string;
|
4881
4944
|
}[];
|
4882
4945
|
}>, "many">;
|
4883
|
-
extension: z.
|
4946
|
+
extension: z.ZodObject<{
|
4884
4947
|
id: z.ZodString;
|
4885
4948
|
createdAt: z.ZodDate;
|
4886
4949
|
updatedAt: z.ZodDate;
|
@@ -4888,6 +4951,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4888
4951
|
userId: z.ZodNullable<z.ZodString>;
|
4889
4952
|
sipServerUrl: z.ZodString;
|
4890
4953
|
sipUserName: z.ZodString;
|
4954
|
+
webphoneLoginUser: z.ZodString;
|
4891
4955
|
extensionId: z.ZodNumber;
|
4892
4956
|
extensionName: z.ZodString;
|
4893
4957
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -4899,6 +4963,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4899
4963
|
userId: string | null;
|
4900
4964
|
sipServerUrl: string;
|
4901
4965
|
sipUserName: string;
|
4966
|
+
webphoneLoginUser: string;
|
4902
4967
|
extensionId: number;
|
4903
4968
|
extensionName: string;
|
4904
4969
|
telephonySignature: string | null;
|
@@ -4910,10 +4975,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4910
4975
|
userId: string | null;
|
4911
4976
|
sipServerUrl: string;
|
4912
4977
|
sipUserName: string;
|
4978
|
+
webphoneLoginUser: string;
|
4913
4979
|
extensionId: number;
|
4914
4980
|
extensionName: string;
|
4915
4981
|
telephonySignature: string | null;
|
4916
|
-
}
|
4982
|
+
}>;
|
4917
4983
|
}, "strip", z.ZodTypeAny, {
|
4918
4984
|
id: string;
|
4919
4985
|
address: string | null;
|
@@ -4944,7 +5010,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4944
5010
|
displayName: string;
|
4945
5011
|
}[];
|
4946
5012
|
}[];
|
4947
|
-
extension
|
5013
|
+
extension: {
|
4948
5014
|
id: string;
|
4949
5015
|
createdAt: Date;
|
4950
5016
|
updatedAt: Date;
|
@@ -4952,10 +5018,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4952
5018
|
userId: string | null;
|
4953
5019
|
sipServerUrl: string;
|
4954
5020
|
sipUserName: string;
|
5021
|
+
webphoneLoginUser: string;
|
4955
5022
|
extensionId: number;
|
4956
5023
|
extensionName: string;
|
4957
5024
|
telephonySignature: string | null;
|
4958
|
-
}
|
5025
|
+
};
|
4959
5026
|
}, {
|
4960
5027
|
id: string;
|
4961
5028
|
address: string | null;
|
@@ -4986,7 +5053,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4986
5053
|
displayName: string;
|
4987
5054
|
}[];
|
4988
5055
|
}[];
|
4989
|
-
extension
|
5056
|
+
extension: {
|
4990
5057
|
id: string;
|
4991
5058
|
createdAt: Date;
|
4992
5059
|
updatedAt: Date;
|
@@ -4994,10 +5061,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4994
5061
|
userId: string | null;
|
4995
5062
|
sipServerUrl: string;
|
4996
5063
|
sipUserName: string;
|
5064
|
+
webphoneLoginUser: string;
|
4997
5065
|
extensionId: number;
|
4998
5066
|
extensionName: string;
|
4999
5067
|
telephonySignature: string | null;
|
5000
|
-
}
|
5068
|
+
};
|
5001
5069
|
}>;
|
5002
5070
|
channel: z.ZodOptional<z.ZodObject<{
|
5003
5071
|
id: z.ZodOptional<z.ZodString>;
|
@@ -5108,7 +5176,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5108
5176
|
displayName: string;
|
5109
5177
|
}[];
|
5110
5178
|
}>, "many">;
|
5111
|
-
extension: z.
|
5179
|
+
extension: z.ZodObject<{
|
5112
5180
|
id: z.ZodString;
|
5113
5181
|
createdAt: z.ZodDate;
|
5114
5182
|
updatedAt: z.ZodDate;
|
@@ -5116,6 +5184,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5116
5184
|
userId: z.ZodNullable<z.ZodString>;
|
5117
5185
|
sipServerUrl: z.ZodString;
|
5118
5186
|
sipUserName: z.ZodString;
|
5187
|
+
webphoneLoginUser: z.ZodString;
|
5119
5188
|
extensionId: z.ZodNumber;
|
5120
5189
|
extensionName: z.ZodString;
|
5121
5190
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -5127,6 +5196,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5127
5196
|
userId: string | null;
|
5128
5197
|
sipServerUrl: string;
|
5129
5198
|
sipUserName: string;
|
5199
|
+
webphoneLoginUser: string;
|
5130
5200
|
extensionId: number;
|
5131
5201
|
extensionName: string;
|
5132
5202
|
telephonySignature: string | null;
|
@@ -5138,10 +5208,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5138
5208
|
userId: string | null;
|
5139
5209
|
sipServerUrl: string;
|
5140
5210
|
sipUserName: string;
|
5211
|
+
webphoneLoginUser: string;
|
5141
5212
|
extensionId: number;
|
5142
5213
|
extensionName: string;
|
5143
5214
|
telephonySignature: string | null;
|
5144
|
-
}
|
5215
|
+
}>;
|
5145
5216
|
}, "strip", z.ZodTypeAny, {
|
5146
5217
|
id: string;
|
5147
5218
|
address: string | null;
|
@@ -5172,7 +5243,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5172
5243
|
displayName: string;
|
5173
5244
|
}[];
|
5174
5245
|
}[];
|
5175
|
-
extension
|
5246
|
+
extension: {
|
5176
5247
|
id: string;
|
5177
5248
|
createdAt: Date;
|
5178
5249
|
updatedAt: Date;
|
@@ -5180,10 +5251,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5180
5251
|
userId: string | null;
|
5181
5252
|
sipServerUrl: string;
|
5182
5253
|
sipUserName: string;
|
5254
|
+
webphoneLoginUser: string;
|
5183
5255
|
extensionId: number;
|
5184
5256
|
extensionName: string;
|
5185
5257
|
telephonySignature: string | null;
|
5186
|
-
}
|
5258
|
+
};
|
5187
5259
|
}, {
|
5188
5260
|
id: string;
|
5189
5261
|
address: string | null;
|
@@ -5214,7 +5286,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5214
5286
|
displayName: string;
|
5215
5287
|
}[];
|
5216
5288
|
}[];
|
5217
|
-
extension
|
5289
|
+
extension: {
|
5218
5290
|
id: string;
|
5219
5291
|
createdAt: Date;
|
5220
5292
|
updatedAt: Date;
|
@@ -5222,10 +5294,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5222
5294
|
userId: string | null;
|
5223
5295
|
sipServerUrl: string;
|
5224
5296
|
sipUserName: string;
|
5297
|
+
webphoneLoginUser: string;
|
5225
5298
|
extensionId: number;
|
5226
5299
|
extensionName: string;
|
5227
5300
|
telephonySignature: string | null;
|
5228
|
-
}
|
5301
|
+
};
|
5229
5302
|
}>>;
|
5230
5303
|
}, "strip", z.ZodTypeAny, {
|
5231
5304
|
id?: string | undefined;
|
@@ -5276,7 +5349,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5276
5349
|
displayName: string;
|
5277
5350
|
}[];
|
5278
5351
|
}[];
|
5279
|
-
extension
|
5352
|
+
extension: {
|
5280
5353
|
id: string;
|
5281
5354
|
createdAt: Date;
|
5282
5355
|
updatedAt: Date;
|
@@ -5284,10 +5357,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5284
5357
|
userId: string | null;
|
5285
5358
|
sipServerUrl: string;
|
5286
5359
|
sipUserName: string;
|
5360
|
+
webphoneLoginUser: string;
|
5287
5361
|
extensionId: number;
|
5288
5362
|
extensionName: string;
|
5289
5363
|
telephonySignature: string | null;
|
5290
|
-
}
|
5364
|
+
};
|
5291
5365
|
} | undefined;
|
5292
5366
|
}, {
|
5293
5367
|
id?: string | undefined;
|
@@ -5338,7 +5412,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5338
5412
|
displayName: string;
|
5339
5413
|
}[];
|
5340
5414
|
}[];
|
5341
|
-
extension
|
5415
|
+
extension: {
|
5342
5416
|
id: string;
|
5343
5417
|
createdAt: Date;
|
5344
5418
|
updatedAt: Date;
|
@@ -5346,10 +5420,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5346
5420
|
userId: string | null;
|
5347
5421
|
sipServerUrl: string;
|
5348
5422
|
sipUserName: string;
|
5423
|
+
webphoneLoginUser: string;
|
5349
5424
|
extensionId: number;
|
5350
5425
|
extensionName: string;
|
5351
5426
|
telephonySignature: string | null;
|
5352
|
-
}
|
5427
|
+
};
|
5353
5428
|
} | undefined;
|
5354
5429
|
}>>;
|
5355
5430
|
cxlog: z.ZodObject<{
|
@@ -5535,7 +5610,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5535
5610
|
displayName: string;
|
5536
5611
|
}[];
|
5537
5612
|
}[];
|
5538
|
-
extension
|
5613
|
+
extension: {
|
5539
5614
|
id: string;
|
5540
5615
|
createdAt: Date;
|
5541
5616
|
updatedAt: Date;
|
@@ -5543,10 +5618,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5543
5618
|
userId: string | null;
|
5544
5619
|
sipServerUrl: string;
|
5545
5620
|
sipUserName: string;
|
5621
|
+
webphoneLoginUser: string;
|
5546
5622
|
extensionId: number;
|
5547
5623
|
extensionName: string;
|
5548
5624
|
telephonySignature: string | null;
|
5549
|
-
}
|
5625
|
+
};
|
5550
5626
|
};
|
5551
5627
|
firstResponseTime: number;
|
5552
5628
|
lastMessage: string;
|
@@ -5614,6 +5690,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5614
5690
|
fileKey: string;
|
5615
5691
|
bucketName: string;
|
5616
5692
|
fileSize: number;
|
5693
|
+
fileUrl: string | null;
|
5617
5694
|
};
|
5618
5695
|
}[];
|
5619
5696
|
}[];
|
@@ -5702,7 +5779,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5702
5779
|
displayName: string;
|
5703
5780
|
}[];
|
5704
5781
|
}[];
|
5705
|
-
extension
|
5782
|
+
extension: {
|
5706
5783
|
id: string;
|
5707
5784
|
createdAt: Date;
|
5708
5785
|
updatedAt: Date;
|
@@ -5710,10 +5787,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5710
5787
|
userId: string | null;
|
5711
5788
|
sipServerUrl: string;
|
5712
5789
|
sipUserName: string;
|
5790
|
+
webphoneLoginUser: string;
|
5713
5791
|
extensionId: number;
|
5714
5792
|
extensionName: string;
|
5715
5793
|
telephonySignature: string | null;
|
5716
|
-
}
|
5794
|
+
};
|
5717
5795
|
};
|
5718
5796
|
cxlog: {
|
5719
5797
|
id: string;
|
@@ -5799,7 +5877,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5799
5877
|
displayName: string;
|
5800
5878
|
}[];
|
5801
5879
|
}[];
|
5802
|
-
extension
|
5880
|
+
extension: {
|
5803
5881
|
id: string;
|
5804
5882
|
createdAt: Date;
|
5805
5883
|
updatedAt: Date;
|
@@ -5807,10 +5885,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5807
5885
|
userId: string | null;
|
5808
5886
|
sipServerUrl: string;
|
5809
5887
|
sipUserName: string;
|
5888
|
+
webphoneLoginUser: string;
|
5810
5889
|
extensionId: number;
|
5811
5890
|
extensionName: string;
|
5812
5891
|
telephonySignature: string | null;
|
5813
|
-
}
|
5892
|
+
};
|
5814
5893
|
} | undefined;
|
5815
5894
|
} | undefined;
|
5816
5895
|
}, {
|
@@ -5849,7 +5928,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5849
5928
|
displayName: string;
|
5850
5929
|
}[];
|
5851
5930
|
}[];
|
5852
|
-
extension
|
5931
|
+
extension: {
|
5853
5932
|
id: string;
|
5854
5933
|
createdAt: Date;
|
5855
5934
|
updatedAt: Date;
|
@@ -5857,10 +5936,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5857
5936
|
userId: string | null;
|
5858
5937
|
sipServerUrl: string;
|
5859
5938
|
sipUserName: string;
|
5939
|
+
webphoneLoginUser: string;
|
5860
5940
|
extensionId: number;
|
5861
5941
|
extensionName: string;
|
5862
5942
|
telephonySignature: string | null;
|
5863
|
-
}
|
5943
|
+
};
|
5864
5944
|
};
|
5865
5945
|
firstResponseTime: number;
|
5866
5946
|
lastMessage: string;
|
@@ -5928,6 +6008,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5928
6008
|
fileKey: string;
|
5929
6009
|
bucketName: string;
|
5930
6010
|
fileSize: number;
|
6011
|
+
fileUrl: string | null;
|
5931
6012
|
};
|
5932
6013
|
}[];
|
5933
6014
|
}[];
|
@@ -6016,7 +6097,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6016
6097
|
displayName: string;
|
6017
6098
|
}[];
|
6018
6099
|
}[];
|
6019
|
-
extension
|
6100
|
+
extension: {
|
6020
6101
|
id: string;
|
6021
6102
|
createdAt: Date;
|
6022
6103
|
updatedAt: Date;
|
@@ -6024,10 +6105,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6024
6105
|
userId: string | null;
|
6025
6106
|
sipServerUrl: string;
|
6026
6107
|
sipUserName: string;
|
6108
|
+
webphoneLoginUser: string;
|
6027
6109
|
extensionId: number;
|
6028
6110
|
extensionName: string;
|
6029
6111
|
telephonySignature: string | null;
|
6030
|
-
}
|
6112
|
+
};
|
6031
6113
|
};
|
6032
6114
|
cxlog: {
|
6033
6115
|
id: string;
|
@@ -6113,7 +6195,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6113
6195
|
displayName: string;
|
6114
6196
|
}[];
|
6115
6197
|
}[];
|
6116
|
-
extension
|
6198
|
+
extension: {
|
6117
6199
|
id: string;
|
6118
6200
|
createdAt: Date;
|
6119
6201
|
updatedAt: Date;
|
@@ -6121,10 +6203,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6121
6203
|
userId: string | null;
|
6122
6204
|
sipServerUrl: string;
|
6123
6205
|
sipUserName: string;
|
6206
|
+
webphoneLoginUser: string;
|
6124
6207
|
extensionId: number;
|
6125
6208
|
extensionName: string;
|
6126
6209
|
telephonySignature: string | null;
|
6127
|
-
}
|
6210
|
+
};
|
6128
6211
|
} | undefined;
|
6129
6212
|
} | undefined;
|
6130
6213
|
}>;
|
@@ -6137,6 +6220,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6137
6220
|
fileName: z.ZodString;
|
6138
6221
|
fileSize: z.ZodNumber;
|
6139
6222
|
fileKey: z.ZodString;
|
6223
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
6140
6224
|
}, "strip", z.ZodTypeAny, {
|
6141
6225
|
id: string;
|
6142
6226
|
createdAt: Date;
|
@@ -6146,6 +6230,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6146
6230
|
fileKey: string;
|
6147
6231
|
bucketName: string;
|
6148
6232
|
fileSize: number;
|
6233
|
+
fileUrl: string | null;
|
6149
6234
|
}, {
|
6150
6235
|
id: string;
|
6151
6236
|
createdAt: Date;
|
@@ -6155,6 +6240,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6155
6240
|
fileKey: string;
|
6156
6241
|
bucketName: string;
|
6157
6242
|
fileSize: number;
|
6243
|
+
fileUrl: string | null;
|
6158
6244
|
}>;
|
6159
6245
|
actor: z.ZodObject<{
|
6160
6246
|
id: z.ZodString;
|
@@ -6236,7 +6322,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6236
6322
|
displayName: string;
|
6237
6323
|
}[];
|
6238
6324
|
}>, "many">;
|
6239
|
-
extension: z.
|
6325
|
+
extension: z.ZodObject<{
|
6240
6326
|
id: z.ZodString;
|
6241
6327
|
createdAt: z.ZodDate;
|
6242
6328
|
updatedAt: z.ZodDate;
|
@@ -6244,6 +6330,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6244
6330
|
userId: z.ZodNullable<z.ZodString>;
|
6245
6331
|
sipServerUrl: z.ZodString;
|
6246
6332
|
sipUserName: z.ZodString;
|
6333
|
+
webphoneLoginUser: z.ZodString;
|
6247
6334
|
extensionId: z.ZodNumber;
|
6248
6335
|
extensionName: z.ZodString;
|
6249
6336
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -6255,6 +6342,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6255
6342
|
userId: string | null;
|
6256
6343
|
sipServerUrl: string;
|
6257
6344
|
sipUserName: string;
|
6345
|
+
webphoneLoginUser: string;
|
6258
6346
|
extensionId: number;
|
6259
6347
|
extensionName: string;
|
6260
6348
|
telephonySignature: string | null;
|
@@ -6266,10 +6354,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6266
6354
|
userId: string | null;
|
6267
6355
|
sipServerUrl: string;
|
6268
6356
|
sipUserName: string;
|
6357
|
+
webphoneLoginUser: string;
|
6269
6358
|
extensionId: number;
|
6270
6359
|
extensionName: string;
|
6271
6360
|
telephonySignature: string | null;
|
6272
|
-
}
|
6361
|
+
}>;
|
6273
6362
|
}, "strip", z.ZodTypeAny, {
|
6274
6363
|
id: string;
|
6275
6364
|
address: string | null;
|
@@ -6300,7 +6389,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6300
6389
|
displayName: string;
|
6301
6390
|
}[];
|
6302
6391
|
}[];
|
6303
|
-
extension
|
6392
|
+
extension: {
|
6304
6393
|
id: string;
|
6305
6394
|
createdAt: Date;
|
6306
6395
|
updatedAt: Date;
|
@@ -6308,10 +6397,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6308
6397
|
userId: string | null;
|
6309
6398
|
sipServerUrl: string;
|
6310
6399
|
sipUserName: string;
|
6400
|
+
webphoneLoginUser: string;
|
6311
6401
|
extensionId: number;
|
6312
6402
|
extensionName: string;
|
6313
6403
|
telephonySignature: string | null;
|
6314
|
-
}
|
6404
|
+
};
|
6315
6405
|
}, {
|
6316
6406
|
id: string;
|
6317
6407
|
address: string | null;
|
@@ -6342,7 +6432,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6342
6432
|
displayName: string;
|
6343
6433
|
}[];
|
6344
6434
|
}[];
|
6345
|
-
extension
|
6435
|
+
extension: {
|
6346
6436
|
id: string;
|
6347
6437
|
createdAt: Date;
|
6348
6438
|
updatedAt: Date;
|
@@ -6350,10 +6440,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6350
6440
|
userId: string | null;
|
6351
6441
|
sipServerUrl: string;
|
6352
6442
|
sipUserName: string;
|
6443
|
+
webphoneLoginUser: string;
|
6353
6444
|
extensionId: number;
|
6354
6445
|
extensionName: string;
|
6355
6446
|
telephonySignature: string | null;
|
6356
|
-
}
|
6447
|
+
};
|
6357
6448
|
}>;
|
6358
6449
|
assignee: z.ZodObject<{
|
6359
6450
|
id: z.ZodString;
|
@@ -6435,7 +6526,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6435
6526
|
displayName: string;
|
6436
6527
|
}[];
|
6437
6528
|
}>, "many">;
|
6438
|
-
extension: z.
|
6529
|
+
extension: z.ZodObject<{
|
6439
6530
|
id: z.ZodString;
|
6440
6531
|
createdAt: z.ZodDate;
|
6441
6532
|
updatedAt: z.ZodDate;
|
@@ -6443,6 +6534,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6443
6534
|
userId: z.ZodNullable<z.ZodString>;
|
6444
6535
|
sipServerUrl: z.ZodString;
|
6445
6536
|
sipUserName: z.ZodString;
|
6537
|
+
webphoneLoginUser: z.ZodString;
|
6446
6538
|
extensionId: z.ZodNumber;
|
6447
6539
|
extensionName: z.ZodString;
|
6448
6540
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -6454,6 +6546,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6454
6546
|
userId: string | null;
|
6455
6547
|
sipServerUrl: string;
|
6456
6548
|
sipUserName: string;
|
6549
|
+
webphoneLoginUser: string;
|
6457
6550
|
extensionId: number;
|
6458
6551
|
extensionName: string;
|
6459
6552
|
telephonySignature: string | null;
|
@@ -6465,10 +6558,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6465
6558
|
userId: string | null;
|
6466
6559
|
sipServerUrl: string;
|
6467
6560
|
sipUserName: string;
|
6561
|
+
webphoneLoginUser: string;
|
6468
6562
|
extensionId: number;
|
6469
6563
|
extensionName: string;
|
6470
6564
|
telephonySignature: string | null;
|
6471
|
-
}
|
6565
|
+
}>;
|
6472
6566
|
}, "strip", z.ZodTypeAny, {
|
6473
6567
|
id: string;
|
6474
6568
|
address: string | null;
|
@@ -6499,7 +6593,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6499
6593
|
displayName: string;
|
6500
6594
|
}[];
|
6501
6595
|
}[];
|
6502
|
-
extension
|
6596
|
+
extension: {
|
6503
6597
|
id: string;
|
6504
6598
|
createdAt: Date;
|
6505
6599
|
updatedAt: Date;
|
@@ -6507,10 +6601,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6507
6601
|
userId: string | null;
|
6508
6602
|
sipServerUrl: string;
|
6509
6603
|
sipUserName: string;
|
6604
|
+
webphoneLoginUser: string;
|
6510
6605
|
extensionId: number;
|
6511
6606
|
extensionName: string;
|
6512
6607
|
telephonySignature: string | null;
|
6513
|
-
}
|
6608
|
+
};
|
6514
6609
|
}, {
|
6515
6610
|
id: string;
|
6516
6611
|
address: string | null;
|
@@ -6541,7 +6636,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6541
6636
|
displayName: string;
|
6542
6637
|
}[];
|
6543
6638
|
}[];
|
6544
|
-
extension
|
6639
|
+
extension: {
|
6545
6640
|
id: string;
|
6546
6641
|
createdAt: Date;
|
6547
6642
|
updatedAt: Date;
|
@@ -6549,10 +6644,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6549
6644
|
userId: string | null;
|
6550
6645
|
sipServerUrl: string;
|
6551
6646
|
sipUserName: string;
|
6647
|
+
webphoneLoginUser: string;
|
6552
6648
|
extensionId: number;
|
6553
6649
|
extensionName: string;
|
6554
6650
|
telephonySignature: string | null;
|
6555
|
-
}
|
6651
|
+
};
|
6556
6652
|
}>;
|
6557
6653
|
sender: z.ZodObject<{
|
6558
6654
|
id: z.ZodString;
|
@@ -6634,7 +6730,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6634
6730
|
displayName: string;
|
6635
6731
|
}[];
|
6636
6732
|
}>, "many">;
|
6637
|
-
extension: z.
|
6733
|
+
extension: z.ZodObject<{
|
6638
6734
|
id: z.ZodString;
|
6639
6735
|
createdAt: z.ZodDate;
|
6640
6736
|
updatedAt: z.ZodDate;
|
@@ -6642,6 +6738,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6642
6738
|
userId: z.ZodNullable<z.ZodString>;
|
6643
6739
|
sipServerUrl: z.ZodString;
|
6644
6740
|
sipUserName: z.ZodString;
|
6741
|
+
webphoneLoginUser: z.ZodString;
|
6645
6742
|
extensionId: z.ZodNumber;
|
6646
6743
|
extensionName: z.ZodString;
|
6647
6744
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -6653,6 +6750,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6653
6750
|
userId: string | null;
|
6654
6751
|
sipServerUrl: string;
|
6655
6752
|
sipUserName: string;
|
6753
|
+
webphoneLoginUser: string;
|
6656
6754
|
extensionId: number;
|
6657
6755
|
extensionName: string;
|
6658
6756
|
telephonySignature: string | null;
|
@@ -6664,10 +6762,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6664
6762
|
userId: string | null;
|
6665
6763
|
sipServerUrl: string;
|
6666
6764
|
sipUserName: string;
|
6765
|
+
webphoneLoginUser: string;
|
6667
6766
|
extensionId: number;
|
6668
6767
|
extensionName: string;
|
6669
6768
|
telephonySignature: string | null;
|
6670
|
-
}
|
6769
|
+
}>;
|
6671
6770
|
}, "strip", z.ZodTypeAny, {
|
6672
6771
|
id: string;
|
6673
6772
|
address: string | null;
|
@@ -6698,7 +6797,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6698
6797
|
displayName: string;
|
6699
6798
|
}[];
|
6700
6799
|
}[];
|
6701
|
-
extension
|
6800
|
+
extension: {
|
6702
6801
|
id: string;
|
6703
6802
|
createdAt: Date;
|
6704
6803
|
updatedAt: Date;
|
@@ -6706,10 +6805,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6706
6805
|
userId: string | null;
|
6707
6806
|
sipServerUrl: string;
|
6708
6807
|
sipUserName: string;
|
6808
|
+
webphoneLoginUser: string;
|
6709
6809
|
extensionId: number;
|
6710
6810
|
extensionName: string;
|
6711
6811
|
telephonySignature: string | null;
|
6712
|
-
}
|
6812
|
+
};
|
6713
6813
|
}, {
|
6714
6814
|
id: string;
|
6715
6815
|
address: string | null;
|
@@ -6740,7 +6840,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6740
6840
|
displayName: string;
|
6741
6841
|
}[];
|
6742
6842
|
}[];
|
6743
|
-
extension
|
6843
|
+
extension: {
|
6744
6844
|
id: string;
|
6745
6845
|
createdAt: Date;
|
6746
6846
|
updatedAt: Date;
|
@@ -6748,10 +6848,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6748
6848
|
userId: string | null;
|
6749
6849
|
sipServerUrl: string;
|
6750
6850
|
sipUserName: string;
|
6851
|
+
webphoneLoginUser: string;
|
6751
6852
|
extensionId: number;
|
6752
6853
|
extensionName: string;
|
6753
6854
|
telephonySignature: string | null;
|
6754
|
-
}
|
6855
|
+
};
|
6755
6856
|
}>;
|
6756
6857
|
}, "strip", z.ZodTypeAny, {
|
6757
6858
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "reopen" | "handed_over" | "updated" | "started";
|
@@ -6793,7 +6894,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6793
6894
|
displayName: string;
|
6794
6895
|
}[];
|
6795
6896
|
}[];
|
6796
|
-
extension
|
6897
|
+
extension: {
|
6797
6898
|
id: string;
|
6798
6899
|
createdAt: Date;
|
6799
6900
|
updatedAt: Date;
|
@@ -6801,10 +6902,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6801
6902
|
userId: string | null;
|
6802
6903
|
sipServerUrl: string;
|
6803
6904
|
sipUserName: string;
|
6905
|
+
webphoneLoginUser: string;
|
6804
6906
|
extensionId: number;
|
6805
6907
|
extensionName: string;
|
6806
6908
|
telephonySignature: string | null;
|
6807
|
-
}
|
6909
|
+
};
|
6808
6910
|
};
|
6809
6911
|
upload: {
|
6810
6912
|
id: string;
|
@@ -6815,6 +6917,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6815
6917
|
fileKey: string;
|
6816
6918
|
bucketName: string;
|
6817
6919
|
fileSize: number;
|
6920
|
+
fileUrl: string | null;
|
6818
6921
|
};
|
6819
6922
|
assignee: {
|
6820
6923
|
id: string;
|
@@ -6846,7 +6949,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6846
6949
|
displayName: string;
|
6847
6950
|
}[];
|
6848
6951
|
}[];
|
6849
|
-
extension
|
6952
|
+
extension: {
|
6850
6953
|
id: string;
|
6851
6954
|
createdAt: Date;
|
6852
6955
|
updatedAt: Date;
|
@@ -6854,10 +6957,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6854
6957
|
userId: string | null;
|
6855
6958
|
sipServerUrl: string;
|
6856
6959
|
sipUserName: string;
|
6960
|
+
webphoneLoginUser: string;
|
6857
6961
|
extensionId: number;
|
6858
6962
|
extensionName: string;
|
6859
6963
|
telephonySignature: string | null;
|
6860
|
-
}
|
6964
|
+
};
|
6861
6965
|
};
|
6862
6966
|
room: {
|
6863
6967
|
id: string;
|
@@ -6895,7 +6999,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6895
6999
|
displayName: string;
|
6896
7000
|
}[];
|
6897
7001
|
}[];
|
6898
|
-
extension
|
7002
|
+
extension: {
|
6899
7003
|
id: string;
|
6900
7004
|
createdAt: Date;
|
6901
7005
|
updatedAt: Date;
|
@@ -6903,10 +7007,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6903
7007
|
userId: string | null;
|
6904
7008
|
sipServerUrl: string;
|
6905
7009
|
sipUserName: string;
|
7010
|
+
webphoneLoginUser: string;
|
6906
7011
|
extensionId: number;
|
6907
7012
|
extensionName: string;
|
6908
7013
|
telephonySignature: string | null;
|
6909
|
-
}
|
7014
|
+
};
|
6910
7015
|
};
|
6911
7016
|
firstResponseTime: number;
|
6912
7017
|
lastMessage: string;
|
@@ -6974,6 +7079,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6974
7079
|
fileKey: string;
|
6975
7080
|
bucketName: string;
|
6976
7081
|
fileSize: number;
|
7082
|
+
fileUrl: string | null;
|
6977
7083
|
};
|
6978
7084
|
}[];
|
6979
7085
|
}[];
|
@@ -7062,7 +7168,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7062
7168
|
displayName: string;
|
7063
7169
|
}[];
|
7064
7170
|
}[];
|
7065
|
-
extension
|
7171
|
+
extension: {
|
7066
7172
|
id: string;
|
7067
7173
|
createdAt: Date;
|
7068
7174
|
updatedAt: Date;
|
@@ -7070,10 +7176,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7070
7176
|
userId: string | null;
|
7071
7177
|
sipServerUrl: string;
|
7072
7178
|
sipUserName: string;
|
7179
|
+
webphoneLoginUser: string;
|
7073
7180
|
extensionId: number;
|
7074
7181
|
extensionName: string;
|
7075
7182
|
telephonySignature: string | null;
|
7076
|
-
}
|
7183
|
+
};
|
7077
7184
|
};
|
7078
7185
|
cxlog: {
|
7079
7186
|
id: string;
|
@@ -7159,7 +7266,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7159
7266
|
displayName: string;
|
7160
7267
|
}[];
|
7161
7268
|
}[];
|
7162
|
-
extension
|
7269
|
+
extension: {
|
7163
7270
|
id: string;
|
7164
7271
|
createdAt: Date;
|
7165
7272
|
updatedAt: Date;
|
@@ -7167,10 +7274,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7167
7274
|
userId: string | null;
|
7168
7275
|
sipServerUrl: string;
|
7169
7276
|
sipUserName: string;
|
7277
|
+
webphoneLoginUser: string;
|
7170
7278
|
extensionId: number;
|
7171
7279
|
extensionName: string;
|
7172
7280
|
telephonySignature: string | null;
|
7173
|
-
}
|
7281
|
+
};
|
7174
7282
|
} | undefined;
|
7175
7283
|
} | undefined;
|
7176
7284
|
};
|
@@ -7210,7 +7318,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7210
7318
|
displayName: string;
|
7211
7319
|
}[];
|
7212
7320
|
}[];
|
7213
|
-
extension
|
7321
|
+
extension: {
|
7214
7322
|
id: string;
|
7215
7323
|
createdAt: Date;
|
7216
7324
|
updatedAt: Date;
|
@@ -7218,10 +7326,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7218
7326
|
userId: string | null;
|
7219
7327
|
sipServerUrl: string;
|
7220
7328
|
sipUserName: string;
|
7329
|
+
webphoneLoginUser: string;
|
7221
7330
|
extensionId: number;
|
7222
7331
|
extensionName: string;
|
7223
7332
|
telephonySignature: string | null;
|
7224
|
-
}
|
7333
|
+
};
|
7225
7334
|
};
|
7226
7335
|
metadata?: any;
|
7227
7336
|
template?: any;
|
@@ -7265,7 +7374,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7265
7374
|
displayName: string;
|
7266
7375
|
}[];
|
7267
7376
|
}[];
|
7268
|
-
extension
|
7377
|
+
extension: {
|
7269
7378
|
id: string;
|
7270
7379
|
createdAt: Date;
|
7271
7380
|
updatedAt: Date;
|
@@ -7273,10 +7382,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7273
7382
|
userId: string | null;
|
7274
7383
|
sipServerUrl: string;
|
7275
7384
|
sipUserName: string;
|
7385
|
+
webphoneLoginUser: string;
|
7276
7386
|
extensionId: number;
|
7277
7387
|
extensionName: string;
|
7278
7388
|
telephonySignature: string | null;
|
7279
|
-
}
|
7389
|
+
};
|
7280
7390
|
};
|
7281
7391
|
upload: {
|
7282
7392
|
id: string;
|
@@ -7287,6 +7397,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7287
7397
|
fileKey: string;
|
7288
7398
|
bucketName: string;
|
7289
7399
|
fileSize: number;
|
7400
|
+
fileUrl: string | null;
|
7290
7401
|
};
|
7291
7402
|
assignee: {
|
7292
7403
|
id: string;
|
@@ -7318,7 +7429,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7318
7429
|
displayName: string;
|
7319
7430
|
}[];
|
7320
7431
|
}[];
|
7321
|
-
extension
|
7432
|
+
extension: {
|
7322
7433
|
id: string;
|
7323
7434
|
createdAt: Date;
|
7324
7435
|
updatedAt: Date;
|
@@ -7326,10 +7437,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7326
7437
|
userId: string | null;
|
7327
7438
|
sipServerUrl: string;
|
7328
7439
|
sipUserName: string;
|
7440
|
+
webphoneLoginUser: string;
|
7329
7441
|
extensionId: number;
|
7330
7442
|
extensionName: string;
|
7331
7443
|
telephonySignature: string | null;
|
7332
|
-
}
|
7444
|
+
};
|
7333
7445
|
};
|
7334
7446
|
room: {
|
7335
7447
|
id: string;
|
@@ -7367,7 +7479,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7367
7479
|
displayName: string;
|
7368
7480
|
}[];
|
7369
7481
|
}[];
|
7370
|
-
extension
|
7482
|
+
extension: {
|
7371
7483
|
id: string;
|
7372
7484
|
createdAt: Date;
|
7373
7485
|
updatedAt: Date;
|
@@ -7375,10 +7487,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7375
7487
|
userId: string | null;
|
7376
7488
|
sipServerUrl: string;
|
7377
7489
|
sipUserName: string;
|
7490
|
+
webphoneLoginUser: string;
|
7378
7491
|
extensionId: number;
|
7379
7492
|
extensionName: string;
|
7380
7493
|
telephonySignature: string | null;
|
7381
|
-
}
|
7494
|
+
};
|
7382
7495
|
};
|
7383
7496
|
firstResponseTime: number;
|
7384
7497
|
lastMessage: string;
|
@@ -7446,6 +7559,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7446
7559
|
fileKey: string;
|
7447
7560
|
bucketName: string;
|
7448
7561
|
fileSize: number;
|
7562
|
+
fileUrl: string | null;
|
7449
7563
|
};
|
7450
7564
|
}[];
|
7451
7565
|
}[];
|
@@ -7534,7 +7648,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7534
7648
|
displayName: string;
|
7535
7649
|
}[];
|
7536
7650
|
}[];
|
7537
|
-
extension
|
7651
|
+
extension: {
|
7538
7652
|
id: string;
|
7539
7653
|
createdAt: Date;
|
7540
7654
|
updatedAt: Date;
|
@@ -7542,10 +7656,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7542
7656
|
userId: string | null;
|
7543
7657
|
sipServerUrl: string;
|
7544
7658
|
sipUserName: string;
|
7659
|
+
webphoneLoginUser: string;
|
7545
7660
|
extensionId: number;
|
7546
7661
|
extensionName: string;
|
7547
7662
|
telephonySignature: string | null;
|
7548
|
-
}
|
7663
|
+
};
|
7549
7664
|
};
|
7550
7665
|
cxlog: {
|
7551
7666
|
id: string;
|
@@ -7631,7 +7746,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7631
7746
|
displayName: string;
|
7632
7747
|
}[];
|
7633
7748
|
}[];
|
7634
|
-
extension
|
7749
|
+
extension: {
|
7635
7750
|
id: string;
|
7636
7751
|
createdAt: Date;
|
7637
7752
|
updatedAt: Date;
|
@@ -7639,10 +7754,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7639
7754
|
userId: string | null;
|
7640
7755
|
sipServerUrl: string;
|
7641
7756
|
sipUserName: string;
|
7757
|
+
webphoneLoginUser: string;
|
7642
7758
|
extensionId: number;
|
7643
7759
|
extensionName: string;
|
7644
7760
|
telephonySignature: string | null;
|
7645
|
-
}
|
7761
|
+
};
|
7646
7762
|
} | undefined;
|
7647
7763
|
} | undefined;
|
7648
7764
|
};
|
@@ -7682,7 +7798,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7682
7798
|
displayName: string;
|
7683
7799
|
}[];
|
7684
7800
|
}[];
|
7685
|
-
extension
|
7801
|
+
extension: {
|
7686
7802
|
id: string;
|
7687
7803
|
createdAt: Date;
|
7688
7804
|
updatedAt: Date;
|
@@ -7690,10 +7806,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7690
7806
|
userId: string | null;
|
7691
7807
|
sipServerUrl: string;
|
7692
7808
|
sipUserName: string;
|
7809
|
+
webphoneLoginUser: string;
|
7693
7810
|
extensionId: number;
|
7694
7811
|
extensionName: string;
|
7695
7812
|
telephonySignature: string | null;
|
7696
|
-
}
|
7813
|
+
};
|
7697
7814
|
};
|
7698
7815
|
metadata?: any;
|
7699
7816
|
template?: any;
|