@avallon-labs/sdk 48.2.0 → 49.0.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 +179 -45
- package/dist/index.js +166 -87
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import useSwr23 from 'swr';
|
|
2
|
-
import
|
|
2
|
+
import useSWRMutation19 from 'swr/mutation';
|
|
3
3
|
|
|
4
4
|
// src/fetcher.ts
|
|
5
5
|
var config = {
|
|
@@ -195,7 +195,7 @@ var useCreateApiKey = (options) => {
|
|
|
195
195
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
196
196
|
const swrKey = swrOptions?.swrKey ?? getCreateApiKeyMutationKey();
|
|
197
197
|
const swrFn = getCreateApiKeyMutationFetcher(requestOptions);
|
|
198
|
-
const query =
|
|
198
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
199
199
|
return {
|
|
200
200
|
swrKey,
|
|
201
201
|
...query
|
|
@@ -220,7 +220,7 @@ var useRevokeApiKey = (id, options) => {
|
|
|
220
220
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
221
221
|
const swrKey = swrOptions?.swrKey ?? getRevokeApiKeyMutationKey(id);
|
|
222
222
|
const swrFn = getRevokeApiKeyMutationFetcher(id, requestOptions);
|
|
223
|
-
const query =
|
|
223
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
224
224
|
return {
|
|
225
225
|
swrKey,
|
|
226
226
|
...query
|
|
@@ -247,7 +247,7 @@ var useUpdateApiKey = (id, options) => {
|
|
|
247
247
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
248
248
|
const swrKey = swrOptions?.swrKey ?? getUpdateApiKeyMutationKey(id);
|
|
249
249
|
const swrFn = getUpdateApiKeyMutationFetcher(id, requestOptions);
|
|
250
|
-
const query =
|
|
250
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
251
251
|
return {
|
|
252
252
|
swrKey,
|
|
253
253
|
...query
|
|
@@ -274,7 +274,7 @@ var useCreateArtifact = (options) => {
|
|
|
274
274
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
275
275
|
const swrKey = swrOptions?.swrKey ?? getCreateArtifactMutationKey();
|
|
276
276
|
const swrFn = getCreateArtifactMutationFetcher(requestOptions);
|
|
277
|
-
const query =
|
|
277
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
278
278
|
return {
|
|
279
279
|
swrKey,
|
|
280
280
|
...query
|
|
@@ -362,7 +362,7 @@ var useDeleteArtifact = (id, options) => {
|
|
|
362
362
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
363
363
|
const swrKey = swrOptions?.swrKey ?? getDeleteArtifactMutationKey(id);
|
|
364
364
|
const swrFn = getDeleteArtifactMutationFetcher(id, requestOptions);
|
|
365
|
-
const query =
|
|
365
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
366
366
|
return {
|
|
367
367
|
swrKey,
|
|
368
368
|
...query
|
|
@@ -474,7 +474,7 @@ var useGetArtifactUploadUrl = (options) => {
|
|
|
474
474
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
475
475
|
const swrKey = swrOptions?.swrKey ?? getGetArtifactUploadUrlMutationKey();
|
|
476
476
|
const swrFn = getGetArtifactUploadUrlMutationFetcher(requestOptions);
|
|
477
|
-
const query =
|
|
477
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
478
478
|
return {
|
|
479
479
|
swrKey,
|
|
480
480
|
...query
|
|
@@ -504,7 +504,7 @@ var useUpdateArtifactMetadata = (id, options) => {
|
|
|
504
504
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
505
505
|
const swrKey = swrOptions?.swrKey ?? getUpdateArtifactMetadataMutationKey(id);
|
|
506
506
|
const swrFn = getUpdateArtifactMetadataMutationFetcher(id, requestOptions);
|
|
507
|
-
const query =
|
|
507
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
508
508
|
return {
|
|
509
509
|
swrKey,
|
|
510
510
|
...query
|
|
@@ -531,7 +531,7 @@ var useUploadFile = (options) => {
|
|
|
531
531
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
532
532
|
const swrKey = swrOptions?.swrKey ?? getUploadFileMutationKey();
|
|
533
533
|
const swrFn = getUploadFileMutationFetcher(requestOptions);
|
|
534
|
-
const query =
|
|
534
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
535
535
|
return {
|
|
536
536
|
swrKey,
|
|
537
537
|
...query
|
|
@@ -558,7 +558,7 @@ var useSignUp = (options) => {
|
|
|
558
558
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
559
559
|
const swrKey = swrOptions?.swrKey ?? getSignUpMutationKey();
|
|
560
560
|
const swrFn = getSignUpMutationFetcher(requestOptions);
|
|
561
|
-
const query =
|
|
561
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
562
562
|
return {
|
|
563
563
|
swrKey,
|
|
564
564
|
...query
|
|
@@ -585,7 +585,7 @@ var useSignIn = (options) => {
|
|
|
585
585
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
586
586
|
const swrKey = swrOptions?.swrKey ?? getSignInMutationKey();
|
|
587
587
|
const swrFn = getSignInMutationFetcher(requestOptions);
|
|
588
|
-
const query =
|
|
588
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
589
589
|
return {
|
|
590
590
|
swrKey,
|
|
591
591
|
...query
|
|
@@ -615,7 +615,7 @@ var useRequestPasswordReset = (options) => {
|
|
|
615
615
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
616
616
|
const swrKey = swrOptions?.swrKey ?? getRequestPasswordResetMutationKey();
|
|
617
617
|
const swrFn = getRequestPasswordResetMutationFetcher(requestOptions);
|
|
618
|
-
const query =
|
|
618
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
619
619
|
return {
|
|
620
620
|
swrKey,
|
|
621
621
|
...query
|
|
@@ -642,7 +642,7 @@ var useResetPassword = (options) => {
|
|
|
642
642
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
643
643
|
const swrKey = swrOptions?.swrKey ?? getResetPasswordMutationKey();
|
|
644
644
|
const swrFn = getResetPasswordMutationFetcher(requestOptions);
|
|
645
|
-
const query =
|
|
645
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
646
646
|
return {
|
|
647
647
|
swrKey,
|
|
648
648
|
...query
|
|
@@ -669,7 +669,7 @@ var useRefreshToken = (options) => {
|
|
|
669
669
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
670
670
|
const swrKey = swrOptions?.swrKey ?? getRefreshTokenMutationKey();
|
|
671
671
|
const swrFn = getRefreshTokenMutationFetcher(requestOptions);
|
|
672
|
-
const query =
|
|
672
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
673
673
|
return {
|
|
674
674
|
swrKey,
|
|
675
675
|
...query
|
|
@@ -734,7 +734,7 @@ var useGetSessionToken = (options) => {
|
|
|
734
734
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
735
735
|
const swrKey = swrOptions?.swrKey ?? getGetSessionTokenMutationKey();
|
|
736
736
|
const swrFn = getGetSessionTokenMutationFetcher(requestOptions);
|
|
737
|
-
const query =
|
|
737
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
738
738
|
return {
|
|
739
739
|
swrKey,
|
|
740
740
|
...query
|
|
@@ -797,7 +797,7 @@ var usePartnerLaunch = (params, options) => {
|
|
|
797
797
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
798
798
|
const swrKey = swrOptions?.swrKey ?? getPartnerLaunchMutationKey(params);
|
|
799
799
|
const swrFn = getPartnerLaunchMutationFetcher(params, requestOptions);
|
|
800
|
-
const query =
|
|
800
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
801
801
|
return {
|
|
802
802
|
swrKey,
|
|
803
803
|
...query
|
|
@@ -824,7 +824,7 @@ var useCreateCallFeedback = (id, options) => {
|
|
|
824
824
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
825
825
|
const swrKey = swrOptions?.swrKey ?? getCreateCallFeedbackMutationKey(id);
|
|
826
826
|
const swrFn = getCreateCallFeedbackMutationFetcher(id, requestOptions);
|
|
827
|
-
const query =
|
|
827
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
828
828
|
return {
|
|
829
829
|
swrKey,
|
|
830
830
|
...query
|
|
@@ -897,7 +897,7 @@ var useDeleteCallFeedback = (id, feedbackId, options) => {
|
|
|
897
897
|
feedbackId,
|
|
898
898
|
requestOptions
|
|
899
899
|
);
|
|
900
|
-
const query =
|
|
900
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
901
901
|
return {
|
|
902
902
|
swrKey,
|
|
903
903
|
...query
|
|
@@ -1101,7 +1101,7 @@ var useCreateCase = (options) => {
|
|
|
1101
1101
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1102
1102
|
const swrKey = swrOptions?.swrKey ?? getCreateCaseMutationKey();
|
|
1103
1103
|
const swrFn = getCreateCaseMutationFetcher(requestOptions);
|
|
1104
|
-
const query =
|
|
1104
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
1105
1105
|
return {
|
|
1106
1106
|
swrKey,
|
|
1107
1107
|
...query
|
|
@@ -1217,7 +1217,7 @@ var useAddCaseLinks = (id, params, options) => {
|
|
|
1217
1217
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1218
1218
|
const swrKey = swrOptions?.swrKey ?? getAddCaseLinksMutationKey(id, params);
|
|
1219
1219
|
const swrFn = getAddCaseLinksMutationFetcher(id, params, requestOptions);
|
|
1220
|
-
const query =
|
|
1220
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
1221
1221
|
return {
|
|
1222
1222
|
swrKey,
|
|
1223
1223
|
...query
|
|
@@ -1305,7 +1305,7 @@ var useRemoveCaseLink = (id, entityType, entityId, params, options) => {
|
|
|
1305
1305
|
params,
|
|
1306
1306
|
requestOptions
|
|
1307
1307
|
);
|
|
1308
|
-
const query =
|
|
1308
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
1309
1309
|
return {
|
|
1310
1310
|
swrKey,
|
|
1311
1311
|
...query
|
|
@@ -1332,7 +1332,7 @@ var useCreateChatAgent = (options) => {
|
|
|
1332
1332
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1333
1333
|
const swrKey = swrOptions?.swrKey ?? getCreateChatAgentMutationKey();
|
|
1334
1334
|
const swrFn = getCreateChatAgentMutationFetcher(requestOptions);
|
|
1335
|
-
const query =
|
|
1335
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
1336
1336
|
return {
|
|
1337
1337
|
swrKey,
|
|
1338
1338
|
...query
|
|
@@ -1425,7 +1425,7 @@ var useUpdateChatAgent = (chatAgentId, options) => {
|
|
|
1425
1425
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1426
1426
|
const swrKey = swrOptions?.swrKey ?? getUpdateChatAgentMutationKey(chatAgentId);
|
|
1427
1427
|
const swrFn = getUpdateChatAgentMutationFetcher(chatAgentId, requestOptions);
|
|
1428
|
-
const query =
|
|
1428
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
1429
1429
|
return {
|
|
1430
1430
|
swrKey,
|
|
1431
1431
|
...query
|
|
@@ -1453,7 +1453,7 @@ var useDeleteChatAgent = (chatAgentId, options) => {
|
|
|
1453
1453
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1454
1454
|
const swrKey = swrOptions?.swrKey ?? getDeleteChatAgentMutationKey(chatAgentId);
|
|
1455
1455
|
const swrFn = getDeleteChatAgentMutationFetcher(chatAgentId, requestOptions);
|
|
1456
|
-
const query =
|
|
1456
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
1457
1457
|
return {
|
|
1458
1458
|
swrKey,
|
|
1459
1459
|
...query
|
|
@@ -1514,7 +1514,7 @@ var useUpdateChatAgentPrompt = (chatAgentId, options) => {
|
|
|
1514
1514
|
chatAgentId,
|
|
1515
1515
|
requestOptions
|
|
1516
1516
|
);
|
|
1517
|
-
const query =
|
|
1517
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
1518
1518
|
return {
|
|
1519
1519
|
swrKey,
|
|
1520
1520
|
...query
|
|
@@ -1541,7 +1541,7 @@ var useCreateChat = (options) => {
|
|
|
1541
1541
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1542
1542
|
const swrKey = swrOptions?.swrKey ?? getCreateChatMutationKey();
|
|
1543
1543
|
const swrFn = getCreateChatMutationFetcher(requestOptions);
|
|
1544
|
-
const query =
|
|
1544
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
1545
1545
|
return {
|
|
1546
1546
|
swrKey,
|
|
1547
1547
|
...query
|
|
@@ -1621,7 +1621,7 @@ var usePostChatMessage = (chatId, options) => {
|
|
|
1621
1621
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1622
1622
|
const swrKey = swrOptions?.swrKey ?? getPostChatMessageMutationKey(chatId);
|
|
1623
1623
|
const swrFn = getPostChatMessageMutationFetcher(chatId, requestOptions);
|
|
1624
|
-
const query =
|
|
1624
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
1625
1625
|
return {
|
|
1626
1626
|
swrKey,
|
|
1627
1627
|
...query
|
|
@@ -1788,7 +1788,7 @@ var useDeleteEmail = (emailId, options) => {
|
|
|
1788
1788
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1789
1789
|
const swrKey = swrOptions?.swrKey ?? getDeleteEmailMutationKey(emailId);
|
|
1790
1790
|
const swrFn = getDeleteEmailMutationFetcher(emailId, requestOptions);
|
|
1791
|
-
const query =
|
|
1791
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
1792
1792
|
return {
|
|
1793
1793
|
swrKey,
|
|
1794
1794
|
...query
|
|
@@ -1891,7 +1891,7 @@ var useReplyToEmail = (emailId, options) => {
|
|
|
1891
1891
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1892
1892
|
const swrKey = swrOptions?.swrKey ?? getReplyToEmailMutationKey(emailId);
|
|
1893
1893
|
const swrFn = getReplyToEmailMutationFetcher(emailId, requestOptions);
|
|
1894
|
-
const query =
|
|
1894
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
1895
1895
|
return {
|
|
1896
1896
|
swrKey,
|
|
1897
1897
|
...query
|
|
@@ -1918,7 +1918,7 @@ var useSendEmail = (options) => {
|
|
|
1918
1918
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1919
1919
|
const swrKey = swrOptions?.swrKey ?? getSendEmailMutationKey();
|
|
1920
1920
|
const swrFn = getSendEmailMutationFetcher(requestOptions);
|
|
1921
|
-
const query =
|
|
1921
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
1922
1922
|
return {
|
|
1923
1923
|
swrKey,
|
|
1924
1924
|
...query
|
|
@@ -1986,7 +1986,7 @@ var useCreateExtractorJob = (options) => {
|
|
|
1986
1986
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1987
1987
|
const swrKey = swrOptions?.swrKey ?? getCreateExtractorJobMutationKey();
|
|
1988
1988
|
const swrFn = getCreateExtractorJobMutationFetcher(requestOptions);
|
|
1989
|
-
const query =
|
|
1989
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
1990
1990
|
return {
|
|
1991
1991
|
swrKey,
|
|
1992
1992
|
...query
|
|
@@ -2038,7 +2038,7 @@ var useCreateExtractor = (options) => {
|
|
|
2038
2038
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2039
2039
|
const swrKey = swrOptions?.swrKey ?? getCreateExtractorMutationKey();
|
|
2040
2040
|
const swrFn = getCreateExtractorMutationFetcher(requestOptions);
|
|
2041
|
-
const query =
|
|
2041
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
2042
2042
|
return {
|
|
2043
2043
|
swrKey,
|
|
2044
2044
|
...query
|
|
@@ -2128,7 +2128,7 @@ var useUpdateExtractor = (id, options) => {
|
|
|
2128
2128
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2129
2129
|
const swrKey = swrOptions?.swrKey ?? getUpdateExtractorMutationKey(id);
|
|
2130
2130
|
const swrFn = getUpdateExtractorMutationFetcher(id, requestOptions);
|
|
2131
|
-
const query =
|
|
2131
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
2132
2132
|
return {
|
|
2133
2133
|
swrKey,
|
|
2134
2134
|
...query
|
|
@@ -2153,7 +2153,7 @@ var useDeleteExtractor = (id, options) => {
|
|
|
2153
2153
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2154
2154
|
const swrKey = swrOptions?.swrKey ?? getDeleteExtractorMutationKey(id);
|
|
2155
2155
|
const swrFn = getDeleteExtractorMutationFetcher(id, requestOptions);
|
|
2156
|
-
const query =
|
|
2156
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
2157
2157
|
return {
|
|
2158
2158
|
swrKey,
|
|
2159
2159
|
...query
|
|
@@ -2312,7 +2312,7 @@ var useCreateInbox = (options) => {
|
|
|
2312
2312
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2313
2313
|
const swrKey = swrOptions?.swrKey ?? getCreateInboxMutationKey();
|
|
2314
2314
|
const swrFn = getCreateInboxMutationFetcher(requestOptions);
|
|
2315
|
-
const query =
|
|
2315
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
2316
2316
|
return {
|
|
2317
2317
|
swrKey,
|
|
2318
2318
|
...query
|
|
@@ -2377,7 +2377,7 @@ var useUpdateInbox = (inboxId, options) => {
|
|
|
2377
2377
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2378
2378
|
const swrKey = swrOptions?.swrKey ?? getUpdateInboxMutationKey(inboxId);
|
|
2379
2379
|
const swrFn = getUpdateInboxMutationFetcher(inboxId, requestOptions);
|
|
2380
|
-
const query =
|
|
2380
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
2381
2381
|
return {
|
|
2382
2382
|
swrKey,
|
|
2383
2383
|
...query
|
|
@@ -2402,7 +2402,7 @@ var useDeleteInbox = (inboxId, options) => {
|
|
|
2402
2402
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2403
2403
|
const swrKey = swrOptions?.swrKey ?? getDeleteInboxMutationKey(inboxId);
|
|
2404
2404
|
const swrFn = getDeleteInboxMutationFetcher(inboxId, requestOptions);
|
|
2405
|
-
const query =
|
|
2405
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
2406
2406
|
return {
|
|
2407
2407
|
swrKey,
|
|
2408
2408
|
...query
|
|
@@ -2432,7 +2432,7 @@ var useCreateInformationRequest = (options) => {
|
|
|
2432
2432
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2433
2433
|
const swrKey = swrOptions?.swrKey ?? getCreateInformationRequestMutationKey();
|
|
2434
2434
|
const swrFn = getCreateInformationRequestMutationFetcher(requestOptions);
|
|
2435
|
-
const query =
|
|
2435
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
2436
2436
|
return {
|
|
2437
2437
|
swrKey,
|
|
2438
2438
|
...query
|
|
@@ -2534,7 +2534,7 @@ var useResolveInformationRequest = (informationRequestId, options) => {
|
|
|
2534
2534
|
informationRequestId,
|
|
2535
2535
|
requestOptions
|
|
2536
2536
|
);
|
|
2537
|
-
const query =
|
|
2537
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
2538
2538
|
return {
|
|
2539
2539
|
swrKey,
|
|
2540
2540
|
...query
|
|
@@ -2561,7 +2561,7 @@ var useScheduleJob = (voiceAgentId, options) => {
|
|
|
2561
2561
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2562
2562
|
const swrKey = swrOptions?.swrKey ?? getScheduleJobMutationKey(voiceAgentId);
|
|
2563
2563
|
const swrFn = getScheduleJobMutationFetcher(voiceAgentId, requestOptions);
|
|
2564
|
-
const query =
|
|
2564
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
2565
2565
|
return {
|
|
2566
2566
|
swrKey,
|
|
2567
2567
|
...query
|
|
@@ -2624,7 +2624,7 @@ var useCancelJob = (jobId, options) => {
|
|
|
2624
2624
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2625
2625
|
const swrKey = swrOptions?.swrKey ?? getCancelJobMutationKey(jobId);
|
|
2626
2626
|
const swrFn = getCancelJobMutationFetcher(jobId, requestOptions);
|
|
2627
|
-
const query =
|
|
2627
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
2628
2628
|
return {
|
|
2629
2629
|
swrKey,
|
|
2630
2630
|
...query
|
|
@@ -2717,7 +2717,7 @@ var useCreateSchedule = (options) => {
|
|
|
2717
2717
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2718
2718
|
const swrKey = swrOptions?.swrKey ?? getCreateScheduleMutationKey();
|
|
2719
2719
|
const swrFn = getCreateScheduleMutationFetcher(requestOptions);
|
|
2720
|
-
const query =
|
|
2720
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
2721
2721
|
return {
|
|
2722
2722
|
swrKey,
|
|
2723
2723
|
...query
|
|
@@ -2807,7 +2807,7 @@ var useUpdateSchedule = (scheduleId, options) => {
|
|
|
2807
2807
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2808
2808
|
const swrKey = swrOptions?.swrKey ?? getUpdateScheduleMutationKey(scheduleId);
|
|
2809
2809
|
const swrFn = getUpdateScheduleMutationFetcher(scheduleId, requestOptions);
|
|
2810
|
-
const query =
|
|
2810
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
2811
2811
|
return {
|
|
2812
2812
|
swrKey,
|
|
2813
2813
|
...query
|
|
@@ -2832,7 +2832,7 @@ var useDeleteSchedule = (scheduleId, options) => {
|
|
|
2832
2832
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2833
2833
|
const swrKey = swrOptions?.swrKey ?? getDeleteScheduleMutationKey(scheduleId);
|
|
2834
2834
|
const swrFn = getDeleteScheduleMutationFetcher(scheduleId, requestOptions);
|
|
2835
|
-
const query =
|
|
2835
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
2836
2836
|
return {
|
|
2837
2837
|
swrKey,
|
|
2838
2838
|
...query
|
|
@@ -2859,7 +2859,7 @@ var useCreateSecret = (options) => {
|
|
|
2859
2859
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2860
2860
|
const swrKey = swrOptions?.swrKey ?? getCreateSecretMutationKey();
|
|
2861
2861
|
const swrFn = getCreateSecretMutationFetcher(requestOptions);
|
|
2862
|
-
const query =
|
|
2862
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
2863
2863
|
return {
|
|
2864
2864
|
swrKey,
|
|
2865
2865
|
...query
|
|
@@ -2949,7 +2949,7 @@ var useUpdateSecret = (secretId, options) => {
|
|
|
2949
2949
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2950
2950
|
const swrKey = swrOptions?.swrKey ?? getUpdateSecretMutationKey(secretId);
|
|
2951
2951
|
const swrFn = getUpdateSecretMutationFetcher(secretId, requestOptions);
|
|
2952
|
-
const query =
|
|
2952
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
2953
2953
|
return {
|
|
2954
2954
|
swrKey,
|
|
2955
2955
|
...query
|
|
@@ -2974,7 +2974,7 @@ var useDeleteSecret = (secretId, options) => {
|
|
|
2974
2974
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2975
2975
|
const swrKey = swrOptions?.swrKey ?? getDeleteSecretMutationKey(secretId);
|
|
2976
2976
|
const swrFn = getDeleteSecretMutationFetcher(secretId, requestOptions);
|
|
2977
|
-
const query =
|
|
2977
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
2978
2978
|
return {
|
|
2979
2979
|
swrKey,
|
|
2980
2980
|
...query
|
|
@@ -3026,7 +3026,7 @@ var useInviteTeamMember = (options) => {
|
|
|
3026
3026
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
3027
3027
|
const swrKey = swrOptions?.swrKey ?? getInviteTeamMemberMutationKey();
|
|
3028
3028
|
const swrFn = getInviteTeamMemberMutationFetcher(requestOptions);
|
|
3029
|
-
const query =
|
|
3029
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
3030
3030
|
return {
|
|
3031
3031
|
swrKey,
|
|
3032
3032
|
...query
|
|
@@ -3079,7 +3079,7 @@ var useRevokeTeamInvitation = (invitationId, options) => {
|
|
|
3079
3079
|
invitationId,
|
|
3080
3080
|
requestOptions
|
|
3081
3081
|
);
|
|
3082
|
-
const query =
|
|
3082
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
3083
3083
|
return {
|
|
3084
3084
|
swrKey,
|
|
3085
3085
|
...query
|
|
@@ -3110,7 +3110,7 @@ var useResendTeamInvitation = (invitationId, options) => {
|
|
|
3110
3110
|
invitationId,
|
|
3111
3111
|
requestOptions
|
|
3112
3112
|
);
|
|
3113
|
-
const query =
|
|
3113
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
3114
3114
|
return {
|
|
3115
3115
|
swrKey,
|
|
3116
3116
|
...query
|
|
@@ -3137,7 +3137,7 @@ var useUpdateMemberRole = (id, options) => {
|
|
|
3137
3137
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
3138
3138
|
const swrKey = swrOptions?.swrKey ?? getUpdateMemberRoleMutationKey(id);
|
|
3139
3139
|
const swrFn = getUpdateMemberRoleMutationFetcher(id, requestOptions);
|
|
3140
|
-
const query =
|
|
3140
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
3141
3141
|
return {
|
|
3142
3142
|
swrKey,
|
|
3143
3143
|
...query
|
|
@@ -3162,7 +3162,7 @@ var useRemoveMember = (id, options) => {
|
|
|
3162
3162
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
3163
3163
|
const swrKey = swrOptions?.swrKey ?? getRemoveMemberMutationKey(id);
|
|
3164
3164
|
const swrFn = getRemoveMemberMutationFetcher(id, requestOptions);
|
|
3165
|
-
const query =
|
|
3165
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
3166
3166
|
return {
|
|
3167
3167
|
swrKey,
|
|
3168
3168
|
...query
|
|
@@ -3189,7 +3189,7 @@ var useCreateTool = (options) => {
|
|
|
3189
3189
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
3190
3190
|
const swrKey = swrOptions?.swrKey ?? getCreateToolMutationKey();
|
|
3191
3191
|
const swrFn = getCreateToolMutationFetcher(requestOptions);
|
|
3192
|
-
const query =
|
|
3192
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
3193
3193
|
return {
|
|
3194
3194
|
swrKey,
|
|
3195
3195
|
...query
|
|
@@ -3252,7 +3252,7 @@ var useDeleteTool = (id, options) => {
|
|
|
3252
3252
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
3253
3253
|
const swrKey = swrOptions?.swrKey ?? getDeleteToolMutationKey(id);
|
|
3254
3254
|
const swrFn = getDeleteToolMutationFetcher(id, requestOptions);
|
|
3255
|
-
const query =
|
|
3255
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
3256
3256
|
return {
|
|
3257
3257
|
swrKey,
|
|
3258
3258
|
...query
|
|
@@ -3304,7 +3304,7 @@ var useUpdateTool = (id, options) => {
|
|
|
3304
3304
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
3305
3305
|
const swrKey = swrOptions?.swrKey ?? getUpdateToolMutationKey(id);
|
|
3306
3306
|
const swrFn = getUpdateToolMutationFetcher(id, requestOptions);
|
|
3307
|
-
const query =
|
|
3307
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
3308
3308
|
return {
|
|
3309
3309
|
swrKey,
|
|
3310
3310
|
...query
|
|
@@ -3331,7 +3331,7 @@ var useExecuteCode = (id, options) => {
|
|
|
3331
3331
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
3332
3332
|
const swrKey = swrOptions?.swrKey ?? getExecuteCodeMutationKey(id);
|
|
3333
3333
|
const swrFn = getExecuteCodeMutationFetcher(id, requestOptions);
|
|
3334
|
-
const query =
|
|
3334
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
3335
3335
|
return {
|
|
3336
3336
|
swrKey,
|
|
3337
3337
|
...query
|
|
@@ -3434,7 +3434,7 @@ var usePromoteToolVersion = (id, version, options) => {
|
|
|
3434
3434
|
version,
|
|
3435
3435
|
requestOptions
|
|
3436
3436
|
);
|
|
3437
|
-
const query =
|
|
3437
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
3438
3438
|
return {
|
|
3439
3439
|
swrKey,
|
|
3440
3440
|
...query
|
|
@@ -3552,7 +3552,7 @@ var useWorkerExecuteTool = (id, options) => {
|
|
|
3552
3552
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
3553
3553
|
const swrKey = swrOptions?.swrKey ?? getWorkerExecuteToolMutationKey(id);
|
|
3554
3554
|
const swrFn = getWorkerExecuteToolMutationFetcher(id, requestOptions);
|
|
3555
|
-
const query =
|
|
3555
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
3556
3556
|
return {
|
|
3557
3557
|
swrKey,
|
|
3558
3558
|
...query
|
|
@@ -3617,7 +3617,7 @@ var useCreateVoiceAgent = (options) => {
|
|
|
3617
3617
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
3618
3618
|
const swrKey = swrOptions?.swrKey ?? getCreateVoiceAgentMutationKey();
|
|
3619
3619
|
const swrFn = getCreateVoiceAgentMutationFetcher(requestOptions);
|
|
3620
|
-
const query =
|
|
3620
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
3621
3621
|
return {
|
|
3622
3622
|
swrKey,
|
|
3623
3623
|
...query
|
|
@@ -3675,7 +3675,7 @@ var useUpdateVoiceAgent = (voiceAgentId, options) => {
|
|
|
3675
3675
|
voiceAgentId,
|
|
3676
3676
|
requestOptions
|
|
3677
3677
|
);
|
|
3678
|
-
const query =
|
|
3678
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
3679
3679
|
return {
|
|
3680
3680
|
swrKey,
|
|
3681
3681
|
...query
|
|
@@ -3706,7 +3706,7 @@ var useDeleteVoiceAgent = (voiceAgentId, options) => {
|
|
|
3706
3706
|
voiceAgentId,
|
|
3707
3707
|
requestOptions
|
|
3708
3708
|
);
|
|
3709
|
-
const query =
|
|
3709
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
3710
3710
|
return {
|
|
3711
3711
|
swrKey,
|
|
3712
3712
|
...query
|
|
@@ -3812,7 +3812,7 @@ var usePromoteVoiceAgentVersion = (voiceAgentId, version, options) => {
|
|
|
3812
3812
|
version,
|
|
3813
3813
|
requestOptions
|
|
3814
3814
|
);
|
|
3815
|
-
const query =
|
|
3815
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
3816
3816
|
return {
|
|
3817
3817
|
swrKey,
|
|
3818
3818
|
...query
|
|
@@ -3947,7 +3947,7 @@ var useUpdateVoiceAgentPrompt = (voiceAgentId, options) => {
|
|
|
3947
3947
|
voiceAgentId,
|
|
3948
3948
|
requestOptions
|
|
3949
3949
|
);
|
|
3950
|
-
const query =
|
|
3950
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
3951
3951
|
return {
|
|
3952
3952
|
swrKey,
|
|
3953
3953
|
...query
|
|
@@ -3980,7 +3980,7 @@ var useUpdateVoiceAgentModels = (voiceAgentId, options) => {
|
|
|
3980
3980
|
voiceAgentId,
|
|
3981
3981
|
requestOptions
|
|
3982
3982
|
);
|
|
3983
|
-
const query =
|
|
3983
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
3984
3984
|
return {
|
|
3985
3985
|
swrKey,
|
|
3986
3986
|
...query
|
|
@@ -4013,7 +4013,7 @@ var useUpdateCallControls = (voiceAgentId, options) => {
|
|
|
4013
4013
|
voiceAgentId,
|
|
4014
4014
|
requestOptions
|
|
4015
4015
|
);
|
|
4016
|
-
const query =
|
|
4016
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
4017
4017
|
return {
|
|
4018
4018
|
swrKey,
|
|
4019
4019
|
...query
|
|
@@ -4043,7 +4043,7 @@ var useCreateWorkerWebhook = (workerId, options) => {
|
|
|
4043
4043
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
4044
4044
|
const swrKey = swrOptions?.swrKey ?? getCreateWorkerWebhookMutationKey(workerId);
|
|
4045
4045
|
const swrFn = getCreateWorkerWebhookMutationFetcher(workerId, requestOptions);
|
|
4046
|
-
const query =
|
|
4046
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
4047
4047
|
return {
|
|
4048
4048
|
swrKey,
|
|
4049
4049
|
...query
|
|
@@ -4117,7 +4117,7 @@ var useCreateAgentWebhook = (voiceAgentId, options) => {
|
|
|
4117
4117
|
voiceAgentId,
|
|
4118
4118
|
requestOptions
|
|
4119
4119
|
);
|
|
4120
|
-
const query =
|
|
4120
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
4121
4121
|
return {
|
|
4122
4122
|
swrKey,
|
|
4123
4123
|
...query
|
|
@@ -4191,7 +4191,7 @@ var useCreateInboxWebhook = (inboxId, options) => {
|
|
|
4191
4191
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
4192
4192
|
const swrKey = swrOptions?.swrKey ?? getCreateInboxWebhookMutationKey(inboxId);
|
|
4193
4193
|
const swrFn = getCreateInboxWebhookMutationFetcher(inboxId, requestOptions);
|
|
4194
|
-
const query =
|
|
4194
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
4195
4195
|
return {
|
|
4196
4196
|
swrKey,
|
|
4197
4197
|
...query
|
|
@@ -4262,7 +4262,7 @@ var useCreateExtractorWebhook = (id, options) => {
|
|
|
4262
4262
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
4263
4263
|
const swrKey = swrOptions?.swrKey ?? getCreateExtractorWebhookMutationKey(id);
|
|
4264
4264
|
const swrFn = getCreateExtractorWebhookMutationFetcher(id, requestOptions);
|
|
4265
|
-
const query =
|
|
4265
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
4266
4266
|
return {
|
|
4267
4267
|
swrKey,
|
|
4268
4268
|
...query
|
|
@@ -4306,6 +4306,77 @@ var useListWebhooks = (id, params, options) => {
|
|
|
4306
4306
|
...query
|
|
4307
4307
|
};
|
|
4308
4308
|
};
|
|
4309
|
+
var getCreateNotificationWebhookUrl = () => {
|
|
4310
|
+
return `/v1/notifications/webhooks`;
|
|
4311
|
+
};
|
|
4312
|
+
var createNotificationWebhook = async (createNotificationWebhookBody, options) => {
|
|
4313
|
+
return customFetch(
|
|
4314
|
+
getCreateNotificationWebhookUrl(),
|
|
4315
|
+
{
|
|
4316
|
+
...options,
|
|
4317
|
+
method: "POST",
|
|
4318
|
+
headers: { "Content-Type": "application/json", ...options?.headers },
|
|
4319
|
+
body: JSON.stringify(createNotificationWebhookBody)
|
|
4320
|
+
}
|
|
4321
|
+
);
|
|
4322
|
+
};
|
|
4323
|
+
var getCreateNotificationWebhookMutationFetcher = (options) => {
|
|
4324
|
+
return (_, { arg }) => {
|
|
4325
|
+
return createNotificationWebhook(arg, options);
|
|
4326
|
+
};
|
|
4327
|
+
};
|
|
4328
|
+
var getCreateNotificationWebhookMutationKey = () => [`/v1/notifications/webhooks`];
|
|
4329
|
+
var useCreateNotificationWebhook = (options) => {
|
|
4330
|
+
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
4331
|
+
const swrKey = swrOptions?.swrKey ?? getCreateNotificationWebhookMutationKey();
|
|
4332
|
+
const swrFn = getCreateNotificationWebhookMutationFetcher(requestOptions);
|
|
4333
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
4334
|
+
return {
|
|
4335
|
+
swrKey,
|
|
4336
|
+
...query
|
|
4337
|
+
};
|
|
4338
|
+
};
|
|
4339
|
+
var getListNotificationWebhooksUrl = (params) => {
|
|
4340
|
+
const normalizedParams = new URLSearchParams();
|
|
4341
|
+
Object.entries(params || {}).forEach(([key, value]) => {
|
|
4342
|
+
if (value !== void 0) {
|
|
4343
|
+
if (typeof value === "object" && value !== null && !Array.isArray(value)) {
|
|
4344
|
+
for (const [sk, sv] of Object.entries(value)) {
|
|
4345
|
+
if (sv !== void 0) normalizedParams.append(`${key}[${sk}]`, String(sv));
|
|
4346
|
+
}
|
|
4347
|
+
} else {
|
|
4348
|
+
normalizedParams.append(key, value === null ? "null" : String(value));
|
|
4349
|
+
}
|
|
4350
|
+
}
|
|
4351
|
+
});
|
|
4352
|
+
const stringifiedParams = normalizedParams.toString();
|
|
4353
|
+
return stringifiedParams.length > 0 ? `/v1/notifications/webhooks?${stringifiedParams}` : `/v1/notifications/webhooks`;
|
|
4354
|
+
};
|
|
4355
|
+
var listNotificationWebhooks = async (params, options) => {
|
|
4356
|
+
return customFetch(
|
|
4357
|
+
getListNotificationWebhooksUrl(params),
|
|
4358
|
+
{
|
|
4359
|
+
...options,
|
|
4360
|
+
method: "GET"
|
|
4361
|
+
}
|
|
4362
|
+
);
|
|
4363
|
+
};
|
|
4364
|
+
var getListNotificationWebhooksKey = (params) => [`/v1/notifications/webhooks`, ...params ? [params] : []];
|
|
4365
|
+
var useListNotificationWebhooks = (params, options) => {
|
|
4366
|
+
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
4367
|
+
const isEnabled = swrOptions?.enabled !== false;
|
|
4368
|
+
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getListNotificationWebhooksKey(params) : null);
|
|
4369
|
+
const swrFn = () => listNotificationWebhooks(params, requestOptions);
|
|
4370
|
+
const query = useSwr23(
|
|
4371
|
+
swrKey,
|
|
4372
|
+
swrFn,
|
|
4373
|
+
swrOptions
|
|
4374
|
+
);
|
|
4375
|
+
return {
|
|
4376
|
+
swrKey,
|
|
4377
|
+
...query
|
|
4378
|
+
};
|
|
4379
|
+
};
|
|
4309
4380
|
var getDeleteWebhookUrl = (id) => {
|
|
4310
4381
|
return `/v1/webhooks/${id}`;
|
|
4311
4382
|
};
|
|
@@ -4325,7 +4396,7 @@ var useDeleteWebhook = (id, options) => {
|
|
|
4325
4396
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
4326
4397
|
const swrKey = swrOptions?.swrKey ?? getDeleteWebhookMutationKey(id);
|
|
4327
4398
|
const swrFn = getDeleteWebhookMutationFetcher(id, requestOptions);
|
|
4328
|
-
const query =
|
|
4399
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
4329
4400
|
return {
|
|
4330
4401
|
swrKey,
|
|
4331
4402
|
...query
|
|
@@ -4377,7 +4448,7 @@ var useUpdateWebhook = (id, options) => {
|
|
|
4377
4448
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
4378
4449
|
const swrKey = swrOptions?.swrKey ?? getUpdateWebhookMutationKey(id);
|
|
4379
4450
|
const swrFn = getUpdateWebhookMutationFetcher(id, requestOptions);
|
|
4380
|
-
const query =
|
|
4451
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
4381
4452
|
return {
|
|
4382
4453
|
swrKey,
|
|
4383
4454
|
...query
|
|
@@ -4445,7 +4516,7 @@ var useTestWebhook = (id, options) => {
|
|
|
4445
4516
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
4446
4517
|
const swrKey = swrOptions?.swrKey ?? getTestWebhookMutationKey(id);
|
|
4447
4518
|
const swrFn = getTestWebhookMutationFetcher(id, requestOptions);
|
|
4448
|
-
const query =
|
|
4519
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
4449
4520
|
return {
|
|
4450
4521
|
swrKey,
|
|
4451
4522
|
...query
|
|
@@ -4510,7 +4581,7 @@ var useCreateWorkerRun = (options) => {
|
|
|
4510
4581
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
4511
4582
|
const swrKey = swrOptions?.swrKey ?? getCreateWorkerRunMutationKey();
|
|
4512
4583
|
const swrFn = getCreateWorkerRunMutationFetcher(requestOptions);
|
|
4513
|
-
const query =
|
|
4584
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
4514
4585
|
return {
|
|
4515
4586
|
swrKey,
|
|
4516
4587
|
...query
|
|
@@ -4607,7 +4678,7 @@ var useCancelWorkerRun = (workerRunId, options) => {
|
|
|
4607
4678
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
4608
4679
|
const swrKey = swrOptions?.swrKey ?? getCancelWorkerRunMutationKey(workerRunId);
|
|
4609
4680
|
const swrFn = getCancelWorkerRunMutationFetcher(workerRunId, requestOptions);
|
|
4610
|
-
const query =
|
|
4681
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
4611
4682
|
return {
|
|
4612
4683
|
swrKey,
|
|
4613
4684
|
...query
|
|
@@ -4634,7 +4705,7 @@ var useNotifyAdmin = (options) => {
|
|
|
4634
4705
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
4635
4706
|
const swrKey = swrOptions?.swrKey ?? getNotifyAdminMutationKey();
|
|
4636
4707
|
const swrFn = getNotifyAdminMutationFetcher(requestOptions);
|
|
4637
|
-
const query =
|
|
4708
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
4638
4709
|
return {
|
|
4639
4710
|
swrKey,
|
|
4640
4711
|
...query
|
|
@@ -4661,7 +4732,7 @@ var useCreateWorker = (options) => {
|
|
|
4661
4732
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
4662
4733
|
const swrKey = swrOptions?.swrKey ?? getCreateWorkerMutationKey();
|
|
4663
4734
|
const swrFn = getCreateWorkerMutationFetcher(requestOptions);
|
|
4664
|
-
const query =
|
|
4735
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
4665
4736
|
return {
|
|
4666
4737
|
swrKey,
|
|
4667
4738
|
...query
|
|
@@ -4749,7 +4820,7 @@ var useDeleteWorker = (workerId, options) => {
|
|
|
4749
4820
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
4750
4821
|
const swrKey = swrOptions?.swrKey ?? getDeleteWorkerMutationKey(workerId);
|
|
4751
4822
|
const swrFn = getDeleteWorkerMutationFetcher(workerId, requestOptions);
|
|
4752
|
-
const query =
|
|
4823
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
4753
4824
|
return {
|
|
4754
4825
|
swrKey,
|
|
4755
4826
|
...query
|
|
@@ -4776,7 +4847,7 @@ var useUpdateWorker = (workerId, options) => {
|
|
|
4776
4847
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
4777
4848
|
const swrKey = swrOptions?.swrKey ?? getUpdateWorkerMutationKey(workerId);
|
|
4778
4849
|
const swrFn = getUpdateWorkerMutationFetcher(workerId, requestOptions);
|
|
4779
|
-
const query =
|
|
4850
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
4780
4851
|
return {
|
|
4781
4852
|
swrKey,
|
|
4782
4853
|
...query
|
|
@@ -4847,7 +4918,7 @@ var useUpdateWorkerPrompt = (workerId, options) => {
|
|
|
4847
4918
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
4848
4919
|
const swrKey = swrOptions?.swrKey ?? getUpdateWorkerPromptMutationKey(workerId);
|
|
4849
4920
|
const swrFn = getUpdateWorkerPromptMutationFetcher(workerId, requestOptions);
|
|
4850
|
-
const query =
|
|
4921
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
4851
4922
|
return {
|
|
4852
4923
|
swrKey,
|
|
4853
4924
|
...query
|
|
@@ -4902,7 +4973,7 @@ var useUpdateWorkerMcps = (workerId, options) => {
|
|
|
4902
4973
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
4903
4974
|
const swrKey = swrOptions?.swrKey ?? getUpdateWorkerMcpsMutationKey(workerId);
|
|
4904
4975
|
const swrFn = getUpdateWorkerMcpsMutationFetcher(workerId, requestOptions);
|
|
4905
|
-
const query =
|
|
4976
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
4906
4977
|
return {
|
|
4907
4978
|
swrKey,
|
|
4908
4979
|
...query
|
|
@@ -5005,7 +5076,7 @@ var usePromoteWorkerVersion = (workerId, version, options) => {
|
|
|
5005
5076
|
version,
|
|
5006
5077
|
requestOptions
|
|
5007
5078
|
);
|
|
5008
|
-
const query =
|
|
5079
|
+
const query = useSWRMutation19(swrKey, swrFn, swrOptions);
|
|
5009
5080
|
return {
|
|
5010
5081
|
swrKey,
|
|
5011
5082
|
...query
|
|
@@ -5201,6 +5272,12 @@ var CreateInboxWebhookBodyEnvironmentsItem = {
|
|
|
5201
5272
|
test: "test"
|
|
5202
5273
|
};
|
|
5203
5274
|
|
|
5275
|
+
// generated/models/createNotificationWebhookBodyEnvironmentsItem.ts
|
|
5276
|
+
var CreateNotificationWebhookBodyEnvironmentsItem = {
|
|
5277
|
+
live: "live",
|
|
5278
|
+
test: "test"
|
|
5279
|
+
};
|
|
5280
|
+
|
|
5204
5281
|
// generated/models/createScheduleBodyEnvironmentsItem.ts
|
|
5205
5282
|
var CreateScheduleBodyEnvironmentsItem = {
|
|
5206
5283
|
live: "live",
|
|
@@ -5705,6 +5782,12 @@ var ListNotificationsSortOrder = {
|
|
|
5705
5782
|
desc: "desc"
|
|
5706
5783
|
};
|
|
5707
5784
|
|
|
5785
|
+
// generated/models/listNotificationWebhooksEnvironment.ts
|
|
5786
|
+
var ListNotificationWebhooksEnvironment = {
|
|
5787
|
+
live: "live",
|
|
5788
|
+
test: "test"
|
|
5789
|
+
};
|
|
5790
|
+
|
|
5708
5791
|
// generated/models/listSchedulesEnvironment.ts
|
|
5709
5792
|
var ListSchedulesEnvironment = {
|
|
5710
5793
|
live: "live",
|
|
@@ -5850,11 +5933,6 @@ var ListWorkerWebhooksEnvironment = {
|
|
|
5850
5933
|
test: "test"
|
|
5851
5934
|
};
|
|
5852
5935
|
|
|
5853
|
-
// generated/models/notificationType.ts
|
|
5854
|
-
var NotificationType = {
|
|
5855
|
-
worker_issue_reported: "worker_issue_reported"
|
|
5856
|
-
};
|
|
5857
|
-
|
|
5858
5936
|
// generated/models/outboundJobEnvironment.ts
|
|
5859
5937
|
var OutboundJobEnvironment = {
|
|
5860
5938
|
live: "live",
|
|
@@ -5895,6 +5973,7 @@ var ProfilePermissionsItem = {
|
|
|
5895
5973
|
"workers:run": "workers:run",
|
|
5896
5974
|
"workers:promote": "workers:promote",
|
|
5897
5975
|
"chat-agents:write": "chat-agents:write",
|
|
5976
|
+
"notifications:write": "notifications:write",
|
|
5898
5977
|
"prompts:read": "prompts:read",
|
|
5899
5978
|
"prompts:write": "prompts:write",
|
|
5900
5979
|
"secrets:read": "secrets:read",
|
|
@@ -6398,6 +6477,6 @@ var WorkerRunStatus = {
|
|
|
6398
6477
|
canceled: "canceled"
|
|
6399
6478
|
};
|
|
6400
6479
|
|
|
6401
|
-
export { AddCaseLinksBodyEntitiesItemEntityType, AddCaseLinksEnvironment, AnalyticsTimeSeriesGranularity, AnalyticsTimeSeriesMetric, ApiKeyCreatedRole, ApiKeyRole, ArtifactDetailDataStatus, ArtifactStatus, AvallonError, CallDetailDirection, CallDetailEnvironment, CallDirection, CallEnvironment, CaseLinkEntityType, CaseSummaryEnvironment, ChatHistoryMessagesItemRole, ChatMessageRole, CreateAgentWebhookBodyEnvironmentsItem, CreateApiKeyBodyEnvironment, CreateApiKeyBodyRole, CreateCaseBodyEnvironment, CreateExtractorWebhookBodyEnvironmentsItem, CreateInboxBodyProcessorType, CreateInboxWebhookBodyEnvironmentsItem, CreateScheduleBodyEnvironmentsItem, CreateVoiceAgentBodyCallProcessorType, CreateVoiceAgentBodyDirection, CreateVoiceAgentBodyLanguage, CreateVoiceAgentBodyLlmModel, CreateVoiceAgentBodySttModel, CreateVoiceAgentBodyTtsModel, CreateVoiceAgentBodyTtsProvider, CreateWorkerRunBodyEnvironment, CreateWorkerWebhookBodyEnvironmentsItem, DispatchEnvironment, DispatchStatus, DispatchTargetType, DispatchTriggerType, EmailDetailDirection, EmailDetailEnvironment, EmailDirection, EmailEnvironment, EmailReplyResultValue, EmailThreadEnvironment, ExecuteCodeBodyEnvironment, GetAnalyticsTimeSeriesGranularity, GetAnalyticsTimeSeriesGroupBy, GetAnalyticsTimeSeriesMetric, GetCaseEnvironment, GetOAuthUrlCodeChallengeMethod, GetOAuthUrlProvider, InboxProcessorType, InformationRequestEnvironment, ListAgentWebhooksEnvironment, ListApiKeysIncludeRevoked, ListArtifactsSortBy, ListArtifactsSortOrder, ListArtifactsStatus, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, ListCallsEnvironment, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, ListCaseLinksEntityType, ListCaseLinksEnvironment, ListCaseLinksSortBy, ListCaseLinksSortOrder, ListCasesEnvironment, ListCasesSortBy, ListCasesSortOrder, ListChatAgentsSortBy, ListChatAgentsSortOrder, ListChatMessagesSortBy, ListChatMessagesSortOrder, ListChatsSortBy, ListChatsSortOrder, ListDispatchesSortBy, ListDispatchesSortOrder, ListDispatchesTriggerType, ListEmailThreadsEnvironment, ListEmailThreadsSortBy, ListEmailThreadsSortOrder, ListEmailsSortBy, ListEmailsSortOrder, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, ListExtractorsSortBy, ListExtractorsSortOrder, ListExtractsSortBy, ListExtractsSortOrder, ListInboxWebhooksEnvironment, ListInboxesSortBy, ListInboxesSortOrder, ListInformationRequestsResolved, ListInformationRequestsSortBy, ListInformationRequestsSortOrder, ListJobsStatusItem, ListNotificationsSortBy, ListNotificationsSortOrder, ListSchedulesEnvironment, ListSchedulesRuleType, ListSchedulesSortBy, ListSchedulesSortOrder, ListSecretsSortBy, ListSecretsSortOrder, ListToolVersionsSortBy, ListToolVersionsSortOrder, ListToolsSortBy, ListToolsSortOrder, ListVoiceAgentVersionsSortBy, ListVoiceAgentVersionsSortOrder, ListWebhookDeliveriesSortOrder, ListWebhooksEnvironment, ListWorkerRunsEnvironment, ListWorkerRunsSortBy, ListWorkerRunsSortOrder, ListWorkerRunsStatus, ListWorkerVersionsSortBy, ListWorkerVersionsSortOrder, ListWorkerWebhooksEnvironment, ListWorkersSortBy, ListWorkersSortOrder, NotificationType, OutboundJobEnvironment, OutboundJobStatus, ProfilePermissionsItem, ProfileRole, PromoteVoiceAgentVersionBodyEnvironment, PromotedVoiceAgentVersionEnvironment, RemoveCaseLinkEnvironment, ScheduleEnvironmentsItem, ScheduleJobBodyEnvironment, SendEmailBodyEnvironment, TeamInvitationState, TeamMemberRole, TestWebhookBodyEnvironment, ToolEnvironment, UpdateApiKeyBodyRole, UpdateInboxBodyProcessorType, UpdateMemberRoleBodyRole, UpdateScheduleBodyEnvironmentsItem, UpdateVoiceAgentBodyCallProcessorType, UpdateVoiceAgentBodyNoiseCancellation, UpdateVoiceAgentModelsBodyLanguage, UpdateVoiceAgentModelsBodyLlmModel, UpdateVoiceAgentModelsBodySttModel, UpdateVoiceAgentModelsBodyTtsModel, UpdateVoiceAgentModelsBodyTtsProvider, UpdateWebhookBodyEnvironmentsItem, 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, WebhookEnvironmentsItem, WorkerEnvironment, WorkerExecuteToolBodyEnvironment, WorkerListToolsSortBy, WorkerListToolsSortOrder, WorkerMcpName, WorkerMcpOutputName, WorkerPermission, WorkerRunCreatedEnvironment, WorkerRunCreatedStatus, WorkerRunEnvironment, WorkerRunStatus, addCaseLinks, cancelJob, cancelWorkerRun, checkInboxAvailability, configure, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createCase, createChat, createChatAgent, createExtractor, createExtractorJob, createExtractorWebhook, createInbox, createInboxWebhook, createInformationRequest, createSchedule, createSecret, createTool, createVoiceAgent, createWorker, createWorkerRun, createWorkerWebhook, deleteArtifact, deleteCallFeedback, deleteChatAgent, deleteEmail, deleteExtractor, deleteInbox, deleteSchedule, deleteSecret, deleteTool, deleteVoiceAgent, deleteWebhook, deleteWorker, executeCode, generateCodeChallenge, generateCodeVerifier, getAddCaseLinksMutationFetcher, getAddCaseLinksMutationKey, getAddCaseLinksUrl, 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, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateInboxMutationFetcher, getCreateInboxMutationKey, getCreateInboxUrl, getCreateInboxWebhookMutationFetcher, getCreateInboxWebhookMutationKey, getCreateInboxWebhookUrl, getCreateInformationRequestMutationFetcher, getCreateInformationRequestMutationKey, getCreateInformationRequestUrl, 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, 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, getGetInformationRequestKey, getGetInformationRequestUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetPartnerJwksKey, getGetPartnerJwksUrl, getGetProfileKey, getGetProfileUrl, getGetPublicChatAgentKey, getGetPublicChatAgentUrl, getGetScheduleKey, getGetScheduleUrl, getGetSecretKey, getGetSecretUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetToolVersionChangeSummaryKey, getGetToolVersionChangeSummaryUrl, getGetToolVersionKey, getGetToolVersionUrl, getGetVoiceAgentKey, getGetVoiceAgentPlaceholdersKey, getGetVoiceAgentPlaceholdersUrl, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, getGetVoiceAgentVersionChangeSummaryKey, getGetVoiceAgentVersionChangeSummaryUrl, getGetVoiceAgentVersionKey, getGetVoiceAgentVersionUrl, getGetWebhookKey, getGetWebhookUrl, getGetWorkerKey, getGetWorkerPromptKey, getGetWorkerPromptUrl, getGetWorkerRunKey, getGetWorkerRunUrl, getGetWorkerUrl, getGetWorkerVersionChangeSummaryKey, getGetWorkerVersionChangeSummaryUrl, getGetWorkerVersionKey, getGetWorkerVersionUrl, getInformationRequest, 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, getListInformationRequestsKey, getListInformationRequestsUrl, getListJobsKey, getListJobsUrl, getListNotificationsKey, getListNotificationsUrl, getListSchedulesKey, getListSchedulesUrl, getListSecretsKey, getListSecretsUrl, getListTeamInvitationsKey, getListTeamInvitationsUrl, getListTeamMembersKey, getListTeamMembersUrl, getListToolVersionsKey, getListToolVersionsUrl, 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, getPromoteToolVersionMutationFetcher, getPromoteToolVersionMutationKey, getPromoteToolVersionUrl, 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, getResolveInformationRequestMutationFetcher, getResolveInformationRequestMutationKey, getResolveInformationRequestUrl, 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, getToolVersion, getToolVersionChangeSummary, 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, getUpdateWebhookMutationFetcher, getUpdateWebhookMutationKey, getUpdateWebhookUrl, getUpdateWorkerMcpsMutationFetcher, getUpdateWorkerMcpsMutationKey, getUpdateWorkerMcpsUrl, getUpdateWorkerMutationFetcher, getUpdateWorkerMutationKey, getUpdateWorkerPromptMutationFetcher, getUpdateWorkerPromptMutationKey, getUpdateWorkerPromptUrl, 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, listInformationRequests, listJobs, listNotifications, listSchedules, listSecrets, listTeamInvitations, listTeamMembers, listToolVersions, listTools, listVoiceAgentVersions, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerModels, listWorkerRunMessages, listWorkerRuns, listWorkerVersions, listWorkerWebhooks, listWorkers, notifyAdmin, partnerLaunch, postChatMessage, promoteToolVersion, promoteVoiceAgentVersion, promoteWorkerVersion, refreshToken, removeCaseLink, removeMember, replyToEmail, requestPasswordReset, resendTeamInvitation, resetPassword, resolveInformationRequest, revokeApiKey, revokeTeamInvitation, scheduleJob, searchCases, sendEmail, signIn, signUp, testWebhook, updateApiKey, updateArtifactMetadata, updateCallControls, updateChatAgent, updateChatAgentPrompt, updateExtractor, updateInbox, updateMemberRole, updateSchedule, updateSecret, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateVoiceAgentPrompt, updateWebhook, updateWorker, updateWorkerMcps, updateWorkerPrompt, uploadFile, useAddCaseLinks, useCancelJob, useCancelWorkerRun, useCheckInboxAvailability, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateCase, useCreateChat, useCreateChatAgent, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateInbox, useCreateInboxWebhook, useCreateInformationRequest, useCreateSchedule, useCreateSecret, useCreateTool, useCreateVoiceAgent, useCreateWorker, useCreateWorkerRun, useCreateWorkerWebhook, useDeleteArtifact, useDeleteCallFeedback, useDeleteChatAgent, useDeleteEmail, useDeleteExtractor, useDeleteInbox, useDeleteSchedule, useDeleteSecret, useDeleteTool, useDeleteVoiceAgent, useDeleteWebhook, useDeleteWorker, useExecuteCode, useGetAnalyticsTimeSeries, useGetArtifact, useGetArtifactMetadataKeys, useGetArtifactStatusSummary, useGetArtifactUploadUrl, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetCase, useGetChat, useGetChatAgent, useGetChatAgentPrompt, useGetEmail, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetInformationRequest, useGetOAuthUrl, useGetPartnerJwks, useGetProfile, useGetPublicChatAgent, useGetSchedule, useGetSecret, useGetSessionToken, useGetTool, useGetToolVersion, useGetToolVersionChangeSummary, 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, useListInformationRequests, useListJobs, useListNotifications, useListSchedules, useListSecrets, useListTeamInvitations, useListTeamMembers, useListToolVersions, useListTools, useListVoiceAgentVersions, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerModels, useListWorkerRunMessages, useListWorkerRuns, useListWorkerVersions, useListWorkerWebhooks, useListWorkers, useNotifyAdmin, usePartnerLaunch, usePostChatMessage, usePromoteToolVersion, usePromoteVoiceAgentVersion, usePromoteWorkerVersion, useRefreshToken, useRemoveCaseLink, useRemoveMember, useReplyToEmail, useRequestPasswordReset, useResendTeamInvitation, useResetPassword, useResolveInformationRequest, useRevokeApiKey, useRevokeTeamInvitation, useScheduleJob, useSearchCases, useSendEmail, useSignIn, useSignUp, useTestWebhook, useUpdateApiKey, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateChatAgent, useUpdateChatAgentPrompt, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateSchedule, useUpdateSecret, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateVoiceAgentPrompt, useUpdateWebhook, useUpdateWorker, useUpdateWorkerMcps, useUpdateWorkerPrompt, useUploadFile, useWorkerExecuteTool, useWorkerGetTool, useWorkerListTools, workerExecuteTool, workerGetTool, workerListTools };
|
|
6480
|
+
export { AddCaseLinksBodyEntitiesItemEntityType, AddCaseLinksEnvironment, AnalyticsTimeSeriesGranularity, AnalyticsTimeSeriesMetric, ApiKeyCreatedRole, ApiKeyRole, ArtifactDetailDataStatus, ArtifactStatus, AvallonError, CallDetailDirection, CallDetailEnvironment, CallDirection, CallEnvironment, CaseLinkEntityType, CaseSummaryEnvironment, ChatHistoryMessagesItemRole, ChatMessageRole, CreateAgentWebhookBodyEnvironmentsItem, CreateApiKeyBodyEnvironment, CreateApiKeyBodyRole, CreateCaseBodyEnvironment, CreateExtractorWebhookBodyEnvironmentsItem, CreateInboxBodyProcessorType, CreateInboxWebhookBodyEnvironmentsItem, CreateNotificationWebhookBodyEnvironmentsItem, CreateScheduleBodyEnvironmentsItem, CreateVoiceAgentBodyCallProcessorType, CreateVoiceAgentBodyDirection, CreateVoiceAgentBodyLanguage, CreateVoiceAgentBodyLlmModel, CreateVoiceAgentBodySttModel, CreateVoiceAgentBodyTtsModel, CreateVoiceAgentBodyTtsProvider, CreateWorkerRunBodyEnvironment, CreateWorkerWebhookBodyEnvironmentsItem, DispatchEnvironment, DispatchStatus, DispatchTargetType, DispatchTriggerType, EmailDetailDirection, EmailDetailEnvironment, EmailDirection, EmailEnvironment, EmailReplyResultValue, EmailThreadEnvironment, ExecuteCodeBodyEnvironment, GetAnalyticsTimeSeriesGranularity, GetAnalyticsTimeSeriesGroupBy, GetAnalyticsTimeSeriesMetric, GetCaseEnvironment, GetOAuthUrlCodeChallengeMethod, GetOAuthUrlProvider, InboxProcessorType, InformationRequestEnvironment, ListAgentWebhooksEnvironment, ListApiKeysIncludeRevoked, ListArtifactsSortBy, ListArtifactsSortOrder, ListArtifactsStatus, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, ListCallsEnvironment, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, ListCaseLinksEntityType, ListCaseLinksEnvironment, ListCaseLinksSortBy, ListCaseLinksSortOrder, ListCasesEnvironment, ListCasesSortBy, ListCasesSortOrder, ListChatAgentsSortBy, ListChatAgentsSortOrder, ListChatMessagesSortBy, ListChatMessagesSortOrder, ListChatsSortBy, ListChatsSortOrder, ListDispatchesSortBy, ListDispatchesSortOrder, ListDispatchesTriggerType, ListEmailThreadsEnvironment, ListEmailThreadsSortBy, ListEmailThreadsSortOrder, ListEmailsSortBy, ListEmailsSortOrder, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, ListExtractorsSortBy, ListExtractorsSortOrder, ListExtractsSortBy, ListExtractsSortOrder, ListInboxWebhooksEnvironment, ListInboxesSortBy, ListInboxesSortOrder, ListInformationRequestsResolved, ListInformationRequestsSortBy, ListInformationRequestsSortOrder, ListJobsStatusItem, ListNotificationWebhooksEnvironment, ListNotificationsSortBy, ListNotificationsSortOrder, ListSchedulesEnvironment, ListSchedulesRuleType, ListSchedulesSortBy, ListSchedulesSortOrder, ListSecretsSortBy, ListSecretsSortOrder, ListToolVersionsSortBy, ListToolVersionsSortOrder, ListToolsSortBy, ListToolsSortOrder, ListVoiceAgentVersionsSortBy, ListVoiceAgentVersionsSortOrder, ListWebhookDeliveriesSortOrder, ListWebhooksEnvironment, ListWorkerRunsEnvironment, ListWorkerRunsSortBy, ListWorkerRunsSortOrder, ListWorkerRunsStatus, ListWorkerVersionsSortBy, ListWorkerVersionsSortOrder, ListWorkerWebhooksEnvironment, ListWorkersSortBy, ListWorkersSortOrder, OutboundJobEnvironment, OutboundJobStatus, ProfilePermissionsItem, ProfileRole, PromoteVoiceAgentVersionBodyEnvironment, PromotedVoiceAgentVersionEnvironment, RemoveCaseLinkEnvironment, ScheduleEnvironmentsItem, ScheduleJobBodyEnvironment, SendEmailBodyEnvironment, TeamInvitationState, TeamMemberRole, TestWebhookBodyEnvironment, ToolEnvironment, UpdateApiKeyBodyRole, UpdateInboxBodyProcessorType, UpdateMemberRoleBodyRole, UpdateScheduleBodyEnvironmentsItem, UpdateVoiceAgentBodyCallProcessorType, UpdateVoiceAgentBodyNoiseCancellation, UpdateVoiceAgentModelsBodyLanguage, UpdateVoiceAgentModelsBodyLlmModel, UpdateVoiceAgentModelsBodySttModel, UpdateVoiceAgentModelsBodyTtsModel, UpdateVoiceAgentModelsBodyTtsProvider, UpdateWebhookBodyEnvironmentsItem, 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, WebhookEnvironmentsItem, WorkerEnvironment, WorkerExecuteToolBodyEnvironment, WorkerListToolsSortBy, WorkerListToolsSortOrder, WorkerMcpName, WorkerMcpOutputName, WorkerPermission, WorkerRunCreatedEnvironment, WorkerRunCreatedStatus, WorkerRunEnvironment, WorkerRunStatus, addCaseLinks, cancelJob, cancelWorkerRun, checkInboxAvailability, configure, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createCase, createChat, createChatAgent, createExtractor, createExtractorJob, createExtractorWebhook, createInbox, createInboxWebhook, createInformationRequest, createNotificationWebhook, createSchedule, createSecret, createTool, createVoiceAgent, createWorker, createWorkerRun, createWorkerWebhook, deleteArtifact, deleteCallFeedback, deleteChatAgent, deleteEmail, deleteExtractor, deleteInbox, deleteSchedule, deleteSecret, deleteTool, deleteVoiceAgent, deleteWebhook, deleteWorker, executeCode, generateCodeChallenge, generateCodeVerifier, getAddCaseLinksMutationFetcher, getAddCaseLinksMutationKey, getAddCaseLinksUrl, 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, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateInboxMutationFetcher, getCreateInboxMutationKey, getCreateInboxUrl, getCreateInboxWebhookMutationFetcher, getCreateInboxWebhookMutationKey, getCreateInboxWebhookUrl, getCreateInformationRequestMutationFetcher, getCreateInformationRequestMutationKey, getCreateInformationRequestUrl, getCreateNotificationWebhookMutationFetcher, getCreateNotificationWebhookMutationKey, getCreateNotificationWebhookUrl, 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, 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, getGetInformationRequestKey, getGetInformationRequestUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetPartnerJwksKey, getGetPartnerJwksUrl, getGetProfileKey, getGetProfileUrl, getGetPublicChatAgentKey, getGetPublicChatAgentUrl, getGetScheduleKey, getGetScheduleUrl, getGetSecretKey, getGetSecretUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetToolVersionChangeSummaryKey, getGetToolVersionChangeSummaryUrl, getGetToolVersionKey, getGetToolVersionUrl, getGetVoiceAgentKey, getGetVoiceAgentPlaceholdersKey, getGetVoiceAgentPlaceholdersUrl, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, getGetVoiceAgentVersionChangeSummaryKey, getGetVoiceAgentVersionChangeSummaryUrl, getGetVoiceAgentVersionKey, getGetVoiceAgentVersionUrl, getGetWebhookKey, getGetWebhookUrl, getGetWorkerKey, getGetWorkerPromptKey, getGetWorkerPromptUrl, getGetWorkerRunKey, getGetWorkerRunUrl, getGetWorkerUrl, getGetWorkerVersionChangeSummaryKey, getGetWorkerVersionChangeSummaryUrl, getGetWorkerVersionKey, getGetWorkerVersionUrl, getInformationRequest, 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, getListInformationRequestsKey, getListInformationRequestsUrl, getListJobsKey, getListJobsUrl, getListNotificationWebhooksKey, getListNotificationWebhooksUrl, getListNotificationsKey, getListNotificationsUrl, getListSchedulesKey, getListSchedulesUrl, getListSecretsKey, getListSecretsUrl, getListTeamInvitationsKey, getListTeamInvitationsUrl, getListTeamMembersKey, getListTeamMembersUrl, getListToolVersionsKey, getListToolVersionsUrl, 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, getPromoteToolVersionMutationFetcher, getPromoteToolVersionMutationKey, getPromoteToolVersionUrl, 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, getResolveInformationRequestMutationFetcher, getResolveInformationRequestMutationKey, getResolveInformationRequestUrl, 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, getToolVersion, getToolVersionChangeSummary, 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, getUpdateWebhookMutationFetcher, getUpdateWebhookMutationKey, getUpdateWebhookUrl, getUpdateWorkerMcpsMutationFetcher, getUpdateWorkerMcpsMutationKey, getUpdateWorkerMcpsUrl, getUpdateWorkerMutationFetcher, getUpdateWorkerMutationKey, getUpdateWorkerPromptMutationFetcher, getUpdateWorkerPromptMutationKey, getUpdateWorkerPromptUrl, 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, listInformationRequests, listJobs, listNotificationWebhooks, listNotifications, listSchedules, listSecrets, listTeamInvitations, listTeamMembers, listToolVersions, listTools, listVoiceAgentVersions, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerModels, listWorkerRunMessages, listWorkerRuns, listWorkerVersions, listWorkerWebhooks, listWorkers, notifyAdmin, partnerLaunch, postChatMessage, promoteToolVersion, promoteVoiceAgentVersion, promoteWorkerVersion, refreshToken, removeCaseLink, removeMember, replyToEmail, requestPasswordReset, resendTeamInvitation, resetPassword, resolveInformationRequest, revokeApiKey, revokeTeamInvitation, scheduleJob, searchCases, sendEmail, signIn, signUp, testWebhook, updateApiKey, updateArtifactMetadata, updateCallControls, updateChatAgent, updateChatAgentPrompt, updateExtractor, updateInbox, updateMemberRole, updateSchedule, updateSecret, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateVoiceAgentPrompt, updateWebhook, updateWorker, updateWorkerMcps, updateWorkerPrompt, uploadFile, useAddCaseLinks, useCancelJob, useCancelWorkerRun, useCheckInboxAvailability, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateCase, useCreateChat, useCreateChatAgent, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateInbox, useCreateInboxWebhook, useCreateInformationRequest, useCreateNotificationWebhook, useCreateSchedule, useCreateSecret, useCreateTool, useCreateVoiceAgent, useCreateWorker, useCreateWorkerRun, useCreateWorkerWebhook, useDeleteArtifact, useDeleteCallFeedback, useDeleteChatAgent, useDeleteEmail, useDeleteExtractor, useDeleteInbox, useDeleteSchedule, useDeleteSecret, useDeleteTool, useDeleteVoiceAgent, useDeleteWebhook, useDeleteWorker, useExecuteCode, useGetAnalyticsTimeSeries, useGetArtifact, useGetArtifactMetadataKeys, useGetArtifactStatusSummary, useGetArtifactUploadUrl, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetCase, useGetChat, useGetChatAgent, useGetChatAgentPrompt, useGetEmail, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetInformationRequest, useGetOAuthUrl, useGetPartnerJwks, useGetProfile, useGetPublicChatAgent, useGetSchedule, useGetSecret, useGetSessionToken, useGetTool, useGetToolVersion, useGetToolVersionChangeSummary, 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, useListInformationRequests, useListJobs, useListNotificationWebhooks, useListNotifications, useListSchedules, useListSecrets, useListTeamInvitations, useListTeamMembers, useListToolVersions, useListTools, useListVoiceAgentVersions, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerModels, useListWorkerRunMessages, useListWorkerRuns, useListWorkerVersions, useListWorkerWebhooks, useListWorkers, useNotifyAdmin, usePartnerLaunch, usePostChatMessage, usePromoteToolVersion, usePromoteVoiceAgentVersion, usePromoteWorkerVersion, useRefreshToken, useRemoveCaseLink, useRemoveMember, useReplyToEmail, useRequestPasswordReset, useResendTeamInvitation, useResetPassword, useResolveInformationRequest, useRevokeApiKey, useRevokeTeamInvitation, useScheduleJob, useSearchCases, useSendEmail, useSignIn, useSignUp, useTestWebhook, useUpdateApiKey, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateChatAgent, useUpdateChatAgentPrompt, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateSchedule, useUpdateSecret, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateVoiceAgentPrompt, useUpdateWebhook, useUpdateWorker, useUpdateWorkerMcps, useUpdateWorkerPrompt, useUploadFile, useWorkerExecuteTool, useWorkerGetTool, useWorkerListTools, workerExecuteTool, workerGetTool, workerListTools };
|
|
6402
6481
|
//# sourceMappingURL=index.js.map
|
|
6403
6482
|
//# sourceMappingURL=index.js.map
|