@avallon-labs/sdk 23.19.0 → 23.21.0-staging.596

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
@@ -822,6 +822,162 @@ interface CallEvaluation {
822
822
 
823
823
  type CallList = Call[];
824
824
 
825
+ /**
826
+ * Generated by orval v8.1.0 🍺
827
+ * Do not edit manually.
828
+ * Avallon API
829
+ * OpenAPI spec version: 1.0.0
830
+ */
831
+
832
+ type CaseArtifactList = Artifact[];
833
+
834
+ /**
835
+ * Generated by orval v8.1.0 🍺
836
+ * Do not edit manually.
837
+ * Avallon API
838
+ * OpenAPI spec version: 1.0.0
839
+ */
840
+
841
+ interface CaseArtifactsRelation {
842
+ items: Artifact[];
843
+ /**
844
+ * @minimum 0
845
+ * @maximum 9007199254740991
846
+ */
847
+ total: number;
848
+ }
849
+
850
+ /**
851
+ * Generated by orval v8.1.0 🍺
852
+ * Do not edit manually.
853
+ * Avallon API
854
+ * OpenAPI spec version: 1.0.0
855
+ */
856
+ type CaseCallSummaryDirection = (typeof CaseCallSummaryDirection)[keyof typeof CaseCallSummaryDirection];
857
+ declare const CaseCallSummaryDirection: {
858
+ readonly INBOUND: "INBOUND";
859
+ readonly OUTBOUND: "OUTBOUND";
860
+ };
861
+
862
+ /**
863
+ * Generated by orval v8.1.0 🍺
864
+ * Do not edit manually.
865
+ * Avallon API
866
+ * OpenAPI spec version: 1.0.0
867
+ */
868
+ type CaseCallSummaryEvaluation = {
869
+ status: string;
870
+ score: number | null;
871
+ passed: boolean | null;
872
+ } | null;
873
+
874
+ /**
875
+ * Generated by orval v8.1.0 🍺
876
+ * Do not edit manually.
877
+ * Avallon API
878
+ * OpenAPI spec version: 1.0.0
879
+ */
880
+
881
+ interface CaseCallSummary {
882
+ id: string;
883
+ external_call_id: string | null;
884
+ direction: CaseCallSummaryDirection;
885
+ agent_id: string;
886
+ job_id: string | null;
887
+ from_phone_number: string | null;
888
+ to_phone_number: string | null;
889
+ started_at: string;
890
+ ended_at: string;
891
+ duration_seconds: number | null;
892
+ completion_status: string | null;
893
+ ended_reason: string;
894
+ evaluation: CaseCallSummaryEvaluation;
895
+ created_at: string;
896
+ }
897
+
898
+ /**
899
+ * Generated by orval v8.1.0 🍺
900
+ * Do not edit manually.
901
+ * Avallon API
902
+ * OpenAPI spec version: 1.0.0
903
+ */
904
+
905
+ type CaseCallList = CaseCallSummary[];
906
+
907
+ /**
908
+ * Generated by orval v8.1.0 🍺
909
+ * Do not edit manually.
910
+ * Avallon API
911
+ * OpenAPI spec version: 1.0.0
912
+ */
913
+
914
+ interface CaseCallsRelation {
915
+ items: CaseCallSummary[];
916
+ /**
917
+ * @minimum 0
918
+ * @maximum 9007199254740991
919
+ */
920
+ total: number;
921
+ }
922
+
923
+ /**
924
+ * Generated by orval v8.1.0 🍺
925
+ * Do not edit manually.
926
+ * Avallon API
927
+ * OpenAPI spec version: 1.0.0
928
+ */
929
+ type CaseExtractSummaryProcessorScope = {
930
+ [key: string]: unknown;
931
+ };
932
+
933
+ /**
934
+ * Generated by orval v8.1.0 🍺
935
+ * Do not edit manually.
936
+ * Avallon API
937
+ * OpenAPI spec version: 1.0.0
938
+ */
939
+
940
+ interface CaseExtractSummary {
941
+ id: string;
942
+ processor_type: string;
943
+ processor_id: string;
944
+ processor_name: string;
945
+ processor_version: number;
946
+ processor_scope: CaseExtractSummaryProcessorScope;
947
+ worker_run_id: string | null;
948
+ extractor_job_id: string | null;
949
+ /**
950
+ * UTF-8 byte length of JSON.stringify(result).
951
+ * @minimum 0
952
+ * @maximum 9007199254740991
953
+ */
954
+ result_size_bytes: number;
955
+ /**
956
+ * Number of top-level keys on the extract's result object.
957
+ * @minimum 0
958
+ * @maximum 9007199254740991
959
+ */
960
+ result_keys: number;
961
+ has_citations: boolean;
962
+ created_at: string;
963
+ }
964
+
965
+ /**
966
+ * Generated by orval v8.1.0 🍺
967
+ * Do not edit manually.
968
+ * Avallon API
969
+ * OpenAPI spec version: 1.0.0
970
+ */
971
+
972
+ interface CaseExtractsRelation {
973
+ items: CaseExtractSummary[];
974
+ /**
975
+ * @minimum 0
976
+ * @maximum 9007199254740991
977
+ */
978
+ total: number;
979
+ }
980
+
825
981
  /**
826
982
  * Generated by orval v8.1.0 🍺
827
983
  * Do not edit manually.
@@ -849,6 +1005,96 @@ interface CaseSummary {
849
1005
  updated_at: string;
850
1006
  }
851
1007
 
1008
+ /**
1009
+ * Generated by orval v8.1.0 🍺
1010
+ * Do not edit manually.
1011
+ * Avallon API
1012
+ * OpenAPI spec version: 1.0.0
1013
+ */
1014
+ /**
1015
+ * Run scope metadata (e.g. claim_id, email_id)
1016
+ */
1017
+ type WorkerRunScope = {
1018
+ [key: string]: unknown;
1019
+ };
1020
+
1021
+ /**
1022
+ * Generated by orval v8.1.0 🍺
1023
+ * Do not edit manually.
1024
+ * Avallon API
1025
+ * OpenAPI spec version: 1.0.0
1026
+ */
1027
+
1028
+ interface WorkerRun {
1029
+ /** Unique run identifier */
1030
+ id: string;
1031
+ /** ID of the worker */
1032
+ worker_id: string;
1033
+ /**
1034
+ * Version of the worker at run creation time
1035
+ * @minimum -9007199254740991
1036
+ * @maximum 9007199254740991
1037
+ */
1038
+ worker_version: number;
1039
+ /** Name of the worker */
1040
+ worker_name: string;
1041
+ /** Current run status */
1042
+ status: string;
1043
+ /** Run scope metadata (e.g. claim_id, email_id) */
1044
+ scope: WorkerRunScope;
1045
+ /** ISO 8601 timestamp when the run was created */
1046
+ created_at: string;
1047
+ /** ISO 8601 timestamp when processing started */
1048
+ started_at: string | null;
1049
+ /** ISO 8601 timestamp when processing finished */
1050
+ completed_at: string | null;
1051
+ /** Processing duration in milliseconds */
1052
+ processing_duration_ms: number | null;
1053
+ /** Optional extract ID, set only if the worker run created an extract. */
1054
+ extract_id: string | null;
1055
+ error: string | null;
1056
+ }
1057
+
1058
+ /**
1059
+ * Generated by orval v8.1.0 🍺
1060
+ * Do not edit manually.
1061
+ * Avallon API
1062
+ * OpenAPI spec version: 1.0.0
1063
+ */
1064
+
1065
+ interface CaseWorkerRunsRelation {
1066
+ items: WorkerRun[];
1067
+ /**
1068
+ * @minimum 0
1069
+ * @maximum 9007199254740991
1070
+ */
1071
+ total: number;
1072
+ }
1073
+
1074
+ /**
1075
+ * Generated by orval v8.1.0 🍺
1076
+ * Do not edit manually.
1077
+ * Avallon API
1078
+ * OpenAPI spec version: 1.0.0
1079
+ */
1080
+
1081
+ interface CaseDetail {
1082
+ case: CaseSummary;
1083
+ worker_runs: CaseWorkerRunsRelation;
1084
+ extracts: CaseExtractsRelation;
1085
+ artifacts: CaseArtifactsRelation;
1086
+ calls: CaseCallsRelation;
1087
+ }
1088
+
1089
+ /**
1090
+ * Generated by orval v8.1.0 🍺
1091
+ * Do not edit manually.
1092
+ * Avallon API
1093
+ * OpenAPI spec version: 1.0.0
1094
+ */
1095
+
1096
+ type CaseExtractList = CaseExtractSummary[];
1097
+
852
1098
  /**
853
1099
  * Generated by orval v8.1.0 🍺
854
1100
  * Do not edit manually.
@@ -858,6 +1104,15 @@ interface CaseSummary {
858
1104
 
859
1105
  type CaseList = CaseSummary[];
860
1106
 
1107
+ /**
1108
+ * Generated by orval v8.1.0 🍺
1109
+ * Do not edit manually.
1110
+ * Avallon API
1111
+ * OpenAPI spec version: 1.0.0
1112
+ */
1113
+
1114
+ type CaseWorkerRunList = WorkerRun[];
1115
+
861
1116
  /**
862
1117
  * Generated by orval v8.1.0 🍺
863
1118
  * Do not edit manually.
@@ -2654,6 +2909,29 @@ type GetCallParams = {
2654
2909
  include_messages?: string;
2655
2910
  };
2656
2911
 
2912
+ /**
2913
+ * Generated by orval v8.1.0 🍺
2914
+ * Do not edit manually.
2915
+ * Avallon API
2916
+ * OpenAPI spec version: 1.0.0
2917
+ */
2918
+ type GetCaseSortOrder = (typeof GetCaseSortOrder)[keyof typeof GetCaseSortOrder];
2919
+ declare const GetCaseSortOrder: {
2920
+ readonly asc: "asc";
2921
+ readonly desc: "desc";
2922
+ };
2923
+
2924
+ /**
2925
+ * Generated by orval v8.1.0 🍺
2926
+ * Do not edit manually.
2927
+ * Avallon API
2928
+ * OpenAPI spec version: 1.0.0
2929
+ */
2930
+
2931
+ type GetCaseParams = {
2932
+ sort_order?: GetCaseSortOrder;
2933
+ };
2934
+
2657
2935
  /**
2658
2936
  * Generated by orval v8.1.0 🍺
2659
2937
  * Do not edit manually.
@@ -2783,84 +3061,34 @@ type GetSessionTokenBody = {
2783
3061
 
2784
3062
  /**
2785
3063
  * Generated by orval v8.1.0 🍺
2786
- * Do not edit manually.
2787
- * Avallon API
2788
- * OpenAPI spec version: 1.0.0
2789
- */
2790
-
2791
- interface GetToolResponse {
2792
- tool: CodeTool;
2793
- }
2794
-
2795
- /**
2796
- * Generated by orval v8.1.0 🍺
2797
- * Do not edit manually.
2798
- * Avallon API
2799
- * OpenAPI spec version: 1.0.0
2800
- */
2801
- type GetVoiceAgentPromptParams = {
2802
- version?: number;
2803
- };
2804
-
2805
- /**
2806
- * Generated by orval v8.1.0 🍺
2807
- * Do not edit manually.
2808
- * Avallon API
2809
- * OpenAPI spec version: 1.0.0
2810
- */
2811
-
2812
- interface GetVoiceAgentResponse {
2813
- agent: VoiceAgent;
2814
- }
2815
-
2816
- /**
2817
- * Generated by orval v8.1.0 🍺
2818
- * Do not edit manually.
2819
- * Avallon API
2820
- * OpenAPI spec version: 1.0.0
2821
- */
2822
- /**
2823
- * Run scope metadata (e.g. claim_id, email_id)
2824
- */
2825
- type WorkerRunScope = {
2826
- [key: string]: unknown;
2827
- };
2828
-
2829
- /**
2830
- * Generated by orval v8.1.0 🍺
2831
- * Do not edit manually.
2832
- * Avallon API
2833
- * OpenAPI spec version: 1.0.0
2834
- */
2835
-
2836
- interface WorkerRun {
2837
- /** Unique run identifier */
2838
- id: string;
2839
- /** ID of the worker */
2840
- worker_id: string;
2841
- /**
2842
- * Version of the worker at run creation time
2843
- * @minimum -9007199254740991
2844
- * @maximum 9007199254740991
2845
- */
2846
- worker_version: number;
2847
- /** Name of the worker */
2848
- worker_name: string;
2849
- /** Current run status */
2850
- status: string;
2851
- /** Run scope metadata (e.g. claim_id, email_id) */
2852
- scope: WorkerRunScope;
2853
- /** ISO 8601 timestamp when the run was created */
2854
- created_at: string;
2855
- /** ISO 8601 timestamp when processing started */
2856
- started_at: string | null;
2857
- /** ISO 8601 timestamp when processing finished */
2858
- completed_at: string | null;
2859
- /** Processing duration in milliseconds */
2860
- processing_duration_ms: number | null;
2861
- /** Optional extract ID, set only if the worker run created an extract. */
2862
- extract_id: string | null;
2863
- error: string | null;
3064
+ * Do not edit manually.
3065
+ * Avallon API
3066
+ * OpenAPI spec version: 1.0.0
3067
+ */
3068
+
3069
+ interface GetToolResponse {
3070
+ tool: CodeTool;
3071
+ }
3072
+
3073
+ /**
3074
+ * Generated by orval v8.1.0 🍺
3075
+ * Do not edit manually.
3076
+ * Avallon API
3077
+ * OpenAPI spec version: 1.0.0
3078
+ */
3079
+ type GetVoiceAgentPromptParams = {
3080
+ version?: number;
3081
+ };
3082
+
3083
+ /**
3084
+ * Generated by orval v8.1.0 🍺
3085
+ * Do not edit manually.
3086
+ * Avallon API
3087
+ * OpenAPI spec version: 1.0.0
3088
+ */
3089
+
3090
+ interface GetVoiceAgentResponse {
3091
+ agent: VoiceAgent;
2864
3092
  }
2865
3093
 
2866
3094
  /**
@@ -3185,6 +3413,142 @@ type ListCallsParams = {
3185
3413
  phone_number?: string;
3186
3414
  };
3187
3415
 
3416
+ /**
3417
+ * Generated by orval v8.1.0 🍺
3418
+ * Do not edit manually.
3419
+ * Avallon API
3420
+ * OpenAPI spec version: 1.0.0
3421
+ */
3422
+ type ListCaseArtifactsSortBy = (typeof ListCaseArtifactsSortBy)[keyof typeof ListCaseArtifactsSortBy];
3423
+ declare const ListCaseArtifactsSortBy: {
3424
+ readonly created_at: "created_at";
3425
+ readonly updated_at: "updated_at";
3426
+ readonly document_name: "document_name";
3427
+ };
3428
+
3429
+ /**
3430
+ * Generated by orval v8.1.0 🍺
3431
+ * Do not edit manually.
3432
+ * Avallon API
3433
+ * OpenAPI spec version: 1.0.0
3434
+ */
3435
+ type ListCaseArtifactsSortOrder = (typeof ListCaseArtifactsSortOrder)[keyof typeof ListCaseArtifactsSortOrder];
3436
+ declare const ListCaseArtifactsSortOrder: {
3437
+ readonly asc: "asc";
3438
+ readonly desc: "desc";
3439
+ };
3440
+
3441
+ /**
3442
+ * Generated by orval v8.1.0 🍺
3443
+ * Do not edit manually.
3444
+ * Avallon API
3445
+ * OpenAPI spec version: 1.0.0
3446
+ */
3447
+
3448
+ type ListCaseArtifactsParams = {
3449
+ /**
3450
+ * @minimum 1
3451
+ * @maximum 100
3452
+ */
3453
+ count?: number;
3454
+ /**
3455
+ * @minimum 0
3456
+ */
3457
+ offset?: number;
3458
+ sort_by?: ListCaseArtifactsSortBy;
3459
+ sort_order?: ListCaseArtifactsSortOrder;
3460
+ };
3461
+
3462
+ /**
3463
+ * Generated by orval v8.1.0 🍺
3464
+ * Do not edit manually.
3465
+ * Avallon API
3466
+ * OpenAPI spec version: 1.0.0
3467
+ */
3468
+ type ListCaseCallsSortBy = (typeof ListCaseCallsSortBy)[keyof typeof ListCaseCallsSortBy];
3469
+ declare const ListCaseCallsSortBy: {
3470
+ readonly created_at: "created_at";
3471
+ readonly started_at: "started_at";
3472
+ readonly ended_at: "ended_at";
3473
+ };
3474
+
3475
+ /**
3476
+ * Generated by orval v8.1.0 🍺
3477
+ * Do not edit manually.
3478
+ * Avallon API
3479
+ * OpenAPI spec version: 1.0.0
3480
+ */
3481
+ type ListCaseCallsSortOrder = (typeof ListCaseCallsSortOrder)[keyof typeof ListCaseCallsSortOrder];
3482
+ declare const ListCaseCallsSortOrder: {
3483
+ readonly asc: "asc";
3484
+ readonly desc: "desc";
3485
+ };
3486
+
3487
+ /**
3488
+ * Generated by orval v8.1.0 🍺
3489
+ * Do not edit manually.
3490
+ * Avallon API
3491
+ * OpenAPI spec version: 1.0.0
3492
+ */
3493
+
3494
+ type ListCaseCallsParams = {
3495
+ /**
3496
+ * @minimum 1
3497
+ * @maximum 100
3498
+ */
3499
+ count?: number;
3500
+ /**
3501
+ * @minimum 0
3502
+ */
3503
+ offset?: number;
3504
+ sort_by?: ListCaseCallsSortBy;
3505
+ sort_order?: ListCaseCallsSortOrder;
3506
+ };
3507
+
3508
+ /**
3509
+ * Generated by orval v8.1.0 🍺
3510
+ * Do not edit manually.
3511
+ * Avallon API
3512
+ * OpenAPI spec version: 1.0.0
3513
+ */
3514
+ type ListCaseExtractsSortBy = (typeof ListCaseExtractsSortBy)[keyof typeof ListCaseExtractsSortBy];
3515
+ declare const ListCaseExtractsSortBy: {
3516
+ readonly created_at: "created_at";
3517
+ };
3518
+
3519
+ /**
3520
+ * Generated by orval v8.1.0 🍺
3521
+ * Do not edit manually.
3522
+ * Avallon API
3523
+ * OpenAPI spec version: 1.0.0
3524
+ */
3525
+ type ListCaseExtractsSortOrder = (typeof ListCaseExtractsSortOrder)[keyof typeof ListCaseExtractsSortOrder];
3526
+ declare const ListCaseExtractsSortOrder: {
3527
+ readonly asc: "asc";
3528
+ readonly desc: "desc";
3529
+ };
3530
+
3531
+ /**
3532
+ * Generated by orval v8.1.0 🍺
3533
+ * Do not edit manually.
3534
+ * Avallon API
3535
+ * OpenAPI spec version: 1.0.0
3536
+ */
3537
+
3538
+ type ListCaseExtractsParams = {
3539
+ /**
3540
+ * @minimum 1
3541
+ * @maximum 100
3542
+ */
3543
+ count?: number;
3544
+ /**
3545
+ * @minimum 0
3546
+ */
3547
+ offset?: number;
3548
+ sort_by?: ListCaseExtractsSortBy;
3549
+ sort_order?: ListCaseExtractsSortOrder;
3550
+ };
3551
+
3188
3552
  /**
3189
3553
  * Generated by orval v8.1.0 🍺
3190
3554
  * Do not edit manually.
@@ -3230,6 +3594,52 @@ type ListCasesParams = {
3230
3594
  sort_order?: ListCasesSortOrder;
3231
3595
  };
3232
3596
 
3597
+ /**
3598
+ * Generated by orval v8.1.0 🍺
3599
+ * Do not edit manually.
3600
+ * Avallon API
3601
+ * OpenAPI spec version: 1.0.0
3602
+ */
3603
+ type ListCaseWorkerRunsSortBy = (typeof ListCaseWorkerRunsSortBy)[keyof typeof ListCaseWorkerRunsSortBy];
3604
+ declare const ListCaseWorkerRunsSortBy: {
3605
+ readonly created_at: "created_at";
3606
+ readonly started_at: "started_at";
3607
+ readonly completed_at: "completed_at";
3608
+ };
3609
+
3610
+ /**
3611
+ * Generated by orval v8.1.0 🍺
3612
+ * Do not edit manually.
3613
+ * Avallon API
3614
+ * OpenAPI spec version: 1.0.0
3615
+ */
3616
+ type ListCaseWorkerRunsSortOrder = (typeof ListCaseWorkerRunsSortOrder)[keyof typeof ListCaseWorkerRunsSortOrder];
3617
+ declare const ListCaseWorkerRunsSortOrder: {
3618
+ readonly asc: "asc";
3619
+ readonly desc: "desc";
3620
+ };
3621
+
3622
+ /**
3623
+ * Generated by orval v8.1.0 🍺
3624
+ * Do not edit manually.
3625
+ * Avallon API
3626
+ * OpenAPI spec version: 1.0.0
3627
+ */
3628
+
3629
+ type ListCaseWorkerRunsParams = {
3630
+ /**
3631
+ * @minimum 1
3632
+ * @maximum 100
3633
+ */
3634
+ count?: number;
3635
+ /**
3636
+ * @minimum 0
3637
+ */
3638
+ offset?: number;
3639
+ sort_by?: ListCaseWorkerRunsSortBy;
3640
+ sort_order?: ListCaseWorkerRunsSortOrder;
3641
+ };
3642
+
3233
3643
  /**
3234
3644
  * Generated by orval v8.1.0 🍺
3235
3645
  * Do not edit manually.
@@ -6201,6 +6611,149 @@ declare const useListCases: <TError = ErrorType<ErrorResponse>>(params?: ListCas
6201
6611
  isLoading: swr__internal.IsLoadingResponse<Data, Config>;
6202
6612
  swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
6203
6613
  };
6614
+ /**
6615
+ * Retrieve a case along with previews of its related worker runs, extracts, artifacts, and calls.
6616
+
6617
+ Each relation includes up to 20 items sorted by `created_at`. Pass `sort_order=asc` for chronological
6618
+ (timeline) order; defaults to `desc` (most-recent first, what background workers usually want). Use the
6619
+ `/v1/cases/{id}/worker-runs`, `/v1/cases/{id}/extracts`, `/v1/cases/{id}/artifacts`, and
6620
+ `/v1/cases/{id}/calls` endpoints for paginated access to the full lists.
6621
+
6622
+ **Note on extract shape:** the inline extract preview is a slim summary (`result_size_bytes`,
6623
+ `result_keys`, `has_citations` indicators in place of the full `result` and `citations` JSONB
6624
+ blobs). Use `GET /v1/extracts/{id}` to fetch the full extract payload on demand.
6625
+ * @summary Get case
6626
+ */
6627
+ declare const getGetCaseUrl: (id: string, params?: GetCaseParams) => string;
6628
+ declare const getCase: (id: string, params?: GetCaseParams, options?: RequestInit) => Promise<CaseDetail>;
6629
+ declare const getGetCaseKey: (id: string, params?: GetCaseParams) => readonly [`/v1/cases/${string}`, ...GetCaseParams[]];
6630
+ type GetCaseQueryResult = NonNullable<Awaited$h<ReturnType<typeof getCase>>>;
6631
+ /**
6632
+ * @summary Get case
6633
+ */
6634
+ declare const useGetCase: <TError = ErrorType<ErrorResponse>>(id: string, params?: GetCaseParams, options?: {
6635
+ swr?: SWRConfiguration<Awaited$h<ReturnType<typeof getCase>>, TError> & {
6636
+ swrKey?: Key;
6637
+ enabled?: boolean;
6638
+ };
6639
+ request?: SecondParameter$h<typeof customFetch>;
6640
+ }) => {
6641
+ data: CaseDetail | undefined;
6642
+ error: TError | undefined;
6643
+ mutate: swr.KeyedMutator<CaseDetail>;
6644
+ isValidating: boolean;
6645
+ isLoading: swr__internal.IsLoadingResponse<Data, Config>;
6646
+ swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
6647
+ };
6648
+ /**
6649
+ * List worker runs linked to a case. Paginated and sortable.
6650
+ * @summary List worker runs for a case
6651
+ */
6652
+ declare const getListCaseWorkerRunsUrl: (id: string, params?: ListCaseWorkerRunsParams) => string;
6653
+ declare const listCaseWorkerRuns: (id: string, params?: ListCaseWorkerRunsParams, options?: RequestInit) => Promise<CaseWorkerRunList>;
6654
+ declare const getListCaseWorkerRunsKey: (id: string, params?: ListCaseWorkerRunsParams) => readonly [`/v1/cases/${string}/worker-runs`, ...ListCaseWorkerRunsParams[]];
6655
+ type ListCaseWorkerRunsQueryResult = NonNullable<Awaited$h<ReturnType<typeof listCaseWorkerRuns>>>;
6656
+ /**
6657
+ * @summary List worker runs for a case
6658
+ */
6659
+ declare const useListCaseWorkerRuns: <TError = ErrorType<ErrorResponse>>(id: string, params?: ListCaseWorkerRunsParams, options?: {
6660
+ swr?: SWRConfiguration<Awaited$h<ReturnType<typeof listCaseWorkerRuns>>, TError> & {
6661
+ swrKey?: Key;
6662
+ enabled?: boolean;
6663
+ };
6664
+ request?: SecondParameter$h<typeof customFetch>;
6665
+ }) => {
6666
+ data: CaseWorkerRunList | undefined;
6667
+ error: TError | undefined;
6668
+ mutate: swr.KeyedMutator<CaseWorkerRunList>;
6669
+ isValidating: boolean;
6670
+ isLoading: swr__internal.IsLoadingResponse<Data, Config>;
6671
+ swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
6672
+ };
6673
+ /**
6674
+ * List extracts linked to a case. Paginated and sortable.
6675
+ * @summary List extracts for a case
6676
+ */
6677
+ declare const getListCaseExtractsUrl: (id: string, params?: ListCaseExtractsParams) => string;
6678
+ declare const listCaseExtracts: (id: string, params?: ListCaseExtractsParams, options?: RequestInit) => Promise<CaseExtractList>;
6679
+ declare const getListCaseExtractsKey: (id: string, params?: ListCaseExtractsParams) => readonly [`/v1/cases/${string}/extracts`, ...ListCaseExtractsParams[]];
6680
+ type ListCaseExtractsQueryResult = NonNullable<Awaited$h<ReturnType<typeof listCaseExtracts>>>;
6681
+ /**
6682
+ * @summary List extracts for a case
6683
+ */
6684
+ declare const useListCaseExtracts: <TError = ErrorType<ErrorResponse>>(id: string, params?: ListCaseExtractsParams, options?: {
6685
+ swr?: SWRConfiguration<Awaited$h<ReturnType<typeof listCaseExtracts>>, TError> & {
6686
+ swrKey?: Key;
6687
+ enabled?: boolean;
6688
+ };
6689
+ request?: SecondParameter$h<typeof customFetch>;
6690
+ }) => {
6691
+ data: CaseExtractList | undefined;
6692
+ error: TError | undefined;
6693
+ mutate: swr.KeyedMutator<CaseExtractList>;
6694
+ isValidating: boolean;
6695
+ isLoading: swr__internal.IsLoadingResponse<Data, Config>;
6696
+ swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
6697
+ };
6698
+ /**
6699
+ * List artifacts linked to a case. Paginated and sortable.
6700
+
6701
+ Artifacts are matched by `metadata.case_id` — the existing JSONB metadata convention
6702
+ populated for call-flow-derived artifacts. A future migration will move this to a
6703
+ dedicated column.
6704
+ * @summary List artifacts for a case
6705
+ */
6706
+ declare const getListCaseArtifactsUrl: (id: string, params?: ListCaseArtifactsParams) => string;
6707
+ declare const listCaseArtifacts: (id: string, params?: ListCaseArtifactsParams, options?: RequestInit) => Promise<CaseArtifactList>;
6708
+ declare const getListCaseArtifactsKey: (id: string, params?: ListCaseArtifactsParams) => readonly [`/v1/cases/${string}/artifacts`, ...ListCaseArtifactsParams[]];
6709
+ type ListCaseArtifactsQueryResult = NonNullable<Awaited$h<ReturnType<typeof listCaseArtifacts>>>;
6710
+ /**
6711
+ * @summary List artifacts for a case
6712
+ */
6713
+ declare const useListCaseArtifacts: <TError = ErrorType<ErrorResponse>>(id: string, params?: ListCaseArtifactsParams, options?: {
6714
+ swr?: SWRConfiguration<Awaited$h<ReturnType<typeof listCaseArtifacts>>, TError> & {
6715
+ swrKey?: Key;
6716
+ enabled?: boolean;
6717
+ };
6718
+ request?: SecondParameter$h<typeof customFetch>;
6719
+ }) => {
6720
+ data: CaseArtifactList | undefined;
6721
+ error: TError | undefined;
6722
+ mutate: swr.KeyedMutator<CaseArtifactList>;
6723
+ isValidating: boolean;
6724
+ isLoading: swr__internal.IsLoadingResponse<Data, Config>;
6725
+ swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
6726
+ };
6727
+ /**
6728
+ * List calls linked to a case. Paginated and sortable.
6729
+
6730
+ Calls are matched by `metadata.case_id` — the existing JSONB metadata
6731
+ convention. Calls have no dedicated `case_id` column today; a future
6732
+ migration may move this to a column (mirroring the artifact join change
6733
+ planned in PR4).
6734
+ * @summary List calls for a case
6735
+ */
6736
+ declare const getListCaseCallsUrl: (id: string, params?: ListCaseCallsParams) => string;
6737
+ declare const listCaseCalls: (id: string, params?: ListCaseCallsParams, options?: RequestInit) => Promise<CaseCallList>;
6738
+ declare const getListCaseCallsKey: (id: string, params?: ListCaseCallsParams) => readonly [`/v1/cases/${string}/calls`, ...ListCaseCallsParams[]];
6739
+ type ListCaseCallsQueryResult = NonNullable<Awaited$h<ReturnType<typeof listCaseCalls>>>;
6740
+ /**
6741
+ * @summary List calls for a case
6742
+ */
6743
+ declare const useListCaseCalls: <TError = ErrorType<ErrorResponse>>(id: string, params?: ListCaseCallsParams, options?: {
6744
+ swr?: SWRConfiguration<Awaited$h<ReturnType<typeof listCaseCalls>>, TError> & {
6745
+ swrKey?: Key;
6746
+ enabled?: boolean;
6747
+ };
6748
+ request?: SecondParameter$h<typeof customFetch>;
6749
+ }) => {
6750
+ data: CaseCallList | undefined;
6751
+ error: TError | undefined;
6752
+ mutate: swr.KeyedMutator<CaseCallList>;
6753
+ isValidating: boolean;
6754
+ isLoading: swr__internal.IsLoadingResponse<Data, Config>;
6755
+ swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
6756
+ };
6204
6757
 
6205
6758
  type AwaitedInput$g<T> = PromiseLike<T> | T;
6206
6759
  type Awaited$g<O> = O extends AwaitedInput$g<infer T> ? T : never;
@@ -8694,4 +9247,4 @@ declare const useUpdateWorkerPrompt: <TError = ErrorType<ErrorResponse>>(workerI
8694
9247
  swrKey: string | readonly [`/v1/workers/${string}/prompt`];
8695
9248
  };
8696
9249
 
8697
- export { type AddToolsToVoiceAgentBody, type AddToolsToVoiceAgentMutationResult, type AddToolsToVoiceAgentResponse, type ApiKey, type ApiKeyCreated, ApiKeyCreatedRole, type ApiKeyList, ApiKeyRole, 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 CancelWorkerRunMutationResult, type CaseList, type CaseSummary, type CaseSummaryCreatedBy, type ChatAgent, type ChatAgentCreated, type ChatAgentDetail, type ChatAgentList, type ChatAgentPrompt, type ChatAgentPromptUpdated, 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, CreateApiKeyBodyRole, 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 GetChatAgentPromptQueryResult, 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 GetPublicChatAgentQueryResult, type GetSessionToken200, type GetSessionTokenBody, type GetSessionTokenMutationResult, type GetToolQueryResult, type GetToolResponse, type GetVoiceAgentPlaceholdersQueryResult, type GetVoiceAgentPromptParams, type GetVoiceAgentPromptQueryResult, type GetVoiceAgentQueryResult, type GetVoiceAgentResponse, type GetVoiceAgentVersionChangeSummaryQueryResult, type GetVoiceAgentVersionQueryResult, type GetWebhookQueryResult, type GetWorkerPromptQueryResult, type GetWorkerQueryResult, type GetWorkerRunQueryResult, type GetWorkerRunResponse, type GetWorkerToolResponse, 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 ListVoiceAgentVersionsParams, type ListVoiceAgentVersionsQueryResult, ListVoiceAgentVersionsSortBy, ListVoiceAgentVersionsSortOrder, 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 PublicChatAgent, type RefreshTokenBody, type RefreshTokenMutationResult, type RemoveMemberMutationResult, type RemoveMemberResponse, type ReplyToEmailBody, type ReplyToEmailBodyAttachmentsItem, type ReplyToEmailMutationResult, type RevokeApiKeyMutationResult, type ScheduleJobBody, type ScheduleJobBodyMetadata, type ScheduleJobBodyPayload, type ScheduleJobMutationResult, type SendEmailBody, type SendEmailBodyAttachmentsItem, type SendEmailMutationResult, type SignInBody, type SignInMutationResult, type SignUpBody, type SignUpMutationResult, type TeamMember, TeamMemberRole, type TestWebhookMutationResult, type ToolExecutionResult, type ToolExecutionResultError, type ToolExecutionResultTracesItem, type ToolList, type UpdateApiKeyBody, UpdateApiKeyBodyRole, type UpdateApiKeyMutationResult, type UpdateArtifactMetadataBody, type UpdateArtifactMetadataBodyMetadata, type UpdateArtifactMetadataMutationResult, type UpdateCallControlsBody, type UpdateCallControlsMutationResult, type UpdateChatAgentMutationResult, type UpdateChatAgentPromptBody, type UpdateChatAgentPromptMutationResult, 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, VoiceAgentNoiseCancellation, type VoiceAgentPlaceholders, type VoiceAgentPrompt, type VoiceAgentPromptUpdated, VoiceAgentSttModel, VoiceAgentTtsModel, VoiceAgentTtsProvider, type VoiceAgentVersion, type VoiceAgentVersionChangeSummary, type VoiceAgentVersionDetail, VoiceAgentVersionDetailBackgroundSounds, VoiceAgentVersionDetailDirection, VoiceAgentVersionDetailLanguage, VoiceAgentVersionDetailLlmModel, VoiceAgentVersionDetailNoiseCancellation, VoiceAgentVersionDetailSttModel, VoiceAgentVersionDetailTtsModel, VoiceAgentVersionDetailTtsProvider, type VoiceAgentVersionList, type VoiceAgentWebhookList, type Webhook, type WebhookDelivery, type WebhookDeliveryList, type WebhookScope, type WebhookTestResult, type Worker, type WorkerExecuteToolBody, type WorkerExecuteToolBodyParams, type WorkerExecuteToolMutationResult, type WorkerGetToolQueryResult, type WorkerList, type WorkerListToolsQueryResult, 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 WorkerTool, type WorkerToolExecutionResult, type WorkerToolExecutionResultError, type WorkerToolList, type WorkerToolSchema, type WorkerToolSummary, type WorkerWebhookList, addToolsToVoiceAgent, cancelJob, cancelWorkerRun, 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, getCancelWorkerRunMutationFetcher, getCancelWorkerRunMutationKey, getCancelWorkerRunUrl, getChat, getChatAgent, getChatAgentPrompt, 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, getGetChatAgentPromptKey, getGetChatAgentPromptUrl, getGetChatAgentUrl, getGetChatKey, getGetChatUrl, getGetClaimDetailKey, getGetClaimDetailUrl, getGetEmailKey, getGetEmailUrl, getGetExtractCitationsKey, getGetExtractCitationsUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetProfileKey, getGetProfileUrl, getGetPublicChatAgentKey, getGetPublicChatAgentUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetVoiceAgentKey, getGetVoiceAgentPlaceholdersKey, getGetVoiceAgentPlaceholdersUrl, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, getGetVoiceAgentVersionChangeSummaryKey, getGetVoiceAgentVersionChangeSummaryUrl, getGetVoiceAgentVersionKey, getGetVoiceAgentVersionUrl, 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, getListVoiceAgentVersionsKey, getListVoiceAgentVersionsUrl, getListVoiceAgentsKey, getListVoiceAgentsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getListWorkerRunMessagesKey, getListWorkerRunMessagesUrl, getListWorkerRunsKey, getListWorkerRunsUrl, getListWorkerWebhooksKey, getListWorkerWebhooksUrl, getListWorkersKey, getListWorkersUrl, getOAuthUrl, getPostChatMessageMutationFetcher, getPostChatMessageMutationKey, getPostChatMessageUrl, getProfile, getPublicChatAgent, 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, getUpdateApiKeyMutationFetcher, getUpdateApiKeyMutationKey, getUpdateApiKeyUrl, getUpdateArtifactMetadataMutationFetcher, getUpdateArtifactMetadataMutationKey, getUpdateArtifactMetadataUrl, getUpdateCallControlsMutationFetcher, getUpdateCallControlsMutationKey, getUpdateCallControlsUrl, getUpdateChatAgentMutationFetcher, getUpdateChatAgentMutationKey, getUpdateChatAgentPromptMutationFetcher, getUpdateChatAgentPromptMutationKey, getUpdateChatAgentPromptUrl, 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, getVoiceAgentVersion, getVoiceAgentVersionChangeSummary, getWebhook, getWorker, getWorkerExecuteToolMutationFetcher, getWorkerExecuteToolMutationKey, getWorkerExecuteToolUrl, getWorkerGetToolKey, getWorkerGetToolUrl, getWorkerListToolsKey, getWorkerListToolsUrl, getWorkerPrompt, getWorkerRun, listAgentWebhooks, listApiKeys, listArtifacts, listCallFeedback, listCalls, listCases, listChatAgents, listChatMessages, listChats, listClaims, listEmailThreads, listEmails, listExtractorJobs, listExtractors, listExtracts, listInboxWebhooks, listInboxes, listJobs, listTeamMembers, listTools, listVoiceAgentVersions, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerRunMessages, listWorkerRuns, listWorkerWebhooks, listWorkers, postChatMessage, refreshToken, removeMember, replyToEmail, revokeApiKey, scheduleJob, sendEmail, signIn, signUp, testWebhook, updateApiKey, updateArtifactMetadata, updateCallControls, updateChatAgent, updateChatAgentPrompt, updateExtractor, updateInbox, updateMemberRole, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateVoiceAgentPrompt, updateWorker, updateWorkerPrompt, updateWorkerRunScope, uploadFile, useAddToolsToVoiceAgent, useCancelJob, useCancelWorkerRun, 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, useGetChatAgentPrompt, useGetClaimDetail, useGetEmail, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetOAuthUrl, useGetProfile, useGetPublicChatAgent, useGetSessionToken, useGetTool, useGetVoiceAgent, useGetVoiceAgentPlaceholders, useGetVoiceAgentPrompt, useGetVoiceAgentVersion, useGetVoiceAgentVersionChangeSummary, useGetWebhook, useGetWorker, useGetWorkerPrompt, useGetWorkerRun, useListAgentWebhooks, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListCases, useListChatAgents, useListChatMessages, useListChats, useListClaims, useListEmailThreads, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListInboxWebhooks, useListInboxes, useListJobs, useListTeamMembers, useListTools, useListVoiceAgentVersions, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerRunMessages, useListWorkerRuns, useListWorkerWebhooks, useListWorkers, usePostChatMessage, useRefreshToken, useRemoveMember, useReplyToEmail, useRevokeApiKey, useScheduleJob, useSendEmail, useSignIn, useSignUp, useTestWebhook, useUpdateApiKey, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateChatAgent, useUpdateChatAgentPrompt, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateVoiceAgentPrompt, useUpdateWorker, useUpdateWorkerPrompt, useUpdateWorkerRunScope, useUploadFile, useWorkerExecuteTool, useWorkerGetTool, useWorkerListTools, workerExecuteTool, workerGetTool, workerListTools };
9250
+ export { type AddToolsToVoiceAgentBody, type AddToolsToVoiceAgentMutationResult, type AddToolsToVoiceAgentResponse, type ApiKey, type ApiKeyCreated, ApiKeyCreatedRole, type ApiKeyList, ApiKeyRole, 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 CancelWorkerRunMutationResult, type CaseArtifactList, type CaseArtifactsRelation, type CaseCallList, type CaseCallSummary, CaseCallSummaryDirection, type CaseCallSummaryEvaluation, type CaseCallsRelation, type CaseDetail, type CaseExtractList, type CaseExtractSummary, type CaseExtractSummaryProcessorScope, type CaseExtractsRelation, type CaseList, type CaseSummary, type CaseSummaryCreatedBy, type CaseWorkerRunList, type CaseWorkerRunsRelation, type ChatAgent, type ChatAgentCreated, type ChatAgentDetail, type ChatAgentList, type ChatAgentPrompt, type ChatAgentPromptUpdated, 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, CreateApiKeyBodyRole, 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 GetCaseParams, type GetCaseQueryResult, GetCaseSortOrder, type GetChatAgentPromptQueryResult, 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 GetPublicChatAgentQueryResult, type GetSessionToken200, type GetSessionTokenBody, type GetSessionTokenMutationResult, type GetToolQueryResult, type GetToolResponse, type GetVoiceAgentPlaceholdersQueryResult, type GetVoiceAgentPromptParams, type GetVoiceAgentPromptQueryResult, type GetVoiceAgentQueryResult, type GetVoiceAgentResponse, type GetVoiceAgentVersionChangeSummaryQueryResult, type GetVoiceAgentVersionQueryResult, type GetWebhookQueryResult, type GetWorkerPromptQueryResult, type GetWorkerQueryResult, type GetWorkerRunQueryResult, type GetWorkerRunResponse, type GetWorkerToolResponse, 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 ListCaseArtifactsParams, type ListCaseArtifactsQueryResult, ListCaseArtifactsSortBy, ListCaseArtifactsSortOrder, type ListCaseCallsParams, type ListCaseCallsQueryResult, ListCaseCallsSortBy, ListCaseCallsSortOrder, type ListCaseExtractsParams, type ListCaseExtractsQueryResult, ListCaseExtractsSortBy, ListCaseExtractsSortOrder, type ListCaseWorkerRunsParams, type ListCaseWorkerRunsQueryResult, ListCaseWorkerRunsSortBy, ListCaseWorkerRunsSortOrder, 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 ListVoiceAgentVersionsParams, type ListVoiceAgentVersionsQueryResult, ListVoiceAgentVersionsSortBy, ListVoiceAgentVersionsSortOrder, 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 PublicChatAgent, type RefreshTokenBody, type RefreshTokenMutationResult, type RemoveMemberMutationResult, type RemoveMemberResponse, type ReplyToEmailBody, type ReplyToEmailBodyAttachmentsItem, type ReplyToEmailMutationResult, type RevokeApiKeyMutationResult, type ScheduleJobBody, type ScheduleJobBodyMetadata, type ScheduleJobBodyPayload, type ScheduleJobMutationResult, type SendEmailBody, type SendEmailBodyAttachmentsItem, type SendEmailMutationResult, type SignInBody, type SignInMutationResult, type SignUpBody, type SignUpMutationResult, type TeamMember, TeamMemberRole, type TestWebhookMutationResult, type ToolExecutionResult, type ToolExecutionResultError, type ToolExecutionResultTracesItem, type ToolList, type UpdateApiKeyBody, UpdateApiKeyBodyRole, type UpdateApiKeyMutationResult, type UpdateArtifactMetadataBody, type UpdateArtifactMetadataBodyMetadata, type UpdateArtifactMetadataMutationResult, type UpdateCallControlsBody, type UpdateCallControlsMutationResult, type UpdateChatAgentMutationResult, type UpdateChatAgentPromptBody, type UpdateChatAgentPromptMutationResult, 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, VoiceAgentNoiseCancellation, type VoiceAgentPlaceholders, type VoiceAgentPrompt, type VoiceAgentPromptUpdated, VoiceAgentSttModel, VoiceAgentTtsModel, VoiceAgentTtsProvider, type VoiceAgentVersion, type VoiceAgentVersionChangeSummary, type VoiceAgentVersionDetail, VoiceAgentVersionDetailBackgroundSounds, VoiceAgentVersionDetailDirection, VoiceAgentVersionDetailLanguage, VoiceAgentVersionDetailLlmModel, VoiceAgentVersionDetailNoiseCancellation, VoiceAgentVersionDetailSttModel, VoiceAgentVersionDetailTtsModel, VoiceAgentVersionDetailTtsProvider, type VoiceAgentVersionList, type VoiceAgentWebhookList, type Webhook, type WebhookDelivery, type WebhookDeliveryList, type WebhookScope, type WebhookTestResult, type Worker, type WorkerExecuteToolBody, type WorkerExecuteToolBodyParams, type WorkerExecuteToolMutationResult, type WorkerGetToolQueryResult, type WorkerList, type WorkerListToolsQueryResult, 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 WorkerTool, type WorkerToolExecutionResult, type WorkerToolExecutionResultError, type WorkerToolList, type WorkerToolSchema, type WorkerToolSummary, type WorkerWebhookList, addToolsToVoiceAgent, cancelJob, cancelWorkerRun, 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, getCancelWorkerRunMutationFetcher, getCancelWorkerRunMutationKey, getCancelWorkerRunUrl, getCase, getChat, getChatAgent, getChatAgentPrompt, 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, getGetCaseKey, getGetCaseUrl, getGetChatAgentKey, getGetChatAgentPromptKey, getGetChatAgentPromptUrl, getGetChatAgentUrl, getGetChatKey, getGetChatUrl, getGetClaimDetailKey, getGetClaimDetailUrl, getGetEmailKey, getGetEmailUrl, getGetExtractCitationsKey, getGetExtractCitationsUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetProfileKey, getGetProfileUrl, getGetPublicChatAgentKey, getGetPublicChatAgentUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetToolKey, getGetToolUrl, getGetVoiceAgentKey, getGetVoiceAgentPlaceholdersKey, getGetVoiceAgentPlaceholdersUrl, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, getGetVoiceAgentVersionChangeSummaryKey, getGetVoiceAgentVersionChangeSummaryUrl, getGetVoiceAgentVersionKey, getGetVoiceAgentVersionUrl, getGetWebhookKey, getGetWebhookUrl, getGetWorkerKey, getGetWorkerPromptKey, getGetWorkerPromptUrl, getGetWorkerRunKey, getGetWorkerRunUrl, getGetWorkerUrl, getListAgentWebhooksKey, getListAgentWebhooksUrl, getListApiKeysKey, getListApiKeysUrl, getListArtifactsKey, getListArtifactsUrl, getListCallFeedbackKey, getListCallFeedbackUrl, getListCallsKey, getListCallsUrl, getListCaseArtifactsKey, getListCaseArtifactsUrl, getListCaseCallsKey, getListCaseCallsUrl, getListCaseExtractsKey, getListCaseExtractsUrl, getListCaseWorkerRunsKey, getListCaseWorkerRunsUrl, 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, getListVoiceAgentVersionsKey, getListVoiceAgentVersionsUrl, getListVoiceAgentsKey, getListVoiceAgentsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getListWorkerRunMessagesKey, getListWorkerRunMessagesUrl, getListWorkerRunsKey, getListWorkerRunsUrl, getListWorkerWebhooksKey, getListWorkerWebhooksUrl, getListWorkersKey, getListWorkersUrl, getOAuthUrl, getPostChatMessageMutationFetcher, getPostChatMessageMutationKey, getPostChatMessageUrl, getProfile, getPublicChatAgent, 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, getUpdateApiKeyMutationFetcher, getUpdateApiKeyMutationKey, getUpdateApiKeyUrl, getUpdateArtifactMetadataMutationFetcher, getUpdateArtifactMetadataMutationKey, getUpdateArtifactMetadataUrl, getUpdateCallControlsMutationFetcher, getUpdateCallControlsMutationKey, getUpdateCallControlsUrl, getUpdateChatAgentMutationFetcher, getUpdateChatAgentMutationKey, getUpdateChatAgentPromptMutationFetcher, getUpdateChatAgentPromptMutationKey, getUpdateChatAgentPromptUrl, 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, getVoiceAgentVersion, getVoiceAgentVersionChangeSummary, getWebhook, getWorker, getWorkerExecuteToolMutationFetcher, getWorkerExecuteToolMutationKey, getWorkerExecuteToolUrl, getWorkerGetToolKey, getWorkerGetToolUrl, getWorkerListToolsKey, getWorkerListToolsUrl, getWorkerPrompt, getWorkerRun, listAgentWebhooks, listApiKeys, listArtifacts, listCallFeedback, listCalls, listCaseArtifacts, listCaseCalls, listCaseExtracts, listCaseWorkerRuns, listCases, listChatAgents, listChatMessages, listChats, listClaims, listEmailThreads, listEmails, listExtractorJobs, listExtractors, listExtracts, listInboxWebhooks, listInboxes, listJobs, listTeamMembers, listTools, listVoiceAgentVersions, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerRunMessages, listWorkerRuns, listWorkerWebhooks, listWorkers, postChatMessage, refreshToken, removeMember, replyToEmail, revokeApiKey, scheduleJob, sendEmail, signIn, signUp, testWebhook, updateApiKey, updateArtifactMetadata, updateCallControls, updateChatAgent, updateChatAgentPrompt, updateExtractor, updateInbox, updateMemberRole, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateVoiceAgentPrompt, updateWorker, updateWorkerPrompt, updateWorkerRunScope, uploadFile, useAddToolsToVoiceAgent, useCancelJob, useCancelWorkerRun, 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, useGetCase, useGetChat, useGetChatAgent, useGetChatAgentPrompt, useGetClaimDetail, useGetEmail, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetOAuthUrl, useGetProfile, useGetPublicChatAgent, useGetSessionToken, useGetTool, useGetVoiceAgent, useGetVoiceAgentPlaceholders, useGetVoiceAgentPrompt, useGetVoiceAgentVersion, useGetVoiceAgentVersionChangeSummary, useGetWebhook, useGetWorker, useGetWorkerPrompt, useGetWorkerRun, useListAgentWebhooks, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListCaseArtifacts, useListCaseCalls, useListCaseExtracts, useListCaseWorkerRuns, useListCases, useListChatAgents, useListChatMessages, useListChats, useListClaims, useListEmailThreads, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListInboxWebhooks, useListInboxes, useListJobs, useListTeamMembers, useListTools, useListVoiceAgentVersions, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerRunMessages, useListWorkerRuns, useListWorkerWebhooks, useListWorkers, usePostChatMessage, useRefreshToken, useRemoveMember, useReplyToEmail, useRevokeApiKey, useScheduleJob, useSendEmail, useSignIn, useSignUp, useTestWebhook, useUpdateApiKey, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateChatAgent, useUpdateChatAgentPrompt, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateVoiceAgentPrompt, useUpdateWorker, useUpdateWorkerPrompt, useUpdateWorkerRunScope, useUploadFile, useWorkerExecuteTool, useWorkerGetTool, useWorkerListTools, workerExecuteTool, workerGetTool, workerListTools };