@avallon-labs/sdk 26.3.0-staging.695 → 26.5.0-staging.708
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +201 -4
- package/dist/index.js +173 -61
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import useSwr19 from 'swr';
|
|
2
2
|
import useSWRMutation3 from 'swr/mutation';
|
|
3
3
|
|
|
4
4
|
// src/fetcher.ts
|
|
@@ -95,6 +95,47 @@ function base64UrlEncode(buffer) {
|
|
|
95
95
|
}
|
|
96
96
|
return btoa(binary).replace(/\+/g, "-").replace(/\//g, "_").replace(/=+$/, "");
|
|
97
97
|
}
|
|
98
|
+
var getGetAnalyticsTimeSeriesUrl = (params) => {
|
|
99
|
+
const normalizedParams = new URLSearchParams();
|
|
100
|
+
Object.entries(params || {}).forEach(([key, value]) => {
|
|
101
|
+
if (value !== void 0) {
|
|
102
|
+
if (typeof value === "object" && value !== null && !Array.isArray(value)) {
|
|
103
|
+
for (const [sk, sv] of Object.entries(value)) {
|
|
104
|
+
if (sv !== void 0) normalizedParams.append(`${key}[${sk}]`, String(sv));
|
|
105
|
+
}
|
|
106
|
+
} else {
|
|
107
|
+
normalizedParams.append(key, value === null ? "null" : String(value));
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
});
|
|
111
|
+
const stringifiedParams = normalizedParams.toString();
|
|
112
|
+
return stringifiedParams.length > 0 ? `/v1/analytics/timeseries?${stringifiedParams}` : `/v1/analytics/timeseries`;
|
|
113
|
+
};
|
|
114
|
+
var getAnalyticsTimeSeries = async (params, options) => {
|
|
115
|
+
return customFetch(
|
|
116
|
+
getGetAnalyticsTimeSeriesUrl(params),
|
|
117
|
+
{
|
|
118
|
+
...options,
|
|
119
|
+
method: "GET"
|
|
120
|
+
}
|
|
121
|
+
);
|
|
122
|
+
};
|
|
123
|
+
var getGetAnalyticsTimeSeriesKey = (params) => [`/v1/analytics/timeseries`, ...params ? [params] : []];
|
|
124
|
+
var useGetAnalyticsTimeSeries = (params, options) => {
|
|
125
|
+
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
126
|
+
const isEnabled = swrOptions?.enabled !== false;
|
|
127
|
+
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetAnalyticsTimeSeriesKey(params) : null);
|
|
128
|
+
const swrFn = () => getAnalyticsTimeSeries(params, requestOptions);
|
|
129
|
+
const query = useSwr19(
|
|
130
|
+
swrKey,
|
|
131
|
+
swrFn,
|
|
132
|
+
swrOptions
|
|
133
|
+
);
|
|
134
|
+
return {
|
|
135
|
+
swrKey,
|
|
136
|
+
...query
|
|
137
|
+
};
|
|
138
|
+
};
|
|
98
139
|
var getListApiKeysUrl = (params) => {
|
|
99
140
|
const normalizedParams = new URLSearchParams();
|
|
100
141
|
Object.entries(params || {}).forEach(([key, value]) => {
|
|
@@ -123,7 +164,7 @@ var useListApiKeys = (params, options) => {
|
|
|
123
164
|
const isEnabled = swrOptions?.enabled !== false;
|
|
124
165
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListApiKeysKey(params) : null);
|
|
125
166
|
const swrFn = () => listApiKeys(params, requestOptions);
|
|
126
|
-
const query =
|
|
167
|
+
const query = useSwr19(
|
|
127
168
|
swrKey,
|
|
128
169
|
swrFn,
|
|
129
170
|
swrOptions
|
|
@@ -267,7 +308,7 @@ var useListArtifacts = (params, options) => {
|
|
|
267
308
|
const isEnabled = swrOptions?.enabled !== false;
|
|
268
309
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListArtifactsKey(params) : null);
|
|
269
310
|
const swrFn = () => listArtifacts(params, requestOptions);
|
|
270
|
-
const query =
|
|
311
|
+
const query = useSwr19(
|
|
271
312
|
swrKey,
|
|
272
313
|
swrFn,
|
|
273
314
|
swrOptions
|
|
@@ -292,7 +333,7 @@ var useGetArtifact = (id, options) => {
|
|
|
292
333
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
293
334
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetArtifactKey(id) : null);
|
|
294
335
|
const swrFn = () => getArtifact(id, requestOptions);
|
|
295
|
-
const query =
|
|
336
|
+
const query = useSwr19(
|
|
296
337
|
swrKey,
|
|
297
338
|
swrFn,
|
|
298
339
|
swrOptions
|
|
@@ -333,7 +374,7 @@ var useGetArtifactMetadataKeys = (params, options) => {
|
|
|
333
374
|
const isEnabled = swrOptions?.enabled !== false;
|
|
334
375
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetArtifactMetadataKeysKey(params) : null);
|
|
335
376
|
const swrFn = () => getArtifactMetadataKeys(params, requestOptions);
|
|
336
|
-
const query =
|
|
377
|
+
const query = useSwr19(
|
|
337
378
|
swrKey,
|
|
338
379
|
swrFn,
|
|
339
380
|
swrOptions
|
|
@@ -533,7 +574,7 @@ var useGetOAuthUrl = (params, options) => {
|
|
|
533
574
|
const isEnabled = swrOptions?.enabled !== false;
|
|
534
575
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetOAuthUrlKey(params) : null);
|
|
535
576
|
const swrFn = () => getOAuthUrl(params, requestOptions);
|
|
536
|
-
const query =
|
|
577
|
+
const query = useSwr19(
|
|
537
578
|
swrKey,
|
|
538
579
|
swrFn,
|
|
539
580
|
swrOptions
|
|
@@ -585,7 +626,7 @@ var useGetPartnerJwks = (partner, options) => {
|
|
|
585
626
|
const isEnabled = swrOptions?.enabled !== false && !!partner;
|
|
586
627
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetPartnerJwksKey(partner) : null);
|
|
587
628
|
const swrFn = () => getPartnerJwks(partner, requestOptions);
|
|
588
|
-
const query =
|
|
629
|
+
const query = useSwr19(
|
|
589
630
|
swrKey,
|
|
590
631
|
swrFn,
|
|
591
632
|
swrOptions
|
|
@@ -705,7 +746,7 @@ var useExperimentalGetOAuthUrl = (params, options) => {
|
|
|
705
746
|
const isEnabled = swrOptions?.enabled !== false;
|
|
706
747
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getExperimentalGetOAuthUrlKey(params) : null);
|
|
707
748
|
const swrFn = () => experimentalGetOAuthUrl(params, requestOptions);
|
|
708
|
-
const query =
|
|
749
|
+
const query = useSwr19(
|
|
709
750
|
swrKey,
|
|
710
751
|
swrFn,
|
|
711
752
|
swrOptions
|
|
@@ -797,7 +838,7 @@ var useListCallFeedback = (id, params, options) => {
|
|
|
797
838
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
798
839
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListCallFeedbackKey(id, params) : null);
|
|
799
840
|
const swrFn = () => listCallFeedback(id, params, requestOptions);
|
|
800
|
-
const query =
|
|
841
|
+
const query = useSwr19(
|
|
801
842
|
swrKey,
|
|
802
843
|
swrFn,
|
|
803
844
|
swrOptions
|
|
@@ -864,7 +905,7 @@ var useListCalls = (params, options) => {
|
|
|
864
905
|
const isEnabled = swrOptions?.enabled !== false;
|
|
865
906
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListCallsKey(params) : null);
|
|
866
907
|
const swrFn = () => listCalls(params, requestOptions);
|
|
867
|
-
const query =
|
|
908
|
+
const query = useSwr19(
|
|
868
909
|
swrKey,
|
|
869
910
|
swrFn,
|
|
870
911
|
swrOptions
|
|
@@ -902,7 +943,7 @@ var useGetCall = (id, params, options) => {
|
|
|
902
943
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
903
944
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetCallKey(id, params) : null);
|
|
904
945
|
const swrFn = () => getCall(id, params, requestOptions);
|
|
905
|
-
const query =
|
|
946
|
+
const query = useSwr19(
|
|
906
947
|
swrKey,
|
|
907
948
|
swrFn,
|
|
908
949
|
swrOptions
|
|
@@ -927,7 +968,7 @@ var useGetCallEvaluation = (id, options) => {
|
|
|
927
968
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
928
969
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetCallEvaluationKey(id) : null);
|
|
929
970
|
const swrFn = () => getCallEvaluation(id, requestOptions);
|
|
930
|
-
const query =
|
|
971
|
+
const query = useSwr19(
|
|
931
972
|
swrKey,
|
|
932
973
|
swrFn,
|
|
933
974
|
swrOptions
|
|
@@ -965,7 +1006,7 @@ var useGetCallAnalytics = (params, options) => {
|
|
|
965
1006
|
const isEnabled = swrOptions?.enabled !== false;
|
|
966
1007
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetCallAnalyticsKey(params) : null);
|
|
967
1008
|
const swrFn = () => getCallAnalytics(params, requestOptions);
|
|
968
|
-
const query =
|
|
1009
|
+
const query = useSwr19(
|
|
969
1010
|
swrKey,
|
|
970
1011
|
swrFn,
|
|
971
1012
|
swrOptions
|
|
@@ -1003,7 +1044,45 @@ var useListCases = (params, options) => {
|
|
|
1003
1044
|
const isEnabled = swrOptions?.enabled !== false;
|
|
1004
1045
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListCasesKey(params) : null);
|
|
1005
1046
|
const swrFn = () => listCases(params, requestOptions);
|
|
1006
|
-
const query =
|
|
1047
|
+
const query = useSwr19(
|
|
1048
|
+
swrKey,
|
|
1049
|
+
swrFn,
|
|
1050
|
+
swrOptions
|
|
1051
|
+
);
|
|
1052
|
+
return {
|
|
1053
|
+
swrKey,
|
|
1054
|
+
...query
|
|
1055
|
+
};
|
|
1056
|
+
};
|
|
1057
|
+
var getSearchCasesUrl = (params) => {
|
|
1058
|
+
const normalizedParams = new URLSearchParams();
|
|
1059
|
+
Object.entries(params || {}).forEach(([key, value]) => {
|
|
1060
|
+
if (value !== void 0) {
|
|
1061
|
+
if (typeof value === "object" && value !== null && !Array.isArray(value)) {
|
|
1062
|
+
for (const [sk, sv] of Object.entries(value)) {
|
|
1063
|
+
if (sv !== void 0) normalizedParams.append(`${key}[${sk}]`, String(sv));
|
|
1064
|
+
}
|
|
1065
|
+
} else {
|
|
1066
|
+
normalizedParams.append(key, value === null ? "null" : String(value));
|
|
1067
|
+
}
|
|
1068
|
+
}
|
|
1069
|
+
});
|
|
1070
|
+
const stringifiedParams = normalizedParams.toString();
|
|
1071
|
+
return stringifiedParams.length > 0 ? `/v1/cases/search?${stringifiedParams}` : `/v1/cases/search`;
|
|
1072
|
+
};
|
|
1073
|
+
var searchCases = async (params, options) => {
|
|
1074
|
+
return customFetch(getSearchCasesUrl(params), {
|
|
1075
|
+
...options,
|
|
1076
|
+
method: "GET"
|
|
1077
|
+
});
|
|
1078
|
+
};
|
|
1079
|
+
var getSearchCasesKey = (params) => [`/v1/cases/search`, ...params ? [params] : []];
|
|
1080
|
+
var useSearchCases = (params, options) => {
|
|
1081
|
+
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1082
|
+
const isEnabled = swrOptions?.enabled !== false;
|
|
1083
|
+
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getSearchCasesKey(params) : null);
|
|
1084
|
+
const swrFn = () => searchCases(params, requestOptions);
|
|
1085
|
+
const query = useSwr19(
|
|
1007
1086
|
swrKey,
|
|
1008
1087
|
swrFn,
|
|
1009
1088
|
swrOptions
|
|
@@ -1028,7 +1107,7 @@ var useGetCase = (id, options) => {
|
|
|
1028
1107
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
1029
1108
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetCaseKey(id) : null);
|
|
1030
1109
|
const swrFn = () => getCase(id, requestOptions);
|
|
1031
|
-
const query =
|
|
1110
|
+
const query = useSwr19(
|
|
1032
1111
|
swrKey,
|
|
1033
1112
|
swrFn,
|
|
1034
1113
|
swrOptions
|
|
@@ -1093,7 +1172,7 @@ var useListChatAgents = (params, options) => {
|
|
|
1093
1172
|
const isEnabled = swrOptions?.enabled !== false;
|
|
1094
1173
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListChatAgentsKey(params) : null);
|
|
1095
1174
|
const swrFn = () => listChatAgents(params, requestOptions);
|
|
1096
|
-
const query =
|
|
1175
|
+
const query = useSwr19(
|
|
1097
1176
|
swrKey,
|
|
1098
1177
|
swrFn,
|
|
1099
1178
|
swrOptions
|
|
@@ -1118,7 +1197,7 @@ var useGetChatAgent = (chatAgentId, options) => {
|
|
|
1118
1197
|
const isEnabled = swrOptions?.enabled !== false && !!chatAgentId;
|
|
1119
1198
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetChatAgentKey(chatAgentId) : null);
|
|
1120
1199
|
const swrFn = () => getChatAgent(chatAgentId, requestOptions);
|
|
1121
|
-
const query =
|
|
1200
|
+
const query = useSwr19(
|
|
1122
1201
|
swrKey,
|
|
1123
1202
|
swrFn,
|
|
1124
1203
|
swrOptions
|
|
@@ -1170,7 +1249,7 @@ var useGetChatAgentPrompt = (chatAgentId, options) => {
|
|
|
1170
1249
|
const isEnabled = swrOptions?.enabled !== false && !!chatAgentId;
|
|
1171
1250
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetChatAgentPromptKey(chatAgentId) : null);
|
|
1172
1251
|
const swrFn = () => getChatAgentPrompt(chatAgentId, requestOptions);
|
|
1173
|
-
const query =
|
|
1252
|
+
const query = useSwr19(
|
|
1174
1253
|
swrKey,
|
|
1175
1254
|
swrFn,
|
|
1176
1255
|
swrOptions
|
|
@@ -1255,7 +1334,7 @@ var useGetChat = (chatId, options) => {
|
|
|
1255
1334
|
const isEnabled = swrOptions?.enabled !== false && !!chatId;
|
|
1256
1335
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetChatKey(chatId) : null);
|
|
1257
1336
|
const swrFn = () => getChat(chatId, requestOptions);
|
|
1258
|
-
const query =
|
|
1337
|
+
const query = useSwr19(
|
|
1259
1338
|
swrKey,
|
|
1260
1339
|
swrFn,
|
|
1261
1340
|
swrOptions
|
|
@@ -1280,7 +1359,7 @@ var useGetPublicChatAgent = (chatAgentId, options) => {
|
|
|
1280
1359
|
const isEnabled = swrOptions?.enabled !== false && !!chatAgentId;
|
|
1281
1360
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetPublicChatAgentKey(chatAgentId) : null);
|
|
1282
1361
|
const swrFn = () => getPublicChatAgent(chatAgentId, requestOptions);
|
|
1283
|
-
const query =
|
|
1362
|
+
const query = useSwr19(
|
|
1284
1363
|
swrKey,
|
|
1285
1364
|
swrFn,
|
|
1286
1365
|
swrOptions
|
|
@@ -1345,7 +1424,7 @@ var useListChats = (params, options) => {
|
|
|
1345
1424
|
const isEnabled = swrOptions?.enabled !== false;
|
|
1346
1425
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListChatsKey(params) : null);
|
|
1347
1426
|
const swrFn = () => listChats(params, requestOptions);
|
|
1348
|
-
const query =
|
|
1427
|
+
const query = useSwr19(
|
|
1349
1428
|
swrKey,
|
|
1350
1429
|
swrFn,
|
|
1351
1430
|
swrOptions
|
|
@@ -1383,7 +1462,7 @@ var useListChatMessages = (chatId, params, options) => {
|
|
|
1383
1462
|
const isEnabled = swrOptions?.enabled !== false && !!chatId;
|
|
1384
1463
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListChatMessagesKey(chatId, params) : null);
|
|
1385
1464
|
const swrFn = () => listChatMessages(chatId, params, requestOptions);
|
|
1386
|
-
const query =
|
|
1465
|
+
const query = useSwr19(
|
|
1387
1466
|
swrKey,
|
|
1388
1467
|
swrFn,
|
|
1389
1468
|
swrOptions
|
|
@@ -1448,7 +1527,7 @@ var useListEmails = (params, options) => {
|
|
|
1448
1527
|
const isEnabled = swrOptions?.enabled !== false;
|
|
1449
1528
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListEmailsKey(params) : null);
|
|
1450
1529
|
const swrFn = () => listEmails(params, requestOptions);
|
|
1451
|
-
const query =
|
|
1530
|
+
const query = useSwr19(
|
|
1452
1531
|
swrKey,
|
|
1453
1532
|
swrFn,
|
|
1454
1533
|
swrOptions
|
|
@@ -1473,7 +1552,7 @@ var useGetEmail = (emailId, options) => {
|
|
|
1473
1552
|
const isEnabled = swrOptions?.enabled !== false && !!emailId;
|
|
1474
1553
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetEmailKey(emailId) : null);
|
|
1475
1554
|
const swrFn = () => getEmail(emailId, requestOptions);
|
|
1476
|
-
const query =
|
|
1555
|
+
const query = useSwr19(
|
|
1477
1556
|
swrKey,
|
|
1478
1557
|
swrFn,
|
|
1479
1558
|
swrOptions
|
|
@@ -1511,7 +1590,7 @@ var useListEmailThreads = (params, options) => {
|
|
|
1511
1590
|
const isEnabled = swrOptions?.enabled !== false;
|
|
1512
1591
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListEmailThreadsKey(params) : null);
|
|
1513
1592
|
const swrFn = () => listEmailThreads(params, requestOptions);
|
|
1514
|
-
const query =
|
|
1593
|
+
const query = useSwr19(
|
|
1515
1594
|
swrKey,
|
|
1516
1595
|
swrFn,
|
|
1517
1596
|
swrOptions
|
|
@@ -1603,7 +1682,7 @@ var useListExtractorJobs = (params, options) => {
|
|
|
1603
1682
|
const isEnabled = swrOptions?.enabled !== false;
|
|
1604
1683
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListExtractorJobsKey(params) : null);
|
|
1605
1684
|
const swrFn = () => listExtractorJobs(params, requestOptions);
|
|
1606
|
-
const query =
|
|
1685
|
+
const query = useSwr19(
|
|
1607
1686
|
swrKey,
|
|
1608
1687
|
swrFn,
|
|
1609
1688
|
swrOptions
|
|
@@ -1655,7 +1734,7 @@ var useGetExtractorJob = (id, options) => {
|
|
|
1655
1734
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
1656
1735
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetExtractorJobKey(id) : null);
|
|
1657
1736
|
const swrFn = () => getExtractorJob(id, requestOptions);
|
|
1658
|
-
const query =
|
|
1737
|
+
const query = useSwr19(
|
|
1659
1738
|
swrKey,
|
|
1660
1739
|
swrFn,
|
|
1661
1740
|
swrOptions
|
|
@@ -1720,7 +1799,7 @@ var useListExtractors = (params, options) => {
|
|
|
1720
1799
|
const isEnabled = swrOptions?.enabled !== false;
|
|
1721
1800
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListExtractorsKey(params) : null);
|
|
1722
1801
|
const swrFn = () => listExtractors(params, requestOptions);
|
|
1723
|
-
const query =
|
|
1802
|
+
const query = useSwr19(
|
|
1724
1803
|
swrKey,
|
|
1725
1804
|
swrFn,
|
|
1726
1805
|
swrOptions
|
|
@@ -1745,7 +1824,7 @@ var useGetExtractor = (id, options) => {
|
|
|
1745
1824
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
1746
1825
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetExtractorKey(id) : null);
|
|
1747
1826
|
const swrFn = () => getExtractor(id, requestOptions);
|
|
1748
|
-
const query =
|
|
1827
|
+
const query = useSwr19(
|
|
1749
1828
|
swrKey,
|
|
1750
1829
|
swrFn,
|
|
1751
1830
|
swrOptions
|
|
@@ -1797,7 +1876,7 @@ var useGetExtract = (id, options) => {
|
|
|
1797
1876
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
1798
1877
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetExtractKey(id) : null);
|
|
1799
1878
|
const swrFn = () => getExtract(id, requestOptions);
|
|
1800
|
-
const query =
|
|
1879
|
+
const query = useSwr19(
|
|
1801
1880
|
swrKey,
|
|
1802
1881
|
swrFn,
|
|
1803
1882
|
swrOptions
|
|
@@ -1822,7 +1901,7 @@ var useGetExtractCitations = (id, options) => {
|
|
|
1822
1901
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
1823
1902
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetExtractCitationsKey(id) : null);
|
|
1824
1903
|
const swrFn = () => getExtractCitations(id, requestOptions);
|
|
1825
|
-
const query =
|
|
1904
|
+
const query = useSwr19(
|
|
1826
1905
|
swrKey,
|
|
1827
1906
|
swrFn,
|
|
1828
1907
|
swrOptions
|
|
@@ -1860,7 +1939,7 @@ var useListExtracts = (params, options) => {
|
|
|
1860
1939
|
const isEnabled = swrOptions?.enabled !== false;
|
|
1861
1940
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListExtractsKey(params) : null);
|
|
1862
1941
|
const swrFn = () => listExtracts(params, requestOptions);
|
|
1863
|
-
const query =
|
|
1942
|
+
const query = useSwr19(
|
|
1864
1943
|
swrKey,
|
|
1865
1944
|
swrFn,
|
|
1866
1945
|
swrOptions
|
|
@@ -1898,7 +1977,7 @@ var useCheckInboxAvailability = (params, options) => {
|
|
|
1898
1977
|
const isEnabled = swrOptions?.enabled !== false;
|
|
1899
1978
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getCheckInboxAvailabilityKey(params) : null);
|
|
1900
1979
|
const swrFn = () => checkInboxAvailability(params, requestOptions);
|
|
1901
|
-
const query =
|
|
1980
|
+
const query = useSwr19(
|
|
1902
1981
|
swrKey,
|
|
1903
1982
|
swrFn,
|
|
1904
1983
|
swrOptions
|
|
@@ -1963,7 +2042,7 @@ var useListInboxes = (params, options) => {
|
|
|
1963
2042
|
const isEnabled = swrOptions?.enabled !== false;
|
|
1964
2043
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListInboxesKey(params) : null);
|
|
1965
2044
|
const swrFn = () => listInboxes(params, requestOptions);
|
|
1966
|
-
const query =
|
|
2045
|
+
const query = useSwr19(
|
|
1967
2046
|
swrKey,
|
|
1968
2047
|
swrFn,
|
|
1969
2048
|
swrOptions
|
|
@@ -2055,7 +2134,7 @@ var useListJobs = (params, options) => {
|
|
|
2055
2134
|
const isEnabled = swrOptions?.enabled !== false;
|
|
2056
2135
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListJobsKey(params) : null);
|
|
2057
2136
|
const swrFn = () => listJobs(params, requestOptions);
|
|
2058
|
-
const query =
|
|
2137
|
+
const query = useSwr19(
|
|
2059
2138
|
swrKey,
|
|
2060
2139
|
swrFn,
|
|
2061
2140
|
swrOptions
|
|
@@ -2105,7 +2184,7 @@ var useGetProfile = (options) => {
|
|
|
2105
2184
|
const isEnabled = swrOptions?.enabled !== false;
|
|
2106
2185
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetProfileKey() : null);
|
|
2107
2186
|
const swrFn = () => getProfile(requestOptions);
|
|
2108
|
-
const query =
|
|
2187
|
+
const query = useSwr19(
|
|
2109
2188
|
swrKey,
|
|
2110
2189
|
swrFn,
|
|
2111
2190
|
swrOptions
|
|
@@ -2130,7 +2209,7 @@ var useListTeamMembers = (options) => {
|
|
|
2130
2209
|
const isEnabled = swrOptions?.enabled !== false;
|
|
2131
2210
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListTeamMembersKey() : null);
|
|
2132
2211
|
const swrFn = () => listTeamMembers(requestOptions);
|
|
2133
|
-
const query =
|
|
2212
|
+
const query = useSwr19(
|
|
2134
2213
|
swrKey,
|
|
2135
2214
|
swrFn,
|
|
2136
2215
|
swrOptions
|
|
@@ -2247,7 +2326,7 @@ var useListTools = (params, options) => {
|
|
|
2247
2326
|
const isEnabled = swrOptions?.enabled !== false;
|
|
2248
2327
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListToolsKey(params) : null);
|
|
2249
2328
|
const swrFn = () => listTools(params, requestOptions);
|
|
2250
|
-
const query =
|
|
2329
|
+
const query = useSwr19(
|
|
2251
2330
|
swrKey,
|
|
2252
2331
|
swrFn,
|
|
2253
2332
|
swrOptions
|
|
@@ -2299,7 +2378,7 @@ var useGetTool = (id, options) => {
|
|
|
2299
2378
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
2300
2379
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetToolKey(id) : null);
|
|
2301
2380
|
const swrFn = () => getTool(id, requestOptions);
|
|
2302
|
-
const query =
|
|
2381
|
+
const query = useSwr19(
|
|
2303
2382
|
swrKey,
|
|
2304
2383
|
swrFn,
|
|
2305
2384
|
swrOptions
|
|
@@ -2364,7 +2443,7 @@ var useListVoiceAgents = (params, options) => {
|
|
|
2364
2443
|
const isEnabled = swrOptions?.enabled !== false;
|
|
2365
2444
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListVoiceAgentsKey(params) : null);
|
|
2366
2445
|
const swrFn = () => listVoiceAgents(params, requestOptions);
|
|
2367
|
-
const query =
|
|
2446
|
+
const query = useSwr19(
|
|
2368
2447
|
swrKey,
|
|
2369
2448
|
swrFn,
|
|
2370
2449
|
swrOptions
|
|
@@ -2416,7 +2495,7 @@ var useGetVoiceAgent = (voiceAgentId, options) => {
|
|
|
2416
2495
|
const isEnabled = swrOptions?.enabled !== false && !!voiceAgentId;
|
|
2417
2496
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetVoiceAgentKey(voiceAgentId) : null);
|
|
2418
2497
|
const swrFn = () => getVoiceAgent(voiceAgentId, requestOptions);
|
|
2419
|
-
const query =
|
|
2498
|
+
const query = useSwr19(
|
|
2420
2499
|
swrKey,
|
|
2421
2500
|
swrFn,
|
|
2422
2501
|
swrOptions
|
|
@@ -2493,7 +2572,7 @@ var useListVoiceAgentVersions = (voiceAgentId, params, options) => {
|
|
|
2493
2572
|
const isEnabled = swrOptions?.enabled !== false && !!voiceAgentId;
|
|
2494
2573
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListVoiceAgentVersionsKey(voiceAgentId, params) : null);
|
|
2495
2574
|
const swrFn = () => listVoiceAgentVersions(voiceAgentId, params, requestOptions);
|
|
2496
|
-
const query =
|
|
2575
|
+
const query = useSwr19(
|
|
2497
2576
|
swrKey,
|
|
2498
2577
|
swrFn,
|
|
2499
2578
|
swrOptions
|
|
@@ -2521,7 +2600,7 @@ var useGetVoiceAgentVersion = (voiceAgentId, version, options) => {
|
|
|
2521
2600
|
const isEnabled = swrOptions?.enabled !== false && !!(voiceAgentId && version);
|
|
2522
2601
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetVoiceAgentVersionKey(voiceAgentId, version) : null);
|
|
2523
2602
|
const swrFn = () => getVoiceAgentVersion(voiceAgentId, version, requestOptions);
|
|
2524
|
-
const query =
|
|
2603
|
+
const query = useSwr19(
|
|
2525
2604
|
swrKey,
|
|
2526
2605
|
swrFn,
|
|
2527
2606
|
swrOptions
|
|
@@ -2551,7 +2630,7 @@ var useGetVoiceAgentVersionChangeSummary = (voiceAgentId, version, options) => {
|
|
|
2551
2630
|
const isEnabled = swrOptions?.enabled !== false && !!(voiceAgentId && version);
|
|
2552
2631
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetVoiceAgentVersionChangeSummaryKey(voiceAgentId, version) : null);
|
|
2553
2632
|
const swrFn = () => getVoiceAgentVersionChangeSummary(voiceAgentId, version, requestOptions);
|
|
2554
|
-
const query =
|
|
2633
|
+
const query = useSwr19(
|
|
2555
2634
|
swrKey,
|
|
2556
2635
|
swrFn,
|
|
2557
2636
|
swrOptions
|
|
@@ -2645,7 +2724,7 @@ var useGetVoiceAgentPlaceholders = (voiceAgentId, options) => {
|
|
|
2645
2724
|
const isEnabled = swrOptions?.enabled !== false && !!voiceAgentId;
|
|
2646
2725
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetVoiceAgentPlaceholdersKey(voiceAgentId) : null);
|
|
2647
2726
|
const swrFn = () => getVoiceAgentPlaceholders(voiceAgentId, requestOptions);
|
|
2648
|
-
const query =
|
|
2727
|
+
const query = useSwr19(
|
|
2649
2728
|
swrKey,
|
|
2650
2729
|
swrFn,
|
|
2651
2730
|
swrOptions
|
|
@@ -2689,7 +2768,7 @@ var useGetVoiceAgentPrompt = (voiceAgentId, params, options) => {
|
|
|
2689
2768
|
const isEnabled = swrOptions?.enabled !== false && !!voiceAgentId;
|
|
2690
2769
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetVoiceAgentPromptKey(voiceAgentId, params) : null);
|
|
2691
2770
|
const swrFn = () => getVoiceAgentPrompt(voiceAgentId, params, requestOptions);
|
|
2692
|
-
const query =
|
|
2771
|
+
const query = useSwr19(
|
|
2693
2772
|
swrKey,
|
|
2694
2773
|
swrFn,
|
|
2695
2774
|
swrOptions
|
|
@@ -2840,7 +2919,7 @@ var useListWorkerWebhooks = (workerId, options) => {
|
|
|
2840
2919
|
const isEnabled = swrOptions?.enabled !== false && !!workerId;
|
|
2841
2920
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListWorkerWebhooksKey(workerId) : null);
|
|
2842
2921
|
const swrFn = () => listWorkerWebhooks(workerId, requestOptions);
|
|
2843
|
-
const query =
|
|
2922
|
+
const query = useSwr19(
|
|
2844
2923
|
swrKey,
|
|
2845
2924
|
swrFn,
|
|
2846
2925
|
swrOptions
|
|
@@ -2898,7 +2977,7 @@ var useListAgentWebhooks = (voiceAgentId, options) => {
|
|
|
2898
2977
|
const isEnabled = swrOptions?.enabled !== false && !!voiceAgentId;
|
|
2899
2978
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListAgentWebhooksKey(voiceAgentId) : null);
|
|
2900
2979
|
const swrFn = () => listAgentWebhooks(voiceAgentId, requestOptions);
|
|
2901
|
-
const query =
|
|
2980
|
+
const query = useSwr19(
|
|
2902
2981
|
swrKey,
|
|
2903
2982
|
swrFn,
|
|
2904
2983
|
swrOptions
|
|
@@ -2950,7 +3029,7 @@ var useListInboxWebhooks = (inboxId, options) => {
|
|
|
2950
3029
|
const isEnabled = swrOptions?.enabled !== false && !!inboxId;
|
|
2951
3030
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListInboxWebhooksKey(inboxId) : null);
|
|
2952
3031
|
const swrFn = () => listInboxWebhooks(inboxId, requestOptions);
|
|
2953
|
-
const query =
|
|
3032
|
+
const query = useSwr19(
|
|
2954
3033
|
swrKey,
|
|
2955
3034
|
swrFn,
|
|
2956
3035
|
swrOptions
|
|
@@ -3002,7 +3081,7 @@ var useListWebhooks = (id, options) => {
|
|
|
3002
3081
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
3003
3082
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListWebhooksKey(id) : null);
|
|
3004
3083
|
const swrFn = () => listWebhooks(id, requestOptions);
|
|
3005
|
-
const query =
|
|
3084
|
+
const query = useSwr19(
|
|
3006
3085
|
swrKey,
|
|
3007
3086
|
swrFn,
|
|
3008
3087
|
swrOptions
|
|
@@ -3052,7 +3131,7 @@ var useGetWebhook = (id, options) => {
|
|
|
3052
3131
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
3053
3132
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetWebhookKey(id) : null);
|
|
3054
3133
|
const swrFn = () => getWebhook(id, requestOptions);
|
|
3055
|
-
const query =
|
|
3134
|
+
const query = useSwr19(
|
|
3056
3135
|
swrKey,
|
|
3057
3136
|
swrFn,
|
|
3058
3137
|
swrOptions
|
|
@@ -3093,7 +3172,7 @@ var useListWebhookDeliveries = (id, params, options) => {
|
|
|
3093
3172
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
3094
3173
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListWebhookDeliveriesKey(id, params) : null);
|
|
3095
3174
|
const swrFn = () => listWebhookDeliveries(id, params, requestOptions);
|
|
3096
|
-
const query =
|
|
3175
|
+
const query = useSwr19(
|
|
3097
3176
|
swrKey,
|
|
3098
3177
|
swrFn,
|
|
3099
3178
|
swrOptions
|
|
@@ -3156,7 +3235,7 @@ var useListWorkerRuns = (params, options) => {
|
|
|
3156
3235
|
const isEnabled = swrOptions?.enabled !== false;
|
|
3157
3236
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListWorkerRunsKey(params) : null);
|
|
3158
3237
|
const swrFn = () => listWorkerRuns(params, requestOptions);
|
|
3159
|
-
const query =
|
|
3238
|
+
const query = useSwr19(
|
|
3160
3239
|
swrKey,
|
|
3161
3240
|
swrFn,
|
|
3162
3241
|
swrOptions
|
|
@@ -3208,7 +3287,7 @@ var useGetWorkerRun = (workerRunId, options) => {
|
|
|
3208
3287
|
const isEnabled = swrOptions?.enabled !== false && !!workerRunId;
|
|
3209
3288
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetWorkerRunKey(workerRunId) : null);
|
|
3210
3289
|
const swrFn = () => getWorkerRun(workerRunId, requestOptions);
|
|
3211
|
-
const query =
|
|
3290
|
+
const query = useSwr19(
|
|
3212
3291
|
swrKey,
|
|
3213
3292
|
swrFn,
|
|
3214
3293
|
swrOptions
|
|
@@ -3252,7 +3331,7 @@ var useListWorkerRunMessages = (workerRunId, params, options) => {
|
|
|
3252
3331
|
const isEnabled = swrOptions?.enabled !== false && !!workerRunId;
|
|
3253
3332
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListWorkerRunMessagesKey(workerRunId, params) : null);
|
|
3254
3333
|
const swrFn = () => listWorkerRunMessages(workerRunId, params, requestOptions);
|
|
3255
|
-
const query =
|
|
3334
|
+
const query = useSwr19(
|
|
3256
3335
|
swrKey,
|
|
3257
3336
|
swrFn,
|
|
3258
3337
|
swrOptions
|
|
@@ -3332,7 +3411,7 @@ var useWorkerListTools = (options) => {
|
|
|
3332
3411
|
const isEnabled = swrOptions?.enabled !== false;
|
|
3333
3412
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getWorkerListToolsKey() : null);
|
|
3334
3413
|
const swrFn = () => workerListTools(requestOptions);
|
|
3335
|
-
const query =
|
|
3414
|
+
const query = useSwr19(
|
|
3336
3415
|
swrKey,
|
|
3337
3416
|
swrFn,
|
|
3338
3417
|
swrOptions
|
|
@@ -3357,7 +3436,7 @@ var useWorkerGetTool = (id, options) => {
|
|
|
3357
3436
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
3358
3437
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getWorkerGetToolKey(id) : null);
|
|
3359
3438
|
const swrFn = () => workerGetTool(id, requestOptions);
|
|
3360
|
-
const query =
|
|
3439
|
+
const query = useSwr19(
|
|
3361
3440
|
swrKey,
|
|
3362
3441
|
swrFn,
|
|
3363
3442
|
swrOptions
|
|
@@ -3449,7 +3528,7 @@ var useListWorkers = (params, options) => {
|
|
|
3449
3528
|
const isEnabled = swrOptions?.enabled !== false;
|
|
3450
3529
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListWorkersKey(params) : null);
|
|
3451
3530
|
const swrFn = () => listWorkers(params, requestOptions);
|
|
3452
|
-
const query =
|
|
3531
|
+
const query = useSwr19(
|
|
3453
3532
|
swrKey,
|
|
3454
3533
|
swrFn,
|
|
3455
3534
|
swrOptions
|
|
@@ -3474,7 +3553,7 @@ var useGetWorker = (workerId, options) => {
|
|
|
3474
3553
|
const isEnabled = swrOptions?.enabled !== false && !!workerId;
|
|
3475
3554
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetWorkerKey(workerId) : null);
|
|
3476
3555
|
const swrFn = () => getWorker(workerId, requestOptions);
|
|
3477
|
-
const query =
|
|
3556
|
+
const query = useSwr19(
|
|
3478
3557
|
swrKey,
|
|
3479
3558
|
swrFn,
|
|
3480
3559
|
swrOptions
|
|
@@ -3526,7 +3605,7 @@ var useGetWorkerPrompt = (workerId, options) => {
|
|
|
3526
3605
|
const isEnabled = swrOptions?.enabled !== false && !!workerId;
|
|
3527
3606
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetWorkerPromptKey(workerId) : null);
|
|
3528
3607
|
const swrFn = () => getWorkerPrompt(workerId, requestOptions);
|
|
3529
|
-
const query =
|
|
3608
|
+
const query = useSwr19(
|
|
3530
3609
|
swrKey,
|
|
3531
3610
|
swrFn,
|
|
3532
3611
|
swrOptions
|
|
@@ -3564,6 +3643,20 @@ var useUpdateWorkerPrompt = (workerId, options) => {
|
|
|
3564
3643
|
};
|
|
3565
3644
|
};
|
|
3566
3645
|
|
|
3646
|
+
// generated/models/analyticsTimeSeriesGranularity.ts
|
|
3647
|
+
var AnalyticsTimeSeriesGranularity = {
|
|
3648
|
+
day: "day",
|
|
3649
|
+
week: "week",
|
|
3650
|
+
month: "month"
|
|
3651
|
+
};
|
|
3652
|
+
|
|
3653
|
+
// generated/models/analyticsTimeSeriesMetric.ts
|
|
3654
|
+
var AnalyticsTimeSeriesMetric = {
|
|
3655
|
+
worker_runs: "worker_runs",
|
|
3656
|
+
documents: "documents",
|
|
3657
|
+
pages: "pages"
|
|
3658
|
+
};
|
|
3659
|
+
|
|
3567
3660
|
// generated/models/apiKeyCreatedRole.ts
|
|
3568
3661
|
var ApiKeyCreatedRole = {
|
|
3569
3662
|
admin: "admin",
|
|
@@ -3726,6 +3819,25 @@ var ExperimentalGetOAuthUrlProvider = {
|
|
|
3726
3819
|
microsoft: "microsoft"
|
|
3727
3820
|
};
|
|
3728
3821
|
|
|
3822
|
+
// generated/models/getAnalyticsTimeSeriesGranularity.ts
|
|
3823
|
+
var GetAnalyticsTimeSeriesGranularity = {
|
|
3824
|
+
day: "day",
|
|
3825
|
+
week: "week",
|
|
3826
|
+
month: "month"
|
|
3827
|
+
};
|
|
3828
|
+
|
|
3829
|
+
// generated/models/getAnalyticsTimeSeriesGroupBy.ts
|
|
3830
|
+
var GetAnalyticsTimeSeriesGroupBy = {
|
|
3831
|
+
worker_id: "worker_id"
|
|
3832
|
+
};
|
|
3833
|
+
|
|
3834
|
+
// generated/models/getAnalyticsTimeSeriesMetric.ts
|
|
3835
|
+
var GetAnalyticsTimeSeriesMetric = {
|
|
3836
|
+
worker_runs: "worker_runs",
|
|
3837
|
+
documents: "documents",
|
|
3838
|
+
pages: "pages"
|
|
3839
|
+
};
|
|
3840
|
+
|
|
3729
3841
|
// generated/models/getOAuthUrlCodeChallengeMethod.ts
|
|
3730
3842
|
var GetOAuthUrlCodeChallengeMethod = {
|
|
3731
3843
|
plain: "plain",
|
|
@@ -4263,6 +4375,6 @@ var VoiceAgentVersionDetailTtsProvider = {
|
|
|
4263
4375
|
"aws-polly": "aws-polly"
|
|
4264
4376
|
};
|
|
4265
4377
|
|
|
4266
|
-
export { ApiKeyCreatedRole, ApiKeyRole, AvallonError, CallDetailDirection, CallDirection, ChatHistoryMessagesItemRole, ChatMessageRole, CreateApiKeyBodyEnvironment, CreateApiKeyBodyRole, CreateEmailBodyDirection, CreateInboxBodyProcessorType, CreateVoiceAgentBodyCallProcessorType, CreateVoiceAgentBodyDirection, CreateVoiceAgentBodyLanguage, CreateVoiceAgentBodyLlmModel, CreateVoiceAgentBodySttModel, CreateVoiceAgentBodyTtsModel, CreateVoiceAgentBodyTtsProvider, EmailCreatedDirection, EmailDetailDirection, EmailDirection, EmailReplyResultValue, ExperimentalGetOAuthUrlCodeChallengeMethod, ExperimentalGetOAuthUrlProvider, GetOAuthUrlCodeChallengeMethod, GetOAuthUrlProvider, InboxProcessorType, ListApiKeysIncludeRevoked, ListArtifactsSortBy, ListArtifactsSortOrder, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, ListCasesSortBy, ListCasesSortOrder, ListChatAgentsSortBy, ListChatAgentsSortOrder, ListChatMessagesSortBy, ListChatMessagesSortOrder, ListChatsSortBy, ListChatsSortOrder, ListEmailThreadsSortBy, ListEmailThreadsSortOrder, ListEmailsSortBy, ListEmailsSortOrder, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, ListExtractorsSortBy, ListExtractorsSortOrder, ListExtractsSortBy, ListExtractsSortOrder, ListInboxesSortBy, ListInboxesSortOrder, ListJobsStatusItem, ListToolsSortBy, ListToolsSortOrder, ListVoiceAgentVersionsSortBy, ListVoiceAgentVersionsSortOrder, ListWebhookDeliveriesSortOrder, ListWorkerRunsSortBy, ListWorkerRunsSortOrder, ListWorkerRunsStatus, ListWorkersSortBy, ListWorkersSortOrder, OutboundJobStatus, ProfilePermissionsItem, ProfileRole, TeamMemberRole, UpdateApiKeyBodyRole, UpdateInboxBodyProcessorType, UpdateMemberRoleBodyRole, UpdateVoiceAgentBodyCallProcessorType, UpdateVoiceAgentModelsBodyLanguage, UpdateVoiceAgentModelsBodyLlmModel, UpdateVoiceAgentModelsBodySttModel, UpdateVoiceAgentModelsBodyTtsModel, UpdateVoiceAgentModelsBodyTtsProvider, VoiceAgentBackgroundSounds, VoiceAgentDirection, VoiceAgentLanguage, VoiceAgentLlmModel, VoiceAgentNoiseCancellation, VoiceAgentSttModel, VoiceAgentTtsModel, VoiceAgentTtsProvider, VoiceAgentVersionDetailBackgroundSounds, VoiceAgentVersionDetailDirection, VoiceAgentVersionDetailLanguage, VoiceAgentVersionDetailLlmModel, VoiceAgentVersionDetailNoiseCancellation, VoiceAgentVersionDetailSttModel, VoiceAgentVersionDetailTtsModel, VoiceAgentVersionDetailTtsProvider, addToolsToVoiceAgent, cancelJob, cancelWorkerRun, checkInboxAvailability, configure, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createChat, createChatAgent, createEmail, createExtractor, createExtractorJob, createExtractorWebhook, createInbox, createInboxWebhook, createTool, createVoiceAgent, createWorker, createWorkerRun, createWorkerWebhook, deleteCallFeedback, deleteToolsFromVoiceAgent, deleteWebhook, executeCode, experimentalGetOAuthUrl, experimentalRefreshToken, experimentalSignIn, experimentalSignUp, generateCodeChallenge, generateCodeVerifier, getAddToolsToVoiceAgentMutationFetcher, getAddToolsToVoiceAgentMutationKey, getAddToolsToVoiceAgentUrl, getArtifact, getArtifactMetadataKeys, getArtifactUploadUrl, getCall, getCallAnalytics, getCallEvaluation, getCancelJobMutationFetcher, getCancelJobMutationKey, getCancelJobUrl, getCancelWorkerRunMutationFetcher, getCancelWorkerRunMutationKey, getCancelWorkerRunUrl, getCase, getChat, getChatAgent, getChatAgentPrompt, getCheckInboxAvailabilityKey, getCheckInboxAvailabilityUrl, getConfig, getCreateAgentWebhookMutationFetcher, getCreateAgentWebhookMutationKey, getCreateAgentWebhookUrl, getCreateApiKeyMutationFetcher, getCreateApiKeyMutationKey, getCreateApiKeyUrl, getCreateArtifactMutationFetcher, getCreateArtifactMutationKey, getCreateArtifactUrl, getCreateCallFeedbackMutationFetcher, getCreateCallFeedbackMutationKey, getCreateCallFeedbackUrl, getCreateChatAgentMutationFetcher, getCreateChatAgentMutationKey, getCreateChatAgentUrl, getCreateChatMutationFetcher, getCreateChatMutationKey, getCreateChatUrl, getCreateEmailMutationFetcher, getCreateEmailMutationKey, getCreateEmailUrl, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateInboxMutationFetcher, getCreateInboxMutationKey, getCreateInboxUrl, getCreateInboxWebhookMutationFetcher, getCreateInboxWebhookMutationKey, getCreateInboxWebhookUrl, getCreateToolMutationFetcher, getCreateToolMutationKey, getCreateToolUrl, getCreateVoiceAgentMutationFetcher, getCreateVoiceAgentMutationKey, getCreateVoiceAgentUrl, getCreateWorkerMutationFetcher, getCreateWorkerMutationKey, getCreateWorkerRunMutationFetcher, getCreateWorkerRunMutationKey, getCreateWorkerRunUrl, getCreateWorkerUrl, getCreateWorkerWebhookMutationFetcher, getCreateWorkerWebhookMutationKey, getCreateWorkerWebhookUrl, getDeleteCallFeedbackMutationFetcher, getDeleteCallFeedbackMutationKey, getDeleteCallFeedbackUrl, getDeleteToolsFromVoiceAgentMutationFetcher, getDeleteToolsFromVoiceAgentMutationKey, getDeleteToolsFromVoiceAgentUrl, getDeleteWebhookMutationFetcher, getDeleteWebhookMutationKey, getDeleteWebhookUrl, getEmail, getExecuteCodeMutationFetcher, getExecuteCodeMutationKey, getExecuteCodeUrl, getExperimentalGetOAuthUrlKey, getExperimentalGetOAuthUrlUrl, getExperimentalRefreshTokenMutationFetcher, getExperimentalRefreshTokenMutationKey, getExperimentalRefreshTokenUrl, getExperimentalSignInMutationFetcher, getExperimentalSignInMutationKey, getExperimentalSignInUrl, getExperimentalSignUpMutationFetcher, getExperimentalSignUpMutationKey, getExperimentalSignUpUrl, getExtract, getExtractCitations, getExtractor, getExtractorJob, getGetArtifactKey, getGetArtifactMetadataKeysKey, getGetArtifactMetadataKeysUrl, getGetArtifactUploadUrlMutationFetcher, getGetArtifactUploadUrlMutationKey, getGetArtifactUploadUrlUrl, getGetArtifactUrl, getGetCallAnalyticsKey, getGetCallAnalyticsUrl, getGetCallEvaluationKey, getGetCallEvaluationUrl, getGetCallKey, getGetCallUrl, getGetCaseKey, getGetCaseUrl, getGetChatAgentKey, getGetChatAgentPromptKey, getGetChatAgentPromptUrl, getGetChatAgentUrl, getGetChatKey, getGetChatUrl, getGetEmailKey, getGetEmailUrl, getGetExtractCitationsKey, getGetExtractCitationsUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetPartnerJwksKey, getGetPartnerJwksUrl, getGetProfileKey, getGetProfileUrl, getGetPublicChatAgentKey, getGetPublicChatAgentUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetVoiceAgentKey, getGetVoiceAgentPlaceholdersKey, getGetVoiceAgentPlaceholdersUrl, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, getGetVoiceAgentVersionChangeSummaryKey, getGetVoiceAgentVersionChangeSummaryUrl, getGetVoiceAgentVersionKey, getGetVoiceAgentVersionUrl, getGetWebhookKey, getGetWebhookUrl, getGetWorkerKey, getGetWorkerPromptKey, getGetWorkerPromptUrl, getGetWorkerRunKey, getGetWorkerRunUrl, getGetWorkerUrl, getListAgentWebhooksKey, getListAgentWebhooksUrl, getListApiKeysKey, getListApiKeysUrl, getListArtifactsKey, getListArtifactsUrl, getListCallFeedbackKey, getListCallFeedbackUrl, getListCallsKey, getListCallsUrl, getListCasesKey, getListCasesUrl, getListChatAgentsKey, getListChatAgentsUrl, getListChatMessagesKey, getListChatMessagesUrl, getListChatsKey, getListChatsUrl, getListEmailThreadsKey, getListEmailThreadsUrl, getListEmailsKey, getListEmailsUrl, getListExtractorJobsKey, getListExtractorJobsUrl, getListExtractorsKey, getListExtractorsUrl, getListExtractsKey, getListExtractsUrl, getListInboxWebhooksKey, getListInboxWebhooksUrl, getListInboxesKey, getListInboxesUrl, getListJobsKey, getListJobsUrl, getListTeamMembersKey, getListTeamMembersUrl, getListToolsKey, getListToolsUrl, getListVoiceAgentVersionsKey, getListVoiceAgentVersionsUrl, getListVoiceAgentsKey, getListVoiceAgentsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getListWorkerRunMessagesKey, getListWorkerRunMessagesUrl, getListWorkerRunsKey, getListWorkerRunsUrl, getListWorkerWebhooksKey, getListWorkerWebhooksUrl, getListWorkersKey, getListWorkersUrl, getOAuthUrl, getPartnerJwks, getPartnerLaunchMutationFetcher, getPartnerLaunchMutationKey, getPartnerLaunchUrl, getPostChatMessageMutationFetcher, getPostChatMessageMutationKey, getPostChatMessageUrl, getProfile, getPublicChatAgent, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRemoveMemberMutationFetcher, getRemoveMemberMutationKey, getRemoveMemberUrl, getReplyToEmailMutationFetcher, getReplyToEmailMutationKey, getReplyToEmailUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSendEmailMutationFetcher, getSendEmailMutationKey, getSendEmailUrl, getSessionToken, getSignInMutationFetcher, getSignInMutationKey, getSignInUrl, getSignUpMutationFetcher, getSignUpMutationKey, getSignUpUrl, getTestWebhookMutationFetcher, getTestWebhookMutationKey, getTestWebhookUrl, getTool, getUpdateApiKeyMutationFetcher, getUpdateApiKeyMutationKey, getUpdateApiKeyUrl, getUpdateArtifactMetadataMutationFetcher, getUpdateArtifactMetadataMutationKey, getUpdateArtifactMetadataUrl, getUpdateCallControlsMutationFetcher, getUpdateCallControlsMutationKey, getUpdateCallControlsUrl, getUpdateChatAgentMutationFetcher, getUpdateChatAgentMutationKey, getUpdateChatAgentPromptMutationFetcher, getUpdateChatAgentPromptMutationKey, getUpdateChatAgentPromptUrl, getUpdateChatAgentUrl, getUpdateExtractorMutationFetcher, getUpdateExtractorMutationKey, getUpdateExtractorUrl, getUpdateInboxMutationFetcher, getUpdateInboxMutationKey, getUpdateInboxUrl, getUpdateMemberRoleMutationFetcher, getUpdateMemberRoleMutationKey, getUpdateMemberRoleUrl, getUpdateToolMutationFetcher, getUpdateToolMutationKey, getUpdateToolUrl, getUpdateVoiceAgentModelsMutationFetcher, getUpdateVoiceAgentModelsMutationKey, getUpdateVoiceAgentModelsUrl, getUpdateVoiceAgentMutationFetcher, getUpdateVoiceAgentMutationKey, getUpdateVoiceAgentPromptMutationFetcher, getUpdateVoiceAgentPromptMutationKey, getUpdateVoiceAgentPromptUrl, getUpdateVoiceAgentUrl, getUpdateWorkerMutationFetcher, getUpdateWorkerMutationKey, getUpdateWorkerPromptMutationFetcher, getUpdateWorkerPromptMutationKey, getUpdateWorkerPromptUrl, getUpdateWorkerRunScopeMutationFetcher, getUpdateWorkerRunScopeMutationKey, getUpdateWorkerRunScopeUrl, getUpdateWorkerUrl, getUploadFileMutationFetcher, getUploadFileMutationKey, getUploadFileUrl, getVoiceAgent, getVoiceAgentPlaceholders, getVoiceAgentPrompt, getVoiceAgentVersion, getVoiceAgentVersionChangeSummary, getWebhook, getWorker, getWorkerExecuteToolMutationFetcher, getWorkerExecuteToolMutationKey, getWorkerExecuteToolUrl, getWorkerGetToolKey, getWorkerGetToolUrl, getWorkerListToolsKey, getWorkerListToolsUrl, getWorkerPrompt, getWorkerRun, listAgentWebhooks, listApiKeys, listArtifacts, listCallFeedback, listCalls, listCases, listChatAgents, listChatMessages, listChats, listEmailThreads, listEmails, listExtractorJobs, listExtractors, listExtracts, listInboxWebhooks, listInboxes, listJobs, listTeamMembers, listTools, listVoiceAgentVersions, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerRunMessages, listWorkerRuns, listWorkerWebhooks, listWorkers, partnerLaunch, postChatMessage, refreshToken, removeMember, replyToEmail, revokeApiKey, scheduleJob, sendEmail, signIn, signUp, testWebhook, updateApiKey, updateArtifactMetadata, updateCallControls, updateChatAgent, updateChatAgentPrompt, updateExtractor, updateInbox, updateMemberRole, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateVoiceAgentPrompt, updateWorker, updateWorkerPrompt, updateWorkerRunScope, uploadFile, useAddToolsToVoiceAgent, useCancelJob, useCancelWorkerRun, useCheckInboxAvailability, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateChat, useCreateChatAgent, useCreateEmail, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateInbox, useCreateInboxWebhook, useCreateTool, useCreateVoiceAgent, useCreateWorker, useCreateWorkerRun, useCreateWorkerWebhook, useDeleteCallFeedback, useDeleteToolsFromVoiceAgent, useDeleteWebhook, useExecuteCode, useExperimentalGetOAuthUrl, useExperimentalRefreshToken, useExperimentalSignIn, useExperimentalSignUp, useGetArtifact, useGetArtifactMetadataKeys, useGetArtifactUploadUrl, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetCase, useGetChat, useGetChatAgent, useGetChatAgentPrompt, useGetEmail, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetOAuthUrl, useGetPartnerJwks, useGetProfile, useGetPublicChatAgent, useGetSessionToken, useGetTool, useGetVoiceAgent, useGetVoiceAgentPlaceholders, useGetVoiceAgentPrompt, useGetVoiceAgentVersion, useGetVoiceAgentVersionChangeSummary, useGetWebhook, useGetWorker, useGetWorkerPrompt, useGetWorkerRun, useListAgentWebhooks, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListCases, useListChatAgents, useListChatMessages, useListChats, useListEmailThreads, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListInboxWebhooks, useListInboxes, useListJobs, useListTeamMembers, useListTools, useListVoiceAgentVersions, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerRunMessages, useListWorkerRuns, useListWorkerWebhooks, useListWorkers, usePartnerLaunch, usePostChatMessage, useRefreshToken, useRemoveMember, useReplyToEmail, useRevokeApiKey, useScheduleJob, useSendEmail, useSignIn, useSignUp, useTestWebhook, useUpdateApiKey, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateChatAgent, useUpdateChatAgentPrompt, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateVoiceAgentPrompt, useUpdateWorker, useUpdateWorkerPrompt, useUpdateWorkerRunScope, useUploadFile, useWorkerExecuteTool, useWorkerGetTool, useWorkerListTools, workerExecuteTool, workerGetTool, workerListTools };
|
|
4378
|
+
export { AnalyticsTimeSeriesGranularity, AnalyticsTimeSeriesMetric, ApiKeyCreatedRole, ApiKeyRole, AvallonError, CallDetailDirection, CallDirection, ChatHistoryMessagesItemRole, ChatMessageRole, CreateApiKeyBodyEnvironment, CreateApiKeyBodyRole, CreateEmailBodyDirection, CreateInboxBodyProcessorType, CreateVoiceAgentBodyCallProcessorType, CreateVoiceAgentBodyDirection, CreateVoiceAgentBodyLanguage, CreateVoiceAgentBodyLlmModel, CreateVoiceAgentBodySttModel, CreateVoiceAgentBodyTtsModel, CreateVoiceAgentBodyTtsProvider, EmailCreatedDirection, EmailDetailDirection, EmailDirection, EmailReplyResultValue, ExperimentalGetOAuthUrlCodeChallengeMethod, ExperimentalGetOAuthUrlProvider, GetAnalyticsTimeSeriesGranularity, GetAnalyticsTimeSeriesGroupBy, GetAnalyticsTimeSeriesMetric, GetOAuthUrlCodeChallengeMethod, GetOAuthUrlProvider, InboxProcessorType, ListApiKeysIncludeRevoked, ListArtifactsSortBy, ListArtifactsSortOrder, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, ListCasesSortBy, ListCasesSortOrder, ListChatAgentsSortBy, ListChatAgentsSortOrder, ListChatMessagesSortBy, ListChatMessagesSortOrder, ListChatsSortBy, ListChatsSortOrder, ListEmailThreadsSortBy, ListEmailThreadsSortOrder, ListEmailsSortBy, ListEmailsSortOrder, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, ListExtractorsSortBy, ListExtractorsSortOrder, ListExtractsSortBy, ListExtractsSortOrder, ListInboxesSortBy, ListInboxesSortOrder, ListJobsStatusItem, ListToolsSortBy, ListToolsSortOrder, ListVoiceAgentVersionsSortBy, ListVoiceAgentVersionsSortOrder, ListWebhookDeliveriesSortOrder, ListWorkerRunsSortBy, ListWorkerRunsSortOrder, ListWorkerRunsStatus, ListWorkersSortBy, ListWorkersSortOrder, OutboundJobStatus, ProfilePermissionsItem, ProfileRole, TeamMemberRole, UpdateApiKeyBodyRole, UpdateInboxBodyProcessorType, UpdateMemberRoleBodyRole, UpdateVoiceAgentBodyCallProcessorType, UpdateVoiceAgentModelsBodyLanguage, UpdateVoiceAgentModelsBodyLlmModel, UpdateVoiceAgentModelsBodySttModel, UpdateVoiceAgentModelsBodyTtsModel, UpdateVoiceAgentModelsBodyTtsProvider, VoiceAgentBackgroundSounds, VoiceAgentDirection, VoiceAgentLanguage, VoiceAgentLlmModel, VoiceAgentNoiseCancellation, VoiceAgentSttModel, VoiceAgentTtsModel, VoiceAgentTtsProvider, VoiceAgentVersionDetailBackgroundSounds, VoiceAgentVersionDetailDirection, VoiceAgentVersionDetailLanguage, VoiceAgentVersionDetailLlmModel, VoiceAgentVersionDetailNoiseCancellation, VoiceAgentVersionDetailSttModel, VoiceAgentVersionDetailTtsModel, VoiceAgentVersionDetailTtsProvider, addToolsToVoiceAgent, cancelJob, cancelWorkerRun, checkInboxAvailability, configure, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createChat, createChatAgent, createEmail, createExtractor, createExtractorJob, createExtractorWebhook, createInbox, createInboxWebhook, createTool, createVoiceAgent, createWorker, createWorkerRun, createWorkerWebhook, deleteCallFeedback, deleteToolsFromVoiceAgent, deleteWebhook, executeCode, experimentalGetOAuthUrl, experimentalRefreshToken, experimentalSignIn, experimentalSignUp, generateCodeChallenge, generateCodeVerifier, getAddToolsToVoiceAgentMutationFetcher, getAddToolsToVoiceAgentMutationKey, getAddToolsToVoiceAgentUrl, getAnalyticsTimeSeries, getArtifact, getArtifactMetadataKeys, getArtifactUploadUrl, getCall, getCallAnalytics, getCallEvaluation, getCancelJobMutationFetcher, getCancelJobMutationKey, getCancelJobUrl, getCancelWorkerRunMutationFetcher, getCancelWorkerRunMutationKey, getCancelWorkerRunUrl, getCase, getChat, getChatAgent, getChatAgentPrompt, getCheckInboxAvailabilityKey, getCheckInboxAvailabilityUrl, getConfig, getCreateAgentWebhookMutationFetcher, getCreateAgentWebhookMutationKey, getCreateAgentWebhookUrl, getCreateApiKeyMutationFetcher, getCreateApiKeyMutationKey, getCreateApiKeyUrl, getCreateArtifactMutationFetcher, getCreateArtifactMutationKey, getCreateArtifactUrl, getCreateCallFeedbackMutationFetcher, getCreateCallFeedbackMutationKey, getCreateCallFeedbackUrl, getCreateChatAgentMutationFetcher, getCreateChatAgentMutationKey, getCreateChatAgentUrl, getCreateChatMutationFetcher, getCreateChatMutationKey, getCreateChatUrl, getCreateEmailMutationFetcher, getCreateEmailMutationKey, getCreateEmailUrl, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateInboxMutationFetcher, getCreateInboxMutationKey, getCreateInboxUrl, getCreateInboxWebhookMutationFetcher, getCreateInboxWebhookMutationKey, getCreateInboxWebhookUrl, getCreateToolMutationFetcher, getCreateToolMutationKey, getCreateToolUrl, getCreateVoiceAgentMutationFetcher, getCreateVoiceAgentMutationKey, getCreateVoiceAgentUrl, getCreateWorkerMutationFetcher, getCreateWorkerMutationKey, getCreateWorkerRunMutationFetcher, getCreateWorkerRunMutationKey, getCreateWorkerRunUrl, getCreateWorkerUrl, getCreateWorkerWebhookMutationFetcher, getCreateWorkerWebhookMutationKey, getCreateWorkerWebhookUrl, getDeleteCallFeedbackMutationFetcher, getDeleteCallFeedbackMutationKey, getDeleteCallFeedbackUrl, getDeleteToolsFromVoiceAgentMutationFetcher, getDeleteToolsFromVoiceAgentMutationKey, getDeleteToolsFromVoiceAgentUrl, getDeleteWebhookMutationFetcher, getDeleteWebhookMutationKey, getDeleteWebhookUrl, getEmail, getExecuteCodeMutationFetcher, getExecuteCodeMutationKey, getExecuteCodeUrl, getExperimentalGetOAuthUrlKey, getExperimentalGetOAuthUrlUrl, getExperimentalRefreshTokenMutationFetcher, getExperimentalRefreshTokenMutationKey, getExperimentalRefreshTokenUrl, getExperimentalSignInMutationFetcher, getExperimentalSignInMutationKey, getExperimentalSignInUrl, getExperimentalSignUpMutationFetcher, getExperimentalSignUpMutationKey, getExperimentalSignUpUrl, getExtract, getExtractCitations, getExtractor, getExtractorJob, getGetAnalyticsTimeSeriesKey, getGetAnalyticsTimeSeriesUrl, getGetArtifactKey, getGetArtifactMetadataKeysKey, getGetArtifactMetadataKeysUrl, getGetArtifactUploadUrlMutationFetcher, getGetArtifactUploadUrlMutationKey, getGetArtifactUploadUrlUrl, getGetArtifactUrl, getGetCallAnalyticsKey, getGetCallAnalyticsUrl, getGetCallEvaluationKey, getGetCallEvaluationUrl, getGetCallKey, getGetCallUrl, getGetCaseKey, getGetCaseUrl, getGetChatAgentKey, getGetChatAgentPromptKey, getGetChatAgentPromptUrl, getGetChatAgentUrl, getGetChatKey, getGetChatUrl, getGetEmailKey, getGetEmailUrl, getGetExtractCitationsKey, getGetExtractCitationsUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetPartnerJwksKey, getGetPartnerJwksUrl, getGetProfileKey, getGetProfileUrl, getGetPublicChatAgentKey, getGetPublicChatAgentUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetVoiceAgentKey, getGetVoiceAgentPlaceholdersKey, getGetVoiceAgentPlaceholdersUrl, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, getGetVoiceAgentVersionChangeSummaryKey, getGetVoiceAgentVersionChangeSummaryUrl, getGetVoiceAgentVersionKey, getGetVoiceAgentVersionUrl, getGetWebhookKey, getGetWebhookUrl, getGetWorkerKey, getGetWorkerPromptKey, getGetWorkerPromptUrl, getGetWorkerRunKey, getGetWorkerRunUrl, getGetWorkerUrl, getListAgentWebhooksKey, getListAgentWebhooksUrl, getListApiKeysKey, getListApiKeysUrl, getListArtifactsKey, getListArtifactsUrl, getListCallFeedbackKey, getListCallFeedbackUrl, getListCallsKey, getListCallsUrl, getListCasesKey, getListCasesUrl, getListChatAgentsKey, getListChatAgentsUrl, getListChatMessagesKey, getListChatMessagesUrl, getListChatsKey, getListChatsUrl, getListEmailThreadsKey, getListEmailThreadsUrl, getListEmailsKey, getListEmailsUrl, getListExtractorJobsKey, getListExtractorJobsUrl, getListExtractorsKey, getListExtractorsUrl, getListExtractsKey, getListExtractsUrl, getListInboxWebhooksKey, getListInboxWebhooksUrl, getListInboxesKey, getListInboxesUrl, getListJobsKey, getListJobsUrl, getListTeamMembersKey, getListTeamMembersUrl, getListToolsKey, getListToolsUrl, getListVoiceAgentVersionsKey, getListVoiceAgentVersionsUrl, getListVoiceAgentsKey, getListVoiceAgentsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getListWorkerRunMessagesKey, getListWorkerRunMessagesUrl, getListWorkerRunsKey, getListWorkerRunsUrl, getListWorkerWebhooksKey, getListWorkerWebhooksUrl, getListWorkersKey, getListWorkersUrl, getOAuthUrl, getPartnerJwks, getPartnerLaunchMutationFetcher, getPartnerLaunchMutationKey, getPartnerLaunchUrl, getPostChatMessageMutationFetcher, getPostChatMessageMutationKey, getPostChatMessageUrl, getProfile, getPublicChatAgent, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRemoveMemberMutationFetcher, getRemoveMemberMutationKey, getRemoveMemberUrl, getReplyToEmailMutationFetcher, getReplyToEmailMutationKey, getReplyToEmailUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSearchCasesKey, getSearchCasesUrl, getSendEmailMutationFetcher, getSendEmailMutationKey, getSendEmailUrl, getSessionToken, getSignInMutationFetcher, getSignInMutationKey, getSignInUrl, getSignUpMutationFetcher, getSignUpMutationKey, getSignUpUrl, getTestWebhookMutationFetcher, getTestWebhookMutationKey, getTestWebhookUrl, getTool, getUpdateApiKeyMutationFetcher, getUpdateApiKeyMutationKey, getUpdateApiKeyUrl, getUpdateArtifactMetadataMutationFetcher, getUpdateArtifactMetadataMutationKey, getUpdateArtifactMetadataUrl, getUpdateCallControlsMutationFetcher, getUpdateCallControlsMutationKey, getUpdateCallControlsUrl, getUpdateChatAgentMutationFetcher, getUpdateChatAgentMutationKey, getUpdateChatAgentPromptMutationFetcher, getUpdateChatAgentPromptMutationKey, getUpdateChatAgentPromptUrl, getUpdateChatAgentUrl, getUpdateExtractorMutationFetcher, getUpdateExtractorMutationKey, getUpdateExtractorUrl, getUpdateInboxMutationFetcher, getUpdateInboxMutationKey, getUpdateInboxUrl, getUpdateMemberRoleMutationFetcher, getUpdateMemberRoleMutationKey, getUpdateMemberRoleUrl, getUpdateToolMutationFetcher, getUpdateToolMutationKey, getUpdateToolUrl, getUpdateVoiceAgentModelsMutationFetcher, getUpdateVoiceAgentModelsMutationKey, getUpdateVoiceAgentModelsUrl, getUpdateVoiceAgentMutationFetcher, getUpdateVoiceAgentMutationKey, getUpdateVoiceAgentPromptMutationFetcher, getUpdateVoiceAgentPromptMutationKey, getUpdateVoiceAgentPromptUrl, getUpdateVoiceAgentUrl, getUpdateWorkerMutationFetcher, getUpdateWorkerMutationKey, getUpdateWorkerPromptMutationFetcher, getUpdateWorkerPromptMutationKey, getUpdateWorkerPromptUrl, getUpdateWorkerRunScopeMutationFetcher, getUpdateWorkerRunScopeMutationKey, getUpdateWorkerRunScopeUrl, getUpdateWorkerUrl, getUploadFileMutationFetcher, getUploadFileMutationKey, getUploadFileUrl, getVoiceAgent, getVoiceAgentPlaceholders, getVoiceAgentPrompt, getVoiceAgentVersion, getVoiceAgentVersionChangeSummary, getWebhook, getWorker, getWorkerExecuteToolMutationFetcher, getWorkerExecuteToolMutationKey, getWorkerExecuteToolUrl, getWorkerGetToolKey, getWorkerGetToolUrl, getWorkerListToolsKey, getWorkerListToolsUrl, getWorkerPrompt, getWorkerRun, listAgentWebhooks, listApiKeys, listArtifacts, listCallFeedback, listCalls, listCases, listChatAgents, listChatMessages, listChats, listEmailThreads, listEmails, listExtractorJobs, listExtractors, listExtracts, listInboxWebhooks, listInboxes, listJobs, listTeamMembers, listTools, listVoiceAgentVersions, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerRunMessages, listWorkerRuns, listWorkerWebhooks, listWorkers, partnerLaunch, postChatMessage, refreshToken, removeMember, replyToEmail, revokeApiKey, scheduleJob, searchCases, sendEmail, signIn, signUp, testWebhook, updateApiKey, updateArtifactMetadata, updateCallControls, updateChatAgent, updateChatAgentPrompt, updateExtractor, updateInbox, updateMemberRole, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateVoiceAgentPrompt, updateWorker, updateWorkerPrompt, updateWorkerRunScope, uploadFile, useAddToolsToVoiceAgent, useCancelJob, useCancelWorkerRun, useCheckInboxAvailability, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateChat, useCreateChatAgent, useCreateEmail, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateInbox, useCreateInboxWebhook, useCreateTool, useCreateVoiceAgent, useCreateWorker, useCreateWorkerRun, useCreateWorkerWebhook, useDeleteCallFeedback, useDeleteToolsFromVoiceAgent, useDeleteWebhook, useExecuteCode, useExperimentalGetOAuthUrl, useExperimentalRefreshToken, useExperimentalSignIn, useExperimentalSignUp, useGetAnalyticsTimeSeries, useGetArtifact, useGetArtifactMetadataKeys, useGetArtifactUploadUrl, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetCase, useGetChat, useGetChatAgent, useGetChatAgentPrompt, useGetEmail, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetOAuthUrl, useGetPartnerJwks, useGetProfile, useGetPublicChatAgent, useGetSessionToken, useGetTool, useGetVoiceAgent, useGetVoiceAgentPlaceholders, useGetVoiceAgentPrompt, useGetVoiceAgentVersion, useGetVoiceAgentVersionChangeSummary, useGetWebhook, useGetWorker, useGetWorkerPrompt, useGetWorkerRun, useListAgentWebhooks, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListCases, useListChatAgents, useListChatMessages, useListChats, useListEmailThreads, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListInboxWebhooks, useListInboxes, useListJobs, useListTeamMembers, useListTools, useListVoiceAgentVersions, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerRunMessages, useListWorkerRuns, useListWorkerWebhooks, useListWorkers, usePartnerLaunch, usePostChatMessage, useRefreshToken, useRemoveMember, useReplyToEmail, useRevokeApiKey, useScheduleJob, useSearchCases, useSendEmail, useSignIn, useSignUp, useTestWebhook, useUpdateApiKey, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateChatAgent, useUpdateChatAgentPrompt, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateVoiceAgentPrompt, useUpdateWorker, useUpdateWorkerPrompt, useUpdateWorkerRunScope, useUploadFile, useWorkerExecuteTool, useWorkerGetTool, useWorkerListTools, workerExecuteTool, workerGetTool, workerListTools };
|
|
4267
4379
|
//# sourceMappingURL=index.js.map
|
|
4268
4380
|
//# sourceMappingURL=index.js.map
|