@avallon-labs/sdk 19.5.0 → 19.7.0-staging.469

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,62 @@ 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
+
791
+ type ChatAgentList = ChatAgent[];
792
+
793
+ /**
794
+ * Generated by orval v8.1.0 🍺
795
+ * Do not edit manually.
796
+ * Avallon API
797
+ * OpenAPI spec version: 1.0.0
798
+ */
799
+ interface ChatCreated {
800
+ id: string;
801
+ created_at: string;
802
+ }
803
+
804
+ /**
805
+ * Generated by orval v8.1.0 🍺
806
+ * Do not edit manually.
807
+ * Avallon API
808
+ * OpenAPI spec version: 1.0.0
809
+ */
810
+ type ChatMessageCreatedMessageContentItem = {
811
+ type: string;
812
+ [key: string]: unknown;
813
+ };
814
+
815
+ /**
816
+ * Generated by orval v8.1.0 🍺
817
+ * Do not edit manually.
818
+ * Avallon API
819
+ * OpenAPI spec version: 1.0.0
820
+ */
821
+
822
+ type ChatMessageCreatedMessage = {
823
+ id: string;
824
+ role: "assistant";
825
+ content: ChatMessageCreatedMessageContentItem[];
826
+ generated_at: string;
827
+ };
828
+
829
+ /**
830
+ * Generated by orval v8.1.0 🍺
831
+ * Do not edit manually.
832
+ * Avallon API
833
+ * OpenAPI spec version: 1.0.0
834
+ */
835
+
836
+ interface ChatMessageCreated {
837
+ message: ChatMessageCreatedMessage;
838
+ }
839
+
784
840
  /**
785
841
  * Generated by orval v8.1.0 🍺
786
842
  * Do not edit manually.
@@ -1135,6 +1191,16 @@ type CreateChatAgentBody = {
1135
1191
  prompt: string;
1136
1192
  };
1137
1193
 
1194
+ /**
1195
+ * Generated by orval v8.1.0 🍺
1196
+ * Do not edit manually.
1197
+ * Avallon API
1198
+ * OpenAPI spec version: 1.0.0
1199
+ */
1200
+ type CreateChatBody = {
1201
+ chat_agent_id: string;
1202
+ };
1203
+
1138
1204
  /**
1139
1205
  * Generated by orval v8.1.0 🍺
1140
1206
  * Do not edit manually.
@@ -2793,6 +2859,51 @@ type ListCallsParams = {
2793
2859
  phone_number?: string;
2794
2860
  };
2795
2861
 
2862
+ /**
2863
+ * Generated by orval v8.1.0 🍺
2864
+ * Do not edit manually.
2865
+ * Avallon API
2866
+ * OpenAPI spec version: 1.0.0
2867
+ */
2868
+ type ListChatAgentsSortBy = (typeof ListChatAgentsSortBy)[keyof typeof ListChatAgentsSortBy];
2869
+ declare const ListChatAgentsSortBy: {
2870
+ readonly created_at: "created_at";
2871
+ readonly name: "name";
2872
+ };
2873
+
2874
+ /**
2875
+ * Generated by orval v8.1.0 🍺
2876
+ * Do not edit manually.
2877
+ * Avallon API
2878
+ * OpenAPI spec version: 1.0.0
2879
+ */
2880
+ type ListChatAgentsSortOrder = (typeof ListChatAgentsSortOrder)[keyof typeof ListChatAgentsSortOrder];
2881
+ declare const ListChatAgentsSortOrder: {
2882
+ readonly asc: "asc";
2883
+ readonly desc: "desc";
2884
+ };
2885
+
2886
+ /**
2887
+ * Generated by orval v8.1.0 🍺
2888
+ * Do not edit manually.
2889
+ * Avallon API
2890
+ * OpenAPI spec version: 1.0.0
2891
+ */
2892
+
2893
+ type ListChatAgentsParams = {
2894
+ /**
2895
+ * @minimum 1
2896
+ * @maximum 100
2897
+ */
2898
+ count?: number;
2899
+ /**
2900
+ * @minimum 0
2901
+ */
2902
+ offset?: number;
2903
+ sort_by?: ListChatAgentsSortBy;
2904
+ sort_order?: ListChatAgentsSortOrder;
2905
+ };
2906
+
2796
2907
  /**
2797
2908
  * Generated by orval v8.1.0 🍺
2798
2909
  * Do not edit manually.
@@ -3553,6 +3664,20 @@ interface OutboundJob {
3553
3664
 
3554
3665
  type OutboundJobList = OutboundJob[];
3555
3666
 
3667
+ /**
3668
+ * Generated by orval v8.1.0 🍺
3669
+ * Do not edit manually.
3670
+ * Avallon API
3671
+ * OpenAPI spec version: 1.0.0
3672
+ */
3673
+ type PostChatMessageBody = {
3674
+ /**
3675
+ * @minLength 1
3676
+ * @maxLength 32000
3677
+ */
3678
+ content: string;
3679
+ };
3680
+
3556
3681
  /**
3557
3682
  * Generated by orval v8.1.0 🍺
3558
3683
  * Do not edit manually.
@@ -4410,7 +4535,7 @@ type WorkerRunMessageList = WorkerRunMessage[];
4410
4535
 
4411
4536
  type WorkerWebhookList = Webhook[];
4412
4537
 
4413
- type SecondParameter$j<T extends (...args: never) => unknown> = Parameters<T>[1];
4538
+ type SecondParameter$k<T extends (...args: never) => unknown> = Parameters<T>[1];
4414
4539
  /**
4415
4540
  * List all API keys for your tenant.
4416
4541
 
@@ -4431,7 +4556,7 @@ declare const useListApiKeys: <TError = ErrorType<ErrorResponse>>(params?: ListA
4431
4556
  swrKey?: Key;
4432
4557
  enabled?: boolean;
4433
4558
  };
4434
- request?: SecondParameter$j<typeof customFetch>;
4559
+ request?: SecondParameter$k<typeof customFetch>;
4435
4560
  }) => {
4436
4561
  data: ApiKeyList | undefined;
4437
4562
  error: TError | undefined;
@@ -4450,7 +4575,7 @@ Keys are scoped to an environment (`test` or `live`) and optionally accept an ex
4450
4575
  */
4451
4576
  declare const getCreateApiKeyUrl: () => string;
4452
4577
  declare const createApiKey: (createApiKeyBody: CreateApiKeyBody, options?: RequestInit) => Promise<ApiKeyCreated>;
4453
- declare const getCreateApiKeyMutationFetcher: (options?: SecondParameter$j<typeof customFetch>) => (_: Key, { arg }: {
4578
+ declare const getCreateApiKeyMutationFetcher: (options?: SecondParameter$k<typeof customFetch>) => (_: Key, { arg }: {
4454
4579
  arg: CreateApiKeyBody;
4455
4580
  }) => Promise<ApiKeyCreated>;
4456
4581
  declare const getCreateApiKeyMutationKey: () => readonly ["/platform/api-keys"];
@@ -4462,7 +4587,7 @@ declare const useCreateApiKey: <TError = ErrorType<ErrorResponse>>(options?: {
4462
4587
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createApiKey>>, TError, Key, CreateApiKeyBody, Awaited<ReturnType<typeof createApiKey>>> & {
4463
4588
  swrKey?: string;
4464
4589
  };
4465
- request?: SecondParameter$j<typeof customFetch>;
4590
+ request?: SecondParameter$k<typeof customFetch>;
4466
4591
  }) => {
4467
4592
  isMutating: boolean;
4468
4593
  trigger: swr_mutation.TriggerWithArgs<ApiKeyCreated, TError, string | readonly ["/platform/api-keys"], CreateApiKeyBody>;
@@ -4481,7 +4606,7 @@ Returns 409 if the key is already revoked, 404 if the key does not exist.
4481
4606
  */
4482
4607
  declare const getRevokeApiKeyUrl: (id: string) => string;
4483
4608
  declare const revokeApiKey: (id: string, options?: RequestInit) => Promise<ConfirmationResponse>;
4484
- declare const getRevokeApiKeyMutationFetcher: (id: string, options?: SecondParameter$j<typeof customFetch>) => (_: Key, __: {
4609
+ declare const getRevokeApiKeyMutationFetcher: (id: string, options?: SecondParameter$k<typeof customFetch>) => (_: Key, __: {
4485
4610
  arg: Arguments;
4486
4611
  }) => Promise<ConfirmationResponse>;
4487
4612
  declare const getRevokeApiKeyMutationKey: (id: string) => readonly [`/platform/api-keys/${string}/revoke`];
@@ -4493,7 +4618,7 @@ declare const useRevokeApiKey: <TError = ErrorType<ErrorResponse>>(id: string, o
4493
4618
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof revokeApiKey>>, TError, Key, Arguments, Awaited<ReturnType<typeof revokeApiKey>>> & {
4494
4619
  swrKey?: string;
4495
4620
  };
4496
- request?: SecondParameter$j<typeof customFetch>;
4621
+ request?: SecondParameter$k<typeof customFetch>;
4497
4622
  }) => {
4498
4623
  isMutating: boolean;
4499
4624
  trigger: swr_mutation.TriggerWithOptionsArgs<ConfirmationResponse, TError, string | readonly [`/platform/api-keys/${string}/revoke`], Arguments>;
@@ -4503,7 +4628,7 @@ declare const useRevokeApiKey: <TError = ErrorType<ErrorResponse>>(id: string, o
4503
4628
  swrKey: string | readonly [`/platform/api-keys/${string}/revoke`];
4504
4629
  };
4505
4630
 
4506
- type SecondParameter$i<T extends (...args: never) => unknown> = Parameters<T>[1];
4631
+ type SecondParameter$j<T extends (...args: never) => unknown> = Parameters<T>[1];
4507
4632
  /**
4508
4633
  * Upload a document as a base64-encoded artifact for processing.
4509
4634
 
@@ -4519,7 +4644,7 @@ Maximum file size is approximately 6.75MB (base64 encoded). The API Gateway has
4519
4644
  */
4520
4645
  declare const getCreateArtifactUrl: () => string;
4521
4646
  declare const createArtifact: (createArtifactBody: CreateArtifactBody, options?: RequestInit) => Promise<ArtifactCreated>;
4522
- declare const getCreateArtifactMutationFetcher: (options?: SecondParameter$i<typeof customFetch>) => (_: Key, { arg }: {
4647
+ declare const getCreateArtifactMutationFetcher: (options?: SecondParameter$j<typeof customFetch>) => (_: Key, { arg }: {
4523
4648
  arg: CreateArtifactBody;
4524
4649
  }) => Promise<ArtifactCreated>;
4525
4650
  declare const getCreateArtifactMutationKey: () => readonly ["/v1/artifacts"];
@@ -4531,7 +4656,7 @@ declare const useCreateArtifact: <TError = ErrorType<ErrorResponse>>(options?: {
4531
4656
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createArtifact>>, TError, Key, CreateArtifactBody, Awaited<ReturnType<typeof createArtifact>>> & {
4532
4657
  swrKey?: string;
4533
4658
  };
4534
- request?: SecondParameter$i<typeof customFetch>;
4659
+ request?: SecondParameter$j<typeof customFetch>;
4535
4660
  }) => {
4536
4661
  isMutating: boolean;
4537
4662
  trigger: swr_mutation.TriggerWithArgs<ArtifactCreated, TError, string | readonly ["/v1/artifacts"], CreateArtifactBody>;
@@ -4564,7 +4689,7 @@ declare const useListArtifacts: <TError = ErrorType<ErrorResponse>>(params?: Lis
4564
4689
  swrKey?: Key;
4565
4690
  enabled?: boolean;
4566
4691
  };
4567
- request?: SecondParameter$i<typeof customFetch>;
4692
+ request?: SecondParameter$j<typeof customFetch>;
4568
4693
  }) => {
4569
4694
  data: ArtifactList | undefined;
4570
4695
  error: TError | undefined;
@@ -4589,7 +4714,7 @@ declare const useGetArtifact: <TError = ErrorType<ErrorResponse>>(id: string, op
4589
4714
  swrKey?: Key;
4590
4715
  enabled?: boolean;
4591
4716
  };
4592
- request?: SecondParameter$i<typeof customFetch>;
4717
+ request?: SecondParameter$j<typeof customFetch>;
4593
4718
  }) => {
4594
4719
  data: ArtifactDetail | undefined;
4595
4720
  error: TError | undefined;
@@ -4614,7 +4739,7 @@ declare const useGetArtifactMetadataKeys: <TError = ErrorType<ErrorResponse>>(pa
4614
4739
  swrKey?: Key;
4615
4740
  enabled?: boolean;
4616
4741
  };
4617
- request?: SecondParameter$i<typeof customFetch>;
4742
+ request?: SecondParameter$j<typeof customFetch>;
4618
4743
  }) => {
4619
4744
  data: ArtifactMetadataKeys | undefined;
4620
4745
  error: TError | undefined;
@@ -4629,7 +4754,7 @@ declare const useGetArtifactMetadataKeys: <TError = ErrorType<ErrorResponse>>(pa
4629
4754
  */
4630
4755
  declare const getGetArtifactUploadUrlUrl: () => string;
4631
4756
  declare const getArtifactUploadUrl: (getArtifactUploadUrlBody: GetArtifactUploadUrlBody, options?: RequestInit) => Promise<GetArtifactUploadUrl200>;
4632
- declare const getGetArtifactUploadUrlMutationFetcher: (options?: SecondParameter$i<typeof customFetch>) => (_: Key, { arg }: {
4757
+ declare const getGetArtifactUploadUrlMutationFetcher: (options?: SecondParameter$j<typeof customFetch>) => (_: Key, { arg }: {
4633
4758
  arg: GetArtifactUploadUrlBody;
4634
4759
  }) => Promise<GetArtifactUploadUrl200>;
4635
4760
  declare const getGetArtifactUploadUrlMutationKey: () => readonly ["/v1/artifacts/get-upload-url"];
@@ -4641,7 +4766,7 @@ declare const useGetArtifactUploadUrl: <TError = ErrorType<ErrorResponse>>(optio
4641
4766
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof getArtifactUploadUrl>>, TError, Key, GetArtifactUploadUrlBody, Awaited<ReturnType<typeof getArtifactUploadUrl>>> & {
4642
4767
  swrKey?: string;
4643
4768
  };
4644
- request?: SecondParameter$i<typeof customFetch>;
4769
+ request?: SecondParameter$j<typeof customFetch>;
4645
4770
  }) => {
4646
4771
  isMutating: boolean;
4647
4772
  trigger: swr_mutation.TriggerWithArgs<GetArtifactUploadUrl200, TError, string | readonly ["/v1/artifacts/get-upload-url"], GetArtifactUploadUrlBody>;
@@ -4656,7 +4781,7 @@ declare const useGetArtifactUploadUrl: <TError = ErrorType<ErrorResponse>>(optio
4656
4781
  */
4657
4782
  declare const getUpdateArtifactMetadataUrl: (id: string) => string;
4658
4783
  declare const updateArtifactMetadata: (id: string, updateArtifactMetadataBody: UpdateArtifactMetadataBody, options?: RequestInit) => Promise<ArtifactDetail>;
4659
- declare const getUpdateArtifactMetadataMutationFetcher: (id: string, options?: SecondParameter$i<typeof customFetch>) => (_: Key, { arg }: {
4784
+ declare const getUpdateArtifactMetadataMutationFetcher: (id: string, options?: SecondParameter$j<typeof customFetch>) => (_: Key, { arg }: {
4660
4785
  arg: UpdateArtifactMetadataBody;
4661
4786
  }) => Promise<ArtifactDetail>;
4662
4787
  declare const getUpdateArtifactMetadataMutationKey: (id: string) => readonly [`/v1/artifacts/${string}/metadata`];
@@ -4668,7 +4793,7 @@ declare const useUpdateArtifactMetadata: <TError = ErrorType<ErrorResponse>>(id:
4668
4793
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof updateArtifactMetadata>>, TError, Key, UpdateArtifactMetadataBody, Awaited<ReturnType<typeof updateArtifactMetadata>>> & {
4669
4794
  swrKey?: string;
4670
4795
  };
4671
- request?: SecondParameter$i<typeof customFetch>;
4796
+ request?: SecondParameter$j<typeof customFetch>;
4672
4797
  }) => {
4673
4798
  isMutating: boolean;
4674
4799
  trigger: swr_mutation.TriggerWithArgs<ArtifactDetail, TError, string | readonly [`/v1/artifacts/${string}/metadata`], UpdateArtifactMetadataBody>;
@@ -4685,7 +4810,7 @@ This endpoint returns an upload id that can be used to find the created artifact
4685
4810
  */
4686
4811
  declare const getUploadFileUrl: () => string;
4687
4812
  declare const uploadFile: (uploadFileBody: UploadFileBody, options?: RequestInit) => Promise<UploadFileResponse>;
4688
- declare const getUploadFileMutationFetcher: (options?: SecondParameter$i<typeof customFetch>) => (_: Key, { arg }: {
4813
+ declare const getUploadFileMutationFetcher: (options?: SecondParameter$j<typeof customFetch>) => (_: Key, { arg }: {
4689
4814
  arg: UploadFileBody;
4690
4815
  }) => Promise<UploadFileResponse>;
4691
4816
  declare const getUploadFileMutationKey: () => readonly ["/v1/upload-file"];
@@ -4697,7 +4822,7 @@ declare const useUploadFile: <TError = ErrorType<ErrorResponse>>(options?: {
4697
4822
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof uploadFile>>, TError, Key, UploadFileBody, Awaited<ReturnType<typeof uploadFile>>> & {
4698
4823
  swrKey?: string;
4699
4824
  };
4700
- request?: SecondParameter$i<typeof customFetch>;
4825
+ request?: SecondParameter$j<typeof customFetch>;
4701
4826
  }) => {
4702
4827
  isMutating: boolean;
4703
4828
  trigger: swr_mutation.TriggerWithArgs<UploadFileResponse, TError, string | readonly ["/v1/upload-file"], UploadFileBody>;
@@ -4707,14 +4832,14 @@ declare const useUploadFile: <TError = ErrorType<ErrorResponse>>(options?: {
4707
4832
  swrKey: string | readonly ["/v1/upload-file"];
4708
4833
  };
4709
4834
 
4710
- type SecondParameter$h<T extends (...args: never) => unknown> = Parameters<T>[1];
4835
+ type SecondParameter$i<T extends (...args: never) => unknown> = Parameters<T>[1];
4711
4836
  /**
4712
4837
  * Create a new user account with email and password.
4713
4838
  * @summary Sign up
4714
4839
  */
4715
4840
  declare const getSignUpUrl: () => string;
4716
4841
  declare const signUp: (signUpBody: SignUpBody, options?: RequestInit) => Promise<EmptyResponse>;
4717
- declare const getSignUpMutationFetcher: (options?: SecondParameter$h<typeof customFetchNoAuth>) => (_: Key, { arg }: {
4842
+ declare const getSignUpMutationFetcher: (options?: SecondParameter$i<typeof customFetchNoAuth>) => (_: Key, { arg }: {
4718
4843
  arg: SignUpBody;
4719
4844
  }) => Promise<EmptyResponse>;
4720
4845
  declare const getSignUpMutationKey: () => readonly ["/v1/auth/sign-up"];
@@ -4726,7 +4851,7 @@ declare const useSignUp: <TError = ErrorType<ErrorResponse>>(options?: {
4726
4851
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof signUp>>, TError, Key, SignUpBody, Awaited<ReturnType<typeof signUp>>> & {
4727
4852
  swrKey?: string;
4728
4853
  };
4729
- request?: SecondParameter$h<typeof customFetchNoAuth>;
4854
+ request?: SecondParameter$i<typeof customFetchNoAuth>;
4730
4855
  }) => {
4731
4856
  isMutating: boolean;
4732
4857
  trigger: swr_mutation.TriggerWithArgs<EmptyResponse, TError, string | readonly ["/v1/auth/sign-up"], SignUpBody>;
@@ -4745,7 +4870,7 @@ declare const useSignUp: <TError = ErrorType<ErrorResponse>>(options?: {
4745
4870
  */
4746
4871
  declare const getSignInUrl: () => string;
4747
4872
  declare const signIn: (signInBody: SignInBody, options?: RequestInit) => Promise<AuthTokens>;
4748
- declare const getSignInMutationFetcher: (options?: SecondParameter$h<typeof customFetchNoAuth>) => (_: Key, { arg }: {
4873
+ declare const getSignInMutationFetcher: (options?: SecondParameter$i<typeof customFetchNoAuth>) => (_: Key, { arg }: {
4749
4874
  arg: SignInBody;
4750
4875
  }) => Promise<AuthTokens>;
4751
4876
  declare const getSignInMutationKey: () => readonly ["/v1/auth/sign-in"];
@@ -4757,7 +4882,7 @@ declare const useSignIn: <TError = ErrorType<ErrorResponse>>(options?: {
4757
4882
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof signIn>>, TError, Key, SignInBody, Awaited<ReturnType<typeof signIn>>> & {
4758
4883
  swrKey?: string;
4759
4884
  };
4760
- request?: SecondParameter$h<typeof customFetchNoAuth>;
4885
+ request?: SecondParameter$i<typeof customFetchNoAuth>;
4761
4886
  }) => {
4762
4887
  isMutating: boolean;
4763
4888
  trigger: swr_mutation.TriggerWithArgs<AuthTokens, TError, string | readonly ["/v1/auth/sign-in"], SignInBody>;
@@ -4772,7 +4897,7 @@ declare const useSignIn: <TError = ErrorType<ErrorResponse>>(options?: {
4772
4897
  */
4773
4898
  declare const getRefreshTokenUrl: () => string;
4774
4899
  declare const refreshToken: (refreshTokenBody: RefreshTokenBody, options?: RequestInit) => Promise<AuthTokens>;
4775
- declare const getRefreshTokenMutationFetcher: (options?: SecondParameter$h<typeof customFetchNoAuth>) => (_: Key, { arg }: {
4900
+ declare const getRefreshTokenMutationFetcher: (options?: SecondParameter$i<typeof customFetchNoAuth>) => (_: Key, { arg }: {
4776
4901
  arg: RefreshTokenBody;
4777
4902
  }) => Promise<AuthTokens>;
4778
4903
  declare const getRefreshTokenMutationKey: () => readonly ["/v1/auth/refresh-token"];
@@ -4784,7 +4909,7 @@ declare const useRefreshToken: <TError = ErrorType<ErrorResponse>>(options?: {
4784
4909
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof refreshToken>>, TError, Key, RefreshTokenBody, Awaited<ReturnType<typeof refreshToken>>> & {
4785
4910
  swrKey?: string;
4786
4911
  };
4787
- request?: SecondParameter$h<typeof customFetchNoAuth>;
4912
+ request?: SecondParameter$i<typeof customFetchNoAuth>;
4788
4913
  }) => {
4789
4914
  isMutating: boolean;
4790
4915
  trigger: swr_mutation.TriggerWithArgs<AuthTokens, TError, string | readonly ["/v1/auth/refresh-token"], RefreshTokenBody>;
@@ -4809,7 +4934,7 @@ declare const useGetOAuthUrl: <TError = ErrorType<ErrorResponse>>(params: GetOAu
4809
4934
  swrKey?: Key;
4810
4935
  enabled?: boolean;
4811
4936
  };
4812
- request?: SecondParameter$h<typeof customFetchNoAuth>;
4937
+ request?: SecondParameter$i<typeof customFetchNoAuth>;
4813
4938
  }) => {
4814
4939
  data: OAuthUrl | undefined;
4815
4940
  error: TError | undefined;
@@ -4828,7 +4953,7 @@ declare const useGetOAuthUrl: <TError = ErrorType<ErrorResponse>>(params: GetOAu
4828
4953
  */
4829
4954
  declare const getGetSessionTokenUrl: () => string;
4830
4955
  declare const getSessionToken: (getSessionTokenBody: GetSessionTokenBody, options?: RequestInit) => Promise<GetSessionToken200>;
4831
- declare const getGetSessionTokenMutationFetcher: (options?: SecondParameter$h<typeof customFetchNoAuth>) => (_: Key, { arg }: {
4956
+ declare const getGetSessionTokenMutationFetcher: (options?: SecondParameter$i<typeof customFetchNoAuth>) => (_: Key, { arg }: {
4832
4957
  arg: GetSessionTokenBody;
4833
4958
  }) => Promise<GetSessionToken200>;
4834
4959
  declare const getGetSessionTokenMutationKey: () => readonly ["/v1/auth/session"];
@@ -4840,7 +4965,7 @@ declare const useGetSessionToken: <TError = ErrorType<ErrorResponse>>(options?:
4840
4965
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof getSessionToken>>, TError, Key, GetSessionTokenBody, Awaited<ReturnType<typeof getSessionToken>>> & {
4841
4966
  swrKey?: string;
4842
4967
  };
4843
- request?: SecondParameter$h<typeof customFetchNoAuth>;
4968
+ request?: SecondParameter$i<typeof customFetchNoAuth>;
4844
4969
  }) => {
4845
4970
  isMutating: boolean;
4846
4971
  trigger: swr_mutation.TriggerWithArgs<GetSessionToken200, TError, string | readonly ["/v1/auth/session"], GetSessionTokenBody>;
@@ -4850,14 +4975,14 @@ declare const useGetSessionToken: <TError = ErrorType<ErrorResponse>>(options?:
4850
4975
  swrKey: string | readonly ["/v1/auth/session"];
4851
4976
  };
4852
4977
 
4853
- type SecondParameter$g<T extends (...args: never) => unknown> = Parameters<T>[1];
4978
+ type SecondParameter$h<T extends (...args: never) => unknown> = Parameters<T>[1];
4854
4979
  /**
4855
4980
  * Create feedback for a specific message in a call. Author is derived from the authenticated user.
4856
4981
  * @summary Create feedback on a call message
4857
4982
  */
4858
4983
  declare const getCreateCallFeedbackUrl: (id: string) => string;
4859
4984
  declare const createCallFeedback: (id: string, createFeedbackRequest: CreateFeedbackRequest, options?: RequestInit) => Promise<Feedback>;
4860
- declare const getCreateCallFeedbackMutationFetcher: (id: string, options?: SecondParameter$g<typeof customFetch>) => (_: Key, { arg }: {
4985
+ declare const getCreateCallFeedbackMutationFetcher: (id: string, options?: SecondParameter$h<typeof customFetch>) => (_: Key, { arg }: {
4861
4986
  arg: CreateFeedbackRequest;
4862
4987
  }) => Promise<Feedback>;
4863
4988
  declare const getCreateCallFeedbackMutationKey: (id: string) => readonly [`/v1/calls/${string}/feedback`];
@@ -4869,7 +4994,7 @@ declare const useCreateCallFeedback: <TError = ErrorType<ErrorResponse>>(id: str
4869
4994
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createCallFeedback>>, TError, Key, CreateFeedbackRequest, Awaited<ReturnType<typeof createCallFeedback>>> & {
4870
4995
  swrKey?: string;
4871
4996
  };
4872
- request?: SecondParameter$g<typeof customFetch>;
4997
+ request?: SecondParameter$h<typeof customFetch>;
4873
4998
  }) => {
4874
4999
  isMutating: boolean;
4875
5000
  trigger: swr_mutation.TriggerWithArgs<Feedback, TError, string | readonly [`/v1/calls/${string}/feedback`], CreateFeedbackRequest>;
@@ -4894,7 +5019,7 @@ declare const useListCallFeedback: <TError = ErrorType<ErrorResponse>>(id: strin
4894
5019
  swrKey?: Key;
4895
5020
  enabled?: boolean;
4896
5021
  };
4897
- request?: SecondParameter$g<typeof customFetch>;
5022
+ request?: SecondParameter$h<typeof customFetch>;
4898
5023
  }) => {
4899
5024
  data: Feedback[] | undefined;
4900
5025
  error: TError | undefined;
@@ -4909,7 +5034,7 @@ declare const useListCallFeedback: <TError = ErrorType<ErrorResponse>>(id: strin
4909
5034
  */
4910
5035
  declare const getDeleteCallFeedbackUrl: (id: string, feedbackId: string) => string;
4911
5036
  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, __: {
5037
+ declare const getDeleteCallFeedbackMutationFetcher: (id: string, feedbackId: string, options?: SecondParameter$h<typeof customFetch>) => (_: Key, __: {
4913
5038
  arg: Arguments;
4914
5039
  }) => Promise<null>;
4915
5040
  declare const getDeleteCallFeedbackMutationKey: (id: string, feedbackId: string) => readonly [`/v1/calls/${string}/feedback/${string}`];
@@ -4921,7 +5046,7 @@ declare const useDeleteCallFeedback: <TError = ErrorType<ErrorResponse>>(id: str
4921
5046
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof deleteCallFeedback>>, TError, Key, Arguments, Awaited<ReturnType<typeof deleteCallFeedback>>> & {
4922
5047
  swrKey?: string;
4923
5048
  };
4924
- request?: SecondParameter$g<typeof customFetch>;
5049
+ request?: SecondParameter$h<typeof customFetch>;
4925
5050
  }) => {
4926
5051
  isMutating: boolean;
4927
5052
  trigger: swr_mutation.TriggerWithOptionsArgs<null, TError, string | readonly [`/v1/calls/${string}/feedback/${string}`], Arguments>;
@@ -4931,7 +5056,7 @@ declare const useDeleteCallFeedback: <TError = ErrorType<ErrorResponse>>(id: str
4931
5056
  swrKey: string | readonly [`/v1/calls/${string}/feedback/${string}`];
4932
5057
  };
4933
5058
 
4934
- type SecondParameter$f<T extends (...args: never) => unknown> = Parameters<T>[1];
5059
+ type SecondParameter$g<T extends (...args: never) => unknown> = Parameters<T>[1];
4935
5060
  /**
4936
5061
  * List all calls, with pagination, filtering, and sorting.
4937
5062
 
@@ -4952,7 +5077,7 @@ declare const useListCalls: <TError = ErrorType<ErrorResponse>>(params?: ListCal
4952
5077
  swrKey?: Key;
4953
5078
  enabled?: boolean;
4954
5079
  };
4955
- request?: SecondParameter$f<typeof customFetch>;
5080
+ request?: SecondParameter$g<typeof customFetch>;
4956
5081
  }) => {
4957
5082
  data: CallList | undefined;
4958
5083
  error: TError | undefined;
@@ -4979,7 +5104,7 @@ declare const useGetCall: <TError = ErrorType<ErrorResponse>>(id: string, params
4979
5104
  swrKey?: Key;
4980
5105
  enabled?: boolean;
4981
5106
  };
4982
- request?: SecondParameter$f<typeof customFetch>;
5107
+ request?: SecondParameter$g<typeof customFetch>;
4983
5108
  }) => {
4984
5109
  data: CallDetail | undefined;
4985
5110
  error: TError | undefined;
@@ -5004,7 +5129,7 @@ declare const useGetCallEvaluation: <TError = ErrorType<ErrorResponse>>(id: stri
5004
5129
  swrKey?: Key;
5005
5130
  enabled?: boolean;
5006
5131
  };
5007
- request?: SecondParameter$f<typeof customFetch>;
5132
+ request?: SecondParameter$g<typeof customFetch>;
5008
5133
  }) => {
5009
5134
  data: CallEvaluation | undefined;
5010
5135
  error: TError | undefined;
@@ -5031,7 +5156,7 @@ declare const useGetCallAnalytics: <TError = ErrorType<ErrorResponse>>(params: G
5031
5156
  swrKey?: Key;
5032
5157
  enabled?: boolean;
5033
5158
  };
5034
- request?: SecondParameter$f<typeof customFetch>;
5159
+ request?: SecondParameter$g<typeof customFetch>;
5035
5160
  }) => {
5036
5161
  data: CallAnalytics | undefined;
5037
5162
  error: TError | undefined;
@@ -5041,14 +5166,14 @@ declare const useGetCallAnalytics: <TError = ErrorType<ErrorResponse>>(params: G
5041
5166
  swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
5042
5167
  };
5043
5168
 
5044
- type SecondParameter$e<T extends (...args: never) => unknown> = Parameters<T>[1];
5169
+ type SecondParameter$f<T extends (...args: never) => unknown> = Parameters<T>[1];
5045
5170
  /**
5046
5171
  * Create a new chat agent with a name and prompt.
5047
5172
  * @summary Create chat agent
5048
5173
  */
5049
5174
  declare const getCreateChatAgentUrl: () => string;
5050
5175
  declare const createChatAgent: (createChatAgentBody: CreateChatAgentBody, options?: RequestInit) => Promise<ChatAgentCreated>;
5051
- declare const getCreateChatAgentMutationFetcher: (options?: SecondParameter$e<typeof customFetch>) => (_: Key, { arg }: {
5176
+ declare const getCreateChatAgentMutationFetcher: (options?: SecondParameter$f<typeof customFetch>) => (_: Key, { arg }: {
5052
5177
  arg: CreateChatAgentBody;
5053
5178
  }) => Promise<ChatAgentCreated>;
5054
5179
  declare const getCreateChatAgentMutationKey: () => readonly ["/v1/chat-agents"];
@@ -5060,7 +5185,7 @@ declare const useCreateChatAgent: <TError = ErrorType<ErrorResponse>>(options?:
5060
5185
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createChatAgent>>, TError, Key, CreateChatAgentBody, Awaited<ReturnType<typeof createChatAgent>>> & {
5061
5186
  swrKey?: string;
5062
5187
  };
5063
- request?: SecondParameter$e<typeof customFetch>;
5188
+ request?: SecondParameter$f<typeof customFetch>;
5064
5189
  }) => {
5065
5190
  isMutating: boolean;
5066
5191
  trigger: swr_mutation.TriggerWithArgs<ChatAgentCreated, TError, string | readonly ["/v1/chat-agents"], CreateChatAgentBody>;
@@ -5069,6 +5194,31 @@ declare const useCreateChatAgent: <TError = ErrorType<ErrorResponse>>(options?:
5069
5194
  error: TError | undefined;
5070
5195
  swrKey: string | readonly ["/v1/chat-agents"];
5071
5196
  };
5197
+ /**
5198
+ * List the tenant's chat agents with pagination and sorting. Prompts are not returned.
5199
+ * @summary List chat agents
5200
+ */
5201
+ declare const getListChatAgentsUrl: (params?: ListChatAgentsParams) => string;
5202
+ declare const listChatAgents: (params?: ListChatAgentsParams, options?: RequestInit) => Promise<ChatAgentList>;
5203
+ declare const getListChatAgentsKey: (params?: ListChatAgentsParams) => readonly ["/v1/chat-agents", ...ListChatAgentsParams[]];
5204
+ type ListChatAgentsQueryResult = NonNullable<Awaited<ReturnType<typeof listChatAgents>>>;
5205
+ /**
5206
+ * @summary List chat agents
5207
+ */
5208
+ declare const useListChatAgents: <TError = ErrorType<ErrorResponse>>(params?: ListChatAgentsParams, options?: {
5209
+ swr?: SWRConfiguration<Awaited<ReturnType<typeof listChatAgents>>, TError> & {
5210
+ swrKey?: Key;
5211
+ enabled?: boolean;
5212
+ };
5213
+ request?: SecondParameter$f<typeof customFetch>;
5214
+ }) => {
5215
+ data: ChatAgentList | undefined;
5216
+ error: TError | undefined;
5217
+ mutate: swr.KeyedMutator<ChatAgentList>;
5218
+ isValidating: boolean;
5219
+ isLoading: swr__internal.IsLoadingResponse<Data, Config>;
5220
+ swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
5221
+ };
5072
5222
  /**
5073
5223
  * Retrieve a single chat agent by ID. The prompt is not returned.
5074
5224
  * @summary Get chat agent
@@ -5085,7 +5235,7 @@ declare const useGetChatAgent: <TError = ErrorType<ErrorResponse>>(chatAgentId:
5085
5235
  swrKey?: Key;
5086
5236
  enabled?: boolean;
5087
5237
  };
5088
- request?: SecondParameter$e<typeof customFetch>;
5238
+ request?: SecondParameter$f<typeof customFetch>;
5089
5239
  }) => {
5090
5240
  data: ChatAgent | undefined;
5091
5241
  error: TError | undefined;
@@ -5095,6 +5245,62 @@ declare const useGetChatAgent: <TError = ErrorType<ErrorResponse>>(chatAgentId:
5095
5245
  swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
5096
5246
  };
5097
5247
 
5248
+ type SecondParameter$e<T extends (...args: never) => unknown> = Parameters<T>[1];
5249
+ /**
5250
+ * Create a new chat against an existing chat agent. The chat agent's tenant becomes the owner of the chat.
5251
+ * @summary Create a chat
5252
+ */
5253
+ declare const getCreateChatUrl: () => string;
5254
+ declare const createChat: (createChatBody: CreateChatBody, options?: RequestInit) => Promise<ChatCreated>;
5255
+ declare const getCreateChatMutationFetcher: (options?: SecondParameter$e<typeof customFetch>) => (_: Key, { arg }: {
5256
+ arg: CreateChatBody;
5257
+ }) => Promise<ChatCreated>;
5258
+ declare const getCreateChatMutationKey: () => readonly ["/public/v1/chats"];
5259
+ type CreateChatMutationResult = NonNullable<Awaited<ReturnType<typeof createChat>>>;
5260
+ /**
5261
+ * @summary Create a chat
5262
+ */
5263
+ declare const useCreateChat: <TError = ErrorType<ErrorResponse>>(options?: {
5264
+ swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createChat>>, TError, Key, CreateChatBody, Awaited<ReturnType<typeof createChat>>> & {
5265
+ swrKey?: string;
5266
+ };
5267
+ request?: SecondParameter$e<typeof customFetch>;
5268
+ }) => {
5269
+ isMutating: boolean;
5270
+ trigger: swr_mutation.TriggerWithArgs<ChatCreated, TError, string | readonly ["/public/v1/chats"], CreateChatBody>;
5271
+ reset: () => void;
5272
+ data: ChatCreated | undefined;
5273
+ error: TError | undefined;
5274
+ swrKey: string | readonly ["/public/v1/chats"];
5275
+ };
5276
+ /**
5277
+ * Post a user message to an existing chat and return the assistant reply. Both messages are persisted.
5278
+ * @summary Post a message to a chat
5279
+ */
5280
+ declare const getPostChatMessageUrl: (chatId: string) => string;
5281
+ declare const postChatMessage: (chatId: string, postChatMessageBody: PostChatMessageBody, options?: RequestInit) => Promise<ChatMessageCreated>;
5282
+ declare const getPostChatMessageMutationFetcher: (chatId: string, options?: SecondParameter$e<typeof customFetch>) => (_: Key, { arg }: {
5283
+ arg: PostChatMessageBody;
5284
+ }) => Promise<ChatMessageCreated>;
5285
+ declare const getPostChatMessageMutationKey: (chatId: string) => readonly [`/public/v1/chats/${string}/messages`];
5286
+ type PostChatMessageMutationResult = NonNullable<Awaited<ReturnType<typeof postChatMessage>>>;
5287
+ /**
5288
+ * @summary Post a message to a chat
5289
+ */
5290
+ declare const usePostChatMessage: <TError = ErrorType<ErrorResponse>>(chatId: string, options?: {
5291
+ swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof postChatMessage>>, TError, Key, PostChatMessageBody, Awaited<ReturnType<typeof postChatMessage>>> & {
5292
+ swrKey?: string;
5293
+ };
5294
+ request?: SecondParameter$e<typeof customFetch>;
5295
+ }) => {
5296
+ isMutating: boolean;
5297
+ trigger: swr_mutation.TriggerWithArgs<ChatMessageCreated, TError, string | readonly [`/public/v1/chats/${string}/messages`], PostChatMessageBody>;
5298
+ reset: () => void;
5299
+ data: ChatMessageCreated | undefined;
5300
+ error: TError | undefined;
5301
+ swrKey: string | readonly [`/public/v1/chats/${string}/messages`];
5302
+ };
5303
+
5098
5304
  type SecondParameter$d<T extends (...args: never) => unknown> = Parameters<T>[1];
5099
5305
  /**
5100
5306
  * Create a new empty claim. Returns the claim ID and the creation timestamp.
@@ -6950,4 +7156,4 @@ declare const useUpdateWorker: <TError = ErrorType<ErrorResponse>>(workerId: str
6950
7156
  swrKey: string | readonly [`/v1/workers/${string}`];
6951
7157
  };
6952
7158
 
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 };
7159
+ 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 ChatAgentList, 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 ListChatAgentsParams, type ListChatAgentsQueryResult, ListChatAgentsSortBy, ListChatAgentsSortOrder, 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, getListChatAgentsKey, getListChatAgentsUrl, 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, listChatAgents, 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, useListChatAgents, 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 };