@gpt-core/client 0.7.95 → 0.8.1
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.mts +934 -51
- package/dist/index.d.ts +934 -51
- package/dist/index.js +127 -0
- package/dist/index.mjs +117 -0
- package/package.json +11 -11
package/dist/index.d.mts
CHANGED
|
@@ -4734,6 +4734,153 @@ type PatchWalletCreditsResponses = {
|
|
|
4734
4734
|
};
|
|
4735
4735
|
};
|
|
4736
4736
|
type PatchWalletCreditsResponse = PatchWalletCreditsResponses[keyof PatchWalletCreditsResponses];
|
|
4737
|
+
type PostWebhookConfigsStatsData = {
|
|
4738
|
+
/**
|
|
4739
|
+
* Request body for the /webhook_configs/stats operation on webhook_config resource
|
|
4740
|
+
*/
|
|
4741
|
+
body?: {
|
|
4742
|
+
data: {
|
|
4743
|
+
attributes?: {
|
|
4744
|
+
[key: string]: never;
|
|
4745
|
+
};
|
|
4746
|
+
relationships?: {
|
|
4747
|
+
[key: string]: never;
|
|
4748
|
+
};
|
|
4749
|
+
type?: "webhook_config";
|
|
4750
|
+
};
|
|
4751
|
+
};
|
|
4752
|
+
headers: {
|
|
4753
|
+
/**
|
|
4754
|
+
* Application ID for authentication and routing
|
|
4755
|
+
*/
|
|
4756
|
+
"x-application-key": string;
|
|
4757
|
+
};
|
|
4758
|
+
path?: never;
|
|
4759
|
+
query?: {
|
|
4760
|
+
/**
|
|
4761
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
4762
|
+
*/
|
|
4763
|
+
include?: string;
|
|
4764
|
+
/**
|
|
4765
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
4766
|
+
*/
|
|
4767
|
+
fields?: {
|
|
4768
|
+
[key: string]: unknown;
|
|
4769
|
+
};
|
|
4770
|
+
};
|
|
4771
|
+
url: "/webhook_configs/stats";
|
|
4772
|
+
};
|
|
4773
|
+
type PostWebhookConfigsStatsErrors = {
|
|
4774
|
+
/**
|
|
4775
|
+
* Bad Request - Invalid input data or malformed request
|
|
4776
|
+
*/
|
|
4777
|
+
400: ErrorResponse;
|
|
4778
|
+
/**
|
|
4779
|
+
* Unauthorized - Missing or invalid authentication token
|
|
4780
|
+
*/
|
|
4781
|
+
401: ErrorResponse;
|
|
4782
|
+
/**
|
|
4783
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
4784
|
+
*/
|
|
4785
|
+
403: ErrorResponse;
|
|
4786
|
+
/**
|
|
4787
|
+
* Not Found - Resource does not exist
|
|
4788
|
+
*/
|
|
4789
|
+
404: ErrorResponse;
|
|
4790
|
+
/**
|
|
4791
|
+
* Too Many Requests - Rate limit exceeded
|
|
4792
|
+
*/
|
|
4793
|
+
429: ErrorResponse;
|
|
4794
|
+
/**
|
|
4795
|
+
* Internal Server Error - Unexpected server error
|
|
4796
|
+
*/
|
|
4797
|
+
500: ErrorResponse;
|
|
4798
|
+
/**
|
|
4799
|
+
* General Error
|
|
4800
|
+
*/
|
|
4801
|
+
default: Errors;
|
|
4802
|
+
};
|
|
4803
|
+
type PostWebhookConfigsStatsError = PostWebhookConfigsStatsErrors[keyof PostWebhookConfigsStatsErrors];
|
|
4804
|
+
type PostWebhookConfigsStatsResponses = {
|
|
4805
|
+
/**
|
|
4806
|
+
* Success
|
|
4807
|
+
*/
|
|
4808
|
+
201: {
|
|
4809
|
+
data?: WebhookConfig;
|
|
4810
|
+
included?: Array<unknown>;
|
|
4811
|
+
meta?: {
|
|
4812
|
+
[key: string]: unknown;
|
|
4813
|
+
};
|
|
4814
|
+
};
|
|
4815
|
+
};
|
|
4816
|
+
type PostWebhookConfigsStatsResponse = PostWebhookConfigsStatsResponses[keyof PostWebhookConfigsStatsResponses];
|
|
4817
|
+
type GetApplicationsCurrentData = {
|
|
4818
|
+
body?: never;
|
|
4819
|
+
headers: {
|
|
4820
|
+
/**
|
|
4821
|
+
* Application ID for authentication and routing
|
|
4822
|
+
*/
|
|
4823
|
+
"x-application-key": string;
|
|
4824
|
+
};
|
|
4825
|
+
path?: never;
|
|
4826
|
+
query?: {
|
|
4827
|
+
/**
|
|
4828
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
4829
|
+
*/
|
|
4830
|
+
include?: string;
|
|
4831
|
+
/**
|
|
4832
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
4833
|
+
*/
|
|
4834
|
+
fields?: {
|
|
4835
|
+
[key: string]: unknown;
|
|
4836
|
+
};
|
|
4837
|
+
};
|
|
4838
|
+
url: "/applications/current";
|
|
4839
|
+
};
|
|
4840
|
+
type GetApplicationsCurrentErrors = {
|
|
4841
|
+
/**
|
|
4842
|
+
* Bad Request - Invalid input data or malformed request
|
|
4843
|
+
*/
|
|
4844
|
+
400: ErrorResponse;
|
|
4845
|
+
/**
|
|
4846
|
+
* Unauthorized - Missing or invalid authentication token
|
|
4847
|
+
*/
|
|
4848
|
+
401: ErrorResponse;
|
|
4849
|
+
/**
|
|
4850
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
4851
|
+
*/
|
|
4852
|
+
403: ErrorResponse;
|
|
4853
|
+
/**
|
|
4854
|
+
* Not Found - Resource does not exist
|
|
4855
|
+
*/
|
|
4856
|
+
404: ErrorResponse;
|
|
4857
|
+
/**
|
|
4858
|
+
* Too Many Requests - Rate limit exceeded
|
|
4859
|
+
*/
|
|
4860
|
+
429: ErrorResponse;
|
|
4861
|
+
/**
|
|
4862
|
+
* Internal Server Error - Unexpected server error
|
|
4863
|
+
*/
|
|
4864
|
+
500: ErrorResponse;
|
|
4865
|
+
/**
|
|
4866
|
+
* General Error
|
|
4867
|
+
*/
|
|
4868
|
+
default: Errors;
|
|
4869
|
+
};
|
|
4870
|
+
type GetApplicationsCurrentError = GetApplicationsCurrentErrors[keyof GetApplicationsCurrentErrors];
|
|
4871
|
+
type GetApplicationsCurrentResponses = {
|
|
4872
|
+
/**
|
|
4873
|
+
* Success
|
|
4874
|
+
*/
|
|
4875
|
+
200: {
|
|
4876
|
+
data?: Application;
|
|
4877
|
+
included?: Array<Plan | CreditPackage | Workspace>;
|
|
4878
|
+
meta?: {
|
|
4879
|
+
[key: string]: unknown;
|
|
4880
|
+
};
|
|
4881
|
+
};
|
|
4882
|
+
};
|
|
4883
|
+
type GetApplicationsCurrentResponse = GetApplicationsCurrentResponses[keyof GetApplicationsCurrentResponses];
|
|
4737
4884
|
type GetWorkspacesData = {
|
|
4738
4885
|
body?: never;
|
|
4739
4886
|
headers: {
|
|
@@ -4915,6 +5062,88 @@ type PostWorkspacesResponses = {
|
|
|
4915
5062
|
};
|
|
4916
5063
|
};
|
|
4917
5064
|
type PostWorkspacesResponse = PostWorkspacesResponses[keyof PostWorkspacesResponses];
|
|
5065
|
+
type PostAgentsByIdStatsData = {
|
|
5066
|
+
/**
|
|
5067
|
+
* Request body for the /agents/:id/stats operation on agent resource
|
|
5068
|
+
*/
|
|
5069
|
+
body?: {
|
|
5070
|
+
data: {
|
|
5071
|
+
attributes?: {
|
|
5072
|
+
[key: string]: never;
|
|
5073
|
+
};
|
|
5074
|
+
relationships?: {
|
|
5075
|
+
[key: string]: never;
|
|
5076
|
+
};
|
|
5077
|
+
type?: "agent";
|
|
5078
|
+
};
|
|
5079
|
+
};
|
|
5080
|
+
headers: {
|
|
5081
|
+
/**
|
|
5082
|
+
* Application ID for authentication and routing
|
|
5083
|
+
*/
|
|
5084
|
+
"x-application-key": string;
|
|
5085
|
+
};
|
|
5086
|
+
path: {
|
|
5087
|
+
id: string;
|
|
5088
|
+
};
|
|
5089
|
+
query?: {
|
|
5090
|
+
/**
|
|
5091
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
5092
|
+
*/
|
|
5093
|
+
include?: string;
|
|
5094
|
+
/**
|
|
5095
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
5096
|
+
*/
|
|
5097
|
+
fields?: {
|
|
5098
|
+
[key: string]: unknown;
|
|
5099
|
+
};
|
|
5100
|
+
};
|
|
5101
|
+
url: "/agents/{id}/stats";
|
|
5102
|
+
};
|
|
5103
|
+
type PostAgentsByIdStatsErrors = {
|
|
5104
|
+
/**
|
|
5105
|
+
* Bad Request - Invalid input data or malformed request
|
|
5106
|
+
*/
|
|
5107
|
+
400: ErrorResponse;
|
|
5108
|
+
/**
|
|
5109
|
+
* Unauthorized - Missing or invalid authentication token
|
|
5110
|
+
*/
|
|
5111
|
+
401: ErrorResponse;
|
|
5112
|
+
/**
|
|
5113
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
5114
|
+
*/
|
|
5115
|
+
403: ErrorResponse;
|
|
5116
|
+
/**
|
|
5117
|
+
* Not Found - Resource does not exist
|
|
5118
|
+
*/
|
|
5119
|
+
404: ErrorResponse;
|
|
5120
|
+
/**
|
|
5121
|
+
* Too Many Requests - Rate limit exceeded
|
|
5122
|
+
*/
|
|
5123
|
+
429: ErrorResponse;
|
|
5124
|
+
/**
|
|
5125
|
+
* Internal Server Error - Unexpected server error
|
|
5126
|
+
*/
|
|
5127
|
+
500: ErrorResponse;
|
|
5128
|
+
/**
|
|
5129
|
+
* General Error
|
|
5130
|
+
*/
|
|
5131
|
+
default: Errors;
|
|
5132
|
+
};
|
|
5133
|
+
type PostAgentsByIdStatsError = PostAgentsByIdStatsErrors[keyof PostAgentsByIdStatsErrors];
|
|
5134
|
+
type PostAgentsByIdStatsResponses = {
|
|
5135
|
+
/**
|
|
5136
|
+
* Success
|
|
5137
|
+
*/
|
|
5138
|
+
201: {
|
|
5139
|
+
data?: Agent;
|
|
5140
|
+
included?: Array<AgentVersion>;
|
|
5141
|
+
meta?: {
|
|
5142
|
+
[key: string]: unknown;
|
|
5143
|
+
};
|
|
5144
|
+
};
|
|
5145
|
+
};
|
|
5146
|
+
type PostAgentsByIdStatsResponse = PostAgentsByIdStatsResponses[keyof PostAgentsByIdStatsResponses];
|
|
4918
5147
|
type GetDocumentsStatsData = {
|
|
4919
5148
|
body?: never;
|
|
4920
5149
|
headers: {
|
|
@@ -5379,6 +5608,86 @@ type GetSearchIndexesResponses = {
|
|
|
5379
5608
|
};
|
|
5380
5609
|
};
|
|
5381
5610
|
type GetSearchIndexesResponse = GetSearchIndexesResponses[keyof GetSearchIndexesResponses];
|
|
5611
|
+
type PostWebhookConfigsBulkDisableData = {
|
|
5612
|
+
/**
|
|
5613
|
+
* Request body for the /webhook_configs/bulk-disable operation on webhook_config resource
|
|
5614
|
+
*/
|
|
5615
|
+
body: {
|
|
5616
|
+
data: {
|
|
5617
|
+
attributes?: {
|
|
5618
|
+
ids: Array<string>;
|
|
5619
|
+
};
|
|
5620
|
+
relationships?: {
|
|
5621
|
+
[key: string]: never;
|
|
5622
|
+
};
|
|
5623
|
+
type?: "webhook_config";
|
|
5624
|
+
};
|
|
5625
|
+
};
|
|
5626
|
+
headers: {
|
|
5627
|
+
/**
|
|
5628
|
+
* Application ID for authentication and routing
|
|
5629
|
+
*/
|
|
5630
|
+
"x-application-key": string;
|
|
5631
|
+
};
|
|
5632
|
+
path?: never;
|
|
5633
|
+
query?: {
|
|
5634
|
+
/**
|
|
5635
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
5636
|
+
*/
|
|
5637
|
+
include?: string;
|
|
5638
|
+
/**
|
|
5639
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
5640
|
+
*/
|
|
5641
|
+
fields?: {
|
|
5642
|
+
[key: string]: unknown;
|
|
5643
|
+
};
|
|
5644
|
+
};
|
|
5645
|
+
url: "/webhook_configs/bulk-disable";
|
|
5646
|
+
};
|
|
5647
|
+
type PostWebhookConfigsBulkDisableErrors = {
|
|
5648
|
+
/**
|
|
5649
|
+
* Bad Request - Invalid input data or malformed request
|
|
5650
|
+
*/
|
|
5651
|
+
400: ErrorResponse;
|
|
5652
|
+
/**
|
|
5653
|
+
* Unauthorized - Missing or invalid authentication token
|
|
5654
|
+
*/
|
|
5655
|
+
401: ErrorResponse;
|
|
5656
|
+
/**
|
|
5657
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
5658
|
+
*/
|
|
5659
|
+
403: ErrorResponse;
|
|
5660
|
+
/**
|
|
5661
|
+
* Not Found - Resource does not exist
|
|
5662
|
+
*/
|
|
5663
|
+
404: ErrorResponse;
|
|
5664
|
+
/**
|
|
5665
|
+
* Too Many Requests - Rate limit exceeded
|
|
5666
|
+
*/
|
|
5667
|
+
429: ErrorResponse;
|
|
5668
|
+
/**
|
|
5669
|
+
* Internal Server Error - Unexpected server error
|
|
5670
|
+
*/
|
|
5671
|
+
500: ErrorResponse;
|
|
5672
|
+
/**
|
|
5673
|
+
* General Error
|
|
5674
|
+
*/
|
|
5675
|
+
default: Errors;
|
|
5676
|
+
};
|
|
5677
|
+
type PostWebhookConfigsBulkDisableError = PostWebhookConfigsBulkDisableErrors[keyof PostWebhookConfigsBulkDisableErrors];
|
|
5678
|
+
type PostWebhookConfigsBulkDisableResponses = {
|
|
5679
|
+
/**
|
|
5680
|
+
* Success
|
|
5681
|
+
*/
|
|
5682
|
+
201: {
|
|
5683
|
+
data?: WebhookConfig;
|
|
5684
|
+
included?: Array<unknown>;
|
|
5685
|
+
meta?: {
|
|
5686
|
+
[key: string]: unknown;
|
|
5687
|
+
};
|
|
5688
|
+
};
|
|
5689
|
+
};
|
|
5690
|
+
type PostWebhookConfigsBulkDisableResponse = PostWebhookConfigsBulkDisableResponses[keyof PostWebhookConfigsBulkDisableResponses];
|
|
5382
5691
|
type GetCreditPackagesSlugBySlugData = {
|
|
5383
5692
|
body?: never;
|
|
5384
5693
|
headers: {
|
|
@@ -5702,9 +6011,93 @@ type PatchExtractionDocumentsByIdExcludeData = {
|
|
|
5702
6011
|
*/
|
|
5703
6012
|
"x-application-key": string;
|
|
5704
6013
|
};
|
|
5705
|
-
path: {
|
|
5706
|
-
id: string;
|
|
5707
|
-
};
|
|
6014
|
+
path: {
|
|
6015
|
+
id: string;
|
|
6016
|
+
};
|
|
6017
|
+
query?: {
|
|
6018
|
+
/**
|
|
6019
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
6020
|
+
*/
|
|
6021
|
+
include?: string;
|
|
6022
|
+
/**
|
|
6023
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
6024
|
+
*/
|
|
6025
|
+
fields?: {
|
|
6026
|
+
[key: string]: unknown;
|
|
6027
|
+
};
|
|
6028
|
+
};
|
|
6029
|
+
url: "/extraction/documents/{id}/exclude";
|
|
6030
|
+
};
|
|
6031
|
+
type PatchExtractionDocumentsByIdExcludeErrors = {
|
|
6032
|
+
/**
|
|
6033
|
+
* Bad Request - Invalid input data or malformed request
|
|
6034
|
+
*/
|
|
6035
|
+
400: ErrorResponse;
|
|
6036
|
+
/**
|
|
6037
|
+
* Unauthorized - Missing or invalid authentication token
|
|
6038
|
+
*/
|
|
6039
|
+
401: ErrorResponse;
|
|
6040
|
+
/**
|
|
6041
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
6042
|
+
*/
|
|
6043
|
+
403: ErrorResponse;
|
|
6044
|
+
/**
|
|
6045
|
+
* Not Found - Resource does not exist
|
|
6046
|
+
*/
|
|
6047
|
+
404: ErrorResponse;
|
|
6048
|
+
/**
|
|
6049
|
+
* Too Many Requests - Rate limit exceeded
|
|
6050
|
+
*/
|
|
6051
|
+
429: ErrorResponse;
|
|
6052
|
+
/**
|
|
6053
|
+
* Internal Server Error - Unexpected server error
|
|
6054
|
+
*/
|
|
6055
|
+
500: ErrorResponse;
|
|
6056
|
+
/**
|
|
6057
|
+
* General Error
|
|
6058
|
+
*/
|
|
6059
|
+
default: Errors;
|
|
6060
|
+
};
|
|
6061
|
+
type PatchExtractionDocumentsByIdExcludeError = PatchExtractionDocumentsByIdExcludeErrors[keyof PatchExtractionDocumentsByIdExcludeErrors];
|
|
6062
|
+
type PatchExtractionDocumentsByIdExcludeResponses = {
|
|
6063
|
+
/**
|
|
6064
|
+
* Success
|
|
6065
|
+
*/
|
|
6066
|
+
200: {
|
|
6067
|
+
data?: ExtractionDocument;
|
|
6068
|
+
included?: Array<ExtractionResult>;
|
|
6069
|
+
meta?: {
|
|
6070
|
+
[key: string]: unknown;
|
|
6071
|
+
};
|
|
6072
|
+
};
|
|
6073
|
+
};
|
|
6074
|
+
type PatchExtractionDocumentsByIdExcludeResponse = PatchExtractionDocumentsByIdExcludeResponses[keyof PatchExtractionDocumentsByIdExcludeResponses];
|
|
6075
|
+
type PostPaymentsData = {
|
|
6076
|
+
/**
|
|
6077
|
+
* Request body for the /payments operation on payment resource
|
|
6078
|
+
*/
|
|
6079
|
+
body: {
|
|
6080
|
+
data: {
|
|
6081
|
+
attributes?: {
|
|
6082
|
+
amount: number;
|
|
6083
|
+
currency?: string | unknown;
|
|
6084
|
+
description?: string | unknown;
|
|
6085
|
+
source: string;
|
|
6086
|
+
tenant_id: string;
|
|
6087
|
+
};
|
|
6088
|
+
relationships?: {
|
|
6089
|
+
[key: string]: never;
|
|
6090
|
+
};
|
|
6091
|
+
type?: "payment";
|
|
6092
|
+
};
|
|
6093
|
+
};
|
|
6094
|
+
headers: {
|
|
6095
|
+
/**
|
|
6096
|
+
* Application ID for authentication and routing
|
|
6097
|
+
*/
|
|
6098
|
+
"x-application-key": string;
|
|
6099
|
+
};
|
|
6100
|
+
path?: never;
|
|
5708
6101
|
query?: {
|
|
5709
6102
|
/**
|
|
5710
6103
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -5717,9 +6110,9 @@ type PatchExtractionDocumentsByIdExcludeData = {
|
|
|
5717
6110
|
[key: string]: unknown;
|
|
5718
6111
|
};
|
|
5719
6112
|
};
|
|
5720
|
-
url: "/
|
|
6113
|
+
url: "/payments";
|
|
5721
6114
|
};
|
|
5722
|
-
type
|
|
6115
|
+
type PostPaymentsErrors = {
|
|
5723
6116
|
/**
|
|
5724
6117
|
* Bad Request - Invalid input data or malformed request
|
|
5725
6118
|
*/
|
|
@@ -5749,37 +6142,35 @@ type PatchExtractionDocumentsByIdExcludeErrors = {
|
|
|
5749
6142
|
*/
|
|
5750
6143
|
default: Errors;
|
|
5751
6144
|
};
|
|
5752
|
-
type
|
|
5753
|
-
type
|
|
6145
|
+
type PostPaymentsError = PostPaymentsErrors[keyof PostPaymentsErrors];
|
|
6146
|
+
type PostPaymentsResponses = {
|
|
5754
6147
|
/**
|
|
5755
6148
|
* Success
|
|
5756
6149
|
*/
|
|
5757
|
-
|
|
5758
|
-
data?:
|
|
5759
|
-
included?: Array<
|
|
6150
|
+
201: {
|
|
6151
|
+
data?: Payment;
|
|
6152
|
+
included?: Array<unknown>;
|
|
5760
6153
|
meta?: {
|
|
5761
6154
|
[key: string]: unknown;
|
|
5762
6155
|
};
|
|
5763
6156
|
};
|
|
5764
6157
|
};
|
|
5765
|
-
type
|
|
5766
|
-
type
|
|
6158
|
+
type PostPaymentsResponse = PostPaymentsResponses[keyof PostPaymentsResponses];
|
|
6159
|
+
type PostAgentsImportData = {
|
|
5767
6160
|
/**
|
|
5768
|
-
* Request body for the /
|
|
6161
|
+
* Request body for the /agents/import operation on agent resource
|
|
5769
6162
|
*/
|
|
5770
6163
|
body: {
|
|
5771
6164
|
data: {
|
|
5772
6165
|
attributes?: {
|
|
5773
|
-
|
|
5774
|
-
|
|
5775
|
-
|
|
5776
|
-
source: string;
|
|
5777
|
-
tenant_id: string;
|
|
6166
|
+
data: {
|
|
6167
|
+
[key: string]: unknown;
|
|
6168
|
+
};
|
|
5778
6169
|
};
|
|
5779
6170
|
relationships?: {
|
|
5780
6171
|
[key: string]: never;
|
|
5781
6172
|
};
|
|
5782
|
-
type?: "
|
|
6173
|
+
type?: "agent";
|
|
5783
6174
|
};
|
|
5784
6175
|
};
|
|
5785
6176
|
headers: {
|
|
@@ -5801,9 +6192,9 @@ type PostPaymentsData = {
|
|
|
5801
6192
|
[key: string]: unknown;
|
|
5802
6193
|
};
|
|
5803
6194
|
};
|
|
5804
|
-
url: "/
|
|
6195
|
+
url: "/agents/import";
|
|
5805
6196
|
};
|
|
5806
|
-
type
|
|
6197
|
+
type PostAgentsImportErrors = {
|
|
5807
6198
|
/**
|
|
5808
6199
|
* Bad Request - Invalid input data or malformed request
|
|
5809
6200
|
*/
|
|
@@ -5833,20 +6224,20 @@ type PostPaymentsErrors = {
|
|
|
5833
6224
|
*/
|
|
5834
6225
|
default: Errors;
|
|
5835
6226
|
};
|
|
5836
|
-
type
|
|
5837
|
-
type
|
|
6227
|
+
type PostAgentsImportError = PostAgentsImportErrors[keyof PostAgentsImportErrors];
|
|
6228
|
+
type PostAgentsImportResponses = {
|
|
5838
6229
|
/**
|
|
5839
6230
|
* Success
|
|
5840
6231
|
*/
|
|
5841
6232
|
201: {
|
|
5842
|
-
data?:
|
|
5843
|
-
included?: Array<
|
|
6233
|
+
data?: Agent;
|
|
6234
|
+
included?: Array<AgentVersion>;
|
|
5844
6235
|
meta?: {
|
|
5845
6236
|
[key: string]: unknown;
|
|
5846
6237
|
};
|
|
5847
6238
|
};
|
|
5848
6239
|
};
|
|
5849
|
-
type
|
|
6240
|
+
type PostAgentsImportResponse = PostAgentsImportResponses[keyof PostAgentsImportResponses];
|
|
5850
6241
|
type GetExtractionBatchesWorkspaceByWorkspaceIdData = {
|
|
5851
6242
|
body?: never;
|
|
5852
6243
|
headers: {
|
|
@@ -6937,6 +7328,86 @@ type PostTokensResponses = {
|
|
|
6937
7328
|
};
|
|
6938
7329
|
};
|
|
6939
7330
|
type PostTokensResponse = PostTokensResponses[keyof PostTokensResponses];
|
|
7331
|
+
type PostWebhookConfigsBulkEnableData = {
|
|
7332
|
+
/**
|
|
7333
|
+
* Request body for the /webhook_configs/bulk-enable operation on webhook_config resource
|
|
7334
|
+
*/
|
|
7335
|
+
body: {
|
|
7336
|
+
data: {
|
|
7337
|
+
attributes?: {
|
|
7338
|
+
ids: Array<string>;
|
|
7339
|
+
};
|
|
7340
|
+
relationships?: {
|
|
7341
|
+
[key: string]: never;
|
|
7342
|
+
};
|
|
7343
|
+
type?: "webhook_config";
|
|
7344
|
+
};
|
|
7345
|
+
};
|
|
7346
|
+
headers: {
|
|
7347
|
+
/**
|
|
7348
|
+
* Application ID for authentication and routing
|
|
7349
|
+
*/
|
|
7350
|
+
"x-application-key": string;
|
|
7351
|
+
};
|
|
7352
|
+
path?: never;
|
|
7353
|
+
query?: {
|
|
7354
|
+
/**
|
|
7355
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
7356
|
+
*/
|
|
7357
|
+
include?: string;
|
|
7358
|
+
/**
|
|
7359
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
7360
|
+
*/
|
|
7361
|
+
fields?: {
|
|
7362
|
+
[key: string]: unknown;
|
|
7363
|
+
};
|
|
7364
|
+
};
|
|
7365
|
+
url: "/webhook_configs/bulk-enable";
|
|
7366
|
+
};
|
|
7367
|
+
type PostWebhookConfigsBulkEnableErrors = {
|
|
7368
|
+
/**
|
|
7369
|
+
* Bad Request - Invalid input data or malformed request
|
|
7370
|
+
*/
|
|
7371
|
+
400: ErrorResponse;
|
|
7372
|
+
/**
|
|
7373
|
+
* Unauthorized - Missing or invalid authentication token
|
|
7374
|
+
*/
|
|
7375
|
+
401: ErrorResponse;
|
|
7376
|
+
/**
|
|
7377
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
7378
|
+
*/
|
|
7379
|
+
403: ErrorResponse;
|
|
7380
|
+
/**
|
|
7381
|
+
* Not Found - Resource does not exist
|
|
7382
|
+
*/
|
|
7383
|
+
404: ErrorResponse;
|
|
7384
|
+
/**
|
|
7385
|
+
* Too Many Requests - Rate limit exceeded
|
|
7386
|
+
*/
|
|
7387
|
+
429: ErrorResponse;
|
|
7388
|
+
/**
|
|
7389
|
+
* Internal Server Error - Unexpected server error
|
|
7390
|
+
*/
|
|
7391
|
+
500: ErrorResponse;
|
|
7392
|
+
/**
|
|
7393
|
+
* General Error
|
|
7394
|
+
*/
|
|
7395
|
+
default: Errors;
|
|
7396
|
+
};
|
|
7397
|
+
type PostWebhookConfigsBulkEnableError = PostWebhookConfigsBulkEnableErrors[keyof PostWebhookConfigsBulkEnableErrors];
|
|
7398
|
+
type PostWebhookConfigsBulkEnableResponses = {
|
|
7399
|
+
/**
|
|
7400
|
+
* Success
|
|
7401
|
+
*/
|
|
7402
|
+
201: {
|
|
7403
|
+
data?: WebhookConfig;
|
|
7404
|
+
included?: Array<unknown>;
|
|
7405
|
+
meta?: {
|
|
7406
|
+
[key: string]: unknown;
|
|
7407
|
+
};
|
|
7408
|
+
};
|
|
7409
|
+
};
|
|
7410
|
+
type PostWebhookConfigsBulkEnableResponse = PostWebhookConfigsBulkEnableResponses[keyof PostWebhookConfigsBulkEnableResponses];
|
|
6940
7411
|
type PatchApiKeysByIdSetBudgetData = {
|
|
6941
7412
|
/**
|
|
6942
7413
|
* Request body for the /api_keys/:id/set_budget operation on api_key resource
|
|
@@ -7254,6 +7725,86 @@ type PatchTrainingExamplesByIdResponses = {
|
|
|
7254
7725
|
};
|
|
7255
7726
|
};
|
|
7256
7727
|
type PatchTrainingExamplesByIdResponse = PatchTrainingExamplesByIdResponses[keyof PatchTrainingExamplesByIdResponses];
|
|
7728
|
+
type PostWebhookDeliveriesBulkRetryData = {
|
|
7729
|
+
/**
|
|
7730
|
+
* Request body for the /webhook_deliveries/bulk-retry operation on webhook_delivery resource
|
|
7731
|
+
*/
|
|
7732
|
+
body: {
|
|
7733
|
+
data: {
|
|
7734
|
+
attributes?: {
|
|
7735
|
+
ids: Array<string>;
|
|
7736
|
+
};
|
|
7737
|
+
relationships?: {
|
|
7738
|
+
[key: string]: never;
|
|
7739
|
+
};
|
|
7740
|
+
type?: "webhook_delivery";
|
|
7741
|
+
};
|
|
7742
|
+
};
|
|
7743
|
+
headers: {
|
|
7744
|
+
/**
|
|
7745
|
+
* Application ID for authentication and routing
|
|
7746
|
+
*/
|
|
7747
|
+
"x-application-key": string;
|
|
7748
|
+
};
|
|
7749
|
+
path?: never;
|
|
7750
|
+
query?: {
|
|
7751
|
+
/**
|
|
7752
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
7753
|
+
*/
|
|
7754
|
+
include?: string;
|
|
7755
|
+
/**
|
|
7756
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
7757
|
+
*/
|
|
7758
|
+
fields?: {
|
|
7759
|
+
[key: string]: unknown;
|
|
7760
|
+
};
|
|
7761
|
+
};
|
|
7762
|
+
url: "/webhook_deliveries/bulk-retry";
|
|
7763
|
+
};
|
|
7764
|
+
type PostWebhookDeliveriesBulkRetryErrors = {
|
|
7765
|
+
/**
|
|
7766
|
+
* Bad Request - Invalid input data or malformed request
|
|
7767
|
+
*/
|
|
7768
|
+
400: ErrorResponse;
|
|
7769
|
+
/**
|
|
7770
|
+
* Unauthorized - Missing or invalid authentication token
|
|
7771
|
+
*/
|
|
7772
|
+
401: ErrorResponse;
|
|
7773
|
+
/**
|
|
7774
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
7775
|
+
*/
|
|
7776
|
+
403: ErrorResponse;
|
|
7777
|
+
/**
|
|
7778
|
+
* Not Found - Resource does not exist
|
|
7779
|
+
*/
|
|
7780
|
+
404: ErrorResponse;
|
|
7781
|
+
/**
|
|
7782
|
+
* Too Many Requests - Rate limit exceeded
|
|
7783
|
+
*/
|
|
7784
|
+
429: ErrorResponse;
|
|
7785
|
+
/**
|
|
7786
|
+
* Internal Server Error - Unexpected server error
|
|
7787
|
+
*/
|
|
7788
|
+
500: ErrorResponse;
|
|
7789
|
+
/**
|
|
7790
|
+
* General Error
|
|
7791
|
+
*/
|
|
7792
|
+
default: Errors;
|
|
7793
|
+
};
|
|
7794
|
+
type PostWebhookDeliveriesBulkRetryError = PostWebhookDeliveriesBulkRetryErrors[keyof PostWebhookDeliveriesBulkRetryErrors];
|
|
7795
|
+
type PostWebhookDeliveriesBulkRetryResponses = {
|
|
7796
|
+
/**
|
|
7797
|
+
* Success
|
|
7798
|
+
*/
|
|
7799
|
+
201: {
|
|
7800
|
+
data?: WebhookDelivery;
|
|
7801
|
+
included?: Array<unknown>;
|
|
7802
|
+
meta?: {
|
|
7803
|
+
[key: string]: unknown;
|
|
7804
|
+
};
|
|
7805
|
+
};
|
|
7806
|
+
};
|
|
7807
|
+
type PostWebhookDeliveriesBulkRetryResponse = PostWebhookDeliveriesBulkRetryResponses[keyof PostWebhookDeliveriesBulkRetryResponses];
|
|
7257
7808
|
type DeleteSearchSavedByIdData = {
|
|
7258
7809
|
body?: never;
|
|
7259
7810
|
headers: {
|
|
@@ -9708,7 +10259,76 @@ type GetCreditPackagesByIdData = {
|
|
|
9708
10259
|
};
|
|
9709
10260
|
url: "/credit-packages/{id}";
|
|
9710
10261
|
};
|
|
9711
|
-
type GetCreditPackagesByIdErrors = {
|
|
10262
|
+
type GetCreditPackagesByIdErrors = {
|
|
10263
|
+
/**
|
|
10264
|
+
* Bad Request - Invalid input data or malformed request
|
|
10265
|
+
*/
|
|
10266
|
+
400: ErrorResponse;
|
|
10267
|
+
/**
|
|
10268
|
+
* Unauthorized - Missing or invalid authentication token
|
|
10269
|
+
*/
|
|
10270
|
+
401: ErrorResponse;
|
|
10271
|
+
/**
|
|
10272
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
10273
|
+
*/
|
|
10274
|
+
403: ErrorResponse;
|
|
10275
|
+
/**
|
|
10276
|
+
* Not Found - Resource does not exist
|
|
10277
|
+
*/
|
|
10278
|
+
404: ErrorResponse;
|
|
10279
|
+
/**
|
|
10280
|
+
* Too Many Requests - Rate limit exceeded
|
|
10281
|
+
*/
|
|
10282
|
+
429: ErrorResponse;
|
|
10283
|
+
/**
|
|
10284
|
+
* Internal Server Error - Unexpected server error
|
|
10285
|
+
*/
|
|
10286
|
+
500: ErrorResponse;
|
|
10287
|
+
/**
|
|
10288
|
+
* General Error
|
|
10289
|
+
*/
|
|
10290
|
+
default: Errors;
|
|
10291
|
+
};
|
|
10292
|
+
type GetCreditPackagesByIdError = GetCreditPackagesByIdErrors[keyof GetCreditPackagesByIdErrors];
|
|
10293
|
+
type GetCreditPackagesByIdResponses = {
|
|
10294
|
+
/**
|
|
10295
|
+
* Success
|
|
10296
|
+
*/
|
|
10297
|
+
200: {
|
|
10298
|
+
data?: CreditPackage;
|
|
10299
|
+
included?: Array<unknown>;
|
|
10300
|
+
meta?: {
|
|
10301
|
+
[key: string]: unknown;
|
|
10302
|
+
};
|
|
10303
|
+
};
|
|
10304
|
+
};
|
|
10305
|
+
type GetCreditPackagesByIdResponse = GetCreditPackagesByIdResponses[keyof GetCreditPackagesByIdResponses];
|
|
10306
|
+
type GetUsersByIdData = {
|
|
10307
|
+
body?: never;
|
|
10308
|
+
headers: {
|
|
10309
|
+
/**
|
|
10310
|
+
* Application ID for authentication and routing
|
|
10311
|
+
*/
|
|
10312
|
+
"x-application-key": string;
|
|
10313
|
+
};
|
|
10314
|
+
path: {
|
|
10315
|
+
id: string;
|
|
10316
|
+
};
|
|
10317
|
+
query?: {
|
|
10318
|
+
/**
|
|
10319
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
10320
|
+
*/
|
|
10321
|
+
include?: string;
|
|
10322
|
+
/**
|
|
10323
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
10324
|
+
*/
|
|
10325
|
+
fields?: {
|
|
10326
|
+
[key: string]: unknown;
|
|
10327
|
+
};
|
|
10328
|
+
};
|
|
10329
|
+
url: "/users/{id}";
|
|
10330
|
+
};
|
|
10331
|
+
type GetUsersByIdErrors = {
|
|
9712
10332
|
/**
|
|
9713
10333
|
* Bad Request - Invalid input data or malformed request
|
|
9714
10334
|
*/
|
|
@@ -9738,21 +10358,21 @@ type GetCreditPackagesByIdErrors = {
|
|
|
9738
10358
|
*/
|
|
9739
10359
|
default: Errors;
|
|
9740
10360
|
};
|
|
9741
|
-
type
|
|
9742
|
-
type
|
|
10361
|
+
type GetUsersByIdError = GetUsersByIdErrors[keyof GetUsersByIdErrors];
|
|
10362
|
+
type GetUsersByIdResponses = {
|
|
9743
10363
|
/**
|
|
9744
10364
|
* Success
|
|
9745
10365
|
*/
|
|
9746
10366
|
200: {
|
|
9747
|
-
data?:
|
|
10367
|
+
data?: User;
|
|
9748
10368
|
included?: Array<unknown>;
|
|
9749
10369
|
meta?: {
|
|
9750
10370
|
[key: string]: unknown;
|
|
9751
10371
|
};
|
|
9752
10372
|
};
|
|
9753
10373
|
};
|
|
9754
|
-
type
|
|
9755
|
-
type
|
|
10374
|
+
type GetUsersByIdResponse = GetUsersByIdResponses[keyof GetUsersByIdResponses];
|
|
10375
|
+
type GetExtractionResultsByIdData = {
|
|
9756
10376
|
body?: never;
|
|
9757
10377
|
headers: {
|
|
9758
10378
|
/**
|
|
@@ -9775,9 +10395,9 @@ type GetUsersByIdData = {
|
|
|
9775
10395
|
[key: string]: unknown;
|
|
9776
10396
|
};
|
|
9777
10397
|
};
|
|
9778
|
-
url: "/
|
|
10398
|
+
url: "/extraction/results/{id}";
|
|
9779
10399
|
};
|
|
9780
|
-
type
|
|
10400
|
+
type GetExtractionResultsByIdErrors = {
|
|
9781
10401
|
/**
|
|
9782
10402
|
* Bad Request - Invalid input data or malformed request
|
|
9783
10403
|
*/
|
|
@@ -9807,31 +10427,42 @@ type GetUsersByIdErrors = {
|
|
|
9807
10427
|
*/
|
|
9808
10428
|
default: Errors;
|
|
9809
10429
|
};
|
|
9810
|
-
type
|
|
9811
|
-
type
|
|
10430
|
+
type GetExtractionResultsByIdError = GetExtractionResultsByIdErrors[keyof GetExtractionResultsByIdErrors];
|
|
10431
|
+
type GetExtractionResultsByIdResponses = {
|
|
9812
10432
|
/**
|
|
9813
10433
|
* Success
|
|
9814
10434
|
*/
|
|
9815
10435
|
200: {
|
|
9816
|
-
data?:
|
|
10436
|
+
data?: ExtractionResult;
|
|
9817
10437
|
included?: Array<unknown>;
|
|
9818
10438
|
meta?: {
|
|
9819
10439
|
[key: string]: unknown;
|
|
9820
10440
|
};
|
|
9821
10441
|
};
|
|
9822
10442
|
};
|
|
9823
|
-
type
|
|
9824
|
-
type
|
|
9825
|
-
|
|
10443
|
+
type GetExtractionResultsByIdResponse = GetExtractionResultsByIdResponses[keyof GetExtractionResultsByIdResponses];
|
|
10444
|
+
type PostWebhookDeliveriesStatsData = {
|
|
10445
|
+
/**
|
|
10446
|
+
* Request body for the /webhook_deliveries/stats operation on webhook_delivery resource
|
|
10447
|
+
*/
|
|
10448
|
+
body?: {
|
|
10449
|
+
data: {
|
|
10450
|
+
attributes?: {
|
|
10451
|
+
[key: string]: never;
|
|
10452
|
+
};
|
|
10453
|
+
relationships?: {
|
|
10454
|
+
[key: string]: never;
|
|
10455
|
+
};
|
|
10456
|
+
type?: "webhook_delivery";
|
|
10457
|
+
};
|
|
10458
|
+
};
|
|
9826
10459
|
headers: {
|
|
9827
10460
|
/**
|
|
9828
10461
|
* Application ID for authentication and routing
|
|
9829
10462
|
*/
|
|
9830
10463
|
"x-application-key": string;
|
|
9831
10464
|
};
|
|
9832
|
-
path
|
|
9833
|
-
id: string;
|
|
9834
|
-
};
|
|
10465
|
+
path?: never;
|
|
9835
10466
|
query?: {
|
|
9836
10467
|
/**
|
|
9837
10468
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -9844,9 +10475,9 @@ type GetExtractionResultsByIdData = {
|
|
|
9844
10475
|
[key: string]: unknown;
|
|
9845
10476
|
};
|
|
9846
10477
|
};
|
|
9847
|
-
url: "/
|
|
10478
|
+
url: "/webhook_deliveries/stats";
|
|
9848
10479
|
};
|
|
9849
|
-
type
|
|
10480
|
+
type PostWebhookDeliveriesStatsErrors = {
|
|
9850
10481
|
/**
|
|
9851
10482
|
* Bad Request - Invalid input data or malformed request
|
|
9852
10483
|
*/
|
|
@@ -9876,20 +10507,20 @@ type GetExtractionResultsByIdErrors = {
|
|
|
9876
10507
|
*/
|
|
9877
10508
|
default: Errors;
|
|
9878
10509
|
};
|
|
9879
|
-
type
|
|
9880
|
-
type
|
|
10510
|
+
type PostWebhookDeliveriesStatsError = PostWebhookDeliveriesStatsErrors[keyof PostWebhookDeliveriesStatsErrors];
|
|
10511
|
+
type PostWebhookDeliveriesStatsResponses = {
|
|
9881
10512
|
/**
|
|
9882
10513
|
* Success
|
|
9883
10514
|
*/
|
|
9884
|
-
|
|
9885
|
-
data?:
|
|
10515
|
+
201: {
|
|
10516
|
+
data?: WebhookDelivery;
|
|
9886
10517
|
included?: Array<unknown>;
|
|
9887
10518
|
meta?: {
|
|
9888
10519
|
[key: string]: unknown;
|
|
9889
10520
|
};
|
|
9890
10521
|
};
|
|
9891
10522
|
};
|
|
9892
|
-
type
|
|
10523
|
+
type PostWebhookDeliveriesStatsResponse = PostWebhookDeliveriesStatsResponses[keyof PostWebhookDeliveriesStatsResponses];
|
|
9893
10524
|
type PostAgentsByIdValidateData = {
|
|
9894
10525
|
/**
|
|
9895
10526
|
* Request body for the /agents/:id/validate operation on agent resource
|
|
@@ -16499,6 +17130,86 @@ type DeleteAiGraphNodesByIdResponses = {
|
|
|
16499
17130
|
*/
|
|
16500
17131
|
200: unknown;
|
|
16501
17132
|
};
|
|
17133
|
+
type GetWorkspacesSharedData = {
|
|
17134
|
+
body?: never;
|
|
17135
|
+
headers: {
|
|
17136
|
+
/**
|
|
17137
|
+
* Application ID for authentication and routing
|
|
17138
|
+
*/
|
|
17139
|
+
"x-application-key": string;
|
|
17140
|
+
};
|
|
17141
|
+
path?: never;
|
|
17142
|
+
query?: {
|
|
17143
|
+
/**
|
|
17144
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
17145
|
+
*/
|
|
17146
|
+
filter?: {
|
|
17147
|
+
[key: string]: unknown;
|
|
17148
|
+
};
|
|
17149
|
+
/**
|
|
17150
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
17151
|
+
*/
|
|
17152
|
+
sort?: string;
|
|
17153
|
+
/**
|
|
17154
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
17155
|
+
*/
|
|
17156
|
+
include?: string;
|
|
17157
|
+
/**
|
|
17158
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
17159
|
+
*/
|
|
17160
|
+
fields?: {
|
|
17161
|
+
[key: string]: unknown;
|
|
17162
|
+
};
|
|
17163
|
+
};
|
|
17164
|
+
url: "/workspaces/shared";
|
|
17165
|
+
};
|
|
17166
|
+
type GetWorkspacesSharedErrors = {
|
|
17167
|
+
/**
|
|
17168
|
+
* Bad Request - Invalid input data or malformed request
|
|
17169
|
+
*/
|
|
17170
|
+
400: ErrorResponse;
|
|
17171
|
+
/**
|
|
17172
|
+
* Unauthorized - Missing or invalid authentication token
|
|
17173
|
+
*/
|
|
17174
|
+
401: ErrorResponse;
|
|
17175
|
+
/**
|
|
17176
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
17177
|
+
*/
|
|
17178
|
+
403: ErrorResponse;
|
|
17179
|
+
/**
|
|
17180
|
+
* Not Found - Resource does not exist
|
|
17181
|
+
*/
|
|
17182
|
+
404: ErrorResponse;
|
|
17183
|
+
/**
|
|
17184
|
+
* Too Many Requests - Rate limit exceeded
|
|
17185
|
+
*/
|
|
17186
|
+
429: ErrorResponse;
|
|
17187
|
+
/**
|
|
17188
|
+
* Internal Server Error - Unexpected server error
|
|
17189
|
+
*/
|
|
17190
|
+
500: ErrorResponse;
|
|
17191
|
+
/**
|
|
17192
|
+
* General Error
|
|
17193
|
+
*/
|
|
17194
|
+
default: Errors;
|
|
17195
|
+
};
|
|
17196
|
+
type GetWorkspacesSharedError = GetWorkspacesSharedErrors[keyof GetWorkspacesSharedErrors];
|
|
17197
|
+
type GetWorkspacesSharedResponses = {
|
|
17198
|
+
/**
|
|
17199
|
+
* Success
|
|
17200
|
+
*/
|
|
17201
|
+
200: {
|
|
17202
|
+
/**
|
|
17203
|
+
* An array of resource objects representing a workspace
|
|
17204
|
+
*/
|
|
17205
|
+
data?: Array<Workspace>;
|
|
17206
|
+
included?: Array<Tenant>;
|
|
17207
|
+
meta?: {
|
|
17208
|
+
[key: string]: unknown;
|
|
17209
|
+
};
|
|
17210
|
+
};
|
|
17211
|
+
};
|
|
17212
|
+
type GetWorkspacesSharedResponse = GetWorkspacesSharedResponses[keyof GetWorkspacesSharedResponses];
|
|
16502
17213
|
type PatchWalletAddonsByAddonSlugCancelData = {
|
|
16503
17214
|
/**
|
|
16504
17215
|
* Request body for the /wallet/addons/:addon_slug/cancel operation on wallet resource
|
|
@@ -24228,6 +24939,88 @@ type PatchApplicationsByApplicationIdEmailTemplatesBySlugResponses = {
|
|
|
24228
24939
|
};
|
|
24229
24940
|
};
|
|
24230
24941
|
type PatchApplicationsByApplicationIdEmailTemplatesBySlugResponse = PatchApplicationsByApplicationIdEmailTemplatesBySlugResponses[keyof PatchApplicationsByApplicationIdEmailTemplatesBySlugResponses];
|
|
24942
|
+
type PostAgentsByIdExportData = {
|
|
24943
|
+
/**
|
|
24944
|
+
* Request body for the /agents/:id/export operation on agent resource
|
|
24945
|
+
*/
|
|
24946
|
+
body?: {
|
|
24947
|
+
data: {
|
|
24948
|
+
attributes?: {
|
|
24949
|
+
[key: string]: never;
|
|
24950
|
+
};
|
|
24951
|
+
relationships?: {
|
|
24952
|
+
[key: string]: never;
|
|
24953
|
+
};
|
|
24954
|
+
type?: "agent";
|
|
24955
|
+
};
|
|
24956
|
+
};
|
|
24957
|
+
headers: {
|
|
24958
|
+
/**
|
|
24959
|
+
* Application ID for authentication and routing
|
|
24960
|
+
*/
|
|
24961
|
+
"x-application-key": string;
|
|
24962
|
+
};
|
|
24963
|
+
path: {
|
|
24964
|
+
id: string;
|
|
24965
|
+
};
|
|
24966
|
+
query?: {
|
|
24967
|
+
/**
|
|
24968
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
24969
|
+
*/
|
|
24970
|
+
include?: string;
|
|
24971
|
+
/**
|
|
24972
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
24973
|
+
*/
|
|
24974
|
+
fields?: {
|
|
24975
|
+
[key: string]: unknown;
|
|
24976
|
+
};
|
|
24977
|
+
};
|
|
24978
|
+
url: "/agents/{id}/export";
|
|
24979
|
+
};
|
|
24980
|
+
type PostAgentsByIdExportErrors = {
|
|
24981
|
+
/**
|
|
24982
|
+
* Bad Request - Invalid input data or malformed request
|
|
24983
|
+
*/
|
|
24984
|
+
400: ErrorResponse;
|
|
24985
|
+
/**
|
|
24986
|
+
* Unauthorized - Missing or invalid authentication token
|
|
24987
|
+
*/
|
|
24988
|
+
401: ErrorResponse;
|
|
24989
|
+
/**
|
|
24990
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
24991
|
+
*/
|
|
24992
|
+
403: ErrorResponse;
|
|
24993
|
+
/**
|
|
24994
|
+
* Not Found - Resource does not exist
|
|
24995
|
+
*/
|
|
24996
|
+
404: ErrorResponse;
|
|
24997
|
+
/**
|
|
24998
|
+
* Too Many Requests - Rate limit exceeded
|
|
24999
|
+
*/
|
|
25000
|
+
429: ErrorResponse;
|
|
25001
|
+
/**
|
|
25002
|
+
* Internal Server Error - Unexpected server error
|
|
25003
|
+
*/
|
|
25004
|
+
500: ErrorResponse;
|
|
25005
|
+
/**
|
|
25006
|
+
* General Error
|
|
25007
|
+
*/
|
|
25008
|
+
default: Errors;
|
|
25009
|
+
};
|
|
25010
|
+
type PostAgentsByIdExportError = PostAgentsByIdExportErrors[keyof PostAgentsByIdExportErrors];
|
|
25011
|
+
type PostAgentsByIdExportResponses = {
|
|
25012
|
+
/**
|
|
25013
|
+
* Success
|
|
25014
|
+
*/
|
|
25015
|
+
201: {
|
|
25016
|
+
data?: Agent;
|
|
25017
|
+
included?: Array<AgentVersion>;
|
|
25018
|
+
meta?: {
|
|
25019
|
+
[key: string]: unknown;
|
|
25020
|
+
};
|
|
25021
|
+
};
|
|
25022
|
+
};
|
|
25023
|
+
type PostAgentsByIdExportResponse = PostAgentsByIdExportResponses[keyof PostAgentsByIdExportResponses];
|
|
24231
25024
|
type PostUsersRegisterIsvData = {
|
|
24232
25025
|
/**
|
|
24233
25026
|
* Request body for the /users/register_isv operation on user resource
|
|
@@ -25385,6 +26178,22 @@ declare const getAiChunksDocumentByDocumentId: <ThrowOnError extends boolean = f
|
|
|
25385
26178
|
* Purchase credits (Top-up)
|
|
25386
26179
|
*/
|
|
25387
26180
|
declare const patchWalletCredits: <ThrowOnError extends boolean = false>(options: Options<PatchWalletCreditsData, ThrowOnError>) => RequestResult<PatchWalletCreditsResponses, PatchWalletCreditsErrors, ThrowOnError, "fields">;
|
|
26181
|
+
/**
|
|
26182
|
+
* Create stats
|
|
26183
|
+
*
|
|
26184
|
+
* Creates a new resource. Returns the created resource with generated ID.
|
|
26185
|
+
*
|
|
26186
|
+
* **Authentication:** Required - Bearer token or API key
|
|
26187
|
+
* **Rate Limit:** 100 requests per minute
|
|
26188
|
+
*
|
|
26189
|
+
*/
|
|
26190
|
+
declare const postWebhookConfigsStats: <ThrowOnError extends boolean = false>(options: Options<PostWebhookConfigsStatsData, ThrowOnError>) => RequestResult<PostWebhookConfigsStatsResponses, PostWebhookConfigsStatsErrors, ThrowOnError, "fields">;
|
|
26191
|
+
/**
|
|
26192
|
+
* List current
|
|
26193
|
+
*
|
|
26194
|
+
* Get the current application based on x-application-key header context
|
|
26195
|
+
*/
|
|
26196
|
+
declare const getApplicationsCurrent: <ThrowOnError extends boolean = false>(options: Options<GetApplicationsCurrentData, ThrowOnError>) => RequestResult<GetApplicationsCurrentResponses, GetApplicationsCurrentErrors, ThrowOnError, "fields">;
|
|
25388
26197
|
/**
|
|
25389
26198
|
* List workspaces
|
|
25390
26199
|
*
|
|
@@ -25405,6 +26214,12 @@ declare const getWorkspaces: <ThrowOnError extends boolean = false>(options: Opt
|
|
|
25405
26214
|
*
|
|
25406
26215
|
*/
|
|
25407
26216
|
declare const postWorkspaces: <ThrowOnError extends boolean = false>(options: Options<PostWorkspacesData, ThrowOnError>) => RequestResult<PostWorkspacesResponses, PostWorkspacesErrors, ThrowOnError, "fields">;
|
|
26217
|
+
/**
|
|
26218
|
+
* Create stats
|
|
26219
|
+
*
|
|
26220
|
+
* Get usage statistics for this agent
|
|
26221
|
+
*/
|
|
26222
|
+
declare const postAgentsByIdStats: <ThrowOnError extends boolean = false>(options: Options<PostAgentsByIdStatsData, ThrowOnError>) => RequestResult<PostAgentsByIdStatsResponses, PostAgentsByIdStatsErrors, ThrowOnError, "fields">;
|
|
25408
26223
|
/**
|
|
25409
26224
|
* List stats
|
|
25410
26225
|
*
|
|
@@ -25465,6 +26280,16 @@ declare const patchExtractionDocumentsByIdDismissTraining: <ThrowOnError extends
|
|
|
25465
26280
|
*
|
|
25466
26281
|
*/
|
|
25467
26282
|
declare const getSearchIndexes: <ThrowOnError extends boolean = false>(options: Options<GetSearchIndexesData, ThrowOnError>) => RequestResult<GetSearchIndexesResponses, GetSearchIndexesErrors, ThrowOnError, "fields">;
|
|
26283
|
+
/**
|
|
26284
|
+
* Create bulk disable
|
|
26285
|
+
*
|
|
26286
|
+
* Creates a new resource. Returns the created resource with generated ID.
|
|
26287
|
+
*
|
|
26288
|
+
* **Authentication:** Required - Bearer token or API key
|
|
26289
|
+
* **Rate Limit:** 100 requests per minute
|
|
26290
|
+
*
|
|
26291
|
+
*/
|
|
26292
|
+
declare const postWebhookConfigsBulkDisable: <ThrowOnError extends boolean = false>(options: Options<PostWebhookConfigsBulkDisableData, ThrowOnError>) => RequestResult<PostWebhookConfigsBulkDisableResponses, PostWebhookConfigsBulkDisableErrors, ThrowOnError, "fields">;
|
|
25468
26293
|
/**
|
|
25469
26294
|
* Get slug
|
|
25470
26295
|
*
|
|
@@ -25513,6 +26338,12 @@ declare const patchExtractionDocumentsByIdExclude: <ThrowOnError extends boolean
|
|
|
25513
26338
|
* Process a payment
|
|
25514
26339
|
*/
|
|
25515
26340
|
declare const postPayments: <ThrowOnError extends boolean = false>(options: Options<PostPaymentsData, ThrowOnError>) => RequestResult<PostPaymentsResponses, PostPaymentsErrors, ThrowOnError, "fields">;
|
|
26341
|
+
/**
|
|
26342
|
+
* Create import
|
|
26343
|
+
*
|
|
26344
|
+
* Import agent from exported JSON
|
|
26345
|
+
*/
|
|
26346
|
+
declare const postAgentsImport: <ThrowOnError extends boolean = false>(options: Options<PostAgentsImportData, ThrowOnError>) => RequestResult<PostAgentsImportResponses, PostAgentsImportErrors, ThrowOnError, "fields">;
|
|
25516
26347
|
/**
|
|
25517
26348
|
* Get workspace
|
|
25518
26349
|
*
|
|
@@ -25639,6 +26470,16 @@ declare const postConfigs: <ThrowOnError extends boolean = false>(options: Optio
|
|
|
25639
26470
|
* Create a payment token
|
|
25640
26471
|
*/
|
|
25641
26472
|
declare const postTokens: <ThrowOnError extends boolean = false>(options: Options<PostTokensData, ThrowOnError>) => RequestResult<PostTokensResponses, PostTokensErrors, ThrowOnError, "fields">;
|
|
26473
|
+
/**
|
|
26474
|
+
* Create bulk enable
|
|
26475
|
+
*
|
|
26476
|
+
* Creates a new resource. Returns the created resource with generated ID.
|
|
26477
|
+
*
|
|
26478
|
+
* **Authentication:** Required - Bearer token or API key
|
|
26479
|
+
* **Rate Limit:** 100 requests per minute
|
|
26480
|
+
*
|
|
26481
|
+
*/
|
|
26482
|
+
declare const postWebhookConfigsBulkEnable: <ThrowOnError extends boolean = false>(options: Options<PostWebhookConfigsBulkEnableData, ThrowOnError>) => RequestResult<PostWebhookConfigsBulkEnableResponses, PostWebhookConfigsBulkEnableErrors, ThrowOnError, "fields">;
|
|
25642
26483
|
/**
|
|
25643
26484
|
* Update set budget
|
|
25644
26485
|
*
|
|
@@ -25675,6 +26516,16 @@ declare const getTrainingExamplesById: <ThrowOnError extends boolean = false>(op
|
|
|
25675
26516
|
*
|
|
25676
26517
|
*/
|
|
25677
26518
|
declare const patchTrainingExamplesById: <ThrowOnError extends boolean = false>(options: Options<PatchTrainingExamplesByIdData, ThrowOnError>) => RequestResult<PatchTrainingExamplesByIdResponses, PatchTrainingExamplesByIdErrors, ThrowOnError, "fields">;
|
|
26519
|
+
/**
|
|
26520
|
+
* Create bulk retry
|
|
26521
|
+
*
|
|
26522
|
+
* Creates a new resource. Returns the created resource with generated ID.
|
|
26523
|
+
*
|
|
26524
|
+
* **Authentication:** Required - Bearer token or API key
|
|
26525
|
+
* **Rate Limit:** 100 requests per minute
|
|
26526
|
+
*
|
|
26527
|
+
*/
|
|
26528
|
+
declare const postWebhookDeliveriesBulkRetry: <ThrowOnError extends boolean = false>(options: Options<PostWebhookDeliveriesBulkRetryData, ThrowOnError>) => RequestResult<PostWebhookDeliveriesBulkRetryResponses, PostWebhookDeliveriesBulkRetryErrors, ThrowOnError, "fields">;
|
|
25678
26529
|
/**
|
|
25679
26530
|
* Delete saved
|
|
25680
26531
|
*
|
|
@@ -25983,6 +26834,16 @@ declare const getUsersById: <ThrowOnError extends boolean = false>(options: Opti
|
|
|
25983
26834
|
*
|
|
25984
26835
|
*/
|
|
25985
26836
|
declare const getExtractionResultsById: <ThrowOnError extends boolean = false>(options: Options<GetExtractionResultsByIdData, ThrowOnError>) => RequestResult<GetExtractionResultsByIdResponses, GetExtractionResultsByIdErrors, ThrowOnError, "fields">;
|
|
26837
|
+
/**
|
|
26838
|
+
* Create stats
|
|
26839
|
+
*
|
|
26840
|
+
* Creates a new resource. Returns the created resource with generated ID.
|
|
26841
|
+
*
|
|
26842
|
+
* **Authentication:** Required - Bearer token or API key
|
|
26843
|
+
* **Rate Limit:** 100 requests per minute
|
|
26844
|
+
*
|
|
26845
|
+
*/
|
|
26846
|
+
declare const postWebhookDeliveriesStats: <ThrowOnError extends boolean = false>(options: Options<PostWebhookDeliveriesStatsData, ThrowOnError>) => RequestResult<PostWebhookDeliveriesStatsResponses, PostWebhookDeliveriesStatsErrors, ThrowOnError, "fields">;
|
|
25986
26847
|
/**
|
|
25987
26848
|
* Create validate
|
|
25988
26849
|
*
|
|
@@ -26753,6 +27614,12 @@ declare const postAiSearch: <ThrowOnError extends boolean = false>(options: Opti
|
|
|
26753
27614
|
*
|
|
26754
27615
|
*/
|
|
26755
27616
|
declare const deleteAiGraphNodesById: <ThrowOnError extends boolean = false>(options: Options<DeleteAiGraphNodesByIdData, ThrowOnError>) => RequestResult<DeleteAiGraphNodesByIdResponses, DeleteAiGraphNodesByIdErrors, ThrowOnError, "fields">;
|
|
27617
|
+
/**
|
|
27618
|
+
* List shared
|
|
27619
|
+
*
|
|
27620
|
+
* Workspaces where user has membership but NOT tenant membership (shared from external orgs)
|
|
27621
|
+
*/
|
|
27622
|
+
declare const getWorkspacesShared: <ThrowOnError extends boolean = false>(options: Options<GetWorkspacesSharedData, ThrowOnError>) => RequestResult<GetWorkspacesSharedResponses, GetWorkspacesSharedErrors, ThrowOnError, "fields">;
|
|
26756
27623
|
/**
|
|
26757
27624
|
* Update cancel
|
|
26758
27625
|
*
|
|
@@ -27657,6 +28524,12 @@ declare const getApplicationsByApplicationIdEmailTemplatesBySlug: <ThrowOnError
|
|
|
27657
28524
|
*
|
|
27658
28525
|
*/
|
|
27659
28526
|
declare const patchApplicationsByApplicationIdEmailTemplatesBySlug: <ThrowOnError extends boolean = false>(options: Options<PatchApplicationsByApplicationIdEmailTemplatesBySlugData, ThrowOnError>) => RequestResult<PatchApplicationsByApplicationIdEmailTemplatesBySlugResponses, PatchApplicationsByApplicationIdEmailTemplatesBySlugErrors, ThrowOnError, "fields">;
|
|
28527
|
+
/**
|
|
28528
|
+
* Create export
|
|
28529
|
+
*
|
|
28530
|
+
* Export agent configuration and training examples
|
|
28531
|
+
*/
|
|
28532
|
+
declare const postAgentsByIdExport: <ThrowOnError extends boolean = false>(options: Options<PostAgentsByIdExportData, ThrowOnError>) => RequestResult<PostAgentsByIdExportResponses, PostAgentsByIdExportErrors, ThrowOnError, "fields">;
|
|
27660
28533
|
/**
|
|
27661
28534
|
* Create register isv
|
|
27662
28535
|
*
|
|
@@ -28094,20 +28967,25 @@ declare const gptCore: {
|
|
|
28094
28967
|
getTrainingSessionsAgentsByAgentIdSessions: <ThrowOnError extends boolean = false>(options: Options<GetTrainingSessionsAgentsByAgentIdSessionsData, ThrowOnError>) => RequestResult<GetTrainingSessionsAgentsByAgentIdSessionsResponses, GetTrainingSessionsAgentsByAgentIdSessionsErrors, ThrowOnError, "fields">;
|
|
28095
28968
|
getAiChunksDocumentByDocumentId: <ThrowOnError extends boolean = false>(options: Options<GetAiChunksDocumentByDocumentIdData, ThrowOnError>) => RequestResult<GetAiChunksDocumentByDocumentIdResponses, GetAiChunksDocumentByDocumentIdErrors, ThrowOnError, "fields">;
|
|
28096
28969
|
patchWalletCredits: <ThrowOnError extends boolean = false>(options: Options<PatchWalletCreditsData, ThrowOnError>) => RequestResult<PatchWalletCreditsResponses, PatchWalletCreditsErrors, ThrowOnError, "fields">;
|
|
28970
|
+
postWebhookConfigsStats: <ThrowOnError extends boolean = false>(options: Options<PostWebhookConfigsStatsData, ThrowOnError>) => RequestResult<PostWebhookConfigsStatsResponses, PostWebhookConfigsStatsErrors, ThrowOnError, "fields">;
|
|
28971
|
+
getApplicationsCurrent: <ThrowOnError extends boolean = false>(options: Options<GetApplicationsCurrentData, ThrowOnError>) => RequestResult<GetApplicationsCurrentResponses, GetApplicationsCurrentErrors, ThrowOnError, "fields">;
|
|
28097
28972
|
getWorkspaces: <ThrowOnError extends boolean = false>(options: Options<GetWorkspacesData, ThrowOnError>) => RequestResult<GetWorkspacesResponses, GetWorkspacesErrors, ThrowOnError, "fields">;
|
|
28098
28973
|
postWorkspaces: <ThrowOnError extends boolean = false>(options: Options<PostWorkspacesData, ThrowOnError>) => RequestResult<PostWorkspacesResponses, PostWorkspacesErrors, ThrowOnError, "fields">;
|
|
28974
|
+
postAgentsByIdStats: <ThrowOnError extends boolean = false>(options: Options<PostAgentsByIdStatsData, ThrowOnError>) => RequestResult<PostAgentsByIdStatsResponses, PostAgentsByIdStatsErrors, ThrowOnError, "fields">;
|
|
28099
28975
|
getDocumentsStats: <ThrowOnError extends boolean = false>(options: Options<GetDocumentsStatsData, ThrowOnError>) => RequestResult<GetDocumentsStatsResponses, GetDocumentsStatsErrors, ThrowOnError, "fields">;
|
|
28100
28976
|
patchExtractionDocumentsByIdDismiss: <ThrowOnError extends boolean = false>(options: Options<PatchExtractionDocumentsByIdDismissData, ThrowOnError>) => RequestResult<PatchExtractionDocumentsByIdDismissResponses, PatchExtractionDocumentsByIdDismissErrors, ThrowOnError, "fields">;
|
|
28101
28977
|
postObjectsRegister: <ThrowOnError extends boolean = false>(options: Options<PostObjectsRegisterData, ThrowOnError>) => RequestResult<PostObjectsRegisterResponses, PostObjectsRegisterErrors, ThrowOnError, "fields">;
|
|
28102
28978
|
getLlmAnalyticsWorkspace: <ThrowOnError extends boolean = false>(options: Options<GetLlmAnalyticsWorkspaceData, ThrowOnError>) => RequestResult<GetLlmAnalyticsWorkspaceResponses, GetLlmAnalyticsWorkspaceErrors, ThrowOnError, "fields">;
|
|
28103
28979
|
patchExtractionDocumentsByIdDismissTraining: <ThrowOnError extends boolean = false>(options: Options<PatchExtractionDocumentsByIdDismissTrainingData, ThrowOnError>) => RequestResult<PatchExtractionDocumentsByIdDismissTrainingResponses, PatchExtractionDocumentsByIdDismissTrainingErrors, ThrowOnError, "fields">;
|
|
28104
28980
|
getSearchIndexes: <ThrowOnError extends boolean = false>(options: Options<GetSearchIndexesData, ThrowOnError>) => RequestResult<GetSearchIndexesResponses, GetSearchIndexesErrors, ThrowOnError, "fields">;
|
|
28981
|
+
postWebhookConfigsBulkDisable: <ThrowOnError extends boolean = false>(options: Options<PostWebhookConfigsBulkDisableData, ThrowOnError>) => RequestResult<PostWebhookConfigsBulkDisableResponses, PostWebhookConfigsBulkDisableErrors, ThrowOnError, "fields">;
|
|
28105
28982
|
getCreditPackagesSlugBySlug: <ThrowOnError extends boolean = false>(options: Options<GetCreditPackagesSlugBySlugData, ThrowOnError>) => RequestResult<GetCreditPackagesSlugBySlugResponses, GetCreditPackagesSlugBySlugErrors, ThrowOnError, "fields">;
|
|
28106
28983
|
patchUsersAuthPasswordChange: <ThrowOnError extends boolean = false>(options: Options<PatchUsersAuthPasswordChangeData, ThrowOnError>) => RequestResult<PatchUsersAuthPasswordChangeResponses, PatchUsersAuthPasswordChangeErrors, ThrowOnError, "fields">;
|
|
28107
28984
|
postExtractionBatches: <ThrowOnError extends boolean = false>(options: Options<PostExtractionBatchesData, ThrowOnError>) => RequestResult<PostExtractionBatchesResponses, PostExtractionBatchesErrors, ThrowOnError, "fields">;
|
|
28108
28985
|
getLlmAnalyticsPlatform: <ThrowOnError extends boolean = false>(options: Options<GetLlmAnalyticsPlatformData, ThrowOnError>) => RequestResult<GetLlmAnalyticsPlatformResponses, GetLlmAnalyticsPlatformErrors, ThrowOnError, "fields">;
|
|
28109
28986
|
patchExtractionDocumentsByIdExclude: <ThrowOnError extends boolean = false>(options: Options<PatchExtractionDocumentsByIdExcludeData, ThrowOnError>) => RequestResult<PatchExtractionDocumentsByIdExcludeResponses, PatchExtractionDocumentsByIdExcludeErrors, ThrowOnError, "fields">;
|
|
28110
28987
|
postPayments: <ThrowOnError extends boolean = false>(options: Options<PostPaymentsData, ThrowOnError>) => RequestResult<PostPaymentsResponses, PostPaymentsErrors, ThrowOnError, "fields">;
|
|
28988
|
+
postAgentsImport: <ThrowOnError extends boolean = false>(options: Options<PostAgentsImportData, ThrowOnError>) => RequestResult<PostAgentsImportResponses, PostAgentsImportErrors, ThrowOnError, "fields">;
|
|
28111
28989
|
getExtractionBatchesWorkspaceByWorkspaceId: <ThrowOnError extends boolean = false>(options: Options<GetExtractionBatchesWorkspaceByWorkspaceIdData, ThrowOnError>) => RequestResult<GetExtractionBatchesWorkspaceByWorkspaceIdResponses, GetExtractionBatchesWorkspaceByWorkspaceIdErrors, ThrowOnError, "fields">;
|
|
28112
28990
|
patchApiKeysByIdRevoke: <ThrowOnError extends boolean = false>(options: Options<PatchApiKeysByIdRevokeData, ThrowOnError>) => RequestResult<PatchApiKeysByIdRevokeResponses, PatchApiKeysByIdRevokeErrors, ThrowOnError, "fields">;
|
|
28113
28991
|
getInvitationsConsumeByToken: <ThrowOnError extends boolean = false>(options: Options<GetInvitationsConsumeByTokenData, ThrowOnError>) => RequestResult<GetInvitationsConsumeByTokenResponses, GetInvitationsConsumeByTokenErrors, ThrowOnError, "fields">;
|
|
@@ -28121,10 +28999,12 @@ declare const gptCore: {
|
|
|
28121
28999
|
getConfigs: <ThrowOnError extends boolean = false>(options: Options<GetConfigsData, ThrowOnError>) => RequestResult<GetConfigsResponses, GetConfigsErrors, ThrowOnError, "fields">;
|
|
28122
29000
|
postConfigs: <ThrowOnError extends boolean = false>(options: Options<PostConfigsData, ThrowOnError>) => RequestResult<PostConfigsResponses, PostConfigsErrors, ThrowOnError, "fields">;
|
|
28123
29001
|
postTokens: <ThrowOnError extends boolean = false>(options: Options<PostTokensData, ThrowOnError>) => RequestResult<PostTokensResponses, PostTokensErrors, ThrowOnError, "fields">;
|
|
29002
|
+
postWebhookConfigsBulkEnable: <ThrowOnError extends boolean = false>(options: Options<PostWebhookConfigsBulkEnableData, ThrowOnError>) => RequestResult<PostWebhookConfigsBulkEnableResponses, PostWebhookConfigsBulkEnableErrors, ThrowOnError, "fields">;
|
|
28124
29003
|
patchApiKeysByIdSetBudget: <ThrowOnError extends boolean = false>(options: Options<PatchApiKeysByIdSetBudgetData, ThrowOnError>) => RequestResult<PatchApiKeysByIdSetBudgetResponses, PatchApiKeysByIdSetBudgetErrors, ThrowOnError, "fields">;
|
|
28125
29004
|
deleteTrainingExamplesById: <ThrowOnError extends boolean = false>(options: Options<DeleteTrainingExamplesByIdData, ThrowOnError>) => RequestResult<DeleteTrainingExamplesByIdResponses, DeleteTrainingExamplesByIdErrors, ThrowOnError, "fields">;
|
|
28126
29005
|
getTrainingExamplesById: <ThrowOnError extends boolean = false>(options: Options<GetTrainingExamplesByIdData, ThrowOnError>) => RequestResult<GetTrainingExamplesByIdResponses, GetTrainingExamplesByIdErrors, ThrowOnError, "fields">;
|
|
28127
29006
|
patchTrainingExamplesById: <ThrowOnError extends boolean = false>(options: Options<PatchTrainingExamplesByIdData, ThrowOnError>) => RequestResult<PatchTrainingExamplesByIdResponses, PatchTrainingExamplesByIdErrors, ThrowOnError, "fields">;
|
|
29007
|
+
postWebhookDeliveriesBulkRetry: <ThrowOnError extends boolean = false>(options: Options<PostWebhookDeliveriesBulkRetryData, ThrowOnError>) => RequestResult<PostWebhookDeliveriesBulkRetryResponses, PostWebhookDeliveriesBulkRetryErrors, ThrowOnError, "fields">;
|
|
28128
29008
|
deleteSearchSavedById: <ThrowOnError extends boolean = false>(options: Options<DeleteSearchSavedByIdData, ThrowOnError>) => RequestResult<DeleteSearchSavedByIdResponses, DeleteSearchSavedByIdErrors, ThrowOnError, "fields">;
|
|
28129
29009
|
patchUsersByIdAdminEmail: <ThrowOnError extends boolean = false>(options: Options<PatchUsersByIdAdminEmailData, ThrowOnError>) => RequestResult<PatchUsersByIdAdminEmailResponses, PatchUsersByIdAdminEmailErrors, ThrowOnError, "fields">;
|
|
28130
29010
|
getExtractionDocumentsWorkspaceByWorkspaceIdTrained: <ThrowOnError extends boolean = false>(options: Options<GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedData, ThrowOnError>) => RequestResult<GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponses, GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedErrors, ThrowOnError, "fields">;
|
|
@@ -28159,6 +29039,7 @@ declare const gptCore: {
|
|
|
28159
29039
|
getCreditPackagesById: <ThrowOnError extends boolean = false>(options: Options<GetCreditPackagesByIdData, ThrowOnError>) => RequestResult<GetCreditPackagesByIdResponses, GetCreditPackagesByIdErrors, ThrowOnError, "fields">;
|
|
28160
29040
|
getUsersById: <ThrowOnError extends boolean = false>(options: Options<GetUsersByIdData, ThrowOnError>) => RequestResult<GetUsersByIdResponses, GetUsersByIdErrors, ThrowOnError, "fields">;
|
|
28161
29041
|
getExtractionResultsById: <ThrowOnError extends boolean = false>(options: Options<GetExtractionResultsByIdData, ThrowOnError>) => RequestResult<GetExtractionResultsByIdResponses, GetExtractionResultsByIdErrors, ThrowOnError, "fields">;
|
|
29042
|
+
postWebhookDeliveriesStats: <ThrowOnError extends boolean = false>(options: Options<PostWebhookDeliveriesStatsData, ThrowOnError>) => RequestResult<PostWebhookDeliveriesStatsResponses, PostWebhookDeliveriesStatsErrors, ThrowOnError, "fields">;
|
|
28162
29043
|
postAgentsByIdValidate: <ThrowOnError extends boolean = false>(options: Options<PostAgentsByIdValidateData, ThrowOnError>) => RequestResult<PostAgentsByIdValidateResponses, PostAgentsByIdValidateErrors, ThrowOnError, "fields">;
|
|
28163
29044
|
postWebhookConfigsByIdTest: <ThrowOnError extends boolean = false>(options: Options<PostWebhookConfigsByIdTestData, ThrowOnError>) => RequestResult<PostWebhookConfigsByIdTestResponses, PostWebhookConfigsByIdTestErrors, ThrowOnError, "fields">;
|
|
28164
29045
|
getUsersMe: <ThrowOnError extends boolean = false>(options: Options<GetUsersMeData, ThrowOnError>) => RequestResult<GetUsersMeResponses, GetUsersMeErrors, ThrowOnError, "fields">;
|
|
@@ -28242,6 +29123,7 @@ declare const gptCore: {
|
|
|
28242
29123
|
postAiConversations: <ThrowOnError extends boolean = false>(options: Options<PostAiConversationsData, ThrowOnError>) => RequestResult<PostAiConversationsResponses, PostAiConversationsErrors, ThrowOnError, "fields">;
|
|
28243
29124
|
postAiSearch: <ThrowOnError extends boolean = false>(options: Options<PostAiSearchData, ThrowOnError>) => RequestResult<PostAiSearchResponses, PostAiSearchErrors, ThrowOnError, "fields">;
|
|
28244
29125
|
deleteAiGraphNodesById: <ThrowOnError extends boolean = false>(options: Options<DeleteAiGraphNodesByIdData, ThrowOnError>) => RequestResult<DeleteAiGraphNodesByIdResponses, DeleteAiGraphNodesByIdErrors, ThrowOnError, "fields">;
|
|
29126
|
+
getWorkspacesShared: <ThrowOnError extends boolean = false>(options: Options<GetWorkspacesSharedData, ThrowOnError>) => RequestResult<GetWorkspacesSharedResponses, GetWorkspacesSharedErrors, ThrowOnError, "fields">;
|
|
28245
29127
|
patchWalletAddonsByAddonSlugCancel: <ThrowOnError extends boolean = false>(options: Options<PatchWalletAddonsByAddonSlugCancelData, ThrowOnError>) => RequestResult<PatchWalletAddonsByAddonSlugCancelResponses, PatchWalletAddonsByAddonSlugCancelErrors, ThrowOnError, "fields">;
|
|
28246
29128
|
deleteApplicationsById: <ThrowOnError extends boolean = false>(options: Options<DeleteApplicationsByIdData, ThrowOnError>) => RequestResult<DeleteApplicationsByIdResponses, DeleteApplicationsByIdErrors, ThrowOnError, "fields">;
|
|
28247
29129
|
getApplicationsById: <ThrowOnError extends boolean = false>(options: Options<GetApplicationsByIdData, ThrowOnError>) => RequestResult<GetApplicationsByIdResponses, GetApplicationsByIdErrors, ThrowOnError, "fields">;
|
|
@@ -28340,6 +29222,7 @@ declare const gptCore: {
|
|
|
28340
29222
|
deleteApplicationsByApplicationIdEmailTemplatesBySlug: <ThrowOnError extends boolean = false>(options: Options<DeleteApplicationsByApplicationIdEmailTemplatesBySlugData, ThrowOnError>) => RequestResult<DeleteApplicationsByApplicationIdEmailTemplatesBySlugResponses, DeleteApplicationsByApplicationIdEmailTemplatesBySlugErrors, ThrowOnError, "fields">;
|
|
28341
29223
|
getApplicationsByApplicationIdEmailTemplatesBySlug: <ThrowOnError extends boolean = false>(options: Options<GetApplicationsByApplicationIdEmailTemplatesBySlugData, ThrowOnError>) => RequestResult<GetApplicationsByApplicationIdEmailTemplatesBySlugResponses, GetApplicationsByApplicationIdEmailTemplatesBySlugErrors, ThrowOnError, "fields">;
|
|
28342
29224
|
patchApplicationsByApplicationIdEmailTemplatesBySlug: <ThrowOnError extends boolean = false>(options: Options<PatchApplicationsByApplicationIdEmailTemplatesBySlugData, ThrowOnError>) => RequestResult<PatchApplicationsByApplicationIdEmailTemplatesBySlugResponses, PatchApplicationsByApplicationIdEmailTemplatesBySlugErrors, ThrowOnError, "fields">;
|
|
29225
|
+
postAgentsByIdExport: <ThrowOnError extends boolean = false>(options: Options<PostAgentsByIdExportData, ThrowOnError>) => RequestResult<PostAgentsByIdExportResponses, PostAgentsByIdExportErrors, ThrowOnError, "fields">;
|
|
28343
29226
|
postUsersRegisterIsv: <ThrowOnError extends boolean = false>(options: Options<PostUsersRegisterIsvData, ThrowOnError>) => RequestResult<PostUsersRegisterIsvResponses, PostUsersRegisterIsvErrors, ThrowOnError, "fields">;
|
|
28344
29227
|
getExtractionBatchesById: <ThrowOnError extends boolean = false>(options: Options<GetExtractionBatchesByIdData, ThrowOnError>) => RequestResult<GetExtractionBatchesByIdResponses, GetExtractionBatchesByIdErrors, ThrowOnError, "fields">;
|
|
28345
29228
|
getWorkspacesByWorkspaceIdExtractionExports: <ThrowOnError extends boolean = false>(options: Options<GetWorkspacesByWorkspaceIdExtractionExportsData, ThrowOnError>) => RequestResult<GetWorkspacesByWorkspaceIdExtractionExportsResponses, GetWorkspacesByWorkspaceIdExtractionExportsErrors, ThrowOnError, "fields">;
|
|
@@ -28351,4 +29234,4 @@ declare const gptCore: {
|
|
|
28351
29234
|
getObjects: <ThrowOnError extends boolean = false>(options: Options<GetObjectsData, ThrowOnError>) => RequestResult<GetObjectsResponses, GetObjectsErrors, ThrowOnError, "fields">;
|
|
28352
29235
|
};
|
|
28353
29236
|
|
|
28354
|
-
export { type Account, type Agent, type AgentCreateRequest, AgentCreateSchema, type AgentVersion, type AgentVersionFieldsInputCreateType, type AiConfig, type ApiKey, type ApiKeyAllocateRequest, ApiKeyAllocateSchema, type ApiKeyCreateRequest, ApiKeyCreateSchema, type Application, type ApplicationCreateRequest, ApplicationCreateSchema, type AuditLog, AuthenticationError, AuthorizationError, type Bucket, type BucketCreateRequest, BucketCreateSchema, type BulkDismissalResult, type ClientOptions$1 as ClientOptions, type Config$2 as Config, type Conversation, type CreditPackage, type Customer, DEFAULT_RETRY_CONFIG, type DeleteAgentVersionsByIdData, type DeleteAgentVersionsByIdError, type DeleteAgentVersionsByIdErrors, type DeleteAgentVersionsByIdResponses, type DeleteAgentsByIdData, type DeleteAgentsByIdError, type DeleteAgentsByIdErrors, type DeleteAgentsByIdResponses, type DeleteAiConversationsByIdData, type DeleteAiConversationsByIdError, type DeleteAiConversationsByIdErrors, type DeleteAiConversationsByIdResponses, type DeleteAiGraphEdgesByIdData, type DeleteAiGraphEdgesByIdError, type DeleteAiGraphEdgesByIdErrors, type DeleteAiGraphEdgesByIdResponses, type DeleteAiGraphNodesByIdData, type DeleteAiGraphNodesByIdError, type DeleteAiGraphNodesByIdErrors, type DeleteAiGraphNodesByIdResponses, type DeleteApiKeysByIdData, type DeleteApiKeysByIdError, type DeleteApiKeysByIdErrors, type DeleteApiKeysByIdResponses, type DeleteApplicationsByApplicationIdEmailTemplatesBySlugData, type DeleteApplicationsByApplicationIdEmailTemplatesBySlugError, type DeleteApplicationsByApplicationIdEmailTemplatesBySlugErrors, type DeleteApplicationsByApplicationIdEmailTemplatesBySlugResponses, type DeleteApplicationsByIdData, type DeleteApplicationsByIdError, type DeleteApplicationsByIdErrors, type DeleteApplicationsByIdResponses, type DeleteBucketsByIdData, type DeleteBucketsByIdError, type DeleteBucketsByIdErrors, type DeleteBucketsByIdResponses, type DeleteExtractionDocumentsByIdData, type DeleteExtractionDocumentsByIdError, type DeleteExtractionDocumentsByIdErrors, type DeleteExtractionDocumentsByIdResponses, type DeleteFieldTemplatesByIdData, type DeleteFieldTemplatesByIdError, type DeleteFieldTemplatesByIdErrors, type DeleteFieldTemplatesByIdResponses, type DeleteMessagesByIdData, type DeleteMessagesByIdError, type DeleteMessagesByIdErrors, type DeleteMessagesByIdResponses, type DeleteNotificationMethodsByIdData, type DeleteNotificationMethodsByIdError, type DeleteNotificationMethodsByIdErrors, type DeleteNotificationMethodsByIdResponses, type DeleteNotificationPreferencesByIdData, type DeleteNotificationPreferencesByIdError, type DeleteNotificationPreferencesByIdErrors, type DeleteNotificationPreferencesByIdResponses, type DeleteObjectsByIdData, type DeleteObjectsByIdError, type DeleteObjectsByIdErrors, type DeleteObjectsByIdResponses, type DeleteSearchSavedByIdData, type DeleteSearchSavedByIdError, type DeleteSearchSavedByIdErrors, type DeleteSearchSavedByIdResponses, type DeleteTenantMembershipsByTenantIdByUserIdData, type DeleteTenantMembershipsByTenantIdByUserIdError, type DeleteTenantMembershipsByTenantIdByUserIdErrors, type DeleteTenantMembershipsByTenantIdByUserIdResponses, type DeleteTenantsByIdData, type DeleteTenantsByIdError, type DeleteTenantsByIdErrors, type DeleteTenantsByIdResponses, type DeleteThreadsByIdData, type DeleteThreadsByIdError, type DeleteThreadsByIdErrors, type DeleteThreadsByIdResponses, type DeleteTrainingExamplesByIdData, type DeleteTrainingExamplesByIdError, type DeleteTrainingExamplesByIdErrors, type DeleteTrainingExamplesByIdResponses, type DeleteTrainingSessionsByIdData, type DeleteTrainingSessionsByIdError, type DeleteTrainingSessionsByIdErrors, type DeleteTrainingSessionsByIdResponses, type DeleteUserProfilesByIdData, type DeleteUserProfilesByIdError, type DeleteUserProfilesByIdErrors, type DeleteUserProfilesByIdResponses, type DeleteWebhookConfigsByIdData, type DeleteWebhookConfigsByIdError, type DeleteWebhookConfigsByIdErrors, type DeleteWebhookConfigsByIdResponses, type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdData, type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdError, type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type DeleteWorkspacesByIdData, type DeleteWorkspacesByIdError, type DeleteWorkspacesByIdErrors, type DeleteWorkspacesByIdResponses, type DocumentChunk, type DocumentStats, type DocumentUploadBase64Request, DocumentUploadBase64Schema, type EmailTemplate, type EmbedRequest, EmbedRequestSchema, type Embedding, type ErrorResponse, type Errors, type ExtractionBatch, type ExtractionDocument, type ExtractionExport, type ExtractionResult, type FieldTemplate, type GetAgentVersionsByIdData, type GetAgentVersionsByIdError, type GetAgentVersionsByIdErrors, type GetAgentVersionsByIdResponse, type GetAgentVersionsByIdResponses, type GetAgentVersionsData, type GetAgentVersionsError, type GetAgentVersionsErrors, type GetAgentVersionsResponse, type GetAgentVersionsResponses, type GetAgentsByIdData, type GetAgentsByIdError, type GetAgentsByIdErrors, type GetAgentsByIdResponse, type GetAgentsByIdResponses, type GetAgentsByIdSchemaVersionsData, type GetAgentsByIdSchemaVersionsError, type GetAgentsByIdSchemaVersionsErrors, type GetAgentsByIdSchemaVersionsResponse, type GetAgentsByIdSchemaVersionsResponses, type GetAgentsByIdTrainingStatsData, type GetAgentsByIdTrainingStatsError, type GetAgentsByIdTrainingStatsErrors, type GetAgentsByIdTrainingStatsResponse, type GetAgentsByIdTrainingStatsResponses, type GetAgentsData, type GetAgentsError, type GetAgentsErrors, type GetAgentsResponse, type GetAgentsResponses, type GetAiChunksDocumentByDocumentIdData, type GetAiChunksDocumentByDocumentIdError, type GetAiChunksDocumentByDocumentIdErrors, type GetAiChunksDocumentByDocumentIdResponse, type GetAiChunksDocumentByDocumentIdResponses, type GetAiConversationsByIdData, type GetAiConversationsByIdError, type GetAiConversationsByIdErrors, type GetAiConversationsByIdResponse, type GetAiConversationsByIdResponses, type GetAiConversationsData, type GetAiConversationsError, type GetAiConversationsErrors, type GetAiConversationsResponse, type GetAiConversationsResponses, type GetAiGraphEdgesData, type GetAiGraphEdgesError, type GetAiGraphEdgesErrors, type GetAiGraphEdgesResponse, type GetAiGraphEdgesResponses, type GetAiGraphNodesData, type GetAiGraphNodesError, type GetAiGraphNodesErrors, type GetAiGraphNodesResponse, type GetAiGraphNodesResponses, type GetAiMessagesData, type GetAiMessagesError, type GetAiMessagesErrors, type GetAiMessagesResponse, type GetAiMessagesResponses, type GetApiKeysByIdData, type GetApiKeysByIdError, type GetApiKeysByIdErrors, type GetApiKeysByIdResponse, type GetApiKeysByIdResponses, type GetApiKeysData, type GetApiKeysError, type GetApiKeysErrors, type GetApiKeysResponse, type GetApiKeysResponses, type GetApplicationsByApplicationIdEmailTemplatesBySlugData, type GetApplicationsByApplicationIdEmailTemplatesBySlugError, type GetApplicationsByApplicationIdEmailTemplatesBySlugErrors, type GetApplicationsByApplicationIdEmailTemplatesBySlugResponse, type GetApplicationsByApplicationIdEmailTemplatesBySlugResponses, type GetApplicationsByApplicationIdEmailTemplatesData, type GetApplicationsByApplicationIdEmailTemplatesError, type GetApplicationsByApplicationIdEmailTemplatesErrors, type GetApplicationsByApplicationIdEmailTemplatesResponse, type GetApplicationsByApplicationIdEmailTemplatesResponses, type GetApplicationsByIdData, type GetApplicationsByIdError, type GetApplicationsByIdErrors, type GetApplicationsByIdResponse, type GetApplicationsByIdResponses, type GetApplicationsBySlugBySlugData, type GetApplicationsBySlugBySlugError, type GetApplicationsBySlugBySlugErrors, type GetApplicationsBySlugBySlugResponse, type GetApplicationsBySlugBySlugResponses, type GetApplicationsData, type GetApplicationsError, type GetApplicationsErrors, type GetApplicationsResponse, type GetApplicationsResponses, type GetAuditLogsData, type GetAuditLogsError, type GetAuditLogsErrors, type GetAuditLogsResponse, type GetAuditLogsResponses, type GetBucketsByIdData, type GetBucketsByIdError, type GetBucketsByIdErrors, type GetBucketsByIdObjectsData, type GetBucketsByIdObjectsError, type GetBucketsByIdObjectsErrors, type GetBucketsByIdObjectsResponse, type GetBucketsByIdObjectsResponses, type GetBucketsByIdResponse, type GetBucketsByIdResponses, type GetBucketsByIdStatsData, type GetBucketsByIdStatsError, type GetBucketsByIdStatsErrors, type GetBucketsByIdStatsResponse, type GetBucketsByIdStatsResponses, type GetBucketsData, type GetBucketsError, type GetBucketsErrors, type GetBucketsResponse, type GetBucketsResponses, type GetConfigsData, type GetConfigsError, type GetConfigsErrors, type GetConfigsResponse, type GetConfigsResponses, type GetCreditPackagesByIdData, type GetCreditPackagesByIdError, type GetCreditPackagesByIdErrors, type GetCreditPackagesByIdResponse, type GetCreditPackagesByIdResponses, type GetCreditPackagesData, type GetCreditPackagesError, type GetCreditPackagesErrors, type GetCreditPackagesResponse, type GetCreditPackagesResponses, type GetCreditPackagesSlugBySlugData, type GetCreditPackagesSlugBySlugError, type GetCreditPackagesSlugBySlugErrors, type GetCreditPackagesSlugBySlugResponse, type GetCreditPackagesSlugBySlugResponses, type GetDocumentsStatsData, type GetDocumentsStatsError, type GetDocumentsStatsErrors, type GetDocumentsStatsResponse, type GetDocumentsStatsResponses, type GetExtractionBatchesByIdData, type GetExtractionBatchesByIdError, type GetExtractionBatchesByIdErrors, type GetExtractionBatchesByIdResponse, type GetExtractionBatchesByIdResponses, type GetExtractionBatchesByIdUploadUrlsData, type GetExtractionBatchesByIdUploadUrlsError, type GetExtractionBatchesByIdUploadUrlsErrors, type GetExtractionBatchesByIdUploadUrlsResponse, type GetExtractionBatchesByIdUploadUrlsResponses, type GetExtractionBatchesWorkspaceByWorkspaceIdData, type GetExtractionBatchesWorkspaceByWorkspaceIdError, type GetExtractionBatchesWorkspaceByWorkspaceIdErrors, type GetExtractionBatchesWorkspaceByWorkspaceIdResponse, type GetExtractionBatchesWorkspaceByWorkspaceIdResponses, type GetExtractionDocumentsByIdData, type GetExtractionDocumentsByIdError, type GetExtractionDocumentsByIdErrors, type GetExtractionDocumentsByIdResponse, type GetExtractionDocumentsByIdResponses, type GetExtractionDocumentsByIdStatusData, type GetExtractionDocumentsByIdStatusError, type GetExtractionDocumentsByIdStatusErrors, type GetExtractionDocumentsByIdStatusResponse, type GetExtractionDocumentsByIdStatusResponses, type GetExtractionDocumentsByIdViewData, type GetExtractionDocumentsByIdViewError, type GetExtractionDocumentsByIdViewErrors, type GetExtractionDocumentsByIdViewResponse, type GetExtractionDocumentsByIdViewResponses, type GetExtractionDocumentsData, type GetExtractionDocumentsError, type GetExtractionDocumentsErrors, type GetExtractionDocumentsResponse, type GetExtractionDocumentsResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdData, type GetExtractionDocumentsWorkspaceByWorkspaceIdError, type GetExtractionDocumentsWorkspaceByWorkspaceIdErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedData, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedError, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueData, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueError, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedData, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedError, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponses, type GetExtractionResultsByIdData, type GetExtractionResultsByIdError, type GetExtractionResultsByIdErrors, type GetExtractionResultsByIdResponse, type GetExtractionResultsByIdResponses, type GetExtractionResultsDocumentByDocumentIdData, type GetExtractionResultsDocumentByDocumentIdError, type GetExtractionResultsDocumentByDocumentIdErrors, type GetExtractionResultsDocumentByDocumentIdResponse, type GetExtractionResultsDocumentByDocumentIdResponses, type GetFieldTemplatesByIdData, type GetFieldTemplatesByIdError, type GetFieldTemplatesByIdErrors, type GetFieldTemplatesByIdResponse, type GetFieldTemplatesByIdResponses, type GetFieldTemplatesData, type GetFieldTemplatesError, type GetFieldTemplatesErrors, type GetFieldTemplatesResponse, type GetFieldTemplatesResponses, type GetInvitationsConsumeByTokenData, type GetInvitationsConsumeByTokenError, type GetInvitationsConsumeByTokenErrors, type GetInvitationsConsumeByTokenResponse, type GetInvitationsConsumeByTokenResponses, type GetInvitationsData, type GetInvitationsError, type GetInvitationsErrors, type GetInvitationsMeData, type GetInvitationsMeError, type GetInvitationsMeErrors, type GetInvitationsMeResponse, type GetInvitationsMeResponses, type GetInvitationsResponse, type GetInvitationsResponses, type GetLlmAnalyticsByIdData, type GetLlmAnalyticsByIdError, type GetLlmAnalyticsByIdErrors, type GetLlmAnalyticsByIdResponse, type GetLlmAnalyticsByIdResponses, type GetLlmAnalyticsCostsData, type GetLlmAnalyticsCostsError, type GetLlmAnalyticsCostsErrors, type GetLlmAnalyticsCostsResponse, type GetLlmAnalyticsCostsResponses, type GetLlmAnalyticsData, type GetLlmAnalyticsError, type GetLlmAnalyticsErrors, type GetLlmAnalyticsPlatformData, type GetLlmAnalyticsPlatformError, type GetLlmAnalyticsPlatformErrors, type GetLlmAnalyticsPlatformResponse, type GetLlmAnalyticsPlatformResponses, type GetLlmAnalyticsResponse, type GetLlmAnalyticsResponses, type GetLlmAnalyticsSummaryData, type GetLlmAnalyticsSummaryError, type GetLlmAnalyticsSummaryErrors, type GetLlmAnalyticsSummaryResponse, type GetLlmAnalyticsSummaryResponses, type GetLlmAnalyticsUsageData, type GetLlmAnalyticsUsageError, type GetLlmAnalyticsUsageErrors, type GetLlmAnalyticsUsageResponse, type GetLlmAnalyticsUsageResponses, type GetLlmAnalyticsWorkspaceData, type GetLlmAnalyticsWorkspaceError, type GetLlmAnalyticsWorkspaceErrors, type GetLlmAnalyticsWorkspaceResponse, type GetLlmAnalyticsWorkspaceResponses, type GetMessagesByIdData, type GetMessagesByIdError, type GetMessagesByIdErrors, type GetMessagesByIdResponse, type GetMessagesByIdResponses, type GetMessagesData, type GetMessagesError, type GetMessagesErrors, type GetMessagesResponse, type GetMessagesResponses, type GetMessagesSearchData, type GetMessagesSearchError, type GetMessagesSearchErrors, type GetMessagesSearchResponse, type GetMessagesSearchResponses, type GetNotificationLogsByIdData, type GetNotificationLogsByIdError, type GetNotificationLogsByIdErrors, type GetNotificationLogsByIdResponse, type GetNotificationLogsByIdResponses, type GetNotificationLogsData, type GetNotificationLogsError, type GetNotificationLogsErrors, type GetNotificationLogsResponse, type GetNotificationLogsResponses, type GetNotificationMethodsByIdData, type GetNotificationMethodsByIdError, type GetNotificationMethodsByIdErrors, type GetNotificationMethodsByIdResponse, type GetNotificationMethodsByIdResponses, type GetNotificationMethodsData, type GetNotificationMethodsError, type GetNotificationMethodsErrors, type GetNotificationMethodsResponse, type GetNotificationMethodsResponses, type GetNotificationPreferencesByIdData, type GetNotificationPreferencesByIdError, type GetNotificationPreferencesByIdErrors, type GetNotificationPreferencesByIdResponse, type GetNotificationPreferencesByIdResponses, type GetNotificationPreferencesData, type GetNotificationPreferencesError, type GetNotificationPreferencesErrors, type GetNotificationPreferencesResponse, type GetNotificationPreferencesResponses, type GetObjectsByIdData, type GetObjectsByIdError, type GetObjectsByIdErrors, type GetObjectsByIdResponse, type GetObjectsByIdResponses, type GetObjectsData, type GetObjectsError, type GetObjectsErrors, type GetObjectsResponse, type GetObjectsResponses, type GetPlansByIdData, type GetPlansByIdError, type GetPlansByIdErrors, type GetPlansByIdResponse, type GetPlansByIdResponses, type GetPlansData, type GetPlansError, type GetPlansErrors, type GetPlansResponse, type GetPlansResponses, type GetPlansSlugBySlugData, type GetPlansSlugBySlugError, type GetPlansSlugBySlugErrors, type GetPlansSlugBySlugResponse, type GetPlansSlugBySlugResponses, type GetSchemaDiscoveriesByIdData, type GetSchemaDiscoveriesByIdError, type GetSchemaDiscoveriesByIdErrors, type GetSchemaDiscoveriesByIdResponse, type GetSchemaDiscoveriesByIdResponses, type GetSearchData, type GetSearchError, type GetSearchErrors, type GetSearchHealthData, type GetSearchHealthError, type GetSearchHealthErrors, type GetSearchHealthResponse, type GetSearchHealthResponses, type GetSearchIndexesData, type GetSearchIndexesError, type GetSearchIndexesErrors, type GetSearchIndexesResponse, type GetSearchIndexesResponses, type GetSearchResponse, type GetSearchResponses, type GetSearchSavedData, type GetSearchSavedError, type GetSearchSavedErrors, type GetSearchSavedResponse, type GetSearchSavedResponses, type GetSearchSemanticData, type GetSearchSemanticError, type GetSearchSemanticErrors, type GetSearchSemanticResponse, type GetSearchSemanticResponses, type GetSearchStatsData, type GetSearchStatsError, type GetSearchStatsErrors, type GetSearchStatsResponse, type GetSearchStatsResponses, type GetSearchStatusData, type GetSearchStatusError, type GetSearchStatusErrors, type GetSearchStatusResponse, type GetSearchStatusResponses, type GetStorageStatsData, type GetStorageStatsError, type GetStorageStatsErrors, type GetStorageStatsResponse, type GetStorageStatsResponses, type GetTenantMembershipsData, type GetTenantMembershipsError, type GetTenantMembershipsErrors, type GetTenantMembershipsResponse, type GetTenantMembershipsResponses, type GetTenantsByIdData, type GetTenantsByIdError, type GetTenantsByIdErrors, type GetTenantsByIdResponse, type GetTenantsByIdResponses, type GetTenantsByTenantIdDocumentStatsData, type GetTenantsByTenantIdDocumentStatsError, type GetTenantsByTenantIdDocumentStatsErrors, type GetTenantsByTenantIdDocumentStatsResponse, type GetTenantsByTenantIdDocumentStatsResponses, type GetTenantsByTenantIdStatsData, type GetTenantsByTenantIdStatsError, type GetTenantsByTenantIdStatsErrors, type GetTenantsByTenantIdStatsResponse, type GetTenantsByTenantIdStatsResponses, type GetTenantsByTenantIdWorkspaceStatsData, type GetTenantsByTenantIdWorkspaceStatsError, type GetTenantsByTenantIdWorkspaceStatsErrors, type GetTenantsByTenantIdWorkspaceStatsResponse, type GetTenantsByTenantIdWorkspaceStatsResponses, type GetTenantsData, type GetTenantsError, type GetTenantsErrors, type GetTenantsResponse, type GetTenantsResponses, type GetThreadsByIdData, type GetThreadsByIdError, type GetThreadsByIdErrors, type GetThreadsByIdResponse, type GetThreadsByIdResponses, type GetThreadsData, type GetThreadsError, type GetThreadsErrors, type GetThreadsResponse, type GetThreadsResponses, type GetThreadsSearchData, type GetThreadsSearchError, type GetThreadsSearchErrors, type GetThreadsSearchResponse, type GetThreadsSearchResponses, type GetTrainingExamplesByIdData, type GetTrainingExamplesByIdError, type GetTrainingExamplesByIdErrors, type GetTrainingExamplesByIdResponse, type GetTrainingExamplesByIdResponses, type GetTrainingExamplesData, type GetTrainingExamplesError, type GetTrainingExamplesErrors, type GetTrainingExamplesResponse, type GetTrainingExamplesResponses, type GetTrainingSessionsAgentsByAgentIdSessionsData, type GetTrainingSessionsAgentsByAgentIdSessionsError, type GetTrainingSessionsAgentsByAgentIdSessionsErrors, type GetTrainingSessionsAgentsByAgentIdSessionsResponse, type GetTrainingSessionsAgentsByAgentIdSessionsResponses, type GetTrainingSessionsByIdData, type GetTrainingSessionsByIdError, type GetTrainingSessionsByIdErrors, type GetTrainingSessionsByIdResponse, type GetTrainingSessionsByIdResponses, type GetTransactionsByIdData, type GetTransactionsByIdError, type GetTransactionsByIdErrors, type GetTransactionsByIdResponse, type GetTransactionsByIdResponses, type GetTransactionsData, type GetTransactionsError, type GetTransactionsErrors, type GetTransactionsResponse, type GetTransactionsResponses, type GetUserProfilesByIdData, type GetUserProfilesByIdError, type GetUserProfilesByIdErrors, type GetUserProfilesByIdResponse, type GetUserProfilesByIdResponses, type GetUserProfilesData, type GetUserProfilesError, type GetUserProfilesErrors, type GetUserProfilesMeData, type GetUserProfilesMeError, type GetUserProfilesMeErrors, type GetUserProfilesMeResponse, type GetUserProfilesMeResponses, type GetUserProfilesResponse, type GetUserProfilesResponses, type GetUsersByIdData, type GetUsersByIdError, type GetUsersByIdErrors, type GetUsersByIdResponse, type GetUsersByIdResponses, type GetUsersData, type GetUsersError, type GetUsersErrors, type GetUsersMeData, type GetUsersMeError, type GetUsersMeErrors, type GetUsersMeResponse, type GetUsersMeResponses, type GetUsersMeTenantsData, type GetUsersMeTenantsError, type GetUsersMeTenantsErrors, type GetUsersMeTenantsResponse, type GetUsersMeTenantsResponses, type GetUsersResponse, type GetUsersResponses, type GetWalletData, type GetWalletError, type GetWalletErrors, type GetWalletResponse, type GetWalletResponses, type GetWebhookConfigsByIdData, type GetWebhookConfigsByIdError, type GetWebhookConfigsByIdErrors, type GetWebhookConfigsByIdResponse, type GetWebhookConfigsByIdResponses, type GetWebhookConfigsData, type GetWebhookConfigsError, type GetWebhookConfigsErrors, type GetWebhookConfigsResponse, type GetWebhookConfigsResponses, type GetWebhookDeliveriesByIdData, type GetWebhookDeliveriesByIdError, type GetWebhookDeliveriesByIdErrors, type GetWebhookDeliveriesByIdResponse, type GetWebhookDeliveriesByIdResponses, type GetWebhookDeliveriesData, type GetWebhookDeliveriesError, type GetWebhookDeliveriesErrors, type GetWebhookDeliveriesResponse, type GetWebhookDeliveriesResponses, type GetWorkspaceMembershipsData, type GetWorkspaceMembershipsError, type GetWorkspaceMembershipsErrors, type GetWorkspaceMembershipsResponse, type GetWorkspaceMembershipsResponses, type GetWorkspacesByIdData, type GetWorkspacesByIdError, type GetWorkspacesByIdErrors, type GetWorkspacesByIdResponse, type GetWorkspacesByIdResponses, type GetWorkspacesByWorkspaceIdExtractionExportsByIdData, type GetWorkspacesByWorkspaceIdExtractionExportsByIdError, type GetWorkspacesByWorkspaceIdExtractionExportsByIdErrors, type GetWorkspacesByWorkspaceIdExtractionExportsByIdResponse, type GetWorkspacesByWorkspaceIdExtractionExportsByIdResponses, type GetWorkspacesByWorkspaceIdExtractionExportsData, type GetWorkspacesByWorkspaceIdExtractionExportsError, type GetWorkspacesByWorkspaceIdExtractionExportsErrors, type GetWorkspacesByWorkspaceIdExtractionExportsResponse, type GetWorkspacesByWorkspaceIdExtractionExportsResponses, type GetWorkspacesByWorkspaceIdTrainingAnalyticsData, type GetWorkspacesByWorkspaceIdTrainingAnalyticsError, type GetWorkspacesByWorkspaceIdTrainingAnalyticsErrors, type GetWorkspacesByWorkspaceIdTrainingAnalyticsResponse, type GetWorkspacesByWorkspaceIdTrainingAnalyticsResponses, type GetWorkspacesData, type GetWorkspacesError, type GetWorkspacesErrors, type GetWorkspacesMineData, type GetWorkspacesMineError, type GetWorkspacesMineErrors, type GetWorkspacesMineResponse, type GetWorkspacesMineResponses, type GetWorkspacesResponse, type GetWorkspacesResponses, GptCoreError, type GraphEdge, type GraphNode, type Invitation, type InvitationCreateRequest, InvitationCreateSchema, type IsvRevenue, type IsvSettlement, type Ledger, type Link, type Links, type LlmAnalytics, type LoginRequest, LoginRequestSchema, type Message, type MessageSendRequest, MessageSendSchema, NetworkError, NotFoundError, type NotificationLog, type NotificationMethod, type NotificationPreference, type OperationSuccess, type Options, type PaginatedResponse, type PaginationLinks, type PaginationOptions, type PatchAgentsByIdData, type PatchAgentsByIdError, type PatchAgentsByIdErrors, type PatchAgentsByIdResponse, type PatchAgentsByIdResponses, type PatchAgentsByIdSchemaVersionsByVersionIdData, type PatchAgentsByIdSchemaVersionsByVersionIdError, type PatchAgentsByIdSchemaVersionsByVersionIdErrors, type PatchAgentsByIdSchemaVersionsByVersionIdResponse, type PatchAgentsByIdSchemaVersionsByVersionIdResponses, type PatchApiKeysByIdAllocateData, type PatchApiKeysByIdAllocateError, type PatchApiKeysByIdAllocateErrors, type PatchApiKeysByIdAllocateResponse, type PatchApiKeysByIdAllocateResponses, type PatchApiKeysByIdData, type PatchApiKeysByIdError, type PatchApiKeysByIdErrors, type PatchApiKeysByIdResponse, type PatchApiKeysByIdResponses, type PatchApiKeysByIdRevokeData, type PatchApiKeysByIdRevokeError, type PatchApiKeysByIdRevokeErrors, type PatchApiKeysByIdRevokeResponse, type PatchApiKeysByIdRevokeResponses, type PatchApiKeysByIdRotateData, type PatchApiKeysByIdRotateError, type PatchApiKeysByIdRotateErrors, type PatchApiKeysByIdRotateResponse, type PatchApiKeysByIdRotateResponses, type PatchApiKeysByIdSetBudgetData, type PatchApiKeysByIdSetBudgetError, type PatchApiKeysByIdSetBudgetErrors, type PatchApiKeysByIdSetBudgetResponse, type PatchApiKeysByIdSetBudgetResponses, type PatchApplicationsByApplicationIdEmailTemplatesBySlugData, type PatchApplicationsByApplicationIdEmailTemplatesBySlugError, type PatchApplicationsByApplicationIdEmailTemplatesBySlugErrors, type PatchApplicationsByApplicationIdEmailTemplatesBySlugResponse, type PatchApplicationsByApplicationIdEmailTemplatesBySlugResponses, type PatchApplicationsByIdData, type PatchApplicationsByIdError, type PatchApplicationsByIdErrors, type PatchApplicationsByIdGrantCreditsData, type PatchApplicationsByIdGrantCreditsError, type PatchApplicationsByIdGrantCreditsErrors, type PatchApplicationsByIdGrantCreditsResponse, type PatchApplicationsByIdGrantCreditsResponses, type PatchApplicationsByIdResponse, type PatchApplicationsByIdResponses, type PatchBucketsByIdData, type PatchBucketsByIdError, type PatchBucketsByIdErrors, type PatchBucketsByIdResponse, type PatchBucketsByIdResponses, type PatchConfigsByKeyData, type PatchConfigsByKeyError, type PatchConfigsByKeyErrors, type PatchConfigsByKeyResponse, type PatchConfigsByKeyResponses, type PatchExtractionDocumentsByIdCancelData, type PatchExtractionDocumentsByIdCancelError, type PatchExtractionDocumentsByIdCancelErrors, type PatchExtractionDocumentsByIdCancelResponse, type PatchExtractionDocumentsByIdCancelResponses, type PatchExtractionDocumentsByIdDismissData, type PatchExtractionDocumentsByIdDismissError, type PatchExtractionDocumentsByIdDismissErrors, type PatchExtractionDocumentsByIdDismissResponse, type PatchExtractionDocumentsByIdDismissResponses, type PatchExtractionDocumentsByIdDismissTrainingData, type PatchExtractionDocumentsByIdDismissTrainingError, type PatchExtractionDocumentsByIdDismissTrainingErrors, type PatchExtractionDocumentsByIdDismissTrainingResponse, type PatchExtractionDocumentsByIdDismissTrainingResponses, type PatchExtractionDocumentsByIdExcludeData, type PatchExtractionDocumentsByIdExcludeError, type PatchExtractionDocumentsByIdExcludeErrors, type PatchExtractionDocumentsByIdExcludeResponse, type PatchExtractionDocumentsByIdExcludeResponses, type PatchExtractionDocumentsByIdFinishUploadData, type PatchExtractionDocumentsByIdFinishUploadError, type PatchExtractionDocumentsByIdFinishUploadErrors, type PatchExtractionDocumentsByIdFinishUploadResponse, type PatchExtractionDocumentsByIdFinishUploadResponses, type PatchExtractionDocumentsByIdIncludeData, type PatchExtractionDocumentsByIdIncludeError, type PatchExtractionDocumentsByIdIncludeErrors, type PatchExtractionDocumentsByIdIncludeResponse, type PatchExtractionDocumentsByIdIncludeResponses, type PatchExtractionDocumentsByIdMarkTrainedData, type PatchExtractionDocumentsByIdMarkTrainedError, type PatchExtractionDocumentsByIdMarkTrainedErrors, type PatchExtractionDocumentsByIdMarkTrainedResponse, type PatchExtractionDocumentsByIdMarkTrainedResponses, type PatchExtractionDocumentsByIdReprocessData, type PatchExtractionDocumentsByIdReprocessError, type PatchExtractionDocumentsByIdReprocessErrors, type PatchExtractionDocumentsByIdReprocessResponse, type PatchExtractionDocumentsByIdReprocessResponses, type PatchExtractionDocumentsByIdRestoreData, type PatchExtractionDocumentsByIdRestoreError, type PatchExtractionDocumentsByIdRestoreErrors, type PatchExtractionDocumentsByIdRestoreResponse, type PatchExtractionDocumentsByIdRestoreResponses, type PatchExtractionDocumentsByIdStatusData, type PatchExtractionDocumentsByIdStatusError, type PatchExtractionDocumentsByIdStatusErrors, type PatchExtractionDocumentsByIdStatusResponse, type PatchExtractionDocumentsByIdStatusResponses, type PatchExtractionResultsByIdCorrectionsData, type PatchExtractionResultsByIdCorrectionsError, type PatchExtractionResultsByIdCorrectionsErrors, type PatchExtractionResultsByIdCorrectionsResponse, type PatchExtractionResultsByIdCorrectionsResponses, type PatchExtractionResultsByIdRegenerateData, type PatchExtractionResultsByIdRegenerateError, type PatchExtractionResultsByIdRegenerateErrors, type PatchExtractionResultsByIdRegenerateResponse, type PatchExtractionResultsByIdRegenerateResponses, type PatchInvitationsByIdAcceptByUserData, type PatchInvitationsByIdAcceptByUserError, type PatchInvitationsByIdAcceptByUserErrors, type PatchInvitationsByIdAcceptByUserResponse, type PatchInvitationsByIdAcceptByUserResponses, type PatchInvitationsByIdAcceptData, type PatchInvitationsByIdAcceptError, type PatchInvitationsByIdAcceptErrors, type PatchInvitationsByIdAcceptResponse, type PatchInvitationsByIdAcceptResponses, type PatchInvitationsByIdDeclineData, type PatchInvitationsByIdDeclineError, type PatchInvitationsByIdDeclineErrors, type PatchInvitationsByIdDeclineResponse, type PatchInvitationsByIdDeclineResponses, type PatchInvitationsByIdResendData, type PatchInvitationsByIdResendError, type PatchInvitationsByIdResendErrors, type PatchInvitationsByIdResendResponse, type PatchInvitationsByIdResendResponses, type PatchInvitationsByIdRevokeData, type PatchInvitationsByIdRevokeError, type PatchInvitationsByIdRevokeErrors, type PatchInvitationsByIdRevokeResponse, type PatchInvitationsByIdRevokeResponses, type PatchMessagesByIdData, type PatchMessagesByIdError, type PatchMessagesByIdErrors, type PatchMessagesByIdResponse, type PatchMessagesByIdResponses, type PatchNotificationMethodsByIdData, type PatchNotificationMethodsByIdError, type PatchNotificationMethodsByIdErrors, type PatchNotificationMethodsByIdResponse, type PatchNotificationMethodsByIdResponses, type PatchNotificationMethodsByIdSetPrimaryData, type PatchNotificationMethodsByIdSetPrimaryError, type PatchNotificationMethodsByIdSetPrimaryErrors, type PatchNotificationMethodsByIdSetPrimaryResponse, type PatchNotificationMethodsByIdSetPrimaryResponses, type PatchNotificationPreferencesByIdData, type PatchNotificationPreferencesByIdError, type PatchNotificationPreferencesByIdErrors, type PatchNotificationPreferencesByIdResponse, type PatchNotificationPreferencesByIdResponses, type PatchTenantMembershipsByTenantIdByUserIdData, type PatchTenantMembershipsByTenantIdByUserIdError, type PatchTenantMembershipsByTenantIdByUserIdErrors, type PatchTenantMembershipsByTenantIdByUserIdResponse, type PatchTenantMembershipsByTenantIdByUserIdResponses, type PatchTenantsByIdData, type PatchTenantsByIdError, type PatchTenantsByIdErrors, type PatchTenantsByIdResponse, type PatchTenantsByIdResponses, type PatchThreadsByIdData, type PatchThreadsByIdError, type PatchThreadsByIdErrors, type PatchThreadsByIdResponse, type PatchThreadsByIdResponses, type PatchTrainingExamplesByIdData, type PatchTrainingExamplesByIdError, type PatchTrainingExamplesByIdErrors, type PatchTrainingExamplesByIdResponse, type PatchTrainingExamplesByIdResponses, type PatchUserProfilesByIdData, type PatchUserProfilesByIdError, type PatchUserProfilesByIdErrors, type PatchUserProfilesByIdResponse, type PatchUserProfilesByIdResponses, type PatchUsersAuthPasswordChangeData, type PatchUsersAuthPasswordChangeError, type PatchUsersAuthPasswordChangeErrors, type PatchUsersAuthPasswordChangeResponse, type PatchUsersAuthPasswordChangeResponses, type PatchUsersAuthResetPasswordData, type PatchUsersAuthResetPasswordError, type PatchUsersAuthResetPasswordErrors, type PatchUsersAuthResetPasswordResponse, type PatchUsersAuthResetPasswordResponses, type PatchUsersByIdAdminData, type PatchUsersByIdAdminEmailData, type PatchUsersByIdAdminEmailError, type PatchUsersByIdAdminEmailErrors, type PatchUsersByIdAdminEmailResponse, type PatchUsersByIdAdminEmailResponses, type PatchUsersByIdAdminError, type PatchUsersByIdAdminErrors, type PatchUsersByIdAdminResponse, type PatchUsersByIdAdminResponses, type PatchUsersByIdConfirmEmailData, type PatchUsersByIdConfirmEmailError, type PatchUsersByIdConfirmEmailErrors, type PatchUsersByIdConfirmEmailResponse, type PatchUsersByIdConfirmEmailResponses, type PatchUsersByIdResetPasswordData, type PatchUsersByIdResetPasswordError, type PatchUsersByIdResetPasswordErrors, type PatchUsersByIdResetPasswordResponse, type PatchUsersByIdResetPasswordResponses, type PatchWalletAddonsByAddonSlugCancelData, type PatchWalletAddonsByAddonSlugCancelError, type PatchWalletAddonsByAddonSlugCancelErrors, type PatchWalletAddonsByAddonSlugCancelResponse, type PatchWalletAddonsByAddonSlugCancelResponses, type PatchWalletAddonsData, type PatchWalletAddonsError, type PatchWalletAddonsErrors, type PatchWalletAddonsResponse, type PatchWalletAddonsResponses, type PatchWalletCreditsData, type PatchWalletCreditsError, type PatchWalletCreditsErrors, type PatchWalletCreditsResponse, type PatchWalletCreditsResponses, type PatchWalletPlanData, type PatchWalletPlanError, type PatchWalletPlanErrors, type PatchWalletPlanResponse, type PatchWalletPlanResponses, type PatchWebhookConfigsByIdData, type PatchWebhookConfigsByIdError, type PatchWebhookConfigsByIdErrors, type PatchWebhookConfigsByIdResponse, type PatchWebhookConfigsByIdResponses, type PatchWebhookConfigsByIdRotateSecretData, type PatchWebhookConfigsByIdRotateSecretError, type PatchWebhookConfigsByIdRotateSecretErrors, type PatchWebhookConfigsByIdRotateSecretResponse, type PatchWebhookConfigsByIdRotateSecretResponses, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdData, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdError, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdResponse, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type PatchWorkspacesByIdAllocateData, type PatchWorkspacesByIdAllocateError, type PatchWorkspacesByIdAllocateErrors, type PatchWorkspacesByIdAllocateResponse, type PatchWorkspacesByIdAllocateResponses, type PatchWorkspacesByIdData, type PatchWorkspacesByIdError, type PatchWorkspacesByIdErrors, type PatchWorkspacesByIdResponse, type PatchWorkspacesByIdResponses, type Payment, type PaymentMethod, type Plan, type PostAgentVersionsData, type PostAgentVersionsError, type PostAgentVersionsErrors, type PostAgentVersionsResponse, type PostAgentVersionsResponses, type PostAgentsByIdCloneData, type PostAgentsByIdCloneError, type PostAgentsByIdCloneErrors, type PostAgentsByIdCloneResponse, type PostAgentsByIdCloneResponses, type PostAgentsByIdDiscoverSchemaData, type PostAgentsByIdDiscoverSchemaError, type PostAgentsByIdDiscoverSchemaErrors, type PostAgentsByIdDiscoverSchemaResponse, type PostAgentsByIdDiscoverSchemaResponses, type PostAgentsByIdPublishVersionData, type PostAgentsByIdPublishVersionError, type PostAgentsByIdPublishVersionErrors, type PostAgentsByIdPublishVersionResponse, type PostAgentsByIdPublishVersionResponses, type PostAgentsByIdSchemaVersionsByVersionIdActivateData, type PostAgentsByIdSchemaVersionsByVersionIdActivateError, type PostAgentsByIdSchemaVersionsByVersionIdActivateErrors, type PostAgentsByIdSchemaVersionsByVersionIdActivateResponse, type PostAgentsByIdSchemaVersionsByVersionIdActivateResponses, type PostAgentsByIdSchemaVersionsData, type PostAgentsByIdSchemaVersionsError, type PostAgentsByIdSchemaVersionsErrors, type PostAgentsByIdSchemaVersionsResponse, type PostAgentsByIdSchemaVersionsResponses, type PostAgentsByIdTeachData, type PostAgentsByIdTeachError, type PostAgentsByIdTeachErrors, type PostAgentsByIdTeachResponse, type PostAgentsByIdTeachResponses, type PostAgentsByIdTestData, type PostAgentsByIdTestError, type PostAgentsByIdTestErrors, type PostAgentsByIdTestResponse, type PostAgentsByIdTestResponses, type PostAgentsByIdValidateData, type PostAgentsByIdValidateError, type PostAgentsByIdValidateErrors, type PostAgentsByIdValidateResponse, type PostAgentsByIdValidateResponses, type PostAgentsCloneForWorkspaceData, type PostAgentsCloneForWorkspaceError, type PostAgentsCloneForWorkspaceErrors, type PostAgentsCloneForWorkspaceResponse, type PostAgentsCloneForWorkspaceResponses, type PostAgentsData, type PostAgentsError, type PostAgentsErrors, type PostAgentsPredictData, type PostAgentsPredictError, type PostAgentsPredictErrors, type PostAgentsPredictResponse, type PostAgentsPredictResponses, type PostAgentsResponse, type PostAgentsResponses, type PostAiChunksSearchData, type PostAiChunksSearchError, type PostAiChunksSearchErrors, type PostAiChunksSearchResponse, type PostAiChunksSearchResponses, type PostAiConversationsData, type PostAiConversationsError, type PostAiConversationsErrors, type PostAiConversationsResponse, type PostAiConversationsResponses, type PostAiEmbedData, type PostAiEmbedError, type PostAiEmbedErrors, type PostAiEmbedResponse, type PostAiEmbedResponses, type PostAiGraphEdgesData, type PostAiGraphEdgesError, type PostAiGraphEdgesErrors, type PostAiGraphEdgesResponse, type PostAiGraphEdgesResponses, type PostAiGraphNodesData, type PostAiGraphNodesError, type PostAiGraphNodesErrors, type PostAiGraphNodesResponse, type PostAiGraphNodesResponses, type PostAiMessagesData, type PostAiMessagesError, type PostAiMessagesErrors, type PostAiMessagesResponse, type PostAiMessagesResponses, type PostAiSearchAdvancedData, type PostAiSearchAdvancedError, type PostAiSearchAdvancedErrors, type PostAiSearchAdvancedResponse, type PostAiSearchAdvancedResponses, type PostAiSearchData, type PostAiSearchError, type PostAiSearchErrors, type PostAiSearchResponse, type PostAiSearchResponses, type PostApiKeysData, type PostApiKeysError, type PostApiKeysErrors, type PostApiKeysResponse, type PostApiKeysResponses, type PostApplicationsByApplicationIdEmailTemplatesData, type PostApplicationsByApplicationIdEmailTemplatesError, type PostApplicationsByApplicationIdEmailTemplatesErrors, type PostApplicationsByApplicationIdEmailTemplatesResponse, type PostApplicationsByApplicationIdEmailTemplatesResponses, type PostApplicationsData, type PostApplicationsError, type PostApplicationsErrors, type PostApplicationsResponse, type PostApplicationsResponses, type PostBucketsData, type PostBucketsError, type PostBucketsErrors, type PostBucketsResponse, type PostBucketsResponses, type PostConfigsData, type PostConfigsError, type PostConfigsErrors, type PostConfigsResponse, type PostConfigsResponses, type PostDocumentsBulkDeleteData, type PostDocumentsBulkDeleteError, type PostDocumentsBulkDeleteErrors, type PostDocumentsBulkDeleteResponse, type PostDocumentsBulkDeleteResponses, type PostDocumentsPresignedUploadData, type PostDocumentsPresignedUploadError, type PostDocumentsPresignedUploadErrors, type PostDocumentsPresignedUploadResponse, type PostDocumentsPresignedUploadResponses, type PostExtractionBatchesData, type PostExtractionBatchesError, type PostExtractionBatchesErrors, type PostExtractionBatchesResponse, type PostExtractionBatchesResponses, type PostExtractionDocumentsBeginUploadData, type PostExtractionDocumentsBeginUploadError, type PostExtractionDocumentsBeginUploadErrors, type PostExtractionDocumentsBeginUploadResponse, type PostExtractionDocumentsBeginUploadResponses, type PostExtractionDocumentsUploadData, type PostExtractionDocumentsUploadError, type PostExtractionDocumentsUploadErrors, type PostExtractionDocumentsUploadResponse, type PostExtractionDocumentsUploadResponses, type PostExtractionResultsData, type PostExtractionResultsError, type PostExtractionResultsErrors, type PostExtractionResultsResponse, type PostExtractionResultsResponses, type PostFieldTemplatesData, type PostFieldTemplatesError, type PostFieldTemplatesErrors, type PostFieldTemplatesResponse, type PostFieldTemplatesResponses, type PostInvitationsAcceptByTokenData, type PostInvitationsAcceptByTokenError, type PostInvitationsAcceptByTokenErrors, type PostInvitationsAcceptByTokenResponse, type PostInvitationsAcceptByTokenResponses, type PostInvitationsData, type PostInvitationsError, type PostInvitationsErrors, type PostInvitationsResponse, type PostInvitationsResponses, type PostLlmAnalyticsData, type PostLlmAnalyticsError, type PostLlmAnalyticsErrors, type PostLlmAnalyticsResponse, type PostLlmAnalyticsResponses, type PostMessagesData, type PostMessagesError, type PostMessagesErrors, type PostMessagesResponse, type PostMessagesResponses, type PostNotificationMethodsData, type PostNotificationMethodsError, type PostNotificationMethodsErrors, type PostNotificationMethodsResponse, type PostNotificationMethodsResponses, type PostNotificationPreferencesData, type PostNotificationPreferencesError, type PostNotificationPreferencesErrors, type PostNotificationPreferencesResponse, type PostNotificationPreferencesResponses, type PostObjectsBulkDestroyData, type PostObjectsBulkDestroyError, type PostObjectsBulkDestroyErrors, type PostObjectsBulkDestroyResponse, type PostObjectsBulkDestroyResponses, type PostObjectsRegisterData, type PostObjectsRegisterError, type PostObjectsRegisterErrors, type PostObjectsRegisterResponse, type PostObjectsRegisterResponses, type PostPaymentsData, type PostPaymentsError, type PostPaymentsErrors, type PostPaymentsResponse, type PostPaymentsResponses, type PostSearchReindexData, type PostSearchReindexError, type PostSearchReindexErrors, type PostSearchReindexResponse, type PostSearchReindexResponses, type PostSearchSavedData, type PostSearchSavedError, type PostSearchSavedErrors, type PostSearchSavedResponse, type PostSearchSavedResponses, type PostStorageSignDownloadData, type PostStorageSignDownloadError, type PostStorageSignDownloadErrors, type PostStorageSignDownloadResponse, type PostStorageSignDownloadResponses, type PostStorageSignUploadData, type PostStorageSignUploadError, type PostStorageSignUploadErrors, type PostStorageSignUploadResponse, type PostStorageSignUploadResponses, type PostTenantMembershipsData, type PostTenantMembershipsError, type PostTenantMembershipsErrors, type PostTenantMembershipsResponse, type PostTenantMembershipsResponses, type PostTenantsByIdBuyStorageData, type PostTenantsByIdBuyStorageError, type PostTenantsByIdBuyStorageErrors, type PostTenantsByIdBuyStorageResponse, type PostTenantsByIdBuyStorageResponses, type PostTenantsByIdCreditData, type PostTenantsByIdCreditError, type PostTenantsByIdCreditErrors, type PostTenantsByIdCreditResponse, type PostTenantsByIdCreditResponses, type PostTenantsByIdRemoveStorageData, type PostTenantsByIdRemoveStorageError, type PostTenantsByIdRemoveStorageErrors, type PostTenantsByIdRemoveStorageResponse, type PostTenantsByIdRemoveStorageResponses, type PostTenantsData, type PostTenantsError, type PostTenantsErrors, type PostTenantsIsvData, type PostTenantsIsvError, type PostTenantsIsvErrors, type PostTenantsIsvResponse, type PostTenantsIsvResponses, type PostTenantsResponse, type PostTenantsResponses, type PostThreadsActiveData, type PostThreadsActiveError, type PostThreadsActiveErrors, type PostThreadsActiveResponse, type PostThreadsActiveResponses, type PostThreadsByIdMessagesData, type PostThreadsByIdMessagesError, type PostThreadsByIdMessagesErrors, type PostThreadsByIdMessagesResponse, type PostThreadsByIdMessagesResponses, type PostThreadsByIdSummarizeData, type PostThreadsByIdSummarizeError, type PostThreadsByIdSummarizeErrors, type PostThreadsByIdSummarizeResponse, type PostThreadsByIdSummarizeResponses, type PostThreadsData, type PostThreadsError, type PostThreadsErrors, type PostThreadsResponse, type PostThreadsResponses, type PostTokensData, type PostTokensError, type PostTokensErrors, type PostTokensResponse, type PostTokensResponses, type PostTrainingExamplesBulkData, type PostTrainingExamplesBulkDeleteData, type PostTrainingExamplesBulkDeleteError, type PostTrainingExamplesBulkDeleteErrors, type PostTrainingExamplesBulkDeleteResponse, type PostTrainingExamplesBulkDeleteResponses, type PostTrainingExamplesBulkError, type PostTrainingExamplesBulkErrors, type PostTrainingExamplesBulkResponse, type PostTrainingExamplesBulkResponses, type PostTrainingExamplesData, type PostTrainingExamplesError, type PostTrainingExamplesErrors, type PostTrainingExamplesResponse, type PostTrainingExamplesResponses, type PostTrainingExamplesSearchData, type PostTrainingExamplesSearchError, type PostTrainingExamplesSearchErrors, type PostTrainingExamplesSearchResponse, type PostTrainingExamplesSearchResponses, type PostUserProfilesData, type PostUserProfilesError, type PostUserProfilesErrors, type PostUserProfilesResponse, type PostUserProfilesResponses, type PostUsersAuthConfirmData, type PostUsersAuthConfirmError, type PostUsersAuthConfirmErrors, type PostUsersAuthConfirmResponse, type PostUsersAuthConfirmResponses, type PostUsersAuthLoginData, type PostUsersAuthLoginError, type PostUsersAuthLoginErrors, type PostUsersAuthLoginResponse, type PostUsersAuthLoginResponses, type PostUsersAuthMagicLinkLoginData, type PostUsersAuthMagicLinkLoginError, type PostUsersAuthMagicLinkLoginErrors, type PostUsersAuthMagicLinkLoginResponse, type PostUsersAuthMagicLinkLoginResponses, type PostUsersAuthMagicLinkRequestData, type PostUsersAuthMagicLinkRequestError, type PostUsersAuthMagicLinkRequestErrors, type PostUsersAuthMagicLinkRequestResponse, type PostUsersAuthMagicLinkRequestResponses, type PostUsersAuthRegisterData, type PostUsersAuthRegisterError, type PostUsersAuthRegisterErrors, type PostUsersAuthRegisterResponse, type PostUsersAuthRegisterResponses, type PostUsersAuthRegisterWithOidcData, type PostUsersAuthRegisterWithOidcError, type PostUsersAuthRegisterWithOidcErrors, type PostUsersAuthRegisterWithOidcResponse, type PostUsersAuthRegisterWithOidcResponses, type PostUsersAuthResendConfirmationData, type PostUsersAuthResendConfirmationError, type PostUsersAuthResendConfirmationErrors, type PostUsersAuthResendConfirmationResponse, type PostUsersAuthResendConfirmationResponses, type PostUsersRegisterIsvData, type PostUsersRegisterIsvError, type PostUsersRegisterIsvErrors, type PostUsersRegisterIsvResponse, type PostUsersRegisterIsvResponses, type PostWebhookConfigsByIdTestData, type PostWebhookConfigsByIdTestError, type PostWebhookConfigsByIdTestErrors, type PostWebhookConfigsByIdTestResponse, type PostWebhookConfigsByIdTestResponses, type PostWebhookConfigsData, type PostWebhookConfigsError, type PostWebhookConfigsErrors, type PostWebhookConfigsResponse, type PostWebhookConfigsResponses, type PostWebhookDeliveriesByIdRetryData, type PostWebhookDeliveriesByIdRetryError, type PostWebhookDeliveriesByIdRetryErrors, type PostWebhookDeliveriesByIdRetryResponse, type PostWebhookDeliveriesByIdRetryResponses, type PostWorkspaceMembershipsData, type PostWorkspaceMembershipsError, type PostWorkspaceMembershipsErrors, type PostWorkspaceMembershipsResponse, type PostWorkspaceMembershipsResponses, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedData, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedError, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedErrors, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponse, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponses, type PostWorkspacesByWorkspaceIdExtractionExportsData, type PostWorkspacesByWorkspaceIdExtractionExportsError, type PostWorkspacesByWorkspaceIdExtractionExportsErrors, type PostWorkspacesByWorkspaceIdExtractionExportsResponse, type PostWorkspacesByWorkspaceIdExtractionExportsResponses, type PostWorkspacesData, type PostWorkspacesError, type PostWorkspacesErrors, type PostWorkspacesResponse, type PostWorkspacesResponses, type PresignedDownloadRequest, PresignedDownloadSchema, type PresignedUploadRequest, PresignedUploadSchema, type PresignedUrl, type PricingRule, type PricingStrategy, RateLimitError, type RegisterRequest, RegisterRequestSchema, type RetryConfig, type SavedSearch, type SchemaDiscovery, type Search, type SearchRequest, SearchRequestSchema, type SemanticCacheEntry, ServerError, type StorageStats, type StreamMessageChunk, type StreamOptions, type Subscription, type Tenant, type TenantDocumentStats, type TenantMembership, type TenantStats, type Thread, type ThreadCreateRequest, ThreadCreateSchema, TimeoutError, type Token, type TrainingAnalytics, type TrainingExample, type TrainingSession, type Transaction, type User, type UserProfile, ValidationError, type Wallet, type WebhookConfig, type WebhookConfigCreateRequest, WebhookConfigCreateSchema, type WebhookConfigUpdateRequest, WebhookConfigUpdateSchema, type WebhookDelivery, WebhookError, type Workspace, type WorkspaceCreateRequest, WorkspaceCreateSchema, type WorkspaceDocumentStats, type WorkspaceMembership, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, calculateBackoff, client, collectStreamedMessage, gptCore as default, deleteAgentVersionsById, deleteAgentsById, deleteAiConversationsById, deleteAiGraphEdgesById, deleteAiGraphNodesById, deleteApiKeysById, deleteApplicationsByApplicationIdEmailTemplatesBySlug, deleteApplicationsById, deleteBucketsById, deleteExtractionDocumentsById, deleteFieldTemplatesById, deleteMessagesById, deleteNotificationMethodsById, deleteNotificationPreferencesById, deleteObjectsById, deleteSearchSavedById, deleteTenantMembershipsByTenantIdByUserId, deleteTenantsById, deleteThreadsById, deleteTrainingExamplesById, deleteTrainingSessionsById, deleteUserProfilesById, deleteWebhookConfigsById, deleteWorkspaceMembershipsByWorkspaceIdByUserId, deleteWorkspacesById, getAgentVersions, getAgentVersionsById, getAgents, getAgentsById, getAgentsByIdSchemaVersions, getAgentsByIdTrainingStats, getAiChunksDocumentByDocumentId, getAiConversations, getAiConversationsById, getAiGraphEdges, getAiGraphNodes, getAiMessages, getApiKeys, getApiKeysById, getApplications, getApplicationsByApplicationIdEmailTemplates, getApplicationsByApplicationIdEmailTemplatesBySlug, getApplicationsById, getApplicationsBySlugBySlug, getAuditLogs, getBuckets, getBucketsById, getBucketsByIdObjects, getBucketsByIdStats, getConfigs, getCreditPackages, getCreditPackagesById, getCreditPackagesSlugBySlug, getDocumentsStats, getExtractionBatchesById, getExtractionBatchesByIdUploadUrls, getExtractionBatchesWorkspaceByWorkspaceId, getExtractionDocuments, getExtractionDocumentsById, getExtractionDocumentsByIdStatus, getExtractionDocumentsByIdView, getExtractionDocumentsWorkspaceByWorkspaceId, getExtractionDocumentsWorkspaceByWorkspaceIdExcluded, getExtractionDocumentsWorkspaceByWorkspaceIdReviewQueue, getExtractionDocumentsWorkspaceByWorkspaceIdTrained, getExtractionResultsById, getExtractionResultsDocumentByDocumentId, getFieldTemplates, getFieldTemplatesById, getInvitations, getInvitationsConsumeByToken, getInvitationsMe, getLlmAnalytics, getLlmAnalyticsById, getLlmAnalyticsCosts, getLlmAnalyticsPlatform, getLlmAnalyticsSummary, getLlmAnalyticsUsage, getLlmAnalyticsWorkspace, getMessages, getMessagesById, getMessagesSearch, getNotificationLogs, getNotificationLogsById, getNotificationMethods, getNotificationMethodsById, getNotificationPreferences, getNotificationPreferencesById, getObjects, getObjectsById, getPlans, getPlansById, getPlansSlugBySlug, getSchemaDiscoveriesById, getSearch, getSearchHealth, getSearchIndexes, getSearchSaved, getSearchSemantic, getSearchStats, getSearchStatus, getStorageStats, getTenantMemberships, getTenants, getTenantsById, getTenantsByTenantIdDocumentStats, getTenantsByTenantIdStats, getTenantsByTenantIdWorkspaceStats, getThreads, getThreadsById, getThreadsSearch, getTrainingExamples, getTrainingExamplesById, getTrainingSessionsAgentsByAgentIdSessions, getTrainingSessionsById, getTransactions, getTransactionsById, getUserProfiles, getUserProfilesById, getUserProfilesMe, getUsers, getUsersById, getUsersMe, getUsersMeTenants, getWallet, getWebhookConfigs, getWebhookConfigsById, getWebhookDeliveries, getWebhookDeliveriesById, getWorkspaceMemberships, getWorkspaces, getWorkspacesById, getWorkspacesByWorkspaceIdExtractionExports, getWorkspacesByWorkspaceIdExtractionExportsById, getWorkspacesByWorkspaceIdTrainingAnalytics, getWorkspacesMine, handleApiError, isRetryableError, paginateAll, paginateToArray, patchAgentsById, patchAgentsByIdSchemaVersionsByVersionId, patchApiKeysById, patchApiKeysByIdAllocate, patchApiKeysByIdRevoke, patchApiKeysByIdRotate, patchApiKeysByIdSetBudget, patchApplicationsByApplicationIdEmailTemplatesBySlug, patchApplicationsById, patchApplicationsByIdGrantCredits, patchBucketsById, patchConfigsByKey, patchExtractionDocumentsByIdCancel, patchExtractionDocumentsByIdDismiss, patchExtractionDocumentsByIdDismissTraining, patchExtractionDocumentsByIdExclude, patchExtractionDocumentsByIdFinishUpload, patchExtractionDocumentsByIdInclude, patchExtractionDocumentsByIdMarkTrained, patchExtractionDocumentsByIdReprocess, patchExtractionDocumentsByIdRestore, patchExtractionDocumentsByIdStatus, patchExtractionResultsByIdCorrections, patchExtractionResultsByIdRegenerate, patchInvitationsByIdAccept, patchInvitationsByIdAcceptByUser, patchInvitationsByIdDecline, patchInvitationsByIdResend, patchInvitationsByIdRevoke, patchMessagesById, patchNotificationMethodsById, patchNotificationMethodsByIdSetPrimary, patchNotificationPreferencesById, patchTenantMembershipsByTenantIdByUserId, patchTenantsById, patchThreadsById, patchTrainingExamplesById, patchUserProfilesById, patchUsersAuthPasswordChange, patchUsersAuthResetPassword, patchUsersByIdAdmin, patchUsersByIdAdminEmail, patchUsersByIdConfirmEmail, patchUsersByIdResetPassword, patchWalletAddons, patchWalletAddonsByAddonSlugCancel, patchWalletCredits, patchWalletPlan, patchWebhookConfigsById, patchWebhookConfigsByIdRotateSecret, patchWorkspaceMembershipsByWorkspaceIdByUserId, patchWorkspacesById, patchWorkspacesByIdAllocate, postAgentVersions, postAgents, postAgentsByIdClone, postAgentsByIdDiscoverSchema, postAgentsByIdPublishVersion, postAgentsByIdSchemaVersions, postAgentsByIdSchemaVersionsByVersionIdActivate, postAgentsByIdTeach, postAgentsByIdTest, postAgentsByIdValidate, postAgentsCloneForWorkspace, postAgentsPredict, postAiChunksSearch, postAiConversations, postAiEmbed, postAiGraphEdges, postAiGraphNodes, postAiMessages, postAiSearch, postAiSearchAdvanced, postApiKeys, postApplications, postApplicationsByApplicationIdEmailTemplates, postBuckets, postConfigs, postDocumentsBulkDelete, postDocumentsPresignedUpload, postExtractionBatches, postExtractionDocumentsBeginUpload, postExtractionDocumentsUpload, postExtractionResults, postFieldTemplates, postInvitations, postInvitationsAcceptByToken, postLlmAnalytics, postMessages, postNotificationMethods, postNotificationPreferences, postObjectsBulkDestroy, postObjectsRegister, postPayments, postSearchReindex, postSearchSaved, postStorageSignDownload, postStorageSignUpload, postTenantMemberships, postTenants, postTenantsByIdBuyStorage, postTenantsByIdCredit, postTenantsByIdRemoveStorage, postTenantsIsv, postThreads, postThreadsActive, postThreadsByIdMessages, postThreadsByIdSummarize, postTokens, postTrainingExamples, postTrainingExamplesBulk, postTrainingExamplesBulkDelete, postTrainingExamplesSearch, postUserProfiles, postUsersAuthConfirm, postUsersAuthLogin, postUsersAuthMagicLinkLogin, postUsersAuthMagicLinkRequest, postUsersAuthRegister, postUsersAuthRegisterWithOidc, postUsersAuthResendConfirmation, postUsersRegisterIsv, postWebhookConfigs, postWebhookConfigsByIdTest, postWebhookDeliveriesByIdRetry, postWorkspaceMemberships, postWorkspaces, postWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrained, postWorkspacesByWorkspaceIdExtractionExports, retryWithBackoff, sleep, streamMessage, streamSSE, webhooks, withRetry };
|
|
29237
|
+
export { type Account, type Agent, type AgentCreateRequest, AgentCreateSchema, type AgentVersion, type AgentVersionFieldsInputCreateType, type AiConfig, type ApiKey, type ApiKeyAllocateRequest, ApiKeyAllocateSchema, type ApiKeyCreateRequest, ApiKeyCreateSchema, type Application, type ApplicationCreateRequest, ApplicationCreateSchema, type AuditLog, AuthenticationError, AuthorizationError, type Bucket, type BucketCreateRequest, BucketCreateSchema, type BulkDismissalResult, type ClientOptions$1 as ClientOptions, type Config$2 as Config, type Conversation, type CreditPackage, type Customer, DEFAULT_RETRY_CONFIG, type DeleteAgentVersionsByIdData, type DeleteAgentVersionsByIdError, type DeleteAgentVersionsByIdErrors, type DeleteAgentVersionsByIdResponses, type DeleteAgentsByIdData, type DeleteAgentsByIdError, type DeleteAgentsByIdErrors, type DeleteAgentsByIdResponses, type DeleteAiConversationsByIdData, type DeleteAiConversationsByIdError, type DeleteAiConversationsByIdErrors, type DeleteAiConversationsByIdResponses, type DeleteAiGraphEdgesByIdData, type DeleteAiGraphEdgesByIdError, type DeleteAiGraphEdgesByIdErrors, type DeleteAiGraphEdgesByIdResponses, type DeleteAiGraphNodesByIdData, type DeleteAiGraphNodesByIdError, type DeleteAiGraphNodesByIdErrors, type DeleteAiGraphNodesByIdResponses, type DeleteApiKeysByIdData, type DeleteApiKeysByIdError, type DeleteApiKeysByIdErrors, type DeleteApiKeysByIdResponses, type DeleteApplicationsByApplicationIdEmailTemplatesBySlugData, type DeleteApplicationsByApplicationIdEmailTemplatesBySlugError, type DeleteApplicationsByApplicationIdEmailTemplatesBySlugErrors, type DeleteApplicationsByApplicationIdEmailTemplatesBySlugResponses, type DeleteApplicationsByIdData, type DeleteApplicationsByIdError, type DeleteApplicationsByIdErrors, type DeleteApplicationsByIdResponses, type DeleteBucketsByIdData, type DeleteBucketsByIdError, type DeleteBucketsByIdErrors, type DeleteBucketsByIdResponses, type DeleteExtractionDocumentsByIdData, type DeleteExtractionDocumentsByIdError, type DeleteExtractionDocumentsByIdErrors, type DeleteExtractionDocumentsByIdResponses, type DeleteFieldTemplatesByIdData, type DeleteFieldTemplatesByIdError, type DeleteFieldTemplatesByIdErrors, type DeleteFieldTemplatesByIdResponses, type DeleteMessagesByIdData, type DeleteMessagesByIdError, type DeleteMessagesByIdErrors, type DeleteMessagesByIdResponses, type DeleteNotificationMethodsByIdData, type DeleteNotificationMethodsByIdError, type DeleteNotificationMethodsByIdErrors, type DeleteNotificationMethodsByIdResponses, type DeleteNotificationPreferencesByIdData, type DeleteNotificationPreferencesByIdError, type DeleteNotificationPreferencesByIdErrors, type DeleteNotificationPreferencesByIdResponses, type DeleteObjectsByIdData, type DeleteObjectsByIdError, type DeleteObjectsByIdErrors, type DeleteObjectsByIdResponses, type DeleteSearchSavedByIdData, type DeleteSearchSavedByIdError, type DeleteSearchSavedByIdErrors, type DeleteSearchSavedByIdResponses, type DeleteTenantMembershipsByTenantIdByUserIdData, type DeleteTenantMembershipsByTenantIdByUserIdError, type DeleteTenantMembershipsByTenantIdByUserIdErrors, type DeleteTenantMembershipsByTenantIdByUserIdResponses, type DeleteTenantsByIdData, type DeleteTenantsByIdError, type DeleteTenantsByIdErrors, type DeleteTenantsByIdResponses, type DeleteThreadsByIdData, type DeleteThreadsByIdError, type DeleteThreadsByIdErrors, type DeleteThreadsByIdResponses, type DeleteTrainingExamplesByIdData, type DeleteTrainingExamplesByIdError, type DeleteTrainingExamplesByIdErrors, type DeleteTrainingExamplesByIdResponses, type DeleteTrainingSessionsByIdData, type DeleteTrainingSessionsByIdError, type DeleteTrainingSessionsByIdErrors, type DeleteTrainingSessionsByIdResponses, type DeleteUserProfilesByIdData, type DeleteUserProfilesByIdError, type DeleteUserProfilesByIdErrors, type DeleteUserProfilesByIdResponses, type DeleteWebhookConfigsByIdData, type DeleteWebhookConfigsByIdError, type DeleteWebhookConfigsByIdErrors, type DeleteWebhookConfigsByIdResponses, type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdData, type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdError, type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type DeleteWorkspacesByIdData, type DeleteWorkspacesByIdError, type DeleteWorkspacesByIdErrors, type DeleteWorkspacesByIdResponses, type DocumentChunk, type DocumentStats, type DocumentUploadBase64Request, DocumentUploadBase64Schema, type EmailTemplate, type EmbedRequest, EmbedRequestSchema, type Embedding, type ErrorResponse, type Errors, type ExtractionBatch, type ExtractionDocument, type ExtractionExport, type ExtractionResult, type FieldTemplate, type GetAgentVersionsByIdData, type GetAgentVersionsByIdError, type GetAgentVersionsByIdErrors, type GetAgentVersionsByIdResponse, type GetAgentVersionsByIdResponses, type GetAgentVersionsData, type GetAgentVersionsError, type GetAgentVersionsErrors, type GetAgentVersionsResponse, type GetAgentVersionsResponses, type GetAgentsByIdData, type GetAgentsByIdError, type GetAgentsByIdErrors, type GetAgentsByIdResponse, type GetAgentsByIdResponses, type GetAgentsByIdSchemaVersionsData, type GetAgentsByIdSchemaVersionsError, type GetAgentsByIdSchemaVersionsErrors, type GetAgentsByIdSchemaVersionsResponse, type GetAgentsByIdSchemaVersionsResponses, type GetAgentsByIdTrainingStatsData, type GetAgentsByIdTrainingStatsError, type GetAgentsByIdTrainingStatsErrors, type GetAgentsByIdTrainingStatsResponse, type GetAgentsByIdTrainingStatsResponses, type GetAgentsData, type GetAgentsError, type GetAgentsErrors, type GetAgentsResponse, type GetAgentsResponses, type GetAiChunksDocumentByDocumentIdData, type GetAiChunksDocumentByDocumentIdError, type GetAiChunksDocumentByDocumentIdErrors, type GetAiChunksDocumentByDocumentIdResponse, type GetAiChunksDocumentByDocumentIdResponses, type GetAiConversationsByIdData, type GetAiConversationsByIdError, type GetAiConversationsByIdErrors, type GetAiConversationsByIdResponse, type GetAiConversationsByIdResponses, type GetAiConversationsData, type GetAiConversationsError, type GetAiConversationsErrors, type GetAiConversationsResponse, type GetAiConversationsResponses, type GetAiGraphEdgesData, type GetAiGraphEdgesError, type GetAiGraphEdgesErrors, type GetAiGraphEdgesResponse, type GetAiGraphEdgesResponses, type GetAiGraphNodesData, type GetAiGraphNodesError, type GetAiGraphNodesErrors, type GetAiGraphNodesResponse, type GetAiGraphNodesResponses, type GetAiMessagesData, type GetAiMessagesError, type GetAiMessagesErrors, type GetAiMessagesResponse, type GetAiMessagesResponses, type GetApiKeysByIdData, type GetApiKeysByIdError, type GetApiKeysByIdErrors, type GetApiKeysByIdResponse, type GetApiKeysByIdResponses, type GetApiKeysData, type GetApiKeysError, type GetApiKeysErrors, type GetApiKeysResponse, type GetApiKeysResponses, type GetApplicationsByApplicationIdEmailTemplatesBySlugData, type GetApplicationsByApplicationIdEmailTemplatesBySlugError, type GetApplicationsByApplicationIdEmailTemplatesBySlugErrors, type GetApplicationsByApplicationIdEmailTemplatesBySlugResponse, type GetApplicationsByApplicationIdEmailTemplatesBySlugResponses, type GetApplicationsByApplicationIdEmailTemplatesData, type GetApplicationsByApplicationIdEmailTemplatesError, type GetApplicationsByApplicationIdEmailTemplatesErrors, type GetApplicationsByApplicationIdEmailTemplatesResponse, type GetApplicationsByApplicationIdEmailTemplatesResponses, type GetApplicationsByIdData, type GetApplicationsByIdError, type GetApplicationsByIdErrors, type GetApplicationsByIdResponse, type GetApplicationsByIdResponses, type GetApplicationsBySlugBySlugData, type GetApplicationsBySlugBySlugError, type GetApplicationsBySlugBySlugErrors, type GetApplicationsBySlugBySlugResponse, type GetApplicationsBySlugBySlugResponses, type GetApplicationsCurrentData, type GetApplicationsCurrentError, type GetApplicationsCurrentErrors, type GetApplicationsCurrentResponse, type GetApplicationsCurrentResponses, type GetApplicationsData, type GetApplicationsError, type GetApplicationsErrors, type GetApplicationsResponse, type GetApplicationsResponses, type GetAuditLogsData, type GetAuditLogsError, type GetAuditLogsErrors, type GetAuditLogsResponse, type GetAuditLogsResponses, type GetBucketsByIdData, type GetBucketsByIdError, type GetBucketsByIdErrors, type GetBucketsByIdObjectsData, type GetBucketsByIdObjectsError, type GetBucketsByIdObjectsErrors, type GetBucketsByIdObjectsResponse, type GetBucketsByIdObjectsResponses, type GetBucketsByIdResponse, type GetBucketsByIdResponses, type GetBucketsByIdStatsData, type GetBucketsByIdStatsError, type GetBucketsByIdStatsErrors, type GetBucketsByIdStatsResponse, type GetBucketsByIdStatsResponses, type GetBucketsData, type GetBucketsError, type GetBucketsErrors, type GetBucketsResponse, type GetBucketsResponses, type GetConfigsData, type GetConfigsError, type GetConfigsErrors, type GetConfigsResponse, type GetConfigsResponses, type GetCreditPackagesByIdData, type GetCreditPackagesByIdError, type GetCreditPackagesByIdErrors, type GetCreditPackagesByIdResponse, type GetCreditPackagesByIdResponses, type GetCreditPackagesData, type GetCreditPackagesError, type GetCreditPackagesErrors, type GetCreditPackagesResponse, type GetCreditPackagesResponses, type GetCreditPackagesSlugBySlugData, type GetCreditPackagesSlugBySlugError, type GetCreditPackagesSlugBySlugErrors, type GetCreditPackagesSlugBySlugResponse, type GetCreditPackagesSlugBySlugResponses, type GetDocumentsStatsData, type GetDocumentsStatsError, type GetDocumentsStatsErrors, type GetDocumentsStatsResponse, type GetDocumentsStatsResponses, type GetExtractionBatchesByIdData, type GetExtractionBatchesByIdError, type GetExtractionBatchesByIdErrors, type GetExtractionBatchesByIdResponse, type GetExtractionBatchesByIdResponses, type GetExtractionBatchesByIdUploadUrlsData, type GetExtractionBatchesByIdUploadUrlsError, type GetExtractionBatchesByIdUploadUrlsErrors, type GetExtractionBatchesByIdUploadUrlsResponse, type GetExtractionBatchesByIdUploadUrlsResponses, type GetExtractionBatchesWorkspaceByWorkspaceIdData, type GetExtractionBatchesWorkspaceByWorkspaceIdError, type GetExtractionBatchesWorkspaceByWorkspaceIdErrors, type GetExtractionBatchesWorkspaceByWorkspaceIdResponse, type GetExtractionBatchesWorkspaceByWorkspaceIdResponses, type GetExtractionDocumentsByIdData, type GetExtractionDocumentsByIdError, type GetExtractionDocumentsByIdErrors, type GetExtractionDocumentsByIdResponse, type GetExtractionDocumentsByIdResponses, type GetExtractionDocumentsByIdStatusData, type GetExtractionDocumentsByIdStatusError, type GetExtractionDocumentsByIdStatusErrors, type GetExtractionDocumentsByIdStatusResponse, type GetExtractionDocumentsByIdStatusResponses, type GetExtractionDocumentsByIdViewData, type GetExtractionDocumentsByIdViewError, type GetExtractionDocumentsByIdViewErrors, type GetExtractionDocumentsByIdViewResponse, type GetExtractionDocumentsByIdViewResponses, type GetExtractionDocumentsData, type GetExtractionDocumentsError, type GetExtractionDocumentsErrors, type GetExtractionDocumentsResponse, type GetExtractionDocumentsResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdData, type GetExtractionDocumentsWorkspaceByWorkspaceIdError, type GetExtractionDocumentsWorkspaceByWorkspaceIdErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedData, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedError, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueData, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueError, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedData, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedError, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponses, type GetExtractionResultsByIdData, type GetExtractionResultsByIdError, type GetExtractionResultsByIdErrors, type GetExtractionResultsByIdResponse, type GetExtractionResultsByIdResponses, type GetExtractionResultsDocumentByDocumentIdData, type GetExtractionResultsDocumentByDocumentIdError, type GetExtractionResultsDocumentByDocumentIdErrors, type GetExtractionResultsDocumentByDocumentIdResponse, type GetExtractionResultsDocumentByDocumentIdResponses, type GetFieldTemplatesByIdData, type GetFieldTemplatesByIdError, type GetFieldTemplatesByIdErrors, type GetFieldTemplatesByIdResponse, type GetFieldTemplatesByIdResponses, type GetFieldTemplatesData, type GetFieldTemplatesError, type GetFieldTemplatesErrors, type GetFieldTemplatesResponse, type GetFieldTemplatesResponses, type GetInvitationsConsumeByTokenData, type GetInvitationsConsumeByTokenError, type GetInvitationsConsumeByTokenErrors, type GetInvitationsConsumeByTokenResponse, type GetInvitationsConsumeByTokenResponses, type GetInvitationsData, type GetInvitationsError, type GetInvitationsErrors, type GetInvitationsMeData, type GetInvitationsMeError, type GetInvitationsMeErrors, type GetInvitationsMeResponse, type GetInvitationsMeResponses, type GetInvitationsResponse, type GetInvitationsResponses, type GetLlmAnalyticsByIdData, type GetLlmAnalyticsByIdError, type GetLlmAnalyticsByIdErrors, type GetLlmAnalyticsByIdResponse, type GetLlmAnalyticsByIdResponses, type GetLlmAnalyticsCostsData, type GetLlmAnalyticsCostsError, type GetLlmAnalyticsCostsErrors, type GetLlmAnalyticsCostsResponse, type GetLlmAnalyticsCostsResponses, type GetLlmAnalyticsData, type GetLlmAnalyticsError, type GetLlmAnalyticsErrors, type GetLlmAnalyticsPlatformData, type GetLlmAnalyticsPlatformError, type GetLlmAnalyticsPlatformErrors, type GetLlmAnalyticsPlatformResponse, type GetLlmAnalyticsPlatformResponses, type GetLlmAnalyticsResponse, type GetLlmAnalyticsResponses, type GetLlmAnalyticsSummaryData, type GetLlmAnalyticsSummaryError, type GetLlmAnalyticsSummaryErrors, type GetLlmAnalyticsSummaryResponse, type GetLlmAnalyticsSummaryResponses, type GetLlmAnalyticsUsageData, type GetLlmAnalyticsUsageError, type GetLlmAnalyticsUsageErrors, type GetLlmAnalyticsUsageResponse, type GetLlmAnalyticsUsageResponses, type GetLlmAnalyticsWorkspaceData, type GetLlmAnalyticsWorkspaceError, type GetLlmAnalyticsWorkspaceErrors, type GetLlmAnalyticsWorkspaceResponse, type GetLlmAnalyticsWorkspaceResponses, type GetMessagesByIdData, type GetMessagesByIdError, type GetMessagesByIdErrors, type GetMessagesByIdResponse, type GetMessagesByIdResponses, type GetMessagesData, type GetMessagesError, type GetMessagesErrors, type GetMessagesResponse, type GetMessagesResponses, type GetMessagesSearchData, type GetMessagesSearchError, type GetMessagesSearchErrors, type GetMessagesSearchResponse, type GetMessagesSearchResponses, type GetNotificationLogsByIdData, type GetNotificationLogsByIdError, type GetNotificationLogsByIdErrors, type GetNotificationLogsByIdResponse, type GetNotificationLogsByIdResponses, type GetNotificationLogsData, type GetNotificationLogsError, type GetNotificationLogsErrors, type GetNotificationLogsResponse, type GetNotificationLogsResponses, type GetNotificationMethodsByIdData, type GetNotificationMethodsByIdError, type GetNotificationMethodsByIdErrors, type GetNotificationMethodsByIdResponse, type GetNotificationMethodsByIdResponses, type GetNotificationMethodsData, type GetNotificationMethodsError, type GetNotificationMethodsErrors, type GetNotificationMethodsResponse, type GetNotificationMethodsResponses, type GetNotificationPreferencesByIdData, type GetNotificationPreferencesByIdError, type GetNotificationPreferencesByIdErrors, type GetNotificationPreferencesByIdResponse, type GetNotificationPreferencesByIdResponses, type GetNotificationPreferencesData, type GetNotificationPreferencesError, type GetNotificationPreferencesErrors, type GetNotificationPreferencesResponse, type GetNotificationPreferencesResponses, type GetObjectsByIdData, type GetObjectsByIdError, type GetObjectsByIdErrors, type GetObjectsByIdResponse, type GetObjectsByIdResponses, type GetObjectsData, type GetObjectsError, type GetObjectsErrors, type GetObjectsResponse, type GetObjectsResponses, type GetPlansByIdData, type GetPlansByIdError, type GetPlansByIdErrors, type GetPlansByIdResponse, type GetPlansByIdResponses, type GetPlansData, type GetPlansError, type GetPlansErrors, type GetPlansResponse, type GetPlansResponses, type GetPlansSlugBySlugData, type GetPlansSlugBySlugError, type GetPlansSlugBySlugErrors, type GetPlansSlugBySlugResponse, type GetPlansSlugBySlugResponses, type GetSchemaDiscoveriesByIdData, type GetSchemaDiscoveriesByIdError, type GetSchemaDiscoveriesByIdErrors, type GetSchemaDiscoveriesByIdResponse, type GetSchemaDiscoveriesByIdResponses, type GetSearchData, type GetSearchError, type GetSearchErrors, type GetSearchHealthData, type GetSearchHealthError, type GetSearchHealthErrors, type GetSearchHealthResponse, type GetSearchHealthResponses, type GetSearchIndexesData, type GetSearchIndexesError, type GetSearchIndexesErrors, type GetSearchIndexesResponse, type GetSearchIndexesResponses, type GetSearchResponse, type GetSearchResponses, type GetSearchSavedData, type GetSearchSavedError, type GetSearchSavedErrors, type GetSearchSavedResponse, type GetSearchSavedResponses, type GetSearchSemanticData, type GetSearchSemanticError, type GetSearchSemanticErrors, type GetSearchSemanticResponse, type GetSearchSemanticResponses, type GetSearchStatsData, type GetSearchStatsError, type GetSearchStatsErrors, type GetSearchStatsResponse, type GetSearchStatsResponses, type GetSearchStatusData, type GetSearchStatusError, type GetSearchStatusErrors, type GetSearchStatusResponse, type GetSearchStatusResponses, type GetStorageStatsData, type GetStorageStatsError, type GetStorageStatsErrors, type GetStorageStatsResponse, type GetStorageStatsResponses, type GetTenantMembershipsData, type GetTenantMembershipsError, type GetTenantMembershipsErrors, type GetTenantMembershipsResponse, type GetTenantMembershipsResponses, type GetTenantsByIdData, type GetTenantsByIdError, type GetTenantsByIdErrors, type GetTenantsByIdResponse, type GetTenantsByIdResponses, type GetTenantsByTenantIdDocumentStatsData, type GetTenantsByTenantIdDocumentStatsError, type GetTenantsByTenantIdDocumentStatsErrors, type GetTenantsByTenantIdDocumentStatsResponse, type GetTenantsByTenantIdDocumentStatsResponses, type GetTenantsByTenantIdStatsData, type GetTenantsByTenantIdStatsError, type GetTenantsByTenantIdStatsErrors, type GetTenantsByTenantIdStatsResponse, type GetTenantsByTenantIdStatsResponses, type GetTenantsByTenantIdWorkspaceStatsData, type GetTenantsByTenantIdWorkspaceStatsError, type GetTenantsByTenantIdWorkspaceStatsErrors, type GetTenantsByTenantIdWorkspaceStatsResponse, type GetTenantsByTenantIdWorkspaceStatsResponses, type GetTenantsData, type GetTenantsError, type GetTenantsErrors, type GetTenantsResponse, type GetTenantsResponses, type GetThreadsByIdData, type GetThreadsByIdError, type GetThreadsByIdErrors, type GetThreadsByIdResponse, type GetThreadsByIdResponses, type GetThreadsData, type GetThreadsError, type GetThreadsErrors, type GetThreadsResponse, type GetThreadsResponses, type GetThreadsSearchData, type GetThreadsSearchError, type GetThreadsSearchErrors, type GetThreadsSearchResponse, type GetThreadsSearchResponses, type GetTrainingExamplesByIdData, type GetTrainingExamplesByIdError, type GetTrainingExamplesByIdErrors, type GetTrainingExamplesByIdResponse, type GetTrainingExamplesByIdResponses, type GetTrainingExamplesData, type GetTrainingExamplesError, type GetTrainingExamplesErrors, type GetTrainingExamplesResponse, type GetTrainingExamplesResponses, type GetTrainingSessionsAgentsByAgentIdSessionsData, type GetTrainingSessionsAgentsByAgentIdSessionsError, type GetTrainingSessionsAgentsByAgentIdSessionsErrors, type GetTrainingSessionsAgentsByAgentIdSessionsResponse, type GetTrainingSessionsAgentsByAgentIdSessionsResponses, type GetTrainingSessionsByIdData, type GetTrainingSessionsByIdError, type GetTrainingSessionsByIdErrors, type GetTrainingSessionsByIdResponse, type GetTrainingSessionsByIdResponses, type GetTransactionsByIdData, type GetTransactionsByIdError, type GetTransactionsByIdErrors, type GetTransactionsByIdResponse, type GetTransactionsByIdResponses, type GetTransactionsData, type GetTransactionsError, type GetTransactionsErrors, type GetTransactionsResponse, type GetTransactionsResponses, type GetUserProfilesByIdData, type GetUserProfilesByIdError, type GetUserProfilesByIdErrors, type GetUserProfilesByIdResponse, type GetUserProfilesByIdResponses, type GetUserProfilesData, type GetUserProfilesError, type GetUserProfilesErrors, type GetUserProfilesMeData, type GetUserProfilesMeError, type GetUserProfilesMeErrors, type GetUserProfilesMeResponse, type GetUserProfilesMeResponses, type GetUserProfilesResponse, type GetUserProfilesResponses, type GetUsersByIdData, type GetUsersByIdError, type GetUsersByIdErrors, type GetUsersByIdResponse, type GetUsersByIdResponses, type GetUsersData, type GetUsersError, type GetUsersErrors, type GetUsersMeData, type GetUsersMeError, type GetUsersMeErrors, type GetUsersMeResponse, type GetUsersMeResponses, type GetUsersMeTenantsData, type GetUsersMeTenantsError, type GetUsersMeTenantsErrors, type GetUsersMeTenantsResponse, type GetUsersMeTenantsResponses, type GetUsersResponse, type GetUsersResponses, type GetWalletData, type GetWalletError, type GetWalletErrors, type GetWalletResponse, type GetWalletResponses, type GetWebhookConfigsByIdData, type GetWebhookConfigsByIdError, type GetWebhookConfigsByIdErrors, type GetWebhookConfigsByIdResponse, type GetWebhookConfigsByIdResponses, type GetWebhookConfigsData, type GetWebhookConfigsError, type GetWebhookConfigsErrors, type GetWebhookConfigsResponse, type GetWebhookConfigsResponses, type GetWebhookDeliveriesByIdData, type GetWebhookDeliveriesByIdError, type GetWebhookDeliveriesByIdErrors, type GetWebhookDeliveriesByIdResponse, type GetWebhookDeliveriesByIdResponses, type GetWebhookDeliveriesData, type GetWebhookDeliveriesError, type GetWebhookDeliveriesErrors, type GetWebhookDeliveriesResponse, type GetWebhookDeliveriesResponses, type GetWorkspaceMembershipsData, type GetWorkspaceMembershipsError, type GetWorkspaceMembershipsErrors, type GetWorkspaceMembershipsResponse, type GetWorkspaceMembershipsResponses, type GetWorkspacesByIdData, type GetWorkspacesByIdError, type GetWorkspacesByIdErrors, type GetWorkspacesByIdResponse, type GetWorkspacesByIdResponses, type GetWorkspacesByWorkspaceIdExtractionExportsByIdData, type GetWorkspacesByWorkspaceIdExtractionExportsByIdError, type GetWorkspacesByWorkspaceIdExtractionExportsByIdErrors, type GetWorkspacesByWorkspaceIdExtractionExportsByIdResponse, type GetWorkspacesByWorkspaceIdExtractionExportsByIdResponses, type GetWorkspacesByWorkspaceIdExtractionExportsData, type GetWorkspacesByWorkspaceIdExtractionExportsError, type GetWorkspacesByWorkspaceIdExtractionExportsErrors, type GetWorkspacesByWorkspaceIdExtractionExportsResponse, type GetWorkspacesByWorkspaceIdExtractionExportsResponses, type GetWorkspacesByWorkspaceIdTrainingAnalyticsData, type GetWorkspacesByWorkspaceIdTrainingAnalyticsError, type GetWorkspacesByWorkspaceIdTrainingAnalyticsErrors, type GetWorkspacesByWorkspaceIdTrainingAnalyticsResponse, type GetWorkspacesByWorkspaceIdTrainingAnalyticsResponses, type GetWorkspacesData, type GetWorkspacesError, type GetWorkspacesErrors, type GetWorkspacesMineData, type GetWorkspacesMineError, type GetWorkspacesMineErrors, type GetWorkspacesMineResponse, type GetWorkspacesMineResponses, type GetWorkspacesResponse, type GetWorkspacesResponses, type GetWorkspacesSharedData, type GetWorkspacesSharedError, type GetWorkspacesSharedErrors, type GetWorkspacesSharedResponse, type GetWorkspacesSharedResponses, GptCoreError, type GraphEdge, type GraphNode, type Invitation, type InvitationCreateRequest, InvitationCreateSchema, type IsvRevenue, type IsvSettlement, type Ledger, type Link, type Links, type LlmAnalytics, type LoginRequest, LoginRequestSchema, type Message, type MessageSendRequest, MessageSendSchema, NetworkError, NotFoundError, type NotificationLog, type NotificationMethod, type NotificationPreference, type OperationSuccess, type Options, type PaginatedResponse, type PaginationLinks, type PaginationOptions, type PatchAgentsByIdData, type PatchAgentsByIdError, type PatchAgentsByIdErrors, type PatchAgentsByIdResponse, type PatchAgentsByIdResponses, type PatchAgentsByIdSchemaVersionsByVersionIdData, type PatchAgentsByIdSchemaVersionsByVersionIdError, type PatchAgentsByIdSchemaVersionsByVersionIdErrors, type PatchAgentsByIdSchemaVersionsByVersionIdResponse, type PatchAgentsByIdSchemaVersionsByVersionIdResponses, type PatchApiKeysByIdAllocateData, type PatchApiKeysByIdAllocateError, type PatchApiKeysByIdAllocateErrors, type PatchApiKeysByIdAllocateResponse, type PatchApiKeysByIdAllocateResponses, type PatchApiKeysByIdData, type PatchApiKeysByIdError, type PatchApiKeysByIdErrors, type PatchApiKeysByIdResponse, type PatchApiKeysByIdResponses, type PatchApiKeysByIdRevokeData, type PatchApiKeysByIdRevokeError, type PatchApiKeysByIdRevokeErrors, type PatchApiKeysByIdRevokeResponse, type PatchApiKeysByIdRevokeResponses, type PatchApiKeysByIdRotateData, type PatchApiKeysByIdRotateError, type PatchApiKeysByIdRotateErrors, type PatchApiKeysByIdRotateResponse, type PatchApiKeysByIdRotateResponses, type PatchApiKeysByIdSetBudgetData, type PatchApiKeysByIdSetBudgetError, type PatchApiKeysByIdSetBudgetErrors, type PatchApiKeysByIdSetBudgetResponse, type PatchApiKeysByIdSetBudgetResponses, type PatchApplicationsByApplicationIdEmailTemplatesBySlugData, type PatchApplicationsByApplicationIdEmailTemplatesBySlugError, type PatchApplicationsByApplicationIdEmailTemplatesBySlugErrors, type PatchApplicationsByApplicationIdEmailTemplatesBySlugResponse, type PatchApplicationsByApplicationIdEmailTemplatesBySlugResponses, type PatchApplicationsByIdData, type PatchApplicationsByIdError, type PatchApplicationsByIdErrors, type PatchApplicationsByIdGrantCreditsData, type PatchApplicationsByIdGrantCreditsError, type PatchApplicationsByIdGrantCreditsErrors, type PatchApplicationsByIdGrantCreditsResponse, type PatchApplicationsByIdGrantCreditsResponses, type PatchApplicationsByIdResponse, type PatchApplicationsByIdResponses, type PatchBucketsByIdData, type PatchBucketsByIdError, type PatchBucketsByIdErrors, type PatchBucketsByIdResponse, type PatchBucketsByIdResponses, type PatchConfigsByKeyData, type PatchConfigsByKeyError, type PatchConfigsByKeyErrors, type PatchConfigsByKeyResponse, type PatchConfigsByKeyResponses, type PatchExtractionDocumentsByIdCancelData, type PatchExtractionDocumentsByIdCancelError, type PatchExtractionDocumentsByIdCancelErrors, type PatchExtractionDocumentsByIdCancelResponse, type PatchExtractionDocumentsByIdCancelResponses, type PatchExtractionDocumentsByIdDismissData, type PatchExtractionDocumentsByIdDismissError, type PatchExtractionDocumentsByIdDismissErrors, type PatchExtractionDocumentsByIdDismissResponse, type PatchExtractionDocumentsByIdDismissResponses, type PatchExtractionDocumentsByIdDismissTrainingData, type PatchExtractionDocumentsByIdDismissTrainingError, type PatchExtractionDocumentsByIdDismissTrainingErrors, type PatchExtractionDocumentsByIdDismissTrainingResponse, type PatchExtractionDocumentsByIdDismissTrainingResponses, type PatchExtractionDocumentsByIdExcludeData, type PatchExtractionDocumentsByIdExcludeError, type PatchExtractionDocumentsByIdExcludeErrors, type PatchExtractionDocumentsByIdExcludeResponse, type PatchExtractionDocumentsByIdExcludeResponses, type PatchExtractionDocumentsByIdFinishUploadData, type PatchExtractionDocumentsByIdFinishUploadError, type PatchExtractionDocumentsByIdFinishUploadErrors, type PatchExtractionDocumentsByIdFinishUploadResponse, type PatchExtractionDocumentsByIdFinishUploadResponses, type PatchExtractionDocumentsByIdIncludeData, type PatchExtractionDocumentsByIdIncludeError, type PatchExtractionDocumentsByIdIncludeErrors, type PatchExtractionDocumentsByIdIncludeResponse, type PatchExtractionDocumentsByIdIncludeResponses, type PatchExtractionDocumentsByIdMarkTrainedData, type PatchExtractionDocumentsByIdMarkTrainedError, type PatchExtractionDocumentsByIdMarkTrainedErrors, type PatchExtractionDocumentsByIdMarkTrainedResponse, type PatchExtractionDocumentsByIdMarkTrainedResponses, type PatchExtractionDocumentsByIdReprocessData, type PatchExtractionDocumentsByIdReprocessError, type PatchExtractionDocumentsByIdReprocessErrors, type PatchExtractionDocumentsByIdReprocessResponse, type PatchExtractionDocumentsByIdReprocessResponses, type PatchExtractionDocumentsByIdRestoreData, type PatchExtractionDocumentsByIdRestoreError, type PatchExtractionDocumentsByIdRestoreErrors, type PatchExtractionDocumentsByIdRestoreResponse, type PatchExtractionDocumentsByIdRestoreResponses, type PatchExtractionDocumentsByIdStatusData, type PatchExtractionDocumentsByIdStatusError, type PatchExtractionDocumentsByIdStatusErrors, type PatchExtractionDocumentsByIdStatusResponse, type PatchExtractionDocumentsByIdStatusResponses, type PatchExtractionResultsByIdCorrectionsData, type PatchExtractionResultsByIdCorrectionsError, type PatchExtractionResultsByIdCorrectionsErrors, type PatchExtractionResultsByIdCorrectionsResponse, type PatchExtractionResultsByIdCorrectionsResponses, type PatchExtractionResultsByIdRegenerateData, type PatchExtractionResultsByIdRegenerateError, type PatchExtractionResultsByIdRegenerateErrors, type PatchExtractionResultsByIdRegenerateResponse, type PatchExtractionResultsByIdRegenerateResponses, type PatchInvitationsByIdAcceptByUserData, type PatchInvitationsByIdAcceptByUserError, type PatchInvitationsByIdAcceptByUserErrors, type PatchInvitationsByIdAcceptByUserResponse, type PatchInvitationsByIdAcceptByUserResponses, type PatchInvitationsByIdAcceptData, type PatchInvitationsByIdAcceptError, type PatchInvitationsByIdAcceptErrors, type PatchInvitationsByIdAcceptResponse, type PatchInvitationsByIdAcceptResponses, type PatchInvitationsByIdDeclineData, type PatchInvitationsByIdDeclineError, type PatchInvitationsByIdDeclineErrors, type PatchInvitationsByIdDeclineResponse, type PatchInvitationsByIdDeclineResponses, type PatchInvitationsByIdResendData, type PatchInvitationsByIdResendError, type PatchInvitationsByIdResendErrors, type PatchInvitationsByIdResendResponse, type PatchInvitationsByIdResendResponses, type PatchInvitationsByIdRevokeData, type PatchInvitationsByIdRevokeError, type PatchInvitationsByIdRevokeErrors, type PatchInvitationsByIdRevokeResponse, type PatchInvitationsByIdRevokeResponses, type PatchMessagesByIdData, type PatchMessagesByIdError, type PatchMessagesByIdErrors, type PatchMessagesByIdResponse, type PatchMessagesByIdResponses, type PatchNotificationMethodsByIdData, type PatchNotificationMethodsByIdError, type PatchNotificationMethodsByIdErrors, type PatchNotificationMethodsByIdResponse, type PatchNotificationMethodsByIdResponses, type PatchNotificationMethodsByIdSetPrimaryData, type PatchNotificationMethodsByIdSetPrimaryError, type PatchNotificationMethodsByIdSetPrimaryErrors, type PatchNotificationMethodsByIdSetPrimaryResponse, type PatchNotificationMethodsByIdSetPrimaryResponses, type PatchNotificationPreferencesByIdData, type PatchNotificationPreferencesByIdError, type PatchNotificationPreferencesByIdErrors, type PatchNotificationPreferencesByIdResponse, type PatchNotificationPreferencesByIdResponses, type PatchTenantMembershipsByTenantIdByUserIdData, type PatchTenantMembershipsByTenantIdByUserIdError, type PatchTenantMembershipsByTenantIdByUserIdErrors, type PatchTenantMembershipsByTenantIdByUserIdResponse, type PatchTenantMembershipsByTenantIdByUserIdResponses, type PatchTenantsByIdData, type PatchTenantsByIdError, type PatchTenantsByIdErrors, type PatchTenantsByIdResponse, type PatchTenantsByIdResponses, type PatchThreadsByIdData, type PatchThreadsByIdError, type PatchThreadsByIdErrors, type PatchThreadsByIdResponse, type PatchThreadsByIdResponses, type PatchTrainingExamplesByIdData, type PatchTrainingExamplesByIdError, type PatchTrainingExamplesByIdErrors, type PatchTrainingExamplesByIdResponse, type PatchTrainingExamplesByIdResponses, type PatchUserProfilesByIdData, type PatchUserProfilesByIdError, type PatchUserProfilesByIdErrors, type PatchUserProfilesByIdResponse, type PatchUserProfilesByIdResponses, type PatchUsersAuthPasswordChangeData, type PatchUsersAuthPasswordChangeError, type PatchUsersAuthPasswordChangeErrors, type PatchUsersAuthPasswordChangeResponse, type PatchUsersAuthPasswordChangeResponses, type PatchUsersAuthResetPasswordData, type PatchUsersAuthResetPasswordError, type PatchUsersAuthResetPasswordErrors, type PatchUsersAuthResetPasswordResponse, type PatchUsersAuthResetPasswordResponses, type PatchUsersByIdAdminData, type PatchUsersByIdAdminEmailData, type PatchUsersByIdAdminEmailError, type PatchUsersByIdAdminEmailErrors, type PatchUsersByIdAdminEmailResponse, type PatchUsersByIdAdminEmailResponses, type PatchUsersByIdAdminError, type PatchUsersByIdAdminErrors, type PatchUsersByIdAdminResponse, type PatchUsersByIdAdminResponses, type PatchUsersByIdConfirmEmailData, type PatchUsersByIdConfirmEmailError, type PatchUsersByIdConfirmEmailErrors, type PatchUsersByIdConfirmEmailResponse, type PatchUsersByIdConfirmEmailResponses, type PatchUsersByIdResetPasswordData, type PatchUsersByIdResetPasswordError, type PatchUsersByIdResetPasswordErrors, type PatchUsersByIdResetPasswordResponse, type PatchUsersByIdResetPasswordResponses, type PatchWalletAddonsByAddonSlugCancelData, type PatchWalletAddonsByAddonSlugCancelError, type PatchWalletAddonsByAddonSlugCancelErrors, type PatchWalletAddonsByAddonSlugCancelResponse, type PatchWalletAddonsByAddonSlugCancelResponses, type PatchWalletAddonsData, type PatchWalletAddonsError, type PatchWalletAddonsErrors, type PatchWalletAddonsResponse, type PatchWalletAddonsResponses, type PatchWalletCreditsData, type PatchWalletCreditsError, type PatchWalletCreditsErrors, type PatchWalletCreditsResponse, type PatchWalletCreditsResponses, type PatchWalletPlanData, type PatchWalletPlanError, type PatchWalletPlanErrors, type PatchWalletPlanResponse, type PatchWalletPlanResponses, type PatchWebhookConfigsByIdData, type PatchWebhookConfigsByIdError, type PatchWebhookConfigsByIdErrors, type PatchWebhookConfigsByIdResponse, type PatchWebhookConfigsByIdResponses, type PatchWebhookConfigsByIdRotateSecretData, type PatchWebhookConfigsByIdRotateSecretError, type PatchWebhookConfigsByIdRotateSecretErrors, type PatchWebhookConfigsByIdRotateSecretResponse, type PatchWebhookConfigsByIdRotateSecretResponses, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdData, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdError, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdResponse, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type PatchWorkspacesByIdAllocateData, type PatchWorkspacesByIdAllocateError, type PatchWorkspacesByIdAllocateErrors, type PatchWorkspacesByIdAllocateResponse, type PatchWorkspacesByIdAllocateResponses, type PatchWorkspacesByIdData, type PatchWorkspacesByIdError, type PatchWorkspacesByIdErrors, type PatchWorkspacesByIdResponse, type PatchWorkspacesByIdResponses, type Payment, type PaymentMethod, type Plan, type PostAgentVersionsData, type PostAgentVersionsError, type PostAgentVersionsErrors, type PostAgentVersionsResponse, type PostAgentVersionsResponses, type PostAgentsByIdCloneData, type PostAgentsByIdCloneError, type PostAgentsByIdCloneErrors, type PostAgentsByIdCloneResponse, type PostAgentsByIdCloneResponses, type PostAgentsByIdDiscoverSchemaData, type PostAgentsByIdDiscoverSchemaError, type PostAgentsByIdDiscoverSchemaErrors, type PostAgentsByIdDiscoverSchemaResponse, type PostAgentsByIdDiscoverSchemaResponses, type PostAgentsByIdExportData, type PostAgentsByIdExportError, type PostAgentsByIdExportErrors, type PostAgentsByIdExportResponse, type PostAgentsByIdExportResponses, type PostAgentsByIdPublishVersionData, type PostAgentsByIdPublishVersionError, type PostAgentsByIdPublishVersionErrors, type PostAgentsByIdPublishVersionResponse, type PostAgentsByIdPublishVersionResponses, type PostAgentsByIdSchemaVersionsByVersionIdActivateData, type PostAgentsByIdSchemaVersionsByVersionIdActivateError, type PostAgentsByIdSchemaVersionsByVersionIdActivateErrors, type PostAgentsByIdSchemaVersionsByVersionIdActivateResponse, type PostAgentsByIdSchemaVersionsByVersionIdActivateResponses, type PostAgentsByIdSchemaVersionsData, type PostAgentsByIdSchemaVersionsError, type PostAgentsByIdSchemaVersionsErrors, type PostAgentsByIdSchemaVersionsResponse, type PostAgentsByIdSchemaVersionsResponses, type PostAgentsByIdStatsData, type PostAgentsByIdStatsError, type PostAgentsByIdStatsErrors, type PostAgentsByIdStatsResponse, type PostAgentsByIdStatsResponses, type PostAgentsByIdTeachData, type PostAgentsByIdTeachError, type PostAgentsByIdTeachErrors, type PostAgentsByIdTeachResponse, type PostAgentsByIdTeachResponses, type PostAgentsByIdTestData, type PostAgentsByIdTestError, type PostAgentsByIdTestErrors, type PostAgentsByIdTestResponse, type PostAgentsByIdTestResponses, type PostAgentsByIdValidateData, type PostAgentsByIdValidateError, type PostAgentsByIdValidateErrors, type PostAgentsByIdValidateResponse, type PostAgentsByIdValidateResponses, type PostAgentsCloneForWorkspaceData, type PostAgentsCloneForWorkspaceError, type PostAgentsCloneForWorkspaceErrors, type PostAgentsCloneForWorkspaceResponse, type PostAgentsCloneForWorkspaceResponses, type PostAgentsData, type PostAgentsError, type PostAgentsErrors, type PostAgentsImportData, type PostAgentsImportError, type PostAgentsImportErrors, type PostAgentsImportResponse, type PostAgentsImportResponses, type PostAgentsPredictData, type PostAgentsPredictError, type PostAgentsPredictErrors, type PostAgentsPredictResponse, type PostAgentsPredictResponses, type PostAgentsResponse, type PostAgentsResponses, type PostAiChunksSearchData, type PostAiChunksSearchError, type PostAiChunksSearchErrors, type PostAiChunksSearchResponse, type PostAiChunksSearchResponses, type PostAiConversationsData, type PostAiConversationsError, type PostAiConversationsErrors, type PostAiConversationsResponse, type PostAiConversationsResponses, type PostAiEmbedData, type PostAiEmbedError, type PostAiEmbedErrors, type PostAiEmbedResponse, type PostAiEmbedResponses, type PostAiGraphEdgesData, type PostAiGraphEdgesError, type PostAiGraphEdgesErrors, type PostAiGraphEdgesResponse, type PostAiGraphEdgesResponses, type PostAiGraphNodesData, type PostAiGraphNodesError, type PostAiGraphNodesErrors, type PostAiGraphNodesResponse, type PostAiGraphNodesResponses, type PostAiMessagesData, type PostAiMessagesError, type PostAiMessagesErrors, type PostAiMessagesResponse, type PostAiMessagesResponses, type PostAiSearchAdvancedData, type PostAiSearchAdvancedError, type PostAiSearchAdvancedErrors, type PostAiSearchAdvancedResponse, type PostAiSearchAdvancedResponses, type PostAiSearchData, type PostAiSearchError, type PostAiSearchErrors, type PostAiSearchResponse, type PostAiSearchResponses, type PostApiKeysData, type PostApiKeysError, type PostApiKeysErrors, type PostApiKeysResponse, type PostApiKeysResponses, type PostApplicationsByApplicationIdEmailTemplatesData, type PostApplicationsByApplicationIdEmailTemplatesError, type PostApplicationsByApplicationIdEmailTemplatesErrors, type PostApplicationsByApplicationIdEmailTemplatesResponse, type PostApplicationsByApplicationIdEmailTemplatesResponses, type PostApplicationsData, type PostApplicationsError, type PostApplicationsErrors, type PostApplicationsResponse, type PostApplicationsResponses, type PostBucketsData, type PostBucketsError, type PostBucketsErrors, type PostBucketsResponse, type PostBucketsResponses, type PostConfigsData, type PostConfigsError, type PostConfigsErrors, type PostConfigsResponse, type PostConfigsResponses, type PostDocumentsBulkDeleteData, type PostDocumentsBulkDeleteError, type PostDocumentsBulkDeleteErrors, type PostDocumentsBulkDeleteResponse, type PostDocumentsBulkDeleteResponses, type PostDocumentsPresignedUploadData, type PostDocumentsPresignedUploadError, type PostDocumentsPresignedUploadErrors, type PostDocumentsPresignedUploadResponse, type PostDocumentsPresignedUploadResponses, type PostExtractionBatchesData, type PostExtractionBatchesError, type PostExtractionBatchesErrors, type PostExtractionBatchesResponse, type PostExtractionBatchesResponses, type PostExtractionDocumentsBeginUploadData, type PostExtractionDocumentsBeginUploadError, type PostExtractionDocumentsBeginUploadErrors, type PostExtractionDocumentsBeginUploadResponse, type PostExtractionDocumentsBeginUploadResponses, type PostExtractionDocumentsUploadData, type PostExtractionDocumentsUploadError, type PostExtractionDocumentsUploadErrors, type PostExtractionDocumentsUploadResponse, type PostExtractionDocumentsUploadResponses, type PostExtractionResultsData, type PostExtractionResultsError, type PostExtractionResultsErrors, type PostExtractionResultsResponse, type PostExtractionResultsResponses, type PostFieldTemplatesData, type PostFieldTemplatesError, type PostFieldTemplatesErrors, type PostFieldTemplatesResponse, type PostFieldTemplatesResponses, type PostInvitationsAcceptByTokenData, type PostInvitationsAcceptByTokenError, type PostInvitationsAcceptByTokenErrors, type PostInvitationsAcceptByTokenResponse, type PostInvitationsAcceptByTokenResponses, type PostInvitationsData, type PostInvitationsError, type PostInvitationsErrors, type PostInvitationsResponse, type PostInvitationsResponses, type PostLlmAnalyticsData, type PostLlmAnalyticsError, type PostLlmAnalyticsErrors, type PostLlmAnalyticsResponse, type PostLlmAnalyticsResponses, type PostMessagesData, type PostMessagesError, type PostMessagesErrors, type PostMessagesResponse, type PostMessagesResponses, type PostNotificationMethodsData, type PostNotificationMethodsError, type PostNotificationMethodsErrors, type PostNotificationMethodsResponse, type PostNotificationMethodsResponses, type PostNotificationPreferencesData, type PostNotificationPreferencesError, type PostNotificationPreferencesErrors, type PostNotificationPreferencesResponse, type PostNotificationPreferencesResponses, type PostObjectsBulkDestroyData, type PostObjectsBulkDestroyError, type PostObjectsBulkDestroyErrors, type PostObjectsBulkDestroyResponse, type PostObjectsBulkDestroyResponses, type PostObjectsRegisterData, type PostObjectsRegisterError, type PostObjectsRegisterErrors, type PostObjectsRegisterResponse, type PostObjectsRegisterResponses, type PostPaymentsData, type PostPaymentsError, type PostPaymentsErrors, type PostPaymentsResponse, type PostPaymentsResponses, type PostSearchReindexData, type PostSearchReindexError, type PostSearchReindexErrors, type PostSearchReindexResponse, type PostSearchReindexResponses, type PostSearchSavedData, type PostSearchSavedError, type PostSearchSavedErrors, type PostSearchSavedResponse, type PostSearchSavedResponses, type PostStorageSignDownloadData, type PostStorageSignDownloadError, type PostStorageSignDownloadErrors, type PostStorageSignDownloadResponse, type PostStorageSignDownloadResponses, type PostStorageSignUploadData, type PostStorageSignUploadError, type PostStorageSignUploadErrors, type PostStorageSignUploadResponse, type PostStorageSignUploadResponses, type PostTenantMembershipsData, type PostTenantMembershipsError, type PostTenantMembershipsErrors, type PostTenantMembershipsResponse, type PostTenantMembershipsResponses, type PostTenantsByIdBuyStorageData, type PostTenantsByIdBuyStorageError, type PostTenantsByIdBuyStorageErrors, type PostTenantsByIdBuyStorageResponse, type PostTenantsByIdBuyStorageResponses, type PostTenantsByIdCreditData, type PostTenantsByIdCreditError, type PostTenantsByIdCreditErrors, type PostTenantsByIdCreditResponse, type PostTenantsByIdCreditResponses, type PostTenantsByIdRemoveStorageData, type PostTenantsByIdRemoveStorageError, type PostTenantsByIdRemoveStorageErrors, type PostTenantsByIdRemoveStorageResponse, type PostTenantsByIdRemoveStorageResponses, type PostTenantsData, type PostTenantsError, type PostTenantsErrors, type PostTenantsIsvData, type PostTenantsIsvError, type PostTenantsIsvErrors, type PostTenantsIsvResponse, type PostTenantsIsvResponses, type PostTenantsResponse, type PostTenantsResponses, type PostThreadsActiveData, type PostThreadsActiveError, type PostThreadsActiveErrors, type PostThreadsActiveResponse, type PostThreadsActiveResponses, type PostThreadsByIdMessagesData, type PostThreadsByIdMessagesError, type PostThreadsByIdMessagesErrors, type PostThreadsByIdMessagesResponse, type PostThreadsByIdMessagesResponses, type PostThreadsByIdSummarizeData, type PostThreadsByIdSummarizeError, type PostThreadsByIdSummarizeErrors, type PostThreadsByIdSummarizeResponse, type PostThreadsByIdSummarizeResponses, type PostThreadsData, type PostThreadsError, type PostThreadsErrors, type PostThreadsResponse, type PostThreadsResponses, type PostTokensData, type PostTokensError, type PostTokensErrors, type PostTokensResponse, type PostTokensResponses, type PostTrainingExamplesBulkData, type PostTrainingExamplesBulkDeleteData, type PostTrainingExamplesBulkDeleteError, type PostTrainingExamplesBulkDeleteErrors, type PostTrainingExamplesBulkDeleteResponse, type PostTrainingExamplesBulkDeleteResponses, type PostTrainingExamplesBulkError, type PostTrainingExamplesBulkErrors, type PostTrainingExamplesBulkResponse, type PostTrainingExamplesBulkResponses, type PostTrainingExamplesData, type PostTrainingExamplesError, type PostTrainingExamplesErrors, type PostTrainingExamplesResponse, type PostTrainingExamplesResponses, type PostTrainingExamplesSearchData, type PostTrainingExamplesSearchError, type PostTrainingExamplesSearchErrors, type PostTrainingExamplesSearchResponse, type PostTrainingExamplesSearchResponses, type PostUserProfilesData, type PostUserProfilesError, type PostUserProfilesErrors, type PostUserProfilesResponse, type PostUserProfilesResponses, type PostUsersAuthConfirmData, type PostUsersAuthConfirmError, type PostUsersAuthConfirmErrors, type PostUsersAuthConfirmResponse, type PostUsersAuthConfirmResponses, type PostUsersAuthLoginData, type PostUsersAuthLoginError, type PostUsersAuthLoginErrors, type PostUsersAuthLoginResponse, type PostUsersAuthLoginResponses, type PostUsersAuthMagicLinkLoginData, type PostUsersAuthMagicLinkLoginError, type PostUsersAuthMagicLinkLoginErrors, type PostUsersAuthMagicLinkLoginResponse, type PostUsersAuthMagicLinkLoginResponses, type PostUsersAuthMagicLinkRequestData, type PostUsersAuthMagicLinkRequestError, type PostUsersAuthMagicLinkRequestErrors, type PostUsersAuthMagicLinkRequestResponse, type PostUsersAuthMagicLinkRequestResponses, type PostUsersAuthRegisterData, type PostUsersAuthRegisterError, type PostUsersAuthRegisterErrors, type PostUsersAuthRegisterResponse, type PostUsersAuthRegisterResponses, type PostUsersAuthRegisterWithOidcData, type PostUsersAuthRegisterWithOidcError, type PostUsersAuthRegisterWithOidcErrors, type PostUsersAuthRegisterWithOidcResponse, type PostUsersAuthRegisterWithOidcResponses, type PostUsersAuthResendConfirmationData, type PostUsersAuthResendConfirmationError, type PostUsersAuthResendConfirmationErrors, type PostUsersAuthResendConfirmationResponse, type PostUsersAuthResendConfirmationResponses, type PostUsersRegisterIsvData, type PostUsersRegisterIsvError, type PostUsersRegisterIsvErrors, type PostUsersRegisterIsvResponse, type PostUsersRegisterIsvResponses, type PostWebhookConfigsBulkDisableData, type PostWebhookConfigsBulkDisableError, type PostWebhookConfigsBulkDisableErrors, type PostWebhookConfigsBulkDisableResponse, type PostWebhookConfigsBulkDisableResponses, type PostWebhookConfigsBulkEnableData, type PostWebhookConfigsBulkEnableError, type PostWebhookConfigsBulkEnableErrors, type PostWebhookConfigsBulkEnableResponse, type PostWebhookConfigsBulkEnableResponses, type PostWebhookConfigsByIdTestData, type PostWebhookConfigsByIdTestError, type PostWebhookConfigsByIdTestErrors, type PostWebhookConfigsByIdTestResponse, type PostWebhookConfigsByIdTestResponses, type PostWebhookConfigsData, type PostWebhookConfigsError, type PostWebhookConfigsErrors, type PostWebhookConfigsResponse, type PostWebhookConfigsResponses, type PostWebhookConfigsStatsData, type PostWebhookConfigsStatsError, type PostWebhookConfigsStatsErrors, type PostWebhookConfigsStatsResponse, type PostWebhookConfigsStatsResponses, type PostWebhookDeliveriesBulkRetryData, type PostWebhookDeliveriesBulkRetryError, type PostWebhookDeliveriesBulkRetryErrors, type PostWebhookDeliveriesBulkRetryResponse, type PostWebhookDeliveriesBulkRetryResponses, type PostWebhookDeliveriesByIdRetryData, type PostWebhookDeliveriesByIdRetryError, type PostWebhookDeliveriesByIdRetryErrors, type PostWebhookDeliveriesByIdRetryResponse, type PostWebhookDeliveriesByIdRetryResponses, type PostWebhookDeliveriesStatsData, type PostWebhookDeliveriesStatsError, type PostWebhookDeliveriesStatsErrors, type PostWebhookDeliveriesStatsResponse, type PostWebhookDeliveriesStatsResponses, type PostWorkspaceMembershipsData, type PostWorkspaceMembershipsError, type PostWorkspaceMembershipsErrors, type PostWorkspaceMembershipsResponse, type PostWorkspaceMembershipsResponses, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedData, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedError, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedErrors, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponse, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponses, type PostWorkspacesByWorkspaceIdExtractionExportsData, type PostWorkspacesByWorkspaceIdExtractionExportsError, type PostWorkspacesByWorkspaceIdExtractionExportsErrors, type PostWorkspacesByWorkspaceIdExtractionExportsResponse, type PostWorkspacesByWorkspaceIdExtractionExportsResponses, type PostWorkspacesData, type PostWorkspacesError, type PostWorkspacesErrors, type PostWorkspacesResponse, type PostWorkspacesResponses, type PresignedDownloadRequest, PresignedDownloadSchema, type PresignedUploadRequest, PresignedUploadSchema, type PresignedUrl, type PricingRule, type PricingStrategy, RateLimitError, type RegisterRequest, RegisterRequestSchema, type RetryConfig, type SavedSearch, type SchemaDiscovery, type Search, type SearchRequest, SearchRequestSchema, type SemanticCacheEntry, ServerError, type StorageStats, type StreamMessageChunk, type StreamOptions, type Subscription, type Tenant, type TenantDocumentStats, type TenantMembership, type TenantStats, type Thread, type ThreadCreateRequest, ThreadCreateSchema, TimeoutError, type Token, type TrainingAnalytics, type TrainingExample, type TrainingSession, type Transaction, type User, type UserProfile, ValidationError, type Wallet, type WebhookConfig, type WebhookConfigCreateRequest, WebhookConfigCreateSchema, type WebhookConfigUpdateRequest, WebhookConfigUpdateSchema, type WebhookDelivery, WebhookError, type Workspace, type WorkspaceCreateRequest, WorkspaceCreateSchema, type WorkspaceDocumentStats, type WorkspaceMembership, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, calculateBackoff, client, collectStreamedMessage, gptCore as default, deleteAgentVersionsById, deleteAgentsById, deleteAiConversationsById, deleteAiGraphEdgesById, deleteAiGraphNodesById, deleteApiKeysById, deleteApplicationsByApplicationIdEmailTemplatesBySlug, deleteApplicationsById, deleteBucketsById, deleteExtractionDocumentsById, deleteFieldTemplatesById, deleteMessagesById, deleteNotificationMethodsById, deleteNotificationPreferencesById, deleteObjectsById, deleteSearchSavedById, deleteTenantMembershipsByTenantIdByUserId, deleteTenantsById, deleteThreadsById, deleteTrainingExamplesById, deleteTrainingSessionsById, deleteUserProfilesById, deleteWebhookConfigsById, deleteWorkspaceMembershipsByWorkspaceIdByUserId, deleteWorkspacesById, getAgentVersions, getAgentVersionsById, getAgents, getAgentsById, getAgentsByIdSchemaVersions, getAgentsByIdTrainingStats, getAiChunksDocumentByDocumentId, getAiConversations, getAiConversationsById, getAiGraphEdges, getAiGraphNodes, getAiMessages, getApiKeys, getApiKeysById, getApplications, getApplicationsByApplicationIdEmailTemplates, getApplicationsByApplicationIdEmailTemplatesBySlug, getApplicationsById, getApplicationsBySlugBySlug, getApplicationsCurrent, getAuditLogs, getBuckets, getBucketsById, getBucketsByIdObjects, getBucketsByIdStats, getConfigs, getCreditPackages, getCreditPackagesById, getCreditPackagesSlugBySlug, getDocumentsStats, getExtractionBatchesById, getExtractionBatchesByIdUploadUrls, getExtractionBatchesWorkspaceByWorkspaceId, getExtractionDocuments, getExtractionDocumentsById, getExtractionDocumentsByIdStatus, getExtractionDocumentsByIdView, getExtractionDocumentsWorkspaceByWorkspaceId, getExtractionDocumentsWorkspaceByWorkspaceIdExcluded, getExtractionDocumentsWorkspaceByWorkspaceIdReviewQueue, getExtractionDocumentsWorkspaceByWorkspaceIdTrained, getExtractionResultsById, getExtractionResultsDocumentByDocumentId, getFieldTemplates, getFieldTemplatesById, getInvitations, getInvitationsConsumeByToken, getInvitationsMe, getLlmAnalytics, getLlmAnalyticsById, getLlmAnalyticsCosts, getLlmAnalyticsPlatform, getLlmAnalyticsSummary, getLlmAnalyticsUsage, getLlmAnalyticsWorkspace, getMessages, getMessagesById, getMessagesSearch, getNotificationLogs, getNotificationLogsById, getNotificationMethods, getNotificationMethodsById, getNotificationPreferences, getNotificationPreferencesById, getObjects, getObjectsById, getPlans, getPlansById, getPlansSlugBySlug, getSchemaDiscoveriesById, getSearch, getSearchHealth, getSearchIndexes, getSearchSaved, getSearchSemantic, getSearchStats, getSearchStatus, getStorageStats, getTenantMemberships, getTenants, getTenantsById, getTenantsByTenantIdDocumentStats, getTenantsByTenantIdStats, getTenantsByTenantIdWorkspaceStats, getThreads, getThreadsById, getThreadsSearch, getTrainingExamples, getTrainingExamplesById, getTrainingSessionsAgentsByAgentIdSessions, getTrainingSessionsById, getTransactions, getTransactionsById, getUserProfiles, getUserProfilesById, getUserProfilesMe, getUsers, getUsersById, getUsersMe, getUsersMeTenants, getWallet, getWebhookConfigs, getWebhookConfigsById, getWebhookDeliveries, getWebhookDeliveriesById, getWorkspaceMemberships, getWorkspaces, getWorkspacesById, getWorkspacesByWorkspaceIdExtractionExports, getWorkspacesByWorkspaceIdExtractionExportsById, getWorkspacesByWorkspaceIdTrainingAnalytics, getWorkspacesMine, getWorkspacesShared, handleApiError, isRetryableError, paginateAll, paginateToArray, patchAgentsById, patchAgentsByIdSchemaVersionsByVersionId, patchApiKeysById, patchApiKeysByIdAllocate, patchApiKeysByIdRevoke, patchApiKeysByIdRotate, patchApiKeysByIdSetBudget, patchApplicationsByApplicationIdEmailTemplatesBySlug, patchApplicationsById, patchApplicationsByIdGrantCredits, patchBucketsById, patchConfigsByKey, patchExtractionDocumentsByIdCancel, patchExtractionDocumentsByIdDismiss, patchExtractionDocumentsByIdDismissTraining, patchExtractionDocumentsByIdExclude, patchExtractionDocumentsByIdFinishUpload, patchExtractionDocumentsByIdInclude, patchExtractionDocumentsByIdMarkTrained, patchExtractionDocumentsByIdReprocess, patchExtractionDocumentsByIdRestore, patchExtractionDocumentsByIdStatus, patchExtractionResultsByIdCorrections, patchExtractionResultsByIdRegenerate, patchInvitationsByIdAccept, patchInvitationsByIdAcceptByUser, patchInvitationsByIdDecline, patchInvitationsByIdResend, patchInvitationsByIdRevoke, patchMessagesById, patchNotificationMethodsById, patchNotificationMethodsByIdSetPrimary, patchNotificationPreferencesById, patchTenantMembershipsByTenantIdByUserId, patchTenantsById, patchThreadsById, patchTrainingExamplesById, patchUserProfilesById, patchUsersAuthPasswordChange, patchUsersAuthResetPassword, patchUsersByIdAdmin, patchUsersByIdAdminEmail, patchUsersByIdConfirmEmail, patchUsersByIdResetPassword, patchWalletAddons, patchWalletAddonsByAddonSlugCancel, patchWalletCredits, patchWalletPlan, patchWebhookConfigsById, patchWebhookConfigsByIdRotateSecret, patchWorkspaceMembershipsByWorkspaceIdByUserId, patchWorkspacesById, patchWorkspacesByIdAllocate, postAgentVersions, postAgents, postAgentsByIdClone, postAgentsByIdDiscoverSchema, postAgentsByIdExport, postAgentsByIdPublishVersion, postAgentsByIdSchemaVersions, postAgentsByIdSchemaVersionsByVersionIdActivate, postAgentsByIdStats, postAgentsByIdTeach, postAgentsByIdTest, postAgentsByIdValidate, postAgentsCloneForWorkspace, postAgentsImport, postAgentsPredict, postAiChunksSearch, postAiConversations, postAiEmbed, postAiGraphEdges, postAiGraphNodes, postAiMessages, postAiSearch, postAiSearchAdvanced, postApiKeys, postApplications, postApplicationsByApplicationIdEmailTemplates, postBuckets, postConfigs, postDocumentsBulkDelete, postDocumentsPresignedUpload, postExtractionBatches, postExtractionDocumentsBeginUpload, postExtractionDocumentsUpload, postExtractionResults, postFieldTemplates, postInvitations, postInvitationsAcceptByToken, postLlmAnalytics, postMessages, postNotificationMethods, postNotificationPreferences, postObjectsBulkDestroy, postObjectsRegister, postPayments, postSearchReindex, postSearchSaved, postStorageSignDownload, postStorageSignUpload, postTenantMemberships, postTenants, postTenantsByIdBuyStorage, postTenantsByIdCredit, postTenantsByIdRemoveStorage, postTenantsIsv, postThreads, postThreadsActive, postThreadsByIdMessages, postThreadsByIdSummarize, postTokens, postTrainingExamples, postTrainingExamplesBulk, postTrainingExamplesBulkDelete, postTrainingExamplesSearch, postUserProfiles, postUsersAuthConfirm, postUsersAuthLogin, postUsersAuthMagicLinkLogin, postUsersAuthMagicLinkRequest, postUsersAuthRegister, postUsersAuthRegisterWithOidc, postUsersAuthResendConfirmation, postUsersRegisterIsv, postWebhookConfigs, postWebhookConfigsBulkDisable, postWebhookConfigsBulkEnable, postWebhookConfigsByIdTest, postWebhookConfigsStats, postWebhookDeliveriesBulkRetry, postWebhookDeliveriesByIdRetry, postWebhookDeliveriesStats, postWorkspaceMemberships, postWorkspaces, postWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrained, postWorkspacesByWorkspaceIdExtractionExports, retryWithBackoff, sleep, streamMessage, streamSSE, webhooks, withRetry };
|