@avallon-labs/sdk 19.5.0 → 19.6.0-staging.467

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 CHANGED
@@ -781,6 +781,53 @@ interface ChatAgentCreated {
781
781
  created_at: string;
782
782
  }
783
783
 
784
+ /**
785
+ * Generated by orval v8.1.0 🍺
786
+ * Do not edit manually.
787
+ * Avallon API
788
+ * OpenAPI spec version: 1.0.0
789
+ */
790
+ interface ChatCreated {
791
+ id: string;
792
+ created_at: string;
793
+ }
794
+
795
+ /**
796
+ * Generated by orval v8.1.0 🍺
797
+ * Do not edit manually.
798
+ * Avallon API
799
+ * OpenAPI spec version: 1.0.0
800
+ */
801
+ type ChatMessageCreatedMessageContentItem = {
802
+ type: string;
803
+ [key: string]: unknown;
804
+ };
805
+
806
+ /**
807
+ * Generated by orval v8.1.0 🍺
808
+ * Do not edit manually.
809
+ * Avallon API
810
+ * OpenAPI spec version: 1.0.0
811
+ */
812
+
813
+ type ChatMessageCreatedMessage = {
814
+ id: string;
815
+ role: "assistant";
816
+ content: ChatMessageCreatedMessageContentItem[];
817
+ generated_at: string;
818
+ };
819
+
820
+ /**
821
+ * Generated by orval v8.1.0 🍺
822
+ * Do not edit manually.
823
+ * Avallon API
824
+ * OpenAPI spec version: 1.0.0
825
+ */
826
+
827
+ interface ChatMessageCreated {
828
+ message: ChatMessageCreatedMessage;
829
+ }
830
+
784
831
  /**
785
832
  * Generated by orval v8.1.0 🍺
786
833
  * Do not edit manually.
@@ -1135,6 +1182,16 @@ type CreateChatAgentBody = {
1135
1182
  prompt: string;
1136
1183
  };
1137
1184
 
1185
+ /**
1186
+ * Generated by orval v8.1.0 🍺
1187
+ * Do not edit manually.
1188
+ * Avallon API
1189
+ * OpenAPI spec version: 1.0.0
1190
+ */
1191
+ type CreateChatBody = {
1192
+ chat_agent_id: string;
1193
+ };
1194
+
1138
1195
  /**
1139
1196
  * Generated by orval v8.1.0 🍺
1140
1197
  * Do not edit manually.
@@ -3553,6 +3610,20 @@ interface OutboundJob {
3553
3610
 
3554
3611
  type OutboundJobList = OutboundJob[];
3555
3612
 
3613
+ /**
3614
+ * Generated by orval v8.1.0 🍺
3615
+ * Do not edit manually.
3616
+ * Avallon API
3617
+ * OpenAPI spec version: 1.0.0
3618
+ */
3619
+ type PostChatMessageBody = {
3620
+ /**
3621
+ * @minLength 1
3622
+ * @maxLength 32000
3623
+ */
3624
+ content: string;
3625
+ };
3626
+
3556
3627
  /**
3557
3628
  * Generated by orval v8.1.0 🍺
3558
3629
  * Do not edit manually.
@@ -4410,7 +4481,7 @@ type WorkerRunMessageList = WorkerRunMessage[];
4410
4481
 
4411
4482
  type WorkerWebhookList = Webhook[];
4412
4483
 
4413
- type SecondParameter$j<T extends (...args: never) => unknown> = Parameters<T>[1];
4484
+ type SecondParameter$k<T extends (...args: never) => unknown> = Parameters<T>[1];
4414
4485
  /**
4415
4486
  * List all API keys for your tenant.
4416
4487
 
@@ -4431,7 +4502,7 @@ declare const useListApiKeys: <TError = ErrorType<ErrorResponse>>(params?: ListA
4431
4502
  swrKey?: Key;
4432
4503
  enabled?: boolean;
4433
4504
  };
4434
- request?: SecondParameter$j<typeof customFetch>;
4505
+ request?: SecondParameter$k<typeof customFetch>;
4435
4506
  }) => {
4436
4507
  data: ApiKeyList | undefined;
4437
4508
  error: TError | undefined;
@@ -4450,7 +4521,7 @@ Keys are scoped to an environment (`test` or `live`) and optionally accept an ex
4450
4521
  */
4451
4522
  declare const getCreateApiKeyUrl: () => string;
4452
4523
  declare const createApiKey: (createApiKeyBody: CreateApiKeyBody, options?: RequestInit) => Promise<ApiKeyCreated>;
4453
- declare const getCreateApiKeyMutationFetcher: (options?: SecondParameter$j<typeof customFetch>) => (_: Key, { arg }: {
4524
+ declare const getCreateApiKeyMutationFetcher: (options?: SecondParameter$k<typeof customFetch>) => (_: Key, { arg }: {
4454
4525
  arg: CreateApiKeyBody;
4455
4526
  }) => Promise<ApiKeyCreated>;
4456
4527
  declare const getCreateApiKeyMutationKey: () => readonly ["/platform/api-keys"];
@@ -4462,7 +4533,7 @@ declare const useCreateApiKey: <TError = ErrorType<ErrorResponse>>(options?: {
4462
4533
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createApiKey>>, TError, Key, CreateApiKeyBody, Awaited<ReturnType<typeof createApiKey>>> & {
4463
4534
  swrKey?: string;
4464
4535
  };
4465
- request?: SecondParameter$j<typeof customFetch>;
4536
+ request?: SecondParameter$k<typeof customFetch>;
4466
4537
  }) => {
4467
4538
  isMutating: boolean;
4468
4539
  trigger: swr_mutation.TriggerWithArgs<ApiKeyCreated, TError, string | readonly ["/platform/api-keys"], CreateApiKeyBody>;
@@ -4481,7 +4552,7 @@ Returns 409 if the key is already revoked, 404 if the key does not exist.
4481
4552
  */
4482
4553
  declare const getRevokeApiKeyUrl: (id: string) => string;
4483
4554
  declare const revokeApiKey: (id: string, options?: RequestInit) => Promise<ConfirmationResponse>;
4484
- declare const getRevokeApiKeyMutationFetcher: (id: string, options?: SecondParameter$j<typeof customFetch>) => (_: Key, __: {
4555
+ declare const getRevokeApiKeyMutationFetcher: (id: string, options?: SecondParameter$k<typeof customFetch>) => (_: Key, __: {
4485
4556
  arg: Arguments;
4486
4557
  }) => Promise<ConfirmationResponse>;
4487
4558
  declare const getRevokeApiKeyMutationKey: (id: string) => readonly [`/platform/api-keys/${string}/revoke`];
@@ -4493,7 +4564,7 @@ declare const useRevokeApiKey: <TError = ErrorType<ErrorResponse>>(id: string, o
4493
4564
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof revokeApiKey>>, TError, Key, Arguments, Awaited<ReturnType<typeof revokeApiKey>>> & {
4494
4565
  swrKey?: string;
4495
4566
  };
4496
- request?: SecondParameter$j<typeof customFetch>;
4567
+ request?: SecondParameter$k<typeof customFetch>;
4497
4568
  }) => {
4498
4569
  isMutating: boolean;
4499
4570
  trigger: swr_mutation.TriggerWithOptionsArgs<ConfirmationResponse, TError, string | readonly [`/platform/api-keys/${string}/revoke`], Arguments>;
@@ -4503,7 +4574,7 @@ declare const useRevokeApiKey: <TError = ErrorType<ErrorResponse>>(id: string, o
4503
4574
  swrKey: string | readonly [`/platform/api-keys/${string}/revoke`];
4504
4575
  };
4505
4576
 
4506
- type SecondParameter$i<T extends (...args: never) => unknown> = Parameters<T>[1];
4577
+ type SecondParameter$j<T extends (...args: never) => unknown> = Parameters<T>[1];
4507
4578
  /**
4508
4579
  * Upload a document as a base64-encoded artifact for processing.
4509
4580
 
@@ -4519,7 +4590,7 @@ Maximum file size is approximately 6.75MB (base64 encoded). The API Gateway has
4519
4590
  */
4520
4591
  declare const getCreateArtifactUrl: () => string;
4521
4592
  declare const createArtifact: (createArtifactBody: CreateArtifactBody, options?: RequestInit) => Promise<ArtifactCreated>;
4522
- declare const getCreateArtifactMutationFetcher: (options?: SecondParameter$i<typeof customFetch>) => (_: Key, { arg }: {
4593
+ declare const getCreateArtifactMutationFetcher: (options?: SecondParameter$j<typeof customFetch>) => (_: Key, { arg }: {
4523
4594
  arg: CreateArtifactBody;
4524
4595
  }) => Promise<ArtifactCreated>;
4525
4596
  declare const getCreateArtifactMutationKey: () => readonly ["/v1/artifacts"];
@@ -4531,7 +4602,7 @@ declare const useCreateArtifact: <TError = ErrorType<ErrorResponse>>(options?: {
4531
4602
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createArtifact>>, TError, Key, CreateArtifactBody, Awaited<ReturnType<typeof createArtifact>>> & {
4532
4603
  swrKey?: string;
4533
4604
  };
4534
- request?: SecondParameter$i<typeof customFetch>;
4605
+ request?: SecondParameter$j<typeof customFetch>;
4535
4606
  }) => {
4536
4607
  isMutating: boolean;
4537
4608
  trigger: swr_mutation.TriggerWithArgs<ArtifactCreated, TError, string | readonly ["/v1/artifacts"], CreateArtifactBody>;
@@ -4564,7 +4635,7 @@ declare const useListArtifacts: <TError = ErrorType<ErrorResponse>>(params?: Lis
4564
4635
  swrKey?: Key;
4565
4636
  enabled?: boolean;
4566
4637
  };
4567
- request?: SecondParameter$i<typeof customFetch>;
4638
+ request?: SecondParameter$j<typeof customFetch>;
4568
4639
  }) => {
4569
4640
  data: ArtifactList | undefined;
4570
4641
  error: TError | undefined;
@@ -4589,7 +4660,7 @@ declare const useGetArtifact: <TError = ErrorType<ErrorResponse>>(id: string, op
4589
4660
  swrKey?: Key;
4590
4661
  enabled?: boolean;
4591
4662
  };
4592
- request?: SecondParameter$i<typeof customFetch>;
4663
+ request?: SecondParameter$j<typeof customFetch>;
4593
4664
  }) => {
4594
4665
  data: ArtifactDetail | undefined;
4595
4666
  error: TError | undefined;
@@ -4614,7 +4685,7 @@ declare const useGetArtifactMetadataKeys: <TError = ErrorType<ErrorResponse>>(pa
4614
4685
  swrKey?: Key;
4615
4686
  enabled?: boolean;
4616
4687
  };
4617
- request?: SecondParameter$i<typeof customFetch>;
4688
+ request?: SecondParameter$j<typeof customFetch>;
4618
4689
  }) => {
4619
4690
  data: ArtifactMetadataKeys | undefined;
4620
4691
  error: TError | undefined;
@@ -4629,7 +4700,7 @@ declare const useGetArtifactMetadataKeys: <TError = ErrorType<ErrorResponse>>(pa
4629
4700
  */
4630
4701
  declare const getGetArtifactUploadUrlUrl: () => string;
4631
4702
  declare const getArtifactUploadUrl: (getArtifactUploadUrlBody: GetArtifactUploadUrlBody, options?: RequestInit) => Promise<GetArtifactUploadUrl200>;
4632
- declare const getGetArtifactUploadUrlMutationFetcher: (options?: SecondParameter$i<typeof customFetch>) => (_: Key, { arg }: {
4703
+ declare const getGetArtifactUploadUrlMutationFetcher: (options?: SecondParameter$j<typeof customFetch>) => (_: Key, { arg }: {
4633
4704
  arg: GetArtifactUploadUrlBody;
4634
4705
  }) => Promise<GetArtifactUploadUrl200>;
4635
4706
  declare const getGetArtifactUploadUrlMutationKey: () => readonly ["/v1/artifacts/get-upload-url"];
@@ -4641,7 +4712,7 @@ declare const useGetArtifactUploadUrl: <TError = ErrorType<ErrorResponse>>(optio
4641
4712
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof getArtifactUploadUrl>>, TError, Key, GetArtifactUploadUrlBody, Awaited<ReturnType<typeof getArtifactUploadUrl>>> & {
4642
4713
  swrKey?: string;
4643
4714
  };
4644
- request?: SecondParameter$i<typeof customFetch>;
4715
+ request?: SecondParameter$j<typeof customFetch>;
4645
4716
  }) => {
4646
4717
  isMutating: boolean;
4647
4718
  trigger: swr_mutation.TriggerWithArgs<GetArtifactUploadUrl200, TError, string | readonly ["/v1/artifacts/get-upload-url"], GetArtifactUploadUrlBody>;
@@ -4656,7 +4727,7 @@ declare const useGetArtifactUploadUrl: <TError = ErrorType<ErrorResponse>>(optio
4656
4727
  */
4657
4728
  declare const getUpdateArtifactMetadataUrl: (id: string) => string;
4658
4729
  declare const updateArtifactMetadata: (id: string, updateArtifactMetadataBody: UpdateArtifactMetadataBody, options?: RequestInit) => Promise<ArtifactDetail>;
4659
- declare const getUpdateArtifactMetadataMutationFetcher: (id: string, options?: SecondParameter$i<typeof customFetch>) => (_: Key, { arg }: {
4730
+ declare const getUpdateArtifactMetadataMutationFetcher: (id: string, options?: SecondParameter$j<typeof customFetch>) => (_: Key, { arg }: {
4660
4731
  arg: UpdateArtifactMetadataBody;
4661
4732
  }) => Promise<ArtifactDetail>;
4662
4733
  declare const getUpdateArtifactMetadataMutationKey: (id: string) => readonly [`/v1/artifacts/${string}/metadata`];
@@ -4668,7 +4739,7 @@ declare const useUpdateArtifactMetadata: <TError = ErrorType<ErrorResponse>>(id:
4668
4739
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof updateArtifactMetadata>>, TError, Key, UpdateArtifactMetadataBody, Awaited<ReturnType<typeof updateArtifactMetadata>>> & {
4669
4740
  swrKey?: string;
4670
4741
  };
4671
- request?: SecondParameter$i<typeof customFetch>;
4742
+ request?: SecondParameter$j<typeof customFetch>;
4672
4743
  }) => {
4673
4744
  isMutating: boolean;
4674
4745
  trigger: swr_mutation.TriggerWithArgs<ArtifactDetail, TError, string | readonly [`/v1/artifacts/${string}/metadata`], UpdateArtifactMetadataBody>;
@@ -4685,7 +4756,7 @@ This endpoint returns an upload id that can be used to find the created artifact
4685
4756
  */
4686
4757
  declare const getUploadFileUrl: () => string;
4687
4758
  declare const uploadFile: (uploadFileBody: UploadFileBody, options?: RequestInit) => Promise<UploadFileResponse>;
4688
- declare const getUploadFileMutationFetcher: (options?: SecondParameter$i<typeof customFetch>) => (_: Key, { arg }: {
4759
+ declare const getUploadFileMutationFetcher: (options?: SecondParameter$j<typeof customFetch>) => (_: Key, { arg }: {
4689
4760
  arg: UploadFileBody;
4690
4761
  }) => Promise<UploadFileResponse>;
4691
4762
  declare const getUploadFileMutationKey: () => readonly ["/v1/upload-file"];
@@ -4697,7 +4768,7 @@ declare const useUploadFile: <TError = ErrorType<ErrorResponse>>(options?: {
4697
4768
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof uploadFile>>, TError, Key, UploadFileBody, Awaited<ReturnType<typeof uploadFile>>> & {
4698
4769
  swrKey?: string;
4699
4770
  };
4700
- request?: SecondParameter$i<typeof customFetch>;
4771
+ request?: SecondParameter$j<typeof customFetch>;
4701
4772
  }) => {
4702
4773
  isMutating: boolean;
4703
4774
  trigger: swr_mutation.TriggerWithArgs<UploadFileResponse, TError, string | readonly ["/v1/upload-file"], UploadFileBody>;
@@ -4707,14 +4778,14 @@ declare const useUploadFile: <TError = ErrorType<ErrorResponse>>(options?: {
4707
4778
  swrKey: string | readonly ["/v1/upload-file"];
4708
4779
  };
4709
4780
 
4710
- type SecondParameter$h<T extends (...args: never) => unknown> = Parameters<T>[1];
4781
+ type SecondParameter$i<T extends (...args: never) => unknown> = Parameters<T>[1];
4711
4782
  /**
4712
4783
  * Create a new user account with email and password.
4713
4784
  * @summary Sign up
4714
4785
  */
4715
4786
  declare const getSignUpUrl: () => string;
4716
4787
  declare const signUp: (signUpBody: SignUpBody, options?: RequestInit) => Promise<EmptyResponse>;
4717
- declare const getSignUpMutationFetcher: (options?: SecondParameter$h<typeof customFetchNoAuth>) => (_: Key, { arg }: {
4788
+ declare const getSignUpMutationFetcher: (options?: SecondParameter$i<typeof customFetchNoAuth>) => (_: Key, { arg }: {
4718
4789
  arg: SignUpBody;
4719
4790
  }) => Promise<EmptyResponse>;
4720
4791
  declare const getSignUpMutationKey: () => readonly ["/v1/auth/sign-up"];
@@ -4726,7 +4797,7 @@ declare const useSignUp: <TError = ErrorType<ErrorResponse>>(options?: {
4726
4797
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof signUp>>, TError, Key, SignUpBody, Awaited<ReturnType<typeof signUp>>> & {
4727
4798
  swrKey?: string;
4728
4799
  };
4729
- request?: SecondParameter$h<typeof customFetchNoAuth>;
4800
+ request?: SecondParameter$i<typeof customFetchNoAuth>;
4730
4801
  }) => {
4731
4802
  isMutating: boolean;
4732
4803
  trigger: swr_mutation.TriggerWithArgs<EmptyResponse, TError, string | readonly ["/v1/auth/sign-up"], SignUpBody>;
@@ -4745,7 +4816,7 @@ declare const useSignUp: <TError = ErrorType<ErrorResponse>>(options?: {
4745
4816
  */
4746
4817
  declare const getSignInUrl: () => string;
4747
4818
  declare const signIn: (signInBody: SignInBody, options?: RequestInit) => Promise<AuthTokens>;
4748
- declare const getSignInMutationFetcher: (options?: SecondParameter$h<typeof customFetchNoAuth>) => (_: Key, { arg }: {
4819
+ declare const getSignInMutationFetcher: (options?: SecondParameter$i<typeof customFetchNoAuth>) => (_: Key, { arg }: {
4749
4820
  arg: SignInBody;
4750
4821
  }) => Promise<AuthTokens>;
4751
4822
  declare const getSignInMutationKey: () => readonly ["/v1/auth/sign-in"];
@@ -4757,7 +4828,7 @@ declare const useSignIn: <TError = ErrorType<ErrorResponse>>(options?: {
4757
4828
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof signIn>>, TError, Key, SignInBody, Awaited<ReturnType<typeof signIn>>> & {
4758
4829
  swrKey?: string;
4759
4830
  };
4760
- request?: SecondParameter$h<typeof customFetchNoAuth>;
4831
+ request?: SecondParameter$i<typeof customFetchNoAuth>;
4761
4832
  }) => {
4762
4833
  isMutating: boolean;
4763
4834
  trigger: swr_mutation.TriggerWithArgs<AuthTokens, TError, string | readonly ["/v1/auth/sign-in"], SignInBody>;
@@ -4772,7 +4843,7 @@ declare const useSignIn: <TError = ErrorType<ErrorResponse>>(options?: {
4772
4843
  */
4773
4844
  declare const getRefreshTokenUrl: () => string;
4774
4845
  declare const refreshToken: (refreshTokenBody: RefreshTokenBody, options?: RequestInit) => Promise<AuthTokens>;
4775
- declare const getRefreshTokenMutationFetcher: (options?: SecondParameter$h<typeof customFetchNoAuth>) => (_: Key, { arg }: {
4846
+ declare const getRefreshTokenMutationFetcher: (options?: SecondParameter$i<typeof customFetchNoAuth>) => (_: Key, { arg }: {
4776
4847
  arg: RefreshTokenBody;
4777
4848
  }) => Promise<AuthTokens>;
4778
4849
  declare const getRefreshTokenMutationKey: () => readonly ["/v1/auth/refresh-token"];
@@ -4784,7 +4855,7 @@ declare const useRefreshToken: <TError = ErrorType<ErrorResponse>>(options?: {
4784
4855
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof refreshToken>>, TError, Key, RefreshTokenBody, Awaited<ReturnType<typeof refreshToken>>> & {
4785
4856
  swrKey?: string;
4786
4857
  };
4787
- request?: SecondParameter$h<typeof customFetchNoAuth>;
4858
+ request?: SecondParameter$i<typeof customFetchNoAuth>;
4788
4859
  }) => {
4789
4860
  isMutating: boolean;
4790
4861
  trigger: swr_mutation.TriggerWithArgs<AuthTokens, TError, string | readonly ["/v1/auth/refresh-token"], RefreshTokenBody>;
@@ -4809,7 +4880,7 @@ declare const useGetOAuthUrl: <TError = ErrorType<ErrorResponse>>(params: GetOAu
4809
4880
  swrKey?: Key;
4810
4881
  enabled?: boolean;
4811
4882
  };
4812
- request?: SecondParameter$h<typeof customFetchNoAuth>;
4883
+ request?: SecondParameter$i<typeof customFetchNoAuth>;
4813
4884
  }) => {
4814
4885
  data: OAuthUrl | undefined;
4815
4886
  error: TError | undefined;
@@ -4828,7 +4899,7 @@ declare const useGetOAuthUrl: <TError = ErrorType<ErrorResponse>>(params: GetOAu
4828
4899
  */
4829
4900
  declare const getGetSessionTokenUrl: () => string;
4830
4901
  declare const getSessionToken: (getSessionTokenBody: GetSessionTokenBody, options?: RequestInit) => Promise<GetSessionToken200>;
4831
- declare const getGetSessionTokenMutationFetcher: (options?: SecondParameter$h<typeof customFetchNoAuth>) => (_: Key, { arg }: {
4902
+ declare const getGetSessionTokenMutationFetcher: (options?: SecondParameter$i<typeof customFetchNoAuth>) => (_: Key, { arg }: {
4832
4903
  arg: GetSessionTokenBody;
4833
4904
  }) => Promise<GetSessionToken200>;
4834
4905
  declare const getGetSessionTokenMutationKey: () => readonly ["/v1/auth/session"];
@@ -4840,7 +4911,7 @@ declare const useGetSessionToken: <TError = ErrorType<ErrorResponse>>(options?:
4840
4911
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof getSessionToken>>, TError, Key, GetSessionTokenBody, Awaited<ReturnType<typeof getSessionToken>>> & {
4841
4912
  swrKey?: string;
4842
4913
  };
4843
- request?: SecondParameter$h<typeof customFetchNoAuth>;
4914
+ request?: SecondParameter$i<typeof customFetchNoAuth>;
4844
4915
  }) => {
4845
4916
  isMutating: boolean;
4846
4917
  trigger: swr_mutation.TriggerWithArgs<GetSessionToken200, TError, string | readonly ["/v1/auth/session"], GetSessionTokenBody>;
@@ -4850,14 +4921,14 @@ declare const useGetSessionToken: <TError = ErrorType<ErrorResponse>>(options?:
4850
4921
  swrKey: string | readonly ["/v1/auth/session"];
4851
4922
  };
4852
4923
 
4853
- type SecondParameter$g<T extends (...args: never) => unknown> = Parameters<T>[1];
4924
+ type SecondParameter$h<T extends (...args: never) => unknown> = Parameters<T>[1];
4854
4925
  /**
4855
4926
  * Create feedback for a specific message in a call. Author is derived from the authenticated user.
4856
4927
  * @summary Create feedback on a call message
4857
4928
  */
4858
4929
  declare const getCreateCallFeedbackUrl: (id: string) => string;
4859
4930
  declare const createCallFeedback: (id: string, createFeedbackRequest: CreateFeedbackRequest, options?: RequestInit) => Promise<Feedback>;
4860
- declare const getCreateCallFeedbackMutationFetcher: (id: string, options?: SecondParameter$g<typeof customFetch>) => (_: Key, { arg }: {
4931
+ declare const getCreateCallFeedbackMutationFetcher: (id: string, options?: SecondParameter$h<typeof customFetch>) => (_: Key, { arg }: {
4861
4932
  arg: CreateFeedbackRequest;
4862
4933
  }) => Promise<Feedback>;
4863
4934
  declare const getCreateCallFeedbackMutationKey: (id: string) => readonly [`/v1/calls/${string}/feedback`];
@@ -4869,7 +4940,7 @@ declare const useCreateCallFeedback: <TError = ErrorType<ErrorResponse>>(id: str
4869
4940
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createCallFeedback>>, TError, Key, CreateFeedbackRequest, Awaited<ReturnType<typeof createCallFeedback>>> & {
4870
4941
  swrKey?: string;
4871
4942
  };
4872
- request?: SecondParameter$g<typeof customFetch>;
4943
+ request?: SecondParameter$h<typeof customFetch>;
4873
4944
  }) => {
4874
4945
  isMutating: boolean;
4875
4946
  trigger: swr_mutation.TriggerWithArgs<Feedback, TError, string | readonly [`/v1/calls/${string}/feedback`], CreateFeedbackRequest>;
@@ -4894,7 +4965,7 @@ declare const useListCallFeedback: <TError = ErrorType<ErrorResponse>>(id: strin
4894
4965
  swrKey?: Key;
4895
4966
  enabled?: boolean;
4896
4967
  };
4897
- request?: SecondParameter$g<typeof customFetch>;
4968
+ request?: SecondParameter$h<typeof customFetch>;
4898
4969
  }) => {
4899
4970
  data: Feedback[] | undefined;
4900
4971
  error: TError | undefined;
@@ -4909,7 +4980,7 @@ declare const useListCallFeedback: <TError = ErrorType<ErrorResponse>>(id: strin
4909
4980
  */
4910
4981
  declare const getDeleteCallFeedbackUrl: (id: string, feedbackId: string) => string;
4911
4982
  declare const deleteCallFeedback: (id: string, feedbackId: string, options?: RequestInit) => Promise<null>;
4912
- declare const getDeleteCallFeedbackMutationFetcher: (id: string, feedbackId: string, options?: SecondParameter$g<typeof customFetch>) => (_: Key, __: {
4983
+ declare const getDeleteCallFeedbackMutationFetcher: (id: string, feedbackId: string, options?: SecondParameter$h<typeof customFetch>) => (_: Key, __: {
4913
4984
  arg: Arguments;
4914
4985
  }) => Promise<null>;
4915
4986
  declare const getDeleteCallFeedbackMutationKey: (id: string, feedbackId: string) => readonly [`/v1/calls/${string}/feedback/${string}`];
@@ -4921,7 +4992,7 @@ declare const useDeleteCallFeedback: <TError = ErrorType<ErrorResponse>>(id: str
4921
4992
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof deleteCallFeedback>>, TError, Key, Arguments, Awaited<ReturnType<typeof deleteCallFeedback>>> & {
4922
4993
  swrKey?: string;
4923
4994
  };
4924
- request?: SecondParameter$g<typeof customFetch>;
4995
+ request?: SecondParameter$h<typeof customFetch>;
4925
4996
  }) => {
4926
4997
  isMutating: boolean;
4927
4998
  trigger: swr_mutation.TriggerWithOptionsArgs<null, TError, string | readonly [`/v1/calls/${string}/feedback/${string}`], Arguments>;
@@ -4931,7 +5002,7 @@ declare const useDeleteCallFeedback: <TError = ErrorType<ErrorResponse>>(id: str
4931
5002
  swrKey: string | readonly [`/v1/calls/${string}/feedback/${string}`];
4932
5003
  };
4933
5004
 
4934
- type SecondParameter$f<T extends (...args: never) => unknown> = Parameters<T>[1];
5005
+ type SecondParameter$g<T extends (...args: never) => unknown> = Parameters<T>[1];
4935
5006
  /**
4936
5007
  * List all calls, with pagination, filtering, and sorting.
4937
5008
 
@@ -4952,7 +5023,7 @@ declare const useListCalls: <TError = ErrorType<ErrorResponse>>(params?: ListCal
4952
5023
  swrKey?: Key;
4953
5024
  enabled?: boolean;
4954
5025
  };
4955
- request?: SecondParameter$f<typeof customFetch>;
5026
+ request?: SecondParameter$g<typeof customFetch>;
4956
5027
  }) => {
4957
5028
  data: CallList | undefined;
4958
5029
  error: TError | undefined;
@@ -4979,7 +5050,7 @@ declare const useGetCall: <TError = ErrorType<ErrorResponse>>(id: string, params
4979
5050
  swrKey?: Key;
4980
5051
  enabled?: boolean;
4981
5052
  };
4982
- request?: SecondParameter$f<typeof customFetch>;
5053
+ request?: SecondParameter$g<typeof customFetch>;
4983
5054
  }) => {
4984
5055
  data: CallDetail | undefined;
4985
5056
  error: TError | undefined;
@@ -5004,7 +5075,7 @@ declare const useGetCallEvaluation: <TError = ErrorType<ErrorResponse>>(id: stri
5004
5075
  swrKey?: Key;
5005
5076
  enabled?: boolean;
5006
5077
  };
5007
- request?: SecondParameter$f<typeof customFetch>;
5078
+ request?: SecondParameter$g<typeof customFetch>;
5008
5079
  }) => {
5009
5080
  data: CallEvaluation | undefined;
5010
5081
  error: TError | undefined;
@@ -5031,7 +5102,7 @@ declare const useGetCallAnalytics: <TError = ErrorType<ErrorResponse>>(params: G
5031
5102
  swrKey?: Key;
5032
5103
  enabled?: boolean;
5033
5104
  };
5034
- request?: SecondParameter$f<typeof customFetch>;
5105
+ request?: SecondParameter$g<typeof customFetch>;
5035
5106
  }) => {
5036
5107
  data: CallAnalytics | undefined;
5037
5108
  error: TError | undefined;
@@ -5041,14 +5112,14 @@ declare const useGetCallAnalytics: <TError = ErrorType<ErrorResponse>>(params: G
5041
5112
  swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
5042
5113
  };
5043
5114
 
5044
- type SecondParameter$e<T extends (...args: never) => unknown> = Parameters<T>[1];
5115
+ type SecondParameter$f<T extends (...args: never) => unknown> = Parameters<T>[1];
5045
5116
  /**
5046
5117
  * Create a new chat agent with a name and prompt.
5047
5118
  * @summary Create chat agent
5048
5119
  */
5049
5120
  declare const getCreateChatAgentUrl: () => string;
5050
5121
  declare const createChatAgent: (createChatAgentBody: CreateChatAgentBody, options?: RequestInit) => Promise<ChatAgentCreated>;
5051
- declare const getCreateChatAgentMutationFetcher: (options?: SecondParameter$e<typeof customFetch>) => (_: Key, { arg }: {
5122
+ declare const getCreateChatAgentMutationFetcher: (options?: SecondParameter$f<typeof customFetch>) => (_: Key, { arg }: {
5052
5123
  arg: CreateChatAgentBody;
5053
5124
  }) => Promise<ChatAgentCreated>;
5054
5125
  declare const getCreateChatAgentMutationKey: () => readonly ["/v1/chat-agents"];
@@ -5060,7 +5131,7 @@ declare const useCreateChatAgent: <TError = ErrorType<ErrorResponse>>(options?:
5060
5131
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createChatAgent>>, TError, Key, CreateChatAgentBody, Awaited<ReturnType<typeof createChatAgent>>> & {
5061
5132
  swrKey?: string;
5062
5133
  };
5063
- request?: SecondParameter$e<typeof customFetch>;
5134
+ request?: SecondParameter$f<typeof customFetch>;
5064
5135
  }) => {
5065
5136
  isMutating: boolean;
5066
5137
  trigger: swr_mutation.TriggerWithArgs<ChatAgentCreated, TError, string | readonly ["/v1/chat-agents"], CreateChatAgentBody>;
@@ -5085,7 +5156,7 @@ declare const useGetChatAgent: <TError = ErrorType<ErrorResponse>>(chatAgentId:
5085
5156
  swrKey?: Key;
5086
5157
  enabled?: boolean;
5087
5158
  };
5088
- request?: SecondParameter$e<typeof customFetch>;
5159
+ request?: SecondParameter$f<typeof customFetch>;
5089
5160
  }) => {
5090
5161
  data: ChatAgent | undefined;
5091
5162
  error: TError | undefined;
@@ -5095,6 +5166,62 @@ declare const useGetChatAgent: <TError = ErrorType<ErrorResponse>>(chatAgentId:
5095
5166
  swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
5096
5167
  };
5097
5168
 
5169
+ type SecondParameter$e<T extends (...args: never) => unknown> = Parameters<T>[1];
5170
+ /**
5171
+ * Create a new chat against an existing chat agent. The chat agent's tenant becomes the owner of the chat.
5172
+ * @summary Create a chat
5173
+ */
5174
+ declare const getCreateChatUrl: () => string;
5175
+ declare const createChat: (createChatBody: CreateChatBody, options?: RequestInit) => Promise<ChatCreated>;
5176
+ declare const getCreateChatMutationFetcher: (options?: SecondParameter$e<typeof customFetch>) => (_: Key, { arg }: {
5177
+ arg: CreateChatBody;
5178
+ }) => Promise<ChatCreated>;
5179
+ declare const getCreateChatMutationKey: () => readonly ["/public/v1/chats"];
5180
+ type CreateChatMutationResult = NonNullable<Awaited<ReturnType<typeof createChat>>>;
5181
+ /**
5182
+ * @summary Create a chat
5183
+ */
5184
+ declare const useCreateChat: <TError = ErrorType<ErrorResponse>>(options?: {
5185
+ swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createChat>>, TError, Key, CreateChatBody, Awaited<ReturnType<typeof createChat>>> & {
5186
+ swrKey?: string;
5187
+ };
5188
+ request?: SecondParameter$e<typeof customFetch>;
5189
+ }) => {
5190
+ isMutating: boolean;
5191
+ trigger: swr_mutation.TriggerWithArgs<ChatCreated, TError, string | readonly ["/public/v1/chats"], CreateChatBody>;
5192
+ reset: () => void;
5193
+ data: ChatCreated | undefined;
5194
+ error: TError | undefined;
5195
+ swrKey: string | readonly ["/public/v1/chats"];
5196
+ };
5197
+ /**
5198
+ * Post a user message to an existing chat and return the assistant reply. Both messages are persisted.
5199
+ * @summary Post a message to a chat
5200
+ */
5201
+ declare const getPostChatMessageUrl: (chatId: string) => string;
5202
+ declare const postChatMessage: (chatId: string, postChatMessageBody: PostChatMessageBody, options?: RequestInit) => Promise<ChatMessageCreated>;
5203
+ declare const getPostChatMessageMutationFetcher: (chatId: string, options?: SecondParameter$e<typeof customFetch>) => (_: Key, { arg }: {
5204
+ arg: PostChatMessageBody;
5205
+ }) => Promise<ChatMessageCreated>;
5206
+ declare const getPostChatMessageMutationKey: (chatId: string) => readonly [`/public/v1/chats/${string}/messages`];
5207
+ type PostChatMessageMutationResult = NonNullable<Awaited<ReturnType<typeof postChatMessage>>>;
5208
+ /**
5209
+ * @summary Post a message to a chat
5210
+ */
5211
+ declare const usePostChatMessage: <TError = ErrorType<ErrorResponse>>(chatId: string, options?: {
5212
+ swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof postChatMessage>>, TError, Key, PostChatMessageBody, Awaited<ReturnType<typeof postChatMessage>>> & {
5213
+ swrKey?: string;
5214
+ };
5215
+ request?: SecondParameter$e<typeof customFetch>;
5216
+ }) => {
5217
+ isMutating: boolean;
5218
+ trigger: swr_mutation.TriggerWithArgs<ChatMessageCreated, TError, string | readonly [`/public/v1/chats/${string}/messages`], PostChatMessageBody>;
5219
+ reset: () => void;
5220
+ data: ChatMessageCreated | undefined;
5221
+ error: TError | undefined;
5222
+ swrKey: string | readonly [`/public/v1/chats/${string}/messages`];
5223
+ };
5224
+
5098
5225
  type SecondParameter$d<T extends (...args: never) => unknown> = Parameters<T>[1];
5099
5226
  /**
5100
5227
  * Create a new empty claim. Returns the claim ID and the creation timestamp.
@@ -6950,4 +7077,4 @@ declare const useUpdateWorker: <TError = ErrorType<ErrorResponse>>(workerId: str
6950
7077
  swrKey: string | readonly [`/v1/workers/${string}`];
6951
7078
  };
6952
7079
 
6953
- 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 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 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 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 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, getSendEmailMutationFetcher, getSendEmailMutationKey, getSendEmailUrl, 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, sendEmail, 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, useSendEmail, useSignIn, useSignUp, useTestWebhook, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateWorker, useUpdateWorkerRunScope, useUploadFile };
7080
+ 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 ChatCreated, type ChatMessageCreated, type ChatMessageCreatedMessage, type ChatMessageCreatedMessageContentItem, 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 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 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 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, 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, 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, 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, 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, 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, postChatMessage, refreshToken, removeMember, replyToEmail, revokeApiKey, scheduleJob, sendEmail, signIn, signUp, testWebhook, updateArtifactMetadata, updateCallControls, updateExtractor, updateInbox, updateMemberRole, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateWorker, 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, 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, usePostChatMessage, useRefreshToken, useRemoveMember, useReplyToEmail, useRevokeApiKey, useScheduleJob, useSendEmail, useSignIn, useSignUp, useTestWebhook, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateWorker, useUpdateWorkerRunScope, useUploadFile };