@savantoai/ai-sdk 3.0.0 → 3.1.0
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/CHANGELOG.md +65 -0
- package/README.md +7 -2
- package/dist/index.cjs +4 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1266 -12
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +1266 -12
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +4 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -319,6 +319,8 @@ declare const createClient: (config?: Config) => Client;
|
|
|
319
319
|
//#endregion
|
|
320
320
|
//#region src/generated/types.gen.d.ts
|
|
321
321
|
type ChatResponse = {
|
|
322
|
+
object: 'event';
|
|
323
|
+
requestId: string;
|
|
322
324
|
data?: unknown;
|
|
323
325
|
};
|
|
324
326
|
type ChatStreamChunk = {
|
|
@@ -442,9 +444,9 @@ type Product = {
|
|
|
442
444
|
priceMin?: number | null;
|
|
443
445
|
priceMax?: number | null;
|
|
444
446
|
stockQuantity?: number | null;
|
|
445
|
-
stockStatus?:
|
|
447
|
+
stockStatus?: 'instock' | 'outofstock' | 'onbackorder';
|
|
446
448
|
sku?: string;
|
|
447
|
-
type?:
|
|
449
|
+
type?: 'simple' | 'variable' | 'grouped' | 'external';
|
|
448
450
|
weight?: number | null;
|
|
449
451
|
dimensions?: {
|
|
450
452
|
length?: number | null;
|
|
@@ -618,11 +620,16 @@ type ThreadBulkDeleteRequest = {
|
|
|
618
620
|
};
|
|
619
621
|
type FeedbackSubmission = {
|
|
620
622
|
rating: 'positive' | 'negative';
|
|
621
|
-
|
|
623
|
+
source?: 'chat_response' | 'recommendation' | 'search_result' | 'content';
|
|
622
624
|
threadId?: string;
|
|
625
|
+
contentId?: string;
|
|
626
|
+
contentType?: 'product' | 'post' | 'prompt' | 'message' | 'general';
|
|
623
627
|
comment?: string;
|
|
624
|
-
|
|
625
|
-
|
|
628
|
+
category?: string;
|
|
629
|
+
queryText?: string;
|
|
630
|
+
metadata?: {
|
|
631
|
+
[key: string]: unknown;
|
|
632
|
+
};
|
|
626
633
|
userJwt?: string;
|
|
627
634
|
messageId?: string;
|
|
628
635
|
};
|
|
@@ -870,7 +877,7 @@ type UpdateMcpConfigRequest = {
|
|
|
870
877
|
supportUri?: string;
|
|
871
878
|
accountUri?: string;
|
|
872
879
|
analyticsUri?: string;
|
|
873
|
-
[key: string]:
|
|
880
|
+
[key: string]: string | string | undefined;
|
|
874
881
|
};
|
|
875
882
|
type StoreLiveAgentCredentialsRequest = {
|
|
876
883
|
provider: 'zendesk' | 'intercom' | 'drift' | 'slack';
|
|
@@ -1039,6 +1046,14 @@ type ChatErrors = {
|
|
|
1039
1046
|
* Not found
|
|
1040
1047
|
*/
|
|
1041
1048
|
404: ErrorResponse;
|
|
1049
|
+
/**
|
|
1050
|
+
* Conflict
|
|
1051
|
+
*/
|
|
1052
|
+
409: ErrorResponse;
|
|
1053
|
+
/**
|
|
1054
|
+
* Payload too large
|
|
1055
|
+
*/
|
|
1056
|
+
413: ErrorResponse;
|
|
1042
1057
|
/**
|
|
1043
1058
|
* Rate limit exceeded
|
|
1044
1059
|
*/
|
|
@@ -1075,6 +1090,14 @@ type StartCrawlErrors = {
|
|
|
1075
1090
|
* Not found
|
|
1076
1091
|
*/
|
|
1077
1092
|
404: ErrorResponse;
|
|
1093
|
+
/**
|
|
1094
|
+
* Conflict
|
|
1095
|
+
*/
|
|
1096
|
+
409: ErrorResponse;
|
|
1097
|
+
/**
|
|
1098
|
+
* Payload too large
|
|
1099
|
+
*/
|
|
1100
|
+
413: ErrorResponse;
|
|
1078
1101
|
/**
|
|
1079
1102
|
* Rate limit exceeded
|
|
1080
1103
|
*/
|
|
@@ -1116,6 +1139,14 @@ type ScrapeSinglePageErrors = {
|
|
|
1116
1139
|
* Not found
|
|
1117
1140
|
*/
|
|
1118
1141
|
404: ErrorResponse;
|
|
1142
|
+
/**
|
|
1143
|
+
* Conflict
|
|
1144
|
+
*/
|
|
1145
|
+
409: ErrorResponse;
|
|
1146
|
+
/**
|
|
1147
|
+
* Payload too large
|
|
1148
|
+
*/
|
|
1149
|
+
413: ErrorResponse;
|
|
1119
1150
|
/**
|
|
1120
1151
|
* Rate limit exceeded
|
|
1121
1152
|
*/
|
|
@@ -1157,6 +1188,14 @@ type GetCrawlConfigErrors = {
|
|
|
1157
1188
|
* Not found
|
|
1158
1189
|
*/
|
|
1159
1190
|
404: ErrorResponse;
|
|
1191
|
+
/**
|
|
1192
|
+
* Conflict
|
|
1193
|
+
*/
|
|
1194
|
+
409: ErrorResponse;
|
|
1195
|
+
/**
|
|
1196
|
+
* Payload too large
|
|
1197
|
+
*/
|
|
1198
|
+
413: ErrorResponse;
|
|
1160
1199
|
/**
|
|
1161
1200
|
* Rate limit exceeded
|
|
1162
1201
|
*/
|
|
@@ -1197,6 +1236,14 @@ type UpdateCrawlConfigErrors = {
|
|
|
1197
1236
|
* Not found
|
|
1198
1237
|
*/
|
|
1199
1238
|
404: ErrorResponse;
|
|
1239
|
+
/**
|
|
1240
|
+
* Conflict
|
|
1241
|
+
*/
|
|
1242
|
+
409: ErrorResponse;
|
|
1243
|
+
/**
|
|
1244
|
+
* Payload too large
|
|
1245
|
+
*/
|
|
1246
|
+
413: ErrorResponse;
|
|
1200
1247
|
/**
|
|
1201
1248
|
* Rate limit exceeded
|
|
1202
1249
|
*/
|
|
@@ -1237,6 +1284,14 @@ type GetCrawlHistoryErrors = {
|
|
|
1237
1284
|
* Not found
|
|
1238
1285
|
*/
|
|
1239
1286
|
404: ErrorResponse;
|
|
1287
|
+
/**
|
|
1288
|
+
* Conflict
|
|
1289
|
+
*/
|
|
1290
|
+
409: ErrorResponse;
|
|
1291
|
+
/**
|
|
1292
|
+
* Payload too large
|
|
1293
|
+
*/
|
|
1294
|
+
413: ErrorResponse;
|
|
1240
1295
|
/**
|
|
1241
1296
|
* Rate limit exceeded
|
|
1242
1297
|
*/
|
|
@@ -1281,6 +1336,14 @@ type GetCrawlStatusErrors = {
|
|
|
1281
1336
|
* Not found
|
|
1282
1337
|
*/
|
|
1283
1338
|
404: ErrorResponse;
|
|
1339
|
+
/**
|
|
1340
|
+
* Conflict
|
|
1341
|
+
*/
|
|
1342
|
+
409: ErrorResponse;
|
|
1343
|
+
/**
|
|
1344
|
+
* Payload too large
|
|
1345
|
+
*/
|
|
1346
|
+
413: ErrorResponse;
|
|
1284
1347
|
/**
|
|
1285
1348
|
* Rate limit exceeded
|
|
1286
1349
|
*/
|
|
@@ -1321,6 +1384,14 @@ type CancelCrawlErrors = {
|
|
|
1321
1384
|
* Not found
|
|
1322
1385
|
*/
|
|
1323
1386
|
404: ErrorResponse;
|
|
1387
|
+
/**
|
|
1388
|
+
* Conflict
|
|
1389
|
+
*/
|
|
1390
|
+
409: ErrorResponse;
|
|
1391
|
+
/**
|
|
1392
|
+
* Payload too large
|
|
1393
|
+
*/
|
|
1394
|
+
413: ErrorResponse;
|
|
1324
1395
|
/**
|
|
1325
1396
|
* Rate limit exceeded
|
|
1326
1397
|
*/
|
|
@@ -1363,6 +1434,14 @@ type EnrollCrawlNotificationErrors = {
|
|
|
1363
1434
|
* Not found
|
|
1364
1435
|
*/
|
|
1365
1436
|
404: ErrorResponse;
|
|
1437
|
+
/**
|
|
1438
|
+
* Conflict
|
|
1439
|
+
*/
|
|
1440
|
+
409: ErrorResponse;
|
|
1441
|
+
/**
|
|
1442
|
+
* Payload too large
|
|
1443
|
+
*/
|
|
1444
|
+
413: ErrorResponse;
|
|
1366
1445
|
/**
|
|
1367
1446
|
* Rate limit exceeded
|
|
1368
1447
|
*/
|
|
@@ -1403,6 +1482,14 @@ type ScrapePageErrors = {
|
|
|
1403
1482
|
* Not found
|
|
1404
1483
|
*/
|
|
1405
1484
|
404: ErrorResponse;
|
|
1485
|
+
/**
|
|
1486
|
+
* Conflict
|
|
1487
|
+
*/
|
|
1488
|
+
409: ErrorResponse;
|
|
1489
|
+
/**
|
|
1490
|
+
* Payload too large
|
|
1491
|
+
*/
|
|
1492
|
+
413: ErrorResponse;
|
|
1406
1493
|
/**
|
|
1407
1494
|
* Rate limit exceeded
|
|
1408
1495
|
*/
|
|
@@ -1446,6 +1533,14 @@ type ListProductsErrors = {
|
|
|
1446
1533
|
* Not found
|
|
1447
1534
|
*/
|
|
1448
1535
|
404: ErrorResponse;
|
|
1536
|
+
/**
|
|
1537
|
+
* Conflict
|
|
1538
|
+
*/
|
|
1539
|
+
409: ErrorResponse;
|
|
1540
|
+
/**
|
|
1541
|
+
* Payload too large
|
|
1542
|
+
*/
|
|
1543
|
+
413: ErrorResponse;
|
|
1449
1544
|
/**
|
|
1450
1545
|
* Rate limit exceeded
|
|
1451
1546
|
*/
|
|
@@ -1489,6 +1584,14 @@ type UpsertProductErrors = {
|
|
|
1489
1584
|
* Not found
|
|
1490
1585
|
*/
|
|
1491
1586
|
404: ErrorResponse;
|
|
1587
|
+
/**
|
|
1588
|
+
* Conflict
|
|
1589
|
+
*/
|
|
1590
|
+
409: ErrorResponse;
|
|
1591
|
+
/**
|
|
1592
|
+
* Payload too large
|
|
1593
|
+
*/
|
|
1594
|
+
413: ErrorResponse;
|
|
1492
1595
|
/**
|
|
1493
1596
|
* Rate limit exceeded
|
|
1494
1597
|
*/
|
|
@@ -1534,6 +1637,14 @@ type BulkDeleteProductsErrors = {
|
|
|
1534
1637
|
* Not found
|
|
1535
1638
|
*/
|
|
1536
1639
|
404: ErrorResponse;
|
|
1640
|
+
/**
|
|
1641
|
+
* Conflict
|
|
1642
|
+
*/
|
|
1643
|
+
409: ErrorResponse;
|
|
1644
|
+
/**
|
|
1645
|
+
* Payload too large
|
|
1646
|
+
*/
|
|
1647
|
+
413: ErrorResponse;
|
|
1537
1648
|
/**
|
|
1538
1649
|
* Rate limit exceeded
|
|
1539
1650
|
*/
|
|
@@ -1573,6 +1684,14 @@ type BulkUpsertProductsErrors = {
|
|
|
1573
1684
|
* Not found
|
|
1574
1685
|
*/
|
|
1575
1686
|
404: ErrorResponse;
|
|
1687
|
+
/**
|
|
1688
|
+
* Conflict
|
|
1689
|
+
*/
|
|
1690
|
+
409: ErrorResponse;
|
|
1691
|
+
/**
|
|
1692
|
+
* Payload too large
|
|
1693
|
+
*/
|
|
1694
|
+
413: ErrorResponse;
|
|
1576
1695
|
/**
|
|
1577
1696
|
* Rate limit exceeded
|
|
1578
1697
|
*/
|
|
@@ -1622,6 +1741,14 @@ type SearchProductsErrors = {
|
|
|
1622
1741
|
* Not found
|
|
1623
1742
|
*/
|
|
1624
1743
|
404: ErrorResponse;
|
|
1744
|
+
/**
|
|
1745
|
+
* Conflict
|
|
1746
|
+
*/
|
|
1747
|
+
409: ErrorResponse;
|
|
1748
|
+
/**
|
|
1749
|
+
* Payload too large
|
|
1750
|
+
*/
|
|
1751
|
+
413: ErrorResponse;
|
|
1625
1752
|
/**
|
|
1626
1753
|
* Rate limit exceeded
|
|
1627
1754
|
*/
|
|
@@ -1640,6 +1767,8 @@ type SearchProductsResponses = {
|
|
|
1640
1767
|
pagination: Pagination;
|
|
1641
1768
|
query?: {
|
|
1642
1769
|
text: string;
|
|
1770
|
+
truncated?: boolean;
|
|
1771
|
+
originalLength?: number;
|
|
1643
1772
|
filters?: {
|
|
1644
1773
|
[key: string]: unknown;
|
|
1645
1774
|
};
|
|
@@ -1687,6 +1816,14 @@ type DeleteProductsByQueryErrors = {
|
|
|
1687
1816
|
* Not found
|
|
1688
1817
|
*/
|
|
1689
1818
|
404: ErrorResponse;
|
|
1819
|
+
/**
|
|
1820
|
+
* Conflict
|
|
1821
|
+
*/
|
|
1822
|
+
409: ErrorResponse;
|
|
1823
|
+
/**
|
|
1824
|
+
* Payload too large
|
|
1825
|
+
*/
|
|
1826
|
+
413: ErrorResponse;
|
|
1690
1827
|
/**
|
|
1691
1828
|
* Rate limit exceeded
|
|
1692
1829
|
*/
|
|
@@ -1730,6 +1867,14 @@ type ListProductIdsErrors = {
|
|
|
1730
1867
|
* Not found
|
|
1731
1868
|
*/
|
|
1732
1869
|
404: ErrorResponse;
|
|
1870
|
+
/**
|
|
1871
|
+
* Conflict
|
|
1872
|
+
*/
|
|
1873
|
+
409: ErrorResponse;
|
|
1874
|
+
/**
|
|
1875
|
+
* Payload too large
|
|
1876
|
+
*/
|
|
1877
|
+
413: ErrorResponse;
|
|
1733
1878
|
/**
|
|
1734
1879
|
* Rate limit exceeded
|
|
1735
1880
|
*/
|
|
@@ -1775,6 +1920,14 @@ type DeleteProductErrors = {
|
|
|
1775
1920
|
* Not found
|
|
1776
1921
|
*/
|
|
1777
1922
|
404: ErrorResponse;
|
|
1923
|
+
/**
|
|
1924
|
+
* Conflict
|
|
1925
|
+
*/
|
|
1926
|
+
409: ErrorResponse;
|
|
1927
|
+
/**
|
|
1928
|
+
* Payload too large
|
|
1929
|
+
*/
|
|
1930
|
+
413: ErrorResponse;
|
|
1778
1931
|
/**
|
|
1779
1932
|
* Rate limit exceeded
|
|
1780
1933
|
*/
|
|
@@ -1813,6 +1966,14 @@ type GetProductErrors = {
|
|
|
1813
1966
|
* Not found
|
|
1814
1967
|
*/
|
|
1815
1968
|
404: ErrorResponse;
|
|
1969
|
+
/**
|
|
1970
|
+
* Conflict
|
|
1971
|
+
*/
|
|
1972
|
+
409: ErrorResponse;
|
|
1973
|
+
/**
|
|
1974
|
+
* Payload too large
|
|
1975
|
+
*/
|
|
1976
|
+
413: ErrorResponse;
|
|
1816
1977
|
/**
|
|
1817
1978
|
* Rate limit exceeded
|
|
1818
1979
|
*/
|
|
@@ -1857,6 +2018,14 @@ type PatchProductErrors = {
|
|
|
1857
2018
|
* Not found
|
|
1858
2019
|
*/
|
|
1859
2020
|
404: ErrorResponse;
|
|
2021
|
+
/**
|
|
2022
|
+
* Conflict
|
|
2023
|
+
*/
|
|
2024
|
+
409: ErrorResponse;
|
|
2025
|
+
/**
|
|
2026
|
+
* Payload too large
|
|
2027
|
+
*/
|
|
2028
|
+
413: ErrorResponse;
|
|
1860
2029
|
/**
|
|
1861
2030
|
* Rate limit exceeded
|
|
1862
2031
|
*/
|
|
@@ -1897,6 +2066,14 @@ type UpsertPostErrors = {
|
|
|
1897
2066
|
* Not found
|
|
1898
2067
|
*/
|
|
1899
2068
|
404: ErrorResponse;
|
|
2069
|
+
/**
|
|
2070
|
+
* Conflict
|
|
2071
|
+
*/
|
|
2072
|
+
409: ErrorResponse;
|
|
2073
|
+
/**
|
|
2074
|
+
* Payload too large
|
|
2075
|
+
*/
|
|
2076
|
+
413: ErrorResponse;
|
|
1900
2077
|
/**
|
|
1901
2078
|
* Rate limit exceeded
|
|
1902
2079
|
*/
|
|
@@ -1942,6 +2119,14 @@ type BulkDeletePostsErrors = {
|
|
|
1942
2119
|
* Not found
|
|
1943
2120
|
*/
|
|
1944
2121
|
404: ErrorResponse;
|
|
2122
|
+
/**
|
|
2123
|
+
* Conflict
|
|
2124
|
+
*/
|
|
2125
|
+
409: ErrorResponse;
|
|
2126
|
+
/**
|
|
2127
|
+
* Payload too large
|
|
2128
|
+
*/
|
|
2129
|
+
413: ErrorResponse;
|
|
1945
2130
|
/**
|
|
1946
2131
|
* Rate limit exceeded
|
|
1947
2132
|
*/
|
|
@@ -1981,6 +2166,14 @@ type BulkUpsertPostsErrors = {
|
|
|
1981
2166
|
* Not found
|
|
1982
2167
|
*/
|
|
1983
2168
|
404: ErrorResponse;
|
|
2169
|
+
/**
|
|
2170
|
+
* Conflict
|
|
2171
|
+
*/
|
|
2172
|
+
409: ErrorResponse;
|
|
2173
|
+
/**
|
|
2174
|
+
* Payload too large
|
|
2175
|
+
*/
|
|
2176
|
+
413: ErrorResponse;
|
|
1984
2177
|
/**
|
|
1985
2178
|
* Rate limit exceeded
|
|
1986
2179
|
*/
|
|
@@ -2030,6 +2223,14 @@ type SearchPostsErrors = {
|
|
|
2030
2223
|
* Not found
|
|
2031
2224
|
*/
|
|
2032
2225
|
404: ErrorResponse;
|
|
2226
|
+
/**
|
|
2227
|
+
* Conflict
|
|
2228
|
+
*/
|
|
2229
|
+
409: ErrorResponse;
|
|
2230
|
+
/**
|
|
2231
|
+
* Payload too large
|
|
2232
|
+
*/
|
|
2233
|
+
413: ErrorResponse;
|
|
2033
2234
|
/**
|
|
2034
2235
|
* Rate limit exceeded
|
|
2035
2236
|
*/
|
|
@@ -2048,6 +2249,8 @@ type SearchPostsResponses = {
|
|
|
2048
2249
|
pagination: Pagination;
|
|
2049
2250
|
query: {
|
|
2050
2251
|
text: string;
|
|
2252
|
+
truncated?: boolean;
|
|
2253
|
+
originalLength?: number;
|
|
2051
2254
|
filters?: {
|
|
2052
2255
|
[key: string]: unknown;
|
|
2053
2256
|
};
|
|
@@ -2092,6 +2295,14 @@ type DeletePostsByQueryErrors = {
|
|
|
2092
2295
|
* Not found
|
|
2093
2296
|
*/
|
|
2094
2297
|
404: ErrorResponse;
|
|
2298
|
+
/**
|
|
2299
|
+
* Conflict
|
|
2300
|
+
*/
|
|
2301
|
+
409: ErrorResponse;
|
|
2302
|
+
/**
|
|
2303
|
+
* Payload too large
|
|
2304
|
+
*/
|
|
2305
|
+
413: ErrorResponse;
|
|
2095
2306
|
/**
|
|
2096
2307
|
* Rate limit exceeded
|
|
2097
2308
|
*/
|
|
@@ -2135,6 +2346,14 @@ type ListPostIdsErrors = {
|
|
|
2135
2346
|
* Not found
|
|
2136
2347
|
*/
|
|
2137
2348
|
404: ErrorResponse;
|
|
2349
|
+
/**
|
|
2350
|
+
* Conflict
|
|
2351
|
+
*/
|
|
2352
|
+
409: ErrorResponse;
|
|
2353
|
+
/**
|
|
2354
|
+
* Payload too large
|
|
2355
|
+
*/
|
|
2356
|
+
413: ErrorResponse;
|
|
2138
2357
|
/**
|
|
2139
2358
|
* Rate limit exceeded
|
|
2140
2359
|
*/
|
|
@@ -2180,6 +2399,14 @@ type DeletePostErrors = {
|
|
|
2180
2399
|
* Not found
|
|
2181
2400
|
*/
|
|
2182
2401
|
404: ErrorResponse;
|
|
2402
|
+
/**
|
|
2403
|
+
* Conflict
|
|
2404
|
+
*/
|
|
2405
|
+
409: ErrorResponse;
|
|
2406
|
+
/**
|
|
2407
|
+
* Payload too large
|
|
2408
|
+
*/
|
|
2409
|
+
413: ErrorResponse;
|
|
2183
2410
|
/**
|
|
2184
2411
|
* Rate limit exceeded
|
|
2185
2412
|
*/
|
|
@@ -2218,6 +2445,14 @@ type GetPostErrors = {
|
|
|
2218
2445
|
* Not found
|
|
2219
2446
|
*/
|
|
2220
2447
|
404: ErrorResponse;
|
|
2448
|
+
/**
|
|
2449
|
+
* Conflict
|
|
2450
|
+
*/
|
|
2451
|
+
409: ErrorResponse;
|
|
2452
|
+
/**
|
|
2453
|
+
* Payload too large
|
|
2454
|
+
*/
|
|
2455
|
+
413: ErrorResponse;
|
|
2221
2456
|
/**
|
|
2222
2457
|
* Rate limit exceeded
|
|
2223
2458
|
*/
|
|
@@ -2262,6 +2497,14 @@ type PatchPostErrors = {
|
|
|
2262
2497
|
* Not found
|
|
2263
2498
|
*/
|
|
2264
2499
|
404: ErrorResponse;
|
|
2500
|
+
/**
|
|
2501
|
+
* Conflict
|
|
2502
|
+
*/
|
|
2503
|
+
409: ErrorResponse;
|
|
2504
|
+
/**
|
|
2505
|
+
* Payload too large
|
|
2506
|
+
*/
|
|
2507
|
+
413: ErrorResponse;
|
|
2265
2508
|
/**
|
|
2266
2509
|
* Rate limit exceeded
|
|
2267
2510
|
*/
|
|
@@ -2302,6 +2545,14 @@ type SearchThreadsErrors = {
|
|
|
2302
2545
|
* Not found
|
|
2303
2546
|
*/
|
|
2304
2547
|
404: ErrorResponse;
|
|
2548
|
+
/**
|
|
2549
|
+
* Conflict
|
|
2550
|
+
*/
|
|
2551
|
+
409: ErrorResponse;
|
|
2552
|
+
/**
|
|
2553
|
+
* Payload too large
|
|
2554
|
+
*/
|
|
2555
|
+
413: ErrorResponse;
|
|
2305
2556
|
/**
|
|
2306
2557
|
* Rate limit exceeded
|
|
2307
2558
|
*/
|
|
@@ -2313,7 +2564,15 @@ type SearchThreadsResponses = {
|
|
|
2313
2564
|
* Thread search results
|
|
2314
2565
|
*/
|
|
2315
2566
|
200: {
|
|
2316
|
-
|
|
2567
|
+
object: 'search_result';
|
|
2568
|
+
requestId: string;
|
|
2569
|
+
data: {
|
|
2570
|
+
items: Array<{
|
|
2571
|
+
[key: string]: unknown;
|
|
2572
|
+
}>;
|
|
2573
|
+
pagination: Pagination;
|
|
2574
|
+
[key: string]: unknown;
|
|
2575
|
+
};
|
|
2317
2576
|
};
|
|
2318
2577
|
};
|
|
2319
2578
|
type SearchThreadsResponse = SearchThreadsResponses[keyof SearchThreadsResponses];
|
|
@@ -2340,6 +2599,14 @@ type ExportThreadsErrors = {
|
|
|
2340
2599
|
* Not found
|
|
2341
2600
|
*/
|
|
2342
2601
|
404: ErrorResponse;
|
|
2602
|
+
/**
|
|
2603
|
+
* Conflict
|
|
2604
|
+
*/
|
|
2605
|
+
409: ErrorResponse;
|
|
2606
|
+
/**
|
|
2607
|
+
* Payload too large
|
|
2608
|
+
*/
|
|
2609
|
+
413: ErrorResponse;
|
|
2343
2610
|
/**
|
|
2344
2611
|
* Rate limit exceeded
|
|
2345
2612
|
*/
|
|
@@ -2351,7 +2618,11 @@ type ExportThreadsResponses = {
|
|
|
2351
2618
|
* Exported thread data
|
|
2352
2619
|
*/
|
|
2353
2620
|
200: {
|
|
2354
|
-
|
|
2621
|
+
object: 'event';
|
|
2622
|
+
requestId: string;
|
|
2623
|
+
data: {
|
|
2624
|
+
[key: string]: unknown;
|
|
2625
|
+
};
|
|
2355
2626
|
};
|
|
2356
2627
|
};
|
|
2357
2628
|
type ExportThreadsResponse = ExportThreadsResponses[keyof ExportThreadsResponses];
|
|
@@ -2378,6 +2649,14 @@ type GetThreadAnalyticsErrors = {
|
|
|
2378
2649
|
* Not found
|
|
2379
2650
|
*/
|
|
2380
2651
|
404: ErrorResponse;
|
|
2652
|
+
/**
|
|
2653
|
+
* Conflict
|
|
2654
|
+
*/
|
|
2655
|
+
409: ErrorResponse;
|
|
2656
|
+
/**
|
|
2657
|
+
* Payload too large
|
|
2658
|
+
*/
|
|
2659
|
+
413: ErrorResponse;
|
|
2381
2660
|
/**
|
|
2382
2661
|
* Rate limit exceeded
|
|
2383
2662
|
*/
|
|
@@ -2389,7 +2668,11 @@ type GetThreadAnalyticsResponses = {
|
|
|
2389
2668
|
* Thread analytics data
|
|
2390
2669
|
*/
|
|
2391
2670
|
200: {
|
|
2392
|
-
|
|
2671
|
+
object: 'event';
|
|
2672
|
+
requestId: string;
|
|
2673
|
+
data: {
|
|
2674
|
+
[key: string]: unknown;
|
|
2675
|
+
};
|
|
2393
2676
|
};
|
|
2394
2677
|
};
|
|
2395
2678
|
type GetThreadAnalyticsResponse = GetThreadAnalyticsResponses[keyof GetThreadAnalyticsResponses];
|
|
@@ -2418,6 +2701,14 @@ type GetThreadMessagesErrors = {
|
|
|
2418
2701
|
* Not found
|
|
2419
2702
|
*/
|
|
2420
2703
|
404: ErrorResponse;
|
|
2704
|
+
/**
|
|
2705
|
+
* Conflict
|
|
2706
|
+
*/
|
|
2707
|
+
409: ErrorResponse;
|
|
2708
|
+
/**
|
|
2709
|
+
* Payload too large
|
|
2710
|
+
*/
|
|
2711
|
+
413: ErrorResponse;
|
|
2421
2712
|
/**
|
|
2422
2713
|
* Rate limit exceeded
|
|
2423
2714
|
*/
|
|
@@ -2429,6 +2720,8 @@ type GetThreadMessagesResponses = {
|
|
|
2429
2720
|
* Thread messages
|
|
2430
2721
|
*/
|
|
2431
2722
|
200: {
|
|
2723
|
+
object: 'thread';
|
|
2724
|
+
requestId: string;
|
|
2432
2725
|
data: {
|
|
2433
2726
|
threadId: string;
|
|
2434
2727
|
messages: Array<{
|
|
@@ -2469,6 +2762,14 @@ type EndHandoffErrors = {
|
|
|
2469
2762
|
* Not found
|
|
2470
2763
|
*/
|
|
2471
2764
|
404: ErrorResponse;
|
|
2765
|
+
/**
|
|
2766
|
+
* Conflict
|
|
2767
|
+
*/
|
|
2768
|
+
409: ErrorResponse;
|
|
2769
|
+
/**
|
|
2770
|
+
* Payload too large
|
|
2771
|
+
*/
|
|
2772
|
+
413: ErrorResponse;
|
|
2472
2773
|
/**
|
|
2473
2774
|
* Rate limit exceeded
|
|
2474
2775
|
*/
|
|
@@ -2480,7 +2781,11 @@ type EndHandoffResponses = {
|
|
|
2480
2781
|
* Handoff ended
|
|
2481
2782
|
*/
|
|
2482
2783
|
200: {
|
|
2483
|
-
|
|
2784
|
+
object: 'event';
|
|
2785
|
+
requestId: string;
|
|
2786
|
+
data: {
|
|
2787
|
+
[key: string]: unknown;
|
|
2788
|
+
};
|
|
2484
2789
|
};
|
|
2485
2790
|
};
|
|
2486
2791
|
type EndHandoffResponse = EndHandoffResponses[keyof EndHandoffResponses];
|
|
@@ -2509,6 +2814,14 @@ type DeleteThreadErrors = {
|
|
|
2509
2814
|
* Not found
|
|
2510
2815
|
*/
|
|
2511
2816
|
404: ErrorResponse;
|
|
2817
|
+
/**
|
|
2818
|
+
* Conflict
|
|
2819
|
+
*/
|
|
2820
|
+
409: ErrorResponse;
|
|
2821
|
+
/**
|
|
2822
|
+
* Payload too large
|
|
2823
|
+
*/
|
|
2824
|
+
413: ErrorResponse;
|
|
2512
2825
|
/**
|
|
2513
2826
|
* Rate limit exceeded
|
|
2514
2827
|
*/
|
|
@@ -2549,6 +2862,14 @@ type GetThreadErrors = {
|
|
|
2549
2862
|
* Not found
|
|
2550
2863
|
*/
|
|
2551
2864
|
404: ErrorResponse;
|
|
2865
|
+
/**
|
|
2866
|
+
* Conflict
|
|
2867
|
+
*/
|
|
2868
|
+
409: ErrorResponse;
|
|
2869
|
+
/**
|
|
2870
|
+
* Payload too large
|
|
2871
|
+
*/
|
|
2872
|
+
413: ErrorResponse;
|
|
2552
2873
|
/**
|
|
2553
2874
|
* Rate limit exceeded
|
|
2554
2875
|
*/
|
|
@@ -2560,7 +2881,11 @@ type GetThreadResponses = {
|
|
|
2560
2881
|
* Thread detail
|
|
2561
2882
|
*/
|
|
2562
2883
|
200: {
|
|
2563
|
-
|
|
2884
|
+
object: 'thread';
|
|
2885
|
+
requestId: string;
|
|
2886
|
+
data: {
|
|
2887
|
+
[key: string]: unknown;
|
|
2888
|
+
};
|
|
2564
2889
|
};
|
|
2565
2890
|
};
|
|
2566
2891
|
type GetThreadResponse = GetThreadResponses[keyof GetThreadResponses];
|
|
@@ -2587,6 +2912,14 @@ type BulkDeleteThreadsErrors = {
|
|
|
2587
2912
|
* Not found
|
|
2588
2913
|
*/
|
|
2589
2914
|
404: ErrorResponse;
|
|
2915
|
+
/**
|
|
2916
|
+
* Conflict
|
|
2917
|
+
*/
|
|
2918
|
+
409: ErrorResponse;
|
|
2919
|
+
/**
|
|
2920
|
+
* Payload too large
|
|
2921
|
+
*/
|
|
2922
|
+
413: ErrorResponse;
|
|
2590
2923
|
/**
|
|
2591
2924
|
* Rate limit exceeded
|
|
2592
2925
|
*/
|
|
@@ -2623,6 +2956,14 @@ type ListFeedbackErrors = {
|
|
|
2623
2956
|
* Not found
|
|
2624
2957
|
*/
|
|
2625
2958
|
404: ErrorResponse;
|
|
2959
|
+
/**
|
|
2960
|
+
* Conflict
|
|
2961
|
+
*/
|
|
2962
|
+
409: ErrorResponse;
|
|
2963
|
+
/**
|
|
2964
|
+
* Payload too large
|
|
2965
|
+
*/
|
|
2966
|
+
413: ErrorResponse;
|
|
2626
2967
|
/**
|
|
2627
2968
|
* Rate limit exceeded
|
|
2628
2969
|
*/
|
|
@@ -2663,6 +3004,14 @@ type SubmitFeedbackErrors = {
|
|
|
2663
3004
|
* Not found
|
|
2664
3005
|
*/
|
|
2665
3006
|
404: ErrorResponse;
|
|
3007
|
+
/**
|
|
3008
|
+
* Conflict
|
|
3009
|
+
*/
|
|
3010
|
+
409: ErrorResponse;
|
|
3011
|
+
/**
|
|
3012
|
+
* Payload too large
|
|
3013
|
+
*/
|
|
3014
|
+
413: ErrorResponse;
|
|
2666
3015
|
/**
|
|
2667
3016
|
* Rate limit exceeded
|
|
2668
3017
|
*/
|
|
@@ -2703,6 +3052,14 @@ type GetFeedbackAnalyticsErrors = {
|
|
|
2703
3052
|
* Not found
|
|
2704
3053
|
*/
|
|
2705
3054
|
404: ErrorResponse;
|
|
3055
|
+
/**
|
|
3056
|
+
* Conflict
|
|
3057
|
+
*/
|
|
3058
|
+
409: ErrorResponse;
|
|
3059
|
+
/**
|
|
3060
|
+
* Payload too large
|
|
3061
|
+
*/
|
|
3062
|
+
413: ErrorResponse;
|
|
2706
3063
|
/**
|
|
2707
3064
|
* Rate limit exceeded
|
|
2708
3065
|
*/
|
|
@@ -2745,6 +3102,14 @@ type GetThreadFeedbackErrors = {
|
|
|
2745
3102
|
* Not found
|
|
2746
3103
|
*/
|
|
2747
3104
|
404: ErrorResponse;
|
|
3105
|
+
/**
|
|
3106
|
+
* Conflict
|
|
3107
|
+
*/
|
|
3108
|
+
409: ErrorResponse;
|
|
3109
|
+
/**
|
|
3110
|
+
* Payload too large
|
|
3111
|
+
*/
|
|
3112
|
+
413: ErrorResponse;
|
|
2748
3113
|
/**
|
|
2749
3114
|
* Rate limit exceeded
|
|
2750
3115
|
*/
|
|
@@ -2789,6 +3154,14 @@ type DeleteFeedbackErrors = {
|
|
|
2789
3154
|
* Not found
|
|
2790
3155
|
*/
|
|
2791
3156
|
404: ErrorResponse;
|
|
3157
|
+
/**
|
|
3158
|
+
* Conflict
|
|
3159
|
+
*/
|
|
3160
|
+
409: ErrorResponse;
|
|
3161
|
+
/**
|
|
3162
|
+
* Payload too large
|
|
3163
|
+
*/
|
|
3164
|
+
413: ErrorResponse;
|
|
2792
3165
|
/**
|
|
2793
3166
|
* Rate limit exceeded
|
|
2794
3167
|
*/
|
|
@@ -2829,6 +3202,14 @@ type ListPromptsErrors = {
|
|
|
2829
3202
|
* Not found
|
|
2830
3203
|
*/
|
|
2831
3204
|
404: ErrorResponse;
|
|
3205
|
+
/**
|
|
3206
|
+
* Conflict
|
|
3207
|
+
*/
|
|
3208
|
+
409: ErrorResponse;
|
|
3209
|
+
/**
|
|
3210
|
+
* Payload too large
|
|
3211
|
+
*/
|
|
3212
|
+
413: ErrorResponse;
|
|
2832
3213
|
/**
|
|
2833
3214
|
* Rate limit exceeded
|
|
2834
3215
|
*/
|
|
@@ -2872,6 +3253,14 @@ type UpsertPromptErrors = {
|
|
|
2872
3253
|
* Not found
|
|
2873
3254
|
*/
|
|
2874
3255
|
404: ErrorResponse;
|
|
3256
|
+
/**
|
|
3257
|
+
* Conflict
|
|
3258
|
+
*/
|
|
3259
|
+
409: ErrorResponse;
|
|
3260
|
+
/**
|
|
3261
|
+
* Payload too large
|
|
3262
|
+
*/
|
|
3263
|
+
413: ErrorResponse;
|
|
2875
3264
|
/**
|
|
2876
3265
|
* Rate limit exceeded
|
|
2877
3266
|
*/
|
|
@@ -2923,6 +3312,14 @@ type SearchPromptsErrors = {
|
|
|
2923
3312
|
* Not found
|
|
2924
3313
|
*/
|
|
2925
3314
|
404: ErrorResponse;
|
|
3315
|
+
/**
|
|
3316
|
+
* Conflict
|
|
3317
|
+
*/
|
|
3318
|
+
409: ErrorResponse;
|
|
3319
|
+
/**
|
|
3320
|
+
* Payload too large
|
|
3321
|
+
*/
|
|
3322
|
+
413: ErrorResponse;
|
|
2926
3323
|
/**
|
|
2927
3324
|
* Rate limit exceeded
|
|
2928
3325
|
*/
|
|
@@ -2977,6 +3374,14 @@ type BulkDeletePromptsErrors = {
|
|
|
2977
3374
|
* Not found
|
|
2978
3375
|
*/
|
|
2979
3376
|
404: ErrorResponse;
|
|
3377
|
+
/**
|
|
3378
|
+
* Conflict
|
|
3379
|
+
*/
|
|
3380
|
+
409: ErrorResponse;
|
|
3381
|
+
/**
|
|
3382
|
+
* Payload too large
|
|
3383
|
+
*/
|
|
3384
|
+
413: ErrorResponse;
|
|
2980
3385
|
/**
|
|
2981
3386
|
* Rate limit exceeded
|
|
2982
3387
|
*/
|
|
@@ -3016,6 +3421,14 @@ type BulkUpsertPromptsErrors = {
|
|
|
3016
3421
|
* Not found
|
|
3017
3422
|
*/
|
|
3018
3423
|
404: ErrorResponse;
|
|
3424
|
+
/**
|
|
3425
|
+
* Conflict
|
|
3426
|
+
*/
|
|
3427
|
+
409: ErrorResponse;
|
|
3428
|
+
/**
|
|
3429
|
+
* Payload too large
|
|
3430
|
+
*/
|
|
3431
|
+
413: ErrorResponse;
|
|
3019
3432
|
/**
|
|
3020
3433
|
* Rate limit exceeded
|
|
3021
3434
|
*/
|
|
@@ -3067,6 +3480,14 @@ type DeletePromptErrors = {
|
|
|
3067
3480
|
* Not found
|
|
3068
3481
|
*/
|
|
3069
3482
|
404: ErrorResponse;
|
|
3483
|
+
/**
|
|
3484
|
+
* Conflict
|
|
3485
|
+
*/
|
|
3486
|
+
409: ErrorResponse;
|
|
3487
|
+
/**
|
|
3488
|
+
* Payload too large
|
|
3489
|
+
*/
|
|
3490
|
+
413: ErrorResponse;
|
|
3070
3491
|
/**
|
|
3071
3492
|
* Rate limit exceeded
|
|
3072
3493
|
*/
|
|
@@ -3105,6 +3526,14 @@ type GetPromptErrors = {
|
|
|
3105
3526
|
* Not found
|
|
3106
3527
|
*/
|
|
3107
3528
|
404: ErrorResponse;
|
|
3529
|
+
/**
|
|
3530
|
+
* Conflict
|
|
3531
|
+
*/
|
|
3532
|
+
409: ErrorResponse;
|
|
3533
|
+
/**
|
|
3534
|
+
* Payload too large
|
|
3535
|
+
*/
|
|
3536
|
+
413: ErrorResponse;
|
|
3108
3537
|
/**
|
|
3109
3538
|
* Rate limit exceeded
|
|
3110
3539
|
*/
|
|
@@ -3145,6 +3574,14 @@ type BulkUpdateWebhookStatusErrors = {
|
|
|
3145
3574
|
* Not found
|
|
3146
3575
|
*/
|
|
3147
3576
|
404: ErrorResponse;
|
|
3577
|
+
/**
|
|
3578
|
+
* Conflict
|
|
3579
|
+
*/
|
|
3580
|
+
409: ErrorResponse;
|
|
3581
|
+
/**
|
|
3582
|
+
* Payload too large
|
|
3583
|
+
*/
|
|
3584
|
+
413: ErrorResponse;
|
|
3148
3585
|
/**
|
|
3149
3586
|
* Rate limit exceeded
|
|
3150
3587
|
*/
|
|
@@ -3200,6 +3637,14 @@ type ListWebhooksErrors = {
|
|
|
3200
3637
|
* Not found
|
|
3201
3638
|
*/
|
|
3202
3639
|
404: ErrorResponse;
|
|
3640
|
+
/**
|
|
3641
|
+
* Conflict
|
|
3642
|
+
*/
|
|
3643
|
+
409: ErrorResponse;
|
|
3644
|
+
/**
|
|
3645
|
+
* Payload too large
|
|
3646
|
+
*/
|
|
3647
|
+
413: ErrorResponse;
|
|
3203
3648
|
/**
|
|
3204
3649
|
* Rate limit exceeded
|
|
3205
3650
|
*/
|
|
@@ -3245,6 +3690,14 @@ type CreateWebhookErrors = {
|
|
|
3245
3690
|
* Not found
|
|
3246
3691
|
*/
|
|
3247
3692
|
404: ErrorResponse;
|
|
3693
|
+
/**
|
|
3694
|
+
* Conflict
|
|
3695
|
+
*/
|
|
3696
|
+
409: ErrorResponse;
|
|
3697
|
+
/**
|
|
3698
|
+
* Payload too large
|
|
3699
|
+
*/
|
|
3700
|
+
413: ErrorResponse;
|
|
3248
3701
|
/**
|
|
3249
3702
|
* Rate limit exceeded
|
|
3250
3703
|
*/
|
|
@@ -3290,6 +3743,14 @@ type TestWebhookErrors = {
|
|
|
3290
3743
|
* Not found
|
|
3291
3744
|
*/
|
|
3292
3745
|
404: ErrorResponse;
|
|
3746
|
+
/**
|
|
3747
|
+
* Conflict
|
|
3748
|
+
*/
|
|
3749
|
+
409: ErrorResponse;
|
|
3750
|
+
/**
|
|
3751
|
+
* Payload too large
|
|
3752
|
+
*/
|
|
3753
|
+
413: ErrorResponse;
|
|
3293
3754
|
/**
|
|
3294
3755
|
* Rate limit exceeded
|
|
3295
3756
|
*/
|
|
@@ -3335,6 +3796,14 @@ type GetWebhookStatsErrors = {
|
|
|
3335
3796
|
* Not found
|
|
3336
3797
|
*/
|
|
3337
3798
|
404: ErrorResponse;
|
|
3799
|
+
/**
|
|
3800
|
+
* Conflict
|
|
3801
|
+
*/
|
|
3802
|
+
409: ErrorResponse;
|
|
3803
|
+
/**
|
|
3804
|
+
* Payload too large
|
|
3805
|
+
*/
|
|
3806
|
+
413: ErrorResponse;
|
|
3338
3807
|
/**
|
|
3339
3808
|
* Rate limit exceeded
|
|
3340
3809
|
*/
|
|
@@ -3377,6 +3846,14 @@ type DeleteWebhookErrors = {
|
|
|
3377
3846
|
* Not found
|
|
3378
3847
|
*/
|
|
3379
3848
|
404: ErrorResponse;
|
|
3849
|
+
/**
|
|
3850
|
+
* Conflict
|
|
3851
|
+
*/
|
|
3852
|
+
409: ErrorResponse;
|
|
3853
|
+
/**
|
|
3854
|
+
* Payload too large
|
|
3855
|
+
*/
|
|
3856
|
+
413: ErrorResponse;
|
|
3380
3857
|
/**
|
|
3381
3858
|
* Rate limit exceeded
|
|
3382
3859
|
*/
|
|
@@ -3415,6 +3892,14 @@ type GetWebhookErrors = {
|
|
|
3415
3892
|
* Not found
|
|
3416
3893
|
*/
|
|
3417
3894
|
404: ErrorResponse;
|
|
3895
|
+
/**
|
|
3896
|
+
* Conflict
|
|
3897
|
+
*/
|
|
3898
|
+
409: ErrorResponse;
|
|
3899
|
+
/**
|
|
3900
|
+
* Payload too large
|
|
3901
|
+
*/
|
|
3902
|
+
413: ErrorResponse;
|
|
3418
3903
|
/**
|
|
3419
3904
|
* Rate limit exceeded
|
|
3420
3905
|
*/
|
|
@@ -3457,6 +3942,14 @@ type UpdateWebhookErrors = {
|
|
|
3457
3942
|
* Not found
|
|
3458
3943
|
*/
|
|
3459
3944
|
404: ErrorResponse;
|
|
3945
|
+
/**
|
|
3946
|
+
* Conflict
|
|
3947
|
+
*/
|
|
3948
|
+
409: ErrorResponse;
|
|
3949
|
+
/**
|
|
3950
|
+
* Payload too large
|
|
3951
|
+
*/
|
|
3952
|
+
413: ErrorResponse;
|
|
3460
3953
|
/**
|
|
3461
3954
|
* Rate limit exceeded
|
|
3462
3955
|
*/
|
|
@@ -3500,6 +3993,14 @@ type ListTaxonomiesErrors = {
|
|
|
3500
3993
|
* Not found
|
|
3501
3994
|
*/
|
|
3502
3995
|
404: ErrorResponse;
|
|
3996
|
+
/**
|
|
3997
|
+
* Conflict
|
|
3998
|
+
*/
|
|
3999
|
+
409: ErrorResponse;
|
|
4000
|
+
/**
|
|
4001
|
+
* Payload too large
|
|
4002
|
+
*/
|
|
4003
|
+
413: ErrorResponse;
|
|
3503
4004
|
/**
|
|
3504
4005
|
* Rate limit exceeded
|
|
3505
4006
|
*/
|
|
@@ -3543,6 +4044,14 @@ type UpsertTaxonomyErrors = {
|
|
|
3543
4044
|
* Not found
|
|
3544
4045
|
*/
|
|
3545
4046
|
404: ErrorResponse;
|
|
4047
|
+
/**
|
|
4048
|
+
* Conflict
|
|
4049
|
+
*/
|
|
4050
|
+
409: ErrorResponse;
|
|
4051
|
+
/**
|
|
4052
|
+
* Payload too large
|
|
4053
|
+
*/
|
|
4054
|
+
413: ErrorResponse;
|
|
3546
4055
|
/**
|
|
3547
4056
|
* Rate limit exceeded
|
|
3548
4057
|
*/
|
|
@@ -3588,6 +4097,14 @@ type BulkDeleteTaxonomiesErrors = {
|
|
|
3588
4097
|
* Not found
|
|
3589
4098
|
*/
|
|
3590
4099
|
404: ErrorResponse;
|
|
4100
|
+
/**
|
|
4101
|
+
* Conflict
|
|
4102
|
+
*/
|
|
4103
|
+
409: ErrorResponse;
|
|
4104
|
+
/**
|
|
4105
|
+
* Payload too large
|
|
4106
|
+
*/
|
|
4107
|
+
413: ErrorResponse;
|
|
3591
4108
|
/**
|
|
3592
4109
|
* Rate limit exceeded
|
|
3593
4110
|
*/
|
|
@@ -3627,6 +4144,14 @@ type BulkUpsertTaxonomiesErrors = {
|
|
|
3627
4144
|
* Not found
|
|
3628
4145
|
*/
|
|
3629
4146
|
404: ErrorResponse;
|
|
4147
|
+
/**
|
|
4148
|
+
* Conflict
|
|
4149
|
+
*/
|
|
4150
|
+
409: ErrorResponse;
|
|
4151
|
+
/**
|
|
4152
|
+
* Payload too large
|
|
4153
|
+
*/
|
|
4154
|
+
413: ErrorResponse;
|
|
3630
4155
|
/**
|
|
3631
4156
|
* Rate limit exceeded
|
|
3632
4157
|
*/
|
|
@@ -3680,6 +4205,14 @@ type DeleteTaxonomiesByQueryErrors = {
|
|
|
3680
4205
|
* Not found
|
|
3681
4206
|
*/
|
|
3682
4207
|
404: ErrorResponse;
|
|
4208
|
+
/**
|
|
4209
|
+
* Conflict
|
|
4210
|
+
*/
|
|
4211
|
+
409: ErrorResponse;
|
|
4212
|
+
/**
|
|
4213
|
+
* Payload too large
|
|
4214
|
+
*/
|
|
4215
|
+
413: ErrorResponse;
|
|
3683
4216
|
/**
|
|
3684
4217
|
* Rate limit exceeded
|
|
3685
4218
|
*/
|
|
@@ -3723,6 +4256,14 @@ type ListTaxonomyIdsErrors = {
|
|
|
3723
4256
|
* Not found
|
|
3724
4257
|
*/
|
|
3725
4258
|
404: ErrorResponse;
|
|
4259
|
+
/**
|
|
4260
|
+
* Conflict
|
|
4261
|
+
*/
|
|
4262
|
+
409: ErrorResponse;
|
|
4263
|
+
/**
|
|
4264
|
+
* Payload too large
|
|
4265
|
+
*/
|
|
4266
|
+
413: ErrorResponse;
|
|
3726
4267
|
/**
|
|
3727
4268
|
* Rate limit exceeded
|
|
3728
4269
|
*/
|
|
@@ -3768,6 +4309,14 @@ type DeleteTaxonomyErrors = {
|
|
|
3768
4309
|
* Not found
|
|
3769
4310
|
*/
|
|
3770
4311
|
404: ErrorResponse;
|
|
4312
|
+
/**
|
|
4313
|
+
* Conflict
|
|
4314
|
+
*/
|
|
4315
|
+
409: ErrorResponse;
|
|
4316
|
+
/**
|
|
4317
|
+
* Payload too large
|
|
4318
|
+
*/
|
|
4319
|
+
413: ErrorResponse;
|
|
3771
4320
|
/**
|
|
3772
4321
|
* Rate limit exceeded
|
|
3773
4322
|
*/
|
|
@@ -3806,6 +4355,14 @@ type GetTaxonomyErrors = {
|
|
|
3806
4355
|
* Not found
|
|
3807
4356
|
*/
|
|
3808
4357
|
404: ErrorResponse;
|
|
4358
|
+
/**
|
|
4359
|
+
* Conflict
|
|
4360
|
+
*/
|
|
4361
|
+
409: ErrorResponse;
|
|
4362
|
+
/**
|
|
4363
|
+
* Payload too large
|
|
4364
|
+
*/
|
|
4365
|
+
413: ErrorResponse;
|
|
3809
4366
|
/**
|
|
3810
4367
|
* Rate limit exceeded
|
|
3811
4368
|
*/
|
|
@@ -3851,6 +4408,14 @@ type GetSearchAnalyticsErrors = {
|
|
|
3851
4408
|
* Not found
|
|
3852
4409
|
*/
|
|
3853
4410
|
404: ErrorResponse;
|
|
4411
|
+
/**
|
|
4412
|
+
* Conflict
|
|
4413
|
+
*/
|
|
4414
|
+
409: ErrorResponse;
|
|
4415
|
+
/**
|
|
4416
|
+
* Payload too large
|
|
4417
|
+
*/
|
|
4418
|
+
413: ErrorResponse;
|
|
3854
4419
|
/**
|
|
3855
4420
|
* Rate limit exceeded
|
|
3856
4421
|
*/
|
|
@@ -3901,6 +4466,14 @@ type SearchSearchesErrors = {
|
|
|
3901
4466
|
* Not found
|
|
3902
4467
|
*/
|
|
3903
4468
|
404: ErrorResponse;
|
|
4469
|
+
/**
|
|
4470
|
+
* Conflict
|
|
4471
|
+
*/
|
|
4472
|
+
409: ErrorResponse;
|
|
4473
|
+
/**
|
|
4474
|
+
* Payload too large
|
|
4475
|
+
*/
|
|
4476
|
+
413: ErrorResponse;
|
|
3904
4477
|
/**
|
|
3905
4478
|
* Rate limit exceeded
|
|
3906
4479
|
*/
|
|
@@ -3946,6 +4519,14 @@ type CommitSearchErrors = {
|
|
|
3946
4519
|
* Not found
|
|
3947
4520
|
*/
|
|
3948
4521
|
404: ErrorResponse;
|
|
4522
|
+
/**
|
|
4523
|
+
* Conflict
|
|
4524
|
+
*/
|
|
4525
|
+
409: ErrorResponse;
|
|
4526
|
+
/**
|
|
4527
|
+
* Payload too large
|
|
4528
|
+
*/
|
|
4529
|
+
413: ErrorResponse;
|
|
3949
4530
|
/**
|
|
3950
4531
|
* Rate limit exceeded
|
|
3951
4532
|
*/
|
|
@@ -3988,6 +4569,14 @@ type GetChatAnalyticsErrors = {
|
|
|
3988
4569
|
* Not found
|
|
3989
4570
|
*/
|
|
3990
4571
|
404: ErrorResponse;
|
|
4572
|
+
/**
|
|
4573
|
+
* Conflict
|
|
4574
|
+
*/
|
|
4575
|
+
409: ErrorResponse;
|
|
4576
|
+
/**
|
|
4577
|
+
* Payload too large
|
|
4578
|
+
*/
|
|
4579
|
+
413: ErrorResponse;
|
|
3991
4580
|
/**
|
|
3992
4581
|
* Rate limit exceeded
|
|
3993
4582
|
*/
|
|
@@ -4029,6 +4618,14 @@ type GetAnalyticsFeedbackErrors = {
|
|
|
4029
4618
|
* Not found
|
|
4030
4619
|
*/
|
|
4031
4620
|
404: ErrorResponse;
|
|
4621
|
+
/**
|
|
4622
|
+
* Conflict
|
|
4623
|
+
*/
|
|
4624
|
+
409: ErrorResponse;
|
|
4625
|
+
/**
|
|
4626
|
+
* Payload too large
|
|
4627
|
+
*/
|
|
4628
|
+
413: ErrorResponse;
|
|
4032
4629
|
/**
|
|
4033
4630
|
* Rate limit exceeded
|
|
4034
4631
|
*/
|
|
@@ -4067,6 +4664,14 @@ type GetProductRecommendationsErrors = {
|
|
|
4067
4664
|
* Not found
|
|
4068
4665
|
*/
|
|
4069
4666
|
404: ErrorResponse;
|
|
4667
|
+
/**
|
|
4668
|
+
* Conflict
|
|
4669
|
+
*/
|
|
4670
|
+
409: ErrorResponse;
|
|
4671
|
+
/**
|
|
4672
|
+
* Payload too large
|
|
4673
|
+
*/
|
|
4674
|
+
413: ErrorResponse;
|
|
4070
4675
|
/**
|
|
4071
4676
|
* Rate limit exceeded
|
|
4072
4677
|
*/
|
|
@@ -4078,6 +4683,8 @@ type GetProductRecommendationsResponses = {
|
|
|
4078
4683
|
* Product recommendations
|
|
4079
4684
|
*/
|
|
4080
4685
|
200: {
|
|
4686
|
+
object: 'recommendations';
|
|
4687
|
+
requestId: string;
|
|
4081
4688
|
data: {
|
|
4082
4689
|
[key: string]: unknown;
|
|
4083
4690
|
};
|
|
@@ -4109,6 +4716,14 @@ type DeleteTenantErrors = {
|
|
|
4109
4716
|
* Not found
|
|
4110
4717
|
*/
|
|
4111
4718
|
404: ErrorResponse;
|
|
4719
|
+
/**
|
|
4720
|
+
* Conflict
|
|
4721
|
+
*/
|
|
4722
|
+
409: ErrorResponse;
|
|
4723
|
+
/**
|
|
4724
|
+
* Payload too large
|
|
4725
|
+
*/
|
|
4726
|
+
413: ErrorResponse;
|
|
4112
4727
|
/**
|
|
4113
4728
|
* Rate limit exceeded
|
|
4114
4729
|
*/
|
|
@@ -4126,6 +4741,16 @@ type DeleteTenantResponses = {
|
|
|
4126
4741
|
[key: string]: unknown;
|
|
4127
4742
|
};
|
|
4128
4743
|
};
|
|
4744
|
+
/**
|
|
4745
|
+
* Tenant deleted with partial cleanup failures — inspect data.results
|
|
4746
|
+
*/
|
|
4747
|
+
207: {
|
|
4748
|
+
object: 'tenant';
|
|
4749
|
+
requestId: string;
|
|
4750
|
+
data: {
|
|
4751
|
+
[key: string]: unknown;
|
|
4752
|
+
};
|
|
4753
|
+
};
|
|
4129
4754
|
};
|
|
4130
4755
|
type DeleteTenantResponse = DeleteTenantResponses[keyof DeleteTenantResponses];
|
|
4131
4756
|
type GetTenantStatusData = {
|
|
@@ -4151,6 +4776,14 @@ type GetTenantStatusErrors = {
|
|
|
4151
4776
|
* Not found
|
|
4152
4777
|
*/
|
|
4153
4778
|
404: ErrorResponse;
|
|
4779
|
+
/**
|
|
4780
|
+
* Conflict
|
|
4781
|
+
*/
|
|
4782
|
+
409: ErrorResponse;
|
|
4783
|
+
/**
|
|
4784
|
+
* Payload too large
|
|
4785
|
+
*/
|
|
4786
|
+
413: ErrorResponse;
|
|
4154
4787
|
/**
|
|
4155
4788
|
* Rate limit exceeded
|
|
4156
4789
|
*/
|
|
@@ -4191,6 +4824,14 @@ type GetTenantWhoamiErrors = {
|
|
|
4191
4824
|
* Not found
|
|
4192
4825
|
*/
|
|
4193
4826
|
404: ErrorResponse;
|
|
4827
|
+
/**
|
|
4828
|
+
* Conflict
|
|
4829
|
+
*/
|
|
4830
|
+
409: ErrorResponse;
|
|
4831
|
+
/**
|
|
4832
|
+
* Payload too large
|
|
4833
|
+
*/
|
|
4834
|
+
413: ErrorResponse;
|
|
4194
4835
|
/**
|
|
4195
4836
|
* Rate limit exceeded
|
|
4196
4837
|
*/
|
|
@@ -4231,6 +4872,14 @@ type UpdateTenantFeaturesErrors = {
|
|
|
4231
4872
|
* Not found
|
|
4232
4873
|
*/
|
|
4233
4874
|
404: ErrorResponse;
|
|
4875
|
+
/**
|
|
4876
|
+
* Conflict
|
|
4877
|
+
*/
|
|
4878
|
+
409: ErrorResponse;
|
|
4879
|
+
/**
|
|
4880
|
+
* Payload too large
|
|
4881
|
+
*/
|
|
4882
|
+
413: ErrorResponse;
|
|
4234
4883
|
/**
|
|
4235
4884
|
* Rate limit exceeded
|
|
4236
4885
|
*/
|
|
@@ -4273,6 +4922,14 @@ type GetTenantUsageErrors = {
|
|
|
4273
4922
|
* Not found
|
|
4274
4923
|
*/
|
|
4275
4924
|
404: ErrorResponse;
|
|
4925
|
+
/**
|
|
4926
|
+
* Conflict
|
|
4927
|
+
*/
|
|
4928
|
+
409: ErrorResponse;
|
|
4929
|
+
/**
|
|
4930
|
+
* Payload too large
|
|
4931
|
+
*/
|
|
4932
|
+
413: ErrorResponse;
|
|
4276
4933
|
/**
|
|
4277
4934
|
* Rate limit exceeded
|
|
4278
4935
|
*/
|
|
@@ -4315,6 +4972,14 @@ type GetTenantUsageHistoryErrors = {
|
|
|
4315
4972
|
* Not found
|
|
4316
4973
|
*/
|
|
4317
4974
|
404: ErrorResponse;
|
|
4975
|
+
/**
|
|
4976
|
+
* Conflict
|
|
4977
|
+
*/
|
|
4978
|
+
409: ErrorResponse;
|
|
4979
|
+
/**
|
|
4980
|
+
* Payload too large
|
|
4981
|
+
*/
|
|
4982
|
+
413: ErrorResponse;
|
|
4318
4983
|
/**
|
|
4319
4984
|
* Rate limit exceeded
|
|
4320
4985
|
*/
|
|
@@ -4357,6 +5022,14 @@ type ListTenantWorkspacesErrors = {
|
|
|
4357
5022
|
* Not found
|
|
4358
5023
|
*/
|
|
4359
5024
|
404: ErrorResponse;
|
|
5025
|
+
/**
|
|
5026
|
+
* Conflict
|
|
5027
|
+
*/
|
|
5028
|
+
409: ErrorResponse;
|
|
5029
|
+
/**
|
|
5030
|
+
* Payload too large
|
|
5031
|
+
*/
|
|
5032
|
+
413: ErrorResponse;
|
|
4360
5033
|
/**
|
|
4361
5034
|
* Rate limit exceeded
|
|
4362
5035
|
*/
|
|
@@ -4400,6 +5073,14 @@ type CreateTenantWorkspaceErrors = {
|
|
|
4400
5073
|
* Not found
|
|
4401
5074
|
*/
|
|
4402
5075
|
404: ErrorResponse;
|
|
5076
|
+
/**
|
|
5077
|
+
* Conflict
|
|
5078
|
+
*/
|
|
5079
|
+
409: ErrorResponse;
|
|
5080
|
+
/**
|
|
5081
|
+
* Payload too large
|
|
5082
|
+
*/
|
|
5083
|
+
413: ErrorResponse;
|
|
4403
5084
|
/**
|
|
4404
5085
|
* Rate limit exceeded
|
|
4405
5086
|
*/
|
|
@@ -4445,6 +5126,14 @@ type DeleteWorkspaceErrors = {
|
|
|
4445
5126
|
* Not found
|
|
4446
5127
|
*/
|
|
4447
5128
|
404: ErrorResponse;
|
|
5129
|
+
/**
|
|
5130
|
+
* Conflict
|
|
5131
|
+
*/
|
|
5132
|
+
409: ErrorResponse;
|
|
5133
|
+
/**
|
|
5134
|
+
* Payload too large
|
|
5135
|
+
*/
|
|
5136
|
+
413: ErrorResponse;
|
|
4448
5137
|
/**
|
|
4449
5138
|
* Rate limit exceeded
|
|
4450
5139
|
*/
|
|
@@ -4462,6 +5151,16 @@ type DeleteWorkspaceResponses = {
|
|
|
4462
5151
|
[key: string]: unknown;
|
|
4463
5152
|
};
|
|
4464
5153
|
};
|
|
5154
|
+
/**
|
|
5155
|
+
* Workspace deleted with partial cleanup failures — inspect data.results
|
|
5156
|
+
*/
|
|
5157
|
+
207: {
|
|
5158
|
+
object: 'workspace';
|
|
5159
|
+
requestId: string;
|
|
5160
|
+
data: {
|
|
5161
|
+
[key: string]: unknown;
|
|
5162
|
+
};
|
|
5163
|
+
};
|
|
4465
5164
|
};
|
|
4466
5165
|
type DeleteWorkspaceResponse = DeleteWorkspaceResponses[keyof DeleteWorkspaceResponses];
|
|
4467
5166
|
type UpdateWorkspaceData = {
|
|
@@ -4489,6 +5188,14 @@ type UpdateWorkspaceErrors = {
|
|
|
4489
5188
|
* Not found
|
|
4490
5189
|
*/
|
|
4491
5190
|
404: ErrorResponse;
|
|
5191
|
+
/**
|
|
5192
|
+
* Conflict
|
|
5193
|
+
*/
|
|
5194
|
+
409: ErrorResponse;
|
|
5195
|
+
/**
|
|
5196
|
+
* Payload too large
|
|
5197
|
+
*/
|
|
5198
|
+
413: ErrorResponse;
|
|
4492
5199
|
/**
|
|
4493
5200
|
* Rate limit exceeded
|
|
4494
5201
|
*/
|
|
@@ -4531,6 +5238,14 @@ type GetKnowledgeErrors = {
|
|
|
4531
5238
|
* Not found
|
|
4532
5239
|
*/
|
|
4533
5240
|
404: ErrorResponse;
|
|
5241
|
+
/**
|
|
5242
|
+
* Conflict
|
|
5243
|
+
*/
|
|
5244
|
+
409: ErrorResponse;
|
|
5245
|
+
/**
|
|
5246
|
+
* Payload too large
|
|
5247
|
+
*/
|
|
5248
|
+
413: ErrorResponse;
|
|
4534
5249
|
/**
|
|
4535
5250
|
* Rate limit exceeded
|
|
4536
5251
|
*/
|
|
@@ -4573,6 +5288,14 @@ type SearchKnowledgeErrors = {
|
|
|
4573
5288
|
* Not found
|
|
4574
5289
|
*/
|
|
4575
5290
|
404: ErrorResponse;
|
|
5291
|
+
/**
|
|
5292
|
+
* Conflict
|
|
5293
|
+
*/
|
|
5294
|
+
409: ErrorResponse;
|
|
5295
|
+
/**
|
|
5296
|
+
* Payload too large
|
|
5297
|
+
*/
|
|
5298
|
+
413: ErrorResponse;
|
|
4576
5299
|
/**
|
|
4577
5300
|
* Rate limit exceeded
|
|
4578
5301
|
*/
|
|
@@ -4618,6 +5341,14 @@ type GetUploadUrlErrors = {
|
|
|
4618
5341
|
* Not found
|
|
4619
5342
|
*/
|
|
4620
5343
|
404: ErrorResponse;
|
|
5344
|
+
/**
|
|
5345
|
+
* Conflict
|
|
5346
|
+
*/
|
|
5347
|
+
409: ErrorResponse;
|
|
5348
|
+
/**
|
|
5349
|
+
* Payload too large
|
|
5350
|
+
*/
|
|
5351
|
+
413: ErrorResponse;
|
|
4621
5352
|
/**
|
|
4622
5353
|
* Rate limit exceeded
|
|
4623
5354
|
*/
|
|
@@ -4660,6 +5391,14 @@ type DeleteMcpConfigErrors = {
|
|
|
4660
5391
|
* Not found
|
|
4661
5392
|
*/
|
|
4662
5393
|
404: ErrorResponse;
|
|
5394
|
+
/**
|
|
5395
|
+
* Conflict
|
|
5396
|
+
*/
|
|
5397
|
+
409: ErrorResponse;
|
|
5398
|
+
/**
|
|
5399
|
+
* Payload too large
|
|
5400
|
+
*/
|
|
5401
|
+
413: ErrorResponse;
|
|
4663
5402
|
/**
|
|
4664
5403
|
* Rate limit exceeded
|
|
4665
5404
|
*/
|
|
@@ -4702,6 +5441,14 @@ type GetMcpConfigErrors = {
|
|
|
4702
5441
|
* Not found
|
|
4703
5442
|
*/
|
|
4704
5443
|
404: ErrorResponse;
|
|
5444
|
+
/**
|
|
5445
|
+
* Conflict
|
|
5446
|
+
*/
|
|
5447
|
+
409: ErrorResponse;
|
|
5448
|
+
/**
|
|
5449
|
+
* Payload too large
|
|
5450
|
+
*/
|
|
5451
|
+
413: ErrorResponse;
|
|
4705
5452
|
/**
|
|
4706
5453
|
* Rate limit exceeded
|
|
4707
5454
|
*/
|
|
@@ -4744,6 +5491,14 @@ type UpdateMcpConfigErrors = {
|
|
|
4744
5491
|
* Not found
|
|
4745
5492
|
*/
|
|
4746
5493
|
404: ErrorResponse;
|
|
5494
|
+
/**
|
|
5495
|
+
* Conflict
|
|
5496
|
+
*/
|
|
5497
|
+
409: ErrorResponse;
|
|
5498
|
+
/**
|
|
5499
|
+
* Payload too large
|
|
5500
|
+
*/
|
|
5501
|
+
413: ErrorResponse;
|
|
4747
5502
|
/**
|
|
4748
5503
|
* Rate limit exceeded
|
|
4749
5504
|
*/
|
|
@@ -4786,6 +5541,14 @@ type GetCredentialStatusErrors = {
|
|
|
4786
5541
|
* Not found
|
|
4787
5542
|
*/
|
|
4788
5543
|
404: ErrorResponse;
|
|
5544
|
+
/**
|
|
5545
|
+
* Conflict
|
|
5546
|
+
*/
|
|
5547
|
+
409: ErrorResponse;
|
|
5548
|
+
/**
|
|
5549
|
+
* Payload too large
|
|
5550
|
+
*/
|
|
5551
|
+
413: ErrorResponse;
|
|
4789
5552
|
/**
|
|
4790
5553
|
* Rate limit exceeded
|
|
4791
5554
|
*/
|
|
@@ -4828,6 +5591,14 @@ type DeleteCredentialsErrors = {
|
|
|
4828
5591
|
* Not found
|
|
4829
5592
|
*/
|
|
4830
5593
|
404: ErrorResponse;
|
|
5594
|
+
/**
|
|
5595
|
+
* Conflict
|
|
5596
|
+
*/
|
|
5597
|
+
409: ErrorResponse;
|
|
5598
|
+
/**
|
|
5599
|
+
* Payload too large
|
|
5600
|
+
*/
|
|
5601
|
+
413: ErrorResponse;
|
|
4831
5602
|
/**
|
|
4832
5603
|
* Rate limit exceeded
|
|
4833
5604
|
*/
|
|
@@ -4870,6 +5641,14 @@ type StoreCredentialsErrors = {
|
|
|
4870
5641
|
* Not found
|
|
4871
5642
|
*/
|
|
4872
5643
|
404: ErrorResponse;
|
|
5644
|
+
/**
|
|
5645
|
+
* Conflict
|
|
5646
|
+
*/
|
|
5647
|
+
409: ErrorResponse;
|
|
5648
|
+
/**
|
|
5649
|
+
* Payload too large
|
|
5650
|
+
*/
|
|
5651
|
+
413: ErrorResponse;
|
|
4873
5652
|
/**
|
|
4874
5653
|
* Rate limit exceeded
|
|
4875
5654
|
*/
|
|
@@ -4912,6 +5691,14 @@ type DeleteLiveAgentScheduleErrors = {
|
|
|
4912
5691
|
* Not found
|
|
4913
5692
|
*/
|
|
4914
5693
|
404: ErrorResponse;
|
|
5694
|
+
/**
|
|
5695
|
+
* Conflict
|
|
5696
|
+
*/
|
|
5697
|
+
409: ErrorResponse;
|
|
5698
|
+
/**
|
|
5699
|
+
* Payload too large
|
|
5700
|
+
*/
|
|
5701
|
+
413: ErrorResponse;
|
|
4915
5702
|
/**
|
|
4916
5703
|
* Rate limit exceeded
|
|
4917
5704
|
*/
|
|
@@ -4954,6 +5741,14 @@ type GetLiveAgentScheduleErrors = {
|
|
|
4954
5741
|
* Not found
|
|
4955
5742
|
*/
|
|
4956
5743
|
404: ErrorResponse;
|
|
5744
|
+
/**
|
|
5745
|
+
* Conflict
|
|
5746
|
+
*/
|
|
5747
|
+
409: ErrorResponse;
|
|
5748
|
+
/**
|
|
5749
|
+
* Payload too large
|
|
5750
|
+
*/
|
|
5751
|
+
413: ErrorResponse;
|
|
4957
5752
|
/**
|
|
4958
5753
|
* Rate limit exceeded
|
|
4959
5754
|
*/
|
|
@@ -4996,6 +5791,14 @@ type UpdateLiveAgentScheduleErrors = {
|
|
|
4996
5791
|
* Not found
|
|
4997
5792
|
*/
|
|
4998
5793
|
404: ErrorResponse;
|
|
5794
|
+
/**
|
|
5795
|
+
* Conflict
|
|
5796
|
+
*/
|
|
5797
|
+
409: ErrorResponse;
|
|
5798
|
+
/**
|
|
5799
|
+
* Payload too large
|
|
5800
|
+
*/
|
|
5801
|
+
413: ErrorResponse;
|
|
4999
5802
|
/**
|
|
5000
5803
|
* Rate limit exceeded
|
|
5001
5804
|
*/
|
|
@@ -5040,6 +5843,14 @@ type GetWorkspaceSettingsErrors = {
|
|
|
5040
5843
|
* Not found
|
|
5041
5844
|
*/
|
|
5042
5845
|
404: ErrorResponse;
|
|
5846
|
+
/**
|
|
5847
|
+
* Conflict
|
|
5848
|
+
*/
|
|
5849
|
+
409: ErrorResponse;
|
|
5850
|
+
/**
|
|
5851
|
+
* Payload too large
|
|
5852
|
+
*/
|
|
5853
|
+
413: ErrorResponse;
|
|
5043
5854
|
/**
|
|
5044
5855
|
* Rate limit exceeded
|
|
5045
5856
|
*/
|
|
@@ -5075,6 +5886,80 @@ type UpdateWorkspaceSettingsData = {
|
|
|
5075
5886
|
};
|
|
5076
5887
|
workspaceDescription?: string;
|
|
5077
5888
|
specialInstructions?: string;
|
|
5889
|
+
triageProgressMessage?: string;
|
|
5890
|
+
composerProgressMessage?: string;
|
|
5891
|
+
builtinTools?: {
|
|
5892
|
+
product?: {
|
|
5893
|
+
tools?: Array<{
|
|
5894
|
+
name: string;
|
|
5895
|
+
baseUrl: string;
|
|
5896
|
+
responseFormat: 'json' | 'xml';
|
|
5897
|
+
auth?: {
|
|
5898
|
+
type: 'bearer' | 'header' | 'basic' | 'query';
|
|
5899
|
+
headerName?: string;
|
|
5900
|
+
queryParamName?: string;
|
|
5901
|
+
value: string;
|
|
5902
|
+
};
|
|
5903
|
+
requiresAuth?: boolean;
|
|
5904
|
+
endpoints: Array<{
|
|
5905
|
+
toolName: string;
|
|
5906
|
+
description: string;
|
|
5907
|
+
method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
5908
|
+
path: string;
|
|
5909
|
+
parameters: Array<{
|
|
5910
|
+
name: string;
|
|
5911
|
+
in: 'query' | 'path' | 'body';
|
|
5912
|
+
required: boolean;
|
|
5913
|
+
description: string;
|
|
5914
|
+
type: 'string' | 'number' | 'boolean';
|
|
5915
|
+
defaultValue?: string;
|
|
5916
|
+
}>;
|
|
5917
|
+
requestTimeoutMs?: number;
|
|
5918
|
+
dropPaths?: Array<string>;
|
|
5919
|
+
}>;
|
|
5920
|
+
}> | null;
|
|
5921
|
+
toolProgressMessages?: {
|
|
5922
|
+
[key: string]: string;
|
|
5923
|
+
} | null;
|
|
5924
|
+
maxTurns?: number | null;
|
|
5925
|
+
usageHints?: string | null;
|
|
5926
|
+
} | null;
|
|
5927
|
+
post?: {
|
|
5928
|
+
tools?: Array<{
|
|
5929
|
+
name: string;
|
|
5930
|
+
baseUrl: string;
|
|
5931
|
+
responseFormat: 'json' | 'xml';
|
|
5932
|
+
auth?: {
|
|
5933
|
+
type: 'bearer' | 'header' | 'basic' | 'query';
|
|
5934
|
+
headerName?: string;
|
|
5935
|
+
queryParamName?: string;
|
|
5936
|
+
value: string;
|
|
5937
|
+
};
|
|
5938
|
+
requiresAuth?: boolean;
|
|
5939
|
+
endpoints: Array<{
|
|
5940
|
+
toolName: string;
|
|
5941
|
+
description: string;
|
|
5942
|
+
method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
5943
|
+
path: string;
|
|
5944
|
+
parameters: Array<{
|
|
5945
|
+
name: string;
|
|
5946
|
+
in: 'query' | 'path' | 'body';
|
|
5947
|
+
required: boolean;
|
|
5948
|
+
description: string;
|
|
5949
|
+
type: 'string' | 'number' | 'boolean';
|
|
5950
|
+
defaultValue?: string;
|
|
5951
|
+
}>;
|
|
5952
|
+
requestTimeoutMs?: number;
|
|
5953
|
+
dropPaths?: Array<string>;
|
|
5954
|
+
}>;
|
|
5955
|
+
}> | null;
|
|
5956
|
+
toolProgressMessages?: {
|
|
5957
|
+
[key: string]: string;
|
|
5958
|
+
} | null;
|
|
5959
|
+
maxTurns?: number | null;
|
|
5960
|
+
usageHints?: string | null;
|
|
5961
|
+
} | null;
|
|
5962
|
+
};
|
|
5078
5963
|
};
|
|
5079
5964
|
path: {
|
|
5080
5965
|
workspaceId: string;
|
|
@@ -5099,6 +5984,14 @@ type UpdateWorkspaceSettingsErrors = {
|
|
|
5099
5984
|
* Not found
|
|
5100
5985
|
*/
|
|
5101
5986
|
404: ErrorResponse;
|
|
5987
|
+
/**
|
|
5988
|
+
* Conflict
|
|
5989
|
+
*/
|
|
5990
|
+
409: ErrorResponse;
|
|
5991
|
+
/**
|
|
5992
|
+
* Payload too large
|
|
5993
|
+
*/
|
|
5994
|
+
413: ErrorResponse;
|
|
5102
5995
|
/**
|
|
5103
5996
|
* Rate limit exceeded
|
|
5104
5997
|
*/
|
|
@@ -5145,6 +6038,14 @@ type GetLiveAgentStatusErrors = {
|
|
|
5145
6038
|
* Not found
|
|
5146
6039
|
*/
|
|
5147
6040
|
404: ErrorResponse;
|
|
6041
|
+
/**
|
|
6042
|
+
* Conflict
|
|
6043
|
+
*/
|
|
6044
|
+
409: ErrorResponse;
|
|
6045
|
+
/**
|
|
6046
|
+
* Payload too large
|
|
6047
|
+
*/
|
|
6048
|
+
413: ErrorResponse;
|
|
5148
6049
|
/**
|
|
5149
6050
|
* Rate limit exceeded
|
|
5150
6051
|
*/
|
|
@@ -5189,6 +6090,14 @@ type ListSlackChannelsErrors = {
|
|
|
5189
6090
|
* Not found
|
|
5190
6091
|
*/
|
|
5191
6092
|
404: ErrorResponse;
|
|
6093
|
+
/**
|
|
6094
|
+
* Conflict
|
|
6095
|
+
*/
|
|
6096
|
+
409: ErrorResponse;
|
|
6097
|
+
/**
|
|
6098
|
+
* Payload too large
|
|
6099
|
+
*/
|
|
6100
|
+
413: ErrorResponse;
|
|
5192
6101
|
/**
|
|
5193
6102
|
* Rate limit exceeded
|
|
5194
6103
|
*/
|
|
@@ -5233,6 +6142,14 @@ type GetChatWidgetConfigErrors = {
|
|
|
5233
6142
|
* Not found
|
|
5234
6143
|
*/
|
|
5235
6144
|
404: ErrorResponse;
|
|
6145
|
+
/**
|
|
6146
|
+
* Conflict
|
|
6147
|
+
*/
|
|
6148
|
+
409: ErrorResponse;
|
|
6149
|
+
/**
|
|
6150
|
+
* Payload too large
|
|
6151
|
+
*/
|
|
6152
|
+
413: ErrorResponse;
|
|
5236
6153
|
/**
|
|
5237
6154
|
* Rate limit exceeded
|
|
5238
6155
|
*/
|
|
@@ -5408,6 +6325,14 @@ type UpdateChatWidgetConfigErrors = {
|
|
|
5408
6325
|
* Not found
|
|
5409
6326
|
*/
|
|
5410
6327
|
404: ErrorResponse;
|
|
6328
|
+
/**
|
|
6329
|
+
* Conflict
|
|
6330
|
+
*/
|
|
6331
|
+
409: ErrorResponse;
|
|
6332
|
+
/**
|
|
6333
|
+
* Payload too large
|
|
6334
|
+
*/
|
|
6335
|
+
413: ErrorResponse;
|
|
5411
6336
|
/**
|
|
5412
6337
|
* Rate limit exceeded
|
|
5413
6338
|
*/
|
|
@@ -5454,6 +6379,14 @@ type GetSearchWidgetConfigErrors = {
|
|
|
5454
6379
|
* Not found
|
|
5455
6380
|
*/
|
|
5456
6381
|
404: ErrorResponse;
|
|
6382
|
+
/**
|
|
6383
|
+
* Conflict
|
|
6384
|
+
*/
|
|
6385
|
+
409: ErrorResponse;
|
|
6386
|
+
/**
|
|
6387
|
+
* Payload too large
|
|
6388
|
+
*/
|
|
6389
|
+
413: ErrorResponse;
|
|
5457
6390
|
/**
|
|
5458
6391
|
* Rate limit exceeded
|
|
5459
6392
|
*/
|
|
@@ -5487,6 +6420,7 @@ type UpdateSearchWidgetConfigData = {
|
|
|
5487
6420
|
searchOnSubmit?: boolean;
|
|
5488
6421
|
productTabLabel?: string;
|
|
5489
6422
|
postTabLabel?: string;
|
|
6423
|
+
inputPlaceholder?: string;
|
|
5490
6424
|
theme?: {
|
|
5491
6425
|
colorScheme?: 'light' | 'dark' | 'auto';
|
|
5492
6426
|
primaryColor?: string;
|
|
@@ -5526,6 +6460,14 @@ type UpdateSearchWidgetConfigErrors = {
|
|
|
5526
6460
|
* Not found
|
|
5527
6461
|
*/
|
|
5528
6462
|
404: ErrorResponse;
|
|
6463
|
+
/**
|
|
6464
|
+
* Conflict
|
|
6465
|
+
*/
|
|
6466
|
+
409: ErrorResponse;
|
|
6467
|
+
/**
|
|
6468
|
+
* Payload too large
|
|
6469
|
+
*/
|
|
6470
|
+
413: ErrorResponse;
|
|
5529
6471
|
/**
|
|
5530
6472
|
* Rate limit exceeded
|
|
5531
6473
|
*/
|
|
@@ -5572,6 +6514,14 @@ type ListCustomDomainsErrors = {
|
|
|
5572
6514
|
* Not found
|
|
5573
6515
|
*/
|
|
5574
6516
|
404: ErrorResponse;
|
|
6517
|
+
/**
|
|
6518
|
+
* Conflict
|
|
6519
|
+
*/
|
|
6520
|
+
409: ErrorResponse;
|
|
6521
|
+
/**
|
|
6522
|
+
* Payload too large
|
|
6523
|
+
*/
|
|
6524
|
+
413: ErrorResponse;
|
|
5575
6525
|
/**
|
|
5576
6526
|
* Rate limit exceeded
|
|
5577
6527
|
*/
|
|
@@ -5630,12 +6580,23 @@ type CreateCustomDomainData = {
|
|
|
5630
6580
|
type: 'string' | 'number' | 'boolean';
|
|
5631
6581
|
defaultValue?: string;
|
|
5632
6582
|
}>;
|
|
6583
|
+
requestTimeoutMs?: number;
|
|
6584
|
+
dropPaths?: Array<string>;
|
|
5633
6585
|
}>;
|
|
5634
6586
|
}>;
|
|
5635
6587
|
progressMessage: string;
|
|
5636
6588
|
enabled?: boolean;
|
|
5637
6589
|
toolStrategy?: 'required' | 'auto';
|
|
5638
6590
|
maxToolTurns?: number;
|
|
6591
|
+
exclusive?: boolean;
|
|
6592
|
+
composerRenderHint?: 'card' | 'inline' | 'prose-only' | 'gallery';
|
|
6593
|
+
composerVerbosity?: 'terse' | 'standard' | 'detailed';
|
|
6594
|
+
composerPrivacy?: 'public' | 'sensitive';
|
|
6595
|
+
digestTemplate?: string;
|
|
6596
|
+
composerStreamingFields?: Array<string>;
|
|
6597
|
+
toolProgressMessages?: {
|
|
6598
|
+
[key: string]: string;
|
|
6599
|
+
};
|
|
5639
6600
|
};
|
|
5640
6601
|
path: {
|
|
5641
6602
|
workspaceId: string;
|
|
@@ -5660,6 +6621,14 @@ type CreateCustomDomainErrors = {
|
|
|
5660
6621
|
* Not found
|
|
5661
6622
|
*/
|
|
5662
6623
|
404: ErrorResponse;
|
|
6624
|
+
/**
|
|
6625
|
+
* Conflict
|
|
6626
|
+
*/
|
|
6627
|
+
409: ErrorResponse;
|
|
6628
|
+
/**
|
|
6629
|
+
* Payload too large
|
|
6630
|
+
*/
|
|
6631
|
+
413: ErrorResponse;
|
|
5663
6632
|
/**
|
|
5664
6633
|
* Rate limit exceeded
|
|
5665
6634
|
*/
|
|
@@ -5705,6 +6674,14 @@ type DeleteCustomDomainErrors = {
|
|
|
5705
6674
|
* Not found
|
|
5706
6675
|
*/
|
|
5707
6676
|
404: ErrorResponse;
|
|
6677
|
+
/**
|
|
6678
|
+
* Conflict
|
|
6679
|
+
*/
|
|
6680
|
+
409: ErrorResponse;
|
|
6681
|
+
/**
|
|
6682
|
+
* Payload too large
|
|
6683
|
+
*/
|
|
6684
|
+
413: ErrorResponse;
|
|
5708
6685
|
/**
|
|
5709
6686
|
* Rate limit exceeded
|
|
5710
6687
|
*/
|
|
@@ -5764,12 +6741,23 @@ type UpdateCustomDomainData = {
|
|
|
5764
6741
|
type: 'string' | 'number' | 'boolean';
|
|
5765
6742
|
defaultValue?: string;
|
|
5766
6743
|
}>;
|
|
6744
|
+
requestTimeoutMs?: number;
|
|
6745
|
+
dropPaths?: Array<string>;
|
|
5767
6746
|
}>;
|
|
5768
6747
|
}>;
|
|
5769
6748
|
progressMessage?: string;
|
|
5770
6749
|
enabled?: boolean;
|
|
5771
6750
|
toolStrategy?: 'required' | 'auto';
|
|
5772
6751
|
maxToolTurns?: number;
|
|
6752
|
+
exclusive?: boolean;
|
|
6753
|
+
composerRenderHint?: 'card' | 'inline' | 'prose-only' | 'gallery';
|
|
6754
|
+
composerVerbosity?: 'terse' | 'standard' | 'detailed';
|
|
6755
|
+
composerPrivacy?: 'public' | 'sensitive';
|
|
6756
|
+
digestTemplate?: string;
|
|
6757
|
+
composerStreamingFields?: Array<string>;
|
|
6758
|
+
toolProgressMessages?: {
|
|
6759
|
+
[key: string]: string;
|
|
6760
|
+
};
|
|
5773
6761
|
};
|
|
5774
6762
|
path: {
|
|
5775
6763
|
workspaceId: string;
|
|
@@ -5795,6 +6783,14 @@ type UpdateCustomDomainErrors = {
|
|
|
5795
6783
|
* Not found
|
|
5796
6784
|
*/
|
|
5797
6785
|
404: ErrorResponse;
|
|
6786
|
+
/**
|
|
6787
|
+
* Conflict
|
|
6788
|
+
*/
|
|
6789
|
+
409: ErrorResponse;
|
|
6790
|
+
/**
|
|
6791
|
+
* Payload too large
|
|
6792
|
+
*/
|
|
6793
|
+
413: ErrorResponse;
|
|
5798
6794
|
/**
|
|
5799
6795
|
* Rate limit exceeded
|
|
5800
6796
|
*/
|
|
@@ -5841,6 +6837,14 @@ type GetDomainErrorSummaryErrors = {
|
|
|
5841
6837
|
* Not found
|
|
5842
6838
|
*/
|
|
5843
6839
|
404: ErrorResponse;
|
|
6840
|
+
/**
|
|
6841
|
+
* Conflict
|
|
6842
|
+
*/
|
|
6843
|
+
409: ErrorResponse;
|
|
6844
|
+
/**
|
|
6845
|
+
* Payload too large
|
|
6846
|
+
*/
|
|
6847
|
+
413: ErrorResponse;
|
|
5844
6848
|
/**
|
|
5845
6849
|
* Rate limit exceeded
|
|
5846
6850
|
*/
|
|
@@ -5886,6 +6890,14 @@ type ClearDomainErrorsErrors = {
|
|
|
5886
6890
|
* Not found
|
|
5887
6891
|
*/
|
|
5888
6892
|
404: ErrorResponse;
|
|
6893
|
+
/**
|
|
6894
|
+
* Conflict
|
|
6895
|
+
*/
|
|
6896
|
+
409: ErrorResponse;
|
|
6897
|
+
/**
|
|
6898
|
+
* Payload too large
|
|
6899
|
+
*/
|
|
6900
|
+
413: ErrorResponse;
|
|
5889
6901
|
/**
|
|
5890
6902
|
* Rate limit exceeded
|
|
5891
6903
|
*/
|
|
@@ -5932,6 +6944,14 @@ type GetDomainErrorsErrors = {
|
|
|
5932
6944
|
* Not found
|
|
5933
6945
|
*/
|
|
5934
6946
|
404: ErrorResponse;
|
|
6947
|
+
/**
|
|
6948
|
+
* Conflict
|
|
6949
|
+
*/
|
|
6950
|
+
409: ErrorResponse;
|
|
6951
|
+
/**
|
|
6952
|
+
* Payload too large
|
|
6953
|
+
*/
|
|
6954
|
+
413: ErrorResponse;
|
|
5935
6955
|
/**
|
|
5936
6956
|
* Rate limit exceeded
|
|
5937
6957
|
*/
|
|
@@ -5992,10 +7012,23 @@ type ValidateCustomDomainData = {
|
|
|
5992
7012
|
type: 'string' | 'number' | 'boolean';
|
|
5993
7013
|
defaultValue?: string;
|
|
5994
7014
|
}>;
|
|
7015
|
+
requestTimeoutMs?: number;
|
|
7016
|
+
dropPaths?: Array<string>;
|
|
5995
7017
|
}>;
|
|
5996
7018
|
}>;
|
|
5997
7019
|
progressMessage?: string;
|
|
5998
7020
|
enabled?: boolean;
|
|
7021
|
+
toolStrategy?: 'required' | 'auto';
|
|
7022
|
+
maxToolTurns?: number;
|
|
7023
|
+
exclusive?: boolean;
|
|
7024
|
+
composerRenderHint?: 'card' | 'inline' | 'prose-only' | 'gallery';
|
|
7025
|
+
composerVerbosity?: 'terse' | 'standard' | 'detailed';
|
|
7026
|
+
composerPrivacy?: 'public' | 'sensitive';
|
|
7027
|
+
digestTemplate?: string;
|
|
7028
|
+
composerStreamingFields?: Array<string>;
|
|
7029
|
+
toolProgressMessages?: {
|
|
7030
|
+
[key: string]: string;
|
|
7031
|
+
};
|
|
5999
7032
|
id?: string;
|
|
6000
7033
|
skipLlmValidation?: boolean;
|
|
6001
7034
|
};
|
|
@@ -6022,6 +7055,14 @@ type ValidateCustomDomainErrors = {
|
|
|
6022
7055
|
* Not found
|
|
6023
7056
|
*/
|
|
6024
7057
|
404: ErrorResponse;
|
|
7058
|
+
/**
|
|
7059
|
+
* Conflict
|
|
7060
|
+
*/
|
|
7061
|
+
409: ErrorResponse;
|
|
7062
|
+
/**
|
|
7063
|
+
* Payload too large
|
|
7064
|
+
*/
|
|
7065
|
+
413: ErrorResponse;
|
|
6025
7066
|
/**
|
|
6026
7067
|
* Rate limit exceeded
|
|
6027
7068
|
*/
|
|
@@ -6082,10 +7123,23 @@ type TestDomainConnectionData = {
|
|
|
6082
7123
|
type: 'string' | 'number' | 'boolean';
|
|
6083
7124
|
defaultValue?: string;
|
|
6084
7125
|
}>;
|
|
7126
|
+
requestTimeoutMs?: number;
|
|
7127
|
+
dropPaths?: Array<string>;
|
|
6085
7128
|
}>;
|
|
6086
7129
|
}>;
|
|
6087
7130
|
progressMessage: string;
|
|
6088
7131
|
enabled?: boolean;
|
|
7132
|
+
toolStrategy?: 'required' | 'auto';
|
|
7133
|
+
maxToolTurns?: number;
|
|
7134
|
+
exclusive?: boolean;
|
|
7135
|
+
composerRenderHint?: 'card' | 'inline' | 'prose-only' | 'gallery';
|
|
7136
|
+
composerVerbosity?: 'terse' | 'standard' | 'detailed';
|
|
7137
|
+
composerPrivacy?: 'public' | 'sensitive';
|
|
7138
|
+
digestTemplate?: string;
|
|
7139
|
+
composerStreamingFields?: Array<string>;
|
|
7140
|
+
toolProgressMessages?: {
|
|
7141
|
+
[key: string]: string;
|
|
7142
|
+
};
|
|
6089
7143
|
};
|
|
6090
7144
|
testQueries: Array<string>;
|
|
6091
7145
|
};
|
|
@@ -6112,6 +7166,14 @@ type TestDomainConnectionErrors = {
|
|
|
6112
7166
|
* Not found
|
|
6113
7167
|
*/
|
|
6114
7168
|
404: ErrorResponse;
|
|
7169
|
+
/**
|
|
7170
|
+
* Conflict
|
|
7171
|
+
*/
|
|
7172
|
+
409: ErrorResponse;
|
|
7173
|
+
/**
|
|
7174
|
+
* Payload too large
|
|
7175
|
+
*/
|
|
7176
|
+
413: ErrorResponse;
|
|
6115
7177
|
/**
|
|
6116
7178
|
* Rate limit exceeded
|
|
6117
7179
|
*/
|
|
@@ -6156,6 +7218,14 @@ type GetWorkspaceDetailsErrors = {
|
|
|
6156
7218
|
* Not found
|
|
6157
7219
|
*/
|
|
6158
7220
|
404: ErrorResponse;
|
|
7221
|
+
/**
|
|
7222
|
+
* Conflict
|
|
7223
|
+
*/
|
|
7224
|
+
409: ErrorResponse;
|
|
7225
|
+
/**
|
|
7226
|
+
* Payload too large
|
|
7227
|
+
*/
|
|
7228
|
+
413: ErrorResponse;
|
|
6159
7229
|
/**
|
|
6160
7230
|
* Rate limit exceeded
|
|
6161
7231
|
*/
|
|
@@ -6205,6 +7275,14 @@ type DiscoverToolsErrors = {
|
|
|
6205
7275
|
* Not found
|
|
6206
7276
|
*/
|
|
6207
7277
|
404: ErrorResponse;
|
|
7278
|
+
/**
|
|
7279
|
+
* Conflict
|
|
7280
|
+
*/
|
|
7281
|
+
409: ErrorResponse;
|
|
7282
|
+
/**
|
|
7283
|
+
* Payload too large
|
|
7284
|
+
*/
|
|
7285
|
+
413: ErrorResponse;
|
|
6208
7286
|
/**
|
|
6209
7287
|
* Rate limit exceeded
|
|
6210
7288
|
*/
|
|
@@ -6256,6 +7334,14 @@ type GenerateDomainConfigErrors = {
|
|
|
6256
7334
|
* Not found
|
|
6257
7335
|
*/
|
|
6258
7336
|
404: ErrorResponse;
|
|
7337
|
+
/**
|
|
7338
|
+
* Conflict
|
|
7339
|
+
*/
|
|
7340
|
+
409: ErrorResponse;
|
|
7341
|
+
/**
|
|
7342
|
+
* Payload too large
|
|
7343
|
+
*/
|
|
7344
|
+
413: ErrorResponse;
|
|
6259
7345
|
/**
|
|
6260
7346
|
* Rate limit exceeded
|
|
6261
7347
|
*/
|
|
@@ -6300,6 +7386,14 @@ type GetDomainTemplatesErrors = {
|
|
|
6300
7386
|
* Not found
|
|
6301
7387
|
*/
|
|
6302
7388
|
404: ErrorResponse;
|
|
7389
|
+
/**
|
|
7390
|
+
* Conflict
|
|
7391
|
+
*/
|
|
7392
|
+
409: ErrorResponse;
|
|
7393
|
+
/**
|
|
7394
|
+
* Payload too large
|
|
7395
|
+
*/
|
|
7396
|
+
413: ErrorResponse;
|
|
6303
7397
|
/**
|
|
6304
7398
|
* Rate limit exceeded
|
|
6305
7399
|
*/
|
|
@@ -6344,6 +7438,14 @@ type DeprovisionErrors = {
|
|
|
6344
7438
|
* Not found
|
|
6345
7439
|
*/
|
|
6346
7440
|
404: ErrorResponse;
|
|
7441
|
+
/**
|
|
7442
|
+
* Conflict
|
|
7443
|
+
*/
|
|
7444
|
+
409: ErrorResponse;
|
|
7445
|
+
/**
|
|
7446
|
+
* Payload too large
|
|
7447
|
+
*/
|
|
7448
|
+
413: ErrorResponse;
|
|
6347
7449
|
/**
|
|
6348
7450
|
* Rate limit exceeded
|
|
6349
7451
|
*/
|
|
@@ -6384,6 +7486,14 @@ type ListApiKeysErrors = {
|
|
|
6384
7486
|
* Not found
|
|
6385
7487
|
*/
|
|
6386
7488
|
404: ErrorResponse;
|
|
7489
|
+
/**
|
|
7490
|
+
* Conflict
|
|
7491
|
+
*/
|
|
7492
|
+
409: ErrorResponse;
|
|
7493
|
+
/**
|
|
7494
|
+
* Payload too large
|
|
7495
|
+
*/
|
|
7496
|
+
413: ErrorResponse;
|
|
6387
7497
|
/**
|
|
6388
7498
|
* Rate limit exceeded
|
|
6389
7499
|
*/
|
|
@@ -6433,6 +7543,14 @@ type CreateApiKeyErrors = {
|
|
|
6433
7543
|
* Not found
|
|
6434
7544
|
*/
|
|
6435
7545
|
404: ErrorResponse;
|
|
7546
|
+
/**
|
|
7547
|
+
* Conflict
|
|
7548
|
+
*/
|
|
7549
|
+
409: ErrorResponse;
|
|
7550
|
+
/**
|
|
7551
|
+
* Payload too large
|
|
7552
|
+
*/
|
|
7553
|
+
413: ErrorResponse;
|
|
6436
7554
|
/**
|
|
6437
7555
|
* Rate limit exceeded
|
|
6438
7556
|
*/
|
|
@@ -6475,6 +7593,14 @@ type RevokeApiKeyErrors = {
|
|
|
6475
7593
|
* Not found
|
|
6476
7594
|
*/
|
|
6477
7595
|
404: ErrorResponse;
|
|
7596
|
+
/**
|
|
7597
|
+
* Conflict
|
|
7598
|
+
*/
|
|
7599
|
+
409: ErrorResponse;
|
|
7600
|
+
/**
|
|
7601
|
+
* Payload too large
|
|
7602
|
+
*/
|
|
7603
|
+
413: ErrorResponse;
|
|
6478
7604
|
/**
|
|
6479
7605
|
* Rate limit exceeded
|
|
6480
7606
|
*/
|
|
@@ -6517,6 +7643,14 @@ type RotateApiKeyErrors = {
|
|
|
6517
7643
|
* Not found
|
|
6518
7644
|
*/
|
|
6519
7645
|
404: ErrorResponse;
|
|
7646
|
+
/**
|
|
7647
|
+
* Conflict
|
|
7648
|
+
*/
|
|
7649
|
+
409: ErrorResponse;
|
|
7650
|
+
/**
|
|
7651
|
+
* Payload too large
|
|
7652
|
+
*/
|
|
7653
|
+
413: ErrorResponse;
|
|
6520
7654
|
/**
|
|
6521
7655
|
* Rate limit exceeded
|
|
6522
7656
|
*/
|
|
@@ -6557,6 +7691,14 @@ type ProvisionShopifyErrors = {
|
|
|
6557
7691
|
* Not found
|
|
6558
7692
|
*/
|
|
6559
7693
|
404: ErrorResponse;
|
|
7694
|
+
/**
|
|
7695
|
+
* Conflict
|
|
7696
|
+
*/
|
|
7697
|
+
409: ErrorResponse;
|
|
7698
|
+
/**
|
|
7699
|
+
* Payload too large
|
|
7700
|
+
*/
|
|
7701
|
+
413: ErrorResponse;
|
|
6560
7702
|
/**
|
|
6561
7703
|
* Rate limit exceeded
|
|
6562
7704
|
*/
|
|
@@ -6607,6 +7749,14 @@ type AdminDeleteTenantErrors = {
|
|
|
6607
7749
|
* Not found
|
|
6608
7750
|
*/
|
|
6609
7751
|
404: ErrorResponse;
|
|
7752
|
+
/**
|
|
7753
|
+
* Conflict
|
|
7754
|
+
*/
|
|
7755
|
+
409: ErrorResponse;
|
|
7756
|
+
/**
|
|
7757
|
+
* Payload too large
|
|
7758
|
+
*/
|
|
7759
|
+
413: ErrorResponse;
|
|
6610
7760
|
/**
|
|
6611
7761
|
* Rate limit exceeded
|
|
6612
7762
|
*/
|
|
@@ -6681,6 +7831,14 @@ type AdminGetTenantErrors = {
|
|
|
6681
7831
|
* Not found
|
|
6682
7832
|
*/
|
|
6683
7833
|
404: ErrorResponse;
|
|
7834
|
+
/**
|
|
7835
|
+
* Conflict
|
|
7836
|
+
*/
|
|
7837
|
+
409: ErrorResponse;
|
|
7838
|
+
/**
|
|
7839
|
+
* Payload too large
|
|
7840
|
+
*/
|
|
7841
|
+
413: ErrorResponse;
|
|
6684
7842
|
/**
|
|
6685
7843
|
* Rate limit exceeded
|
|
6686
7844
|
*/
|
|
@@ -6723,6 +7881,14 @@ type AdminFindByEmailErrors = {
|
|
|
6723
7881
|
* Not found
|
|
6724
7882
|
*/
|
|
6725
7883
|
404: ErrorResponse;
|
|
7884
|
+
/**
|
|
7885
|
+
* Conflict
|
|
7886
|
+
*/
|
|
7887
|
+
409: ErrorResponse;
|
|
7888
|
+
/**
|
|
7889
|
+
* Payload too large
|
|
7890
|
+
*/
|
|
7891
|
+
413: ErrorResponse;
|
|
6726
7892
|
/**
|
|
6727
7893
|
* Rate limit exceeded
|
|
6728
7894
|
*/
|
|
@@ -6782,6 +7948,14 @@ type AdminFindByOwnerErrors = {
|
|
|
6782
7948
|
* Not found
|
|
6783
7949
|
*/
|
|
6784
7950
|
404: ErrorResponse;
|
|
7951
|
+
/**
|
|
7952
|
+
* Conflict
|
|
7953
|
+
*/
|
|
7954
|
+
409: ErrorResponse;
|
|
7955
|
+
/**
|
|
7956
|
+
* Payload too large
|
|
7957
|
+
*/
|
|
7958
|
+
413: ErrorResponse;
|
|
6785
7959
|
/**
|
|
6786
7960
|
* Rate limit exceeded
|
|
6787
7961
|
*/
|
|
@@ -6838,6 +8012,14 @@ type AdminClaimTenantErrors = {
|
|
|
6838
8012
|
* Not found
|
|
6839
8013
|
*/
|
|
6840
8014
|
404: ErrorResponse;
|
|
8015
|
+
/**
|
|
8016
|
+
* Conflict
|
|
8017
|
+
*/
|
|
8018
|
+
409: ErrorResponse;
|
|
8019
|
+
/**
|
|
8020
|
+
* Payload too large
|
|
8021
|
+
*/
|
|
8022
|
+
413: ErrorResponse;
|
|
6841
8023
|
/**
|
|
6842
8024
|
* Rate limit exceeded
|
|
6843
8025
|
*/
|
|
@@ -6890,6 +8072,14 @@ type AdminUpdateOwnerEmailErrors = {
|
|
|
6890
8072
|
* Not found
|
|
6891
8073
|
*/
|
|
6892
8074
|
404: ErrorResponse;
|
|
8075
|
+
/**
|
|
8076
|
+
* Conflict
|
|
8077
|
+
*/
|
|
8078
|
+
409: ErrorResponse;
|
|
8079
|
+
/**
|
|
8080
|
+
* Payload too large
|
|
8081
|
+
*/
|
|
8082
|
+
413: ErrorResponse;
|
|
6893
8083
|
/**
|
|
6894
8084
|
* Rate limit exceeded
|
|
6895
8085
|
*/
|
|
@@ -6936,6 +8126,14 @@ type AdminUpdateSubscriptionErrors = {
|
|
|
6936
8126
|
* Not found
|
|
6937
8127
|
*/
|
|
6938
8128
|
404: ErrorResponse;
|
|
8129
|
+
/**
|
|
8130
|
+
* Conflict
|
|
8131
|
+
*/
|
|
8132
|
+
409: ErrorResponse;
|
|
8133
|
+
/**
|
|
8134
|
+
* Payload too large
|
|
8135
|
+
*/
|
|
8136
|
+
413: ErrorResponse;
|
|
6939
8137
|
/**
|
|
6940
8138
|
* Rate limit exceeded
|
|
6941
8139
|
*/
|
|
@@ -6980,6 +8178,14 @@ type AdminReactivateTenantErrors = {
|
|
|
6980
8178
|
* Not found
|
|
6981
8179
|
*/
|
|
6982
8180
|
404: ErrorResponse;
|
|
8181
|
+
/**
|
|
8182
|
+
* Conflict
|
|
8183
|
+
*/
|
|
8184
|
+
409: ErrorResponse;
|
|
8185
|
+
/**
|
|
8186
|
+
* Payload too large
|
|
8187
|
+
*/
|
|
8188
|
+
413: ErrorResponse;
|
|
6983
8189
|
/**
|
|
6984
8190
|
* Rate limit exceeded
|
|
6985
8191
|
*/
|
|
@@ -7058,6 +8264,14 @@ type AdminGetUsageErrors = {
|
|
|
7058
8264
|
* Not found
|
|
7059
8265
|
*/
|
|
7060
8266
|
404: ErrorResponse;
|
|
8267
|
+
/**
|
|
8268
|
+
* Conflict
|
|
8269
|
+
*/
|
|
8270
|
+
409: ErrorResponse;
|
|
8271
|
+
/**
|
|
8272
|
+
* Payload too large
|
|
8273
|
+
*/
|
|
8274
|
+
413: ErrorResponse;
|
|
7061
8275
|
/**
|
|
7062
8276
|
* Rate limit exceeded
|
|
7063
8277
|
*/
|
|
@@ -7139,6 +8353,14 @@ type AdminUpdateUsageErrors = {
|
|
|
7139
8353
|
* Not found
|
|
7140
8354
|
*/
|
|
7141
8355
|
404: ErrorResponse;
|
|
8356
|
+
/**
|
|
8357
|
+
* Conflict
|
|
8358
|
+
*/
|
|
8359
|
+
409: ErrorResponse;
|
|
8360
|
+
/**
|
|
8361
|
+
* Payload too large
|
|
8362
|
+
*/
|
|
8363
|
+
413: ErrorResponse;
|
|
7142
8364
|
/**
|
|
7143
8365
|
* Rate limit exceeded
|
|
7144
8366
|
*/
|
|
@@ -7186,6 +8408,14 @@ type AdminUpdateTierErrors = {
|
|
|
7186
8408
|
* Not found
|
|
7187
8409
|
*/
|
|
7188
8410
|
404: ErrorResponse;
|
|
8411
|
+
/**
|
|
8412
|
+
* Conflict
|
|
8413
|
+
*/
|
|
8414
|
+
409: ErrorResponse;
|
|
8415
|
+
/**
|
|
8416
|
+
* Payload too large
|
|
8417
|
+
*/
|
|
8418
|
+
413: ErrorResponse;
|
|
7189
8419
|
/**
|
|
7190
8420
|
* Rate limit exceeded
|
|
7191
8421
|
*/
|
|
@@ -7233,6 +8463,14 @@ type AdminResetCrawlsErrors = {
|
|
|
7233
8463
|
* Not found
|
|
7234
8464
|
*/
|
|
7235
8465
|
404: ErrorResponse;
|
|
8466
|
+
/**
|
|
8467
|
+
* Conflict
|
|
8468
|
+
*/
|
|
8469
|
+
409: ErrorResponse;
|
|
8470
|
+
/**
|
|
8471
|
+
* Payload too large
|
|
8472
|
+
*/
|
|
8473
|
+
413: ErrorResponse;
|
|
7236
8474
|
/**
|
|
7237
8475
|
* Rate limit exceeded
|
|
7238
8476
|
*/
|
|
@@ -7275,6 +8513,14 @@ type ComplianceCustomerRedactErrors = {
|
|
|
7275
8513
|
* Not found
|
|
7276
8514
|
*/
|
|
7277
8515
|
404: ErrorResponse;
|
|
8516
|
+
/**
|
|
8517
|
+
* Conflict
|
|
8518
|
+
*/
|
|
8519
|
+
409: ErrorResponse;
|
|
8520
|
+
/**
|
|
8521
|
+
* Payload too large
|
|
8522
|
+
*/
|
|
8523
|
+
413: ErrorResponse;
|
|
7278
8524
|
/**
|
|
7279
8525
|
* Rate limit exceeded
|
|
7280
8526
|
*/
|
|
@@ -7315,6 +8561,14 @@ type ComplianceCustomerDataRequestErrors = {
|
|
|
7315
8561
|
* Not found
|
|
7316
8562
|
*/
|
|
7317
8563
|
404: ErrorResponse;
|
|
8564
|
+
/**
|
|
8565
|
+
* Conflict
|
|
8566
|
+
*/
|
|
8567
|
+
409: ErrorResponse;
|
|
8568
|
+
/**
|
|
8569
|
+
* Payload too large
|
|
8570
|
+
*/
|
|
8571
|
+
413: ErrorResponse;
|
|
7318
8572
|
/**
|
|
7319
8573
|
* Rate limit exceeded
|
|
7320
8574
|
*/
|
|
@@ -8082,5 +9336,5 @@ declare const complianceCustomerDataRequest: <ThrowOnError extends boolean = fal
|
|
|
8082
9336
|
*/
|
|
8083
9337
|
declare function workspaceIdFromUrl(url: string): string;
|
|
8084
9338
|
//#endregion
|
|
8085
|
-
export { AdminClaimTenantData, AdminClaimTenantError, AdminClaimTenantErrors, AdminClaimTenantRequest, AdminClaimTenantResponse, AdminClaimTenantResponses, AdminDeleteTenantData, AdminDeleteTenantError, AdminDeleteTenantErrors, AdminDeleteTenantResponse, AdminDeleteTenantResponses, AdminFindByEmailData, AdminFindByEmailError, AdminFindByEmailErrors, AdminFindByEmailResponse, AdminFindByEmailResponses, AdminFindByOwnerData, AdminFindByOwnerError, AdminFindByOwnerErrors, AdminFindByOwnerResponse, AdminFindByOwnerResponses, AdminGetTenantData, AdminGetTenantError, AdminGetTenantErrors, AdminGetTenantResponse, AdminGetTenantResponses, AdminGetUsageData, AdminGetUsageError, AdminGetUsageErrors, AdminGetUsageResponse, AdminGetUsageResponses, AdminReactivateTenantData, AdminReactivateTenantError, AdminReactivateTenantErrors, AdminReactivateTenantResponse, AdminReactivateTenantResponses, AdminResetCrawlsData, AdminResetCrawlsError, AdminResetCrawlsErrors, AdminResetCrawlsResponse, AdminResetCrawlsResponses, AdminUpdateOwnerEmailData, AdminUpdateOwnerEmailError, AdminUpdateOwnerEmailErrors, AdminUpdateOwnerEmailRequest, AdminUpdateOwnerEmailResponse, AdminUpdateOwnerEmailResponses, AdminUpdateSubscriptionData, AdminUpdateSubscriptionError, AdminUpdateSubscriptionErrors, AdminUpdateSubscriptionRequest, AdminUpdateSubscriptionResponse, AdminUpdateSubscriptionResponses, AdminUpdateTierData, AdminUpdateTierError, AdminUpdateTierErrors, AdminUpdateTierResponse, AdminUpdateTierResponses, AdminUpdateUsageData, AdminUpdateUsageError, AdminUpdateUsageErrors, AdminUpdateUsageResponse, AdminUpdateUsageResponses, BulkDeletePostsData, BulkDeletePostsError, BulkDeletePostsErrors, BulkDeletePostsResponse, BulkDeletePostsResponses, BulkDeleteProductsData, BulkDeleteProductsError, BulkDeleteProductsErrors, BulkDeleteProductsResponse, BulkDeleteProductsResponses, BulkDeletePromptsData, BulkDeletePromptsError, BulkDeletePromptsErrors, BulkDeletePromptsResponse, BulkDeletePromptsResponses, BulkDeleteTaxonomiesData, BulkDeleteTaxonomiesError, BulkDeleteTaxonomiesErrors, BulkDeleteTaxonomiesResponse, BulkDeleteTaxonomiesResponses, BulkDeleteThreadsData, BulkDeleteThreadsError, BulkDeleteThreadsErrors, BulkDeleteThreadsResponse, BulkDeleteThreadsResponses, BulkOperation, BulkUpdateWebhookStatusData, BulkUpdateWebhookStatusError, BulkUpdateWebhookStatusErrors, BulkUpdateWebhookStatusResponse, BulkUpdateWebhookStatusResponses, BulkUpsertPostsData, BulkUpsertPostsError, BulkUpsertPostsErrors, BulkUpsertPostsResponse, BulkUpsertPostsResponses, BulkUpsertProductsData, BulkUpsertProductsError, BulkUpsertProductsErrors, BulkUpsertProductsResponse, BulkUpsertProductsResponses, BulkUpsertPromptsData, BulkUpsertPromptsError, BulkUpsertPromptsErrors, BulkUpsertPromptsResponse, BulkUpsertPromptsResponses, BulkUpsertTaxonomiesData, BulkUpsertTaxonomiesError, BulkUpsertTaxonomiesErrors, BulkUpsertTaxonomiesResponse, BulkUpsertTaxonomiesResponses, BulkWebhookStatusInput, CancelCrawlData, CancelCrawlError, CancelCrawlErrors, CancelCrawlResponse, CancelCrawlResponses, ChatData, ChatError, ChatErrors, ChatRequest, ChatResponse, ChatResponse2, ChatResponses, ChatStreamChunk, ClearDomainErrorsData, ClearDomainErrorsError, ClearDomainErrorsErrors, ClearDomainErrorsResponse, ClearDomainErrorsResponses, type Client, type ClientOptions, CommitSearchData, CommitSearchError, CommitSearchErrors, CommitSearchResponse, CommitSearchResponses, ComplianceAuditResponse, ComplianceCaller, ComplianceCustomerDataRequestData, ComplianceCustomerDataRequestError, ComplianceCustomerDataRequestErrors, ComplianceCustomerDataRequestResponse, ComplianceCustomerDataRequestResponses, ComplianceCustomerId, ComplianceCustomerRedactData, ComplianceCustomerRedactError, ComplianceCustomerRedactErrors, ComplianceCustomerRedactResponse, ComplianceCustomerRedactResponses, type Config, CreateApiKeyData, CreateApiKeyError, CreateApiKeyErrors, CreateApiKeyResponse, CreateApiKeyResponses, CreateCustomDomainData, CreateCustomDomainError, CreateCustomDomainErrors, CreateCustomDomainResponse, CreateCustomDomainResponses, CreateKeyRequest, CreateTenantWorkspaceData, CreateTenantWorkspaceError, CreateTenantWorkspaceErrors, CreateTenantWorkspaceResponse, CreateTenantWorkspaceResponses, CreateWebhookData, CreateWebhookError, CreateWebhookErrors, CreateWebhookInput, CreateWebhookResponse, CreateWebhookResponses, CreateWorkspaceRequest, CustomerDataRequest, CustomerRedactRequest, DeleteCredentialsData, DeleteCredentialsError, DeleteCredentialsErrors, DeleteCredentialsResponse, DeleteCredentialsResponses, DeleteCustomDomainData, DeleteCustomDomainError, DeleteCustomDomainErrors, DeleteCustomDomainResponse, DeleteCustomDomainResponses, DeleteFeedbackData, DeleteFeedbackError, DeleteFeedbackErrors, DeleteFeedbackResponse, DeleteFeedbackResponses, DeleteLiveAgentScheduleData, DeleteLiveAgentScheduleError, DeleteLiveAgentScheduleErrors, DeleteLiveAgentScheduleResponse, DeleteLiveAgentScheduleResponses, DeleteMcpConfigData, DeleteMcpConfigError, DeleteMcpConfigErrors, DeleteMcpConfigResponse, DeleteMcpConfigResponses, DeletePostData, DeletePostError, DeletePostErrors, DeletePostResponse, DeletePostResponses, DeletePostsByQueryData, DeletePostsByQueryError, DeletePostsByQueryErrors, DeletePostsByQueryResponse, DeletePostsByQueryResponses, DeleteProductData, DeleteProductError, DeleteProductErrors, DeleteProductResponse, DeleteProductResponses, DeleteProductsByQueryData, DeleteProductsByQueryError, DeleteProductsByQueryErrors, DeleteProductsByQueryResponse, DeleteProductsByQueryResponses, DeletePromptData, DeletePromptError, DeletePromptErrors, DeletePromptResponse, DeletePromptResponses, DeleteResponse, DeleteTaxonomiesByQueryData, DeleteTaxonomiesByQueryError, DeleteTaxonomiesByQueryErrors, DeleteTaxonomiesByQueryResponse, DeleteTaxonomiesByQueryResponses, DeleteTaxonomyData, DeleteTaxonomyError, DeleteTaxonomyErrors, DeleteTaxonomyResponse, DeleteTaxonomyResponses, DeleteTenantData, DeleteTenantError, DeleteTenantErrors, DeleteTenantResponse, DeleteTenantResponses, DeleteThreadData, DeleteThreadError, DeleteThreadErrors, DeleteThreadResponse, DeleteThreadResponses, DeleteWebhookData, DeleteWebhookError, DeleteWebhookErrors, DeleteWebhookResponse, DeleteWebhookResponses, DeleteWorkspaceData, DeleteWorkspaceError, DeleteWorkspaceErrors, DeleteWorkspaceResponse, DeleteWorkspaceResponses, DeprovisionData, DeprovisionError, DeprovisionErrors, DeprovisionRequest, DeprovisionResponse, DeprovisionResponses, DeprovisionResult, DiscoverToolsData, DiscoverToolsError, DiscoverToolsErrors, DiscoverToolsResponse, DiscoverToolsResponses, EndHandoffData, EndHandoffError, EndHandoffErrors, EndHandoffResponse, EndHandoffResponses, EnrollCrawlNotificationData, EnrollCrawlNotificationError, EnrollCrawlNotificationErrors, EnrollCrawlNotificationRequest, EnrollCrawlNotificationResponse, EnrollCrawlNotificationResponses, ErrorResponse, ExportThreadsData, ExportThreadsError, ExportThreadsErrors, ExportThreadsResponse, ExportThreadsResponses, FeedbackSubmission, GenerateDomainConfigData, GenerateDomainConfigError, GenerateDomainConfigErrors, GenerateDomainConfigResponse, GenerateDomainConfigResponses, GetAnalyticsFeedbackData, GetAnalyticsFeedbackError, GetAnalyticsFeedbackErrors, GetAnalyticsFeedbackResponse, GetAnalyticsFeedbackResponses, GetChatAnalyticsData, GetChatAnalyticsError, GetChatAnalyticsErrors, GetChatAnalyticsResponse, GetChatAnalyticsResponses, GetChatWidgetConfigData, GetChatWidgetConfigError, GetChatWidgetConfigErrors, GetChatWidgetConfigResponse, GetChatWidgetConfigResponses, GetCrawlConfigData, GetCrawlConfigError, GetCrawlConfigErrors, GetCrawlConfigResponse, GetCrawlConfigResponses, GetCrawlHistoryData, GetCrawlHistoryError, GetCrawlHistoryErrors, GetCrawlHistoryResponse, GetCrawlHistoryResponses, GetCrawlStatusData, GetCrawlStatusError, GetCrawlStatusErrors, GetCrawlStatusResponse, GetCrawlStatusResponses, GetCredentialStatusData, GetCredentialStatusError, GetCredentialStatusErrors, GetCredentialStatusResponse, GetCredentialStatusResponses, GetDomainErrorSummaryData, GetDomainErrorSummaryError, GetDomainErrorSummaryErrors, GetDomainErrorSummaryResponse, GetDomainErrorSummaryResponses, GetDomainErrorsData, GetDomainErrorsError, GetDomainErrorsErrors, GetDomainErrorsResponse, GetDomainErrorsResponses, GetDomainTemplatesData, GetDomainTemplatesError, GetDomainTemplatesErrors, GetDomainTemplatesResponse, GetDomainTemplatesResponses, GetFeedbackAnalyticsData, GetFeedbackAnalyticsError, GetFeedbackAnalyticsErrors, GetFeedbackAnalyticsResponse, GetFeedbackAnalyticsResponses, GetKnowledgeData, GetKnowledgeError, GetKnowledgeErrors, GetKnowledgeResponse, GetKnowledgeResponses, GetLiveAgentScheduleData, GetLiveAgentScheduleError, GetLiveAgentScheduleErrors, GetLiveAgentScheduleResponse, GetLiveAgentScheduleResponses, GetLiveAgentStatusData, GetLiveAgentStatusError, GetLiveAgentStatusErrors, GetLiveAgentStatusResponse, GetLiveAgentStatusResponses, GetMcpConfigData, GetMcpConfigError, GetMcpConfigErrors, GetMcpConfigResponse, GetMcpConfigResponses, GetPostData, GetPostError, GetPostErrors, GetPostResponse, GetPostResponses, GetProductData, GetProductError, GetProductErrors, GetProductRecommendationsData, GetProductRecommendationsError, GetProductRecommendationsErrors, GetProductRecommendationsResponse, GetProductRecommendationsResponses, GetProductResponse, GetProductResponses, GetPromptData, GetPromptError, GetPromptErrors, GetPromptResponse, GetPromptResponses, GetSearchAnalyticsData, GetSearchAnalyticsError, GetSearchAnalyticsErrors, GetSearchAnalyticsResponse, GetSearchAnalyticsResponses, GetSearchWidgetConfigData, GetSearchWidgetConfigError, GetSearchWidgetConfigErrors, GetSearchWidgetConfigResponse, GetSearchWidgetConfigResponses, GetTaxonomyData, GetTaxonomyError, GetTaxonomyErrors, GetTaxonomyResponse, GetTaxonomyResponses, GetTenantStatusData, GetTenantStatusError, GetTenantStatusErrors, GetTenantStatusResponse, GetTenantStatusResponses, GetTenantUsageData, GetTenantUsageError, GetTenantUsageErrors, GetTenantUsageHistoryData, GetTenantUsageHistoryError, GetTenantUsageHistoryErrors, GetTenantUsageHistoryResponse, GetTenantUsageHistoryResponses, GetTenantUsageResponse, GetTenantUsageResponses, GetTenantWhoamiData, GetTenantWhoamiError, GetTenantWhoamiErrors, GetTenantWhoamiResponse, GetTenantWhoamiResponses, GetThreadAnalyticsData, GetThreadAnalyticsError, GetThreadAnalyticsErrors, GetThreadAnalyticsResponse, GetThreadAnalyticsResponses, GetThreadData, GetThreadError, GetThreadErrors, GetThreadFeedbackData, GetThreadFeedbackError, GetThreadFeedbackErrors, GetThreadFeedbackResponse, GetThreadFeedbackResponses, GetThreadMessagesData, GetThreadMessagesError, GetThreadMessagesErrors, GetThreadMessagesResponse, GetThreadMessagesResponses, GetThreadResponse, GetThreadResponses, GetUploadUrlData, GetUploadUrlError, GetUploadUrlErrors, GetUploadUrlRequest, GetUploadUrlResponse, GetUploadUrlResponses, GetWebhookData, GetWebhookError, GetWebhookErrors, GetWebhookResponse, GetWebhookResponses, GetWebhookStatsData, GetWebhookStatsError, GetWebhookStatsErrors, GetWebhookStatsResponse, GetWebhookStatsResponses, GetWorkspaceDetailsData, GetWorkspaceDetailsError, GetWorkspaceDetailsErrors, GetWorkspaceDetailsResponse, GetWorkspaceDetailsResponses, GetWorkspaceSettingsData, GetWorkspaceSettingsError, GetWorkspaceSettingsErrors, GetWorkspaceSettingsResponse, GetWorkspaceSettingsResponses, ListApiKeysData, ListApiKeysError, ListApiKeysErrors, ListApiKeysResponse, ListApiKeysResponses, ListCustomDomainsData, ListCustomDomainsError, ListCustomDomainsErrors, ListCustomDomainsResponse, ListCustomDomainsResponses, ListFeedbackData, ListFeedbackError, ListFeedbackErrors, ListFeedbackResponse, ListFeedbackResponses, ListPostIdsData, ListPostIdsError, ListPostIdsErrors, ListPostIdsResponse, ListPostIdsResponses, ListProductIdsData, ListProductIdsError, ListProductIdsErrors, ListProductIdsResponse, ListProductIdsResponses, ListProductsData, ListProductsError, ListProductsErrors, ListProductsResponse, ListProductsResponses, ListPromptsData, ListPromptsError, ListPromptsErrors, ListPromptsResponse, ListPromptsResponses, ListSlackChannelsData, ListSlackChannelsError, ListSlackChannelsErrors, ListSlackChannelsResponse, ListSlackChannelsResponses, ListTaxonomiesData, ListTaxonomiesError, ListTaxonomiesErrors, ListTaxonomiesResponse, ListTaxonomiesResponses, ListTaxonomyIdsData, ListTaxonomyIdsError, ListTaxonomyIdsErrors, ListTaxonomyIdsResponse, ListTaxonomyIdsResponses, ListTenantWorkspacesData, ListTenantWorkspacesError, ListTenantWorkspacesErrors, ListTenantWorkspacesResponse, ListTenantWorkspacesResponses, ListWebhooksData, ListWebhooksError, ListWebhooksErrors, ListWebhooksResponse, ListWebhooksResponses, type Options, Pagination, PatchPostData, PatchPostError, PatchPostErrors, PatchPostResponse, PatchPostResponses, PatchProductData, PatchProductError, PatchProductErrors, PatchProductResponse, PatchProductResponses, Post, PostInput, PostSearchRequest, Product, ProductInput, ProductSearchRequest, Prompt, PromptInput, ProvisionResult, ProvisionShopifyData, ProvisionShopifyError, ProvisionShopifyErrors, ProvisionShopifyResponse, ProvisionShopifyResponses, RecommendationRequest, type RequestOptions, type RequestResult, RevokeApiKeyData, RevokeApiKeyError, RevokeApiKeyErrors, RevokeApiKeyResponse, RevokeApiKeyResponses, RotateApiKeyData, RotateApiKeyError, RotateApiKeyErrors, RotateApiKeyResponse, RotateApiKeyResponses, RotateKeyRequest, ScrapePageData, ScrapePageError, ScrapePageErrors, ScrapePageResponse, ScrapePageResponses, ScrapeRequest, ScrapeSinglePageData, ScrapeSinglePageError, ScrapeSinglePageErrors, ScrapeSinglePageResponse, ScrapeSinglePageResponses, SearchKnowledgeData, SearchKnowledgeError, SearchKnowledgeErrors, SearchKnowledgeResponse, SearchKnowledgeResponses, SearchPostsData, SearchPostsError, SearchPostsErrors, SearchPostsResponse, SearchPostsResponses, SearchProductsData, SearchProductsError, SearchProductsErrors, SearchProductsResponse, SearchProductsResponses, SearchPromptsData, SearchPromptsError, SearchPromptsErrors, SearchPromptsResponse, SearchPromptsResponses, SearchSearchesData, SearchSearchesError, SearchSearchesErrors, SearchSearchesResponse, SearchSearchesResponses, SearchThreadsData, SearchThreadsError, SearchThreadsErrors, SearchThreadsResponse, SearchThreadsResponses, ShopifyProvisionRequest, SingleScrapeRequest, StartCrawlData, StartCrawlError, StartCrawlErrors, StartCrawlRequest, StartCrawlResponse, StartCrawlResponses, StoreCredentialsData, StoreCredentialsError, StoreCredentialsErrors, StoreCredentialsResponse, StoreCredentialsResponses, StoreLiveAgentCredentialsRequest, SubmitFeedbackData, SubmitFeedbackError, SubmitFeedbackErrors, SubmitFeedbackResponse, SubmitFeedbackResponses, Taxonomy, TaxonomyInput, TenantStatus, TenantWhoami, TestDomainConnectionData, TestDomainConnectionError, TestDomainConnectionErrors, TestDomainConnectionResponse, TestDomainConnectionResponses, TestWebhookData, TestWebhookError, TestWebhookErrors, TestWebhookResponse, TestWebhookResponses, ThreadBulkDeleteRequest, ThreadExportRequest, ThreadSearchRequest, UpdateChatWidgetConfigData, UpdateChatWidgetConfigError, UpdateChatWidgetConfigErrors, UpdateChatWidgetConfigResponse, UpdateChatWidgetConfigResponses, UpdateCrawlConfigData, UpdateCrawlConfigError, UpdateCrawlConfigErrors, UpdateCrawlConfigRequest, UpdateCrawlConfigResponse, UpdateCrawlConfigResponses, UpdateCustomDomainData, UpdateCustomDomainError, UpdateCustomDomainErrors, UpdateCustomDomainResponse, UpdateCustomDomainResponses, UpdateLiveAgentScheduleData, UpdateLiveAgentScheduleError, UpdateLiveAgentScheduleErrors, UpdateLiveAgentScheduleRequest, UpdateLiveAgentScheduleResponse, UpdateLiveAgentScheduleResponses, UpdateMcpConfigData, UpdateMcpConfigError, UpdateMcpConfigErrors, UpdateMcpConfigRequest, UpdateMcpConfigResponse, UpdateMcpConfigResponses, UpdateSearchWidgetConfigData, UpdateSearchWidgetConfigError, UpdateSearchWidgetConfigErrors, UpdateSearchWidgetConfigResponse, UpdateSearchWidgetConfigResponses, UpdateTenantFeaturesData, UpdateTenantFeaturesError, UpdateTenantFeaturesErrors, UpdateTenantFeaturesRequest, UpdateTenantFeaturesResponse, UpdateTenantFeaturesResponses, UpdateWebhookData, UpdateWebhookError, UpdateWebhookErrors, UpdateWebhookInput, UpdateWebhookResponse, UpdateWebhookResponses, UpdateWorkspaceData, UpdateWorkspaceError, UpdateWorkspaceErrors, UpdateWorkspaceRequest, UpdateWorkspaceResponse, UpdateWorkspaceResponses, UpdateWorkspaceSettingsData, UpdateWorkspaceSettingsError, UpdateWorkspaceSettingsErrors, UpdateWorkspaceSettingsResponse, UpdateWorkspaceSettingsResponses, UpsertPostData, UpsertPostError, UpsertPostErrors, UpsertPostResponse, UpsertPostResponses, UpsertProductData, UpsertProductError, UpsertProductErrors, UpsertProductResponse, UpsertProductResponses, UpsertPromptData, UpsertPromptError, UpsertPromptErrors, UpsertPromptResponse, UpsertPromptResponses, UpsertTaxonomyData, UpsertTaxonomyError, UpsertTaxonomyErrors, UpsertTaxonomyResponse, UpsertTaxonomyResponses, ValidateCustomDomainData, ValidateCustomDomainError, ValidateCustomDomainErrors, ValidateCustomDomainResponse, ValidateCustomDomainResponses, WorkspaceSummary, adminClaimTenant, adminDeleteTenant, adminFindByEmail, adminFindByOwner, adminGetTenant, adminGetUsage, adminReactivateTenant, adminResetCrawls, adminUpdateOwnerEmail, adminUpdateSubscription, adminUpdateTier, adminUpdateUsage, bulkDeletePosts, bulkDeleteProducts, bulkDeletePrompts, bulkDeleteTaxonomies, bulkDeleteThreads, bulkUpdateWebhookStatus, bulkUpsertPosts, bulkUpsertProducts, bulkUpsertPrompts, bulkUpsertTaxonomies, cancelCrawl, chat, clearDomainErrors, client, commitSearch, complianceCustomerDataRequest, complianceCustomerRedact, createApiKey, createClient, createConfig, createCustomDomain, createTenantWorkspace, createWebhook, deleteCredentials, deleteCustomDomain, deleteFeedback, deleteLiveAgentSchedule, deleteMcpConfig, deletePost, deletePostsByQuery, deleteProduct, deleteProductsByQuery, deletePrompt, deleteTaxonomiesByQuery, deleteTaxonomy, deleteTenant, deleteThread, deleteWebhook, deleteWorkspace, deprovision, discoverTools, endHandoff, enrollCrawlNotification, exportThreads, generateDomainConfig, getAnalyticsFeedback, getChatAnalytics, getChatWidgetConfig, getCrawlConfig, getCrawlHistory, getCrawlStatus, getCredentialStatus, getDomainErrorSummary, getDomainErrors, getDomainTemplates, getFeedbackAnalytics, getKnowledge, getLiveAgentSchedule, getLiveAgentStatus, getMcpConfig, getPost, getProduct, getProductRecommendations, getPrompt, getSearchAnalytics, getSearchWidgetConfig, getTaxonomy, getTenantStatus, getTenantUsage, getTenantUsageHistory, getTenantWhoami, getThread, getThreadAnalytics, getThreadFeedback, getThreadMessages, getUploadUrl, getWebhook, getWebhookStats, getWorkspaceDetails, getWorkspaceSettings, listApiKeys, listCustomDomains, listFeedback, listPostIds, listProductIds, listProducts, listPrompts, listSlackChannels, listTaxonomies, listTaxonomyIds, listTenantWorkspaces, listWebhooks, patchPost, patchProduct, provisionShopify, revokeApiKey, rotateApiKey, scrapePage, scrapeSinglePage, searchKnowledge, searchPosts, searchProducts, searchPrompts, searchSearches, searchThreads, startCrawl, storeCredentials, submitFeedback, testDomainConnection, testWebhook, updateChatWidgetConfig, updateCrawlConfig, updateCustomDomain, updateLiveAgentSchedule, updateMcpConfig, updateSearchWidgetConfig, updateTenantFeatures, updateWebhook, updateWorkspace, updateWorkspaceSettings, upsertPost, upsertProduct, upsertPrompt, upsertTaxonomy, validateCustomDomain, workspaceIdFromUrl };
|
|
9339
|
+
export { type AdminClaimTenantData, type AdminClaimTenantError, type AdminClaimTenantErrors, type AdminClaimTenantRequest, type AdminClaimTenantResponse, type AdminClaimTenantResponses, type AdminDeleteTenantData, type AdminDeleteTenantError, type AdminDeleteTenantErrors, type AdminDeleteTenantResponse, type AdminDeleteTenantResponses, type AdminFindByEmailData, type AdminFindByEmailError, type AdminFindByEmailErrors, type AdminFindByEmailResponse, type AdminFindByEmailResponses, type AdminFindByOwnerData, type AdminFindByOwnerError, type AdminFindByOwnerErrors, type AdminFindByOwnerResponse, type AdminFindByOwnerResponses, type AdminGetTenantData, type AdminGetTenantError, type AdminGetTenantErrors, type AdminGetTenantResponse, type AdminGetTenantResponses, type AdminGetUsageData, type AdminGetUsageError, type AdminGetUsageErrors, type AdminGetUsageResponse, type AdminGetUsageResponses, type AdminReactivateTenantData, type AdminReactivateTenantError, type AdminReactivateTenantErrors, type AdminReactivateTenantResponse, type AdminReactivateTenantResponses, type AdminResetCrawlsData, type AdminResetCrawlsError, type AdminResetCrawlsErrors, type AdminResetCrawlsResponse, type AdminResetCrawlsResponses, type AdminUpdateOwnerEmailData, type AdminUpdateOwnerEmailError, type AdminUpdateOwnerEmailErrors, type AdminUpdateOwnerEmailRequest, type AdminUpdateOwnerEmailResponse, type AdminUpdateOwnerEmailResponses, type AdminUpdateSubscriptionData, type AdminUpdateSubscriptionError, type AdminUpdateSubscriptionErrors, type AdminUpdateSubscriptionRequest, type AdminUpdateSubscriptionResponse, type AdminUpdateSubscriptionResponses, type AdminUpdateTierData, type AdminUpdateTierError, type AdminUpdateTierErrors, type AdminUpdateTierResponse, type AdminUpdateTierResponses, type AdminUpdateUsageData, type AdminUpdateUsageError, type AdminUpdateUsageErrors, type AdminUpdateUsageResponse, type AdminUpdateUsageResponses, type BulkDeletePostsData, type BulkDeletePostsError, type BulkDeletePostsErrors, type BulkDeletePostsResponse, type BulkDeletePostsResponses, type BulkDeleteProductsData, type BulkDeleteProductsError, type BulkDeleteProductsErrors, type BulkDeleteProductsResponse, type BulkDeleteProductsResponses, type BulkDeletePromptsData, type BulkDeletePromptsError, type BulkDeletePromptsErrors, type BulkDeletePromptsResponse, type BulkDeletePromptsResponses, type BulkDeleteTaxonomiesData, type BulkDeleteTaxonomiesError, type BulkDeleteTaxonomiesErrors, type BulkDeleteTaxonomiesResponse, type BulkDeleteTaxonomiesResponses, type BulkDeleteThreadsData, type BulkDeleteThreadsError, type BulkDeleteThreadsErrors, type BulkDeleteThreadsResponse, type BulkDeleteThreadsResponses, type BulkOperation, type BulkUpdateWebhookStatusData, type BulkUpdateWebhookStatusError, type BulkUpdateWebhookStatusErrors, type BulkUpdateWebhookStatusResponse, type BulkUpdateWebhookStatusResponses, type BulkUpsertPostsData, type BulkUpsertPostsError, type BulkUpsertPostsErrors, type BulkUpsertPostsResponse, type BulkUpsertPostsResponses, type BulkUpsertProductsData, type BulkUpsertProductsError, type BulkUpsertProductsErrors, type BulkUpsertProductsResponse, type BulkUpsertProductsResponses, type BulkUpsertPromptsData, type BulkUpsertPromptsError, type BulkUpsertPromptsErrors, type BulkUpsertPromptsResponse, type BulkUpsertPromptsResponses, type BulkUpsertTaxonomiesData, type BulkUpsertTaxonomiesError, type BulkUpsertTaxonomiesErrors, type BulkUpsertTaxonomiesResponse, type BulkUpsertTaxonomiesResponses, type BulkWebhookStatusInput, type CancelCrawlData, type CancelCrawlError, type CancelCrawlErrors, type CancelCrawlResponse, type CancelCrawlResponses, type ChatData, type ChatError, type ChatErrors, type ChatRequest, type ChatResponse, type ChatResponse2, type ChatResponses, type ChatStreamChunk, type ClearDomainErrorsData, type ClearDomainErrorsError, type ClearDomainErrorsErrors, type ClearDomainErrorsResponse, type ClearDomainErrorsResponses, type Client, type ClientOptions, type CommitSearchData, type CommitSearchError, type CommitSearchErrors, type CommitSearchResponse, type CommitSearchResponses, type ComplianceAuditResponse, type ComplianceCaller, type ComplianceCustomerDataRequestData, type ComplianceCustomerDataRequestError, type ComplianceCustomerDataRequestErrors, type ComplianceCustomerDataRequestResponse, type ComplianceCustomerDataRequestResponses, type ComplianceCustomerId, type ComplianceCustomerRedactData, type ComplianceCustomerRedactError, type ComplianceCustomerRedactErrors, type ComplianceCustomerRedactResponse, type ComplianceCustomerRedactResponses, type Config, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyErrors, type CreateApiKeyResponse, type CreateApiKeyResponses, type CreateCustomDomainData, type CreateCustomDomainError, type CreateCustomDomainErrors, type CreateCustomDomainResponse, type CreateCustomDomainResponses, type CreateKeyRequest, type CreateTenantWorkspaceData, type CreateTenantWorkspaceError, type CreateTenantWorkspaceErrors, type CreateTenantWorkspaceResponse, type CreateTenantWorkspaceResponses, type CreateWebhookData, type CreateWebhookError, type CreateWebhookErrors, type CreateWebhookInput, type CreateWebhookResponse, type CreateWebhookResponses, type CreateWorkspaceRequest, type CustomerDataRequest, type CustomerRedactRequest, type DeleteCredentialsData, type DeleteCredentialsError, type DeleteCredentialsErrors, type DeleteCredentialsResponse, type DeleteCredentialsResponses, type DeleteCustomDomainData, type DeleteCustomDomainError, type DeleteCustomDomainErrors, type DeleteCustomDomainResponse, type DeleteCustomDomainResponses, type DeleteFeedbackData, type DeleteFeedbackError, type DeleteFeedbackErrors, type DeleteFeedbackResponse, type DeleteFeedbackResponses, type DeleteLiveAgentScheduleData, type DeleteLiveAgentScheduleError, type DeleteLiveAgentScheduleErrors, type DeleteLiveAgentScheduleResponse, type DeleteLiveAgentScheduleResponses, type DeleteMcpConfigData, type DeleteMcpConfigError, type DeleteMcpConfigErrors, type DeleteMcpConfigResponse, type DeleteMcpConfigResponses, type DeletePostData, type DeletePostError, type DeletePostErrors, type DeletePostResponse, type DeletePostResponses, type DeletePostsByQueryData, type DeletePostsByQueryError, type DeletePostsByQueryErrors, type DeletePostsByQueryResponse, type DeletePostsByQueryResponses, type DeleteProductData, type DeleteProductError, type DeleteProductErrors, type DeleteProductResponse, type DeleteProductResponses, type DeleteProductsByQueryData, type DeleteProductsByQueryError, type DeleteProductsByQueryErrors, type DeleteProductsByQueryResponse, type DeleteProductsByQueryResponses, type DeletePromptData, type DeletePromptError, type DeletePromptErrors, type DeletePromptResponse, type DeletePromptResponses, type DeleteResponse, type DeleteTaxonomiesByQueryData, type DeleteTaxonomiesByQueryError, type DeleteTaxonomiesByQueryErrors, type DeleteTaxonomiesByQueryResponse, type DeleteTaxonomiesByQueryResponses, type DeleteTaxonomyData, type DeleteTaxonomyError, type DeleteTaxonomyErrors, type DeleteTaxonomyResponse, type DeleteTaxonomyResponses, type DeleteTenantData, type DeleteTenantError, type DeleteTenantErrors, type DeleteTenantResponse, type DeleteTenantResponses, type DeleteThreadData, type DeleteThreadError, type DeleteThreadErrors, type DeleteThreadResponse, type DeleteThreadResponses, type DeleteWebhookData, type DeleteWebhookError, type DeleteWebhookErrors, type DeleteWebhookResponse, type DeleteWebhookResponses, type DeleteWorkspaceData, type DeleteWorkspaceError, type DeleteWorkspaceErrors, type DeleteWorkspaceResponse, type DeleteWorkspaceResponses, type DeprovisionData, type DeprovisionError, type DeprovisionErrors, type DeprovisionRequest, type DeprovisionResponse, type DeprovisionResponses, type DeprovisionResult, type DiscoverToolsData, type DiscoverToolsError, type DiscoverToolsErrors, type DiscoverToolsResponse, type DiscoverToolsResponses, type EndHandoffData, type EndHandoffError, type EndHandoffErrors, type EndHandoffResponse, type EndHandoffResponses, type EnrollCrawlNotificationData, type EnrollCrawlNotificationError, type EnrollCrawlNotificationErrors, type EnrollCrawlNotificationRequest, type EnrollCrawlNotificationResponse, type EnrollCrawlNotificationResponses, type ErrorResponse, type ExportThreadsData, type ExportThreadsError, type ExportThreadsErrors, type ExportThreadsResponse, type ExportThreadsResponses, type FeedbackSubmission, type GenerateDomainConfigData, type GenerateDomainConfigError, type GenerateDomainConfigErrors, type GenerateDomainConfigResponse, type GenerateDomainConfigResponses, type GetAnalyticsFeedbackData, type GetAnalyticsFeedbackError, type GetAnalyticsFeedbackErrors, type GetAnalyticsFeedbackResponse, type GetAnalyticsFeedbackResponses, type GetChatAnalyticsData, type GetChatAnalyticsError, type GetChatAnalyticsErrors, type GetChatAnalyticsResponse, type GetChatAnalyticsResponses, type GetChatWidgetConfigData, type GetChatWidgetConfigError, type GetChatWidgetConfigErrors, type GetChatWidgetConfigResponse, type GetChatWidgetConfigResponses, type GetCrawlConfigData, type GetCrawlConfigError, type GetCrawlConfigErrors, type GetCrawlConfigResponse, type GetCrawlConfigResponses, type GetCrawlHistoryData, type GetCrawlHistoryError, type GetCrawlHistoryErrors, type GetCrawlHistoryResponse, type GetCrawlHistoryResponses, type GetCrawlStatusData, type GetCrawlStatusError, type GetCrawlStatusErrors, type GetCrawlStatusResponse, type GetCrawlStatusResponses, type GetCredentialStatusData, type GetCredentialStatusError, type GetCredentialStatusErrors, type GetCredentialStatusResponse, type GetCredentialStatusResponses, type GetDomainErrorSummaryData, type GetDomainErrorSummaryError, type GetDomainErrorSummaryErrors, type GetDomainErrorSummaryResponse, type GetDomainErrorSummaryResponses, type GetDomainErrorsData, type GetDomainErrorsError, type GetDomainErrorsErrors, type GetDomainErrorsResponse, type GetDomainErrorsResponses, type GetDomainTemplatesData, type GetDomainTemplatesError, type GetDomainTemplatesErrors, type GetDomainTemplatesResponse, type GetDomainTemplatesResponses, type GetFeedbackAnalyticsData, type GetFeedbackAnalyticsError, type GetFeedbackAnalyticsErrors, type GetFeedbackAnalyticsResponse, type GetFeedbackAnalyticsResponses, type GetKnowledgeData, type GetKnowledgeError, type GetKnowledgeErrors, type GetKnowledgeResponse, type GetKnowledgeResponses, type GetLiveAgentScheduleData, type GetLiveAgentScheduleError, type GetLiveAgentScheduleErrors, type GetLiveAgentScheduleResponse, type GetLiveAgentScheduleResponses, type GetLiveAgentStatusData, type GetLiveAgentStatusError, type GetLiveAgentStatusErrors, type GetLiveAgentStatusResponse, type GetLiveAgentStatusResponses, type GetMcpConfigData, type GetMcpConfigError, type GetMcpConfigErrors, type GetMcpConfigResponse, type GetMcpConfigResponses, type GetPostData, type GetPostError, type GetPostErrors, type GetPostResponse, type GetPostResponses, type GetProductData, type GetProductError, type GetProductErrors, type GetProductRecommendationsData, type GetProductRecommendationsError, type GetProductRecommendationsErrors, type GetProductRecommendationsResponse, type GetProductRecommendationsResponses, type GetProductResponse, type GetProductResponses, type GetPromptData, type GetPromptError, type GetPromptErrors, type GetPromptResponse, type GetPromptResponses, type GetSearchAnalyticsData, type GetSearchAnalyticsError, type GetSearchAnalyticsErrors, type GetSearchAnalyticsResponse, type GetSearchAnalyticsResponses, type GetSearchWidgetConfigData, type GetSearchWidgetConfigError, type GetSearchWidgetConfigErrors, type GetSearchWidgetConfigResponse, type GetSearchWidgetConfigResponses, type GetTaxonomyData, type GetTaxonomyError, type GetTaxonomyErrors, type GetTaxonomyResponse, type GetTaxonomyResponses, type GetTenantStatusData, type GetTenantStatusError, type GetTenantStatusErrors, type GetTenantStatusResponse, type GetTenantStatusResponses, type GetTenantUsageData, type GetTenantUsageError, type GetTenantUsageErrors, type GetTenantUsageHistoryData, type GetTenantUsageHistoryError, type GetTenantUsageHistoryErrors, type GetTenantUsageHistoryResponse, type GetTenantUsageHistoryResponses, type GetTenantUsageResponse, type GetTenantUsageResponses, type GetTenantWhoamiData, type GetTenantWhoamiError, type GetTenantWhoamiErrors, type GetTenantWhoamiResponse, type GetTenantWhoamiResponses, type GetThreadAnalyticsData, type GetThreadAnalyticsError, type GetThreadAnalyticsErrors, type GetThreadAnalyticsResponse, type GetThreadAnalyticsResponses, type GetThreadData, type GetThreadError, type GetThreadErrors, type GetThreadFeedbackData, type GetThreadFeedbackError, type GetThreadFeedbackErrors, type GetThreadFeedbackResponse, type GetThreadFeedbackResponses, type GetThreadMessagesData, type GetThreadMessagesError, type GetThreadMessagesErrors, type GetThreadMessagesResponse, type GetThreadMessagesResponses, type GetThreadResponse, type GetThreadResponses, type GetUploadUrlData, type GetUploadUrlError, type GetUploadUrlErrors, type GetUploadUrlRequest, type GetUploadUrlResponse, type GetUploadUrlResponses, type GetWebhookData, type GetWebhookError, type GetWebhookErrors, type GetWebhookResponse, type GetWebhookResponses, type GetWebhookStatsData, type GetWebhookStatsError, type GetWebhookStatsErrors, type GetWebhookStatsResponse, type GetWebhookStatsResponses, type GetWorkspaceDetailsData, type GetWorkspaceDetailsError, type GetWorkspaceDetailsErrors, type GetWorkspaceDetailsResponse, type GetWorkspaceDetailsResponses, type GetWorkspaceSettingsData, type GetWorkspaceSettingsError, type GetWorkspaceSettingsErrors, type GetWorkspaceSettingsResponse, type GetWorkspaceSettingsResponses, type ListApiKeysData, type ListApiKeysError, type ListApiKeysErrors, type ListApiKeysResponse, type ListApiKeysResponses, type ListCustomDomainsData, type ListCustomDomainsError, type ListCustomDomainsErrors, type ListCustomDomainsResponse, type ListCustomDomainsResponses, type ListFeedbackData, type ListFeedbackError, type ListFeedbackErrors, type ListFeedbackResponse, type ListFeedbackResponses, type ListPostIdsData, type ListPostIdsError, type ListPostIdsErrors, type ListPostIdsResponse, type ListPostIdsResponses, type ListProductIdsData, type ListProductIdsError, type ListProductIdsErrors, type ListProductIdsResponse, type ListProductIdsResponses, type ListProductsData, type ListProductsError, type ListProductsErrors, type ListProductsResponse, type ListProductsResponses, type ListPromptsData, type ListPromptsError, type ListPromptsErrors, type ListPromptsResponse, type ListPromptsResponses, type ListSlackChannelsData, type ListSlackChannelsError, type ListSlackChannelsErrors, type ListSlackChannelsResponse, type ListSlackChannelsResponses, type ListTaxonomiesData, type ListTaxonomiesError, type ListTaxonomiesErrors, type ListTaxonomiesResponse, type ListTaxonomiesResponses, type ListTaxonomyIdsData, type ListTaxonomyIdsError, type ListTaxonomyIdsErrors, type ListTaxonomyIdsResponse, type ListTaxonomyIdsResponses, type ListTenantWorkspacesData, type ListTenantWorkspacesError, type ListTenantWorkspacesErrors, type ListTenantWorkspacesResponse, type ListTenantWorkspacesResponses, type ListWebhooksData, type ListWebhooksError, type ListWebhooksErrors, type ListWebhooksResponse, type ListWebhooksResponses, Options, type Pagination, type PatchPostData, type PatchPostError, type PatchPostErrors, type PatchPostResponse, type PatchPostResponses, type PatchProductData, type PatchProductError, type PatchProductErrors, type PatchProductResponse, type PatchProductResponses, type Post, type PostInput, type PostSearchRequest, type Product, type ProductInput, type ProductSearchRequest, type Prompt, type PromptInput, type ProvisionResult, type ProvisionShopifyData, type ProvisionShopifyError, type ProvisionShopifyErrors, type ProvisionShopifyResponse, type ProvisionShopifyResponses, type RecommendationRequest, type RequestOptions, type RequestResult, type RevokeApiKeyData, type RevokeApiKeyError, type RevokeApiKeyErrors, type RevokeApiKeyResponse, type RevokeApiKeyResponses, type RotateApiKeyData, type RotateApiKeyError, type RotateApiKeyErrors, type RotateApiKeyResponse, type RotateApiKeyResponses, type RotateKeyRequest, type ScrapePageData, type ScrapePageError, type ScrapePageErrors, type ScrapePageResponse, type ScrapePageResponses, type ScrapeRequest, type ScrapeSinglePageData, type ScrapeSinglePageError, type ScrapeSinglePageErrors, type ScrapeSinglePageResponse, type ScrapeSinglePageResponses, type SearchKnowledgeData, type SearchKnowledgeError, type SearchKnowledgeErrors, type SearchKnowledgeResponse, type SearchKnowledgeResponses, type SearchPostsData, type SearchPostsError, type SearchPostsErrors, type SearchPostsResponse, type SearchPostsResponses, type SearchProductsData, type SearchProductsError, type SearchProductsErrors, type SearchProductsResponse, type SearchProductsResponses, type SearchPromptsData, type SearchPromptsError, type SearchPromptsErrors, type SearchPromptsResponse, type SearchPromptsResponses, type SearchSearchesData, type SearchSearchesError, type SearchSearchesErrors, type SearchSearchesResponse, type SearchSearchesResponses, type SearchThreadsData, type SearchThreadsError, type SearchThreadsErrors, type SearchThreadsResponse, type SearchThreadsResponses, type ShopifyProvisionRequest, type SingleScrapeRequest, type StartCrawlData, type StartCrawlError, type StartCrawlErrors, type StartCrawlRequest, type StartCrawlResponse, type StartCrawlResponses, type StoreCredentialsData, type StoreCredentialsError, type StoreCredentialsErrors, type StoreCredentialsResponse, type StoreCredentialsResponses, type StoreLiveAgentCredentialsRequest, type SubmitFeedbackData, type SubmitFeedbackError, type SubmitFeedbackErrors, type SubmitFeedbackResponse, type SubmitFeedbackResponses, type Taxonomy, type TaxonomyInput, type TenantStatus, type TenantWhoami, type TestDomainConnectionData, type TestDomainConnectionError, type TestDomainConnectionErrors, type TestDomainConnectionResponse, type TestDomainConnectionResponses, type TestWebhookData, type TestWebhookError, type TestWebhookErrors, type TestWebhookResponse, type TestWebhookResponses, type ThreadBulkDeleteRequest, type ThreadExportRequest, type ThreadSearchRequest, type UpdateChatWidgetConfigData, type UpdateChatWidgetConfigError, type UpdateChatWidgetConfigErrors, type UpdateChatWidgetConfigResponse, type UpdateChatWidgetConfigResponses, type UpdateCrawlConfigData, type UpdateCrawlConfigError, type UpdateCrawlConfigErrors, type UpdateCrawlConfigRequest, type UpdateCrawlConfigResponse, type UpdateCrawlConfigResponses, type UpdateCustomDomainData, type UpdateCustomDomainError, type UpdateCustomDomainErrors, type UpdateCustomDomainResponse, type UpdateCustomDomainResponses, type UpdateLiveAgentScheduleData, type UpdateLiveAgentScheduleError, type UpdateLiveAgentScheduleErrors, type UpdateLiveAgentScheduleRequest, type UpdateLiveAgentScheduleResponse, type UpdateLiveAgentScheduleResponses, type UpdateMcpConfigData, type UpdateMcpConfigError, type UpdateMcpConfigErrors, type UpdateMcpConfigRequest, type UpdateMcpConfigResponse, type UpdateMcpConfigResponses, type UpdateSearchWidgetConfigData, type UpdateSearchWidgetConfigError, type UpdateSearchWidgetConfigErrors, type UpdateSearchWidgetConfigResponse, type UpdateSearchWidgetConfigResponses, type UpdateTenantFeaturesData, type UpdateTenantFeaturesError, type UpdateTenantFeaturesErrors, type UpdateTenantFeaturesRequest, type UpdateTenantFeaturesResponse, type UpdateTenantFeaturesResponses, type UpdateWebhookData, type UpdateWebhookError, type UpdateWebhookErrors, type UpdateWebhookInput, type UpdateWebhookResponse, type UpdateWebhookResponses, type UpdateWorkspaceData, type UpdateWorkspaceError, type UpdateWorkspaceErrors, type UpdateWorkspaceRequest, type UpdateWorkspaceResponse, type UpdateWorkspaceResponses, type UpdateWorkspaceSettingsData, type UpdateWorkspaceSettingsError, type UpdateWorkspaceSettingsErrors, type UpdateWorkspaceSettingsResponse, type UpdateWorkspaceSettingsResponses, type UpsertPostData, type UpsertPostError, type UpsertPostErrors, type UpsertPostResponse, type UpsertPostResponses, type UpsertProductData, type UpsertProductError, type UpsertProductErrors, type UpsertProductResponse, type UpsertProductResponses, type UpsertPromptData, type UpsertPromptError, type UpsertPromptErrors, type UpsertPromptResponse, type UpsertPromptResponses, type UpsertTaxonomyData, type UpsertTaxonomyError, type UpsertTaxonomyErrors, type UpsertTaxonomyResponse, type UpsertTaxonomyResponses, type ValidateCustomDomainData, type ValidateCustomDomainError, type ValidateCustomDomainErrors, type ValidateCustomDomainResponse, type ValidateCustomDomainResponses, type WorkspaceSummary, adminClaimTenant, adminDeleteTenant, adminFindByEmail, adminFindByOwner, adminGetTenant, adminGetUsage, adminReactivateTenant, adminResetCrawls, adminUpdateOwnerEmail, adminUpdateSubscription, adminUpdateTier, adminUpdateUsage, bulkDeletePosts, bulkDeleteProducts, bulkDeletePrompts, bulkDeleteTaxonomies, bulkDeleteThreads, bulkUpdateWebhookStatus, bulkUpsertPosts, bulkUpsertProducts, bulkUpsertPrompts, bulkUpsertTaxonomies, cancelCrawl, chat, clearDomainErrors, client, commitSearch, complianceCustomerDataRequest, complianceCustomerRedact, createApiKey, createClient, createConfig, createCustomDomain, createTenantWorkspace, createWebhook, deleteCredentials, deleteCustomDomain, deleteFeedback, deleteLiveAgentSchedule, deleteMcpConfig, deletePost, deletePostsByQuery, deleteProduct, deleteProductsByQuery, deletePrompt, deleteTaxonomiesByQuery, deleteTaxonomy, deleteTenant, deleteThread, deleteWebhook, deleteWorkspace, deprovision, discoverTools, endHandoff, enrollCrawlNotification, exportThreads, generateDomainConfig, getAnalyticsFeedback, getChatAnalytics, getChatWidgetConfig, getCrawlConfig, getCrawlHistory, getCrawlStatus, getCredentialStatus, getDomainErrorSummary, getDomainErrors, getDomainTemplates, getFeedbackAnalytics, getKnowledge, getLiveAgentSchedule, getLiveAgentStatus, getMcpConfig, getPost, getProduct, getProductRecommendations, getPrompt, getSearchAnalytics, getSearchWidgetConfig, getTaxonomy, getTenantStatus, getTenantUsage, getTenantUsageHistory, getTenantWhoami, getThread, getThreadAnalytics, getThreadFeedback, getThreadMessages, getUploadUrl, getWebhook, getWebhookStats, getWorkspaceDetails, getWorkspaceSettings, listApiKeys, listCustomDomains, listFeedback, listPostIds, listProductIds, listProducts, listPrompts, listSlackChannels, listTaxonomies, listTaxonomyIds, listTenantWorkspaces, listWebhooks, patchPost, patchProduct, provisionShopify, revokeApiKey, rotateApiKey, scrapePage, scrapeSinglePage, searchKnowledge, searchPosts, searchProducts, searchPrompts, searchSearches, searchThreads, startCrawl, storeCredentials, submitFeedback, testDomainConnection, testWebhook, updateChatWidgetConfig, updateCrawlConfig, updateCustomDomain, updateLiveAgentSchedule, updateMcpConfig, updateSearchWidgetConfig, updateTenantFeatures, updateWebhook, updateWorkspace, updateWorkspaceSettings, upsertPost, upsertProduct, upsertPrompt, upsertTaxonomy, validateCustomDomain, workspaceIdFromUrl };
|
|
8086
9340
|
//# sourceMappingURL=index.d.mts.map
|