@kl1/contracts 1.0.34 → 1.0.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1030 -924
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1029 -924
- package/dist/index.mjs.map +1 -1
- package/dist/src/activity-log/index.d.ts +17 -10
- package/dist/src/activity-log/index.d.ts.map +1 -1
- package/dist/src/activity-log/schema.d.ts +17 -10
- package/dist/src/activity-log/schema.d.ts.map +1 -1
- package/dist/src/auth/index.d.ts +17 -10
- package/dist/src/auth/index.d.ts.map +1 -1
- package/dist/src/channel/index.d.ts +650 -51
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/channel/schema.d.ts +18 -12
- package/dist/src/channel/schema.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +12464 -12390
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +227 -110
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +1158 -1545
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/comment/index.d.ts +1128 -491
- package/dist/src/comment/index.d.ts.map +1 -1
- package/dist/src/comment/schema.d.ts +319 -140
- package/dist/src/comment/schema.d.ts.map +1 -1
- package/dist/src/contact/index.d.ts +77 -0
- package/dist/src/contact/index.d.ts.map +1 -1
- package/dist/src/contact/schema.d.ts +16 -0
- package/dist/src/contact/schema.d.ts.map +1 -1
- package/dist/src/contact/validation.d.ts +63 -0
- package/dist/src/contact/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +28088 -29053
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +243 -72
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +193 -56
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/extension/index.d.ts +29 -120
- package/dist/src/extension/index.d.ts.map +1 -1
- package/dist/src/extension/schema.d.ts +3 -0
- package/dist/src/extension/schema.d.ts.map +1 -1
- package/dist/src/extension/validation.d.ts +6 -0
- package/dist/src/extension/validation.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +7 -0
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +7 -0
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +5 -0
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +442 -100
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/telephony-agent-presence-status/index.d.ts +57 -34
- package/dist/src/telephony-agent-presence-status/index.d.ts.map +1 -1
- package/dist/src/telephony-agent-presence-status/schema.d.ts +17 -10
- package/dist/src/telephony-agent-presence-status/schema.d.ts.map +1 -1
- package/dist/src/telephony-cdr/schema.d.ts +53 -0
- package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
- package/dist/src/telephony-extension/index.d.ts +2 -0
- package/dist/src/telephony-extension/index.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +3022 -1253
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/schema.d.ts +236 -167
- package/dist/src/ticket/schema.d.ts.map +1 -1
- package/dist/src/upload/schema.d.ts +3 -0
- package/dist/src/upload/schema.d.ts.map +1 -1
- package/dist/src/user/index.d.ts +57 -34
- package/dist/src/user/index.d.ts.map +1 -1
- package/dist/src/user/schema.d.ts +11 -6
- package/dist/src/user/schema.d.ts.map +1 -1
- package/dist/src/user-presence-status-log/index.d.ts +12 -8
- package/dist/src/user-presence-status-log/index.d.ts.map +1 -1
- package/dist/src/user-presence-status-log/schema.d.ts +17 -10
- package/dist/src/user-presence-status-log/schema.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/src/app/index.d.ts +0 -17
- package/dist/src/app/index.d.ts.map +0 -1
- package/dist/src/mail/mail-server.d.ts +0 -216
- package/dist/src/mail/mail-server.d.ts.map +0 -1
- package/dist/src/platform-contact/schema.d.ts +0 -30
- package/dist/src/platform-contact/schema.d.ts.map +0 -1
@@ -322,6 +322,7 @@ export declare const messengerContract: {
|
|
322
322
|
fileName: z.ZodString;
|
323
323
|
fileSize: z.ZodNumber;
|
324
324
|
fileKey: z.ZodString;
|
325
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
325
326
|
}, "strip", z.ZodTypeAny, {
|
326
327
|
id: string;
|
327
328
|
createdAt: Date;
|
@@ -331,6 +332,7 @@ export declare const messengerContract: {
|
|
331
332
|
fileKey: string;
|
332
333
|
bucketName: string;
|
333
334
|
fileSize: number;
|
335
|
+
fileUrl: string | null;
|
334
336
|
}, {
|
335
337
|
id: string;
|
336
338
|
createdAt: Date;
|
@@ -340,6 +342,7 @@ export declare const messengerContract: {
|
|
340
342
|
fileKey: string;
|
341
343
|
bucketName: string;
|
342
344
|
fileSize: number;
|
345
|
+
fileUrl: string | null;
|
343
346
|
}>>;
|
344
347
|
sender: z.ZodObject<{
|
345
348
|
name: z.ZodString;
|
@@ -386,6 +389,7 @@ export declare const messengerContract: {
|
|
386
389
|
fileKey: string;
|
387
390
|
bucketName: string;
|
388
391
|
fileSize: number;
|
392
|
+
fileUrl: string | null;
|
389
393
|
} | undefined;
|
390
394
|
}, {
|
391
395
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "reopen" | "handed_over" | "updated" | "started";
|
@@ -416,6 +420,7 @@ export declare const messengerContract: {
|
|
416
420
|
fileKey: string;
|
417
421
|
bucketName: string;
|
418
422
|
fileSize: number;
|
423
|
+
fileUrl: string | null;
|
419
424
|
} | undefined;
|
420
425
|
}>;
|
421
426
|
}, "strip", z.ZodTypeAny, {
|
@@ -448,6 +453,7 @@ export declare const messengerContract: {
|
|
448
453
|
fileKey: string;
|
449
454
|
bucketName: string;
|
450
455
|
fileSize: number;
|
456
|
+
fileUrl: string | null;
|
451
457
|
} | undefined;
|
452
458
|
};
|
453
459
|
room: {
|
@@ -534,6 +540,7 @@ export declare const messengerContract: {
|
|
534
540
|
fileKey: string;
|
535
541
|
bucketName: string;
|
536
542
|
fileSize: number;
|
543
|
+
fileUrl: string | null;
|
537
544
|
} | undefined;
|
538
545
|
};
|
539
546
|
room: {
|
@@ -950,6 +957,7 @@ export declare const messengerContract: {
|
|
950
957
|
fileName: z.ZodString;
|
951
958
|
fileSize: z.ZodNumber;
|
952
959
|
fileKey: z.ZodString;
|
960
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
953
961
|
}, "strip", z.ZodTypeAny, {
|
954
962
|
id: string;
|
955
963
|
createdAt: Date;
|
@@ -959,6 +967,7 @@ export declare const messengerContract: {
|
|
959
967
|
fileKey: string;
|
960
968
|
bucketName: string;
|
961
969
|
fileSize: number;
|
970
|
+
fileUrl: string | null;
|
962
971
|
}, {
|
963
972
|
id: string;
|
964
973
|
createdAt: Date;
|
@@ -968,6 +977,7 @@ export declare const messengerContract: {
|
|
968
977
|
fileKey: string;
|
969
978
|
bucketName: string;
|
970
979
|
fileSize: number;
|
980
|
+
fileUrl: string | null;
|
971
981
|
}>;
|
972
982
|
}, "strip", z.ZodTypeAny, {
|
973
983
|
id: string;
|
@@ -984,6 +994,7 @@ export declare const messengerContract: {
|
|
984
994
|
fileKey: string;
|
985
995
|
bucketName: string;
|
986
996
|
fileSize: number;
|
997
|
+
fileUrl: string | null;
|
987
998
|
};
|
988
999
|
}, {
|
989
1000
|
id: string;
|
@@ -1000,6 +1011,7 @@ export declare const messengerContract: {
|
|
1000
1011
|
fileKey: string;
|
1001
1012
|
bucketName: string;
|
1002
1013
|
fileSize: number;
|
1014
|
+
fileUrl: string | null;
|
1003
1015
|
};
|
1004
1016
|
}>, "many">;
|
1005
1017
|
}, "strip", z.ZodTypeAny, {
|
@@ -1040,6 +1052,7 @@ export declare const messengerContract: {
|
|
1040
1052
|
fileKey: string;
|
1041
1053
|
bucketName: string;
|
1042
1054
|
fileSize: number;
|
1055
|
+
fileUrl: string | null;
|
1043
1056
|
};
|
1044
1057
|
}[];
|
1045
1058
|
}, {
|
@@ -1080,6 +1093,7 @@ export declare const messengerContract: {
|
|
1080
1093
|
fileKey: string;
|
1081
1094
|
bucketName: string;
|
1082
1095
|
fileSize: number;
|
1096
|
+
fileUrl: string | null;
|
1083
1097
|
};
|
1084
1098
|
}[];
|
1085
1099
|
}>, "many">;
|
@@ -1233,6 +1247,7 @@ export declare const messengerContract: {
|
|
1233
1247
|
fileKey: string;
|
1234
1248
|
bucketName: string;
|
1235
1249
|
fileSize: number;
|
1250
|
+
fileUrl: string | null;
|
1236
1251
|
};
|
1237
1252
|
}[];
|
1238
1253
|
}[];
|
@@ -1334,6 +1349,7 @@ export declare const messengerContract: {
|
|
1334
1349
|
fileKey: string;
|
1335
1350
|
bucketName: string;
|
1336
1351
|
fileSize: number;
|
1352
|
+
fileUrl: string | null;
|
1337
1353
|
};
|
1338
1354
|
}[];
|
1339
1355
|
}[];
|
@@ -1449,6 +1465,7 @@ export declare const messengerContract: {
|
|
1449
1465
|
fileKey: string;
|
1450
1466
|
bucketName: string;
|
1451
1467
|
fileSize: number;
|
1468
|
+
fileUrl: string | null;
|
1452
1469
|
};
|
1453
1470
|
}[];
|
1454
1471
|
}[];
|
@@ -1565,6 +1582,7 @@ export declare const messengerContract: {
|
|
1565
1582
|
fileKey: string;
|
1566
1583
|
bucketName: string;
|
1567
1584
|
fileSize: number;
|
1585
|
+
fileUrl: string | null;
|
1568
1586
|
};
|
1569
1587
|
}[];
|
1570
1588
|
}[];
|
@@ -1703,7 +1721,7 @@ export declare const messengerContract: {
|
|
1703
1721
|
displayName: string;
|
1704
1722
|
}[];
|
1705
1723
|
}>, "many">;
|
1706
|
-
extension: z.
|
1724
|
+
extension: z.ZodObject<{
|
1707
1725
|
id: z.ZodString;
|
1708
1726
|
createdAt: z.ZodDate;
|
1709
1727
|
updatedAt: z.ZodDate;
|
@@ -1711,6 +1729,7 @@ export declare const messengerContract: {
|
|
1711
1729
|
userId: z.ZodNullable<z.ZodString>;
|
1712
1730
|
sipServerUrl: z.ZodString;
|
1713
1731
|
sipUserName: z.ZodString;
|
1732
|
+
webphoneLoginUser: z.ZodString;
|
1714
1733
|
extensionId: z.ZodNumber;
|
1715
1734
|
extensionName: z.ZodString;
|
1716
1735
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -1722,6 +1741,7 @@ export declare const messengerContract: {
|
|
1722
1741
|
userId: string | null;
|
1723
1742
|
sipServerUrl: string;
|
1724
1743
|
sipUserName: string;
|
1744
|
+
webphoneLoginUser: string;
|
1725
1745
|
extensionId: number;
|
1726
1746
|
extensionName: string;
|
1727
1747
|
telephonySignature: string | null;
|
@@ -1733,10 +1753,11 @@ export declare const messengerContract: {
|
|
1733
1753
|
userId: string | null;
|
1734
1754
|
sipServerUrl: string;
|
1735
1755
|
sipUserName: string;
|
1756
|
+
webphoneLoginUser: string;
|
1736
1757
|
extensionId: number;
|
1737
1758
|
extensionName: string;
|
1738
1759
|
telephonySignature: string | null;
|
1739
|
-
}
|
1760
|
+
}>;
|
1740
1761
|
}, "strip", z.ZodTypeAny, {
|
1741
1762
|
id: string;
|
1742
1763
|
address: string | null;
|
@@ -1767,7 +1788,7 @@ export declare const messengerContract: {
|
|
1767
1788
|
displayName: string;
|
1768
1789
|
}[];
|
1769
1790
|
}[];
|
1770
|
-
extension
|
1791
|
+
extension: {
|
1771
1792
|
id: string;
|
1772
1793
|
createdAt: Date;
|
1773
1794
|
updatedAt: Date;
|
@@ -1775,10 +1796,11 @@ export declare const messengerContract: {
|
|
1775
1796
|
userId: string | null;
|
1776
1797
|
sipServerUrl: string;
|
1777
1798
|
sipUserName: string;
|
1799
|
+
webphoneLoginUser: string;
|
1778
1800
|
extensionId: number;
|
1779
1801
|
extensionName: string;
|
1780
1802
|
telephonySignature: string | null;
|
1781
|
-
}
|
1803
|
+
};
|
1782
1804
|
}, {
|
1783
1805
|
id: string;
|
1784
1806
|
address: string | null;
|
@@ -1809,7 +1831,7 @@ export declare const messengerContract: {
|
|
1809
1831
|
displayName: string;
|
1810
1832
|
}[];
|
1811
1833
|
}[];
|
1812
|
-
extension
|
1834
|
+
extension: {
|
1813
1835
|
id: string;
|
1814
1836
|
createdAt: Date;
|
1815
1837
|
updatedAt: Date;
|
@@ -1817,10 +1839,11 @@ export declare const messengerContract: {
|
|
1817
1839
|
userId: string | null;
|
1818
1840
|
sipServerUrl: string;
|
1819
1841
|
sipUserName: string;
|
1842
|
+
webphoneLoginUser: string;
|
1820
1843
|
extensionId: number;
|
1821
1844
|
extensionName: string;
|
1822
1845
|
telephonySignature: string | null;
|
1823
|
-
}
|
1846
|
+
};
|
1824
1847
|
}>;
|
1825
1848
|
assignee: z.ZodObject<{
|
1826
1849
|
id: z.ZodString;
|
@@ -1902,7 +1925,7 @@ export declare const messengerContract: {
|
|
1902
1925
|
displayName: string;
|
1903
1926
|
}[];
|
1904
1927
|
}>, "many">;
|
1905
|
-
extension: z.
|
1928
|
+
extension: z.ZodObject<{
|
1906
1929
|
id: z.ZodString;
|
1907
1930
|
createdAt: z.ZodDate;
|
1908
1931
|
updatedAt: z.ZodDate;
|
@@ -1910,6 +1933,7 @@ export declare const messengerContract: {
|
|
1910
1933
|
userId: z.ZodNullable<z.ZodString>;
|
1911
1934
|
sipServerUrl: z.ZodString;
|
1912
1935
|
sipUserName: z.ZodString;
|
1936
|
+
webphoneLoginUser: z.ZodString;
|
1913
1937
|
extensionId: z.ZodNumber;
|
1914
1938
|
extensionName: z.ZodString;
|
1915
1939
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -1921,6 +1945,7 @@ export declare const messengerContract: {
|
|
1921
1945
|
userId: string | null;
|
1922
1946
|
sipServerUrl: string;
|
1923
1947
|
sipUserName: string;
|
1948
|
+
webphoneLoginUser: string;
|
1924
1949
|
extensionId: number;
|
1925
1950
|
extensionName: string;
|
1926
1951
|
telephonySignature: string | null;
|
@@ -1932,10 +1957,11 @@ export declare const messengerContract: {
|
|
1932
1957
|
userId: string | null;
|
1933
1958
|
sipServerUrl: string;
|
1934
1959
|
sipUserName: string;
|
1960
|
+
webphoneLoginUser: string;
|
1935
1961
|
extensionId: number;
|
1936
1962
|
extensionName: string;
|
1937
1963
|
telephonySignature: string | null;
|
1938
|
-
}
|
1964
|
+
}>;
|
1939
1965
|
}, "strip", z.ZodTypeAny, {
|
1940
1966
|
id: string;
|
1941
1967
|
address: string | null;
|
@@ -1966,7 +1992,7 @@ export declare const messengerContract: {
|
|
1966
1992
|
displayName: string;
|
1967
1993
|
}[];
|
1968
1994
|
}[];
|
1969
|
-
extension
|
1995
|
+
extension: {
|
1970
1996
|
id: string;
|
1971
1997
|
createdAt: Date;
|
1972
1998
|
updatedAt: Date;
|
@@ -1974,10 +2000,11 @@ export declare const messengerContract: {
|
|
1974
2000
|
userId: string | null;
|
1975
2001
|
sipServerUrl: string;
|
1976
2002
|
sipUserName: string;
|
2003
|
+
webphoneLoginUser: string;
|
1977
2004
|
extensionId: number;
|
1978
2005
|
extensionName: string;
|
1979
2006
|
telephonySignature: string | null;
|
1980
|
-
}
|
2007
|
+
};
|
1981
2008
|
}, {
|
1982
2009
|
id: string;
|
1983
2010
|
address: string | null;
|
@@ -2008,7 +2035,7 @@ export declare const messengerContract: {
|
|
2008
2035
|
displayName: string;
|
2009
2036
|
}[];
|
2010
2037
|
}[];
|
2011
|
-
extension
|
2038
|
+
extension: {
|
2012
2039
|
id: string;
|
2013
2040
|
createdAt: Date;
|
2014
2041
|
updatedAt: Date;
|
@@ -2016,10 +2043,11 @@ export declare const messengerContract: {
|
|
2016
2043
|
userId: string | null;
|
2017
2044
|
sipServerUrl: string;
|
2018
2045
|
sipUserName: string;
|
2046
|
+
webphoneLoginUser: string;
|
2019
2047
|
extensionId: number;
|
2020
2048
|
extensionName: string;
|
2021
2049
|
telephonySignature: string | null;
|
2022
|
-
}
|
2050
|
+
};
|
2023
2051
|
}>;
|
2024
2052
|
channel: z.ZodOptional<z.ZodObject<{
|
2025
2053
|
id: z.ZodOptional<z.ZodString>;
|
@@ -2130,7 +2158,7 @@ export declare const messengerContract: {
|
|
2130
2158
|
displayName: string;
|
2131
2159
|
}[];
|
2132
2160
|
}>, "many">;
|
2133
|
-
extension: z.
|
2161
|
+
extension: z.ZodObject<{
|
2134
2162
|
id: z.ZodString;
|
2135
2163
|
createdAt: z.ZodDate;
|
2136
2164
|
updatedAt: z.ZodDate;
|
@@ -2138,6 +2166,7 @@ export declare const messengerContract: {
|
|
2138
2166
|
userId: z.ZodNullable<z.ZodString>;
|
2139
2167
|
sipServerUrl: z.ZodString;
|
2140
2168
|
sipUserName: z.ZodString;
|
2169
|
+
webphoneLoginUser: z.ZodString;
|
2141
2170
|
extensionId: z.ZodNumber;
|
2142
2171
|
extensionName: z.ZodString;
|
2143
2172
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -2149,6 +2178,7 @@ export declare const messengerContract: {
|
|
2149
2178
|
userId: string | null;
|
2150
2179
|
sipServerUrl: string;
|
2151
2180
|
sipUserName: string;
|
2181
|
+
webphoneLoginUser: string;
|
2152
2182
|
extensionId: number;
|
2153
2183
|
extensionName: string;
|
2154
2184
|
telephonySignature: string | null;
|
@@ -2160,10 +2190,11 @@ export declare const messengerContract: {
|
|
2160
2190
|
userId: string | null;
|
2161
2191
|
sipServerUrl: string;
|
2162
2192
|
sipUserName: string;
|
2193
|
+
webphoneLoginUser: string;
|
2163
2194
|
extensionId: number;
|
2164
2195
|
extensionName: string;
|
2165
2196
|
telephonySignature: string | null;
|
2166
|
-
}
|
2197
|
+
}>;
|
2167
2198
|
}, "strip", z.ZodTypeAny, {
|
2168
2199
|
id: string;
|
2169
2200
|
address: string | null;
|
@@ -2194,7 +2225,7 @@ export declare const messengerContract: {
|
|
2194
2225
|
displayName: string;
|
2195
2226
|
}[];
|
2196
2227
|
}[];
|
2197
|
-
extension
|
2228
|
+
extension: {
|
2198
2229
|
id: string;
|
2199
2230
|
createdAt: Date;
|
2200
2231
|
updatedAt: Date;
|
@@ -2202,10 +2233,11 @@ export declare const messengerContract: {
|
|
2202
2233
|
userId: string | null;
|
2203
2234
|
sipServerUrl: string;
|
2204
2235
|
sipUserName: string;
|
2236
|
+
webphoneLoginUser: string;
|
2205
2237
|
extensionId: number;
|
2206
2238
|
extensionName: string;
|
2207
2239
|
telephonySignature: string | null;
|
2208
|
-
}
|
2240
|
+
};
|
2209
2241
|
}, {
|
2210
2242
|
id: string;
|
2211
2243
|
address: string | null;
|
@@ -2236,7 +2268,7 @@ export declare const messengerContract: {
|
|
2236
2268
|
displayName: string;
|
2237
2269
|
}[];
|
2238
2270
|
}[];
|
2239
|
-
extension
|
2271
|
+
extension: {
|
2240
2272
|
id: string;
|
2241
2273
|
createdAt: Date;
|
2242
2274
|
updatedAt: Date;
|
@@ -2244,10 +2276,11 @@ export declare const messengerContract: {
|
|
2244
2276
|
userId: string | null;
|
2245
2277
|
sipServerUrl: string;
|
2246
2278
|
sipUserName: string;
|
2279
|
+
webphoneLoginUser: string;
|
2247
2280
|
extensionId: number;
|
2248
2281
|
extensionName: string;
|
2249
2282
|
telephonySignature: string | null;
|
2250
|
-
}
|
2283
|
+
};
|
2251
2284
|
}>>;
|
2252
2285
|
}, "strip", z.ZodTypeAny, {
|
2253
2286
|
id?: string | undefined;
|
@@ -2298,7 +2331,7 @@ export declare const messengerContract: {
|
|
2298
2331
|
displayName: string;
|
2299
2332
|
}[];
|
2300
2333
|
}[];
|
2301
|
-
extension
|
2334
|
+
extension: {
|
2302
2335
|
id: string;
|
2303
2336
|
createdAt: Date;
|
2304
2337
|
updatedAt: Date;
|
@@ -2306,10 +2339,11 @@ export declare const messengerContract: {
|
|
2306
2339
|
userId: string | null;
|
2307
2340
|
sipServerUrl: string;
|
2308
2341
|
sipUserName: string;
|
2342
|
+
webphoneLoginUser: string;
|
2309
2343
|
extensionId: number;
|
2310
2344
|
extensionName: string;
|
2311
2345
|
telephonySignature: string | null;
|
2312
|
-
}
|
2346
|
+
};
|
2313
2347
|
} | undefined;
|
2314
2348
|
}, {
|
2315
2349
|
id?: string | undefined;
|
@@ -2360,7 +2394,7 @@ export declare const messengerContract: {
|
|
2360
2394
|
displayName: string;
|
2361
2395
|
}[];
|
2362
2396
|
}[];
|
2363
|
-
extension
|
2397
|
+
extension: {
|
2364
2398
|
id: string;
|
2365
2399
|
createdAt: Date;
|
2366
2400
|
updatedAt: Date;
|
@@ -2368,10 +2402,11 @@ export declare const messengerContract: {
|
|
2368
2402
|
userId: string | null;
|
2369
2403
|
sipServerUrl: string;
|
2370
2404
|
sipUserName: string;
|
2405
|
+
webphoneLoginUser: string;
|
2371
2406
|
extensionId: number;
|
2372
2407
|
extensionName: string;
|
2373
2408
|
telephonySignature: string | null;
|
2374
|
-
}
|
2409
|
+
};
|
2375
2410
|
} | undefined;
|
2376
2411
|
}>>;
|
2377
2412
|
cxlog: z.ZodObject<{
|
@@ -2557,7 +2592,7 @@ export declare const messengerContract: {
|
|
2557
2592
|
displayName: string;
|
2558
2593
|
}[];
|
2559
2594
|
}[];
|
2560
|
-
extension
|
2595
|
+
extension: {
|
2561
2596
|
id: string;
|
2562
2597
|
createdAt: Date;
|
2563
2598
|
updatedAt: Date;
|
@@ -2565,10 +2600,11 @@ export declare const messengerContract: {
|
|
2565
2600
|
userId: string | null;
|
2566
2601
|
sipServerUrl: string;
|
2567
2602
|
sipUserName: string;
|
2603
|
+
webphoneLoginUser: string;
|
2568
2604
|
extensionId: number;
|
2569
2605
|
extensionName: string;
|
2570
2606
|
telephonySignature: string | null;
|
2571
|
-
}
|
2607
|
+
};
|
2572
2608
|
};
|
2573
2609
|
firstResponseTime: number;
|
2574
2610
|
lastMessage: string;
|
@@ -2636,6 +2672,7 @@ export declare const messengerContract: {
|
|
2636
2672
|
fileKey: string;
|
2637
2673
|
bucketName: string;
|
2638
2674
|
fileSize: number;
|
2675
|
+
fileUrl: string | null;
|
2639
2676
|
};
|
2640
2677
|
}[];
|
2641
2678
|
}[];
|
@@ -2724,7 +2761,7 @@ export declare const messengerContract: {
|
|
2724
2761
|
displayName: string;
|
2725
2762
|
}[];
|
2726
2763
|
}[];
|
2727
|
-
extension
|
2764
|
+
extension: {
|
2728
2765
|
id: string;
|
2729
2766
|
createdAt: Date;
|
2730
2767
|
updatedAt: Date;
|
@@ -2732,10 +2769,11 @@ export declare const messengerContract: {
|
|
2732
2769
|
userId: string | null;
|
2733
2770
|
sipServerUrl: string;
|
2734
2771
|
sipUserName: string;
|
2772
|
+
webphoneLoginUser: string;
|
2735
2773
|
extensionId: number;
|
2736
2774
|
extensionName: string;
|
2737
2775
|
telephonySignature: string | null;
|
2738
|
-
}
|
2776
|
+
};
|
2739
2777
|
};
|
2740
2778
|
cxlog: {
|
2741
2779
|
id: string;
|
@@ -2821,7 +2859,7 @@ export declare const messengerContract: {
|
|
2821
2859
|
displayName: string;
|
2822
2860
|
}[];
|
2823
2861
|
}[];
|
2824
|
-
extension
|
2862
|
+
extension: {
|
2825
2863
|
id: string;
|
2826
2864
|
createdAt: Date;
|
2827
2865
|
updatedAt: Date;
|
@@ -2829,10 +2867,11 @@ export declare const messengerContract: {
|
|
2829
2867
|
userId: string | null;
|
2830
2868
|
sipServerUrl: string;
|
2831
2869
|
sipUserName: string;
|
2870
|
+
webphoneLoginUser: string;
|
2832
2871
|
extensionId: number;
|
2833
2872
|
extensionName: string;
|
2834
2873
|
telephonySignature: string | null;
|
2835
|
-
}
|
2874
|
+
};
|
2836
2875
|
} | undefined;
|
2837
2876
|
} | undefined;
|
2838
2877
|
}, {
|
@@ -2871,7 +2910,7 @@ export declare const messengerContract: {
|
|
2871
2910
|
displayName: string;
|
2872
2911
|
}[];
|
2873
2912
|
}[];
|
2874
|
-
extension
|
2913
|
+
extension: {
|
2875
2914
|
id: string;
|
2876
2915
|
createdAt: Date;
|
2877
2916
|
updatedAt: Date;
|
@@ -2879,10 +2918,11 @@ export declare const messengerContract: {
|
|
2879
2918
|
userId: string | null;
|
2880
2919
|
sipServerUrl: string;
|
2881
2920
|
sipUserName: string;
|
2921
|
+
webphoneLoginUser: string;
|
2882
2922
|
extensionId: number;
|
2883
2923
|
extensionName: string;
|
2884
2924
|
telephonySignature: string | null;
|
2885
|
-
}
|
2925
|
+
};
|
2886
2926
|
};
|
2887
2927
|
firstResponseTime: number;
|
2888
2928
|
lastMessage: string;
|
@@ -2950,6 +2990,7 @@ export declare const messengerContract: {
|
|
2950
2990
|
fileKey: string;
|
2951
2991
|
bucketName: string;
|
2952
2992
|
fileSize: number;
|
2993
|
+
fileUrl: string | null;
|
2953
2994
|
};
|
2954
2995
|
}[];
|
2955
2996
|
}[];
|
@@ -3038,7 +3079,7 @@ export declare const messengerContract: {
|
|
3038
3079
|
displayName: string;
|
3039
3080
|
}[];
|
3040
3081
|
}[];
|
3041
|
-
extension
|
3082
|
+
extension: {
|
3042
3083
|
id: string;
|
3043
3084
|
createdAt: Date;
|
3044
3085
|
updatedAt: Date;
|
@@ -3046,10 +3087,11 @@ export declare const messengerContract: {
|
|
3046
3087
|
userId: string | null;
|
3047
3088
|
sipServerUrl: string;
|
3048
3089
|
sipUserName: string;
|
3090
|
+
webphoneLoginUser: string;
|
3049
3091
|
extensionId: number;
|
3050
3092
|
extensionName: string;
|
3051
3093
|
telephonySignature: string | null;
|
3052
|
-
}
|
3094
|
+
};
|
3053
3095
|
};
|
3054
3096
|
cxlog: {
|
3055
3097
|
id: string;
|
@@ -3135,7 +3177,7 @@ export declare const messengerContract: {
|
|
3135
3177
|
displayName: string;
|
3136
3178
|
}[];
|
3137
3179
|
}[];
|
3138
|
-
extension
|
3180
|
+
extension: {
|
3139
3181
|
id: string;
|
3140
3182
|
createdAt: Date;
|
3141
3183
|
updatedAt: Date;
|
@@ -3143,10 +3185,11 @@ export declare const messengerContract: {
|
|
3143
3185
|
userId: string | null;
|
3144
3186
|
sipServerUrl: string;
|
3145
3187
|
sipUserName: string;
|
3188
|
+
webphoneLoginUser: string;
|
3146
3189
|
extensionId: number;
|
3147
3190
|
extensionName: string;
|
3148
3191
|
telephonySignature: string | null;
|
3149
|
-
}
|
3192
|
+
};
|
3150
3193
|
} | undefined;
|
3151
3194
|
} | undefined;
|
3152
3195
|
}>;
|
@@ -3159,6 +3202,7 @@ export declare const messengerContract: {
|
|
3159
3202
|
fileName: z.ZodString;
|
3160
3203
|
fileSize: z.ZodNumber;
|
3161
3204
|
fileKey: z.ZodString;
|
3205
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
3162
3206
|
}, "strip", z.ZodTypeAny, {
|
3163
3207
|
id: string;
|
3164
3208
|
createdAt: Date;
|
@@ -3168,6 +3212,7 @@ export declare const messengerContract: {
|
|
3168
3212
|
fileKey: string;
|
3169
3213
|
bucketName: string;
|
3170
3214
|
fileSize: number;
|
3215
|
+
fileUrl: string | null;
|
3171
3216
|
}, {
|
3172
3217
|
id: string;
|
3173
3218
|
createdAt: Date;
|
@@ -3177,6 +3222,7 @@ export declare const messengerContract: {
|
|
3177
3222
|
fileKey: string;
|
3178
3223
|
bucketName: string;
|
3179
3224
|
fileSize: number;
|
3225
|
+
fileUrl: string | null;
|
3180
3226
|
}>;
|
3181
3227
|
actor: z.ZodObject<{
|
3182
3228
|
id: z.ZodString;
|
@@ -3258,7 +3304,7 @@ export declare const messengerContract: {
|
|
3258
3304
|
displayName: string;
|
3259
3305
|
}[];
|
3260
3306
|
}>, "many">;
|
3261
|
-
extension: z.
|
3307
|
+
extension: z.ZodObject<{
|
3262
3308
|
id: z.ZodString;
|
3263
3309
|
createdAt: z.ZodDate;
|
3264
3310
|
updatedAt: z.ZodDate;
|
@@ -3266,6 +3312,7 @@ export declare const messengerContract: {
|
|
3266
3312
|
userId: z.ZodNullable<z.ZodString>;
|
3267
3313
|
sipServerUrl: z.ZodString;
|
3268
3314
|
sipUserName: z.ZodString;
|
3315
|
+
webphoneLoginUser: z.ZodString;
|
3269
3316
|
extensionId: z.ZodNumber;
|
3270
3317
|
extensionName: z.ZodString;
|
3271
3318
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -3277,6 +3324,7 @@ export declare const messengerContract: {
|
|
3277
3324
|
userId: string | null;
|
3278
3325
|
sipServerUrl: string;
|
3279
3326
|
sipUserName: string;
|
3327
|
+
webphoneLoginUser: string;
|
3280
3328
|
extensionId: number;
|
3281
3329
|
extensionName: string;
|
3282
3330
|
telephonySignature: string | null;
|
@@ -3288,10 +3336,11 @@ export declare const messengerContract: {
|
|
3288
3336
|
userId: string | null;
|
3289
3337
|
sipServerUrl: string;
|
3290
3338
|
sipUserName: string;
|
3339
|
+
webphoneLoginUser: string;
|
3291
3340
|
extensionId: number;
|
3292
3341
|
extensionName: string;
|
3293
3342
|
telephonySignature: string | null;
|
3294
|
-
}
|
3343
|
+
}>;
|
3295
3344
|
}, "strip", z.ZodTypeAny, {
|
3296
3345
|
id: string;
|
3297
3346
|
address: string | null;
|
@@ -3322,7 +3371,7 @@ export declare const messengerContract: {
|
|
3322
3371
|
displayName: string;
|
3323
3372
|
}[];
|
3324
3373
|
}[];
|
3325
|
-
extension
|
3374
|
+
extension: {
|
3326
3375
|
id: string;
|
3327
3376
|
createdAt: Date;
|
3328
3377
|
updatedAt: Date;
|
@@ -3330,10 +3379,11 @@ export declare const messengerContract: {
|
|
3330
3379
|
userId: string | null;
|
3331
3380
|
sipServerUrl: string;
|
3332
3381
|
sipUserName: string;
|
3382
|
+
webphoneLoginUser: string;
|
3333
3383
|
extensionId: number;
|
3334
3384
|
extensionName: string;
|
3335
3385
|
telephonySignature: string | null;
|
3336
|
-
}
|
3386
|
+
};
|
3337
3387
|
}, {
|
3338
3388
|
id: string;
|
3339
3389
|
address: string | null;
|
@@ -3364,7 +3414,7 @@ export declare const messengerContract: {
|
|
3364
3414
|
displayName: string;
|
3365
3415
|
}[];
|
3366
3416
|
}[];
|
3367
|
-
extension
|
3417
|
+
extension: {
|
3368
3418
|
id: string;
|
3369
3419
|
createdAt: Date;
|
3370
3420
|
updatedAt: Date;
|
@@ -3372,10 +3422,11 @@ export declare const messengerContract: {
|
|
3372
3422
|
userId: string | null;
|
3373
3423
|
sipServerUrl: string;
|
3374
3424
|
sipUserName: string;
|
3425
|
+
webphoneLoginUser: string;
|
3375
3426
|
extensionId: number;
|
3376
3427
|
extensionName: string;
|
3377
3428
|
telephonySignature: string | null;
|
3378
|
-
}
|
3429
|
+
};
|
3379
3430
|
}>;
|
3380
3431
|
assignee: z.ZodObject<{
|
3381
3432
|
id: z.ZodString;
|
@@ -3457,7 +3508,7 @@ export declare const messengerContract: {
|
|
3457
3508
|
displayName: string;
|
3458
3509
|
}[];
|
3459
3510
|
}>, "many">;
|
3460
|
-
extension: z.
|
3511
|
+
extension: z.ZodObject<{
|
3461
3512
|
id: z.ZodString;
|
3462
3513
|
createdAt: z.ZodDate;
|
3463
3514
|
updatedAt: z.ZodDate;
|
@@ -3465,6 +3516,7 @@ export declare const messengerContract: {
|
|
3465
3516
|
userId: z.ZodNullable<z.ZodString>;
|
3466
3517
|
sipServerUrl: z.ZodString;
|
3467
3518
|
sipUserName: z.ZodString;
|
3519
|
+
webphoneLoginUser: z.ZodString;
|
3468
3520
|
extensionId: z.ZodNumber;
|
3469
3521
|
extensionName: z.ZodString;
|
3470
3522
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -3476,6 +3528,7 @@ export declare const messengerContract: {
|
|
3476
3528
|
userId: string | null;
|
3477
3529
|
sipServerUrl: string;
|
3478
3530
|
sipUserName: string;
|
3531
|
+
webphoneLoginUser: string;
|
3479
3532
|
extensionId: number;
|
3480
3533
|
extensionName: string;
|
3481
3534
|
telephonySignature: string | null;
|
@@ -3487,10 +3540,11 @@ export declare const messengerContract: {
|
|
3487
3540
|
userId: string | null;
|
3488
3541
|
sipServerUrl: string;
|
3489
3542
|
sipUserName: string;
|
3543
|
+
webphoneLoginUser: string;
|
3490
3544
|
extensionId: number;
|
3491
3545
|
extensionName: string;
|
3492
3546
|
telephonySignature: string | null;
|
3493
|
-
}
|
3547
|
+
}>;
|
3494
3548
|
}, "strip", z.ZodTypeAny, {
|
3495
3549
|
id: string;
|
3496
3550
|
address: string | null;
|
@@ -3521,7 +3575,7 @@ export declare const messengerContract: {
|
|
3521
3575
|
displayName: string;
|
3522
3576
|
}[];
|
3523
3577
|
}[];
|
3524
|
-
extension
|
3578
|
+
extension: {
|
3525
3579
|
id: string;
|
3526
3580
|
createdAt: Date;
|
3527
3581
|
updatedAt: Date;
|
@@ -3529,10 +3583,11 @@ export declare const messengerContract: {
|
|
3529
3583
|
userId: string | null;
|
3530
3584
|
sipServerUrl: string;
|
3531
3585
|
sipUserName: string;
|
3586
|
+
webphoneLoginUser: string;
|
3532
3587
|
extensionId: number;
|
3533
3588
|
extensionName: string;
|
3534
3589
|
telephonySignature: string | null;
|
3535
|
-
}
|
3590
|
+
};
|
3536
3591
|
}, {
|
3537
3592
|
id: string;
|
3538
3593
|
address: string | null;
|
@@ -3563,7 +3618,7 @@ export declare const messengerContract: {
|
|
3563
3618
|
displayName: string;
|
3564
3619
|
}[];
|
3565
3620
|
}[];
|
3566
|
-
extension
|
3621
|
+
extension: {
|
3567
3622
|
id: string;
|
3568
3623
|
createdAt: Date;
|
3569
3624
|
updatedAt: Date;
|
@@ -3571,10 +3626,11 @@ export declare const messengerContract: {
|
|
3571
3626
|
userId: string | null;
|
3572
3627
|
sipServerUrl: string;
|
3573
3628
|
sipUserName: string;
|
3629
|
+
webphoneLoginUser: string;
|
3574
3630
|
extensionId: number;
|
3575
3631
|
extensionName: string;
|
3576
3632
|
telephonySignature: string | null;
|
3577
|
-
}
|
3633
|
+
};
|
3578
3634
|
}>;
|
3579
3635
|
sender: z.ZodObject<{
|
3580
3636
|
id: z.ZodString;
|
@@ -3656,7 +3712,7 @@ export declare const messengerContract: {
|
|
3656
3712
|
displayName: string;
|
3657
3713
|
}[];
|
3658
3714
|
}>, "many">;
|
3659
|
-
extension: z.
|
3715
|
+
extension: z.ZodObject<{
|
3660
3716
|
id: z.ZodString;
|
3661
3717
|
createdAt: z.ZodDate;
|
3662
3718
|
updatedAt: z.ZodDate;
|
@@ -3664,6 +3720,7 @@ export declare const messengerContract: {
|
|
3664
3720
|
userId: z.ZodNullable<z.ZodString>;
|
3665
3721
|
sipServerUrl: z.ZodString;
|
3666
3722
|
sipUserName: z.ZodString;
|
3723
|
+
webphoneLoginUser: z.ZodString;
|
3667
3724
|
extensionId: z.ZodNumber;
|
3668
3725
|
extensionName: z.ZodString;
|
3669
3726
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -3675,6 +3732,7 @@ export declare const messengerContract: {
|
|
3675
3732
|
userId: string | null;
|
3676
3733
|
sipServerUrl: string;
|
3677
3734
|
sipUserName: string;
|
3735
|
+
webphoneLoginUser: string;
|
3678
3736
|
extensionId: number;
|
3679
3737
|
extensionName: string;
|
3680
3738
|
telephonySignature: string | null;
|
@@ -3686,10 +3744,11 @@ export declare const messengerContract: {
|
|
3686
3744
|
userId: string | null;
|
3687
3745
|
sipServerUrl: string;
|
3688
3746
|
sipUserName: string;
|
3747
|
+
webphoneLoginUser: string;
|
3689
3748
|
extensionId: number;
|
3690
3749
|
extensionName: string;
|
3691
3750
|
telephonySignature: string | null;
|
3692
|
-
}
|
3751
|
+
}>;
|
3693
3752
|
}, "strip", z.ZodTypeAny, {
|
3694
3753
|
id: string;
|
3695
3754
|
address: string | null;
|
@@ -3720,7 +3779,7 @@ export declare const messengerContract: {
|
|
3720
3779
|
displayName: string;
|
3721
3780
|
}[];
|
3722
3781
|
}[];
|
3723
|
-
extension
|
3782
|
+
extension: {
|
3724
3783
|
id: string;
|
3725
3784
|
createdAt: Date;
|
3726
3785
|
updatedAt: Date;
|
@@ -3728,10 +3787,11 @@ export declare const messengerContract: {
|
|
3728
3787
|
userId: string | null;
|
3729
3788
|
sipServerUrl: string;
|
3730
3789
|
sipUserName: string;
|
3790
|
+
webphoneLoginUser: string;
|
3731
3791
|
extensionId: number;
|
3732
3792
|
extensionName: string;
|
3733
3793
|
telephonySignature: string | null;
|
3734
|
-
}
|
3794
|
+
};
|
3735
3795
|
}, {
|
3736
3796
|
id: string;
|
3737
3797
|
address: string | null;
|
@@ -3762,7 +3822,7 @@ export declare const messengerContract: {
|
|
3762
3822
|
displayName: string;
|
3763
3823
|
}[];
|
3764
3824
|
}[];
|
3765
|
-
extension
|
3825
|
+
extension: {
|
3766
3826
|
id: string;
|
3767
3827
|
createdAt: Date;
|
3768
3828
|
updatedAt: Date;
|
@@ -3770,10 +3830,11 @@ export declare const messengerContract: {
|
|
3770
3830
|
userId: string | null;
|
3771
3831
|
sipServerUrl: string;
|
3772
3832
|
sipUserName: string;
|
3833
|
+
webphoneLoginUser: string;
|
3773
3834
|
extensionId: number;
|
3774
3835
|
extensionName: string;
|
3775
3836
|
telephonySignature: string | null;
|
3776
|
-
}
|
3837
|
+
};
|
3777
3838
|
}>;
|
3778
3839
|
}, "strip", z.ZodTypeAny, {
|
3779
3840
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "reopen" | "handed_over" | "updated" | "started";
|
@@ -3815,7 +3876,7 @@ export declare const messengerContract: {
|
|
3815
3876
|
displayName: string;
|
3816
3877
|
}[];
|
3817
3878
|
}[];
|
3818
|
-
extension
|
3879
|
+
extension: {
|
3819
3880
|
id: string;
|
3820
3881
|
createdAt: Date;
|
3821
3882
|
updatedAt: Date;
|
@@ -3823,10 +3884,11 @@ export declare const messengerContract: {
|
|
3823
3884
|
userId: string | null;
|
3824
3885
|
sipServerUrl: string;
|
3825
3886
|
sipUserName: string;
|
3887
|
+
webphoneLoginUser: string;
|
3826
3888
|
extensionId: number;
|
3827
3889
|
extensionName: string;
|
3828
3890
|
telephonySignature: string | null;
|
3829
|
-
}
|
3891
|
+
};
|
3830
3892
|
};
|
3831
3893
|
upload: {
|
3832
3894
|
id: string;
|
@@ -3837,6 +3899,7 @@ export declare const messengerContract: {
|
|
3837
3899
|
fileKey: string;
|
3838
3900
|
bucketName: string;
|
3839
3901
|
fileSize: number;
|
3902
|
+
fileUrl: string | null;
|
3840
3903
|
};
|
3841
3904
|
assignee: {
|
3842
3905
|
id: string;
|
@@ -3868,7 +3931,7 @@ export declare const messengerContract: {
|
|
3868
3931
|
displayName: string;
|
3869
3932
|
}[];
|
3870
3933
|
}[];
|
3871
|
-
extension
|
3934
|
+
extension: {
|
3872
3935
|
id: string;
|
3873
3936
|
createdAt: Date;
|
3874
3937
|
updatedAt: Date;
|
@@ -3876,10 +3939,11 @@ export declare const messengerContract: {
|
|
3876
3939
|
userId: string | null;
|
3877
3940
|
sipServerUrl: string;
|
3878
3941
|
sipUserName: string;
|
3942
|
+
webphoneLoginUser: string;
|
3879
3943
|
extensionId: number;
|
3880
3944
|
extensionName: string;
|
3881
3945
|
telephonySignature: string | null;
|
3882
|
-
}
|
3946
|
+
};
|
3883
3947
|
};
|
3884
3948
|
room: {
|
3885
3949
|
id: string;
|
@@ -3917,7 +3981,7 @@ export declare const messengerContract: {
|
|
3917
3981
|
displayName: string;
|
3918
3982
|
}[];
|
3919
3983
|
}[];
|
3920
|
-
extension
|
3984
|
+
extension: {
|
3921
3985
|
id: string;
|
3922
3986
|
createdAt: Date;
|
3923
3987
|
updatedAt: Date;
|
@@ -3925,10 +3989,11 @@ export declare const messengerContract: {
|
|
3925
3989
|
userId: string | null;
|
3926
3990
|
sipServerUrl: string;
|
3927
3991
|
sipUserName: string;
|
3992
|
+
webphoneLoginUser: string;
|
3928
3993
|
extensionId: number;
|
3929
3994
|
extensionName: string;
|
3930
3995
|
telephonySignature: string | null;
|
3931
|
-
}
|
3996
|
+
};
|
3932
3997
|
};
|
3933
3998
|
firstResponseTime: number;
|
3934
3999
|
lastMessage: string;
|
@@ -3996,6 +4061,7 @@ export declare const messengerContract: {
|
|
3996
4061
|
fileKey: string;
|
3997
4062
|
bucketName: string;
|
3998
4063
|
fileSize: number;
|
4064
|
+
fileUrl: string | null;
|
3999
4065
|
};
|
4000
4066
|
}[];
|
4001
4067
|
}[];
|
@@ -4084,7 +4150,7 @@ export declare const messengerContract: {
|
|
4084
4150
|
displayName: string;
|
4085
4151
|
}[];
|
4086
4152
|
}[];
|
4087
|
-
extension
|
4153
|
+
extension: {
|
4088
4154
|
id: string;
|
4089
4155
|
createdAt: Date;
|
4090
4156
|
updatedAt: Date;
|
@@ -4092,10 +4158,11 @@ export declare const messengerContract: {
|
|
4092
4158
|
userId: string | null;
|
4093
4159
|
sipServerUrl: string;
|
4094
4160
|
sipUserName: string;
|
4161
|
+
webphoneLoginUser: string;
|
4095
4162
|
extensionId: number;
|
4096
4163
|
extensionName: string;
|
4097
4164
|
telephonySignature: string | null;
|
4098
|
-
}
|
4165
|
+
};
|
4099
4166
|
};
|
4100
4167
|
cxlog: {
|
4101
4168
|
id: string;
|
@@ -4181,7 +4248,7 @@ export declare const messengerContract: {
|
|
4181
4248
|
displayName: string;
|
4182
4249
|
}[];
|
4183
4250
|
}[];
|
4184
|
-
extension
|
4251
|
+
extension: {
|
4185
4252
|
id: string;
|
4186
4253
|
createdAt: Date;
|
4187
4254
|
updatedAt: Date;
|
@@ -4189,10 +4256,11 @@ export declare const messengerContract: {
|
|
4189
4256
|
userId: string | null;
|
4190
4257
|
sipServerUrl: string;
|
4191
4258
|
sipUserName: string;
|
4259
|
+
webphoneLoginUser: string;
|
4192
4260
|
extensionId: number;
|
4193
4261
|
extensionName: string;
|
4194
4262
|
telephonySignature: string | null;
|
4195
|
-
}
|
4263
|
+
};
|
4196
4264
|
} | undefined;
|
4197
4265
|
} | undefined;
|
4198
4266
|
};
|
@@ -4232,7 +4300,7 @@ export declare const messengerContract: {
|
|
4232
4300
|
displayName: string;
|
4233
4301
|
}[];
|
4234
4302
|
}[];
|
4235
|
-
extension
|
4303
|
+
extension: {
|
4236
4304
|
id: string;
|
4237
4305
|
createdAt: Date;
|
4238
4306
|
updatedAt: Date;
|
@@ -4240,10 +4308,11 @@ export declare const messengerContract: {
|
|
4240
4308
|
userId: string | null;
|
4241
4309
|
sipServerUrl: string;
|
4242
4310
|
sipUserName: string;
|
4311
|
+
webphoneLoginUser: string;
|
4243
4312
|
extensionId: number;
|
4244
4313
|
extensionName: string;
|
4245
4314
|
telephonySignature: string | null;
|
4246
|
-
}
|
4315
|
+
};
|
4247
4316
|
};
|
4248
4317
|
metadata?: any;
|
4249
4318
|
template?: any;
|
@@ -4287,7 +4356,7 @@ export declare const messengerContract: {
|
|
4287
4356
|
displayName: string;
|
4288
4357
|
}[];
|
4289
4358
|
}[];
|
4290
|
-
extension
|
4359
|
+
extension: {
|
4291
4360
|
id: string;
|
4292
4361
|
createdAt: Date;
|
4293
4362
|
updatedAt: Date;
|
@@ -4295,10 +4364,11 @@ export declare const messengerContract: {
|
|
4295
4364
|
userId: string | null;
|
4296
4365
|
sipServerUrl: string;
|
4297
4366
|
sipUserName: string;
|
4367
|
+
webphoneLoginUser: string;
|
4298
4368
|
extensionId: number;
|
4299
4369
|
extensionName: string;
|
4300
4370
|
telephonySignature: string | null;
|
4301
|
-
}
|
4371
|
+
};
|
4302
4372
|
};
|
4303
4373
|
upload: {
|
4304
4374
|
id: string;
|
@@ -4309,6 +4379,7 @@ export declare const messengerContract: {
|
|
4309
4379
|
fileKey: string;
|
4310
4380
|
bucketName: string;
|
4311
4381
|
fileSize: number;
|
4382
|
+
fileUrl: string | null;
|
4312
4383
|
};
|
4313
4384
|
assignee: {
|
4314
4385
|
id: string;
|
@@ -4340,7 +4411,7 @@ export declare const messengerContract: {
|
|
4340
4411
|
displayName: string;
|
4341
4412
|
}[];
|
4342
4413
|
}[];
|
4343
|
-
extension
|
4414
|
+
extension: {
|
4344
4415
|
id: string;
|
4345
4416
|
createdAt: Date;
|
4346
4417
|
updatedAt: Date;
|
@@ -4348,10 +4419,11 @@ export declare const messengerContract: {
|
|
4348
4419
|
userId: string | null;
|
4349
4420
|
sipServerUrl: string;
|
4350
4421
|
sipUserName: string;
|
4422
|
+
webphoneLoginUser: string;
|
4351
4423
|
extensionId: number;
|
4352
4424
|
extensionName: string;
|
4353
4425
|
telephonySignature: string | null;
|
4354
|
-
}
|
4426
|
+
};
|
4355
4427
|
};
|
4356
4428
|
room: {
|
4357
4429
|
id: string;
|
@@ -4389,7 +4461,7 @@ export declare const messengerContract: {
|
|
4389
4461
|
displayName: string;
|
4390
4462
|
}[];
|
4391
4463
|
}[];
|
4392
|
-
extension
|
4464
|
+
extension: {
|
4393
4465
|
id: string;
|
4394
4466
|
createdAt: Date;
|
4395
4467
|
updatedAt: Date;
|
@@ -4397,10 +4469,11 @@ export declare const messengerContract: {
|
|
4397
4469
|
userId: string | null;
|
4398
4470
|
sipServerUrl: string;
|
4399
4471
|
sipUserName: string;
|
4472
|
+
webphoneLoginUser: string;
|
4400
4473
|
extensionId: number;
|
4401
4474
|
extensionName: string;
|
4402
4475
|
telephonySignature: string | null;
|
4403
|
-
}
|
4476
|
+
};
|
4404
4477
|
};
|
4405
4478
|
firstResponseTime: number;
|
4406
4479
|
lastMessage: string;
|
@@ -4468,6 +4541,7 @@ export declare const messengerContract: {
|
|
4468
4541
|
fileKey: string;
|
4469
4542
|
bucketName: string;
|
4470
4543
|
fileSize: number;
|
4544
|
+
fileUrl: string | null;
|
4471
4545
|
};
|
4472
4546
|
}[];
|
4473
4547
|
}[];
|
@@ -4556,7 +4630,7 @@ export declare const messengerContract: {
|
|
4556
4630
|
displayName: string;
|
4557
4631
|
}[];
|
4558
4632
|
}[];
|
4559
|
-
extension
|
4633
|
+
extension: {
|
4560
4634
|
id: string;
|
4561
4635
|
createdAt: Date;
|
4562
4636
|
updatedAt: Date;
|
@@ -4564,10 +4638,11 @@ export declare const messengerContract: {
|
|
4564
4638
|
userId: string | null;
|
4565
4639
|
sipServerUrl: string;
|
4566
4640
|
sipUserName: string;
|
4641
|
+
webphoneLoginUser: string;
|
4567
4642
|
extensionId: number;
|
4568
4643
|
extensionName: string;
|
4569
4644
|
telephonySignature: string | null;
|
4570
|
-
}
|
4645
|
+
};
|
4571
4646
|
};
|
4572
4647
|
cxlog: {
|
4573
4648
|
id: string;
|
@@ -4653,7 +4728,7 @@ export declare const messengerContract: {
|
|
4653
4728
|
displayName: string;
|
4654
4729
|
}[];
|
4655
4730
|
}[];
|
4656
|
-
extension
|
4731
|
+
extension: {
|
4657
4732
|
id: string;
|
4658
4733
|
createdAt: Date;
|
4659
4734
|
updatedAt: Date;
|
@@ -4661,10 +4736,11 @@ export declare const messengerContract: {
|
|
4661
4736
|
userId: string | null;
|
4662
4737
|
sipServerUrl: string;
|
4663
4738
|
sipUserName: string;
|
4739
|
+
webphoneLoginUser: string;
|
4664
4740
|
extensionId: number;
|
4665
4741
|
extensionName: string;
|
4666
4742
|
telephonySignature: string | null;
|
4667
|
-
}
|
4743
|
+
};
|
4668
4744
|
} | undefined;
|
4669
4745
|
} | undefined;
|
4670
4746
|
};
|
@@ -4704,7 +4780,7 @@ export declare const messengerContract: {
|
|
4704
4780
|
displayName: string;
|
4705
4781
|
}[];
|
4706
4782
|
}[];
|
4707
|
-
extension
|
4783
|
+
extension: {
|
4708
4784
|
id: string;
|
4709
4785
|
createdAt: Date;
|
4710
4786
|
updatedAt: Date;
|
@@ -4712,10 +4788,11 @@ export declare const messengerContract: {
|
|
4712
4788
|
userId: string | null;
|
4713
4789
|
sipServerUrl: string;
|
4714
4790
|
sipUserName: string;
|
4791
|
+
webphoneLoginUser: string;
|
4715
4792
|
extensionId: number;
|
4716
4793
|
extensionName: string;
|
4717
4794
|
telephonySignature: string | null;
|
4718
|
-
}
|
4795
|
+
};
|
4719
4796
|
};
|
4720
4797
|
metadata?: any;
|
4721
4798
|
template?: any;
|
@@ -4761,7 +4838,7 @@ export declare const messengerContract: {
|
|
4761
4838
|
displayName: string;
|
4762
4839
|
}[];
|
4763
4840
|
}[];
|
4764
|
-
extension
|
4841
|
+
extension: {
|
4765
4842
|
id: string;
|
4766
4843
|
createdAt: Date;
|
4767
4844
|
updatedAt: Date;
|
@@ -4769,10 +4846,11 @@ export declare const messengerContract: {
|
|
4769
4846
|
userId: string | null;
|
4770
4847
|
sipServerUrl: string;
|
4771
4848
|
sipUserName: string;
|
4849
|
+
webphoneLoginUser: string;
|
4772
4850
|
extensionId: number;
|
4773
4851
|
extensionName: string;
|
4774
4852
|
telephonySignature: string | null;
|
4775
|
-
}
|
4853
|
+
};
|
4776
4854
|
};
|
4777
4855
|
upload: {
|
4778
4856
|
id: string;
|
@@ -4783,6 +4861,7 @@ export declare const messengerContract: {
|
|
4783
4861
|
fileKey: string;
|
4784
4862
|
bucketName: string;
|
4785
4863
|
fileSize: number;
|
4864
|
+
fileUrl: string | null;
|
4786
4865
|
};
|
4787
4866
|
assignee: {
|
4788
4867
|
id: string;
|
@@ -4814,7 +4893,7 @@ export declare const messengerContract: {
|
|
4814
4893
|
displayName: string;
|
4815
4894
|
}[];
|
4816
4895
|
}[];
|
4817
|
-
extension
|
4896
|
+
extension: {
|
4818
4897
|
id: string;
|
4819
4898
|
createdAt: Date;
|
4820
4899
|
updatedAt: Date;
|
@@ -4822,10 +4901,11 @@ export declare const messengerContract: {
|
|
4822
4901
|
userId: string | null;
|
4823
4902
|
sipServerUrl: string;
|
4824
4903
|
sipUserName: string;
|
4904
|
+
webphoneLoginUser: string;
|
4825
4905
|
extensionId: number;
|
4826
4906
|
extensionName: string;
|
4827
4907
|
telephonySignature: string | null;
|
4828
|
-
}
|
4908
|
+
};
|
4829
4909
|
};
|
4830
4910
|
room: {
|
4831
4911
|
id: string;
|
@@ -4863,7 +4943,7 @@ export declare const messengerContract: {
|
|
4863
4943
|
displayName: string;
|
4864
4944
|
}[];
|
4865
4945
|
}[];
|
4866
|
-
extension
|
4946
|
+
extension: {
|
4867
4947
|
id: string;
|
4868
4948
|
createdAt: Date;
|
4869
4949
|
updatedAt: Date;
|
@@ -4871,10 +4951,11 @@ export declare const messengerContract: {
|
|
4871
4951
|
userId: string | null;
|
4872
4952
|
sipServerUrl: string;
|
4873
4953
|
sipUserName: string;
|
4954
|
+
webphoneLoginUser: string;
|
4874
4955
|
extensionId: number;
|
4875
4956
|
extensionName: string;
|
4876
4957
|
telephonySignature: string | null;
|
4877
|
-
}
|
4958
|
+
};
|
4878
4959
|
};
|
4879
4960
|
firstResponseTime: number;
|
4880
4961
|
lastMessage: string;
|
@@ -4942,6 +5023,7 @@ export declare const messengerContract: {
|
|
4942
5023
|
fileKey: string;
|
4943
5024
|
bucketName: string;
|
4944
5025
|
fileSize: number;
|
5026
|
+
fileUrl: string | null;
|
4945
5027
|
};
|
4946
5028
|
}[];
|
4947
5029
|
}[];
|
@@ -5030,7 +5112,7 @@ export declare const messengerContract: {
|
|
5030
5112
|
displayName: string;
|
5031
5113
|
}[];
|
5032
5114
|
}[];
|
5033
|
-
extension
|
5115
|
+
extension: {
|
5034
5116
|
id: string;
|
5035
5117
|
createdAt: Date;
|
5036
5118
|
updatedAt: Date;
|
@@ -5038,10 +5120,11 @@ export declare const messengerContract: {
|
|
5038
5120
|
userId: string | null;
|
5039
5121
|
sipServerUrl: string;
|
5040
5122
|
sipUserName: string;
|
5123
|
+
webphoneLoginUser: string;
|
5041
5124
|
extensionId: number;
|
5042
5125
|
extensionName: string;
|
5043
5126
|
telephonySignature: string | null;
|
5044
|
-
}
|
5127
|
+
};
|
5045
5128
|
};
|
5046
5129
|
cxlog: {
|
5047
5130
|
id: string;
|
@@ -5127,7 +5210,7 @@ export declare const messengerContract: {
|
|
5127
5210
|
displayName: string;
|
5128
5211
|
}[];
|
5129
5212
|
}[];
|
5130
|
-
extension
|
5213
|
+
extension: {
|
5131
5214
|
id: string;
|
5132
5215
|
createdAt: Date;
|
5133
5216
|
updatedAt: Date;
|
@@ -5135,10 +5218,11 @@ export declare const messengerContract: {
|
|
5135
5218
|
userId: string | null;
|
5136
5219
|
sipServerUrl: string;
|
5137
5220
|
sipUserName: string;
|
5221
|
+
webphoneLoginUser: string;
|
5138
5222
|
extensionId: number;
|
5139
5223
|
extensionName: string;
|
5140
5224
|
telephonySignature: string | null;
|
5141
|
-
}
|
5225
|
+
};
|
5142
5226
|
} | undefined;
|
5143
5227
|
} | undefined;
|
5144
5228
|
};
|
@@ -5178,7 +5262,7 @@ export declare const messengerContract: {
|
|
5178
5262
|
displayName: string;
|
5179
5263
|
}[];
|
5180
5264
|
}[];
|
5181
|
-
extension
|
5265
|
+
extension: {
|
5182
5266
|
id: string;
|
5183
5267
|
createdAt: Date;
|
5184
5268
|
updatedAt: Date;
|
@@ -5186,10 +5270,11 @@ export declare const messengerContract: {
|
|
5186
5270
|
userId: string | null;
|
5187
5271
|
sipServerUrl: string;
|
5188
5272
|
sipUserName: string;
|
5273
|
+
webphoneLoginUser: string;
|
5189
5274
|
extensionId: number;
|
5190
5275
|
extensionName: string;
|
5191
5276
|
telephonySignature: string | null;
|
5192
|
-
}
|
5277
|
+
};
|
5193
5278
|
};
|
5194
5279
|
metadata?: any;
|
5195
5280
|
template?: any;
|
@@ -5236,7 +5321,7 @@ export declare const messengerContract: {
|
|
5236
5321
|
displayName: string;
|
5237
5322
|
}[];
|
5238
5323
|
}[];
|
5239
|
-
extension
|
5324
|
+
extension: {
|
5240
5325
|
id: string;
|
5241
5326
|
createdAt: Date;
|
5242
5327
|
updatedAt: Date;
|
@@ -5244,10 +5329,11 @@ export declare const messengerContract: {
|
|
5244
5329
|
userId: string | null;
|
5245
5330
|
sipServerUrl: string;
|
5246
5331
|
sipUserName: string;
|
5332
|
+
webphoneLoginUser: string;
|
5247
5333
|
extensionId: number;
|
5248
5334
|
extensionName: string;
|
5249
5335
|
telephonySignature: string | null;
|
5250
|
-
}
|
5336
|
+
};
|
5251
5337
|
};
|
5252
5338
|
upload: {
|
5253
5339
|
id: string;
|
@@ -5258,6 +5344,7 @@ export declare const messengerContract: {
|
|
5258
5344
|
fileKey: string;
|
5259
5345
|
bucketName: string;
|
5260
5346
|
fileSize: number;
|
5347
|
+
fileUrl: string | null;
|
5261
5348
|
};
|
5262
5349
|
assignee: {
|
5263
5350
|
id: string;
|
@@ -5289,7 +5376,7 @@ export declare const messengerContract: {
|
|
5289
5376
|
displayName: string;
|
5290
5377
|
}[];
|
5291
5378
|
}[];
|
5292
|
-
extension
|
5379
|
+
extension: {
|
5293
5380
|
id: string;
|
5294
5381
|
createdAt: Date;
|
5295
5382
|
updatedAt: Date;
|
@@ -5297,10 +5384,11 @@ export declare const messengerContract: {
|
|
5297
5384
|
userId: string | null;
|
5298
5385
|
sipServerUrl: string;
|
5299
5386
|
sipUserName: string;
|
5387
|
+
webphoneLoginUser: string;
|
5300
5388
|
extensionId: number;
|
5301
5389
|
extensionName: string;
|
5302
5390
|
telephonySignature: string | null;
|
5303
|
-
}
|
5391
|
+
};
|
5304
5392
|
};
|
5305
5393
|
room: {
|
5306
5394
|
id: string;
|
@@ -5338,7 +5426,7 @@ export declare const messengerContract: {
|
|
5338
5426
|
displayName: string;
|
5339
5427
|
}[];
|
5340
5428
|
}[];
|
5341
|
-
extension
|
5429
|
+
extension: {
|
5342
5430
|
id: string;
|
5343
5431
|
createdAt: Date;
|
5344
5432
|
updatedAt: Date;
|
@@ -5346,10 +5434,11 @@ export declare const messengerContract: {
|
|
5346
5434
|
userId: string | null;
|
5347
5435
|
sipServerUrl: string;
|
5348
5436
|
sipUserName: string;
|
5437
|
+
webphoneLoginUser: string;
|
5349
5438
|
extensionId: number;
|
5350
5439
|
extensionName: string;
|
5351
5440
|
telephonySignature: string | null;
|
5352
|
-
}
|
5441
|
+
};
|
5353
5442
|
};
|
5354
5443
|
firstResponseTime: number;
|
5355
5444
|
lastMessage: string;
|
@@ -5417,6 +5506,7 @@ export declare const messengerContract: {
|
|
5417
5506
|
fileKey: string;
|
5418
5507
|
bucketName: string;
|
5419
5508
|
fileSize: number;
|
5509
|
+
fileUrl: string | null;
|
5420
5510
|
};
|
5421
5511
|
}[];
|
5422
5512
|
}[];
|
@@ -5505,7 +5595,7 @@ export declare const messengerContract: {
|
|
5505
5595
|
displayName: string;
|
5506
5596
|
}[];
|
5507
5597
|
}[];
|
5508
|
-
extension
|
5598
|
+
extension: {
|
5509
5599
|
id: string;
|
5510
5600
|
createdAt: Date;
|
5511
5601
|
updatedAt: Date;
|
@@ -5513,10 +5603,11 @@ export declare const messengerContract: {
|
|
5513
5603
|
userId: string | null;
|
5514
5604
|
sipServerUrl: string;
|
5515
5605
|
sipUserName: string;
|
5606
|
+
webphoneLoginUser: string;
|
5516
5607
|
extensionId: number;
|
5517
5608
|
extensionName: string;
|
5518
5609
|
telephonySignature: string | null;
|
5519
|
-
}
|
5610
|
+
};
|
5520
5611
|
};
|
5521
5612
|
cxlog: {
|
5522
5613
|
id: string;
|
@@ -5602,7 +5693,7 @@ export declare const messengerContract: {
|
|
5602
5693
|
displayName: string;
|
5603
5694
|
}[];
|
5604
5695
|
}[];
|
5605
|
-
extension
|
5696
|
+
extension: {
|
5606
5697
|
id: string;
|
5607
5698
|
createdAt: Date;
|
5608
5699
|
updatedAt: Date;
|
@@ -5610,10 +5701,11 @@ export declare const messengerContract: {
|
|
5610
5701
|
userId: string | null;
|
5611
5702
|
sipServerUrl: string;
|
5612
5703
|
sipUserName: string;
|
5704
|
+
webphoneLoginUser: string;
|
5613
5705
|
extensionId: number;
|
5614
5706
|
extensionName: string;
|
5615
5707
|
telephonySignature: string | null;
|
5616
|
-
}
|
5708
|
+
};
|
5617
5709
|
} | undefined;
|
5618
5710
|
} | undefined;
|
5619
5711
|
};
|
@@ -5653,7 +5745,7 @@ export declare const messengerContract: {
|
|
5653
5745
|
displayName: string;
|
5654
5746
|
}[];
|
5655
5747
|
}[];
|
5656
|
-
extension
|
5748
|
+
extension: {
|
5657
5749
|
id: string;
|
5658
5750
|
createdAt: Date;
|
5659
5751
|
updatedAt: Date;
|
@@ -5661,10 +5753,11 @@ export declare const messengerContract: {
|
|
5661
5753
|
userId: string | null;
|
5662
5754
|
sipServerUrl: string;
|
5663
5755
|
sipUserName: string;
|
5756
|
+
webphoneLoginUser: string;
|
5664
5757
|
extensionId: number;
|
5665
5758
|
extensionName: string;
|
5666
5759
|
telephonySignature: string | null;
|
5667
|
-
}
|
5760
|
+
};
|
5668
5761
|
};
|
5669
5762
|
metadata?: any;
|
5670
5763
|
template?: any;
|
@@ -6182,6 +6275,255 @@ export declare const messengerContract: {
|
|
6182
6275
|
};
|
6183
6276
|
path: "/disconnect";
|
6184
6277
|
};
|
6278
|
+
relogin: {
|
6279
|
+
body: z.ZodObject<{
|
6280
|
+
name: z.ZodOptional<z.ZodString>;
|
6281
|
+
type: z.ZodOptional<z.ZodEnum<["whatsapp", "messenger", "telegram", "line", "viber", "kakao", "shopee", "lazada", "instagram"]>>;
|
6282
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
6283
|
+
id: z.ZodString;
|
6284
|
+
name: z.ZodString;
|
6285
|
+
accessToken: z.ZodString;
|
6286
|
+
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
6287
|
+
}, "strip", z.ZodTypeAny, {
|
6288
|
+
id: string;
|
6289
|
+
name: string;
|
6290
|
+
accessToken: string;
|
6291
|
+
additionalCredentials?: any;
|
6292
|
+
}, {
|
6293
|
+
id: string;
|
6294
|
+
name: string;
|
6295
|
+
accessToken: string;
|
6296
|
+
additionalCredentials?: any;
|
6297
|
+
}>>;
|
6298
|
+
platformId: z.ZodOptional<z.ZodString>;
|
6299
|
+
brandName: z.ZodOptional<z.ZodString>;
|
6300
|
+
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>>;
|
6301
|
+
connectedUserName: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
6302
|
+
connectedUserId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
6303
|
+
actor: z.ZodOptional<z.ZodObject<{
|
6304
|
+
id: z.ZodString;
|
6305
|
+
name: z.ZodString;
|
6306
|
+
email: z.ZodString;
|
6307
|
+
address: z.ZodNullable<z.ZodString>;
|
6308
|
+
phone: z.ZodNullable<z.ZodString>;
|
6309
|
+
}, "strip", z.ZodTypeAny, {
|
6310
|
+
id: string;
|
6311
|
+
address: string | null;
|
6312
|
+
name: string;
|
6313
|
+
email: string;
|
6314
|
+
phone: string | null;
|
6315
|
+
}, {
|
6316
|
+
id: string;
|
6317
|
+
address: string | null;
|
6318
|
+
name: string;
|
6319
|
+
email: string;
|
6320
|
+
phone: string | null;
|
6321
|
+
}>>;
|
6322
|
+
}, "strip", z.ZodTypeAny, {
|
6323
|
+
name?: string | undefined;
|
6324
|
+
type?: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram" | undefined;
|
6325
|
+
metadata?: {
|
6326
|
+
id: string;
|
6327
|
+
name: string;
|
6328
|
+
accessToken: string;
|
6329
|
+
additionalCredentials?: any;
|
6330
|
+
} | undefined;
|
6331
|
+
platformId?: string | undefined;
|
6332
|
+
brandName?: string | undefined;
|
6333
|
+
status?: boolean | undefined;
|
6334
|
+
connectedUserName?: string | null | undefined;
|
6335
|
+
connectedUserId?: string | null | undefined;
|
6336
|
+
actor?: {
|
6337
|
+
id: string;
|
6338
|
+
address: string | null;
|
6339
|
+
name: string;
|
6340
|
+
email: string;
|
6341
|
+
phone: string | null;
|
6342
|
+
} | undefined;
|
6343
|
+
}, {
|
6344
|
+
name?: string | undefined;
|
6345
|
+
type?: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram" | undefined;
|
6346
|
+
metadata?: {
|
6347
|
+
id: string;
|
6348
|
+
name: string;
|
6349
|
+
accessToken: string;
|
6350
|
+
additionalCredentials?: any;
|
6351
|
+
} | undefined;
|
6352
|
+
platformId?: string | undefined;
|
6353
|
+
brandName?: string | undefined;
|
6354
|
+
status?: boolean | undefined;
|
6355
|
+
connectedUserName?: string | null | undefined;
|
6356
|
+
connectedUserId?: string | null | undefined;
|
6357
|
+
actor?: {
|
6358
|
+
id: string;
|
6359
|
+
address: string | null;
|
6360
|
+
name: string;
|
6361
|
+
email: string;
|
6362
|
+
phone: string | null;
|
6363
|
+
} | undefined;
|
6364
|
+
}>;
|
6365
|
+
method: "POST";
|
6366
|
+
responses: {
|
6367
|
+
200: z.ZodObject<{
|
6368
|
+
requestId: z.ZodString;
|
6369
|
+
data: z.ZodObject<{
|
6370
|
+
name: z.ZodString;
|
6371
|
+
type: z.ZodEnum<["whatsapp", "messenger", "telegram", "line", "viber", "kakao", "shopee", "lazada", "instagram"]>;
|
6372
|
+
metadata: z.ZodObject<{
|
6373
|
+
id: z.ZodString;
|
6374
|
+
name: z.ZodString;
|
6375
|
+
accessToken: z.ZodString;
|
6376
|
+
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
6377
|
+
}, "strip", z.ZodTypeAny, {
|
6378
|
+
id: string;
|
6379
|
+
name: string;
|
6380
|
+
accessToken: string;
|
6381
|
+
additionalCredentials?: any;
|
6382
|
+
}, {
|
6383
|
+
id: string;
|
6384
|
+
name: string;
|
6385
|
+
accessToken: string;
|
6386
|
+
additionalCredentials?: any;
|
6387
|
+
}>;
|
6388
|
+
platformId: z.ZodString;
|
6389
|
+
brandName: z.ZodString;
|
6390
|
+
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
6391
|
+
connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
6392
|
+
connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
6393
|
+
actor: z.ZodObject<{
|
6394
|
+
id: z.ZodString;
|
6395
|
+
name: z.ZodString;
|
6396
|
+
email: z.ZodString;
|
6397
|
+
address: z.ZodNullable<z.ZodString>;
|
6398
|
+
phone: z.ZodNullable<z.ZodString>;
|
6399
|
+
}, "strip", z.ZodTypeAny, {
|
6400
|
+
id: string;
|
6401
|
+
address: string | null;
|
6402
|
+
name: string;
|
6403
|
+
email: string;
|
6404
|
+
phone: string | null;
|
6405
|
+
}, {
|
6406
|
+
id: string;
|
6407
|
+
address: string | null;
|
6408
|
+
name: string;
|
6409
|
+
email: string;
|
6410
|
+
phone: string | null;
|
6411
|
+
}>;
|
6412
|
+
}, "strip", z.ZodTypeAny, {
|
6413
|
+
type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
|
6414
|
+
name: string;
|
6415
|
+
metadata: {
|
6416
|
+
id: string;
|
6417
|
+
name: string;
|
6418
|
+
accessToken: string;
|
6419
|
+
additionalCredentials?: any;
|
6420
|
+
};
|
6421
|
+
status: boolean;
|
6422
|
+
brandName: string;
|
6423
|
+
platformId: string;
|
6424
|
+
actor: {
|
6425
|
+
id: string;
|
6426
|
+
address: string | null;
|
6427
|
+
name: string;
|
6428
|
+
email: string;
|
6429
|
+
phone: string | null;
|
6430
|
+
};
|
6431
|
+
connectedUserName?: string | null | undefined;
|
6432
|
+
connectedUserId?: string | null | undefined;
|
6433
|
+
}, {
|
6434
|
+
type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
|
6435
|
+
name: string;
|
6436
|
+
metadata: {
|
6437
|
+
id: string;
|
6438
|
+
name: string;
|
6439
|
+
accessToken: string;
|
6440
|
+
additionalCredentials?: any;
|
6441
|
+
};
|
6442
|
+
status: boolean;
|
6443
|
+
brandName: string;
|
6444
|
+
platformId: string;
|
6445
|
+
actor: {
|
6446
|
+
id: string;
|
6447
|
+
address: string | null;
|
6448
|
+
name: string;
|
6449
|
+
email: string;
|
6450
|
+
phone: string | null;
|
6451
|
+
};
|
6452
|
+
connectedUserName?: string | null | undefined;
|
6453
|
+
connectedUserId?: string | null | undefined;
|
6454
|
+
}>;
|
6455
|
+
}, "strip", z.ZodTypeAny, {
|
6456
|
+
data: {
|
6457
|
+
type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
|
6458
|
+
name: string;
|
6459
|
+
metadata: {
|
6460
|
+
id: string;
|
6461
|
+
name: string;
|
6462
|
+
accessToken: string;
|
6463
|
+
additionalCredentials?: any;
|
6464
|
+
};
|
6465
|
+
status: boolean;
|
6466
|
+
brandName: string;
|
6467
|
+
platformId: string;
|
6468
|
+
actor: {
|
6469
|
+
id: string;
|
6470
|
+
address: string | null;
|
6471
|
+
name: string;
|
6472
|
+
email: string;
|
6473
|
+
phone: string | null;
|
6474
|
+
};
|
6475
|
+
connectedUserName?: string | null | undefined;
|
6476
|
+
connectedUserId?: string | null | undefined;
|
6477
|
+
};
|
6478
|
+
requestId: string;
|
6479
|
+
}, {
|
6480
|
+
data: {
|
6481
|
+
type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
|
6482
|
+
name: string;
|
6483
|
+
metadata: {
|
6484
|
+
id: string;
|
6485
|
+
name: string;
|
6486
|
+
accessToken: string;
|
6487
|
+
additionalCredentials?: any;
|
6488
|
+
};
|
6489
|
+
status: boolean;
|
6490
|
+
brandName: string;
|
6491
|
+
platformId: string;
|
6492
|
+
actor: {
|
6493
|
+
id: string;
|
6494
|
+
address: string | null;
|
6495
|
+
name: string;
|
6496
|
+
email: string;
|
6497
|
+
phone: string | null;
|
6498
|
+
};
|
6499
|
+
connectedUserName?: string | null | undefined;
|
6500
|
+
connectedUserId?: string | null | undefined;
|
6501
|
+
};
|
6502
|
+
requestId: string;
|
6503
|
+
}>;
|
6504
|
+
500: z.ZodObject<{
|
6505
|
+
message: z.ZodString;
|
6506
|
+
error: z.ZodAny;
|
6507
|
+
}, "strip", z.ZodTypeAny, {
|
6508
|
+
message: string;
|
6509
|
+
error?: any;
|
6510
|
+
}, {
|
6511
|
+
message: string;
|
6512
|
+
error?: any;
|
6513
|
+
}>;
|
6514
|
+
400: z.ZodObject<{
|
6515
|
+
message: z.ZodString;
|
6516
|
+
error: z.ZodAny;
|
6517
|
+
}, "strip", z.ZodTypeAny, {
|
6518
|
+
message: string;
|
6519
|
+
error?: any;
|
6520
|
+
}, {
|
6521
|
+
message: string;
|
6522
|
+
error?: any;
|
6523
|
+
}>;
|
6524
|
+
};
|
6525
|
+
path: "/relogin";
|
6526
|
+
};
|
6185
6527
|
getFacebookPages: {
|
6186
6528
|
method: "GET";
|
6187
6529
|
query: z.ZodObject<{
|