@avallon-labs/sdk 19.0.0-staging.442 → 19.2.0-staging.445
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 +133 -41
- package/dist/index.js +143 -90
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -752,6 +752,30 @@ interface CallEvaluation {
|
|
|
752
752
|
|
|
753
753
|
type CallList = Call[];
|
|
754
754
|
|
|
755
|
+
/**
|
|
756
|
+
* Generated by orval v8.1.0 🍺
|
|
757
|
+
* Do not edit manually.
|
|
758
|
+
* Avallon API
|
|
759
|
+
* OpenAPI spec version: 1.0.0
|
|
760
|
+
*/
|
|
761
|
+
interface ChatAgent {
|
|
762
|
+
id: string;
|
|
763
|
+
name: string;
|
|
764
|
+
created_at: string;
|
|
765
|
+
updated_at: string;
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
/**
|
|
769
|
+
* Generated by orval v8.1.0 🍺
|
|
770
|
+
* Do not edit manually.
|
|
771
|
+
* Avallon API
|
|
772
|
+
* OpenAPI spec version: 1.0.0
|
|
773
|
+
*/
|
|
774
|
+
interface ChatAgentCreated {
|
|
775
|
+
chat_agent_id: string;
|
|
776
|
+
created_at: string;
|
|
777
|
+
}
|
|
778
|
+
|
|
755
779
|
/**
|
|
756
780
|
* Generated by orval v8.1.0 🍺
|
|
757
781
|
* Do not edit manually.
|
|
@@ -1091,6 +1115,19 @@ type CreateArtifactBody = {
|
|
|
1091
1115
|
metadata?: CreateArtifactBodyMetadata;
|
|
1092
1116
|
};
|
|
1093
1117
|
|
|
1118
|
+
/**
|
|
1119
|
+
* Generated by orval v8.1.0 🍺
|
|
1120
|
+
* Do not edit manually.
|
|
1121
|
+
* Avallon API
|
|
1122
|
+
* OpenAPI spec version: 1.0.0
|
|
1123
|
+
*/
|
|
1124
|
+
type CreateChatAgentBody = {
|
|
1125
|
+
/** @minLength 1 */
|
|
1126
|
+
name: string;
|
|
1127
|
+
/** @minLength 1 */
|
|
1128
|
+
prompt: string;
|
|
1129
|
+
};
|
|
1130
|
+
|
|
1094
1131
|
/**
|
|
1095
1132
|
* Generated by orval v8.1.0 🍺
|
|
1096
1133
|
* Do not edit manually.
|
|
@@ -3509,6 +3546,7 @@ declare const ProfilePermissionsItem: {
|
|
|
3509
3546
|
readonly "feedback:write": "feedback:write";
|
|
3510
3547
|
readonly "outbound-jobs:write": "outbound-jobs:write";
|
|
3511
3548
|
readonly "workers:write": "workers:write";
|
|
3549
|
+
readonly "chat-agents:write": "chat-agents:write";
|
|
3512
3550
|
};
|
|
3513
3551
|
|
|
3514
3552
|
/**
|
|
@@ -4315,7 +4353,7 @@ type WorkerRunMessageList = WorkerRunMessage[];
|
|
|
4315
4353
|
|
|
4316
4354
|
type WorkerWebhookList = Webhook[];
|
|
4317
4355
|
|
|
4318
|
-
type SecondParameter$
|
|
4356
|
+
type SecondParameter$j<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
4319
4357
|
/**
|
|
4320
4358
|
* List all API keys for your tenant.
|
|
4321
4359
|
|
|
@@ -4336,7 +4374,7 @@ declare const useListApiKeys: <TError = ErrorType<ErrorResponse>>(params?: ListA
|
|
|
4336
4374
|
swrKey?: Key;
|
|
4337
4375
|
enabled?: boolean;
|
|
4338
4376
|
};
|
|
4339
|
-
request?: SecondParameter$
|
|
4377
|
+
request?: SecondParameter$j<typeof customFetch>;
|
|
4340
4378
|
}) => {
|
|
4341
4379
|
data: ApiKeyList | undefined;
|
|
4342
4380
|
error: TError | undefined;
|
|
@@ -4355,7 +4393,7 @@ Keys are scoped to an environment (`test` or `live`) and optionally accept an ex
|
|
|
4355
4393
|
*/
|
|
4356
4394
|
declare const getCreateApiKeyUrl: () => string;
|
|
4357
4395
|
declare const createApiKey: (createApiKeyBody: CreateApiKeyBody, options?: RequestInit) => Promise<ApiKeyCreated>;
|
|
4358
|
-
declare const getCreateApiKeyMutationFetcher: (options?: SecondParameter$
|
|
4396
|
+
declare const getCreateApiKeyMutationFetcher: (options?: SecondParameter$j<typeof customFetch>) => (_: Key, { arg }: {
|
|
4359
4397
|
arg: CreateApiKeyBody;
|
|
4360
4398
|
}) => Promise<ApiKeyCreated>;
|
|
4361
4399
|
declare const getCreateApiKeyMutationKey: () => readonly ["/platform/api-keys"];
|
|
@@ -4367,7 +4405,7 @@ declare const useCreateApiKey: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
4367
4405
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createApiKey>>, TError, Key, CreateApiKeyBody, Awaited<ReturnType<typeof createApiKey>>> & {
|
|
4368
4406
|
swrKey?: string;
|
|
4369
4407
|
};
|
|
4370
|
-
request?: SecondParameter$
|
|
4408
|
+
request?: SecondParameter$j<typeof customFetch>;
|
|
4371
4409
|
}) => {
|
|
4372
4410
|
isMutating: boolean;
|
|
4373
4411
|
trigger: swr_mutation.TriggerWithArgs<ApiKeyCreated, TError, string | readonly ["/platform/api-keys"], CreateApiKeyBody>;
|
|
@@ -4386,7 +4424,7 @@ Returns 409 if the key is already revoked, 404 if the key does not exist.
|
|
|
4386
4424
|
*/
|
|
4387
4425
|
declare const getRevokeApiKeyUrl: (id: string) => string;
|
|
4388
4426
|
declare const revokeApiKey: (id: string, options?: RequestInit) => Promise<ConfirmationResponse>;
|
|
4389
|
-
declare const getRevokeApiKeyMutationFetcher: (id: string, options?: SecondParameter$
|
|
4427
|
+
declare const getRevokeApiKeyMutationFetcher: (id: string, options?: SecondParameter$j<typeof customFetch>) => (_: Key, __: {
|
|
4390
4428
|
arg: Arguments;
|
|
4391
4429
|
}) => Promise<ConfirmationResponse>;
|
|
4392
4430
|
declare const getRevokeApiKeyMutationKey: (id: string) => readonly [`/platform/api-keys/${string}/revoke`];
|
|
@@ -4398,7 +4436,7 @@ declare const useRevokeApiKey: <TError = ErrorType<ErrorResponse>>(id: string, o
|
|
|
4398
4436
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof revokeApiKey>>, TError, Key, Arguments, Awaited<ReturnType<typeof revokeApiKey>>> & {
|
|
4399
4437
|
swrKey?: string;
|
|
4400
4438
|
};
|
|
4401
|
-
request?: SecondParameter$
|
|
4439
|
+
request?: SecondParameter$j<typeof customFetch>;
|
|
4402
4440
|
}) => {
|
|
4403
4441
|
isMutating: boolean;
|
|
4404
4442
|
trigger: swr_mutation.TriggerWithOptionsArgs<ConfirmationResponse, TError, string | readonly [`/platform/api-keys/${string}/revoke`], Arguments>;
|
|
@@ -4408,7 +4446,7 @@ declare const useRevokeApiKey: <TError = ErrorType<ErrorResponse>>(id: string, o
|
|
|
4408
4446
|
swrKey: string | readonly [`/platform/api-keys/${string}/revoke`];
|
|
4409
4447
|
};
|
|
4410
4448
|
|
|
4411
|
-
type SecondParameter$
|
|
4449
|
+
type SecondParameter$i<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
4412
4450
|
/**
|
|
4413
4451
|
* Upload a document as a base64-encoded artifact for processing.
|
|
4414
4452
|
|
|
@@ -4424,7 +4462,7 @@ Maximum file size is approximately 6.75MB (base64 encoded). The API Gateway has
|
|
|
4424
4462
|
*/
|
|
4425
4463
|
declare const getCreateArtifactUrl: () => string;
|
|
4426
4464
|
declare const createArtifact: (createArtifactBody: CreateArtifactBody, options?: RequestInit) => Promise<ArtifactCreated>;
|
|
4427
|
-
declare const getCreateArtifactMutationFetcher: (options?: SecondParameter$
|
|
4465
|
+
declare const getCreateArtifactMutationFetcher: (options?: SecondParameter$i<typeof customFetch>) => (_: Key, { arg }: {
|
|
4428
4466
|
arg: CreateArtifactBody;
|
|
4429
4467
|
}) => Promise<ArtifactCreated>;
|
|
4430
4468
|
declare const getCreateArtifactMutationKey: () => readonly ["/v1/artifacts"];
|
|
@@ -4436,7 +4474,7 @@ declare const useCreateArtifact: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
4436
4474
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createArtifact>>, TError, Key, CreateArtifactBody, Awaited<ReturnType<typeof createArtifact>>> & {
|
|
4437
4475
|
swrKey?: string;
|
|
4438
4476
|
};
|
|
4439
|
-
request?: SecondParameter$
|
|
4477
|
+
request?: SecondParameter$i<typeof customFetch>;
|
|
4440
4478
|
}) => {
|
|
4441
4479
|
isMutating: boolean;
|
|
4442
4480
|
trigger: swr_mutation.TriggerWithArgs<ArtifactCreated, TError, string | readonly ["/v1/artifacts"], CreateArtifactBody>;
|
|
@@ -4469,7 +4507,7 @@ declare const useListArtifacts: <TError = ErrorType<ErrorResponse>>(params?: Lis
|
|
|
4469
4507
|
swrKey?: Key;
|
|
4470
4508
|
enabled?: boolean;
|
|
4471
4509
|
};
|
|
4472
|
-
request?: SecondParameter$
|
|
4510
|
+
request?: SecondParameter$i<typeof customFetch>;
|
|
4473
4511
|
}) => {
|
|
4474
4512
|
data: ArtifactList | undefined;
|
|
4475
4513
|
error: TError | undefined;
|
|
@@ -4494,7 +4532,7 @@ declare const useGetArtifact: <TError = ErrorType<ErrorResponse>>(id: string, op
|
|
|
4494
4532
|
swrKey?: Key;
|
|
4495
4533
|
enabled?: boolean;
|
|
4496
4534
|
};
|
|
4497
|
-
request?: SecondParameter$
|
|
4535
|
+
request?: SecondParameter$i<typeof customFetch>;
|
|
4498
4536
|
}) => {
|
|
4499
4537
|
data: ArtifactDetail | undefined;
|
|
4500
4538
|
error: TError | undefined;
|
|
@@ -4519,7 +4557,7 @@ declare const useGetArtifactMetadataKeys: <TError = ErrorType<ErrorResponse>>(pa
|
|
|
4519
4557
|
swrKey?: Key;
|
|
4520
4558
|
enabled?: boolean;
|
|
4521
4559
|
};
|
|
4522
|
-
request?: SecondParameter$
|
|
4560
|
+
request?: SecondParameter$i<typeof customFetch>;
|
|
4523
4561
|
}) => {
|
|
4524
4562
|
data: ArtifactMetadataKeys | undefined;
|
|
4525
4563
|
error: TError | undefined;
|
|
@@ -4534,7 +4572,7 @@ declare const useGetArtifactMetadataKeys: <TError = ErrorType<ErrorResponse>>(pa
|
|
|
4534
4572
|
*/
|
|
4535
4573
|
declare const getGetArtifactUploadUrlUrl: () => string;
|
|
4536
4574
|
declare const getArtifactUploadUrl: (getArtifactUploadUrlBody: GetArtifactUploadUrlBody, options?: RequestInit) => Promise<GetArtifactUploadUrl200>;
|
|
4537
|
-
declare const getGetArtifactUploadUrlMutationFetcher: (options?: SecondParameter$
|
|
4575
|
+
declare const getGetArtifactUploadUrlMutationFetcher: (options?: SecondParameter$i<typeof customFetch>) => (_: Key, { arg }: {
|
|
4538
4576
|
arg: GetArtifactUploadUrlBody;
|
|
4539
4577
|
}) => Promise<GetArtifactUploadUrl200>;
|
|
4540
4578
|
declare const getGetArtifactUploadUrlMutationKey: () => readonly ["/v1/artifacts/get-upload-url"];
|
|
@@ -4546,7 +4584,7 @@ declare const useGetArtifactUploadUrl: <TError = ErrorType<ErrorResponse>>(optio
|
|
|
4546
4584
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof getArtifactUploadUrl>>, TError, Key, GetArtifactUploadUrlBody, Awaited<ReturnType<typeof getArtifactUploadUrl>>> & {
|
|
4547
4585
|
swrKey?: string;
|
|
4548
4586
|
};
|
|
4549
|
-
request?: SecondParameter$
|
|
4587
|
+
request?: SecondParameter$i<typeof customFetch>;
|
|
4550
4588
|
}) => {
|
|
4551
4589
|
isMutating: boolean;
|
|
4552
4590
|
trigger: swr_mutation.TriggerWithArgs<GetArtifactUploadUrl200, TError, string | readonly ["/v1/artifacts/get-upload-url"], GetArtifactUploadUrlBody>;
|
|
@@ -4561,7 +4599,7 @@ declare const useGetArtifactUploadUrl: <TError = ErrorType<ErrorResponse>>(optio
|
|
|
4561
4599
|
*/
|
|
4562
4600
|
declare const getUpdateArtifactMetadataUrl: (id: string) => string;
|
|
4563
4601
|
declare const updateArtifactMetadata: (id: string, updateArtifactMetadataBody: UpdateArtifactMetadataBody, options?: RequestInit) => Promise<ArtifactDetail>;
|
|
4564
|
-
declare const getUpdateArtifactMetadataMutationFetcher: (id: string, options?: SecondParameter$
|
|
4602
|
+
declare const getUpdateArtifactMetadataMutationFetcher: (id: string, options?: SecondParameter$i<typeof customFetch>) => (_: Key, { arg }: {
|
|
4565
4603
|
arg: UpdateArtifactMetadataBody;
|
|
4566
4604
|
}) => Promise<ArtifactDetail>;
|
|
4567
4605
|
declare const getUpdateArtifactMetadataMutationKey: (id: string) => readonly [`/v1/artifacts/${string}/metadata`];
|
|
@@ -4573,7 +4611,7 @@ declare const useUpdateArtifactMetadata: <TError = ErrorType<ErrorResponse>>(id:
|
|
|
4573
4611
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof updateArtifactMetadata>>, TError, Key, UpdateArtifactMetadataBody, Awaited<ReturnType<typeof updateArtifactMetadata>>> & {
|
|
4574
4612
|
swrKey?: string;
|
|
4575
4613
|
};
|
|
4576
|
-
request?: SecondParameter$
|
|
4614
|
+
request?: SecondParameter$i<typeof customFetch>;
|
|
4577
4615
|
}) => {
|
|
4578
4616
|
isMutating: boolean;
|
|
4579
4617
|
trigger: swr_mutation.TriggerWithArgs<ArtifactDetail, TError, string | readonly [`/v1/artifacts/${string}/metadata`], UpdateArtifactMetadataBody>;
|
|
@@ -4590,7 +4628,7 @@ This endpoint returns an upload id that can be used to find the created artifact
|
|
|
4590
4628
|
*/
|
|
4591
4629
|
declare const getUploadFileUrl: () => string;
|
|
4592
4630
|
declare const uploadFile: (uploadFileBody: UploadFileBody, options?: RequestInit) => Promise<UploadFileResponse>;
|
|
4593
|
-
declare const getUploadFileMutationFetcher: (options?: SecondParameter$
|
|
4631
|
+
declare const getUploadFileMutationFetcher: (options?: SecondParameter$i<typeof customFetch>) => (_: Key, { arg }: {
|
|
4594
4632
|
arg: UploadFileBody;
|
|
4595
4633
|
}) => Promise<UploadFileResponse>;
|
|
4596
4634
|
declare const getUploadFileMutationKey: () => readonly ["/v1/upload-file"];
|
|
@@ -4602,7 +4640,7 @@ declare const useUploadFile: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
4602
4640
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof uploadFile>>, TError, Key, UploadFileBody, Awaited<ReturnType<typeof uploadFile>>> & {
|
|
4603
4641
|
swrKey?: string;
|
|
4604
4642
|
};
|
|
4605
|
-
request?: SecondParameter$
|
|
4643
|
+
request?: SecondParameter$i<typeof customFetch>;
|
|
4606
4644
|
}) => {
|
|
4607
4645
|
isMutating: boolean;
|
|
4608
4646
|
trigger: swr_mutation.TriggerWithArgs<UploadFileResponse, TError, string | readonly ["/v1/upload-file"], UploadFileBody>;
|
|
@@ -4612,14 +4650,14 @@ declare const useUploadFile: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
4612
4650
|
swrKey: string | readonly ["/v1/upload-file"];
|
|
4613
4651
|
};
|
|
4614
4652
|
|
|
4615
|
-
type SecondParameter$
|
|
4653
|
+
type SecondParameter$h<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
4616
4654
|
/**
|
|
4617
4655
|
* Create a new user account with email and password.
|
|
4618
4656
|
* @summary Sign up
|
|
4619
4657
|
*/
|
|
4620
4658
|
declare const getSignUpUrl: () => string;
|
|
4621
4659
|
declare const signUp: (signUpBody: SignUpBody, options?: RequestInit) => Promise<EmptyResponse>;
|
|
4622
|
-
declare const getSignUpMutationFetcher: (options?: SecondParameter$
|
|
4660
|
+
declare const getSignUpMutationFetcher: (options?: SecondParameter$h<typeof customFetchNoAuth>) => (_: Key, { arg }: {
|
|
4623
4661
|
arg: SignUpBody;
|
|
4624
4662
|
}) => Promise<EmptyResponse>;
|
|
4625
4663
|
declare const getSignUpMutationKey: () => readonly ["/v1/auth/sign-up"];
|
|
@@ -4631,7 +4669,7 @@ declare const useSignUp: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
4631
4669
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof signUp>>, TError, Key, SignUpBody, Awaited<ReturnType<typeof signUp>>> & {
|
|
4632
4670
|
swrKey?: string;
|
|
4633
4671
|
};
|
|
4634
|
-
request?: SecondParameter$
|
|
4672
|
+
request?: SecondParameter$h<typeof customFetchNoAuth>;
|
|
4635
4673
|
}) => {
|
|
4636
4674
|
isMutating: boolean;
|
|
4637
4675
|
trigger: swr_mutation.TriggerWithArgs<EmptyResponse, TError, string | readonly ["/v1/auth/sign-up"], SignUpBody>;
|
|
@@ -4650,7 +4688,7 @@ declare const useSignUp: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
4650
4688
|
*/
|
|
4651
4689
|
declare const getSignInUrl: () => string;
|
|
4652
4690
|
declare const signIn: (signInBody: SignInBody, options?: RequestInit) => Promise<AuthTokens>;
|
|
4653
|
-
declare const getSignInMutationFetcher: (options?: SecondParameter$
|
|
4691
|
+
declare const getSignInMutationFetcher: (options?: SecondParameter$h<typeof customFetchNoAuth>) => (_: Key, { arg }: {
|
|
4654
4692
|
arg: SignInBody;
|
|
4655
4693
|
}) => Promise<AuthTokens>;
|
|
4656
4694
|
declare const getSignInMutationKey: () => readonly ["/v1/auth/sign-in"];
|
|
@@ -4662,7 +4700,7 @@ declare const useSignIn: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
4662
4700
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof signIn>>, TError, Key, SignInBody, Awaited<ReturnType<typeof signIn>>> & {
|
|
4663
4701
|
swrKey?: string;
|
|
4664
4702
|
};
|
|
4665
|
-
request?: SecondParameter$
|
|
4703
|
+
request?: SecondParameter$h<typeof customFetchNoAuth>;
|
|
4666
4704
|
}) => {
|
|
4667
4705
|
isMutating: boolean;
|
|
4668
4706
|
trigger: swr_mutation.TriggerWithArgs<AuthTokens, TError, string | readonly ["/v1/auth/sign-in"], SignInBody>;
|
|
@@ -4677,7 +4715,7 @@ declare const useSignIn: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
4677
4715
|
*/
|
|
4678
4716
|
declare const getRefreshTokenUrl: () => string;
|
|
4679
4717
|
declare const refreshToken: (refreshTokenBody: RefreshTokenBody, options?: RequestInit) => Promise<AuthTokens>;
|
|
4680
|
-
declare const getRefreshTokenMutationFetcher: (options?: SecondParameter$
|
|
4718
|
+
declare const getRefreshTokenMutationFetcher: (options?: SecondParameter$h<typeof customFetchNoAuth>) => (_: Key, { arg }: {
|
|
4681
4719
|
arg: RefreshTokenBody;
|
|
4682
4720
|
}) => Promise<AuthTokens>;
|
|
4683
4721
|
declare const getRefreshTokenMutationKey: () => readonly ["/v1/auth/refresh-token"];
|
|
@@ -4689,7 +4727,7 @@ declare const useRefreshToken: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
4689
4727
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof refreshToken>>, TError, Key, RefreshTokenBody, Awaited<ReturnType<typeof refreshToken>>> & {
|
|
4690
4728
|
swrKey?: string;
|
|
4691
4729
|
};
|
|
4692
|
-
request?: SecondParameter$
|
|
4730
|
+
request?: SecondParameter$h<typeof customFetchNoAuth>;
|
|
4693
4731
|
}) => {
|
|
4694
4732
|
isMutating: boolean;
|
|
4695
4733
|
trigger: swr_mutation.TriggerWithArgs<AuthTokens, TError, string | readonly ["/v1/auth/refresh-token"], RefreshTokenBody>;
|
|
@@ -4714,7 +4752,7 @@ declare const useGetOAuthUrl: <TError = ErrorType<ErrorResponse>>(params: GetOAu
|
|
|
4714
4752
|
swrKey?: Key;
|
|
4715
4753
|
enabled?: boolean;
|
|
4716
4754
|
};
|
|
4717
|
-
request?: SecondParameter$
|
|
4755
|
+
request?: SecondParameter$h<typeof customFetchNoAuth>;
|
|
4718
4756
|
}) => {
|
|
4719
4757
|
data: OAuthUrl | undefined;
|
|
4720
4758
|
error: TError | undefined;
|
|
@@ -4733,7 +4771,7 @@ declare const useGetOAuthUrl: <TError = ErrorType<ErrorResponse>>(params: GetOAu
|
|
|
4733
4771
|
*/
|
|
4734
4772
|
declare const getGetSessionTokenUrl: () => string;
|
|
4735
4773
|
declare const getSessionToken: (getSessionTokenBody: GetSessionTokenBody, options?: RequestInit) => Promise<GetSessionToken200>;
|
|
4736
|
-
declare const getGetSessionTokenMutationFetcher: (options?: SecondParameter$
|
|
4774
|
+
declare const getGetSessionTokenMutationFetcher: (options?: SecondParameter$h<typeof customFetchNoAuth>) => (_: Key, { arg }: {
|
|
4737
4775
|
arg: GetSessionTokenBody;
|
|
4738
4776
|
}) => Promise<GetSessionToken200>;
|
|
4739
4777
|
declare const getGetSessionTokenMutationKey: () => readonly ["/v1/auth/session"];
|
|
@@ -4745,7 +4783,7 @@ declare const useGetSessionToken: <TError = ErrorType<ErrorResponse>>(options?:
|
|
|
4745
4783
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof getSessionToken>>, TError, Key, GetSessionTokenBody, Awaited<ReturnType<typeof getSessionToken>>> & {
|
|
4746
4784
|
swrKey?: string;
|
|
4747
4785
|
};
|
|
4748
|
-
request?: SecondParameter$
|
|
4786
|
+
request?: SecondParameter$h<typeof customFetchNoAuth>;
|
|
4749
4787
|
}) => {
|
|
4750
4788
|
isMutating: boolean;
|
|
4751
4789
|
trigger: swr_mutation.TriggerWithArgs<GetSessionToken200, TError, string | readonly ["/v1/auth/session"], GetSessionTokenBody>;
|
|
@@ -4755,14 +4793,14 @@ declare const useGetSessionToken: <TError = ErrorType<ErrorResponse>>(options?:
|
|
|
4755
4793
|
swrKey: string | readonly ["/v1/auth/session"];
|
|
4756
4794
|
};
|
|
4757
4795
|
|
|
4758
|
-
type SecondParameter$
|
|
4796
|
+
type SecondParameter$g<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
4759
4797
|
/**
|
|
4760
4798
|
* Create feedback for a specific message in a call. Author is derived from the authenticated user.
|
|
4761
4799
|
* @summary Create feedback on a call message
|
|
4762
4800
|
*/
|
|
4763
4801
|
declare const getCreateCallFeedbackUrl: (id: string) => string;
|
|
4764
4802
|
declare const createCallFeedback: (id: string, createFeedbackRequest: CreateFeedbackRequest, options?: RequestInit) => Promise<Feedback>;
|
|
4765
|
-
declare const getCreateCallFeedbackMutationFetcher: (id: string, options?: SecondParameter$
|
|
4803
|
+
declare const getCreateCallFeedbackMutationFetcher: (id: string, options?: SecondParameter$g<typeof customFetch>) => (_: Key, { arg }: {
|
|
4766
4804
|
arg: CreateFeedbackRequest;
|
|
4767
4805
|
}) => Promise<Feedback>;
|
|
4768
4806
|
declare const getCreateCallFeedbackMutationKey: (id: string) => readonly [`/v1/calls/${string}/feedback`];
|
|
@@ -4774,7 +4812,7 @@ declare const useCreateCallFeedback: <TError = ErrorType<ErrorResponse>>(id: str
|
|
|
4774
4812
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createCallFeedback>>, TError, Key, CreateFeedbackRequest, Awaited<ReturnType<typeof createCallFeedback>>> & {
|
|
4775
4813
|
swrKey?: string;
|
|
4776
4814
|
};
|
|
4777
|
-
request?: SecondParameter$
|
|
4815
|
+
request?: SecondParameter$g<typeof customFetch>;
|
|
4778
4816
|
}) => {
|
|
4779
4817
|
isMutating: boolean;
|
|
4780
4818
|
trigger: swr_mutation.TriggerWithArgs<Feedback, TError, string | readonly [`/v1/calls/${string}/feedback`], CreateFeedbackRequest>;
|
|
@@ -4799,7 +4837,7 @@ declare const useListCallFeedback: <TError = ErrorType<ErrorResponse>>(id: strin
|
|
|
4799
4837
|
swrKey?: Key;
|
|
4800
4838
|
enabled?: boolean;
|
|
4801
4839
|
};
|
|
4802
|
-
request?: SecondParameter$
|
|
4840
|
+
request?: SecondParameter$g<typeof customFetch>;
|
|
4803
4841
|
}) => {
|
|
4804
4842
|
data: Feedback[] | undefined;
|
|
4805
4843
|
error: TError | undefined;
|
|
@@ -4814,7 +4852,7 @@ declare const useListCallFeedback: <TError = ErrorType<ErrorResponse>>(id: strin
|
|
|
4814
4852
|
*/
|
|
4815
4853
|
declare const getDeleteCallFeedbackUrl: (id: string, feedbackId: string) => string;
|
|
4816
4854
|
declare const deleteCallFeedback: (id: string, feedbackId: string, options?: RequestInit) => Promise<null>;
|
|
4817
|
-
declare const getDeleteCallFeedbackMutationFetcher: (id: string, feedbackId: string, options?: SecondParameter$
|
|
4855
|
+
declare const getDeleteCallFeedbackMutationFetcher: (id: string, feedbackId: string, options?: SecondParameter$g<typeof customFetch>) => (_: Key, __: {
|
|
4818
4856
|
arg: Arguments;
|
|
4819
4857
|
}) => Promise<null>;
|
|
4820
4858
|
declare const getDeleteCallFeedbackMutationKey: (id: string, feedbackId: string) => readonly [`/v1/calls/${string}/feedback/${string}`];
|
|
@@ -4826,7 +4864,7 @@ declare const useDeleteCallFeedback: <TError = ErrorType<ErrorResponse>>(id: str
|
|
|
4826
4864
|
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof deleteCallFeedback>>, TError, Key, Arguments, Awaited<ReturnType<typeof deleteCallFeedback>>> & {
|
|
4827
4865
|
swrKey?: string;
|
|
4828
4866
|
};
|
|
4829
|
-
request?: SecondParameter$
|
|
4867
|
+
request?: SecondParameter$g<typeof customFetch>;
|
|
4830
4868
|
}) => {
|
|
4831
4869
|
isMutating: boolean;
|
|
4832
4870
|
trigger: swr_mutation.TriggerWithOptionsArgs<null, TError, string | readonly [`/v1/calls/${string}/feedback/${string}`], Arguments>;
|
|
@@ -4836,7 +4874,7 @@ declare const useDeleteCallFeedback: <TError = ErrorType<ErrorResponse>>(id: str
|
|
|
4836
4874
|
swrKey: string | readonly [`/v1/calls/${string}/feedback/${string}`];
|
|
4837
4875
|
};
|
|
4838
4876
|
|
|
4839
|
-
type SecondParameter$
|
|
4877
|
+
type SecondParameter$f<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
4840
4878
|
/**
|
|
4841
4879
|
* List all calls, with pagination, filtering, and sorting.
|
|
4842
4880
|
|
|
@@ -4857,7 +4895,7 @@ declare const useListCalls: <TError = ErrorType<ErrorResponse>>(params?: ListCal
|
|
|
4857
4895
|
swrKey?: Key;
|
|
4858
4896
|
enabled?: boolean;
|
|
4859
4897
|
};
|
|
4860
|
-
request?: SecondParameter$
|
|
4898
|
+
request?: SecondParameter$f<typeof customFetch>;
|
|
4861
4899
|
}) => {
|
|
4862
4900
|
data: CallList | undefined;
|
|
4863
4901
|
error: TError | undefined;
|
|
@@ -4884,7 +4922,7 @@ declare const useGetCall: <TError = ErrorType<ErrorResponse>>(id: string, params
|
|
|
4884
4922
|
swrKey?: Key;
|
|
4885
4923
|
enabled?: boolean;
|
|
4886
4924
|
};
|
|
4887
|
-
request?: SecondParameter$
|
|
4925
|
+
request?: SecondParameter$f<typeof customFetch>;
|
|
4888
4926
|
}) => {
|
|
4889
4927
|
data: CallDetail | undefined;
|
|
4890
4928
|
error: TError | undefined;
|
|
@@ -4909,7 +4947,7 @@ declare const useGetCallEvaluation: <TError = ErrorType<ErrorResponse>>(id: stri
|
|
|
4909
4947
|
swrKey?: Key;
|
|
4910
4948
|
enabled?: boolean;
|
|
4911
4949
|
};
|
|
4912
|
-
request?: SecondParameter$
|
|
4950
|
+
request?: SecondParameter$f<typeof customFetch>;
|
|
4913
4951
|
}) => {
|
|
4914
4952
|
data: CallEvaluation | undefined;
|
|
4915
4953
|
error: TError | undefined;
|
|
@@ -4936,7 +4974,7 @@ declare const useGetCallAnalytics: <TError = ErrorType<ErrorResponse>>(params: G
|
|
|
4936
4974
|
swrKey?: Key;
|
|
4937
4975
|
enabled?: boolean;
|
|
4938
4976
|
};
|
|
4939
|
-
request?: SecondParameter$
|
|
4977
|
+
request?: SecondParameter$f<typeof customFetch>;
|
|
4940
4978
|
}) => {
|
|
4941
4979
|
data: CallAnalytics | undefined;
|
|
4942
4980
|
error: TError | undefined;
|
|
@@ -4946,6 +4984,60 @@ declare const useGetCallAnalytics: <TError = ErrorType<ErrorResponse>>(params: G
|
|
|
4946
4984
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
4947
4985
|
};
|
|
4948
4986
|
|
|
4987
|
+
type SecondParameter$e<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
4988
|
+
/**
|
|
4989
|
+
* Create a new chat agent with a name and prompt.
|
|
4990
|
+
* @summary Create chat agent
|
|
4991
|
+
*/
|
|
4992
|
+
declare const getCreateChatAgentUrl: () => string;
|
|
4993
|
+
declare const createChatAgent: (createChatAgentBody: CreateChatAgentBody, options?: RequestInit) => Promise<ChatAgentCreated>;
|
|
4994
|
+
declare const getCreateChatAgentMutationFetcher: (options?: SecondParameter$e<typeof customFetch>) => (_: Key, { arg }: {
|
|
4995
|
+
arg: CreateChatAgentBody;
|
|
4996
|
+
}) => Promise<ChatAgentCreated>;
|
|
4997
|
+
declare const getCreateChatAgentMutationKey: () => readonly ["/v1/chat-agents"];
|
|
4998
|
+
type CreateChatAgentMutationResult = NonNullable<Awaited<ReturnType<typeof createChatAgent>>>;
|
|
4999
|
+
/**
|
|
5000
|
+
* @summary Create chat agent
|
|
5001
|
+
*/
|
|
5002
|
+
declare const useCreateChatAgent: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
5003
|
+
swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createChatAgent>>, TError, Key, CreateChatAgentBody, Awaited<ReturnType<typeof createChatAgent>>> & {
|
|
5004
|
+
swrKey?: string;
|
|
5005
|
+
};
|
|
5006
|
+
request?: SecondParameter$e<typeof customFetch>;
|
|
5007
|
+
}) => {
|
|
5008
|
+
isMutating: boolean;
|
|
5009
|
+
trigger: swr_mutation.TriggerWithArgs<ChatAgentCreated, TError, string | readonly ["/v1/chat-agents"], CreateChatAgentBody>;
|
|
5010
|
+
reset: () => void;
|
|
5011
|
+
data: ChatAgentCreated | undefined;
|
|
5012
|
+
error: TError | undefined;
|
|
5013
|
+
swrKey: string | readonly ["/v1/chat-agents"];
|
|
5014
|
+
};
|
|
5015
|
+
/**
|
|
5016
|
+
* Retrieve a single chat agent by ID. The prompt is not returned.
|
|
5017
|
+
* @summary Get chat agent
|
|
5018
|
+
*/
|
|
5019
|
+
declare const getGetChatAgentUrl: (chatAgentId: string) => string;
|
|
5020
|
+
declare const getChatAgent: (chatAgentId: string, options?: RequestInit) => Promise<ChatAgent>;
|
|
5021
|
+
declare const getGetChatAgentKey: (chatAgentId: string) => readonly [`/v1/chat-agents/${string}`];
|
|
5022
|
+
type GetChatAgentQueryResult = NonNullable<Awaited<ReturnType<typeof getChatAgent>>>;
|
|
5023
|
+
/**
|
|
5024
|
+
* @summary Get chat agent
|
|
5025
|
+
*/
|
|
5026
|
+
declare const useGetChatAgent: <TError = ErrorType<ErrorResponse>>(chatAgentId: string, options?: {
|
|
5027
|
+
swr?: SWRConfiguration<Awaited<ReturnType<typeof getChatAgent>>, TError> & {
|
|
5028
|
+
swrKey?: Key;
|
|
5029
|
+
enabled?: boolean;
|
|
5030
|
+
};
|
|
5031
|
+
request?: SecondParameter$e<typeof customFetch>;
|
|
5032
|
+
}) => {
|
|
5033
|
+
data: ChatAgent | undefined;
|
|
5034
|
+
error: TError | undefined;
|
|
5035
|
+
mutate: swr.KeyedMutator<ChatAgent>;
|
|
5036
|
+
isValidating: boolean;
|
|
5037
|
+
isLoading: swr__internal.IsLoadingResponse<Data, Config>;
|
|
5038
|
+
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
|
|
5039
|
+
};
|
|
5040
|
+
|
|
4949
5041
|
type SecondParameter$d<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
4950
5042
|
/**
|
|
4951
5043
|
* Create a new empty claim. Returns the claim ID and the creation timestamp.
|
|
@@ -6022,7 +6114,7 @@ declare const useGetVoiceAgent: <TError = ErrorType<ErrorResponse>>(voiceAgentId
|
|
|
6022
6114
|
/**
|
|
6023
6115
|
* Update a voice agent's name or call processor.
|
|
6024
6116
|
|
|
6025
|
-
|
|
6117
|
+
To change the processor assignment, `call_processor_id` and `call_processor_type` must be provided together. Set `call_processor_id` to `null` to detach (`call_processor_type` is still required).
|
|
6026
6118
|
* @summary Update voice agent
|
|
6027
6119
|
*/
|
|
6028
6120
|
declare const getUpdateVoiceAgentUrl: (voiceAgentId: string) => string;
|
|
@@ -6774,4 +6866,4 @@ declare const useUpdateWorker: <TError = ErrorType<ErrorResponse>>(workerId: str
|
|
|
6774
6866
|
swrKey: string | readonly [`/v1/workers/${string}`];
|
|
6775
6867
|
};
|
|
6776
6868
|
|
|
6777
|
-
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 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 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 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 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 GetVoiceAgentPromptQueryResult, type GetVoiceAgentQueryResult, type GetVoiceAgentResponse, type GetWebhookQueryResult, 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 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 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 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 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 UpdateVoiceAgentResponse, type UpdateWorkerBody, type UpdateWorkerBodySchema, type UpdateWorkerMutationResult, 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 VoiceAgentPrompt, VoiceAgentSttModel, VoiceAgentTtsModel, VoiceAgentTtsProvider, type VoiceAgentWebhookList, type Webhook, type WebhookDelivery, type WebhookDeliveryList, type WebhookScope, type WebhookTestResult, type WorkerCreated, type WorkerCreatedSchema, type WorkerList, type WorkerRun, type WorkerRunCreated, type WorkerRunCreatedScope, type WorkerRunList, type WorkerRunMessage, type WorkerRunMessageList, type WorkerRunMessageMessage, type WorkerRunScope, type WorkerSummary, type WorkerWebhookList, addToolsToVoiceAgent, cancelJob, checkInboxAvailability, configure, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, 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, getCheckInboxAvailabilityKey, getCheckInboxAvailabilityUrl, getClaimDetail, getConfig, getCreateAgentWebhookMutationFetcher, getCreateAgentWebhookMutationKey, getCreateAgentWebhookUrl, getCreateApiKeyMutationFetcher, getCreateApiKeyMutationKey, getCreateApiKeyUrl, getCreateArtifactMutationFetcher, getCreateArtifactMutationKey, getCreateArtifactUrl, getCreateCallFeedbackMutationFetcher, getCreateCallFeedbackMutationKey, getCreateCallFeedbackUrl, 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, getGetClaimDetailKey, getGetClaimDetailUrl, getGetEmailKey, getGetEmailUrl, getGetExtractCitationsKey, getGetExtractCitationsUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetProfileKey, getGetProfileUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetVoiceAgentKey, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, getGetWebhookKey, getGetWebhookUrl, getGetWorkerKey, getGetWorkerRunKey, getGetWorkerRunUrl, getGetWorkerUrl, getListAgentWebhooksKey, getListAgentWebhooksUrl, getListApiKeysKey, getListApiKeysUrl, getListArtifactsKey, getListArtifactsUrl, getListCallFeedbackKey, getListCallFeedbackUrl, getListCallsKey, getListCallsUrl, 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, getProfile, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRemoveMemberMutationFetcher, getRemoveMemberMutationKey, getRemoveMemberUrl, getReplyToEmailMutationFetcher, getReplyToEmailMutationKey, getReplyToEmailUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSessionToken, getSignInMutationFetcher, getSignInMutationKey, getSignInUrl, getSignUpMutationFetcher, getSignUpMutationKey, getSignUpUrl, getTestWebhookMutationFetcher, getTestWebhookMutationKey, getTestWebhookUrl, getTool, getUpdateArtifactMetadataMutationFetcher, getUpdateArtifactMetadataMutationKey, getUpdateArtifactMetadataUrl, getUpdateCallControlsMutationFetcher, getUpdateCallControlsMutationKey, getUpdateCallControlsUrl, getUpdateExtractorMutationFetcher, getUpdateExtractorMutationKey, getUpdateExtractorUrl, getUpdateInboxMutationFetcher, getUpdateInboxMutationKey, getUpdateInboxUrl, getUpdateMemberRoleMutationFetcher, getUpdateMemberRoleMutationKey, getUpdateMemberRoleUrl, getUpdateToolMutationFetcher, getUpdateToolMutationKey, getUpdateToolUrl, getUpdateVoiceAgentModelsMutationFetcher, getUpdateVoiceAgentModelsMutationKey, getUpdateVoiceAgentModelsUrl, getUpdateVoiceAgentMutationFetcher, getUpdateVoiceAgentMutationKey, getUpdateVoiceAgentUrl, getUpdateWorkerMutationFetcher, getUpdateWorkerMutationKey, getUpdateWorkerRunScopeMutationFetcher, getUpdateWorkerRunScopeMutationKey, getUpdateWorkerRunScopeUrl, getUpdateWorkerUrl, getUploadFileMutationFetcher, getUploadFileMutationKey, getUploadFileUrl, getVoiceAgent, getVoiceAgentPrompt, getWebhook, getWorker, getWorkerRun, listAgentWebhooks, listApiKeys, listArtifacts, listCallFeedback, listCalls, listClaims, listEmailThreads, listEmails, listExtractorJobs, listExtractors, listExtracts, listInboxWebhooks, listInboxes, listJobs, listTeamMembers, listTools, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerRunMessages, listWorkerRuns, listWorkerWebhooks, listWorkers, refreshToken, removeMember, replyToEmail, revokeApiKey, scheduleJob, signIn, signUp, testWebhook, updateArtifactMetadata, updateCallControls, updateExtractor, updateInbox, updateMemberRole, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateWorker, updateWorkerRunScope, uploadFile, useAddToolsToVoiceAgent, useCancelJob, useCheckInboxAvailability, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateClaim, useCreateEmail, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateInbox, useCreateInboxWebhook, useCreateTool, useCreateVoiceAgent, useCreateWorker, useCreateWorkerRun, useCreateWorkerWebhook, useDeleteCallFeedback, useDeleteToolsFromVoiceAgent, useDeleteWebhook, useExecuteCode, useGetArtifact, useGetArtifactMetadataKeys, useGetArtifactUploadUrl, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetClaimDetail, useGetEmail, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetOAuthUrl, useGetProfile, useGetSessionToken, useGetTool, useGetVoiceAgent, useGetVoiceAgentPrompt, useGetWebhook, useGetWorker, useGetWorkerRun, useListAgentWebhooks, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListClaims, useListEmailThreads, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListInboxWebhooks, useListInboxes, useListJobs, useListTeamMembers, useListTools, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerRunMessages, useListWorkerRuns, useListWorkerWebhooks, useListWorkers, useRefreshToken, useRemoveMember, useReplyToEmail, useRevokeApiKey, useScheduleJob, useSignIn, useSignUp, useTestWebhook, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateWorker, useUpdateWorkerRunScope, useUploadFile };
|
|
6869
|
+
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 ChatAgent, type ChatAgentCreated, 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 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 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 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 GetVoiceAgentPromptQueryResult, type GetVoiceAgentQueryResult, type GetVoiceAgentResponse, type GetWebhookQueryResult, 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 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 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 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 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 UpdateVoiceAgentResponse, type UpdateWorkerBody, type UpdateWorkerBodySchema, type UpdateWorkerMutationResult, 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 VoiceAgentPrompt, VoiceAgentSttModel, VoiceAgentTtsModel, VoiceAgentTtsProvider, type VoiceAgentWebhookList, type Webhook, type WebhookDelivery, type WebhookDeliveryList, type WebhookScope, type WebhookTestResult, type WorkerCreated, type WorkerCreatedSchema, type WorkerList, type WorkerRun, type WorkerRunCreated, type WorkerRunCreatedScope, type WorkerRunList, type WorkerRunMessage, type WorkerRunMessageList, type WorkerRunMessageMessage, type WorkerRunScope, type WorkerSummary, type WorkerWebhookList, addToolsToVoiceAgent, cancelJob, checkInboxAvailability, configure, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, 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, getChatAgent, getCheckInboxAvailabilityKey, getCheckInboxAvailabilityUrl, getClaimDetail, getConfig, getCreateAgentWebhookMutationFetcher, getCreateAgentWebhookMutationKey, getCreateAgentWebhookUrl, getCreateApiKeyMutationFetcher, getCreateApiKeyMutationKey, getCreateApiKeyUrl, getCreateArtifactMutationFetcher, getCreateArtifactMutationKey, getCreateArtifactUrl, getCreateCallFeedbackMutationFetcher, getCreateCallFeedbackMutationKey, getCreateCallFeedbackUrl, getCreateChatAgentMutationFetcher, getCreateChatAgentMutationKey, getCreateChatAgentUrl, 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, getGetClaimDetailKey, getGetClaimDetailUrl, getGetEmailKey, getGetEmailUrl, getGetExtractCitationsKey, getGetExtractCitationsUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetProfileKey, getGetProfileUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetVoiceAgentKey, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, getGetWebhookKey, getGetWebhookUrl, getGetWorkerKey, getGetWorkerRunKey, getGetWorkerRunUrl, getGetWorkerUrl, getListAgentWebhooksKey, getListAgentWebhooksUrl, getListApiKeysKey, getListApiKeysUrl, getListArtifactsKey, getListArtifactsUrl, getListCallFeedbackKey, getListCallFeedbackUrl, getListCallsKey, getListCallsUrl, 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, getProfile, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRemoveMemberMutationFetcher, getRemoveMemberMutationKey, getRemoveMemberUrl, getReplyToEmailMutationFetcher, getReplyToEmailMutationKey, getReplyToEmailUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSessionToken, getSignInMutationFetcher, getSignInMutationKey, getSignInUrl, getSignUpMutationFetcher, getSignUpMutationKey, getSignUpUrl, getTestWebhookMutationFetcher, getTestWebhookMutationKey, getTestWebhookUrl, getTool, getUpdateArtifactMetadataMutationFetcher, getUpdateArtifactMetadataMutationKey, getUpdateArtifactMetadataUrl, getUpdateCallControlsMutationFetcher, getUpdateCallControlsMutationKey, getUpdateCallControlsUrl, getUpdateExtractorMutationFetcher, getUpdateExtractorMutationKey, getUpdateExtractorUrl, getUpdateInboxMutationFetcher, getUpdateInboxMutationKey, getUpdateInboxUrl, getUpdateMemberRoleMutationFetcher, getUpdateMemberRoleMutationKey, getUpdateMemberRoleUrl, getUpdateToolMutationFetcher, getUpdateToolMutationKey, getUpdateToolUrl, getUpdateVoiceAgentModelsMutationFetcher, getUpdateVoiceAgentModelsMutationKey, getUpdateVoiceAgentModelsUrl, getUpdateVoiceAgentMutationFetcher, getUpdateVoiceAgentMutationKey, getUpdateVoiceAgentUrl, getUpdateWorkerMutationFetcher, getUpdateWorkerMutationKey, getUpdateWorkerRunScopeMutationFetcher, getUpdateWorkerRunScopeMutationKey, getUpdateWorkerRunScopeUrl, getUpdateWorkerUrl, getUploadFileMutationFetcher, getUploadFileMutationKey, getUploadFileUrl, getVoiceAgent, getVoiceAgentPrompt, getWebhook, getWorker, getWorkerRun, listAgentWebhooks, listApiKeys, listArtifacts, listCallFeedback, listCalls, listClaims, listEmailThreads, listEmails, listExtractorJobs, listExtractors, listExtracts, listInboxWebhooks, listInboxes, listJobs, listTeamMembers, listTools, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerRunMessages, listWorkerRuns, listWorkerWebhooks, listWorkers, refreshToken, removeMember, replyToEmail, revokeApiKey, scheduleJob, signIn, signUp, testWebhook, updateArtifactMetadata, updateCallControls, updateExtractor, updateInbox, updateMemberRole, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateWorker, updateWorkerRunScope, uploadFile, useAddToolsToVoiceAgent, useCancelJob, useCheckInboxAvailability, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateChatAgent, useCreateClaim, useCreateEmail, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateInbox, useCreateInboxWebhook, useCreateTool, useCreateVoiceAgent, useCreateWorker, useCreateWorkerRun, useCreateWorkerWebhook, useDeleteCallFeedback, useDeleteToolsFromVoiceAgent, useDeleteWebhook, useExecuteCode, useGetArtifact, useGetArtifactMetadataKeys, useGetArtifactUploadUrl, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetChatAgent, useGetClaimDetail, useGetEmail, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetOAuthUrl, useGetProfile, useGetSessionToken, useGetTool, useGetVoiceAgent, useGetVoiceAgentPrompt, useGetWebhook, useGetWorker, useGetWorkerRun, useListAgentWebhooks, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListClaims, useListEmailThreads, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListInboxWebhooks, useListInboxes, useListJobs, useListTeamMembers, useListTools, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerRunMessages, useListWorkerRuns, useListWorkerWebhooks, useListWorkers, useRefreshToken, useRemoveMember, useReplyToEmail, useRevokeApiKey, useScheduleJob, useSignIn, useSignUp, useTestWebhook, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateWorker, useUpdateWorkerRunScope, useUploadFile };
|