@kl1/contracts 1.0.35 → 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 +973 -927
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +972 -927
- 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 +92 -56
- 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 +1068 -656
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +183 -110
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +306 -188
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/comment/index.d.ts +965 -88
- package/dist/src/comment/index.d.ts.map +1 -1
- package/dist/src/comment/schema.d.ts +275 -24
- package/dist/src/comment/schema.d.ts.map +1 -1
- package/dist/src/contract.d.ts +10251 -6745
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +116 -72
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +92 -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/messenger/index.d.ts +162 -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-extension/index.d.ts +2 -0
- package/dist/src/telephony-extension/index.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +3794 -1641
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/schema.d.ts +177 -0
- package/dist/src/ticket/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
@@ -2145,7 +2145,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2145
2145
|
displayName: string;
|
2146
2146
|
}[];
|
2147
2147
|
}>, "many">;
|
2148
|
-
extension: z.
|
2148
|
+
extension: z.ZodObject<{
|
2149
2149
|
id: z.ZodString;
|
2150
2150
|
createdAt: z.ZodDate;
|
2151
2151
|
updatedAt: z.ZodDate;
|
@@ -2153,6 +2153,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2153
2153
|
userId: z.ZodNullable<z.ZodString>;
|
2154
2154
|
sipServerUrl: z.ZodString;
|
2155
2155
|
sipUserName: z.ZodString;
|
2156
|
+
webphoneLoginUser: z.ZodString;
|
2156
2157
|
extensionId: z.ZodNumber;
|
2157
2158
|
extensionName: z.ZodString;
|
2158
2159
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -2164,6 +2165,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2164
2165
|
userId: string | null;
|
2165
2166
|
sipServerUrl: string;
|
2166
2167
|
sipUserName: string;
|
2168
|
+
webphoneLoginUser: string;
|
2167
2169
|
extensionId: number;
|
2168
2170
|
extensionName: string;
|
2169
2171
|
telephonySignature: string | null;
|
@@ -2175,10 +2177,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2175
2177
|
userId: string | null;
|
2176
2178
|
sipServerUrl: string;
|
2177
2179
|
sipUserName: string;
|
2180
|
+
webphoneLoginUser: string;
|
2178
2181
|
extensionId: number;
|
2179
2182
|
extensionName: string;
|
2180
2183
|
telephonySignature: string | null;
|
2181
|
-
}
|
2184
|
+
}>;
|
2182
2185
|
}, "strip", z.ZodTypeAny, {
|
2183
2186
|
id: string;
|
2184
2187
|
address: string | null;
|
@@ -2209,7 +2212,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2209
2212
|
displayName: string;
|
2210
2213
|
}[];
|
2211
2214
|
}[];
|
2212
|
-
extension
|
2215
|
+
extension: {
|
2213
2216
|
id: string;
|
2214
2217
|
createdAt: Date;
|
2215
2218
|
updatedAt: Date;
|
@@ -2217,10 +2220,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2217
2220
|
userId: string | null;
|
2218
2221
|
sipServerUrl: string;
|
2219
2222
|
sipUserName: string;
|
2223
|
+
webphoneLoginUser: string;
|
2220
2224
|
extensionId: number;
|
2221
2225
|
extensionName: string;
|
2222
2226
|
telephonySignature: string | null;
|
2223
|
-
}
|
2227
|
+
};
|
2224
2228
|
}, {
|
2225
2229
|
id: string;
|
2226
2230
|
address: string | null;
|
@@ -2251,7 +2255,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2251
2255
|
displayName: string;
|
2252
2256
|
}[];
|
2253
2257
|
}[];
|
2254
|
-
extension
|
2258
|
+
extension: {
|
2255
2259
|
id: string;
|
2256
2260
|
createdAt: Date;
|
2257
2261
|
updatedAt: Date;
|
@@ -2259,10 +2263,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2259
2263
|
userId: string | null;
|
2260
2264
|
sipServerUrl: string;
|
2261
2265
|
sipUserName: string;
|
2266
|
+
webphoneLoginUser: string;
|
2262
2267
|
extensionId: number;
|
2263
2268
|
extensionName: string;
|
2264
2269
|
telephonySignature: string | null;
|
2265
|
-
}
|
2270
|
+
};
|
2266
2271
|
}>;
|
2267
2272
|
assignee: z.ZodObject<{
|
2268
2273
|
id: z.ZodString;
|
@@ -2344,7 +2349,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2344
2349
|
displayName: string;
|
2345
2350
|
}[];
|
2346
2351
|
}>, "many">;
|
2347
|
-
extension: z.
|
2352
|
+
extension: z.ZodObject<{
|
2348
2353
|
id: z.ZodString;
|
2349
2354
|
createdAt: z.ZodDate;
|
2350
2355
|
updatedAt: z.ZodDate;
|
@@ -2352,6 +2357,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2352
2357
|
userId: z.ZodNullable<z.ZodString>;
|
2353
2358
|
sipServerUrl: z.ZodString;
|
2354
2359
|
sipUserName: z.ZodString;
|
2360
|
+
webphoneLoginUser: z.ZodString;
|
2355
2361
|
extensionId: z.ZodNumber;
|
2356
2362
|
extensionName: z.ZodString;
|
2357
2363
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -2363,6 +2369,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2363
2369
|
userId: string | null;
|
2364
2370
|
sipServerUrl: string;
|
2365
2371
|
sipUserName: string;
|
2372
|
+
webphoneLoginUser: string;
|
2366
2373
|
extensionId: number;
|
2367
2374
|
extensionName: string;
|
2368
2375
|
telephonySignature: string | null;
|
@@ -2374,10 +2381,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2374
2381
|
userId: string | null;
|
2375
2382
|
sipServerUrl: string;
|
2376
2383
|
sipUserName: string;
|
2384
|
+
webphoneLoginUser: string;
|
2377
2385
|
extensionId: number;
|
2378
2386
|
extensionName: string;
|
2379
2387
|
telephonySignature: string | null;
|
2380
|
-
}
|
2388
|
+
}>;
|
2381
2389
|
}, "strip", z.ZodTypeAny, {
|
2382
2390
|
id: string;
|
2383
2391
|
address: string | null;
|
@@ -2408,7 +2416,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2408
2416
|
displayName: string;
|
2409
2417
|
}[];
|
2410
2418
|
}[];
|
2411
|
-
extension
|
2419
|
+
extension: {
|
2412
2420
|
id: string;
|
2413
2421
|
createdAt: Date;
|
2414
2422
|
updatedAt: Date;
|
@@ -2416,10 +2424,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2416
2424
|
userId: string | null;
|
2417
2425
|
sipServerUrl: string;
|
2418
2426
|
sipUserName: string;
|
2427
|
+
webphoneLoginUser: string;
|
2419
2428
|
extensionId: number;
|
2420
2429
|
extensionName: string;
|
2421
2430
|
telephonySignature: string | null;
|
2422
|
-
}
|
2431
|
+
};
|
2423
2432
|
}, {
|
2424
2433
|
id: string;
|
2425
2434
|
address: string | null;
|
@@ -2450,7 +2459,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2450
2459
|
displayName: string;
|
2451
2460
|
}[];
|
2452
2461
|
}[];
|
2453
|
-
extension
|
2462
|
+
extension: {
|
2454
2463
|
id: string;
|
2455
2464
|
createdAt: Date;
|
2456
2465
|
updatedAt: Date;
|
@@ -2458,10 +2467,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2458
2467
|
userId: string | null;
|
2459
2468
|
sipServerUrl: string;
|
2460
2469
|
sipUserName: string;
|
2470
|
+
webphoneLoginUser: string;
|
2461
2471
|
extensionId: number;
|
2462
2472
|
extensionName: string;
|
2463
2473
|
telephonySignature: string | null;
|
2464
|
-
}
|
2474
|
+
};
|
2465
2475
|
}>;
|
2466
2476
|
channel: z.ZodOptional<z.ZodObject<{
|
2467
2477
|
id: z.ZodOptional<z.ZodString>;
|
@@ -2572,7 +2582,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2572
2582
|
displayName: string;
|
2573
2583
|
}[];
|
2574
2584
|
}>, "many">;
|
2575
|
-
extension: z.
|
2585
|
+
extension: z.ZodObject<{
|
2576
2586
|
id: z.ZodString;
|
2577
2587
|
createdAt: z.ZodDate;
|
2578
2588
|
updatedAt: z.ZodDate;
|
@@ -2580,6 +2590,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2580
2590
|
userId: z.ZodNullable<z.ZodString>;
|
2581
2591
|
sipServerUrl: z.ZodString;
|
2582
2592
|
sipUserName: z.ZodString;
|
2593
|
+
webphoneLoginUser: z.ZodString;
|
2583
2594
|
extensionId: z.ZodNumber;
|
2584
2595
|
extensionName: z.ZodString;
|
2585
2596
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -2591,6 +2602,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2591
2602
|
userId: string | null;
|
2592
2603
|
sipServerUrl: string;
|
2593
2604
|
sipUserName: string;
|
2605
|
+
webphoneLoginUser: string;
|
2594
2606
|
extensionId: number;
|
2595
2607
|
extensionName: string;
|
2596
2608
|
telephonySignature: string | null;
|
@@ -2602,10 +2614,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2602
2614
|
userId: string | null;
|
2603
2615
|
sipServerUrl: string;
|
2604
2616
|
sipUserName: string;
|
2617
|
+
webphoneLoginUser: string;
|
2605
2618
|
extensionId: number;
|
2606
2619
|
extensionName: string;
|
2607
2620
|
telephonySignature: string | null;
|
2608
|
-
}
|
2621
|
+
}>;
|
2609
2622
|
}, "strip", z.ZodTypeAny, {
|
2610
2623
|
id: string;
|
2611
2624
|
address: string | null;
|
@@ -2636,7 +2649,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2636
2649
|
displayName: string;
|
2637
2650
|
}[];
|
2638
2651
|
}[];
|
2639
|
-
extension
|
2652
|
+
extension: {
|
2640
2653
|
id: string;
|
2641
2654
|
createdAt: Date;
|
2642
2655
|
updatedAt: Date;
|
@@ -2644,10 +2657,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2644
2657
|
userId: string | null;
|
2645
2658
|
sipServerUrl: string;
|
2646
2659
|
sipUserName: string;
|
2660
|
+
webphoneLoginUser: string;
|
2647
2661
|
extensionId: number;
|
2648
2662
|
extensionName: string;
|
2649
2663
|
telephonySignature: string | null;
|
2650
|
-
}
|
2664
|
+
};
|
2651
2665
|
}, {
|
2652
2666
|
id: string;
|
2653
2667
|
address: string | null;
|
@@ -2678,7 +2692,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2678
2692
|
displayName: string;
|
2679
2693
|
}[];
|
2680
2694
|
}[];
|
2681
|
-
extension
|
2695
|
+
extension: {
|
2682
2696
|
id: string;
|
2683
2697
|
createdAt: Date;
|
2684
2698
|
updatedAt: Date;
|
@@ -2686,10 +2700,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2686
2700
|
userId: string | null;
|
2687
2701
|
sipServerUrl: string;
|
2688
2702
|
sipUserName: string;
|
2703
|
+
webphoneLoginUser: string;
|
2689
2704
|
extensionId: number;
|
2690
2705
|
extensionName: string;
|
2691
2706
|
telephonySignature: string | null;
|
2692
|
-
}
|
2707
|
+
};
|
2693
2708
|
}>>;
|
2694
2709
|
}, "strip", z.ZodTypeAny, {
|
2695
2710
|
id?: string | undefined;
|
@@ -2740,7 +2755,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2740
2755
|
displayName: string;
|
2741
2756
|
}[];
|
2742
2757
|
}[];
|
2743
|
-
extension
|
2758
|
+
extension: {
|
2744
2759
|
id: string;
|
2745
2760
|
createdAt: Date;
|
2746
2761
|
updatedAt: Date;
|
@@ -2748,10 +2763,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2748
2763
|
userId: string | null;
|
2749
2764
|
sipServerUrl: string;
|
2750
2765
|
sipUserName: string;
|
2766
|
+
webphoneLoginUser: string;
|
2751
2767
|
extensionId: number;
|
2752
2768
|
extensionName: string;
|
2753
2769
|
telephonySignature: string | null;
|
2754
|
-
}
|
2770
|
+
};
|
2755
2771
|
} | undefined;
|
2756
2772
|
}, {
|
2757
2773
|
id?: string | undefined;
|
@@ -2802,7 +2818,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2802
2818
|
displayName: string;
|
2803
2819
|
}[];
|
2804
2820
|
}[];
|
2805
|
-
extension
|
2821
|
+
extension: {
|
2806
2822
|
id: string;
|
2807
2823
|
createdAt: Date;
|
2808
2824
|
updatedAt: Date;
|
@@ -2810,10 +2826,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2810
2826
|
userId: string | null;
|
2811
2827
|
sipServerUrl: string;
|
2812
2828
|
sipUserName: string;
|
2829
|
+
webphoneLoginUser: string;
|
2813
2830
|
extensionId: number;
|
2814
2831
|
extensionName: string;
|
2815
2832
|
telephonySignature: string | null;
|
2816
|
-
}
|
2833
|
+
};
|
2817
2834
|
} | undefined;
|
2818
2835
|
}>>;
|
2819
2836
|
cxlog: z.ZodObject<{
|
@@ -2999,7 +3016,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2999
3016
|
displayName: string;
|
3000
3017
|
}[];
|
3001
3018
|
}[];
|
3002
|
-
extension
|
3019
|
+
extension: {
|
3003
3020
|
id: string;
|
3004
3021
|
createdAt: Date;
|
3005
3022
|
updatedAt: Date;
|
@@ -3007,10 +3024,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3007
3024
|
userId: string | null;
|
3008
3025
|
sipServerUrl: string;
|
3009
3026
|
sipUserName: string;
|
3027
|
+
webphoneLoginUser: string;
|
3010
3028
|
extensionId: number;
|
3011
3029
|
extensionName: string;
|
3012
3030
|
telephonySignature: string | null;
|
3013
|
-
}
|
3031
|
+
};
|
3014
3032
|
};
|
3015
3033
|
firstResponseTime: number;
|
3016
3034
|
lastMessage: string;
|
@@ -3167,7 +3185,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3167
3185
|
displayName: string;
|
3168
3186
|
}[];
|
3169
3187
|
}[];
|
3170
|
-
extension
|
3188
|
+
extension: {
|
3171
3189
|
id: string;
|
3172
3190
|
createdAt: Date;
|
3173
3191
|
updatedAt: Date;
|
@@ -3175,10 +3193,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3175
3193
|
userId: string | null;
|
3176
3194
|
sipServerUrl: string;
|
3177
3195
|
sipUserName: string;
|
3196
|
+
webphoneLoginUser: string;
|
3178
3197
|
extensionId: number;
|
3179
3198
|
extensionName: string;
|
3180
3199
|
telephonySignature: string | null;
|
3181
|
-
}
|
3200
|
+
};
|
3182
3201
|
};
|
3183
3202
|
cxlog: {
|
3184
3203
|
id: string;
|
@@ -3264,7 +3283,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3264
3283
|
displayName: string;
|
3265
3284
|
}[];
|
3266
3285
|
}[];
|
3267
|
-
extension
|
3286
|
+
extension: {
|
3268
3287
|
id: string;
|
3269
3288
|
createdAt: Date;
|
3270
3289
|
updatedAt: Date;
|
@@ -3272,10 +3291,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3272
3291
|
userId: string | null;
|
3273
3292
|
sipServerUrl: string;
|
3274
3293
|
sipUserName: string;
|
3294
|
+
webphoneLoginUser: string;
|
3275
3295
|
extensionId: number;
|
3276
3296
|
extensionName: string;
|
3277
3297
|
telephonySignature: string | null;
|
3278
|
-
}
|
3298
|
+
};
|
3279
3299
|
} | undefined;
|
3280
3300
|
} | undefined;
|
3281
3301
|
}, {
|
@@ -3314,7 +3334,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3314
3334
|
displayName: string;
|
3315
3335
|
}[];
|
3316
3336
|
}[];
|
3317
|
-
extension
|
3337
|
+
extension: {
|
3318
3338
|
id: string;
|
3319
3339
|
createdAt: Date;
|
3320
3340
|
updatedAt: Date;
|
@@ -3322,10 +3342,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3322
3342
|
userId: string | null;
|
3323
3343
|
sipServerUrl: string;
|
3324
3344
|
sipUserName: string;
|
3345
|
+
webphoneLoginUser: string;
|
3325
3346
|
extensionId: number;
|
3326
3347
|
extensionName: string;
|
3327
3348
|
telephonySignature: string | null;
|
3328
|
-
}
|
3349
|
+
};
|
3329
3350
|
};
|
3330
3351
|
firstResponseTime: number;
|
3331
3352
|
lastMessage: string;
|
@@ -3482,7 +3503,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3482
3503
|
displayName: string;
|
3483
3504
|
}[];
|
3484
3505
|
}[];
|
3485
|
-
extension
|
3506
|
+
extension: {
|
3486
3507
|
id: string;
|
3487
3508
|
createdAt: Date;
|
3488
3509
|
updatedAt: Date;
|
@@ -3490,10 +3511,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3490
3511
|
userId: string | null;
|
3491
3512
|
sipServerUrl: string;
|
3492
3513
|
sipUserName: string;
|
3514
|
+
webphoneLoginUser: string;
|
3493
3515
|
extensionId: number;
|
3494
3516
|
extensionName: string;
|
3495
3517
|
telephonySignature: string | null;
|
3496
|
-
}
|
3518
|
+
};
|
3497
3519
|
};
|
3498
3520
|
cxlog: {
|
3499
3521
|
id: string;
|
@@ -3579,7 +3601,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3579
3601
|
displayName: string;
|
3580
3602
|
}[];
|
3581
3603
|
}[];
|
3582
|
-
extension
|
3604
|
+
extension: {
|
3583
3605
|
id: string;
|
3584
3606
|
createdAt: Date;
|
3585
3607
|
updatedAt: Date;
|
@@ -3587,10 +3609,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3587
3609
|
userId: string | null;
|
3588
3610
|
sipServerUrl: string;
|
3589
3611
|
sipUserName: string;
|
3612
|
+
webphoneLoginUser: string;
|
3590
3613
|
extensionId: number;
|
3591
3614
|
extensionName: string;
|
3592
3615
|
telephonySignature: string | null;
|
3593
|
-
}
|
3616
|
+
};
|
3594
3617
|
} | undefined;
|
3595
3618
|
} | undefined;
|
3596
3619
|
}>;
|
@@ -4716,7 +4739,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4716
4739
|
displayName: string;
|
4717
4740
|
}[];
|
4718
4741
|
}>, "many">;
|
4719
|
-
extension: z.
|
4742
|
+
extension: z.ZodObject<{
|
4720
4743
|
id: z.ZodString;
|
4721
4744
|
createdAt: z.ZodDate;
|
4722
4745
|
updatedAt: z.ZodDate;
|
@@ -4724,6 +4747,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4724
4747
|
userId: z.ZodNullable<z.ZodString>;
|
4725
4748
|
sipServerUrl: z.ZodString;
|
4726
4749
|
sipUserName: z.ZodString;
|
4750
|
+
webphoneLoginUser: z.ZodString;
|
4727
4751
|
extensionId: z.ZodNumber;
|
4728
4752
|
extensionName: z.ZodString;
|
4729
4753
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -4735,6 +4759,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4735
4759
|
userId: string | null;
|
4736
4760
|
sipServerUrl: string;
|
4737
4761
|
sipUserName: string;
|
4762
|
+
webphoneLoginUser: string;
|
4738
4763
|
extensionId: number;
|
4739
4764
|
extensionName: string;
|
4740
4765
|
telephonySignature: string | null;
|
@@ -4746,10 +4771,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4746
4771
|
userId: string | null;
|
4747
4772
|
sipServerUrl: string;
|
4748
4773
|
sipUserName: string;
|
4774
|
+
webphoneLoginUser: string;
|
4749
4775
|
extensionId: number;
|
4750
4776
|
extensionName: string;
|
4751
4777
|
telephonySignature: string | null;
|
4752
|
-
}
|
4778
|
+
}>;
|
4753
4779
|
}, "strip", z.ZodTypeAny, {
|
4754
4780
|
id: string;
|
4755
4781
|
address: string | null;
|
@@ -4780,7 +4806,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4780
4806
|
displayName: string;
|
4781
4807
|
}[];
|
4782
4808
|
}[];
|
4783
|
-
extension
|
4809
|
+
extension: {
|
4784
4810
|
id: string;
|
4785
4811
|
createdAt: Date;
|
4786
4812
|
updatedAt: Date;
|
@@ -4788,10 +4814,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4788
4814
|
userId: string | null;
|
4789
4815
|
sipServerUrl: string;
|
4790
4816
|
sipUserName: string;
|
4817
|
+
webphoneLoginUser: string;
|
4791
4818
|
extensionId: number;
|
4792
4819
|
extensionName: string;
|
4793
4820
|
telephonySignature: string | null;
|
4794
|
-
}
|
4821
|
+
};
|
4795
4822
|
}, {
|
4796
4823
|
id: string;
|
4797
4824
|
address: string | null;
|
@@ -4822,7 +4849,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4822
4849
|
displayName: string;
|
4823
4850
|
}[];
|
4824
4851
|
}[];
|
4825
|
-
extension
|
4852
|
+
extension: {
|
4826
4853
|
id: string;
|
4827
4854
|
createdAt: Date;
|
4828
4855
|
updatedAt: Date;
|
@@ -4830,10 +4857,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4830
4857
|
userId: string | null;
|
4831
4858
|
sipServerUrl: string;
|
4832
4859
|
sipUserName: string;
|
4860
|
+
webphoneLoginUser: string;
|
4833
4861
|
extensionId: number;
|
4834
4862
|
extensionName: string;
|
4835
4863
|
telephonySignature: string | null;
|
4836
|
-
}
|
4864
|
+
};
|
4837
4865
|
}>;
|
4838
4866
|
assignee: z.ZodObject<{
|
4839
4867
|
id: z.ZodString;
|
@@ -4915,7 +4943,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4915
4943
|
displayName: string;
|
4916
4944
|
}[];
|
4917
4945
|
}>, "many">;
|
4918
|
-
extension: z.
|
4946
|
+
extension: z.ZodObject<{
|
4919
4947
|
id: z.ZodString;
|
4920
4948
|
createdAt: z.ZodDate;
|
4921
4949
|
updatedAt: z.ZodDate;
|
@@ -4923,6 +4951,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4923
4951
|
userId: z.ZodNullable<z.ZodString>;
|
4924
4952
|
sipServerUrl: z.ZodString;
|
4925
4953
|
sipUserName: z.ZodString;
|
4954
|
+
webphoneLoginUser: z.ZodString;
|
4926
4955
|
extensionId: z.ZodNumber;
|
4927
4956
|
extensionName: z.ZodString;
|
4928
4957
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -4934,6 +4963,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4934
4963
|
userId: string | null;
|
4935
4964
|
sipServerUrl: string;
|
4936
4965
|
sipUserName: string;
|
4966
|
+
webphoneLoginUser: string;
|
4937
4967
|
extensionId: number;
|
4938
4968
|
extensionName: string;
|
4939
4969
|
telephonySignature: string | null;
|
@@ -4945,10 +4975,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4945
4975
|
userId: string | null;
|
4946
4976
|
sipServerUrl: string;
|
4947
4977
|
sipUserName: string;
|
4978
|
+
webphoneLoginUser: string;
|
4948
4979
|
extensionId: number;
|
4949
4980
|
extensionName: string;
|
4950
4981
|
telephonySignature: string | null;
|
4951
|
-
}
|
4982
|
+
}>;
|
4952
4983
|
}, "strip", z.ZodTypeAny, {
|
4953
4984
|
id: string;
|
4954
4985
|
address: string | null;
|
@@ -4979,7 +5010,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4979
5010
|
displayName: string;
|
4980
5011
|
}[];
|
4981
5012
|
}[];
|
4982
|
-
extension
|
5013
|
+
extension: {
|
4983
5014
|
id: string;
|
4984
5015
|
createdAt: Date;
|
4985
5016
|
updatedAt: Date;
|
@@ -4987,10 +5018,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4987
5018
|
userId: string | null;
|
4988
5019
|
sipServerUrl: string;
|
4989
5020
|
sipUserName: string;
|
5021
|
+
webphoneLoginUser: string;
|
4990
5022
|
extensionId: number;
|
4991
5023
|
extensionName: string;
|
4992
5024
|
telephonySignature: string | null;
|
4993
|
-
}
|
5025
|
+
};
|
4994
5026
|
}, {
|
4995
5027
|
id: string;
|
4996
5028
|
address: string | null;
|
@@ -5021,7 +5053,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5021
5053
|
displayName: string;
|
5022
5054
|
}[];
|
5023
5055
|
}[];
|
5024
|
-
extension
|
5056
|
+
extension: {
|
5025
5057
|
id: string;
|
5026
5058
|
createdAt: Date;
|
5027
5059
|
updatedAt: Date;
|
@@ -5029,10 +5061,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5029
5061
|
userId: string | null;
|
5030
5062
|
sipServerUrl: string;
|
5031
5063
|
sipUserName: string;
|
5064
|
+
webphoneLoginUser: string;
|
5032
5065
|
extensionId: number;
|
5033
5066
|
extensionName: string;
|
5034
5067
|
telephonySignature: string | null;
|
5035
|
-
}
|
5068
|
+
};
|
5036
5069
|
}>;
|
5037
5070
|
channel: z.ZodOptional<z.ZodObject<{
|
5038
5071
|
id: z.ZodOptional<z.ZodString>;
|
@@ -5143,7 +5176,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5143
5176
|
displayName: string;
|
5144
5177
|
}[];
|
5145
5178
|
}>, "many">;
|
5146
|
-
extension: z.
|
5179
|
+
extension: z.ZodObject<{
|
5147
5180
|
id: z.ZodString;
|
5148
5181
|
createdAt: z.ZodDate;
|
5149
5182
|
updatedAt: z.ZodDate;
|
@@ -5151,6 +5184,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5151
5184
|
userId: z.ZodNullable<z.ZodString>;
|
5152
5185
|
sipServerUrl: z.ZodString;
|
5153
5186
|
sipUserName: z.ZodString;
|
5187
|
+
webphoneLoginUser: z.ZodString;
|
5154
5188
|
extensionId: z.ZodNumber;
|
5155
5189
|
extensionName: z.ZodString;
|
5156
5190
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -5162,6 +5196,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5162
5196
|
userId: string | null;
|
5163
5197
|
sipServerUrl: string;
|
5164
5198
|
sipUserName: string;
|
5199
|
+
webphoneLoginUser: string;
|
5165
5200
|
extensionId: number;
|
5166
5201
|
extensionName: string;
|
5167
5202
|
telephonySignature: string | null;
|
@@ -5173,10 +5208,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5173
5208
|
userId: string | null;
|
5174
5209
|
sipServerUrl: string;
|
5175
5210
|
sipUserName: string;
|
5211
|
+
webphoneLoginUser: string;
|
5176
5212
|
extensionId: number;
|
5177
5213
|
extensionName: string;
|
5178
5214
|
telephonySignature: string | null;
|
5179
|
-
}
|
5215
|
+
}>;
|
5180
5216
|
}, "strip", z.ZodTypeAny, {
|
5181
5217
|
id: string;
|
5182
5218
|
address: string | null;
|
@@ -5207,7 +5243,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5207
5243
|
displayName: string;
|
5208
5244
|
}[];
|
5209
5245
|
}[];
|
5210
|
-
extension
|
5246
|
+
extension: {
|
5211
5247
|
id: string;
|
5212
5248
|
createdAt: Date;
|
5213
5249
|
updatedAt: Date;
|
@@ -5215,10 +5251,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5215
5251
|
userId: string | null;
|
5216
5252
|
sipServerUrl: string;
|
5217
5253
|
sipUserName: string;
|
5254
|
+
webphoneLoginUser: string;
|
5218
5255
|
extensionId: number;
|
5219
5256
|
extensionName: string;
|
5220
5257
|
telephonySignature: string | null;
|
5221
|
-
}
|
5258
|
+
};
|
5222
5259
|
}, {
|
5223
5260
|
id: string;
|
5224
5261
|
address: string | null;
|
@@ -5249,7 +5286,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5249
5286
|
displayName: string;
|
5250
5287
|
}[];
|
5251
5288
|
}[];
|
5252
|
-
extension
|
5289
|
+
extension: {
|
5253
5290
|
id: string;
|
5254
5291
|
createdAt: Date;
|
5255
5292
|
updatedAt: Date;
|
@@ -5257,10 +5294,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5257
5294
|
userId: string | null;
|
5258
5295
|
sipServerUrl: string;
|
5259
5296
|
sipUserName: string;
|
5297
|
+
webphoneLoginUser: string;
|
5260
5298
|
extensionId: number;
|
5261
5299
|
extensionName: string;
|
5262
5300
|
telephonySignature: string | null;
|
5263
|
-
}
|
5301
|
+
};
|
5264
5302
|
}>>;
|
5265
5303
|
}, "strip", z.ZodTypeAny, {
|
5266
5304
|
id?: string | undefined;
|
@@ -5311,7 +5349,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5311
5349
|
displayName: string;
|
5312
5350
|
}[];
|
5313
5351
|
}[];
|
5314
|
-
extension
|
5352
|
+
extension: {
|
5315
5353
|
id: string;
|
5316
5354
|
createdAt: Date;
|
5317
5355
|
updatedAt: Date;
|
@@ -5319,10 +5357,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5319
5357
|
userId: string | null;
|
5320
5358
|
sipServerUrl: string;
|
5321
5359
|
sipUserName: string;
|
5360
|
+
webphoneLoginUser: string;
|
5322
5361
|
extensionId: number;
|
5323
5362
|
extensionName: string;
|
5324
5363
|
telephonySignature: string | null;
|
5325
|
-
}
|
5364
|
+
};
|
5326
5365
|
} | undefined;
|
5327
5366
|
}, {
|
5328
5367
|
id?: string | undefined;
|
@@ -5373,7 +5412,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5373
5412
|
displayName: string;
|
5374
5413
|
}[];
|
5375
5414
|
}[];
|
5376
|
-
extension
|
5415
|
+
extension: {
|
5377
5416
|
id: string;
|
5378
5417
|
createdAt: Date;
|
5379
5418
|
updatedAt: Date;
|
@@ -5381,10 +5420,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5381
5420
|
userId: string | null;
|
5382
5421
|
sipServerUrl: string;
|
5383
5422
|
sipUserName: string;
|
5423
|
+
webphoneLoginUser: string;
|
5384
5424
|
extensionId: number;
|
5385
5425
|
extensionName: string;
|
5386
5426
|
telephonySignature: string | null;
|
5387
|
-
}
|
5427
|
+
};
|
5388
5428
|
} | undefined;
|
5389
5429
|
}>>;
|
5390
5430
|
cxlog: z.ZodObject<{
|
@@ -5570,7 +5610,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5570
5610
|
displayName: string;
|
5571
5611
|
}[];
|
5572
5612
|
}[];
|
5573
|
-
extension
|
5613
|
+
extension: {
|
5574
5614
|
id: string;
|
5575
5615
|
createdAt: Date;
|
5576
5616
|
updatedAt: Date;
|
@@ -5578,10 +5618,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5578
5618
|
userId: string | null;
|
5579
5619
|
sipServerUrl: string;
|
5580
5620
|
sipUserName: string;
|
5621
|
+
webphoneLoginUser: string;
|
5581
5622
|
extensionId: number;
|
5582
5623
|
extensionName: string;
|
5583
5624
|
telephonySignature: string | null;
|
5584
|
-
}
|
5625
|
+
};
|
5585
5626
|
};
|
5586
5627
|
firstResponseTime: number;
|
5587
5628
|
lastMessage: string;
|
@@ -5738,7 +5779,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5738
5779
|
displayName: string;
|
5739
5780
|
}[];
|
5740
5781
|
}[];
|
5741
|
-
extension
|
5782
|
+
extension: {
|
5742
5783
|
id: string;
|
5743
5784
|
createdAt: Date;
|
5744
5785
|
updatedAt: Date;
|
@@ -5746,10 +5787,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5746
5787
|
userId: string | null;
|
5747
5788
|
sipServerUrl: string;
|
5748
5789
|
sipUserName: string;
|
5790
|
+
webphoneLoginUser: string;
|
5749
5791
|
extensionId: number;
|
5750
5792
|
extensionName: string;
|
5751
5793
|
telephonySignature: string | null;
|
5752
|
-
}
|
5794
|
+
};
|
5753
5795
|
};
|
5754
5796
|
cxlog: {
|
5755
5797
|
id: string;
|
@@ -5835,7 +5877,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5835
5877
|
displayName: string;
|
5836
5878
|
}[];
|
5837
5879
|
}[];
|
5838
|
-
extension
|
5880
|
+
extension: {
|
5839
5881
|
id: string;
|
5840
5882
|
createdAt: Date;
|
5841
5883
|
updatedAt: Date;
|
@@ -5843,10 +5885,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5843
5885
|
userId: string | null;
|
5844
5886
|
sipServerUrl: string;
|
5845
5887
|
sipUserName: string;
|
5888
|
+
webphoneLoginUser: string;
|
5846
5889
|
extensionId: number;
|
5847
5890
|
extensionName: string;
|
5848
5891
|
telephonySignature: string | null;
|
5849
|
-
}
|
5892
|
+
};
|
5850
5893
|
} | undefined;
|
5851
5894
|
} | undefined;
|
5852
5895
|
}, {
|
@@ -5885,7 +5928,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5885
5928
|
displayName: string;
|
5886
5929
|
}[];
|
5887
5930
|
}[];
|
5888
|
-
extension
|
5931
|
+
extension: {
|
5889
5932
|
id: string;
|
5890
5933
|
createdAt: Date;
|
5891
5934
|
updatedAt: Date;
|
@@ -5893,10 +5936,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5893
5936
|
userId: string | null;
|
5894
5937
|
sipServerUrl: string;
|
5895
5938
|
sipUserName: string;
|
5939
|
+
webphoneLoginUser: string;
|
5896
5940
|
extensionId: number;
|
5897
5941
|
extensionName: string;
|
5898
5942
|
telephonySignature: string | null;
|
5899
|
-
}
|
5943
|
+
};
|
5900
5944
|
};
|
5901
5945
|
firstResponseTime: number;
|
5902
5946
|
lastMessage: string;
|
@@ -6053,7 +6097,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6053
6097
|
displayName: string;
|
6054
6098
|
}[];
|
6055
6099
|
}[];
|
6056
|
-
extension
|
6100
|
+
extension: {
|
6057
6101
|
id: string;
|
6058
6102
|
createdAt: Date;
|
6059
6103
|
updatedAt: Date;
|
@@ -6061,10 +6105,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6061
6105
|
userId: string | null;
|
6062
6106
|
sipServerUrl: string;
|
6063
6107
|
sipUserName: string;
|
6108
|
+
webphoneLoginUser: string;
|
6064
6109
|
extensionId: number;
|
6065
6110
|
extensionName: string;
|
6066
6111
|
telephonySignature: string | null;
|
6067
|
-
}
|
6112
|
+
};
|
6068
6113
|
};
|
6069
6114
|
cxlog: {
|
6070
6115
|
id: string;
|
@@ -6150,7 +6195,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6150
6195
|
displayName: string;
|
6151
6196
|
}[];
|
6152
6197
|
}[];
|
6153
|
-
extension
|
6198
|
+
extension: {
|
6154
6199
|
id: string;
|
6155
6200
|
createdAt: Date;
|
6156
6201
|
updatedAt: Date;
|
@@ -6158,10 +6203,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6158
6203
|
userId: string | null;
|
6159
6204
|
sipServerUrl: string;
|
6160
6205
|
sipUserName: string;
|
6206
|
+
webphoneLoginUser: string;
|
6161
6207
|
extensionId: number;
|
6162
6208
|
extensionName: string;
|
6163
6209
|
telephonySignature: string | null;
|
6164
|
-
}
|
6210
|
+
};
|
6165
6211
|
} | undefined;
|
6166
6212
|
} | undefined;
|
6167
6213
|
}>;
|
@@ -6276,7 +6322,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6276
6322
|
displayName: string;
|
6277
6323
|
}[];
|
6278
6324
|
}>, "many">;
|
6279
|
-
extension: z.
|
6325
|
+
extension: z.ZodObject<{
|
6280
6326
|
id: z.ZodString;
|
6281
6327
|
createdAt: z.ZodDate;
|
6282
6328
|
updatedAt: z.ZodDate;
|
@@ -6284,6 +6330,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6284
6330
|
userId: z.ZodNullable<z.ZodString>;
|
6285
6331
|
sipServerUrl: z.ZodString;
|
6286
6332
|
sipUserName: z.ZodString;
|
6333
|
+
webphoneLoginUser: z.ZodString;
|
6287
6334
|
extensionId: z.ZodNumber;
|
6288
6335
|
extensionName: z.ZodString;
|
6289
6336
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -6295,6 +6342,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6295
6342
|
userId: string | null;
|
6296
6343
|
sipServerUrl: string;
|
6297
6344
|
sipUserName: string;
|
6345
|
+
webphoneLoginUser: string;
|
6298
6346
|
extensionId: number;
|
6299
6347
|
extensionName: string;
|
6300
6348
|
telephonySignature: string | null;
|
@@ -6306,10 +6354,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6306
6354
|
userId: string | null;
|
6307
6355
|
sipServerUrl: string;
|
6308
6356
|
sipUserName: string;
|
6357
|
+
webphoneLoginUser: string;
|
6309
6358
|
extensionId: number;
|
6310
6359
|
extensionName: string;
|
6311
6360
|
telephonySignature: string | null;
|
6312
|
-
}
|
6361
|
+
}>;
|
6313
6362
|
}, "strip", z.ZodTypeAny, {
|
6314
6363
|
id: string;
|
6315
6364
|
address: string | null;
|
@@ -6340,7 +6389,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6340
6389
|
displayName: string;
|
6341
6390
|
}[];
|
6342
6391
|
}[];
|
6343
|
-
extension
|
6392
|
+
extension: {
|
6344
6393
|
id: string;
|
6345
6394
|
createdAt: Date;
|
6346
6395
|
updatedAt: Date;
|
@@ -6348,10 +6397,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6348
6397
|
userId: string | null;
|
6349
6398
|
sipServerUrl: string;
|
6350
6399
|
sipUserName: string;
|
6400
|
+
webphoneLoginUser: string;
|
6351
6401
|
extensionId: number;
|
6352
6402
|
extensionName: string;
|
6353
6403
|
telephonySignature: string | null;
|
6354
|
-
}
|
6404
|
+
};
|
6355
6405
|
}, {
|
6356
6406
|
id: string;
|
6357
6407
|
address: string | null;
|
@@ -6382,7 +6432,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6382
6432
|
displayName: string;
|
6383
6433
|
}[];
|
6384
6434
|
}[];
|
6385
|
-
extension
|
6435
|
+
extension: {
|
6386
6436
|
id: string;
|
6387
6437
|
createdAt: Date;
|
6388
6438
|
updatedAt: Date;
|
@@ -6390,10 +6440,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6390
6440
|
userId: string | null;
|
6391
6441
|
sipServerUrl: string;
|
6392
6442
|
sipUserName: string;
|
6443
|
+
webphoneLoginUser: string;
|
6393
6444
|
extensionId: number;
|
6394
6445
|
extensionName: string;
|
6395
6446
|
telephonySignature: string | null;
|
6396
|
-
}
|
6447
|
+
};
|
6397
6448
|
}>;
|
6398
6449
|
assignee: z.ZodObject<{
|
6399
6450
|
id: z.ZodString;
|
@@ -6475,7 +6526,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6475
6526
|
displayName: string;
|
6476
6527
|
}[];
|
6477
6528
|
}>, "many">;
|
6478
|
-
extension: z.
|
6529
|
+
extension: z.ZodObject<{
|
6479
6530
|
id: z.ZodString;
|
6480
6531
|
createdAt: z.ZodDate;
|
6481
6532
|
updatedAt: z.ZodDate;
|
@@ -6483,6 +6534,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6483
6534
|
userId: z.ZodNullable<z.ZodString>;
|
6484
6535
|
sipServerUrl: z.ZodString;
|
6485
6536
|
sipUserName: z.ZodString;
|
6537
|
+
webphoneLoginUser: z.ZodString;
|
6486
6538
|
extensionId: z.ZodNumber;
|
6487
6539
|
extensionName: z.ZodString;
|
6488
6540
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -6494,6 +6546,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6494
6546
|
userId: string | null;
|
6495
6547
|
sipServerUrl: string;
|
6496
6548
|
sipUserName: string;
|
6549
|
+
webphoneLoginUser: string;
|
6497
6550
|
extensionId: number;
|
6498
6551
|
extensionName: string;
|
6499
6552
|
telephonySignature: string | null;
|
@@ -6505,10 +6558,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6505
6558
|
userId: string | null;
|
6506
6559
|
sipServerUrl: string;
|
6507
6560
|
sipUserName: string;
|
6561
|
+
webphoneLoginUser: string;
|
6508
6562
|
extensionId: number;
|
6509
6563
|
extensionName: string;
|
6510
6564
|
telephonySignature: string | null;
|
6511
|
-
}
|
6565
|
+
}>;
|
6512
6566
|
}, "strip", z.ZodTypeAny, {
|
6513
6567
|
id: string;
|
6514
6568
|
address: string | null;
|
@@ -6539,7 +6593,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6539
6593
|
displayName: string;
|
6540
6594
|
}[];
|
6541
6595
|
}[];
|
6542
|
-
extension
|
6596
|
+
extension: {
|
6543
6597
|
id: string;
|
6544
6598
|
createdAt: Date;
|
6545
6599
|
updatedAt: Date;
|
@@ -6547,10 +6601,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6547
6601
|
userId: string | null;
|
6548
6602
|
sipServerUrl: string;
|
6549
6603
|
sipUserName: string;
|
6604
|
+
webphoneLoginUser: string;
|
6550
6605
|
extensionId: number;
|
6551
6606
|
extensionName: string;
|
6552
6607
|
telephonySignature: string | null;
|
6553
|
-
}
|
6608
|
+
};
|
6554
6609
|
}, {
|
6555
6610
|
id: string;
|
6556
6611
|
address: string | null;
|
@@ -6581,7 +6636,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6581
6636
|
displayName: string;
|
6582
6637
|
}[];
|
6583
6638
|
}[];
|
6584
|
-
extension
|
6639
|
+
extension: {
|
6585
6640
|
id: string;
|
6586
6641
|
createdAt: Date;
|
6587
6642
|
updatedAt: Date;
|
@@ -6589,10 +6644,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6589
6644
|
userId: string | null;
|
6590
6645
|
sipServerUrl: string;
|
6591
6646
|
sipUserName: string;
|
6647
|
+
webphoneLoginUser: string;
|
6592
6648
|
extensionId: number;
|
6593
6649
|
extensionName: string;
|
6594
6650
|
telephonySignature: string | null;
|
6595
|
-
}
|
6651
|
+
};
|
6596
6652
|
}>;
|
6597
6653
|
sender: z.ZodObject<{
|
6598
6654
|
id: z.ZodString;
|
@@ -6674,7 +6730,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6674
6730
|
displayName: string;
|
6675
6731
|
}[];
|
6676
6732
|
}>, "many">;
|
6677
|
-
extension: z.
|
6733
|
+
extension: z.ZodObject<{
|
6678
6734
|
id: z.ZodString;
|
6679
6735
|
createdAt: z.ZodDate;
|
6680
6736
|
updatedAt: z.ZodDate;
|
@@ -6682,6 +6738,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6682
6738
|
userId: z.ZodNullable<z.ZodString>;
|
6683
6739
|
sipServerUrl: z.ZodString;
|
6684
6740
|
sipUserName: z.ZodString;
|
6741
|
+
webphoneLoginUser: z.ZodString;
|
6685
6742
|
extensionId: z.ZodNumber;
|
6686
6743
|
extensionName: z.ZodString;
|
6687
6744
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -6693,6 +6750,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6693
6750
|
userId: string | null;
|
6694
6751
|
sipServerUrl: string;
|
6695
6752
|
sipUserName: string;
|
6753
|
+
webphoneLoginUser: string;
|
6696
6754
|
extensionId: number;
|
6697
6755
|
extensionName: string;
|
6698
6756
|
telephonySignature: string | null;
|
@@ -6704,10 +6762,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6704
6762
|
userId: string | null;
|
6705
6763
|
sipServerUrl: string;
|
6706
6764
|
sipUserName: string;
|
6765
|
+
webphoneLoginUser: string;
|
6707
6766
|
extensionId: number;
|
6708
6767
|
extensionName: string;
|
6709
6768
|
telephonySignature: string | null;
|
6710
|
-
}
|
6769
|
+
}>;
|
6711
6770
|
}, "strip", z.ZodTypeAny, {
|
6712
6771
|
id: string;
|
6713
6772
|
address: string | null;
|
@@ -6738,7 +6797,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6738
6797
|
displayName: string;
|
6739
6798
|
}[];
|
6740
6799
|
}[];
|
6741
|
-
extension
|
6800
|
+
extension: {
|
6742
6801
|
id: string;
|
6743
6802
|
createdAt: Date;
|
6744
6803
|
updatedAt: Date;
|
@@ -6746,10 +6805,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6746
6805
|
userId: string | null;
|
6747
6806
|
sipServerUrl: string;
|
6748
6807
|
sipUserName: string;
|
6808
|
+
webphoneLoginUser: string;
|
6749
6809
|
extensionId: number;
|
6750
6810
|
extensionName: string;
|
6751
6811
|
telephonySignature: string | null;
|
6752
|
-
}
|
6812
|
+
};
|
6753
6813
|
}, {
|
6754
6814
|
id: string;
|
6755
6815
|
address: string | null;
|
@@ -6780,7 +6840,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6780
6840
|
displayName: string;
|
6781
6841
|
}[];
|
6782
6842
|
}[];
|
6783
|
-
extension
|
6843
|
+
extension: {
|
6784
6844
|
id: string;
|
6785
6845
|
createdAt: Date;
|
6786
6846
|
updatedAt: Date;
|
@@ -6788,10 +6848,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6788
6848
|
userId: string | null;
|
6789
6849
|
sipServerUrl: string;
|
6790
6850
|
sipUserName: string;
|
6851
|
+
webphoneLoginUser: string;
|
6791
6852
|
extensionId: number;
|
6792
6853
|
extensionName: string;
|
6793
6854
|
telephonySignature: string | null;
|
6794
|
-
}
|
6855
|
+
};
|
6795
6856
|
}>;
|
6796
6857
|
}, "strip", z.ZodTypeAny, {
|
6797
6858
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "reopen" | "handed_over" | "updated" | "started";
|
@@ -6833,7 +6894,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6833
6894
|
displayName: string;
|
6834
6895
|
}[];
|
6835
6896
|
}[];
|
6836
|
-
extension
|
6897
|
+
extension: {
|
6837
6898
|
id: string;
|
6838
6899
|
createdAt: Date;
|
6839
6900
|
updatedAt: Date;
|
@@ -6841,10 +6902,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6841
6902
|
userId: string | null;
|
6842
6903
|
sipServerUrl: string;
|
6843
6904
|
sipUserName: string;
|
6905
|
+
webphoneLoginUser: string;
|
6844
6906
|
extensionId: number;
|
6845
6907
|
extensionName: string;
|
6846
6908
|
telephonySignature: string | null;
|
6847
|
-
}
|
6909
|
+
};
|
6848
6910
|
};
|
6849
6911
|
upload: {
|
6850
6912
|
id: string;
|
@@ -6887,7 +6949,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6887
6949
|
displayName: string;
|
6888
6950
|
}[];
|
6889
6951
|
}[];
|
6890
|
-
extension
|
6952
|
+
extension: {
|
6891
6953
|
id: string;
|
6892
6954
|
createdAt: Date;
|
6893
6955
|
updatedAt: Date;
|
@@ -6895,10 +6957,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6895
6957
|
userId: string | null;
|
6896
6958
|
sipServerUrl: string;
|
6897
6959
|
sipUserName: string;
|
6960
|
+
webphoneLoginUser: string;
|
6898
6961
|
extensionId: number;
|
6899
6962
|
extensionName: string;
|
6900
6963
|
telephonySignature: string | null;
|
6901
|
-
}
|
6964
|
+
};
|
6902
6965
|
};
|
6903
6966
|
room: {
|
6904
6967
|
id: string;
|
@@ -6936,7 +6999,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6936
6999
|
displayName: string;
|
6937
7000
|
}[];
|
6938
7001
|
}[];
|
6939
|
-
extension
|
7002
|
+
extension: {
|
6940
7003
|
id: string;
|
6941
7004
|
createdAt: Date;
|
6942
7005
|
updatedAt: Date;
|
@@ -6944,10 +7007,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6944
7007
|
userId: string | null;
|
6945
7008
|
sipServerUrl: string;
|
6946
7009
|
sipUserName: string;
|
7010
|
+
webphoneLoginUser: string;
|
6947
7011
|
extensionId: number;
|
6948
7012
|
extensionName: string;
|
6949
7013
|
telephonySignature: string | null;
|
6950
|
-
}
|
7014
|
+
};
|
6951
7015
|
};
|
6952
7016
|
firstResponseTime: number;
|
6953
7017
|
lastMessage: string;
|
@@ -7104,7 +7168,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7104
7168
|
displayName: string;
|
7105
7169
|
}[];
|
7106
7170
|
}[];
|
7107
|
-
extension
|
7171
|
+
extension: {
|
7108
7172
|
id: string;
|
7109
7173
|
createdAt: Date;
|
7110
7174
|
updatedAt: Date;
|
@@ -7112,10 +7176,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7112
7176
|
userId: string | null;
|
7113
7177
|
sipServerUrl: string;
|
7114
7178
|
sipUserName: string;
|
7179
|
+
webphoneLoginUser: string;
|
7115
7180
|
extensionId: number;
|
7116
7181
|
extensionName: string;
|
7117
7182
|
telephonySignature: string | null;
|
7118
|
-
}
|
7183
|
+
};
|
7119
7184
|
};
|
7120
7185
|
cxlog: {
|
7121
7186
|
id: string;
|
@@ -7201,7 +7266,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7201
7266
|
displayName: string;
|
7202
7267
|
}[];
|
7203
7268
|
}[];
|
7204
|
-
extension
|
7269
|
+
extension: {
|
7205
7270
|
id: string;
|
7206
7271
|
createdAt: Date;
|
7207
7272
|
updatedAt: Date;
|
@@ -7209,10 +7274,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7209
7274
|
userId: string | null;
|
7210
7275
|
sipServerUrl: string;
|
7211
7276
|
sipUserName: string;
|
7277
|
+
webphoneLoginUser: string;
|
7212
7278
|
extensionId: number;
|
7213
7279
|
extensionName: string;
|
7214
7280
|
telephonySignature: string | null;
|
7215
|
-
}
|
7281
|
+
};
|
7216
7282
|
} | undefined;
|
7217
7283
|
} | undefined;
|
7218
7284
|
};
|
@@ -7252,7 +7318,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7252
7318
|
displayName: string;
|
7253
7319
|
}[];
|
7254
7320
|
}[];
|
7255
|
-
extension
|
7321
|
+
extension: {
|
7256
7322
|
id: string;
|
7257
7323
|
createdAt: Date;
|
7258
7324
|
updatedAt: Date;
|
@@ -7260,10 +7326,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7260
7326
|
userId: string | null;
|
7261
7327
|
sipServerUrl: string;
|
7262
7328
|
sipUserName: string;
|
7329
|
+
webphoneLoginUser: string;
|
7263
7330
|
extensionId: number;
|
7264
7331
|
extensionName: string;
|
7265
7332
|
telephonySignature: string | null;
|
7266
|
-
}
|
7333
|
+
};
|
7267
7334
|
};
|
7268
7335
|
metadata?: any;
|
7269
7336
|
template?: any;
|
@@ -7307,7 +7374,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7307
7374
|
displayName: string;
|
7308
7375
|
}[];
|
7309
7376
|
}[];
|
7310
|
-
extension
|
7377
|
+
extension: {
|
7311
7378
|
id: string;
|
7312
7379
|
createdAt: Date;
|
7313
7380
|
updatedAt: Date;
|
@@ -7315,10 +7382,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7315
7382
|
userId: string | null;
|
7316
7383
|
sipServerUrl: string;
|
7317
7384
|
sipUserName: string;
|
7385
|
+
webphoneLoginUser: string;
|
7318
7386
|
extensionId: number;
|
7319
7387
|
extensionName: string;
|
7320
7388
|
telephonySignature: string | null;
|
7321
|
-
}
|
7389
|
+
};
|
7322
7390
|
};
|
7323
7391
|
upload: {
|
7324
7392
|
id: string;
|
@@ -7361,7 +7429,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7361
7429
|
displayName: string;
|
7362
7430
|
}[];
|
7363
7431
|
}[];
|
7364
|
-
extension
|
7432
|
+
extension: {
|
7365
7433
|
id: string;
|
7366
7434
|
createdAt: Date;
|
7367
7435
|
updatedAt: Date;
|
@@ -7369,10 +7437,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7369
7437
|
userId: string | null;
|
7370
7438
|
sipServerUrl: string;
|
7371
7439
|
sipUserName: string;
|
7440
|
+
webphoneLoginUser: string;
|
7372
7441
|
extensionId: number;
|
7373
7442
|
extensionName: string;
|
7374
7443
|
telephonySignature: string | null;
|
7375
|
-
}
|
7444
|
+
};
|
7376
7445
|
};
|
7377
7446
|
room: {
|
7378
7447
|
id: string;
|
@@ -7410,7 +7479,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7410
7479
|
displayName: string;
|
7411
7480
|
}[];
|
7412
7481
|
}[];
|
7413
|
-
extension
|
7482
|
+
extension: {
|
7414
7483
|
id: string;
|
7415
7484
|
createdAt: Date;
|
7416
7485
|
updatedAt: Date;
|
@@ -7418,10 +7487,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7418
7487
|
userId: string | null;
|
7419
7488
|
sipServerUrl: string;
|
7420
7489
|
sipUserName: string;
|
7490
|
+
webphoneLoginUser: string;
|
7421
7491
|
extensionId: number;
|
7422
7492
|
extensionName: string;
|
7423
7493
|
telephonySignature: string | null;
|
7424
|
-
}
|
7494
|
+
};
|
7425
7495
|
};
|
7426
7496
|
firstResponseTime: number;
|
7427
7497
|
lastMessage: string;
|
@@ -7578,7 +7648,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7578
7648
|
displayName: string;
|
7579
7649
|
}[];
|
7580
7650
|
}[];
|
7581
|
-
extension
|
7651
|
+
extension: {
|
7582
7652
|
id: string;
|
7583
7653
|
createdAt: Date;
|
7584
7654
|
updatedAt: Date;
|
@@ -7586,10 +7656,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7586
7656
|
userId: string | null;
|
7587
7657
|
sipServerUrl: string;
|
7588
7658
|
sipUserName: string;
|
7659
|
+
webphoneLoginUser: string;
|
7589
7660
|
extensionId: number;
|
7590
7661
|
extensionName: string;
|
7591
7662
|
telephonySignature: string | null;
|
7592
|
-
}
|
7663
|
+
};
|
7593
7664
|
};
|
7594
7665
|
cxlog: {
|
7595
7666
|
id: string;
|
@@ -7675,7 +7746,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7675
7746
|
displayName: string;
|
7676
7747
|
}[];
|
7677
7748
|
}[];
|
7678
|
-
extension
|
7749
|
+
extension: {
|
7679
7750
|
id: string;
|
7680
7751
|
createdAt: Date;
|
7681
7752
|
updatedAt: Date;
|
@@ -7683,10 +7754,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7683
7754
|
userId: string | null;
|
7684
7755
|
sipServerUrl: string;
|
7685
7756
|
sipUserName: string;
|
7757
|
+
webphoneLoginUser: string;
|
7686
7758
|
extensionId: number;
|
7687
7759
|
extensionName: string;
|
7688
7760
|
telephonySignature: string | null;
|
7689
|
-
}
|
7761
|
+
};
|
7690
7762
|
} | undefined;
|
7691
7763
|
} | undefined;
|
7692
7764
|
};
|
@@ -7726,7 +7798,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7726
7798
|
displayName: string;
|
7727
7799
|
}[];
|
7728
7800
|
}[];
|
7729
|
-
extension
|
7801
|
+
extension: {
|
7730
7802
|
id: string;
|
7731
7803
|
createdAt: Date;
|
7732
7804
|
updatedAt: Date;
|
@@ -7734,10 +7806,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7734
7806
|
userId: string | null;
|
7735
7807
|
sipServerUrl: string;
|
7736
7808
|
sipUserName: string;
|
7809
|
+
webphoneLoginUser: string;
|
7737
7810
|
extensionId: number;
|
7738
7811
|
extensionName: string;
|
7739
7812
|
telephonySignature: string | null;
|
7740
|
-
}
|
7813
|
+
};
|
7741
7814
|
};
|
7742
7815
|
metadata?: any;
|
7743
7816
|
template?: any;
|