@avallon-labs/sdk 51.3.0-staging.1139 → 51.4.0

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
@@ -2293,9 +2293,9 @@ type CreateEvalBenchmarkEnvelopeData = {
2293
2293
  status: CreateEvalBenchmarkEnvelopeDataStatus;
2294
2294
  run_summary: CreateEvalBenchmarkEnvelopeDataRunSummary;
2295
2295
  notes: string[] | null;
2296
- runs: CreateEvalBenchmarkEnvelopeDataRunsItem[];
2297
2296
  created_at: string;
2298
2297
  completed_at: string | null;
2298
+ runs: CreateEvalBenchmarkEnvelopeDataRunsItem[];
2299
2299
  };
2300
2300
 
2301
2301
  /**
@@ -3554,6 +3554,236 @@ interface CreateVoiceAgentEnvelope {
3554
3554
  message: string;
3555
3555
  }
3556
3556
 
3557
+ /**
3558
+ * Generated by orval 🍺
3559
+ * Do not edit manually.
3560
+ * Avallon API
3561
+ * OpenAPI spec version: 1.0.0
3562
+ */
3563
+ type CreateWorkerBenchmarksBody = {
3564
+ /**
3565
+ * @minimum 1
3566
+ * @maximum 9007199254740991
3567
+ */
3568
+ candidate_version: number;
3569
+ /**
3570
+ * @minimum 1
3571
+ * @maximum 9007199254740991
3572
+ */
3573
+ baseline_version: number;
3574
+ /**
3575
+ * @minimum 1
3576
+ * @maximum 5
3577
+ */
3578
+ runs_per_configuration?: number;
3579
+ };
3580
+
3581
+ /**
3582
+ * Generated by orval 🍺
3583
+ * Do not edit manually.
3584
+ * Avallon API
3585
+ * OpenAPI spec version: 1.0.0
3586
+ */
3587
+ type CreateWorkerBenchmarksEnvelopeDataItemRunSummaryBaselineDurationSeconds = {
3588
+ mean: number;
3589
+ stddev: number;
3590
+ min: number;
3591
+ max: number;
3592
+ } | null;
3593
+
3594
+ /**
3595
+ * Generated by orval 🍺
3596
+ * Do not edit manually.
3597
+ * Avallon API
3598
+ * OpenAPI spec version: 1.0.0
3599
+ */
3600
+ type CreateWorkerBenchmarksEnvelopeDataItemRunSummaryBaselineFixtureMatchedRate = {
3601
+ mean: number;
3602
+ stddev: number;
3603
+ min: number;
3604
+ max: number;
3605
+ } | null;
3606
+
3607
+ /**
3608
+ * Generated by orval 🍺
3609
+ * Do not edit manually.
3610
+ * Avallon API
3611
+ * OpenAPI spec version: 1.0.0
3612
+ */
3613
+ type CreateWorkerBenchmarksEnvelopeDataItemRunSummaryBaselinePassRate = {
3614
+ mean: number;
3615
+ stddev: number;
3616
+ min: number;
3617
+ max: number;
3618
+ } | null;
3619
+
3620
+ /**
3621
+ * Generated by orval 🍺
3622
+ * Do not edit manually.
3623
+ * Avallon API
3624
+ * OpenAPI spec version: 1.0.0
3625
+ */
3626
+
3627
+ type CreateWorkerBenchmarksEnvelopeDataItemRunSummaryBaseline = {
3628
+ /**
3629
+ * @minimum -9007199254740991
3630
+ * @maximum 9007199254740991
3631
+ */
3632
+ runs: number;
3633
+ /**
3634
+ * @minimum -9007199254740991
3635
+ * @maximum 9007199254740991
3636
+ */
3637
+ graded_runs: number;
3638
+ pass_rate: CreateWorkerBenchmarksEnvelopeDataItemRunSummaryBaselinePassRate;
3639
+ duration_seconds: CreateWorkerBenchmarksEnvelopeDataItemRunSummaryBaselineDurationSeconds;
3640
+ fixture_matched_rate: CreateWorkerBenchmarksEnvelopeDataItemRunSummaryBaselineFixtureMatchedRate;
3641
+ };
3642
+
3643
+ /**
3644
+ * Generated by orval 🍺
3645
+ * Do not edit manually.
3646
+ * Avallon API
3647
+ * OpenAPI spec version: 1.0.0
3648
+ */
3649
+ type CreateWorkerBenchmarksEnvelopeDataItemRunSummaryCandidateDurationSeconds = {
3650
+ mean: number;
3651
+ stddev: number;
3652
+ min: number;
3653
+ max: number;
3654
+ } | null;
3655
+
3656
+ /**
3657
+ * Generated by orval 🍺
3658
+ * Do not edit manually.
3659
+ * Avallon API
3660
+ * OpenAPI spec version: 1.0.0
3661
+ */
3662
+ type CreateWorkerBenchmarksEnvelopeDataItemRunSummaryCandidateFixtureMatchedRate = {
3663
+ mean: number;
3664
+ stddev: number;
3665
+ min: number;
3666
+ max: number;
3667
+ } | null;
3668
+
3669
+ /**
3670
+ * Generated by orval 🍺
3671
+ * Do not edit manually.
3672
+ * Avallon API
3673
+ * OpenAPI spec version: 1.0.0
3674
+ */
3675
+ type CreateWorkerBenchmarksEnvelopeDataItemRunSummaryCandidatePassRate = {
3676
+ mean: number;
3677
+ stddev: number;
3678
+ min: number;
3679
+ max: number;
3680
+ } | null;
3681
+
3682
+ /**
3683
+ * Generated by orval 🍺
3684
+ * Do not edit manually.
3685
+ * Avallon API
3686
+ * OpenAPI spec version: 1.0.0
3687
+ */
3688
+
3689
+ type CreateWorkerBenchmarksEnvelopeDataItemRunSummaryCandidate = {
3690
+ /**
3691
+ * @minimum -9007199254740991
3692
+ * @maximum 9007199254740991
3693
+ */
3694
+ runs: number;
3695
+ /**
3696
+ * @minimum -9007199254740991
3697
+ * @maximum 9007199254740991
3698
+ */
3699
+ graded_runs: number;
3700
+ pass_rate: CreateWorkerBenchmarksEnvelopeDataItemRunSummaryCandidatePassRate;
3701
+ duration_seconds: CreateWorkerBenchmarksEnvelopeDataItemRunSummaryCandidateDurationSeconds;
3702
+ fixture_matched_rate: CreateWorkerBenchmarksEnvelopeDataItemRunSummaryCandidateFixtureMatchedRate;
3703
+ };
3704
+
3705
+ /**
3706
+ * Generated by orval 🍺
3707
+ * Do not edit manually.
3708
+ * Avallon API
3709
+ * OpenAPI spec version: 1.0.0
3710
+ */
3711
+ type CreateWorkerBenchmarksEnvelopeDataItemRunSummaryDelta = {
3712
+ pass_rate: number | null;
3713
+ duration_seconds: number | null;
3714
+ fixture_matched_rate: number | null;
3715
+ };
3716
+
3717
+ /**
3718
+ * Generated by orval 🍺
3719
+ * Do not edit manually.
3720
+ * Avallon API
3721
+ * OpenAPI spec version: 1.0.0
3722
+ */
3723
+
3724
+ type CreateWorkerBenchmarksEnvelopeDataItemRunSummary = {
3725
+ candidate: CreateWorkerBenchmarksEnvelopeDataItemRunSummaryCandidate;
3726
+ baseline: CreateWorkerBenchmarksEnvelopeDataItemRunSummaryBaseline;
3727
+ delta: CreateWorkerBenchmarksEnvelopeDataItemRunSummaryDelta;
3728
+ } | null;
3729
+
3730
+ /**
3731
+ * Generated by orval 🍺
3732
+ * Do not edit manually.
3733
+ * Avallon API
3734
+ * OpenAPI spec version: 1.0.0
3735
+ */
3736
+ type CreateWorkerBenchmarksEnvelopeDataItemStatus = (typeof CreateWorkerBenchmarksEnvelopeDataItemStatus)[keyof typeof CreateWorkerBenchmarksEnvelopeDataItemStatus];
3737
+ declare const CreateWorkerBenchmarksEnvelopeDataItemStatus: {
3738
+ readonly running: "running";
3739
+ readonly completed: "completed";
3740
+ readonly error: "error";
3741
+ };
3742
+
3743
+ /**
3744
+ * Generated by orval 🍺
3745
+ * Do not edit manually.
3746
+ * Avallon API
3747
+ * OpenAPI spec version: 1.0.0
3748
+ */
3749
+
3750
+ type CreateWorkerBenchmarksEnvelopeDataItem = {
3751
+ id: string;
3752
+ eval_id: string;
3753
+ /**
3754
+ * @minimum -9007199254740991
3755
+ * @maximum 9007199254740991
3756
+ */
3757
+ candidate_version: number;
3758
+ /**
3759
+ * @minimum -9007199254740991
3760
+ * @maximum 9007199254740991
3761
+ */
3762
+ baseline_version: number;
3763
+ /**
3764
+ * @minimum -9007199254740991
3765
+ * @maximum 9007199254740991
3766
+ */
3767
+ runs_per_configuration: number;
3768
+ status: CreateWorkerBenchmarksEnvelopeDataItemStatus;
3769
+ run_summary: CreateWorkerBenchmarksEnvelopeDataItemRunSummary;
3770
+ notes: string[] | null;
3771
+ created_at: string;
3772
+ completed_at: string | null;
3773
+ };
3774
+
3775
+ /**
3776
+ * Generated by orval 🍺
3777
+ * Do not edit manually.
3778
+ * Avallon API
3779
+ * OpenAPI spec version: 1.0.0
3780
+ */
3781
+
3782
+ interface CreateWorkerBenchmarksEnvelope {
3783
+ data: CreateWorkerBenchmarksEnvelopeDataItem[];
3784
+ message: string;
3785
+ }
3786
+
3557
3787
  /**
3558
3788
  * Generated by orval 🍺
3559
3789
  * Do not edit manually.
@@ -5561,9 +5791,9 @@ type GetBenchmarkEnvelopeData = {
5561
5791
  status: GetBenchmarkEnvelopeDataStatus;
5562
5792
  run_summary: GetBenchmarkEnvelopeDataRunSummary;
5563
5793
  notes: string[] | null;
5564
- runs: GetBenchmarkEnvelopeDataRunsItem[];
5565
5794
  created_at: string;
5566
5795
  completed_at: string | null;
5796
+ runs: GetBenchmarkEnvelopeDataRunsItem[];
5567
5797
  };
5568
5798
 
5569
5799
  /**
@@ -8422,14 +8652,12 @@ type ListEmailThreadsParams = {
8422
8652
  * Avallon API
8423
8653
  * OpenAPI spec version: 1.0.0
8424
8654
  */
8425
- type ListExtractorJobsEnvelopeMeta = {
8426
- /**
8427
- * Total number of matching jobs
8428
- * @minimum -9007199254740991
8429
- * @maximum 9007199254740991
8430
- */
8431
- total: number;
8432
- };
8655
+ type ListEvalBenchmarksEnvelopeDataItemRunSummaryBaselineDurationSeconds = {
8656
+ mean: number;
8657
+ stddev: number;
8658
+ min: number;
8659
+ max: number;
8660
+ } | null;
8433
8661
 
8434
8662
  /**
8435
8663
  * Generated by orval 🍺
@@ -8437,12 +8665,12 @@ type ListExtractorJobsEnvelopeMeta = {
8437
8665
  * Avallon API
8438
8666
  * OpenAPI spec version: 1.0.0
8439
8667
  */
8440
-
8441
- interface ListExtractorJobsEnvelope {
8442
- data: ExtractorJobList;
8443
- message: string;
8444
- meta: ListExtractorJobsEnvelopeMeta;
8445
- }
8668
+ type ListEvalBenchmarksEnvelopeDataItemRunSummaryBaselineFixtureMatchedRate = {
8669
+ mean: number;
8670
+ stddev: number;
8671
+ min: number;
8672
+ max: number;
8673
+ } | null;
8446
8674
 
8447
8675
  /**
8448
8676
  * Generated by orval 🍺
@@ -8450,12 +8678,12 @@ interface ListExtractorJobsEnvelope {
8450
8678
  * Avallon API
8451
8679
  * OpenAPI spec version: 1.0.0
8452
8680
  */
8453
- type ListExtractorJobsSortBy = (typeof ListExtractorJobsSortBy)[keyof typeof ListExtractorJobsSortBy];
8454
- declare const ListExtractorJobsSortBy: {
8455
- readonly created_at: "created_at";
8456
- readonly started_at: "started_at";
8457
- readonly completed_at: "completed_at";
8458
- };
8681
+ type ListEvalBenchmarksEnvelopeDataItemRunSummaryBaselinePassRate = {
8682
+ mean: number;
8683
+ stddev: number;
8684
+ min: number;
8685
+ max: number;
8686
+ } | null;
8459
8687
 
8460
8688
  /**
8461
8689
  * Generated by orval 🍺
@@ -8463,21 +8691,289 @@ declare const ListExtractorJobsSortBy: {
8463
8691
  * Avallon API
8464
8692
  * OpenAPI spec version: 1.0.0
8465
8693
  */
8466
- type ListExtractorJobsSortOrder = (typeof ListExtractorJobsSortOrder)[keyof typeof ListExtractorJobsSortOrder];
8467
- declare const ListExtractorJobsSortOrder: {
8468
- readonly asc: "asc";
8469
- readonly desc: "desc";
8470
- };
8471
8694
 
8472
- /**
8473
- * Generated by orval 🍺
8474
- * Do not edit manually.
8475
- * Avallon API
8476
- * OpenAPI spec version: 1.0.0
8477
- */
8478
- type ListExtractorJobsStatus = (typeof ListExtractorJobsStatus)[keyof typeof ListExtractorJobsStatus];
8479
- declare const ListExtractorJobsStatus: {
8480
- readonly queued: "queued";
8695
+ type ListEvalBenchmarksEnvelopeDataItemRunSummaryBaseline = {
8696
+ /**
8697
+ * @minimum -9007199254740991
8698
+ * @maximum 9007199254740991
8699
+ */
8700
+ runs: number;
8701
+ /**
8702
+ * @minimum -9007199254740991
8703
+ * @maximum 9007199254740991
8704
+ */
8705
+ graded_runs: number;
8706
+ pass_rate: ListEvalBenchmarksEnvelopeDataItemRunSummaryBaselinePassRate;
8707
+ duration_seconds: ListEvalBenchmarksEnvelopeDataItemRunSummaryBaselineDurationSeconds;
8708
+ fixture_matched_rate: ListEvalBenchmarksEnvelopeDataItemRunSummaryBaselineFixtureMatchedRate;
8709
+ };
8710
+
8711
+ /**
8712
+ * Generated by orval 🍺
8713
+ * Do not edit manually.
8714
+ * Avallon API
8715
+ * OpenAPI spec version: 1.0.0
8716
+ */
8717
+ type ListEvalBenchmarksEnvelopeDataItemRunSummaryCandidateDurationSeconds = {
8718
+ mean: number;
8719
+ stddev: number;
8720
+ min: number;
8721
+ max: number;
8722
+ } | null;
8723
+
8724
+ /**
8725
+ * Generated by orval 🍺
8726
+ * Do not edit manually.
8727
+ * Avallon API
8728
+ * OpenAPI spec version: 1.0.0
8729
+ */
8730
+ type ListEvalBenchmarksEnvelopeDataItemRunSummaryCandidateFixtureMatchedRate = {
8731
+ mean: number;
8732
+ stddev: number;
8733
+ min: number;
8734
+ max: number;
8735
+ } | null;
8736
+
8737
+ /**
8738
+ * Generated by orval 🍺
8739
+ * Do not edit manually.
8740
+ * Avallon API
8741
+ * OpenAPI spec version: 1.0.0
8742
+ */
8743
+ type ListEvalBenchmarksEnvelopeDataItemRunSummaryCandidatePassRate = {
8744
+ mean: number;
8745
+ stddev: number;
8746
+ min: number;
8747
+ max: number;
8748
+ } | null;
8749
+
8750
+ /**
8751
+ * Generated by orval 🍺
8752
+ * Do not edit manually.
8753
+ * Avallon API
8754
+ * OpenAPI spec version: 1.0.0
8755
+ */
8756
+
8757
+ type ListEvalBenchmarksEnvelopeDataItemRunSummaryCandidate = {
8758
+ /**
8759
+ * @minimum -9007199254740991
8760
+ * @maximum 9007199254740991
8761
+ */
8762
+ runs: number;
8763
+ /**
8764
+ * @minimum -9007199254740991
8765
+ * @maximum 9007199254740991
8766
+ */
8767
+ graded_runs: number;
8768
+ pass_rate: ListEvalBenchmarksEnvelopeDataItemRunSummaryCandidatePassRate;
8769
+ duration_seconds: ListEvalBenchmarksEnvelopeDataItemRunSummaryCandidateDurationSeconds;
8770
+ fixture_matched_rate: ListEvalBenchmarksEnvelopeDataItemRunSummaryCandidateFixtureMatchedRate;
8771
+ };
8772
+
8773
+ /**
8774
+ * Generated by orval 🍺
8775
+ * Do not edit manually.
8776
+ * Avallon API
8777
+ * OpenAPI spec version: 1.0.0
8778
+ */
8779
+ type ListEvalBenchmarksEnvelopeDataItemRunSummaryDelta = {
8780
+ pass_rate: number | null;
8781
+ duration_seconds: number | null;
8782
+ fixture_matched_rate: number | null;
8783
+ };
8784
+
8785
+ /**
8786
+ * Generated by orval 🍺
8787
+ * Do not edit manually.
8788
+ * Avallon API
8789
+ * OpenAPI spec version: 1.0.0
8790
+ */
8791
+
8792
+ type ListEvalBenchmarksEnvelopeDataItemRunSummary = {
8793
+ candidate: ListEvalBenchmarksEnvelopeDataItemRunSummaryCandidate;
8794
+ baseline: ListEvalBenchmarksEnvelopeDataItemRunSummaryBaseline;
8795
+ delta: ListEvalBenchmarksEnvelopeDataItemRunSummaryDelta;
8796
+ } | null;
8797
+
8798
+ /**
8799
+ * Generated by orval 🍺
8800
+ * Do not edit manually.
8801
+ * Avallon API
8802
+ * OpenAPI spec version: 1.0.0
8803
+ */
8804
+ type ListEvalBenchmarksEnvelopeDataItemStatus = (typeof ListEvalBenchmarksEnvelopeDataItemStatus)[keyof typeof ListEvalBenchmarksEnvelopeDataItemStatus];
8805
+ declare const ListEvalBenchmarksEnvelopeDataItemStatus: {
8806
+ readonly running: "running";
8807
+ readonly completed: "completed";
8808
+ readonly error: "error";
8809
+ };
8810
+
8811
+ /**
8812
+ * Generated by orval 🍺
8813
+ * Do not edit manually.
8814
+ * Avallon API
8815
+ * OpenAPI spec version: 1.0.0
8816
+ */
8817
+
8818
+ type ListEvalBenchmarksEnvelopeDataItem = {
8819
+ id: string;
8820
+ eval_id: string;
8821
+ /**
8822
+ * @minimum -9007199254740991
8823
+ * @maximum 9007199254740991
8824
+ */
8825
+ candidate_version: number;
8826
+ /**
8827
+ * @minimum -9007199254740991
8828
+ * @maximum 9007199254740991
8829
+ */
8830
+ baseline_version: number;
8831
+ /**
8832
+ * @minimum -9007199254740991
8833
+ * @maximum 9007199254740991
8834
+ */
8835
+ runs_per_configuration: number;
8836
+ status: ListEvalBenchmarksEnvelopeDataItemStatus;
8837
+ run_summary: ListEvalBenchmarksEnvelopeDataItemRunSummary;
8838
+ notes: string[] | null;
8839
+ created_at: string;
8840
+ completed_at: string | null;
8841
+ };
8842
+
8843
+ /**
8844
+ * Generated by orval 🍺
8845
+ * Do not edit manually.
8846
+ * Avallon API
8847
+ * OpenAPI spec version: 1.0.0
8848
+ */
8849
+ type ListEvalBenchmarksEnvelopeMeta = {
8850
+ /**
8851
+ * Total number of benchmarks for the eval
8852
+ * @minimum -9007199254740991
8853
+ * @maximum 9007199254740991
8854
+ */
8855
+ total: number;
8856
+ };
8857
+
8858
+ /**
8859
+ * Generated by orval 🍺
8860
+ * Do not edit manually.
8861
+ * Avallon API
8862
+ * OpenAPI spec version: 1.0.0
8863
+ */
8864
+
8865
+ interface ListEvalBenchmarksEnvelope {
8866
+ data: ListEvalBenchmarksEnvelopeDataItem[];
8867
+ message: string;
8868
+ meta: ListEvalBenchmarksEnvelopeMeta;
8869
+ }
8870
+
8871
+ /**
8872
+ * Generated by orval 🍺
8873
+ * Do not edit manually.
8874
+ * Avallon API
8875
+ * OpenAPI spec version: 1.0.0
8876
+ */
8877
+ type ListEvalBenchmarksSortBy = (typeof ListEvalBenchmarksSortBy)[keyof typeof ListEvalBenchmarksSortBy];
8878
+ declare const ListEvalBenchmarksSortBy: {
8879
+ readonly created_at: "created_at";
8880
+ };
8881
+
8882
+ /**
8883
+ * Generated by orval 🍺
8884
+ * Do not edit manually.
8885
+ * Avallon API
8886
+ * OpenAPI spec version: 1.0.0
8887
+ */
8888
+ type ListEvalBenchmarksSortOrder = (typeof ListEvalBenchmarksSortOrder)[keyof typeof ListEvalBenchmarksSortOrder];
8889
+ declare const ListEvalBenchmarksSortOrder: {
8890
+ readonly asc: "asc";
8891
+ readonly desc: "desc";
8892
+ };
8893
+
8894
+ /**
8895
+ * Generated by orval 🍺
8896
+ * Do not edit manually.
8897
+ * Avallon API
8898
+ * OpenAPI spec version: 1.0.0
8899
+ */
8900
+
8901
+ type ListEvalBenchmarksParams = {
8902
+ /**
8903
+ * @minimum 1
8904
+ * @maximum 100
8905
+ */
8906
+ count?: number;
8907
+ /**
8908
+ * @minimum 0
8909
+ */
8910
+ offset?: number;
8911
+ sort_by?: ListEvalBenchmarksSortBy;
8912
+ sort_order?: ListEvalBenchmarksSortOrder;
8913
+ };
8914
+
8915
+ /**
8916
+ * Generated by orval 🍺
8917
+ * Do not edit manually.
8918
+ * Avallon API
8919
+ * OpenAPI spec version: 1.0.0
8920
+ */
8921
+ type ListExtractorJobsEnvelopeMeta = {
8922
+ /**
8923
+ * Total number of matching jobs
8924
+ * @minimum -9007199254740991
8925
+ * @maximum 9007199254740991
8926
+ */
8927
+ total: number;
8928
+ };
8929
+
8930
+ /**
8931
+ * Generated by orval 🍺
8932
+ * Do not edit manually.
8933
+ * Avallon API
8934
+ * OpenAPI spec version: 1.0.0
8935
+ */
8936
+
8937
+ interface ListExtractorJobsEnvelope {
8938
+ data: ExtractorJobList;
8939
+ message: string;
8940
+ meta: ListExtractorJobsEnvelopeMeta;
8941
+ }
8942
+
8943
+ /**
8944
+ * Generated by orval 🍺
8945
+ * Do not edit manually.
8946
+ * Avallon API
8947
+ * OpenAPI spec version: 1.0.0
8948
+ */
8949
+ type ListExtractorJobsSortBy = (typeof ListExtractorJobsSortBy)[keyof typeof ListExtractorJobsSortBy];
8950
+ declare const ListExtractorJobsSortBy: {
8951
+ readonly created_at: "created_at";
8952
+ readonly started_at: "started_at";
8953
+ readonly completed_at: "completed_at";
8954
+ };
8955
+
8956
+ /**
8957
+ * Generated by orval 🍺
8958
+ * Do not edit manually.
8959
+ * Avallon API
8960
+ * OpenAPI spec version: 1.0.0
8961
+ */
8962
+ type ListExtractorJobsSortOrder = (typeof ListExtractorJobsSortOrder)[keyof typeof ListExtractorJobsSortOrder];
8963
+ declare const ListExtractorJobsSortOrder: {
8964
+ readonly asc: "asc";
8965
+ readonly desc: "desc";
8966
+ };
8967
+
8968
+ /**
8969
+ * Generated by orval 🍺
8970
+ * Do not edit manually.
8971
+ * Avallon API
8972
+ * OpenAPI spec version: 1.0.0
8973
+ */
8974
+ type ListExtractorJobsStatus = (typeof ListExtractorJobsStatus)[keyof typeof ListExtractorJobsStatus];
8975
+ declare const ListExtractorJobsStatus: {
8976
+ readonly queued: "queued";
8481
8977
  readonly in_progress: "in_progress";
8482
8978
  readonly completed: "completed";
8483
8979
  readonly failed: "failed";
@@ -9805,6 +10301,223 @@ type ListWebhooksParams = {
9805
10301
  environment?: ListWebhooksEnvironment;
9806
10302
  };
9807
10303
 
10304
+ /**
10305
+ * Generated by orval 🍺
10306
+ * Do not edit manually.
10307
+ * Avallon API
10308
+ * OpenAPI spec version: 1.0.0
10309
+ */
10310
+ type ListWorkerEvalsEnvelopeDataItemFixtureScope = {
10311
+ [key: string]: unknown;
10312
+ } | null;
10313
+
10314
+ /**
10315
+ * Generated by orval 🍺
10316
+ * Do not edit manually.
10317
+ * Avallon API
10318
+ * OpenAPI spec version: 1.0.0
10319
+ */
10320
+
10321
+ type ListWorkerEvalsEnvelopeDataItemFixture = {
10322
+ version: 1;
10323
+ type: "worker_run_replay";
10324
+ scope: ListWorkerEvalsEnvelopeDataItemFixtureScope;
10325
+ resolved_artifact_ids: string[];
10326
+ trigger_context: string | null;
10327
+ };
10328
+
10329
+ /**
10330
+ * Generated by orval 🍺
10331
+ * Do not edit manually.
10332
+ * Avallon API
10333
+ * OpenAPI spec version: 1.0.0
10334
+ */
10335
+ type ListWorkerEvalsEnvelopeDataItemGrader = {
10336
+ type: "prompt";
10337
+ assertions: string[];
10338
+ /** Deprecated: assertions joined by newlines. Use assertions. */
10339
+ criterion: string;
10340
+ };
10341
+
10342
+ /**
10343
+ * Generated by orval 🍺
10344
+ * Do not edit manually.
10345
+ * Avallon API
10346
+ * OpenAPI spec version: 1.0.0
10347
+ */
10348
+ type ListWorkerEvalsEnvelopeDataItemSourceType = (typeof ListWorkerEvalsEnvelopeDataItemSourceType)[keyof typeof ListWorkerEvalsEnvelopeDataItemSourceType];
10349
+ declare const ListWorkerEvalsEnvelopeDataItemSourceType: {
10350
+ readonly worker_run: "worker_run";
10351
+ readonly chat: "chat";
10352
+ readonly call: "call";
10353
+ };
10354
+
10355
+ /**
10356
+ * Generated by orval 🍺
10357
+ * Do not edit manually.
10358
+ * Avallon API
10359
+ * OpenAPI spec version: 1.0.0
10360
+ */
10361
+
10362
+ type ListWorkerEvalsEnvelopeDataItemSource = {
10363
+ type: ListWorkerEvalsEnvelopeDataItemSourceType;
10364
+ id: string;
10365
+ };
10366
+
10367
+ /**
10368
+ * Generated by orval 🍺
10369
+ * Do not edit manually.
10370
+ * Avallon API
10371
+ * OpenAPI spec version: 1.0.0
10372
+ */
10373
+ type ListWorkerEvalsEnvelopeDataItemTargetType = (typeof ListWorkerEvalsEnvelopeDataItemTargetType)[keyof typeof ListWorkerEvalsEnvelopeDataItemTargetType];
10374
+ declare const ListWorkerEvalsEnvelopeDataItemTargetType: {
10375
+ readonly worker: "worker";
10376
+ readonly chat_agent: "chat_agent";
10377
+ readonly voice_agent: "voice_agent";
10378
+ };
10379
+
10380
+ /**
10381
+ * Generated by orval 🍺
10382
+ * Do not edit manually.
10383
+ * Avallon API
10384
+ * OpenAPI spec version: 1.0.0
10385
+ */
10386
+
10387
+ type ListWorkerEvalsEnvelopeDataItemTarget = {
10388
+ type: ListWorkerEvalsEnvelopeDataItemTargetType;
10389
+ id: string;
10390
+ };
10391
+
10392
+ /**
10393
+ * Generated by orval 🍺
10394
+ * Do not edit manually.
10395
+ * Avallon API
10396
+ * OpenAPI spec version: 1.0.0
10397
+ */
10398
+ type ListWorkerEvalsEnvelopeDataItemToolMocksItemInputSchema = {
10399
+ [key: string]: unknown;
10400
+ };
10401
+
10402
+ /**
10403
+ * Generated by orval 🍺
10404
+ * Do not edit manually.
10405
+ * Avallon API
10406
+ * OpenAPI spec version: 1.0.0
10407
+ */
10408
+ type ListWorkerEvalsEnvelopeDataItemToolMocksItemMatch = {
10409
+ [key: string]: unknown;
10410
+ };
10411
+
10412
+ /**
10413
+ * Generated by orval 🍺
10414
+ * Do not edit manually.
10415
+ * Avallon API
10416
+ * OpenAPI spec version: 1.0.0
10417
+ */
10418
+
10419
+ type ListWorkerEvalsEnvelopeDataItemToolMocksItem = {
10420
+ mcp_type: string;
10421
+ tool_name: string;
10422
+ description: string;
10423
+ input_schema: ListWorkerEvalsEnvelopeDataItemToolMocksItemInputSchema;
10424
+ match?: ListWorkerEvalsEnvelopeDataItemToolMocksItemMatch;
10425
+ logical_tool_name: string | null;
10426
+ responses: unknown[];
10427
+ inputs?: unknown[];
10428
+ default?: unknown;
10429
+ };
10430
+
10431
+ /**
10432
+ * Generated by orval 🍺
10433
+ * Do not edit manually.
10434
+ * Avallon API
10435
+ * OpenAPI spec version: 1.0.0
10436
+ */
10437
+
10438
+ type ListWorkerEvalsEnvelopeDataItem = {
10439
+ id: string;
10440
+ name: string;
10441
+ target: ListWorkerEvalsEnvelopeDataItemTarget;
10442
+ source: ListWorkerEvalsEnvelopeDataItemSource;
10443
+ fixture: ListWorkerEvalsEnvelopeDataItemFixture;
10444
+ tool_mocks: ListWorkerEvalsEnvelopeDataItemToolMocksItem[];
10445
+ grader: ListWorkerEvalsEnvelopeDataItemGrader;
10446
+ created_at: string;
10447
+ };
10448
+
10449
+ /**
10450
+ * Generated by orval 🍺
10451
+ * Do not edit manually.
10452
+ * Avallon API
10453
+ * OpenAPI spec version: 1.0.0
10454
+ */
10455
+ type ListWorkerEvalsEnvelopeMeta = {
10456
+ /**
10457
+ * Total number of evals for the worker
10458
+ * @minimum -9007199254740991
10459
+ * @maximum 9007199254740991
10460
+ */
10461
+ total: number;
10462
+ };
10463
+
10464
+ /**
10465
+ * Generated by orval 🍺
10466
+ * Do not edit manually.
10467
+ * Avallon API
10468
+ * OpenAPI spec version: 1.0.0
10469
+ */
10470
+
10471
+ interface ListWorkerEvalsEnvelope {
10472
+ data: ListWorkerEvalsEnvelopeDataItem[];
10473
+ message: string;
10474
+ meta: ListWorkerEvalsEnvelopeMeta;
10475
+ }
10476
+
10477
+ /**
10478
+ * Generated by orval 🍺
10479
+ * Do not edit manually.
10480
+ * Avallon API
10481
+ * OpenAPI spec version: 1.0.0
10482
+ */
10483
+ type ListWorkerEvalsSortBy = (typeof ListWorkerEvalsSortBy)[keyof typeof ListWorkerEvalsSortBy];
10484
+ declare const ListWorkerEvalsSortBy: {
10485
+ readonly created_at: "created_at";
10486
+ };
10487
+
10488
+ /**
10489
+ * Generated by orval 🍺
10490
+ * Do not edit manually.
10491
+ * Avallon API
10492
+ * OpenAPI spec version: 1.0.0
10493
+ */
10494
+ type ListWorkerEvalsSortOrder = (typeof ListWorkerEvalsSortOrder)[keyof typeof ListWorkerEvalsSortOrder];
10495
+ declare const ListWorkerEvalsSortOrder: {
10496
+ readonly asc: "asc";
10497
+ readonly desc: "desc";
10498
+ };
10499
+
10500
+ /**
10501
+ * Generated by orval 🍺
10502
+ * Do not edit manually.
10503
+ * Avallon API
10504
+ * OpenAPI spec version: 1.0.0
10505
+ */
10506
+
10507
+ type ListWorkerEvalsParams = {
10508
+ /**
10509
+ * @minimum 1
10510
+ * @maximum 100
10511
+ */
10512
+ count?: number;
10513
+ /**
10514
+ * @minimum 0
10515
+ */
10516
+ offset?: number;
10517
+ sort_by?: ListWorkerEvalsSortBy;
10518
+ sort_order?: ListWorkerEvalsSortOrder;
10519
+ };
10520
+
9808
10521
  /**
9809
10522
  * Generated by orval 🍺
9810
10523
  * Do not edit manually.
@@ -14210,6 +14923,31 @@ declare const useCreateEvalBenchmark: <TError = ErrorType<ErrorResponse>>(evalId
14210
14923
  data: CreateEvalBenchmarkEnvelope | undefined;
14211
14924
  swrKey: string | readonly [`/v1/evals/${string}/benchmarks`];
14212
14925
  };
14926
+ declare const getListEvalBenchmarksUrl: (evalId: string, params?: ListEvalBenchmarksParams) => string;
14927
+ /**
14928
+ * Benchmark history of an eval (newest first by default) without per-run details. Use GET /v1/benchmarks/{benchmarkId} for the runs.
14929
+ * @summary List an eval's benchmarks
14930
+ */
14931
+ declare const listEvalBenchmarks: (evalId: string, params?: ListEvalBenchmarksParams, options?: Parameters<typeof customFetch>[1]) => Promise<ListEvalBenchmarksEnvelope>;
14932
+ declare const getListEvalBenchmarksKey: (evalId: string, params?: ListEvalBenchmarksParams) => readonly [`/v1/evals/${string}/benchmarks`, ...ListEvalBenchmarksParams[]];
14933
+ type ListEvalBenchmarksQueryResult = NonNullable<Awaited$i<ReturnType<typeof listEvalBenchmarks>>>;
14934
+ /**
14935
+ * @summary List an eval's benchmarks
14936
+ */
14937
+ declare const useListEvalBenchmarks: <TError = ErrorType<ErrorResponse>>(evalId: string, params?: ListEvalBenchmarksParams, options?: {
14938
+ swr?: SWRConfiguration<Awaited$i<ReturnType<typeof listEvalBenchmarks>>, TError> & {
14939
+ swrKey?: Key;
14940
+ enabled?: boolean;
14941
+ };
14942
+ request?: SecondParameter$i<typeof customFetch>;
14943
+ }) => {
14944
+ data: ListEvalBenchmarksEnvelope | undefined;
14945
+ error: TError | undefined;
14946
+ mutate: swr.KeyedMutator<ListEvalBenchmarksEnvelope>;
14947
+ isValidating: boolean;
14948
+ isLoading: swr__internal.IsLoadingResponse<Data, Config>;
14949
+ swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
14950
+ };
14213
14951
  declare const getGetBenchmarkUrl: (benchmarkId: string) => string;
14214
14952
  /**
14215
14953
  * Get a benchmark with its per-run gradings and metrics, and once all runs finished, the per-configuration summary, delta, and analyzer notes.
@@ -14235,6 +14973,58 @@ declare const useGetBenchmark: <TError = ErrorType<ErrorResponse>>(benchmarkId:
14235
14973
  isLoading: swr__internal.IsLoadingResponse<Data, Config>;
14236
14974
  swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
14237
14975
  };
14976
+ declare const getListWorkerEvalsUrl: (workerId: string, params?: ListWorkerEvalsParams) => string;
14977
+ /**
14978
+ * List the evals recorded for a worker, newest first by default.
14979
+ * @summary List a worker's evals
14980
+ */
14981
+ declare const listWorkerEvals: (workerId: string, params?: ListWorkerEvalsParams, options?: Parameters<typeof customFetch>[1]) => Promise<ListWorkerEvalsEnvelope>;
14982
+ declare const getListWorkerEvalsKey: (workerId: string, params?: ListWorkerEvalsParams) => readonly [`/v1/workers/${string}/evals`, ...ListWorkerEvalsParams[]];
14983
+ type ListWorkerEvalsQueryResult = NonNullable<Awaited$i<ReturnType<typeof listWorkerEvals>>>;
14984
+ /**
14985
+ * @summary List a worker's evals
14986
+ */
14987
+ declare const useListWorkerEvals: <TError = ErrorType<ErrorResponse>>(workerId: string, params?: ListWorkerEvalsParams, options?: {
14988
+ swr?: SWRConfiguration<Awaited$i<ReturnType<typeof listWorkerEvals>>, TError> & {
14989
+ swrKey?: Key;
14990
+ enabled?: boolean;
14991
+ };
14992
+ request?: SecondParameter$i<typeof customFetch>;
14993
+ }) => {
14994
+ data: ListWorkerEvalsEnvelope | undefined;
14995
+ error: TError | undefined;
14996
+ mutate: swr.KeyedMutator<ListWorkerEvalsEnvelope>;
14997
+ isValidating: boolean;
14998
+ isLoading: swr__internal.IsLoadingResponse<Data, Config>;
14999
+ swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
15000
+ };
15001
+ declare const getCreateWorkerBenchmarksUrl: (workerId: string) => string;
15002
+ /**
15003
+ * Create one benchmark per eval of the worker, each queueing runs_per_configuration trials against the candidate and the baseline version. Poll each benchmark with GET /v1/benchmarks/{benchmarkId}.
15004
+ * @summary Benchmark two worker versions on all of the worker's evals
15005
+ */
15006
+ declare const createWorkerBenchmarks: (workerId: string, createWorkerBenchmarksBody?: CreateWorkerBenchmarksBody, options?: Parameters<typeof customFetch>[1]) => Promise<CreateWorkerBenchmarksEnvelope>;
15007
+ declare const getCreateWorkerBenchmarksMutationFetcher: (workerId: string, options?: SecondParameter$i<typeof customFetch>) => (_: Key, { arg }: {
15008
+ arg: CreateWorkerBenchmarksBody | undefined;
15009
+ }) => Promise<CreateWorkerBenchmarksEnvelope>;
15010
+ declare const getCreateWorkerBenchmarksMutationKey: (workerId: string) => readonly [`/v1/workers/${string}/benchmarks`];
15011
+ type CreateWorkerBenchmarksMutationResult = NonNullable<Awaited$i<ReturnType<typeof createWorkerBenchmarks>>>;
15012
+ /**
15013
+ * @summary Benchmark two worker versions on all of the worker's evals
15014
+ */
15015
+ declare const useCreateWorkerBenchmarks: <TError = ErrorType<ErrorResponse>>(workerId: string, options?: {
15016
+ swr?: SWRMutationConfiguration<Awaited$i<ReturnType<typeof createWorkerBenchmarks>>, TError, Key, CreateWorkerBenchmarksBody | undefined, Awaited$i<ReturnType<typeof createWorkerBenchmarks>>> & {
15017
+ swrKey?: string;
15018
+ };
15019
+ request?: SecondParameter$i<typeof customFetch>;
15020
+ }) => {
15021
+ isMutating: boolean;
15022
+ trigger: swr_mutation.TriggerWithOptionsArgs<CreateWorkerBenchmarksEnvelope, TError, string | readonly [`/v1/workers/${string}/benchmarks`], CreateWorkerBenchmarksBody | undefined>;
15023
+ reset: () => void;
15024
+ error: TError | undefined;
15025
+ data: CreateWorkerBenchmarksEnvelope | undefined;
15026
+ swrKey: string | readonly [`/v1/workers/${string}/benchmarks`];
15027
+ };
14238
15028
 
14239
15029
  type AwaitedInput$h<T> = PromiseLike<T> | T;
14240
15030
  type Awaited$h<O> = O extends AwaitedInput$h<infer T> ? T : never;
@@ -17279,4 +18069,4 @@ declare const useGetWorkerVersionChangeSummary: <TError = ErrorType<ErrorRespons
17279
18069
  swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => Arguments);
17280
18070
  };
17281
18071
 
17282
- export { type AddCaseLinksBody, type AddCaseLinksBodyEntitiesItem, AddCaseLinksBodyEntitiesItemEntityType, type AddCaseLinksEnvelope, AddCaseLinksEnvironment, type AddCaseLinksMutationResult, type AddCaseLinksParams, type AddCaseLinksResponse, type AnalyticsTimeSeries, AnalyticsTimeSeriesGranularity, AnalyticsTimeSeriesGroupBy, AnalyticsTimeSeriesMetric, type AnalyticsTimeSeriesPointsItem, type ApiKey, type ApiKeyCreated, ApiKeyCreatedRole, type ApiKeyList, ApiKeyRole, 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 ArtifactStatusSummary, type AuthTokens, type AvallonConfig, AvallonError, type Call, type CallAnalytics, type CallAnalyticsCallsOverTimeItem, type CallAnalyticsDurationDistributionItem, type CallAnalyticsEvaluationOverTimeItem, type CallAnalyticsMetricPerformanceItem, type CallAnalyticsScoreDistributionItem, type CallAnalyticsSummary, type CallDetail, CallDetailDirection, CallDetailEnvironment, type CallDetailEvaluation, type CallDetailMetadata, CallDirection, CallEnvironment, type CallEvaluation, type CallEvaluationMetricsItem, type CallEvaluationProperty, type CallList, type CallMessage, type CallMessageMetadata, type CallMessageToolArguments, type CallMessageToolResult, type CallMetadata, type CancelJobEnvelope, type CancelJobMutationResult, type CancelWorkerRunEnvelope, type CancelWorkerRunMutationResult, type CaseDetail, type CaseLink, CaseLinkEntityType, type CaseLinkList, type CaseList, type CaseSearchResult, type CaseSummary, CaseSummaryEnvironment, 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 CheckInboxAvailabilityEnvelope, type CheckInboxAvailabilityParams, type CheckInboxAvailabilityQueryResult, type CodeTool, type CodeToolCreated, type CodeToolCreatedTool, type CodeToolCreatedToolSchema, type CodeToolSchema, type CodeToolSummary, type CodeToolUpdated, type ConfirmationResponse, type CreateAgentWebhookBody, CreateAgentWebhookBodyEnvironmentsItem, type CreateAgentWebhookEnvelope, type CreateAgentWebhookMutationResult, type CreateApiKeyBody, CreateApiKeyBodyEnvironment, CreateApiKeyBodyRole, type CreateApiKeyEnvelope, type CreateApiKeyMutationResult, type CreateArtifactBody, type CreateArtifactBodyMetadata, type CreateArtifactBodyProcessingOptions, type CreateArtifactEnvelope, type CreateArtifactMutationResult, type CreateCallFeedbackEnvelope, type CreateCallFeedbackMutationResult, type CreateCaseBody, CreateCaseBodyEnvironment, type CreateCaseEnvelope, type CreateCaseMutationResult, type CreateCaseResponse, type CreateChatAgentBody, type CreateChatAgentEnvelope, type CreateChatAgentMutationResult, type CreateChatBody, type CreateChatEnvelope, type CreateChatMutationResult, type CreateEvalBenchmarkBody, type CreateEvalBenchmarkEnvelope, type CreateEvalBenchmarkEnvelopeData, type CreateEvalBenchmarkEnvelopeDataRunSummary, type CreateEvalBenchmarkEnvelopeDataRunSummaryBaseline, type CreateEvalBenchmarkEnvelopeDataRunSummaryBaselineDurationSeconds, type CreateEvalBenchmarkEnvelopeDataRunSummaryBaselineFixtureMatchedRate, type CreateEvalBenchmarkEnvelopeDataRunSummaryBaselinePassRate, type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidate, type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidateDurationSeconds, type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidateFixtureMatchedRate, type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidatePassRate, type CreateEvalBenchmarkEnvelopeDataRunSummaryDelta, type CreateEvalBenchmarkEnvelopeDataRunsItem, CreateEvalBenchmarkEnvelopeDataRunsItemConfiguration, type CreateEvalBenchmarkEnvelopeDataRunsItemGrading, type CreateEvalBenchmarkEnvelopeDataRunsItemGradingExpectationsItem, type CreateEvalBenchmarkEnvelopeDataRunsItemGradingSummary, type CreateEvalBenchmarkEnvelopeDataRunsItemMetrics, type CreateEvalBenchmarkEnvelopeDataRunsItemMetricsFixtureHealth, CreateEvalBenchmarkEnvelopeDataRunsItemStatus, CreateEvalBenchmarkEnvelopeDataStatus, type CreateEvalBenchmarkMutationResult, type CreateExtractorBody, type CreateExtractorBodySchema, type CreateExtractorEnvelope, type CreateExtractorJobBody, type CreateExtractorJobBodyScope, type CreateExtractorJobEnvelope, type CreateExtractorJobMutationResult, type CreateExtractorMutationResult, type CreateExtractorWebhookBody, CreateExtractorWebhookBodyEnvironmentsItem, type CreateExtractorWebhookEnvelope, type CreateExtractorWebhookMutationResult, type CreateFeedbackRequest, type CreateInboxBody, CreateInboxBodyProcessorType, type CreateInboxEnvelope, type CreateInboxMutationResult, type CreateInboxWebhookBody, CreateInboxWebhookBodyEnvironmentsItem, type CreateInboxWebhookEnvelope, type CreateInboxWebhookMutationResult, type CreateInformationRequestBody, type CreateInformationRequestBodyMetadata, type CreateInformationRequestEnvelope, type CreateInformationRequestMutationResult, type CreateNotificationWebhookBody, CreateNotificationWebhookBodyEnvironmentsItem, type CreateNotificationWebhookEnvelope, type CreateNotificationWebhookMutationResult, type CreateScheduleBody, CreateScheduleBodyEnvironmentsItem, type CreateScheduleEnvelope, type CreateScheduleMutationResult, type CreateSecretBody, type CreateSecretEnvelope, type CreateSecretMutationResult, type CreateToolBody, type CreateToolEnvelope, type CreateToolMutationResult, type CreateVoiceAgentBody, CreateVoiceAgentBodyCallProcessorType, CreateVoiceAgentBodyDirection, CreateVoiceAgentBodyLanguage, CreateVoiceAgentBodyLlmModel, CreateVoiceAgentBodySttModel, CreateVoiceAgentBodyTtsModel, CreateVoiceAgentBodyTtsProvider, type CreateVoiceAgentEnvelope, type CreateVoiceAgentMutationResult, type CreateVoiceAgentResponse, type CreateWorkerBody, CreateWorkerBodyMcpType, type CreateWorkerEnvelope, type CreateWorkerEvalFromRunBody, type CreateWorkerEvalFromRunBodyGrader, type CreateWorkerEvalFromRunEnvelope, type CreateWorkerEvalFromRunEnvelopeData, type CreateWorkerEvalFromRunEnvelopeDataFixture, type CreateWorkerEvalFromRunEnvelopeDataFixtureScope, type CreateWorkerEvalFromRunEnvelopeDataGrader, type CreateWorkerEvalFromRunEnvelopeDataSource, CreateWorkerEvalFromRunEnvelopeDataSourceType, type CreateWorkerEvalFromRunEnvelopeDataTarget, CreateWorkerEvalFromRunEnvelopeDataTargetType, type CreateWorkerEvalFromRunEnvelopeDataToolMocksItem, type CreateWorkerEvalFromRunEnvelopeDataToolMocksItemInputSchema, type CreateWorkerEvalFromRunEnvelopeDataToolMocksItemMatch, type CreateWorkerEvalFromRunMutationResult, type CreateWorkerMutationResult, type CreateWorkerRunBody, CreateWorkerRunBodyEnvironment, type CreateWorkerRunBodyScope, type CreateWorkerRunEnvelope, type CreateWorkerRunMutationResult, type CreateWorkerWebhookBody, CreateWorkerWebhookBodyEnvironmentsItem, type CreateWorkerWebhookEnvelope, type CreateWorkerWebhookMutationResult, type DeleteArtifactEnvelope, type DeleteArtifactMutationResult, type DeleteArtifactResponse, type DeleteCallFeedbackEnvelope, type DeleteCallFeedbackMutationResult, type DeleteCaseEnvelope, DeleteCaseEnvironment, type DeleteCaseMutationResult, type DeleteCaseParams, type DeleteCaseResponse, type DeleteChatAgentEnvelope, type DeleteChatAgentMutationResult, type DeleteChatAgentResponse, type DeleteEmailEnvelope, type DeleteEmailMutationResult, type DeleteEmailResponse, type DeleteExtractorEnvelope, type DeleteExtractorMutationResult, type DeleteExtractorResponse, type DeleteInboxEnvelope, type DeleteInboxMutationResult, type DeleteInboxResponse, type DeleteScheduleEnvelope, type DeleteScheduleMutationResult, type DeleteScheduleResponse, type DeleteSecretEnvelope, type DeleteSecretMutationResult, type DeleteSecretResponse, type DeleteToolEnvelope, type DeleteToolMutationResult, type DeleteToolResponse, type DeleteVoiceAgentEnvelope, type DeleteVoiceAgentMutationResult, type DeleteVoiceAgentResponse, type DeleteWebhookEnvelope, type DeleteWebhookMutationResult, type DeleteWebhookResponse, type DeleteWorkerEnvelope, type DeleteWorkerMutationResult, type DeleteWorkerResponse, type Dispatch, DispatchEnvironment, type DispatchList, DispatchStatus, type DispatchTarget, DispatchTargetType, type DispatchTrigger, DispatchTriggerType, type Email, type EmailDetail, EmailDetailDirection, EmailDetailEnvironment, EmailDetailIgnoredReason, EmailDirection, EmailEnvironment, EmailIgnoredReason, type EmailList, type EmailReplyResult, EmailReplyResultValue, type EmailSendResult, type EmailThread, EmailThreadEnvironment, type EmailThreadList, type ErrorResponse, type ErrorResponseData, type ExecuteCodeBody, ExecuteCodeBodyEnvironment, type ExecuteCodeBodyParams, type ExecuteCodeEnvelope, type ExecuteCodeMutationResult, type Extract, type ExtractList, type ExtractProcessorScope, type ExtractSummary, type ExtractSummaryProcessorScope, 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 GetAnalyticsTimeSeriesEnvelope, GetAnalyticsTimeSeriesGranularity, GetAnalyticsTimeSeriesGroupBy, GetAnalyticsTimeSeriesMetric, type GetAnalyticsTimeSeriesParams, type GetAnalyticsTimeSeriesQueryResult, type GetArtifactEnvelope, type GetArtifactMetadataKeysEnvelope, type GetArtifactMetadataKeysParams, type GetArtifactMetadataKeysQueryResult, type GetArtifactQueryResult, type GetArtifactStatusSummaryEnvelope, type GetArtifactStatusSummaryParams, type GetArtifactStatusSummaryQueryResult, type GetArtifactUploadUrlBody, type GetArtifactUploadUrlEnvelope, type GetArtifactUploadUrlEnvelopeData, type GetArtifactUploadUrlMutationResult, type GetBenchmarkEnvelope, type GetBenchmarkEnvelopeData, type GetBenchmarkEnvelopeDataRunSummary, type GetBenchmarkEnvelopeDataRunSummaryBaseline, type GetBenchmarkEnvelopeDataRunSummaryBaselineDurationSeconds, type GetBenchmarkEnvelopeDataRunSummaryBaselineFixtureMatchedRate, type GetBenchmarkEnvelopeDataRunSummaryBaselinePassRate, type GetBenchmarkEnvelopeDataRunSummaryCandidate, type GetBenchmarkEnvelopeDataRunSummaryCandidateDurationSeconds, type GetBenchmarkEnvelopeDataRunSummaryCandidateFixtureMatchedRate, type GetBenchmarkEnvelopeDataRunSummaryCandidatePassRate, type GetBenchmarkEnvelopeDataRunSummaryDelta, type GetBenchmarkEnvelopeDataRunsItem, GetBenchmarkEnvelopeDataRunsItemConfiguration, type GetBenchmarkEnvelopeDataRunsItemGrading, type GetBenchmarkEnvelopeDataRunsItemGradingExpectationsItem, type GetBenchmarkEnvelopeDataRunsItemGradingSummary, type GetBenchmarkEnvelopeDataRunsItemMetrics, type GetBenchmarkEnvelopeDataRunsItemMetricsFixtureHealth, GetBenchmarkEnvelopeDataRunsItemStatus, GetBenchmarkEnvelopeDataStatus, type GetBenchmarkQueryResult, type GetCallAnalyticsEnvelope, type GetCallAnalyticsParams, type GetCallAnalyticsQueryResult, type GetCallEnvelope, type GetCallEvaluationEnvelope, type GetCallEvaluationQueryResult, type GetCallParams, type GetCallQueryResult, type GetCaseEnvelope, GetCaseEnvironment, type GetCaseParams, type GetCaseQueryResult, type GetChatAgentEnvelope, type GetChatAgentPromptEnvelope, type GetChatAgentPromptQueryResult, type GetChatAgentQueryResult, type GetChatEnvelope, type GetChatQueryResult, type GetEmailEnvelope, type GetEmailQueryResult, type GetEvalRunEnvelope, type GetEvalRunEnvelopeData, GetEvalRunEnvelopeDataConfiguration, type GetEvalRunEnvelopeDataGrading, type GetEvalRunEnvelopeDataGradingExpectationsItem, type GetEvalRunEnvelopeDataGradingSummary, type GetEvalRunEnvelopeDataMetrics, type GetEvalRunEnvelopeDataMetricsFixtureHealth, GetEvalRunEnvelopeDataStatus, type GetEvalRunQueryResult, type GetExtractCitationsEnvelope, type GetExtractCitationsEnvelopeData, type GetExtractCitationsEnvelopeDataChunks, type GetExtractCitationsEnvelopeDataChunksBoundingBox, type GetExtractCitationsQueryResult, type GetExtractEnvelope, type GetExtractQueryResult, type GetExtractorEnvelope, type GetExtractorJobEnvelope, type GetExtractorJobQueryResult, type GetExtractorJobResponse, type GetExtractorQueryResult, type GetExtractorResponse, type GetInformationRequestEnvelope, type GetInformationRequestQueryResult, type GetNotificationEnvelope, type GetNotificationQueryResult, GetOAuthUrlCodeChallengeMethod, type GetOAuthUrlEnvelope, type GetOAuthUrlParams, GetOAuthUrlProvider, type GetOAuthUrlQueryResult, type GetPartnerJwksQueryResult, type GetProfileEnvelope, type GetProfileQueryResult, type GetPublicChatAgentEnvelope, type GetPublicChatAgentQueryResult, type GetScheduleEnvelope, type GetScheduleQueryResult, type GetSecretEnvelope, type GetSecretQueryResult, type GetSessionTokenBody, type GetSessionTokenEnvelope, type GetSessionTokenEnvelopeData, type GetSessionTokenMutationResult, type GetTenantSettingsEnvelope, type GetTenantSettingsQueryResult, type GetToolEnvelope, type GetToolQueryResult, type GetToolResponse, type GetToolVersionChangeSummaryEnvelope, type GetToolVersionChangeSummaryQueryResult, type GetToolVersionEnvelope, type GetToolVersionQueryResult, type GetVoiceAgentEnvelope, type GetVoiceAgentPlaceholdersEnvelope, type GetVoiceAgentPlaceholdersQueryResult, type GetVoiceAgentPromptEnvelope, type GetVoiceAgentPromptParams, type GetVoiceAgentPromptQueryResult, type GetVoiceAgentQueryResult, type GetVoiceAgentResponse, type GetVoiceAgentVersionChangeSummaryEnvelope, type GetVoiceAgentVersionChangeSummaryQueryResult, type GetVoiceAgentVersionEnvelope, type GetVoiceAgentVersionQueryResult, type GetWebhookEnvelope, type GetWebhookQueryResult, type GetWorkerEnvelope, type GetWorkerPromptEnvelope, type GetWorkerPromptParams, type GetWorkerPromptQueryResult, type GetWorkerQueryResult, type GetWorkerRunEnvelope, type GetWorkerRunQueryResult, type GetWorkerRunResponse, type GetWorkerVersionChangeSummaryEnvelope, type GetWorkerVersionChangeSummaryQueryResult, type GetWorkerVersionEnvelope, type GetWorkerVersionQueryResult, type Inbox, type InboxAddresses, type InboxAvailability, type InboxList, InboxProcessorType, type InboxWebhookList, type InformationRequest, InformationRequestEnvironment, type InformationRequestList, type InformationRequestMetadata, type InviteTeamMemberBody, type InviteTeamMemberEnvelope, type InviteTeamMemberMutationResult, type ListAgentWebhooksEnvelope, ListAgentWebhooksEnvironment, type ListAgentWebhooksParams, type ListAgentWebhooksQueryResult, type ListApiKeysEnvelope, ListApiKeysIncludeRevoked, type ListApiKeysParams, type ListApiKeysQueryResult, type ListArtifactsEnvelope, type ListArtifactsEnvelopeMeta, ListArtifactsEnvironment, type ListArtifactsParams, type ListArtifactsQueryResult, ListArtifactsSortBy, ListArtifactsSortOrder, ListArtifactsStatus, type ListCallFeedbackEnvelope, type ListCallFeedbackEnvelopeMeta, type ListCallFeedbackParams, type ListCallFeedbackQueryResult, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, type ListCallsEnvelope, type ListCallsEnvelopeMeta, ListCallsEnvironment, type ListCallsParams, type ListCallsQueryResult, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, ListCaseLinksEntityType, type ListCaseLinksEnvelope, type ListCaseLinksEnvelopeMeta, ListCaseLinksEnvironment, type ListCaseLinksParams, type ListCaseLinksQueryResult, ListCaseLinksSortBy, ListCaseLinksSortOrder, type ListCasesEnvelope, type ListCasesEnvelopeMeta, ListCasesEnvironment, type ListCasesParams, type ListCasesQueryResult, ListCasesSortBy, ListCasesSortOrder, type ListChatAgentsEnvelope, type ListChatAgentsEnvelopeMeta, type ListChatAgentsParams, type ListChatAgentsQueryResult, ListChatAgentsSortBy, ListChatAgentsSortOrder, type ListChatMessagesEnvelope, type ListChatMessagesEnvelopeMeta, type ListChatMessagesParams, type ListChatMessagesQueryResult, ListChatMessagesSortBy, ListChatMessagesSortOrder, type ListChatsEnvelope, type ListChatsEnvelopeMeta, ListChatsEnvironment, type ListChatsParams, type ListChatsQueryResult, ListChatsSortBy, ListChatsSortOrder, type ListDispatchesEnvelope, type ListDispatchesEnvelopeMeta, type ListDispatchesParams, type ListDispatchesQueryResult, ListDispatchesSortBy, ListDispatchesSortOrder, ListDispatchesTriggerType, type ListEmailThreadsEnvelope, type ListEmailThreadsEnvelopeMeta, ListEmailThreadsEnvironment, type ListEmailThreadsParams, type ListEmailThreadsQueryResult, ListEmailThreadsSortBy, ListEmailThreadsSortOrder, type ListEmailsEnvelope, type ListEmailsEnvelopeMeta, ListEmailsEnvironment, type ListEmailsParams, type ListEmailsQueryResult, ListEmailsSortBy, ListEmailsSortOrder, type ListExtractorJobsEnvelope, type ListExtractorJobsEnvelopeMeta, type ListExtractorJobsParams, type ListExtractorJobsQueryResult, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, type ListExtractorsEnvelope, type ListExtractorsEnvelopeMeta, type ListExtractorsParams, type ListExtractorsQueryResult, ListExtractorsSortBy, ListExtractorsSortOrder, type ListExtractsEnvelope, type ListExtractsEnvelopeMeta, ListExtractsEnvironment, type ListExtractsParams, type ListExtractsQueryResult, ListExtractsSortBy, ListExtractsSortOrder, type ListInboxWebhooksEnvelope, ListInboxWebhooksEnvironment, type ListInboxWebhooksParams, type ListInboxWebhooksQueryResult, type ListInboxesEnvelope, type ListInboxesEnvelopeMeta, type ListInboxesParams, type ListInboxesQueryResult, ListInboxesSortBy, ListInboxesSortOrder, type ListInformationRequestsEnvelope, type ListInformationRequestsEnvelopeMeta, ListInformationRequestsEnvironment, type ListInformationRequestsParams, type ListInformationRequestsQueryResult, ListInformationRequestsResolved, ListInformationRequestsSortBy, ListInformationRequestsSortOrder, type ListJobsEnvelope, type ListJobsEnvelopeMeta, type ListJobsParams, type ListJobsQueryResult, ListJobsStatusItem, type ListNotificationWebhooksEnvelope, ListNotificationWebhooksEnvironment, type ListNotificationWebhooksParams, type ListNotificationWebhooksQueryResult, type ListNotificationsEnvelope, type ListNotificationsEnvelopeMeta, type ListNotificationsParams, type ListNotificationsQueryResult, ListNotificationsSortBy, ListNotificationsSortOrder, type ListSchedulesEnvelope, type ListSchedulesEnvelopeMeta, ListSchedulesEnvironment, type ListSchedulesParams, type ListSchedulesQueryResult, ListSchedulesRuleType, ListSchedulesSortBy, ListSchedulesSortOrder, type ListSecretsEnvelope, type ListSecretsEnvelopeMeta, type ListSecretsParams, type ListSecretsQueryResult, ListSecretsSortBy, ListSecretsSortOrder, type ListTeamInvitationsEnvelope, type ListTeamInvitationsQueryResult, type ListTeamInvitationsResponse, type ListTeamMembersEnvelope, type ListTeamMembersQueryResult, type ListTeamMembersResponse, type ListToolVersionsEnvelope, type ListToolVersionsEnvelopeMeta, type ListToolVersionsParams, type ListToolVersionsQueryResult, ListToolVersionsSortBy, ListToolVersionsSortOrder, type ListToolsEnvelope, type ListToolsParams, type ListToolsQueryResult, ListToolsSortBy, ListToolsSortOrder, type ListVoiceAgentVersionsEnvelope, type ListVoiceAgentVersionsEnvelopeMeta, type ListVoiceAgentVersionsParams, type ListVoiceAgentVersionsQueryResult, ListVoiceAgentVersionsSortBy, ListVoiceAgentVersionsSortOrder, type ListVoiceAgentsEnvelope, type ListVoiceAgentsParams, type ListVoiceAgentsQueryResult, type ListWebhookDeliveriesEnvelope, type ListWebhookDeliveriesEnvelopeMeta, type ListWebhookDeliveriesParams, type ListWebhookDeliveriesQueryResult, ListWebhookDeliveriesSortOrder, type ListWebhooksEnvelope, ListWebhooksEnvironment, type ListWebhooksParams, type ListWebhooksQueryResult, type ListWorkerModelsEnvelope, type ListWorkerModelsQueryResult, type ListWorkerRunMessagesEnvelope, type ListWorkerRunMessagesParams, type ListWorkerRunMessagesQueryResult, type ListWorkerRunsEnvelope, type ListWorkerRunsEnvelopeMeta, ListWorkerRunsEnvironment, type ListWorkerRunsParams, type ListWorkerRunsQueryResult, ListWorkerRunsSortBy, ListWorkerRunsSortOrder, ListWorkerRunsStatus, type ListWorkerVersionsEnvelope, type ListWorkerVersionsEnvelopeMeta, type ListWorkerVersionsParams, type ListWorkerVersionsQueryResult, ListWorkerVersionsSortBy, ListWorkerVersionsSortOrder, type ListWorkerWebhooksEnvelope, ListWorkerWebhooksEnvironment, type ListWorkerWebhooksParams, type ListWorkerWebhooksQueryResult, type ListWorkersEnvelope, type ListWorkersEnvelopeMeta, type ListWorkersParams, type ListWorkersQueryResult, ListWorkersSortBy, ListWorkersSortOrder, type Notification, type NotificationList, type NotificationWebhookList, type NotifyAdminBody, type NotifyAdminEnvelope, type NotifyAdminMutationResult, type OAuthUrl, type OutboundJob, OutboundJobEnvironment, type OutboundJobList, type OutboundJobMetadata, type OutboundJobPayload, OutboundJobStatus, type PartnerJwks, type PartnerJwksKeysItem, type PartnerLaunchEnvelope, type PartnerLaunchEnvelopeData, type PartnerLaunchMutationResult, type PartnerLaunchParams, type PostChatMessageBody, type PostChatMessageEnvelope, type PostChatMessageMutationResult, type Profile, ProfilePermissionsItem, ProfileRole, type ProfileTenant, type ProfileTenants, type PromoteToolVersionBody, type PromoteToolVersionEnvelope, type PromoteToolVersionMutationResult, type PromoteVoiceAgentVersionBody, PromoteVoiceAgentVersionBodyEnvironment, type PromoteVoiceAgentVersionEnvelope, type PromoteVoiceAgentVersionMutationResult, type PromoteWorkerVersionBody, type PromoteWorkerVersionEnvelope, type PromoteWorkerVersionMutationResult, type PromotedToolVersion, type PromotedVoiceAgentVersion, PromotedVoiceAgentVersionEnvironment, type PromotedWorkerVersion, type PublicChatAgent, type RecurrencePattern, type RecurrencePatternOutput, type RefreshTokenBody, type RefreshTokenEnvelope, type RefreshTokenMutationResult, type RemoveCaseLinkEnvelope, RemoveCaseLinkEnvironment, type RemoveCaseLinkMutationResult, type RemoveCaseLinkParams, type RemoveCaseLinkResponse, type RemoveMemberMutationResult, type ReplyToEmailBody, type ReplyToEmailBodyAttachmentsItem, type ReplyToEmailEnvelope, type ReplyToEmailMutationResult, type RequestPasswordResetBody, type RequestPasswordResetEnvelope, type RequestPasswordResetMutationResult, type RequestPasswordResetResponse, type ResendTeamInvitationEnvelope, type ResendTeamInvitationMutationResult, type ResetPasswordBody, type ResetPasswordEnvelope, type ResetPasswordMutationResult, type ResetPasswordResponse, type ResolveInformationRequestBody, type ResolveInformationRequestEnvelope, type ResolveInformationRequestMutationResult, type RevokeApiKeyEnvelope, type RevokeApiKeyMutationResult, type RevokeTeamInvitationMutationResult, type RunEvalBody, type RunEvalEnvelope, type RunEvalEnvelopeData, RunEvalEnvelopeDataConfiguration, type RunEvalEnvelopeDataGrading, type RunEvalEnvelopeDataGradingExpectationsItem, type RunEvalEnvelopeDataGradingSummary, type RunEvalEnvelopeDataMetrics, type RunEvalEnvelopeDataMetricsFixtureHealth, RunEvalEnvelopeDataStatus, type RunEvalMutationResult, type Schedule, type ScheduleAction, type ScheduleActionOutput, ScheduleEnvironmentsItem, type ScheduleJobBody, ScheduleJobBodyEnvironment, type ScheduleJobBodyMetadata, type ScheduleJobBodyPayload, type ScheduleJobEnvelope, type ScheduleJobMutationResult, type ScheduleList, type ScheduleRule, type ScheduleRuleOutput, type SearchCasesEnvelope, type SearchCasesEnvelopeMeta, type SearchCasesParams, type SearchCasesQueryResult, type Secret, type SecretList, type SendEmailBody, type SendEmailBodyAttachmentsItem, SendEmailBodyEnvironment, type SendEmailEnvelope, type SendEmailMutationResult, type SignInBody, type SignInEnvelope, type SignInMutationResult, type SignUpBody, type SignUpEnvelope, type SignUpMutationResult, type SignUpResponse, type TeamInvitation, TeamInvitationState, type TeamMember, TeamMemberRole, type TenantSettings, type TestWebhookBody, TestWebhookBodyEnvironment, type TestWebhookEnvelope, type TestWebhookMutationResult, ToolEnvironment, type ToolExecutionResult, type ToolExecutionResultError, type ToolExecutionResultTracesItem, type ToolList, type ToolVersion, type ToolVersionChangeSummary, type ToolVersionDetail, type ToolVersionDetailSchema, type ToolVersionList, type ToolVersions, type UpdateApiKeyBody, UpdateApiKeyBodyRole, type UpdateApiKeyEnvelope, type UpdateApiKeyMutationResult, type UpdateArtifactMetadataBody, type UpdateArtifactMetadataBodyMetadata, type UpdateArtifactMetadataEnvelope, type UpdateArtifactMetadataMutationResult, type UpdateCallControlsBody, type UpdateCallControlsEnvelope, type UpdateCallControlsMutationResult, type UpdateChatAgentEnvelope, type UpdateChatAgentMutationResult, type UpdateChatAgentPromptBody, type UpdateChatAgentPromptEnvelope, type UpdateChatAgentPromptMutationResult, type UpdateChatAgentRequest, type UpdateExtractorBody, type UpdateExtractorBodySchema, type UpdateExtractorEnvelope, type UpdateExtractorMutationResult, type UpdateInboxBody, type UpdateInboxBodyProcessor, UpdateInboxBodyProcessorType, type UpdateInboxEnvelope, type UpdateInboxMutationResult, type UpdateMemberRoleBody, UpdateMemberRoleBodyRole, type UpdateMemberRoleEnvelope, type UpdateMemberRoleMutationResult, type UpdateMemberRoleResponse, type UpdateScheduleBody, UpdateScheduleBodyEnvironmentsItem, type UpdateScheduleEnvelope, type UpdateScheduleMutationResult, type UpdateSecretBody, type UpdateSecretEnvelope, type UpdateSecretMutationResult, type UpdateTenantSettingsBody, type UpdateTenantSettingsEnvelope, type UpdateTenantSettingsMutationResult, type UpdateToolBody, type UpdateToolEnvelope, type UpdateToolMutationResult, type UpdateVoiceAgentBody, UpdateVoiceAgentBodyCallProcessorType, UpdateVoiceAgentBodyNoiseCancellation, type UpdateVoiceAgentCallControlsResponse, type UpdateVoiceAgentEnvelope, type UpdateVoiceAgentModelsBody, UpdateVoiceAgentModelsBodyFallbackLlmModel, UpdateVoiceAgentModelsBodyFallbackSttModel, UpdateVoiceAgentModelsBodyFallbackTtsModel, UpdateVoiceAgentModelsBodyFallbackTtsProvider, UpdateVoiceAgentModelsBodyLanguage, UpdateVoiceAgentModelsBodyLlmModel, UpdateVoiceAgentModelsBodySttModel, UpdateVoiceAgentModelsBodyTtsModel, UpdateVoiceAgentModelsBodyTtsProvider, type UpdateVoiceAgentModelsEnvelope, type UpdateVoiceAgentModelsMutationResult, type UpdateVoiceAgentModelsResponse, type UpdateVoiceAgentMutationResult, type UpdateVoiceAgentPromptBody, type UpdateVoiceAgentPromptEnvelope, type UpdateVoiceAgentPromptMutationResult, type UpdateVoiceAgentResponse, type UpdateWebhookBody, type UpdateWebhookBodyAuth, UpdateWebhookBodyEnvironmentsItem, type UpdateWebhookEnvelope, type UpdateWebhookMutationResult, type UpdateWorkerBody, type UpdateWorkerBodySchema, type UpdateWorkerEnvelope, type UpdateWorkerMcpsBody, type UpdateWorkerMcpsEnvelope, type UpdateWorkerMcpsMutationResult, type UpdateWorkerMutationResult, type UpdateWorkerPromptBody, type UpdateWorkerPromptEnvelope, type UpdateWorkerPromptMutationResult, type UploadFileBody, type UploadFileBodyMetadata, type UploadFileBodyProcessingOptions, type UploadFileEnvelope, type UploadFileMutationResult, type UploadFileResponse, type VoiceAgent, VoiceAgentBackgroundSounds, VoiceAgentCallProcessorType, VoiceAgentDirection, VoiceAgentFallbackLlmModel, VoiceAgentFallbackSttModel, VoiceAgentFallbackTtsModel, VoiceAgentFallbackTtsProvider, VoiceAgentLanguage, type VoiceAgentList, VoiceAgentLlmModel, VoiceAgentNoiseCancellation, type VoiceAgentPlaceholders, type VoiceAgentPrompt, type VoiceAgentPromptUpdated, VoiceAgentSttModel, VoiceAgentTtsModel, VoiceAgentTtsProvider, type VoiceAgentVersion, VoiceAgentVersionActiveEnvironmentsItem, type VoiceAgentVersionChangeSummary, type VoiceAgentVersionDetail, VoiceAgentVersionDetailActiveEnvironmentsItem, VoiceAgentVersionDetailBackgroundSounds, VoiceAgentVersionDetailCallProcessorType, VoiceAgentVersionDetailDirection, VoiceAgentVersionDetailFallbackLlmModel, VoiceAgentVersionDetailFallbackSttModel, VoiceAgentVersionDetailFallbackTtsModel, VoiceAgentVersionDetailFallbackTtsProvider, VoiceAgentVersionDetailLanguage, VoiceAgentVersionDetailLlmModel, VoiceAgentVersionDetailNoiseCancellation, VoiceAgentVersionDetailSttModel, VoiceAgentVersionDetailTtsModel, VoiceAgentVersionDetailTtsProvider, type VoiceAgentVersionList, type VoiceAgentWebhookList, type VoiceAgentWithTestPhoneNumber, VoiceAgentWithTestPhoneNumberBackgroundSounds, VoiceAgentWithTestPhoneNumberCallProcessorType, VoiceAgentWithTestPhoneNumberDirection, VoiceAgentWithTestPhoneNumberFallbackLlmModel, VoiceAgentWithTestPhoneNumberFallbackSttModel, VoiceAgentWithTestPhoneNumberFallbackTtsModel, VoiceAgentWithTestPhoneNumberFallbackTtsProvider, VoiceAgentWithTestPhoneNumberLanguage, VoiceAgentWithTestPhoneNumberLlmModel, VoiceAgentWithTestPhoneNumberNoiseCancellation, VoiceAgentWithTestPhoneNumberSttModel, VoiceAgentWithTestPhoneNumberTtsModel, VoiceAgentWithTestPhoneNumberTtsProvider, type Webhook, type WebhookDelivery, type WebhookDeliveryList, WebhookEnvironmentsItem, type WebhookScope, type WebhookTestResult, type Worker, WorkerEnvironment, type WorkerExecuteToolBody, WorkerExecuteToolBodyEnvironment, type WorkerExecuteToolBodyParams, type WorkerExecuteToolEnvelope, type WorkerExecuteToolMutationResult, type WorkerGetToolEnvelope, type WorkerGetToolQueryResult, type WorkerList, type WorkerListToolsEnvelope, type WorkerListToolsParams, type WorkerListToolsQueryResult, WorkerListToolsSortBy, WorkerListToolsSortOrder, type WorkerMcp, WorkerMcpName, type WorkerMcpOutput, WorkerMcpOutputName, type WorkerModel, type WorkerModelList, type WorkerNotifyAdminResult, WorkerPermission, type WorkerPrompt, type WorkerPromptUpdated, type WorkerRun, type WorkerRunCreated, WorkerRunCreatedEnvironment, type WorkerRunCreatedScope, WorkerRunCreatedStatus, WorkerRunEnvironment, type WorkerRunList, type WorkerRunMessage, type WorkerRunMessageList, type WorkerRunMessageMessage, type WorkerRunScope, WorkerRunStatus, type WorkerSchema, type WorkerSummary, type WorkerVersion, type WorkerVersionChangeSummary, type WorkerVersionDetail, type WorkerVersionDetailSchema, type WorkerVersionList, type WorkerVersions, type WorkerWebhookList, addCaseLinks, cancelJob, cancelWorkerRun, checkInboxAvailability, configure, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createCase, createChat, createChatAgent, createEvalBenchmark, createExtractor, createExtractorJob, createExtractorWebhook, createInbox, createInboxWebhook, createInformationRequest, createNotificationWebhook, createSchedule, createSecret, createTool, createVoiceAgent, createWorker, createWorkerEvalFromRun, createWorkerRun, createWorkerWebhook, deleteArtifact, deleteCallFeedback, deleteCase, deleteChatAgent, deleteEmail, deleteExtractor, deleteInbox, deleteSchedule, deleteSecret, deleteTool, deleteVoiceAgent, deleteWebhook, deleteWorker, executeCode, generateCodeChallenge, generateCodeVerifier, getAddCaseLinksMutationFetcher, getAddCaseLinksMutationKey, getAddCaseLinksUrl, getAnalyticsTimeSeries, getArtifact, getArtifactMetadataKeys, getArtifactStatusSummary, getArtifactUploadUrl, getBenchmark, getCall, getCallAnalytics, getCallEvaluation, getCancelJobMutationFetcher, getCancelJobMutationKey, getCancelJobUrl, getCancelWorkerRunMutationFetcher, getCancelWorkerRunMutationKey, getCancelWorkerRunUrl, getCase, getChat, getChatAgent, getChatAgentPrompt, getCheckInboxAvailabilityKey, getCheckInboxAvailabilityUrl, getConfig, getCreateAgentWebhookMutationFetcher, getCreateAgentWebhookMutationKey, getCreateAgentWebhookUrl, getCreateApiKeyMutationFetcher, getCreateApiKeyMutationKey, getCreateApiKeyUrl, getCreateArtifactMutationFetcher, getCreateArtifactMutationKey, getCreateArtifactUrl, getCreateCallFeedbackMutationFetcher, getCreateCallFeedbackMutationKey, getCreateCallFeedbackUrl, getCreateCaseMutationFetcher, getCreateCaseMutationKey, getCreateCaseUrl, getCreateChatAgentMutationFetcher, getCreateChatAgentMutationKey, getCreateChatAgentUrl, getCreateChatMutationFetcher, getCreateChatMutationKey, getCreateChatUrl, getCreateEvalBenchmarkMutationFetcher, getCreateEvalBenchmarkMutationKey, getCreateEvalBenchmarkUrl, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateInboxMutationFetcher, getCreateInboxMutationKey, getCreateInboxUrl, getCreateInboxWebhookMutationFetcher, getCreateInboxWebhookMutationKey, getCreateInboxWebhookUrl, getCreateInformationRequestMutationFetcher, getCreateInformationRequestMutationKey, getCreateInformationRequestUrl, getCreateNotificationWebhookMutationFetcher, getCreateNotificationWebhookMutationKey, getCreateNotificationWebhookUrl, getCreateScheduleMutationFetcher, getCreateScheduleMutationKey, getCreateScheduleUrl, getCreateSecretMutationFetcher, getCreateSecretMutationKey, getCreateSecretUrl, getCreateToolMutationFetcher, getCreateToolMutationKey, getCreateToolUrl, getCreateVoiceAgentMutationFetcher, getCreateVoiceAgentMutationKey, getCreateVoiceAgentUrl, getCreateWorkerEvalFromRunMutationFetcher, getCreateWorkerEvalFromRunMutationKey, getCreateWorkerEvalFromRunUrl, getCreateWorkerMutationFetcher, getCreateWorkerMutationKey, getCreateWorkerRunMutationFetcher, getCreateWorkerRunMutationKey, getCreateWorkerRunUrl, getCreateWorkerUrl, getCreateWorkerWebhookMutationFetcher, getCreateWorkerWebhookMutationKey, getCreateWorkerWebhookUrl, getDeleteArtifactMutationFetcher, getDeleteArtifactMutationKey, getDeleteArtifactUrl, getDeleteCallFeedbackMutationFetcher, getDeleteCallFeedbackMutationKey, getDeleteCallFeedbackUrl, getDeleteCaseMutationFetcher, getDeleteCaseMutationKey, getDeleteCaseUrl, getDeleteChatAgentMutationFetcher, getDeleteChatAgentMutationKey, getDeleteChatAgentUrl, getDeleteEmailMutationFetcher, getDeleteEmailMutationKey, getDeleteEmailUrl, getDeleteExtractorMutationFetcher, getDeleteExtractorMutationKey, getDeleteExtractorUrl, getDeleteInboxMutationFetcher, getDeleteInboxMutationKey, getDeleteInboxUrl, getDeleteScheduleMutationFetcher, getDeleteScheduleMutationKey, getDeleteScheduleUrl, getDeleteSecretMutationFetcher, getDeleteSecretMutationKey, getDeleteSecretUrl, getDeleteToolMutationFetcher, getDeleteToolMutationKey, getDeleteToolUrl, getDeleteVoiceAgentMutationFetcher, getDeleteVoiceAgentMutationKey, getDeleteVoiceAgentUrl, getDeleteWebhookMutationFetcher, getDeleteWebhookMutationKey, getDeleteWebhookUrl, getDeleteWorkerMutationFetcher, getDeleteWorkerMutationKey, getDeleteWorkerUrl, getEmail, getEvalRun, getExecuteCodeMutationFetcher, getExecuteCodeMutationKey, getExecuteCodeUrl, getExtract, getExtractCitations, getExtractor, getExtractorJob, getGetAnalyticsTimeSeriesKey, getGetAnalyticsTimeSeriesUrl, getGetArtifactKey, getGetArtifactMetadataKeysKey, getGetArtifactMetadataKeysUrl, getGetArtifactStatusSummaryKey, getGetArtifactStatusSummaryUrl, getGetArtifactUploadUrlMutationFetcher, getGetArtifactUploadUrlMutationKey, getGetArtifactUploadUrlUrl, getGetArtifactUrl, getGetBenchmarkKey, getGetBenchmarkUrl, getGetCallAnalyticsKey, getGetCallAnalyticsUrl, getGetCallEvaluationKey, getGetCallEvaluationUrl, getGetCallKey, getGetCallUrl, getGetCaseKey, getGetCaseUrl, getGetChatAgentKey, getGetChatAgentPromptKey, getGetChatAgentPromptUrl, getGetChatAgentUrl, getGetChatKey, getGetChatUrl, getGetEmailKey, getGetEmailUrl, getGetEvalRunKey, getGetEvalRunUrl, getGetExtractCitationsKey, getGetExtractCitationsUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetInformationRequestKey, getGetInformationRequestUrl, getGetNotificationKey, getGetNotificationUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetPartnerJwksKey, getGetPartnerJwksUrl, getGetProfileKey, getGetProfileUrl, getGetPublicChatAgentKey, getGetPublicChatAgentUrl, getGetScheduleKey, getGetScheduleUrl, getGetSecretKey, getGetSecretUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetTenantSettingsKey, getGetTenantSettingsUrl, getGetToolKey, getGetToolUrl, getGetToolVersionChangeSummaryKey, getGetToolVersionChangeSummaryUrl, getGetToolVersionKey, getGetToolVersionUrl, getGetVoiceAgentKey, getGetVoiceAgentPlaceholdersKey, getGetVoiceAgentPlaceholdersUrl, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, getGetVoiceAgentVersionChangeSummaryKey, getGetVoiceAgentVersionChangeSummaryUrl, getGetVoiceAgentVersionKey, getGetVoiceAgentVersionUrl, getGetWebhookKey, getGetWebhookUrl, getGetWorkerKey, getGetWorkerPromptKey, getGetWorkerPromptUrl, getGetWorkerRunKey, getGetWorkerRunUrl, getGetWorkerUrl, getGetWorkerVersionChangeSummaryKey, getGetWorkerVersionChangeSummaryUrl, getGetWorkerVersionKey, getGetWorkerVersionUrl, getInformationRequest, getInviteTeamMemberMutationFetcher, getInviteTeamMemberMutationKey, getInviteTeamMemberUrl, getListAgentWebhooksKey, getListAgentWebhooksUrl, getListApiKeysKey, getListApiKeysUrl, getListArtifactsKey, getListArtifactsUrl, getListCallFeedbackKey, getListCallFeedbackUrl, getListCallsKey, getListCallsUrl, getListCaseLinksKey, getListCaseLinksUrl, getListCasesKey, getListCasesUrl, getListChatAgentsKey, getListChatAgentsUrl, getListChatMessagesKey, getListChatMessagesUrl, getListChatsKey, getListChatsUrl, getListDispatchesKey, getListDispatchesUrl, getListEmailThreadsKey, getListEmailThreadsUrl, getListEmailsKey, getListEmailsUrl, getListExtractorJobsKey, getListExtractorJobsUrl, getListExtractorsKey, getListExtractorsUrl, getListExtractsKey, getListExtractsUrl, getListInboxWebhooksKey, getListInboxWebhooksUrl, getListInboxesKey, getListInboxesUrl, getListInformationRequestsKey, getListInformationRequestsUrl, getListJobsKey, getListJobsUrl, getListNotificationWebhooksKey, getListNotificationWebhooksUrl, getListNotificationsKey, getListNotificationsUrl, getListSchedulesKey, getListSchedulesUrl, getListSecretsKey, getListSecretsUrl, getListTeamInvitationsKey, getListTeamInvitationsUrl, getListTeamMembersKey, getListTeamMembersUrl, getListToolVersionsKey, getListToolVersionsUrl, getListToolsKey, getListToolsUrl, getListVoiceAgentVersionsKey, getListVoiceAgentVersionsUrl, getListVoiceAgentsKey, getListVoiceAgentsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getListWorkerModelsKey, getListWorkerModelsUrl, getListWorkerRunMessagesKey, getListWorkerRunMessagesUrl, getListWorkerRunsKey, getListWorkerRunsUrl, getListWorkerVersionsKey, getListWorkerVersionsUrl, getListWorkerWebhooksKey, getListWorkerWebhooksUrl, getListWorkersKey, getListWorkersUrl, getNotification, getNotifyAdminMutationFetcher, getNotifyAdminMutationKey, getNotifyAdminUrl, getOAuthUrl, getPartnerJwks, getPartnerLaunchMutationFetcher, getPartnerLaunchMutationKey, getPartnerLaunchUrl, getPostChatMessageMutationFetcher, getPostChatMessageMutationKey, getPostChatMessageUrl, getProfile, getPromoteToolVersionMutationFetcher, getPromoteToolVersionMutationKey, getPromoteToolVersionUrl, getPromoteVoiceAgentVersionMutationFetcher, getPromoteVoiceAgentVersionMutationKey, getPromoteVoiceAgentVersionUrl, getPromoteWorkerVersionMutationFetcher, getPromoteWorkerVersionMutationKey, getPromoteWorkerVersionUrl, getPublicChatAgent, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRemoveCaseLinkMutationFetcher, getRemoveCaseLinkMutationKey, getRemoveCaseLinkUrl, getRemoveMemberMutationFetcher, getRemoveMemberMutationKey, getRemoveMemberUrl, getReplyToEmailMutationFetcher, getReplyToEmailMutationKey, getReplyToEmailUrl, getRequestPasswordResetMutationFetcher, getRequestPasswordResetMutationKey, getRequestPasswordResetUrl, getResendTeamInvitationMutationFetcher, getResendTeamInvitationMutationKey, getResendTeamInvitationUrl, getResetPasswordMutationFetcher, getResetPasswordMutationKey, getResetPasswordUrl, getResolveInformationRequestMutationFetcher, getResolveInformationRequestMutationKey, getResolveInformationRequestUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getRevokeTeamInvitationMutationFetcher, getRevokeTeamInvitationMutationKey, getRevokeTeamInvitationUrl, getRunEvalMutationFetcher, getRunEvalMutationKey, getRunEvalUrl, getSchedule, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSearchCasesKey, getSearchCasesUrl, getSecret, getSendEmailMutationFetcher, getSendEmailMutationKey, getSendEmailUrl, getSessionToken, getSignInMutationFetcher, getSignInMutationKey, getSignInUrl, getSignUpMutationFetcher, getSignUpMutationKey, getSignUpUrl, getTenantSettings, getTestWebhookMutationFetcher, getTestWebhookMutationKey, getTestWebhookUrl, getTool, getToolVersion, getToolVersionChangeSummary, getUpdateApiKeyMutationFetcher, getUpdateApiKeyMutationKey, getUpdateApiKeyUrl, getUpdateArtifactMetadataMutationFetcher, getUpdateArtifactMetadataMutationKey, getUpdateArtifactMetadataUrl, getUpdateCallControlsMutationFetcher, getUpdateCallControlsMutationKey, getUpdateCallControlsUrl, getUpdateChatAgentMutationFetcher, getUpdateChatAgentMutationKey, getUpdateChatAgentPromptMutationFetcher, getUpdateChatAgentPromptMutationKey, getUpdateChatAgentPromptUrl, getUpdateChatAgentUrl, getUpdateExtractorMutationFetcher, getUpdateExtractorMutationKey, getUpdateExtractorUrl, getUpdateInboxMutationFetcher, getUpdateInboxMutationKey, getUpdateInboxUrl, getUpdateMemberRoleMutationFetcher, getUpdateMemberRoleMutationKey, getUpdateMemberRoleUrl, getUpdateScheduleMutationFetcher, getUpdateScheduleMutationKey, getUpdateScheduleUrl, getUpdateSecretMutationFetcher, getUpdateSecretMutationKey, getUpdateSecretUrl, getUpdateTenantSettingsMutationFetcher, getUpdateTenantSettingsMutationKey, getUpdateTenantSettingsUrl, getUpdateToolMutationFetcher, getUpdateToolMutationKey, getUpdateToolUrl, getUpdateVoiceAgentModelsMutationFetcher, getUpdateVoiceAgentModelsMutationKey, getUpdateVoiceAgentModelsUrl, getUpdateVoiceAgentMutationFetcher, getUpdateVoiceAgentMutationKey, getUpdateVoiceAgentPromptMutationFetcher, getUpdateVoiceAgentPromptMutationKey, getUpdateVoiceAgentPromptUrl, getUpdateVoiceAgentUrl, getUpdateWebhookMutationFetcher, getUpdateWebhookMutationKey, getUpdateWebhookUrl, getUpdateWorkerMcpsMutationFetcher, getUpdateWorkerMcpsMutationKey, getUpdateWorkerMcpsUrl, getUpdateWorkerMutationFetcher, getUpdateWorkerMutationKey, getUpdateWorkerPromptMutationFetcher, getUpdateWorkerPromptMutationKey, getUpdateWorkerPromptUrl, getUpdateWorkerUrl, getUploadFileMutationFetcher, getUploadFileMutationKey, getUploadFileUrl, getVoiceAgent, getVoiceAgentPlaceholders, getVoiceAgentPrompt, getVoiceAgentVersion, getVoiceAgentVersionChangeSummary, getWebhook, getWorker, getWorkerExecuteToolMutationFetcher, getWorkerExecuteToolMutationKey, getWorkerExecuteToolUrl, getWorkerGetToolKey, getWorkerGetToolUrl, getWorkerListToolsKey, getWorkerListToolsUrl, getWorkerPrompt, getWorkerRun, getWorkerVersion, getWorkerVersionChangeSummary, inviteTeamMember, listAgentWebhooks, listApiKeys, listArtifacts, listCallFeedback, listCalls, listCaseLinks, listCases, listChatAgents, listChatMessages, listChats, listDispatches, listEmailThreads, listEmails, listExtractorJobs, listExtractors, listExtracts, listInboxWebhooks, listInboxes, listInformationRequests, listJobs, listNotificationWebhooks, listNotifications, listSchedules, listSecrets, listTeamInvitations, listTeamMembers, listToolVersions, listTools, listVoiceAgentVersions, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerModels, listWorkerRunMessages, listWorkerRuns, listWorkerVersions, listWorkerWebhooks, listWorkers, notifyAdmin, partnerLaunch, postChatMessage, promoteToolVersion, promoteVoiceAgentVersion, promoteWorkerVersion, refreshToken, removeCaseLink, removeMember, replyToEmail, requestPasswordReset, resendTeamInvitation, resetPassword, resolveInformationRequest, revokeApiKey, revokeTeamInvitation, runEval, scheduleJob, searchCases, sendEmail, signIn, signUp, testWebhook, updateApiKey, updateArtifactMetadata, updateCallControls, updateChatAgent, updateChatAgentPrompt, updateExtractor, updateInbox, updateMemberRole, updateSchedule, updateSecret, updateTenantSettings, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateVoiceAgentPrompt, updateWebhook, updateWorker, updateWorkerMcps, updateWorkerPrompt, uploadFile, useAddCaseLinks, useCancelJob, useCancelWorkerRun, useCheckInboxAvailability, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateCase, useCreateChat, useCreateChatAgent, useCreateEvalBenchmark, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateInbox, useCreateInboxWebhook, useCreateInformationRequest, useCreateNotificationWebhook, useCreateSchedule, useCreateSecret, useCreateTool, useCreateVoiceAgent, useCreateWorker, useCreateWorkerEvalFromRun, useCreateWorkerRun, useCreateWorkerWebhook, useDeleteArtifact, useDeleteCallFeedback, useDeleteCase, useDeleteChatAgent, useDeleteEmail, useDeleteExtractor, useDeleteInbox, useDeleteSchedule, useDeleteSecret, useDeleteTool, useDeleteVoiceAgent, useDeleteWebhook, useDeleteWorker, useExecuteCode, useGetAnalyticsTimeSeries, useGetArtifact, useGetArtifactMetadataKeys, useGetArtifactStatusSummary, useGetArtifactUploadUrl, useGetBenchmark, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetCase, useGetChat, useGetChatAgent, useGetChatAgentPrompt, useGetEmail, useGetEvalRun, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetInformationRequest, useGetNotification, useGetOAuthUrl, useGetPartnerJwks, useGetProfile, useGetPublicChatAgent, useGetSchedule, useGetSecret, useGetSessionToken, useGetTenantSettings, useGetTool, useGetToolVersion, useGetToolVersionChangeSummary, useGetVoiceAgent, useGetVoiceAgentPlaceholders, useGetVoiceAgentPrompt, useGetVoiceAgentVersion, useGetVoiceAgentVersionChangeSummary, useGetWebhook, useGetWorker, useGetWorkerPrompt, useGetWorkerRun, useGetWorkerVersion, useGetWorkerVersionChangeSummary, useInviteTeamMember, useListAgentWebhooks, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListCaseLinks, useListCases, useListChatAgents, useListChatMessages, useListChats, useListDispatches, useListEmailThreads, useListEmails, useListExtractorJobs, useListExtractors, useListExtracts, useListInboxWebhooks, useListInboxes, useListInformationRequests, useListJobs, useListNotificationWebhooks, useListNotifications, useListSchedules, useListSecrets, useListTeamInvitations, useListTeamMembers, useListToolVersions, useListTools, useListVoiceAgentVersions, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerModels, useListWorkerRunMessages, useListWorkerRuns, useListWorkerVersions, useListWorkerWebhooks, useListWorkers, useNotifyAdmin, usePartnerLaunch, usePostChatMessage, usePromoteToolVersion, usePromoteVoiceAgentVersion, usePromoteWorkerVersion, useRefreshToken, useRemoveCaseLink, useRemoveMember, useReplyToEmail, useRequestPasswordReset, useResendTeamInvitation, useResetPassword, useResolveInformationRequest, useRevokeApiKey, useRevokeTeamInvitation, useRunEval, useScheduleJob, useSearchCases, useSendEmail, useSignIn, useSignUp, useTestWebhook, useUpdateApiKey, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateChatAgent, useUpdateChatAgentPrompt, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateSchedule, useUpdateSecret, useUpdateTenantSettings, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateVoiceAgentPrompt, useUpdateWebhook, useUpdateWorker, useUpdateWorkerMcps, useUpdateWorkerPrompt, useUploadFile, useWorkerExecuteTool, useWorkerGetTool, useWorkerListTools, workerExecuteTool, workerGetTool, workerListTools };
18072
+ export { type AddCaseLinksBody, type AddCaseLinksBodyEntitiesItem, AddCaseLinksBodyEntitiesItemEntityType, type AddCaseLinksEnvelope, AddCaseLinksEnvironment, type AddCaseLinksMutationResult, type AddCaseLinksParams, type AddCaseLinksResponse, type AnalyticsTimeSeries, AnalyticsTimeSeriesGranularity, AnalyticsTimeSeriesGroupBy, AnalyticsTimeSeriesMetric, type AnalyticsTimeSeriesPointsItem, type ApiKey, type ApiKeyCreated, ApiKeyCreatedRole, type ApiKeyList, ApiKeyRole, 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 ArtifactStatusSummary, type AuthTokens, type AvallonConfig, AvallonError, type Call, type CallAnalytics, type CallAnalyticsCallsOverTimeItem, type CallAnalyticsDurationDistributionItem, type CallAnalyticsEvaluationOverTimeItem, type CallAnalyticsMetricPerformanceItem, type CallAnalyticsScoreDistributionItem, type CallAnalyticsSummary, type CallDetail, CallDetailDirection, CallDetailEnvironment, type CallDetailEvaluation, type CallDetailMetadata, CallDirection, CallEnvironment, type CallEvaluation, type CallEvaluationMetricsItem, type CallEvaluationProperty, type CallList, type CallMessage, type CallMessageMetadata, type CallMessageToolArguments, type CallMessageToolResult, type CallMetadata, type CancelJobEnvelope, type CancelJobMutationResult, type CancelWorkerRunEnvelope, type CancelWorkerRunMutationResult, type CaseDetail, type CaseLink, CaseLinkEntityType, type CaseLinkList, type CaseList, type CaseSearchResult, type CaseSummary, CaseSummaryEnvironment, 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 CheckInboxAvailabilityEnvelope, type CheckInboxAvailabilityParams, type CheckInboxAvailabilityQueryResult, type CodeTool, type CodeToolCreated, type CodeToolCreatedTool, type CodeToolCreatedToolSchema, type CodeToolSchema, type CodeToolSummary, type CodeToolUpdated, type ConfirmationResponse, type CreateAgentWebhookBody, CreateAgentWebhookBodyEnvironmentsItem, type CreateAgentWebhookEnvelope, type CreateAgentWebhookMutationResult, type CreateApiKeyBody, CreateApiKeyBodyEnvironment, CreateApiKeyBodyRole, type CreateApiKeyEnvelope, type CreateApiKeyMutationResult, type CreateArtifactBody, type CreateArtifactBodyMetadata, type CreateArtifactBodyProcessingOptions, type CreateArtifactEnvelope, type CreateArtifactMutationResult, type CreateCallFeedbackEnvelope, type CreateCallFeedbackMutationResult, type CreateCaseBody, CreateCaseBodyEnvironment, type CreateCaseEnvelope, type CreateCaseMutationResult, type CreateCaseResponse, type CreateChatAgentBody, type CreateChatAgentEnvelope, type CreateChatAgentMutationResult, type CreateChatBody, type CreateChatEnvelope, type CreateChatMutationResult, type CreateEvalBenchmarkBody, type CreateEvalBenchmarkEnvelope, type CreateEvalBenchmarkEnvelopeData, type CreateEvalBenchmarkEnvelopeDataRunSummary, type CreateEvalBenchmarkEnvelopeDataRunSummaryBaseline, type CreateEvalBenchmarkEnvelopeDataRunSummaryBaselineDurationSeconds, type CreateEvalBenchmarkEnvelopeDataRunSummaryBaselineFixtureMatchedRate, type CreateEvalBenchmarkEnvelopeDataRunSummaryBaselinePassRate, type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidate, type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidateDurationSeconds, type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidateFixtureMatchedRate, type CreateEvalBenchmarkEnvelopeDataRunSummaryCandidatePassRate, type CreateEvalBenchmarkEnvelopeDataRunSummaryDelta, type CreateEvalBenchmarkEnvelopeDataRunsItem, CreateEvalBenchmarkEnvelopeDataRunsItemConfiguration, type CreateEvalBenchmarkEnvelopeDataRunsItemGrading, type CreateEvalBenchmarkEnvelopeDataRunsItemGradingExpectationsItem, type CreateEvalBenchmarkEnvelopeDataRunsItemGradingSummary, type CreateEvalBenchmarkEnvelopeDataRunsItemMetrics, type CreateEvalBenchmarkEnvelopeDataRunsItemMetricsFixtureHealth, CreateEvalBenchmarkEnvelopeDataRunsItemStatus, CreateEvalBenchmarkEnvelopeDataStatus, type CreateEvalBenchmarkMutationResult, type CreateExtractorBody, type CreateExtractorBodySchema, type CreateExtractorEnvelope, type CreateExtractorJobBody, type CreateExtractorJobBodyScope, type CreateExtractorJobEnvelope, type CreateExtractorJobMutationResult, type CreateExtractorMutationResult, type CreateExtractorWebhookBody, CreateExtractorWebhookBodyEnvironmentsItem, type CreateExtractorWebhookEnvelope, type CreateExtractorWebhookMutationResult, type CreateFeedbackRequest, type CreateInboxBody, CreateInboxBodyProcessorType, type CreateInboxEnvelope, type CreateInboxMutationResult, type CreateInboxWebhookBody, CreateInboxWebhookBodyEnvironmentsItem, type CreateInboxWebhookEnvelope, type CreateInboxWebhookMutationResult, type CreateInformationRequestBody, type CreateInformationRequestBodyMetadata, type CreateInformationRequestEnvelope, type CreateInformationRequestMutationResult, type CreateNotificationWebhookBody, CreateNotificationWebhookBodyEnvironmentsItem, type CreateNotificationWebhookEnvelope, type CreateNotificationWebhookMutationResult, type CreateScheduleBody, CreateScheduleBodyEnvironmentsItem, type CreateScheduleEnvelope, type CreateScheduleMutationResult, type CreateSecretBody, type CreateSecretEnvelope, type CreateSecretMutationResult, type CreateToolBody, type CreateToolEnvelope, type CreateToolMutationResult, type CreateVoiceAgentBody, CreateVoiceAgentBodyCallProcessorType, CreateVoiceAgentBodyDirection, CreateVoiceAgentBodyLanguage, CreateVoiceAgentBodyLlmModel, CreateVoiceAgentBodySttModel, CreateVoiceAgentBodyTtsModel, CreateVoiceAgentBodyTtsProvider, type CreateVoiceAgentEnvelope, type CreateVoiceAgentMutationResult, type CreateVoiceAgentResponse, type CreateWorkerBenchmarksBody, type CreateWorkerBenchmarksEnvelope, type CreateWorkerBenchmarksEnvelopeDataItem, type CreateWorkerBenchmarksEnvelopeDataItemRunSummary, type CreateWorkerBenchmarksEnvelopeDataItemRunSummaryBaseline, type CreateWorkerBenchmarksEnvelopeDataItemRunSummaryBaselineDurationSeconds, type CreateWorkerBenchmarksEnvelopeDataItemRunSummaryBaselineFixtureMatchedRate, type CreateWorkerBenchmarksEnvelopeDataItemRunSummaryBaselinePassRate, type CreateWorkerBenchmarksEnvelopeDataItemRunSummaryCandidate, type CreateWorkerBenchmarksEnvelopeDataItemRunSummaryCandidateDurationSeconds, type CreateWorkerBenchmarksEnvelopeDataItemRunSummaryCandidateFixtureMatchedRate, type CreateWorkerBenchmarksEnvelopeDataItemRunSummaryCandidatePassRate, type CreateWorkerBenchmarksEnvelopeDataItemRunSummaryDelta, CreateWorkerBenchmarksEnvelopeDataItemStatus, type CreateWorkerBenchmarksMutationResult, type CreateWorkerBody, CreateWorkerBodyMcpType, type CreateWorkerEnvelope, type CreateWorkerEvalFromRunBody, type CreateWorkerEvalFromRunBodyGrader, type CreateWorkerEvalFromRunEnvelope, type CreateWorkerEvalFromRunEnvelopeData, type CreateWorkerEvalFromRunEnvelopeDataFixture, type CreateWorkerEvalFromRunEnvelopeDataFixtureScope, type CreateWorkerEvalFromRunEnvelopeDataGrader, type CreateWorkerEvalFromRunEnvelopeDataSource, CreateWorkerEvalFromRunEnvelopeDataSourceType, type CreateWorkerEvalFromRunEnvelopeDataTarget, CreateWorkerEvalFromRunEnvelopeDataTargetType, type CreateWorkerEvalFromRunEnvelopeDataToolMocksItem, type CreateWorkerEvalFromRunEnvelopeDataToolMocksItemInputSchema, type CreateWorkerEvalFromRunEnvelopeDataToolMocksItemMatch, type CreateWorkerEvalFromRunMutationResult, type CreateWorkerMutationResult, type CreateWorkerRunBody, CreateWorkerRunBodyEnvironment, type CreateWorkerRunBodyScope, type CreateWorkerRunEnvelope, type CreateWorkerRunMutationResult, type CreateWorkerWebhookBody, CreateWorkerWebhookBodyEnvironmentsItem, type CreateWorkerWebhookEnvelope, type CreateWorkerWebhookMutationResult, type DeleteArtifactEnvelope, type DeleteArtifactMutationResult, type DeleteArtifactResponse, type DeleteCallFeedbackEnvelope, type DeleteCallFeedbackMutationResult, type DeleteCaseEnvelope, DeleteCaseEnvironment, type DeleteCaseMutationResult, type DeleteCaseParams, type DeleteCaseResponse, type DeleteChatAgentEnvelope, type DeleteChatAgentMutationResult, type DeleteChatAgentResponse, type DeleteEmailEnvelope, type DeleteEmailMutationResult, type DeleteEmailResponse, type DeleteExtractorEnvelope, type DeleteExtractorMutationResult, type DeleteExtractorResponse, type DeleteInboxEnvelope, type DeleteInboxMutationResult, type DeleteInboxResponse, type DeleteScheduleEnvelope, type DeleteScheduleMutationResult, type DeleteScheduleResponse, type DeleteSecretEnvelope, type DeleteSecretMutationResult, type DeleteSecretResponse, type DeleteToolEnvelope, type DeleteToolMutationResult, type DeleteToolResponse, type DeleteVoiceAgentEnvelope, type DeleteVoiceAgentMutationResult, type DeleteVoiceAgentResponse, type DeleteWebhookEnvelope, type DeleteWebhookMutationResult, type DeleteWebhookResponse, type DeleteWorkerEnvelope, type DeleteWorkerMutationResult, type DeleteWorkerResponse, type Dispatch, DispatchEnvironment, type DispatchList, DispatchStatus, type DispatchTarget, DispatchTargetType, type DispatchTrigger, DispatchTriggerType, type Email, type EmailDetail, EmailDetailDirection, EmailDetailEnvironment, EmailDetailIgnoredReason, EmailDirection, EmailEnvironment, EmailIgnoredReason, type EmailList, type EmailReplyResult, EmailReplyResultValue, type EmailSendResult, type EmailThread, EmailThreadEnvironment, type EmailThreadList, type ErrorResponse, type ErrorResponseData, type ExecuteCodeBody, ExecuteCodeBodyEnvironment, type ExecuteCodeBodyParams, type ExecuteCodeEnvelope, type ExecuteCodeMutationResult, type Extract, type ExtractList, type ExtractProcessorScope, type ExtractSummary, type ExtractSummaryProcessorScope, 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 GetAnalyticsTimeSeriesEnvelope, GetAnalyticsTimeSeriesGranularity, GetAnalyticsTimeSeriesGroupBy, GetAnalyticsTimeSeriesMetric, type GetAnalyticsTimeSeriesParams, type GetAnalyticsTimeSeriesQueryResult, type GetArtifactEnvelope, type GetArtifactMetadataKeysEnvelope, type GetArtifactMetadataKeysParams, type GetArtifactMetadataKeysQueryResult, type GetArtifactQueryResult, type GetArtifactStatusSummaryEnvelope, type GetArtifactStatusSummaryParams, type GetArtifactStatusSummaryQueryResult, type GetArtifactUploadUrlBody, type GetArtifactUploadUrlEnvelope, type GetArtifactUploadUrlEnvelopeData, type GetArtifactUploadUrlMutationResult, type GetBenchmarkEnvelope, type GetBenchmarkEnvelopeData, type GetBenchmarkEnvelopeDataRunSummary, type GetBenchmarkEnvelopeDataRunSummaryBaseline, type GetBenchmarkEnvelopeDataRunSummaryBaselineDurationSeconds, type GetBenchmarkEnvelopeDataRunSummaryBaselineFixtureMatchedRate, type GetBenchmarkEnvelopeDataRunSummaryBaselinePassRate, type GetBenchmarkEnvelopeDataRunSummaryCandidate, type GetBenchmarkEnvelopeDataRunSummaryCandidateDurationSeconds, type GetBenchmarkEnvelopeDataRunSummaryCandidateFixtureMatchedRate, type GetBenchmarkEnvelopeDataRunSummaryCandidatePassRate, type GetBenchmarkEnvelopeDataRunSummaryDelta, type GetBenchmarkEnvelopeDataRunsItem, GetBenchmarkEnvelopeDataRunsItemConfiguration, type GetBenchmarkEnvelopeDataRunsItemGrading, type GetBenchmarkEnvelopeDataRunsItemGradingExpectationsItem, type GetBenchmarkEnvelopeDataRunsItemGradingSummary, type GetBenchmarkEnvelopeDataRunsItemMetrics, type GetBenchmarkEnvelopeDataRunsItemMetricsFixtureHealth, GetBenchmarkEnvelopeDataRunsItemStatus, GetBenchmarkEnvelopeDataStatus, type GetBenchmarkQueryResult, type GetCallAnalyticsEnvelope, type GetCallAnalyticsParams, type GetCallAnalyticsQueryResult, type GetCallEnvelope, type GetCallEvaluationEnvelope, type GetCallEvaluationQueryResult, type GetCallParams, type GetCallQueryResult, type GetCaseEnvelope, GetCaseEnvironment, type GetCaseParams, type GetCaseQueryResult, type GetChatAgentEnvelope, type GetChatAgentPromptEnvelope, type GetChatAgentPromptQueryResult, type GetChatAgentQueryResult, type GetChatEnvelope, type GetChatQueryResult, type GetEmailEnvelope, type GetEmailQueryResult, type GetEvalRunEnvelope, type GetEvalRunEnvelopeData, GetEvalRunEnvelopeDataConfiguration, type GetEvalRunEnvelopeDataGrading, type GetEvalRunEnvelopeDataGradingExpectationsItem, type GetEvalRunEnvelopeDataGradingSummary, type GetEvalRunEnvelopeDataMetrics, type GetEvalRunEnvelopeDataMetricsFixtureHealth, GetEvalRunEnvelopeDataStatus, type GetEvalRunQueryResult, type GetExtractCitationsEnvelope, type GetExtractCitationsEnvelopeData, type GetExtractCitationsEnvelopeDataChunks, type GetExtractCitationsEnvelopeDataChunksBoundingBox, type GetExtractCitationsQueryResult, type GetExtractEnvelope, type GetExtractQueryResult, type GetExtractorEnvelope, type GetExtractorJobEnvelope, type GetExtractorJobQueryResult, type GetExtractorJobResponse, type GetExtractorQueryResult, type GetExtractorResponse, type GetInformationRequestEnvelope, type GetInformationRequestQueryResult, type GetNotificationEnvelope, type GetNotificationQueryResult, GetOAuthUrlCodeChallengeMethod, type GetOAuthUrlEnvelope, type GetOAuthUrlParams, GetOAuthUrlProvider, type GetOAuthUrlQueryResult, type GetPartnerJwksQueryResult, type GetProfileEnvelope, type GetProfileQueryResult, type GetPublicChatAgentEnvelope, type GetPublicChatAgentQueryResult, type GetScheduleEnvelope, type GetScheduleQueryResult, type GetSecretEnvelope, type GetSecretQueryResult, type GetSessionTokenBody, type GetSessionTokenEnvelope, type GetSessionTokenEnvelopeData, type GetSessionTokenMutationResult, type GetTenantSettingsEnvelope, type GetTenantSettingsQueryResult, type GetToolEnvelope, type GetToolQueryResult, type GetToolResponse, type GetToolVersionChangeSummaryEnvelope, type GetToolVersionChangeSummaryQueryResult, type GetToolVersionEnvelope, type GetToolVersionQueryResult, type GetVoiceAgentEnvelope, type GetVoiceAgentPlaceholdersEnvelope, type GetVoiceAgentPlaceholdersQueryResult, type GetVoiceAgentPromptEnvelope, type GetVoiceAgentPromptParams, type GetVoiceAgentPromptQueryResult, type GetVoiceAgentQueryResult, type GetVoiceAgentResponse, type GetVoiceAgentVersionChangeSummaryEnvelope, type GetVoiceAgentVersionChangeSummaryQueryResult, type GetVoiceAgentVersionEnvelope, type GetVoiceAgentVersionQueryResult, type GetWebhookEnvelope, type GetWebhookQueryResult, type GetWorkerEnvelope, type GetWorkerPromptEnvelope, type GetWorkerPromptParams, type GetWorkerPromptQueryResult, type GetWorkerQueryResult, type GetWorkerRunEnvelope, type GetWorkerRunQueryResult, type GetWorkerRunResponse, type GetWorkerVersionChangeSummaryEnvelope, type GetWorkerVersionChangeSummaryQueryResult, type GetWorkerVersionEnvelope, type GetWorkerVersionQueryResult, type Inbox, type InboxAddresses, type InboxAvailability, type InboxList, InboxProcessorType, type InboxWebhookList, type InformationRequest, InformationRequestEnvironment, type InformationRequestList, type InformationRequestMetadata, type InviteTeamMemberBody, type InviteTeamMemberEnvelope, type InviteTeamMemberMutationResult, type ListAgentWebhooksEnvelope, ListAgentWebhooksEnvironment, type ListAgentWebhooksParams, type ListAgentWebhooksQueryResult, type ListApiKeysEnvelope, ListApiKeysIncludeRevoked, type ListApiKeysParams, type ListApiKeysQueryResult, type ListArtifactsEnvelope, type ListArtifactsEnvelopeMeta, ListArtifactsEnvironment, type ListArtifactsParams, type ListArtifactsQueryResult, ListArtifactsSortBy, ListArtifactsSortOrder, ListArtifactsStatus, type ListCallFeedbackEnvelope, type ListCallFeedbackEnvelopeMeta, type ListCallFeedbackParams, type ListCallFeedbackQueryResult, ListCallFeedbackSortBy, ListCallFeedbackSortOrder, ListCallsDirection, type ListCallsEnvelope, type ListCallsEnvelopeMeta, ListCallsEnvironment, type ListCallsParams, type ListCallsQueryResult, ListCallsSortBy, ListCallsSortOrder, ListCallsStatus, ListCaseLinksEntityType, type ListCaseLinksEnvelope, type ListCaseLinksEnvelopeMeta, ListCaseLinksEnvironment, type ListCaseLinksParams, type ListCaseLinksQueryResult, ListCaseLinksSortBy, ListCaseLinksSortOrder, type ListCasesEnvelope, type ListCasesEnvelopeMeta, ListCasesEnvironment, type ListCasesParams, type ListCasesQueryResult, ListCasesSortBy, ListCasesSortOrder, type ListChatAgentsEnvelope, type ListChatAgentsEnvelopeMeta, type ListChatAgentsParams, type ListChatAgentsQueryResult, ListChatAgentsSortBy, ListChatAgentsSortOrder, type ListChatMessagesEnvelope, type ListChatMessagesEnvelopeMeta, type ListChatMessagesParams, type ListChatMessagesQueryResult, ListChatMessagesSortBy, ListChatMessagesSortOrder, type ListChatsEnvelope, type ListChatsEnvelopeMeta, ListChatsEnvironment, type ListChatsParams, type ListChatsQueryResult, ListChatsSortBy, ListChatsSortOrder, type ListDispatchesEnvelope, type ListDispatchesEnvelopeMeta, type ListDispatchesParams, type ListDispatchesQueryResult, ListDispatchesSortBy, ListDispatchesSortOrder, ListDispatchesTriggerType, type ListEmailThreadsEnvelope, type ListEmailThreadsEnvelopeMeta, ListEmailThreadsEnvironment, type ListEmailThreadsParams, type ListEmailThreadsQueryResult, ListEmailThreadsSortBy, ListEmailThreadsSortOrder, type ListEmailsEnvelope, type ListEmailsEnvelopeMeta, ListEmailsEnvironment, type ListEmailsParams, type ListEmailsQueryResult, ListEmailsSortBy, ListEmailsSortOrder, type ListEvalBenchmarksEnvelope, type ListEvalBenchmarksEnvelopeDataItem, type ListEvalBenchmarksEnvelopeDataItemRunSummary, type ListEvalBenchmarksEnvelopeDataItemRunSummaryBaseline, type ListEvalBenchmarksEnvelopeDataItemRunSummaryBaselineDurationSeconds, type ListEvalBenchmarksEnvelopeDataItemRunSummaryBaselineFixtureMatchedRate, type ListEvalBenchmarksEnvelopeDataItemRunSummaryBaselinePassRate, type ListEvalBenchmarksEnvelopeDataItemRunSummaryCandidate, type ListEvalBenchmarksEnvelopeDataItemRunSummaryCandidateDurationSeconds, type ListEvalBenchmarksEnvelopeDataItemRunSummaryCandidateFixtureMatchedRate, type ListEvalBenchmarksEnvelopeDataItemRunSummaryCandidatePassRate, type ListEvalBenchmarksEnvelopeDataItemRunSummaryDelta, ListEvalBenchmarksEnvelopeDataItemStatus, type ListEvalBenchmarksEnvelopeMeta, type ListEvalBenchmarksParams, type ListEvalBenchmarksQueryResult, ListEvalBenchmarksSortBy, ListEvalBenchmarksSortOrder, type ListExtractorJobsEnvelope, type ListExtractorJobsEnvelopeMeta, type ListExtractorJobsParams, type ListExtractorJobsQueryResult, ListExtractorJobsSortBy, ListExtractorJobsSortOrder, ListExtractorJobsStatus, type ListExtractorsEnvelope, type ListExtractorsEnvelopeMeta, type ListExtractorsParams, type ListExtractorsQueryResult, ListExtractorsSortBy, ListExtractorsSortOrder, type ListExtractsEnvelope, type ListExtractsEnvelopeMeta, ListExtractsEnvironment, type ListExtractsParams, type ListExtractsQueryResult, ListExtractsSortBy, ListExtractsSortOrder, type ListInboxWebhooksEnvelope, ListInboxWebhooksEnvironment, type ListInboxWebhooksParams, type ListInboxWebhooksQueryResult, type ListInboxesEnvelope, type ListInboxesEnvelopeMeta, type ListInboxesParams, type ListInboxesQueryResult, ListInboxesSortBy, ListInboxesSortOrder, type ListInformationRequestsEnvelope, type ListInformationRequestsEnvelopeMeta, ListInformationRequestsEnvironment, type ListInformationRequestsParams, type ListInformationRequestsQueryResult, ListInformationRequestsResolved, ListInformationRequestsSortBy, ListInformationRequestsSortOrder, type ListJobsEnvelope, type ListJobsEnvelopeMeta, type ListJobsParams, type ListJobsQueryResult, ListJobsStatusItem, type ListNotificationWebhooksEnvelope, ListNotificationWebhooksEnvironment, type ListNotificationWebhooksParams, type ListNotificationWebhooksQueryResult, type ListNotificationsEnvelope, type ListNotificationsEnvelopeMeta, type ListNotificationsParams, type ListNotificationsQueryResult, ListNotificationsSortBy, ListNotificationsSortOrder, type ListSchedulesEnvelope, type ListSchedulesEnvelopeMeta, ListSchedulesEnvironment, type ListSchedulesParams, type ListSchedulesQueryResult, ListSchedulesRuleType, ListSchedulesSortBy, ListSchedulesSortOrder, type ListSecretsEnvelope, type ListSecretsEnvelopeMeta, type ListSecretsParams, type ListSecretsQueryResult, ListSecretsSortBy, ListSecretsSortOrder, type ListTeamInvitationsEnvelope, type ListTeamInvitationsQueryResult, type ListTeamInvitationsResponse, type ListTeamMembersEnvelope, type ListTeamMembersQueryResult, type ListTeamMembersResponse, type ListToolVersionsEnvelope, type ListToolVersionsEnvelopeMeta, type ListToolVersionsParams, type ListToolVersionsQueryResult, ListToolVersionsSortBy, ListToolVersionsSortOrder, type ListToolsEnvelope, type ListToolsParams, type ListToolsQueryResult, ListToolsSortBy, ListToolsSortOrder, type ListVoiceAgentVersionsEnvelope, type ListVoiceAgentVersionsEnvelopeMeta, type ListVoiceAgentVersionsParams, type ListVoiceAgentVersionsQueryResult, ListVoiceAgentVersionsSortBy, ListVoiceAgentVersionsSortOrder, type ListVoiceAgentsEnvelope, type ListVoiceAgentsParams, type ListVoiceAgentsQueryResult, type ListWebhookDeliveriesEnvelope, type ListWebhookDeliveriesEnvelopeMeta, type ListWebhookDeliveriesParams, type ListWebhookDeliveriesQueryResult, ListWebhookDeliveriesSortOrder, type ListWebhooksEnvelope, ListWebhooksEnvironment, type ListWebhooksParams, type ListWebhooksQueryResult, type ListWorkerEvalsEnvelope, type ListWorkerEvalsEnvelopeDataItem, type ListWorkerEvalsEnvelopeDataItemFixture, type ListWorkerEvalsEnvelopeDataItemFixtureScope, type ListWorkerEvalsEnvelopeDataItemGrader, type ListWorkerEvalsEnvelopeDataItemSource, ListWorkerEvalsEnvelopeDataItemSourceType, type ListWorkerEvalsEnvelopeDataItemTarget, ListWorkerEvalsEnvelopeDataItemTargetType, type ListWorkerEvalsEnvelopeDataItemToolMocksItem, type ListWorkerEvalsEnvelopeDataItemToolMocksItemInputSchema, type ListWorkerEvalsEnvelopeDataItemToolMocksItemMatch, type ListWorkerEvalsEnvelopeMeta, type ListWorkerEvalsParams, type ListWorkerEvalsQueryResult, ListWorkerEvalsSortBy, ListWorkerEvalsSortOrder, type ListWorkerModelsEnvelope, type ListWorkerModelsQueryResult, type ListWorkerRunMessagesEnvelope, type ListWorkerRunMessagesParams, type ListWorkerRunMessagesQueryResult, type ListWorkerRunsEnvelope, type ListWorkerRunsEnvelopeMeta, ListWorkerRunsEnvironment, type ListWorkerRunsParams, type ListWorkerRunsQueryResult, ListWorkerRunsSortBy, ListWorkerRunsSortOrder, ListWorkerRunsStatus, type ListWorkerVersionsEnvelope, type ListWorkerVersionsEnvelopeMeta, type ListWorkerVersionsParams, type ListWorkerVersionsQueryResult, ListWorkerVersionsSortBy, ListWorkerVersionsSortOrder, type ListWorkerWebhooksEnvelope, ListWorkerWebhooksEnvironment, type ListWorkerWebhooksParams, type ListWorkerWebhooksQueryResult, type ListWorkersEnvelope, type ListWorkersEnvelopeMeta, type ListWorkersParams, type ListWorkersQueryResult, ListWorkersSortBy, ListWorkersSortOrder, type Notification, type NotificationList, type NotificationWebhookList, type NotifyAdminBody, type NotifyAdminEnvelope, type NotifyAdminMutationResult, type OAuthUrl, type OutboundJob, OutboundJobEnvironment, type OutboundJobList, type OutboundJobMetadata, type OutboundJobPayload, OutboundJobStatus, type PartnerJwks, type PartnerJwksKeysItem, type PartnerLaunchEnvelope, type PartnerLaunchEnvelopeData, type PartnerLaunchMutationResult, type PartnerLaunchParams, type PostChatMessageBody, type PostChatMessageEnvelope, type PostChatMessageMutationResult, type Profile, ProfilePermissionsItem, ProfileRole, type ProfileTenant, type ProfileTenants, type PromoteToolVersionBody, type PromoteToolVersionEnvelope, type PromoteToolVersionMutationResult, type PromoteVoiceAgentVersionBody, PromoteVoiceAgentVersionBodyEnvironment, type PromoteVoiceAgentVersionEnvelope, type PromoteVoiceAgentVersionMutationResult, type PromoteWorkerVersionBody, type PromoteWorkerVersionEnvelope, type PromoteWorkerVersionMutationResult, type PromotedToolVersion, type PromotedVoiceAgentVersion, PromotedVoiceAgentVersionEnvironment, type PromotedWorkerVersion, type PublicChatAgent, type RecurrencePattern, type RecurrencePatternOutput, type RefreshTokenBody, type RefreshTokenEnvelope, type RefreshTokenMutationResult, type RemoveCaseLinkEnvelope, RemoveCaseLinkEnvironment, type RemoveCaseLinkMutationResult, type RemoveCaseLinkParams, type RemoveCaseLinkResponse, type RemoveMemberMutationResult, type ReplyToEmailBody, type ReplyToEmailBodyAttachmentsItem, type ReplyToEmailEnvelope, type ReplyToEmailMutationResult, type RequestPasswordResetBody, type RequestPasswordResetEnvelope, type RequestPasswordResetMutationResult, type RequestPasswordResetResponse, type ResendTeamInvitationEnvelope, type ResendTeamInvitationMutationResult, type ResetPasswordBody, type ResetPasswordEnvelope, type ResetPasswordMutationResult, type ResetPasswordResponse, type ResolveInformationRequestBody, type ResolveInformationRequestEnvelope, type ResolveInformationRequestMutationResult, type RevokeApiKeyEnvelope, type RevokeApiKeyMutationResult, type RevokeTeamInvitationMutationResult, type RunEvalBody, type RunEvalEnvelope, type RunEvalEnvelopeData, RunEvalEnvelopeDataConfiguration, type RunEvalEnvelopeDataGrading, type RunEvalEnvelopeDataGradingExpectationsItem, type RunEvalEnvelopeDataGradingSummary, type RunEvalEnvelopeDataMetrics, type RunEvalEnvelopeDataMetricsFixtureHealth, RunEvalEnvelopeDataStatus, type RunEvalMutationResult, type Schedule, type ScheduleAction, type ScheduleActionOutput, ScheduleEnvironmentsItem, type ScheduleJobBody, ScheduleJobBodyEnvironment, type ScheduleJobBodyMetadata, type ScheduleJobBodyPayload, type ScheduleJobEnvelope, type ScheduleJobMutationResult, type ScheduleList, type ScheduleRule, type ScheduleRuleOutput, type SearchCasesEnvelope, type SearchCasesEnvelopeMeta, type SearchCasesParams, type SearchCasesQueryResult, type Secret, type SecretList, type SendEmailBody, type SendEmailBodyAttachmentsItem, SendEmailBodyEnvironment, type SendEmailEnvelope, type SendEmailMutationResult, type SignInBody, type SignInEnvelope, type SignInMutationResult, type SignUpBody, type SignUpEnvelope, type SignUpMutationResult, type SignUpResponse, type TeamInvitation, TeamInvitationState, type TeamMember, TeamMemberRole, type TenantSettings, type TestWebhookBody, TestWebhookBodyEnvironment, type TestWebhookEnvelope, type TestWebhookMutationResult, ToolEnvironment, type ToolExecutionResult, type ToolExecutionResultError, type ToolExecutionResultTracesItem, type ToolList, type ToolVersion, type ToolVersionChangeSummary, type ToolVersionDetail, type ToolVersionDetailSchema, type ToolVersionList, type ToolVersions, type UpdateApiKeyBody, UpdateApiKeyBodyRole, type UpdateApiKeyEnvelope, type UpdateApiKeyMutationResult, type UpdateArtifactMetadataBody, type UpdateArtifactMetadataBodyMetadata, type UpdateArtifactMetadataEnvelope, type UpdateArtifactMetadataMutationResult, type UpdateCallControlsBody, type UpdateCallControlsEnvelope, type UpdateCallControlsMutationResult, type UpdateChatAgentEnvelope, type UpdateChatAgentMutationResult, type UpdateChatAgentPromptBody, type UpdateChatAgentPromptEnvelope, type UpdateChatAgentPromptMutationResult, type UpdateChatAgentRequest, type UpdateExtractorBody, type UpdateExtractorBodySchema, type UpdateExtractorEnvelope, type UpdateExtractorMutationResult, type UpdateInboxBody, type UpdateInboxBodyProcessor, UpdateInboxBodyProcessorType, type UpdateInboxEnvelope, type UpdateInboxMutationResult, type UpdateMemberRoleBody, UpdateMemberRoleBodyRole, type UpdateMemberRoleEnvelope, type UpdateMemberRoleMutationResult, type UpdateMemberRoleResponse, type UpdateScheduleBody, UpdateScheduleBodyEnvironmentsItem, type UpdateScheduleEnvelope, type UpdateScheduleMutationResult, type UpdateSecretBody, type UpdateSecretEnvelope, type UpdateSecretMutationResult, type UpdateTenantSettingsBody, type UpdateTenantSettingsEnvelope, type UpdateTenantSettingsMutationResult, type UpdateToolBody, type UpdateToolEnvelope, type UpdateToolMutationResult, type UpdateVoiceAgentBody, UpdateVoiceAgentBodyCallProcessorType, UpdateVoiceAgentBodyNoiseCancellation, type UpdateVoiceAgentCallControlsResponse, type UpdateVoiceAgentEnvelope, type UpdateVoiceAgentModelsBody, UpdateVoiceAgentModelsBodyFallbackLlmModel, UpdateVoiceAgentModelsBodyFallbackSttModel, UpdateVoiceAgentModelsBodyFallbackTtsModel, UpdateVoiceAgentModelsBodyFallbackTtsProvider, UpdateVoiceAgentModelsBodyLanguage, UpdateVoiceAgentModelsBodyLlmModel, UpdateVoiceAgentModelsBodySttModel, UpdateVoiceAgentModelsBodyTtsModel, UpdateVoiceAgentModelsBodyTtsProvider, type UpdateVoiceAgentModelsEnvelope, type UpdateVoiceAgentModelsMutationResult, type UpdateVoiceAgentModelsResponse, type UpdateVoiceAgentMutationResult, type UpdateVoiceAgentPromptBody, type UpdateVoiceAgentPromptEnvelope, type UpdateVoiceAgentPromptMutationResult, type UpdateVoiceAgentResponse, type UpdateWebhookBody, type UpdateWebhookBodyAuth, UpdateWebhookBodyEnvironmentsItem, type UpdateWebhookEnvelope, type UpdateWebhookMutationResult, type UpdateWorkerBody, type UpdateWorkerBodySchema, type UpdateWorkerEnvelope, type UpdateWorkerMcpsBody, type UpdateWorkerMcpsEnvelope, type UpdateWorkerMcpsMutationResult, type UpdateWorkerMutationResult, type UpdateWorkerPromptBody, type UpdateWorkerPromptEnvelope, type UpdateWorkerPromptMutationResult, type UploadFileBody, type UploadFileBodyMetadata, type UploadFileBodyProcessingOptions, type UploadFileEnvelope, type UploadFileMutationResult, type UploadFileResponse, type VoiceAgent, VoiceAgentBackgroundSounds, VoiceAgentCallProcessorType, VoiceAgentDirection, VoiceAgentFallbackLlmModel, VoiceAgentFallbackSttModel, VoiceAgentFallbackTtsModel, VoiceAgentFallbackTtsProvider, VoiceAgentLanguage, type VoiceAgentList, VoiceAgentLlmModel, VoiceAgentNoiseCancellation, type VoiceAgentPlaceholders, type VoiceAgentPrompt, type VoiceAgentPromptUpdated, VoiceAgentSttModel, VoiceAgentTtsModel, VoiceAgentTtsProvider, type VoiceAgentVersion, VoiceAgentVersionActiveEnvironmentsItem, type VoiceAgentVersionChangeSummary, type VoiceAgentVersionDetail, VoiceAgentVersionDetailActiveEnvironmentsItem, VoiceAgentVersionDetailBackgroundSounds, VoiceAgentVersionDetailCallProcessorType, VoiceAgentVersionDetailDirection, VoiceAgentVersionDetailFallbackLlmModel, VoiceAgentVersionDetailFallbackSttModel, VoiceAgentVersionDetailFallbackTtsModel, VoiceAgentVersionDetailFallbackTtsProvider, VoiceAgentVersionDetailLanguage, VoiceAgentVersionDetailLlmModel, VoiceAgentVersionDetailNoiseCancellation, VoiceAgentVersionDetailSttModel, VoiceAgentVersionDetailTtsModel, VoiceAgentVersionDetailTtsProvider, type VoiceAgentVersionList, type VoiceAgentWebhookList, type VoiceAgentWithTestPhoneNumber, VoiceAgentWithTestPhoneNumberBackgroundSounds, VoiceAgentWithTestPhoneNumberCallProcessorType, VoiceAgentWithTestPhoneNumberDirection, VoiceAgentWithTestPhoneNumberFallbackLlmModel, VoiceAgentWithTestPhoneNumberFallbackSttModel, VoiceAgentWithTestPhoneNumberFallbackTtsModel, VoiceAgentWithTestPhoneNumberFallbackTtsProvider, VoiceAgentWithTestPhoneNumberLanguage, VoiceAgentWithTestPhoneNumberLlmModel, VoiceAgentWithTestPhoneNumberNoiseCancellation, VoiceAgentWithTestPhoneNumberSttModel, VoiceAgentWithTestPhoneNumberTtsModel, VoiceAgentWithTestPhoneNumberTtsProvider, type Webhook, type WebhookDelivery, type WebhookDeliveryList, WebhookEnvironmentsItem, type WebhookScope, type WebhookTestResult, type Worker, WorkerEnvironment, type WorkerExecuteToolBody, WorkerExecuteToolBodyEnvironment, type WorkerExecuteToolBodyParams, type WorkerExecuteToolEnvelope, type WorkerExecuteToolMutationResult, type WorkerGetToolEnvelope, type WorkerGetToolQueryResult, type WorkerList, type WorkerListToolsEnvelope, type WorkerListToolsParams, type WorkerListToolsQueryResult, WorkerListToolsSortBy, WorkerListToolsSortOrder, type WorkerMcp, WorkerMcpName, type WorkerMcpOutput, WorkerMcpOutputName, type WorkerModel, type WorkerModelList, type WorkerNotifyAdminResult, WorkerPermission, type WorkerPrompt, type WorkerPromptUpdated, type WorkerRun, type WorkerRunCreated, WorkerRunCreatedEnvironment, type WorkerRunCreatedScope, WorkerRunCreatedStatus, WorkerRunEnvironment, type WorkerRunList, type WorkerRunMessage, type WorkerRunMessageList, type WorkerRunMessageMessage, type WorkerRunScope, WorkerRunStatus, type WorkerSchema, type WorkerSummary, type WorkerVersion, type WorkerVersionChangeSummary, type WorkerVersionDetail, type WorkerVersionDetailSchema, type WorkerVersionList, type WorkerVersions, type WorkerWebhookList, addCaseLinks, cancelJob, cancelWorkerRun, checkInboxAvailability, configure, createAgentWebhook, createApiKey, createArtifact, createCallFeedback, createCase, createChat, createChatAgent, createEvalBenchmark, createExtractor, createExtractorJob, createExtractorWebhook, createInbox, createInboxWebhook, createInformationRequest, createNotificationWebhook, createSchedule, createSecret, createTool, createVoiceAgent, createWorker, createWorkerBenchmarks, createWorkerEvalFromRun, createWorkerRun, createWorkerWebhook, deleteArtifact, deleteCallFeedback, deleteCase, deleteChatAgent, deleteEmail, deleteExtractor, deleteInbox, deleteSchedule, deleteSecret, deleteTool, deleteVoiceAgent, deleteWebhook, deleteWorker, executeCode, generateCodeChallenge, generateCodeVerifier, getAddCaseLinksMutationFetcher, getAddCaseLinksMutationKey, getAddCaseLinksUrl, getAnalyticsTimeSeries, getArtifact, getArtifactMetadataKeys, getArtifactStatusSummary, getArtifactUploadUrl, getBenchmark, getCall, getCallAnalytics, getCallEvaluation, getCancelJobMutationFetcher, getCancelJobMutationKey, getCancelJobUrl, getCancelWorkerRunMutationFetcher, getCancelWorkerRunMutationKey, getCancelWorkerRunUrl, getCase, getChat, getChatAgent, getChatAgentPrompt, getCheckInboxAvailabilityKey, getCheckInboxAvailabilityUrl, getConfig, getCreateAgentWebhookMutationFetcher, getCreateAgentWebhookMutationKey, getCreateAgentWebhookUrl, getCreateApiKeyMutationFetcher, getCreateApiKeyMutationKey, getCreateApiKeyUrl, getCreateArtifactMutationFetcher, getCreateArtifactMutationKey, getCreateArtifactUrl, getCreateCallFeedbackMutationFetcher, getCreateCallFeedbackMutationKey, getCreateCallFeedbackUrl, getCreateCaseMutationFetcher, getCreateCaseMutationKey, getCreateCaseUrl, getCreateChatAgentMutationFetcher, getCreateChatAgentMutationKey, getCreateChatAgentUrl, getCreateChatMutationFetcher, getCreateChatMutationKey, getCreateChatUrl, getCreateEvalBenchmarkMutationFetcher, getCreateEvalBenchmarkMutationKey, getCreateEvalBenchmarkUrl, getCreateExtractorJobMutationFetcher, getCreateExtractorJobMutationKey, getCreateExtractorJobUrl, getCreateExtractorMutationFetcher, getCreateExtractorMutationKey, getCreateExtractorUrl, getCreateExtractorWebhookMutationFetcher, getCreateExtractorWebhookMutationKey, getCreateExtractorWebhookUrl, getCreateInboxMutationFetcher, getCreateInboxMutationKey, getCreateInboxUrl, getCreateInboxWebhookMutationFetcher, getCreateInboxWebhookMutationKey, getCreateInboxWebhookUrl, getCreateInformationRequestMutationFetcher, getCreateInformationRequestMutationKey, getCreateInformationRequestUrl, getCreateNotificationWebhookMutationFetcher, getCreateNotificationWebhookMutationKey, getCreateNotificationWebhookUrl, getCreateScheduleMutationFetcher, getCreateScheduleMutationKey, getCreateScheduleUrl, getCreateSecretMutationFetcher, getCreateSecretMutationKey, getCreateSecretUrl, getCreateToolMutationFetcher, getCreateToolMutationKey, getCreateToolUrl, getCreateVoiceAgentMutationFetcher, getCreateVoiceAgentMutationKey, getCreateVoiceAgentUrl, getCreateWorkerBenchmarksMutationFetcher, getCreateWorkerBenchmarksMutationKey, getCreateWorkerBenchmarksUrl, getCreateWorkerEvalFromRunMutationFetcher, getCreateWorkerEvalFromRunMutationKey, getCreateWorkerEvalFromRunUrl, getCreateWorkerMutationFetcher, getCreateWorkerMutationKey, getCreateWorkerRunMutationFetcher, getCreateWorkerRunMutationKey, getCreateWorkerRunUrl, getCreateWorkerUrl, getCreateWorkerWebhookMutationFetcher, getCreateWorkerWebhookMutationKey, getCreateWorkerWebhookUrl, getDeleteArtifactMutationFetcher, getDeleteArtifactMutationKey, getDeleteArtifactUrl, getDeleteCallFeedbackMutationFetcher, getDeleteCallFeedbackMutationKey, getDeleteCallFeedbackUrl, getDeleteCaseMutationFetcher, getDeleteCaseMutationKey, getDeleteCaseUrl, getDeleteChatAgentMutationFetcher, getDeleteChatAgentMutationKey, getDeleteChatAgentUrl, getDeleteEmailMutationFetcher, getDeleteEmailMutationKey, getDeleteEmailUrl, getDeleteExtractorMutationFetcher, getDeleteExtractorMutationKey, getDeleteExtractorUrl, getDeleteInboxMutationFetcher, getDeleteInboxMutationKey, getDeleteInboxUrl, getDeleteScheduleMutationFetcher, getDeleteScheduleMutationKey, getDeleteScheduleUrl, getDeleteSecretMutationFetcher, getDeleteSecretMutationKey, getDeleteSecretUrl, getDeleteToolMutationFetcher, getDeleteToolMutationKey, getDeleteToolUrl, getDeleteVoiceAgentMutationFetcher, getDeleteVoiceAgentMutationKey, getDeleteVoiceAgentUrl, getDeleteWebhookMutationFetcher, getDeleteWebhookMutationKey, getDeleteWebhookUrl, getDeleteWorkerMutationFetcher, getDeleteWorkerMutationKey, getDeleteWorkerUrl, getEmail, getEvalRun, getExecuteCodeMutationFetcher, getExecuteCodeMutationKey, getExecuteCodeUrl, getExtract, getExtractCitations, getExtractor, getExtractorJob, getGetAnalyticsTimeSeriesKey, getGetAnalyticsTimeSeriesUrl, getGetArtifactKey, getGetArtifactMetadataKeysKey, getGetArtifactMetadataKeysUrl, getGetArtifactStatusSummaryKey, getGetArtifactStatusSummaryUrl, getGetArtifactUploadUrlMutationFetcher, getGetArtifactUploadUrlMutationKey, getGetArtifactUploadUrlUrl, getGetArtifactUrl, getGetBenchmarkKey, getGetBenchmarkUrl, getGetCallAnalyticsKey, getGetCallAnalyticsUrl, getGetCallEvaluationKey, getGetCallEvaluationUrl, getGetCallKey, getGetCallUrl, getGetCaseKey, getGetCaseUrl, getGetChatAgentKey, getGetChatAgentPromptKey, getGetChatAgentPromptUrl, getGetChatAgentUrl, getGetChatKey, getGetChatUrl, getGetEmailKey, getGetEmailUrl, getGetEvalRunKey, getGetEvalRunUrl, getGetExtractCitationsKey, getGetExtractCitationsUrl, getGetExtractKey, getGetExtractUrl, getGetExtractorJobKey, getGetExtractorJobUrl, getGetExtractorKey, getGetExtractorUrl, getGetInformationRequestKey, getGetInformationRequestUrl, getGetNotificationKey, getGetNotificationUrl, getGetOAuthUrlKey, getGetOAuthUrlUrl, getGetPartnerJwksKey, getGetPartnerJwksUrl, getGetProfileKey, getGetProfileUrl, getGetPublicChatAgentKey, getGetPublicChatAgentUrl, getGetScheduleKey, getGetScheduleUrl, getGetSecretKey, getGetSecretUrl, getGetSessionTokenMutationFetcher, getGetSessionTokenMutationKey, getGetSessionTokenUrl, getGetTenantSettingsKey, getGetTenantSettingsUrl, getGetToolKey, getGetToolUrl, getGetToolVersionChangeSummaryKey, getGetToolVersionChangeSummaryUrl, getGetToolVersionKey, getGetToolVersionUrl, getGetVoiceAgentKey, getGetVoiceAgentPlaceholdersKey, getGetVoiceAgentPlaceholdersUrl, getGetVoiceAgentPromptKey, getGetVoiceAgentPromptUrl, getGetVoiceAgentUrl, getGetVoiceAgentVersionChangeSummaryKey, getGetVoiceAgentVersionChangeSummaryUrl, getGetVoiceAgentVersionKey, getGetVoiceAgentVersionUrl, getGetWebhookKey, getGetWebhookUrl, getGetWorkerKey, getGetWorkerPromptKey, getGetWorkerPromptUrl, getGetWorkerRunKey, getGetWorkerRunUrl, getGetWorkerUrl, getGetWorkerVersionChangeSummaryKey, getGetWorkerVersionChangeSummaryUrl, getGetWorkerVersionKey, getGetWorkerVersionUrl, getInformationRequest, getInviteTeamMemberMutationFetcher, getInviteTeamMemberMutationKey, getInviteTeamMemberUrl, getListAgentWebhooksKey, getListAgentWebhooksUrl, getListApiKeysKey, getListApiKeysUrl, getListArtifactsKey, getListArtifactsUrl, getListCallFeedbackKey, getListCallFeedbackUrl, getListCallsKey, getListCallsUrl, getListCaseLinksKey, getListCaseLinksUrl, getListCasesKey, getListCasesUrl, getListChatAgentsKey, getListChatAgentsUrl, getListChatMessagesKey, getListChatMessagesUrl, getListChatsKey, getListChatsUrl, getListDispatchesKey, getListDispatchesUrl, getListEmailThreadsKey, getListEmailThreadsUrl, getListEmailsKey, getListEmailsUrl, getListEvalBenchmarksKey, getListEvalBenchmarksUrl, getListExtractorJobsKey, getListExtractorJobsUrl, getListExtractorsKey, getListExtractorsUrl, getListExtractsKey, getListExtractsUrl, getListInboxWebhooksKey, getListInboxWebhooksUrl, getListInboxesKey, getListInboxesUrl, getListInformationRequestsKey, getListInformationRequestsUrl, getListJobsKey, getListJobsUrl, getListNotificationWebhooksKey, getListNotificationWebhooksUrl, getListNotificationsKey, getListNotificationsUrl, getListSchedulesKey, getListSchedulesUrl, getListSecretsKey, getListSecretsUrl, getListTeamInvitationsKey, getListTeamInvitationsUrl, getListTeamMembersKey, getListTeamMembersUrl, getListToolVersionsKey, getListToolVersionsUrl, getListToolsKey, getListToolsUrl, getListVoiceAgentVersionsKey, getListVoiceAgentVersionsUrl, getListVoiceAgentsKey, getListVoiceAgentsUrl, getListWebhookDeliveriesKey, getListWebhookDeliveriesUrl, getListWebhooksKey, getListWebhooksUrl, getListWorkerEvalsKey, getListWorkerEvalsUrl, getListWorkerModelsKey, getListWorkerModelsUrl, getListWorkerRunMessagesKey, getListWorkerRunMessagesUrl, getListWorkerRunsKey, getListWorkerRunsUrl, getListWorkerVersionsKey, getListWorkerVersionsUrl, getListWorkerWebhooksKey, getListWorkerWebhooksUrl, getListWorkersKey, getListWorkersUrl, getNotification, getNotifyAdminMutationFetcher, getNotifyAdminMutationKey, getNotifyAdminUrl, getOAuthUrl, getPartnerJwks, getPartnerLaunchMutationFetcher, getPartnerLaunchMutationKey, getPartnerLaunchUrl, getPostChatMessageMutationFetcher, getPostChatMessageMutationKey, getPostChatMessageUrl, getProfile, getPromoteToolVersionMutationFetcher, getPromoteToolVersionMutationKey, getPromoteToolVersionUrl, getPromoteVoiceAgentVersionMutationFetcher, getPromoteVoiceAgentVersionMutationKey, getPromoteVoiceAgentVersionUrl, getPromoteWorkerVersionMutationFetcher, getPromoteWorkerVersionMutationKey, getPromoteWorkerVersionUrl, getPublicChatAgent, getRefreshTokenMutationFetcher, getRefreshTokenMutationKey, getRefreshTokenUrl, getRemoveCaseLinkMutationFetcher, getRemoveCaseLinkMutationKey, getRemoveCaseLinkUrl, getRemoveMemberMutationFetcher, getRemoveMemberMutationKey, getRemoveMemberUrl, getReplyToEmailMutationFetcher, getReplyToEmailMutationKey, getReplyToEmailUrl, getRequestPasswordResetMutationFetcher, getRequestPasswordResetMutationKey, getRequestPasswordResetUrl, getResendTeamInvitationMutationFetcher, getResendTeamInvitationMutationKey, getResendTeamInvitationUrl, getResetPasswordMutationFetcher, getResetPasswordMutationKey, getResetPasswordUrl, getResolveInformationRequestMutationFetcher, getResolveInformationRequestMutationKey, getResolveInformationRequestUrl, getRevokeApiKeyMutationFetcher, getRevokeApiKeyMutationKey, getRevokeApiKeyUrl, getRevokeTeamInvitationMutationFetcher, getRevokeTeamInvitationMutationKey, getRevokeTeamInvitationUrl, getRunEvalMutationFetcher, getRunEvalMutationKey, getRunEvalUrl, getSchedule, getScheduleJobMutationFetcher, getScheduleJobMutationKey, getScheduleJobUrl, getSearchCasesKey, getSearchCasesUrl, getSecret, getSendEmailMutationFetcher, getSendEmailMutationKey, getSendEmailUrl, getSessionToken, getSignInMutationFetcher, getSignInMutationKey, getSignInUrl, getSignUpMutationFetcher, getSignUpMutationKey, getSignUpUrl, getTenantSettings, getTestWebhookMutationFetcher, getTestWebhookMutationKey, getTestWebhookUrl, getTool, getToolVersion, getToolVersionChangeSummary, getUpdateApiKeyMutationFetcher, getUpdateApiKeyMutationKey, getUpdateApiKeyUrl, getUpdateArtifactMetadataMutationFetcher, getUpdateArtifactMetadataMutationKey, getUpdateArtifactMetadataUrl, getUpdateCallControlsMutationFetcher, getUpdateCallControlsMutationKey, getUpdateCallControlsUrl, getUpdateChatAgentMutationFetcher, getUpdateChatAgentMutationKey, getUpdateChatAgentPromptMutationFetcher, getUpdateChatAgentPromptMutationKey, getUpdateChatAgentPromptUrl, getUpdateChatAgentUrl, getUpdateExtractorMutationFetcher, getUpdateExtractorMutationKey, getUpdateExtractorUrl, getUpdateInboxMutationFetcher, getUpdateInboxMutationKey, getUpdateInboxUrl, getUpdateMemberRoleMutationFetcher, getUpdateMemberRoleMutationKey, getUpdateMemberRoleUrl, getUpdateScheduleMutationFetcher, getUpdateScheduleMutationKey, getUpdateScheduleUrl, getUpdateSecretMutationFetcher, getUpdateSecretMutationKey, getUpdateSecretUrl, getUpdateTenantSettingsMutationFetcher, getUpdateTenantSettingsMutationKey, getUpdateTenantSettingsUrl, getUpdateToolMutationFetcher, getUpdateToolMutationKey, getUpdateToolUrl, getUpdateVoiceAgentModelsMutationFetcher, getUpdateVoiceAgentModelsMutationKey, getUpdateVoiceAgentModelsUrl, getUpdateVoiceAgentMutationFetcher, getUpdateVoiceAgentMutationKey, getUpdateVoiceAgentPromptMutationFetcher, getUpdateVoiceAgentPromptMutationKey, getUpdateVoiceAgentPromptUrl, getUpdateVoiceAgentUrl, getUpdateWebhookMutationFetcher, getUpdateWebhookMutationKey, getUpdateWebhookUrl, getUpdateWorkerMcpsMutationFetcher, getUpdateWorkerMcpsMutationKey, getUpdateWorkerMcpsUrl, getUpdateWorkerMutationFetcher, getUpdateWorkerMutationKey, getUpdateWorkerPromptMutationFetcher, getUpdateWorkerPromptMutationKey, getUpdateWorkerPromptUrl, getUpdateWorkerUrl, getUploadFileMutationFetcher, getUploadFileMutationKey, getUploadFileUrl, getVoiceAgent, getVoiceAgentPlaceholders, getVoiceAgentPrompt, getVoiceAgentVersion, getVoiceAgentVersionChangeSummary, getWebhook, getWorker, getWorkerExecuteToolMutationFetcher, getWorkerExecuteToolMutationKey, getWorkerExecuteToolUrl, getWorkerGetToolKey, getWorkerGetToolUrl, getWorkerListToolsKey, getWorkerListToolsUrl, getWorkerPrompt, getWorkerRun, getWorkerVersion, getWorkerVersionChangeSummary, inviteTeamMember, listAgentWebhooks, listApiKeys, listArtifacts, listCallFeedback, listCalls, listCaseLinks, listCases, listChatAgents, listChatMessages, listChats, listDispatches, listEmailThreads, listEmails, listEvalBenchmarks, listExtractorJobs, listExtractors, listExtracts, listInboxWebhooks, listInboxes, listInformationRequests, listJobs, listNotificationWebhooks, listNotifications, listSchedules, listSecrets, listTeamInvitations, listTeamMembers, listToolVersions, listTools, listVoiceAgentVersions, listVoiceAgents, listWebhookDeliveries, listWebhooks, listWorkerEvals, listWorkerModels, listWorkerRunMessages, listWorkerRuns, listWorkerVersions, listWorkerWebhooks, listWorkers, notifyAdmin, partnerLaunch, postChatMessage, promoteToolVersion, promoteVoiceAgentVersion, promoteWorkerVersion, refreshToken, removeCaseLink, removeMember, replyToEmail, requestPasswordReset, resendTeamInvitation, resetPassword, resolveInformationRequest, revokeApiKey, revokeTeamInvitation, runEval, scheduleJob, searchCases, sendEmail, signIn, signUp, testWebhook, updateApiKey, updateArtifactMetadata, updateCallControls, updateChatAgent, updateChatAgentPrompt, updateExtractor, updateInbox, updateMemberRole, updateSchedule, updateSecret, updateTenantSettings, updateTool, updateVoiceAgent, updateVoiceAgentModels, updateVoiceAgentPrompt, updateWebhook, updateWorker, updateWorkerMcps, updateWorkerPrompt, uploadFile, useAddCaseLinks, useCancelJob, useCancelWorkerRun, useCheckInboxAvailability, useCreateAgentWebhook, useCreateApiKey, useCreateArtifact, useCreateCallFeedback, useCreateCase, useCreateChat, useCreateChatAgent, useCreateEvalBenchmark, useCreateExtractor, useCreateExtractorJob, useCreateExtractorWebhook, useCreateInbox, useCreateInboxWebhook, useCreateInformationRequest, useCreateNotificationWebhook, useCreateSchedule, useCreateSecret, useCreateTool, useCreateVoiceAgent, useCreateWorker, useCreateWorkerBenchmarks, useCreateWorkerEvalFromRun, useCreateWorkerRun, useCreateWorkerWebhook, useDeleteArtifact, useDeleteCallFeedback, useDeleteCase, useDeleteChatAgent, useDeleteEmail, useDeleteExtractor, useDeleteInbox, useDeleteSchedule, useDeleteSecret, useDeleteTool, useDeleteVoiceAgent, useDeleteWebhook, useDeleteWorker, useExecuteCode, useGetAnalyticsTimeSeries, useGetArtifact, useGetArtifactMetadataKeys, useGetArtifactStatusSummary, useGetArtifactUploadUrl, useGetBenchmark, useGetCall, useGetCallAnalytics, useGetCallEvaluation, useGetCase, useGetChat, useGetChatAgent, useGetChatAgentPrompt, useGetEmail, useGetEvalRun, useGetExtract, useGetExtractCitations, useGetExtractor, useGetExtractorJob, useGetInformationRequest, useGetNotification, useGetOAuthUrl, useGetPartnerJwks, useGetProfile, useGetPublicChatAgent, useGetSchedule, useGetSecret, useGetSessionToken, useGetTenantSettings, useGetTool, useGetToolVersion, useGetToolVersionChangeSummary, useGetVoiceAgent, useGetVoiceAgentPlaceholders, useGetVoiceAgentPrompt, useGetVoiceAgentVersion, useGetVoiceAgentVersionChangeSummary, useGetWebhook, useGetWorker, useGetWorkerPrompt, useGetWorkerRun, useGetWorkerVersion, useGetWorkerVersionChangeSummary, useInviteTeamMember, useListAgentWebhooks, useListApiKeys, useListArtifacts, useListCallFeedback, useListCalls, useListCaseLinks, useListCases, useListChatAgents, useListChatMessages, useListChats, useListDispatches, useListEmailThreads, useListEmails, useListEvalBenchmarks, useListExtractorJobs, useListExtractors, useListExtracts, useListInboxWebhooks, useListInboxes, useListInformationRequests, useListJobs, useListNotificationWebhooks, useListNotifications, useListSchedules, useListSecrets, useListTeamInvitations, useListTeamMembers, useListToolVersions, useListTools, useListVoiceAgentVersions, useListVoiceAgents, useListWebhookDeliveries, useListWebhooks, useListWorkerEvals, useListWorkerModels, useListWorkerRunMessages, useListWorkerRuns, useListWorkerVersions, useListWorkerWebhooks, useListWorkers, useNotifyAdmin, usePartnerLaunch, usePostChatMessage, usePromoteToolVersion, usePromoteVoiceAgentVersion, usePromoteWorkerVersion, useRefreshToken, useRemoveCaseLink, useRemoveMember, useReplyToEmail, useRequestPasswordReset, useResendTeamInvitation, useResetPassword, useResolveInformationRequest, useRevokeApiKey, useRevokeTeamInvitation, useRunEval, useScheduleJob, useSearchCases, useSendEmail, useSignIn, useSignUp, useTestWebhook, useUpdateApiKey, useUpdateArtifactMetadata, useUpdateCallControls, useUpdateChatAgent, useUpdateChatAgentPrompt, useUpdateExtractor, useUpdateInbox, useUpdateMemberRole, useUpdateSchedule, useUpdateSecret, useUpdateTenantSettings, useUpdateTool, useUpdateVoiceAgent, useUpdateVoiceAgentModels, useUpdateVoiceAgentPrompt, useUpdateWebhook, useUpdateWorker, useUpdateWorkerMcps, useUpdateWorkerPrompt, useUploadFile, useWorkerExecuteTool, useWorkerGetTool, useWorkerListTools, workerExecuteTool, workerGetTool, workerListTools };