@avallon-labs/sdk 43.0.0 → 43.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/dist/index.d.ts +548 -319
- package/dist/index.js +158 -74
- 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 useSwr23 from 'swr';
|
|
2
2
|
import useSWRMutation17 from 'swr/mutation';
|
|
3
3
|
|
|
4
4
|
// src/fetcher.ts
|
|
@@ -126,7 +126,7 @@ var useGetAnalyticsTimeSeries = (params, options) => {
|
|
|
126
126
|
const isEnabled = swrOptions?.enabled !== false;
|
|
127
127
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetAnalyticsTimeSeriesKey(params) : null);
|
|
128
128
|
const swrFn = () => getAnalyticsTimeSeries(params, requestOptions);
|
|
129
|
-
const query =
|
|
129
|
+
const query = useSwr23(
|
|
130
130
|
swrKey,
|
|
131
131
|
swrFn,
|
|
132
132
|
swrOptions
|
|
@@ -164,7 +164,7 @@ var useListApiKeys = (params, options) => {
|
|
|
164
164
|
const isEnabled = swrOptions?.enabled !== false;
|
|
165
165
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListApiKeysKey(params) : null);
|
|
166
166
|
const swrFn = () => listApiKeys(params, requestOptions);
|
|
167
|
-
const query =
|
|
167
|
+
const query = useSwr23(
|
|
168
168
|
swrKey,
|
|
169
169
|
swrFn,
|
|
170
170
|
swrOptions
|
|
@@ -308,7 +308,7 @@ var useListArtifacts = (params, options) => {
|
|
|
308
308
|
const isEnabled = swrOptions?.enabled !== false;
|
|
309
309
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListArtifactsKey(params) : null);
|
|
310
310
|
const swrFn = () => listArtifacts(params, requestOptions);
|
|
311
|
-
const query =
|
|
311
|
+
const query = useSwr23(
|
|
312
312
|
swrKey,
|
|
313
313
|
swrFn,
|
|
314
314
|
swrOptions
|
|
@@ -333,7 +333,7 @@ var useGetArtifact = (id, options) => {
|
|
|
333
333
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
334
334
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetArtifactKey(id) : null);
|
|
335
335
|
const swrFn = () => getArtifact(id, requestOptions);
|
|
336
|
-
const query =
|
|
336
|
+
const query = useSwr23(
|
|
337
337
|
swrKey,
|
|
338
338
|
swrFn,
|
|
339
339
|
swrOptions
|
|
@@ -399,7 +399,7 @@ var useGetArtifactMetadataKeys = (params, options) => {
|
|
|
399
399
|
const isEnabled = swrOptions?.enabled !== false;
|
|
400
400
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetArtifactMetadataKeysKey(params) : null);
|
|
401
401
|
const swrFn = () => getArtifactMetadataKeys(params, requestOptions);
|
|
402
|
-
const query =
|
|
402
|
+
const query = useSwr23(
|
|
403
403
|
swrKey,
|
|
404
404
|
swrFn,
|
|
405
405
|
swrOptions
|
|
@@ -440,7 +440,7 @@ var useGetArtifactStatusSummary = (params, options) => {
|
|
|
440
440
|
const isEnabled = swrOptions?.enabled !== false;
|
|
441
441
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetArtifactStatusSummaryKey(params) : null);
|
|
442
442
|
const swrFn = () => getArtifactStatusSummary(params, requestOptions);
|
|
443
|
-
const query =
|
|
443
|
+
const query = useSwr23(
|
|
444
444
|
swrKey,
|
|
445
445
|
swrFn,
|
|
446
446
|
swrOptions
|
|
@@ -703,7 +703,7 @@ var useGetOAuthUrl = (params, options) => {
|
|
|
703
703
|
const isEnabled = swrOptions?.enabled !== false;
|
|
704
704
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetOAuthUrlKey(params) : null);
|
|
705
705
|
const swrFn = () => getOAuthUrl(params, requestOptions);
|
|
706
|
-
const query =
|
|
706
|
+
const query = useSwr23(
|
|
707
707
|
swrKey,
|
|
708
708
|
swrFn,
|
|
709
709
|
swrOptions
|
|
@@ -755,7 +755,7 @@ var useGetPartnerJwks = (partner, options) => {
|
|
|
755
755
|
const isEnabled = swrOptions?.enabled !== false && !!partner;
|
|
756
756
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetPartnerJwksKey(partner) : null);
|
|
757
757
|
const swrFn = () => getPartnerJwks(partner, requestOptions);
|
|
758
|
-
const query =
|
|
758
|
+
const query = useSwr23(
|
|
759
759
|
swrKey,
|
|
760
760
|
swrFn,
|
|
761
761
|
swrOptions
|
|
@@ -861,7 +861,7 @@ var useListCallFeedback = (id, params, options) => {
|
|
|
861
861
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
862
862
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListCallFeedbackKey(id, params) : null);
|
|
863
863
|
const swrFn = () => listCallFeedback(id, params, requestOptions);
|
|
864
|
-
const query =
|
|
864
|
+
const query = useSwr23(
|
|
865
865
|
swrKey,
|
|
866
866
|
swrFn,
|
|
867
867
|
swrOptions
|
|
@@ -931,7 +931,7 @@ var useListCalls = (params, options) => {
|
|
|
931
931
|
const isEnabled = swrOptions?.enabled !== false;
|
|
932
932
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListCallsKey(params) : null);
|
|
933
933
|
const swrFn = () => listCalls(params, requestOptions);
|
|
934
|
-
const query =
|
|
934
|
+
const query = useSwr23(
|
|
935
935
|
swrKey,
|
|
936
936
|
swrFn,
|
|
937
937
|
swrOptions
|
|
@@ -969,7 +969,7 @@ var useGetCall = (id, params, options) => {
|
|
|
969
969
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
970
970
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetCallKey(id, params) : null);
|
|
971
971
|
const swrFn = () => getCall(id, params, requestOptions);
|
|
972
|
-
const query =
|
|
972
|
+
const query = useSwr23(
|
|
973
973
|
swrKey,
|
|
974
974
|
swrFn,
|
|
975
975
|
swrOptions
|
|
@@ -994,7 +994,7 @@ var useGetCallEvaluation = (id, options) => {
|
|
|
994
994
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
995
995
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetCallEvaluationKey(id) : null);
|
|
996
996
|
const swrFn = () => getCallEvaluation(id, requestOptions);
|
|
997
|
-
const query =
|
|
997
|
+
const query = useSwr23(
|
|
998
998
|
swrKey,
|
|
999
999
|
swrFn,
|
|
1000
1000
|
swrOptions
|
|
@@ -1032,7 +1032,7 @@ var useGetCallAnalytics = (params, options) => {
|
|
|
1032
1032
|
const isEnabled = swrOptions?.enabled !== false;
|
|
1033
1033
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetCallAnalyticsKey(params) : null);
|
|
1034
1034
|
const swrFn = () => getCallAnalytics(params, requestOptions);
|
|
1035
|
-
const query =
|
|
1035
|
+
const query = useSwr23(
|
|
1036
1036
|
swrKey,
|
|
1037
1037
|
swrFn,
|
|
1038
1038
|
swrOptions
|
|
@@ -1070,7 +1070,7 @@ var useListCases = (params, options) => {
|
|
|
1070
1070
|
const isEnabled = swrOptions?.enabled !== false;
|
|
1071
1071
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListCasesKey(params) : null);
|
|
1072
1072
|
const swrFn = () => listCases(params, requestOptions);
|
|
1073
|
-
const query =
|
|
1073
|
+
const query = useSwr23(
|
|
1074
1074
|
swrKey,
|
|
1075
1075
|
swrFn,
|
|
1076
1076
|
swrOptions
|
|
@@ -1135,7 +1135,7 @@ var useSearchCases = (params, options) => {
|
|
|
1135
1135
|
const isEnabled = swrOptions?.enabled !== false;
|
|
1136
1136
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getSearchCasesKey(params) : null);
|
|
1137
1137
|
const swrFn = () => searchCases(params, requestOptions);
|
|
1138
|
-
const query =
|
|
1138
|
+
const query = useSwr23(
|
|
1139
1139
|
swrKey,
|
|
1140
1140
|
swrFn,
|
|
1141
1141
|
swrOptions
|
|
@@ -1160,7 +1160,7 @@ var useGetCase = (id, options) => {
|
|
|
1160
1160
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
1161
1161
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetCaseKey(id) : null);
|
|
1162
1162
|
const swrFn = () => getCase(id, requestOptions);
|
|
1163
|
-
const query =
|
|
1163
|
+
const query = useSwr23(
|
|
1164
1164
|
swrKey,
|
|
1165
1165
|
swrFn,
|
|
1166
1166
|
swrOptions
|
|
@@ -1225,7 +1225,7 @@ var useListCaseLinks = (id, params, options) => {
|
|
|
1225
1225
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
1226
1226
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListCaseLinksKey(id, params) : null);
|
|
1227
1227
|
const swrFn = () => listCaseLinks(id, params, requestOptions);
|
|
1228
|
-
const query =
|
|
1228
|
+
const query = useSwr23(
|
|
1229
1229
|
swrKey,
|
|
1230
1230
|
swrFn,
|
|
1231
1231
|
swrOptions
|
|
@@ -1323,7 +1323,7 @@ var useListChatAgents = (params, options) => {
|
|
|
1323
1323
|
const isEnabled = swrOptions?.enabled !== false;
|
|
1324
1324
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListChatAgentsKey(params) : null);
|
|
1325
1325
|
const swrFn = () => listChatAgents(params, requestOptions);
|
|
1326
|
-
const query =
|
|
1326
|
+
const query = useSwr23(
|
|
1327
1327
|
swrKey,
|
|
1328
1328
|
swrFn,
|
|
1329
1329
|
swrOptions
|
|
@@ -1348,7 +1348,7 @@ var useGetChatAgent = (chatAgentId, options) => {
|
|
|
1348
1348
|
const isEnabled = swrOptions?.enabled !== false && !!chatAgentId;
|
|
1349
1349
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetChatAgentKey(chatAgentId) : null);
|
|
1350
1350
|
const swrFn = () => getChatAgent(chatAgentId, requestOptions);
|
|
1351
|
-
const query =
|
|
1351
|
+
const query = useSwr23(
|
|
1352
1352
|
swrKey,
|
|
1353
1353
|
swrFn,
|
|
1354
1354
|
swrOptions
|
|
@@ -1434,7 +1434,7 @@ var useGetChatAgentPrompt = (chatAgentId, options) => {
|
|
|
1434
1434
|
const isEnabled = swrOptions?.enabled !== false && !!chatAgentId;
|
|
1435
1435
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetChatAgentPromptKey(chatAgentId) : null);
|
|
1436
1436
|
const swrFn = () => getChatAgentPrompt(chatAgentId, requestOptions);
|
|
1437
|
-
const query =
|
|
1437
|
+
const query = useSwr23(
|
|
1438
1438
|
swrKey,
|
|
1439
1439
|
swrFn,
|
|
1440
1440
|
swrOptions
|
|
@@ -1519,7 +1519,7 @@ var useGetChat = (chatId, options) => {
|
|
|
1519
1519
|
const isEnabled = swrOptions?.enabled !== false && !!chatId;
|
|
1520
1520
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetChatKey(chatId) : null);
|
|
1521
1521
|
const swrFn = () => getChat(chatId, requestOptions);
|
|
1522
|
-
const query =
|
|
1522
|
+
const query = useSwr23(
|
|
1523
1523
|
swrKey,
|
|
1524
1524
|
swrFn,
|
|
1525
1525
|
swrOptions
|
|
@@ -1547,7 +1547,7 @@ var useGetPublicChatAgent = (chatAgentId, options) => {
|
|
|
1547
1547
|
const isEnabled = swrOptions?.enabled !== false && !!chatAgentId;
|
|
1548
1548
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetPublicChatAgentKey(chatAgentId) : null);
|
|
1549
1549
|
const swrFn = () => getPublicChatAgent(chatAgentId, requestOptions);
|
|
1550
|
-
const query =
|
|
1550
|
+
const query = useSwr23(
|
|
1551
1551
|
swrKey,
|
|
1552
1552
|
swrFn,
|
|
1553
1553
|
swrOptions
|
|
@@ -1612,7 +1612,7 @@ var useListChats = (params, options) => {
|
|
|
1612
1612
|
const isEnabled = swrOptions?.enabled !== false;
|
|
1613
1613
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListChatsKey(params) : null);
|
|
1614
1614
|
const swrFn = () => listChats(params, requestOptions);
|
|
1615
|
-
const query =
|
|
1615
|
+
const query = useSwr23(
|
|
1616
1616
|
swrKey,
|
|
1617
1617
|
swrFn,
|
|
1618
1618
|
swrOptions
|
|
@@ -1653,7 +1653,7 @@ var useListChatMessages = (chatId, params, options) => {
|
|
|
1653
1653
|
const isEnabled = swrOptions?.enabled !== false && !!chatId;
|
|
1654
1654
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListChatMessagesKey(chatId, params) : null);
|
|
1655
1655
|
const swrFn = () => listChatMessages(chatId, params, requestOptions);
|
|
1656
|
-
const query =
|
|
1656
|
+
const query = useSwr23(
|
|
1657
1657
|
swrKey,
|
|
1658
1658
|
swrFn,
|
|
1659
1659
|
swrOptions
|
|
@@ -1691,7 +1691,7 @@ var useListDispatches = (params, options) => {
|
|
|
1691
1691
|
const isEnabled = swrOptions?.enabled !== false;
|
|
1692
1692
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListDispatchesKey(params) : null);
|
|
1693
1693
|
const swrFn = () => listDispatches(params, requestOptions);
|
|
1694
|
-
const query =
|
|
1694
|
+
const query = useSwr23(
|
|
1695
1695
|
swrKey,
|
|
1696
1696
|
swrFn,
|
|
1697
1697
|
swrOptions
|
|
@@ -1756,7 +1756,7 @@ var useListEmails = (params, options) => {
|
|
|
1756
1756
|
const isEnabled = swrOptions?.enabled !== false;
|
|
1757
1757
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListEmailsKey(params) : null);
|
|
1758
1758
|
const swrFn = () => listEmails(params, requestOptions);
|
|
1759
|
-
const query =
|
|
1759
|
+
const query = useSwr23(
|
|
1760
1760
|
swrKey,
|
|
1761
1761
|
swrFn,
|
|
1762
1762
|
swrOptions
|
|
@@ -1781,7 +1781,7 @@ var useGetEmail = (emailId, options) => {
|
|
|
1781
1781
|
const isEnabled = swrOptions?.enabled !== false && !!emailId;
|
|
1782
1782
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetEmailKey(emailId) : null);
|
|
1783
1783
|
const swrFn = () => getEmail(emailId, requestOptions);
|
|
1784
|
-
const query =
|
|
1784
|
+
const query = useSwr23(
|
|
1785
1785
|
swrKey,
|
|
1786
1786
|
swrFn,
|
|
1787
1787
|
swrOptions
|
|
@@ -1844,7 +1844,7 @@ var useListEmailThreads = (params, options) => {
|
|
|
1844
1844
|
const isEnabled = swrOptions?.enabled !== false;
|
|
1845
1845
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListEmailThreadsKey(params) : null);
|
|
1846
1846
|
const swrFn = () => listEmailThreads(params, requestOptions);
|
|
1847
|
-
const query =
|
|
1847
|
+
const query = useSwr23(
|
|
1848
1848
|
swrKey,
|
|
1849
1849
|
swrFn,
|
|
1850
1850
|
swrOptions
|
|
@@ -1939,7 +1939,7 @@ var useListExtractorJobs = (params, options) => {
|
|
|
1939
1939
|
const isEnabled = swrOptions?.enabled !== false;
|
|
1940
1940
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListExtractorJobsKey(params) : null);
|
|
1941
1941
|
const swrFn = () => listExtractorJobs(params, requestOptions);
|
|
1942
|
-
const query =
|
|
1942
|
+
const query = useSwr23(
|
|
1943
1943
|
swrKey,
|
|
1944
1944
|
swrFn,
|
|
1945
1945
|
swrOptions
|
|
@@ -1991,7 +1991,7 @@ var useGetExtractorJob = (id, options) => {
|
|
|
1991
1991
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
1992
1992
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetExtractorJobKey(id) : null);
|
|
1993
1993
|
const swrFn = () => getExtractorJob(id, requestOptions);
|
|
1994
|
-
const query =
|
|
1994
|
+
const query = useSwr23(
|
|
1995
1995
|
swrKey,
|
|
1996
1996
|
swrFn,
|
|
1997
1997
|
swrOptions
|
|
@@ -2056,7 +2056,7 @@ var useListExtractors = (params, options) => {
|
|
|
2056
2056
|
const isEnabled = swrOptions?.enabled !== false;
|
|
2057
2057
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListExtractorsKey(params) : null);
|
|
2058
2058
|
const swrFn = () => listExtractors(params, requestOptions);
|
|
2059
|
-
const query =
|
|
2059
|
+
const query = useSwr23(
|
|
2060
2060
|
swrKey,
|
|
2061
2061
|
swrFn,
|
|
2062
2062
|
swrOptions
|
|
@@ -2081,7 +2081,7 @@ var useGetExtractor = (id, options) => {
|
|
|
2081
2081
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
2082
2082
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetExtractorKey(id) : null);
|
|
2083
2083
|
const swrFn = () => getExtractor(id, requestOptions);
|
|
2084
|
-
const query =
|
|
2084
|
+
const query = useSwr23(
|
|
2085
2085
|
swrKey,
|
|
2086
2086
|
swrFn,
|
|
2087
2087
|
swrOptions
|
|
@@ -2158,7 +2158,7 @@ var useGetExtract = (id, options) => {
|
|
|
2158
2158
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
2159
2159
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetExtractKey(id) : null);
|
|
2160
2160
|
const swrFn = () => getExtract(id, requestOptions);
|
|
2161
|
-
const query =
|
|
2161
|
+
const query = useSwr23(
|
|
2162
2162
|
swrKey,
|
|
2163
2163
|
swrFn,
|
|
2164
2164
|
swrOptions
|
|
@@ -2186,7 +2186,7 @@ var useGetExtractCitations = (id, options) => {
|
|
|
2186
2186
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
2187
2187
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetExtractCitationsKey(id) : null);
|
|
2188
2188
|
const swrFn = () => getExtractCitations(id, requestOptions);
|
|
2189
|
-
const query =
|
|
2189
|
+
const query = useSwr23(
|
|
2190
2190
|
swrKey,
|
|
2191
2191
|
swrFn,
|
|
2192
2192
|
swrOptions
|
|
@@ -2224,7 +2224,7 @@ var useListExtracts = (params, options) => {
|
|
|
2224
2224
|
const isEnabled = swrOptions?.enabled !== false;
|
|
2225
2225
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListExtractsKey(params) : null);
|
|
2226
2226
|
const swrFn = () => listExtracts(params, requestOptions);
|
|
2227
|
-
const query =
|
|
2227
|
+
const query = useSwr23(
|
|
2228
2228
|
swrKey,
|
|
2229
2229
|
swrFn,
|
|
2230
2230
|
swrOptions
|
|
@@ -2265,7 +2265,7 @@ var useCheckInboxAvailability = (params, options) => {
|
|
|
2265
2265
|
const isEnabled = swrOptions?.enabled !== false;
|
|
2266
2266
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getCheckInboxAvailabilityKey(params) : null);
|
|
2267
2267
|
const swrFn = () => checkInboxAvailability(params, requestOptions);
|
|
2268
|
-
const query =
|
|
2268
|
+
const query = useSwr23(
|
|
2269
2269
|
swrKey,
|
|
2270
2270
|
swrFn,
|
|
2271
2271
|
swrOptions
|
|
@@ -2330,7 +2330,7 @@ var useListInboxes = (params, options) => {
|
|
|
2330
2330
|
const isEnabled = swrOptions?.enabled !== false;
|
|
2331
2331
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListInboxesKey(params) : null);
|
|
2332
2332
|
const swrFn = () => listInboxes(params, requestOptions);
|
|
2333
|
-
const query =
|
|
2333
|
+
const query = useSwr23(
|
|
2334
2334
|
swrKey,
|
|
2335
2335
|
swrFn,
|
|
2336
2336
|
swrOptions
|
|
@@ -2447,7 +2447,7 @@ var useListJobs = (params, options) => {
|
|
|
2447
2447
|
const isEnabled = swrOptions?.enabled !== false;
|
|
2448
2448
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListJobsKey(params) : null);
|
|
2449
2449
|
const swrFn = () => listJobs(params, requestOptions);
|
|
2450
|
-
const query =
|
|
2450
|
+
const query = useSwr23(
|
|
2451
2451
|
swrKey,
|
|
2452
2452
|
swrFn,
|
|
2453
2453
|
swrOptions
|
|
@@ -2482,6 +2482,47 @@ var useCancelJob = (jobId, options) => {
|
|
|
2482
2482
|
...query
|
|
2483
2483
|
};
|
|
2484
2484
|
};
|
|
2485
|
+
var getListNotificationsUrl = (params) => {
|
|
2486
|
+
const normalizedParams = new URLSearchParams();
|
|
2487
|
+
Object.entries(params || {}).forEach(([key, value]) => {
|
|
2488
|
+
if (value !== void 0) {
|
|
2489
|
+
if (typeof value === "object" && value !== null && !Array.isArray(value)) {
|
|
2490
|
+
for (const [sk, sv] of Object.entries(value)) {
|
|
2491
|
+
if (sv !== void 0) normalizedParams.append(`${key}[${sk}]`, String(sv));
|
|
2492
|
+
}
|
|
2493
|
+
} else {
|
|
2494
|
+
normalizedParams.append(key, value === null ? "null" : String(value));
|
|
2495
|
+
}
|
|
2496
|
+
}
|
|
2497
|
+
});
|
|
2498
|
+
const stringifiedParams = normalizedParams.toString();
|
|
2499
|
+
return stringifiedParams.length > 0 ? `/v1/notifications?${stringifiedParams}` : `/v1/notifications`;
|
|
2500
|
+
};
|
|
2501
|
+
var listNotifications = async (params, options) => {
|
|
2502
|
+
return customFetch(
|
|
2503
|
+
getListNotificationsUrl(params),
|
|
2504
|
+
{
|
|
2505
|
+
...options,
|
|
2506
|
+
method: "GET"
|
|
2507
|
+
}
|
|
2508
|
+
);
|
|
2509
|
+
};
|
|
2510
|
+
var getListNotificationsKey = (params) => [`/v1/notifications`, ...params ? [params] : []];
|
|
2511
|
+
var useListNotifications = (params, options) => {
|
|
2512
|
+
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2513
|
+
const isEnabled = swrOptions?.enabled !== false;
|
|
2514
|
+
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListNotificationsKey(params) : null);
|
|
2515
|
+
const swrFn = () => listNotifications(params, requestOptions);
|
|
2516
|
+
const query = useSwr23(
|
|
2517
|
+
swrKey,
|
|
2518
|
+
swrFn,
|
|
2519
|
+
swrOptions
|
|
2520
|
+
);
|
|
2521
|
+
return {
|
|
2522
|
+
swrKey,
|
|
2523
|
+
...query
|
|
2524
|
+
};
|
|
2525
|
+
};
|
|
2485
2526
|
var getGetProfileUrl = () => {
|
|
2486
2527
|
return `/v1/profile`;
|
|
2487
2528
|
};
|
|
@@ -2497,7 +2538,7 @@ var useGetProfile = (options) => {
|
|
|
2497
2538
|
const isEnabled = swrOptions?.enabled !== false;
|
|
2498
2539
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetProfileKey() : null);
|
|
2499
2540
|
const swrFn = () => getProfile(requestOptions);
|
|
2500
|
-
const query =
|
|
2541
|
+
const query = useSwr23(
|
|
2501
2542
|
swrKey,
|
|
2502
2543
|
swrFn,
|
|
2503
2544
|
swrOptions
|
|
@@ -2562,7 +2603,7 @@ var useListSchedules = (params, options) => {
|
|
|
2562
2603
|
const isEnabled = swrOptions?.enabled !== false;
|
|
2563
2604
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListSchedulesKey(params) : null);
|
|
2564
2605
|
const swrFn = () => listSchedules(params, requestOptions);
|
|
2565
|
-
const query =
|
|
2606
|
+
const query = useSwr23(
|
|
2566
2607
|
swrKey,
|
|
2567
2608
|
swrFn,
|
|
2568
2609
|
swrOptions
|
|
@@ -2587,7 +2628,7 @@ var useGetSchedule = (scheduleId, options) => {
|
|
|
2587
2628
|
const isEnabled = swrOptions?.enabled !== false && !!scheduleId;
|
|
2588
2629
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetScheduleKey(scheduleId) : null);
|
|
2589
2630
|
const swrFn = () => getSchedule(scheduleId, requestOptions);
|
|
2590
|
-
const query =
|
|
2631
|
+
const query = useSwr23(
|
|
2591
2632
|
swrKey,
|
|
2592
2633
|
swrFn,
|
|
2593
2634
|
swrOptions
|
|
@@ -2704,7 +2745,7 @@ var useListSecrets = (params, options) => {
|
|
|
2704
2745
|
const isEnabled = swrOptions?.enabled !== false;
|
|
2705
2746
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListSecretsKey(params) : null);
|
|
2706
2747
|
const swrFn = () => listSecrets(params, requestOptions);
|
|
2707
|
-
const query =
|
|
2748
|
+
const query = useSwr23(
|
|
2708
2749
|
swrKey,
|
|
2709
2750
|
swrFn,
|
|
2710
2751
|
swrOptions
|
|
@@ -2729,7 +2770,7 @@ var useGetSecret = (secretId, options) => {
|
|
|
2729
2770
|
const isEnabled = swrOptions?.enabled !== false && !!secretId;
|
|
2730
2771
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetSecretKey(secretId) : null);
|
|
2731
2772
|
const swrFn = () => getSecret(secretId, requestOptions);
|
|
2732
|
-
const query =
|
|
2773
|
+
const query = useSwr23(
|
|
2733
2774
|
swrKey,
|
|
2734
2775
|
swrFn,
|
|
2735
2776
|
swrOptions
|
|
@@ -2806,7 +2847,7 @@ var useListTeamMembers = (options) => {
|
|
|
2806
2847
|
const isEnabled = swrOptions?.enabled !== false;
|
|
2807
2848
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListTeamMembersKey() : null);
|
|
2808
2849
|
const swrFn = () => listTeamMembers(requestOptions);
|
|
2809
|
-
const query =
|
|
2850
|
+
const query = useSwr23(
|
|
2810
2851
|
swrKey,
|
|
2811
2852
|
swrFn,
|
|
2812
2853
|
swrOptions
|
|
@@ -2858,7 +2899,7 @@ var useListTeamInvitations = (options) => {
|
|
|
2858
2899
|
const isEnabled = swrOptions?.enabled !== false;
|
|
2859
2900
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListTeamInvitationsKey() : null);
|
|
2860
2901
|
const swrFn = () => listTeamInvitations(requestOptions);
|
|
2861
|
-
const query =
|
|
2902
|
+
const query = useSwr23(
|
|
2862
2903
|
swrKey,
|
|
2863
2904
|
swrFn,
|
|
2864
2905
|
swrOptions
|
|
@@ -3034,7 +3075,7 @@ var useListTools = (params, options) => {
|
|
|
3034
3075
|
const isEnabled = swrOptions?.enabled !== false;
|
|
3035
3076
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListToolsKey(params) : null);
|
|
3036
3077
|
const swrFn = () => listTools(params, requestOptions);
|
|
3037
|
-
const query =
|
|
3078
|
+
const query = useSwr23(
|
|
3038
3079
|
swrKey,
|
|
3039
3080
|
swrFn,
|
|
3040
3081
|
swrOptions
|
|
@@ -3084,7 +3125,7 @@ var useGetTool = (id, options) => {
|
|
|
3084
3125
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
3085
3126
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetToolKey(id) : null);
|
|
3086
3127
|
const swrFn = () => getTool(id, requestOptions);
|
|
3087
|
-
const query =
|
|
3128
|
+
const query = useSwr23(
|
|
3088
3129
|
swrKey,
|
|
3089
3130
|
swrFn,
|
|
3090
3131
|
swrOptions
|
|
@@ -3176,7 +3217,7 @@ var useListVoiceAgents = (params, options) => {
|
|
|
3176
3217
|
const isEnabled = swrOptions?.enabled !== false;
|
|
3177
3218
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListVoiceAgentsKey(params) : null);
|
|
3178
3219
|
const swrFn = () => listVoiceAgents(params, requestOptions);
|
|
3179
|
-
const query =
|
|
3220
|
+
const query = useSwr23(
|
|
3180
3221
|
swrKey,
|
|
3181
3222
|
swrFn,
|
|
3182
3223
|
swrOptions
|
|
@@ -3228,7 +3269,7 @@ var useGetVoiceAgent = (voiceAgentId, options) => {
|
|
|
3228
3269
|
const isEnabled = swrOptions?.enabled !== false && !!voiceAgentId;
|
|
3229
3270
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetVoiceAgentKey(voiceAgentId) : null);
|
|
3230
3271
|
const swrFn = () => getVoiceAgent(voiceAgentId, requestOptions);
|
|
3231
|
-
const query =
|
|
3272
|
+
const query = useSwr23(
|
|
3232
3273
|
swrKey,
|
|
3233
3274
|
swrFn,
|
|
3234
3275
|
swrOptions
|
|
@@ -3336,7 +3377,7 @@ var useListVoiceAgentVersions = (voiceAgentId, params, options) => {
|
|
|
3336
3377
|
const isEnabled = swrOptions?.enabled !== false && !!voiceAgentId;
|
|
3337
3378
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListVoiceAgentVersionsKey(voiceAgentId, params) : null);
|
|
3338
3379
|
const swrFn = () => listVoiceAgentVersions(voiceAgentId, params, requestOptions);
|
|
3339
|
-
const query =
|
|
3380
|
+
const query = useSwr23(
|
|
3340
3381
|
swrKey,
|
|
3341
3382
|
swrFn,
|
|
3342
3383
|
swrOptions
|
|
@@ -3364,7 +3405,7 @@ var useGetVoiceAgentVersion = (voiceAgentId, version, options) => {
|
|
|
3364
3405
|
const isEnabled = swrOptions?.enabled !== false && !!(voiceAgentId && version);
|
|
3365
3406
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetVoiceAgentVersionKey(voiceAgentId, version) : null);
|
|
3366
3407
|
const swrFn = () => getVoiceAgentVersion(voiceAgentId, version, requestOptions);
|
|
3367
|
-
const query =
|
|
3408
|
+
const query = useSwr23(
|
|
3368
3409
|
swrKey,
|
|
3369
3410
|
swrFn,
|
|
3370
3411
|
swrOptions
|
|
@@ -3428,7 +3469,7 @@ var useGetVoiceAgentVersionChangeSummary = (voiceAgentId, version, options) => {
|
|
|
3428
3469
|
const isEnabled = swrOptions?.enabled !== false && !!(voiceAgentId && version);
|
|
3429
3470
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetVoiceAgentVersionChangeSummaryKey(voiceAgentId, version) : null);
|
|
3430
3471
|
const swrFn = () => getVoiceAgentVersionChangeSummary(voiceAgentId, version, requestOptions);
|
|
3431
|
-
const query =
|
|
3472
|
+
const query = useSwr23(
|
|
3432
3473
|
swrKey,
|
|
3433
3474
|
swrFn,
|
|
3434
3475
|
swrOptions
|
|
@@ -3522,7 +3563,7 @@ var useGetVoiceAgentPlaceholders = (voiceAgentId, options) => {
|
|
|
3522
3563
|
const isEnabled = swrOptions?.enabled !== false && !!voiceAgentId;
|
|
3523
3564
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetVoiceAgentPlaceholdersKey(voiceAgentId) : null);
|
|
3524
3565
|
const swrFn = () => getVoiceAgentPlaceholders(voiceAgentId, requestOptions);
|
|
3525
|
-
const query =
|
|
3566
|
+
const query = useSwr23(
|
|
3526
3567
|
swrKey,
|
|
3527
3568
|
swrFn,
|
|
3528
3569
|
swrOptions
|
|
@@ -3566,7 +3607,7 @@ var useGetVoiceAgentPrompt = (voiceAgentId, params, options) => {
|
|
|
3566
3607
|
const isEnabled = swrOptions?.enabled !== false && !!voiceAgentId;
|
|
3567
3608
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetVoiceAgentPromptKey(voiceAgentId, params) : null);
|
|
3568
3609
|
const swrFn = () => getVoiceAgentPrompt(voiceAgentId, params, requestOptions);
|
|
3569
|
-
const query =
|
|
3610
|
+
const query = useSwr23(
|
|
3570
3611
|
swrKey,
|
|
3571
3612
|
swrFn,
|
|
3572
3613
|
swrOptions
|
|
@@ -3723,7 +3764,7 @@ var useListWorkerWebhooks = (workerId, options) => {
|
|
|
3723
3764
|
const isEnabled = swrOptions?.enabled !== false && !!workerId;
|
|
3724
3765
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListWorkerWebhooksKey(workerId) : null);
|
|
3725
3766
|
const swrFn = () => listWorkerWebhooks(workerId, requestOptions);
|
|
3726
|
-
const query =
|
|
3767
|
+
const query = useSwr23(
|
|
3727
3768
|
swrKey,
|
|
3728
3769
|
swrFn,
|
|
3729
3770
|
swrOptions
|
|
@@ -3784,7 +3825,7 @@ var useListAgentWebhooks = (voiceAgentId, options) => {
|
|
|
3784
3825
|
const isEnabled = swrOptions?.enabled !== false && !!voiceAgentId;
|
|
3785
3826
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListAgentWebhooksKey(voiceAgentId) : null);
|
|
3786
3827
|
const swrFn = () => listAgentWebhooks(voiceAgentId, requestOptions);
|
|
3787
|
-
const query =
|
|
3828
|
+
const query = useSwr23(
|
|
3788
3829
|
swrKey,
|
|
3789
3830
|
swrFn,
|
|
3790
3831
|
swrOptions
|
|
@@ -3842,7 +3883,7 @@ var useListInboxWebhooks = (inboxId, options) => {
|
|
|
3842
3883
|
const isEnabled = swrOptions?.enabled !== false && !!inboxId;
|
|
3843
3884
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListInboxWebhooksKey(inboxId) : null);
|
|
3844
3885
|
const swrFn = () => listInboxWebhooks(inboxId, requestOptions);
|
|
3845
|
-
const query =
|
|
3886
|
+
const query = useSwr23(
|
|
3846
3887
|
swrKey,
|
|
3847
3888
|
swrFn,
|
|
3848
3889
|
swrOptions
|
|
@@ -3897,7 +3938,7 @@ var useListWebhooks = (id, options) => {
|
|
|
3897
3938
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
3898
3939
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListWebhooksKey(id) : null);
|
|
3899
3940
|
const swrFn = () => listWebhooks(id, requestOptions);
|
|
3900
|
-
const query =
|
|
3941
|
+
const query = useSwr23(
|
|
3901
3942
|
swrKey,
|
|
3902
3943
|
swrFn,
|
|
3903
3944
|
swrOptions
|
|
@@ -3947,7 +3988,7 @@ var useGetWebhook = (id, options) => {
|
|
|
3947
3988
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
3948
3989
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetWebhookKey(id) : null);
|
|
3949
3990
|
const swrFn = () => getWebhook(id, requestOptions);
|
|
3950
|
-
const query =
|
|
3991
|
+
const query = useSwr23(
|
|
3951
3992
|
swrKey,
|
|
3952
3993
|
swrFn,
|
|
3953
3994
|
swrOptions
|
|
@@ -3988,7 +4029,7 @@ var useListWebhookDeliveries = (id, params, options) => {
|
|
|
3988
4029
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
3989
4030
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListWebhookDeliveriesKey(id, params) : null);
|
|
3990
4031
|
const swrFn = () => listWebhookDeliveries(id, params, requestOptions);
|
|
3991
|
-
const query =
|
|
4032
|
+
const query = useSwr23(
|
|
3992
4033
|
swrKey,
|
|
3993
4034
|
swrFn,
|
|
3994
4035
|
swrOptions
|
|
@@ -4051,7 +4092,7 @@ var useListWorkerRuns = (params, options) => {
|
|
|
4051
4092
|
const isEnabled = swrOptions?.enabled !== false;
|
|
4052
4093
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListWorkerRunsKey(params) : null);
|
|
4053
4094
|
const swrFn = () => listWorkerRuns(params, requestOptions);
|
|
4054
|
-
const query =
|
|
4095
|
+
const query = useSwr23(
|
|
4055
4096
|
swrKey,
|
|
4056
4097
|
swrFn,
|
|
4057
4098
|
swrOptions
|
|
@@ -4103,7 +4144,7 @@ var useGetWorkerRun = (workerRunId, options) => {
|
|
|
4103
4144
|
const isEnabled = swrOptions?.enabled !== false && !!workerRunId;
|
|
4104
4145
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetWorkerRunKey(workerRunId) : null);
|
|
4105
4146
|
const swrFn = () => getWorkerRun(workerRunId, requestOptions);
|
|
4106
|
-
const query =
|
|
4147
|
+
const query = useSwr23(
|
|
4107
4148
|
swrKey,
|
|
4108
4149
|
swrFn,
|
|
4109
4150
|
swrOptions
|
|
@@ -4147,7 +4188,7 @@ var useListWorkerRunMessages = (workerRunId, params, options) => {
|
|
|
4147
4188
|
const isEnabled = swrOptions?.enabled !== false && !!workerRunId;
|
|
4148
4189
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListWorkerRunMessagesKey(workerRunId, params) : null);
|
|
4149
4190
|
const swrFn = () => listWorkerRunMessages(workerRunId, params, requestOptions);
|
|
4150
|
-
const query =
|
|
4191
|
+
const query = useSwr23(
|
|
4151
4192
|
swrKey,
|
|
4152
4193
|
swrFn,
|
|
4153
4194
|
swrOptions
|
|
@@ -4233,7 +4274,7 @@ var useWorkerListTools = (options) => {
|
|
|
4233
4274
|
const isEnabled = swrOptions?.enabled !== false;
|
|
4234
4275
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getWorkerListToolsKey() : null);
|
|
4235
4276
|
const swrFn = () => workerListTools(requestOptions);
|
|
4236
|
-
const query =
|
|
4277
|
+
const query = useSwr23(
|
|
4237
4278
|
swrKey,
|
|
4238
4279
|
swrFn,
|
|
4239
4280
|
swrOptions
|
|
@@ -4258,7 +4299,7 @@ var useWorkerGetTool = (id, options) => {
|
|
|
4258
4299
|
const isEnabled = swrOptions?.enabled !== false && !!id;
|
|
4259
4300
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getWorkerGetToolKey(id) : null);
|
|
4260
4301
|
const swrFn = () => workerGetTool(id, requestOptions);
|
|
4261
|
-
const query =
|
|
4302
|
+
const query = useSwr23(
|
|
4262
4303
|
swrKey,
|
|
4263
4304
|
swrFn,
|
|
4264
4305
|
swrOptions
|
|
@@ -4295,6 +4336,33 @@ var useWorkerExecuteTool = (id, options) => {
|
|
|
4295
4336
|
...query
|
|
4296
4337
|
};
|
|
4297
4338
|
};
|
|
4339
|
+
var getNotifyAdminUrl = () => {
|
|
4340
|
+
return `/worker/v1/notifications`;
|
|
4341
|
+
};
|
|
4342
|
+
var notifyAdmin = async (notifyAdminBody, options) => {
|
|
4343
|
+
return customFetch(getNotifyAdminUrl(), {
|
|
4344
|
+
...options,
|
|
4345
|
+
method: "POST",
|
|
4346
|
+
headers: { "Content-Type": "application/json", ...options?.headers },
|
|
4347
|
+
body: JSON.stringify(notifyAdminBody)
|
|
4348
|
+
});
|
|
4349
|
+
};
|
|
4350
|
+
var getNotifyAdminMutationFetcher = (options) => {
|
|
4351
|
+
return (_, { arg }) => {
|
|
4352
|
+
return notifyAdmin(arg, options);
|
|
4353
|
+
};
|
|
4354
|
+
};
|
|
4355
|
+
var getNotifyAdminMutationKey = () => [`/worker/v1/notifications`];
|
|
4356
|
+
var useNotifyAdmin = (options) => {
|
|
4357
|
+
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
4358
|
+
const swrKey = swrOptions?.swrKey ?? getNotifyAdminMutationKey();
|
|
4359
|
+
const swrFn = getNotifyAdminMutationFetcher(requestOptions);
|
|
4360
|
+
const query = useSWRMutation17(swrKey, swrFn, swrOptions);
|
|
4361
|
+
return {
|
|
4362
|
+
swrKey,
|
|
4363
|
+
...query
|
|
4364
|
+
};
|
|
4365
|
+
};
|
|
4298
4366
|
var getCreateWorkerUrl = () => {
|
|
4299
4367
|
return `/v1/workers`;
|
|
4300
4368
|
};
|
|
@@ -4350,7 +4418,7 @@ var useListWorkers = (params, options) => {
|
|
|
4350
4418
|
const isEnabled = swrOptions?.enabled !== false;
|
|
4351
4419
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListWorkersKey(params) : null);
|
|
4352
4420
|
const swrFn = () => listWorkers(params, requestOptions);
|
|
4353
|
-
const query =
|
|
4421
|
+
const query = useSwr23(
|
|
4354
4422
|
swrKey,
|
|
4355
4423
|
swrFn,
|
|
4356
4424
|
swrOptions
|
|
@@ -4375,7 +4443,7 @@ var useGetWorker = (workerId, options) => {
|
|
|
4375
4443
|
const isEnabled = swrOptions?.enabled !== false && !!workerId;
|
|
4376
4444
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetWorkerKey(workerId) : null);
|
|
4377
4445
|
const swrFn = () => getWorker(workerId, requestOptions);
|
|
4378
|
-
const query =
|
|
4446
|
+
const query = useSwr23(
|
|
4379
4447
|
swrKey,
|
|
4380
4448
|
swrFn,
|
|
4381
4449
|
swrOptions
|
|
@@ -4468,7 +4536,7 @@ var useGetWorkerPrompt = (workerId, params, options) => {
|
|
|
4468
4536
|
const isEnabled = swrOptions?.enabled !== false && !!workerId;
|
|
4469
4537
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetWorkerPromptKey(workerId, params) : null);
|
|
4470
4538
|
const swrFn = () => getWorkerPrompt(workerId, params, requestOptions);
|
|
4471
|
-
const query =
|
|
4539
|
+
const query = useSwr23(
|
|
4472
4540
|
swrKey,
|
|
4473
4541
|
swrFn,
|
|
4474
4542
|
swrOptions
|
|
@@ -4523,7 +4591,7 @@ var useListWorkerModels = (options) => {
|
|
|
4523
4591
|
const isEnabled = swrOptions?.enabled !== false;
|
|
4524
4592
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListWorkerModelsKey() : null);
|
|
4525
4593
|
const swrFn = () => listWorkerModels(requestOptions);
|
|
4526
|
-
const query =
|
|
4594
|
+
const query = useSwr23(
|
|
4527
4595
|
swrKey,
|
|
4528
4596
|
swrFn,
|
|
4529
4597
|
swrOptions
|
|
@@ -4594,7 +4662,7 @@ var useListWorkerVersions = (workerId, params, options) => {
|
|
|
4594
4662
|
const isEnabled = swrOptions?.enabled !== false && !!workerId;
|
|
4595
4663
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListWorkerVersionsKey(workerId, params) : null);
|
|
4596
4664
|
const swrFn = () => listWorkerVersions(workerId, params, requestOptions);
|
|
4597
|
-
const query =
|
|
4665
|
+
const query = useSwr23(
|
|
4598
4666
|
swrKey,
|
|
4599
4667
|
swrFn,
|
|
4600
4668
|
swrOptions
|
|
@@ -4622,7 +4690,7 @@ var useGetWorkerVersion = (workerId, version, options) => {
|
|
|
4622
4690
|
const isEnabled = swrOptions?.enabled !== false && !!(workerId && version);
|
|
4623
4691
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetWorkerVersionKey(workerId, version) : null);
|
|
4624
4692
|
const swrFn = () => getWorkerVersion(workerId, version, requestOptions);
|
|
4625
|
-
const query =
|
|
4693
|
+
const query = useSwr23(
|
|
4626
4694
|
swrKey,
|
|
4627
4695
|
swrFn,
|
|
4628
4696
|
swrOptions
|
|
@@ -4684,7 +4752,7 @@ var useGetWorkerVersionChangeSummary = (workerId, version, options) => {
|
|
|
4684
4752
|
const isEnabled = swrOptions?.enabled !== false && !!(workerId && version);
|
|
4685
4753
|
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getGetWorkerVersionChangeSummaryKey(workerId, version) : null);
|
|
4686
4754
|
const swrFn = () => getWorkerVersionChangeSummary(workerId, version, requestOptions);
|
|
4687
|
-
const query =
|
|
4755
|
+
const query = useSwr23(
|
|
4688
4756
|
swrKey,
|
|
4689
4757
|
swrFn,
|
|
4690
4758
|
swrOptions
|
|
@@ -5229,6 +5297,17 @@ var ListJobsStatusItem = {
|
|
|
5229
5297
|
canceled: "canceled"
|
|
5230
5298
|
};
|
|
5231
5299
|
|
|
5300
|
+
// generated/models/listNotificationsSortBy.ts
|
|
5301
|
+
var ListNotificationsSortBy = {
|
|
5302
|
+
created_at: "created_at"
|
|
5303
|
+
};
|
|
5304
|
+
|
|
5305
|
+
// generated/models/listNotificationsSortOrder.ts
|
|
5306
|
+
var ListNotificationsSortOrder = {
|
|
5307
|
+
asc: "asc",
|
|
5308
|
+
desc: "desc"
|
|
5309
|
+
};
|
|
5310
|
+
|
|
5232
5311
|
// generated/models/listSchedulesEnvironment.ts
|
|
5233
5312
|
var ListSchedulesEnvironment = {
|
|
5234
5313
|
live: "live",
|
|
@@ -5350,6 +5429,11 @@ var ListWorkerVersionsSortOrder = {
|
|
|
5350
5429
|
desc: "desc"
|
|
5351
5430
|
};
|
|
5352
5431
|
|
|
5432
|
+
// generated/models/notificationType.ts
|
|
5433
|
+
var NotificationType = {
|
|
5434
|
+
worker_issue_reported: "worker_issue_reported"
|
|
5435
|
+
};
|
|
5436
|
+
|
|
5353
5437
|
// generated/models/outboundJobEnvironment.ts
|
|
5354
5438
|
var OutboundJobEnvironment = {
|
|
5355
5439
|
live: "live",
|
|
@@ -5834,6 +5918,6 @@ var WorkerRunStatus = {
|
|
|
5834
5918
|
canceled: "canceled"
|
|
5835
5919
|
};
|
|
5836
5920
|
|
|
5837
|
-
export { AddCaseLinksBodyEntitiesItemEntityType, AnalyticsTimeSeriesGranularity, AnalyticsTimeSeriesMetric, ApiKeyCreatedRole, ApiKeyRole, ArtifactDetailDataStatus, ArtifactStatus, AvallonError, CallDetailDirection, CallDetailEnvironment, CallDirection, CallEnvironment, CaseLinkEntityType, ChatHistoryMessagesItemRole, ChatMessageRole, CreateApiKeyBodyEnvironment, CreateApiKeyBodyRole, CreateEmailBodyDirection, CreateInboxBodyProcessorType, CreateScheduleBodyEnvironmentsItem, CreateVoiceAgentBodyCallProcessorType, CreateVoiceAgentBodyDirection, CreateVoiceAgentBodyLanguage, CreateVoiceAgentBodyLlmModel, CreateVoiceAgentBodySttModel, CreateVoiceAgentBodyTtsModel, CreateVoiceAgentBodyTtsProvider, CreateWorkerRunBodyEnvironment, DispatchEnvironment, DispatchStatus, DispatchTargetType, DispatchTriggerType, EmailCreatedDirection, EmailDetailDirection, EmailDirection, EmailReplyResultValue, GetAnalyticsTimeSeriesGranularity, GetAnalyticsTimeSeriesGroupBy, GetAnalyticsTimeSeriesMetric, GetOAuthUrlCodeChallengeMethod, GetOAuthUrlProvider, InboxProcessorType, ListApiKeysIncludeRevoked, ListArtifactsSortBy, ListArtifactsSortOrder, ListArtifactsStatus, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, ListCallsEnvironment, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, ListCaseLinksEntityType, ListCaseLinksSortBy, ListCaseLinksSortOrder, ListCasesSortBy, ListCasesSortOrder, ListChatAgentsSortBy, ListChatAgentsSortOrder, ListChatMessagesSortBy, ListChatMessagesSortOrder, ListChatsSortBy, ListChatsSortOrder, ListDispatchesSortBy, ListDispatchesSortOrder, ListDispatchesTriggerType, ListEmailThreadsSortBy, ListEmailThreadsSortOrder, ListEmailsSortBy, ListEmailsSortOrder, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, ListExtractorsSortBy, ListExtractorsSortOrder, ListExtractsSortBy, ListExtractsSortOrder, ListInboxesSortBy, ListInboxesSortOrder, ListJobsStatusItem, ListSchedulesEnvironment, ListSchedulesRuleType, ListSchedulesSortBy, ListSchedulesSortOrder, ListSecretsSortBy, ListSecretsSortOrder, ListToolsSortBy, ListToolsSortOrder, ListVoiceAgentVersionsSortBy, ListVoiceAgentVersionsSortOrder, ListWebhookDeliveriesSortOrder, ListWorkerRunsEnvironment, ListWorkerRunsSortBy, ListWorkerRunsSortOrder, ListWorkerRunsStatus, ListWorkerVersionsSortBy, ListWorkerVersionsSortOrder, ListWorkersSortBy, ListWorkersSortOrder, OutboundJobEnvironment, OutboundJobStatus, ProfilePermissionsItem, ProfileRole, PromoteVoiceAgentVersionBodyEnvironment, PromotedVoiceAgentVersionEnvironment, ScheduleEnvironmentsItem, ScheduleJobBodyEnvironment, TeamInvitationState, TeamMemberRole, UpdateApiKeyBodyRole, UpdateInboxBodyProcessorType, UpdateMemberRoleBodyRole, UpdateScheduleBodyEnvironmentsItem, UpdateVoiceAgentBodyCallProcessorType, UpdateVoiceAgentBodyNoiseCancellation, UpdateVoiceAgentModelsBodyLanguage, UpdateVoiceAgentModelsBodyLlmModel, UpdateVoiceAgentModelsBodySttModel, UpdateVoiceAgentModelsBodyTtsModel, UpdateVoiceAgentModelsBodyTtsProvider, VoiceAgentBackgroundSounds, VoiceAgentDirection, VoiceAgentLanguage, VoiceAgentLlmModel, VoiceAgentNoiseCancellation, VoiceAgentSttModel, VoiceAgentTtsModel, VoiceAgentTtsProvider, VoiceAgentVersionActiveEnvironmentsItem, VoiceAgentVersionDetailActiveEnvironmentsItem, VoiceAgentVersionDetailBackgroundSounds, VoiceAgentVersionDetailDirection, VoiceAgentVersionDetailLanguage, VoiceAgentVersionDetailLlmModel, VoiceAgentVersionDetailNoiseCancellation, VoiceAgentVersionDetailSttModel, VoiceAgentVersionDetailTtsModel, VoiceAgentVersionDetailTtsProvider, VoiceAgentWithTestPhoneNumberBackgroundSounds, VoiceAgentWithTestPhoneNumberDirection, VoiceAgentWithTestPhoneNumberLanguage, VoiceAgentWithTestPhoneNumberLlmModel, VoiceAgentWithTestPhoneNumberNoiseCancellation, VoiceAgentWithTestPhoneNumberSttModel, VoiceAgentWithTestPhoneNumberTtsModel, VoiceAgentWithTestPhoneNumberTtsProvider, WorkerEnvironment, WorkerMcpName, WorkerMcpOutputName, WorkerPermission, WorkerRunCreatedEnvironment, WorkerRunCreatedStatus, WorkerRunEnvironment, WorkerRunStatus, addCaseLinks, addToolsToVoiceAgent, cancelJob, cancelWorkerRun, checkInboxAvailability, configure, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createCase, createChat, createChatAgent, createEmail, createExtractor, createExtractorJob, createExtractorWebhook, createInbox, createInboxWebhook, createSchedule, createSecret, createTool, createVoiceAgent, createWorker, createWorkerRun, createWorkerWebhook, deleteArtifact, deleteCallFeedback, deleteChatAgent, deleteEmail, deleteExtractor, deleteInbox, deleteSchedule, deleteSecret, deleteTool, deleteToolsFromVoiceAgent, deleteVoiceAgent, deleteWebhook, deleteWorker, executeCode, generateCodeChallenge, generateCodeVerifier, getAddCaseLinksMutationFetcher, getAddCaseLinksMutationKey, getAddCaseLinksUrl, getAddToolsToVoiceAgentMutationFetcher, getAddToolsToVoiceAgentMutationKey, getAddToolsToVoiceAgentUrl, getAnalyticsTimeSeries, getArtifact, getArtifactMetadataKeys, getArtifactStatusSummary, 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, getCreateCaseMutationFetcher, getCreateCaseMutationKey, getCreateCaseUrl, getCreateChatAgentMutationFetcher, getCreateChatAgentMutationKey, getCreateChatAgentUrl, getCreateChatMutationFetcher, getCreateChatMutationKey, getCreateChatUrl, getCreateEmailMutationFetcher, getCreateEmailMutationKey, getCreateEmailUrl, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateInboxMutationFetcher, getCreateInboxMutationKey, getCreateInboxUrl, getCreateInboxWebhookMutationFetcher, getCreateInboxWebhookMutationKey, getCreateInboxWebhookUrl, getCreateScheduleMutationFetcher, getCreateScheduleMutationKey, getCreateScheduleUrl, getCreateSecretMutationFetcher, getCreateSecretMutationKey, getCreateSecretUrl, getCreateToolMutationFetcher, getCreateToolMutationKey, getCreateToolUrl, getCreateVoiceAgentMutationFetcher, getCreateVoiceAgentMutationKey, getCreateVoiceAgentUrl, getCreateWorkerMutationFetcher, getCreateWorkerMutationKey, getCreateWorkerRunMutationFetcher, getCreateWorkerRunMutationKey, getCreateWorkerRunUrl, getCreateWorkerUrl, getCreateWorkerWebhookMutationFetcher, getCreateWorkerWebhookMutationKey, getCreateWorkerWebhookUrl, getDeleteArtifactMutationFetcher, getDeleteArtifactMutationKey, getDeleteArtifactUrl, getDeleteCallFeedbackMutationFetcher, getDeleteCallFeedbackMutationKey, getDeleteCallFeedbackUrl, getDeleteChatAgentMutationFetcher, getDeleteChatAgentMutationKey, getDeleteChatAgentUrl, getDeleteEmailMutationFetcher, getDeleteEmailMutationKey, getDeleteEmailUrl, getDeleteExtractorMutationFetcher, getDeleteExtractorMutationKey, getDeleteExtractorUrl, getDeleteInboxMutationFetcher, getDeleteInboxMutationKey, getDeleteInboxUrl, getDeleteScheduleMutationFetcher, getDeleteScheduleMutationKey, getDeleteScheduleUrl, getDeleteSecretMutationFetcher, getDeleteSecretMutationKey, getDeleteSecretUrl, getDeleteToolMutationFetcher, getDeleteToolMutationKey, getDeleteToolUrl, getDeleteToolsFromVoiceAgentMutationFetcher, getDeleteToolsFromVoiceAgentMutationKey, getDeleteToolsFromVoiceAgentUrl, getDeleteVoiceAgentMutationFetcher, getDeleteVoiceAgentMutationKey, getDeleteVoiceAgentUrl, getDeleteWebhookMutationFetcher, getDeleteWebhookMutationKey, getDeleteWebhookUrl, getDeleteWorkerMutationFetcher, getDeleteWorkerMutationKey, getDeleteWorkerUrl, getEmail, getExecuteCodeMutationFetcher, getExecuteCodeMutationKey, getExecuteCodeUrl, getExtract, getExtractCitations, getExtractor, getExtractorJob, getGetAnalyticsTimeSeriesKey, getGetAnalyticsTimeSeriesUrl, getGetArtifactKey, getGetArtifactMetadataKeysKey, getGetArtifactMetadataKeysUrl, getGetArtifactStatusSummaryKey, getGetArtifactStatusSummaryUrl, 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, getGetScheduleKey, getGetScheduleUrl, getGetSecretKey, getGetSecretUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetVoiceAgentKey, getGetVoiceAgentPlaceholdersKey, getGetVoiceAgentPlaceholdersUrl, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, getGetVoiceAgentVersionChangeSummaryKey, getGetVoiceAgentVersionChangeSummaryUrl, getGetVoiceAgentVersionKey, getGetVoiceAgentVersionUrl, getGetWebhookKey, getGetWebhookUrl, getGetWorkerKey, getGetWorkerPromptKey, getGetWorkerPromptUrl, getGetWorkerRunKey, getGetWorkerRunUrl, getGetWorkerUrl, getGetWorkerVersionChangeSummaryKey, getGetWorkerVersionChangeSummaryUrl, getGetWorkerVersionKey, getGetWorkerVersionUrl, getInviteTeamMemberMutationFetcher, getInviteTeamMemberMutationKey, getInviteTeamMemberUrl, getListAgentWebhooksKey, getListAgentWebhooksUrl, getListApiKeysKey, getListApiKeysUrl, getListArtifactsKey, getListArtifactsUrl, getListCallFeedbackKey, getListCallFeedbackUrl, getListCallsKey, getListCallsUrl, getListCaseLinksKey, getListCaseLinksUrl, getListCasesKey, getListCasesUrl, getListChatAgentsKey, getListChatAgentsUrl, getListChatMessagesKey, getListChatMessagesUrl, getListChatsKey, getListChatsUrl, getListDispatchesKey, getListDispatchesUrl, getListEmailThreadsKey, getListEmailThreadsUrl, getListEmailsKey, getListEmailsUrl, getListExtractorJobsKey, getListExtractorJobsUrl, getListExtractorsKey, getListExtractorsUrl, getListExtractsKey, getListExtractsUrl, getListInboxWebhooksKey, getListInboxWebhooksUrl, getListInboxesKey, getListInboxesUrl, getListJobsKey, getListJobsUrl, getListSchedulesKey, getListSchedulesUrl, getListSecretsKey, getListSecretsUrl, getListTeamInvitationsKey, getListTeamInvitationsUrl, getListTeamMembersKey, getListTeamMembersUrl, getListToolsKey, getListToolsUrl, getListVoiceAgentVersionsKey, getListVoiceAgentVersionsUrl, getListVoiceAgentsKey, getListVoiceAgentsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getListWorkerModelsKey, getListWorkerModelsUrl, getListWorkerRunMessagesKey, getListWorkerRunMessagesUrl, getListWorkerRunsKey, getListWorkerRunsUrl, getListWorkerVersionsKey, getListWorkerVersionsUrl, getListWorkerWebhooksKey, getListWorkerWebhooksUrl, getListWorkersKey, getListWorkersUrl, getOAuthUrl, getPartnerJwks, getPartnerLaunchMutationFetcher, getPartnerLaunchMutationKey, getPartnerLaunchUrl, getPostChatMessageMutationFetcher, getPostChatMessageMutationKey, getPostChatMessageUrl, getProfile, getPromoteVoiceAgentVersionMutationFetcher, getPromoteVoiceAgentVersionMutationKey, getPromoteVoiceAgentVersionUrl, getPromoteWorkerVersionMutationFetcher, getPromoteWorkerVersionMutationKey, getPromoteWorkerVersionUrl, getPublicChatAgent, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRemoveCaseLinkMutationFetcher, getRemoveCaseLinkMutationKey, getRemoveCaseLinkUrl, getRemoveMemberMutationFetcher, getRemoveMemberMutationKey, getRemoveMemberUrl, getReplyToEmailMutationFetcher, getReplyToEmailMutationKey, getReplyToEmailUrl, getRequestPasswordResetMutationFetcher, getRequestPasswordResetMutationKey, getRequestPasswordResetUrl, getResendTeamInvitationMutationFetcher, getResendTeamInvitationMutationKey, getResendTeamInvitationUrl, getResetPasswordMutationFetcher, getResetPasswordMutationKey, getResetPasswordUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getRevokeTeamInvitationMutationFetcher, getRevokeTeamInvitationMutationKey, getRevokeTeamInvitationUrl, getSchedule, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSearchCasesKey, getSearchCasesUrl, getSecret, 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, getUpdateScheduleMutationFetcher, getUpdateScheduleMutationKey, getUpdateScheduleUrl, getUpdateSecretMutationFetcher, getUpdateSecretMutationKey, getUpdateSecretUrl, getUpdateToolMutationFetcher, getUpdateToolMutationKey, getUpdateToolUrl, getUpdateVoiceAgentModelsMutationFetcher, getUpdateVoiceAgentModelsMutationKey, getUpdateVoiceAgentModelsUrl, getUpdateVoiceAgentMutationFetcher, getUpdateVoiceAgentMutationKey, getUpdateVoiceAgentPromptMutationFetcher, getUpdateVoiceAgentPromptMutationKey, getUpdateVoiceAgentPromptUrl, getUpdateVoiceAgentUrl, getUpdateWorkerMcpsMutationFetcher, getUpdateWorkerMcpsMutationKey, getUpdateWorkerMcpsUrl, 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, getWorkerVersion, getWorkerVersionChangeSummary, inviteTeamMember, listAgentWebhooks, listApiKeys, listArtifacts, listCallFeedback, listCalls, listCaseLinks, listCases, listChatAgents, listChatMessages, listChats, listDispatches, listEmailThreads, listEmails, listExtractorJobs, listExtractors, listExtracts, listInboxWebhooks, listInboxes, listJobs, listSchedules, listSecrets, listTeamInvitations, listTeamMembers, listTools, listVoiceAgentVersions, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerModels, listWorkerRunMessages, listWorkerRuns, listWorkerVersions, listWorkerWebhooks, listWorkers, partnerLaunch, postChatMessage, promoteVoiceAgentVersion, promoteWorkerVersion, refreshToken, removeCaseLink, removeMember, replyToEmail, requestPasswordReset, resendTeamInvitation, resetPassword, revokeApiKey, revokeTeamInvitation, scheduleJob, searchCases, sendEmail, signIn, signUp, testWebhook, updateApiKey, updateArtifactMetadata, updateCallControls, updateChatAgent, updateChatAgentPrompt, updateExtractor, updateInbox, updateMemberRole, updateSchedule, updateSecret, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateVoiceAgentPrompt, updateWorker, updateWorkerMcps, updateWorkerPrompt, updateWorkerRunScope, uploadFile, useAddCaseLinks, useAddToolsToVoiceAgent, useCancelJob, useCancelWorkerRun, useCheckInboxAvailability, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateCase, useCreateChat, useCreateChatAgent, useCreateEmail, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateInbox, useCreateInboxWebhook, useCreateSchedule, useCreateSecret, useCreateTool, useCreateVoiceAgent, useCreateWorker, useCreateWorkerRun, useCreateWorkerWebhook, useDeleteArtifact, useDeleteCallFeedback, useDeleteChatAgent, useDeleteEmail, useDeleteExtractor, useDeleteInbox, useDeleteSchedule, useDeleteSecret, useDeleteTool, useDeleteToolsFromVoiceAgent, useDeleteVoiceAgent, useDeleteWebhook, useDeleteWorker, useExecuteCode, useGetAnalyticsTimeSeries, useGetArtifact, useGetArtifactMetadataKeys, useGetArtifactStatusSummary, useGetArtifactUploadUrl, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetCase, useGetChat, useGetChatAgent, useGetChatAgentPrompt, useGetEmail, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetOAuthUrl, useGetPartnerJwks, useGetProfile, useGetPublicChatAgent, useGetSchedule, useGetSecret, useGetSessionToken, useGetTool, useGetVoiceAgent, useGetVoiceAgentPlaceholders, useGetVoiceAgentPrompt, useGetVoiceAgentVersion, useGetVoiceAgentVersionChangeSummary, useGetWebhook, useGetWorker, useGetWorkerPrompt, useGetWorkerRun, useGetWorkerVersion, useGetWorkerVersionChangeSummary, useInviteTeamMember, useListAgentWebhooks, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListCaseLinks, useListCases, useListChatAgents, useListChatMessages, useListChats, useListDispatches, useListEmailThreads, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListInboxWebhooks, useListInboxes, useListJobs, useListSchedules, useListSecrets, useListTeamInvitations, useListTeamMembers, useListTools, useListVoiceAgentVersions, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerModels, useListWorkerRunMessages, useListWorkerRuns, useListWorkerVersions, useListWorkerWebhooks, useListWorkers, usePartnerLaunch, usePostChatMessage, usePromoteVoiceAgentVersion, usePromoteWorkerVersion, useRefreshToken, useRemoveCaseLink, useRemoveMember, useReplyToEmail, useRequestPasswordReset, useResendTeamInvitation, useResetPassword, useRevokeApiKey, useRevokeTeamInvitation, useScheduleJob, useSearchCases, useSendEmail, useSignIn, useSignUp, useTestWebhook, useUpdateApiKey, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateChatAgent, useUpdateChatAgentPrompt, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateSchedule, useUpdateSecret, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateVoiceAgentPrompt, useUpdateWorker, useUpdateWorkerMcps, useUpdateWorkerPrompt, useUpdateWorkerRunScope, useUploadFile, useWorkerExecuteTool, useWorkerGetTool, useWorkerListTools, workerExecuteTool, workerGetTool, workerListTools };
|
|
5921
|
+
export { AddCaseLinksBodyEntitiesItemEntityType, AnalyticsTimeSeriesGranularity, AnalyticsTimeSeriesMetric, ApiKeyCreatedRole, ApiKeyRole, ArtifactDetailDataStatus, ArtifactStatus, AvallonError, CallDetailDirection, CallDetailEnvironment, CallDirection, CallEnvironment, CaseLinkEntityType, ChatHistoryMessagesItemRole, ChatMessageRole, CreateApiKeyBodyEnvironment, CreateApiKeyBodyRole, CreateEmailBodyDirection, CreateInboxBodyProcessorType, CreateScheduleBodyEnvironmentsItem, CreateVoiceAgentBodyCallProcessorType, CreateVoiceAgentBodyDirection, CreateVoiceAgentBodyLanguage, CreateVoiceAgentBodyLlmModel, CreateVoiceAgentBodySttModel, CreateVoiceAgentBodyTtsModel, CreateVoiceAgentBodyTtsProvider, CreateWorkerRunBodyEnvironment, DispatchEnvironment, DispatchStatus, DispatchTargetType, DispatchTriggerType, EmailCreatedDirection, EmailDetailDirection, EmailDirection, EmailReplyResultValue, GetAnalyticsTimeSeriesGranularity, GetAnalyticsTimeSeriesGroupBy, GetAnalyticsTimeSeriesMetric, GetOAuthUrlCodeChallengeMethod, GetOAuthUrlProvider, InboxProcessorType, ListApiKeysIncludeRevoked, ListArtifactsSortBy, ListArtifactsSortOrder, ListArtifactsStatus, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, ListCallsEnvironment, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, ListCaseLinksEntityType, ListCaseLinksSortBy, ListCaseLinksSortOrder, ListCasesSortBy, ListCasesSortOrder, ListChatAgentsSortBy, ListChatAgentsSortOrder, ListChatMessagesSortBy, ListChatMessagesSortOrder, ListChatsSortBy, ListChatsSortOrder, ListDispatchesSortBy, ListDispatchesSortOrder, ListDispatchesTriggerType, ListEmailThreadsSortBy, ListEmailThreadsSortOrder, ListEmailsSortBy, ListEmailsSortOrder, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, ListExtractorsSortBy, ListExtractorsSortOrder, ListExtractsSortBy, ListExtractsSortOrder, ListInboxesSortBy, ListInboxesSortOrder, ListJobsStatusItem, ListNotificationsSortBy, ListNotificationsSortOrder, ListSchedulesEnvironment, ListSchedulesRuleType, ListSchedulesSortBy, ListSchedulesSortOrder, ListSecretsSortBy, ListSecretsSortOrder, ListToolsSortBy, ListToolsSortOrder, ListVoiceAgentVersionsSortBy, ListVoiceAgentVersionsSortOrder, ListWebhookDeliveriesSortOrder, ListWorkerRunsEnvironment, ListWorkerRunsSortBy, ListWorkerRunsSortOrder, ListWorkerRunsStatus, ListWorkerVersionsSortBy, ListWorkerVersionsSortOrder, ListWorkersSortBy, ListWorkersSortOrder, NotificationType, OutboundJobEnvironment, OutboundJobStatus, ProfilePermissionsItem, ProfileRole, PromoteVoiceAgentVersionBodyEnvironment, PromotedVoiceAgentVersionEnvironment, ScheduleEnvironmentsItem, ScheduleJobBodyEnvironment, TeamInvitationState, TeamMemberRole, UpdateApiKeyBodyRole, UpdateInboxBodyProcessorType, UpdateMemberRoleBodyRole, UpdateScheduleBodyEnvironmentsItem, UpdateVoiceAgentBodyCallProcessorType, UpdateVoiceAgentBodyNoiseCancellation, UpdateVoiceAgentModelsBodyLanguage, UpdateVoiceAgentModelsBodyLlmModel, UpdateVoiceAgentModelsBodySttModel, UpdateVoiceAgentModelsBodyTtsModel, UpdateVoiceAgentModelsBodyTtsProvider, VoiceAgentBackgroundSounds, VoiceAgentDirection, VoiceAgentLanguage, VoiceAgentLlmModel, VoiceAgentNoiseCancellation, VoiceAgentSttModel, VoiceAgentTtsModel, VoiceAgentTtsProvider, VoiceAgentVersionActiveEnvironmentsItem, VoiceAgentVersionDetailActiveEnvironmentsItem, VoiceAgentVersionDetailBackgroundSounds, VoiceAgentVersionDetailDirection, VoiceAgentVersionDetailLanguage, VoiceAgentVersionDetailLlmModel, VoiceAgentVersionDetailNoiseCancellation, VoiceAgentVersionDetailSttModel, VoiceAgentVersionDetailTtsModel, VoiceAgentVersionDetailTtsProvider, VoiceAgentWithTestPhoneNumberBackgroundSounds, VoiceAgentWithTestPhoneNumberDirection, VoiceAgentWithTestPhoneNumberLanguage, VoiceAgentWithTestPhoneNumberLlmModel, VoiceAgentWithTestPhoneNumberNoiseCancellation, VoiceAgentWithTestPhoneNumberSttModel, VoiceAgentWithTestPhoneNumberTtsModel, VoiceAgentWithTestPhoneNumberTtsProvider, WorkerEnvironment, WorkerMcpName, WorkerMcpOutputName, WorkerPermission, WorkerRunCreatedEnvironment, WorkerRunCreatedStatus, WorkerRunEnvironment, WorkerRunStatus, addCaseLinks, addToolsToVoiceAgent, cancelJob, cancelWorkerRun, checkInboxAvailability, configure, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createCase, createChat, createChatAgent, createEmail, createExtractor, createExtractorJob, createExtractorWebhook, createInbox, createInboxWebhook, createSchedule, createSecret, createTool, createVoiceAgent, createWorker, createWorkerRun, createWorkerWebhook, deleteArtifact, deleteCallFeedback, deleteChatAgent, deleteEmail, deleteExtractor, deleteInbox, deleteSchedule, deleteSecret, deleteTool, deleteToolsFromVoiceAgent, deleteVoiceAgent, deleteWebhook, deleteWorker, executeCode, generateCodeChallenge, generateCodeVerifier, getAddCaseLinksMutationFetcher, getAddCaseLinksMutationKey, getAddCaseLinksUrl, getAddToolsToVoiceAgentMutationFetcher, getAddToolsToVoiceAgentMutationKey, getAddToolsToVoiceAgentUrl, getAnalyticsTimeSeries, getArtifact, getArtifactMetadataKeys, getArtifactStatusSummary, 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, getCreateCaseMutationFetcher, getCreateCaseMutationKey, getCreateCaseUrl, getCreateChatAgentMutationFetcher, getCreateChatAgentMutationKey, getCreateChatAgentUrl, getCreateChatMutationFetcher, getCreateChatMutationKey, getCreateChatUrl, getCreateEmailMutationFetcher, getCreateEmailMutationKey, getCreateEmailUrl, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateInboxMutationFetcher, getCreateInboxMutationKey, getCreateInboxUrl, getCreateInboxWebhookMutationFetcher, getCreateInboxWebhookMutationKey, getCreateInboxWebhookUrl, getCreateScheduleMutationFetcher, getCreateScheduleMutationKey, getCreateScheduleUrl, getCreateSecretMutationFetcher, getCreateSecretMutationKey, getCreateSecretUrl, getCreateToolMutationFetcher, getCreateToolMutationKey, getCreateToolUrl, getCreateVoiceAgentMutationFetcher, getCreateVoiceAgentMutationKey, getCreateVoiceAgentUrl, getCreateWorkerMutationFetcher, getCreateWorkerMutationKey, getCreateWorkerRunMutationFetcher, getCreateWorkerRunMutationKey, getCreateWorkerRunUrl, getCreateWorkerUrl, getCreateWorkerWebhookMutationFetcher, getCreateWorkerWebhookMutationKey, getCreateWorkerWebhookUrl, getDeleteArtifactMutationFetcher, getDeleteArtifactMutationKey, getDeleteArtifactUrl, getDeleteCallFeedbackMutationFetcher, getDeleteCallFeedbackMutationKey, getDeleteCallFeedbackUrl, getDeleteChatAgentMutationFetcher, getDeleteChatAgentMutationKey, getDeleteChatAgentUrl, getDeleteEmailMutationFetcher, getDeleteEmailMutationKey, getDeleteEmailUrl, getDeleteExtractorMutationFetcher, getDeleteExtractorMutationKey, getDeleteExtractorUrl, getDeleteInboxMutationFetcher, getDeleteInboxMutationKey, getDeleteInboxUrl, getDeleteScheduleMutationFetcher, getDeleteScheduleMutationKey, getDeleteScheduleUrl, getDeleteSecretMutationFetcher, getDeleteSecretMutationKey, getDeleteSecretUrl, getDeleteToolMutationFetcher, getDeleteToolMutationKey, getDeleteToolUrl, getDeleteToolsFromVoiceAgentMutationFetcher, getDeleteToolsFromVoiceAgentMutationKey, getDeleteToolsFromVoiceAgentUrl, getDeleteVoiceAgentMutationFetcher, getDeleteVoiceAgentMutationKey, getDeleteVoiceAgentUrl, getDeleteWebhookMutationFetcher, getDeleteWebhookMutationKey, getDeleteWebhookUrl, getDeleteWorkerMutationFetcher, getDeleteWorkerMutationKey, getDeleteWorkerUrl, getEmail, getExecuteCodeMutationFetcher, getExecuteCodeMutationKey, getExecuteCodeUrl, getExtract, getExtractCitations, getExtractor, getExtractorJob, getGetAnalyticsTimeSeriesKey, getGetAnalyticsTimeSeriesUrl, getGetArtifactKey, getGetArtifactMetadataKeysKey, getGetArtifactMetadataKeysUrl, getGetArtifactStatusSummaryKey, getGetArtifactStatusSummaryUrl, 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, getGetScheduleKey, getGetScheduleUrl, getGetSecretKey, getGetSecretUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetVoiceAgentKey, getGetVoiceAgentPlaceholdersKey, getGetVoiceAgentPlaceholdersUrl, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, getGetVoiceAgentVersionChangeSummaryKey, getGetVoiceAgentVersionChangeSummaryUrl, getGetVoiceAgentVersionKey, getGetVoiceAgentVersionUrl, getGetWebhookKey, getGetWebhookUrl, getGetWorkerKey, getGetWorkerPromptKey, getGetWorkerPromptUrl, getGetWorkerRunKey, getGetWorkerRunUrl, getGetWorkerUrl, getGetWorkerVersionChangeSummaryKey, getGetWorkerVersionChangeSummaryUrl, getGetWorkerVersionKey, getGetWorkerVersionUrl, getInviteTeamMemberMutationFetcher, getInviteTeamMemberMutationKey, getInviteTeamMemberUrl, getListAgentWebhooksKey, getListAgentWebhooksUrl, getListApiKeysKey, getListApiKeysUrl, getListArtifactsKey, getListArtifactsUrl, getListCallFeedbackKey, getListCallFeedbackUrl, getListCallsKey, getListCallsUrl, getListCaseLinksKey, getListCaseLinksUrl, getListCasesKey, getListCasesUrl, getListChatAgentsKey, getListChatAgentsUrl, getListChatMessagesKey, getListChatMessagesUrl, getListChatsKey, getListChatsUrl, getListDispatchesKey, getListDispatchesUrl, getListEmailThreadsKey, getListEmailThreadsUrl, getListEmailsKey, getListEmailsUrl, getListExtractorJobsKey, getListExtractorJobsUrl, getListExtractorsKey, getListExtractorsUrl, getListExtractsKey, getListExtractsUrl, getListInboxWebhooksKey, getListInboxWebhooksUrl, getListInboxesKey, getListInboxesUrl, getListJobsKey, getListJobsUrl, getListNotificationsKey, getListNotificationsUrl, getListSchedulesKey, getListSchedulesUrl, getListSecretsKey, getListSecretsUrl, getListTeamInvitationsKey, getListTeamInvitationsUrl, getListTeamMembersKey, getListTeamMembersUrl, getListToolsKey, getListToolsUrl, getListVoiceAgentVersionsKey, getListVoiceAgentVersionsUrl, getListVoiceAgentsKey, getListVoiceAgentsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getListWorkerModelsKey, getListWorkerModelsUrl, getListWorkerRunMessagesKey, getListWorkerRunMessagesUrl, getListWorkerRunsKey, getListWorkerRunsUrl, getListWorkerVersionsKey, getListWorkerVersionsUrl, getListWorkerWebhooksKey, getListWorkerWebhooksUrl, getListWorkersKey, getListWorkersUrl, getNotifyAdminMutationFetcher, getNotifyAdminMutationKey, getNotifyAdminUrl, getOAuthUrl, getPartnerJwks, getPartnerLaunchMutationFetcher, getPartnerLaunchMutationKey, getPartnerLaunchUrl, getPostChatMessageMutationFetcher, getPostChatMessageMutationKey, getPostChatMessageUrl, getProfile, getPromoteVoiceAgentVersionMutationFetcher, getPromoteVoiceAgentVersionMutationKey, getPromoteVoiceAgentVersionUrl, getPromoteWorkerVersionMutationFetcher, getPromoteWorkerVersionMutationKey, getPromoteWorkerVersionUrl, getPublicChatAgent, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRemoveCaseLinkMutationFetcher, getRemoveCaseLinkMutationKey, getRemoveCaseLinkUrl, getRemoveMemberMutationFetcher, getRemoveMemberMutationKey, getRemoveMemberUrl, getReplyToEmailMutationFetcher, getReplyToEmailMutationKey, getReplyToEmailUrl, getRequestPasswordResetMutationFetcher, getRequestPasswordResetMutationKey, getRequestPasswordResetUrl, getResendTeamInvitationMutationFetcher, getResendTeamInvitationMutationKey, getResendTeamInvitationUrl, getResetPasswordMutationFetcher, getResetPasswordMutationKey, getResetPasswordUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getRevokeTeamInvitationMutationFetcher, getRevokeTeamInvitationMutationKey, getRevokeTeamInvitationUrl, getSchedule, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSearchCasesKey, getSearchCasesUrl, getSecret, 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, getUpdateScheduleMutationFetcher, getUpdateScheduleMutationKey, getUpdateScheduleUrl, getUpdateSecretMutationFetcher, getUpdateSecretMutationKey, getUpdateSecretUrl, getUpdateToolMutationFetcher, getUpdateToolMutationKey, getUpdateToolUrl, getUpdateVoiceAgentModelsMutationFetcher, getUpdateVoiceAgentModelsMutationKey, getUpdateVoiceAgentModelsUrl, getUpdateVoiceAgentMutationFetcher, getUpdateVoiceAgentMutationKey, getUpdateVoiceAgentPromptMutationFetcher, getUpdateVoiceAgentPromptMutationKey, getUpdateVoiceAgentPromptUrl, getUpdateVoiceAgentUrl, getUpdateWorkerMcpsMutationFetcher, getUpdateWorkerMcpsMutationKey, getUpdateWorkerMcpsUrl, 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, getWorkerVersion, getWorkerVersionChangeSummary, inviteTeamMember, listAgentWebhooks, listApiKeys, listArtifacts, listCallFeedback, listCalls, listCaseLinks, listCases, listChatAgents, listChatMessages, listChats, listDispatches, listEmailThreads, listEmails, listExtractorJobs, listExtractors, listExtracts, listInboxWebhooks, listInboxes, listJobs, listNotifications, listSchedules, listSecrets, listTeamInvitations, listTeamMembers, listTools, listVoiceAgentVersions, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerModels, listWorkerRunMessages, listWorkerRuns, listWorkerVersions, listWorkerWebhooks, listWorkers, notifyAdmin, partnerLaunch, postChatMessage, promoteVoiceAgentVersion, promoteWorkerVersion, refreshToken, removeCaseLink, removeMember, replyToEmail, requestPasswordReset, resendTeamInvitation, resetPassword, revokeApiKey, revokeTeamInvitation, scheduleJob, searchCases, sendEmail, signIn, signUp, testWebhook, updateApiKey, updateArtifactMetadata, updateCallControls, updateChatAgent, updateChatAgentPrompt, updateExtractor, updateInbox, updateMemberRole, updateSchedule, updateSecret, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateVoiceAgentPrompt, updateWorker, updateWorkerMcps, updateWorkerPrompt, updateWorkerRunScope, uploadFile, useAddCaseLinks, useAddToolsToVoiceAgent, useCancelJob, useCancelWorkerRun, useCheckInboxAvailability, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateCase, useCreateChat, useCreateChatAgent, useCreateEmail, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateInbox, useCreateInboxWebhook, useCreateSchedule, useCreateSecret, useCreateTool, useCreateVoiceAgent, useCreateWorker, useCreateWorkerRun, useCreateWorkerWebhook, useDeleteArtifact, useDeleteCallFeedback, useDeleteChatAgent, useDeleteEmail, useDeleteExtractor, useDeleteInbox, useDeleteSchedule, useDeleteSecret, useDeleteTool, useDeleteToolsFromVoiceAgent, useDeleteVoiceAgent, useDeleteWebhook, useDeleteWorker, useExecuteCode, useGetAnalyticsTimeSeries, useGetArtifact, useGetArtifactMetadataKeys, useGetArtifactStatusSummary, useGetArtifactUploadUrl, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetCase, useGetChat, useGetChatAgent, useGetChatAgentPrompt, useGetEmail, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetOAuthUrl, useGetPartnerJwks, useGetProfile, useGetPublicChatAgent, useGetSchedule, useGetSecret, useGetSessionToken, useGetTool, useGetVoiceAgent, useGetVoiceAgentPlaceholders, useGetVoiceAgentPrompt, useGetVoiceAgentVersion, useGetVoiceAgentVersionChangeSummary, useGetWebhook, useGetWorker, useGetWorkerPrompt, useGetWorkerRun, useGetWorkerVersion, useGetWorkerVersionChangeSummary, useInviteTeamMember, useListAgentWebhooks, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListCaseLinks, useListCases, useListChatAgents, useListChatMessages, useListChats, useListDispatches, useListEmailThreads, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListInboxWebhooks, useListInboxes, useListJobs, useListNotifications, useListSchedules, useListSecrets, useListTeamInvitations, useListTeamMembers, useListTools, useListVoiceAgentVersions, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerModels, useListWorkerRunMessages, useListWorkerRuns, useListWorkerVersions, useListWorkerWebhooks, useListWorkers, useNotifyAdmin, usePartnerLaunch, usePostChatMessage, usePromoteVoiceAgentVersion, usePromoteWorkerVersion, useRefreshToken, useRemoveCaseLink, useRemoveMember, useReplyToEmail, useRequestPasswordReset, useResendTeamInvitation, useResetPassword, useRevokeApiKey, useRevokeTeamInvitation, useScheduleJob, useSearchCases, useSendEmail, useSignIn, useSignUp, useTestWebhook, useUpdateApiKey, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateChatAgent, useUpdateChatAgentPrompt, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateSchedule, useUpdateSecret, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateVoiceAgentPrompt, useUpdateWorker, useUpdateWorkerMcps, useUpdateWorkerPrompt, useUpdateWorkerRunScope, useUploadFile, useWorkerExecuteTool, useWorkerGetTool, useWorkerListTools, workerExecuteTool, workerGetTool, workerListTools };
|
|
5838
5922
|
//# sourceMappingURL=index.js.map
|
|
5839
5923
|
//# sourceMappingURL=index.js.map
|