@avallon-labs/sdk 23.2.0 → 23.3.0-staging.513

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
@@ -759,6 +759,29 @@ interface CallEvaluation {
759
759
 
760
760
  type CallList = Call[];
761
761
 
762
+ /**
763
+ * Generated by orval v8.1.0 🍺
764
+ * Do not edit manually.
765
+ * Avallon API
766
+ * OpenAPI spec version: 1.0.0
767
+ */
768
+ interface CaseSummary {
769
+ id: string;
770
+ subject: string | null;
771
+ reporter: string | null;
772
+ created_at: string;
773
+ updated_at: string;
774
+ }
775
+
776
+ /**
777
+ * Generated by orval v8.1.0 🍺
778
+ * Do not edit manually.
779
+ * Avallon API
780
+ * OpenAPI spec version: 1.0.0
781
+ */
782
+
783
+ type CaseList = CaseSummary[];
784
+
762
785
  /**
763
786
  * Generated by orval v8.1.0 🍺
764
787
  * Do not edit manually.
@@ -2984,6 +3007,51 @@ type ListCallsParams = {
2984
3007
  phone_number?: string;
2985
3008
  };
2986
3009
 
3010
+ /**
3011
+ * Generated by orval v8.1.0 🍺
3012
+ * Do not edit manually.
3013
+ * Avallon API
3014
+ * OpenAPI spec version: 1.0.0
3015
+ */
3016
+ type ListCasesSortBy = (typeof ListCasesSortBy)[keyof typeof ListCasesSortBy];
3017
+ declare const ListCasesSortBy: {
3018
+ readonly created_at: "created_at";
3019
+ readonly updated_at: "updated_at";
3020
+ };
3021
+
3022
+ /**
3023
+ * Generated by orval v8.1.0 🍺
3024
+ * Do not edit manually.
3025
+ * Avallon API
3026
+ * OpenAPI spec version: 1.0.0
3027
+ */
3028
+ type ListCasesSortOrder = (typeof ListCasesSortOrder)[keyof typeof ListCasesSortOrder];
3029
+ declare const ListCasesSortOrder: {
3030
+ readonly asc: "asc";
3031
+ readonly desc: "desc";
3032
+ };
3033
+
3034
+ /**
3035
+ * Generated by orval v8.1.0 🍺
3036
+ * Do not edit manually.
3037
+ * Avallon API
3038
+ * OpenAPI spec version: 1.0.0
3039
+ */
3040
+
3041
+ type ListCasesParams = {
3042
+ /**
3043
+ * @minimum 1
3044
+ * @maximum 100
3045
+ */
3046
+ count?: number;
3047
+ /**
3048
+ * @minimum 0
3049
+ */
3050
+ offset?: number;
3051
+ sort_by?: ListCasesSortBy;
3052
+ sort_order?: ListCasesSortOrder;
3053
+ };
3054
+
2987
3055
  /**
2988
3056
  * Generated by orval v8.1.0 🍺
2989
3057
  * Do not edit manually.
@@ -4825,7 +4893,7 @@ type WorkerRunMessageList = WorkerRunMessage[];
4825
4893
 
4826
4894
  type WorkerWebhookList = Webhook[];
4827
4895
 
4828
- type SecondParameter$k<T extends (...args: never) => unknown> = Parameters<T>[1];
4896
+ type SecondParameter$l<T extends (...args: never) => unknown> = Parameters<T>[1];
4829
4897
  /**
4830
4898
  * List all API keys for your tenant.
4831
4899
 
@@ -4846,7 +4914,7 @@ declare const useListApiKeys: <TError = ErrorType<ErrorResponse>>(params?: ListA
4846
4914
  swrKey?: Key;
4847
4915
  enabled?: boolean;
4848
4916
  };
4849
- request?: SecondParameter$k<typeof customFetch>;
4917
+ request?: SecondParameter$l<typeof customFetch>;
4850
4918
  }) => {
4851
4919
  data: ApiKeyList | undefined;
4852
4920
  error: TError | undefined;
@@ -4865,7 +4933,7 @@ Keys are scoped to an environment (`test` or `live`) and optionally accept an ex
4865
4933
  */
4866
4934
  declare const getCreateApiKeyUrl: () => string;
4867
4935
  declare const createApiKey: (createApiKeyBody: CreateApiKeyBody, options?: RequestInit) => Promise<ApiKeyCreated>;
4868
- declare const getCreateApiKeyMutationFetcher: (options?: SecondParameter$k<typeof customFetch>) => (_: Key, { arg }: {
4936
+ declare const getCreateApiKeyMutationFetcher: (options?: SecondParameter$l<typeof customFetch>) => (_: Key, { arg }: {
4869
4937
  arg: CreateApiKeyBody;
4870
4938
  }) => Promise<ApiKeyCreated>;
4871
4939
  declare const getCreateApiKeyMutationKey: () => readonly ["/platform/api-keys"];
@@ -4877,7 +4945,7 @@ declare const useCreateApiKey: <TError = ErrorType<ErrorResponse>>(options?: {
4877
4945
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createApiKey>>, TError, Key, CreateApiKeyBody, Awaited<ReturnType<typeof createApiKey>>> & {
4878
4946
  swrKey?: string;
4879
4947
  };
4880
- request?: SecondParameter$k<typeof customFetch>;
4948
+ request?: SecondParameter$l<typeof customFetch>;
4881
4949
  }) => {
4882
4950
  isMutating: boolean;
4883
4951
  trigger: swr_mutation.TriggerWithArgs<ApiKeyCreated, TError, string | readonly ["/platform/api-keys"], CreateApiKeyBody>;
@@ -4896,7 +4964,7 @@ Returns 409 if the key is already revoked, 404 if the key does not exist.
4896
4964
  */
4897
4965
  declare const getRevokeApiKeyUrl: (id: string) => string;
4898
4966
  declare const revokeApiKey: (id: string, options?: RequestInit) => Promise<ConfirmationResponse>;
4899
- declare const getRevokeApiKeyMutationFetcher: (id: string, options?: SecondParameter$k<typeof customFetch>) => (_: Key, __: {
4967
+ declare const getRevokeApiKeyMutationFetcher: (id: string, options?: SecondParameter$l<typeof customFetch>) => (_: Key, __: {
4900
4968
  arg: Arguments;
4901
4969
  }) => Promise<ConfirmationResponse>;
4902
4970
  declare const getRevokeApiKeyMutationKey: (id: string) => readonly [`/platform/api-keys/${string}/revoke`];
@@ -4908,7 +4976,7 @@ declare const useRevokeApiKey: <TError = ErrorType<ErrorResponse>>(id: string, o
4908
4976
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof revokeApiKey>>, TError, Key, Arguments, Awaited<ReturnType<typeof revokeApiKey>>> & {
4909
4977
  swrKey?: string;
4910
4978
  };
4911
- request?: SecondParameter$k<typeof customFetch>;
4979
+ request?: SecondParameter$l<typeof customFetch>;
4912
4980
  }) => {
4913
4981
  isMutating: boolean;
4914
4982
  trigger: swr_mutation.TriggerWithOptionsArgs<ConfirmationResponse, TError, string | readonly [`/platform/api-keys/${string}/revoke`], Arguments>;
@@ -4918,7 +4986,7 @@ declare const useRevokeApiKey: <TError = ErrorType<ErrorResponse>>(id: string, o
4918
4986
  swrKey: string | readonly [`/platform/api-keys/${string}/revoke`];
4919
4987
  };
4920
4988
 
4921
- type SecondParameter$j<T extends (...args: never) => unknown> = Parameters<T>[1];
4989
+ type SecondParameter$k<T extends (...args: never) => unknown> = Parameters<T>[1];
4922
4990
  /**
4923
4991
  * Upload a document as a base64-encoded artifact for processing.
4924
4992
 
@@ -4934,7 +5002,7 @@ Maximum file size is approximately 6.75MB (base64 encoded). The API Gateway has
4934
5002
  */
4935
5003
  declare const getCreateArtifactUrl: () => string;
4936
5004
  declare const createArtifact: (createArtifactBody: CreateArtifactBody, options?: RequestInit) => Promise<ArtifactCreated>;
4937
- declare const getCreateArtifactMutationFetcher: (options?: SecondParameter$j<typeof customFetch>) => (_: Key, { arg }: {
5005
+ declare const getCreateArtifactMutationFetcher: (options?: SecondParameter$k<typeof customFetch>) => (_: Key, { arg }: {
4938
5006
  arg: CreateArtifactBody;
4939
5007
  }) => Promise<ArtifactCreated>;
4940
5008
  declare const getCreateArtifactMutationKey: () => readonly ["/v1/artifacts"];
@@ -4946,7 +5014,7 @@ declare const useCreateArtifact: <TError = ErrorType<ErrorResponse>>(options?: {
4946
5014
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createArtifact>>, TError, Key, CreateArtifactBody, Awaited<ReturnType<typeof createArtifact>>> & {
4947
5015
  swrKey?: string;
4948
5016
  };
4949
- request?: SecondParameter$j<typeof customFetch>;
5017
+ request?: SecondParameter$k<typeof customFetch>;
4950
5018
  }) => {
4951
5019
  isMutating: boolean;
4952
5020
  trigger: swr_mutation.TriggerWithArgs<ArtifactCreated, TError, string | readonly ["/v1/artifacts"], CreateArtifactBody>;
@@ -4979,7 +5047,7 @@ declare const useListArtifacts: <TError = ErrorType<ErrorResponse>>(params?: Lis
4979
5047
  swrKey?: Key;
4980
5048
  enabled?: boolean;
4981
5049
  };
4982
- request?: SecondParameter$j<typeof customFetch>;
5050
+ request?: SecondParameter$k<typeof customFetch>;
4983
5051
  }) => {
4984
5052
  data: ArtifactList | undefined;
4985
5053
  error: TError | undefined;
@@ -5004,7 +5072,7 @@ declare const useGetArtifact: <TError = ErrorType<ErrorResponse>>(id: string, op
5004
5072
  swrKey?: Key;
5005
5073
  enabled?: boolean;
5006
5074
  };
5007
- request?: SecondParameter$j<typeof customFetch>;
5075
+ request?: SecondParameter$k<typeof customFetch>;
5008
5076
  }) => {
5009
5077
  data: ArtifactDetail | undefined;
5010
5078
  error: TError | undefined;
@@ -5029,7 +5097,7 @@ declare const useGetArtifactMetadataKeys: <TError = ErrorType<ErrorResponse>>(pa
5029
5097
  swrKey?: Key;
5030
5098
  enabled?: boolean;
5031
5099
  };
5032
- request?: SecondParameter$j<typeof customFetch>;
5100
+ request?: SecondParameter$k<typeof customFetch>;
5033
5101
  }) => {
5034
5102
  data: ArtifactMetadataKeys | undefined;
5035
5103
  error: TError | undefined;
@@ -5044,7 +5112,7 @@ declare const useGetArtifactMetadataKeys: <TError = ErrorType<ErrorResponse>>(pa
5044
5112
  */
5045
5113
  declare const getGetArtifactUploadUrlUrl: () => string;
5046
5114
  declare const getArtifactUploadUrl: (getArtifactUploadUrlBody: GetArtifactUploadUrlBody, options?: RequestInit) => Promise<GetArtifactUploadUrl200>;
5047
- declare const getGetArtifactUploadUrlMutationFetcher: (options?: SecondParameter$j<typeof customFetch>) => (_: Key, { arg }: {
5115
+ declare const getGetArtifactUploadUrlMutationFetcher: (options?: SecondParameter$k<typeof customFetch>) => (_: Key, { arg }: {
5048
5116
  arg: GetArtifactUploadUrlBody;
5049
5117
  }) => Promise<GetArtifactUploadUrl200>;
5050
5118
  declare const getGetArtifactUploadUrlMutationKey: () => readonly ["/v1/artifacts/get-upload-url"];
@@ -5056,7 +5124,7 @@ declare const useGetArtifactUploadUrl: <TError = ErrorType<ErrorResponse>>(optio
5056
5124
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof getArtifactUploadUrl>>, TError, Key, GetArtifactUploadUrlBody, Awaited<ReturnType<typeof getArtifactUploadUrl>>> & {
5057
5125
  swrKey?: string;
5058
5126
  };
5059
- request?: SecondParameter$j<typeof customFetch>;
5127
+ request?: SecondParameter$k<typeof customFetch>;
5060
5128
  }) => {
5061
5129
  isMutating: boolean;
5062
5130
  trigger: swr_mutation.TriggerWithArgs<GetArtifactUploadUrl200, TError, string | readonly ["/v1/artifacts/get-upload-url"], GetArtifactUploadUrlBody>;
@@ -5071,7 +5139,7 @@ declare const useGetArtifactUploadUrl: <TError = ErrorType<ErrorResponse>>(optio
5071
5139
  */
5072
5140
  declare const getUpdateArtifactMetadataUrl: (id: string) => string;
5073
5141
  declare const updateArtifactMetadata: (id: string, updateArtifactMetadataBody: UpdateArtifactMetadataBody, options?: RequestInit) => Promise<ArtifactDetail>;
5074
- declare const getUpdateArtifactMetadataMutationFetcher: (id: string, options?: SecondParameter$j<typeof customFetch>) => (_: Key, { arg }: {
5142
+ declare const getUpdateArtifactMetadataMutationFetcher: (id: string, options?: SecondParameter$k<typeof customFetch>) => (_: Key, { arg }: {
5075
5143
  arg: UpdateArtifactMetadataBody;
5076
5144
  }) => Promise<ArtifactDetail>;
5077
5145
  declare const getUpdateArtifactMetadataMutationKey: (id: string) => readonly [`/v1/artifacts/${string}/metadata`];
@@ -5083,7 +5151,7 @@ declare const useUpdateArtifactMetadata: <TError = ErrorType<ErrorResponse>>(id:
5083
5151
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof updateArtifactMetadata>>, TError, Key, UpdateArtifactMetadataBody, Awaited<ReturnType<typeof updateArtifactMetadata>>> & {
5084
5152
  swrKey?: string;
5085
5153
  };
5086
- request?: SecondParameter$j<typeof customFetch>;
5154
+ request?: SecondParameter$k<typeof customFetch>;
5087
5155
  }) => {
5088
5156
  isMutating: boolean;
5089
5157
  trigger: swr_mutation.TriggerWithArgs<ArtifactDetail, TError, string | readonly [`/v1/artifacts/${string}/metadata`], UpdateArtifactMetadataBody>;
@@ -5100,7 +5168,7 @@ This endpoint returns an upload id that can be used to find the created artifact
5100
5168
  */
5101
5169
  declare const getUploadFileUrl: () => string;
5102
5170
  declare const uploadFile: (uploadFileBody: UploadFileBody, options?: RequestInit) => Promise<UploadFileResponse>;
5103
- declare const getUploadFileMutationFetcher: (options?: SecondParameter$j<typeof customFetch>) => (_: Key, { arg }: {
5171
+ declare const getUploadFileMutationFetcher: (options?: SecondParameter$k<typeof customFetch>) => (_: Key, { arg }: {
5104
5172
  arg: UploadFileBody;
5105
5173
  }) => Promise<UploadFileResponse>;
5106
5174
  declare const getUploadFileMutationKey: () => readonly ["/v1/upload-file"];
@@ -5112,7 +5180,7 @@ declare const useUploadFile: <TError = ErrorType<ErrorResponse>>(options?: {
5112
5180
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof uploadFile>>, TError, Key, UploadFileBody, Awaited<ReturnType<typeof uploadFile>>> & {
5113
5181
  swrKey?: string;
5114
5182
  };
5115
- request?: SecondParameter$j<typeof customFetch>;
5183
+ request?: SecondParameter$k<typeof customFetch>;
5116
5184
  }) => {
5117
5185
  isMutating: boolean;
5118
5186
  trigger: swr_mutation.TriggerWithArgs<UploadFileResponse, TError, string | readonly ["/v1/upload-file"], UploadFileBody>;
@@ -5122,14 +5190,14 @@ declare const useUploadFile: <TError = ErrorType<ErrorResponse>>(options?: {
5122
5190
  swrKey: string | readonly ["/v1/upload-file"];
5123
5191
  };
5124
5192
 
5125
- type SecondParameter$i<T extends (...args: never) => unknown> = Parameters<T>[1];
5193
+ type SecondParameter$j<T extends (...args: never) => unknown> = Parameters<T>[1];
5126
5194
  /**
5127
5195
  * Create a new user account with email and password.
5128
5196
  * @summary Sign up
5129
5197
  */
5130
5198
  declare const getSignUpUrl: () => string;
5131
5199
  declare const signUp: (signUpBody: SignUpBody, options?: RequestInit) => Promise<EmptyResponse>;
5132
- declare const getSignUpMutationFetcher: (options?: SecondParameter$i<typeof customFetchNoAuth>) => (_: Key, { arg }: {
5200
+ declare const getSignUpMutationFetcher: (options?: SecondParameter$j<typeof customFetchNoAuth>) => (_: Key, { arg }: {
5133
5201
  arg: SignUpBody;
5134
5202
  }) => Promise<EmptyResponse>;
5135
5203
  declare const getSignUpMutationKey: () => readonly ["/v1/auth/sign-up"];
@@ -5141,7 +5209,7 @@ declare const useSignUp: <TError = ErrorType<ErrorResponse>>(options?: {
5141
5209
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof signUp>>, TError, Key, SignUpBody, Awaited<ReturnType<typeof signUp>>> & {
5142
5210
  swrKey?: string;
5143
5211
  };
5144
- request?: SecondParameter$i<typeof customFetchNoAuth>;
5212
+ request?: SecondParameter$j<typeof customFetchNoAuth>;
5145
5213
  }) => {
5146
5214
  isMutating: boolean;
5147
5215
  trigger: swr_mutation.TriggerWithArgs<EmptyResponse, TError, string | readonly ["/v1/auth/sign-up"], SignUpBody>;
@@ -5160,7 +5228,7 @@ declare const useSignUp: <TError = ErrorType<ErrorResponse>>(options?: {
5160
5228
  */
5161
5229
  declare const getSignInUrl: () => string;
5162
5230
  declare const signIn: (signInBody: SignInBody, options?: RequestInit) => Promise<AuthTokens>;
5163
- declare const getSignInMutationFetcher: (options?: SecondParameter$i<typeof customFetchNoAuth>) => (_: Key, { arg }: {
5231
+ declare const getSignInMutationFetcher: (options?: SecondParameter$j<typeof customFetchNoAuth>) => (_: Key, { arg }: {
5164
5232
  arg: SignInBody;
5165
5233
  }) => Promise<AuthTokens>;
5166
5234
  declare const getSignInMutationKey: () => readonly ["/v1/auth/sign-in"];
@@ -5172,7 +5240,7 @@ declare const useSignIn: <TError = ErrorType<ErrorResponse>>(options?: {
5172
5240
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof signIn>>, TError, Key, SignInBody, Awaited<ReturnType<typeof signIn>>> & {
5173
5241
  swrKey?: string;
5174
5242
  };
5175
- request?: SecondParameter$i<typeof customFetchNoAuth>;
5243
+ request?: SecondParameter$j<typeof customFetchNoAuth>;
5176
5244
  }) => {
5177
5245
  isMutating: boolean;
5178
5246
  trigger: swr_mutation.TriggerWithArgs<AuthTokens, TError, string | readonly ["/v1/auth/sign-in"], SignInBody>;
@@ -5187,7 +5255,7 @@ declare const useSignIn: <TError = ErrorType<ErrorResponse>>(options?: {
5187
5255
  */
5188
5256
  declare const getRefreshTokenUrl: () => string;
5189
5257
  declare const refreshToken: (refreshTokenBody: RefreshTokenBody, options?: RequestInit) => Promise<AuthTokens>;
5190
- declare const getRefreshTokenMutationFetcher: (options?: SecondParameter$i<typeof customFetchNoAuth>) => (_: Key, { arg }: {
5258
+ declare const getRefreshTokenMutationFetcher: (options?: SecondParameter$j<typeof customFetchNoAuth>) => (_: Key, { arg }: {
5191
5259
  arg: RefreshTokenBody;
5192
5260
  }) => Promise<AuthTokens>;
5193
5261
  declare const getRefreshTokenMutationKey: () => readonly ["/v1/auth/refresh-token"];
@@ -5199,7 +5267,7 @@ declare const useRefreshToken: <TError = ErrorType<ErrorResponse>>(options?: {
5199
5267
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof refreshToken>>, TError, Key, RefreshTokenBody, Awaited<ReturnType<typeof refreshToken>>> & {
5200
5268
  swrKey?: string;
5201
5269
  };
5202
- request?: SecondParameter$i<typeof customFetchNoAuth>;
5270
+ request?: SecondParameter$j<typeof customFetchNoAuth>;
5203
5271
  }) => {
5204
5272
  isMutating: boolean;
5205
5273
  trigger: swr_mutation.TriggerWithArgs<AuthTokens, TError, string | readonly ["/v1/auth/refresh-token"], RefreshTokenBody>;
@@ -5224,7 +5292,7 @@ declare const useGetOAuthUrl: <TError = ErrorType<ErrorResponse>>(params: GetOAu
5224
5292
  swrKey?: Key;
5225
5293
  enabled?: boolean;
5226
5294
  };
5227
- request?: SecondParameter$i<typeof customFetchNoAuth>;
5295
+ request?: SecondParameter$j<typeof customFetchNoAuth>;
5228
5296
  }) => {
5229
5297
  data: OAuthUrl | undefined;
5230
5298
  error: TError | undefined;
@@ -5243,7 +5311,7 @@ declare const useGetOAuthUrl: <TError = ErrorType<ErrorResponse>>(params: GetOAu
5243
5311
  */
5244
5312
  declare const getGetSessionTokenUrl: () => string;
5245
5313
  declare const getSessionToken: (getSessionTokenBody: GetSessionTokenBody, options?: RequestInit) => Promise<GetSessionToken200>;
5246
- declare const getGetSessionTokenMutationFetcher: (options?: SecondParameter$i<typeof customFetchNoAuth>) => (_: Key, { arg }: {
5314
+ declare const getGetSessionTokenMutationFetcher: (options?: SecondParameter$j<typeof customFetchNoAuth>) => (_: Key, { arg }: {
5247
5315
  arg: GetSessionTokenBody;
5248
5316
  }) => Promise<GetSessionToken200>;
5249
5317
  declare const getGetSessionTokenMutationKey: () => readonly ["/v1/auth/session"];
@@ -5255,7 +5323,7 @@ declare const useGetSessionToken: <TError = ErrorType<ErrorResponse>>(options?:
5255
5323
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof getSessionToken>>, TError, Key, GetSessionTokenBody, Awaited<ReturnType<typeof getSessionToken>>> & {
5256
5324
  swrKey?: string;
5257
5325
  };
5258
- request?: SecondParameter$i<typeof customFetchNoAuth>;
5326
+ request?: SecondParameter$j<typeof customFetchNoAuth>;
5259
5327
  }) => {
5260
5328
  isMutating: boolean;
5261
5329
  trigger: swr_mutation.TriggerWithArgs<GetSessionToken200, TError, string | readonly ["/v1/auth/session"], GetSessionTokenBody>;
@@ -5265,14 +5333,14 @@ declare const useGetSessionToken: <TError = ErrorType<ErrorResponse>>(options?:
5265
5333
  swrKey: string | readonly ["/v1/auth/session"];
5266
5334
  };
5267
5335
 
5268
- type SecondParameter$h<T extends (...args: never) => unknown> = Parameters<T>[1];
5336
+ type SecondParameter$i<T extends (...args: never) => unknown> = Parameters<T>[1];
5269
5337
  /**
5270
5338
  * Create feedback for a specific message in a call. Requires user (JWT) authentication; the author is derived from the authenticated user's profile and API-key callers are rejected.
5271
5339
  * @summary Create feedback on a call message
5272
5340
  */
5273
5341
  declare const getCreateCallFeedbackUrl: (id: string) => string;
5274
5342
  declare const createCallFeedback: (id: string, createFeedbackRequest: CreateFeedbackRequest, options?: RequestInit) => Promise<Feedback>;
5275
- declare const getCreateCallFeedbackMutationFetcher: (id: string, options?: SecondParameter$h<typeof customFetch>) => (_: Key, { arg }: {
5343
+ declare const getCreateCallFeedbackMutationFetcher: (id: string, options?: SecondParameter$i<typeof customFetch>) => (_: Key, { arg }: {
5276
5344
  arg: CreateFeedbackRequest;
5277
5345
  }) => Promise<Feedback>;
5278
5346
  declare const getCreateCallFeedbackMutationKey: (id: string) => readonly [`/v1/calls/${string}/feedback`];
@@ -5284,7 +5352,7 @@ declare const useCreateCallFeedback: <TError = ErrorType<ErrorResponse>>(id: str
5284
5352
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createCallFeedback>>, TError, Key, CreateFeedbackRequest, Awaited<ReturnType<typeof createCallFeedback>>> & {
5285
5353
  swrKey?: string;
5286
5354
  };
5287
- request?: SecondParameter$h<typeof customFetch>;
5355
+ request?: SecondParameter$i<typeof customFetch>;
5288
5356
  }) => {
5289
5357
  isMutating: boolean;
5290
5358
  trigger: swr_mutation.TriggerWithArgs<Feedback, TError, string | readonly [`/v1/calls/${string}/feedback`], CreateFeedbackRequest>;
@@ -5309,7 +5377,7 @@ declare const useListCallFeedback: <TError = ErrorType<ErrorResponse>>(id: strin
5309
5377
  swrKey?: Key;
5310
5378
  enabled?: boolean;
5311
5379
  };
5312
- request?: SecondParameter$h<typeof customFetch>;
5380
+ request?: SecondParameter$i<typeof customFetch>;
5313
5381
  }) => {
5314
5382
  data: Feedback[] | undefined;
5315
5383
  error: TError | undefined;
@@ -5324,7 +5392,7 @@ declare const useListCallFeedback: <TError = ErrorType<ErrorResponse>>(id: strin
5324
5392
  */
5325
5393
  declare const getDeleteCallFeedbackUrl: (id: string, feedbackId: string) => string;
5326
5394
  declare const deleteCallFeedback: (id: string, feedbackId: string, options?: RequestInit) => Promise<null>;
5327
- declare const getDeleteCallFeedbackMutationFetcher: (id: string, feedbackId: string, options?: SecondParameter$h<typeof customFetch>) => (_: Key, __: {
5395
+ declare const getDeleteCallFeedbackMutationFetcher: (id: string, feedbackId: string, options?: SecondParameter$i<typeof customFetch>) => (_: Key, __: {
5328
5396
  arg: Arguments;
5329
5397
  }) => Promise<null>;
5330
5398
  declare const getDeleteCallFeedbackMutationKey: (id: string, feedbackId: string) => readonly [`/v1/calls/${string}/feedback/${string}`];
@@ -5336,7 +5404,7 @@ declare const useDeleteCallFeedback: <TError = ErrorType<ErrorResponse>>(id: str
5336
5404
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof deleteCallFeedback>>, TError, Key, Arguments, Awaited<ReturnType<typeof deleteCallFeedback>>> & {
5337
5405
  swrKey?: string;
5338
5406
  };
5339
- request?: SecondParameter$h<typeof customFetch>;
5407
+ request?: SecondParameter$i<typeof customFetch>;
5340
5408
  }) => {
5341
5409
  isMutating: boolean;
5342
5410
  trigger: swr_mutation.TriggerWithOptionsArgs<null, TError, string | readonly [`/v1/calls/${string}/feedback/${string}`], Arguments>;
@@ -5346,7 +5414,7 @@ declare const useDeleteCallFeedback: <TError = ErrorType<ErrorResponse>>(id: str
5346
5414
  swrKey: string | readonly [`/v1/calls/${string}/feedback/${string}`];
5347
5415
  };
5348
5416
 
5349
- type SecondParameter$g<T extends (...args: never) => unknown> = Parameters<T>[1];
5417
+ type SecondParameter$h<T extends (...args: never) => unknown> = Parameters<T>[1];
5350
5418
  /**
5351
5419
  * List all calls, with pagination, filtering, and sorting.
5352
5420
 
@@ -5367,7 +5435,7 @@ declare const useListCalls: <TError = ErrorType<ErrorResponse>>(params?: ListCal
5367
5435
  swrKey?: Key;
5368
5436
  enabled?: boolean;
5369
5437
  };
5370
- request?: SecondParameter$g<typeof customFetch>;
5438
+ request?: SecondParameter$h<typeof customFetch>;
5371
5439
  }) => {
5372
5440
  data: CallList | undefined;
5373
5441
  error: TError | undefined;
@@ -5394,7 +5462,7 @@ declare const useGetCall: <TError = ErrorType<ErrorResponse>>(id: string, params
5394
5462
  swrKey?: Key;
5395
5463
  enabled?: boolean;
5396
5464
  };
5397
- request?: SecondParameter$g<typeof customFetch>;
5465
+ request?: SecondParameter$h<typeof customFetch>;
5398
5466
  }) => {
5399
5467
  data: CallDetail | undefined;
5400
5468
  error: TError | undefined;
@@ -5419,7 +5487,7 @@ declare const useGetCallEvaluation: <TError = ErrorType<ErrorResponse>>(id: stri
5419
5487
  swrKey?: Key;
5420
5488
  enabled?: boolean;
5421
5489
  };
5422
- request?: SecondParameter$g<typeof customFetch>;
5490
+ request?: SecondParameter$h<typeof customFetch>;
5423
5491
  }) => {
5424
5492
  data: CallEvaluation | undefined;
5425
5493
  error: TError | undefined;
@@ -5446,7 +5514,7 @@ declare const useGetCallAnalytics: <TError = ErrorType<ErrorResponse>>(params: G
5446
5514
  swrKey?: Key;
5447
5515
  enabled?: boolean;
5448
5516
  };
5449
- request?: SecondParameter$g<typeof customFetch>;
5517
+ request?: SecondParameter$h<typeof customFetch>;
5450
5518
  }) => {
5451
5519
  data: CallAnalytics | undefined;
5452
5520
  error: TError | undefined;
@@ -5456,6 +5524,33 @@ declare const useGetCallAnalytics: <TError = ErrorType<ErrorResponse>>(params: G
5456
5524
  swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
5457
5525
  };
5458
5526
 
5527
+ type SecondParameter$g<T extends (...args: never) => unknown> = Parameters<T>[1];
5528
+ /**
5529
+ * List all cases for the current tenant, paginated and sortable.
5530
+ * @summary List cases
5531
+ */
5532
+ declare const getListCasesUrl: (params?: ListCasesParams) => string;
5533
+ declare const listCases: (params?: ListCasesParams, options?: RequestInit) => Promise<CaseList>;
5534
+ declare const getListCasesKey: (params?: ListCasesParams) => readonly ["/v1/cases", ...ListCasesParams[]];
5535
+ type ListCasesQueryResult = NonNullable<Awaited<ReturnType<typeof listCases>>>;
5536
+ /**
5537
+ * @summary List cases
5538
+ */
5539
+ declare const useListCases: <TError = ErrorType<ErrorResponse>>(params?: ListCasesParams, options?: {
5540
+ swr?: SWRConfiguration<Awaited<ReturnType<typeof listCases>>, TError> & {
5541
+ swrKey?: Key;
5542
+ enabled?: boolean;
5543
+ };
5544
+ request?: SecondParameter$g<typeof customFetch>;
5545
+ }) => {
5546
+ data: CaseList | undefined;
5547
+ error: TError | undefined;
5548
+ mutate: swr.KeyedMutator<CaseList>;
5549
+ isValidating: boolean;
5550
+ isLoading: swr__internal.IsLoadingResponse<Data, Config>;
5551
+ swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
5552
+ };
5553
+
5459
5554
  type SecondParameter$f<T extends (...args: never) => unknown> = Parameters<T>[1];
5460
5555
  /**
5461
5556
  * Create a new chat agent with a name and prompt.
@@ -7652,4 +7747,4 @@ declare const useUpdateWorkerPrompt: <TError = ErrorType<ErrorResponse>>(workerI
7652
7747
  swrKey: string | readonly [`/v1/workers/${string}/prompt`];
7653
7748
  };
7654
7749
 
7655
- 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 ChatHistory, type ChatHistoryMessagesItem, ChatHistoryMessagesItemRole, type ChatList, type ChatListItem, type ChatMessage, type ChatMessageCreated, type ChatMessageCreatedMessage, type ChatMessageCreatedMessageContentItem, type ChatMessageList, type ChatMessagePart, ChatMessageRole, type CheckInboxAvailabilityParams, type CheckInboxAvailabilityQueryResult, type ClaimCreated, type ClaimDetail, type ClaimDetailArtifactsItem, type ClaimDetailClaim, type ClaimDetailExtractorJob, type ClaimDetailSourcesItem, type ClaimList, type ClaimListClaimsItem, type CodeTool, type CodeToolCreated, type CodeToolCreatedTool, type CodeToolCreatedToolSchema, type CodeToolSchema, type CodeToolSummary, type CodeToolUpdated, type CodeToolUpdatedTool, type CodeToolUpdatedToolSchema, type ConfirmationResponse, type CreateAgentWebhookBody, type CreateAgentWebhookMutationResult, type CreateApiKeyBody, CreateApiKeyBodyEnvironment, type CreateApiKeyMutationResult, type CreateArtifactBody, type CreateArtifactBodyMetadata, type CreateArtifactBodyProcessingOptions, type CreateArtifactMutationResult, type CreateCallFeedbackMutationResult, type CreateChatAgentBody, type CreateChatAgentMutationResult, type CreateChatBody, type CreateChatMutationResult, type CreateClaimMutationResult, type CreateEmailBody, CreateEmailBodyDirection, type CreateEmailMutationResult, type CreateExtractorBody, type CreateExtractorBodySchema, type CreateExtractorJobBody, type CreateExtractorJobBodyScope, type CreateExtractorJobMutationResult, type CreateExtractorMutationResult, type CreateExtractorWebhookBody, type CreateExtractorWebhookMutationResult, type CreateFeedbackRequest, type CreateInboxBody, CreateInboxBodyProcessorType, type CreateInboxMutationResult, type CreateInboxWebhookBody, type CreateInboxWebhookMutationResult, type CreateToolBody, type CreateToolMutationResult, type CreateVoiceAgentBody, CreateVoiceAgentBodyCallProcessorType, CreateVoiceAgentBodyDirection, CreateVoiceAgentBodyLanguage, CreateVoiceAgentBodyLlmModel, CreateVoiceAgentBodySttModel, CreateVoiceAgentBodyTtsModel, CreateVoiceAgentBodyTtsProvider, type CreateVoiceAgentMutationResult, type CreateVoiceAgentResponse, type CreateWorkerBody, type CreateWorkerBodyEnvVars, type CreateWorkerMutationResult, type CreateWorkerRunBody, type CreateWorkerRunBodyScope, type CreateWorkerRunMutationResult, type CreateWorkerWebhookBody, type CreateWorkerWebhookMutationResult, type DeleteCallFeedbackMutationResult, type DeleteToolsFromVoiceAgentBody, type DeleteToolsFromVoiceAgentMutationResult, type DeleteToolsFromVoiceAgentResponse, type DeleteWebhookMutationResult, type DeleteWebhookResponse, type Email, type EmailCreated, EmailCreatedDirection, type EmailDetail, EmailDetailDirection, EmailDirection, type EmailList, type EmailReplyResult, EmailReplyResultValue, type EmailSendResult, type EmailThread, type EmailThreadList, type EmptyResponse, type ErrorResponse, type ErrorResponseData, type ExecuteCodeBody, type ExecuteCodeBodyParams, type ExecuteCodeMutationResult, type Extract, type ExtractList, type ExtractProcessorScope, type ExtractScope, type ExtractSummary, type ExtractSummaryProcessorScope, type ExtractSummaryScope, type Extractor, type ExtractorCreated, type ExtractorCreatedSchema, type ExtractorJob, type ExtractorJobCreated, type ExtractorJobCreatedScope, type ExtractorJobDetail, type ExtractorJobDetailScope, type ExtractorJobList, type ExtractorJobScope, type ExtractorList, type ExtractorSchema, type ExtractorSummary, type ExtractorUpdated, type ExtractorUpdatedSchema, type ExtractorWebhookList, type Feedback, type GetArtifactMetadataKeysParams, type GetArtifactMetadataKeysQueryResult, type GetArtifactQueryResult, type GetArtifactUploadUrl200, type GetArtifactUploadUrlBody, type GetArtifactUploadUrlMutationResult, type GetCallAnalyticsParams, type GetCallAnalyticsQueryResult, type GetCallEvaluationQueryResult, type GetCallParams, type GetCallQueryResult, type GetChatAgentQueryResult, type GetChatQueryResult, type GetClaimDetailQueryResult, type GetEmailQueryResult, type GetExtractCitations200, type GetExtractCitations200Chunks, type GetExtractCitations200ChunksBoundingBox, type GetExtractCitationsQueryResult, type GetExtractQueryResult, type GetExtractorJobQueryResult, type GetExtractorJobResponse, type GetExtractorQueryResult, type GetExtractorResponse, GetOAuthUrlCodeChallengeMethod, type GetOAuthUrlParams, GetOAuthUrlProvider, type GetOAuthUrlQueryResult, type GetProfileQueryResult, type GetSessionToken200, type GetSessionTokenBody, type GetSessionTokenMutationResult, type GetToolQueryResult, type GetToolResponse, type GetVoiceAgentPlaceholdersQueryResult, type GetVoiceAgentPromptQueryResult, type GetVoiceAgentQueryResult, type GetVoiceAgentResponse, type GetWebhookQueryResult, type GetWorkerPromptQueryResult, type GetWorkerQueryResult, type GetWorkerRunQueryResult, type GetWorkerRunResponse, type Inbox, type InboxAvailability, type InboxList, InboxProcessorType, type InboxWebhookList, type ListAgentWebhooksQueryResult, ListApiKeysIncludeRevoked, type ListApiKeysParams, type ListApiKeysQueryResult, type ListArtifactsParams, type ListArtifactsQueryResult, ListArtifactsSortBy, ListArtifactsSortOrder, type ListCallFeedbackParams, type ListCallFeedbackQueryResult, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, type ListCallsParams, type ListCallsQueryResult, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, type ListChatAgentsParams, type ListChatAgentsQueryResult, ListChatAgentsSortBy, ListChatAgentsSortOrder, type ListChatMessagesParams, type ListChatMessagesQueryResult, ListChatMessagesSortBy, ListChatMessagesSortOrder, type ListChatsParams, type ListChatsQueryResult, ListChatsSortBy, ListChatsSortOrder, type ListClaimsParams, type ListClaimsQueryResult, ListClaimsSortBy, ListClaimsSortOrder, type ListEmailThreadsParams, type ListEmailThreadsQueryResult, ListEmailThreadsSortBy, ListEmailThreadsSortOrder, type ListEmailsParams, type ListEmailsQueryResult, ListEmailsSortBy, ListEmailsSortOrder, type ListExtractorJobsParams, type ListExtractorJobsQueryResult, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, type ListExtractorsParams, type ListExtractorsQueryResult, ListExtractorsSortBy, ListExtractorsSortOrder, type ListExtractsParams, type ListExtractsQueryResult, ListExtractsSortBy, ListExtractsSortOrder, type ListInboxWebhooksQueryResult, type ListInboxesParams, type ListInboxesQueryResult, ListInboxesSortBy, ListInboxesSortOrder, type ListJobsParams, type ListJobsQueryResult, ListJobsStatusItem, type ListTeamMembersQueryResult, type ListTeamMembersResponse, type ListToolsParams, type ListToolsQueryResult, ListToolsSortBy, ListToolsSortOrder, type ListVoiceAgentsParams, type ListVoiceAgentsQueryResult, type ListWebhookDeliveriesParams, type ListWebhookDeliveriesQueryResult, ListWebhookDeliveriesSortOrder, type ListWebhooksQueryResult, type ListWorkerRunMessagesParams, type ListWorkerRunMessagesQueryResult, type ListWorkerRunsParams, type ListWorkerRunsQueryResult, ListWorkerRunsSortBy, ListWorkerRunsSortOrder, ListWorkerRunsStatus, type ListWorkerWebhooksQueryResult, type ListWorkersParams, type ListWorkersQueryResult, ListWorkersSortBy, ListWorkersSortOrder, type OAuthUrl, type OutboundJob, type OutboundJobList, type OutboundJobMetadata, type OutboundJobPayload, OutboundJobStatus, type PostChatMessageBody, type PostChatMessageMutationResult, type Profile, ProfilePermissionsItem, ProfileRole, type ProfileTenant, type ProfileTenants, type RefreshTokenBody, type RefreshTokenMutationResult, type RemoveMemberMutationResult, type RemoveMemberResponse, type ReplyToEmailBody, type ReplyToEmailMutationResult, type RevokeApiKeyMutationResult, type ScheduleJobBody, type ScheduleJobBodyMetadata, type ScheduleJobBodyPayload, type ScheduleJobMutationResult, type SendEmailBody, type SendEmailMutationResult, type SignInBody, type SignInMutationResult, type SignUpBody, type SignUpMutationResult, type TeamMember, TeamMemberRole, type TestWebhookMutationResult, type ToolExecutionResult, type ToolExecutionResultError, type ToolExecutionResultTracesItem, type ToolList, type UpdateArtifactMetadataBody, type UpdateArtifactMetadataBodyMetadata, type UpdateArtifactMetadataMutationResult, type UpdateCallControlsBody, type UpdateCallControlsMutationResult, type UpdateChatAgentMutationResult, type UpdateChatAgentRequest, type UpdateExtractorBody, type UpdateExtractorBodySchema, type UpdateExtractorMutationResult, type UpdateInboxBody, type UpdateInboxBodyProcessor, UpdateInboxBodyProcessorType, type UpdateInboxMutationResult, type UpdateMemberRoleBody, UpdateMemberRoleBodyRole, type UpdateMemberRoleMutationResult, type UpdateMemberRoleResponse, type UpdateToolBody, type UpdateToolMutationResult, type UpdateVoiceAgentBody, UpdateVoiceAgentBodyCallProcessorType, type UpdateVoiceAgentCallControlsResponse, type UpdateVoiceAgentModelsBody, UpdateVoiceAgentModelsBodyLanguage, UpdateVoiceAgentModelsBodyLlmModel, UpdateVoiceAgentModelsBodySttModel, UpdateVoiceAgentModelsBodyTtsModel, UpdateVoiceAgentModelsBodyTtsProvider, type UpdateVoiceAgentModelsMutationResult, type UpdateVoiceAgentModelsResponse, type UpdateVoiceAgentMutationResult, type UpdateVoiceAgentPromptBody, type UpdateVoiceAgentPromptMutationResult, type UpdateVoiceAgentResponse, type UpdateWorkerBody, type UpdateWorkerBodySchema, type UpdateWorkerMutationResult, type UpdateWorkerPromptBody, type UpdateWorkerPromptMutationResult, type UpdateWorkerRunScopeBody, type UpdateWorkerRunScopeBodyScope, type UpdateWorkerRunScopeMutationResult, type UploadFileBody, type UploadFileBodyMetadata, type UploadFileBodyProcessingOptions, type UploadFileMutationResult, type UploadFileResponse, type VoiceAgent, VoiceAgentBackgroundSounds, VoiceAgentDirection, VoiceAgentLanguage, type VoiceAgentList, VoiceAgentLlmModel, type VoiceAgentPlaceholders, type VoiceAgentPrompt, type VoiceAgentPromptUpdated, VoiceAgentSttModel, VoiceAgentTtsModel, VoiceAgentTtsProvider, type VoiceAgentWebhookList, type Webhook, type WebhookDelivery, type WebhookDeliveryList, type WebhookScope, type WebhookTestResult, type Worker, type WorkerList, type WorkerPrompt, type WorkerPromptUpdated, type WorkerRun, type WorkerRunCreated, type WorkerRunCreatedScope, type WorkerRunList, type WorkerRunMessage, type WorkerRunMessageList, type WorkerRunMessageMessage, type WorkerRunScope, type WorkerSchema, type WorkerSummary, type WorkerWebhookList, addToolsToVoiceAgent, cancelJob, checkInboxAvailability, configure, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createChat, createChatAgent, createClaim, createEmail, createExtractor, createExtractorJob, createExtractorWebhook, createInbox, createInboxWebhook, createTool, createVoiceAgent, createWorker, createWorkerRun, createWorkerWebhook, deleteCallFeedback, deleteToolsFromVoiceAgent, deleteWebhook, executeCode, generateCodeChallenge, generateCodeVerifier, getAddToolsToVoiceAgentMutationFetcher, getAddToolsToVoiceAgentMutationKey, getAddToolsToVoiceAgentUrl, getArtifact, getArtifactMetadataKeys, getArtifactUploadUrl, getCall, getCallAnalytics, getCallEvaluation, getCancelJobMutationFetcher, getCancelJobMutationKey, getCancelJobUrl, getChat, getChatAgent, getCheckInboxAvailabilityKey, getCheckInboxAvailabilityUrl, getClaimDetail, getConfig, getCreateAgentWebhookMutationFetcher, getCreateAgentWebhookMutationKey, getCreateAgentWebhookUrl, getCreateApiKeyMutationFetcher, getCreateApiKeyMutationKey, getCreateApiKeyUrl, getCreateArtifactMutationFetcher, getCreateArtifactMutationKey, getCreateArtifactUrl, getCreateCallFeedbackMutationFetcher, getCreateCallFeedbackMutationKey, getCreateCallFeedbackUrl, getCreateChatAgentMutationFetcher, getCreateChatAgentMutationKey, getCreateChatAgentUrl, getCreateChatMutationFetcher, getCreateChatMutationKey, getCreateChatUrl, getCreateClaimMutationFetcher, getCreateClaimMutationKey, getCreateClaimUrl, getCreateEmailMutationFetcher, getCreateEmailMutationKey, getCreateEmailUrl, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateInboxMutationFetcher, getCreateInboxMutationKey, getCreateInboxUrl, getCreateInboxWebhookMutationFetcher, getCreateInboxWebhookMutationKey, getCreateInboxWebhookUrl, getCreateToolMutationFetcher, getCreateToolMutationKey, getCreateToolUrl, getCreateVoiceAgentMutationFetcher, getCreateVoiceAgentMutationKey, getCreateVoiceAgentUrl, getCreateWorkerMutationFetcher, getCreateWorkerMutationKey, getCreateWorkerRunMutationFetcher, getCreateWorkerRunMutationKey, getCreateWorkerRunUrl, getCreateWorkerUrl, getCreateWorkerWebhookMutationFetcher, getCreateWorkerWebhookMutationKey, getCreateWorkerWebhookUrl, getDeleteCallFeedbackMutationFetcher, getDeleteCallFeedbackMutationKey, getDeleteCallFeedbackUrl, getDeleteToolsFromVoiceAgentMutationFetcher, getDeleteToolsFromVoiceAgentMutationKey, getDeleteToolsFromVoiceAgentUrl, getDeleteWebhookMutationFetcher, getDeleteWebhookMutationKey, getDeleteWebhookUrl, getEmail, getExecuteCodeMutationFetcher, getExecuteCodeMutationKey, getExecuteCodeUrl, getExtract, getExtractCitations, getExtractor, getExtractorJob, getGetArtifactKey, getGetArtifactMetadataKeysKey, getGetArtifactMetadataKeysUrl, getGetArtifactUploadUrlMutationFetcher, getGetArtifactUploadUrlMutationKey, getGetArtifactUploadUrlUrl, getGetArtifactUrl, getGetCallAnalyticsKey, getGetCallAnalyticsUrl, getGetCallEvaluationKey, getGetCallEvaluationUrl, getGetCallKey, getGetCallUrl, getGetChatAgentKey, getGetChatAgentUrl, getGetChatKey, getGetChatUrl, getGetClaimDetailKey, getGetClaimDetailUrl, getGetEmailKey, getGetEmailUrl, getGetExtractCitationsKey, getGetExtractCitationsUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetProfileKey, getGetProfileUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetVoiceAgentKey, getGetVoiceAgentPlaceholdersKey, getGetVoiceAgentPlaceholdersUrl, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, getGetWebhookKey, getGetWebhookUrl, getGetWorkerKey, getGetWorkerPromptKey, getGetWorkerPromptUrl, getGetWorkerRunKey, getGetWorkerRunUrl, getGetWorkerUrl, getListAgentWebhooksKey, getListAgentWebhooksUrl, getListApiKeysKey, getListApiKeysUrl, getListArtifactsKey, getListArtifactsUrl, getListCallFeedbackKey, getListCallFeedbackUrl, getListCallsKey, getListCallsUrl, getListChatAgentsKey, getListChatAgentsUrl, getListChatMessagesKey, getListChatMessagesUrl, getListChatsKey, getListChatsUrl, getListClaimsKey, getListClaimsUrl, getListEmailThreadsKey, getListEmailThreadsUrl, getListEmailsKey, getListEmailsUrl, getListExtractorJobsKey, getListExtractorJobsUrl, getListExtractorsKey, getListExtractorsUrl, getListExtractsKey, getListExtractsUrl, getListInboxWebhooksKey, getListInboxWebhooksUrl, getListInboxesKey, getListInboxesUrl, getListJobsKey, getListJobsUrl, getListTeamMembersKey, getListTeamMembersUrl, getListToolsKey, getListToolsUrl, getListVoiceAgentsKey, getListVoiceAgentsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getListWorkerRunMessagesKey, getListWorkerRunMessagesUrl, getListWorkerRunsKey, getListWorkerRunsUrl, getListWorkerWebhooksKey, getListWorkerWebhooksUrl, getListWorkersKey, getListWorkersUrl, getOAuthUrl, getPostChatMessageMutationFetcher, getPostChatMessageMutationKey, getPostChatMessageUrl, getProfile, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRemoveMemberMutationFetcher, getRemoveMemberMutationKey, getRemoveMemberUrl, getReplyToEmailMutationFetcher, getReplyToEmailMutationKey, getReplyToEmailUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSendEmailMutationFetcher, getSendEmailMutationKey, getSendEmailUrl, getSessionToken, getSignInMutationFetcher, getSignInMutationKey, getSignInUrl, getSignUpMutationFetcher, getSignUpMutationKey, getSignUpUrl, getTestWebhookMutationFetcher, getTestWebhookMutationKey, getTestWebhookUrl, getTool, getUpdateArtifactMetadataMutationFetcher, getUpdateArtifactMetadataMutationKey, getUpdateArtifactMetadataUrl, getUpdateCallControlsMutationFetcher, getUpdateCallControlsMutationKey, getUpdateCallControlsUrl, getUpdateChatAgentMutationFetcher, getUpdateChatAgentMutationKey, getUpdateChatAgentUrl, getUpdateExtractorMutationFetcher, getUpdateExtractorMutationKey, getUpdateExtractorUrl, getUpdateInboxMutationFetcher, getUpdateInboxMutationKey, getUpdateInboxUrl, getUpdateMemberRoleMutationFetcher, getUpdateMemberRoleMutationKey, getUpdateMemberRoleUrl, getUpdateToolMutationFetcher, getUpdateToolMutationKey, getUpdateToolUrl, getUpdateVoiceAgentModelsMutationFetcher, getUpdateVoiceAgentModelsMutationKey, getUpdateVoiceAgentModelsUrl, getUpdateVoiceAgentMutationFetcher, getUpdateVoiceAgentMutationKey, getUpdateVoiceAgentPromptMutationFetcher, getUpdateVoiceAgentPromptMutationKey, getUpdateVoiceAgentPromptUrl, getUpdateVoiceAgentUrl, getUpdateWorkerMutationFetcher, getUpdateWorkerMutationKey, getUpdateWorkerPromptMutationFetcher, getUpdateWorkerPromptMutationKey, getUpdateWorkerPromptUrl, getUpdateWorkerRunScopeMutationFetcher, getUpdateWorkerRunScopeMutationKey, getUpdateWorkerRunScopeUrl, getUpdateWorkerUrl, getUploadFileMutationFetcher, getUploadFileMutationKey, getUploadFileUrl, getVoiceAgent, getVoiceAgentPlaceholders, getVoiceAgentPrompt, getWebhook, getWorker, getWorkerPrompt, getWorkerRun, listAgentWebhooks, listApiKeys, listArtifacts, listCallFeedback, listCalls, listChatAgents, listChatMessages, listChats, listClaims, listEmailThreads, listEmails, listExtractorJobs, listExtractors, listExtracts, listInboxWebhooks, listInboxes, listJobs, listTeamMembers, listTools, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerRunMessages, listWorkerRuns, listWorkerWebhooks, listWorkers, postChatMessage, refreshToken, removeMember, replyToEmail, revokeApiKey, scheduleJob, sendEmail, signIn, signUp, testWebhook, updateArtifactMetadata, updateCallControls, updateChatAgent, updateExtractor, updateInbox, updateMemberRole, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateVoiceAgentPrompt, updateWorker, updateWorkerPrompt, updateWorkerRunScope, uploadFile, useAddToolsToVoiceAgent, useCancelJob, useCheckInboxAvailability, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateChat, useCreateChatAgent, useCreateClaim, useCreateEmail, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateInbox, useCreateInboxWebhook, useCreateTool, useCreateVoiceAgent, useCreateWorker, useCreateWorkerRun, useCreateWorkerWebhook, useDeleteCallFeedback, useDeleteToolsFromVoiceAgent, useDeleteWebhook, useExecuteCode, useGetArtifact, useGetArtifactMetadataKeys, useGetArtifactUploadUrl, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetChat, useGetChatAgent, useGetClaimDetail, useGetEmail, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetOAuthUrl, useGetProfile, useGetSessionToken, useGetTool, useGetVoiceAgent, useGetVoiceAgentPlaceholders, useGetVoiceAgentPrompt, useGetWebhook, useGetWorker, useGetWorkerPrompt, useGetWorkerRun, useListAgentWebhooks, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListChatAgents, useListChatMessages, useListChats, useListClaims, useListEmailThreads, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListInboxWebhooks, useListInboxes, useListJobs, useListTeamMembers, useListTools, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerRunMessages, useListWorkerRuns, useListWorkerWebhooks, useListWorkers, usePostChatMessage, useRefreshToken, useRemoveMember, useReplyToEmail, useRevokeApiKey, useScheduleJob, useSendEmail, useSignIn, useSignUp, useTestWebhook, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateChatAgent, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateVoiceAgentPrompt, useUpdateWorker, useUpdateWorkerPrompt, useUpdateWorkerRunScope, useUploadFile };
7750
+ export { type AddToolsToVoiceAgentBody, type AddToolsToVoiceAgentMutationResult, type AddToolsToVoiceAgentResponse, type ApiKey, type ApiKeyCreated, type ApiKeyList, type Artifact, type ArtifactCreated, type ArtifactCreatedItem, type ArtifactDetail, type ArtifactDetailData, type ArtifactDetailDataMetadata, type ArtifactList, type ArtifactMetadata, type ArtifactMetadataKeys, type ArtifactMetadataKeysData, type ArtifactMetadataKeysDataValues, type AuthTokens, type AvallonConfig, AvallonError, type Call, type CallAnalytics, type CallAnalyticsCallsOverTimeItem, type CallAnalyticsDurationDistributionItem, type CallAnalyticsEvaluationOverTimeItem, type CallAnalyticsMetricPerformanceItem, type CallAnalyticsScoreDistributionItem, type CallAnalyticsSummary, type CallDetail, CallDetailDirection, type CallDetailEvaluation, type CallDetailMetadata, CallDirection, type CallEvaluation, type CallEvaluationMetricsItem, type CallEvaluationProperty, type CallList, type CallMessage, type CallMessageMetadata, type CallMessageToolArguments, type CallMessageToolResult, type CallMetadata, type CancelJobMutationResult, type CaseList, type CaseSummary, type ChatAgent, type ChatAgentCreated, type ChatAgentList, type ChatCreated, type ChatHistory, type ChatHistoryMessagesItem, ChatHistoryMessagesItemRole, type ChatList, type ChatListItem, type ChatMessage, type ChatMessageCreated, type ChatMessageCreatedMessage, type ChatMessageCreatedMessageContentItem, type ChatMessageList, type ChatMessagePart, ChatMessageRole, type CheckInboxAvailabilityParams, type CheckInboxAvailabilityQueryResult, type ClaimCreated, type ClaimDetail, type ClaimDetailArtifactsItem, type ClaimDetailClaim, type ClaimDetailExtractorJob, type ClaimDetailSourcesItem, type ClaimList, type ClaimListClaimsItem, type CodeTool, type CodeToolCreated, type CodeToolCreatedTool, type CodeToolCreatedToolSchema, type CodeToolSchema, type CodeToolSummary, type CodeToolUpdated, type CodeToolUpdatedTool, type CodeToolUpdatedToolSchema, type ConfirmationResponse, type CreateAgentWebhookBody, type CreateAgentWebhookMutationResult, type CreateApiKeyBody, CreateApiKeyBodyEnvironment, type CreateApiKeyMutationResult, type CreateArtifactBody, type CreateArtifactBodyMetadata, type CreateArtifactBodyProcessingOptions, type CreateArtifactMutationResult, type CreateCallFeedbackMutationResult, type CreateChatAgentBody, type CreateChatAgentMutationResult, type CreateChatBody, type CreateChatMutationResult, type CreateClaimMutationResult, type CreateEmailBody, CreateEmailBodyDirection, type CreateEmailMutationResult, type CreateExtractorBody, type CreateExtractorBodySchema, type CreateExtractorJobBody, type CreateExtractorJobBodyScope, type CreateExtractorJobMutationResult, type CreateExtractorMutationResult, type CreateExtractorWebhookBody, type CreateExtractorWebhookMutationResult, type CreateFeedbackRequest, type CreateInboxBody, CreateInboxBodyProcessorType, type CreateInboxMutationResult, type CreateInboxWebhookBody, type CreateInboxWebhookMutationResult, type CreateToolBody, type CreateToolMutationResult, type CreateVoiceAgentBody, CreateVoiceAgentBodyCallProcessorType, CreateVoiceAgentBodyDirection, CreateVoiceAgentBodyLanguage, CreateVoiceAgentBodyLlmModel, CreateVoiceAgentBodySttModel, CreateVoiceAgentBodyTtsModel, CreateVoiceAgentBodyTtsProvider, type CreateVoiceAgentMutationResult, type CreateVoiceAgentResponse, type CreateWorkerBody, type CreateWorkerBodyEnvVars, type CreateWorkerMutationResult, type CreateWorkerRunBody, type CreateWorkerRunBodyScope, type CreateWorkerRunMutationResult, type CreateWorkerWebhookBody, type CreateWorkerWebhookMutationResult, type DeleteCallFeedbackMutationResult, type DeleteToolsFromVoiceAgentBody, type DeleteToolsFromVoiceAgentMutationResult, type DeleteToolsFromVoiceAgentResponse, type DeleteWebhookMutationResult, type DeleteWebhookResponse, type Email, type EmailCreated, EmailCreatedDirection, type EmailDetail, EmailDetailDirection, EmailDirection, type EmailList, type EmailReplyResult, EmailReplyResultValue, type EmailSendResult, type EmailThread, type EmailThreadList, type EmptyResponse, type ErrorResponse, type ErrorResponseData, type ExecuteCodeBody, type ExecuteCodeBodyParams, type ExecuteCodeMutationResult, type Extract, type ExtractList, type ExtractProcessorScope, type ExtractScope, type ExtractSummary, type ExtractSummaryProcessorScope, type ExtractSummaryScope, type Extractor, type ExtractorCreated, type ExtractorCreatedSchema, type ExtractorJob, type ExtractorJobCreated, type ExtractorJobCreatedScope, type ExtractorJobDetail, type ExtractorJobDetailScope, type ExtractorJobList, type ExtractorJobScope, type ExtractorList, type ExtractorSchema, type ExtractorSummary, type ExtractorUpdated, type ExtractorUpdatedSchema, type ExtractorWebhookList, type Feedback, type GetArtifactMetadataKeysParams, type GetArtifactMetadataKeysQueryResult, type GetArtifactQueryResult, type GetArtifactUploadUrl200, type GetArtifactUploadUrlBody, type GetArtifactUploadUrlMutationResult, type GetCallAnalyticsParams, type GetCallAnalyticsQueryResult, type GetCallEvaluationQueryResult, type GetCallParams, type GetCallQueryResult, type GetChatAgentQueryResult, type GetChatQueryResult, type GetClaimDetailQueryResult, type GetEmailQueryResult, type GetExtractCitations200, type GetExtractCitations200Chunks, type GetExtractCitations200ChunksBoundingBox, type GetExtractCitationsQueryResult, type GetExtractQueryResult, type GetExtractorJobQueryResult, type GetExtractorJobResponse, type GetExtractorQueryResult, type GetExtractorResponse, GetOAuthUrlCodeChallengeMethod, type GetOAuthUrlParams, GetOAuthUrlProvider, type GetOAuthUrlQueryResult, type GetProfileQueryResult, type GetSessionToken200, type GetSessionTokenBody, type GetSessionTokenMutationResult, type GetToolQueryResult, type GetToolResponse, type GetVoiceAgentPlaceholdersQueryResult, type GetVoiceAgentPromptQueryResult, type GetVoiceAgentQueryResult, type GetVoiceAgentResponse, type GetWebhookQueryResult, type GetWorkerPromptQueryResult, type GetWorkerQueryResult, type GetWorkerRunQueryResult, type GetWorkerRunResponse, type Inbox, type InboxAvailability, type InboxList, InboxProcessorType, type InboxWebhookList, type ListAgentWebhooksQueryResult, ListApiKeysIncludeRevoked, type ListApiKeysParams, type ListApiKeysQueryResult, type ListArtifactsParams, type ListArtifactsQueryResult, ListArtifactsSortBy, ListArtifactsSortOrder, type ListCallFeedbackParams, type ListCallFeedbackQueryResult, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, type ListCallsParams, type ListCallsQueryResult, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, type ListCasesParams, type ListCasesQueryResult, ListCasesSortBy, ListCasesSortOrder, type ListChatAgentsParams, type ListChatAgentsQueryResult, ListChatAgentsSortBy, ListChatAgentsSortOrder, type ListChatMessagesParams, type ListChatMessagesQueryResult, ListChatMessagesSortBy, ListChatMessagesSortOrder, type ListChatsParams, type ListChatsQueryResult, ListChatsSortBy, ListChatsSortOrder, type ListClaimsParams, type ListClaimsQueryResult, ListClaimsSortBy, ListClaimsSortOrder, type ListEmailThreadsParams, type ListEmailThreadsQueryResult, ListEmailThreadsSortBy, ListEmailThreadsSortOrder, type ListEmailsParams, type ListEmailsQueryResult, ListEmailsSortBy, ListEmailsSortOrder, type ListExtractorJobsParams, type ListExtractorJobsQueryResult, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, type ListExtractorsParams, type ListExtractorsQueryResult, ListExtractorsSortBy, ListExtractorsSortOrder, type ListExtractsParams, type ListExtractsQueryResult, ListExtractsSortBy, ListExtractsSortOrder, type ListInboxWebhooksQueryResult, type ListInboxesParams, type ListInboxesQueryResult, ListInboxesSortBy, ListInboxesSortOrder, type ListJobsParams, type ListJobsQueryResult, ListJobsStatusItem, type ListTeamMembersQueryResult, type ListTeamMembersResponse, type ListToolsParams, type ListToolsQueryResult, ListToolsSortBy, ListToolsSortOrder, type ListVoiceAgentsParams, type ListVoiceAgentsQueryResult, type ListWebhookDeliveriesParams, type ListWebhookDeliveriesQueryResult, ListWebhookDeliveriesSortOrder, type ListWebhooksQueryResult, type ListWorkerRunMessagesParams, type ListWorkerRunMessagesQueryResult, type ListWorkerRunsParams, type ListWorkerRunsQueryResult, ListWorkerRunsSortBy, ListWorkerRunsSortOrder, ListWorkerRunsStatus, type ListWorkerWebhooksQueryResult, type ListWorkersParams, type ListWorkersQueryResult, ListWorkersSortBy, ListWorkersSortOrder, type OAuthUrl, type OutboundJob, type OutboundJobList, type OutboundJobMetadata, type OutboundJobPayload, OutboundJobStatus, type PostChatMessageBody, type PostChatMessageMutationResult, type Profile, ProfilePermissionsItem, ProfileRole, type ProfileTenant, type ProfileTenants, type RefreshTokenBody, type RefreshTokenMutationResult, type RemoveMemberMutationResult, type RemoveMemberResponse, type ReplyToEmailBody, type ReplyToEmailMutationResult, type RevokeApiKeyMutationResult, type ScheduleJobBody, type ScheduleJobBodyMetadata, type ScheduleJobBodyPayload, type ScheduleJobMutationResult, type SendEmailBody, type SendEmailMutationResult, type SignInBody, type SignInMutationResult, type SignUpBody, type SignUpMutationResult, type TeamMember, TeamMemberRole, type TestWebhookMutationResult, type ToolExecutionResult, type ToolExecutionResultError, type ToolExecutionResultTracesItem, type ToolList, type UpdateArtifactMetadataBody, type UpdateArtifactMetadataBodyMetadata, type UpdateArtifactMetadataMutationResult, type UpdateCallControlsBody, type UpdateCallControlsMutationResult, type UpdateChatAgentMutationResult, type UpdateChatAgentRequest, type UpdateExtractorBody, type UpdateExtractorBodySchema, type UpdateExtractorMutationResult, type UpdateInboxBody, type UpdateInboxBodyProcessor, UpdateInboxBodyProcessorType, type UpdateInboxMutationResult, type UpdateMemberRoleBody, UpdateMemberRoleBodyRole, type UpdateMemberRoleMutationResult, type UpdateMemberRoleResponse, type UpdateToolBody, type UpdateToolMutationResult, type UpdateVoiceAgentBody, UpdateVoiceAgentBodyCallProcessorType, type UpdateVoiceAgentCallControlsResponse, type UpdateVoiceAgentModelsBody, UpdateVoiceAgentModelsBodyLanguage, UpdateVoiceAgentModelsBodyLlmModel, UpdateVoiceAgentModelsBodySttModel, UpdateVoiceAgentModelsBodyTtsModel, UpdateVoiceAgentModelsBodyTtsProvider, type UpdateVoiceAgentModelsMutationResult, type UpdateVoiceAgentModelsResponse, type UpdateVoiceAgentMutationResult, type UpdateVoiceAgentPromptBody, type UpdateVoiceAgentPromptMutationResult, type UpdateVoiceAgentResponse, type UpdateWorkerBody, type UpdateWorkerBodySchema, type UpdateWorkerMutationResult, type UpdateWorkerPromptBody, type UpdateWorkerPromptMutationResult, type UpdateWorkerRunScopeBody, type UpdateWorkerRunScopeBodyScope, type UpdateWorkerRunScopeMutationResult, type UploadFileBody, type UploadFileBodyMetadata, type UploadFileBodyProcessingOptions, type UploadFileMutationResult, type UploadFileResponse, type VoiceAgent, VoiceAgentBackgroundSounds, VoiceAgentDirection, VoiceAgentLanguage, type VoiceAgentList, VoiceAgentLlmModel, type VoiceAgentPlaceholders, type VoiceAgentPrompt, type VoiceAgentPromptUpdated, VoiceAgentSttModel, VoiceAgentTtsModel, VoiceAgentTtsProvider, type VoiceAgentWebhookList, type Webhook, type WebhookDelivery, type WebhookDeliveryList, type WebhookScope, type WebhookTestResult, type Worker, type WorkerList, type WorkerPrompt, type WorkerPromptUpdated, type WorkerRun, type WorkerRunCreated, type WorkerRunCreatedScope, type WorkerRunList, type WorkerRunMessage, type WorkerRunMessageList, type WorkerRunMessageMessage, type WorkerRunScope, type WorkerSchema, type WorkerSummary, type WorkerWebhookList, addToolsToVoiceAgent, cancelJob, checkInboxAvailability, configure, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createChat, createChatAgent, createClaim, createEmail, createExtractor, createExtractorJob, createExtractorWebhook, createInbox, createInboxWebhook, createTool, createVoiceAgent, createWorker, createWorkerRun, createWorkerWebhook, deleteCallFeedback, deleteToolsFromVoiceAgent, deleteWebhook, executeCode, generateCodeChallenge, generateCodeVerifier, getAddToolsToVoiceAgentMutationFetcher, getAddToolsToVoiceAgentMutationKey, getAddToolsToVoiceAgentUrl, getArtifact, getArtifactMetadataKeys, getArtifactUploadUrl, getCall, getCallAnalytics, getCallEvaluation, getCancelJobMutationFetcher, getCancelJobMutationKey, getCancelJobUrl, getChat, getChatAgent, getCheckInboxAvailabilityKey, getCheckInboxAvailabilityUrl, getClaimDetail, getConfig, getCreateAgentWebhookMutationFetcher, getCreateAgentWebhookMutationKey, getCreateAgentWebhookUrl, getCreateApiKeyMutationFetcher, getCreateApiKeyMutationKey, getCreateApiKeyUrl, getCreateArtifactMutationFetcher, getCreateArtifactMutationKey, getCreateArtifactUrl, getCreateCallFeedbackMutationFetcher, getCreateCallFeedbackMutationKey, getCreateCallFeedbackUrl, getCreateChatAgentMutationFetcher, getCreateChatAgentMutationKey, getCreateChatAgentUrl, getCreateChatMutationFetcher, getCreateChatMutationKey, getCreateChatUrl, getCreateClaimMutationFetcher, getCreateClaimMutationKey, getCreateClaimUrl, getCreateEmailMutationFetcher, getCreateEmailMutationKey, getCreateEmailUrl, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateInboxMutationFetcher, getCreateInboxMutationKey, getCreateInboxUrl, getCreateInboxWebhookMutationFetcher, getCreateInboxWebhookMutationKey, getCreateInboxWebhookUrl, getCreateToolMutationFetcher, getCreateToolMutationKey, getCreateToolUrl, getCreateVoiceAgentMutationFetcher, getCreateVoiceAgentMutationKey, getCreateVoiceAgentUrl, getCreateWorkerMutationFetcher, getCreateWorkerMutationKey, getCreateWorkerRunMutationFetcher, getCreateWorkerRunMutationKey, getCreateWorkerRunUrl, getCreateWorkerUrl, getCreateWorkerWebhookMutationFetcher, getCreateWorkerWebhookMutationKey, getCreateWorkerWebhookUrl, getDeleteCallFeedbackMutationFetcher, getDeleteCallFeedbackMutationKey, getDeleteCallFeedbackUrl, getDeleteToolsFromVoiceAgentMutationFetcher, getDeleteToolsFromVoiceAgentMutationKey, getDeleteToolsFromVoiceAgentUrl, getDeleteWebhookMutationFetcher, getDeleteWebhookMutationKey, getDeleteWebhookUrl, getEmail, getExecuteCodeMutationFetcher, getExecuteCodeMutationKey, getExecuteCodeUrl, getExtract, getExtractCitations, getExtractor, getExtractorJob, getGetArtifactKey, getGetArtifactMetadataKeysKey, getGetArtifactMetadataKeysUrl, getGetArtifactUploadUrlMutationFetcher, getGetArtifactUploadUrlMutationKey, getGetArtifactUploadUrlUrl, getGetArtifactUrl, getGetCallAnalyticsKey, getGetCallAnalyticsUrl, getGetCallEvaluationKey, getGetCallEvaluationUrl, getGetCallKey, getGetCallUrl, getGetChatAgentKey, getGetChatAgentUrl, getGetChatKey, getGetChatUrl, getGetClaimDetailKey, getGetClaimDetailUrl, getGetEmailKey, getGetEmailUrl, getGetExtractCitationsKey, getGetExtractCitationsUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetProfileKey, getGetProfileUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetVoiceAgentKey, getGetVoiceAgentPlaceholdersKey, getGetVoiceAgentPlaceholdersUrl, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, getGetWebhookKey, getGetWebhookUrl, getGetWorkerKey, getGetWorkerPromptKey, getGetWorkerPromptUrl, getGetWorkerRunKey, getGetWorkerRunUrl, getGetWorkerUrl, getListAgentWebhooksKey, getListAgentWebhooksUrl, getListApiKeysKey, getListApiKeysUrl, getListArtifactsKey, getListArtifactsUrl, getListCallFeedbackKey, getListCallFeedbackUrl, getListCallsKey, getListCallsUrl, getListCasesKey, getListCasesUrl, getListChatAgentsKey, getListChatAgentsUrl, getListChatMessagesKey, getListChatMessagesUrl, getListChatsKey, getListChatsUrl, getListClaimsKey, getListClaimsUrl, getListEmailThreadsKey, getListEmailThreadsUrl, getListEmailsKey, getListEmailsUrl, getListExtractorJobsKey, getListExtractorJobsUrl, getListExtractorsKey, getListExtractorsUrl, getListExtractsKey, getListExtractsUrl, getListInboxWebhooksKey, getListInboxWebhooksUrl, getListInboxesKey, getListInboxesUrl, getListJobsKey, getListJobsUrl, getListTeamMembersKey, getListTeamMembersUrl, getListToolsKey, getListToolsUrl, getListVoiceAgentsKey, getListVoiceAgentsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getListWorkerRunMessagesKey, getListWorkerRunMessagesUrl, getListWorkerRunsKey, getListWorkerRunsUrl, getListWorkerWebhooksKey, getListWorkerWebhooksUrl, getListWorkersKey, getListWorkersUrl, getOAuthUrl, getPostChatMessageMutationFetcher, getPostChatMessageMutationKey, getPostChatMessageUrl, getProfile, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRemoveMemberMutationFetcher, getRemoveMemberMutationKey, getRemoveMemberUrl, getReplyToEmailMutationFetcher, getReplyToEmailMutationKey, getReplyToEmailUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSendEmailMutationFetcher, getSendEmailMutationKey, getSendEmailUrl, getSessionToken, getSignInMutationFetcher, getSignInMutationKey, getSignInUrl, getSignUpMutationFetcher, getSignUpMutationKey, getSignUpUrl, getTestWebhookMutationFetcher, getTestWebhookMutationKey, getTestWebhookUrl, getTool, getUpdateArtifactMetadataMutationFetcher, getUpdateArtifactMetadataMutationKey, getUpdateArtifactMetadataUrl, getUpdateCallControlsMutationFetcher, getUpdateCallControlsMutationKey, getUpdateCallControlsUrl, getUpdateChatAgentMutationFetcher, getUpdateChatAgentMutationKey, getUpdateChatAgentUrl, getUpdateExtractorMutationFetcher, getUpdateExtractorMutationKey, getUpdateExtractorUrl, getUpdateInboxMutationFetcher, getUpdateInboxMutationKey, getUpdateInboxUrl, getUpdateMemberRoleMutationFetcher, getUpdateMemberRoleMutationKey, getUpdateMemberRoleUrl, getUpdateToolMutationFetcher, getUpdateToolMutationKey, getUpdateToolUrl, getUpdateVoiceAgentModelsMutationFetcher, getUpdateVoiceAgentModelsMutationKey, getUpdateVoiceAgentModelsUrl, getUpdateVoiceAgentMutationFetcher, getUpdateVoiceAgentMutationKey, getUpdateVoiceAgentPromptMutationFetcher, getUpdateVoiceAgentPromptMutationKey, getUpdateVoiceAgentPromptUrl, getUpdateVoiceAgentUrl, getUpdateWorkerMutationFetcher, getUpdateWorkerMutationKey, getUpdateWorkerPromptMutationFetcher, getUpdateWorkerPromptMutationKey, getUpdateWorkerPromptUrl, getUpdateWorkerRunScopeMutationFetcher, getUpdateWorkerRunScopeMutationKey, getUpdateWorkerRunScopeUrl, getUpdateWorkerUrl, getUploadFileMutationFetcher, getUploadFileMutationKey, getUploadFileUrl, getVoiceAgent, getVoiceAgentPlaceholders, getVoiceAgentPrompt, getWebhook, getWorker, getWorkerPrompt, getWorkerRun, listAgentWebhooks, listApiKeys, listArtifacts, listCallFeedback, listCalls, listCases, listChatAgents, listChatMessages, listChats, listClaims, listEmailThreads, listEmails, listExtractorJobs, listExtractors, listExtracts, listInboxWebhooks, listInboxes, listJobs, listTeamMembers, listTools, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerRunMessages, listWorkerRuns, listWorkerWebhooks, listWorkers, postChatMessage, refreshToken, removeMember, replyToEmail, revokeApiKey, scheduleJob, sendEmail, signIn, signUp, testWebhook, updateArtifactMetadata, updateCallControls, updateChatAgent, updateExtractor, updateInbox, updateMemberRole, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateVoiceAgentPrompt, updateWorker, updateWorkerPrompt, updateWorkerRunScope, uploadFile, useAddToolsToVoiceAgent, useCancelJob, useCheckInboxAvailability, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateChat, useCreateChatAgent, useCreateClaim, useCreateEmail, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateInbox, useCreateInboxWebhook, useCreateTool, useCreateVoiceAgent, useCreateWorker, useCreateWorkerRun, useCreateWorkerWebhook, useDeleteCallFeedback, useDeleteToolsFromVoiceAgent, useDeleteWebhook, useExecuteCode, useGetArtifact, useGetArtifactMetadataKeys, useGetArtifactUploadUrl, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetChat, useGetChatAgent, useGetClaimDetail, useGetEmail, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetOAuthUrl, useGetProfile, useGetSessionToken, useGetTool, useGetVoiceAgent, useGetVoiceAgentPlaceholders, useGetVoiceAgentPrompt, useGetWebhook, useGetWorker, useGetWorkerPrompt, useGetWorkerRun, useListAgentWebhooks, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListCases, useListChatAgents, useListChatMessages, useListChats, useListClaims, useListEmailThreads, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListInboxWebhooks, useListInboxes, useListJobs, useListTeamMembers, useListTools, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerRunMessages, useListWorkerRuns, useListWorkerWebhooks, useListWorkers, usePostChatMessage, useRefreshToken, useRemoveMember, useReplyToEmail, useRevokeApiKey, useScheduleJob, useSendEmail, useSignIn, useSignUp, useTestWebhook, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateChatAgent, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateVoiceAgentPrompt, useUpdateWorker, useUpdateWorkerPrompt, useUpdateWorkerRunScope, useUploadFile };