@avallon-labs/sdk 17.5.0 → 17.6.0-staging.423

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
@@ -3188,6 +3188,44 @@ type ListJobsParams = {
3188
3188
  scheduled_before?: string;
3189
3189
  };
3190
3190
 
3191
+ /**
3192
+ * Generated by orval v8.1.0 🍺
3193
+ * Do not edit manually.
3194
+ * Avallon API
3195
+ * OpenAPI spec version: 1.0.0
3196
+ */
3197
+ type TeamMemberRole = (typeof TeamMemberRole)[keyof typeof TeamMemberRole];
3198
+ declare const TeamMemberRole: {
3199
+ readonly admin: "admin";
3200
+ readonly member: "member";
3201
+ };
3202
+
3203
+ /**
3204
+ * Generated by orval v8.1.0 🍺
3205
+ * Do not edit manually.
3206
+ * Avallon API
3207
+ * OpenAPI spec version: 1.0.0
3208
+ */
3209
+
3210
+ interface TeamMember {
3211
+ id: string;
3212
+ first_name: string | null;
3213
+ last_name: string | null;
3214
+ email: string;
3215
+ role: TeamMemberRole;
3216
+ created_at: string;
3217
+ updated_at: string;
3218
+ }
3219
+
3220
+ /**
3221
+ * Generated by orval v8.1.0 🍺
3222
+ * Do not edit manually.
3223
+ * Avallon API
3224
+ * OpenAPI spec version: 1.0.0
3225
+ */
3226
+
3227
+ type ListTeamMembersResponse = TeamMember[];
3228
+
3191
3229
  /**
3192
3230
  * Generated by orval v8.1.0 🍺
3193
3231
  * Do not edit manually.
@@ -3564,6 +3602,16 @@ type RefreshTokenBody = {
3564
3602
  refresh_token: string;
3565
3603
  };
3566
3604
 
3605
+ /**
3606
+ * Generated by orval v8.1.0 🍺
3607
+ * Do not edit manually.
3608
+ * Avallon API
3609
+ * OpenAPI spec version: 1.0.0
3610
+ */
3611
+ interface RemoveMemberResponse {
3612
+ [key: string]: unknown;
3613
+ }
3614
+
3567
3615
  /**
3568
3616
  * Generated by orval v8.1.0 🍺
3569
3617
  * Do not edit manually.
@@ -3794,6 +3842,38 @@ type UpdateInboxBody = {
3794
3842
  processor?: UpdateInboxBodyProcessor;
3795
3843
  };
3796
3844
 
3845
+ /**
3846
+ * Generated by orval v8.1.0 🍺
3847
+ * Do not edit manually.
3848
+ * Avallon API
3849
+ * OpenAPI spec version: 1.0.0
3850
+ */
3851
+ type UpdateMemberRoleBodyRole = (typeof UpdateMemberRoleBodyRole)[keyof typeof UpdateMemberRoleBodyRole];
3852
+ declare const UpdateMemberRoleBodyRole: {
3853
+ readonly admin: "admin";
3854
+ readonly member: "member";
3855
+ };
3856
+
3857
+ /**
3858
+ * Generated by orval v8.1.0 🍺
3859
+ * Do not edit manually.
3860
+ * Avallon API
3861
+ * OpenAPI spec version: 1.0.0
3862
+ */
3863
+
3864
+ type UpdateMemberRoleBody = {
3865
+ role: UpdateMemberRoleBodyRole;
3866
+ };
3867
+
3868
+ /**
3869
+ * Generated by orval v8.1.0 🍺
3870
+ * Do not edit manually.
3871
+ * Avallon API
3872
+ * OpenAPI spec version: 1.0.0
3873
+ */
3874
+
3875
+ type UpdateMemberRoleResponse = TeamMember;
3876
+
3797
3877
  /**
3798
3878
  * Generated by orval v8.1.0 🍺
3799
3879
  * Do not edit manually.
@@ -4263,7 +4343,7 @@ type WorkerRunMessageList = WorkerRunMessage[];
4263
4343
 
4264
4344
  type WorkerWebhookList = Webhook[];
4265
4345
 
4266
- type SecondParameter$h<T extends (...args: never) => unknown> = Parameters<T>[1];
4346
+ type SecondParameter$i<T extends (...args: never) => unknown> = Parameters<T>[1];
4267
4347
  /**
4268
4348
  * List all API keys for your tenant.
4269
4349
 
@@ -4284,7 +4364,7 @@ declare const useListApiKeys: <TError = ErrorType<ErrorResponse>>(params?: ListA
4284
4364
  swrKey?: Key;
4285
4365
  enabled?: boolean;
4286
4366
  };
4287
- request?: SecondParameter$h<typeof customFetch>;
4367
+ request?: SecondParameter$i<typeof customFetch>;
4288
4368
  }) => {
4289
4369
  data: ApiKeyList | undefined;
4290
4370
  error: TError | undefined;
@@ -4303,7 +4383,7 @@ Keys are scoped to an environment (`test` or `live`) and optionally accept an ex
4303
4383
  */
4304
4384
  declare const getCreateApiKeyUrl: () => string;
4305
4385
  declare const createApiKey: (createApiKeyBody: CreateApiKeyBody, options?: RequestInit) => Promise<ApiKeyCreated>;
4306
- declare const getCreateApiKeyMutationFetcher: (options?: SecondParameter$h<typeof customFetch>) => (_: Key, { arg }: {
4386
+ declare const getCreateApiKeyMutationFetcher: (options?: SecondParameter$i<typeof customFetch>) => (_: Key, { arg }: {
4307
4387
  arg: CreateApiKeyBody;
4308
4388
  }) => Promise<ApiKeyCreated>;
4309
4389
  declare const getCreateApiKeyMutationKey: () => readonly ["/platform/api-keys"];
@@ -4315,7 +4395,7 @@ declare const useCreateApiKey: <TError = ErrorType<ErrorResponse>>(options?: {
4315
4395
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createApiKey>>, TError, Key, CreateApiKeyBody, Awaited<ReturnType<typeof createApiKey>>> & {
4316
4396
  swrKey?: string;
4317
4397
  };
4318
- request?: SecondParameter$h<typeof customFetch>;
4398
+ request?: SecondParameter$i<typeof customFetch>;
4319
4399
  }) => {
4320
4400
  isMutating: boolean;
4321
4401
  trigger: swr_mutation.TriggerWithArgs<ApiKeyCreated, TError, string | readonly ["/platform/api-keys"], CreateApiKeyBody>;
@@ -4334,7 +4414,7 @@ Returns 409 if the key is already revoked, 404 if the key does not exist.
4334
4414
  */
4335
4415
  declare const getRevokeApiKeyUrl: (id: string) => string;
4336
4416
  declare const revokeApiKey: (id: string, options?: RequestInit) => Promise<ConfirmationResponse>;
4337
- declare const getRevokeApiKeyMutationFetcher: (id: string, options?: SecondParameter$h<typeof customFetch>) => (_: Key, __: {
4417
+ declare const getRevokeApiKeyMutationFetcher: (id: string, options?: SecondParameter$i<typeof customFetch>) => (_: Key, __: {
4338
4418
  arg: Arguments;
4339
4419
  }) => Promise<ConfirmationResponse>;
4340
4420
  declare const getRevokeApiKeyMutationKey: (id: string) => readonly [`/platform/api-keys/${string}/revoke`];
@@ -4346,7 +4426,7 @@ declare const useRevokeApiKey: <TError = ErrorType<ErrorResponse>>(id: string, o
4346
4426
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof revokeApiKey>>, TError, Key, Arguments, Awaited<ReturnType<typeof revokeApiKey>>> & {
4347
4427
  swrKey?: string;
4348
4428
  };
4349
- request?: SecondParameter$h<typeof customFetch>;
4429
+ request?: SecondParameter$i<typeof customFetch>;
4350
4430
  }) => {
4351
4431
  isMutating: boolean;
4352
4432
  trigger: swr_mutation.TriggerWithOptionsArgs<ConfirmationResponse, TError, string | readonly [`/platform/api-keys/${string}/revoke`], Arguments>;
@@ -4356,7 +4436,7 @@ declare const useRevokeApiKey: <TError = ErrorType<ErrorResponse>>(id: string, o
4356
4436
  swrKey: string | readonly [`/platform/api-keys/${string}/revoke`];
4357
4437
  };
4358
4438
 
4359
- type SecondParameter$g<T extends (...args: never) => unknown> = Parameters<T>[1];
4439
+ type SecondParameter$h<T extends (...args: never) => unknown> = Parameters<T>[1];
4360
4440
  /**
4361
4441
  * Upload a document as a base64-encoded artifact for processing.
4362
4442
 
@@ -4372,7 +4452,7 @@ Maximum file size is approximately 6.75MB (base64 encoded). The API Gateway has
4372
4452
  */
4373
4453
  declare const getCreateArtifactUrl: () => string;
4374
4454
  declare const createArtifact: (createArtifactBody: CreateArtifactBody, options?: RequestInit) => Promise<ArtifactCreated>;
4375
- declare const getCreateArtifactMutationFetcher: (options?: SecondParameter$g<typeof customFetch>) => (_: Key, { arg }: {
4455
+ declare const getCreateArtifactMutationFetcher: (options?: SecondParameter$h<typeof customFetch>) => (_: Key, { arg }: {
4376
4456
  arg: CreateArtifactBody;
4377
4457
  }) => Promise<ArtifactCreated>;
4378
4458
  declare const getCreateArtifactMutationKey: () => readonly ["/v1/artifacts"];
@@ -4384,7 +4464,7 @@ declare const useCreateArtifact: <TError = ErrorType<ErrorResponse>>(options?: {
4384
4464
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createArtifact>>, TError, Key, CreateArtifactBody, Awaited<ReturnType<typeof createArtifact>>> & {
4385
4465
  swrKey?: string;
4386
4466
  };
4387
- request?: SecondParameter$g<typeof customFetch>;
4467
+ request?: SecondParameter$h<typeof customFetch>;
4388
4468
  }) => {
4389
4469
  isMutating: boolean;
4390
4470
  trigger: swr_mutation.TriggerWithArgs<ArtifactCreated, TError, string | readonly ["/v1/artifacts"], CreateArtifactBody>;
@@ -4417,7 +4497,7 @@ declare const useListArtifacts: <TError = ErrorType<ErrorResponse>>(params?: Lis
4417
4497
  swrKey?: Key;
4418
4498
  enabled?: boolean;
4419
4499
  };
4420
- request?: SecondParameter$g<typeof customFetch>;
4500
+ request?: SecondParameter$h<typeof customFetch>;
4421
4501
  }) => {
4422
4502
  data: ArtifactList | undefined;
4423
4503
  error: TError | undefined;
@@ -4442,7 +4522,7 @@ declare const useGetArtifact: <TError = ErrorType<ErrorResponse>>(id: string, op
4442
4522
  swrKey?: Key;
4443
4523
  enabled?: boolean;
4444
4524
  };
4445
- request?: SecondParameter$g<typeof customFetch>;
4525
+ request?: SecondParameter$h<typeof customFetch>;
4446
4526
  }) => {
4447
4527
  data: ArtifactDetail | undefined;
4448
4528
  error: TError | undefined;
@@ -4467,7 +4547,7 @@ declare const useGetArtifactMetadataKeys: <TError = ErrorType<ErrorResponse>>(pa
4467
4547
  swrKey?: Key;
4468
4548
  enabled?: boolean;
4469
4549
  };
4470
- request?: SecondParameter$g<typeof customFetch>;
4550
+ request?: SecondParameter$h<typeof customFetch>;
4471
4551
  }) => {
4472
4552
  data: ArtifactMetadataKeys | undefined;
4473
4553
  error: TError | undefined;
@@ -4482,7 +4562,7 @@ declare const useGetArtifactMetadataKeys: <TError = ErrorType<ErrorResponse>>(pa
4482
4562
  */
4483
4563
  declare const getGetArtifactUploadUrlUrl: () => string;
4484
4564
  declare const getArtifactUploadUrl: (getArtifactUploadUrlBody: GetArtifactUploadUrlBody, options?: RequestInit) => Promise<GetArtifactUploadUrl200>;
4485
- declare const getGetArtifactUploadUrlMutationFetcher: (options?: SecondParameter$g<typeof customFetch>) => (_: Key, { arg }: {
4565
+ declare const getGetArtifactUploadUrlMutationFetcher: (options?: SecondParameter$h<typeof customFetch>) => (_: Key, { arg }: {
4486
4566
  arg: GetArtifactUploadUrlBody;
4487
4567
  }) => Promise<GetArtifactUploadUrl200>;
4488
4568
  declare const getGetArtifactUploadUrlMutationKey: () => readonly ["/v1/artifacts/get-upload-url"];
@@ -4494,7 +4574,7 @@ declare const useGetArtifactUploadUrl: <TError = ErrorType<ErrorResponse>>(optio
4494
4574
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof getArtifactUploadUrl>>, TError, Key, GetArtifactUploadUrlBody, Awaited<ReturnType<typeof getArtifactUploadUrl>>> & {
4495
4575
  swrKey?: string;
4496
4576
  };
4497
- request?: SecondParameter$g<typeof customFetch>;
4577
+ request?: SecondParameter$h<typeof customFetch>;
4498
4578
  }) => {
4499
4579
  isMutating: boolean;
4500
4580
  trigger: swr_mutation.TriggerWithArgs<GetArtifactUploadUrl200, TError, string | readonly ["/v1/artifacts/get-upload-url"], GetArtifactUploadUrlBody>;
@@ -4509,7 +4589,7 @@ declare const useGetArtifactUploadUrl: <TError = ErrorType<ErrorResponse>>(optio
4509
4589
  */
4510
4590
  declare const getUpdateArtifactMetadataUrl: (id: string) => string;
4511
4591
  declare const updateArtifactMetadata: (id: string, updateArtifactMetadataBody: UpdateArtifactMetadataBody, options?: RequestInit) => Promise<ArtifactDetail>;
4512
- declare const getUpdateArtifactMetadataMutationFetcher: (id: string, options?: SecondParameter$g<typeof customFetch>) => (_: Key, { arg }: {
4592
+ declare const getUpdateArtifactMetadataMutationFetcher: (id: string, options?: SecondParameter$h<typeof customFetch>) => (_: Key, { arg }: {
4513
4593
  arg: UpdateArtifactMetadataBody;
4514
4594
  }) => Promise<ArtifactDetail>;
4515
4595
  declare const getUpdateArtifactMetadataMutationKey: (id: string) => readonly [`/v1/artifacts/${string}/metadata`];
@@ -4521,7 +4601,7 @@ declare const useUpdateArtifactMetadata: <TError = ErrorType<ErrorResponse>>(id:
4521
4601
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof updateArtifactMetadata>>, TError, Key, UpdateArtifactMetadataBody, Awaited<ReturnType<typeof updateArtifactMetadata>>> & {
4522
4602
  swrKey?: string;
4523
4603
  };
4524
- request?: SecondParameter$g<typeof customFetch>;
4604
+ request?: SecondParameter$h<typeof customFetch>;
4525
4605
  }) => {
4526
4606
  isMutating: boolean;
4527
4607
  trigger: swr_mutation.TriggerWithArgs<ArtifactDetail, TError, string | readonly [`/v1/artifacts/${string}/metadata`], UpdateArtifactMetadataBody>;
@@ -4538,7 +4618,7 @@ This endpoint returns an upload id that can be used to find the created artifact
4538
4618
  */
4539
4619
  declare const getUploadFileUrl: () => string;
4540
4620
  declare const uploadFile: (uploadFileBody: UploadFileBody, options?: RequestInit) => Promise<UploadFileResponse>;
4541
- declare const getUploadFileMutationFetcher: (options?: SecondParameter$g<typeof customFetch>) => (_: Key, { arg }: {
4621
+ declare const getUploadFileMutationFetcher: (options?: SecondParameter$h<typeof customFetch>) => (_: Key, { arg }: {
4542
4622
  arg: UploadFileBody;
4543
4623
  }) => Promise<UploadFileResponse>;
4544
4624
  declare const getUploadFileMutationKey: () => readonly ["/v1/upload-file"];
@@ -4550,7 +4630,7 @@ declare const useUploadFile: <TError = ErrorType<ErrorResponse>>(options?: {
4550
4630
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof uploadFile>>, TError, Key, UploadFileBody, Awaited<ReturnType<typeof uploadFile>>> & {
4551
4631
  swrKey?: string;
4552
4632
  };
4553
- request?: SecondParameter$g<typeof customFetch>;
4633
+ request?: SecondParameter$h<typeof customFetch>;
4554
4634
  }) => {
4555
4635
  isMutating: boolean;
4556
4636
  trigger: swr_mutation.TriggerWithArgs<UploadFileResponse, TError, string | readonly ["/v1/upload-file"], UploadFileBody>;
@@ -4560,14 +4640,14 @@ declare const useUploadFile: <TError = ErrorType<ErrorResponse>>(options?: {
4560
4640
  swrKey: string | readonly ["/v1/upload-file"];
4561
4641
  };
4562
4642
 
4563
- type SecondParameter$f<T extends (...args: never) => unknown> = Parameters<T>[1];
4643
+ type SecondParameter$g<T extends (...args: never) => unknown> = Parameters<T>[1];
4564
4644
  /**
4565
4645
  * Create a new user account with email and password.
4566
4646
  * @summary Sign up
4567
4647
  */
4568
4648
  declare const getSignUpUrl: () => string;
4569
4649
  declare const signUp: (signUpBody: SignUpBody, options?: RequestInit) => Promise<EmptyResponse>;
4570
- declare const getSignUpMutationFetcher: (options?: SecondParameter$f<typeof customFetchNoAuth>) => (_: Key, { arg }: {
4650
+ declare const getSignUpMutationFetcher: (options?: SecondParameter$g<typeof customFetchNoAuth>) => (_: Key, { arg }: {
4571
4651
  arg: SignUpBody;
4572
4652
  }) => Promise<EmptyResponse>;
4573
4653
  declare const getSignUpMutationKey: () => readonly ["/v1/auth/sign-up"];
@@ -4579,7 +4659,7 @@ declare const useSignUp: <TError = ErrorType<ErrorResponse>>(options?: {
4579
4659
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof signUp>>, TError, Key, SignUpBody, Awaited<ReturnType<typeof signUp>>> & {
4580
4660
  swrKey?: string;
4581
4661
  };
4582
- request?: SecondParameter$f<typeof customFetchNoAuth>;
4662
+ request?: SecondParameter$g<typeof customFetchNoAuth>;
4583
4663
  }) => {
4584
4664
  isMutating: boolean;
4585
4665
  trigger: swr_mutation.TriggerWithArgs<EmptyResponse, TError, string | readonly ["/v1/auth/sign-up"], SignUpBody>;
@@ -4598,7 +4678,7 @@ declare const useSignUp: <TError = ErrorType<ErrorResponse>>(options?: {
4598
4678
  */
4599
4679
  declare const getSignInUrl: () => string;
4600
4680
  declare const signIn: (signInBody: SignInBody, options?: RequestInit) => Promise<AuthTokens>;
4601
- declare const getSignInMutationFetcher: (options?: SecondParameter$f<typeof customFetchNoAuth>) => (_: Key, { arg }: {
4681
+ declare const getSignInMutationFetcher: (options?: SecondParameter$g<typeof customFetchNoAuth>) => (_: Key, { arg }: {
4602
4682
  arg: SignInBody;
4603
4683
  }) => Promise<AuthTokens>;
4604
4684
  declare const getSignInMutationKey: () => readonly ["/v1/auth/sign-in"];
@@ -4610,7 +4690,7 @@ declare const useSignIn: <TError = ErrorType<ErrorResponse>>(options?: {
4610
4690
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof signIn>>, TError, Key, SignInBody, Awaited<ReturnType<typeof signIn>>> & {
4611
4691
  swrKey?: string;
4612
4692
  };
4613
- request?: SecondParameter$f<typeof customFetchNoAuth>;
4693
+ request?: SecondParameter$g<typeof customFetchNoAuth>;
4614
4694
  }) => {
4615
4695
  isMutating: boolean;
4616
4696
  trigger: swr_mutation.TriggerWithArgs<AuthTokens, TError, string | readonly ["/v1/auth/sign-in"], SignInBody>;
@@ -4625,7 +4705,7 @@ declare const useSignIn: <TError = ErrorType<ErrorResponse>>(options?: {
4625
4705
  */
4626
4706
  declare const getRefreshTokenUrl: () => string;
4627
4707
  declare const refreshToken: (refreshTokenBody: RefreshTokenBody, options?: RequestInit) => Promise<AuthTokens>;
4628
- declare const getRefreshTokenMutationFetcher: (options?: SecondParameter$f<typeof customFetchNoAuth>) => (_: Key, { arg }: {
4708
+ declare const getRefreshTokenMutationFetcher: (options?: SecondParameter$g<typeof customFetchNoAuth>) => (_: Key, { arg }: {
4629
4709
  arg: RefreshTokenBody;
4630
4710
  }) => Promise<AuthTokens>;
4631
4711
  declare const getRefreshTokenMutationKey: () => readonly ["/v1/auth/refresh-token"];
@@ -4637,7 +4717,7 @@ declare const useRefreshToken: <TError = ErrorType<ErrorResponse>>(options?: {
4637
4717
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof refreshToken>>, TError, Key, RefreshTokenBody, Awaited<ReturnType<typeof refreshToken>>> & {
4638
4718
  swrKey?: string;
4639
4719
  };
4640
- request?: SecondParameter$f<typeof customFetchNoAuth>;
4720
+ request?: SecondParameter$g<typeof customFetchNoAuth>;
4641
4721
  }) => {
4642
4722
  isMutating: boolean;
4643
4723
  trigger: swr_mutation.TriggerWithArgs<AuthTokens, TError, string | readonly ["/v1/auth/refresh-token"], RefreshTokenBody>;
@@ -4662,7 +4742,7 @@ declare const useGetOAuthUrl: <TError = ErrorType<ErrorResponse>>(params: GetOAu
4662
4742
  swrKey?: Key;
4663
4743
  enabled?: boolean;
4664
4744
  };
4665
- request?: SecondParameter$f<typeof customFetchNoAuth>;
4745
+ request?: SecondParameter$g<typeof customFetchNoAuth>;
4666
4746
  }) => {
4667
4747
  data: OAuthUrl | undefined;
4668
4748
  error: TError | undefined;
@@ -4681,7 +4761,7 @@ declare const useGetOAuthUrl: <TError = ErrorType<ErrorResponse>>(params: GetOAu
4681
4761
  */
4682
4762
  declare const getGetSessionTokenUrl: () => string;
4683
4763
  declare const getSessionToken: (getSessionTokenBody: GetSessionTokenBody, options?: RequestInit) => Promise<GetSessionToken200>;
4684
- declare const getGetSessionTokenMutationFetcher: (options?: SecondParameter$f<typeof customFetchNoAuth>) => (_: Key, { arg }: {
4764
+ declare const getGetSessionTokenMutationFetcher: (options?: SecondParameter$g<typeof customFetchNoAuth>) => (_: Key, { arg }: {
4685
4765
  arg: GetSessionTokenBody;
4686
4766
  }) => Promise<GetSessionToken200>;
4687
4767
  declare const getGetSessionTokenMutationKey: () => readonly ["/v1/auth/session"];
@@ -4693,7 +4773,7 @@ declare const useGetSessionToken: <TError = ErrorType<ErrorResponse>>(options?:
4693
4773
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof getSessionToken>>, TError, Key, GetSessionTokenBody, Awaited<ReturnType<typeof getSessionToken>>> & {
4694
4774
  swrKey?: string;
4695
4775
  };
4696
- request?: SecondParameter$f<typeof customFetchNoAuth>;
4776
+ request?: SecondParameter$g<typeof customFetchNoAuth>;
4697
4777
  }) => {
4698
4778
  isMutating: boolean;
4699
4779
  trigger: swr_mutation.TriggerWithArgs<GetSessionToken200, TError, string | readonly ["/v1/auth/session"], GetSessionTokenBody>;
@@ -4703,14 +4783,14 @@ declare const useGetSessionToken: <TError = ErrorType<ErrorResponse>>(options?:
4703
4783
  swrKey: string | readonly ["/v1/auth/session"];
4704
4784
  };
4705
4785
 
4706
- type SecondParameter$e<T extends (...args: never) => unknown> = Parameters<T>[1];
4786
+ type SecondParameter$f<T extends (...args: never) => unknown> = Parameters<T>[1];
4707
4787
  /**
4708
4788
  * Create feedback for a specific message in a call. Author is derived from the authenticated user.
4709
4789
  * @summary Create feedback on a call message
4710
4790
  */
4711
4791
  declare const getCreateCallFeedbackUrl: (id: string) => string;
4712
4792
  declare const createCallFeedback: (id: string, createFeedbackRequest: CreateFeedbackRequest, options?: RequestInit) => Promise<Feedback>;
4713
- declare const getCreateCallFeedbackMutationFetcher: (id: string, options?: SecondParameter$e<typeof customFetch>) => (_: Key, { arg }: {
4793
+ declare const getCreateCallFeedbackMutationFetcher: (id: string, options?: SecondParameter$f<typeof customFetch>) => (_: Key, { arg }: {
4714
4794
  arg: CreateFeedbackRequest;
4715
4795
  }) => Promise<Feedback>;
4716
4796
  declare const getCreateCallFeedbackMutationKey: (id: string) => readonly [`/v1/calls/${string}/feedback`];
@@ -4722,7 +4802,7 @@ declare const useCreateCallFeedback: <TError = ErrorType<ErrorResponse>>(id: str
4722
4802
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createCallFeedback>>, TError, Key, CreateFeedbackRequest, Awaited<ReturnType<typeof createCallFeedback>>> & {
4723
4803
  swrKey?: string;
4724
4804
  };
4725
- request?: SecondParameter$e<typeof customFetch>;
4805
+ request?: SecondParameter$f<typeof customFetch>;
4726
4806
  }) => {
4727
4807
  isMutating: boolean;
4728
4808
  trigger: swr_mutation.TriggerWithArgs<Feedback, TError, string | readonly [`/v1/calls/${string}/feedback`], CreateFeedbackRequest>;
@@ -4747,7 +4827,7 @@ declare const useListCallFeedback: <TError = ErrorType<ErrorResponse>>(id: strin
4747
4827
  swrKey?: Key;
4748
4828
  enabled?: boolean;
4749
4829
  };
4750
- request?: SecondParameter$e<typeof customFetch>;
4830
+ request?: SecondParameter$f<typeof customFetch>;
4751
4831
  }) => {
4752
4832
  data: Feedback[] | undefined;
4753
4833
  error: TError | undefined;
@@ -4762,7 +4842,7 @@ declare const useListCallFeedback: <TError = ErrorType<ErrorResponse>>(id: strin
4762
4842
  */
4763
4843
  declare const getDeleteCallFeedbackUrl: (id: string, feedbackId: string) => string;
4764
4844
  declare const deleteCallFeedback: (id: string, feedbackId: string, options?: RequestInit) => Promise<null>;
4765
- declare const getDeleteCallFeedbackMutationFetcher: (id: string, feedbackId: string, options?: SecondParameter$e<typeof customFetch>) => (_: Key, __: {
4845
+ declare const getDeleteCallFeedbackMutationFetcher: (id: string, feedbackId: string, options?: SecondParameter$f<typeof customFetch>) => (_: Key, __: {
4766
4846
  arg: Arguments;
4767
4847
  }) => Promise<null>;
4768
4848
  declare const getDeleteCallFeedbackMutationKey: (id: string, feedbackId: string) => readonly [`/v1/calls/${string}/feedback/${string}`];
@@ -4774,7 +4854,7 @@ declare const useDeleteCallFeedback: <TError = ErrorType<ErrorResponse>>(id: str
4774
4854
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof deleteCallFeedback>>, TError, Key, Arguments, Awaited<ReturnType<typeof deleteCallFeedback>>> & {
4775
4855
  swrKey?: string;
4776
4856
  };
4777
- request?: SecondParameter$e<typeof customFetch>;
4857
+ request?: SecondParameter$f<typeof customFetch>;
4778
4858
  }) => {
4779
4859
  isMutating: boolean;
4780
4860
  trigger: swr_mutation.TriggerWithOptionsArgs<null, TError, string | readonly [`/v1/calls/${string}/feedback/${string}`], Arguments>;
@@ -4784,7 +4864,7 @@ declare const useDeleteCallFeedback: <TError = ErrorType<ErrorResponse>>(id: str
4784
4864
  swrKey: string | readonly [`/v1/calls/${string}/feedback/${string}`];
4785
4865
  };
4786
4866
 
4787
- type SecondParameter$d<T extends (...args: never) => unknown> = Parameters<T>[1];
4867
+ type SecondParameter$e<T extends (...args: never) => unknown> = Parameters<T>[1];
4788
4868
  /**
4789
4869
  * List all calls, with pagination, filtering, and sorting.
4790
4870
 
@@ -4805,7 +4885,7 @@ declare const useListCalls: <TError = ErrorType<ErrorResponse>>(params?: ListCal
4805
4885
  swrKey?: Key;
4806
4886
  enabled?: boolean;
4807
4887
  };
4808
- request?: SecondParameter$d<typeof customFetch>;
4888
+ request?: SecondParameter$e<typeof customFetch>;
4809
4889
  }) => {
4810
4890
  data: CallList | undefined;
4811
4891
  error: TError | undefined;
@@ -4832,7 +4912,7 @@ declare const useGetCall: <TError = ErrorType<ErrorResponse>>(id: string, params
4832
4912
  swrKey?: Key;
4833
4913
  enabled?: boolean;
4834
4914
  };
4835
- request?: SecondParameter$d<typeof customFetch>;
4915
+ request?: SecondParameter$e<typeof customFetch>;
4836
4916
  }) => {
4837
4917
  data: CallDetail | undefined;
4838
4918
  error: TError | undefined;
@@ -4857,7 +4937,7 @@ declare const useGetCallEvaluation: <TError = ErrorType<ErrorResponse>>(id: stri
4857
4937
  swrKey?: Key;
4858
4938
  enabled?: boolean;
4859
4939
  };
4860
- request?: SecondParameter$d<typeof customFetch>;
4940
+ request?: SecondParameter$e<typeof customFetch>;
4861
4941
  }) => {
4862
4942
  data: CallEvaluation | undefined;
4863
4943
  error: TError | undefined;
@@ -4884,7 +4964,7 @@ declare const useGetCallAnalytics: <TError = ErrorType<ErrorResponse>>(params: G
4884
4964
  swrKey?: Key;
4885
4965
  enabled?: boolean;
4886
4966
  };
4887
- request?: SecondParameter$d<typeof customFetch>;
4967
+ request?: SecondParameter$e<typeof customFetch>;
4888
4968
  }) => {
4889
4969
  data: CallAnalytics | undefined;
4890
4970
  error: TError | undefined;
@@ -4894,14 +4974,14 @@ declare const useGetCallAnalytics: <TError = ErrorType<ErrorResponse>>(params: G
4894
4974
  swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
4895
4975
  };
4896
4976
 
4897
- type SecondParameter$c<T extends (...args: never) => unknown> = Parameters<T>[1];
4977
+ type SecondParameter$d<T extends (...args: never) => unknown> = Parameters<T>[1];
4898
4978
  /**
4899
4979
  * Create a new empty claim. Returns the claim ID and the creation timestamp.
4900
4980
  * @summary Create claim
4901
4981
  */
4902
4982
  declare const getCreateClaimUrl: () => string;
4903
4983
  declare const createClaim: (options?: RequestInit) => Promise<ClaimCreated>;
4904
- declare const getCreateClaimMutationFetcher: (options?: SecondParameter$c<typeof customFetch>) => (_: Key, __: {
4984
+ declare const getCreateClaimMutationFetcher: (options?: SecondParameter$d<typeof customFetch>) => (_: Key, __: {
4905
4985
  arg: Arguments;
4906
4986
  }) => Promise<ClaimCreated>;
4907
4987
  declare const getCreateClaimMutationKey: () => readonly ["/v1/claims"];
@@ -4913,7 +4993,7 @@ declare const useCreateClaim: <TError = ErrorType<ErrorResponse>>(options?: {
4913
4993
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createClaim>>, TError, Key, Arguments, Awaited<ReturnType<typeof createClaim>>> & {
4914
4994
  swrKey?: string;
4915
4995
  };
4916
- request?: SecondParameter$c<typeof customFetch>;
4996
+ request?: SecondParameter$d<typeof customFetch>;
4917
4997
  }) => {
4918
4998
  isMutating: boolean;
4919
4999
  trigger: swr_mutation.TriggerWithOptionsArgs<ClaimCreated, TError, string | readonly ["/v1/claims"], Arguments>;
@@ -4938,7 +5018,7 @@ declare const useListClaims: <TError = ErrorType<ErrorResponse>>(params?: ListCl
4938
5018
  swrKey?: Key;
4939
5019
  enabled?: boolean;
4940
5020
  };
4941
- request?: SecondParameter$c<typeof customFetch>;
5021
+ request?: SecondParameter$d<typeof customFetch>;
4942
5022
  }) => {
4943
5023
  data: ClaimList | undefined;
4944
5024
  error: TError | undefined;
@@ -4963,7 +5043,7 @@ declare const useGetClaimDetail: <TError = ErrorType<ErrorResponse>>(id: string,
4963
5043
  swrKey?: Key;
4964
5044
  enabled?: boolean;
4965
5045
  };
4966
- request?: SecondParameter$c<typeof customFetch>;
5046
+ request?: SecondParameter$d<typeof customFetch>;
4967
5047
  }) => {
4968
5048
  data: ClaimDetail | undefined;
4969
5049
  error: TError | undefined;
@@ -4973,7 +5053,7 @@ declare const useGetClaimDetail: <TError = ErrorType<ErrorResponse>>(id: string,
4973
5053
  swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => Arguments);
4974
5054
  };
4975
5055
 
4976
- type SecondParameter$b<T extends (...args: never) => unknown> = Parameters<T>[1];
5056
+ type SecondParameter$c<T extends (...args: never) => unknown> = Parameters<T>[1];
4977
5057
  /**
4978
5058
  * Ingest an email into the system.
4979
5059
 
@@ -4982,7 +5062,7 @@ Optionally associate the email with an existing claim via `claim_id`.
4982
5062
  */
4983
5063
  declare const getCreateEmailUrl: () => string;
4984
5064
  declare const createEmail: (createEmailBody: CreateEmailBody, options?: RequestInit) => Promise<EmailCreated>;
4985
- declare const getCreateEmailMutationFetcher: (options?: SecondParameter$b<typeof customFetch>) => (_: Key, { arg }: {
5065
+ declare const getCreateEmailMutationFetcher: (options?: SecondParameter$c<typeof customFetch>) => (_: Key, { arg }: {
4986
5066
  arg: CreateEmailBody;
4987
5067
  }) => Promise<EmailCreated>;
4988
5068
  declare const getCreateEmailMutationKey: () => readonly ["/v1/emails"];
@@ -4994,7 +5074,7 @@ declare const useCreateEmail: <TError = ErrorType<ErrorResponse>>(options?: {
4994
5074
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createEmail>>, TError, Key, CreateEmailBody, Awaited<ReturnType<typeof createEmail>>> & {
4995
5075
  swrKey?: string;
4996
5076
  };
4997
- request?: SecondParameter$b<typeof customFetch>;
5077
+ request?: SecondParameter$c<typeof customFetch>;
4998
5078
  }) => {
4999
5079
  isMutating: boolean;
5000
5080
  trigger: swr_mutation.TriggerWithArgs<EmailCreated, TError, string | readonly ["/v1/emails"], CreateEmailBody>;
@@ -5023,7 +5103,7 @@ declare const useListEmails: <TError = ErrorType<ErrorResponse>>(params?: ListEm
5023
5103
  swrKey?: Key;
5024
5104
  enabled?: boolean;
5025
5105
  };
5026
- request?: SecondParameter$b<typeof customFetch>;
5106
+ request?: SecondParameter$c<typeof customFetch>;
5027
5107
  }) => {
5028
5108
  data: EmailList | undefined;
5029
5109
  error: TError | undefined;
@@ -5048,7 +5128,7 @@ declare const useGetEmail: <TError = ErrorType<ErrorResponse>>(emailId: string,
5048
5128
  swrKey?: Key;
5049
5129
  enabled?: boolean;
5050
5130
  };
5051
- request?: SecondParameter$b<typeof customFetch>;
5131
+ request?: SecondParameter$c<typeof customFetch>;
5052
5132
  }) => {
5053
5133
  data: EmailDetail | undefined;
5054
5134
  error: TError | undefined;
@@ -5073,7 +5153,7 @@ declare const useListEmailThreads: <TError = ErrorType<ErrorResponse>>(params?:
5073
5153
  swrKey?: Key;
5074
5154
  enabled?: boolean;
5075
5155
  };
5076
- request?: SecondParameter$b<typeof customFetch>;
5156
+ request?: SecondParameter$c<typeof customFetch>;
5077
5157
  }) => {
5078
5158
  data: EmailThreadList | undefined;
5079
5159
  error: TError | undefined;
@@ -5088,7 +5168,7 @@ declare const useListEmailThreads: <TError = ErrorType<ErrorResponse>>(params?:
5088
5168
  */
5089
5169
  declare const getReplyToEmailUrl: (emailId: string) => string;
5090
5170
  declare const replyToEmail: (emailId: string, replyToEmailBody: ReplyToEmailBody, options?: RequestInit) => Promise<EmailReplyResult>;
5091
- declare const getReplyToEmailMutationFetcher: (emailId: string, options?: SecondParameter$b<typeof customFetch>) => (_: Key, { arg }: {
5171
+ declare const getReplyToEmailMutationFetcher: (emailId: string, options?: SecondParameter$c<typeof customFetch>) => (_: Key, { arg }: {
5092
5172
  arg: ReplyToEmailBody;
5093
5173
  }) => Promise<{
5094
5174
  readonly sent: true;
@@ -5102,7 +5182,7 @@ declare const useReplyToEmail: <TError = ErrorType<ErrorResponse>>(emailId: stri
5102
5182
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof replyToEmail>>, TError, Key, ReplyToEmailBody, Awaited<ReturnType<typeof replyToEmail>>> & {
5103
5183
  swrKey?: string;
5104
5184
  };
5105
- request?: SecondParameter$b<typeof customFetch>;
5185
+ request?: SecondParameter$c<typeof customFetch>;
5106
5186
  }) => {
5107
5187
  isMutating: boolean;
5108
5188
  trigger: swr_mutation.TriggerWithArgs<{
@@ -5116,7 +5196,7 @@ declare const useReplyToEmail: <TError = ErrorType<ErrorResponse>>(emailId: stri
5116
5196
  swrKey: string | readonly [`/v1/emails/${string}/reply`];
5117
5197
  };
5118
5198
 
5119
- type SecondParameter$a<T extends (...args: never) => unknown> = Parameters<T>[1];
5199
+ type SecondParameter$b<T extends (...args: never) => unknown> = Parameters<T>[1];
5120
5200
  /**
5121
5201
  * List all extraction jobs with pagination, filtering, and sorting.
5122
5202
 
@@ -5142,7 +5222,7 @@ declare const useListExtractorJobs: <TError = ErrorType<ErrorResponse>>(params?:
5142
5222
  swrKey?: Key;
5143
5223
  enabled?: boolean;
5144
5224
  };
5145
- request?: SecondParameter$a<typeof customFetch>;
5225
+ request?: SecondParameter$b<typeof customFetch>;
5146
5226
  }) => {
5147
5227
  data: ExtractorJobList | undefined;
5148
5228
  error: TError | undefined;
@@ -5159,7 +5239,7 @@ Provide a non-empty `scope` object to define what the extractor should process (
5159
5239
  */
5160
5240
  declare const getCreateExtractorJobUrl: () => string;
5161
5241
  declare const createExtractorJob: (createExtractorJobBody: CreateExtractorJobBody, options?: RequestInit) => Promise<ExtractorJobCreated>;
5162
- declare const getCreateExtractorJobMutationFetcher: (options?: SecondParameter$a<typeof customFetch>) => (_: Key, { arg }: {
5242
+ declare const getCreateExtractorJobMutationFetcher: (options?: SecondParameter$b<typeof customFetch>) => (_: Key, { arg }: {
5163
5243
  arg: CreateExtractorJobBody;
5164
5244
  }) => Promise<ExtractorJobCreated>;
5165
5245
  declare const getCreateExtractorJobMutationKey: () => readonly ["/v1/extractor-jobs"];
@@ -5171,7 +5251,7 @@ declare const useCreateExtractorJob: <TError = ErrorType<ErrorResponse>>(options
5171
5251
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createExtractorJob>>, TError, Key, CreateExtractorJobBody, Awaited<ReturnType<typeof createExtractorJob>>> & {
5172
5252
  swrKey?: string;
5173
5253
  };
5174
- request?: SecondParameter$a<typeof customFetch>;
5254
+ request?: SecondParameter$b<typeof customFetch>;
5175
5255
  }) => {
5176
5256
  isMutating: boolean;
5177
5257
  trigger: swr_mutation.TriggerWithArgs<ExtractorJobCreated, TError, string | readonly ["/v1/extractor-jobs"], CreateExtractorJobBody>;
@@ -5196,7 +5276,7 @@ declare const useGetExtractorJob: <TError = ErrorType<ErrorResponse>>(id: string
5196
5276
  swrKey?: Key;
5197
5277
  enabled?: boolean;
5198
5278
  };
5199
- request?: SecondParameter$a<typeof customFetch>;
5279
+ request?: SecondParameter$b<typeof customFetch>;
5200
5280
  }) => {
5201
5281
  data: GetExtractorJobResponse | undefined;
5202
5282
  error: TError | undefined;
@@ -5206,14 +5286,14 @@ declare const useGetExtractorJob: <TError = ErrorType<ErrorResponse>>(id: string
5206
5286
  swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
5207
5287
  };
5208
5288
 
5209
- type SecondParameter$9<T extends (...args: never) => unknown> = Parameters<T>[1];
5289
+ type SecondParameter$a<T extends (...args: never) => unknown> = Parameters<T>[1];
5210
5290
  /**
5211
5291
  * Create a new extractor with a name and JSON schema defining the extraction output format.
5212
5292
  * @summary Create extractor
5213
5293
  */
5214
5294
  declare const getCreateExtractorUrl: () => string;
5215
5295
  declare const createExtractor: (createExtractorBody: CreateExtractorBody, options?: RequestInit) => Promise<ExtractorCreated>;
5216
- declare const getCreateExtractorMutationFetcher: (options?: SecondParameter$9<typeof customFetch>) => (_: Key, { arg }: {
5296
+ declare const getCreateExtractorMutationFetcher: (options?: SecondParameter$a<typeof customFetch>) => (_: Key, { arg }: {
5217
5297
  arg: CreateExtractorBody;
5218
5298
  }) => Promise<ExtractorCreated>;
5219
5299
  declare const getCreateExtractorMutationKey: () => readonly ["/v1/extractors"];
@@ -5225,7 +5305,7 @@ declare const useCreateExtractor: <TError = ErrorType<ErrorResponse>>(options?:
5225
5305
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createExtractor>>, TError, Key, CreateExtractorBody, Awaited<ReturnType<typeof createExtractor>>> & {
5226
5306
  swrKey?: string;
5227
5307
  };
5228
- request?: SecondParameter$9<typeof customFetch>;
5308
+ request?: SecondParameter$a<typeof customFetch>;
5229
5309
  }) => {
5230
5310
  isMutating: boolean;
5231
5311
  trigger: swr_mutation.TriggerWithArgs<ExtractorCreated, TError, string | readonly ["/v1/extractors"], CreateExtractorBody>;
@@ -5252,7 +5332,7 @@ declare const useListExtractors: <TError = ErrorType<ErrorResponse>>(params?: Li
5252
5332
  swrKey?: Key;
5253
5333
  enabled?: boolean;
5254
5334
  };
5255
- request?: SecondParameter$9<typeof customFetch>;
5335
+ request?: SecondParameter$a<typeof customFetch>;
5256
5336
  }) => {
5257
5337
  data: ExtractorList | undefined;
5258
5338
  error: TError | undefined;
@@ -5277,7 +5357,7 @@ declare const useGetExtractor: <TError = ErrorType<ErrorResponse>>(id: string, o
5277
5357
  swrKey?: Key;
5278
5358
  enabled?: boolean;
5279
5359
  };
5280
- request?: SecondParameter$9<typeof customFetch>;
5360
+ request?: SecondParameter$a<typeof customFetch>;
5281
5361
  }) => {
5282
5362
  data: GetExtractorResponse | undefined;
5283
5363
  error: TError | undefined;
@@ -5292,7 +5372,7 @@ declare const useGetExtractor: <TError = ErrorType<ErrorResponse>>(id: string, o
5292
5372
  */
5293
5373
  declare const getUpdateExtractorUrl: (id: string) => string;
5294
5374
  declare const updateExtractor: (id: string, updateExtractorBody: UpdateExtractorBody, options?: RequestInit) => Promise<ExtractorUpdated>;
5295
- declare const getUpdateExtractorMutationFetcher: (id: string, options?: SecondParameter$9<typeof customFetch>) => (_: Key, { arg }: {
5375
+ declare const getUpdateExtractorMutationFetcher: (id: string, options?: SecondParameter$a<typeof customFetch>) => (_: Key, { arg }: {
5296
5376
  arg: UpdateExtractorBody;
5297
5377
  }) => Promise<ExtractorUpdated>;
5298
5378
  declare const getUpdateExtractorMutationKey: (id: string) => readonly [`/v1/extractors/${string}`];
@@ -5304,7 +5384,7 @@ declare const useUpdateExtractor: <TError = ErrorType<ErrorResponse>>(id: string
5304
5384
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof updateExtractor>>, TError, Key, UpdateExtractorBody, Awaited<ReturnType<typeof updateExtractor>>> & {
5305
5385
  swrKey?: string;
5306
5386
  };
5307
- request?: SecondParameter$9<typeof customFetch>;
5387
+ request?: SecondParameter$a<typeof customFetch>;
5308
5388
  }) => {
5309
5389
  isMutating: boolean;
5310
5390
  trigger: swr_mutation.TriggerWithArgs<ExtractorUpdated, TError, string | readonly [`/v1/extractors/${string}`], UpdateExtractorBody>;
@@ -5314,7 +5394,7 @@ declare const useUpdateExtractor: <TError = ErrorType<ErrorResponse>>(id: string
5314
5394
  swrKey: string | readonly [`/v1/extractors/${string}`];
5315
5395
  };
5316
5396
 
5317
- type SecondParameter$8<T extends (...args: never) => unknown> = Parameters<T>[1];
5397
+ type SecondParameter$9<T extends (...args: never) => unknown> = Parameters<T>[1];
5318
5398
  /**
5319
5399
  * Retrieve a single extract by ID, including the extraction result data.
5320
5400
  * @summary Get extract
@@ -5331,7 +5411,7 @@ declare const useGetExtract: <TError = ErrorType<ErrorResponse>>(id: string, opt
5331
5411
  swrKey?: Key;
5332
5412
  enabled?: boolean;
5333
5413
  };
5334
- request?: SecondParameter$8<typeof customFetch>;
5414
+ request?: SecondParameter$9<typeof customFetch>;
5335
5415
  }) => {
5336
5416
  data: Extract | undefined;
5337
5417
  error: TError | undefined;
@@ -5356,7 +5436,7 @@ declare const useGetExtractCitations: <TError = ErrorType<ErrorResponse>>(id: st
5356
5436
  swrKey?: Key;
5357
5437
  enabled?: boolean;
5358
5438
  };
5359
- request?: SecondParameter$8<typeof customFetch>;
5439
+ request?: SecondParameter$9<typeof customFetch>;
5360
5440
  }) => {
5361
5441
  data: GetExtractCitations200 | undefined;
5362
5442
  error: TError | undefined;
@@ -5388,7 +5468,7 @@ declare const useListExtracts: <TError = ErrorType<ErrorResponse>>(params?: List
5388
5468
  swrKey?: Key;
5389
5469
  enabled?: boolean;
5390
5470
  };
5391
- request?: SecondParameter$8<typeof customFetch>;
5471
+ request?: SecondParameter$9<typeof customFetch>;
5392
5472
  }) => {
5393
5473
  data: ExtractList | undefined;
5394
5474
  error: TError | undefined;
@@ -5398,7 +5478,7 @@ declare const useListExtracts: <TError = ErrorType<ErrorResponse>>(params?: List
5398
5478
  swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
5399
5479
  };
5400
5480
 
5401
- type SecondParameter$7<T extends (...args: never) => unknown> = Parameters<T>[1];
5481
+ type SecondParameter$8<T extends (...args: never) => unknown> = Parameters<T>[1];
5402
5482
  /**
5403
5483
  * Check whether a given email username is available for creating a new inbox.
5404
5484
 
@@ -5418,7 +5498,7 @@ declare const useCheckInboxAvailability: <TError = ErrorType<ErrorResponse>>(par
5418
5498
  swrKey?: Key;
5419
5499
  enabled?: boolean;
5420
5500
  };
5421
- request?: SecondParameter$7<typeof customFetch>;
5501
+ request?: SecondParameter$8<typeof customFetch>;
5422
5502
  }) => {
5423
5503
  data: InboxAvailability | undefined;
5424
5504
  error: TError | undefined;
@@ -5440,7 +5520,7 @@ For compatibility this endpoint is also available using the following (deprecate
5440
5520
  */
5441
5521
  declare const getCreateInboxUrl: () => string;
5442
5522
  declare const createInbox: (createInboxBody: CreateInboxBody, options?: RequestInit) => Promise<Inbox>;
5443
- declare const getCreateInboxMutationFetcher: (options?: SecondParameter$7<typeof customFetch>) => (_: Key, { arg }: {
5523
+ declare const getCreateInboxMutationFetcher: (options?: SecondParameter$8<typeof customFetch>) => (_: Key, { arg }: {
5444
5524
  arg: CreateInboxBody;
5445
5525
  }) => Promise<Inbox>;
5446
5526
  declare const getCreateInboxMutationKey: () => readonly ["/v1/inboxes"];
@@ -5452,7 +5532,7 @@ declare const useCreateInbox: <TError = ErrorType<ErrorResponse>>(options?: {
5452
5532
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof createInbox>>, TError, Key, CreateInboxBody, Awaited<ReturnType<typeof createInbox>>> & {
5453
5533
  swrKey?: string;
5454
5534
  };
5455
- request?: SecondParameter$7<typeof customFetch>;
5535
+ request?: SecondParameter$8<typeof customFetch>;
5456
5536
  }) => {
5457
5537
  isMutating: boolean;
5458
5538
  trigger: swr_mutation.TriggerWithArgs<Inbox, TError, string | readonly ["/v1/inboxes"], CreateInboxBody>;
@@ -5480,7 +5560,7 @@ declare const useListInboxes: <TError = ErrorType<ErrorResponse>>(params?: ListI
5480
5560
  swrKey?: Key;
5481
5561
  enabled?: boolean;
5482
5562
  };
5483
- request?: SecondParameter$7<typeof customFetch>;
5563
+ request?: SecondParameter$8<typeof customFetch>;
5484
5564
  }) => {
5485
5565
  data: InboxList | undefined;
5486
5566
  error: TError | undefined;
@@ -5498,7 +5578,7 @@ For compatibility this endpoint is also available using the following (deprecate
5498
5578
  */
5499
5579
  declare const getUpdateInboxUrl: (inboxId: string) => string;
5500
5580
  declare const updateInbox: (inboxId: string, updateInboxBody: UpdateInboxBody, options?: RequestInit) => Promise<Inbox>;
5501
- declare const getUpdateInboxMutationFetcher: (inboxId: string, options?: SecondParameter$7<typeof customFetch>) => (_: Key, { arg }: {
5581
+ declare const getUpdateInboxMutationFetcher: (inboxId: string, options?: SecondParameter$8<typeof customFetch>) => (_: Key, { arg }: {
5502
5582
  arg: UpdateInboxBody;
5503
5583
  }) => Promise<Inbox>;
5504
5584
  declare const getUpdateInboxMutationKey: (inboxId: string) => readonly [`/v1/inboxes/${string}`];
@@ -5510,7 +5590,7 @@ declare const useUpdateInbox: <TError = ErrorType<ErrorResponse>>(inboxId: strin
5510
5590
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof updateInbox>>, TError, Key, UpdateInboxBody, Awaited<ReturnType<typeof updateInbox>>> & {
5511
5591
  swrKey?: string;
5512
5592
  };
5513
- request?: SecondParameter$7<typeof customFetch>;
5593
+ request?: SecondParameter$8<typeof customFetch>;
5514
5594
  }) => {
5515
5595
  isMutating: boolean;
5516
5596
  trigger: swr_mutation.TriggerWithArgs<Inbox, TError, string | readonly [`/v1/inboxes/${string}`], UpdateInboxBody>;
@@ -5520,7 +5600,7 @@ declare const useUpdateInbox: <TError = ErrorType<ErrorResponse>>(inboxId: strin
5520
5600
  swrKey: string | readonly [`/v1/inboxes/${string}`];
5521
5601
  };
5522
5602
 
5523
- type SecondParameter$6<T extends (...args: never) => unknown> = Parameters<T>[1];
5603
+ type SecondParameter$7<T extends (...args: never) => unknown> = Parameters<T>[1];
5524
5604
  /**
5525
5605
  * Schedule a new outbound call job for a voice agent.
5526
5606
 
@@ -5536,7 +5616,7 @@ For compatibility this endpoint is also available using the following (deprecate
5536
5616
  */
5537
5617
  declare const getScheduleJobUrl: (voiceAgentId: string) => string;
5538
5618
  declare const scheduleJob: (voiceAgentId: string, scheduleJobBody: ScheduleJobBody, options?: RequestInit) => Promise<OutboundJob>;
5539
- declare const getScheduleJobMutationFetcher: (voiceAgentId: string, options?: SecondParameter$6<typeof customFetch>) => (_: Key, { arg }: {
5619
+ declare const getScheduleJobMutationFetcher: (voiceAgentId: string, options?: SecondParameter$7<typeof customFetch>) => (_: Key, { arg }: {
5540
5620
  arg: ScheduleJobBody;
5541
5621
  }) => Promise<OutboundJob>;
5542
5622
  declare const getScheduleJobMutationKey: (voiceAgentId: string) => readonly [`/v1/voice-agents/${string}/jobs`];
@@ -5548,7 +5628,7 @@ declare const useScheduleJob: <TError = ErrorType<ErrorResponse>>(voiceAgentId:
5548
5628
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof scheduleJob>>, TError, Key, ScheduleJobBody, Awaited<ReturnType<typeof scheduleJob>>> & {
5549
5629
  swrKey?: string;
5550
5630
  };
5551
- request?: SecondParameter$6<typeof customFetch>;
5631
+ request?: SecondParameter$7<typeof customFetch>;
5552
5632
  }) => {
5553
5633
  isMutating: boolean;
5554
5634
  trigger: swr_mutation.TriggerWithArgs<OutboundJob, TError, string | readonly [`/v1/voice-agents/${string}/jobs`], ScheduleJobBody>;
@@ -5581,7 +5661,7 @@ declare const useListJobs: <TError = ErrorType<ErrorResponse>>(params: ListJobsP
5581
5661
  swrKey?: Key;
5582
5662
  enabled?: boolean;
5583
5663
  };
5584
- request?: SecondParameter$6<typeof customFetch>;
5664
+ request?: SecondParameter$7<typeof customFetch>;
5585
5665
  }) => {
5586
5666
  data: OutboundJobList | undefined;
5587
5667
  error: TError | undefined;
@@ -5599,7 +5679,7 @@ For compatibility this endpoint is also available using the following (deprecate
5599
5679
  */
5600
5680
  declare const getCancelJobUrl: (jobId: string) => string;
5601
5681
  declare const cancelJob: (jobId: string, options?: RequestInit) => Promise<OutboundJob>;
5602
- declare const getCancelJobMutationFetcher: (jobId: string, options?: SecondParameter$6<typeof customFetch>) => (_: Key, __: {
5682
+ declare const getCancelJobMutationFetcher: (jobId: string, options?: SecondParameter$7<typeof customFetch>) => (_: Key, __: {
5603
5683
  arg: Arguments;
5604
5684
  }) => Promise<OutboundJob>;
5605
5685
  declare const getCancelJobMutationKey: (jobId: string) => readonly [`/v1/voice-agents/jobs/${string}/cancel`];
@@ -5611,7 +5691,7 @@ declare const useCancelJob: <TError = ErrorType<ErrorResponse>>(jobId: string, o
5611
5691
  swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof cancelJob>>, TError, Key, Arguments, Awaited<ReturnType<typeof cancelJob>>> & {
5612
5692
  swrKey?: string;
5613
5693
  };
5614
- request?: SecondParameter$6<typeof customFetch>;
5694
+ request?: SecondParameter$7<typeof customFetch>;
5615
5695
  }) => {
5616
5696
  isMutating: boolean;
5617
5697
  trigger: swr_mutation.TriggerWithOptionsArgs<OutboundJob, TError, string | readonly [`/v1/voice-agents/jobs/${string}/cancel`], Arguments>;
@@ -5621,7 +5701,7 @@ declare const useCancelJob: <TError = ErrorType<ErrorResponse>>(jobId: string, o
5621
5701
  swrKey: string | readonly [`/v1/voice-agents/jobs/${string}/cancel`];
5622
5702
  };
5623
5703
 
5624
- type SecondParameter$5<T extends (...args: never) => unknown> = Parameters<T>[1];
5704
+ type SecondParameter$6<T extends (...args: never) => unknown> = Parameters<T>[1];
5625
5705
  /**
5626
5706
  * Retrieve the current user's profile information. This endpoint requires a user session and cannot be used with API Keys.
5627
5707
  * @summary Get profile
@@ -5638,7 +5718,7 @@ declare const useGetProfile: <TError = ErrorType<ErrorResponse>>(options?: {
5638
5718
  swrKey?: Key;
5639
5719
  enabled?: boolean;
5640
5720
  };
5641
- request?: SecondParameter$5<typeof customFetch>;
5721
+ request?: SecondParameter$6<typeof customFetch>;
5642
5722
  }) => {
5643
5723
  data: Profile | undefined;
5644
5724
  error: TError | undefined;
@@ -5648,6 +5728,87 @@ declare const useGetProfile: <TError = ErrorType<ErrorResponse>>(options?: {
5648
5728
  swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
5649
5729
  };
5650
5730
 
5731
+ type SecondParameter$5<T extends (...args: never) => unknown> = Parameters<T>[1];
5732
+ /**
5733
+ * List all members in the current tenant.
5734
+ * @summary List team members
5735
+ */
5736
+ declare const getListTeamMembersUrl: () => string;
5737
+ declare const listTeamMembers: (options?: RequestInit) => Promise<ListTeamMembersResponse>;
5738
+ declare const getListTeamMembersKey: () => readonly ["/v1/team/members"];
5739
+ type ListTeamMembersQueryResult = NonNullable<Awaited<ReturnType<typeof listTeamMembers>>>;
5740
+ /**
5741
+ * @summary List team members
5742
+ */
5743
+ declare const useListTeamMembers: <TError = ErrorType<ErrorResponse>>(options?: {
5744
+ swr?: SWRConfiguration<Awaited<ReturnType<typeof listTeamMembers>>, TError> & {
5745
+ swrKey?: Key;
5746
+ enabled?: boolean;
5747
+ };
5748
+ request?: SecondParameter$5<typeof customFetch>;
5749
+ }) => {
5750
+ data: ListTeamMembersResponse | undefined;
5751
+ error: TError | undefined;
5752
+ mutate: swr.KeyedMutator<ListTeamMembersResponse>;
5753
+ isValidating: boolean;
5754
+ isLoading: swr__internal.IsLoadingResponse<Data, Config>;
5755
+ swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => Arguments);
5756
+ };
5757
+ /**
5758
+ * Change the role of a team member.
5759
+ * @summary Update member role
5760
+ */
5761
+ declare const getUpdateMemberRoleUrl: (id: string) => string;
5762
+ declare const updateMemberRole: (id: string, updateMemberRoleBody: UpdateMemberRoleBody, options?: RequestInit) => Promise<TeamMember>;
5763
+ declare const getUpdateMemberRoleMutationFetcher: (id: string, options?: SecondParameter$5<typeof customFetch>) => (_: Key, { arg }: {
5764
+ arg: UpdateMemberRoleBody;
5765
+ }) => Promise<TeamMember>;
5766
+ declare const getUpdateMemberRoleMutationKey: (id: string) => readonly [`/v1/team/members/${string}`];
5767
+ type UpdateMemberRoleMutationResult = NonNullable<Awaited<ReturnType<typeof updateMemberRole>>>;
5768
+ /**
5769
+ * @summary Update member role
5770
+ */
5771
+ declare const useUpdateMemberRole: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
5772
+ swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof updateMemberRole>>, TError, Key, UpdateMemberRoleBody, Awaited<ReturnType<typeof updateMemberRole>>> & {
5773
+ swrKey?: string;
5774
+ };
5775
+ request?: SecondParameter$5<typeof customFetch>;
5776
+ }) => {
5777
+ isMutating: boolean;
5778
+ trigger: swr_mutation.TriggerWithArgs<TeamMember, TError, string | readonly [`/v1/team/members/${string}`], UpdateMemberRoleBody>;
5779
+ reset: () => void;
5780
+ data: TeamMember | undefined;
5781
+ error: TError | undefined;
5782
+ swrKey: string | readonly [`/v1/team/members/${string}`];
5783
+ };
5784
+ /**
5785
+ * Soft-delete a team member, revoking access on the next token refresh.
5786
+ * @summary Remove team member
5787
+ */
5788
+ declare const getRemoveMemberUrl: (id: string) => string;
5789
+ declare const removeMember: (id: string, options?: RequestInit) => Promise<RemoveMemberResponse>;
5790
+ declare const getRemoveMemberMutationFetcher: (id: string, options?: SecondParameter$5<typeof customFetch>) => (_: Key, __: {
5791
+ arg: Arguments;
5792
+ }) => Promise<RemoveMemberResponse>;
5793
+ declare const getRemoveMemberMutationKey: (id: string) => readonly [`/v1/team/members/${string}`];
5794
+ type RemoveMemberMutationResult = NonNullable<Awaited<ReturnType<typeof removeMember>>>;
5795
+ /**
5796
+ * @summary Remove team member
5797
+ */
5798
+ declare const useRemoveMember: <TError = ErrorType<ErrorResponse>>(id: string, options?: {
5799
+ swr?: SWRMutationConfiguration<Awaited<ReturnType<typeof removeMember>>, TError, Key, Arguments, Awaited<ReturnType<typeof removeMember>>> & {
5800
+ swrKey?: string;
5801
+ };
5802
+ request?: SecondParameter$5<typeof customFetch>;
5803
+ }) => {
5804
+ isMutating: boolean;
5805
+ trigger: swr_mutation.TriggerWithOptionsArgs<RemoveMemberResponse, TError, string | readonly [`/v1/team/members/${string}`], Arguments>;
5806
+ reset: () => void;
5807
+ data: RemoveMemberResponse | undefined;
5808
+ error: TError | undefined;
5809
+ swrKey: string | readonly [`/v1/team/members/${string}`];
5810
+ };
5811
+
5651
5812
  type SecondParameter$4<T extends (...args: never) => unknown> = Parameters<T>[1];
5652
5813
  /**
5653
5814
  * Create a new code tool that can be attached to agents. Provide the tool's name, code, description, and optionally an API key.
@@ -6641,4 +6802,4 @@ declare const useUpdateWorker: <TError = ErrorType<ErrorResponse>>(workerId: str
6641
6802
  swrKey: string | readonly [`/v1/workers/${string}`];
6642
6803
  };
6643
6804
 
6644
- 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, ArtifactDetailDataStatus, type ArtifactList, type ArtifactMetadata, type ArtifactMetadataKeys, type ArtifactMetadataKeysData, type ArtifactMetadataKeysDataValues, ArtifactStatus, type AuthTokens, type AvallonConfig, AvallonError, type Call, type CallAnalytics, type CallAnalyticsCallsOverTimeItem, type CallAnalyticsDurationDistributionItem, type CallAnalyticsEvaluationOverTimeItem, type CallAnalyticsMetricPerformanceItem, type CallAnalyticsScoreDistributionItem, type CallAnalyticsSummary, type CallDetail, CallDetailDirection, type CallDetailEvaluation, type CallDetailMetadata, CallDirection, type CallEvaluation, type CallEvaluationMetricsItem, type CallEvaluationProperty, type CallList, type CallMessage, type CallMessageMetadata, type CallMessageToolArguments, type CallMessageToolResult, type CallMetadata, type CancelJobMutationResult, type CheckInboxAvailabilityParams, type CheckInboxAvailabilityQueryResult, type ClaimCreated, type ClaimDetail, type ClaimDetailArtifactsItem, type ClaimDetailClaim, type ClaimDetailExtractorJob, type ClaimDetailSourcesItem, type ClaimList, type ClaimListClaimsItem, type CodeTool, type CodeToolCreated, type CodeToolCreatedTool, type CodeToolCreatedToolSchema, type CodeToolSchema, type CodeToolSummary, type CodeToolUpdated, type CodeToolUpdatedTool, type CodeToolUpdatedToolSchema, type ConfirmationResponse, type CreateAgentWebhookBody, type CreateAgentWebhookMutationResult, type CreateApiKeyBody, CreateApiKeyBodyEnvironment, type CreateApiKeyMutationResult, type CreateArtifactBody, type CreateArtifactBodyMetadata, type CreateArtifactBodyProcessingOptions, type CreateArtifactMutationResult, type CreateCallFeedbackMutationResult, type CreateClaimMutationResult, type CreateEmailBody, CreateEmailBodyDirection, type CreateEmailMutationResult, type CreateExtractorBody, type CreateExtractorBodySchema, type CreateExtractorJobBody, type CreateExtractorJobBodyScope, type CreateExtractorJobMutationResult, type CreateExtractorMutationResult, type CreateExtractorWebhookBody, type CreateExtractorWebhookMutationResult, type CreateFeedbackRequest, type CreateInboxBody, CreateInboxBodyProcessorType, type CreateInboxMutationResult, type CreateInboxWebhookBody, type CreateInboxWebhookMutationResult, type CreateToolBody, type CreateToolMutationResult, type CreateVoiceAgentBody, CreateVoiceAgentBodyCallProcessorType, CreateVoiceAgentBodyDirection, CreateVoiceAgentBodyLanguage, CreateVoiceAgentBodyLlmModel, CreateVoiceAgentBodySttModel, CreateVoiceAgentBodyTtsModel, CreateVoiceAgentBodyTtsProvider, type CreateVoiceAgentMutationResult, type CreateVoiceAgentResponse, type CreateWorkerBody, type CreateWorkerBodyEnvVars, type CreateWorkerMutationResult, type CreateWorkerRunBody, type CreateWorkerRunBodyScope, type CreateWorkerRunMutationResult, type CreateWorkerWebhookBody, type CreateWorkerWebhookMutationResult, type DeleteCallFeedbackMutationResult, type DeleteToolsFromVoiceAgentBody, type DeleteToolsFromVoiceAgentMutationResult, type DeleteToolsFromVoiceAgentResponse, type DeleteWebhookMutationResult, type DeleteWebhookResponse, type Email, type EmailCreated, EmailCreatedDirection, type EmailDetail, EmailDetailDirection, EmailDirection, type EmailList, type EmailReplyResult, EmailReplyResultValue, type EmailThread, type EmailThreadList, type EmptyResponse, type ErrorResponse, type ErrorResponseData, type ExecuteCodeBody, type ExecuteCodeBodyParams, type ExecuteCodeMutationResult, type Extract, type ExtractList, type ExtractProcessorScope, type ExtractScope, type ExtractSummary, type ExtractSummaryProcessorScope, type ExtractSummaryScope, type Extractor, type ExtractorCreated, type ExtractorCreatedSchema, type ExtractorJob, type ExtractorJobCreated, type ExtractorJobCreatedScope, type ExtractorJobDetail, type ExtractorJobDetailScope, type ExtractorJobList, type ExtractorJobScope, type ExtractorList, type ExtractorSchema, type ExtractorSummary, type ExtractorUpdated, type ExtractorUpdatedSchema, type ExtractorWebhookList, type Feedback, type GetArtifactMetadataKeysParams, type GetArtifactMetadataKeysQueryResult, type GetArtifactQueryResult, type GetArtifactUploadUrl200, type GetArtifactUploadUrlBody, type GetArtifactUploadUrlMutationResult, type GetCallAnalyticsParams, type GetCallAnalyticsQueryResult, type GetCallEvaluationQueryResult, type GetCallParams, type GetCallQueryResult, type GetClaimDetailQueryResult, type GetEmailQueryResult, type GetExtractCitations200, type GetExtractCitations200Chunks, type GetExtractCitations200ChunksBoundingBox, type GetExtractCitationsQueryResult, type GetExtractQueryResult, type GetExtractorJobQueryResult, type GetExtractorJobResponse, type GetExtractorQueryResult, type GetExtractorResponse, GetOAuthUrlCodeChallengeMethod, type GetOAuthUrlParams, GetOAuthUrlProvider, type GetOAuthUrlQueryResult, type GetProfileQueryResult, type GetSessionToken200, type GetSessionTokenBody, type GetSessionTokenMutationResult, type GetToolQueryResult, type GetToolResponse, type GetVoiceAgentPromptQueryResult, type GetVoiceAgentQueryResult, type GetVoiceAgentResponse, type GetWebhookQueryResult, type GetWorkerQueryResult, type GetWorkerRunQueryResult, type GetWorkerRunResponse, type Inbox, type InboxAvailability, type InboxList, InboxProcessorType, type InboxWebhookList, type ListAgentWebhooksQueryResult, ListApiKeysIncludeRevoked, type ListApiKeysParams, type ListApiKeysQueryResult, type ListArtifactsParams, type ListArtifactsQueryResult, ListArtifactsSortBy, ListArtifactsSortOrder, type ListCallFeedbackParams, type ListCallFeedbackQueryResult, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, type ListCallsParams, type ListCallsQueryResult, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, type ListClaimsParams, type ListClaimsQueryResult, ListClaimsSortBy, ListClaimsSortOrder, type ListEmailThreadsParams, type ListEmailThreadsQueryResult, ListEmailThreadsSortBy, ListEmailThreadsSortOrder, type ListEmailsParams, type ListEmailsQueryResult, ListEmailsSortBy, ListEmailsSortOrder, type ListExtractorJobsParams, type ListExtractorJobsQueryResult, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, type ListExtractorsParams, type ListExtractorsQueryResult, ListExtractorsSortBy, ListExtractorsSortOrder, type ListExtractsParams, type ListExtractsQueryResult, ListExtractsSortBy, ListExtractsSortOrder, type ListInboxWebhooksQueryResult, type ListInboxesParams, type ListInboxesQueryResult, ListInboxesSortBy, ListInboxesSortOrder, type ListJobsParams, type ListJobsQueryResult, ListJobsStatusItem, type 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 ReplyToEmailBody, type ReplyToEmailMutationResult, type RevokeApiKeyMutationResult, type ScheduleJobBody, type ScheduleJobBodyMetadata, type ScheduleJobBodyPayload, type ScheduleJobMutationResult, type SignInBody, type SignInMutationResult, type SignUpBody, type SignUpMutationResult, 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 UpdateToolBody, type UpdateToolMutationResult, type UpdateVoiceAgentBody, UpdateVoiceAgentBodyCallProcessorType, type UpdateVoiceAgentCallControlsResponse, type UpdateVoiceAgentModelsBody, UpdateVoiceAgentModelsBodyLanguage, UpdateVoiceAgentModelsBodyLlmModel, UpdateVoiceAgentModelsBodySttModel, UpdateVoiceAgentModelsBodyTtsModel, UpdateVoiceAgentModelsBodyTtsProvider, type UpdateVoiceAgentModelsMutationResult, type UpdateVoiceAgentModelsResponse, type UpdateVoiceAgentMutationResult, type UpdateVoiceAgentResponse, type UpdateWorkerBody, type UpdateWorkerBodySchema, type UpdateWorkerMutationResult, type UpdateWorkerRunScopeBody, type UpdateWorkerRunScopeBodyScope, type UpdateWorkerRunScopeMutationResult, type UploadFileBody, type UploadFileBodyMetadata, type UploadFileBodyProcessingOptions, type UploadFileMutationResult, type UploadFileResponse, type VoiceAgent, VoiceAgentBackgroundSounds, VoiceAgentDirection, VoiceAgentLanguage, type VoiceAgentList, VoiceAgentLlmModel, type VoiceAgentPrompt, VoiceAgentSttModel, VoiceAgentTtsModel, VoiceAgentTtsProvider, type VoiceAgentWebhookList, type Webhook, type WebhookDelivery, type WebhookDeliveryList, type WebhookScope, type WebhookTestResult, type WorkerCreated, type WorkerCreatedSchema, type WorkerList, type WorkerRun, type WorkerRunCreated, type WorkerRunCreatedScope, type WorkerRunList, type WorkerRunMessage, type WorkerRunMessageList, type WorkerRunMessageMessage, type WorkerRunScope, type WorkerSummary, type WorkerWebhookList, addToolsToVoiceAgent, cancelJob, checkInboxAvailability, configure, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createClaim, createEmail, createExtractor, createExtractorJob, createExtractorWebhook, createInbox, createInboxWebhook, createTool, createVoiceAgent, createWorker, createWorkerRun, createWorkerWebhook, deleteCallFeedback, deleteToolsFromVoiceAgent, deleteWebhook, executeCode, generateCodeChallenge, generateCodeVerifier, getAddToolsToVoiceAgentMutationFetcher, getAddToolsToVoiceAgentMutationKey, getAddToolsToVoiceAgentUrl, getArtifact, getArtifactMetadataKeys, getArtifactUploadUrl, getCall, getCallAnalytics, getCallEvaluation, getCancelJobMutationFetcher, getCancelJobMutationKey, getCancelJobUrl, getCheckInboxAvailabilityKey, getCheckInboxAvailabilityUrl, getClaimDetail, getConfig, getCreateAgentWebhookMutationFetcher, getCreateAgentWebhookMutationKey, getCreateAgentWebhookUrl, getCreateApiKeyMutationFetcher, getCreateApiKeyMutationKey, getCreateApiKeyUrl, getCreateArtifactMutationFetcher, getCreateArtifactMutationKey, getCreateArtifactUrl, getCreateCallFeedbackMutationFetcher, getCreateCallFeedbackMutationKey, getCreateCallFeedbackUrl, getCreateClaimMutationFetcher, getCreateClaimMutationKey, getCreateClaimUrl, getCreateEmailMutationFetcher, getCreateEmailMutationKey, getCreateEmailUrl, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateInboxMutationFetcher, getCreateInboxMutationKey, getCreateInboxUrl, getCreateInboxWebhookMutationFetcher, getCreateInboxWebhookMutationKey, getCreateInboxWebhookUrl, getCreateToolMutationFetcher, getCreateToolMutationKey, getCreateToolUrl, getCreateVoiceAgentMutationFetcher, getCreateVoiceAgentMutationKey, getCreateVoiceAgentUrl, getCreateWorkerMutationFetcher, getCreateWorkerMutationKey, getCreateWorkerRunMutationFetcher, getCreateWorkerRunMutationKey, getCreateWorkerRunUrl, getCreateWorkerUrl, getCreateWorkerWebhookMutationFetcher, getCreateWorkerWebhookMutationKey, getCreateWorkerWebhookUrl, getDeleteCallFeedbackMutationFetcher, getDeleteCallFeedbackMutationKey, getDeleteCallFeedbackUrl, getDeleteToolsFromVoiceAgentMutationFetcher, getDeleteToolsFromVoiceAgentMutationKey, getDeleteToolsFromVoiceAgentUrl, getDeleteWebhookMutationFetcher, getDeleteWebhookMutationKey, getDeleteWebhookUrl, getEmail, getExecuteCodeMutationFetcher, getExecuteCodeMutationKey, getExecuteCodeUrl, getExtract, getExtractCitations, getExtractor, getExtractorJob, getGetArtifactKey, getGetArtifactMetadataKeysKey, getGetArtifactMetadataKeysUrl, getGetArtifactUploadUrlMutationFetcher, getGetArtifactUploadUrlMutationKey, getGetArtifactUploadUrlUrl, getGetArtifactUrl, getGetCallAnalyticsKey, getGetCallAnalyticsUrl, getGetCallEvaluationKey, getGetCallEvaluationUrl, getGetCallKey, getGetCallUrl, getGetClaimDetailKey, getGetClaimDetailUrl, getGetEmailKey, getGetEmailUrl, getGetExtractCitationsKey, getGetExtractCitationsUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetProfileKey, getGetProfileUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetVoiceAgentKey, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, getGetWebhookKey, getGetWebhookUrl, getGetWorkerKey, getGetWorkerRunKey, getGetWorkerRunUrl, getGetWorkerUrl, getListAgentWebhooksKey, getListAgentWebhooksUrl, getListApiKeysKey, getListApiKeysUrl, getListArtifactsKey, getListArtifactsUrl, getListCallFeedbackKey, getListCallFeedbackUrl, getListCallsKey, getListCallsUrl, getListClaimsKey, getListClaimsUrl, getListEmailThreadsKey, getListEmailThreadsUrl, getListEmailsKey, getListEmailsUrl, getListExtractorJobsKey, getListExtractorJobsUrl, getListExtractorsKey, getListExtractorsUrl, getListExtractsKey, getListExtractsUrl, getListInboxWebhooksKey, getListInboxWebhooksUrl, getListInboxesKey, getListInboxesUrl, getListJobsKey, getListJobsUrl, getListToolsKey, getListToolsUrl, getListVoiceAgentsKey, getListVoiceAgentsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getListWorkerRunMessagesKey, getListWorkerRunMessagesUrl, getListWorkerRunsKey, getListWorkerRunsUrl, getListWorkerWebhooksKey, getListWorkerWebhooksUrl, getListWorkersKey, getListWorkersUrl, getOAuthUrl, getProfile, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getReplyToEmailMutationFetcher, getReplyToEmailMutationKey, getReplyToEmailUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSessionToken, getSignInMutationFetcher, getSignInMutationKey, getSignInUrl, getSignUpMutationFetcher, getSignUpMutationKey, getSignUpUrl, getTestWebhookMutationFetcher, getTestWebhookMutationKey, getTestWebhookUrl, getTool, getUpdateArtifactMetadataMutationFetcher, getUpdateArtifactMetadataMutationKey, getUpdateArtifactMetadataUrl, getUpdateCallControlsMutationFetcher, getUpdateCallControlsMutationKey, getUpdateCallControlsUrl, getUpdateExtractorMutationFetcher, getUpdateExtractorMutationKey, getUpdateExtractorUrl, getUpdateInboxMutationFetcher, getUpdateInboxMutationKey, getUpdateInboxUrl, 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, listTools, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerRunMessages, listWorkerRuns, listWorkerWebhooks, listWorkers, refreshToken, replyToEmail, revokeApiKey, scheduleJob, signIn, signUp, testWebhook, updateArtifactMetadata, updateCallControls, updateExtractor, updateInbox, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateWorker, updateWorkerRunScope, uploadFile, useAddToolsToVoiceAgent, useCancelJob, useCheckInboxAvailability, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateClaim, useCreateEmail, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateInbox, useCreateInboxWebhook, useCreateTool, useCreateVoiceAgent, useCreateWorker, useCreateWorkerRun, useCreateWorkerWebhook, useDeleteCallFeedback, useDeleteToolsFromVoiceAgent, useDeleteWebhook, useExecuteCode, useGetArtifact, useGetArtifactMetadataKeys, useGetArtifactUploadUrl, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetClaimDetail, useGetEmail, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetOAuthUrl, useGetProfile, useGetSessionToken, useGetTool, useGetVoiceAgent, useGetVoiceAgentPrompt, useGetWebhook, useGetWorker, useGetWorkerRun, useListAgentWebhooks, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListClaims, useListEmailThreads, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListInboxWebhooks, useListInboxes, useListJobs, useListTools, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerRunMessages, useListWorkerRuns, useListWorkerWebhooks, useListWorkers, useRefreshToken, useReplyToEmail, useRevokeApiKey, useScheduleJob, useSignIn, useSignUp, useTestWebhook, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateExtractor, useUpdateInbox, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateWorker, useUpdateWorkerRunScope, useUploadFile };
6805
+ 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, ArtifactDetailDataStatus, type ArtifactList, type ArtifactMetadata, type ArtifactMetadataKeys, type ArtifactMetadataKeysData, type ArtifactMetadataKeysDataValues, ArtifactStatus, type AuthTokens, type AvallonConfig, AvallonError, type Call, type CallAnalytics, type CallAnalyticsCallsOverTimeItem, type CallAnalyticsDurationDistributionItem, type CallAnalyticsEvaluationOverTimeItem, type CallAnalyticsMetricPerformanceItem, type CallAnalyticsScoreDistributionItem, type CallAnalyticsSummary, type CallDetail, CallDetailDirection, type CallDetailEvaluation, type CallDetailMetadata, CallDirection, type CallEvaluation, type CallEvaluationMetricsItem, type CallEvaluationProperty, type CallList, type CallMessage, type CallMessageMetadata, type CallMessageToolArguments, type CallMessageToolResult, type CallMetadata, type CancelJobMutationResult, type CheckInboxAvailabilityParams, type CheckInboxAvailabilityQueryResult, type ClaimCreated, type ClaimDetail, type ClaimDetailArtifactsItem, type ClaimDetailClaim, type ClaimDetailExtractorJob, type ClaimDetailSourcesItem, type ClaimList, type ClaimListClaimsItem, type CodeTool, type CodeToolCreated, type CodeToolCreatedTool, type CodeToolCreatedToolSchema, type CodeToolSchema, type CodeToolSummary, type CodeToolUpdated, type CodeToolUpdatedTool, type CodeToolUpdatedToolSchema, type ConfirmationResponse, type CreateAgentWebhookBody, type CreateAgentWebhookMutationResult, type CreateApiKeyBody, CreateApiKeyBodyEnvironment, type CreateApiKeyMutationResult, type CreateArtifactBody, type CreateArtifactBodyMetadata, type CreateArtifactBodyProcessingOptions, type CreateArtifactMutationResult, type CreateCallFeedbackMutationResult, type CreateClaimMutationResult, type CreateEmailBody, CreateEmailBodyDirection, type CreateEmailMutationResult, type CreateExtractorBody, type CreateExtractorBodySchema, type CreateExtractorJobBody, type CreateExtractorJobBodyScope, type CreateExtractorJobMutationResult, type CreateExtractorMutationResult, type CreateExtractorWebhookBody, type CreateExtractorWebhookMutationResult, type CreateFeedbackRequest, type CreateInboxBody, CreateInboxBodyProcessorType, type CreateInboxMutationResult, type CreateInboxWebhookBody, type CreateInboxWebhookMutationResult, type CreateToolBody, type CreateToolMutationResult, type CreateVoiceAgentBody, CreateVoiceAgentBodyCallProcessorType, CreateVoiceAgentBodyDirection, CreateVoiceAgentBodyLanguage, CreateVoiceAgentBodyLlmModel, CreateVoiceAgentBodySttModel, CreateVoiceAgentBodyTtsModel, CreateVoiceAgentBodyTtsProvider, type CreateVoiceAgentMutationResult, type CreateVoiceAgentResponse, type CreateWorkerBody, type CreateWorkerBodyEnvVars, type CreateWorkerMutationResult, type CreateWorkerRunBody, type CreateWorkerRunBodyScope, type CreateWorkerRunMutationResult, type CreateWorkerWebhookBody, type CreateWorkerWebhookMutationResult, type DeleteCallFeedbackMutationResult, type DeleteToolsFromVoiceAgentBody, type DeleteToolsFromVoiceAgentMutationResult, type DeleteToolsFromVoiceAgentResponse, type DeleteWebhookMutationResult, type DeleteWebhookResponse, type Email, type EmailCreated, EmailCreatedDirection, type EmailDetail, EmailDetailDirection, EmailDirection, type EmailList, type EmailReplyResult, EmailReplyResultValue, type EmailThread, type EmailThreadList, type EmptyResponse, type ErrorResponse, type ErrorResponseData, type ExecuteCodeBody, type ExecuteCodeBodyParams, type ExecuteCodeMutationResult, type Extract, type ExtractList, type ExtractProcessorScope, type ExtractScope, type ExtractSummary, type ExtractSummaryProcessorScope, type ExtractSummaryScope, type Extractor, type ExtractorCreated, type ExtractorCreatedSchema, type ExtractorJob, type ExtractorJobCreated, type ExtractorJobCreatedScope, type ExtractorJobDetail, type ExtractorJobDetailScope, type ExtractorJobList, type ExtractorJobScope, type ExtractorList, type ExtractorSchema, type ExtractorSummary, type ExtractorUpdated, type ExtractorUpdatedSchema, type ExtractorWebhookList, type Feedback, type GetArtifactMetadataKeysParams, type GetArtifactMetadataKeysQueryResult, type GetArtifactQueryResult, type GetArtifactUploadUrl200, type GetArtifactUploadUrlBody, type GetArtifactUploadUrlMutationResult, type GetCallAnalyticsParams, type GetCallAnalyticsQueryResult, type GetCallEvaluationQueryResult, type GetCallParams, type GetCallQueryResult, type GetClaimDetailQueryResult, type GetEmailQueryResult, type GetExtractCitations200, type GetExtractCitations200Chunks, type GetExtractCitations200ChunksBoundingBox, type GetExtractCitationsQueryResult, type GetExtractQueryResult, type GetExtractorJobQueryResult, type GetExtractorJobResponse, type GetExtractorQueryResult, type GetExtractorResponse, GetOAuthUrlCodeChallengeMethod, type GetOAuthUrlParams, GetOAuthUrlProvider, type GetOAuthUrlQueryResult, type GetProfileQueryResult, type GetSessionToken200, type GetSessionTokenBody, type GetSessionTokenMutationResult, type GetToolQueryResult, type GetToolResponse, type GetVoiceAgentPromptQueryResult, type GetVoiceAgentQueryResult, type GetVoiceAgentResponse, type GetWebhookQueryResult, type GetWorkerQueryResult, type GetWorkerRunQueryResult, type GetWorkerRunResponse, type Inbox, type InboxAvailability, type InboxList, InboxProcessorType, type InboxWebhookList, type ListAgentWebhooksQueryResult, ListApiKeysIncludeRevoked, type ListApiKeysParams, type ListApiKeysQueryResult, type ListArtifactsParams, type ListArtifactsQueryResult, ListArtifactsSortBy, ListArtifactsSortOrder, type ListCallFeedbackParams, type ListCallFeedbackQueryResult, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, type ListCallsParams, type ListCallsQueryResult, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, type ListClaimsParams, type ListClaimsQueryResult, ListClaimsSortBy, ListClaimsSortOrder, type ListEmailThreadsParams, type ListEmailThreadsQueryResult, ListEmailThreadsSortBy, ListEmailThreadsSortOrder, type ListEmailsParams, type ListEmailsQueryResult, ListEmailsSortBy, ListEmailsSortOrder, type ListExtractorJobsParams, type ListExtractorJobsQueryResult, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, type ListExtractorsParams, type ListExtractorsQueryResult, ListExtractorsSortBy, ListExtractorsSortOrder, type ListExtractsParams, type ListExtractsQueryResult, ListExtractsSortBy, ListExtractsSortOrder, type ListInboxWebhooksQueryResult, type ListInboxesParams, type ListInboxesQueryResult, ListInboxesSortBy, ListInboxesSortOrder, type ListJobsParams, type ListJobsQueryResult, ListJobsStatusItem, type ListTeamMembersQueryResult, type ListTeamMembersResponse, type ListToolsParams, type ListToolsQueryResult, ListToolsSortBy, ListToolsSortOrder, type ListVoiceAgentsParams, type ListVoiceAgentsQueryResult, type ListWebhookDeliveriesParams, type ListWebhookDeliveriesQueryResult, ListWebhookDeliveriesSortOrder, type ListWebhooksQueryResult, type ListWorkerRunMessagesParams, type ListWorkerRunMessagesQueryResult, type ListWorkerRunsParams, type ListWorkerRunsQueryResult, ListWorkerRunsSortBy, ListWorkerRunsSortOrder, ListWorkerRunsStatus, type ListWorkerWebhooksQueryResult, type ListWorkersParams, type ListWorkersQueryResult, ListWorkersSortBy, ListWorkersSortOrder, type OAuthUrl, type OutboundJob, type OutboundJobList, type OutboundJobMetadata, type OutboundJobPayload, OutboundJobStatus, type Profile, ProfilePermissionsItem, ProfileRole, type ProfileTenant, type ProfileTenants, type RefreshTokenBody, type RefreshTokenMutationResult, type RemoveMemberMutationResult, type RemoveMemberResponse, type ReplyToEmailBody, type ReplyToEmailMutationResult, type RevokeApiKeyMutationResult, type ScheduleJobBody, type ScheduleJobBodyMetadata, type ScheduleJobBodyPayload, type ScheduleJobMutationResult, type SignInBody, type SignInMutationResult, type SignUpBody, type SignUpMutationResult, type TeamMember, TeamMemberRole, type TestWebhookMutationResult, type ToolExecutionResult, type ToolExecutionResultError, type ToolExecutionResultTracesItem, type ToolList, type UpdateArtifactMetadataBody, type UpdateArtifactMetadataBodyMetadata, type UpdateArtifactMetadataMutationResult, type UpdateCallControlsBody, type UpdateCallControlsMutationResult, type UpdateExtractorBody, type UpdateExtractorBodySchema, type UpdateExtractorMutationResult, type UpdateInboxBody, type UpdateInboxBodyProcessor, UpdateInboxBodyProcessorType, type UpdateInboxMutationResult, type UpdateMemberRoleBody, UpdateMemberRoleBodyRole, type UpdateMemberRoleMutationResult, type UpdateMemberRoleResponse, type UpdateToolBody, type UpdateToolMutationResult, type UpdateVoiceAgentBody, UpdateVoiceAgentBodyCallProcessorType, type UpdateVoiceAgentCallControlsResponse, type UpdateVoiceAgentModelsBody, UpdateVoiceAgentModelsBodyLanguage, UpdateVoiceAgentModelsBodyLlmModel, UpdateVoiceAgentModelsBodySttModel, UpdateVoiceAgentModelsBodyTtsModel, UpdateVoiceAgentModelsBodyTtsProvider, type UpdateVoiceAgentModelsMutationResult, type UpdateVoiceAgentModelsResponse, type UpdateVoiceAgentMutationResult, type UpdateVoiceAgentResponse, type UpdateWorkerBody, type UpdateWorkerBodySchema, type UpdateWorkerMutationResult, type UpdateWorkerRunScopeBody, type UpdateWorkerRunScopeBodyScope, type UpdateWorkerRunScopeMutationResult, type UploadFileBody, type UploadFileBodyMetadata, type UploadFileBodyProcessingOptions, type UploadFileMutationResult, type UploadFileResponse, type VoiceAgent, VoiceAgentBackgroundSounds, VoiceAgentDirection, VoiceAgentLanguage, type VoiceAgentList, VoiceAgentLlmModel, type VoiceAgentPrompt, VoiceAgentSttModel, VoiceAgentTtsModel, VoiceAgentTtsProvider, type VoiceAgentWebhookList, type Webhook, type WebhookDelivery, type WebhookDeliveryList, type WebhookScope, type WebhookTestResult, type WorkerCreated, type WorkerCreatedSchema, type WorkerList, type WorkerRun, type WorkerRunCreated, type WorkerRunCreatedScope, type WorkerRunList, type WorkerRunMessage, type WorkerRunMessageList, type WorkerRunMessageMessage, type WorkerRunScope, type WorkerSummary, type WorkerWebhookList, addToolsToVoiceAgent, cancelJob, checkInboxAvailability, configure, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createClaim, createEmail, createExtractor, createExtractorJob, createExtractorWebhook, createInbox, createInboxWebhook, createTool, createVoiceAgent, createWorker, createWorkerRun, createWorkerWebhook, deleteCallFeedback, deleteToolsFromVoiceAgent, deleteWebhook, executeCode, generateCodeChallenge, generateCodeVerifier, getAddToolsToVoiceAgentMutationFetcher, getAddToolsToVoiceAgentMutationKey, getAddToolsToVoiceAgentUrl, getArtifact, getArtifactMetadataKeys, getArtifactUploadUrl, getCall, getCallAnalytics, getCallEvaluation, getCancelJobMutationFetcher, getCancelJobMutationKey, getCancelJobUrl, getCheckInboxAvailabilityKey, getCheckInboxAvailabilityUrl, getClaimDetail, getConfig, getCreateAgentWebhookMutationFetcher, getCreateAgentWebhookMutationKey, getCreateAgentWebhookUrl, getCreateApiKeyMutationFetcher, getCreateApiKeyMutationKey, getCreateApiKeyUrl, getCreateArtifactMutationFetcher, getCreateArtifactMutationKey, getCreateArtifactUrl, getCreateCallFeedbackMutationFetcher, getCreateCallFeedbackMutationKey, getCreateCallFeedbackUrl, getCreateClaimMutationFetcher, getCreateClaimMutationKey, getCreateClaimUrl, getCreateEmailMutationFetcher, getCreateEmailMutationKey, getCreateEmailUrl, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateInboxMutationFetcher, getCreateInboxMutationKey, getCreateInboxUrl, getCreateInboxWebhookMutationFetcher, getCreateInboxWebhookMutationKey, getCreateInboxWebhookUrl, getCreateToolMutationFetcher, getCreateToolMutationKey, getCreateToolUrl, getCreateVoiceAgentMutationFetcher, getCreateVoiceAgentMutationKey, getCreateVoiceAgentUrl, getCreateWorkerMutationFetcher, getCreateWorkerMutationKey, getCreateWorkerRunMutationFetcher, getCreateWorkerRunMutationKey, getCreateWorkerRunUrl, getCreateWorkerUrl, getCreateWorkerWebhookMutationFetcher, getCreateWorkerWebhookMutationKey, getCreateWorkerWebhookUrl, getDeleteCallFeedbackMutationFetcher, getDeleteCallFeedbackMutationKey, getDeleteCallFeedbackUrl, getDeleteToolsFromVoiceAgentMutationFetcher, getDeleteToolsFromVoiceAgentMutationKey, getDeleteToolsFromVoiceAgentUrl, getDeleteWebhookMutationFetcher, getDeleteWebhookMutationKey, getDeleteWebhookUrl, getEmail, getExecuteCodeMutationFetcher, getExecuteCodeMutationKey, getExecuteCodeUrl, getExtract, getExtractCitations, getExtractor, getExtractorJob, getGetArtifactKey, getGetArtifactMetadataKeysKey, getGetArtifactMetadataKeysUrl, getGetArtifactUploadUrlMutationFetcher, getGetArtifactUploadUrlMutationKey, getGetArtifactUploadUrlUrl, getGetArtifactUrl, getGetCallAnalyticsKey, getGetCallAnalyticsUrl, getGetCallEvaluationKey, getGetCallEvaluationUrl, getGetCallKey, getGetCallUrl, getGetClaimDetailKey, getGetClaimDetailUrl, getGetEmailKey, getGetEmailUrl, getGetExtractCitationsKey, getGetExtractCitationsUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetProfileKey, getGetProfileUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetVoiceAgentKey, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, getGetWebhookKey, getGetWebhookUrl, getGetWorkerKey, getGetWorkerRunKey, getGetWorkerRunUrl, getGetWorkerUrl, getListAgentWebhooksKey, getListAgentWebhooksUrl, getListApiKeysKey, getListApiKeysUrl, getListArtifactsKey, getListArtifactsUrl, getListCallFeedbackKey, getListCallFeedbackUrl, getListCallsKey, getListCallsUrl, getListClaimsKey, getListClaimsUrl, getListEmailThreadsKey, getListEmailThreadsUrl, getListEmailsKey, getListEmailsUrl, getListExtractorJobsKey, getListExtractorJobsUrl, getListExtractorsKey, getListExtractorsUrl, getListExtractsKey, getListExtractsUrl, getListInboxWebhooksKey, getListInboxWebhooksUrl, getListInboxesKey, getListInboxesUrl, getListJobsKey, getListJobsUrl, getListTeamMembersKey, getListTeamMembersUrl, getListToolsKey, getListToolsUrl, getListVoiceAgentsKey, getListVoiceAgentsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getListWorkerRunMessagesKey, getListWorkerRunMessagesUrl, getListWorkerRunsKey, getListWorkerRunsUrl, getListWorkerWebhooksKey, getListWorkerWebhooksUrl, getListWorkersKey, getListWorkersUrl, getOAuthUrl, getProfile, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRemoveMemberMutationFetcher, getRemoveMemberMutationKey, getRemoveMemberUrl, getReplyToEmailMutationFetcher, getReplyToEmailMutationKey, getReplyToEmailUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSessionToken, getSignInMutationFetcher, getSignInMutationKey, getSignInUrl, getSignUpMutationFetcher, getSignUpMutationKey, getSignUpUrl, getTestWebhookMutationFetcher, getTestWebhookMutationKey, getTestWebhookUrl, getTool, getUpdateArtifactMetadataMutationFetcher, getUpdateArtifactMetadataMutationKey, getUpdateArtifactMetadataUrl, getUpdateCallControlsMutationFetcher, getUpdateCallControlsMutationKey, getUpdateCallControlsUrl, getUpdateExtractorMutationFetcher, getUpdateExtractorMutationKey, getUpdateExtractorUrl, getUpdateInboxMutationFetcher, getUpdateInboxMutationKey, getUpdateInboxUrl, getUpdateMemberRoleMutationFetcher, getUpdateMemberRoleMutationKey, getUpdateMemberRoleUrl, getUpdateToolMutationFetcher, getUpdateToolMutationKey, getUpdateToolUrl, getUpdateVoiceAgentModelsMutationFetcher, getUpdateVoiceAgentModelsMutationKey, getUpdateVoiceAgentModelsUrl, getUpdateVoiceAgentMutationFetcher, getUpdateVoiceAgentMutationKey, getUpdateVoiceAgentUrl, getUpdateWorkerMutationFetcher, getUpdateWorkerMutationKey, getUpdateWorkerRunScopeMutationFetcher, getUpdateWorkerRunScopeMutationKey, getUpdateWorkerRunScopeUrl, getUpdateWorkerUrl, getUploadFileMutationFetcher, getUploadFileMutationKey, getUploadFileUrl, getVoiceAgent, getVoiceAgentPrompt, getWebhook, getWorker, getWorkerRun, listAgentWebhooks, listApiKeys, listArtifacts, listCallFeedback, listCalls, listClaims, listEmailThreads, listEmails, listExtractorJobs, listExtractors, listExtracts, listInboxWebhooks, listInboxes, listJobs, listTeamMembers, listTools, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerRunMessages, listWorkerRuns, listWorkerWebhooks, listWorkers, refreshToken, removeMember, replyToEmail, revokeApiKey, scheduleJob, signIn, signUp, testWebhook, updateArtifactMetadata, updateCallControls, updateExtractor, updateInbox, updateMemberRole, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateWorker, updateWorkerRunScope, uploadFile, useAddToolsToVoiceAgent, useCancelJob, useCheckInboxAvailability, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateClaim, useCreateEmail, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateInbox, useCreateInboxWebhook, useCreateTool, useCreateVoiceAgent, useCreateWorker, useCreateWorkerRun, useCreateWorkerWebhook, useDeleteCallFeedback, useDeleteToolsFromVoiceAgent, useDeleteWebhook, useExecuteCode, useGetArtifact, useGetArtifactMetadataKeys, useGetArtifactUploadUrl, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetClaimDetail, useGetEmail, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetOAuthUrl, useGetProfile, useGetSessionToken, useGetTool, useGetVoiceAgent, useGetVoiceAgentPrompt, useGetWebhook, useGetWorker, useGetWorkerRun, useListAgentWebhooks, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListClaims, useListEmailThreads, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListInboxWebhooks, useListInboxes, useListJobs, useListTeamMembers, useListTools, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerRunMessages, useListWorkerRuns, useListWorkerWebhooks, useListWorkers, useRefreshToken, useRemoveMember, useReplyToEmail, useRevokeApiKey, useScheduleJob, useSignIn, useSignUp, useTestWebhook, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateWorker, useUpdateWorkerRunScope, useUploadFile };