@gpt-core/client 0.6.7 → 0.6.9
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 +740 -171
- package/dist/index.d.ts +740 -171
- package/dist/index.js +66 -12
- package/dist/index.mjs +60 -11
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -31,6 +31,9 @@ type WorkspaceSettingsInputCreateType = {
|
|
|
31
31
|
overdraft_limit?: number | unknown;
|
|
32
32
|
overdraft_period?: "daily" | "weekly" | "monthly" | unknown;
|
|
33
33
|
} | unknown;
|
|
34
|
+
review_train?: {
|
|
35
|
+
confidence_threshold?: number | unknown;
|
|
36
|
+
} | unknown;
|
|
34
37
|
scheduling?: {
|
|
35
38
|
enabled?: boolean | unknown;
|
|
36
39
|
interval_minutes?: number | unknown;
|
|
@@ -166,6 +169,56 @@ type Message = {
|
|
|
166
169
|
};
|
|
167
170
|
type: string;
|
|
168
171
|
};
|
|
172
|
+
/**
|
|
173
|
+
* A "Resource object" representing a training_session
|
|
174
|
+
*/
|
|
175
|
+
type TrainingSession = {
|
|
176
|
+
/**
|
|
177
|
+
* An attributes object for a training_session
|
|
178
|
+
*/
|
|
179
|
+
attributes?: {
|
|
180
|
+
/**
|
|
181
|
+
* Field included by default.
|
|
182
|
+
*/
|
|
183
|
+
confirmations_count: number;
|
|
184
|
+
/**
|
|
185
|
+
* Field included by default.
|
|
186
|
+
*/
|
|
187
|
+
corrections_count: number;
|
|
188
|
+
/**
|
|
189
|
+
* Async calculated score of how much this session improved the model. Field included by default.
|
|
190
|
+
*/
|
|
191
|
+
impact_score?: number | null | unknown;
|
|
192
|
+
/**
|
|
193
|
+
* Field included by default.
|
|
194
|
+
*/
|
|
195
|
+
inserted_at: unknown;
|
|
196
|
+
/**
|
|
197
|
+
* Field included by default.
|
|
198
|
+
*/
|
|
199
|
+
reverted_at?: unknown;
|
|
200
|
+
/**
|
|
201
|
+
* Field included by default.
|
|
202
|
+
*/
|
|
203
|
+
status?: "queued" | "processing" | "completed" | "failed" | "reverted" | unknown;
|
|
204
|
+
/**
|
|
205
|
+
* Field included by default.
|
|
206
|
+
*/
|
|
207
|
+
training_note?: string | null | unknown;
|
|
208
|
+
/**
|
|
209
|
+
* Field included by default.
|
|
210
|
+
*/
|
|
211
|
+
updated_at: unknown;
|
|
212
|
+
};
|
|
213
|
+
id: string;
|
|
214
|
+
/**
|
|
215
|
+
* A relationships object for a training_session
|
|
216
|
+
*/
|
|
217
|
+
relationships?: {
|
|
218
|
+
[key: string]: never;
|
|
219
|
+
};
|
|
220
|
+
type: string;
|
|
221
|
+
};
|
|
169
222
|
/**
|
|
170
223
|
* A "Resource object" representing a operation_success
|
|
171
224
|
*/
|
|
@@ -1011,6 +1064,9 @@ type WorkspaceSettingsInputUpdateType = {
|
|
|
1011
1064
|
overdraft_limit?: number | unknown;
|
|
1012
1065
|
overdraft_period?: "daily" | "weekly" | "monthly" | unknown;
|
|
1013
1066
|
} | unknown;
|
|
1067
|
+
review_train?: {
|
|
1068
|
+
confidence_threshold?: number | unknown;
|
|
1069
|
+
} | unknown;
|
|
1014
1070
|
scheduling?: {
|
|
1015
1071
|
enabled?: boolean | unknown;
|
|
1016
1072
|
interval_minutes?: number | unknown;
|
|
@@ -1249,6 +1305,10 @@ type Tenant = {
|
|
|
1249
1305
|
* Field included by default.
|
|
1250
1306
|
*/
|
|
1251
1307
|
slug: string;
|
|
1308
|
+
/**
|
|
1309
|
+
* Cost in credits for training on a single document. Field included by default.
|
|
1310
|
+
*/
|
|
1311
|
+
training_price_credits: number;
|
|
1252
1312
|
};
|
|
1253
1313
|
id: string;
|
|
1254
1314
|
/**
|
|
@@ -1383,6 +1443,10 @@ type TrainingExample = {
|
|
|
1383
1443
|
* General note about these corrections (e.g., 'Poor OCR quality', 'Non-standard date format'). Field included by default.
|
|
1384
1444
|
*/
|
|
1385
1445
|
training_note?: string | null | unknown;
|
|
1446
|
+
/**
|
|
1447
|
+
* Field included by default.
|
|
1448
|
+
*/
|
|
1449
|
+
training_session_id?: string | null | unknown;
|
|
1386
1450
|
/**
|
|
1387
1451
|
* Field included by default.
|
|
1388
1452
|
*/
|
|
@@ -1391,6 +1455,10 @@ type TrainingExample = {
|
|
|
1391
1455
|
* Field included by default.
|
|
1392
1456
|
*/
|
|
1393
1457
|
version_id?: string | null | unknown;
|
|
1458
|
+
/**
|
|
1459
|
+
* Field included by default.
|
|
1460
|
+
*/
|
|
1461
|
+
workspace_id?: string | null | unknown;
|
|
1394
1462
|
};
|
|
1395
1463
|
id: string;
|
|
1396
1464
|
/**
|
|
@@ -1409,6 +1477,30 @@ type TrainingExample = {
|
|
|
1409
1477
|
type: string;
|
|
1410
1478
|
} | null;
|
|
1411
1479
|
};
|
|
1480
|
+
training_session?: {
|
|
1481
|
+
/**
|
|
1482
|
+
* An identifier for training_session
|
|
1483
|
+
*/
|
|
1484
|
+
data?: {
|
|
1485
|
+
id: string;
|
|
1486
|
+
meta?: {
|
|
1487
|
+
[key: string]: unknown;
|
|
1488
|
+
};
|
|
1489
|
+
type: string;
|
|
1490
|
+
} | null;
|
|
1491
|
+
};
|
|
1492
|
+
workspace?: {
|
|
1493
|
+
/**
|
|
1494
|
+
* An identifier for workspace
|
|
1495
|
+
*/
|
|
1496
|
+
data?: {
|
|
1497
|
+
id: string;
|
|
1498
|
+
meta?: {
|
|
1499
|
+
[key: string]: unknown;
|
|
1500
|
+
};
|
|
1501
|
+
type: string;
|
|
1502
|
+
} | null;
|
|
1503
|
+
};
|
|
1412
1504
|
};
|
|
1413
1505
|
type: string;
|
|
1414
1506
|
};
|
|
@@ -2643,6 +2735,15 @@ type Workspace = {
|
|
|
2643
2735
|
*/
|
|
2644
2736
|
overdraft_period?: "daily" | "weekly" | "monthly" | unknown;
|
|
2645
2737
|
};
|
|
2738
|
+
/**
|
|
2739
|
+
* Field included by default.
|
|
2740
|
+
*/
|
|
2741
|
+
review_train: {
|
|
2742
|
+
/**
|
|
2743
|
+
* Field included by default.
|
|
2744
|
+
*/
|
|
2745
|
+
confidence_threshold: number;
|
|
2746
|
+
};
|
|
2646
2747
|
/**
|
|
2647
2748
|
* Field included by default.
|
|
2648
2749
|
*/
|
|
@@ -2824,6 +2925,10 @@ type ExtractionDocument = {
|
|
|
2824
2925
|
* Field included by default.
|
|
2825
2926
|
*/
|
|
2826
2927
|
error_message?: string | null | unknown;
|
|
2928
|
+
/**
|
|
2929
|
+
* If true, this document is excluded from training (both creating new examples and being used in retrieval). Field included by default.
|
|
2930
|
+
*/
|
|
2931
|
+
excluded_from_training: boolean;
|
|
2827
2932
|
/**
|
|
2828
2933
|
* SHA256 hash of the file content for deduplication. Field included by default.
|
|
2829
2934
|
*/
|
|
@@ -2840,6 +2945,10 @@ type ExtractionDocument = {
|
|
|
2840
2945
|
* Field included by default.
|
|
2841
2946
|
*/
|
|
2842
2947
|
filename: string;
|
|
2948
|
+
/**
|
|
2949
|
+
* Field included by default.
|
|
2950
|
+
*/
|
|
2951
|
+
last_verified_at?: unknown;
|
|
2843
2952
|
/**
|
|
2844
2953
|
* Municipality/agency name extracted from document content. Field included by default.
|
|
2845
2954
|
*/
|
|
@@ -2857,6 +2966,10 @@ type ExtractionDocument = {
|
|
|
2857
2966
|
* Field included by default.
|
|
2858
2967
|
*/
|
|
2859
2968
|
progress?: number | null | unknown;
|
|
2969
|
+
/**
|
|
2970
|
+
* Reason why this document is in the review queue
|
|
2971
|
+
*/
|
|
2972
|
+
queue_reason?: string | null | unknown;
|
|
2860
2973
|
/**
|
|
2861
2974
|
* State or province code (2-letter). Field included by default.
|
|
2862
2975
|
*/
|
|
@@ -2864,13 +2977,21 @@ type ExtractionDocument = {
|
|
|
2864
2977
|
/**
|
|
2865
2978
|
* Field included by default.
|
|
2866
2979
|
*/
|
|
2867
|
-
status
|
|
2980
|
+
status?: "queued" | "processing" | "completed" | "failed" | unknown;
|
|
2868
2981
|
/**
|
|
2869
2982
|
* Field included by default.
|
|
2870
2983
|
*/
|
|
2871
2984
|
storage_path: string;
|
|
2872
2985
|
upload_url?: string | null | unknown;
|
|
2873
2986
|
uploaded_at?: string | null | unknown;
|
|
2987
|
+
/**
|
|
2988
|
+
* The review/verification state of the document. Field included by default.
|
|
2989
|
+
*/
|
|
2990
|
+
verification_status?: "unverified" | "partially_verified" | "fully_verified" | unknown;
|
|
2991
|
+
/**
|
|
2992
|
+
* Field included by default.
|
|
2993
|
+
*/
|
|
2994
|
+
verified_by_user_id?: string | null | unknown;
|
|
2874
2995
|
};
|
|
2875
2996
|
id: string;
|
|
2876
2997
|
/**
|
|
@@ -4263,6 +4384,89 @@ type GetLlmAnalyticsPlatformResponses = {
|
|
|
4263
4384
|
};
|
|
4264
4385
|
};
|
|
4265
4386
|
type GetLlmAnalyticsPlatformResponse = GetLlmAnalyticsPlatformResponses[keyof GetLlmAnalyticsPlatformResponses];
|
|
4387
|
+
type PatchExtractionDocumentsByIdExcludeData = {
|
|
4388
|
+
/**
|
|
4389
|
+
* Request body for the /extraction/documents/:id/exclude operation on extraction_document resource
|
|
4390
|
+
*/
|
|
4391
|
+
body?: {
|
|
4392
|
+
data: {
|
|
4393
|
+
attributes?: {
|
|
4394
|
+
[key: string]: never;
|
|
4395
|
+
};
|
|
4396
|
+
id: string;
|
|
4397
|
+
relationships?: {
|
|
4398
|
+
[key: string]: never;
|
|
4399
|
+
};
|
|
4400
|
+
type?: "extraction_document";
|
|
4401
|
+
};
|
|
4402
|
+
};
|
|
4403
|
+
headers: {
|
|
4404
|
+
/**
|
|
4405
|
+
* Application ID for authentication and routing
|
|
4406
|
+
*/
|
|
4407
|
+
"x-application-key": string;
|
|
4408
|
+
};
|
|
4409
|
+
path: {
|
|
4410
|
+
id: string;
|
|
4411
|
+
};
|
|
4412
|
+
query?: {
|
|
4413
|
+
/**
|
|
4414
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
4415
|
+
*/
|
|
4416
|
+
include?: string;
|
|
4417
|
+
/**
|
|
4418
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
4419
|
+
*/
|
|
4420
|
+
fields?: {
|
|
4421
|
+
[key: string]: unknown;
|
|
4422
|
+
};
|
|
4423
|
+
};
|
|
4424
|
+
url: "/extraction/documents/{id}/exclude";
|
|
4425
|
+
};
|
|
4426
|
+
type PatchExtractionDocumentsByIdExcludeErrors = {
|
|
4427
|
+
/**
|
|
4428
|
+
* Bad Request - Invalid input data or malformed request
|
|
4429
|
+
*/
|
|
4430
|
+
400: ErrorResponse;
|
|
4431
|
+
/**
|
|
4432
|
+
* Unauthorized - Missing or invalid authentication token
|
|
4433
|
+
*/
|
|
4434
|
+
401: ErrorResponse;
|
|
4435
|
+
/**
|
|
4436
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
4437
|
+
*/
|
|
4438
|
+
403: ErrorResponse;
|
|
4439
|
+
/**
|
|
4440
|
+
* Not Found - Resource does not exist
|
|
4441
|
+
*/
|
|
4442
|
+
404: ErrorResponse;
|
|
4443
|
+
/**
|
|
4444
|
+
* Too Many Requests - Rate limit exceeded
|
|
4445
|
+
*/
|
|
4446
|
+
429: ErrorResponse;
|
|
4447
|
+
/**
|
|
4448
|
+
* Internal Server Error - Unexpected server error
|
|
4449
|
+
*/
|
|
4450
|
+
500: ErrorResponse;
|
|
4451
|
+
/**
|
|
4452
|
+
* General Error
|
|
4453
|
+
*/
|
|
4454
|
+
default: Errors;
|
|
4455
|
+
};
|
|
4456
|
+
type PatchExtractionDocumentsByIdExcludeError = PatchExtractionDocumentsByIdExcludeErrors[keyof PatchExtractionDocumentsByIdExcludeErrors];
|
|
4457
|
+
type PatchExtractionDocumentsByIdExcludeResponses = {
|
|
4458
|
+
/**
|
|
4459
|
+
* Success
|
|
4460
|
+
*/
|
|
4461
|
+
200: {
|
|
4462
|
+
data?: ExtractionDocument;
|
|
4463
|
+
included?: Array<ExtractionResult>;
|
|
4464
|
+
meta?: {
|
|
4465
|
+
[key: string]: unknown;
|
|
4466
|
+
};
|
|
4467
|
+
};
|
|
4468
|
+
};
|
|
4469
|
+
type PatchExtractionDocumentsByIdExcludeResponse = PatchExtractionDocumentsByIdExcludeResponses[keyof PatchExtractionDocumentsByIdExcludeResponses];
|
|
4266
4470
|
type PostPaymentsData = {
|
|
4267
4471
|
/**
|
|
4268
4472
|
* Request body for the /payments operation on payment resource
|
|
@@ -8554,6 +8758,89 @@ type PostTrainingExamplesBulkDeleteResponses = {
|
|
|
8554
8758
|
};
|
|
8555
8759
|
};
|
|
8556
8760
|
type PostTrainingExamplesBulkDeleteResponse = PostTrainingExamplesBulkDeleteResponses[keyof PostTrainingExamplesBulkDeleteResponses];
|
|
8761
|
+
type PatchExtractionDocumentsByIdIncludeData = {
|
|
8762
|
+
/**
|
|
8763
|
+
* Request body for the /extraction/documents/:id/include operation on extraction_document resource
|
|
8764
|
+
*/
|
|
8765
|
+
body?: {
|
|
8766
|
+
data: {
|
|
8767
|
+
attributes?: {
|
|
8768
|
+
[key: string]: never;
|
|
8769
|
+
};
|
|
8770
|
+
id: string;
|
|
8771
|
+
relationships?: {
|
|
8772
|
+
[key: string]: never;
|
|
8773
|
+
};
|
|
8774
|
+
type?: "extraction_document";
|
|
8775
|
+
};
|
|
8776
|
+
};
|
|
8777
|
+
headers: {
|
|
8778
|
+
/**
|
|
8779
|
+
* Application ID for authentication and routing
|
|
8780
|
+
*/
|
|
8781
|
+
"x-application-key": string;
|
|
8782
|
+
};
|
|
8783
|
+
path: {
|
|
8784
|
+
id: string;
|
|
8785
|
+
};
|
|
8786
|
+
query?: {
|
|
8787
|
+
/**
|
|
8788
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
8789
|
+
*/
|
|
8790
|
+
include?: string;
|
|
8791
|
+
/**
|
|
8792
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
8793
|
+
*/
|
|
8794
|
+
fields?: {
|
|
8795
|
+
[key: string]: unknown;
|
|
8796
|
+
};
|
|
8797
|
+
};
|
|
8798
|
+
url: "/extraction/documents/{id}/include";
|
|
8799
|
+
};
|
|
8800
|
+
type PatchExtractionDocumentsByIdIncludeErrors = {
|
|
8801
|
+
/**
|
|
8802
|
+
* Bad Request - Invalid input data or malformed request
|
|
8803
|
+
*/
|
|
8804
|
+
400: ErrorResponse;
|
|
8805
|
+
/**
|
|
8806
|
+
* Unauthorized - Missing or invalid authentication token
|
|
8807
|
+
*/
|
|
8808
|
+
401: ErrorResponse;
|
|
8809
|
+
/**
|
|
8810
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
8811
|
+
*/
|
|
8812
|
+
403: ErrorResponse;
|
|
8813
|
+
/**
|
|
8814
|
+
* Not Found - Resource does not exist
|
|
8815
|
+
*/
|
|
8816
|
+
404: ErrorResponse;
|
|
8817
|
+
/**
|
|
8818
|
+
* Too Many Requests - Rate limit exceeded
|
|
8819
|
+
*/
|
|
8820
|
+
429: ErrorResponse;
|
|
8821
|
+
/**
|
|
8822
|
+
* Internal Server Error - Unexpected server error
|
|
8823
|
+
*/
|
|
8824
|
+
500: ErrorResponse;
|
|
8825
|
+
/**
|
|
8826
|
+
* General Error
|
|
8827
|
+
*/
|
|
8828
|
+
default: Errors;
|
|
8829
|
+
};
|
|
8830
|
+
type PatchExtractionDocumentsByIdIncludeError = PatchExtractionDocumentsByIdIncludeErrors[keyof PatchExtractionDocumentsByIdIncludeErrors];
|
|
8831
|
+
type PatchExtractionDocumentsByIdIncludeResponses = {
|
|
8832
|
+
/**
|
|
8833
|
+
* Success
|
|
8834
|
+
*/
|
|
8835
|
+
200: {
|
|
8836
|
+
data?: ExtractionDocument;
|
|
8837
|
+
included?: Array<ExtractionResult>;
|
|
8838
|
+
meta?: {
|
|
8839
|
+
[key: string]: unknown;
|
|
8840
|
+
};
|
|
8841
|
+
};
|
|
8842
|
+
};
|
|
8843
|
+
type PatchExtractionDocumentsByIdIncludeResponse = PatchExtractionDocumentsByIdIncludeResponses[keyof PatchExtractionDocumentsByIdIncludeResponses];
|
|
8557
8844
|
type GetLlmAnalyticsSummaryData = {
|
|
8558
8845
|
body?: never;
|
|
8559
8846
|
headers: {
|
|
@@ -8924,7 +9211,7 @@ type PostStorageSignDownloadResponses = {
|
|
|
8924
9211
|
};
|
|
8925
9212
|
};
|
|
8926
9213
|
type PostStorageSignDownloadResponse = PostStorageSignDownloadResponses[keyof PostStorageSignDownloadResponses];
|
|
8927
|
-
type
|
|
9214
|
+
type DeleteTrainingSessionsByIdData = {
|
|
8928
9215
|
body?: never;
|
|
8929
9216
|
headers: {
|
|
8930
9217
|
/**
|
|
@@ -8947,9 +9234,9 @@ type DeleteNotificationMethodsByIdData = {
|
|
|
8947
9234
|
[key: string]: unknown;
|
|
8948
9235
|
};
|
|
8949
9236
|
};
|
|
8950
|
-
url: "/
|
|
9237
|
+
url: "/training_sessions/{id}";
|
|
8951
9238
|
};
|
|
8952
|
-
type
|
|
9239
|
+
type DeleteTrainingSessionsByIdErrors = {
|
|
8953
9240
|
/**
|
|
8954
9241
|
* Bad Request - Invalid input data or malformed request
|
|
8955
9242
|
*/
|
|
@@ -8979,14 +9266,14 @@ type DeleteNotificationMethodsByIdErrors = {
|
|
|
8979
9266
|
*/
|
|
8980
9267
|
default: Errors;
|
|
8981
9268
|
};
|
|
8982
|
-
type
|
|
8983
|
-
type
|
|
9269
|
+
type DeleteTrainingSessionsByIdError = DeleteTrainingSessionsByIdErrors[keyof DeleteTrainingSessionsByIdErrors];
|
|
9270
|
+
type DeleteTrainingSessionsByIdResponses = {
|
|
8984
9271
|
/**
|
|
8985
9272
|
* Deleted successfully
|
|
8986
9273
|
*/
|
|
8987
9274
|
200: unknown;
|
|
8988
9275
|
};
|
|
8989
|
-
type
|
|
9276
|
+
type GetTrainingSessionsByIdData = {
|
|
8990
9277
|
body?: never;
|
|
8991
9278
|
headers: {
|
|
8992
9279
|
/**
|
|
@@ -9009,9 +9296,9 @@ type GetNotificationMethodsByIdData = {
|
|
|
9009
9296
|
[key: string]: unknown;
|
|
9010
9297
|
};
|
|
9011
9298
|
};
|
|
9012
|
-
url: "/
|
|
9299
|
+
url: "/training_sessions/{id}";
|
|
9013
9300
|
};
|
|
9014
|
-
type
|
|
9301
|
+
type GetTrainingSessionsByIdErrors = {
|
|
9015
9302
|
/**
|
|
9016
9303
|
* Bad Request - Invalid input data or malformed request
|
|
9017
9304
|
*/
|
|
@@ -9041,20 +9328,151 @@ type GetNotificationMethodsByIdErrors = {
|
|
|
9041
9328
|
*/
|
|
9042
9329
|
default: Errors;
|
|
9043
9330
|
};
|
|
9044
|
-
type
|
|
9045
|
-
type
|
|
9331
|
+
type GetTrainingSessionsByIdError = GetTrainingSessionsByIdErrors[keyof GetTrainingSessionsByIdErrors];
|
|
9332
|
+
type GetTrainingSessionsByIdResponses = {
|
|
9046
9333
|
/**
|
|
9047
9334
|
* Success
|
|
9048
9335
|
*/
|
|
9049
9336
|
200: {
|
|
9050
|
-
data?:
|
|
9337
|
+
data?: TrainingSession;
|
|
9051
9338
|
included?: Array<unknown>;
|
|
9052
9339
|
meta?: {
|
|
9053
9340
|
[key: string]: unknown;
|
|
9054
9341
|
};
|
|
9055
9342
|
};
|
|
9056
9343
|
};
|
|
9057
|
-
type
|
|
9344
|
+
type GetTrainingSessionsByIdResponse = GetTrainingSessionsByIdResponses[keyof GetTrainingSessionsByIdResponses];
|
|
9345
|
+
type DeleteNotificationMethodsByIdData = {
|
|
9346
|
+
body?: never;
|
|
9347
|
+
headers: {
|
|
9348
|
+
/**
|
|
9349
|
+
* Application ID for authentication and routing
|
|
9350
|
+
*/
|
|
9351
|
+
"x-application-key": string;
|
|
9352
|
+
};
|
|
9353
|
+
path: {
|
|
9354
|
+
id: string;
|
|
9355
|
+
};
|
|
9356
|
+
query?: {
|
|
9357
|
+
/**
|
|
9358
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
9359
|
+
*/
|
|
9360
|
+
include?: string;
|
|
9361
|
+
/**
|
|
9362
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
9363
|
+
*/
|
|
9364
|
+
fields?: {
|
|
9365
|
+
[key: string]: unknown;
|
|
9366
|
+
};
|
|
9367
|
+
};
|
|
9368
|
+
url: "/notification_methods/{id}";
|
|
9369
|
+
};
|
|
9370
|
+
type DeleteNotificationMethodsByIdErrors = {
|
|
9371
|
+
/**
|
|
9372
|
+
* Bad Request - Invalid input data or malformed request
|
|
9373
|
+
*/
|
|
9374
|
+
400: ErrorResponse;
|
|
9375
|
+
/**
|
|
9376
|
+
* Unauthorized - Missing or invalid authentication token
|
|
9377
|
+
*/
|
|
9378
|
+
401: ErrorResponse;
|
|
9379
|
+
/**
|
|
9380
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
9381
|
+
*/
|
|
9382
|
+
403: ErrorResponse;
|
|
9383
|
+
/**
|
|
9384
|
+
* Not Found - Resource does not exist
|
|
9385
|
+
*/
|
|
9386
|
+
404: ErrorResponse;
|
|
9387
|
+
/**
|
|
9388
|
+
* Too Many Requests - Rate limit exceeded
|
|
9389
|
+
*/
|
|
9390
|
+
429: ErrorResponse;
|
|
9391
|
+
/**
|
|
9392
|
+
* Internal Server Error - Unexpected server error
|
|
9393
|
+
*/
|
|
9394
|
+
500: ErrorResponse;
|
|
9395
|
+
/**
|
|
9396
|
+
* General Error
|
|
9397
|
+
*/
|
|
9398
|
+
default: Errors;
|
|
9399
|
+
};
|
|
9400
|
+
type DeleteNotificationMethodsByIdError = DeleteNotificationMethodsByIdErrors[keyof DeleteNotificationMethodsByIdErrors];
|
|
9401
|
+
type DeleteNotificationMethodsByIdResponses = {
|
|
9402
|
+
/**
|
|
9403
|
+
* Deleted successfully
|
|
9404
|
+
*/
|
|
9405
|
+
200: unknown;
|
|
9406
|
+
};
|
|
9407
|
+
type GetNotificationMethodsByIdData = {
|
|
9408
|
+
body?: never;
|
|
9409
|
+
headers: {
|
|
9410
|
+
/**
|
|
9411
|
+
* Application ID for authentication and routing
|
|
9412
|
+
*/
|
|
9413
|
+
"x-application-key": string;
|
|
9414
|
+
};
|
|
9415
|
+
path: {
|
|
9416
|
+
id: string;
|
|
9417
|
+
};
|
|
9418
|
+
query?: {
|
|
9419
|
+
/**
|
|
9420
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
9421
|
+
*/
|
|
9422
|
+
include?: string;
|
|
9423
|
+
/**
|
|
9424
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
9425
|
+
*/
|
|
9426
|
+
fields?: {
|
|
9427
|
+
[key: string]: unknown;
|
|
9428
|
+
};
|
|
9429
|
+
};
|
|
9430
|
+
url: "/notification_methods/{id}";
|
|
9431
|
+
};
|
|
9432
|
+
type GetNotificationMethodsByIdErrors = {
|
|
9433
|
+
/**
|
|
9434
|
+
* Bad Request - Invalid input data or malformed request
|
|
9435
|
+
*/
|
|
9436
|
+
400: ErrorResponse;
|
|
9437
|
+
/**
|
|
9438
|
+
* Unauthorized - Missing or invalid authentication token
|
|
9439
|
+
*/
|
|
9440
|
+
401: ErrorResponse;
|
|
9441
|
+
/**
|
|
9442
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
9443
|
+
*/
|
|
9444
|
+
403: ErrorResponse;
|
|
9445
|
+
/**
|
|
9446
|
+
* Not Found - Resource does not exist
|
|
9447
|
+
*/
|
|
9448
|
+
404: ErrorResponse;
|
|
9449
|
+
/**
|
|
9450
|
+
* Too Many Requests - Rate limit exceeded
|
|
9451
|
+
*/
|
|
9452
|
+
429: ErrorResponse;
|
|
9453
|
+
/**
|
|
9454
|
+
* Internal Server Error - Unexpected server error
|
|
9455
|
+
*/
|
|
9456
|
+
500: ErrorResponse;
|
|
9457
|
+
/**
|
|
9458
|
+
* General Error
|
|
9459
|
+
*/
|
|
9460
|
+
default: Errors;
|
|
9461
|
+
};
|
|
9462
|
+
type GetNotificationMethodsByIdError = GetNotificationMethodsByIdErrors[keyof GetNotificationMethodsByIdErrors];
|
|
9463
|
+
type GetNotificationMethodsByIdResponses = {
|
|
9464
|
+
/**
|
|
9465
|
+
* Success
|
|
9466
|
+
*/
|
|
9467
|
+
200: {
|
|
9468
|
+
data?: NotificationMethod;
|
|
9469
|
+
included?: Array<unknown>;
|
|
9470
|
+
meta?: {
|
|
9471
|
+
[key: string]: unknown;
|
|
9472
|
+
};
|
|
9473
|
+
};
|
|
9474
|
+
};
|
|
9475
|
+
type GetNotificationMethodsByIdResponse = GetNotificationMethodsByIdResponses[keyof GetNotificationMethodsByIdResponses];
|
|
9058
9476
|
type PatchNotificationMethodsByIdData = {
|
|
9059
9477
|
/**
|
|
9060
9478
|
* Request body for the /notification_methods/:id operation on notification_method resource
|
|
@@ -10407,9 +10825,175 @@ type PostLlmAnalyticsData = {
|
|
|
10407
10825
|
[key: string]: unknown;
|
|
10408
10826
|
};
|
|
10409
10827
|
};
|
|
10410
|
-
url: "/llm_analytics";
|
|
10828
|
+
url: "/llm_analytics";
|
|
10829
|
+
};
|
|
10830
|
+
type PostLlmAnalyticsErrors = {
|
|
10831
|
+
/**
|
|
10832
|
+
* Bad Request - Invalid input data or malformed request
|
|
10833
|
+
*/
|
|
10834
|
+
400: ErrorResponse;
|
|
10835
|
+
/**
|
|
10836
|
+
* Unauthorized - Missing or invalid authentication token
|
|
10837
|
+
*/
|
|
10838
|
+
401: ErrorResponse;
|
|
10839
|
+
/**
|
|
10840
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
10841
|
+
*/
|
|
10842
|
+
403: ErrorResponse;
|
|
10843
|
+
/**
|
|
10844
|
+
* Not Found - Resource does not exist
|
|
10845
|
+
*/
|
|
10846
|
+
404: ErrorResponse;
|
|
10847
|
+
/**
|
|
10848
|
+
* Too Many Requests - Rate limit exceeded
|
|
10849
|
+
*/
|
|
10850
|
+
429: ErrorResponse;
|
|
10851
|
+
/**
|
|
10852
|
+
* Internal Server Error - Unexpected server error
|
|
10853
|
+
*/
|
|
10854
|
+
500: ErrorResponse;
|
|
10855
|
+
/**
|
|
10856
|
+
* General Error
|
|
10857
|
+
*/
|
|
10858
|
+
default: Errors;
|
|
10859
|
+
};
|
|
10860
|
+
type PostLlmAnalyticsError = PostLlmAnalyticsErrors[keyof PostLlmAnalyticsErrors];
|
|
10861
|
+
type PostLlmAnalyticsResponses = {
|
|
10862
|
+
/**
|
|
10863
|
+
* Success
|
|
10864
|
+
*/
|
|
10865
|
+
201: {
|
|
10866
|
+
data?: LlmAnalytics;
|
|
10867
|
+
included?: Array<unknown>;
|
|
10868
|
+
meta?: {
|
|
10869
|
+
[key: string]: unknown;
|
|
10870
|
+
};
|
|
10871
|
+
};
|
|
10872
|
+
};
|
|
10873
|
+
type PostLlmAnalyticsResponse = PostLlmAnalyticsResponses[keyof PostLlmAnalyticsResponses];
|
|
10874
|
+
type PatchUsersByIdResetPasswordData = {
|
|
10875
|
+
/**
|
|
10876
|
+
* Request body for the /users/:id/reset-password operation on user resource
|
|
10877
|
+
*/
|
|
10878
|
+
body?: {
|
|
10879
|
+
data: {
|
|
10880
|
+
attributes?: {
|
|
10881
|
+
[key: string]: never;
|
|
10882
|
+
};
|
|
10883
|
+
id: string;
|
|
10884
|
+
relationships?: {
|
|
10885
|
+
[key: string]: never;
|
|
10886
|
+
};
|
|
10887
|
+
type?: "user";
|
|
10888
|
+
};
|
|
10889
|
+
};
|
|
10890
|
+
headers: {
|
|
10891
|
+
/**
|
|
10892
|
+
* Application ID for authentication and routing
|
|
10893
|
+
*/
|
|
10894
|
+
"x-application-key": string;
|
|
10895
|
+
};
|
|
10896
|
+
path: {
|
|
10897
|
+
id: string;
|
|
10898
|
+
};
|
|
10899
|
+
query?: {
|
|
10900
|
+
/**
|
|
10901
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
10902
|
+
*/
|
|
10903
|
+
include?: string;
|
|
10904
|
+
/**
|
|
10905
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
10906
|
+
*/
|
|
10907
|
+
fields?: {
|
|
10908
|
+
[key: string]: unknown;
|
|
10909
|
+
};
|
|
10910
|
+
};
|
|
10911
|
+
url: "/users/{id}/reset-password";
|
|
10912
|
+
};
|
|
10913
|
+
type PatchUsersByIdResetPasswordErrors = {
|
|
10914
|
+
/**
|
|
10915
|
+
* Bad Request - Invalid input data or malformed request
|
|
10916
|
+
*/
|
|
10917
|
+
400: ErrorResponse;
|
|
10918
|
+
/**
|
|
10919
|
+
* Unauthorized - Missing or invalid authentication token
|
|
10920
|
+
*/
|
|
10921
|
+
401: ErrorResponse;
|
|
10922
|
+
/**
|
|
10923
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
10924
|
+
*/
|
|
10925
|
+
403: ErrorResponse;
|
|
10926
|
+
/**
|
|
10927
|
+
* Not Found - Resource does not exist
|
|
10928
|
+
*/
|
|
10929
|
+
404: ErrorResponse;
|
|
10930
|
+
/**
|
|
10931
|
+
* Too Many Requests - Rate limit exceeded
|
|
10932
|
+
*/
|
|
10933
|
+
429: ErrorResponse;
|
|
10934
|
+
/**
|
|
10935
|
+
* Internal Server Error - Unexpected server error
|
|
10936
|
+
*/
|
|
10937
|
+
500: ErrorResponse;
|
|
10938
|
+
/**
|
|
10939
|
+
* General Error
|
|
10940
|
+
*/
|
|
10941
|
+
default: Errors;
|
|
10942
|
+
};
|
|
10943
|
+
type PatchUsersByIdResetPasswordError = PatchUsersByIdResetPasswordErrors[keyof PatchUsersByIdResetPasswordErrors];
|
|
10944
|
+
type PatchUsersByIdResetPasswordResponses = {
|
|
10945
|
+
/**
|
|
10946
|
+
* Success
|
|
10947
|
+
*/
|
|
10948
|
+
200: {
|
|
10949
|
+
data?: User;
|
|
10950
|
+
included?: Array<unknown>;
|
|
10951
|
+
meta?: {
|
|
10952
|
+
[key: string]: unknown;
|
|
10953
|
+
};
|
|
10954
|
+
};
|
|
10955
|
+
};
|
|
10956
|
+
type PatchUsersByIdResetPasswordResponse = PatchUsersByIdResetPasswordResponses[keyof PatchUsersByIdResetPasswordResponses];
|
|
10957
|
+
type PostDocumentsPresignedUploadData = {
|
|
10958
|
+
/**
|
|
10959
|
+
* Request body for the /documents/presigned_upload operation on presigned_url resource
|
|
10960
|
+
*/
|
|
10961
|
+
body: {
|
|
10962
|
+
data: {
|
|
10963
|
+
attributes?: {
|
|
10964
|
+
filename: string;
|
|
10965
|
+
mime_type: string;
|
|
10966
|
+
size_bytes: number;
|
|
10967
|
+
workspace_id: string;
|
|
10968
|
+
};
|
|
10969
|
+
relationships?: {
|
|
10970
|
+
[key: string]: never;
|
|
10971
|
+
};
|
|
10972
|
+
type?: "presigned_url";
|
|
10973
|
+
};
|
|
10974
|
+
};
|
|
10975
|
+
headers: {
|
|
10976
|
+
/**
|
|
10977
|
+
* Application ID for authentication and routing
|
|
10978
|
+
*/
|
|
10979
|
+
"x-application-key": string;
|
|
10980
|
+
};
|
|
10981
|
+
path?: never;
|
|
10982
|
+
query?: {
|
|
10983
|
+
/**
|
|
10984
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
10985
|
+
*/
|
|
10986
|
+
include?: string;
|
|
10987
|
+
/**
|
|
10988
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
10989
|
+
*/
|
|
10990
|
+
fields?: {
|
|
10991
|
+
[key: string]: unknown;
|
|
10992
|
+
};
|
|
10993
|
+
};
|
|
10994
|
+
url: "/documents/presigned_upload";
|
|
10411
10995
|
};
|
|
10412
|
-
type
|
|
10996
|
+
type PostDocumentsPresignedUploadErrors = {
|
|
10413
10997
|
/**
|
|
10414
10998
|
* Bad Request - Invalid input data or malformed request
|
|
10415
10999
|
*/
|
|
@@ -10439,46 +11023,30 @@ type PostLlmAnalyticsErrors = {
|
|
|
10439
11023
|
*/
|
|
10440
11024
|
default: Errors;
|
|
10441
11025
|
};
|
|
10442
|
-
type
|
|
10443
|
-
type
|
|
11026
|
+
type PostDocumentsPresignedUploadError = PostDocumentsPresignedUploadErrors[keyof PostDocumentsPresignedUploadErrors];
|
|
11027
|
+
type PostDocumentsPresignedUploadResponses = {
|
|
10444
11028
|
/**
|
|
10445
11029
|
* Success
|
|
10446
11030
|
*/
|
|
10447
11031
|
201: {
|
|
10448
|
-
data?:
|
|
11032
|
+
data?: PresignedUrl;
|
|
10449
11033
|
included?: Array<unknown>;
|
|
10450
11034
|
meta?: {
|
|
10451
11035
|
[key: string]: unknown;
|
|
10452
11036
|
};
|
|
10453
11037
|
};
|
|
10454
11038
|
};
|
|
10455
|
-
type
|
|
10456
|
-
type
|
|
10457
|
-
|
|
10458
|
-
* Request body for the /users/:id/reset-password operation on user resource
|
|
10459
|
-
*/
|
|
10460
|
-
body?: {
|
|
10461
|
-
data: {
|
|
10462
|
-
attributes?: {
|
|
10463
|
-
[key: string]: never;
|
|
10464
|
-
};
|
|
10465
|
-
id: string;
|
|
10466
|
-
relationships?: {
|
|
10467
|
-
[key: string]: never;
|
|
10468
|
-
};
|
|
10469
|
-
type?: "user";
|
|
10470
|
-
};
|
|
10471
|
-
};
|
|
11039
|
+
type PostDocumentsPresignedUploadResponse = PostDocumentsPresignedUploadResponses[keyof PostDocumentsPresignedUploadResponses];
|
|
11040
|
+
type GetMessagesSearchData = {
|
|
11041
|
+
body?: never;
|
|
10472
11042
|
headers: {
|
|
10473
11043
|
/**
|
|
10474
11044
|
* Application ID for authentication and routing
|
|
10475
11045
|
*/
|
|
10476
11046
|
"x-application-key": string;
|
|
10477
11047
|
};
|
|
10478
|
-
path
|
|
10479
|
-
|
|
10480
|
-
};
|
|
10481
|
-
query?: {
|
|
11048
|
+
path?: never;
|
|
11049
|
+
query: {
|
|
10482
11050
|
/**
|
|
10483
11051
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
10484
11052
|
*/
|
|
@@ -10489,10 +11057,11 @@ type PatchUsersByIdResetPasswordData = {
|
|
|
10489
11057
|
fields?: {
|
|
10490
11058
|
[key: string]: unknown;
|
|
10491
11059
|
};
|
|
11060
|
+
query: string;
|
|
10492
11061
|
};
|
|
10493
|
-
url: "/
|
|
11062
|
+
url: "/messages/search";
|
|
10494
11063
|
};
|
|
10495
|
-
type
|
|
11064
|
+
type GetMessagesSearchErrors = {
|
|
10496
11065
|
/**
|
|
10497
11066
|
* Bad Request - Invalid input data or malformed request
|
|
10498
11067
|
*/
|
|
@@ -10522,36 +11091,45 @@ type PatchUsersByIdResetPasswordErrors = {
|
|
|
10522
11091
|
*/
|
|
10523
11092
|
default: Errors;
|
|
10524
11093
|
};
|
|
10525
|
-
type
|
|
10526
|
-
type
|
|
11094
|
+
type GetMessagesSearchError = GetMessagesSearchErrors[keyof GetMessagesSearchErrors];
|
|
11095
|
+
type GetMessagesSearchResponses = {
|
|
10527
11096
|
/**
|
|
10528
11097
|
* Success
|
|
10529
11098
|
*/
|
|
10530
11099
|
200: {
|
|
10531
|
-
data?:
|
|
11100
|
+
data?: Message;
|
|
10532
11101
|
included?: Array<unknown>;
|
|
10533
11102
|
meta?: {
|
|
10534
11103
|
[key: string]: unknown;
|
|
10535
11104
|
};
|
|
10536
11105
|
};
|
|
10537
11106
|
};
|
|
10538
|
-
type
|
|
10539
|
-
type
|
|
11107
|
+
type GetMessagesSearchResponse = GetMessagesSearchResponses[keyof GetMessagesSearchResponses];
|
|
11108
|
+
type PostAgentsByIdTeachData = {
|
|
10540
11109
|
/**
|
|
10541
|
-
* Request body for the /
|
|
11110
|
+
* Request body for the /agents/:id/teach operation on agent resource
|
|
10542
11111
|
*/
|
|
10543
11112
|
body: {
|
|
10544
11113
|
data: {
|
|
10545
11114
|
attributes?: {
|
|
10546
|
-
|
|
10547
|
-
|
|
10548
|
-
|
|
10549
|
-
|
|
11115
|
+
confirmed_fields?: Array<string> | unknown;
|
|
11116
|
+
correction_reasons?: {
|
|
11117
|
+
[key: string]: unknown;
|
|
11118
|
+
} | unknown;
|
|
11119
|
+
corrections: {
|
|
11120
|
+
[key: string]: unknown;
|
|
11121
|
+
};
|
|
11122
|
+
document_id: string;
|
|
11123
|
+
training_note?: string | unknown;
|
|
11124
|
+
/**
|
|
11125
|
+
* Implicitly verify untouched fields
|
|
11126
|
+
*/
|
|
11127
|
+
verify_remaining?: boolean | unknown;
|
|
10550
11128
|
};
|
|
10551
11129
|
relationships?: {
|
|
10552
11130
|
[key: string]: never;
|
|
10553
11131
|
};
|
|
10554
|
-
type?: "
|
|
11132
|
+
type?: "agent";
|
|
10555
11133
|
};
|
|
10556
11134
|
};
|
|
10557
11135
|
headers: {
|
|
@@ -10560,7 +11138,12 @@ type PostDocumentsPresignedUploadData = {
|
|
|
10560
11138
|
*/
|
|
10561
11139
|
"x-application-key": string;
|
|
10562
11140
|
};
|
|
10563
|
-
path
|
|
11141
|
+
path: {
|
|
11142
|
+
/**
|
|
11143
|
+
* Agent ID (automatically mapped from route)
|
|
11144
|
+
*/
|
|
11145
|
+
id: string;
|
|
11146
|
+
};
|
|
10564
11147
|
query?: {
|
|
10565
11148
|
/**
|
|
10566
11149
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -10573,9 +11156,9 @@ type PostDocumentsPresignedUploadData = {
|
|
|
10573
11156
|
[key: string]: unknown;
|
|
10574
11157
|
};
|
|
10575
11158
|
};
|
|
10576
|
-
url: "/
|
|
11159
|
+
url: "/agents/{id}/teach";
|
|
10577
11160
|
};
|
|
10578
|
-
type
|
|
11161
|
+
type PostAgentsByIdTeachErrors = {
|
|
10579
11162
|
/**
|
|
10580
11163
|
* Bad Request - Invalid input data or malformed request
|
|
10581
11164
|
*/
|
|
@@ -10605,21 +11188,21 @@ type PostDocumentsPresignedUploadErrors = {
|
|
|
10605
11188
|
*/
|
|
10606
11189
|
default: Errors;
|
|
10607
11190
|
};
|
|
10608
|
-
type
|
|
10609
|
-
type
|
|
11191
|
+
type PostAgentsByIdTeachError = PostAgentsByIdTeachErrors[keyof PostAgentsByIdTeachErrors];
|
|
11192
|
+
type PostAgentsByIdTeachResponses = {
|
|
10610
11193
|
/**
|
|
10611
11194
|
* Success
|
|
10612
11195
|
*/
|
|
10613
11196
|
201: {
|
|
10614
|
-
data?:
|
|
11197
|
+
data?: Agent;
|
|
10615
11198
|
included?: Array<unknown>;
|
|
10616
11199
|
meta?: {
|
|
10617
11200
|
[key: string]: unknown;
|
|
10618
11201
|
};
|
|
10619
11202
|
};
|
|
10620
11203
|
};
|
|
10621
|
-
type
|
|
10622
|
-
type
|
|
11204
|
+
type PostAgentsByIdTeachResponse = PostAgentsByIdTeachResponses[keyof PostAgentsByIdTeachResponses];
|
|
11205
|
+
type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueData = {
|
|
10623
11206
|
body?: never;
|
|
10624
11207
|
headers: {
|
|
10625
11208
|
/**
|
|
@@ -10627,8 +11210,26 @@ type GetMessagesSearchData = {
|
|
|
10627
11210
|
*/
|
|
10628
11211
|
"x-application-key": string;
|
|
10629
11212
|
};
|
|
10630
|
-
path
|
|
10631
|
-
|
|
11213
|
+
path: {
|
|
11214
|
+
workspace_id: string;
|
|
11215
|
+
};
|
|
11216
|
+
query?: {
|
|
11217
|
+
/**
|
|
11218
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
11219
|
+
*/
|
|
11220
|
+
filter?: {
|
|
11221
|
+
[key: string]: unknown;
|
|
11222
|
+
};
|
|
11223
|
+
/**
|
|
11224
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
11225
|
+
*/
|
|
11226
|
+
sort?: string;
|
|
11227
|
+
/**
|
|
11228
|
+
* JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
|
|
11229
|
+
*/
|
|
11230
|
+
page?: {
|
|
11231
|
+
[key: string]: unknown;
|
|
11232
|
+
};
|
|
10632
11233
|
/**
|
|
10633
11234
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
10634
11235
|
*/
|
|
@@ -10639,11 +11240,11 @@ type GetMessagesSearchData = {
|
|
|
10639
11240
|
fields?: {
|
|
10640
11241
|
[key: string]: unknown;
|
|
10641
11242
|
};
|
|
10642
|
-
|
|
11243
|
+
limit?: number;
|
|
10643
11244
|
};
|
|
10644
|
-
url: "/
|
|
11245
|
+
url: "/extraction/documents/workspace/{workspace_id}/review_queue";
|
|
10645
11246
|
};
|
|
10646
|
-
type
|
|
11247
|
+
type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueErrors = {
|
|
10647
11248
|
/**
|
|
10648
11249
|
* Bad Request - Invalid input data or malformed request
|
|
10649
11250
|
*/
|
|
@@ -10673,20 +11274,23 @@ type GetMessagesSearchErrors = {
|
|
|
10673
11274
|
*/
|
|
10674
11275
|
default: Errors;
|
|
10675
11276
|
};
|
|
10676
|
-
type
|
|
10677
|
-
type
|
|
11277
|
+
type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueError = GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueErrors[keyof GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueErrors];
|
|
11278
|
+
type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponses = {
|
|
10678
11279
|
/**
|
|
10679
11280
|
* Success
|
|
10680
11281
|
*/
|
|
10681
11282
|
200: {
|
|
10682
|
-
|
|
10683
|
-
|
|
11283
|
+
/**
|
|
11284
|
+
* An array of resource objects representing a extraction_document
|
|
11285
|
+
*/
|
|
11286
|
+
data?: Array<ExtractionDocument>;
|
|
11287
|
+
included?: Array<ExtractionResult>;
|
|
10684
11288
|
meta?: {
|
|
10685
11289
|
[key: string]: unknown;
|
|
10686
11290
|
};
|
|
10687
11291
|
};
|
|
10688
11292
|
};
|
|
10689
|
-
type
|
|
11293
|
+
type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponse = GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponses[keyof GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponses];
|
|
10690
11294
|
type PostExtractionDocumentsUploadData = {
|
|
10691
11295
|
/**
|
|
10692
11296
|
* Request body for the /extraction/documents/upload operation on extraction_document resource
|
|
@@ -10780,6 +11384,7 @@ type PatchExtractionResultsByIdCorrectionsData = {
|
|
|
10780
11384
|
body: {
|
|
10781
11385
|
data: {
|
|
10782
11386
|
attributes?: {
|
|
11387
|
+
confirmed_fields?: Array<string> | unknown;
|
|
10783
11388
|
corrections: Array<{
|
|
10784
11389
|
[key: string]: unknown;
|
|
10785
11390
|
}>;
|
|
@@ -11252,6 +11857,10 @@ type PostTenantsData = {
|
|
|
11252
11857
|
owner_id: string;
|
|
11253
11858
|
parent_id?: string | unknown;
|
|
11254
11859
|
slug: string;
|
|
11860
|
+
/**
|
|
11861
|
+
* Cost in credits for training on a single document
|
|
11862
|
+
*/
|
|
11863
|
+
training_price_credits?: number | unknown;
|
|
11255
11864
|
};
|
|
11256
11865
|
relationships?: {
|
|
11257
11866
|
[key: string]: never;
|
|
@@ -13551,96 +14160,6 @@ type PostAiConversationsResponses = {
|
|
|
13551
14160
|
};
|
|
13552
14161
|
};
|
|
13553
14162
|
type PostAiConversationsResponse = PostAiConversationsResponses[keyof PostAiConversationsResponses];
|
|
13554
|
-
type PostAgentsByIdLearnFromDocumentData = {
|
|
13555
|
-
/**
|
|
13556
|
-
* Request body for the /agents/:id/learn_from_document operation on agent resource
|
|
13557
|
-
*/
|
|
13558
|
-
body: {
|
|
13559
|
-
data: {
|
|
13560
|
-
attributes?: {
|
|
13561
|
-
confirmed_fields?: Array<string> | unknown;
|
|
13562
|
-
correction_reasons?: {
|
|
13563
|
-
[key: string]: unknown;
|
|
13564
|
-
} | unknown;
|
|
13565
|
-
corrections: {
|
|
13566
|
-
[key: string]: unknown;
|
|
13567
|
-
};
|
|
13568
|
-
document_id: string;
|
|
13569
|
-
training_note?: string | unknown;
|
|
13570
|
-
};
|
|
13571
|
-
relationships?: {
|
|
13572
|
-
[key: string]: never;
|
|
13573
|
-
};
|
|
13574
|
-
type?: "agent";
|
|
13575
|
-
};
|
|
13576
|
-
};
|
|
13577
|
-
headers: {
|
|
13578
|
-
/**
|
|
13579
|
-
* Application ID for authentication and routing
|
|
13580
|
-
*/
|
|
13581
|
-
"x-application-key": string;
|
|
13582
|
-
};
|
|
13583
|
-
path: {
|
|
13584
|
-
id: string;
|
|
13585
|
-
};
|
|
13586
|
-
query?: {
|
|
13587
|
-
/**
|
|
13588
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
13589
|
-
*/
|
|
13590
|
-
include?: string;
|
|
13591
|
-
/**
|
|
13592
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
13593
|
-
*/
|
|
13594
|
-
fields?: {
|
|
13595
|
-
[key: string]: unknown;
|
|
13596
|
-
};
|
|
13597
|
-
};
|
|
13598
|
-
url: "/agents/{id}/learn_from_document";
|
|
13599
|
-
};
|
|
13600
|
-
type PostAgentsByIdLearnFromDocumentErrors = {
|
|
13601
|
-
/**
|
|
13602
|
-
* Bad Request - Invalid input data or malformed request
|
|
13603
|
-
*/
|
|
13604
|
-
400: ErrorResponse;
|
|
13605
|
-
/**
|
|
13606
|
-
* Unauthorized - Missing or invalid authentication token
|
|
13607
|
-
*/
|
|
13608
|
-
401: ErrorResponse;
|
|
13609
|
-
/**
|
|
13610
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
13611
|
-
*/
|
|
13612
|
-
403: ErrorResponse;
|
|
13613
|
-
/**
|
|
13614
|
-
* Not Found - Resource does not exist
|
|
13615
|
-
*/
|
|
13616
|
-
404: ErrorResponse;
|
|
13617
|
-
/**
|
|
13618
|
-
* Too Many Requests - Rate limit exceeded
|
|
13619
|
-
*/
|
|
13620
|
-
429: ErrorResponse;
|
|
13621
|
-
/**
|
|
13622
|
-
* Internal Server Error - Unexpected server error
|
|
13623
|
-
*/
|
|
13624
|
-
500: ErrorResponse;
|
|
13625
|
-
/**
|
|
13626
|
-
* General Error
|
|
13627
|
-
*/
|
|
13628
|
-
default: Errors;
|
|
13629
|
-
};
|
|
13630
|
-
type PostAgentsByIdLearnFromDocumentError = PostAgentsByIdLearnFromDocumentErrors[keyof PostAgentsByIdLearnFromDocumentErrors];
|
|
13631
|
-
type PostAgentsByIdLearnFromDocumentResponses = {
|
|
13632
|
-
/**
|
|
13633
|
-
* Success
|
|
13634
|
-
*/
|
|
13635
|
-
201: {
|
|
13636
|
-
data?: Agent;
|
|
13637
|
-
included?: Array<unknown>;
|
|
13638
|
-
meta?: {
|
|
13639
|
-
[key: string]: unknown;
|
|
13640
|
-
};
|
|
13641
|
-
};
|
|
13642
|
-
};
|
|
13643
|
-
type PostAgentsByIdLearnFromDocumentResponse = PostAgentsByIdLearnFromDocumentResponses[keyof PostAgentsByIdLearnFromDocumentResponses];
|
|
13644
14163
|
type PostAiSearchData = {
|
|
13645
14164
|
/**
|
|
13646
14165
|
* Request body for the /ai/search operation on search resource
|
|
@@ -17265,6 +17784,10 @@ type PatchTenantsByIdData = {
|
|
|
17265
17784
|
name?: string | unknown;
|
|
17266
17785
|
parent_id?: string | unknown;
|
|
17267
17786
|
slug?: string | unknown;
|
|
17787
|
+
/**
|
|
17788
|
+
* Cost in credits for training on a single document
|
|
17789
|
+
*/
|
|
17790
|
+
training_price_credits?: number | unknown;
|
|
17268
17791
|
};
|
|
17269
17792
|
id: string;
|
|
17270
17793
|
relationships?: {
|
|
@@ -22525,6 +23048,16 @@ declare const postExtractionBatches: <ThrowOnError extends boolean = false>(opti
|
|
|
22525
23048
|
* Platform-wide analytics summary (platform admin only)
|
|
22526
23049
|
*/
|
|
22527
23050
|
declare const getLlmAnalyticsPlatform: <ThrowOnError extends boolean = false>(options: Options<GetLlmAnalyticsPlatformData, ThrowOnError>) => RequestResult<GetLlmAnalyticsPlatformResponses, GetLlmAnalyticsPlatformErrors, ThrowOnError, "fields">;
|
|
23051
|
+
/**
|
|
23052
|
+
* Update exclude
|
|
23053
|
+
*
|
|
23054
|
+
* Updates specific fields of an existing resource.
|
|
23055
|
+
*
|
|
23056
|
+
* **Authentication:** Required - Bearer token or API key
|
|
23057
|
+
* **Rate Limit:** 100 requests per minute
|
|
23058
|
+
*
|
|
23059
|
+
*/
|
|
23060
|
+
declare const patchExtractionDocumentsByIdExclude: <ThrowOnError extends boolean = false>(options: Options<PatchExtractionDocumentsByIdExcludeData, ThrowOnError>) => RequestResult<PatchExtractionDocumentsByIdExcludeResponses, PatchExtractionDocumentsByIdExcludeErrors, ThrowOnError, "fields">;
|
|
22528
23061
|
/**
|
|
22529
23062
|
* Create payments
|
|
22530
23063
|
*
|
|
@@ -23023,6 +23556,16 @@ declare const postTenantMemberships: <ThrowOnError extends boolean = false>(opti
|
|
|
23023
23556
|
*
|
|
23024
23557
|
*/
|
|
23025
23558
|
declare const postTrainingExamplesBulkDelete: <ThrowOnError extends boolean = false>(options: Options<PostTrainingExamplesBulkDeleteData, ThrowOnError>) => RequestResult<PostTrainingExamplesBulkDeleteResponses, PostTrainingExamplesBulkDeleteErrors, ThrowOnError, "fields">;
|
|
23559
|
+
/**
|
|
23560
|
+
* Update include
|
|
23561
|
+
*
|
|
23562
|
+
* Updates specific fields of an existing resource.
|
|
23563
|
+
*
|
|
23564
|
+
* **Authentication:** Required - Bearer token or API key
|
|
23565
|
+
* **Rate Limit:** 100 requests per minute
|
|
23566
|
+
*
|
|
23567
|
+
*/
|
|
23568
|
+
declare const patchExtractionDocumentsByIdInclude: <ThrowOnError extends boolean = false>(options: Options<PatchExtractionDocumentsByIdIncludeData, ThrowOnError>) => RequestResult<PatchExtractionDocumentsByIdIncludeResponses, PatchExtractionDocumentsByIdIncludeErrors, ThrowOnError, "fields">;
|
|
23026
23569
|
/**
|
|
23027
23570
|
* List summary
|
|
23028
23571
|
*
|
|
@@ -23073,6 +23616,26 @@ declare const patchExtractionSchemaFieldsById: <ThrowOnError extends boolean = f
|
|
|
23073
23616
|
*
|
|
23074
23617
|
*/
|
|
23075
23618
|
declare const postStorageSignDownload: <ThrowOnError extends boolean = false>(options: Options<PostStorageSignDownloadData, ThrowOnError>) => RequestResult<PostStorageSignDownloadResponses, PostStorageSignDownloadErrors, ThrowOnError, "fields">;
|
|
23619
|
+
/**
|
|
23620
|
+
* Delete training sessions
|
|
23621
|
+
*
|
|
23622
|
+
* Deletes a resource permanently. This action cannot be undone.
|
|
23623
|
+
*
|
|
23624
|
+
* **Authentication:** Required - Bearer token or API key
|
|
23625
|
+
* **Rate Limit:** 100 requests per minute
|
|
23626
|
+
*
|
|
23627
|
+
*/
|
|
23628
|
+
declare const deleteTrainingSessionsById: <ThrowOnError extends boolean = false>(options: Options<DeleteTrainingSessionsByIdData, ThrowOnError>) => RequestResult<DeleteTrainingSessionsByIdResponses, DeleteTrainingSessionsByIdErrors, ThrowOnError, "fields">;
|
|
23629
|
+
/**
|
|
23630
|
+
* Get training sessions
|
|
23631
|
+
*
|
|
23632
|
+
* Retrieves a single resource by ID.
|
|
23633
|
+
*
|
|
23634
|
+
* **Authentication:** Required - Bearer token or API key
|
|
23635
|
+
* **Rate Limit:** 100 requests per minute
|
|
23636
|
+
*
|
|
23637
|
+
*/
|
|
23638
|
+
declare const getTrainingSessionsById: <ThrowOnError extends boolean = false>(options: Options<GetTrainingSessionsByIdData, ThrowOnError>) => RequestResult<GetTrainingSessionsByIdResponses, GetTrainingSessionsByIdErrors, ThrowOnError, "fields">;
|
|
23076
23639
|
/**
|
|
23077
23640
|
* Delete notification methods
|
|
23078
23641
|
*
|
|
@@ -23285,6 +23848,22 @@ declare const postDocumentsPresignedUpload: <ThrowOnError extends boolean = fals
|
|
|
23285
23848
|
*
|
|
23286
23849
|
*/
|
|
23287
23850
|
declare const getMessagesSearch: <ThrowOnError extends boolean = false>(options: Options<GetMessagesSearchData, ThrowOnError>) => RequestResult<GetMessagesSearchResponses, GetMessagesSearchErrors, ThrowOnError, "fields">;
|
|
23851
|
+
/**
|
|
23852
|
+
* Create teach
|
|
23853
|
+
*
|
|
23854
|
+
* Creates a new resource. Returns the created resource with generated ID.
|
|
23855
|
+
*
|
|
23856
|
+
* **Authentication:** Required - Bearer token or API key
|
|
23857
|
+
* **Rate Limit:** 100 requests per minute
|
|
23858
|
+
*
|
|
23859
|
+
*/
|
|
23860
|
+
declare const postAgentsByIdTeach: <ThrowOnError extends boolean = false>(options: Options<PostAgentsByIdTeachData, ThrowOnError>) => RequestResult<PostAgentsByIdTeachResponses, PostAgentsByIdTeachErrors, ThrowOnError, "fields">;
|
|
23861
|
+
/**
|
|
23862
|
+
* Get review queue
|
|
23863
|
+
*
|
|
23864
|
+
* Get prioritized review queue for active learning
|
|
23865
|
+
*/
|
|
23866
|
+
declare const getExtractionDocumentsWorkspaceByWorkspaceIdReviewQueue: <ThrowOnError extends boolean = false>(options: Options<GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueData, ThrowOnError>) => RequestResult<GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponses, GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueErrors, ThrowOnError, "fields">;
|
|
23288
23867
|
/**
|
|
23289
23868
|
* Create upload
|
|
23290
23869
|
*
|
|
@@ -23629,16 +24208,6 @@ declare const getAiConversations: <ThrowOnError extends boolean = false>(options
|
|
|
23629
24208
|
*
|
|
23630
24209
|
*/
|
|
23631
24210
|
declare const postAiConversations: <ThrowOnError extends boolean = false>(options: Options<PostAiConversationsData, ThrowOnError>) => RequestResult<PostAiConversationsResponses, PostAiConversationsErrors, ThrowOnError, "fields">;
|
|
23632
|
-
/**
|
|
23633
|
-
* Create learn from document
|
|
23634
|
-
*
|
|
23635
|
-
* Creates a new resource. Returns the created resource with generated ID.
|
|
23636
|
-
*
|
|
23637
|
-
* **Authentication:** Required - Bearer token or API key
|
|
23638
|
-
* **Rate Limit:** 100 requests per minute
|
|
23639
|
-
*
|
|
23640
|
-
*/
|
|
23641
|
-
declare const postAgentsByIdLearnFromDocument: <ThrowOnError extends boolean = false>(options: Options<PostAgentsByIdLearnFromDocumentData, ThrowOnError>) => RequestResult<PostAgentsByIdLearnFromDocumentResponses, PostAgentsByIdLearnFromDocumentErrors, ThrowOnError, "fields">;
|
|
23642
24211
|
/**
|
|
23643
24212
|
* Create search
|
|
23644
24213
|
*
|
|
@@ -25020,4 +25589,4 @@ declare function streamMessage(response: Response, options?: StreamOptions): Asy
|
|
|
25020
25589
|
*/
|
|
25021
25590
|
declare function collectStreamedMessage(stream: AsyncIterableIterator<StreamMessageChunk>): Promise<string>;
|
|
25022
25591
|
|
|
25023
|
-
export { type Account, type Agent, type AgentCreateRequest, AgentCreateSchema, type AgentVersion, 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 ClientOptions$1 as ClientOptions, type Config$2 as Config, type Conversation, type CreditPackage, type Customer, DEFAULT_RETRY_CONFIG, 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 DeleteApplicationsByIdData, type DeleteApplicationsByIdError, type DeleteApplicationsByIdErrors, type DeleteApplicationsByIdResponses, type DeleteBucketsByIdData, type DeleteBucketsByIdError, type DeleteBucketsByIdErrors, type DeleteBucketsByIdResponses, type DeleteExtractionDocumentsByIdData, type DeleteExtractionDocumentsByIdError, type DeleteExtractionDocumentsByIdErrors, type DeleteExtractionDocumentsByIdResponses, type DeleteExtractionSchemaFieldsByIdData, type DeleteExtractionSchemaFieldsByIdError, type DeleteExtractionSchemaFieldsByIdErrors, type DeleteExtractionSchemaFieldsByIdResponses, 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 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 EmbedRequest, EmbedRequestSchema, type Embedding, type ErrorResponse, type Errors, type ExtractionBatch, type ExtractionDocument, type ExtractionExport, type ExtractionResult, type ExtractionSchema, type ExtractionSchemaField, 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 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 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 GetExtractionDocumentsWorkspaceByWorkspaceIdResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdResponses, type GetExtractionResultsByIdData, type GetExtractionResultsByIdError, type GetExtractionResultsByIdErrors, type GetExtractionResultsByIdResponse, type GetExtractionResultsByIdResponses, type GetExtractionResultsDocumentByDocumentIdData, type GetExtractionResultsDocumentByDocumentIdError, type GetExtractionResultsDocumentByDocumentIdErrors, type GetExtractionResultsDocumentByDocumentIdResponse, type GetExtractionResultsDocumentByDocumentIdResponses, type GetExtractionSchemaFieldsByIdData, type GetExtractionSchemaFieldsByIdError, type GetExtractionSchemaFieldsByIdErrors, type GetExtractionSchemaFieldsByIdResponse, type GetExtractionSchemaFieldsByIdResponses, type GetExtractionSchemaFieldsData, type GetExtractionSchemaFieldsError, type GetExtractionSchemaFieldsErrors, type GetExtractionSchemaFieldsResponse, type GetExtractionSchemaFieldsResponses, type GetExtractionSchemasByIdData, type GetExtractionSchemasByIdError, type GetExtractionSchemasByIdErrors, type GetExtractionSchemasByIdResponse, type GetExtractionSchemasByIdResponses, type GetExtractionSchemasData, type GetExtractionSchemasError, type GetExtractionSchemasErrors, type GetExtractionSchemasResponse, type GetExtractionSchemasResponses, type GetExtractionSchemasWorkspaceByWorkspaceIdData, type GetExtractionSchemasWorkspaceByWorkspaceIdError, type GetExtractionSchemasWorkspaceByWorkspaceIdErrors, type GetExtractionSchemasWorkspaceByWorkspaceIdResponse, type GetExtractionSchemasWorkspaceByWorkspaceIdResponses, 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 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 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 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 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 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 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 PatchExtractionDocumentsByIdFinishUploadData, type PatchExtractionDocumentsByIdFinishUploadError, type PatchExtractionDocumentsByIdFinishUploadErrors, type PatchExtractionDocumentsByIdFinishUploadResponse, type PatchExtractionDocumentsByIdFinishUploadResponses, 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 PatchExtractionSchemaFieldsByIdData, type PatchExtractionSchemaFieldsByIdError, type PatchExtractionSchemaFieldsByIdErrors, type PatchExtractionSchemaFieldsByIdResponse, type PatchExtractionSchemaFieldsByIdResponses, type PatchExtractionSchemasByIdActivateData, type PatchExtractionSchemasByIdActivateError, type PatchExtractionSchemasByIdActivateErrors, type PatchExtractionSchemasByIdActivateResponse, type PatchExtractionSchemasByIdActivateResponses, type PatchExtractionSchemasByIdData, type PatchExtractionSchemasByIdError, type PatchExtractionSchemasByIdErrors, type PatchExtractionSchemasByIdFieldsData, type PatchExtractionSchemasByIdFieldsError, type PatchExtractionSchemasByIdFieldsErrors, type PatchExtractionSchemasByIdFieldsResponse, type PatchExtractionSchemasByIdFieldsResponses, type PatchExtractionSchemasByIdResponse, type PatchExtractionSchemasByIdResponses, type PatchInvitationsByIdAcceptData, type PatchInvitationsByIdAcceptError, type PatchInvitationsByIdAcceptErrors, type PatchInvitationsByIdAcceptResponse, type PatchInvitationsByIdAcceptResponses, 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 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 PostAgentsByIdLearnFromDocumentData, type PostAgentsByIdLearnFromDocumentError, type PostAgentsByIdLearnFromDocumentErrors, type PostAgentsByIdLearnFromDocumentResponse, type PostAgentsByIdLearnFromDocumentResponses, type PostAgentsByIdPublishVersionData, type PostAgentsByIdPublishVersionError, type PostAgentsByIdPublishVersionErrors, type PostAgentsByIdPublishVersionResponse, type PostAgentsByIdPublishVersionResponses, 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 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 PostExtractionSchemaFieldsData, type PostExtractionSchemaFieldsError, type PostExtractionSchemaFieldsErrors, type PostExtractionSchemaFieldsResponse, type PostExtractionSchemaFieldsResponses, type PostExtractionSchemasBulkCreateData, type PostExtractionSchemasBulkCreateError, type PostExtractionSchemasBulkCreateErrors, type PostExtractionSchemasBulkCreateResponse, type PostExtractionSchemasBulkCreateResponses, type PostExtractionSchemasData, type PostExtractionSchemasError, type PostExtractionSchemasErrors, type PostExtractionSchemasResponse, type PostExtractionSchemasResponses, type PostFieldTemplatesData, type PostFieldTemplatesError, type PostFieldTemplatesErrors, type PostFieldTemplatesResponse, type PostFieldTemplatesResponses, type PostInvitationsAcceptByTokenData, type PostInvitationsAcceptByTokenError, type PostInvitationsAcceptByTokenErrors, type PostInvitationsAcceptByTokenResponse, type PostInvitationsAcceptByTokenResponses, type PostInvitationsInviteData, type PostInvitationsInviteError, type PostInvitationsInviteErrors, type PostInvitationsInviteResponse, type PostInvitationsInviteResponses, 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 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 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 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 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 Transaction, type User, type UserProfile, ValidationError, type Wallet, type WebhookConfig, type WebhookDelivery, type Workspace, type WorkspaceCreateRequest, WorkspaceCreateSchema, type WorkspaceDocumentStats, type WorkspaceMembership, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, calculateBackoff, client, collectStreamedMessage, deleteAgentsById, deleteAiConversationsById, deleteAiGraphEdgesById, deleteAiGraphNodesById, deleteApiKeysById, deleteApplicationsById, deleteBucketsById, deleteExtractionDocumentsById, deleteExtractionSchemaFieldsById, deleteFieldTemplatesById, deleteMessagesById, deleteNotificationMethodsById, deleteNotificationPreferencesById, deleteObjectsById, deleteSearchSavedById, deleteTenantMembershipsByTenantIdByUserId, deleteTenantsById, deleteThreadsById, deleteTrainingExamplesById, deleteUserProfilesById, deleteWebhookConfigsById, deleteWorkspaceMembershipsByWorkspaceIdByUserId, deleteWorkspacesById, getAgentVersions, getAgentVersionsById, getAgents, getAgentsById, getAgentsByIdTrainingStats, getAiChunksDocumentByDocumentId, getAiConversations, getAiConversationsById, getAiGraphEdges, getAiGraphNodes, getAiMessages, getApiKeys, getApiKeysById, getApplications, getApplicationsById, getApplicationsBySlugBySlug, getAuditLogs, getBuckets, getBucketsById, getBucketsByIdObjects, getBucketsByIdStats, getConfigs, getCreditPackages, getCreditPackagesById, getCreditPackagesSlugBySlug, getDocumentsStats, getExtractionBatchesById, getExtractionBatchesByIdUploadUrls, getExtractionBatchesWorkspaceByWorkspaceId, getExtractionDocuments, getExtractionDocumentsById, getExtractionDocumentsByIdStatus, getExtractionDocumentsByIdView, getExtractionDocumentsWorkspaceByWorkspaceId, getExtractionResultsById, getExtractionResultsDocumentByDocumentId, getExtractionSchemaFields, getExtractionSchemaFieldsById, getExtractionSchemas, getExtractionSchemasById, getExtractionSchemasWorkspaceByWorkspaceId, getFieldTemplates, getFieldTemplatesById, getInvitations, getInvitationsConsumeByToken, getLlmAnalytics, getLlmAnalyticsById, getLlmAnalyticsCosts, getLlmAnalyticsPlatform, getLlmAnalyticsSummary, getLlmAnalyticsUsage, getLlmAnalyticsWorkspace, getMessages, getMessagesById, getMessagesSearch, getNotificationLogs, getNotificationLogsById, getNotificationMethods, getNotificationMethodsById, getNotificationPreferences, getNotificationPreferencesById, getObjects, getObjectsById, getPlans, getPlansById, getPlansSlugBySlug, getSearch, getSearchHealth, getSearchIndexes, getSearchSaved, getSearchSemantic, getSearchStats, getSearchStatus, getStorageStats, getTenantMemberships, getTenants, getTenantsById, getTenantsByTenantIdDocumentStats, getTenantsByTenantIdStats, getTenantsByTenantIdWorkspaceStats, getThreads, getThreadsById, getThreadsSearch, getTrainingExamples, getTrainingExamplesById, getTransactions, getTransactionsById, getUserProfiles, getUserProfilesById, getUserProfilesMe, getUsers, getUsersById, getUsersMe, getWallet, getWebhookConfigs, getWebhookConfigsById, getWebhookDeliveries, getWebhookDeliveriesById, getWorkspaceMemberships, getWorkspaces, getWorkspacesById, getWorkspacesByWorkspaceIdExtractionExports, getWorkspacesByWorkspaceIdExtractionExportsById, getWorkspacesByWorkspaceIdTrainingAnalytics, getWorkspacesMine, handleApiError, isRetryableError, paginateAll, paginateToArray, patchAgentsById, patchApiKeysById, patchApiKeysByIdAllocate, patchApiKeysByIdRevoke, patchApiKeysByIdRotate, patchApplicationsById, patchApplicationsByIdGrantCredits, patchBucketsById, patchConfigsByKey, patchExtractionDocumentsByIdFinishUpload, patchExtractionDocumentsByIdStatus, patchExtractionResultsByIdCorrections, patchExtractionResultsByIdRegenerate, patchExtractionSchemaFieldsById, patchExtractionSchemasById, patchExtractionSchemasByIdActivate, patchExtractionSchemasByIdFields, patchInvitationsByIdAccept, patchInvitationsByIdResend, patchInvitationsByIdRevoke, patchMessagesById, patchNotificationMethodsById, patchNotificationMethodsByIdSetPrimary, patchNotificationPreferencesById, patchTenantMembershipsByTenantIdByUserId, patchTenantsById, patchThreadsById, patchTrainingExamplesById, patchUserProfilesById, patchUsersAuthResetPassword, patchUsersByIdAdmin, patchUsersByIdAdminEmail, patchUsersByIdConfirmEmail, patchUsersByIdResetPassword, patchWalletAddons, patchWalletAddonsByAddonSlugCancel, patchWalletCredits, patchWalletPlan, patchWebhookConfigsById, patchWebhookConfigsByIdRotateSecret, patchWorkspaceMembershipsByWorkspaceIdByUserId, patchWorkspacesById, patchWorkspacesByIdAllocate, postAgentVersions, postAgents, postAgentsByIdClone, postAgentsByIdLearnFromDocument, postAgentsByIdPublishVersion, postAgentsByIdTest, postAgentsByIdValidate, postAgentsCloneForWorkspace, postAgentsPredict, postAiChunksSearch, postAiConversations, postAiEmbed, postAiGraphEdges, postAiGraphNodes, postAiMessages, postAiSearch, postAiSearchAdvanced, postApiKeys, postApplications, postBuckets, postConfigs, postDocumentsBulkDelete, postDocumentsPresignedUpload, postExtractionBatches, postExtractionDocumentsBeginUpload, postExtractionDocumentsUpload, postExtractionResults, postExtractionSchemaFields, postExtractionSchemas, postExtractionSchemasBulkCreate, postFieldTemplates, postInvitationsAcceptByToken, postInvitationsInvite, 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, postUserProfiles, postUsersAuthConfirm, postUsersAuthLogin, postUsersAuthMagicLinkLogin, postUsersAuthMagicLinkRequest, postUsersAuthRegister, postUsersAuthRegisterWithOidc, postUsersRegisterIsv, postWebhookConfigs, postWebhookConfigsByIdTest, postWebhookDeliveriesByIdRetry, postWorkspaceMemberships, postWorkspaces, postWorkspacesByWorkspaceIdExtractionExports, retryWithBackoff, sleep, streamMessage, streamSSE, withRetry };
|
|
25592
|
+
export { type Account, type Agent, type AgentCreateRequest, AgentCreateSchema, type AgentVersion, 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 ClientOptions$1 as ClientOptions, type Config$2 as Config, type Conversation, type CreditPackage, type Customer, DEFAULT_RETRY_CONFIG, 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 DeleteApplicationsByIdData, type DeleteApplicationsByIdError, type DeleteApplicationsByIdErrors, type DeleteApplicationsByIdResponses, type DeleteBucketsByIdData, type DeleteBucketsByIdError, type DeleteBucketsByIdErrors, type DeleteBucketsByIdResponses, type DeleteExtractionDocumentsByIdData, type DeleteExtractionDocumentsByIdError, type DeleteExtractionDocumentsByIdErrors, type DeleteExtractionDocumentsByIdResponses, type DeleteExtractionSchemaFieldsByIdData, type DeleteExtractionSchemaFieldsByIdError, type DeleteExtractionSchemaFieldsByIdErrors, type DeleteExtractionSchemaFieldsByIdResponses, 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 EmbedRequest, EmbedRequestSchema, type Embedding, type ErrorResponse, type Errors, type ExtractionBatch, type ExtractionDocument, type ExtractionExport, type ExtractionResult, type ExtractionSchema, type ExtractionSchemaField, 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 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 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 GetExtractionDocumentsWorkspaceByWorkspaceIdResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueData, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueError, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponses, type GetExtractionResultsByIdData, type GetExtractionResultsByIdError, type GetExtractionResultsByIdErrors, type GetExtractionResultsByIdResponse, type GetExtractionResultsByIdResponses, type GetExtractionResultsDocumentByDocumentIdData, type GetExtractionResultsDocumentByDocumentIdError, type GetExtractionResultsDocumentByDocumentIdErrors, type GetExtractionResultsDocumentByDocumentIdResponse, type GetExtractionResultsDocumentByDocumentIdResponses, type GetExtractionSchemaFieldsByIdData, type GetExtractionSchemaFieldsByIdError, type GetExtractionSchemaFieldsByIdErrors, type GetExtractionSchemaFieldsByIdResponse, type GetExtractionSchemaFieldsByIdResponses, type GetExtractionSchemaFieldsData, type GetExtractionSchemaFieldsError, type GetExtractionSchemaFieldsErrors, type GetExtractionSchemaFieldsResponse, type GetExtractionSchemaFieldsResponses, type GetExtractionSchemasByIdData, type GetExtractionSchemasByIdError, type GetExtractionSchemasByIdErrors, type GetExtractionSchemasByIdResponse, type GetExtractionSchemasByIdResponses, type GetExtractionSchemasData, type GetExtractionSchemasError, type GetExtractionSchemasErrors, type GetExtractionSchemasResponse, type GetExtractionSchemasResponses, type GetExtractionSchemasWorkspaceByWorkspaceIdData, type GetExtractionSchemasWorkspaceByWorkspaceIdError, type GetExtractionSchemasWorkspaceByWorkspaceIdErrors, type GetExtractionSchemasWorkspaceByWorkspaceIdResponse, type GetExtractionSchemasWorkspaceByWorkspaceIdResponses, 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 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 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 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 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 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 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 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 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 PatchExtractionSchemaFieldsByIdData, type PatchExtractionSchemaFieldsByIdError, type PatchExtractionSchemaFieldsByIdErrors, type PatchExtractionSchemaFieldsByIdResponse, type PatchExtractionSchemaFieldsByIdResponses, type PatchExtractionSchemasByIdActivateData, type PatchExtractionSchemasByIdActivateError, type PatchExtractionSchemasByIdActivateErrors, type PatchExtractionSchemasByIdActivateResponse, type PatchExtractionSchemasByIdActivateResponses, type PatchExtractionSchemasByIdData, type PatchExtractionSchemasByIdError, type PatchExtractionSchemasByIdErrors, type PatchExtractionSchemasByIdFieldsData, type PatchExtractionSchemasByIdFieldsError, type PatchExtractionSchemasByIdFieldsErrors, type PatchExtractionSchemasByIdFieldsResponse, type PatchExtractionSchemasByIdFieldsResponses, type PatchExtractionSchemasByIdResponse, type PatchExtractionSchemasByIdResponses, type PatchInvitationsByIdAcceptData, type PatchInvitationsByIdAcceptError, type PatchInvitationsByIdAcceptErrors, type PatchInvitationsByIdAcceptResponse, type PatchInvitationsByIdAcceptResponses, 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 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 PostAgentsByIdPublishVersionData, type PostAgentsByIdPublishVersionError, type PostAgentsByIdPublishVersionErrors, type PostAgentsByIdPublishVersionResponse, type PostAgentsByIdPublishVersionResponses, 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 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 PostExtractionSchemaFieldsData, type PostExtractionSchemaFieldsError, type PostExtractionSchemaFieldsErrors, type PostExtractionSchemaFieldsResponse, type PostExtractionSchemaFieldsResponses, type PostExtractionSchemasBulkCreateData, type PostExtractionSchemasBulkCreateError, type PostExtractionSchemasBulkCreateErrors, type PostExtractionSchemasBulkCreateResponse, type PostExtractionSchemasBulkCreateResponses, type PostExtractionSchemasData, type PostExtractionSchemasError, type PostExtractionSchemasErrors, type PostExtractionSchemasResponse, type PostExtractionSchemasResponses, type PostFieldTemplatesData, type PostFieldTemplatesError, type PostFieldTemplatesErrors, type PostFieldTemplatesResponse, type PostFieldTemplatesResponses, type PostInvitationsAcceptByTokenData, type PostInvitationsAcceptByTokenError, type PostInvitationsAcceptByTokenErrors, type PostInvitationsAcceptByTokenResponse, type PostInvitationsAcceptByTokenResponses, type PostInvitationsInviteData, type PostInvitationsInviteError, type PostInvitationsInviteErrors, type PostInvitationsInviteResponse, type PostInvitationsInviteResponses, 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 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 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 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 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 WebhookDelivery, type Workspace, type WorkspaceCreateRequest, WorkspaceCreateSchema, type WorkspaceDocumentStats, type WorkspaceMembership, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, calculateBackoff, client, collectStreamedMessage, deleteAgentsById, deleteAiConversationsById, deleteAiGraphEdgesById, deleteAiGraphNodesById, deleteApiKeysById, deleteApplicationsById, deleteBucketsById, deleteExtractionDocumentsById, deleteExtractionSchemaFieldsById, deleteFieldTemplatesById, deleteMessagesById, deleteNotificationMethodsById, deleteNotificationPreferencesById, deleteObjectsById, deleteSearchSavedById, deleteTenantMembershipsByTenantIdByUserId, deleteTenantsById, deleteThreadsById, deleteTrainingExamplesById, deleteTrainingSessionsById, deleteUserProfilesById, deleteWebhookConfigsById, deleteWorkspaceMembershipsByWorkspaceIdByUserId, deleteWorkspacesById, getAgentVersions, getAgentVersionsById, getAgents, getAgentsById, getAgentsByIdTrainingStats, getAiChunksDocumentByDocumentId, getAiConversations, getAiConversationsById, getAiGraphEdges, getAiGraphNodes, getAiMessages, getApiKeys, getApiKeysById, getApplications, getApplicationsById, getApplicationsBySlugBySlug, getAuditLogs, getBuckets, getBucketsById, getBucketsByIdObjects, getBucketsByIdStats, getConfigs, getCreditPackages, getCreditPackagesById, getCreditPackagesSlugBySlug, getDocumentsStats, getExtractionBatchesById, getExtractionBatchesByIdUploadUrls, getExtractionBatchesWorkspaceByWorkspaceId, getExtractionDocuments, getExtractionDocumentsById, getExtractionDocumentsByIdStatus, getExtractionDocumentsByIdView, getExtractionDocumentsWorkspaceByWorkspaceId, getExtractionDocumentsWorkspaceByWorkspaceIdReviewQueue, getExtractionResultsById, getExtractionResultsDocumentByDocumentId, getExtractionSchemaFields, getExtractionSchemaFieldsById, getExtractionSchemas, getExtractionSchemasById, getExtractionSchemasWorkspaceByWorkspaceId, getFieldTemplates, getFieldTemplatesById, getInvitations, getInvitationsConsumeByToken, getLlmAnalytics, getLlmAnalyticsById, getLlmAnalyticsCosts, getLlmAnalyticsPlatform, getLlmAnalyticsSummary, getLlmAnalyticsUsage, getLlmAnalyticsWorkspace, getMessages, getMessagesById, getMessagesSearch, getNotificationLogs, getNotificationLogsById, getNotificationMethods, getNotificationMethodsById, getNotificationPreferences, getNotificationPreferencesById, getObjects, getObjectsById, getPlans, getPlansById, getPlansSlugBySlug, getSearch, getSearchHealth, getSearchIndexes, getSearchSaved, getSearchSemantic, getSearchStats, getSearchStatus, getStorageStats, getTenantMemberships, getTenants, getTenantsById, getTenantsByTenantIdDocumentStats, getTenantsByTenantIdStats, getTenantsByTenantIdWorkspaceStats, getThreads, getThreadsById, getThreadsSearch, getTrainingExamples, getTrainingExamplesById, getTrainingSessionsById, getTransactions, getTransactionsById, getUserProfiles, getUserProfilesById, getUserProfilesMe, getUsers, getUsersById, getUsersMe, getWallet, getWebhookConfigs, getWebhookConfigsById, getWebhookDeliveries, getWebhookDeliveriesById, getWorkspaceMemberships, getWorkspaces, getWorkspacesById, getWorkspacesByWorkspaceIdExtractionExports, getWorkspacesByWorkspaceIdExtractionExportsById, getWorkspacesByWorkspaceIdTrainingAnalytics, getWorkspacesMine, handleApiError, isRetryableError, paginateAll, paginateToArray, patchAgentsById, patchApiKeysById, patchApiKeysByIdAllocate, patchApiKeysByIdRevoke, patchApiKeysByIdRotate, patchApplicationsById, patchApplicationsByIdGrantCredits, patchBucketsById, patchConfigsByKey, patchExtractionDocumentsByIdExclude, patchExtractionDocumentsByIdFinishUpload, patchExtractionDocumentsByIdInclude, patchExtractionDocumentsByIdStatus, patchExtractionResultsByIdCorrections, patchExtractionResultsByIdRegenerate, patchExtractionSchemaFieldsById, patchExtractionSchemasById, patchExtractionSchemasByIdActivate, patchExtractionSchemasByIdFields, patchInvitationsByIdAccept, patchInvitationsByIdResend, patchInvitationsByIdRevoke, patchMessagesById, patchNotificationMethodsById, patchNotificationMethodsByIdSetPrimary, patchNotificationPreferencesById, patchTenantMembershipsByTenantIdByUserId, patchTenantsById, patchThreadsById, patchTrainingExamplesById, patchUserProfilesById, patchUsersAuthResetPassword, patchUsersByIdAdmin, patchUsersByIdAdminEmail, patchUsersByIdConfirmEmail, patchUsersByIdResetPassword, patchWalletAddons, patchWalletAddonsByAddonSlugCancel, patchWalletCredits, patchWalletPlan, patchWebhookConfigsById, patchWebhookConfigsByIdRotateSecret, patchWorkspaceMembershipsByWorkspaceIdByUserId, patchWorkspacesById, patchWorkspacesByIdAllocate, postAgentVersions, postAgents, postAgentsByIdClone, postAgentsByIdPublishVersion, postAgentsByIdTeach, postAgentsByIdTest, postAgentsByIdValidate, postAgentsCloneForWorkspace, postAgentsPredict, postAiChunksSearch, postAiConversations, postAiEmbed, postAiGraphEdges, postAiGraphNodes, postAiMessages, postAiSearch, postAiSearchAdvanced, postApiKeys, postApplications, postBuckets, postConfigs, postDocumentsBulkDelete, postDocumentsPresignedUpload, postExtractionBatches, postExtractionDocumentsBeginUpload, postExtractionDocumentsUpload, postExtractionResults, postExtractionSchemaFields, postExtractionSchemas, postExtractionSchemasBulkCreate, postFieldTemplates, postInvitationsAcceptByToken, postInvitationsInvite, 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, postUserProfiles, postUsersAuthConfirm, postUsersAuthLogin, postUsersAuthMagicLinkLogin, postUsersAuthMagicLinkRequest, postUsersAuthRegister, postUsersAuthRegisterWithOidc, postUsersRegisterIsv, postWebhookConfigs, postWebhookConfigsByIdTest, postWebhookDeliveriesByIdRetry, postWorkspaceMemberships, postWorkspaces, postWorkspacesByWorkspaceIdExtractionExports, retryWithBackoff, sleep, streamMessage, streamSSE, withRetry };
|