@kl1/contracts 1.0.35 → 1.0.37
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 +976 -932
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +975 -932
- 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 +10243 -6747
- 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/evaluate-form/index.d.ts +6 -6
- package/dist/src/evaluate-form/validation.d.ts +8 -8
- 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/dist/src/widget/index.d.ts +3 -13
- package/dist/src/widget/index.d.ts.map +1 -1
- package/package.json +1 -1
@@ -1721,7 +1721,7 @@ export declare const messengerContract: {
|
|
1721
1721
|
displayName: string;
|
1722
1722
|
}[];
|
1723
1723
|
}>, "many">;
|
1724
|
-
extension: z.
|
1724
|
+
extension: z.ZodObject<{
|
1725
1725
|
id: z.ZodString;
|
1726
1726
|
createdAt: z.ZodDate;
|
1727
1727
|
updatedAt: z.ZodDate;
|
@@ -1729,6 +1729,7 @@ export declare const messengerContract: {
|
|
1729
1729
|
userId: z.ZodNullable<z.ZodString>;
|
1730
1730
|
sipServerUrl: z.ZodString;
|
1731
1731
|
sipUserName: z.ZodString;
|
1732
|
+
webphoneLoginUser: z.ZodString;
|
1732
1733
|
extensionId: z.ZodNumber;
|
1733
1734
|
extensionName: z.ZodString;
|
1734
1735
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -1740,6 +1741,7 @@ export declare const messengerContract: {
|
|
1740
1741
|
userId: string | null;
|
1741
1742
|
sipServerUrl: string;
|
1742
1743
|
sipUserName: string;
|
1744
|
+
webphoneLoginUser: string;
|
1743
1745
|
extensionId: number;
|
1744
1746
|
extensionName: string;
|
1745
1747
|
telephonySignature: string | null;
|
@@ -1751,10 +1753,11 @@ export declare const messengerContract: {
|
|
1751
1753
|
userId: string | null;
|
1752
1754
|
sipServerUrl: string;
|
1753
1755
|
sipUserName: string;
|
1756
|
+
webphoneLoginUser: string;
|
1754
1757
|
extensionId: number;
|
1755
1758
|
extensionName: string;
|
1756
1759
|
telephonySignature: string | null;
|
1757
|
-
}
|
1760
|
+
}>;
|
1758
1761
|
}, "strip", z.ZodTypeAny, {
|
1759
1762
|
id: string;
|
1760
1763
|
address: string | null;
|
@@ -1785,7 +1788,7 @@ export declare const messengerContract: {
|
|
1785
1788
|
displayName: string;
|
1786
1789
|
}[];
|
1787
1790
|
}[];
|
1788
|
-
extension
|
1791
|
+
extension: {
|
1789
1792
|
id: string;
|
1790
1793
|
createdAt: Date;
|
1791
1794
|
updatedAt: Date;
|
@@ -1793,10 +1796,11 @@ export declare const messengerContract: {
|
|
1793
1796
|
userId: string | null;
|
1794
1797
|
sipServerUrl: string;
|
1795
1798
|
sipUserName: string;
|
1799
|
+
webphoneLoginUser: string;
|
1796
1800
|
extensionId: number;
|
1797
1801
|
extensionName: string;
|
1798
1802
|
telephonySignature: string | null;
|
1799
|
-
}
|
1803
|
+
};
|
1800
1804
|
}, {
|
1801
1805
|
id: string;
|
1802
1806
|
address: string | null;
|
@@ -1827,7 +1831,7 @@ export declare const messengerContract: {
|
|
1827
1831
|
displayName: string;
|
1828
1832
|
}[];
|
1829
1833
|
}[];
|
1830
|
-
extension
|
1834
|
+
extension: {
|
1831
1835
|
id: string;
|
1832
1836
|
createdAt: Date;
|
1833
1837
|
updatedAt: Date;
|
@@ -1835,10 +1839,11 @@ export declare const messengerContract: {
|
|
1835
1839
|
userId: string | null;
|
1836
1840
|
sipServerUrl: string;
|
1837
1841
|
sipUserName: string;
|
1842
|
+
webphoneLoginUser: string;
|
1838
1843
|
extensionId: number;
|
1839
1844
|
extensionName: string;
|
1840
1845
|
telephonySignature: string | null;
|
1841
|
-
}
|
1846
|
+
};
|
1842
1847
|
}>;
|
1843
1848
|
assignee: z.ZodObject<{
|
1844
1849
|
id: z.ZodString;
|
@@ -1920,7 +1925,7 @@ export declare const messengerContract: {
|
|
1920
1925
|
displayName: string;
|
1921
1926
|
}[];
|
1922
1927
|
}>, "many">;
|
1923
|
-
extension: z.
|
1928
|
+
extension: z.ZodObject<{
|
1924
1929
|
id: z.ZodString;
|
1925
1930
|
createdAt: z.ZodDate;
|
1926
1931
|
updatedAt: z.ZodDate;
|
@@ -1928,6 +1933,7 @@ export declare const messengerContract: {
|
|
1928
1933
|
userId: z.ZodNullable<z.ZodString>;
|
1929
1934
|
sipServerUrl: z.ZodString;
|
1930
1935
|
sipUserName: z.ZodString;
|
1936
|
+
webphoneLoginUser: z.ZodString;
|
1931
1937
|
extensionId: z.ZodNumber;
|
1932
1938
|
extensionName: z.ZodString;
|
1933
1939
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -1939,6 +1945,7 @@ export declare const messengerContract: {
|
|
1939
1945
|
userId: string | null;
|
1940
1946
|
sipServerUrl: string;
|
1941
1947
|
sipUserName: string;
|
1948
|
+
webphoneLoginUser: string;
|
1942
1949
|
extensionId: number;
|
1943
1950
|
extensionName: string;
|
1944
1951
|
telephonySignature: string | null;
|
@@ -1950,10 +1957,11 @@ export declare const messengerContract: {
|
|
1950
1957
|
userId: string | null;
|
1951
1958
|
sipServerUrl: string;
|
1952
1959
|
sipUserName: string;
|
1960
|
+
webphoneLoginUser: string;
|
1953
1961
|
extensionId: number;
|
1954
1962
|
extensionName: string;
|
1955
1963
|
telephonySignature: string | null;
|
1956
|
-
}
|
1964
|
+
}>;
|
1957
1965
|
}, "strip", z.ZodTypeAny, {
|
1958
1966
|
id: string;
|
1959
1967
|
address: string | null;
|
@@ -1984,7 +1992,7 @@ export declare const messengerContract: {
|
|
1984
1992
|
displayName: string;
|
1985
1993
|
}[];
|
1986
1994
|
}[];
|
1987
|
-
extension
|
1995
|
+
extension: {
|
1988
1996
|
id: string;
|
1989
1997
|
createdAt: Date;
|
1990
1998
|
updatedAt: Date;
|
@@ -1992,10 +2000,11 @@ export declare const messengerContract: {
|
|
1992
2000
|
userId: string | null;
|
1993
2001
|
sipServerUrl: string;
|
1994
2002
|
sipUserName: string;
|
2003
|
+
webphoneLoginUser: string;
|
1995
2004
|
extensionId: number;
|
1996
2005
|
extensionName: string;
|
1997
2006
|
telephonySignature: string | null;
|
1998
|
-
}
|
2007
|
+
};
|
1999
2008
|
}, {
|
2000
2009
|
id: string;
|
2001
2010
|
address: string | null;
|
@@ -2026,7 +2035,7 @@ export declare const messengerContract: {
|
|
2026
2035
|
displayName: string;
|
2027
2036
|
}[];
|
2028
2037
|
}[];
|
2029
|
-
extension
|
2038
|
+
extension: {
|
2030
2039
|
id: string;
|
2031
2040
|
createdAt: Date;
|
2032
2041
|
updatedAt: Date;
|
@@ -2034,10 +2043,11 @@ export declare const messengerContract: {
|
|
2034
2043
|
userId: string | null;
|
2035
2044
|
sipServerUrl: string;
|
2036
2045
|
sipUserName: string;
|
2046
|
+
webphoneLoginUser: string;
|
2037
2047
|
extensionId: number;
|
2038
2048
|
extensionName: string;
|
2039
2049
|
telephonySignature: string | null;
|
2040
|
-
}
|
2050
|
+
};
|
2041
2051
|
}>;
|
2042
2052
|
channel: z.ZodOptional<z.ZodObject<{
|
2043
2053
|
id: z.ZodOptional<z.ZodString>;
|
@@ -2148,7 +2158,7 @@ export declare const messengerContract: {
|
|
2148
2158
|
displayName: string;
|
2149
2159
|
}[];
|
2150
2160
|
}>, "many">;
|
2151
|
-
extension: z.
|
2161
|
+
extension: z.ZodObject<{
|
2152
2162
|
id: z.ZodString;
|
2153
2163
|
createdAt: z.ZodDate;
|
2154
2164
|
updatedAt: z.ZodDate;
|
@@ -2156,6 +2166,7 @@ export declare const messengerContract: {
|
|
2156
2166
|
userId: z.ZodNullable<z.ZodString>;
|
2157
2167
|
sipServerUrl: z.ZodString;
|
2158
2168
|
sipUserName: z.ZodString;
|
2169
|
+
webphoneLoginUser: z.ZodString;
|
2159
2170
|
extensionId: z.ZodNumber;
|
2160
2171
|
extensionName: z.ZodString;
|
2161
2172
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -2167,6 +2178,7 @@ export declare const messengerContract: {
|
|
2167
2178
|
userId: string | null;
|
2168
2179
|
sipServerUrl: string;
|
2169
2180
|
sipUserName: string;
|
2181
|
+
webphoneLoginUser: string;
|
2170
2182
|
extensionId: number;
|
2171
2183
|
extensionName: string;
|
2172
2184
|
telephonySignature: string | null;
|
@@ -2178,10 +2190,11 @@ export declare const messengerContract: {
|
|
2178
2190
|
userId: string | null;
|
2179
2191
|
sipServerUrl: string;
|
2180
2192
|
sipUserName: string;
|
2193
|
+
webphoneLoginUser: string;
|
2181
2194
|
extensionId: number;
|
2182
2195
|
extensionName: string;
|
2183
2196
|
telephonySignature: string | null;
|
2184
|
-
}
|
2197
|
+
}>;
|
2185
2198
|
}, "strip", z.ZodTypeAny, {
|
2186
2199
|
id: string;
|
2187
2200
|
address: string | null;
|
@@ -2212,7 +2225,7 @@ export declare const messengerContract: {
|
|
2212
2225
|
displayName: string;
|
2213
2226
|
}[];
|
2214
2227
|
}[];
|
2215
|
-
extension
|
2228
|
+
extension: {
|
2216
2229
|
id: string;
|
2217
2230
|
createdAt: Date;
|
2218
2231
|
updatedAt: Date;
|
@@ -2220,10 +2233,11 @@ export declare const messengerContract: {
|
|
2220
2233
|
userId: string | null;
|
2221
2234
|
sipServerUrl: string;
|
2222
2235
|
sipUserName: string;
|
2236
|
+
webphoneLoginUser: string;
|
2223
2237
|
extensionId: number;
|
2224
2238
|
extensionName: string;
|
2225
2239
|
telephonySignature: string | null;
|
2226
|
-
}
|
2240
|
+
};
|
2227
2241
|
}, {
|
2228
2242
|
id: string;
|
2229
2243
|
address: string | null;
|
@@ -2254,7 +2268,7 @@ export declare const messengerContract: {
|
|
2254
2268
|
displayName: string;
|
2255
2269
|
}[];
|
2256
2270
|
}[];
|
2257
|
-
extension
|
2271
|
+
extension: {
|
2258
2272
|
id: string;
|
2259
2273
|
createdAt: Date;
|
2260
2274
|
updatedAt: Date;
|
@@ -2262,10 +2276,11 @@ export declare const messengerContract: {
|
|
2262
2276
|
userId: string | null;
|
2263
2277
|
sipServerUrl: string;
|
2264
2278
|
sipUserName: string;
|
2279
|
+
webphoneLoginUser: string;
|
2265
2280
|
extensionId: number;
|
2266
2281
|
extensionName: string;
|
2267
2282
|
telephonySignature: string | null;
|
2268
|
-
}
|
2283
|
+
};
|
2269
2284
|
}>>;
|
2270
2285
|
}, "strip", z.ZodTypeAny, {
|
2271
2286
|
id?: string | undefined;
|
@@ -2316,7 +2331,7 @@ export declare const messengerContract: {
|
|
2316
2331
|
displayName: string;
|
2317
2332
|
}[];
|
2318
2333
|
}[];
|
2319
|
-
extension
|
2334
|
+
extension: {
|
2320
2335
|
id: string;
|
2321
2336
|
createdAt: Date;
|
2322
2337
|
updatedAt: Date;
|
@@ -2324,10 +2339,11 @@ export declare const messengerContract: {
|
|
2324
2339
|
userId: string | null;
|
2325
2340
|
sipServerUrl: string;
|
2326
2341
|
sipUserName: string;
|
2342
|
+
webphoneLoginUser: string;
|
2327
2343
|
extensionId: number;
|
2328
2344
|
extensionName: string;
|
2329
2345
|
telephonySignature: string | null;
|
2330
|
-
}
|
2346
|
+
};
|
2331
2347
|
} | undefined;
|
2332
2348
|
}, {
|
2333
2349
|
id?: string | undefined;
|
@@ -2378,7 +2394,7 @@ export declare const messengerContract: {
|
|
2378
2394
|
displayName: string;
|
2379
2395
|
}[];
|
2380
2396
|
}[];
|
2381
|
-
extension
|
2397
|
+
extension: {
|
2382
2398
|
id: string;
|
2383
2399
|
createdAt: Date;
|
2384
2400
|
updatedAt: Date;
|
@@ -2386,10 +2402,11 @@ export declare const messengerContract: {
|
|
2386
2402
|
userId: string | null;
|
2387
2403
|
sipServerUrl: string;
|
2388
2404
|
sipUserName: string;
|
2405
|
+
webphoneLoginUser: string;
|
2389
2406
|
extensionId: number;
|
2390
2407
|
extensionName: string;
|
2391
2408
|
telephonySignature: string | null;
|
2392
|
-
}
|
2409
|
+
};
|
2393
2410
|
} | undefined;
|
2394
2411
|
}>>;
|
2395
2412
|
cxlog: z.ZodObject<{
|
@@ -2575,7 +2592,7 @@ export declare const messengerContract: {
|
|
2575
2592
|
displayName: string;
|
2576
2593
|
}[];
|
2577
2594
|
}[];
|
2578
|
-
extension
|
2595
|
+
extension: {
|
2579
2596
|
id: string;
|
2580
2597
|
createdAt: Date;
|
2581
2598
|
updatedAt: Date;
|
@@ -2583,10 +2600,11 @@ export declare const messengerContract: {
|
|
2583
2600
|
userId: string | null;
|
2584
2601
|
sipServerUrl: string;
|
2585
2602
|
sipUserName: string;
|
2603
|
+
webphoneLoginUser: string;
|
2586
2604
|
extensionId: number;
|
2587
2605
|
extensionName: string;
|
2588
2606
|
telephonySignature: string | null;
|
2589
|
-
}
|
2607
|
+
};
|
2590
2608
|
};
|
2591
2609
|
firstResponseTime: number;
|
2592
2610
|
lastMessage: string;
|
@@ -2743,7 +2761,7 @@ export declare const messengerContract: {
|
|
2743
2761
|
displayName: string;
|
2744
2762
|
}[];
|
2745
2763
|
}[];
|
2746
|
-
extension
|
2764
|
+
extension: {
|
2747
2765
|
id: string;
|
2748
2766
|
createdAt: Date;
|
2749
2767
|
updatedAt: Date;
|
@@ -2751,10 +2769,11 @@ export declare const messengerContract: {
|
|
2751
2769
|
userId: string | null;
|
2752
2770
|
sipServerUrl: string;
|
2753
2771
|
sipUserName: string;
|
2772
|
+
webphoneLoginUser: string;
|
2754
2773
|
extensionId: number;
|
2755
2774
|
extensionName: string;
|
2756
2775
|
telephonySignature: string | null;
|
2757
|
-
}
|
2776
|
+
};
|
2758
2777
|
};
|
2759
2778
|
cxlog: {
|
2760
2779
|
id: string;
|
@@ -2840,7 +2859,7 @@ export declare const messengerContract: {
|
|
2840
2859
|
displayName: string;
|
2841
2860
|
}[];
|
2842
2861
|
}[];
|
2843
|
-
extension
|
2862
|
+
extension: {
|
2844
2863
|
id: string;
|
2845
2864
|
createdAt: Date;
|
2846
2865
|
updatedAt: Date;
|
@@ -2848,10 +2867,11 @@ export declare const messengerContract: {
|
|
2848
2867
|
userId: string | null;
|
2849
2868
|
sipServerUrl: string;
|
2850
2869
|
sipUserName: string;
|
2870
|
+
webphoneLoginUser: string;
|
2851
2871
|
extensionId: number;
|
2852
2872
|
extensionName: string;
|
2853
2873
|
telephonySignature: string | null;
|
2854
|
-
}
|
2874
|
+
};
|
2855
2875
|
} | undefined;
|
2856
2876
|
} | undefined;
|
2857
2877
|
}, {
|
@@ -2890,7 +2910,7 @@ export declare const messengerContract: {
|
|
2890
2910
|
displayName: string;
|
2891
2911
|
}[];
|
2892
2912
|
}[];
|
2893
|
-
extension
|
2913
|
+
extension: {
|
2894
2914
|
id: string;
|
2895
2915
|
createdAt: Date;
|
2896
2916
|
updatedAt: Date;
|
@@ -2898,10 +2918,11 @@ export declare const messengerContract: {
|
|
2898
2918
|
userId: string | null;
|
2899
2919
|
sipServerUrl: string;
|
2900
2920
|
sipUserName: string;
|
2921
|
+
webphoneLoginUser: string;
|
2901
2922
|
extensionId: number;
|
2902
2923
|
extensionName: string;
|
2903
2924
|
telephonySignature: string | null;
|
2904
|
-
}
|
2925
|
+
};
|
2905
2926
|
};
|
2906
2927
|
firstResponseTime: number;
|
2907
2928
|
lastMessage: string;
|
@@ -3058,7 +3079,7 @@ export declare const messengerContract: {
|
|
3058
3079
|
displayName: string;
|
3059
3080
|
}[];
|
3060
3081
|
}[];
|
3061
|
-
extension
|
3082
|
+
extension: {
|
3062
3083
|
id: string;
|
3063
3084
|
createdAt: Date;
|
3064
3085
|
updatedAt: Date;
|
@@ -3066,10 +3087,11 @@ export declare const messengerContract: {
|
|
3066
3087
|
userId: string | null;
|
3067
3088
|
sipServerUrl: string;
|
3068
3089
|
sipUserName: string;
|
3090
|
+
webphoneLoginUser: string;
|
3069
3091
|
extensionId: number;
|
3070
3092
|
extensionName: string;
|
3071
3093
|
telephonySignature: string | null;
|
3072
|
-
}
|
3094
|
+
};
|
3073
3095
|
};
|
3074
3096
|
cxlog: {
|
3075
3097
|
id: string;
|
@@ -3155,7 +3177,7 @@ export declare const messengerContract: {
|
|
3155
3177
|
displayName: string;
|
3156
3178
|
}[];
|
3157
3179
|
}[];
|
3158
|
-
extension
|
3180
|
+
extension: {
|
3159
3181
|
id: string;
|
3160
3182
|
createdAt: Date;
|
3161
3183
|
updatedAt: Date;
|
@@ -3163,10 +3185,11 @@ export declare const messengerContract: {
|
|
3163
3185
|
userId: string | null;
|
3164
3186
|
sipServerUrl: string;
|
3165
3187
|
sipUserName: string;
|
3188
|
+
webphoneLoginUser: string;
|
3166
3189
|
extensionId: number;
|
3167
3190
|
extensionName: string;
|
3168
3191
|
telephonySignature: string | null;
|
3169
|
-
}
|
3192
|
+
};
|
3170
3193
|
} | undefined;
|
3171
3194
|
} | undefined;
|
3172
3195
|
}>;
|
@@ -3281,7 +3304,7 @@ export declare const messengerContract: {
|
|
3281
3304
|
displayName: string;
|
3282
3305
|
}[];
|
3283
3306
|
}>, "many">;
|
3284
|
-
extension: z.
|
3307
|
+
extension: z.ZodObject<{
|
3285
3308
|
id: z.ZodString;
|
3286
3309
|
createdAt: z.ZodDate;
|
3287
3310
|
updatedAt: z.ZodDate;
|
@@ -3289,6 +3312,7 @@ export declare const messengerContract: {
|
|
3289
3312
|
userId: z.ZodNullable<z.ZodString>;
|
3290
3313
|
sipServerUrl: z.ZodString;
|
3291
3314
|
sipUserName: z.ZodString;
|
3315
|
+
webphoneLoginUser: z.ZodString;
|
3292
3316
|
extensionId: z.ZodNumber;
|
3293
3317
|
extensionName: z.ZodString;
|
3294
3318
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -3300,6 +3324,7 @@ export declare const messengerContract: {
|
|
3300
3324
|
userId: string | null;
|
3301
3325
|
sipServerUrl: string;
|
3302
3326
|
sipUserName: string;
|
3327
|
+
webphoneLoginUser: string;
|
3303
3328
|
extensionId: number;
|
3304
3329
|
extensionName: string;
|
3305
3330
|
telephonySignature: string | null;
|
@@ -3311,10 +3336,11 @@ export declare const messengerContract: {
|
|
3311
3336
|
userId: string | null;
|
3312
3337
|
sipServerUrl: string;
|
3313
3338
|
sipUserName: string;
|
3339
|
+
webphoneLoginUser: string;
|
3314
3340
|
extensionId: number;
|
3315
3341
|
extensionName: string;
|
3316
3342
|
telephonySignature: string | null;
|
3317
|
-
}
|
3343
|
+
}>;
|
3318
3344
|
}, "strip", z.ZodTypeAny, {
|
3319
3345
|
id: string;
|
3320
3346
|
address: string | null;
|
@@ -3345,7 +3371,7 @@ export declare const messengerContract: {
|
|
3345
3371
|
displayName: string;
|
3346
3372
|
}[];
|
3347
3373
|
}[];
|
3348
|
-
extension
|
3374
|
+
extension: {
|
3349
3375
|
id: string;
|
3350
3376
|
createdAt: Date;
|
3351
3377
|
updatedAt: Date;
|
@@ -3353,10 +3379,11 @@ export declare const messengerContract: {
|
|
3353
3379
|
userId: string | null;
|
3354
3380
|
sipServerUrl: string;
|
3355
3381
|
sipUserName: string;
|
3382
|
+
webphoneLoginUser: string;
|
3356
3383
|
extensionId: number;
|
3357
3384
|
extensionName: string;
|
3358
3385
|
telephonySignature: string | null;
|
3359
|
-
}
|
3386
|
+
};
|
3360
3387
|
}, {
|
3361
3388
|
id: string;
|
3362
3389
|
address: string | null;
|
@@ -3387,7 +3414,7 @@ export declare const messengerContract: {
|
|
3387
3414
|
displayName: string;
|
3388
3415
|
}[];
|
3389
3416
|
}[];
|
3390
|
-
extension
|
3417
|
+
extension: {
|
3391
3418
|
id: string;
|
3392
3419
|
createdAt: Date;
|
3393
3420
|
updatedAt: Date;
|
@@ -3395,10 +3422,11 @@ export declare const messengerContract: {
|
|
3395
3422
|
userId: string | null;
|
3396
3423
|
sipServerUrl: string;
|
3397
3424
|
sipUserName: string;
|
3425
|
+
webphoneLoginUser: string;
|
3398
3426
|
extensionId: number;
|
3399
3427
|
extensionName: string;
|
3400
3428
|
telephonySignature: string | null;
|
3401
|
-
}
|
3429
|
+
};
|
3402
3430
|
}>;
|
3403
3431
|
assignee: z.ZodObject<{
|
3404
3432
|
id: z.ZodString;
|
@@ -3480,7 +3508,7 @@ export declare const messengerContract: {
|
|
3480
3508
|
displayName: string;
|
3481
3509
|
}[];
|
3482
3510
|
}>, "many">;
|
3483
|
-
extension: z.
|
3511
|
+
extension: z.ZodObject<{
|
3484
3512
|
id: z.ZodString;
|
3485
3513
|
createdAt: z.ZodDate;
|
3486
3514
|
updatedAt: z.ZodDate;
|
@@ -3488,6 +3516,7 @@ export declare const messengerContract: {
|
|
3488
3516
|
userId: z.ZodNullable<z.ZodString>;
|
3489
3517
|
sipServerUrl: z.ZodString;
|
3490
3518
|
sipUserName: z.ZodString;
|
3519
|
+
webphoneLoginUser: z.ZodString;
|
3491
3520
|
extensionId: z.ZodNumber;
|
3492
3521
|
extensionName: z.ZodString;
|
3493
3522
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -3499,6 +3528,7 @@ export declare const messengerContract: {
|
|
3499
3528
|
userId: string | null;
|
3500
3529
|
sipServerUrl: string;
|
3501
3530
|
sipUserName: string;
|
3531
|
+
webphoneLoginUser: string;
|
3502
3532
|
extensionId: number;
|
3503
3533
|
extensionName: string;
|
3504
3534
|
telephonySignature: string | null;
|
@@ -3510,10 +3540,11 @@ export declare const messengerContract: {
|
|
3510
3540
|
userId: string | null;
|
3511
3541
|
sipServerUrl: string;
|
3512
3542
|
sipUserName: string;
|
3543
|
+
webphoneLoginUser: string;
|
3513
3544
|
extensionId: number;
|
3514
3545
|
extensionName: string;
|
3515
3546
|
telephonySignature: string | null;
|
3516
|
-
}
|
3547
|
+
}>;
|
3517
3548
|
}, "strip", z.ZodTypeAny, {
|
3518
3549
|
id: string;
|
3519
3550
|
address: string | null;
|
@@ -3544,7 +3575,7 @@ export declare const messengerContract: {
|
|
3544
3575
|
displayName: string;
|
3545
3576
|
}[];
|
3546
3577
|
}[];
|
3547
|
-
extension
|
3578
|
+
extension: {
|
3548
3579
|
id: string;
|
3549
3580
|
createdAt: Date;
|
3550
3581
|
updatedAt: Date;
|
@@ -3552,10 +3583,11 @@ export declare const messengerContract: {
|
|
3552
3583
|
userId: string | null;
|
3553
3584
|
sipServerUrl: string;
|
3554
3585
|
sipUserName: string;
|
3586
|
+
webphoneLoginUser: string;
|
3555
3587
|
extensionId: number;
|
3556
3588
|
extensionName: string;
|
3557
3589
|
telephonySignature: string | null;
|
3558
|
-
}
|
3590
|
+
};
|
3559
3591
|
}, {
|
3560
3592
|
id: string;
|
3561
3593
|
address: string | null;
|
@@ -3586,7 +3618,7 @@ export declare const messengerContract: {
|
|
3586
3618
|
displayName: string;
|
3587
3619
|
}[];
|
3588
3620
|
}[];
|
3589
|
-
extension
|
3621
|
+
extension: {
|
3590
3622
|
id: string;
|
3591
3623
|
createdAt: Date;
|
3592
3624
|
updatedAt: Date;
|
@@ -3594,10 +3626,11 @@ export declare const messengerContract: {
|
|
3594
3626
|
userId: string | null;
|
3595
3627
|
sipServerUrl: string;
|
3596
3628
|
sipUserName: string;
|
3629
|
+
webphoneLoginUser: string;
|
3597
3630
|
extensionId: number;
|
3598
3631
|
extensionName: string;
|
3599
3632
|
telephonySignature: string | null;
|
3600
|
-
}
|
3633
|
+
};
|
3601
3634
|
}>;
|
3602
3635
|
sender: z.ZodObject<{
|
3603
3636
|
id: z.ZodString;
|
@@ -3679,7 +3712,7 @@ export declare const messengerContract: {
|
|
3679
3712
|
displayName: string;
|
3680
3713
|
}[];
|
3681
3714
|
}>, "many">;
|
3682
|
-
extension: z.
|
3715
|
+
extension: z.ZodObject<{
|
3683
3716
|
id: z.ZodString;
|
3684
3717
|
createdAt: z.ZodDate;
|
3685
3718
|
updatedAt: z.ZodDate;
|
@@ -3687,6 +3720,7 @@ export declare const messengerContract: {
|
|
3687
3720
|
userId: z.ZodNullable<z.ZodString>;
|
3688
3721
|
sipServerUrl: z.ZodString;
|
3689
3722
|
sipUserName: z.ZodString;
|
3723
|
+
webphoneLoginUser: z.ZodString;
|
3690
3724
|
extensionId: z.ZodNumber;
|
3691
3725
|
extensionName: z.ZodString;
|
3692
3726
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -3698,6 +3732,7 @@ export declare const messengerContract: {
|
|
3698
3732
|
userId: string | null;
|
3699
3733
|
sipServerUrl: string;
|
3700
3734
|
sipUserName: string;
|
3735
|
+
webphoneLoginUser: string;
|
3701
3736
|
extensionId: number;
|
3702
3737
|
extensionName: string;
|
3703
3738
|
telephonySignature: string | null;
|
@@ -3709,10 +3744,11 @@ export declare const messengerContract: {
|
|
3709
3744
|
userId: string | null;
|
3710
3745
|
sipServerUrl: string;
|
3711
3746
|
sipUserName: string;
|
3747
|
+
webphoneLoginUser: string;
|
3712
3748
|
extensionId: number;
|
3713
3749
|
extensionName: string;
|
3714
3750
|
telephonySignature: string | null;
|
3715
|
-
}
|
3751
|
+
}>;
|
3716
3752
|
}, "strip", z.ZodTypeAny, {
|
3717
3753
|
id: string;
|
3718
3754
|
address: string | null;
|
@@ -3743,7 +3779,7 @@ export declare const messengerContract: {
|
|
3743
3779
|
displayName: string;
|
3744
3780
|
}[];
|
3745
3781
|
}[];
|
3746
|
-
extension
|
3782
|
+
extension: {
|
3747
3783
|
id: string;
|
3748
3784
|
createdAt: Date;
|
3749
3785
|
updatedAt: Date;
|
@@ -3751,10 +3787,11 @@ export declare const messengerContract: {
|
|
3751
3787
|
userId: string | null;
|
3752
3788
|
sipServerUrl: string;
|
3753
3789
|
sipUserName: string;
|
3790
|
+
webphoneLoginUser: string;
|
3754
3791
|
extensionId: number;
|
3755
3792
|
extensionName: string;
|
3756
3793
|
telephonySignature: string | null;
|
3757
|
-
}
|
3794
|
+
};
|
3758
3795
|
}, {
|
3759
3796
|
id: string;
|
3760
3797
|
address: string | null;
|
@@ -3785,7 +3822,7 @@ export declare const messengerContract: {
|
|
3785
3822
|
displayName: string;
|
3786
3823
|
}[];
|
3787
3824
|
}[];
|
3788
|
-
extension
|
3825
|
+
extension: {
|
3789
3826
|
id: string;
|
3790
3827
|
createdAt: Date;
|
3791
3828
|
updatedAt: Date;
|
@@ -3793,10 +3830,11 @@ export declare const messengerContract: {
|
|
3793
3830
|
userId: string | null;
|
3794
3831
|
sipServerUrl: string;
|
3795
3832
|
sipUserName: string;
|
3833
|
+
webphoneLoginUser: string;
|
3796
3834
|
extensionId: number;
|
3797
3835
|
extensionName: string;
|
3798
3836
|
telephonySignature: string | null;
|
3799
|
-
}
|
3837
|
+
};
|
3800
3838
|
}>;
|
3801
3839
|
}, "strip", z.ZodTypeAny, {
|
3802
3840
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "reopen" | "handed_over" | "updated" | "started";
|
@@ -3838,7 +3876,7 @@ export declare const messengerContract: {
|
|
3838
3876
|
displayName: string;
|
3839
3877
|
}[];
|
3840
3878
|
}[];
|
3841
|
-
extension
|
3879
|
+
extension: {
|
3842
3880
|
id: string;
|
3843
3881
|
createdAt: Date;
|
3844
3882
|
updatedAt: Date;
|
@@ -3846,10 +3884,11 @@ export declare const messengerContract: {
|
|
3846
3884
|
userId: string | null;
|
3847
3885
|
sipServerUrl: string;
|
3848
3886
|
sipUserName: string;
|
3887
|
+
webphoneLoginUser: string;
|
3849
3888
|
extensionId: number;
|
3850
3889
|
extensionName: string;
|
3851
3890
|
telephonySignature: string | null;
|
3852
|
-
}
|
3891
|
+
};
|
3853
3892
|
};
|
3854
3893
|
upload: {
|
3855
3894
|
id: string;
|
@@ -3892,7 +3931,7 @@ export declare const messengerContract: {
|
|
3892
3931
|
displayName: string;
|
3893
3932
|
}[];
|
3894
3933
|
}[];
|
3895
|
-
extension
|
3934
|
+
extension: {
|
3896
3935
|
id: string;
|
3897
3936
|
createdAt: Date;
|
3898
3937
|
updatedAt: Date;
|
@@ -3900,10 +3939,11 @@ export declare const messengerContract: {
|
|
3900
3939
|
userId: string | null;
|
3901
3940
|
sipServerUrl: string;
|
3902
3941
|
sipUserName: string;
|
3942
|
+
webphoneLoginUser: string;
|
3903
3943
|
extensionId: number;
|
3904
3944
|
extensionName: string;
|
3905
3945
|
telephonySignature: string | null;
|
3906
|
-
}
|
3946
|
+
};
|
3907
3947
|
};
|
3908
3948
|
room: {
|
3909
3949
|
id: string;
|
@@ -3941,7 +3981,7 @@ export declare const messengerContract: {
|
|
3941
3981
|
displayName: string;
|
3942
3982
|
}[];
|
3943
3983
|
}[];
|
3944
|
-
extension
|
3984
|
+
extension: {
|
3945
3985
|
id: string;
|
3946
3986
|
createdAt: Date;
|
3947
3987
|
updatedAt: Date;
|
@@ -3949,10 +3989,11 @@ export declare const messengerContract: {
|
|
3949
3989
|
userId: string | null;
|
3950
3990
|
sipServerUrl: string;
|
3951
3991
|
sipUserName: string;
|
3992
|
+
webphoneLoginUser: string;
|
3952
3993
|
extensionId: number;
|
3953
3994
|
extensionName: string;
|
3954
3995
|
telephonySignature: string | null;
|
3955
|
-
}
|
3996
|
+
};
|
3956
3997
|
};
|
3957
3998
|
firstResponseTime: number;
|
3958
3999
|
lastMessage: string;
|
@@ -4109,7 +4150,7 @@ export declare const messengerContract: {
|
|
4109
4150
|
displayName: string;
|
4110
4151
|
}[];
|
4111
4152
|
}[];
|
4112
|
-
extension
|
4153
|
+
extension: {
|
4113
4154
|
id: string;
|
4114
4155
|
createdAt: Date;
|
4115
4156
|
updatedAt: Date;
|
@@ -4117,10 +4158,11 @@ export declare const messengerContract: {
|
|
4117
4158
|
userId: string | null;
|
4118
4159
|
sipServerUrl: string;
|
4119
4160
|
sipUserName: string;
|
4161
|
+
webphoneLoginUser: string;
|
4120
4162
|
extensionId: number;
|
4121
4163
|
extensionName: string;
|
4122
4164
|
telephonySignature: string | null;
|
4123
|
-
}
|
4165
|
+
};
|
4124
4166
|
};
|
4125
4167
|
cxlog: {
|
4126
4168
|
id: string;
|
@@ -4206,7 +4248,7 @@ export declare const messengerContract: {
|
|
4206
4248
|
displayName: string;
|
4207
4249
|
}[];
|
4208
4250
|
}[];
|
4209
|
-
extension
|
4251
|
+
extension: {
|
4210
4252
|
id: string;
|
4211
4253
|
createdAt: Date;
|
4212
4254
|
updatedAt: Date;
|
@@ -4214,10 +4256,11 @@ export declare const messengerContract: {
|
|
4214
4256
|
userId: string | null;
|
4215
4257
|
sipServerUrl: string;
|
4216
4258
|
sipUserName: string;
|
4259
|
+
webphoneLoginUser: string;
|
4217
4260
|
extensionId: number;
|
4218
4261
|
extensionName: string;
|
4219
4262
|
telephonySignature: string | null;
|
4220
|
-
}
|
4263
|
+
};
|
4221
4264
|
} | undefined;
|
4222
4265
|
} | undefined;
|
4223
4266
|
};
|
@@ -4257,7 +4300,7 @@ export declare const messengerContract: {
|
|
4257
4300
|
displayName: string;
|
4258
4301
|
}[];
|
4259
4302
|
}[];
|
4260
|
-
extension
|
4303
|
+
extension: {
|
4261
4304
|
id: string;
|
4262
4305
|
createdAt: Date;
|
4263
4306
|
updatedAt: Date;
|
@@ -4265,10 +4308,11 @@ export declare const messengerContract: {
|
|
4265
4308
|
userId: string | null;
|
4266
4309
|
sipServerUrl: string;
|
4267
4310
|
sipUserName: string;
|
4311
|
+
webphoneLoginUser: string;
|
4268
4312
|
extensionId: number;
|
4269
4313
|
extensionName: string;
|
4270
4314
|
telephonySignature: string | null;
|
4271
|
-
}
|
4315
|
+
};
|
4272
4316
|
};
|
4273
4317
|
metadata?: any;
|
4274
4318
|
template?: any;
|
@@ -4312,7 +4356,7 @@ export declare const messengerContract: {
|
|
4312
4356
|
displayName: string;
|
4313
4357
|
}[];
|
4314
4358
|
}[];
|
4315
|
-
extension
|
4359
|
+
extension: {
|
4316
4360
|
id: string;
|
4317
4361
|
createdAt: Date;
|
4318
4362
|
updatedAt: Date;
|
@@ -4320,10 +4364,11 @@ export declare const messengerContract: {
|
|
4320
4364
|
userId: string | null;
|
4321
4365
|
sipServerUrl: string;
|
4322
4366
|
sipUserName: string;
|
4367
|
+
webphoneLoginUser: string;
|
4323
4368
|
extensionId: number;
|
4324
4369
|
extensionName: string;
|
4325
4370
|
telephonySignature: string | null;
|
4326
|
-
}
|
4371
|
+
};
|
4327
4372
|
};
|
4328
4373
|
upload: {
|
4329
4374
|
id: string;
|
@@ -4366,7 +4411,7 @@ export declare const messengerContract: {
|
|
4366
4411
|
displayName: string;
|
4367
4412
|
}[];
|
4368
4413
|
}[];
|
4369
|
-
extension
|
4414
|
+
extension: {
|
4370
4415
|
id: string;
|
4371
4416
|
createdAt: Date;
|
4372
4417
|
updatedAt: Date;
|
@@ -4374,10 +4419,11 @@ export declare const messengerContract: {
|
|
4374
4419
|
userId: string | null;
|
4375
4420
|
sipServerUrl: string;
|
4376
4421
|
sipUserName: string;
|
4422
|
+
webphoneLoginUser: string;
|
4377
4423
|
extensionId: number;
|
4378
4424
|
extensionName: string;
|
4379
4425
|
telephonySignature: string | null;
|
4380
|
-
}
|
4426
|
+
};
|
4381
4427
|
};
|
4382
4428
|
room: {
|
4383
4429
|
id: string;
|
@@ -4415,7 +4461,7 @@ export declare const messengerContract: {
|
|
4415
4461
|
displayName: string;
|
4416
4462
|
}[];
|
4417
4463
|
}[];
|
4418
|
-
extension
|
4464
|
+
extension: {
|
4419
4465
|
id: string;
|
4420
4466
|
createdAt: Date;
|
4421
4467
|
updatedAt: Date;
|
@@ -4423,10 +4469,11 @@ export declare const messengerContract: {
|
|
4423
4469
|
userId: string | null;
|
4424
4470
|
sipServerUrl: string;
|
4425
4471
|
sipUserName: string;
|
4472
|
+
webphoneLoginUser: string;
|
4426
4473
|
extensionId: number;
|
4427
4474
|
extensionName: string;
|
4428
4475
|
telephonySignature: string | null;
|
4429
|
-
}
|
4476
|
+
};
|
4430
4477
|
};
|
4431
4478
|
firstResponseTime: number;
|
4432
4479
|
lastMessage: string;
|
@@ -4583,7 +4630,7 @@ export declare const messengerContract: {
|
|
4583
4630
|
displayName: string;
|
4584
4631
|
}[];
|
4585
4632
|
}[];
|
4586
|
-
extension
|
4633
|
+
extension: {
|
4587
4634
|
id: string;
|
4588
4635
|
createdAt: Date;
|
4589
4636
|
updatedAt: Date;
|
@@ -4591,10 +4638,11 @@ export declare const messengerContract: {
|
|
4591
4638
|
userId: string | null;
|
4592
4639
|
sipServerUrl: string;
|
4593
4640
|
sipUserName: string;
|
4641
|
+
webphoneLoginUser: string;
|
4594
4642
|
extensionId: number;
|
4595
4643
|
extensionName: string;
|
4596
4644
|
telephonySignature: string | null;
|
4597
|
-
}
|
4645
|
+
};
|
4598
4646
|
};
|
4599
4647
|
cxlog: {
|
4600
4648
|
id: string;
|
@@ -4680,7 +4728,7 @@ export declare const messengerContract: {
|
|
4680
4728
|
displayName: string;
|
4681
4729
|
}[];
|
4682
4730
|
}[];
|
4683
|
-
extension
|
4731
|
+
extension: {
|
4684
4732
|
id: string;
|
4685
4733
|
createdAt: Date;
|
4686
4734
|
updatedAt: Date;
|
@@ -4688,10 +4736,11 @@ export declare const messengerContract: {
|
|
4688
4736
|
userId: string | null;
|
4689
4737
|
sipServerUrl: string;
|
4690
4738
|
sipUserName: string;
|
4739
|
+
webphoneLoginUser: string;
|
4691
4740
|
extensionId: number;
|
4692
4741
|
extensionName: string;
|
4693
4742
|
telephonySignature: string | null;
|
4694
|
-
}
|
4743
|
+
};
|
4695
4744
|
} | undefined;
|
4696
4745
|
} | undefined;
|
4697
4746
|
};
|
@@ -4731,7 +4780,7 @@ export declare const messengerContract: {
|
|
4731
4780
|
displayName: string;
|
4732
4781
|
}[];
|
4733
4782
|
}[];
|
4734
|
-
extension
|
4783
|
+
extension: {
|
4735
4784
|
id: string;
|
4736
4785
|
createdAt: Date;
|
4737
4786
|
updatedAt: Date;
|
@@ -4739,10 +4788,11 @@ export declare const messengerContract: {
|
|
4739
4788
|
userId: string | null;
|
4740
4789
|
sipServerUrl: string;
|
4741
4790
|
sipUserName: string;
|
4791
|
+
webphoneLoginUser: string;
|
4742
4792
|
extensionId: number;
|
4743
4793
|
extensionName: string;
|
4744
4794
|
telephonySignature: string | null;
|
4745
|
-
}
|
4795
|
+
};
|
4746
4796
|
};
|
4747
4797
|
metadata?: any;
|
4748
4798
|
template?: any;
|
@@ -4788,7 +4838,7 @@ export declare const messengerContract: {
|
|
4788
4838
|
displayName: string;
|
4789
4839
|
}[];
|
4790
4840
|
}[];
|
4791
|
-
extension
|
4841
|
+
extension: {
|
4792
4842
|
id: string;
|
4793
4843
|
createdAt: Date;
|
4794
4844
|
updatedAt: Date;
|
@@ -4796,10 +4846,11 @@ export declare const messengerContract: {
|
|
4796
4846
|
userId: string | null;
|
4797
4847
|
sipServerUrl: string;
|
4798
4848
|
sipUserName: string;
|
4849
|
+
webphoneLoginUser: string;
|
4799
4850
|
extensionId: number;
|
4800
4851
|
extensionName: string;
|
4801
4852
|
telephonySignature: string | null;
|
4802
|
-
}
|
4853
|
+
};
|
4803
4854
|
};
|
4804
4855
|
upload: {
|
4805
4856
|
id: string;
|
@@ -4842,7 +4893,7 @@ export declare const messengerContract: {
|
|
4842
4893
|
displayName: string;
|
4843
4894
|
}[];
|
4844
4895
|
}[];
|
4845
|
-
extension
|
4896
|
+
extension: {
|
4846
4897
|
id: string;
|
4847
4898
|
createdAt: Date;
|
4848
4899
|
updatedAt: Date;
|
@@ -4850,10 +4901,11 @@ export declare const messengerContract: {
|
|
4850
4901
|
userId: string | null;
|
4851
4902
|
sipServerUrl: string;
|
4852
4903
|
sipUserName: string;
|
4904
|
+
webphoneLoginUser: string;
|
4853
4905
|
extensionId: number;
|
4854
4906
|
extensionName: string;
|
4855
4907
|
telephonySignature: string | null;
|
4856
|
-
}
|
4908
|
+
};
|
4857
4909
|
};
|
4858
4910
|
room: {
|
4859
4911
|
id: string;
|
@@ -4891,7 +4943,7 @@ export declare const messengerContract: {
|
|
4891
4943
|
displayName: string;
|
4892
4944
|
}[];
|
4893
4945
|
}[];
|
4894
|
-
extension
|
4946
|
+
extension: {
|
4895
4947
|
id: string;
|
4896
4948
|
createdAt: Date;
|
4897
4949
|
updatedAt: Date;
|
@@ -4899,10 +4951,11 @@ export declare const messengerContract: {
|
|
4899
4951
|
userId: string | null;
|
4900
4952
|
sipServerUrl: string;
|
4901
4953
|
sipUserName: string;
|
4954
|
+
webphoneLoginUser: string;
|
4902
4955
|
extensionId: number;
|
4903
4956
|
extensionName: string;
|
4904
4957
|
telephonySignature: string | null;
|
4905
|
-
}
|
4958
|
+
};
|
4906
4959
|
};
|
4907
4960
|
firstResponseTime: number;
|
4908
4961
|
lastMessage: string;
|
@@ -5059,7 +5112,7 @@ export declare const messengerContract: {
|
|
5059
5112
|
displayName: string;
|
5060
5113
|
}[];
|
5061
5114
|
}[];
|
5062
|
-
extension
|
5115
|
+
extension: {
|
5063
5116
|
id: string;
|
5064
5117
|
createdAt: Date;
|
5065
5118
|
updatedAt: Date;
|
@@ -5067,10 +5120,11 @@ export declare const messengerContract: {
|
|
5067
5120
|
userId: string | null;
|
5068
5121
|
sipServerUrl: string;
|
5069
5122
|
sipUserName: string;
|
5123
|
+
webphoneLoginUser: string;
|
5070
5124
|
extensionId: number;
|
5071
5125
|
extensionName: string;
|
5072
5126
|
telephonySignature: string | null;
|
5073
|
-
}
|
5127
|
+
};
|
5074
5128
|
};
|
5075
5129
|
cxlog: {
|
5076
5130
|
id: string;
|
@@ -5156,7 +5210,7 @@ export declare const messengerContract: {
|
|
5156
5210
|
displayName: string;
|
5157
5211
|
}[];
|
5158
5212
|
}[];
|
5159
|
-
extension
|
5213
|
+
extension: {
|
5160
5214
|
id: string;
|
5161
5215
|
createdAt: Date;
|
5162
5216
|
updatedAt: Date;
|
@@ -5164,10 +5218,11 @@ export declare const messengerContract: {
|
|
5164
5218
|
userId: string | null;
|
5165
5219
|
sipServerUrl: string;
|
5166
5220
|
sipUserName: string;
|
5221
|
+
webphoneLoginUser: string;
|
5167
5222
|
extensionId: number;
|
5168
5223
|
extensionName: string;
|
5169
5224
|
telephonySignature: string | null;
|
5170
|
-
}
|
5225
|
+
};
|
5171
5226
|
} | undefined;
|
5172
5227
|
} | undefined;
|
5173
5228
|
};
|
@@ -5207,7 +5262,7 @@ export declare const messengerContract: {
|
|
5207
5262
|
displayName: string;
|
5208
5263
|
}[];
|
5209
5264
|
}[];
|
5210
|
-
extension
|
5265
|
+
extension: {
|
5211
5266
|
id: string;
|
5212
5267
|
createdAt: Date;
|
5213
5268
|
updatedAt: Date;
|
@@ -5215,10 +5270,11 @@ export declare const messengerContract: {
|
|
5215
5270
|
userId: string | null;
|
5216
5271
|
sipServerUrl: string;
|
5217
5272
|
sipUserName: string;
|
5273
|
+
webphoneLoginUser: string;
|
5218
5274
|
extensionId: number;
|
5219
5275
|
extensionName: string;
|
5220
5276
|
telephonySignature: string | null;
|
5221
|
-
}
|
5277
|
+
};
|
5222
5278
|
};
|
5223
5279
|
metadata?: any;
|
5224
5280
|
template?: any;
|
@@ -5265,7 +5321,7 @@ export declare const messengerContract: {
|
|
5265
5321
|
displayName: string;
|
5266
5322
|
}[];
|
5267
5323
|
}[];
|
5268
|
-
extension
|
5324
|
+
extension: {
|
5269
5325
|
id: string;
|
5270
5326
|
createdAt: Date;
|
5271
5327
|
updatedAt: Date;
|
@@ -5273,10 +5329,11 @@ export declare const messengerContract: {
|
|
5273
5329
|
userId: string | null;
|
5274
5330
|
sipServerUrl: string;
|
5275
5331
|
sipUserName: string;
|
5332
|
+
webphoneLoginUser: string;
|
5276
5333
|
extensionId: number;
|
5277
5334
|
extensionName: string;
|
5278
5335
|
telephonySignature: string | null;
|
5279
|
-
}
|
5336
|
+
};
|
5280
5337
|
};
|
5281
5338
|
upload: {
|
5282
5339
|
id: string;
|
@@ -5319,7 +5376,7 @@ export declare const messengerContract: {
|
|
5319
5376
|
displayName: string;
|
5320
5377
|
}[];
|
5321
5378
|
}[];
|
5322
|
-
extension
|
5379
|
+
extension: {
|
5323
5380
|
id: string;
|
5324
5381
|
createdAt: Date;
|
5325
5382
|
updatedAt: Date;
|
@@ -5327,10 +5384,11 @@ export declare const messengerContract: {
|
|
5327
5384
|
userId: string | null;
|
5328
5385
|
sipServerUrl: string;
|
5329
5386
|
sipUserName: string;
|
5387
|
+
webphoneLoginUser: string;
|
5330
5388
|
extensionId: number;
|
5331
5389
|
extensionName: string;
|
5332
5390
|
telephonySignature: string | null;
|
5333
|
-
}
|
5391
|
+
};
|
5334
5392
|
};
|
5335
5393
|
room: {
|
5336
5394
|
id: string;
|
@@ -5368,7 +5426,7 @@ export declare const messengerContract: {
|
|
5368
5426
|
displayName: string;
|
5369
5427
|
}[];
|
5370
5428
|
}[];
|
5371
|
-
extension
|
5429
|
+
extension: {
|
5372
5430
|
id: string;
|
5373
5431
|
createdAt: Date;
|
5374
5432
|
updatedAt: Date;
|
@@ -5376,10 +5434,11 @@ export declare const messengerContract: {
|
|
5376
5434
|
userId: string | null;
|
5377
5435
|
sipServerUrl: string;
|
5378
5436
|
sipUserName: string;
|
5437
|
+
webphoneLoginUser: string;
|
5379
5438
|
extensionId: number;
|
5380
5439
|
extensionName: string;
|
5381
5440
|
telephonySignature: string | null;
|
5382
|
-
}
|
5441
|
+
};
|
5383
5442
|
};
|
5384
5443
|
firstResponseTime: number;
|
5385
5444
|
lastMessage: string;
|
@@ -5536,7 +5595,7 @@ export declare const messengerContract: {
|
|
5536
5595
|
displayName: string;
|
5537
5596
|
}[];
|
5538
5597
|
}[];
|
5539
|
-
extension
|
5598
|
+
extension: {
|
5540
5599
|
id: string;
|
5541
5600
|
createdAt: Date;
|
5542
5601
|
updatedAt: Date;
|
@@ -5544,10 +5603,11 @@ export declare const messengerContract: {
|
|
5544
5603
|
userId: string | null;
|
5545
5604
|
sipServerUrl: string;
|
5546
5605
|
sipUserName: string;
|
5606
|
+
webphoneLoginUser: string;
|
5547
5607
|
extensionId: number;
|
5548
5608
|
extensionName: string;
|
5549
5609
|
telephonySignature: string | null;
|
5550
|
-
}
|
5610
|
+
};
|
5551
5611
|
};
|
5552
5612
|
cxlog: {
|
5553
5613
|
id: string;
|
@@ -5633,7 +5693,7 @@ export declare const messengerContract: {
|
|
5633
5693
|
displayName: string;
|
5634
5694
|
}[];
|
5635
5695
|
}[];
|
5636
|
-
extension
|
5696
|
+
extension: {
|
5637
5697
|
id: string;
|
5638
5698
|
createdAt: Date;
|
5639
5699
|
updatedAt: Date;
|
@@ -5641,10 +5701,11 @@ export declare const messengerContract: {
|
|
5641
5701
|
userId: string | null;
|
5642
5702
|
sipServerUrl: string;
|
5643
5703
|
sipUserName: string;
|
5704
|
+
webphoneLoginUser: string;
|
5644
5705
|
extensionId: number;
|
5645
5706
|
extensionName: string;
|
5646
5707
|
telephonySignature: string | null;
|
5647
|
-
}
|
5708
|
+
};
|
5648
5709
|
} | undefined;
|
5649
5710
|
} | undefined;
|
5650
5711
|
};
|
@@ -5684,7 +5745,7 @@ export declare const messengerContract: {
|
|
5684
5745
|
displayName: string;
|
5685
5746
|
}[];
|
5686
5747
|
}[];
|
5687
|
-
extension
|
5748
|
+
extension: {
|
5688
5749
|
id: string;
|
5689
5750
|
createdAt: Date;
|
5690
5751
|
updatedAt: Date;
|
@@ -5692,10 +5753,11 @@ export declare const messengerContract: {
|
|
5692
5753
|
userId: string | null;
|
5693
5754
|
sipServerUrl: string;
|
5694
5755
|
sipUserName: string;
|
5756
|
+
webphoneLoginUser: string;
|
5695
5757
|
extensionId: number;
|
5696
5758
|
extensionName: string;
|
5697
5759
|
telephonySignature: string | null;
|
5698
|
-
}
|
5760
|
+
};
|
5699
5761
|
};
|
5700
5762
|
metadata?: any;
|
5701
5763
|
template?: any;
|