@avallon-labs/sdk 23.6.0-staging.521 → 23.7.0-staging.522
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 +274 -164
- package/dist/index.js +51 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2742,6 +2742,41 @@ interface WorkerRun {
|
|
|
2742
2742
|
|
|
2743
2743
|
type GetWorkerRunResponse = WorkerRun;
|
|
2744
2744
|
|
|
2745
|
+
/**
|
|
2746
|
+
* Generated by orval v8.1.0 🍺
|
|
2747
|
+
* Do not edit manually.
|
|
2748
|
+
* Avallon API
|
|
2749
|
+
* OpenAPI spec version: 1.0.0
|
|
2750
|
+
*/
|
|
2751
|
+
type WorkerToolSchema = {
|
|
2752
|
+
[key: string]: unknown;
|
|
2753
|
+
};
|
|
2754
|
+
|
|
2755
|
+
/**
|
|
2756
|
+
* Generated by orval v8.1.0 🍺
|
|
2757
|
+
* Do not edit manually.
|
|
2758
|
+
* Avallon API
|
|
2759
|
+
* OpenAPI spec version: 1.0.0
|
|
2760
|
+
*/
|
|
2761
|
+
|
|
2762
|
+
interface WorkerTool {
|
|
2763
|
+
id: string;
|
|
2764
|
+
name: string;
|
|
2765
|
+
description: string;
|
|
2766
|
+
schema: WorkerToolSchema;
|
|
2767
|
+
}
|
|
2768
|
+
|
|
2769
|
+
/**
|
|
2770
|
+
* Generated by orval v8.1.0 🍺
|
|
2771
|
+
* Do not edit manually.
|
|
2772
|
+
* Avallon API
|
|
2773
|
+
* OpenAPI spec version: 1.0.0
|
|
2774
|
+
*/
|
|
2775
|
+
|
|
2776
|
+
interface GetWorkerToolResponse {
|
|
2777
|
+
tool: WorkerTool;
|
|
2778
|
+
}
|
|
2779
|
+
|
|
2745
2780
|
/**
|
|
2746
2781
|
* Generated by orval v8.1.0 🍺
|
|
2747
2782
|
* Do not edit manually.
|
|
@@ -4908,6 +4943,29 @@ interface WorkerRunMessage {
|
|
|
4908
4943
|
|
|
4909
4944
|
type WorkerRunMessageList = WorkerRunMessage[];
|
|
4910
4945
|
|
|
4946
|
+
/**
|
|
4947
|
+
* Generated by orval v8.1.0 🍺
|
|
4948
|
+
* Do not edit manually.
|
|
4949
|
+
* Avallon API
|
|
4950
|
+
* OpenAPI spec version: 1.0.0
|
|
4951
|
+
*/
|
|
4952
|
+
interface WorkerToolSummary {
|
|
4953
|
+
id: string;
|
|
4954
|
+
name: string;
|
|
4955
|
+
description: string;
|
|
4956
|
+
}
|
|
4957
|
+
|
|
4958
|
+
/**
|
|
4959
|
+
* Generated by orval v8.1.0 🍺
|
|
4960
|
+
* Do not edit manually.
|
|
4961
|
+
* Avallon API
|
|
4962
|
+
* OpenAPI spec version: 1.0.0
|
|
4963
|
+
*/
|
|
4964
|
+
|
|
4965
|
+
interface WorkerToolList {
|
|
4966
|
+
tools: WorkerToolSummary[];
|
|
4967
|
+
}
|
|
4968
|
+
|
|
4911
4969
|
/**
|
|
4912
4970
|
* Generated by orval v8.1.0 🍺
|
|
4913
4971
|
* Do not edit manually.
|
|
@@ -4917,7 +4975,7 @@ type WorkerRunMessageList = WorkerRunMessage[];
|
|
|
4917
4975
|
|
|
4918
4976
|
type WorkerWebhookList = Webhook[];
|
|
4919
4977
|
|
|
4920
|
-
type SecondParameter$
|
|
4978
|
+
type SecondParameter$m<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
4921
4979
|
/**
|
|
4922
4980
|
* List all API keys for your tenant.
|
|
4923
4981
|
|
|
@@ -4938,7 +4996,7 @@ declare const useListApiKeys: <TError = ErrorType<ErrorResponse>>(params?: ListA
|
|
|
4938
4996
|
swrKey?: Key;
|
|
4939
4997
|
enabled?: boolean;
|
|
4940
4998
|
};
|
|
4941
|
-
request?: SecondParameter$
|
|
4999
|
+
request?: SecondParameter$m<typeof customFetch>;
|
|
4942
5000
|
}) => {
|
|
4943
5001
|
data: ApiKeyList | undefined;
|
|
4944
5002
|
error: TError | undefined;
|
|
@@ -4957,7 +5015,7 @@ Keys are scoped to an environment (`test` or `live`) and optionally accept an ex
|
|
|
4957
5015
|
*/
|
|
4958
5016
|
declare const getCreateApiKeyUrl: () => string;
|
|
4959
5017
|
declare const createApiKey: (createApiKeyBody: CreateApiKeyBody, options?: RequestInit) => Promise<ApiKeyCreated>;
|
|
4960
|
-
declare const getCreateApiKeyMutationFetcher: (options?: SecondParameter$
|
|
5018
|
+
declare const getCreateApiKeyMutationFetcher: (options?: SecondParameter$m<typeof customFetch>) => (_: Key, { arg }: {
|
|
4961
5019
|
arg: CreateApiKeyBody;
|
|
4962
5020
|
}) => Promise<ApiKeyCreated>;
|
|
4963
5021
|
declare const getCreateApiKeyMutationKey: () => readonly ["/platform/api-keys"];
|
|
@@ -4969,7 +5027,7 @@ declare const useCreateApiKey: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
4969
5027
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createApiKey>>, TError, Key, CreateApiKeyBody, Awaited<ReturnType<typeof createApiKey>>> & {
|
|
4970
5028
|
swrKey?: string;
|
|
4971
5029
|
};
|
|
4972
|
-
request?: SecondParameter$
|
|
5030
|
+
request?: SecondParameter$m<typeof customFetch>;
|
|
4973
5031
|
}) => {
|
|
4974
5032
|
isMutating: boolean;
|
|
4975
5033
|
trigger: swr_mutation.TriggerWithArgs<ApiKeyCreated, TError, string | readonly ["/platform/api-keys"], CreateApiKeyBody>;
|
|
@@ -4988,7 +5046,7 @@ Returns 409 if the key is already revoked, 404 if the key does not exist.
|
|
|
4988
5046
|
*/
|
|
4989
5047
|
declare const getRevokeApiKeyUrl: (id: string) => string;
|
|
4990
5048
|
declare const revokeApiKey: (id: string, options?: RequestInit) => Promise<ConfirmationResponse>;
|
|
4991
|
-
declare const getRevokeApiKeyMutationFetcher: (id: string, options?: SecondParameter$
|
|
5049
|
+
declare const getRevokeApiKeyMutationFetcher: (id: string, options?: SecondParameter$m<typeof customFetch>) => (_: Key, __: {
|
|
4992
5050
|
arg: Arguments;
|
|
4993
5051
|
}) => Promise<ConfirmationResponse>;
|
|
4994
5052
|
declare const getRevokeApiKeyMutationKey: (id: string) => readonly [`/platform/api-keys/${string}/revoke`];
|
|
@@ -5000,7 +5058,7 @@ declare const useRevokeApiKey: <TError = ErrorType<ErrorResponse>>(id: string, o
|
|
|
5000
5058
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof revokeApiKey>>, TError, Key, Arguments, Awaited<ReturnType<typeof revokeApiKey>>> & {
|
|
5001
5059
|
swrKey?: string;
|
|
5002
5060
|
};
|
|
5003
|
-
request?: SecondParameter$
|
|
5061
|
+
request?: SecondParameter$m<typeof customFetch>;
|
|
5004
5062
|
}) => {
|
|
5005
5063
|
isMutating: boolean;
|
|
5006
5064
|
trigger: swr_mutation.TriggerWithOptionsArgs<ConfirmationResponse, TError, string | readonly [`/platform/api-keys/${string}/revoke`], Arguments>;
|
|
@@ -5010,7 +5068,7 @@ declare const useRevokeApiKey: <TError = ErrorType<ErrorResponse>>(id: string, o
|
|
|
5010
5068
|
swrKey: string | readonly [`/platform/api-keys/${string}/revoke`];
|
|
5011
5069
|
};
|
|
5012
5070
|
|
|
5013
|
-
type SecondParameter$
|
|
5071
|
+
type SecondParameter$l<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
5014
5072
|
/**
|
|
5015
5073
|
* Upload a document as a base64-encoded artifact for processing.
|
|
5016
5074
|
|
|
@@ -5026,7 +5084,7 @@ Maximum file size is approximately 6.75MB (base64 encoded). The API Gateway has
|
|
|
5026
5084
|
*/
|
|
5027
5085
|
declare const getCreateArtifactUrl: () => string;
|
|
5028
5086
|
declare const createArtifact: (createArtifactBody: CreateArtifactBody, options?: RequestInit) => Promise<ArtifactCreated>;
|
|
5029
|
-
declare const getCreateArtifactMutationFetcher: (options?: SecondParameter$
|
|
5087
|
+
declare const getCreateArtifactMutationFetcher: (options?: SecondParameter$l<typeof customFetch>) => (_: Key, { arg }: {
|
|
5030
5088
|
arg: CreateArtifactBody;
|
|
5031
5089
|
}) => Promise<ArtifactCreated>;
|
|
5032
5090
|
declare const getCreateArtifactMutationKey: () => readonly ["/v1/artifacts"];
|
|
@@ -5038,7 +5096,7 @@ declare const useCreateArtifact: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
5038
5096
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createArtifact>>, TError, Key, CreateArtifactBody, Awaited<ReturnType<typeof createArtifact>>> & {
|
|
5039
5097
|
swrKey?: string;
|
|
5040
5098
|
};
|
|
5041
|
-
request?: SecondParameter$
|
|
5099
|
+
request?: SecondParameter$l<typeof customFetch>;
|
|
5042
5100
|
}) => {
|
|
5043
5101
|
isMutating: boolean;
|
|
5044
5102
|
trigger: swr_mutation.TriggerWithArgs<ArtifactCreated, TError, string | readonly ["/v1/artifacts"], CreateArtifactBody>;
|
|
@@ -5071,7 +5129,7 @@ declare const useListArtifacts: <TError = ErrorType<ErrorResponse>>(params?: Lis
|
|
|
5071
5129
|
swrKey?: Key;
|
|
5072
5130
|
enabled?: boolean;
|
|
5073
5131
|
};
|
|
5074
|
-
request?: SecondParameter$
|
|
5132
|
+
request?: SecondParameter$l<typeof customFetch>;
|
|
5075
5133
|
}) => {
|
|
5076
5134
|
data: ArtifactList | undefined;
|
|
5077
5135
|
error: TError | undefined;
|
|
@@ -5096,7 +5154,7 @@ declare const useGetArtifact: <TError = ErrorType<ErrorResponse>>(id: string, op
|
|
|
5096
5154
|
swrKey?: Key;
|
|
5097
5155
|
enabled?: boolean;
|
|
5098
5156
|
};
|
|
5099
|
-
request?: SecondParameter$
|
|
5157
|
+
request?: SecondParameter$l<typeof customFetch>;
|
|
5100
5158
|
}) => {
|
|
5101
5159
|
data: ArtifactDetail | undefined;
|
|
5102
5160
|
error: TError | undefined;
|
|
@@ -5121,7 +5179,7 @@ declare const useGetArtifactMetadataKeys: <TError = ErrorType<ErrorResponse>>(pa
|
|
|
5121
5179
|
swrKey?: Key;
|
|
5122
5180
|
enabled?: boolean;
|
|
5123
5181
|
};
|
|
5124
|
-
request?: SecondParameter$
|
|
5182
|
+
request?: SecondParameter$l<typeof customFetch>;
|
|
5125
5183
|
}) => {
|
|
5126
5184
|
data: ArtifactMetadataKeys | undefined;
|
|
5127
5185
|
error: TError | undefined;
|
|
@@ -5136,7 +5194,7 @@ declare const useGetArtifactMetadataKeys: <TError = ErrorType<ErrorResponse>>(pa
|
|
|
5136
5194
|
*/
|
|
5137
5195
|
declare const getGetArtifactUploadUrlUrl: () => string;
|
|
5138
5196
|
declare const getArtifactUploadUrl: (getArtifactUploadUrlBody: GetArtifactUploadUrlBody, options?: RequestInit) => Promise<GetArtifactUploadUrl200>;
|
|
5139
|
-
declare const getGetArtifactUploadUrlMutationFetcher: (options?: SecondParameter$
|
|
5197
|
+
declare const getGetArtifactUploadUrlMutationFetcher: (options?: SecondParameter$l<typeof customFetch>) => (_: Key, { arg }: {
|
|
5140
5198
|
arg: GetArtifactUploadUrlBody;
|
|
5141
5199
|
}) => Promise<GetArtifactUploadUrl200>;
|
|
5142
5200
|
declare const getGetArtifactUploadUrlMutationKey: () => readonly ["/v1/artifacts/get-upload-url"];
|
|
@@ -5148,7 +5206,7 @@ declare const useGetArtifactUploadUrl: <TError = ErrorType<ErrorResponse>>(optio
|
|
|
5148
5206
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof getArtifactUploadUrl>>, TError, Key, GetArtifactUploadUrlBody, Awaited<ReturnType<typeof getArtifactUploadUrl>>> & {
|
|
5149
5207
|
swrKey?: string;
|
|
5150
5208
|
};
|
|
5151
|
-
request?: SecondParameter$
|
|
5209
|
+
request?: SecondParameter$l<typeof customFetch>;
|
|
5152
5210
|
}) => {
|
|
5153
5211
|
isMutating: boolean;
|
|
5154
5212
|
trigger: swr_mutation.TriggerWithArgs<GetArtifactUploadUrl200, TError, string | readonly ["/v1/artifacts/get-upload-url"], GetArtifactUploadUrlBody>;
|
|
@@ -5163,7 +5221,7 @@ declare const useGetArtifactUploadUrl: <TError = ErrorType<ErrorResponse>>(optio
|
|
|
5163
5221
|
*/
|
|
5164
5222
|
declare const getUpdateArtifactMetadataUrl: (id: string) => string;
|
|
5165
5223
|
declare const updateArtifactMetadata: (id: string, updateArtifactMetadataBody: UpdateArtifactMetadataBody, options?: RequestInit) => Promise<ArtifactDetail>;
|
|
5166
|
-
declare const getUpdateArtifactMetadataMutationFetcher: (id: string, options?: SecondParameter$
|
|
5224
|
+
declare const getUpdateArtifactMetadataMutationFetcher: (id: string, options?: SecondParameter$l<typeof customFetch>) => (_: Key, { arg }: {
|
|
5167
5225
|
arg: UpdateArtifactMetadataBody;
|
|
5168
5226
|
}) => Promise<ArtifactDetail>;
|
|
5169
5227
|
declare const getUpdateArtifactMetadataMutationKey: (id: string) => readonly [`/v1/artifacts/${string}/metadata`];
|
|
@@ -5175,7 +5233,7 @@ declare const useUpdateArtifactMetadata: <TError = ErrorType<ErrorResponse>>(id:
|
|
|
5175
5233
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof updateArtifactMetadata>>, TError, Key, UpdateArtifactMetadataBody, Awaited<ReturnType<typeof updateArtifactMetadata>>> & {
|
|
5176
5234
|
swrKey?: string;
|
|
5177
5235
|
};
|
|
5178
|
-
request?: SecondParameter$
|
|
5236
|
+
request?: SecondParameter$l<typeof customFetch>;
|
|
5179
5237
|
}) => {
|
|
5180
5238
|
isMutating: boolean;
|
|
5181
5239
|
trigger: swr_mutation.TriggerWithArgs<ArtifactDetail, TError, string | readonly [`/v1/artifacts/${string}/metadata`], UpdateArtifactMetadataBody>;
|
|
@@ -5192,7 +5250,7 @@ This endpoint returns an upload id that can be used to find the created artifact
|
|
|
5192
5250
|
*/
|
|
5193
5251
|
declare const getUploadFileUrl: () => string;
|
|
5194
5252
|
declare const uploadFile: (uploadFileBody: UploadFileBody, options?: RequestInit) => Promise<UploadFileResponse>;
|
|
5195
|
-
declare const getUploadFileMutationFetcher: (options?: SecondParameter$
|
|
5253
|
+
declare const getUploadFileMutationFetcher: (options?: SecondParameter$l<typeof customFetch>) => (_: Key, { arg }: {
|
|
5196
5254
|
arg: UploadFileBody;
|
|
5197
5255
|
}) => Promise<UploadFileResponse>;
|
|
5198
5256
|
declare const getUploadFileMutationKey: () => readonly ["/v1/upload-file"];
|
|
@@ -5204,7 +5262,7 @@ declare const useUploadFile: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
5204
5262
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof uploadFile>>, TError, Key, UploadFileBody, Awaited<ReturnType<typeof uploadFile>>> & {
|
|
5205
5263
|
swrKey?: string;
|
|
5206
5264
|
};
|
|
5207
|
-
request?: SecondParameter$
|
|
5265
|
+
request?: SecondParameter$l<typeof customFetch>;
|
|
5208
5266
|
}) => {
|
|
5209
5267
|
isMutating: boolean;
|
|
5210
5268
|
trigger: swr_mutation.TriggerWithArgs<UploadFileResponse, TError, string | readonly ["/v1/upload-file"], UploadFileBody>;
|
|
@@ -5214,14 +5272,14 @@ declare const useUploadFile: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
5214
5272
|
swrKey: string | readonly ["/v1/upload-file"];
|
|
5215
5273
|
};
|
|
5216
5274
|
|
|
5217
|
-
type SecondParameter$
|
|
5275
|
+
type SecondParameter$k<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
5218
5276
|
/**
|
|
5219
5277
|
* Create a new user account with email and password.
|
|
5220
5278
|
* @summary Sign up
|
|
5221
5279
|
*/
|
|
5222
5280
|
declare const getSignUpUrl: () => string;
|
|
5223
5281
|
declare const signUp: (signUpBody: SignUpBody, options?: RequestInit) => Promise<EmptyResponse>;
|
|
5224
|
-
declare const getSignUpMutationFetcher: (options?: SecondParameter$
|
|
5282
|
+
declare const getSignUpMutationFetcher: (options?: SecondParameter$k<typeof customFetchNoAuth>) => (_: Key, { arg }: {
|
|
5225
5283
|
arg: SignUpBody;
|
|
5226
5284
|
}) => Promise<EmptyResponse>;
|
|
5227
5285
|
declare const getSignUpMutationKey: () => readonly ["/v1/auth/sign-up"];
|
|
@@ -5233,7 +5291,7 @@ declare const useSignUp: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
5233
5291
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof signUp>>, TError, Key, SignUpBody, Awaited<ReturnType<typeof signUp>>> & {
|
|
5234
5292
|
swrKey?: string;
|
|
5235
5293
|
};
|
|
5236
|
-
request?: SecondParameter$
|
|
5294
|
+
request?: SecondParameter$k<typeof customFetchNoAuth>;
|
|
5237
5295
|
}) => {
|
|
5238
5296
|
isMutating: boolean;
|
|
5239
5297
|
trigger: swr_mutation.TriggerWithArgs<EmptyResponse, TError, string | readonly ["/v1/auth/sign-up"], SignUpBody>;
|
|
@@ -5252,7 +5310,7 @@ declare const useSignUp: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
5252
5310
|
*/
|
|
5253
5311
|
declare const getSignInUrl: () => string;
|
|
5254
5312
|
declare const signIn: (signInBody: SignInBody, options?: RequestInit) => Promise<AuthTokens>;
|
|
5255
|
-
declare const getSignInMutationFetcher: (options?: SecondParameter$
|
|
5313
|
+
declare const getSignInMutationFetcher: (options?: SecondParameter$k<typeof customFetchNoAuth>) => (_: Key, { arg }: {
|
|
5256
5314
|
arg: SignInBody;
|
|
5257
5315
|
}) => Promise<AuthTokens>;
|
|
5258
5316
|
declare const getSignInMutationKey: () => readonly ["/v1/auth/sign-in"];
|
|
@@ -5264,7 +5322,7 @@ declare const useSignIn: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
5264
5322
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof signIn>>, TError, Key, SignInBody, Awaited<ReturnType<typeof signIn>>> & {
|
|
5265
5323
|
swrKey?: string;
|
|
5266
5324
|
};
|
|
5267
|
-
request?: SecondParameter$
|
|
5325
|
+
request?: SecondParameter$k<typeof customFetchNoAuth>;
|
|
5268
5326
|
}) => {
|
|
5269
5327
|
isMutating: boolean;
|
|
5270
5328
|
trigger: swr_mutation.TriggerWithArgs<AuthTokens, TError, string | readonly ["/v1/auth/sign-in"], SignInBody>;
|
|
@@ -5279,7 +5337,7 @@ declare const useSignIn: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
5279
5337
|
*/
|
|
5280
5338
|
declare const getRefreshTokenUrl: () => string;
|
|
5281
5339
|
declare const refreshToken: (refreshTokenBody: RefreshTokenBody, options?: RequestInit) => Promise<AuthTokens>;
|
|
5282
|
-
declare const getRefreshTokenMutationFetcher: (options?: SecondParameter$
|
|
5340
|
+
declare const getRefreshTokenMutationFetcher: (options?: SecondParameter$k<typeof customFetchNoAuth>) => (_: Key, { arg }: {
|
|
5283
5341
|
arg: RefreshTokenBody;
|
|
5284
5342
|
}) => Promise<AuthTokens>;
|
|
5285
5343
|
declare const getRefreshTokenMutationKey: () => readonly ["/v1/auth/refresh-token"];
|
|
@@ -5291,7 +5349,7 @@ declare const useRefreshToken: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
5291
5349
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof refreshToken>>, TError, Key, RefreshTokenBody, Awaited<ReturnType<typeof refreshToken>>> & {
|
|
5292
5350
|
swrKey?: string;
|
|
5293
5351
|
};
|
|
5294
|
-
request?: SecondParameter$
|
|
5352
|
+
request?: SecondParameter$k<typeof customFetchNoAuth>;
|
|
5295
5353
|
}) => {
|
|
5296
5354
|
isMutating: boolean;
|
|
5297
5355
|
trigger: swr_mutation.TriggerWithArgs<AuthTokens, TError, string | readonly ["/v1/auth/refresh-token"], RefreshTokenBody>;
|
|
@@ -5316,7 +5374,7 @@ declare const useGetOAuthUrl: <TError = ErrorType<ErrorResponse>>(params: GetOAu
|
|
|
5316
5374
|
swrKey?: Key;
|
|
5317
5375
|
enabled?: boolean;
|
|
5318
5376
|
};
|
|
5319
|
-
request?: SecondParameter$
|
|
5377
|
+
request?: SecondParameter$k<typeof customFetchNoAuth>;
|
|
5320
5378
|
}) => {
|
|
5321
5379
|
data: OAuthUrl | undefined;
|
|
5322
5380
|
error: TError | undefined;
|
|
@@ -5335,7 +5393,7 @@ declare const useGetOAuthUrl: <TError = ErrorType<ErrorResponse>>(params: GetOAu
|
|
|
5335
5393
|
*/
|
|
5336
5394
|
declare const getGetSessionTokenUrl: () => string;
|
|
5337
5395
|
declare const getSessionToken: (getSessionTokenBody: GetSessionTokenBody, options?: RequestInit) => Promise<GetSessionToken200>;
|
|
5338
|
-
declare const getGetSessionTokenMutationFetcher: (options?: SecondParameter$
|
|
5396
|
+
declare const getGetSessionTokenMutationFetcher: (options?: SecondParameter$k<typeof customFetchNoAuth>) => (_: Key, { arg }: {
|
|
5339
5397
|
arg: GetSessionTokenBody;
|
|
5340
5398
|
}) => Promise<GetSessionToken200>;
|
|
5341
5399
|
declare const getGetSessionTokenMutationKey: () => readonly ["/v1/auth/session"];
|
|
@@ -5347,7 +5405,7 @@ declare const useGetSessionToken: <TError = ErrorType<ErrorResponse>>(options?:
|
|
|
5347
5405
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof getSessionToken>>, TError, Key, GetSessionTokenBody, Awaited<ReturnType<typeof getSessionToken>>> & {
|
|
5348
5406
|
swrKey?: string;
|
|
5349
5407
|
};
|
|
5350
|
-
request?: SecondParameter$
|
|
5408
|
+
request?: SecondParameter$k<typeof customFetchNoAuth>;
|
|
5351
5409
|
}) => {
|
|
5352
5410
|
isMutating: boolean;
|
|
5353
5411
|
trigger: swr_mutation.TriggerWithArgs<GetSessionToken200, TError, string | readonly ["/v1/auth/session"], GetSessionTokenBody>;
|
|
@@ -5357,14 +5415,14 @@ declare const useGetSessionToken: <TError = ErrorType<ErrorResponse>>(options?:
|
|
|
5357
5415
|
swrKey: string | readonly ["/v1/auth/session"];
|
|
5358
5416
|
};
|
|
5359
5417
|
|
|
5360
|
-
type SecondParameter$
|
|
5418
|
+
type SecondParameter$j<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
5361
5419
|
/**
|
|
5362
5420
|
* Create feedback for a specific message in a call. Requires user (JWT) authentication; the author is derived from the authenticated user's profile and API-key callers are rejected.
|
|
5363
5421
|
* @summary Create feedback on a call message
|
|
5364
5422
|
*/
|
|
5365
5423
|
declare const getCreateCallFeedbackUrl: (id: string) => string;
|
|
5366
5424
|
declare const createCallFeedback: (id: string, createFeedbackRequest: CreateFeedbackRequest, options?: RequestInit) => Promise<Feedback>;
|
|
5367
|
-
declare const getCreateCallFeedbackMutationFetcher: (id: string, options?: SecondParameter$
|
|
5425
|
+
declare const getCreateCallFeedbackMutationFetcher: (id: string, options?: SecondParameter$j<typeof customFetch>) => (_: Key, { arg }: {
|
|
5368
5426
|
arg: CreateFeedbackRequest;
|
|
5369
5427
|
}) => Promise<Feedback>;
|
|
5370
5428
|
declare const getCreateCallFeedbackMutationKey: (id: string) => readonly [`/v1/calls/${string}/feedback`];
|
|
@@ -5376,7 +5434,7 @@ declare const useCreateCallFeedback: <TError = ErrorType<ErrorResponse>>(id: str
|
|
|
5376
5434
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createCallFeedback>>, TError, Key, CreateFeedbackRequest, Awaited<ReturnType<typeof createCallFeedback>>> & {
|
|
5377
5435
|
swrKey?: string;
|
|
5378
5436
|
};
|
|
5379
|
-
request?: SecondParameter$
|
|
5437
|
+
request?: SecondParameter$j<typeof customFetch>;
|
|
5380
5438
|
}) => {
|
|
5381
5439
|
isMutating: boolean;
|
|
5382
5440
|
trigger: swr_mutation.TriggerWithArgs<Feedback, TError, string | readonly [`/v1/calls/${string}/feedback`], CreateFeedbackRequest>;
|
|
@@ -5401,7 +5459,7 @@ declare const useListCallFeedback: <TError = ErrorType<ErrorResponse>>(id: strin
|
|
|
5401
5459
|
swrKey?: Key;
|
|
5402
5460
|
enabled?: boolean;
|
|
5403
5461
|
};
|
|
5404
|
-
request?: SecondParameter$
|
|
5462
|
+
request?: SecondParameter$j<typeof customFetch>;
|
|
5405
5463
|
}) => {
|
|
5406
5464
|
data: Feedback[] | undefined;
|
|
5407
5465
|
error: TError | undefined;
|
|
@@ -5416,7 +5474,7 @@ declare const useListCallFeedback: <TError = ErrorType<ErrorResponse>>(id: strin
|
|
|
5416
5474
|
*/
|
|
5417
5475
|
declare const getDeleteCallFeedbackUrl: (id: string, feedbackId: string) => string;
|
|
5418
5476
|
declare const deleteCallFeedback: (id: string, feedbackId: string, options?: RequestInit) => Promise<null>;
|
|
5419
|
-
declare const getDeleteCallFeedbackMutationFetcher: (id: string, feedbackId: string, options?: SecondParameter$
|
|
5477
|
+
declare const getDeleteCallFeedbackMutationFetcher: (id: string, feedbackId: string, options?: SecondParameter$j<typeof customFetch>) => (_: Key, __: {
|
|
5420
5478
|
arg: Arguments;
|
|
5421
5479
|
}) => Promise<null>;
|
|
5422
5480
|
declare const getDeleteCallFeedbackMutationKey: (id: string, feedbackId: string) => readonly [`/v1/calls/${string}/feedback/${string}`];
|
|
@@ -5428,7 +5486,7 @@ declare const useDeleteCallFeedback: <TError = ErrorType<ErrorResponse>>(id: str
|
|
|
5428
5486
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof deleteCallFeedback>>, TError, Key, Arguments, Awaited<ReturnType<typeof deleteCallFeedback>>> & {
|
|
5429
5487
|
swrKey?: string;
|
|
5430
5488
|
};
|
|
5431
|
-
request?: SecondParameter$
|
|
5489
|
+
request?: SecondParameter$j<typeof customFetch>;
|
|
5432
5490
|
}) => {
|
|
5433
5491
|
isMutating: boolean;
|
|
5434
5492
|
trigger: swr_mutation.TriggerWithOptionsArgs<null, TError, string | readonly [`/v1/calls/${string}/feedback/${string}`], Arguments>;
|
|
@@ -5438,7 +5496,7 @@ declare const useDeleteCallFeedback: <TError = ErrorType<ErrorResponse>>(id: str
|
|
|
5438
5496
|
swrKey: string | readonly [`/v1/calls/${string}/feedback/${string}`];
|
|
5439
5497
|
};
|
|
5440
5498
|
|
|
5441
|
-
type SecondParameter$
|
|
5499
|
+
type SecondParameter$i<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
5442
5500
|
/**
|
|
5443
5501
|
* List all calls, with pagination, filtering, and sorting.
|
|
5444
5502
|
|
|
@@ -5459,7 +5517,7 @@ declare const useListCalls: <TError = ErrorType<ErrorResponse>>(params?: ListCal
|
|
|
5459
5517
|
swrKey?: Key;
|
|
5460
5518
|
enabled?: boolean;
|
|
5461
5519
|
};
|
|
5462
|
-
request?: SecondParameter$
|
|
5520
|
+
request?: SecondParameter$i<typeof customFetch>;
|
|
5463
5521
|
}) => {
|
|
5464
5522
|
data: CallList | undefined;
|
|
5465
5523
|
error: TError | undefined;
|
|
@@ -5486,7 +5544,7 @@ declare const useGetCall: <TError = ErrorType<ErrorResponse>>(id: string, params
|
|
|
5486
5544
|
swrKey?: Key;
|
|
5487
5545
|
enabled?: boolean;
|
|
5488
5546
|
};
|
|
5489
|
-
request?: SecondParameter$
|
|
5547
|
+
request?: SecondParameter$i<typeof customFetch>;
|
|
5490
5548
|
}) => {
|
|
5491
5549
|
data: CallDetail | undefined;
|
|
5492
5550
|
error: TError | undefined;
|
|
@@ -5511,7 +5569,7 @@ declare const useGetCallEvaluation: <TError = ErrorType<ErrorResponse>>(id: stri
|
|
|
5511
5569
|
swrKey?: Key;
|
|
5512
5570
|
enabled?: boolean;
|
|
5513
5571
|
};
|
|
5514
|
-
request?: SecondParameter$
|
|
5572
|
+
request?: SecondParameter$i<typeof customFetch>;
|
|
5515
5573
|
}) => {
|
|
5516
5574
|
data: CallEvaluation | undefined;
|
|
5517
5575
|
error: TError | undefined;
|
|
@@ -5538,7 +5596,7 @@ declare const useGetCallAnalytics: <TError = ErrorType<ErrorResponse>>(params: G
|
|
|
5538
5596
|
swrKey?: Key;
|
|
5539
5597
|
enabled?: boolean;
|
|
5540
5598
|
};
|
|
5541
|
-
request?: SecondParameter$
|
|
5599
|
+
request?: SecondParameter$i<typeof customFetch>;
|
|
5542
5600
|
}) => {
|
|
5543
5601
|
data: CallAnalytics | undefined;
|
|
5544
5602
|
error: TError | undefined;
|
|
@@ -5548,7 +5606,7 @@ declare const useGetCallAnalytics: <TError = ErrorType<ErrorResponse>>(params: G
|
|
|
5548
5606
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
5549
5607
|
};
|
|
5550
5608
|
|
|
5551
|
-
type SecondParameter$
|
|
5609
|
+
type SecondParameter$h<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
5552
5610
|
/**
|
|
5553
5611
|
* List all cases for the current tenant, paginated and sortable.
|
|
5554
5612
|
* @summary List cases
|
|
@@ -5565,7 +5623,7 @@ declare const useListCases: <TError = ErrorType<ErrorResponse>>(params?: ListCas
|
|
|
5565
5623
|
swrKey?: Key;
|
|
5566
5624
|
enabled?: boolean;
|
|
5567
5625
|
};
|
|
5568
|
-
request?: SecondParameter$
|
|
5626
|
+
request?: SecondParameter$h<typeof customFetch>;
|
|
5569
5627
|
}) => {
|
|
5570
5628
|
data: CaseList | undefined;
|
|
5571
5629
|
error: TError | undefined;
|
|
@@ -5575,14 +5633,14 @@ declare const useListCases: <TError = ErrorType<ErrorResponse>>(params?: ListCas
|
|
|
5575
5633
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
5576
5634
|
};
|
|
5577
5635
|
|
|
5578
|
-
type SecondParameter$
|
|
5636
|
+
type SecondParameter$g<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
5579
5637
|
/**
|
|
5580
5638
|
* Create a new chat agent with a name and prompt.
|
|
5581
5639
|
* @summary Create chat agent
|
|
5582
5640
|
*/
|
|
5583
5641
|
declare const getCreateChatAgentUrl: () => string;
|
|
5584
5642
|
declare const createChatAgent: (createChatAgentBody: CreateChatAgentBody, options?: RequestInit) => Promise<ChatAgentCreated>;
|
|
5585
|
-
declare const getCreateChatAgentMutationFetcher: (options?: SecondParameter$
|
|
5643
|
+
declare const getCreateChatAgentMutationFetcher: (options?: SecondParameter$g<typeof customFetch>) => (_: Key, { arg }: {
|
|
5586
5644
|
arg: CreateChatAgentBody;
|
|
5587
5645
|
}) => Promise<ChatAgentCreated>;
|
|
5588
5646
|
declare const getCreateChatAgentMutationKey: () => readonly ["/v1/chat-agents"];
|
|
@@ -5594,7 +5652,7 @@ declare const useCreateChatAgent: <TError = ErrorType<ErrorResponse>>(options?:
|
|
|
5594
5652
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createChatAgent>>, TError, Key, CreateChatAgentBody, Awaited<ReturnType<typeof createChatAgent>>> & {
|
|
5595
5653
|
swrKey?: string;
|
|
5596
5654
|
};
|
|
5597
|
-
request?: SecondParameter$
|
|
5655
|
+
request?: SecondParameter$g<typeof customFetch>;
|
|
5598
5656
|
}) => {
|
|
5599
5657
|
isMutating: boolean;
|
|
5600
5658
|
trigger: swr_mutation.TriggerWithArgs<ChatAgentCreated, TError, string | readonly ["/v1/chat-agents"], CreateChatAgentBody>;
|
|
@@ -5619,7 +5677,7 @@ declare const useListChatAgents: <TError = ErrorType<ErrorResponse>>(params?: Li
|
|
|
5619
5677
|
swrKey?: Key;
|
|
5620
5678
|
enabled?: boolean;
|
|
5621
5679
|
};
|
|
5622
|
-
request?: SecondParameter$
|
|
5680
|
+
request?: SecondParameter$g<typeof customFetch>;
|
|
5623
5681
|
}) => {
|
|
5624
5682
|
data: ChatAgentList | undefined;
|
|
5625
5683
|
error: TError | undefined;
|
|
@@ -5644,7 +5702,7 @@ declare const useGetChatAgent: <TError = ErrorType<ErrorResponse>>(chatAgentId:
|
|
|
5644
5702
|
swrKey?: Key;
|
|
5645
5703
|
enabled?: boolean;
|
|
5646
5704
|
};
|
|
5647
|
-
request?: SecondParameter$
|
|
5705
|
+
request?: SecondParameter$g<typeof customFetch>;
|
|
5648
5706
|
}) => {
|
|
5649
5707
|
data: ChatAgent | undefined;
|
|
5650
5708
|
error: TError | undefined;
|
|
@@ -5659,7 +5717,7 @@ declare const useGetChatAgent: <TError = ErrorType<ErrorResponse>>(chatAgentId:
|
|
|
5659
5717
|
*/
|
|
5660
5718
|
declare const getUpdateChatAgentUrl: (chatAgentId: string) => string;
|
|
5661
5719
|
declare const updateChatAgent: (chatAgentId: string, updateChatAgentRequest: UpdateChatAgentRequest, options?: RequestInit) => Promise<ChatAgent>;
|
|
5662
|
-
declare const getUpdateChatAgentMutationFetcher: (chatAgentId: string, options?: SecondParameter$
|
|
5720
|
+
declare const getUpdateChatAgentMutationFetcher: (chatAgentId: string, options?: SecondParameter$g<typeof customFetch>) => (_: Key, { arg }: {
|
|
5663
5721
|
arg: UpdateChatAgentRequest;
|
|
5664
5722
|
}) => Promise<ChatAgent>;
|
|
5665
5723
|
declare const getUpdateChatAgentMutationKey: (chatAgentId: string) => readonly [`/v1/chat-agents/${string}`];
|
|
@@ -5671,7 +5729,7 @@ declare const useUpdateChatAgent: <TError = ErrorType<ErrorResponse>>(chatAgentI
|
|
|
5671
5729
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof updateChatAgent>>, TError, Key, UpdateChatAgentRequest, Awaited<ReturnType<typeof updateChatAgent>>> & {
|
|
5672
5730
|
swrKey?: string;
|
|
5673
5731
|
};
|
|
5674
|
-
request?: SecondParameter$
|
|
5732
|
+
request?: SecondParameter$g<typeof customFetch>;
|
|
5675
5733
|
}) => {
|
|
5676
5734
|
isMutating: boolean;
|
|
5677
5735
|
trigger: swr_mutation.TriggerWithArgs<ChatAgent, TError, string | readonly [`/v1/chat-agents/${string}`], UpdateChatAgentRequest>;
|
|
@@ -5681,14 +5739,14 @@ declare const useUpdateChatAgent: <TError = ErrorType<ErrorResponse>>(chatAgentI
|
|
|
5681
5739
|
swrKey: string | readonly [`/v1/chat-agents/${string}`];
|
|
5682
5740
|
};
|
|
5683
5741
|
|
|
5684
|
-
type SecondParameter$
|
|
5742
|
+
type SecondParameter$f<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
5685
5743
|
/**
|
|
5686
5744
|
* Create a new chat against an existing chat agent. The chat agent's tenant becomes the owner of the chat.
|
|
5687
5745
|
* @summary Create a chat
|
|
5688
5746
|
*/
|
|
5689
5747
|
declare const getCreateChatUrl: () => string;
|
|
5690
5748
|
declare const createChat: (createChatBody: CreateChatBody, options?: RequestInit) => Promise<ChatCreated>;
|
|
5691
|
-
declare const getCreateChatMutationFetcher: (options?: SecondParameter$
|
|
5749
|
+
declare const getCreateChatMutationFetcher: (options?: SecondParameter$f<typeof customFetch>) => (_: Key, { arg }: {
|
|
5692
5750
|
arg: CreateChatBody;
|
|
5693
5751
|
}) => Promise<ChatCreated>;
|
|
5694
5752
|
declare const getCreateChatMutationKey: () => readonly ["/public/v1/chats"];
|
|
@@ -5700,7 +5758,7 @@ declare const useCreateChat: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
5700
5758
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createChat>>, TError, Key, CreateChatBody, Awaited<ReturnType<typeof createChat>>> & {
|
|
5701
5759
|
swrKey?: string;
|
|
5702
5760
|
};
|
|
5703
|
-
request?: SecondParameter$
|
|
5761
|
+
request?: SecondParameter$f<typeof customFetch>;
|
|
5704
5762
|
}) => {
|
|
5705
5763
|
isMutating: boolean;
|
|
5706
5764
|
trigger: swr_mutation.TriggerWithArgs<ChatCreated, TError, string | readonly ["/public/v1/chats"], CreateChatBody>;
|
|
@@ -5725,7 +5783,7 @@ declare const useGetChat: <TError = ErrorType<ErrorResponse>>(chatId: string, op
|
|
|
5725
5783
|
swrKey?: Key;
|
|
5726
5784
|
enabled?: boolean;
|
|
5727
5785
|
};
|
|
5728
|
-
request?: SecondParameter$
|
|
5786
|
+
request?: SecondParameter$f<typeof customFetch>;
|
|
5729
5787
|
}) => {
|
|
5730
5788
|
data: ChatHistory | undefined;
|
|
5731
5789
|
error: TError | undefined;
|
|
@@ -5740,7 +5798,7 @@ declare const useGetChat: <TError = ErrorType<ErrorResponse>>(chatId: string, op
|
|
|
5740
5798
|
*/
|
|
5741
5799
|
declare const getPostChatMessageUrl: (chatId: string) => string;
|
|
5742
5800
|
declare const postChatMessage: (chatId: string, postChatMessageBody: PostChatMessageBody, options?: RequestInit) => Promise<ChatMessageCreated>;
|
|
5743
|
-
declare const getPostChatMessageMutationFetcher: (chatId: string, options?: SecondParameter$
|
|
5801
|
+
declare const getPostChatMessageMutationFetcher: (chatId: string, options?: SecondParameter$f<typeof customFetch>) => (_: Key, { arg }: {
|
|
5744
5802
|
arg: PostChatMessageBody;
|
|
5745
5803
|
}) => Promise<ChatMessageCreated>;
|
|
5746
5804
|
declare const getPostChatMessageMutationKey: (chatId: string) => readonly [`/public/v1/chats/${string}/messages`];
|
|
@@ -5752,7 +5810,7 @@ declare const usePostChatMessage: <TError = ErrorType<ErrorResponse>>(chatId: st
|
|
|
5752
5810
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof postChatMessage>>, TError, Key, PostChatMessageBody, Awaited<ReturnType<typeof postChatMessage>>> & {
|
|
5753
5811
|
swrKey?: string;
|
|
5754
5812
|
};
|
|
5755
|
-
request?: SecondParameter$
|
|
5813
|
+
request?: SecondParameter$f<typeof customFetch>;
|
|
5756
5814
|
}) => {
|
|
5757
5815
|
isMutating: boolean;
|
|
5758
5816
|
trigger: swr_mutation.TriggerWithArgs<ChatMessageCreated, TError, string | readonly [`/public/v1/chats/${string}/messages`], PostChatMessageBody>;
|
|
@@ -5777,7 +5835,7 @@ declare const useListChats: <TError = ErrorType<ErrorResponse>>(params?: ListCha
|
|
|
5777
5835
|
swrKey?: Key;
|
|
5778
5836
|
enabled?: boolean;
|
|
5779
5837
|
};
|
|
5780
|
-
request?: SecondParameter$
|
|
5838
|
+
request?: SecondParameter$f<typeof customFetch>;
|
|
5781
5839
|
}) => {
|
|
5782
5840
|
data: ChatList | undefined;
|
|
5783
5841
|
error: TError | undefined;
|
|
@@ -5802,7 +5860,7 @@ declare const useListChatMessages: <TError = ErrorType<ErrorResponse>>(chatId: s
|
|
|
5802
5860
|
swrKey?: Key;
|
|
5803
5861
|
enabled?: boolean;
|
|
5804
5862
|
};
|
|
5805
|
-
request?: SecondParameter$
|
|
5863
|
+
request?: SecondParameter$f<typeof customFetch>;
|
|
5806
5864
|
}) => {
|
|
5807
5865
|
data: ChatMessageList | undefined;
|
|
5808
5866
|
error: TError | undefined;
|
|
@@ -5812,14 +5870,14 @@ declare const useListChatMessages: <TError = ErrorType<ErrorResponse>>(chatId: s
|
|
|
5812
5870
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
5813
5871
|
};
|
|
5814
5872
|
|
|
5815
|
-
type SecondParameter$
|
|
5873
|
+
type SecondParameter$e<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
5816
5874
|
/**
|
|
5817
5875
|
* Create a new empty claim. Returns the claim ID and the creation timestamp.
|
|
5818
5876
|
* @summary Create claim
|
|
5819
5877
|
*/
|
|
5820
5878
|
declare const getCreateClaimUrl: () => string;
|
|
5821
5879
|
declare const createClaim: (options?: RequestInit) => Promise<ClaimCreated>;
|
|
5822
|
-
declare const getCreateClaimMutationFetcher: (options?: SecondParameter$
|
|
5880
|
+
declare const getCreateClaimMutationFetcher: (options?: SecondParameter$e<typeof customFetch>) => (_: Key, __: {
|
|
5823
5881
|
arg: Arguments;
|
|
5824
5882
|
}) => Promise<ClaimCreated>;
|
|
5825
5883
|
declare const getCreateClaimMutationKey: () => readonly ["/v1/claims"];
|
|
@@ -5831,7 +5889,7 @@ declare const useCreateClaim: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
5831
5889
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createClaim>>, TError, Key, Arguments, Awaited<ReturnType<typeof createClaim>>> & {
|
|
5832
5890
|
swrKey?: string;
|
|
5833
5891
|
};
|
|
5834
|
-
request?: SecondParameter$
|
|
5892
|
+
request?: SecondParameter$e<typeof customFetch>;
|
|
5835
5893
|
}) => {
|
|
5836
5894
|
isMutating: boolean;
|
|
5837
5895
|
trigger: swr_mutation.TriggerWithOptionsArgs<ClaimCreated, TError, string | readonly ["/v1/claims"], Arguments>;
|
|
@@ -5856,7 +5914,7 @@ declare const useListClaims: <TError = ErrorType<ErrorResponse>>(params?: ListCl
|
|
|
5856
5914
|
swrKey?: Key;
|
|
5857
5915
|
enabled?: boolean;
|
|
5858
5916
|
};
|
|
5859
|
-
request?: SecondParameter$
|
|
5917
|
+
request?: SecondParameter$e<typeof customFetch>;
|
|
5860
5918
|
}) => {
|
|
5861
5919
|
data: ClaimList | undefined;
|
|
5862
5920
|
error: TError | undefined;
|
|
@@ -5881,7 +5939,7 @@ declare const useGetClaimDetail: <TError = ErrorType<ErrorResponse>>(id: string,
|
|
|
5881
5939
|
swrKey?: Key;
|
|
5882
5940
|
enabled?: boolean;
|
|
5883
5941
|
};
|
|
5884
|
-
request?: SecondParameter$
|
|
5942
|
+
request?: SecondParameter$e<typeof customFetch>;
|
|
5885
5943
|
}) => {
|
|
5886
5944
|
data: ClaimDetail | undefined;
|
|
5887
5945
|
error: TError | undefined;
|
|
@@ -5891,7 +5949,7 @@ declare const useGetClaimDetail: <TError = ErrorType<ErrorResponse>>(id: string,
|
|
|
5891
5949
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => Arguments);
|
|
5892
5950
|
};
|
|
5893
5951
|
|
|
5894
|
-
type SecondParameter$
|
|
5952
|
+
type SecondParameter$d<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
5895
5953
|
/**
|
|
5896
5954
|
* Ingest an email into the system.
|
|
5897
5955
|
|
|
@@ -5900,7 +5958,7 @@ Optionally associate the email with an existing claim via `claim_id`.
|
|
|
5900
5958
|
*/
|
|
5901
5959
|
declare const getCreateEmailUrl: () => string;
|
|
5902
5960
|
declare const createEmail: (createEmailBody: CreateEmailBody, options?: RequestInit) => Promise<EmailCreated>;
|
|
5903
|
-
declare const getCreateEmailMutationFetcher: (options?: SecondParameter$
|
|
5961
|
+
declare const getCreateEmailMutationFetcher: (options?: SecondParameter$d<typeof customFetch>) => (_: Key, { arg }: {
|
|
5904
5962
|
arg: CreateEmailBody;
|
|
5905
5963
|
}) => Promise<EmailCreated>;
|
|
5906
5964
|
declare const getCreateEmailMutationKey: () => readonly ["/v1/emails"];
|
|
@@ -5912,7 +5970,7 @@ declare const useCreateEmail: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
5912
5970
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createEmail>>, TError, Key, CreateEmailBody, Awaited<ReturnType<typeof createEmail>>> & {
|
|
5913
5971
|
swrKey?: string;
|
|
5914
5972
|
};
|
|
5915
|
-
request?: SecondParameter$
|
|
5973
|
+
request?: SecondParameter$d<typeof customFetch>;
|
|
5916
5974
|
}) => {
|
|
5917
5975
|
isMutating: boolean;
|
|
5918
5976
|
trigger: swr_mutation.TriggerWithArgs<EmailCreated, TError, string | readonly ["/v1/emails"], CreateEmailBody>;
|
|
@@ -5941,7 +5999,7 @@ declare const useListEmails: <TError = ErrorType<ErrorResponse>>(params?: ListEm
|
|
|
5941
5999
|
swrKey?: Key;
|
|
5942
6000
|
enabled?: boolean;
|
|
5943
6001
|
};
|
|
5944
|
-
request?: SecondParameter$
|
|
6002
|
+
request?: SecondParameter$d<typeof customFetch>;
|
|
5945
6003
|
}) => {
|
|
5946
6004
|
data: EmailList | undefined;
|
|
5947
6005
|
error: TError | undefined;
|
|
@@ -5966,7 +6024,7 @@ declare const useGetEmail: <TError = ErrorType<ErrorResponse>>(emailId: string,
|
|
|
5966
6024
|
swrKey?: Key;
|
|
5967
6025
|
enabled?: boolean;
|
|
5968
6026
|
};
|
|
5969
|
-
request?: SecondParameter$
|
|
6027
|
+
request?: SecondParameter$d<typeof customFetch>;
|
|
5970
6028
|
}) => {
|
|
5971
6029
|
data: EmailDetail | undefined;
|
|
5972
6030
|
error: TError | undefined;
|
|
@@ -5991,7 +6049,7 @@ declare const useListEmailThreads: <TError = ErrorType<ErrorResponse>>(params?:
|
|
|
5991
6049
|
swrKey?: Key;
|
|
5992
6050
|
enabled?: boolean;
|
|
5993
6051
|
};
|
|
5994
|
-
request?: SecondParameter$
|
|
6052
|
+
request?: SecondParameter$d<typeof customFetch>;
|
|
5995
6053
|
}) => {
|
|
5996
6054
|
data: EmailThreadList | undefined;
|
|
5997
6055
|
error: TError | undefined;
|
|
@@ -6006,7 +6064,7 @@ declare const useListEmailThreads: <TError = ErrorType<ErrorResponse>>(params?:
|
|
|
6006
6064
|
*/
|
|
6007
6065
|
declare const getReplyToEmailUrl: (emailId: string) => string;
|
|
6008
6066
|
declare const replyToEmail: (emailId: string, replyToEmailBody: ReplyToEmailBody, options?: RequestInit) => Promise<EmailReplyResult>;
|
|
6009
|
-
declare const getReplyToEmailMutationFetcher: (emailId: string, options?: SecondParameter$
|
|
6067
|
+
declare const getReplyToEmailMutationFetcher: (emailId: string, options?: SecondParameter$d<typeof customFetch>) => (_: Key, { arg }: {
|
|
6010
6068
|
arg: ReplyToEmailBody;
|
|
6011
6069
|
}) => Promise<{
|
|
6012
6070
|
readonly sent: true;
|
|
@@ -6020,7 +6078,7 @@ declare const useReplyToEmail: <TError = ErrorType<ErrorResponse>>(emailId: stri
|
|
|
6020
6078
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof replyToEmail>>, TError, Key, ReplyToEmailBody, Awaited<ReturnType<typeof replyToEmail>>> & {
|
|
6021
6079
|
swrKey?: string;
|
|
6022
6080
|
};
|
|
6023
|
-
request?: SecondParameter$
|
|
6081
|
+
request?: SecondParameter$d<typeof customFetch>;
|
|
6024
6082
|
}) => {
|
|
6025
6083
|
isMutating: boolean;
|
|
6026
6084
|
trigger: swr_mutation.TriggerWithArgs<{
|
|
@@ -6039,7 +6097,7 @@ declare const useReplyToEmail: <TError = ErrorType<ErrorResponse>>(emailId: stri
|
|
|
6039
6097
|
*/
|
|
6040
6098
|
declare const getSendEmailUrl: () => string;
|
|
6041
6099
|
declare const sendEmail: (sendEmailBody: SendEmailBody, options?: RequestInit) => Promise<EmailSendResult>;
|
|
6042
|
-
declare const getSendEmailMutationFetcher: (options?: SecondParameter$
|
|
6100
|
+
declare const getSendEmailMutationFetcher: (options?: SecondParameter$d<typeof customFetch>) => (_: Key, { arg }: {
|
|
6043
6101
|
arg: SendEmailBody;
|
|
6044
6102
|
}) => Promise<EmailSendResult>;
|
|
6045
6103
|
declare const getSendEmailMutationKey: () => readonly ["/v1/emails/send"];
|
|
@@ -6051,7 +6109,7 @@ declare const useSendEmail: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
6051
6109
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof sendEmail>>, TError, Key, SendEmailBody, Awaited<ReturnType<typeof sendEmail>>> & {
|
|
6052
6110
|
swrKey?: string;
|
|
6053
6111
|
};
|
|
6054
|
-
request?: SecondParameter$
|
|
6112
|
+
request?: SecondParameter$d<typeof customFetch>;
|
|
6055
6113
|
}) => {
|
|
6056
6114
|
isMutating: boolean;
|
|
6057
6115
|
trigger: swr_mutation.TriggerWithArgs<EmailSendResult, TError, string | readonly ["/v1/emails/send"], SendEmailBody>;
|
|
@@ -6061,7 +6119,7 @@ declare const useSendEmail: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
6061
6119
|
swrKey: string | readonly ["/v1/emails/send"];
|
|
6062
6120
|
};
|
|
6063
6121
|
|
|
6064
|
-
type SecondParameter$
|
|
6122
|
+
type SecondParameter$c<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
6065
6123
|
/**
|
|
6066
6124
|
* List all extraction jobs with pagination, filtering, and sorting.
|
|
6067
6125
|
|
|
@@ -6087,7 +6145,7 @@ declare const useListExtractorJobs: <TError = ErrorType<ErrorResponse>>(params?:
|
|
|
6087
6145
|
swrKey?: Key;
|
|
6088
6146
|
enabled?: boolean;
|
|
6089
6147
|
};
|
|
6090
|
-
request?: SecondParameter$
|
|
6148
|
+
request?: SecondParameter$c<typeof customFetch>;
|
|
6091
6149
|
}) => {
|
|
6092
6150
|
data: ExtractorJobList | undefined;
|
|
6093
6151
|
error: TError | undefined;
|
|
@@ -6104,7 +6162,7 @@ Provide a non-empty `scope` object to define what the extractor should process (
|
|
|
6104
6162
|
*/
|
|
6105
6163
|
declare const getCreateExtractorJobUrl: () => string;
|
|
6106
6164
|
declare const createExtractorJob: (createExtractorJobBody: CreateExtractorJobBody, options?: RequestInit) => Promise<ExtractorJobCreated>;
|
|
6107
|
-
declare const getCreateExtractorJobMutationFetcher: (options?: SecondParameter$
|
|
6165
|
+
declare const getCreateExtractorJobMutationFetcher: (options?: SecondParameter$c<typeof customFetch>) => (_: Key, { arg }: {
|
|
6108
6166
|
arg: CreateExtractorJobBody;
|
|
6109
6167
|
}) => Promise<ExtractorJobCreated>;
|
|
6110
6168
|
declare const getCreateExtractorJobMutationKey: () => readonly ["/v1/extractor-jobs"];
|
|
@@ -6116,7 +6174,7 @@ declare const useCreateExtractorJob: <TError = ErrorType<ErrorResponse>>(options
|
|
|
6116
6174
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createExtractorJob>>, TError, Key, CreateExtractorJobBody, Awaited<ReturnType<typeof createExtractorJob>>> & {
|
|
6117
6175
|
swrKey?: string;
|
|
6118
6176
|
};
|
|
6119
|
-
request?: SecondParameter$
|
|
6177
|
+
request?: SecondParameter$c<typeof customFetch>;
|
|
6120
6178
|
}) => {
|
|
6121
6179
|
isMutating: boolean;
|
|
6122
6180
|
trigger: swr_mutation.TriggerWithArgs<ExtractorJobCreated, TError, string | readonly ["/v1/extractor-jobs"], CreateExtractorJobBody>;
|
|
@@ -6141,7 +6199,7 @@ declare const useGetExtractorJob: <TError = ErrorType<ErrorResponse>>(id: string
|
|
|
6141
6199
|
swrKey?: Key;
|
|
6142
6200
|
enabled?: boolean;
|
|
6143
6201
|
};
|
|
6144
|
-
request?: SecondParameter$
|
|
6202
|
+
request?: SecondParameter$c<typeof customFetch>;
|
|
6145
6203
|
}) => {
|
|
6146
6204
|
data: GetExtractorJobResponse | undefined;
|
|
6147
6205
|
error: TError | undefined;
|
|
@@ -6151,14 +6209,14 @@ declare const useGetExtractorJob: <TError = ErrorType<ErrorResponse>>(id: string
|
|
|
6151
6209
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
6152
6210
|
};
|
|
6153
6211
|
|
|
6154
|
-
type SecondParameter$
|
|
6212
|
+
type SecondParameter$b<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
6155
6213
|
/**
|
|
6156
6214
|
* Create a new extractor with a name and JSON schema defining the extraction output format.
|
|
6157
6215
|
* @summary Create extractor
|
|
6158
6216
|
*/
|
|
6159
6217
|
declare const getCreateExtractorUrl: () => string;
|
|
6160
6218
|
declare const createExtractor: (createExtractorBody: CreateExtractorBody, options?: RequestInit) => Promise<ExtractorCreated>;
|
|
6161
|
-
declare const getCreateExtractorMutationFetcher: (options?: SecondParameter$
|
|
6219
|
+
declare const getCreateExtractorMutationFetcher: (options?: SecondParameter$b<typeof customFetch>) => (_: Key, { arg }: {
|
|
6162
6220
|
arg: CreateExtractorBody;
|
|
6163
6221
|
}) => Promise<ExtractorCreated>;
|
|
6164
6222
|
declare const getCreateExtractorMutationKey: () => readonly ["/v1/extractors"];
|
|
@@ -6170,7 +6228,7 @@ declare const useCreateExtractor: <TError = ErrorType<ErrorResponse>>(options?:
|
|
|
6170
6228
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createExtractor>>, TError, Key, CreateExtractorBody, Awaited<ReturnType<typeof createExtractor>>> & {
|
|
6171
6229
|
swrKey?: string;
|
|
6172
6230
|
};
|
|
6173
|
-
request?: SecondParameter$
|
|
6231
|
+
request?: SecondParameter$b<typeof customFetch>;
|
|
6174
6232
|
}) => {
|
|
6175
6233
|
isMutating: boolean;
|
|
6176
6234
|
trigger: swr_mutation.TriggerWithArgs<ExtractorCreated, TError, string | readonly ["/v1/extractors"], CreateExtractorBody>;
|
|
@@ -6197,7 +6255,7 @@ declare const useListExtractors: <TError = ErrorType<ErrorResponse>>(params?: Li
|
|
|
6197
6255
|
swrKey?: Key;
|
|
6198
6256
|
enabled?: boolean;
|
|
6199
6257
|
};
|
|
6200
|
-
request?: SecondParameter$
|
|
6258
|
+
request?: SecondParameter$b<typeof customFetch>;
|
|
6201
6259
|
}) => {
|
|
6202
6260
|
data: ExtractorList | undefined;
|
|
6203
6261
|
error: TError | undefined;
|
|
@@ -6222,7 +6280,7 @@ declare const useGetExtractor: <TError = ErrorType<ErrorResponse>>(id: string, o
|
|
|
6222
6280
|
swrKey?: Key;
|
|
6223
6281
|
enabled?: boolean;
|
|
6224
6282
|
};
|
|
6225
|
-
request?: SecondParameter$
|
|
6283
|
+
request?: SecondParameter$b<typeof customFetch>;
|
|
6226
6284
|
}) => {
|
|
6227
6285
|
data: GetExtractorResponse | undefined;
|
|
6228
6286
|
error: TError | undefined;
|
|
@@ -6237,7 +6295,7 @@ declare const useGetExtractor: <TError = ErrorType<ErrorResponse>>(id: string, o
|
|
|
6237
6295
|
*/
|
|
6238
6296
|
declare const getUpdateExtractorUrl: (id: string) => string;
|
|
6239
6297
|
declare const updateExtractor: (id: string, updateExtractorBody: UpdateExtractorBody, options?: RequestInit) => Promise<ExtractorUpdated>;
|
|
6240
|
-
declare const getUpdateExtractorMutationFetcher: (id: string, options?: SecondParameter$
|
|
6298
|
+
declare const getUpdateExtractorMutationFetcher: (id: string, options?: SecondParameter$b<typeof customFetch>) => (_: Key, { arg }: {
|
|
6241
6299
|
arg: UpdateExtractorBody;
|
|
6242
6300
|
}) => Promise<ExtractorUpdated>;
|
|
6243
6301
|
declare const getUpdateExtractorMutationKey: (id: string) => readonly [`/v1/extractors/${string}`];
|
|
@@ -6249,7 +6307,7 @@ declare const useUpdateExtractor: <TError = ErrorType<ErrorResponse>>(id: string
|
|
|
6249
6307
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof updateExtractor>>, TError, Key, UpdateExtractorBody, Awaited<ReturnType<typeof updateExtractor>>> & {
|
|
6250
6308
|
swrKey?: string;
|
|
6251
6309
|
};
|
|
6252
|
-
request?: SecondParameter$
|
|
6310
|
+
request?: SecondParameter$b<typeof customFetch>;
|
|
6253
6311
|
}) => {
|
|
6254
6312
|
isMutating: boolean;
|
|
6255
6313
|
trigger: swr_mutation.TriggerWithArgs<ExtractorUpdated, TError, string | readonly [`/v1/extractors/${string}`], UpdateExtractorBody>;
|
|
@@ -6259,7 +6317,7 @@ declare const useUpdateExtractor: <TError = ErrorType<ErrorResponse>>(id: string
|
|
|
6259
6317
|
swrKey: string | readonly [`/v1/extractors/${string}`];
|
|
6260
6318
|
};
|
|
6261
6319
|
|
|
6262
|
-
type SecondParameter$
|
|
6320
|
+
type SecondParameter$a<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
6263
6321
|
/**
|
|
6264
6322
|
* Retrieve a single extract by ID, including the extraction result data.
|
|
6265
6323
|
* @summary Get extract
|
|
@@ -6276,7 +6334,7 @@ declare const useGetExtract: <TError = ErrorType<ErrorResponse>>(id: string, opt
|
|
|
6276
6334
|
swrKey?: Key;
|
|
6277
6335
|
enabled?: boolean;
|
|
6278
6336
|
};
|
|
6279
|
-
request?: SecondParameter$
|
|
6337
|
+
request?: SecondParameter$a<typeof customFetch>;
|
|
6280
6338
|
}) => {
|
|
6281
6339
|
data: Extract | undefined;
|
|
6282
6340
|
error: TError | undefined;
|
|
@@ -6301,7 +6359,7 @@ declare const useGetExtractCitations: <TError = ErrorType<ErrorResponse>>(id: st
|
|
|
6301
6359
|
swrKey?: Key;
|
|
6302
6360
|
enabled?: boolean;
|
|
6303
6361
|
};
|
|
6304
|
-
request?: SecondParameter$
|
|
6362
|
+
request?: SecondParameter$a<typeof customFetch>;
|
|
6305
6363
|
}) => {
|
|
6306
6364
|
data: GetExtractCitations200 | undefined;
|
|
6307
6365
|
error: TError | undefined;
|
|
@@ -6333,7 +6391,7 @@ declare const useListExtracts: <TError = ErrorType<ErrorResponse>>(params?: List
|
|
|
6333
6391
|
swrKey?: Key;
|
|
6334
6392
|
enabled?: boolean;
|
|
6335
6393
|
};
|
|
6336
|
-
request?: SecondParameter$
|
|
6394
|
+
request?: SecondParameter$a<typeof customFetch>;
|
|
6337
6395
|
}) => {
|
|
6338
6396
|
data: ExtractList | undefined;
|
|
6339
6397
|
error: TError | undefined;
|
|
@@ -6343,7 +6401,7 @@ declare const useListExtracts: <TError = ErrorType<ErrorResponse>>(params?: List
|
|
|
6343
6401
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
6344
6402
|
};
|
|
6345
6403
|
|
|
6346
|
-
type SecondParameter$
|
|
6404
|
+
type SecondParameter$9<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
6347
6405
|
/**
|
|
6348
6406
|
* Check whether a given email username is available for creating a new inbox.
|
|
6349
6407
|
|
|
@@ -6363,7 +6421,7 @@ declare const useCheckInboxAvailability: <TError = ErrorType<ErrorResponse>>(par
|
|
|
6363
6421
|
swrKey?: Key;
|
|
6364
6422
|
enabled?: boolean;
|
|
6365
6423
|
};
|
|
6366
|
-
request?: SecondParameter$
|
|
6424
|
+
request?: SecondParameter$9<typeof customFetch>;
|
|
6367
6425
|
}) => {
|
|
6368
6426
|
data: InboxAvailability | undefined;
|
|
6369
6427
|
error: TError | undefined;
|
|
@@ -6385,7 +6443,7 @@ For compatibility this endpoint is also available using the following (deprecate
|
|
|
6385
6443
|
*/
|
|
6386
6444
|
declare const getCreateInboxUrl: () => string;
|
|
6387
6445
|
declare const createInbox: (createInboxBody: CreateInboxBody, options?: RequestInit) => Promise<Inbox>;
|
|
6388
|
-
declare const getCreateInboxMutationFetcher: (options?: SecondParameter$
|
|
6446
|
+
declare const getCreateInboxMutationFetcher: (options?: SecondParameter$9<typeof customFetch>) => (_: Key, { arg }: {
|
|
6389
6447
|
arg: CreateInboxBody;
|
|
6390
6448
|
}) => Promise<Inbox>;
|
|
6391
6449
|
declare const getCreateInboxMutationKey: () => readonly ["/v1/inboxes"];
|
|
@@ -6397,7 +6455,7 @@ declare const useCreateInbox: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
6397
6455
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createInbox>>, TError, Key, CreateInboxBody, Awaited<ReturnType<typeof createInbox>>> & {
|
|
6398
6456
|
swrKey?: string;
|
|
6399
6457
|
};
|
|
6400
|
-
request?: SecondParameter$
|
|
6458
|
+
request?: SecondParameter$9<typeof customFetch>;
|
|
6401
6459
|
}) => {
|
|
6402
6460
|
isMutating: boolean;
|
|
6403
6461
|
trigger: swr_mutation.TriggerWithArgs<Inbox, TError, string | readonly ["/v1/inboxes"], CreateInboxBody>;
|
|
@@ -6425,7 +6483,7 @@ declare const useListInboxes: <TError = ErrorType<ErrorResponse>>(params?: ListI
|
|
|
6425
6483
|
swrKey?: Key;
|
|
6426
6484
|
enabled?: boolean;
|
|
6427
6485
|
};
|
|
6428
|
-
request?: SecondParameter$
|
|
6486
|
+
request?: SecondParameter$9<typeof customFetch>;
|
|
6429
6487
|
}) => {
|
|
6430
6488
|
data: InboxList | undefined;
|
|
6431
6489
|
error: TError | undefined;
|
|
@@ -6443,7 +6501,7 @@ For compatibility this endpoint is also available using the following (deprecate
|
|
|
6443
6501
|
*/
|
|
6444
6502
|
declare const getUpdateInboxUrl: (inboxId: string) => string;
|
|
6445
6503
|
declare const updateInbox: (inboxId: string, updateInboxBody: UpdateInboxBody, options?: RequestInit) => Promise<Inbox>;
|
|
6446
|
-
declare const getUpdateInboxMutationFetcher: (inboxId: string, options?: SecondParameter$
|
|
6504
|
+
declare const getUpdateInboxMutationFetcher: (inboxId: string, options?: SecondParameter$9<typeof customFetch>) => (_: Key, { arg }: {
|
|
6447
6505
|
arg: UpdateInboxBody;
|
|
6448
6506
|
}) => Promise<Inbox>;
|
|
6449
6507
|
declare const getUpdateInboxMutationKey: (inboxId: string) => readonly [`/v1/inboxes/${string}`];
|
|
@@ -6455,7 +6513,7 @@ declare const useUpdateInbox: <TError = ErrorType<ErrorResponse>>(inboxId: strin
|
|
|
6455
6513
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof updateInbox>>, TError, Key, UpdateInboxBody, Awaited<ReturnType<typeof updateInbox>>> & {
|
|
6456
6514
|
swrKey?: string;
|
|
6457
6515
|
};
|
|
6458
|
-
request?: SecondParameter$
|
|
6516
|
+
request?: SecondParameter$9<typeof customFetch>;
|
|
6459
6517
|
}) => {
|
|
6460
6518
|
isMutating: boolean;
|
|
6461
6519
|
trigger: swr_mutation.TriggerWithArgs<Inbox, TError, string | readonly [`/v1/inboxes/${string}`], UpdateInboxBody>;
|
|
@@ -6465,7 +6523,7 @@ declare const useUpdateInbox: <TError = ErrorType<ErrorResponse>>(inboxId: strin
|
|
|
6465
6523
|
swrKey: string | readonly [`/v1/inboxes/${string}`];
|
|
6466
6524
|
};
|
|
6467
6525
|
|
|
6468
|
-
type SecondParameter$
|
|
6526
|
+
type SecondParameter$8<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
6469
6527
|
/**
|
|
6470
6528
|
* Schedule a new outbound call job for a voice agent.
|
|
6471
6529
|
|
|
@@ -6481,7 +6539,7 @@ For compatibility this endpoint is also available using the following (deprecate
|
|
|
6481
6539
|
*/
|
|
6482
6540
|
declare const getScheduleJobUrl: (voiceAgentId: string) => string;
|
|
6483
6541
|
declare const scheduleJob: (voiceAgentId: string, scheduleJobBody: ScheduleJobBody, options?: RequestInit) => Promise<OutboundJob>;
|
|
6484
|
-
declare const getScheduleJobMutationFetcher: (voiceAgentId: string, options?: SecondParameter$
|
|
6542
|
+
declare const getScheduleJobMutationFetcher: (voiceAgentId: string, options?: SecondParameter$8<typeof customFetch>) => (_: Key, { arg }: {
|
|
6485
6543
|
arg: ScheduleJobBody;
|
|
6486
6544
|
}) => Promise<OutboundJob>;
|
|
6487
6545
|
declare const getScheduleJobMutationKey: (voiceAgentId: string) => readonly [`/v1/voice-agents/${string}/jobs`];
|
|
@@ -6493,7 +6551,7 @@ declare const useScheduleJob: <TError = ErrorType<ErrorResponse>>(voiceAgentId:
|
|
|
6493
6551
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof scheduleJob>>, TError, Key, ScheduleJobBody, Awaited<ReturnType<typeof scheduleJob>>> & {
|
|
6494
6552
|
swrKey?: string;
|
|
6495
6553
|
};
|
|
6496
|
-
request?: SecondParameter$
|
|
6554
|
+
request?: SecondParameter$8<typeof customFetch>;
|
|
6497
6555
|
}) => {
|
|
6498
6556
|
isMutating: boolean;
|
|
6499
6557
|
trigger: swr_mutation.TriggerWithArgs<OutboundJob, TError, string | readonly [`/v1/voice-agents/${string}/jobs`], ScheduleJobBody>;
|
|
@@ -6526,7 +6584,7 @@ declare const useListJobs: <TError = ErrorType<ErrorResponse>>(params: ListJobsP
|
|
|
6526
6584
|
swrKey?: Key;
|
|
6527
6585
|
enabled?: boolean;
|
|
6528
6586
|
};
|
|
6529
|
-
request?: SecondParameter$
|
|
6587
|
+
request?: SecondParameter$8<typeof customFetch>;
|
|
6530
6588
|
}) => {
|
|
6531
6589
|
data: OutboundJobList | undefined;
|
|
6532
6590
|
error: TError | undefined;
|
|
@@ -6544,7 +6602,7 @@ For compatibility this endpoint is also available using the following (deprecate
|
|
|
6544
6602
|
*/
|
|
6545
6603
|
declare const getCancelJobUrl: (jobId: string) => string;
|
|
6546
6604
|
declare const cancelJob: (jobId: string, options?: RequestInit) => Promise<OutboundJob>;
|
|
6547
|
-
declare const getCancelJobMutationFetcher: (jobId: string, options?: SecondParameter$
|
|
6605
|
+
declare const getCancelJobMutationFetcher: (jobId: string, options?: SecondParameter$8<typeof customFetch>) => (_: Key, __: {
|
|
6548
6606
|
arg: Arguments;
|
|
6549
6607
|
}) => Promise<OutboundJob>;
|
|
6550
6608
|
declare const getCancelJobMutationKey: (jobId: string) => readonly [`/v1/voice-agents/jobs/${string}/cancel`];
|
|
@@ -6556,7 +6614,7 @@ declare const useCancelJob: <TError = ErrorType<ErrorResponse>>(jobId: string, o
|
|
|
6556
6614
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof cancelJob>>, TError, Key, Arguments, Awaited<ReturnType<typeof cancelJob>>> & {
|
|
6557
6615
|
swrKey?: string;
|
|
6558
6616
|
};
|
|
6559
|
-
request?: SecondParameter$
|
|
6617
|
+
request?: SecondParameter$8<typeof customFetch>;
|
|
6560
6618
|
}) => {
|
|
6561
6619
|
isMutating: boolean;
|
|
6562
6620
|
trigger: swr_mutation.TriggerWithOptionsArgs<OutboundJob, TError, string | readonly [`/v1/voice-agents/jobs/${string}/cancel`], Arguments>;
|
|
@@ -6566,7 +6624,7 @@ declare const useCancelJob: <TError = ErrorType<ErrorResponse>>(jobId: string, o
|
|
|
6566
6624
|
swrKey: string | readonly [`/v1/voice-agents/jobs/${string}/cancel`];
|
|
6567
6625
|
};
|
|
6568
6626
|
|
|
6569
|
-
type SecondParameter$
|
|
6627
|
+
type SecondParameter$7<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
6570
6628
|
/**
|
|
6571
6629
|
* Retrieve the current user's profile information. This endpoint requires a user session and cannot be used with API Keys.
|
|
6572
6630
|
* @summary Get profile
|
|
@@ -6583,7 +6641,7 @@ declare const useGetProfile: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
6583
6641
|
swrKey?: Key;
|
|
6584
6642
|
enabled?: boolean;
|
|
6585
6643
|
};
|
|
6586
|
-
request?: SecondParameter$
|
|
6644
|
+
request?: SecondParameter$7<typeof customFetch>;
|
|
6587
6645
|
}) => {
|
|
6588
6646
|
data: Profile | undefined;
|
|
6589
6647
|
error: TError | undefined;
|
|
@@ -6593,7 +6651,7 @@ declare const useGetProfile: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
6593
6651
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
6594
6652
|
};
|
|
6595
6653
|
|
|
6596
|
-
type SecondParameter$
|
|
6654
|
+
type SecondParameter$6<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
6597
6655
|
/**
|
|
6598
6656
|
* List all members in the current tenant.
|
|
6599
6657
|
* @summary List team members
|
|
@@ -6610,7 +6668,7 @@ declare const useListTeamMembers: <TError = ErrorType<ErrorResponse>>(options?:
|
|
|
6610
6668
|
swrKey?: Key;
|
|
6611
6669
|
enabled?: boolean;
|
|
6612
6670
|
};
|
|
6613
|
-
request?: SecondParameter$
|
|
6671
|
+
request?: SecondParameter$6<typeof customFetch>;
|
|
6614
6672
|
}) => {
|
|
6615
6673
|
data: ListTeamMembersResponse | undefined;
|
|
6616
6674
|
error: TError | undefined;
|
|
@@ -6625,7 +6683,7 @@ declare const useListTeamMembers: <TError = ErrorType<ErrorResponse>>(options?:
|
|
|
6625
6683
|
*/
|
|
6626
6684
|
declare const getUpdateMemberRoleUrl: (id: string) => string;
|
|
6627
6685
|
declare const updateMemberRole: (id: string, updateMemberRoleBody: UpdateMemberRoleBody, options?: RequestInit) => Promise<TeamMember>;
|
|
6628
|
-
declare const getUpdateMemberRoleMutationFetcher: (id: string, options?: SecondParameter$
|
|
6686
|
+
declare const getUpdateMemberRoleMutationFetcher: (id: string, options?: SecondParameter$6<typeof customFetch>) => (_: Key, { arg }: {
|
|
6629
6687
|
arg: UpdateMemberRoleBody;
|
|
6630
6688
|
}) => Promise<TeamMember>;
|
|
6631
6689
|
declare const getUpdateMemberRoleMutationKey: (id: string) => readonly [`/v1/team/members/${string}`];
|
|
@@ -6637,7 +6695,7 @@ declare const useUpdateMemberRole: <TError = ErrorType<ErrorResponse>>(id: strin
|
|
|
6637
6695
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof updateMemberRole>>, TError, Key, UpdateMemberRoleBody, Awaited<ReturnType<typeof updateMemberRole>>> & {
|
|
6638
6696
|
swrKey?: string;
|
|
6639
6697
|
};
|
|
6640
|
-
request?: SecondParameter$
|
|
6698
|
+
request?: SecondParameter$6<typeof customFetch>;
|
|
6641
6699
|
}) => {
|
|
6642
6700
|
isMutating: boolean;
|
|
6643
6701
|
trigger: swr_mutation.TriggerWithArgs<TeamMember, TError, string | readonly [`/v1/team/members/${string}`], UpdateMemberRoleBody>;
|
|
@@ -6652,7 +6710,7 @@ declare const useUpdateMemberRole: <TError = ErrorType<ErrorResponse>>(id: strin
|
|
|
6652
6710
|
*/
|
|
6653
6711
|
declare const getRemoveMemberUrl: (id: string) => string;
|
|
6654
6712
|
declare const removeMember: (id: string, options?: RequestInit) => Promise<RemoveMemberResponse>;
|
|
6655
|
-
declare const getRemoveMemberMutationFetcher: (id: string, options?: SecondParameter$
|
|
6713
|
+
declare const getRemoveMemberMutationFetcher: (id: string, options?: SecondParameter$6<typeof customFetch>) => (_: Key, __: {
|
|
6656
6714
|
arg: Arguments;
|
|
6657
6715
|
}) => Promise<RemoveMemberResponse>;
|
|
6658
6716
|
declare const getRemoveMemberMutationKey: (id: string) => readonly [`/v1/team/members/${string}`];
|
|
@@ -6664,7 +6722,7 @@ declare const useRemoveMember: <TError = ErrorType<ErrorResponse>>(id: string, o
|
|
|
6664
6722
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof removeMember>>, TError, Key, Arguments, Awaited<ReturnType<typeof removeMember>>> & {
|
|
6665
6723
|
swrKey?: string;
|
|
6666
6724
|
};
|
|
6667
|
-
request?: SecondParameter$
|
|
6725
|
+
request?: SecondParameter$6<typeof customFetch>;
|
|
6668
6726
|
}) => {
|
|
6669
6727
|
isMutating: boolean;
|
|
6670
6728
|
trigger: swr_mutation.TriggerWithOptionsArgs<RemoveMemberResponse, TError, string | readonly [`/v1/team/members/${string}`], Arguments>;
|
|
@@ -6674,14 +6732,14 @@ declare const useRemoveMember: <TError = ErrorType<ErrorResponse>>(id: string, o
|
|
|
6674
6732
|
swrKey: string | readonly [`/v1/team/members/${string}`];
|
|
6675
6733
|
};
|
|
6676
6734
|
|
|
6677
|
-
type SecondParameter$
|
|
6735
|
+
type SecondParameter$5<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
6678
6736
|
/**
|
|
6679
6737
|
* Create a new code tool that can be attached to agents. Provide the tool's name, code, description, and optionally an API key.
|
|
6680
6738
|
* @summary Create tool
|
|
6681
6739
|
*/
|
|
6682
6740
|
declare const getCreateToolUrl: () => string;
|
|
6683
6741
|
declare const createTool: (createToolBody: CreateToolBody, options?: RequestInit) => Promise<CodeToolCreated>;
|
|
6684
|
-
declare const getCreateToolMutationFetcher: (options?: SecondParameter$
|
|
6742
|
+
declare const getCreateToolMutationFetcher: (options?: SecondParameter$5<typeof customFetch>) => (_: Key, { arg }: {
|
|
6685
6743
|
arg: CreateToolBody;
|
|
6686
6744
|
}) => Promise<CodeToolCreated>;
|
|
6687
6745
|
declare const getCreateToolMutationKey: () => readonly ["/v1/tools"];
|
|
@@ -6693,7 +6751,7 @@ declare const useCreateTool: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
6693
6751
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createTool>>, TError, Key, CreateToolBody, Awaited<ReturnType<typeof createTool>>> & {
|
|
6694
6752
|
swrKey?: string;
|
|
6695
6753
|
};
|
|
6696
|
-
request?: SecondParameter$
|
|
6754
|
+
request?: SecondParameter$5<typeof customFetch>;
|
|
6697
6755
|
}) => {
|
|
6698
6756
|
isMutating: boolean;
|
|
6699
6757
|
trigger: swr_mutation.TriggerWithArgs<CodeToolCreated, TError, string | readonly ["/v1/tools"], CreateToolBody>;
|
|
@@ -6720,7 +6778,7 @@ declare const useListTools: <TError = ErrorType<ErrorResponse>>(params?: ListToo
|
|
|
6720
6778
|
swrKey?: Key;
|
|
6721
6779
|
enabled?: boolean;
|
|
6722
6780
|
};
|
|
6723
|
-
request?: SecondParameter$
|
|
6781
|
+
request?: SecondParameter$5<typeof customFetch>;
|
|
6724
6782
|
}) => {
|
|
6725
6783
|
data: ToolList | undefined;
|
|
6726
6784
|
error: TError | undefined;
|
|
@@ -6735,7 +6793,7 @@ declare const useListTools: <TError = ErrorType<ErrorResponse>>(params?: ListToo
|
|
|
6735
6793
|
*/
|
|
6736
6794
|
declare const getExecuteCodeUrl: (id: string) => string;
|
|
6737
6795
|
declare const executeCode: (id: string, executeCodeBody: ExecuteCodeBody, options?: RequestInit) => Promise<ToolExecutionResult>;
|
|
6738
|
-
declare const getExecuteCodeMutationFetcher: (id: string, options?: SecondParameter$
|
|
6796
|
+
declare const getExecuteCodeMutationFetcher: (id: string, options?: SecondParameter$5<typeof customFetch>) => (_: Key, { arg }: {
|
|
6739
6797
|
arg: ExecuteCodeBody;
|
|
6740
6798
|
}) => Promise<ToolExecutionResult>;
|
|
6741
6799
|
declare const getExecuteCodeMutationKey: (id: string) => readonly [`/v1/tools/${string}/execute`];
|
|
@@ -6747,7 +6805,7 @@ declare const useExecuteCode: <TError = ErrorType<ErrorResponse>>(id: string, op
|
|
|
6747
6805
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof executeCode>>, TError, Key, ExecuteCodeBody, Awaited<ReturnType<typeof executeCode>>> & {
|
|
6748
6806
|
swrKey?: string;
|
|
6749
6807
|
};
|
|
6750
|
-
request?: SecondParameter$
|
|
6808
|
+
request?: SecondParameter$5<typeof customFetch>;
|
|
6751
6809
|
}) => {
|
|
6752
6810
|
isMutating: boolean;
|
|
6753
6811
|
trigger: swr_mutation.TriggerWithArgs<ToolExecutionResult, TError, string | readonly [`/v1/tools/${string}/execute`], ExecuteCodeBody>;
|
|
@@ -6772,7 +6830,7 @@ declare const useGetTool: <TError = ErrorType<ErrorResponse>>(id: string, option
|
|
|
6772
6830
|
swrKey?: Key;
|
|
6773
6831
|
enabled?: boolean;
|
|
6774
6832
|
};
|
|
6775
|
-
request?: SecondParameter$
|
|
6833
|
+
request?: SecondParameter$5<typeof customFetch>;
|
|
6776
6834
|
}) => {
|
|
6777
6835
|
data: GetToolResponse | undefined;
|
|
6778
6836
|
error: TError | undefined;
|
|
@@ -6787,7 +6845,7 @@ declare const useGetTool: <TError = ErrorType<ErrorResponse>>(id: string, option
|
|
|
6787
6845
|
*/
|
|
6788
6846
|
declare const getUpdateToolUrl: (id: string) => string;
|
|
6789
6847
|
declare const updateTool: (id: string, updateToolBody: UpdateToolBody, options?: RequestInit) => Promise<CodeToolUpdated>;
|
|
6790
|
-
declare const getUpdateToolMutationFetcher: (id: string, options?: SecondParameter$
|
|
6848
|
+
declare const getUpdateToolMutationFetcher: (id: string, options?: SecondParameter$5<typeof customFetch>) => (_: Key, { arg }: {
|
|
6791
6849
|
arg: UpdateToolBody;
|
|
6792
6850
|
}) => Promise<CodeToolUpdated>;
|
|
6793
6851
|
declare const getUpdateToolMutationKey: (id: string) => readonly [`/v1/tools/${string}`];
|
|
@@ -6799,7 +6857,7 @@ declare const useUpdateTool: <TError = ErrorType<ErrorResponse>>(id: string, opt
|
|
|
6799
6857
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof updateTool>>, TError, Key, UpdateToolBody, Awaited<ReturnType<typeof updateTool>>> & {
|
|
6800
6858
|
swrKey?: string;
|
|
6801
6859
|
};
|
|
6802
|
-
request?: SecondParameter$
|
|
6860
|
+
request?: SecondParameter$5<typeof customFetch>;
|
|
6803
6861
|
}) => {
|
|
6804
6862
|
isMutating: boolean;
|
|
6805
6863
|
trigger: swr_mutation.TriggerWithArgs<CodeToolUpdated, TError, string | readonly [`/v1/tools/${string}`], UpdateToolBody>;
|
|
@@ -6809,7 +6867,7 @@ declare const useUpdateTool: <TError = ErrorType<ErrorResponse>>(id: string, opt
|
|
|
6809
6867
|
swrKey: string | readonly [`/v1/tools/${string}`];
|
|
6810
6868
|
};
|
|
6811
6869
|
|
|
6812
|
-
type SecondParameter$
|
|
6870
|
+
type SecondParameter$4<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
6813
6871
|
/**
|
|
6814
6872
|
* List all voice agents for your tenant.
|
|
6815
6873
|
|
|
@@ -6837,7 +6895,7 @@ declare const useListVoiceAgents: <TError = ErrorType<ErrorResponse>>(params?: L
|
|
|
6837
6895
|
swrKey?: Key;
|
|
6838
6896
|
enabled?: boolean;
|
|
6839
6897
|
};
|
|
6840
|
-
request?: SecondParameter$
|
|
6898
|
+
request?: SecondParameter$4<typeof customFetch>;
|
|
6841
6899
|
}) => {
|
|
6842
6900
|
data: VoiceAgentList | undefined;
|
|
6843
6901
|
error: TError | undefined;
|
|
@@ -6863,7 +6921,7 @@ For compatibility this endpoint is also available using the following (deprecate
|
|
|
6863
6921
|
*/
|
|
6864
6922
|
declare const getCreateVoiceAgentUrl: () => string;
|
|
6865
6923
|
declare const createVoiceAgent: (createVoiceAgentBody: CreateVoiceAgentBody, options?: RequestInit) => Promise<CreateVoiceAgentResponse>;
|
|
6866
|
-
declare const getCreateVoiceAgentMutationFetcher: (options?: SecondParameter$
|
|
6924
|
+
declare const getCreateVoiceAgentMutationFetcher: (options?: SecondParameter$4<typeof customFetch>) => (_: Key, { arg }: {
|
|
6867
6925
|
arg: CreateVoiceAgentBody;
|
|
6868
6926
|
}) => Promise<CreateVoiceAgentResponse>;
|
|
6869
6927
|
declare const getCreateVoiceAgentMutationKey: () => readonly ["/v1/voice-agents"];
|
|
@@ -6875,7 +6933,7 @@ declare const useCreateVoiceAgent: <TError = ErrorType<ErrorResponse>>(options?:
|
|
|
6875
6933
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createVoiceAgent>>, TError, Key, CreateVoiceAgentBody, Awaited<ReturnType<typeof createVoiceAgent>>> & {
|
|
6876
6934
|
swrKey?: string;
|
|
6877
6935
|
};
|
|
6878
|
-
request?: SecondParameter$
|
|
6936
|
+
request?: SecondParameter$4<typeof customFetch>;
|
|
6879
6937
|
}) => {
|
|
6880
6938
|
isMutating: boolean;
|
|
6881
6939
|
trigger: swr_mutation.TriggerWithArgs<CreateVoiceAgentResponse, TError, string | readonly ["/v1/voice-agents"], CreateVoiceAgentBody>;
|
|
@@ -6903,7 +6961,7 @@ declare const useGetVoiceAgent: <TError = ErrorType<ErrorResponse>>(voiceAgentId
|
|
|
6903
6961
|
swrKey?: Key;
|
|
6904
6962
|
enabled?: boolean;
|
|
6905
6963
|
};
|
|
6906
|
-
request?: SecondParameter$
|
|
6964
|
+
request?: SecondParameter$4<typeof customFetch>;
|
|
6907
6965
|
}) => {
|
|
6908
6966
|
data: GetVoiceAgentResponse | undefined;
|
|
6909
6967
|
error: TError | undefined;
|
|
@@ -6920,7 +6978,7 @@ To change the processor assignment, `call_processor_id` and `call_processor_type
|
|
|
6920
6978
|
*/
|
|
6921
6979
|
declare const getUpdateVoiceAgentUrl: (voiceAgentId: string) => string;
|
|
6922
6980
|
declare const updateVoiceAgent: (voiceAgentId: string, updateVoiceAgentBody: UpdateVoiceAgentBody, options?: RequestInit) => Promise<UpdateVoiceAgentResponse>;
|
|
6923
|
-
declare const getUpdateVoiceAgentMutationFetcher: (voiceAgentId: string, options?: SecondParameter$
|
|
6981
|
+
declare const getUpdateVoiceAgentMutationFetcher: (voiceAgentId: string, options?: SecondParameter$4<typeof customFetch>) => (_: Key, { arg }: {
|
|
6924
6982
|
arg: UpdateVoiceAgentBody;
|
|
6925
6983
|
}) => Promise<UpdateVoiceAgentResponse>;
|
|
6926
6984
|
declare const getUpdateVoiceAgentMutationKey: (voiceAgentId: string) => readonly [`/v1/voice-agents/${string}`];
|
|
@@ -6932,7 +6990,7 @@ declare const useUpdateVoiceAgent: <TError = ErrorType<ErrorResponse>>(voiceAgen
|
|
|
6932
6990
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof updateVoiceAgent>>, TError, Key, UpdateVoiceAgentBody, Awaited<ReturnType<typeof updateVoiceAgent>>> & {
|
|
6933
6991
|
swrKey?: string;
|
|
6934
6992
|
};
|
|
6935
|
-
request?: SecondParameter$
|
|
6993
|
+
request?: SecondParameter$4<typeof customFetch>;
|
|
6936
6994
|
}) => {
|
|
6937
6995
|
isMutating: boolean;
|
|
6938
6996
|
trigger: swr_mutation.TriggerWithArgs<UpdateVoiceAgentResponse, TError, string | readonly [`/v1/voice-agents/${string}`], UpdateVoiceAgentBody>;
|
|
@@ -6950,7 +7008,7 @@ For compatibility this endpoint is also available using the following (deprecate
|
|
|
6950
7008
|
*/
|
|
6951
7009
|
declare const getAddToolsToVoiceAgentUrl: (voiceAgentId: string) => string;
|
|
6952
7010
|
declare const addToolsToVoiceAgent: (voiceAgentId: string, addToolsToVoiceAgentBody: AddToolsToVoiceAgentBody, options?: RequestInit) => Promise<AddToolsToVoiceAgentResponse>;
|
|
6953
|
-
declare const getAddToolsToVoiceAgentMutationFetcher: (voiceAgentId: string, options?: SecondParameter$
|
|
7011
|
+
declare const getAddToolsToVoiceAgentMutationFetcher: (voiceAgentId: string, options?: SecondParameter$4<typeof customFetch>) => (_: Key, { arg }: {
|
|
6954
7012
|
arg: AddToolsToVoiceAgentBody;
|
|
6955
7013
|
}) => Promise<AddToolsToVoiceAgentResponse>;
|
|
6956
7014
|
declare const getAddToolsToVoiceAgentMutationKey: (voiceAgentId: string) => readonly [`/v1/voice-agents/${string}/tools`];
|
|
@@ -6962,7 +7020,7 @@ declare const useAddToolsToVoiceAgent: <TError = ErrorType<ErrorResponse>>(voice
|
|
|
6962
7020
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof addToolsToVoiceAgent>>, TError, Key, AddToolsToVoiceAgentBody, Awaited<ReturnType<typeof addToolsToVoiceAgent>>> & {
|
|
6963
7021
|
swrKey?: string;
|
|
6964
7022
|
};
|
|
6965
|
-
request?: SecondParameter$
|
|
7023
|
+
request?: SecondParameter$4<typeof customFetch>;
|
|
6966
7024
|
}) => {
|
|
6967
7025
|
isMutating: boolean;
|
|
6968
7026
|
trigger: swr_mutation.TriggerWithArgs<AddToolsToVoiceAgentResponse, TError, string | readonly [`/v1/voice-agents/${string}/tools`], AddToolsToVoiceAgentBody>;
|
|
@@ -6980,7 +7038,7 @@ For compatibility this endpoint is also available using the following (deprecate
|
|
|
6980
7038
|
*/
|
|
6981
7039
|
declare const getDeleteToolsFromVoiceAgentUrl: (voiceAgentId: string) => string;
|
|
6982
7040
|
declare const deleteToolsFromVoiceAgent: (voiceAgentId: string, deleteToolsFromVoiceAgentBody: DeleteToolsFromVoiceAgentBody, options?: RequestInit) => Promise<DeleteToolsFromVoiceAgentResponse>;
|
|
6983
|
-
declare const getDeleteToolsFromVoiceAgentMutationFetcher: (voiceAgentId: string, options?: SecondParameter$
|
|
7041
|
+
declare const getDeleteToolsFromVoiceAgentMutationFetcher: (voiceAgentId: string, options?: SecondParameter$4<typeof customFetch>) => (_: Key, { arg }: {
|
|
6984
7042
|
arg: DeleteToolsFromVoiceAgentBody;
|
|
6985
7043
|
}) => Promise<DeleteToolsFromVoiceAgentResponse>;
|
|
6986
7044
|
declare const getDeleteToolsFromVoiceAgentMutationKey: (voiceAgentId: string) => readonly [`/v1/voice-agents/${string}/tools`];
|
|
@@ -6992,7 +7050,7 @@ declare const useDeleteToolsFromVoiceAgent: <TError = ErrorType<ErrorResponse>>(
|
|
|
6992
7050
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof deleteToolsFromVoiceAgent>>, TError, Key, DeleteToolsFromVoiceAgentBody, Awaited<ReturnType<typeof deleteToolsFromVoiceAgent>>> & {
|
|
6993
7051
|
swrKey?: string;
|
|
6994
7052
|
};
|
|
6995
|
-
request?: SecondParameter$
|
|
7053
|
+
request?: SecondParameter$4<typeof customFetch>;
|
|
6996
7054
|
}) => {
|
|
6997
7055
|
isMutating: boolean;
|
|
6998
7056
|
trigger: swr_mutation.TriggerWithArgs<DeleteToolsFromVoiceAgentResponse, TError, string | readonly [`/v1/voice-agents/${string}/tools`], DeleteToolsFromVoiceAgentBody>;
|
|
@@ -7020,7 +7078,7 @@ declare const useGetVoiceAgentPlaceholders: <TError = ErrorType<ErrorResponse>>(
|
|
|
7020
7078
|
swrKey?: Key;
|
|
7021
7079
|
enabled?: boolean;
|
|
7022
7080
|
};
|
|
7023
|
-
request?: SecondParameter$
|
|
7081
|
+
request?: SecondParameter$4<typeof customFetch>;
|
|
7024
7082
|
}) => {
|
|
7025
7083
|
data: VoiceAgentPlaceholders | undefined;
|
|
7026
7084
|
error: TError | undefined;
|
|
@@ -7045,7 +7103,7 @@ declare const useGetVoiceAgentPrompt: <TError = ErrorType<ErrorResponse>>(voiceA
|
|
|
7045
7103
|
swrKey?: Key;
|
|
7046
7104
|
enabled?: boolean;
|
|
7047
7105
|
};
|
|
7048
|
-
request?: SecondParameter$
|
|
7106
|
+
request?: SecondParameter$4<typeof customFetch>;
|
|
7049
7107
|
}) => {
|
|
7050
7108
|
data: VoiceAgentPrompt | undefined;
|
|
7051
7109
|
error: TError | undefined;
|
|
@@ -7060,7 +7118,7 @@ declare const useGetVoiceAgentPrompt: <TError = ErrorType<ErrorResponse>>(voiceA
|
|
|
7060
7118
|
*/
|
|
7061
7119
|
declare const getUpdateVoiceAgentPromptUrl: (voiceAgentId: string) => string;
|
|
7062
7120
|
declare const updateVoiceAgentPrompt: (voiceAgentId: string, updateVoiceAgentPromptBody: UpdateVoiceAgentPromptBody, options?: RequestInit) => Promise<VoiceAgentPromptUpdated>;
|
|
7063
|
-
declare const getUpdateVoiceAgentPromptMutationFetcher: (voiceAgentId: string, options?: SecondParameter$
|
|
7121
|
+
declare const getUpdateVoiceAgentPromptMutationFetcher: (voiceAgentId: string, options?: SecondParameter$4<typeof customFetch>) => (_: Key, { arg }: {
|
|
7064
7122
|
arg: UpdateVoiceAgentPromptBody;
|
|
7065
7123
|
}) => Promise<VoiceAgentPromptUpdated>;
|
|
7066
7124
|
declare const getUpdateVoiceAgentPromptMutationKey: (voiceAgentId: string) => readonly [`/v1/voice-agents/${string}/prompt`];
|
|
@@ -7072,7 +7130,7 @@ declare const useUpdateVoiceAgentPrompt: <TError = ErrorType<ErrorResponse>>(voi
|
|
|
7072
7130
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof updateVoiceAgentPrompt>>, TError, Key, UpdateVoiceAgentPromptBody, Awaited<ReturnType<typeof updateVoiceAgentPrompt>>> & {
|
|
7073
7131
|
swrKey?: string;
|
|
7074
7132
|
};
|
|
7075
|
-
request?: SecondParameter$
|
|
7133
|
+
request?: SecondParameter$4<typeof customFetch>;
|
|
7076
7134
|
}) => {
|
|
7077
7135
|
isMutating: boolean;
|
|
7078
7136
|
trigger: swr_mutation.TriggerWithArgs<VoiceAgentPromptUpdated, TError, string | readonly [`/v1/voice-agents/${string}/prompt`], UpdateVoiceAgentPromptBody>;
|
|
@@ -7090,7 +7148,7 @@ For compatibility this endpoint is also available using the following (deprecate
|
|
|
7090
7148
|
*/
|
|
7091
7149
|
declare const getUpdateVoiceAgentModelsUrl: (voiceAgentId: string) => string;
|
|
7092
7150
|
declare const updateVoiceAgentModels: (voiceAgentId: string, updateVoiceAgentModelsBody: UpdateVoiceAgentModelsBody, options?: RequestInit) => Promise<UpdateVoiceAgentModelsResponse>;
|
|
7093
|
-
declare const getUpdateVoiceAgentModelsMutationFetcher: (voiceAgentId: string, options?: SecondParameter$
|
|
7151
|
+
declare const getUpdateVoiceAgentModelsMutationFetcher: (voiceAgentId: string, options?: SecondParameter$4<typeof customFetch>) => (_: Key, { arg }: {
|
|
7094
7152
|
arg: UpdateVoiceAgentModelsBody;
|
|
7095
7153
|
}) => Promise<UpdateVoiceAgentModelsResponse>;
|
|
7096
7154
|
declare const getUpdateVoiceAgentModelsMutationKey: (voiceAgentId: string) => readonly [`/v1/voice-agents/${string}/models`];
|
|
@@ -7102,7 +7160,7 @@ declare const useUpdateVoiceAgentModels: <TError = ErrorType<ErrorResponse>>(voi
|
|
|
7102
7160
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof updateVoiceAgentModels>>, TError, Key, UpdateVoiceAgentModelsBody, Awaited<ReturnType<typeof updateVoiceAgentModels>>> & {
|
|
7103
7161
|
swrKey?: string;
|
|
7104
7162
|
};
|
|
7105
|
-
request?: SecondParameter$
|
|
7163
|
+
request?: SecondParameter$4<typeof customFetch>;
|
|
7106
7164
|
}) => {
|
|
7107
7165
|
isMutating: boolean;
|
|
7108
7166
|
trigger: swr_mutation.TriggerWithArgs<UpdateVoiceAgentModelsResponse, TError, string | readonly [`/v1/voice-agents/${string}/models`], UpdateVoiceAgentModelsBody>;
|
|
@@ -7122,7 +7180,7 @@ For compatibility this endpoint is also available using the following (deprecate
|
|
|
7122
7180
|
*/
|
|
7123
7181
|
declare const getUpdateCallControlsUrl: (voiceAgentId: string) => string;
|
|
7124
7182
|
declare const updateCallControls: (voiceAgentId: string, updateCallControlsBody: UpdateCallControlsBody, options?: RequestInit) => Promise<UpdateVoiceAgentCallControlsResponse>;
|
|
7125
|
-
declare const getUpdateCallControlsMutationFetcher: (voiceAgentId: string, options?: SecondParameter$
|
|
7183
|
+
declare const getUpdateCallControlsMutationFetcher: (voiceAgentId: string, options?: SecondParameter$4<typeof customFetch>) => (_: Key, { arg }: {
|
|
7126
7184
|
arg: UpdateCallControlsBody;
|
|
7127
7185
|
}) => Promise<UpdateVoiceAgentCallControlsResponse>;
|
|
7128
7186
|
declare const getUpdateCallControlsMutationKey: (voiceAgentId: string) => readonly [`/v1/voice-agents/${string}/call-controls`];
|
|
@@ -7134,7 +7192,7 @@ declare const useUpdateCallControls: <TError = ErrorType<ErrorResponse>>(voiceAg
|
|
|
7134
7192
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof updateCallControls>>, TError, Key, UpdateCallControlsBody, Awaited<ReturnType<typeof updateCallControls>>> & {
|
|
7135
7193
|
swrKey?: string;
|
|
7136
7194
|
};
|
|
7137
|
-
request?: SecondParameter$
|
|
7195
|
+
request?: SecondParameter$4<typeof customFetch>;
|
|
7138
7196
|
}) => {
|
|
7139
7197
|
isMutating: boolean;
|
|
7140
7198
|
trigger: swr_mutation.TriggerWithArgs<UpdateVoiceAgentCallControlsResponse, TError, string | readonly [`/v1/voice-agents/${string}/call-controls`], UpdateCallControlsBody>;
|
|
@@ -7144,14 +7202,14 @@ declare const useUpdateCallControls: <TError = ErrorType<ErrorResponse>>(voiceAg
|
|
|
7144
7202
|
swrKey: string | readonly [`/v1/voice-agents/${string}/call-controls`];
|
|
7145
7203
|
};
|
|
7146
7204
|
|
|
7147
|
-
type SecondParameter$
|
|
7205
|
+
type SecondParameter$3<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
7148
7206
|
/**
|
|
7149
7207
|
* Create a webhook that fires when events occur for the specified worker.
|
|
7150
7208
|
* @summary Create worker webhook
|
|
7151
7209
|
*/
|
|
7152
7210
|
declare const getCreateWorkerWebhookUrl: (workerId: string) => string;
|
|
7153
7211
|
declare const createWorkerWebhook: (workerId: string, createWorkerWebhookBody: CreateWorkerWebhookBody, options?: RequestInit) => Promise<Webhook>;
|
|
7154
|
-
declare const getCreateWorkerWebhookMutationFetcher: (workerId: string, options?: SecondParameter$
|
|
7212
|
+
declare const getCreateWorkerWebhookMutationFetcher: (workerId: string, options?: SecondParameter$3<typeof customFetch>) => (_: Key, { arg }: {
|
|
7155
7213
|
arg: CreateWorkerWebhookBody;
|
|
7156
7214
|
}) => Promise<Webhook>;
|
|
7157
7215
|
declare const getCreateWorkerWebhookMutationKey: (workerId: string) => readonly [`/v1/workers/${string}/webhooks`];
|
|
@@ -7163,7 +7221,7 @@ declare const useCreateWorkerWebhook: <TError = ErrorType<ErrorResponse>>(worker
|
|
|
7163
7221
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createWorkerWebhook>>, TError, Key, CreateWorkerWebhookBody, Awaited<ReturnType<typeof createWorkerWebhook>>> & {
|
|
7164
7222
|
swrKey?: string;
|
|
7165
7223
|
};
|
|
7166
|
-
request?: SecondParameter$
|
|
7224
|
+
request?: SecondParameter$3<typeof customFetch>;
|
|
7167
7225
|
}) => {
|
|
7168
7226
|
isMutating: boolean;
|
|
7169
7227
|
trigger: swr_mutation.TriggerWithArgs<Webhook, TError, string | readonly [`/v1/workers/${string}/webhooks`], CreateWorkerWebhookBody>;
|
|
@@ -7188,7 +7246,7 @@ declare const useListWorkerWebhooks: <TError = ErrorType<ErrorResponse>>(workerI
|
|
|
7188
7246
|
swrKey?: Key;
|
|
7189
7247
|
enabled?: boolean;
|
|
7190
7248
|
};
|
|
7191
|
-
request?: SecondParameter$
|
|
7249
|
+
request?: SecondParameter$3<typeof customFetch>;
|
|
7192
7250
|
}) => {
|
|
7193
7251
|
data: WorkerWebhookList | undefined;
|
|
7194
7252
|
error: TError | undefined;
|
|
@@ -7206,7 +7264,7 @@ For compatibility this endpoint is also available using the following (deprecate
|
|
|
7206
7264
|
*/
|
|
7207
7265
|
declare const getCreateAgentWebhookUrl: (voiceAgentId: string) => string;
|
|
7208
7266
|
declare const createAgentWebhook: (voiceAgentId: string, createAgentWebhookBody: CreateAgentWebhookBody, options?: RequestInit) => Promise<Webhook>;
|
|
7209
|
-
declare const getCreateAgentWebhookMutationFetcher: (voiceAgentId: string, options?: SecondParameter$
|
|
7267
|
+
declare const getCreateAgentWebhookMutationFetcher: (voiceAgentId: string, options?: SecondParameter$3<typeof customFetch>) => (_: Key, { arg }: {
|
|
7210
7268
|
arg: CreateAgentWebhookBody;
|
|
7211
7269
|
}) => Promise<Webhook>;
|
|
7212
7270
|
declare const getCreateAgentWebhookMutationKey: (voiceAgentId: string) => readonly [`/v1/voice-agents/${string}/webhooks`];
|
|
@@ -7218,7 +7276,7 @@ declare const useCreateAgentWebhook: <TError = ErrorType<ErrorResponse>>(voiceAg
|
|
|
7218
7276
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createAgentWebhook>>, TError, Key, CreateAgentWebhookBody, Awaited<ReturnType<typeof createAgentWebhook>>> & {
|
|
7219
7277
|
swrKey?: string;
|
|
7220
7278
|
};
|
|
7221
|
-
request?: SecondParameter$
|
|
7279
|
+
request?: SecondParameter$3<typeof customFetch>;
|
|
7222
7280
|
}) => {
|
|
7223
7281
|
isMutating: boolean;
|
|
7224
7282
|
trigger: swr_mutation.TriggerWithArgs<Webhook, TError, string | readonly [`/v1/voice-agents/${string}/webhooks`], CreateAgentWebhookBody>;
|
|
@@ -7246,7 +7304,7 @@ declare const useListAgentWebhooks: <TError = ErrorType<ErrorResponse>>(voiceAge
|
|
|
7246
7304
|
swrKey?: Key;
|
|
7247
7305
|
enabled?: boolean;
|
|
7248
7306
|
};
|
|
7249
|
-
request?: SecondParameter$
|
|
7307
|
+
request?: SecondParameter$3<typeof customFetch>;
|
|
7250
7308
|
}) => {
|
|
7251
7309
|
data: VoiceAgentWebhookList | undefined;
|
|
7252
7310
|
error: TError | undefined;
|
|
@@ -7264,7 +7322,7 @@ For compatibility this endpoint is also available using the following (deprecate
|
|
|
7264
7322
|
*/
|
|
7265
7323
|
declare const getCreateInboxWebhookUrl: (inboxId: string) => string;
|
|
7266
7324
|
declare const createInboxWebhook: (inboxId: string, createInboxWebhookBody: CreateInboxWebhookBody, options?: RequestInit) => Promise<Webhook>;
|
|
7267
|
-
declare const getCreateInboxWebhookMutationFetcher: (inboxId: string, options?: SecondParameter$
|
|
7325
|
+
declare const getCreateInboxWebhookMutationFetcher: (inboxId: string, options?: SecondParameter$3<typeof customFetch>) => (_: Key, { arg }: {
|
|
7268
7326
|
arg: CreateInboxWebhookBody;
|
|
7269
7327
|
}) => Promise<Webhook>;
|
|
7270
7328
|
declare const getCreateInboxWebhookMutationKey: (inboxId: string) => readonly [`/v1/inboxes/${string}/webhooks`];
|
|
@@ -7276,7 +7334,7 @@ declare const useCreateInboxWebhook: <TError = ErrorType<ErrorResponse>>(inboxId
|
|
|
7276
7334
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createInboxWebhook>>, TError, Key, CreateInboxWebhookBody, Awaited<ReturnType<typeof createInboxWebhook>>> & {
|
|
7277
7335
|
swrKey?: string;
|
|
7278
7336
|
};
|
|
7279
|
-
request?: SecondParameter$
|
|
7337
|
+
request?: SecondParameter$3<typeof customFetch>;
|
|
7280
7338
|
}) => {
|
|
7281
7339
|
isMutating: boolean;
|
|
7282
7340
|
trigger: swr_mutation.TriggerWithArgs<Webhook, TError, string | readonly [`/v1/inboxes/${string}/webhooks`], CreateInboxWebhookBody>;
|
|
@@ -7304,7 +7362,7 @@ declare const useListInboxWebhooks: <TError = ErrorType<ErrorResponse>>(inboxId:
|
|
|
7304
7362
|
swrKey?: Key;
|
|
7305
7363
|
enabled?: boolean;
|
|
7306
7364
|
};
|
|
7307
|
-
request?: SecondParameter$
|
|
7365
|
+
request?: SecondParameter$3<typeof customFetch>;
|
|
7308
7366
|
}) => {
|
|
7309
7367
|
data: InboxWebhookList | undefined;
|
|
7310
7368
|
error: TError | undefined;
|
|
@@ -7319,7 +7377,7 @@ declare const useListInboxWebhooks: <TError = ErrorType<ErrorResponse>>(inboxId:
|
|
|
7319
7377
|
*/
|
|
7320
7378
|
declare const getCreateExtractorWebhookUrl: (id: string) => string;
|
|
7321
7379
|
declare const createExtractorWebhook: (id: string, createExtractorWebhookBody: CreateExtractorWebhookBody, options?: RequestInit) => Promise<Webhook>;
|
|
7322
|
-
declare const getCreateExtractorWebhookMutationFetcher: (id: string, options?: SecondParameter$
|
|
7380
|
+
declare const getCreateExtractorWebhookMutationFetcher: (id: string, options?: SecondParameter$3<typeof customFetch>) => (_: Key, { arg }: {
|
|
7323
7381
|
arg: CreateExtractorWebhookBody;
|
|
7324
7382
|
}) => Promise<Webhook>;
|
|
7325
7383
|
declare const getCreateExtractorWebhookMutationKey: (id: string) => readonly [`/v1/extractors/${string}/webhooks`];
|
|
@@ -7331,7 +7389,7 @@ declare const useCreateExtractorWebhook: <TError = ErrorType<ErrorResponse>>(id:
|
|
|
7331
7389
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createExtractorWebhook>>, TError, Key, CreateExtractorWebhookBody, Awaited<ReturnType<typeof createExtractorWebhook>>> & {
|
|
7332
7390
|
swrKey?: string;
|
|
7333
7391
|
};
|
|
7334
|
-
request?: SecondParameter$
|
|
7392
|
+
request?: SecondParameter$3<typeof customFetch>;
|
|
7335
7393
|
}) => {
|
|
7336
7394
|
isMutating: boolean;
|
|
7337
7395
|
trigger: swr_mutation.TriggerWithArgs<Webhook, TError, string | readonly [`/v1/extractors/${string}/webhooks`], CreateExtractorWebhookBody>;
|
|
@@ -7356,7 +7414,7 @@ declare const useListWebhooks: <TError = ErrorType<ErrorResponse>>(id: string, o
|
|
|
7356
7414
|
swrKey?: Key;
|
|
7357
7415
|
enabled?: boolean;
|
|
7358
7416
|
};
|
|
7359
|
-
request?: SecondParameter$
|
|
7417
|
+
request?: SecondParameter$3<typeof customFetch>;
|
|
7360
7418
|
}) => {
|
|
7361
7419
|
data: ExtractorWebhookList | undefined;
|
|
7362
7420
|
error: TError | undefined;
|
|
@@ -7371,7 +7429,7 @@ declare const useListWebhooks: <TError = ErrorType<ErrorResponse>>(id: string, o
|
|
|
7371
7429
|
*/
|
|
7372
7430
|
declare const getDeleteWebhookUrl: (id: string) => string;
|
|
7373
7431
|
declare const deleteWebhook: (id: string, options?: RequestInit) => Promise<DeleteWebhookResponse>;
|
|
7374
|
-
declare const getDeleteWebhookMutationFetcher: (id: string, options?: SecondParameter$
|
|
7432
|
+
declare const getDeleteWebhookMutationFetcher: (id: string, options?: SecondParameter$3<typeof customFetch>) => (_: Key, __: {
|
|
7375
7433
|
arg: Arguments;
|
|
7376
7434
|
}) => Promise<DeleteWebhookResponse>;
|
|
7377
7435
|
declare const getDeleteWebhookMutationKey: (id: string) => readonly [`/v1/webhooks/${string}`];
|
|
@@ -7383,7 +7441,7 @@ declare const useDeleteWebhook: <TError = ErrorType<ErrorResponse>>(id: string,
|
|
|
7383
7441
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof deleteWebhook>>, TError, Key, Arguments, Awaited<ReturnType<typeof deleteWebhook>>> & {
|
|
7384
7442
|
swrKey?: string;
|
|
7385
7443
|
};
|
|
7386
|
-
request?: SecondParameter$
|
|
7444
|
+
request?: SecondParameter$3<typeof customFetch>;
|
|
7387
7445
|
}) => {
|
|
7388
7446
|
isMutating: boolean;
|
|
7389
7447
|
trigger: swr_mutation.TriggerWithOptionsArgs<DeleteWebhookResponse, TError, string | readonly [`/v1/webhooks/${string}`], Arguments>;
|
|
@@ -7408,7 +7466,7 @@ declare const useGetWebhook: <TError = ErrorType<ErrorResponse>>(id: string, opt
|
|
|
7408
7466
|
swrKey?: Key;
|
|
7409
7467
|
enabled?: boolean;
|
|
7410
7468
|
};
|
|
7411
|
-
request?: SecondParameter$
|
|
7469
|
+
request?: SecondParameter$3<typeof customFetch>;
|
|
7412
7470
|
}) => {
|
|
7413
7471
|
data: Webhook | undefined;
|
|
7414
7472
|
error: TError | undefined;
|
|
@@ -7433,7 +7491,7 @@ declare const useListWebhookDeliveries: <TError = ErrorType<ErrorResponse>>(id:
|
|
|
7433
7491
|
swrKey?: Key;
|
|
7434
7492
|
enabled?: boolean;
|
|
7435
7493
|
};
|
|
7436
|
-
request?: SecondParameter$
|
|
7494
|
+
request?: SecondParameter$3<typeof customFetch>;
|
|
7437
7495
|
}) => {
|
|
7438
7496
|
data: WebhookDeliveryList | undefined;
|
|
7439
7497
|
error: TError | undefined;
|
|
@@ -7448,7 +7506,7 @@ declare const useListWebhookDeliveries: <TError = ErrorType<ErrorResponse>>(id:
|
|
|
7448
7506
|
*/
|
|
7449
7507
|
declare const getTestWebhookUrl: (id: string) => string;
|
|
7450
7508
|
declare const testWebhook: (id: string, options?: RequestInit) => Promise<WebhookTestResult>;
|
|
7451
|
-
declare const getTestWebhookMutationFetcher: (id: string, options?: SecondParameter$
|
|
7509
|
+
declare const getTestWebhookMutationFetcher: (id: string, options?: SecondParameter$3<typeof customFetch>) => (_: Key, __: {
|
|
7452
7510
|
arg: Arguments;
|
|
7453
7511
|
}) => Promise<WebhookTestResult>;
|
|
7454
7512
|
declare const getTestWebhookMutationKey: (id: string) => readonly [`/v1/webhooks/${string}/test`];
|
|
@@ -7460,7 +7518,7 @@ declare const useTestWebhook: <TError = ErrorType<ErrorResponse>>(id: string, op
|
|
|
7460
7518
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof testWebhook>>, TError, Key, Arguments, Awaited<ReturnType<typeof testWebhook>>> & {
|
|
7461
7519
|
swrKey?: string;
|
|
7462
7520
|
};
|
|
7463
|
-
request?: SecondParameter$
|
|
7521
|
+
request?: SecondParameter$3<typeof customFetch>;
|
|
7464
7522
|
}) => {
|
|
7465
7523
|
isMutating: boolean;
|
|
7466
7524
|
trigger: swr_mutation.TriggerWithOptionsArgs<WebhookTestResult, TError, string | readonly [`/v1/webhooks/${string}/test`], Arguments>;
|
|
@@ -7470,7 +7528,7 @@ declare const useTestWebhook: <TError = ErrorType<ErrorResponse>>(id: string, op
|
|
|
7470
7528
|
swrKey: string | readonly [`/v1/webhooks/${string}/test`];
|
|
7471
7529
|
};
|
|
7472
7530
|
|
|
7473
|
-
type SecondParameter$
|
|
7531
|
+
type SecondParameter$2<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
7474
7532
|
/**
|
|
7475
7533
|
* List all worker runs with pagination, filtering, and sorting.
|
|
7476
7534
|
|
|
@@ -7495,7 +7553,7 @@ declare const useListWorkerRuns: <TError = ErrorType<ErrorResponse>>(params?: Li
|
|
|
7495
7553
|
swrKey?: Key;
|
|
7496
7554
|
enabled?: boolean;
|
|
7497
7555
|
};
|
|
7498
|
-
request?: SecondParameter$
|
|
7556
|
+
request?: SecondParameter$2<typeof customFetch>;
|
|
7499
7557
|
}) => {
|
|
7500
7558
|
data: WorkerRunList | undefined;
|
|
7501
7559
|
error: TError | undefined;
|
|
@@ -7512,7 +7570,7 @@ Provide a non-empty `scope` object to define what the worker should process (e.g
|
|
|
7512
7570
|
*/
|
|
7513
7571
|
declare const getCreateWorkerRunUrl: () => string;
|
|
7514
7572
|
declare const createWorkerRun: (createWorkerRunBody: CreateWorkerRunBody, options?: RequestInit) => Promise<WorkerRunCreated>;
|
|
7515
|
-
declare const getCreateWorkerRunMutationFetcher: (options?: SecondParameter$
|
|
7573
|
+
declare const getCreateWorkerRunMutationFetcher: (options?: SecondParameter$2<typeof customFetch>) => (_: Key, { arg }: {
|
|
7516
7574
|
arg: CreateWorkerRunBody;
|
|
7517
7575
|
}) => Promise<WorkerRunCreated>;
|
|
7518
7576
|
declare const getCreateWorkerRunMutationKey: () => readonly ["/v1/worker-runs"];
|
|
@@ -7524,7 +7582,7 @@ declare const useCreateWorkerRun: <TError = ErrorType<ErrorResponse>>(options?:
|
|
|
7524
7582
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createWorkerRun>>, TError, Key, CreateWorkerRunBody, Awaited<ReturnType<typeof createWorkerRun>>> & {
|
|
7525
7583
|
swrKey?: string;
|
|
7526
7584
|
};
|
|
7527
|
-
request?: SecondParameter$
|
|
7585
|
+
request?: SecondParameter$2<typeof customFetch>;
|
|
7528
7586
|
}) => {
|
|
7529
7587
|
isMutating: boolean;
|
|
7530
7588
|
trigger: swr_mutation.TriggerWithArgs<WorkerRunCreated, TError, string | readonly ["/v1/worker-runs"], CreateWorkerRunBody>;
|
|
@@ -7549,7 +7607,7 @@ declare const useGetWorkerRun: <TError = ErrorType<ErrorResponse>>(workerRunId:
|
|
|
7549
7607
|
swrKey?: Key;
|
|
7550
7608
|
enabled?: boolean;
|
|
7551
7609
|
};
|
|
7552
|
-
request?: SecondParameter$
|
|
7610
|
+
request?: SecondParameter$2<typeof customFetch>;
|
|
7553
7611
|
}) => {
|
|
7554
7612
|
data: WorkerRun | undefined;
|
|
7555
7613
|
error: TError | undefined;
|
|
@@ -7574,7 +7632,7 @@ declare const useListWorkerRunMessages: <TError = ErrorType<ErrorResponse>>(work
|
|
|
7574
7632
|
swrKey?: Key;
|
|
7575
7633
|
enabled?: boolean;
|
|
7576
7634
|
};
|
|
7577
|
-
request?: SecondParameter$
|
|
7635
|
+
request?: SecondParameter$2<typeof customFetch>;
|
|
7578
7636
|
}) => {
|
|
7579
7637
|
data: WorkerRunMessageList | undefined;
|
|
7580
7638
|
error: TError | undefined;
|
|
@@ -7589,7 +7647,7 @@ declare const useListWorkerRunMessages: <TError = ErrorType<ErrorResponse>>(work
|
|
|
7589
7647
|
*/
|
|
7590
7648
|
declare const getUpdateWorkerRunScopeUrl: (workerRunId: string) => string;
|
|
7591
7649
|
declare const updateWorkerRunScope: (workerRunId: string, updateWorkerRunScopeBody: UpdateWorkerRunScopeBody, options?: RequestInit) => Promise<WorkerRun>;
|
|
7592
|
-
declare const getUpdateWorkerRunScopeMutationFetcher: (workerRunId: string, options?: SecondParameter$
|
|
7650
|
+
declare const getUpdateWorkerRunScopeMutationFetcher: (workerRunId: string, options?: SecondParameter$2<typeof customFetch>) => (_: Key, { arg }: {
|
|
7593
7651
|
arg: UpdateWorkerRunScopeBody;
|
|
7594
7652
|
}) => Promise<WorkerRun>;
|
|
7595
7653
|
declare const getUpdateWorkerRunScopeMutationKey: (workerRunId: string) => readonly [`/v1/worker-runs/${string}/scope`];
|
|
@@ -7601,7 +7659,7 @@ declare const useUpdateWorkerRunScope: <TError = ErrorType<ErrorResponse>>(worke
|
|
|
7601
7659
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof updateWorkerRunScope>>, TError, Key, UpdateWorkerRunScopeBody, Awaited<ReturnType<typeof updateWorkerRunScope>>> & {
|
|
7602
7660
|
swrKey?: string;
|
|
7603
7661
|
};
|
|
7604
|
-
request?: SecondParameter$
|
|
7662
|
+
request?: SecondParameter$2<typeof customFetch>;
|
|
7605
7663
|
}) => {
|
|
7606
7664
|
isMutating: boolean;
|
|
7607
7665
|
trigger: swr_mutation.TriggerWithArgs<WorkerRun, TError, string | readonly [`/v1/worker-runs/${string}/scope`], UpdateWorkerRunScopeBody>;
|
|
@@ -7611,6 +7669,58 @@ declare const useUpdateWorkerRunScope: <TError = ErrorType<ErrorResponse>>(worke
|
|
|
7611
7669
|
swrKey: string | readonly [`/v1/worker-runs/${string}/scope`];
|
|
7612
7670
|
};
|
|
7613
7671
|
|
|
7672
|
+
type SecondParameter$1<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
7673
|
+
/**
|
|
7674
|
+
* List tools attached to the calling worker. Worker-only endpoint.
|
|
7675
|
+
* @summary List worker tools
|
|
7676
|
+
*/
|
|
7677
|
+
declare const getWorkerListToolsUrl: () => string;
|
|
7678
|
+
declare const workerListTools: (options?: RequestInit) => Promise<WorkerToolList>;
|
|
7679
|
+
declare const getWorkerListToolsKey: () => readonly ["/worker/v1/tools"];
|
|
7680
|
+
type WorkerListToolsQueryResult = NonNullable<Awaited<ReturnType<typeof workerListTools>>>;
|
|
7681
|
+
/**
|
|
7682
|
+
* @summary List worker tools
|
|
7683
|
+
*/
|
|
7684
|
+
declare const useWorkerListTools: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
7685
|
+
swr?: SWRConfiguration<Awaited<ReturnType<typeof workerListTools>>, TError> & {
|
|
7686
|
+
swrKey?: Key;
|
|
7687
|
+
enabled?: boolean;
|
|
7688
|
+
};
|
|
7689
|
+
request?: SecondParameter$1<typeof customFetch>;
|
|
7690
|
+
}) => {
|
|
7691
|
+
data: WorkerToolList | undefined;
|
|
7692
|
+
error: TError | undefined;
|
|
7693
|
+
mutate: swr.KeyedMutator<WorkerToolList>;
|
|
7694
|
+
isValidating: boolean;
|
|
7695
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
7696
|
+
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
7697
|
+
};
|
|
7698
|
+
/**
|
|
7699
|
+
* Retrieve a tool attached to the calling worker, including its invocation schema. Worker-only endpoint.
|
|
7700
|
+
* @summary Get worker tool
|
|
7701
|
+
*/
|
|
7702
|
+
declare const getWorkerGetToolUrl: (id: string) => string;
|
|
7703
|
+
declare const workerGetTool: (id: string, options?: RequestInit) => Promise<GetWorkerToolResponse>;
|
|
7704
|
+
declare const getWorkerGetToolKey: (id: string) => readonly [`/worker/v1/tools/${string}`];
|
|
7705
|
+
type WorkerGetToolQueryResult = NonNullable<Awaited<ReturnType<typeof workerGetTool>>>;
|
|
7706
|
+
/**
|
|
7707
|
+
* @summary Get worker tool
|
|
7708
|
+
*/
|
|
7709
|
+
declare const useWorkerGetTool: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
|
|
7710
|
+
swr?: SWRConfiguration<Awaited<ReturnType<typeof workerGetTool>>, TError> & {
|
|
7711
|
+
swrKey?: Key;
|
|
7712
|
+
enabled?: boolean;
|
|
7713
|
+
};
|
|
7714
|
+
request?: SecondParameter$1<typeof customFetch>;
|
|
7715
|
+
}) => {
|
|
7716
|
+
data: GetWorkerToolResponse | undefined;
|
|
7717
|
+
error: TError | undefined;
|
|
7718
|
+
mutate: swr.KeyedMutator<GetWorkerToolResponse>;
|
|
7719
|
+
isValidating: boolean;
|
|
7720
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
7721
|
+
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
7722
|
+
};
|
|
7723
|
+
|
|
7614
7724
|
type SecondParameter<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
7615
7725
|
/**
|
|
7616
7726
|
* Create a new worker with a name, prompt, and env vars.
|
|
@@ -7771,4 +7881,4 @@ declare const useUpdateWorkerPrompt: <TError = ErrorType<ErrorResponse>>(workerI
|
|
|
7771
7881
|
swrKey: string | readonly [`/v1/workers/${string}/prompt`];
|
|
7772
7882
|
};
|
|
7773
7883
|
|
|
7774
|
-
export { type AddToolsToVoiceAgentBody, type AddToolsToVoiceAgentMutationResult, type AddToolsToVoiceAgentResponse, type ApiKey, type ApiKeyCreated, type ApiKeyList, type Artifact, type ArtifactCreated, type ArtifactCreatedItem, type ArtifactDetail, type ArtifactDetailData, type ArtifactDetailDataMetadata, type ArtifactList, type ArtifactMetadata, type ArtifactMetadataKeys, type ArtifactMetadataKeysData, type ArtifactMetadataKeysDataValues, type AuthTokens, type AvallonConfig, AvallonError, type Call, type CallAnalytics, type CallAnalyticsCallsOverTimeItem, type CallAnalyticsDurationDistributionItem, type CallAnalyticsEvaluationOverTimeItem, type CallAnalyticsMetricPerformanceItem, type CallAnalyticsScoreDistributionItem, type CallAnalyticsSummary, type CallDetail, CallDetailDirection, type CallDetailEvaluation, type CallDetailMetadata, CallDirection, type CallEvaluation, type CallEvaluationMetricsItem, type CallEvaluationProperty, type CallList, type CallMessage, type CallMessageMetadata, type CallMessageToolArguments, type CallMessageToolResult, type CallMetadata, type CancelJobMutationResult, type CaseList, type CaseSummary, type CaseSummaryCreatedBy, type ChatAgent, type ChatAgentCreated, type ChatAgentList, type ChatCreated, type ChatHistory, type ChatHistoryMessagesItem, ChatHistoryMessagesItemRole, type ChatList, type ChatListItem, type ChatMessage, type ChatMessageCreated, type ChatMessageCreatedMessage, type ChatMessageCreatedMessageContentItem, type ChatMessageList, type ChatMessagePart, ChatMessageRole, type CheckInboxAvailabilityParams, type CheckInboxAvailabilityQueryResult, type ClaimCreated, type ClaimDetail, type ClaimDetailArtifactsItem, type ClaimDetailClaim, type ClaimDetailExtractorJob, type ClaimDetailSourcesItem, type ClaimList, type ClaimListClaimsItem, type CodeTool, type CodeToolCreated, type CodeToolCreatedTool, type CodeToolCreatedToolSchema, type CodeToolSchema, type CodeToolSummary, type CodeToolUpdated, type CodeToolUpdatedTool, type CodeToolUpdatedToolSchema, type ConfirmationResponse, type CreateAgentWebhookBody, type CreateAgentWebhookMutationResult, type CreateApiKeyBody, CreateApiKeyBodyEnvironment, type CreateApiKeyMutationResult, type CreateArtifactBody, type CreateArtifactBodyMetadata, type CreateArtifactBodyProcessingOptions, type CreateArtifactMutationResult, type CreateCallFeedbackMutationResult, type CreateChatAgentBody, type CreateChatAgentMutationResult, type CreateChatBody, type CreateChatMutationResult, type CreateClaimMutationResult, type CreateEmailBody, CreateEmailBodyDirection, type CreateEmailMutationResult, type CreateExtractorBody, type CreateExtractorBodySchema, type CreateExtractorJobBody, type CreateExtractorJobBodyScope, type CreateExtractorJobMutationResult, type CreateExtractorMutationResult, type CreateExtractorWebhookBody, type CreateExtractorWebhookMutationResult, type CreateFeedbackRequest, type CreateInboxBody, CreateInboxBodyProcessorType, type CreateInboxMutationResult, type CreateInboxWebhookBody, type CreateInboxWebhookMutationResult, type CreateToolBody, type CreateToolMutationResult, type CreateVoiceAgentBody, CreateVoiceAgentBodyCallProcessorType, CreateVoiceAgentBodyDirection, CreateVoiceAgentBodyLanguage, CreateVoiceAgentBodyLlmModel, CreateVoiceAgentBodySttModel, CreateVoiceAgentBodyTtsModel, CreateVoiceAgentBodyTtsProvider, type CreateVoiceAgentMutationResult, type CreateVoiceAgentResponse, type CreateWorkerBody, type CreateWorkerBodyEnvVars, type CreateWorkerMutationResult, type CreateWorkerRunBody, type CreateWorkerRunBodyScope, type CreateWorkerRunMutationResult, type CreateWorkerWebhookBody, type CreateWorkerWebhookMutationResult, type DeleteCallFeedbackMutationResult, type DeleteToolsFromVoiceAgentBody, type DeleteToolsFromVoiceAgentMutationResult, type DeleteToolsFromVoiceAgentResponse, type DeleteWebhookMutationResult, type DeleteWebhookResponse, type Email, type EmailCreated, EmailCreatedDirection, type EmailDetail, EmailDetailDirection, EmailDirection, type EmailList, type EmailReplyResult, EmailReplyResultValue, type EmailSendResult, type EmailThread, type EmailThreadList, type EmptyResponse, type ErrorResponse, type ErrorResponseData, type ExecuteCodeBody, type ExecuteCodeBodyParams, type ExecuteCodeMutationResult, type Extract, type ExtractList, type ExtractProcessorScope, type ExtractScope, type ExtractSummary, type ExtractSummaryProcessorScope, type ExtractSummaryScope, type Extractor, type ExtractorCreated, type ExtractorCreatedSchema, type ExtractorJob, type ExtractorJobCreated, type ExtractorJobCreatedScope, type ExtractorJobDetail, type ExtractorJobDetailScope, type ExtractorJobList, type ExtractorJobScope, type ExtractorList, type ExtractorSchema, type ExtractorSummary, type ExtractorUpdated, type ExtractorUpdatedSchema, type ExtractorWebhookList, type Feedback, type GetArtifactMetadataKeysParams, type GetArtifactMetadataKeysQueryResult, type GetArtifactQueryResult, type GetArtifactUploadUrl200, type GetArtifactUploadUrlBody, type GetArtifactUploadUrlMutationResult, type GetCallAnalyticsParams, type GetCallAnalyticsQueryResult, type GetCallEvaluationQueryResult, type GetCallParams, type GetCallQueryResult, type GetChatAgentQueryResult, type GetChatQueryResult, type GetClaimDetailQueryResult, type GetEmailQueryResult, type GetExtractCitations200, type GetExtractCitations200Chunks, type GetExtractCitations200ChunksBoundingBox, type GetExtractCitationsQueryResult, type GetExtractQueryResult, type GetExtractorJobQueryResult, type GetExtractorJobResponse, type GetExtractorQueryResult, type GetExtractorResponse, GetOAuthUrlCodeChallengeMethod, type GetOAuthUrlParams, GetOAuthUrlProvider, type GetOAuthUrlQueryResult, type GetProfileQueryResult, type GetSessionToken200, type GetSessionTokenBody, type GetSessionTokenMutationResult, type GetToolQueryResult, type GetToolResponse, type GetVoiceAgentPlaceholdersQueryResult, type GetVoiceAgentPromptQueryResult, type GetVoiceAgentQueryResult, type GetVoiceAgentResponse, type GetWebhookQueryResult, type GetWorkerPromptQueryResult, type GetWorkerQueryResult, type GetWorkerRunQueryResult, type GetWorkerRunResponse, type Inbox, type InboxAvailability, type InboxList, InboxProcessorType, type InboxWebhookList, type ListAgentWebhooksQueryResult, ListApiKeysIncludeRevoked, type ListApiKeysParams, type ListApiKeysQueryResult, type ListArtifactsParams, type ListArtifactsQueryResult, ListArtifactsSortBy, ListArtifactsSortOrder, type ListCallFeedbackParams, type ListCallFeedbackQueryResult, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, type ListCallsParams, type ListCallsQueryResult, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, type ListCasesParams, type ListCasesQueryResult, ListCasesSortBy, ListCasesSortOrder, type ListChatAgentsParams, type ListChatAgentsQueryResult, ListChatAgentsSortBy, ListChatAgentsSortOrder, type ListChatMessagesParams, type ListChatMessagesQueryResult, ListChatMessagesSortBy, ListChatMessagesSortOrder, type ListChatsParams, type ListChatsQueryResult, ListChatsSortBy, ListChatsSortOrder, type ListClaimsParams, type ListClaimsQueryResult, ListClaimsSortBy, ListClaimsSortOrder, type ListEmailThreadsParams, type ListEmailThreadsQueryResult, ListEmailThreadsSortBy, ListEmailThreadsSortOrder, type ListEmailsParams, type ListEmailsQueryResult, ListEmailsSortBy, ListEmailsSortOrder, type ListExtractorJobsParams, type ListExtractorJobsQueryResult, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, type ListExtractorsParams, type ListExtractorsQueryResult, ListExtractorsSortBy, ListExtractorsSortOrder, type ListExtractsParams, type ListExtractsQueryResult, ListExtractsSortBy, ListExtractsSortOrder, type ListInboxWebhooksQueryResult, type ListInboxesParams, type ListInboxesQueryResult, ListInboxesSortBy, ListInboxesSortOrder, type ListJobsParams, type ListJobsQueryResult, ListJobsStatusItem, type ListTeamMembersQueryResult, type ListTeamMembersResponse, type ListToolsParams, type ListToolsQueryResult, ListToolsSortBy, ListToolsSortOrder, type ListVoiceAgentsParams, type ListVoiceAgentsQueryResult, type ListWebhookDeliveriesParams, type ListWebhookDeliveriesQueryResult, ListWebhookDeliveriesSortOrder, type ListWebhooksQueryResult, type ListWorkerRunMessagesParams, type ListWorkerRunMessagesQueryResult, type ListWorkerRunsParams, type ListWorkerRunsQueryResult, ListWorkerRunsSortBy, ListWorkerRunsSortOrder, ListWorkerRunsStatus, type ListWorkerWebhooksQueryResult, type ListWorkersParams, type ListWorkersQueryResult, ListWorkersSortBy, ListWorkersSortOrder, type OAuthUrl, type OutboundJob, type OutboundJobList, type OutboundJobMetadata, type OutboundJobPayload, OutboundJobStatus, type PostChatMessageBody, type PostChatMessageMutationResult, type Profile, ProfilePermissionsItem, ProfileRole, type ProfileTenant, type ProfileTenants, type RefreshTokenBody, type RefreshTokenMutationResult, type RemoveMemberMutationResult, type RemoveMemberResponse, type ReplyToEmailBody, type ReplyToEmailMutationResult, type RevokeApiKeyMutationResult, type ScheduleJobBody, type ScheduleJobBodyMetadata, type ScheduleJobBodyPayload, type ScheduleJobMutationResult, type SendEmailBody, type SendEmailMutationResult, type SignInBody, type SignInMutationResult, type SignUpBody, type SignUpMutationResult, type TeamMember, TeamMemberRole, type TestWebhookMutationResult, type ToolExecutionResult, type ToolExecutionResultError, type ToolExecutionResultTracesItem, type ToolList, type UpdateArtifactMetadataBody, type UpdateArtifactMetadataBodyMetadata, type UpdateArtifactMetadataMutationResult, type UpdateCallControlsBody, type UpdateCallControlsMutationResult, type UpdateChatAgentMutationResult, type UpdateChatAgentRequest, type UpdateExtractorBody, type UpdateExtractorBodySchema, type UpdateExtractorMutationResult, type UpdateInboxBody, type UpdateInboxBodyProcessor, UpdateInboxBodyProcessorType, type UpdateInboxMutationResult, type UpdateMemberRoleBody, UpdateMemberRoleBodyRole, type UpdateMemberRoleMutationResult, type UpdateMemberRoleResponse, type UpdateToolBody, type UpdateToolMutationResult, type UpdateVoiceAgentBody, UpdateVoiceAgentBodyCallProcessorType, type UpdateVoiceAgentCallControlsResponse, type UpdateVoiceAgentModelsBody, UpdateVoiceAgentModelsBodyLanguage, UpdateVoiceAgentModelsBodyLlmModel, UpdateVoiceAgentModelsBodySttModel, UpdateVoiceAgentModelsBodyTtsModel, UpdateVoiceAgentModelsBodyTtsProvider, type UpdateVoiceAgentModelsMutationResult, type UpdateVoiceAgentModelsResponse, type UpdateVoiceAgentMutationResult, type UpdateVoiceAgentPromptBody, type UpdateVoiceAgentPromptMutationResult, type UpdateVoiceAgentResponse, type UpdateWorkerBody, type UpdateWorkerBodySchema, type UpdateWorkerMutationResult, type UpdateWorkerPromptBody, type UpdateWorkerPromptMutationResult, type UpdateWorkerRunScopeBody, type UpdateWorkerRunScopeBodyScope, type UpdateWorkerRunScopeMutationResult, type UploadFileBody, type UploadFileBodyMetadata, type UploadFileBodyProcessingOptions, type UploadFileMutationResult, type UploadFileResponse, type VoiceAgent, VoiceAgentBackgroundSounds, VoiceAgentDirection, VoiceAgentLanguage, type VoiceAgentList, VoiceAgentLlmModel, type VoiceAgentPlaceholders, type VoiceAgentPrompt, type VoiceAgentPromptUpdated, VoiceAgentSttModel, VoiceAgentTtsModel, VoiceAgentTtsProvider, type VoiceAgentWebhookList, type Webhook, type WebhookDelivery, type WebhookDeliveryList, type WebhookScope, type WebhookTestResult, type Worker, type WorkerList, type WorkerPrompt, type WorkerPromptUpdated, type WorkerRun, type WorkerRunCreated, type WorkerRunCreatedScope, type WorkerRunList, type WorkerRunMessage, type WorkerRunMessageList, type WorkerRunMessageMessage, type WorkerRunScope, type WorkerSchema, type WorkerSummary, type WorkerWebhookList, addToolsToVoiceAgent, cancelJob, checkInboxAvailability, configure, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createChat, createChatAgent, createClaim, createEmail, createExtractor, createExtractorJob, createExtractorWebhook, createInbox, createInboxWebhook, createTool, createVoiceAgent, createWorker, createWorkerRun, createWorkerWebhook, deleteCallFeedback, deleteToolsFromVoiceAgent, deleteWebhook, executeCode, generateCodeChallenge, generateCodeVerifier, getAddToolsToVoiceAgentMutationFetcher, getAddToolsToVoiceAgentMutationKey, getAddToolsToVoiceAgentUrl, getArtifact, getArtifactMetadataKeys, getArtifactUploadUrl, getCall, getCallAnalytics, getCallEvaluation, getCancelJobMutationFetcher, getCancelJobMutationKey, getCancelJobUrl, getChat, getChatAgent, getCheckInboxAvailabilityKey, getCheckInboxAvailabilityUrl, getClaimDetail, getConfig, getCreateAgentWebhookMutationFetcher, getCreateAgentWebhookMutationKey, getCreateAgentWebhookUrl, getCreateApiKeyMutationFetcher, getCreateApiKeyMutationKey, getCreateApiKeyUrl, getCreateArtifactMutationFetcher, getCreateArtifactMutationKey, getCreateArtifactUrl, getCreateCallFeedbackMutationFetcher, getCreateCallFeedbackMutationKey, getCreateCallFeedbackUrl, getCreateChatAgentMutationFetcher, getCreateChatAgentMutationKey, getCreateChatAgentUrl, getCreateChatMutationFetcher, getCreateChatMutationKey, getCreateChatUrl, getCreateClaimMutationFetcher, getCreateClaimMutationKey, getCreateClaimUrl, getCreateEmailMutationFetcher, getCreateEmailMutationKey, getCreateEmailUrl, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateInboxMutationFetcher, getCreateInboxMutationKey, getCreateInboxUrl, getCreateInboxWebhookMutationFetcher, getCreateInboxWebhookMutationKey, getCreateInboxWebhookUrl, getCreateToolMutationFetcher, getCreateToolMutationKey, getCreateToolUrl, getCreateVoiceAgentMutationFetcher, getCreateVoiceAgentMutationKey, getCreateVoiceAgentUrl, getCreateWorkerMutationFetcher, getCreateWorkerMutationKey, getCreateWorkerRunMutationFetcher, getCreateWorkerRunMutationKey, getCreateWorkerRunUrl, getCreateWorkerUrl, getCreateWorkerWebhookMutationFetcher, getCreateWorkerWebhookMutationKey, getCreateWorkerWebhookUrl, getDeleteCallFeedbackMutationFetcher, getDeleteCallFeedbackMutationKey, getDeleteCallFeedbackUrl, getDeleteToolsFromVoiceAgentMutationFetcher, getDeleteToolsFromVoiceAgentMutationKey, getDeleteToolsFromVoiceAgentUrl, getDeleteWebhookMutationFetcher, getDeleteWebhookMutationKey, getDeleteWebhookUrl, getEmail, getExecuteCodeMutationFetcher, getExecuteCodeMutationKey, getExecuteCodeUrl, getExtract, getExtractCitations, getExtractor, getExtractorJob, getGetArtifactKey, getGetArtifactMetadataKeysKey, getGetArtifactMetadataKeysUrl, getGetArtifactUploadUrlMutationFetcher, getGetArtifactUploadUrlMutationKey, getGetArtifactUploadUrlUrl, getGetArtifactUrl, getGetCallAnalyticsKey, getGetCallAnalyticsUrl, getGetCallEvaluationKey, getGetCallEvaluationUrl, getGetCallKey, getGetCallUrl, getGetChatAgentKey, getGetChatAgentUrl, getGetChatKey, getGetChatUrl, getGetClaimDetailKey, getGetClaimDetailUrl, getGetEmailKey, getGetEmailUrl, getGetExtractCitationsKey, getGetExtractCitationsUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetProfileKey, getGetProfileUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetVoiceAgentKey, getGetVoiceAgentPlaceholdersKey, getGetVoiceAgentPlaceholdersUrl, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, 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, getListClaimsKey, getListClaimsUrl, getListEmailThreadsKey, getListEmailThreadsUrl, getListEmailsKey, getListEmailsUrl, getListExtractorJobsKey, getListExtractorJobsUrl, getListExtractorsKey, getListExtractorsUrl, getListExtractsKey, getListExtractsUrl, getListInboxWebhooksKey, getListInboxWebhooksUrl, getListInboxesKey, getListInboxesUrl, getListJobsKey, getListJobsUrl, getListTeamMembersKey, getListTeamMembersUrl, getListToolsKey, getListToolsUrl, getListVoiceAgentsKey, getListVoiceAgentsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getListWorkerRunMessagesKey, getListWorkerRunMessagesUrl, getListWorkerRunsKey, getListWorkerRunsUrl, getListWorkerWebhooksKey, getListWorkerWebhooksUrl, getListWorkersKey, getListWorkersUrl, getOAuthUrl, getPostChatMessageMutationFetcher, getPostChatMessageMutationKey, getPostChatMessageUrl, getProfile, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRemoveMemberMutationFetcher, getRemoveMemberMutationKey, getRemoveMemberUrl, getReplyToEmailMutationFetcher, getReplyToEmailMutationKey, getReplyToEmailUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSendEmailMutationFetcher, getSendEmailMutationKey, getSendEmailUrl, getSessionToken, getSignInMutationFetcher, getSignInMutationKey, getSignInUrl, getSignUpMutationFetcher, getSignUpMutationKey, getSignUpUrl, getTestWebhookMutationFetcher, getTestWebhookMutationKey, getTestWebhookUrl, getTool, getUpdateArtifactMetadataMutationFetcher, getUpdateArtifactMetadataMutationKey, getUpdateArtifactMetadataUrl, getUpdateCallControlsMutationFetcher, getUpdateCallControlsMutationKey, getUpdateCallControlsUrl, getUpdateChatAgentMutationFetcher, getUpdateChatAgentMutationKey, 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, getWebhook, getWorker, getWorkerPrompt, getWorkerRun, listAgentWebhooks, listApiKeys, listArtifacts, listCallFeedback, listCalls, listCases, listChatAgents, listChatMessages, listChats, listClaims, listEmailThreads, listEmails, listExtractorJobs, listExtractors, listExtracts, listInboxWebhooks, listInboxes, listJobs, listTeamMembers, listTools, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerRunMessages, listWorkerRuns, listWorkerWebhooks, listWorkers, postChatMessage, refreshToken, removeMember, replyToEmail, revokeApiKey, scheduleJob, sendEmail, signIn, signUp, testWebhook, updateArtifactMetadata, updateCallControls, updateChatAgent, updateExtractor, updateInbox, updateMemberRole, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateVoiceAgentPrompt, updateWorker, updateWorkerPrompt, updateWorkerRunScope, uploadFile, useAddToolsToVoiceAgent, useCancelJob, useCheckInboxAvailability, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateChat, useCreateChatAgent, useCreateClaim, useCreateEmail, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateInbox, useCreateInboxWebhook, useCreateTool, useCreateVoiceAgent, useCreateWorker, useCreateWorkerRun, useCreateWorkerWebhook, useDeleteCallFeedback, useDeleteToolsFromVoiceAgent, useDeleteWebhook, useExecuteCode, useGetArtifact, useGetArtifactMetadataKeys, useGetArtifactUploadUrl, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetChat, useGetChatAgent, useGetClaimDetail, useGetEmail, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetOAuthUrl, useGetProfile, useGetSessionToken, useGetTool, useGetVoiceAgent, useGetVoiceAgentPlaceholders, useGetVoiceAgentPrompt, useGetWebhook, useGetWorker, useGetWorkerPrompt, useGetWorkerRun, useListAgentWebhooks, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListCases, useListChatAgents, useListChatMessages, useListChats, useListClaims, useListEmailThreads, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListInboxWebhooks, useListInboxes, useListJobs, useListTeamMembers, useListTools, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerRunMessages, useListWorkerRuns, useListWorkerWebhooks, useListWorkers, usePostChatMessage, useRefreshToken, useRemoveMember, useReplyToEmail, useRevokeApiKey, useScheduleJob, useSendEmail, useSignIn, useSignUp, useTestWebhook, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateChatAgent, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateVoiceAgentPrompt, useUpdateWorker, useUpdateWorkerPrompt, useUpdateWorkerRunScope, useUploadFile };
|
|
7884
|
+
export { type AddToolsToVoiceAgentBody, type AddToolsToVoiceAgentMutationResult, type AddToolsToVoiceAgentResponse, type ApiKey, type ApiKeyCreated, type ApiKeyList, type Artifact, type ArtifactCreated, type ArtifactCreatedItem, type ArtifactDetail, type ArtifactDetailData, type ArtifactDetailDataMetadata, type ArtifactList, type ArtifactMetadata, type ArtifactMetadataKeys, type ArtifactMetadataKeysData, type ArtifactMetadataKeysDataValues, type AuthTokens, type AvallonConfig, AvallonError, type Call, type CallAnalytics, type CallAnalyticsCallsOverTimeItem, type CallAnalyticsDurationDistributionItem, type CallAnalyticsEvaluationOverTimeItem, type CallAnalyticsMetricPerformanceItem, type CallAnalyticsScoreDistributionItem, type CallAnalyticsSummary, type CallDetail, CallDetailDirection, type CallDetailEvaluation, type CallDetailMetadata, CallDirection, type CallEvaluation, type CallEvaluationMetricsItem, type CallEvaluationProperty, type CallList, type CallMessage, type CallMessageMetadata, type CallMessageToolArguments, type CallMessageToolResult, type CallMetadata, type CancelJobMutationResult, type CaseList, type CaseSummary, type CaseSummaryCreatedBy, type ChatAgent, type ChatAgentCreated, type ChatAgentList, type ChatCreated, type ChatHistory, type ChatHistoryMessagesItem, ChatHistoryMessagesItemRole, type ChatList, type ChatListItem, type ChatMessage, type ChatMessageCreated, type ChatMessageCreatedMessage, type ChatMessageCreatedMessageContentItem, type ChatMessageList, type ChatMessagePart, ChatMessageRole, type CheckInboxAvailabilityParams, type CheckInboxAvailabilityQueryResult, type ClaimCreated, type ClaimDetail, type ClaimDetailArtifactsItem, type ClaimDetailClaim, type ClaimDetailExtractorJob, type ClaimDetailSourcesItem, type ClaimList, type ClaimListClaimsItem, type CodeTool, type CodeToolCreated, type CodeToolCreatedTool, type CodeToolCreatedToolSchema, type CodeToolSchema, type CodeToolSummary, type CodeToolUpdated, type CodeToolUpdatedTool, type CodeToolUpdatedToolSchema, type ConfirmationResponse, type CreateAgentWebhookBody, type CreateAgentWebhookMutationResult, type CreateApiKeyBody, CreateApiKeyBodyEnvironment, type CreateApiKeyMutationResult, type CreateArtifactBody, type CreateArtifactBodyMetadata, type CreateArtifactBodyProcessingOptions, type CreateArtifactMutationResult, type CreateCallFeedbackMutationResult, type CreateChatAgentBody, type CreateChatAgentMutationResult, type CreateChatBody, type CreateChatMutationResult, type CreateClaimMutationResult, type CreateEmailBody, CreateEmailBodyDirection, type CreateEmailMutationResult, type CreateExtractorBody, type CreateExtractorBodySchema, type CreateExtractorJobBody, type CreateExtractorJobBodyScope, type CreateExtractorJobMutationResult, type CreateExtractorMutationResult, type CreateExtractorWebhookBody, type CreateExtractorWebhookMutationResult, type CreateFeedbackRequest, type CreateInboxBody, CreateInboxBodyProcessorType, type CreateInboxMutationResult, type CreateInboxWebhookBody, type CreateInboxWebhookMutationResult, type CreateToolBody, type CreateToolMutationResult, type CreateVoiceAgentBody, CreateVoiceAgentBodyCallProcessorType, CreateVoiceAgentBodyDirection, CreateVoiceAgentBodyLanguage, CreateVoiceAgentBodyLlmModel, CreateVoiceAgentBodySttModel, CreateVoiceAgentBodyTtsModel, CreateVoiceAgentBodyTtsProvider, type CreateVoiceAgentMutationResult, type CreateVoiceAgentResponse, type CreateWorkerBody, type CreateWorkerBodyEnvVars, type CreateWorkerMutationResult, type CreateWorkerRunBody, type CreateWorkerRunBodyScope, type CreateWorkerRunMutationResult, type CreateWorkerWebhookBody, type CreateWorkerWebhookMutationResult, type DeleteCallFeedbackMutationResult, type DeleteToolsFromVoiceAgentBody, type DeleteToolsFromVoiceAgentMutationResult, type DeleteToolsFromVoiceAgentResponse, type DeleteWebhookMutationResult, type DeleteWebhookResponse, type Email, type EmailCreated, EmailCreatedDirection, type EmailDetail, EmailDetailDirection, EmailDirection, type EmailList, type EmailReplyResult, EmailReplyResultValue, type EmailSendResult, type EmailThread, type EmailThreadList, type EmptyResponse, type ErrorResponse, type ErrorResponseData, type ExecuteCodeBody, type ExecuteCodeBodyParams, type ExecuteCodeMutationResult, type Extract, type ExtractList, type ExtractProcessorScope, type ExtractScope, type ExtractSummary, type ExtractSummaryProcessorScope, type ExtractSummaryScope, type Extractor, type ExtractorCreated, type ExtractorCreatedSchema, type ExtractorJob, type ExtractorJobCreated, type ExtractorJobCreatedScope, type ExtractorJobDetail, type ExtractorJobDetailScope, type ExtractorJobList, type ExtractorJobScope, type ExtractorList, type ExtractorSchema, type ExtractorSummary, type ExtractorUpdated, type ExtractorUpdatedSchema, type ExtractorWebhookList, type Feedback, type GetArtifactMetadataKeysParams, type GetArtifactMetadataKeysQueryResult, type GetArtifactQueryResult, type GetArtifactUploadUrl200, type GetArtifactUploadUrlBody, type GetArtifactUploadUrlMutationResult, type GetCallAnalyticsParams, type GetCallAnalyticsQueryResult, type GetCallEvaluationQueryResult, type GetCallParams, type GetCallQueryResult, type GetChatAgentQueryResult, type GetChatQueryResult, type GetClaimDetailQueryResult, type GetEmailQueryResult, type GetExtractCitations200, type GetExtractCitations200Chunks, type GetExtractCitations200ChunksBoundingBox, type GetExtractCitationsQueryResult, type GetExtractQueryResult, type GetExtractorJobQueryResult, type GetExtractorJobResponse, type GetExtractorQueryResult, type GetExtractorResponse, GetOAuthUrlCodeChallengeMethod, type GetOAuthUrlParams, GetOAuthUrlProvider, type GetOAuthUrlQueryResult, type GetProfileQueryResult, type GetSessionToken200, type GetSessionTokenBody, type GetSessionTokenMutationResult, type GetToolQueryResult, type GetToolResponse, type GetVoiceAgentPlaceholdersQueryResult, type GetVoiceAgentPromptQueryResult, type GetVoiceAgentQueryResult, type GetVoiceAgentResponse, type GetWebhookQueryResult, type GetWorkerPromptQueryResult, type GetWorkerQueryResult, type GetWorkerRunQueryResult, type GetWorkerRunResponse, type GetWorkerToolResponse, type Inbox, type InboxAvailability, type InboxList, InboxProcessorType, type InboxWebhookList, type ListAgentWebhooksQueryResult, ListApiKeysIncludeRevoked, type ListApiKeysParams, type ListApiKeysQueryResult, type ListArtifactsParams, type ListArtifactsQueryResult, ListArtifactsSortBy, ListArtifactsSortOrder, type ListCallFeedbackParams, type ListCallFeedbackQueryResult, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, type ListCallsParams, type ListCallsQueryResult, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, type ListCasesParams, type ListCasesQueryResult, ListCasesSortBy, ListCasesSortOrder, type ListChatAgentsParams, type ListChatAgentsQueryResult, ListChatAgentsSortBy, ListChatAgentsSortOrder, type ListChatMessagesParams, type ListChatMessagesQueryResult, ListChatMessagesSortBy, ListChatMessagesSortOrder, type ListChatsParams, type ListChatsQueryResult, ListChatsSortBy, ListChatsSortOrder, type ListClaimsParams, type ListClaimsQueryResult, ListClaimsSortBy, ListClaimsSortOrder, type ListEmailThreadsParams, type ListEmailThreadsQueryResult, ListEmailThreadsSortBy, ListEmailThreadsSortOrder, type ListEmailsParams, type ListEmailsQueryResult, ListEmailsSortBy, ListEmailsSortOrder, type ListExtractorJobsParams, type ListExtractorJobsQueryResult, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, type ListExtractorsParams, type ListExtractorsQueryResult, ListExtractorsSortBy, ListExtractorsSortOrder, type ListExtractsParams, type ListExtractsQueryResult, ListExtractsSortBy, ListExtractsSortOrder, type ListInboxWebhooksQueryResult, type ListInboxesParams, type ListInboxesQueryResult, ListInboxesSortBy, ListInboxesSortOrder, type ListJobsParams, type ListJobsQueryResult, ListJobsStatusItem, type ListTeamMembersQueryResult, type ListTeamMembersResponse, type ListToolsParams, type ListToolsQueryResult, ListToolsSortBy, ListToolsSortOrder, type ListVoiceAgentsParams, type ListVoiceAgentsQueryResult, type ListWebhookDeliveriesParams, type ListWebhookDeliveriesQueryResult, ListWebhookDeliveriesSortOrder, type ListWebhooksQueryResult, type ListWorkerRunMessagesParams, type ListWorkerRunMessagesQueryResult, type ListWorkerRunsParams, type ListWorkerRunsQueryResult, ListWorkerRunsSortBy, ListWorkerRunsSortOrder, ListWorkerRunsStatus, type ListWorkerWebhooksQueryResult, type ListWorkersParams, type ListWorkersQueryResult, ListWorkersSortBy, ListWorkersSortOrder, type OAuthUrl, type OutboundJob, type OutboundJobList, type OutboundJobMetadata, type OutboundJobPayload, OutboundJobStatus, type PostChatMessageBody, type PostChatMessageMutationResult, type Profile, ProfilePermissionsItem, ProfileRole, type ProfileTenant, type ProfileTenants, type RefreshTokenBody, type RefreshTokenMutationResult, type RemoveMemberMutationResult, type RemoveMemberResponse, type ReplyToEmailBody, type ReplyToEmailMutationResult, type RevokeApiKeyMutationResult, type ScheduleJobBody, type ScheduleJobBodyMetadata, type ScheduleJobBodyPayload, type ScheduleJobMutationResult, type SendEmailBody, type SendEmailMutationResult, type SignInBody, type SignInMutationResult, type SignUpBody, type SignUpMutationResult, type TeamMember, TeamMemberRole, type TestWebhookMutationResult, type ToolExecutionResult, type ToolExecutionResultError, type ToolExecutionResultTracesItem, type ToolList, type UpdateArtifactMetadataBody, type UpdateArtifactMetadataBodyMetadata, type UpdateArtifactMetadataMutationResult, type UpdateCallControlsBody, type UpdateCallControlsMutationResult, type UpdateChatAgentMutationResult, type UpdateChatAgentRequest, type UpdateExtractorBody, type UpdateExtractorBodySchema, type UpdateExtractorMutationResult, type UpdateInboxBody, type UpdateInboxBodyProcessor, UpdateInboxBodyProcessorType, type UpdateInboxMutationResult, type UpdateMemberRoleBody, UpdateMemberRoleBodyRole, type UpdateMemberRoleMutationResult, type UpdateMemberRoleResponse, type UpdateToolBody, type UpdateToolMutationResult, type UpdateVoiceAgentBody, UpdateVoiceAgentBodyCallProcessorType, type UpdateVoiceAgentCallControlsResponse, type UpdateVoiceAgentModelsBody, UpdateVoiceAgentModelsBodyLanguage, UpdateVoiceAgentModelsBodyLlmModel, UpdateVoiceAgentModelsBodySttModel, UpdateVoiceAgentModelsBodyTtsModel, UpdateVoiceAgentModelsBodyTtsProvider, type UpdateVoiceAgentModelsMutationResult, type UpdateVoiceAgentModelsResponse, type UpdateVoiceAgentMutationResult, type UpdateVoiceAgentPromptBody, type UpdateVoiceAgentPromptMutationResult, type UpdateVoiceAgentResponse, type UpdateWorkerBody, type UpdateWorkerBodySchema, type UpdateWorkerMutationResult, type UpdateWorkerPromptBody, type UpdateWorkerPromptMutationResult, type UpdateWorkerRunScopeBody, type UpdateWorkerRunScopeBodyScope, type UpdateWorkerRunScopeMutationResult, type UploadFileBody, type UploadFileBodyMetadata, type UploadFileBodyProcessingOptions, type UploadFileMutationResult, type UploadFileResponse, type VoiceAgent, VoiceAgentBackgroundSounds, VoiceAgentDirection, VoiceAgentLanguage, type VoiceAgentList, VoiceAgentLlmModel, type VoiceAgentPlaceholders, type VoiceAgentPrompt, type VoiceAgentPromptUpdated, VoiceAgentSttModel, VoiceAgentTtsModel, VoiceAgentTtsProvider, type VoiceAgentWebhookList, type Webhook, type WebhookDelivery, type WebhookDeliveryList, type WebhookScope, type WebhookTestResult, type Worker, type WorkerGetToolQueryResult, type WorkerList, type WorkerListToolsQueryResult, type WorkerPrompt, type WorkerPromptUpdated, type WorkerRun, type WorkerRunCreated, type WorkerRunCreatedScope, type WorkerRunList, type WorkerRunMessage, type WorkerRunMessageList, type WorkerRunMessageMessage, type WorkerRunScope, type WorkerSchema, type WorkerSummary, type WorkerTool, type WorkerToolList, type WorkerToolSchema, type WorkerToolSummary, type WorkerWebhookList, addToolsToVoiceAgent, cancelJob, checkInboxAvailability, configure, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createChat, createChatAgent, createClaim, createEmail, createExtractor, createExtractorJob, createExtractorWebhook, createInbox, createInboxWebhook, createTool, createVoiceAgent, createWorker, createWorkerRun, createWorkerWebhook, deleteCallFeedback, deleteToolsFromVoiceAgent, deleteWebhook, executeCode, generateCodeChallenge, generateCodeVerifier, getAddToolsToVoiceAgentMutationFetcher, getAddToolsToVoiceAgentMutationKey, getAddToolsToVoiceAgentUrl, getArtifact, getArtifactMetadataKeys, getArtifactUploadUrl, getCall, getCallAnalytics, getCallEvaluation, getCancelJobMutationFetcher, getCancelJobMutationKey, getCancelJobUrl, getChat, getChatAgent, getCheckInboxAvailabilityKey, getCheckInboxAvailabilityUrl, getClaimDetail, getConfig, getCreateAgentWebhookMutationFetcher, getCreateAgentWebhookMutationKey, getCreateAgentWebhookUrl, getCreateApiKeyMutationFetcher, getCreateApiKeyMutationKey, getCreateApiKeyUrl, getCreateArtifactMutationFetcher, getCreateArtifactMutationKey, getCreateArtifactUrl, getCreateCallFeedbackMutationFetcher, getCreateCallFeedbackMutationKey, getCreateCallFeedbackUrl, getCreateChatAgentMutationFetcher, getCreateChatAgentMutationKey, getCreateChatAgentUrl, getCreateChatMutationFetcher, getCreateChatMutationKey, getCreateChatUrl, getCreateClaimMutationFetcher, getCreateClaimMutationKey, getCreateClaimUrl, getCreateEmailMutationFetcher, getCreateEmailMutationKey, getCreateEmailUrl, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateInboxMutationFetcher, getCreateInboxMutationKey, getCreateInboxUrl, getCreateInboxWebhookMutationFetcher, getCreateInboxWebhookMutationKey, getCreateInboxWebhookUrl, getCreateToolMutationFetcher, getCreateToolMutationKey, getCreateToolUrl, getCreateVoiceAgentMutationFetcher, getCreateVoiceAgentMutationKey, getCreateVoiceAgentUrl, getCreateWorkerMutationFetcher, getCreateWorkerMutationKey, getCreateWorkerRunMutationFetcher, getCreateWorkerRunMutationKey, getCreateWorkerRunUrl, getCreateWorkerUrl, getCreateWorkerWebhookMutationFetcher, getCreateWorkerWebhookMutationKey, getCreateWorkerWebhookUrl, getDeleteCallFeedbackMutationFetcher, getDeleteCallFeedbackMutationKey, getDeleteCallFeedbackUrl, getDeleteToolsFromVoiceAgentMutationFetcher, getDeleteToolsFromVoiceAgentMutationKey, getDeleteToolsFromVoiceAgentUrl, getDeleteWebhookMutationFetcher, getDeleteWebhookMutationKey, getDeleteWebhookUrl, getEmail, getExecuteCodeMutationFetcher, getExecuteCodeMutationKey, getExecuteCodeUrl, getExtract, getExtractCitations, getExtractor, getExtractorJob, getGetArtifactKey, getGetArtifactMetadataKeysKey, getGetArtifactMetadataKeysUrl, getGetArtifactUploadUrlMutationFetcher, getGetArtifactUploadUrlMutationKey, getGetArtifactUploadUrlUrl, getGetArtifactUrl, getGetCallAnalyticsKey, getGetCallAnalyticsUrl, getGetCallEvaluationKey, getGetCallEvaluationUrl, getGetCallKey, getGetCallUrl, getGetChatAgentKey, getGetChatAgentUrl, getGetChatKey, getGetChatUrl, getGetClaimDetailKey, getGetClaimDetailUrl, getGetEmailKey, getGetEmailUrl, getGetExtractCitationsKey, getGetExtractCitationsUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetProfileKey, getGetProfileUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetVoiceAgentKey, getGetVoiceAgentPlaceholdersKey, getGetVoiceAgentPlaceholdersUrl, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, 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, getListClaimsKey, getListClaimsUrl, getListEmailThreadsKey, getListEmailThreadsUrl, getListEmailsKey, getListEmailsUrl, getListExtractorJobsKey, getListExtractorJobsUrl, getListExtractorsKey, getListExtractorsUrl, getListExtractsKey, getListExtractsUrl, getListInboxWebhooksKey, getListInboxWebhooksUrl, getListInboxesKey, getListInboxesUrl, getListJobsKey, getListJobsUrl, getListTeamMembersKey, getListTeamMembersUrl, getListToolsKey, getListToolsUrl, getListVoiceAgentsKey, getListVoiceAgentsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getListWorkerRunMessagesKey, getListWorkerRunMessagesUrl, getListWorkerRunsKey, getListWorkerRunsUrl, getListWorkerWebhooksKey, getListWorkerWebhooksUrl, getListWorkersKey, getListWorkersUrl, getOAuthUrl, getPostChatMessageMutationFetcher, getPostChatMessageMutationKey, getPostChatMessageUrl, getProfile, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRemoveMemberMutationFetcher, getRemoveMemberMutationKey, getRemoveMemberUrl, getReplyToEmailMutationFetcher, getReplyToEmailMutationKey, getReplyToEmailUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSendEmailMutationFetcher, getSendEmailMutationKey, getSendEmailUrl, getSessionToken, getSignInMutationFetcher, getSignInMutationKey, getSignInUrl, getSignUpMutationFetcher, getSignUpMutationKey, getSignUpUrl, getTestWebhookMutationFetcher, getTestWebhookMutationKey, getTestWebhookUrl, getTool, getUpdateArtifactMetadataMutationFetcher, getUpdateArtifactMetadataMutationKey, getUpdateArtifactMetadataUrl, getUpdateCallControlsMutationFetcher, getUpdateCallControlsMutationKey, getUpdateCallControlsUrl, getUpdateChatAgentMutationFetcher, getUpdateChatAgentMutationKey, 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, getWebhook, getWorker, getWorkerGetToolKey, getWorkerGetToolUrl, getWorkerListToolsKey, getWorkerListToolsUrl, getWorkerPrompt, getWorkerRun, listAgentWebhooks, listApiKeys, listArtifacts, listCallFeedback, listCalls, listCases, listChatAgents, listChatMessages, listChats, listClaims, listEmailThreads, listEmails, listExtractorJobs, listExtractors, listExtracts, listInboxWebhooks, listInboxes, listJobs, listTeamMembers, listTools, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerRunMessages, listWorkerRuns, listWorkerWebhooks, listWorkers, postChatMessage, refreshToken, removeMember, replyToEmail, revokeApiKey, scheduleJob, sendEmail, signIn, signUp, testWebhook, updateArtifactMetadata, updateCallControls, updateChatAgent, updateExtractor, updateInbox, updateMemberRole, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateVoiceAgentPrompt, updateWorker, updateWorkerPrompt, updateWorkerRunScope, uploadFile, useAddToolsToVoiceAgent, useCancelJob, useCheckInboxAvailability, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateChat, useCreateChatAgent, useCreateClaim, useCreateEmail, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateInbox, useCreateInboxWebhook, useCreateTool, useCreateVoiceAgent, useCreateWorker, useCreateWorkerRun, useCreateWorkerWebhook, useDeleteCallFeedback, useDeleteToolsFromVoiceAgent, useDeleteWebhook, useExecuteCode, useGetArtifact, useGetArtifactMetadataKeys, useGetArtifactUploadUrl, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetChat, useGetChatAgent, useGetClaimDetail, useGetEmail, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetOAuthUrl, useGetProfile, useGetSessionToken, useGetTool, useGetVoiceAgent, useGetVoiceAgentPlaceholders, useGetVoiceAgentPrompt, useGetWebhook, useGetWorker, useGetWorkerPrompt, useGetWorkerRun, useListAgentWebhooks, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListCases, useListChatAgents, useListChatMessages, useListChats, useListClaims, useListEmailThreads, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListInboxWebhooks, useListInboxes, useListJobs, useListTeamMembers, useListTools, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerRunMessages, useListWorkerRuns, useListWorkerWebhooks, useListWorkers, usePostChatMessage, useRefreshToken, useRemoveMember, useReplyToEmail, useRevokeApiKey, useScheduleJob, useSendEmail, useSignIn, useSignUp, useTestWebhook, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateChatAgent, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateVoiceAgentPrompt, useUpdateWorker, useUpdateWorkerPrompt, useUpdateWorkerRunScope, useUploadFile, useWorkerGetTool, useWorkerListTools, workerGetTool, workerListTools };
|