@avallon-labs/sdk 28.0.0 → 29.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 +1 -206
- package/dist/index.js +64 -197
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import useSwr19 from 'swr';
|
|
2
|
-
import
|
|
2
|
+
import useSWRMutation14 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 = useSWRMutation14(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 = useSWRMutation14(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 = useSWRMutation14(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 = useSWRMutation14(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 = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
366
366
|
return {
|
|
367
367
|
swrKey,
|
|
368
368
|
...query
|
|
@@ -430,7 +430,7 @@ var useGetArtifactUploadUrl = (options) => {
|
|
|
430
430
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
431
431
|
const swrKey = swrOptions?.swrKey ?? getGetArtifactUploadUrlMutationKey();
|
|
432
432
|
const swrFn = getGetArtifactUploadUrlMutationFetcher(requestOptions);
|
|
433
|
-
const query =
|
|
433
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
434
434
|
return {
|
|
435
435
|
swrKey,
|
|
436
436
|
...query
|
|
@@ -457,7 +457,7 @@ var useUpdateArtifactMetadata = (id, options) => {
|
|
|
457
457
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
458
458
|
const swrKey = swrOptions?.swrKey ?? getUpdateArtifactMetadataMutationKey(id);
|
|
459
459
|
const swrFn = getUpdateArtifactMetadataMutationFetcher(id, requestOptions);
|
|
460
|
-
const query =
|
|
460
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
461
461
|
return {
|
|
462
462
|
swrKey,
|
|
463
463
|
...query
|
|
@@ -484,7 +484,7 @@ var useUploadFile = (options) => {
|
|
|
484
484
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
485
485
|
const swrKey = swrOptions?.swrKey ?? getUploadFileMutationKey();
|
|
486
486
|
const swrFn = getUploadFileMutationFetcher(requestOptions);
|
|
487
|
-
const query =
|
|
487
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
488
488
|
return {
|
|
489
489
|
swrKey,
|
|
490
490
|
...query
|
|
@@ -511,7 +511,7 @@ var useSignUp = (options) => {
|
|
|
511
511
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
512
512
|
const swrKey = swrOptions?.swrKey ?? getSignUpMutationKey();
|
|
513
513
|
const swrFn = getSignUpMutationFetcher(requestOptions);
|
|
514
|
-
const query =
|
|
514
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
515
515
|
return {
|
|
516
516
|
swrKey,
|
|
517
517
|
...query
|
|
@@ -538,7 +538,7 @@ var useSignIn = (options) => {
|
|
|
538
538
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
539
539
|
const swrKey = swrOptions?.swrKey ?? getSignInMutationKey();
|
|
540
540
|
const swrFn = getSignInMutationFetcher(requestOptions);
|
|
541
|
-
const query =
|
|
541
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
542
542
|
return {
|
|
543
543
|
swrKey,
|
|
544
544
|
...query
|
|
@@ -565,7 +565,7 @@ var useRefreshToken = (options) => {
|
|
|
565
565
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
566
566
|
const swrKey = swrOptions?.swrKey ?? getRefreshTokenMutationKey();
|
|
567
567
|
const swrFn = getRefreshTokenMutationFetcher(requestOptions);
|
|
568
|
-
const query =
|
|
568
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
569
569
|
return {
|
|
570
570
|
swrKey,
|
|
571
571
|
...query
|
|
@@ -630,7 +630,7 @@ var useGetSessionToken = (options) => {
|
|
|
630
630
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
631
631
|
const swrKey = swrOptions?.swrKey ?? getGetSessionTokenMutationKey();
|
|
632
632
|
const swrFn = getGetSessionTokenMutationFetcher(requestOptions);
|
|
633
|
-
const query =
|
|
633
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
634
634
|
return {
|
|
635
635
|
swrKey,
|
|
636
636
|
...query
|
|
@@ -693,129 +693,7 @@ var usePartnerLaunch = (params, options) => {
|
|
|
693
693
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
694
694
|
const swrKey = swrOptions?.swrKey ?? getPartnerLaunchMutationKey(params);
|
|
695
695
|
const swrFn = getPartnerLaunchMutationFetcher(params, requestOptions);
|
|
696
|
-
const query =
|
|
697
|
-
return {
|
|
698
|
-
swrKey,
|
|
699
|
-
...query
|
|
700
|
-
};
|
|
701
|
-
};
|
|
702
|
-
var getExperimentalSignUpUrl = () => {
|
|
703
|
-
return `/experimental/auth/sign-up`;
|
|
704
|
-
};
|
|
705
|
-
var experimentalSignUp = async (experimentalSignUpBody, options) => {
|
|
706
|
-
return customFetchNoAuth(
|
|
707
|
-
getExperimentalSignUpUrl(),
|
|
708
|
-
{
|
|
709
|
-
...options,
|
|
710
|
-
method: "POST",
|
|
711
|
-
headers: { "Content-Type": "application/json", ...options?.headers },
|
|
712
|
-
body: JSON.stringify(experimentalSignUpBody)
|
|
713
|
-
}
|
|
714
|
-
);
|
|
715
|
-
};
|
|
716
|
-
var getExperimentalSignUpMutationFetcher = (options) => {
|
|
717
|
-
return (_, { arg }) => {
|
|
718
|
-
return experimentalSignUp(arg, options);
|
|
719
|
-
};
|
|
720
|
-
};
|
|
721
|
-
var getExperimentalSignUpMutationKey = () => [`/experimental/auth/sign-up`];
|
|
722
|
-
var useExperimentalSignUp = (options) => {
|
|
723
|
-
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
724
|
-
const swrKey = swrOptions?.swrKey ?? getExperimentalSignUpMutationKey();
|
|
725
|
-
const swrFn = getExperimentalSignUpMutationFetcher(requestOptions);
|
|
726
|
-
const query = useSWRMutation3(swrKey, swrFn, swrOptions);
|
|
727
|
-
return {
|
|
728
|
-
swrKey,
|
|
729
|
-
...query
|
|
730
|
-
};
|
|
731
|
-
};
|
|
732
|
-
var getExperimentalSignInUrl = () => {
|
|
733
|
-
return `/experimental/auth/sign-in`;
|
|
734
|
-
};
|
|
735
|
-
var experimentalSignIn = async (experimentalSignInBody, options) => {
|
|
736
|
-
return customFetchNoAuth(getExperimentalSignInUrl(), {
|
|
737
|
-
...options,
|
|
738
|
-
method: "POST",
|
|
739
|
-
headers: { "Content-Type": "application/json", ...options?.headers },
|
|
740
|
-
body: JSON.stringify(experimentalSignInBody)
|
|
741
|
-
});
|
|
742
|
-
};
|
|
743
|
-
var getExperimentalSignInMutationFetcher = (options) => {
|
|
744
|
-
return (_, { arg }) => {
|
|
745
|
-
return experimentalSignIn(arg, options);
|
|
746
|
-
};
|
|
747
|
-
};
|
|
748
|
-
var getExperimentalSignInMutationKey = () => [`/experimental/auth/sign-in`];
|
|
749
|
-
var useExperimentalSignIn = (options) => {
|
|
750
|
-
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
751
|
-
const swrKey = swrOptions?.swrKey ?? getExperimentalSignInMutationKey();
|
|
752
|
-
const swrFn = getExperimentalSignInMutationFetcher(requestOptions);
|
|
753
|
-
const query = useSWRMutation3(swrKey, swrFn, swrOptions);
|
|
754
|
-
return {
|
|
755
|
-
swrKey,
|
|
756
|
-
...query
|
|
757
|
-
};
|
|
758
|
-
};
|
|
759
|
-
var getExperimentalGetOAuthUrlUrl = (params) => {
|
|
760
|
-
const normalizedParams = new URLSearchParams();
|
|
761
|
-
Object.entries(params || {}).forEach(([key, value]) => {
|
|
762
|
-
if (value !== void 0) {
|
|
763
|
-
if (typeof value === "object" && value !== null && !Array.isArray(value)) {
|
|
764
|
-
for (const [sk, sv] of Object.entries(value)) {
|
|
765
|
-
if (sv !== void 0) normalizedParams.append(`${key}[${sk}]`, String(sv));
|
|
766
|
-
}
|
|
767
|
-
} else {
|
|
768
|
-
normalizedParams.append(key, value === null ? "null" : String(value));
|
|
769
|
-
}
|
|
770
|
-
}
|
|
771
|
-
});
|
|
772
|
-
const stringifiedParams = normalizedParams.toString();
|
|
773
|
-
return stringifiedParams.length > 0 ? `/experimental/auth/oauth-url?${stringifiedParams}` : `/experimental/auth/oauth-url`;
|
|
774
|
-
};
|
|
775
|
-
var experimentalGetOAuthUrl = async (params, options) => {
|
|
776
|
-
return customFetchNoAuth(getExperimentalGetOAuthUrlUrl(params), {
|
|
777
|
-
...options,
|
|
778
|
-
method: "GET"
|
|
779
|
-
});
|
|
780
|
-
};
|
|
781
|
-
var getExperimentalGetOAuthUrlKey = (params) => [`/experimental/auth/oauth-url`, ...params ? [params] : []];
|
|
782
|
-
var useExperimentalGetOAuthUrl = (params, options) => {
|
|
783
|
-
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
784
|
-
const isEnabled = swrOptions?.enabled !== false;
|
|
785
|
-
const swrKey = swrOptions?.swrKey ?? (() => isEnabled ? getExperimentalGetOAuthUrlKey(params) : null);
|
|
786
|
-
const swrFn = () => experimentalGetOAuthUrl(params, requestOptions);
|
|
787
|
-
const query = useSwr19(
|
|
788
|
-
swrKey,
|
|
789
|
-
swrFn,
|
|
790
|
-
swrOptions
|
|
791
|
-
);
|
|
792
|
-
return {
|
|
793
|
-
swrKey,
|
|
794
|
-
...query
|
|
795
|
-
};
|
|
796
|
-
};
|
|
797
|
-
var getExperimentalRefreshTokenUrl = () => {
|
|
798
|
-
return `/experimental/auth/refresh-token`;
|
|
799
|
-
};
|
|
800
|
-
var experimentalRefreshToken = async (experimentalRefreshTokenBody, options) => {
|
|
801
|
-
return customFetchNoAuth(getExperimentalRefreshTokenUrl(), {
|
|
802
|
-
...options,
|
|
803
|
-
method: "POST",
|
|
804
|
-
headers: { "Content-Type": "application/json", ...options?.headers },
|
|
805
|
-
body: JSON.stringify(experimentalRefreshTokenBody)
|
|
806
|
-
});
|
|
807
|
-
};
|
|
808
|
-
var getExperimentalRefreshTokenMutationFetcher = (options) => {
|
|
809
|
-
return (_, { arg }) => {
|
|
810
|
-
return experimentalRefreshToken(arg, options);
|
|
811
|
-
};
|
|
812
|
-
};
|
|
813
|
-
var getExperimentalRefreshTokenMutationKey = () => [`/experimental/auth/refresh-token`];
|
|
814
|
-
var useExperimentalRefreshToken = (options) => {
|
|
815
|
-
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
816
|
-
const swrKey = swrOptions?.swrKey ?? getExperimentalRefreshTokenMutationKey();
|
|
817
|
-
const swrFn = getExperimentalRefreshTokenMutationFetcher(requestOptions);
|
|
818
|
-
const query = useSWRMutation3(swrKey, swrFn, swrOptions);
|
|
696
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
819
697
|
return {
|
|
820
698
|
swrKey,
|
|
821
699
|
...query
|
|
@@ -842,7 +720,7 @@ var useCreateCallFeedback = (id, options) => {
|
|
|
842
720
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
843
721
|
const swrKey = swrOptions?.swrKey ?? getCreateCallFeedbackMutationKey(id);
|
|
844
722
|
const swrFn = getCreateCallFeedbackMutationFetcher(id, requestOptions);
|
|
845
|
-
const query =
|
|
723
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
846
724
|
return {
|
|
847
725
|
swrKey,
|
|
848
726
|
...query
|
|
@@ -909,7 +787,7 @@ var useDeleteCallFeedback = (id, feedbackId, options) => {
|
|
|
909
787
|
feedbackId,
|
|
910
788
|
requestOptions
|
|
911
789
|
);
|
|
912
|
-
const query =
|
|
790
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
913
791
|
return {
|
|
914
792
|
swrKey,
|
|
915
793
|
...query
|
|
@@ -1176,7 +1054,7 @@ var useCreateChatAgent = (options) => {
|
|
|
1176
1054
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1177
1055
|
const swrKey = swrOptions?.swrKey ?? getCreateChatAgentMutationKey();
|
|
1178
1056
|
const swrFn = getCreateChatAgentMutationFetcher(requestOptions);
|
|
1179
|
-
const query =
|
|
1057
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
1180
1058
|
return {
|
|
1181
1059
|
swrKey,
|
|
1182
1060
|
...query
|
|
@@ -1266,7 +1144,7 @@ var useUpdateChatAgent = (chatAgentId, options) => {
|
|
|
1266
1144
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1267
1145
|
const swrKey = swrOptions?.swrKey ?? getUpdateChatAgentMutationKey(chatAgentId);
|
|
1268
1146
|
const swrFn = getUpdateChatAgentMutationFetcher(chatAgentId, requestOptions);
|
|
1269
|
-
const query =
|
|
1147
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
1270
1148
|
return {
|
|
1271
1149
|
swrKey,
|
|
1272
1150
|
...query
|
|
@@ -1294,7 +1172,7 @@ var useDeleteChatAgent = (chatAgentId, options) => {
|
|
|
1294
1172
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1295
1173
|
const swrKey = swrOptions?.swrKey ?? getDeleteChatAgentMutationKey(chatAgentId);
|
|
1296
1174
|
const swrFn = getDeleteChatAgentMutationFetcher(chatAgentId, requestOptions);
|
|
1297
|
-
const query =
|
|
1175
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
1298
1176
|
return {
|
|
1299
1177
|
swrKey,
|
|
1300
1178
|
...query
|
|
@@ -1352,7 +1230,7 @@ var useUpdateChatAgentPrompt = (chatAgentId, options) => {
|
|
|
1352
1230
|
chatAgentId,
|
|
1353
1231
|
requestOptions
|
|
1354
1232
|
);
|
|
1355
|
-
const query =
|
|
1233
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
1356
1234
|
return {
|
|
1357
1235
|
swrKey,
|
|
1358
1236
|
...query
|
|
@@ -1379,7 +1257,7 @@ var useCreateChat = (options) => {
|
|
|
1379
1257
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1380
1258
|
const swrKey = swrOptions?.swrKey ?? getCreateChatMutationKey();
|
|
1381
1259
|
const swrFn = getCreateChatMutationFetcher(requestOptions);
|
|
1382
|
-
const query =
|
|
1260
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
1383
1261
|
return {
|
|
1384
1262
|
swrKey,
|
|
1385
1263
|
...query
|
|
@@ -1456,7 +1334,7 @@ var usePostChatMessage = (chatId, options) => {
|
|
|
1456
1334
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1457
1335
|
const swrKey = swrOptions?.swrKey ?? getPostChatMessageMutationKey(chatId);
|
|
1458
1336
|
const swrFn = getPostChatMessageMutationFetcher(chatId, requestOptions);
|
|
1459
|
-
const query =
|
|
1337
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
1460
1338
|
return {
|
|
1461
1339
|
swrKey,
|
|
1462
1340
|
...query
|
|
@@ -1559,7 +1437,7 @@ var useCreateEmail = (options) => {
|
|
|
1559
1437
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1560
1438
|
const swrKey = swrOptions?.swrKey ?? getCreateEmailMutationKey();
|
|
1561
1439
|
const swrFn = getCreateEmailMutationFetcher(requestOptions);
|
|
1562
|
-
const query =
|
|
1440
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
1563
1441
|
return {
|
|
1564
1442
|
swrKey,
|
|
1565
1443
|
...query
|
|
@@ -1647,7 +1525,7 @@ var useDeleteEmail = (emailId, options) => {
|
|
|
1647
1525
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1648
1526
|
const swrKey = swrOptions?.swrKey ?? getDeleteEmailMutationKey(emailId);
|
|
1649
1527
|
const swrFn = getDeleteEmailMutationFetcher(emailId, requestOptions);
|
|
1650
|
-
const query =
|
|
1528
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
1651
1529
|
return {
|
|
1652
1530
|
swrKey,
|
|
1653
1531
|
...query
|
|
@@ -1712,7 +1590,7 @@ var useReplyToEmail = (emailId, options) => {
|
|
|
1712
1590
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1713
1591
|
const swrKey = swrOptions?.swrKey ?? getReplyToEmailMutationKey(emailId);
|
|
1714
1592
|
const swrFn = getReplyToEmailMutationFetcher(emailId, requestOptions);
|
|
1715
|
-
const query =
|
|
1593
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
1716
1594
|
return {
|
|
1717
1595
|
swrKey,
|
|
1718
1596
|
...query
|
|
@@ -1739,7 +1617,7 @@ var useSendEmail = (options) => {
|
|
|
1739
1617
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1740
1618
|
const swrKey = swrOptions?.swrKey ?? getSendEmailMutationKey();
|
|
1741
1619
|
const swrFn = getSendEmailMutationFetcher(requestOptions);
|
|
1742
|
-
const query =
|
|
1620
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
1743
1621
|
return {
|
|
1744
1622
|
swrKey,
|
|
1745
1623
|
...query
|
|
@@ -1804,7 +1682,7 @@ var useCreateExtractorJob = (options) => {
|
|
|
1804
1682
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1805
1683
|
const swrKey = swrOptions?.swrKey ?? getCreateExtractorJobMutationKey();
|
|
1806
1684
|
const swrFn = getCreateExtractorJobMutationFetcher(requestOptions);
|
|
1807
|
-
const query =
|
|
1685
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
1808
1686
|
return {
|
|
1809
1687
|
swrKey,
|
|
1810
1688
|
...query
|
|
@@ -1856,7 +1734,7 @@ var useCreateExtractor = (options) => {
|
|
|
1856
1734
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1857
1735
|
const swrKey = swrOptions?.swrKey ?? getCreateExtractorMutationKey();
|
|
1858
1736
|
const swrFn = getCreateExtractorMutationFetcher(requestOptions);
|
|
1859
|
-
const query =
|
|
1737
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
1860
1738
|
return {
|
|
1861
1739
|
swrKey,
|
|
1862
1740
|
...query
|
|
@@ -1946,7 +1824,7 @@ var useUpdateExtractor = (id, options) => {
|
|
|
1946
1824
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1947
1825
|
const swrKey = swrOptions?.swrKey ?? getUpdateExtractorMutationKey(id);
|
|
1948
1826
|
const swrFn = getUpdateExtractorMutationFetcher(id, requestOptions);
|
|
1949
|
-
const query =
|
|
1827
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
1950
1828
|
return {
|
|
1951
1829
|
swrKey,
|
|
1952
1830
|
...query
|
|
@@ -1971,7 +1849,7 @@ var useDeleteExtractor = (id, options) => {
|
|
|
1971
1849
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
1972
1850
|
const swrKey = swrOptions?.swrKey ?? getDeleteExtractorMutationKey(id);
|
|
1973
1851
|
const swrFn = getDeleteExtractorMutationFetcher(id, requestOptions);
|
|
1974
|
-
const query =
|
|
1852
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
1975
1853
|
return {
|
|
1976
1854
|
swrKey,
|
|
1977
1855
|
...query
|
|
@@ -2124,7 +2002,7 @@ var useCreateInbox = (options) => {
|
|
|
2124
2002
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2125
2003
|
const swrKey = swrOptions?.swrKey ?? getCreateInboxMutationKey();
|
|
2126
2004
|
const swrFn = getCreateInboxMutationFetcher(requestOptions);
|
|
2127
|
-
const query =
|
|
2005
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
2128
2006
|
return {
|
|
2129
2007
|
swrKey,
|
|
2130
2008
|
...query
|
|
@@ -2189,7 +2067,7 @@ var useUpdateInbox = (inboxId, options) => {
|
|
|
2189
2067
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2190
2068
|
const swrKey = swrOptions?.swrKey ?? getUpdateInboxMutationKey(inboxId);
|
|
2191
2069
|
const swrFn = getUpdateInboxMutationFetcher(inboxId, requestOptions);
|
|
2192
|
-
const query =
|
|
2070
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
2193
2071
|
return {
|
|
2194
2072
|
swrKey,
|
|
2195
2073
|
...query
|
|
@@ -2214,7 +2092,7 @@ var useDeleteInbox = (inboxId, options) => {
|
|
|
2214
2092
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2215
2093
|
const swrKey = swrOptions?.swrKey ?? getDeleteInboxMutationKey(inboxId);
|
|
2216
2094
|
const swrFn = getDeleteInboxMutationFetcher(inboxId, requestOptions);
|
|
2217
|
-
const query =
|
|
2095
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
2218
2096
|
return {
|
|
2219
2097
|
swrKey,
|
|
2220
2098
|
...query
|
|
@@ -2241,7 +2119,7 @@ var useScheduleJob = (voiceAgentId, options) => {
|
|
|
2241
2119
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2242
2120
|
const swrKey = swrOptions?.swrKey ?? getScheduleJobMutationKey(voiceAgentId);
|
|
2243
2121
|
const swrFn = getScheduleJobMutationFetcher(voiceAgentId, requestOptions);
|
|
2244
|
-
const query =
|
|
2122
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
2245
2123
|
return {
|
|
2246
2124
|
swrKey,
|
|
2247
2125
|
...query
|
|
@@ -2304,7 +2182,7 @@ var useCancelJob = (jobId, options) => {
|
|
|
2304
2182
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2305
2183
|
const swrKey = swrOptions?.swrKey ?? getCancelJobMutationKey(jobId);
|
|
2306
2184
|
const swrFn = getCancelJobMutationFetcher(jobId, requestOptions);
|
|
2307
|
-
const query =
|
|
2185
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
2308
2186
|
return {
|
|
2309
2187
|
swrKey,
|
|
2310
2188
|
...query
|
|
@@ -2381,7 +2259,7 @@ var useUpdateMemberRole = (id, options) => {
|
|
|
2381
2259
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2382
2260
|
const swrKey = swrOptions?.swrKey ?? getUpdateMemberRoleMutationKey(id);
|
|
2383
2261
|
const swrFn = getUpdateMemberRoleMutationFetcher(id, requestOptions);
|
|
2384
|
-
const query =
|
|
2262
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
2385
2263
|
return {
|
|
2386
2264
|
swrKey,
|
|
2387
2265
|
...query
|
|
@@ -2406,7 +2284,7 @@ var useRemoveMember = (id, options) => {
|
|
|
2406
2284
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2407
2285
|
const swrKey = swrOptions?.swrKey ?? getRemoveMemberMutationKey(id);
|
|
2408
2286
|
const swrFn = getRemoveMemberMutationFetcher(id, requestOptions);
|
|
2409
|
-
const query =
|
|
2287
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
2410
2288
|
return {
|
|
2411
2289
|
swrKey,
|
|
2412
2290
|
...query
|
|
@@ -2433,7 +2311,7 @@ var useCreateTool = (options) => {
|
|
|
2433
2311
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2434
2312
|
const swrKey = swrOptions?.swrKey ?? getCreateToolMutationKey();
|
|
2435
2313
|
const swrFn = getCreateToolMutationFetcher(requestOptions);
|
|
2436
|
-
const query =
|
|
2314
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
2437
2315
|
return {
|
|
2438
2316
|
swrKey,
|
|
2439
2317
|
...query
|
|
@@ -2496,7 +2374,7 @@ var useDeleteTool = (id, options) => {
|
|
|
2496
2374
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2497
2375
|
const swrKey = swrOptions?.swrKey ?? getDeleteToolMutationKey(id);
|
|
2498
2376
|
const swrFn = getDeleteToolMutationFetcher(id, requestOptions);
|
|
2499
|
-
const query =
|
|
2377
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
2500
2378
|
return {
|
|
2501
2379
|
swrKey,
|
|
2502
2380
|
...query
|
|
@@ -2548,7 +2426,7 @@ var useUpdateTool = (id, options) => {
|
|
|
2548
2426
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2549
2427
|
const swrKey = swrOptions?.swrKey ?? getUpdateToolMutationKey(id);
|
|
2550
2428
|
const swrFn = getUpdateToolMutationFetcher(id, requestOptions);
|
|
2551
|
-
const query =
|
|
2429
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
2552
2430
|
return {
|
|
2553
2431
|
swrKey,
|
|
2554
2432
|
...query
|
|
@@ -2575,7 +2453,7 @@ var useExecuteCode = (id, options) => {
|
|
|
2575
2453
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2576
2454
|
const swrKey = swrOptions?.swrKey ?? getExecuteCodeMutationKey(id);
|
|
2577
2455
|
const swrFn = getExecuteCodeMutationFetcher(id, requestOptions);
|
|
2578
|
-
const query =
|
|
2456
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
2579
2457
|
return {
|
|
2580
2458
|
swrKey,
|
|
2581
2459
|
...query
|
|
@@ -2640,7 +2518,7 @@ var useCreateVoiceAgent = (options) => {
|
|
|
2640
2518
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
2641
2519
|
const swrKey = swrOptions?.swrKey ?? getCreateVoiceAgentMutationKey();
|
|
2642
2520
|
const swrFn = getCreateVoiceAgentMutationFetcher(requestOptions);
|
|
2643
|
-
const query =
|
|
2521
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
2644
2522
|
return {
|
|
2645
2523
|
swrKey,
|
|
2646
2524
|
...query
|
|
@@ -2698,7 +2576,7 @@ var useUpdateVoiceAgent = (voiceAgentId, options) => {
|
|
|
2698
2576
|
voiceAgentId,
|
|
2699
2577
|
requestOptions
|
|
2700
2578
|
);
|
|
2701
|
-
const query =
|
|
2579
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
2702
2580
|
return {
|
|
2703
2581
|
swrKey,
|
|
2704
2582
|
...query
|
|
@@ -2729,7 +2607,7 @@ var useDeleteVoiceAgent = (voiceAgentId, options) => {
|
|
|
2729
2607
|
voiceAgentId,
|
|
2730
2608
|
requestOptions
|
|
2731
2609
|
);
|
|
2732
|
-
const query =
|
|
2610
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
2733
2611
|
return {
|
|
2734
2612
|
swrKey,
|
|
2735
2613
|
...query
|
|
@@ -2864,7 +2742,7 @@ var useAddToolsToVoiceAgent = (voiceAgentId, options) => {
|
|
|
2864
2742
|
voiceAgentId,
|
|
2865
2743
|
requestOptions
|
|
2866
2744
|
);
|
|
2867
|
-
const query =
|
|
2745
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
2868
2746
|
return {
|
|
2869
2747
|
swrKey,
|
|
2870
2748
|
...query
|
|
@@ -2897,7 +2775,7 @@ var useDeleteToolsFromVoiceAgent = (voiceAgentId, options) => {
|
|
|
2897
2775
|
voiceAgentId,
|
|
2898
2776
|
requestOptions
|
|
2899
2777
|
);
|
|
2900
|
-
const query =
|
|
2778
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
2901
2779
|
return {
|
|
2902
2780
|
swrKey,
|
|
2903
2781
|
...query
|
|
@@ -3002,7 +2880,7 @@ var useUpdateVoiceAgentPrompt = (voiceAgentId, options) => {
|
|
|
3002
2880
|
voiceAgentId,
|
|
3003
2881
|
requestOptions
|
|
3004
2882
|
);
|
|
3005
|
-
const query =
|
|
2883
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
3006
2884
|
return {
|
|
3007
2885
|
swrKey,
|
|
3008
2886
|
...query
|
|
@@ -3035,7 +2913,7 @@ var useUpdateVoiceAgentModels = (voiceAgentId, options) => {
|
|
|
3035
2913
|
voiceAgentId,
|
|
3036
2914
|
requestOptions
|
|
3037
2915
|
);
|
|
3038
|
-
const query =
|
|
2916
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
3039
2917
|
return {
|
|
3040
2918
|
swrKey,
|
|
3041
2919
|
...query
|
|
@@ -3068,7 +2946,7 @@ var useUpdateCallControls = (voiceAgentId, options) => {
|
|
|
3068
2946
|
voiceAgentId,
|
|
3069
2947
|
requestOptions
|
|
3070
2948
|
);
|
|
3071
|
-
const query =
|
|
2949
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
3072
2950
|
return {
|
|
3073
2951
|
swrKey,
|
|
3074
2952
|
...query
|
|
@@ -3095,7 +2973,7 @@ var useCreateWorkerWebhook = (workerId, options) => {
|
|
|
3095
2973
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
3096
2974
|
const swrKey = swrOptions?.swrKey ?? getCreateWorkerWebhookMutationKey(workerId);
|
|
3097
2975
|
const swrFn = getCreateWorkerWebhookMutationFetcher(workerId, requestOptions);
|
|
3098
|
-
const query =
|
|
2976
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
3099
2977
|
return {
|
|
3100
2978
|
swrKey,
|
|
3101
2979
|
...query
|
|
@@ -3150,7 +3028,7 @@ var useCreateAgentWebhook = (voiceAgentId, options) => {
|
|
|
3150
3028
|
voiceAgentId,
|
|
3151
3029
|
requestOptions
|
|
3152
3030
|
);
|
|
3153
|
-
const query =
|
|
3031
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
3154
3032
|
return {
|
|
3155
3033
|
swrKey,
|
|
3156
3034
|
...query
|
|
@@ -3205,7 +3083,7 @@ var useCreateInboxWebhook = (inboxId, options) => {
|
|
|
3205
3083
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
3206
3084
|
const swrKey = swrOptions?.swrKey ?? getCreateInboxWebhookMutationKey(inboxId);
|
|
3207
3085
|
const swrFn = getCreateInboxWebhookMutationFetcher(inboxId, requestOptions);
|
|
3208
|
-
const query =
|
|
3086
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
3209
3087
|
return {
|
|
3210
3088
|
swrKey,
|
|
3211
3089
|
...query
|
|
@@ -3257,7 +3135,7 @@ var useCreateExtractorWebhook = (id, options) => {
|
|
|
3257
3135
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
3258
3136
|
const swrKey = swrOptions?.swrKey ?? getCreateExtractorWebhookMutationKey(id);
|
|
3259
3137
|
const swrFn = getCreateExtractorWebhookMutationFetcher(id, requestOptions);
|
|
3260
|
-
const query =
|
|
3138
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
3261
3139
|
return {
|
|
3262
3140
|
swrKey,
|
|
3263
3141
|
...query
|
|
@@ -3307,7 +3185,7 @@ var useDeleteWebhook = (id, options) => {
|
|
|
3307
3185
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
3308
3186
|
const swrKey = swrOptions?.swrKey ?? getDeleteWebhookMutationKey(id);
|
|
3309
3187
|
const swrFn = getDeleteWebhookMutationFetcher(id, requestOptions);
|
|
3310
|
-
const query =
|
|
3188
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
3311
3189
|
return {
|
|
3312
3190
|
swrKey,
|
|
3313
3191
|
...query
|
|
@@ -3398,7 +3276,7 @@ var useTestWebhook = (id, options) => {
|
|
|
3398
3276
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
3399
3277
|
const swrKey = swrOptions?.swrKey ?? getTestWebhookMutationKey(id);
|
|
3400
3278
|
const swrFn = getTestWebhookMutationFetcher(id, requestOptions);
|
|
3401
|
-
const query =
|
|
3279
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
3402
3280
|
return {
|
|
3403
3281
|
swrKey,
|
|
3404
3282
|
...query
|
|
@@ -3463,7 +3341,7 @@ var useCreateWorkerRun = (options) => {
|
|
|
3463
3341
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
3464
3342
|
const swrKey = swrOptions?.swrKey ?? getCreateWorkerRunMutationKey();
|
|
3465
3343
|
const swrFn = getCreateWorkerRunMutationFetcher(requestOptions);
|
|
3466
|
-
const query =
|
|
3344
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
3467
3345
|
return {
|
|
3468
3346
|
swrKey,
|
|
3469
3347
|
...query
|
|
@@ -3562,7 +3440,7 @@ var useUpdateWorkerRunScope = (workerRunId, options) => {
|
|
|
3562
3440
|
workerRunId,
|
|
3563
3441
|
requestOptions
|
|
3564
3442
|
);
|
|
3565
|
-
const query =
|
|
3443
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
3566
3444
|
return {
|
|
3567
3445
|
swrKey,
|
|
3568
3446
|
...query
|
|
@@ -3587,7 +3465,7 @@ var useCancelWorkerRun = (workerRunId, options) => {
|
|
|
3587
3465
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
3588
3466
|
const swrKey = swrOptions?.swrKey ?? getCancelWorkerRunMutationKey(workerRunId);
|
|
3589
3467
|
const swrFn = getCancelWorkerRunMutationFetcher(workerRunId, requestOptions);
|
|
3590
|
-
const query =
|
|
3468
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
3591
3469
|
return {
|
|
3592
3470
|
swrKey,
|
|
3593
3471
|
...query
|
|
@@ -3664,7 +3542,7 @@ var useWorkerExecuteTool = (id, options) => {
|
|
|
3664
3542
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
3665
3543
|
const swrKey = swrOptions?.swrKey ?? getWorkerExecuteToolMutationKey(id);
|
|
3666
3544
|
const swrFn = getWorkerExecuteToolMutationFetcher(id, requestOptions);
|
|
3667
|
-
const query =
|
|
3545
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
3668
3546
|
return {
|
|
3669
3547
|
swrKey,
|
|
3670
3548
|
...query
|
|
@@ -3691,7 +3569,7 @@ var useCreateWorker = (options) => {
|
|
|
3691
3569
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
3692
3570
|
const swrKey = swrOptions?.swrKey ?? getCreateWorkerMutationKey();
|
|
3693
3571
|
const swrFn = getCreateWorkerMutationFetcher(requestOptions);
|
|
3694
|
-
const query =
|
|
3572
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
3695
3573
|
return {
|
|
3696
3574
|
swrKey,
|
|
3697
3575
|
...query
|
|
@@ -3779,7 +3657,7 @@ var useDeleteWorker = (workerId, options) => {
|
|
|
3779
3657
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
3780
3658
|
const swrKey = swrOptions?.swrKey ?? getDeleteWorkerMutationKey(workerId);
|
|
3781
3659
|
const swrFn = getDeleteWorkerMutationFetcher(workerId, requestOptions);
|
|
3782
|
-
const query =
|
|
3660
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
3783
3661
|
return {
|
|
3784
3662
|
swrKey,
|
|
3785
3663
|
...query
|
|
@@ -3806,7 +3684,7 @@ var useUpdateWorker = (workerId, options) => {
|
|
|
3806
3684
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
3807
3685
|
const swrKey = swrOptions?.swrKey ?? getUpdateWorkerMutationKey(workerId);
|
|
3808
3686
|
const swrFn = getUpdateWorkerMutationFetcher(workerId, requestOptions);
|
|
3809
|
-
const query =
|
|
3687
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
3810
3688
|
return {
|
|
3811
3689
|
swrKey,
|
|
3812
3690
|
...query
|
|
@@ -3858,7 +3736,7 @@ var useUpdateWorkerPrompt = (workerId, options) => {
|
|
|
3858
3736
|
const { swr: swrOptions, request: requestOptions } = options ?? {};
|
|
3859
3737
|
const swrKey = swrOptions?.swrKey ?? getUpdateWorkerPromptMutationKey(workerId);
|
|
3860
3738
|
const swrFn = getUpdateWorkerPromptMutationFetcher(workerId, requestOptions);
|
|
3861
|
-
const query =
|
|
3739
|
+
const query = useSWRMutation14(swrKey, swrFn, swrOptions);
|
|
3862
3740
|
return {
|
|
3863
3741
|
swrKey,
|
|
3864
3742
|
...query
|
|
@@ -4055,17 +3933,6 @@ var EmailReplyResultValue = {
|
|
|
4055
3933
|
sent: true
|
|
4056
3934
|
};
|
|
4057
3935
|
|
|
4058
|
-
// generated/models/experimentalGetOAuthUrlCodeChallengeMethod.ts
|
|
4059
|
-
var ExperimentalGetOAuthUrlCodeChallengeMethod = {
|
|
4060
|
-
s256: "s256"
|
|
4061
|
-
};
|
|
4062
|
-
|
|
4063
|
-
// generated/models/experimentalGetOAuthUrlProvider.ts
|
|
4064
|
-
var ExperimentalGetOAuthUrlProvider = {
|
|
4065
|
-
google: "google",
|
|
4066
|
-
microsoft: "microsoft"
|
|
4067
|
-
};
|
|
4068
|
-
|
|
4069
3936
|
// generated/models/getAnalyticsTimeSeriesGranularity.ts
|
|
4070
3937
|
var GetAnalyticsTimeSeriesGranularity = {
|
|
4071
3938
|
day: "day",
|
|
@@ -4635,6 +4502,6 @@ var VoiceAgentVersionDetailTtsProvider = {
|
|
|
4635
4502
|
"aws-polly": "aws-polly"
|
|
4636
4503
|
};
|
|
4637
4504
|
|
|
4638
|
-
export { AnalyticsTimeSeriesGranularity, AnalyticsTimeSeriesMetric, ApiKeyCreatedRole, ApiKeyRole, AvallonError, CallDetailDirection, CallDirection, ChatHistoryMessagesItemRole, ChatMessageRole, CreateApiKeyBodyEnvironment, CreateApiKeyBodyRole, CreateEmailBodyDirection, CreateInboxBodyProcessorType, CreateVoiceAgentBodyCallProcessorType, CreateVoiceAgentBodyDirection, CreateVoiceAgentBodyLanguage, CreateVoiceAgentBodyLlmModel, CreateVoiceAgentBodySttModel, CreateVoiceAgentBodyTtsModel, CreateVoiceAgentBodyTtsProvider, EmailCreatedDirection, EmailDetailDirection, EmailDirection, EmailReplyResultValue, ExperimentalGetOAuthUrlCodeChallengeMethod, ExperimentalGetOAuthUrlProvider, GetAnalyticsTimeSeriesGranularity, GetAnalyticsTimeSeriesGroupBy, GetAnalyticsTimeSeriesMetric, GetOAuthUrlCodeChallengeMethod, GetOAuthUrlProvider, InboxProcessorType, ListApiKeysIncludeRevoked, ListArtifactsSortBy, ListArtifactsSortOrder, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, ListCasesSortBy, ListCasesSortOrder, ListChatAgentsSortBy, ListChatAgentsSortOrder, ListChatMessagesSortBy, ListChatMessagesSortOrder, ListChatsSortBy, ListChatsSortOrder, ListEmailThreadsSortBy, ListEmailThreadsSortOrder, ListEmailsSortBy, ListEmailsSortOrder, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, ListExtractorsSortBy, ListExtractorsSortOrder, ListExtractsSortBy, ListExtractsSortOrder, ListInboxesSortBy, ListInboxesSortOrder, ListJobsStatusItem, ListToolsSortBy, ListToolsSortOrder, ListVoiceAgentVersionsSortBy, ListVoiceAgentVersionsSortOrder, ListWebhookDeliveriesSortOrder, ListWorkerRunsSortBy, ListWorkerRunsSortOrder, ListWorkerRunsStatus, ListWorkersSortBy, ListWorkersSortOrder, OutboundJobEnvironment, OutboundJobStatus, ProfilePermissionsItem, ProfileRole, ScheduleJobBodyEnvironment, TeamMemberRole, UpdateApiKeyBodyRole, UpdateInboxBodyProcessorType, UpdateMemberRoleBodyRole, UpdateVoiceAgentBodyCallProcessorType, UpdateVoiceAgentModelsBodyLanguage, UpdateVoiceAgentModelsBodyLlmModel, UpdateVoiceAgentModelsBodySttModel, UpdateVoiceAgentModelsBodyTtsModel, UpdateVoiceAgentModelsBodyTtsProvider, VoiceAgentBackgroundSounds, VoiceAgentDirection, VoiceAgentLanguage, VoiceAgentLlmModel, VoiceAgentNoiseCancellation, VoiceAgentSttModel, VoiceAgentTtsModel, VoiceAgentTtsProvider, VoiceAgentVersionDetailBackgroundSounds, VoiceAgentVersionDetailDirection, VoiceAgentVersionDetailLanguage, VoiceAgentVersionDetailLlmModel, VoiceAgentVersionDetailNoiseCancellation, VoiceAgentVersionDetailSttModel, VoiceAgentVersionDetailTtsModel, VoiceAgentVersionDetailTtsProvider, addToolsToVoiceAgent, cancelJob, cancelWorkerRun, checkInboxAvailability, configure, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createChat, createChatAgent, createEmail, createExtractor, createExtractorJob, createExtractorWebhook, createInbox, createInboxWebhook, createTool, createVoiceAgent, createWorker, createWorkerRun, createWorkerWebhook, deleteArtifact, deleteCallFeedback, deleteChatAgent, deleteEmail, deleteExtractor, deleteInbox, deleteTool, deleteToolsFromVoiceAgent, deleteVoiceAgent, deleteWebhook, deleteWorker, executeCode, experimentalGetOAuthUrl, experimentalRefreshToken, experimentalSignIn, experimentalSignUp, generateCodeChallenge, generateCodeVerifier, getAddToolsToVoiceAgentMutationFetcher, getAddToolsToVoiceAgentMutationKey, getAddToolsToVoiceAgentUrl, getAnalyticsTimeSeries, getArtifact, getArtifactMetadataKeys, getArtifactUploadUrl, getCall, getCallAnalytics, getCallEvaluation, getCancelJobMutationFetcher, getCancelJobMutationKey, getCancelJobUrl, getCancelWorkerRunMutationFetcher, getCancelWorkerRunMutationKey, getCancelWorkerRunUrl, getCase, getChat, getChatAgent, getChatAgentPrompt, getCheckInboxAvailabilityKey, getCheckInboxAvailabilityUrl, getConfig, getCreateAgentWebhookMutationFetcher, getCreateAgentWebhookMutationKey, getCreateAgentWebhookUrl, getCreateApiKeyMutationFetcher, getCreateApiKeyMutationKey, getCreateApiKeyUrl, getCreateArtifactMutationFetcher, getCreateArtifactMutationKey, getCreateArtifactUrl, getCreateCallFeedbackMutationFetcher, getCreateCallFeedbackMutationKey, getCreateCallFeedbackUrl, getCreateChatAgentMutationFetcher, getCreateChatAgentMutationKey, getCreateChatAgentUrl, getCreateChatMutationFetcher, getCreateChatMutationKey, getCreateChatUrl, getCreateEmailMutationFetcher, getCreateEmailMutationKey, getCreateEmailUrl, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateInboxMutationFetcher, getCreateInboxMutationKey, getCreateInboxUrl, getCreateInboxWebhookMutationFetcher, getCreateInboxWebhookMutationKey, getCreateInboxWebhookUrl, getCreateToolMutationFetcher, getCreateToolMutationKey, getCreateToolUrl, getCreateVoiceAgentMutationFetcher, getCreateVoiceAgentMutationKey, getCreateVoiceAgentUrl, getCreateWorkerMutationFetcher, getCreateWorkerMutationKey, getCreateWorkerRunMutationFetcher, getCreateWorkerRunMutationKey, getCreateWorkerRunUrl, getCreateWorkerUrl, getCreateWorkerWebhookMutationFetcher, getCreateWorkerWebhookMutationKey, getCreateWorkerWebhookUrl, getDeleteArtifactMutationFetcher, getDeleteArtifactMutationKey, getDeleteArtifactUrl, getDeleteCallFeedbackMutationFetcher, getDeleteCallFeedbackMutationKey, getDeleteCallFeedbackUrl, getDeleteChatAgentMutationFetcher, getDeleteChatAgentMutationKey, getDeleteChatAgentUrl, getDeleteEmailMutationFetcher, getDeleteEmailMutationKey, getDeleteEmailUrl, getDeleteExtractorMutationFetcher, getDeleteExtractorMutationKey, getDeleteExtractorUrl, getDeleteInboxMutationFetcher, getDeleteInboxMutationKey, getDeleteInboxUrl, getDeleteToolMutationFetcher, getDeleteToolMutationKey, getDeleteToolUrl, getDeleteToolsFromVoiceAgentMutationFetcher, getDeleteToolsFromVoiceAgentMutationKey, getDeleteToolsFromVoiceAgentUrl, getDeleteVoiceAgentMutationFetcher, getDeleteVoiceAgentMutationKey, getDeleteVoiceAgentUrl, getDeleteWebhookMutationFetcher, getDeleteWebhookMutationKey, getDeleteWebhookUrl, getDeleteWorkerMutationFetcher, getDeleteWorkerMutationKey, getDeleteWorkerUrl, getEmail, getExecuteCodeMutationFetcher, getExecuteCodeMutationKey, getExecuteCodeUrl, getExperimentalGetOAuthUrlKey, getExperimentalGetOAuthUrlUrl, getExperimentalRefreshTokenMutationFetcher, getExperimentalRefreshTokenMutationKey, getExperimentalRefreshTokenUrl, getExperimentalSignInMutationFetcher, getExperimentalSignInMutationKey, getExperimentalSignInUrl, getExperimentalSignUpMutationFetcher, getExperimentalSignUpMutationKey, getExperimentalSignUpUrl, getExtract, getExtractCitations, getExtractor, getExtractorJob, getGetAnalyticsTimeSeriesKey, getGetAnalyticsTimeSeriesUrl, getGetArtifactKey, getGetArtifactMetadataKeysKey, getGetArtifactMetadataKeysUrl, getGetArtifactUploadUrlMutationFetcher, getGetArtifactUploadUrlMutationKey, getGetArtifactUploadUrlUrl, getGetArtifactUrl, getGetCallAnalyticsKey, getGetCallAnalyticsUrl, getGetCallEvaluationKey, getGetCallEvaluationUrl, getGetCallKey, getGetCallUrl, getGetCaseKey, getGetCaseUrl, getGetChatAgentKey, getGetChatAgentPromptKey, getGetChatAgentPromptUrl, getGetChatAgentUrl, getGetChatKey, getGetChatUrl, getGetEmailKey, getGetEmailUrl, getGetExtractCitationsKey, getGetExtractCitationsUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetPartnerJwksKey, getGetPartnerJwksUrl, getGetProfileKey, getGetProfileUrl, getGetPublicChatAgentKey, getGetPublicChatAgentUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetVoiceAgentKey, getGetVoiceAgentPlaceholdersKey, getGetVoiceAgentPlaceholdersUrl, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, getGetVoiceAgentVersionChangeSummaryKey, getGetVoiceAgentVersionChangeSummaryUrl, getGetVoiceAgentVersionKey, getGetVoiceAgentVersionUrl, getGetWebhookKey, getGetWebhookUrl, getGetWorkerKey, getGetWorkerPromptKey, getGetWorkerPromptUrl, getGetWorkerRunKey, getGetWorkerRunUrl, getGetWorkerUrl, getListAgentWebhooksKey, getListAgentWebhooksUrl, getListApiKeysKey, getListApiKeysUrl, getListArtifactsKey, getListArtifactsUrl, getListCallFeedbackKey, getListCallFeedbackUrl, getListCallsKey, getListCallsUrl, getListCasesKey, getListCasesUrl, getListChatAgentsKey, getListChatAgentsUrl, getListChatMessagesKey, getListChatMessagesUrl, getListChatsKey, getListChatsUrl, getListEmailThreadsKey, getListEmailThreadsUrl, getListEmailsKey, getListEmailsUrl, getListExtractorJobsKey, getListExtractorJobsUrl, getListExtractorsKey, getListExtractorsUrl, getListExtractsKey, getListExtractsUrl, getListInboxWebhooksKey, getListInboxWebhooksUrl, getListInboxesKey, getListInboxesUrl, getListJobsKey, getListJobsUrl, getListTeamMembersKey, getListTeamMembersUrl, getListToolsKey, getListToolsUrl, getListVoiceAgentVersionsKey, getListVoiceAgentVersionsUrl, getListVoiceAgentsKey, getListVoiceAgentsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getListWorkerModelsKey, getListWorkerModelsUrl, getListWorkerRunMessagesKey, getListWorkerRunMessagesUrl, getListWorkerRunsKey, getListWorkerRunsUrl, getListWorkerWebhooksKey, getListWorkerWebhooksUrl, getListWorkersKey, getListWorkersUrl, getOAuthUrl, getPartnerJwks, getPartnerLaunchMutationFetcher, getPartnerLaunchMutationKey, getPartnerLaunchUrl, getPostChatMessageMutationFetcher, getPostChatMessageMutationKey, getPostChatMessageUrl, getProfile, getPublicChatAgent, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRemoveMemberMutationFetcher, getRemoveMemberMutationKey, getRemoveMemberUrl, getReplyToEmailMutationFetcher, getReplyToEmailMutationKey, getReplyToEmailUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSearchCasesKey, getSearchCasesUrl, getSendEmailMutationFetcher, getSendEmailMutationKey, getSendEmailUrl, getSessionToken, getSignInMutationFetcher, getSignInMutationKey, getSignInUrl, getSignUpMutationFetcher, getSignUpMutationKey, getSignUpUrl, getTestWebhookMutationFetcher, getTestWebhookMutationKey, getTestWebhookUrl, getTool, getUpdateApiKeyMutationFetcher, getUpdateApiKeyMutationKey, getUpdateApiKeyUrl, getUpdateArtifactMetadataMutationFetcher, getUpdateArtifactMetadataMutationKey, getUpdateArtifactMetadataUrl, getUpdateCallControlsMutationFetcher, getUpdateCallControlsMutationKey, getUpdateCallControlsUrl, getUpdateChatAgentMutationFetcher, getUpdateChatAgentMutationKey, getUpdateChatAgentPromptMutationFetcher, getUpdateChatAgentPromptMutationKey, getUpdateChatAgentPromptUrl, getUpdateChatAgentUrl, getUpdateExtractorMutationFetcher, getUpdateExtractorMutationKey, getUpdateExtractorUrl, getUpdateInboxMutationFetcher, getUpdateInboxMutationKey, getUpdateInboxUrl, getUpdateMemberRoleMutationFetcher, getUpdateMemberRoleMutationKey, getUpdateMemberRoleUrl, getUpdateToolMutationFetcher, getUpdateToolMutationKey, getUpdateToolUrl, getUpdateVoiceAgentModelsMutationFetcher, getUpdateVoiceAgentModelsMutationKey, getUpdateVoiceAgentModelsUrl, getUpdateVoiceAgentMutationFetcher, getUpdateVoiceAgentMutationKey, getUpdateVoiceAgentPromptMutationFetcher, getUpdateVoiceAgentPromptMutationKey, getUpdateVoiceAgentPromptUrl, getUpdateVoiceAgentUrl, getUpdateWorkerMutationFetcher, getUpdateWorkerMutationKey, getUpdateWorkerPromptMutationFetcher, getUpdateWorkerPromptMutationKey, getUpdateWorkerPromptUrl, getUpdateWorkerRunScopeMutationFetcher, getUpdateWorkerRunScopeMutationKey, getUpdateWorkerRunScopeUrl, getUpdateWorkerUrl, getUploadFileMutationFetcher, getUploadFileMutationKey, getUploadFileUrl, getVoiceAgent, getVoiceAgentPlaceholders, getVoiceAgentPrompt, getVoiceAgentVersion, getVoiceAgentVersionChangeSummary, getWebhook, getWorker, getWorkerExecuteToolMutationFetcher, getWorkerExecuteToolMutationKey, getWorkerExecuteToolUrl, getWorkerGetToolKey, getWorkerGetToolUrl, getWorkerListToolsKey, getWorkerListToolsUrl, getWorkerPrompt, getWorkerRun, listAgentWebhooks, listApiKeys, listArtifacts, listCallFeedback, listCalls, listCases, listChatAgents, listChatMessages, listChats, listEmailThreads, listEmails, listExtractorJobs, listExtractors, listExtracts, listInboxWebhooks, listInboxes, listJobs, listTeamMembers, listTools, listVoiceAgentVersions, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerModels, listWorkerRunMessages, listWorkerRuns, listWorkerWebhooks, listWorkers, partnerLaunch, postChatMessage, refreshToken, removeMember, replyToEmail, revokeApiKey, scheduleJob, searchCases, sendEmail, signIn, signUp, testWebhook, updateApiKey, updateArtifactMetadata, updateCallControls, updateChatAgent, updateChatAgentPrompt, updateExtractor, updateInbox, updateMemberRole, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateVoiceAgentPrompt, updateWorker, updateWorkerPrompt, updateWorkerRunScope, uploadFile, useAddToolsToVoiceAgent, useCancelJob, useCancelWorkerRun, useCheckInboxAvailability, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateChat, useCreateChatAgent, useCreateEmail, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateInbox, useCreateInboxWebhook, useCreateTool, useCreateVoiceAgent, useCreateWorker, useCreateWorkerRun, useCreateWorkerWebhook, useDeleteArtifact, useDeleteCallFeedback, useDeleteChatAgent, useDeleteEmail, useDeleteExtractor, useDeleteInbox, useDeleteTool, useDeleteToolsFromVoiceAgent, useDeleteVoiceAgent, useDeleteWebhook, useDeleteWorker, useExecuteCode, useExperimentalGetOAuthUrl, useExperimentalRefreshToken, useExperimentalSignIn, useExperimentalSignUp, useGetAnalyticsTimeSeries, useGetArtifact, useGetArtifactMetadataKeys, useGetArtifactUploadUrl, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetCase, useGetChat, useGetChatAgent, useGetChatAgentPrompt, useGetEmail, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetOAuthUrl, useGetPartnerJwks, useGetProfile, useGetPublicChatAgent, useGetSessionToken, useGetTool, useGetVoiceAgent, useGetVoiceAgentPlaceholders, useGetVoiceAgentPrompt, useGetVoiceAgentVersion, useGetVoiceAgentVersionChangeSummary, useGetWebhook, useGetWorker, useGetWorkerPrompt, useGetWorkerRun, useListAgentWebhooks, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListCases, useListChatAgents, useListChatMessages, useListChats, useListEmailThreads, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListInboxWebhooks, useListInboxes, useListJobs, useListTeamMembers, useListTools, useListVoiceAgentVersions, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerModels, useListWorkerRunMessages, useListWorkerRuns, useListWorkerWebhooks, useListWorkers, usePartnerLaunch, usePostChatMessage, useRefreshToken, useRemoveMember, useReplyToEmail, useRevokeApiKey, useScheduleJob, useSearchCases, useSendEmail, useSignIn, useSignUp, useTestWebhook, useUpdateApiKey, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateChatAgent, useUpdateChatAgentPrompt, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateVoiceAgentPrompt, useUpdateWorker, useUpdateWorkerPrompt, useUpdateWorkerRunScope, useUploadFile, useWorkerExecuteTool, useWorkerGetTool, useWorkerListTools, workerExecuteTool, workerGetTool, workerListTools };
|
|
4505
|
+
export { AnalyticsTimeSeriesGranularity, AnalyticsTimeSeriesMetric, ApiKeyCreatedRole, ApiKeyRole, AvallonError, CallDetailDirection, CallDirection, ChatHistoryMessagesItemRole, ChatMessageRole, CreateApiKeyBodyEnvironment, CreateApiKeyBodyRole, CreateEmailBodyDirection, CreateInboxBodyProcessorType, CreateVoiceAgentBodyCallProcessorType, CreateVoiceAgentBodyDirection, CreateVoiceAgentBodyLanguage, CreateVoiceAgentBodyLlmModel, CreateVoiceAgentBodySttModel, CreateVoiceAgentBodyTtsModel, CreateVoiceAgentBodyTtsProvider, EmailCreatedDirection, EmailDetailDirection, EmailDirection, EmailReplyResultValue, GetAnalyticsTimeSeriesGranularity, GetAnalyticsTimeSeriesGroupBy, GetAnalyticsTimeSeriesMetric, GetOAuthUrlCodeChallengeMethod, GetOAuthUrlProvider, InboxProcessorType, ListApiKeysIncludeRevoked, ListArtifactsSortBy, ListArtifactsSortOrder, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, ListCasesSortBy, ListCasesSortOrder, ListChatAgentsSortBy, ListChatAgentsSortOrder, ListChatMessagesSortBy, ListChatMessagesSortOrder, ListChatsSortBy, ListChatsSortOrder, ListEmailThreadsSortBy, ListEmailThreadsSortOrder, ListEmailsSortBy, ListEmailsSortOrder, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, ListExtractorsSortBy, ListExtractorsSortOrder, ListExtractsSortBy, ListExtractsSortOrder, ListInboxesSortBy, ListInboxesSortOrder, ListJobsStatusItem, ListToolsSortBy, ListToolsSortOrder, ListVoiceAgentVersionsSortBy, ListVoiceAgentVersionsSortOrder, ListWebhookDeliveriesSortOrder, ListWorkerRunsSortBy, ListWorkerRunsSortOrder, ListWorkerRunsStatus, ListWorkersSortBy, ListWorkersSortOrder, OutboundJobEnvironment, OutboundJobStatus, ProfilePermissionsItem, ProfileRole, ScheduleJobBodyEnvironment, TeamMemberRole, UpdateApiKeyBodyRole, UpdateInboxBodyProcessorType, UpdateMemberRoleBodyRole, UpdateVoiceAgentBodyCallProcessorType, UpdateVoiceAgentModelsBodyLanguage, UpdateVoiceAgentModelsBodyLlmModel, UpdateVoiceAgentModelsBodySttModel, UpdateVoiceAgentModelsBodyTtsModel, UpdateVoiceAgentModelsBodyTtsProvider, VoiceAgentBackgroundSounds, VoiceAgentDirection, VoiceAgentLanguage, VoiceAgentLlmModel, VoiceAgentNoiseCancellation, VoiceAgentSttModel, VoiceAgentTtsModel, VoiceAgentTtsProvider, VoiceAgentVersionDetailBackgroundSounds, VoiceAgentVersionDetailDirection, VoiceAgentVersionDetailLanguage, VoiceAgentVersionDetailLlmModel, VoiceAgentVersionDetailNoiseCancellation, VoiceAgentVersionDetailSttModel, VoiceAgentVersionDetailTtsModel, VoiceAgentVersionDetailTtsProvider, addToolsToVoiceAgent, cancelJob, cancelWorkerRun, checkInboxAvailability, configure, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createChat, createChatAgent, createEmail, createExtractor, createExtractorJob, createExtractorWebhook, createInbox, createInboxWebhook, createTool, createVoiceAgent, createWorker, createWorkerRun, createWorkerWebhook, deleteArtifact, deleteCallFeedback, deleteChatAgent, deleteEmail, deleteExtractor, deleteInbox, deleteTool, deleteToolsFromVoiceAgent, deleteVoiceAgent, deleteWebhook, deleteWorker, executeCode, generateCodeChallenge, generateCodeVerifier, getAddToolsToVoiceAgentMutationFetcher, getAddToolsToVoiceAgentMutationKey, getAddToolsToVoiceAgentUrl, getAnalyticsTimeSeries, getArtifact, getArtifactMetadataKeys, getArtifactUploadUrl, getCall, getCallAnalytics, getCallEvaluation, getCancelJobMutationFetcher, getCancelJobMutationKey, getCancelJobUrl, getCancelWorkerRunMutationFetcher, getCancelWorkerRunMutationKey, getCancelWorkerRunUrl, getCase, getChat, getChatAgent, getChatAgentPrompt, getCheckInboxAvailabilityKey, getCheckInboxAvailabilityUrl, getConfig, getCreateAgentWebhookMutationFetcher, getCreateAgentWebhookMutationKey, getCreateAgentWebhookUrl, getCreateApiKeyMutationFetcher, getCreateApiKeyMutationKey, getCreateApiKeyUrl, getCreateArtifactMutationFetcher, getCreateArtifactMutationKey, getCreateArtifactUrl, getCreateCallFeedbackMutationFetcher, getCreateCallFeedbackMutationKey, getCreateCallFeedbackUrl, getCreateChatAgentMutationFetcher, getCreateChatAgentMutationKey, getCreateChatAgentUrl, getCreateChatMutationFetcher, getCreateChatMutationKey, getCreateChatUrl, getCreateEmailMutationFetcher, getCreateEmailMutationKey, getCreateEmailUrl, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateInboxMutationFetcher, getCreateInboxMutationKey, getCreateInboxUrl, getCreateInboxWebhookMutationFetcher, getCreateInboxWebhookMutationKey, getCreateInboxWebhookUrl, getCreateToolMutationFetcher, getCreateToolMutationKey, getCreateToolUrl, getCreateVoiceAgentMutationFetcher, getCreateVoiceAgentMutationKey, getCreateVoiceAgentUrl, getCreateWorkerMutationFetcher, getCreateWorkerMutationKey, getCreateWorkerRunMutationFetcher, getCreateWorkerRunMutationKey, getCreateWorkerRunUrl, getCreateWorkerUrl, getCreateWorkerWebhookMutationFetcher, getCreateWorkerWebhookMutationKey, getCreateWorkerWebhookUrl, getDeleteArtifactMutationFetcher, getDeleteArtifactMutationKey, getDeleteArtifactUrl, getDeleteCallFeedbackMutationFetcher, getDeleteCallFeedbackMutationKey, getDeleteCallFeedbackUrl, getDeleteChatAgentMutationFetcher, getDeleteChatAgentMutationKey, getDeleteChatAgentUrl, getDeleteEmailMutationFetcher, getDeleteEmailMutationKey, getDeleteEmailUrl, getDeleteExtractorMutationFetcher, getDeleteExtractorMutationKey, getDeleteExtractorUrl, getDeleteInboxMutationFetcher, getDeleteInboxMutationKey, getDeleteInboxUrl, 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, getGetArtifactUploadUrlMutationFetcher, getGetArtifactUploadUrlMutationKey, getGetArtifactUploadUrlUrl, getGetArtifactUrl, getGetCallAnalyticsKey, getGetCallAnalyticsUrl, getGetCallEvaluationKey, getGetCallEvaluationUrl, getGetCallKey, getGetCallUrl, getGetCaseKey, getGetCaseUrl, getGetChatAgentKey, getGetChatAgentPromptKey, getGetChatAgentPromptUrl, getGetChatAgentUrl, getGetChatKey, getGetChatUrl, getGetEmailKey, getGetEmailUrl, getGetExtractCitationsKey, getGetExtractCitationsUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetPartnerJwksKey, getGetPartnerJwksUrl, getGetProfileKey, getGetProfileUrl, getGetPublicChatAgentKey, getGetPublicChatAgentUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetVoiceAgentKey, getGetVoiceAgentPlaceholdersKey, getGetVoiceAgentPlaceholdersUrl, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, getGetVoiceAgentVersionChangeSummaryKey, getGetVoiceAgentVersionChangeSummaryUrl, getGetVoiceAgentVersionKey, getGetVoiceAgentVersionUrl, getGetWebhookKey, getGetWebhookUrl, getGetWorkerKey, getGetWorkerPromptKey, getGetWorkerPromptUrl, getGetWorkerRunKey, getGetWorkerRunUrl, getGetWorkerUrl, getListAgentWebhooksKey, getListAgentWebhooksUrl, getListApiKeysKey, getListApiKeysUrl, getListArtifactsKey, getListArtifactsUrl, getListCallFeedbackKey, getListCallFeedbackUrl, getListCallsKey, getListCallsUrl, getListCasesKey, getListCasesUrl, getListChatAgentsKey, getListChatAgentsUrl, getListChatMessagesKey, getListChatMessagesUrl, getListChatsKey, getListChatsUrl, getListEmailThreadsKey, getListEmailThreadsUrl, getListEmailsKey, getListEmailsUrl, getListExtractorJobsKey, getListExtractorJobsUrl, getListExtractorsKey, getListExtractorsUrl, getListExtractsKey, getListExtractsUrl, getListInboxWebhooksKey, getListInboxWebhooksUrl, getListInboxesKey, getListInboxesUrl, getListJobsKey, getListJobsUrl, getListTeamMembersKey, getListTeamMembersUrl, getListToolsKey, getListToolsUrl, getListVoiceAgentVersionsKey, getListVoiceAgentVersionsUrl, getListVoiceAgentsKey, getListVoiceAgentsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getListWorkerModelsKey, getListWorkerModelsUrl, getListWorkerRunMessagesKey, getListWorkerRunMessagesUrl, getListWorkerRunsKey, getListWorkerRunsUrl, getListWorkerWebhooksKey, getListWorkerWebhooksUrl, getListWorkersKey, getListWorkersUrl, getOAuthUrl, getPartnerJwks, getPartnerLaunchMutationFetcher, getPartnerLaunchMutationKey, getPartnerLaunchUrl, getPostChatMessageMutationFetcher, getPostChatMessageMutationKey, getPostChatMessageUrl, getProfile, getPublicChatAgent, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRemoveMemberMutationFetcher, getRemoveMemberMutationKey, getRemoveMemberUrl, getReplyToEmailMutationFetcher, getReplyToEmailMutationKey, getReplyToEmailUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSearchCasesKey, getSearchCasesUrl, getSendEmailMutationFetcher, getSendEmailMutationKey, getSendEmailUrl, getSessionToken, getSignInMutationFetcher, getSignInMutationKey, getSignInUrl, getSignUpMutationFetcher, getSignUpMutationKey, getSignUpUrl, getTestWebhookMutationFetcher, getTestWebhookMutationKey, getTestWebhookUrl, getTool, getUpdateApiKeyMutationFetcher, getUpdateApiKeyMutationKey, getUpdateApiKeyUrl, getUpdateArtifactMetadataMutationFetcher, getUpdateArtifactMetadataMutationKey, getUpdateArtifactMetadataUrl, getUpdateCallControlsMutationFetcher, getUpdateCallControlsMutationKey, getUpdateCallControlsUrl, getUpdateChatAgentMutationFetcher, getUpdateChatAgentMutationKey, getUpdateChatAgentPromptMutationFetcher, getUpdateChatAgentPromptMutationKey, getUpdateChatAgentPromptUrl, getUpdateChatAgentUrl, getUpdateExtractorMutationFetcher, getUpdateExtractorMutationKey, getUpdateExtractorUrl, getUpdateInboxMutationFetcher, getUpdateInboxMutationKey, getUpdateInboxUrl, getUpdateMemberRoleMutationFetcher, getUpdateMemberRoleMutationKey, getUpdateMemberRoleUrl, getUpdateToolMutationFetcher, getUpdateToolMutationKey, getUpdateToolUrl, getUpdateVoiceAgentModelsMutationFetcher, getUpdateVoiceAgentModelsMutationKey, getUpdateVoiceAgentModelsUrl, getUpdateVoiceAgentMutationFetcher, getUpdateVoiceAgentMutationKey, getUpdateVoiceAgentPromptMutationFetcher, getUpdateVoiceAgentPromptMutationKey, getUpdateVoiceAgentPromptUrl, getUpdateVoiceAgentUrl, getUpdateWorkerMutationFetcher, getUpdateWorkerMutationKey, getUpdateWorkerPromptMutationFetcher, getUpdateWorkerPromptMutationKey, getUpdateWorkerPromptUrl, getUpdateWorkerRunScopeMutationFetcher, getUpdateWorkerRunScopeMutationKey, getUpdateWorkerRunScopeUrl, getUpdateWorkerUrl, getUploadFileMutationFetcher, getUploadFileMutationKey, getUploadFileUrl, getVoiceAgent, getVoiceAgentPlaceholders, getVoiceAgentPrompt, getVoiceAgentVersion, getVoiceAgentVersionChangeSummary, getWebhook, getWorker, getWorkerExecuteToolMutationFetcher, getWorkerExecuteToolMutationKey, getWorkerExecuteToolUrl, getWorkerGetToolKey, getWorkerGetToolUrl, getWorkerListToolsKey, getWorkerListToolsUrl, getWorkerPrompt, getWorkerRun, listAgentWebhooks, listApiKeys, listArtifacts, listCallFeedback, listCalls, listCases, listChatAgents, listChatMessages, listChats, listEmailThreads, listEmails, listExtractorJobs, listExtractors, listExtracts, listInboxWebhooks, listInboxes, listJobs, listTeamMembers, listTools, listVoiceAgentVersions, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerModels, listWorkerRunMessages, listWorkerRuns, listWorkerWebhooks, listWorkers, partnerLaunch, postChatMessage, refreshToken, removeMember, replyToEmail, revokeApiKey, scheduleJob, searchCases, sendEmail, signIn, signUp, testWebhook, updateApiKey, updateArtifactMetadata, updateCallControls, updateChatAgent, updateChatAgentPrompt, updateExtractor, updateInbox, updateMemberRole, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateVoiceAgentPrompt, updateWorker, updateWorkerPrompt, updateWorkerRunScope, uploadFile, useAddToolsToVoiceAgent, useCancelJob, useCancelWorkerRun, useCheckInboxAvailability, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateChat, useCreateChatAgent, useCreateEmail, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateInbox, useCreateInboxWebhook, useCreateTool, useCreateVoiceAgent, useCreateWorker, useCreateWorkerRun, useCreateWorkerWebhook, useDeleteArtifact, useDeleteCallFeedback, useDeleteChatAgent, useDeleteEmail, useDeleteExtractor, useDeleteInbox, useDeleteTool, useDeleteToolsFromVoiceAgent, useDeleteVoiceAgent, useDeleteWebhook, useDeleteWorker, useExecuteCode, useGetAnalyticsTimeSeries, useGetArtifact, useGetArtifactMetadataKeys, useGetArtifactUploadUrl, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetCase, useGetChat, useGetChatAgent, useGetChatAgentPrompt, useGetEmail, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetOAuthUrl, useGetPartnerJwks, useGetProfile, useGetPublicChatAgent, useGetSessionToken, useGetTool, useGetVoiceAgent, useGetVoiceAgentPlaceholders, useGetVoiceAgentPrompt, useGetVoiceAgentVersion, useGetVoiceAgentVersionChangeSummary, useGetWebhook, useGetWorker, useGetWorkerPrompt, useGetWorkerRun, useListAgentWebhooks, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListCases, useListChatAgents, useListChatMessages, useListChats, useListEmailThreads, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListInboxWebhooks, useListInboxes, useListJobs, useListTeamMembers, useListTools, useListVoiceAgentVersions, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerModels, useListWorkerRunMessages, useListWorkerRuns, useListWorkerWebhooks, useListWorkers, usePartnerLaunch, usePostChatMessage, useRefreshToken, useRemoveMember, useReplyToEmail, useRevokeApiKey, useScheduleJob, useSearchCases, useSendEmail, useSignIn, useSignUp, useTestWebhook, useUpdateApiKey, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateChatAgent, useUpdateChatAgentPrompt, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateVoiceAgentPrompt, useUpdateWorker, useUpdateWorkerPrompt, useUpdateWorkerRunScope, useUploadFile, useWorkerExecuteTool, useWorkerGetTool, useWorkerListTools, workerExecuteTool, workerGetTool, workerListTools };
|
|
4639
4506
|
//# sourceMappingURL=index.js.map
|
|
4640
4507
|
//# sourceMappingURL=index.js.map
|