@gpt-core/client 0.3.5 → 0.3.7
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 +785 -36
- package/dist/index.d.ts +785 -36
- package/dist/index.js +58 -0
- package/dist/index.mjs +52 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -26,6 +26,11 @@ type WorkspaceSettingsInputCreateType = {
|
|
|
26
26
|
*/
|
|
27
27
|
extraction_mode?: "base" | "custom" | "hybrid" | unknown;
|
|
28
28
|
} | unknown;
|
|
29
|
+
billing?: {
|
|
30
|
+
allow_overdraft?: boolean | unknown;
|
|
31
|
+
overdraft_limit?: number | unknown;
|
|
32
|
+
overdraft_period?: "daily" | "weekly" | "monthly" | unknown;
|
|
33
|
+
} | unknown;
|
|
29
34
|
scheduling?: {
|
|
30
35
|
enabled?: boolean | unknown;
|
|
31
36
|
interval_minutes?: number | unknown;
|
|
@@ -61,6 +66,19 @@ type LedgerFilter = unknown;
|
|
|
61
66
|
* Filters the query to results matching the given filter object
|
|
62
67
|
*/
|
|
63
68
|
type ThreadFilter = unknown;
|
|
69
|
+
type ExtractionBatchFilterUserLabel = {
|
|
70
|
+
contains?: string;
|
|
71
|
+
eq?: string;
|
|
72
|
+
greater_than?: string;
|
|
73
|
+
greater_than_or_equal?: string;
|
|
74
|
+
ilike?: string;
|
|
75
|
+
in?: Array<string>;
|
|
76
|
+
is_nil?: boolean;
|
|
77
|
+
less_than?: string;
|
|
78
|
+
less_than_or_equal?: string;
|
|
79
|
+
like?: string;
|
|
80
|
+
not_eq?: string;
|
|
81
|
+
};
|
|
64
82
|
type ExtractionSchemaFilterVersion = {
|
|
65
83
|
eq?: number;
|
|
66
84
|
greater_than?: number;
|
|
@@ -555,6 +573,16 @@ type TokenFilterToken = {
|
|
|
555
573
|
less_than_or_equal?: string;
|
|
556
574
|
not_eq?: string;
|
|
557
575
|
};
|
|
576
|
+
type WorkspaceFilterTenantId = {
|
|
577
|
+
eq?: string;
|
|
578
|
+
greater_than?: string;
|
|
579
|
+
greater_than_or_equal?: string;
|
|
580
|
+
in?: Array<string>;
|
|
581
|
+
is_nil?: boolean;
|
|
582
|
+
less_than?: string;
|
|
583
|
+
less_than_or_equal?: string;
|
|
584
|
+
not_eq?: string;
|
|
585
|
+
};
|
|
558
586
|
/**
|
|
559
587
|
* A "Resource object" representing a user_profile
|
|
560
588
|
*/
|
|
@@ -891,6 +919,19 @@ type SavedSearchFilterName = {
|
|
|
891
919
|
like?: string;
|
|
892
920
|
not_eq?: string;
|
|
893
921
|
};
|
|
922
|
+
type ExtractionBatchFilterName = {
|
|
923
|
+
contains?: string;
|
|
924
|
+
eq?: string;
|
|
925
|
+
greater_than?: string;
|
|
926
|
+
greater_than_or_equal?: string;
|
|
927
|
+
ilike?: string;
|
|
928
|
+
in?: Array<string>;
|
|
929
|
+
is_nil?: boolean;
|
|
930
|
+
less_than?: string;
|
|
931
|
+
less_than_or_equal?: string;
|
|
932
|
+
like?: string;
|
|
933
|
+
not_eq?: string;
|
|
934
|
+
};
|
|
894
935
|
type Links = {
|
|
895
936
|
[key: string]: Link;
|
|
896
937
|
};
|
|
@@ -1479,6 +1520,19 @@ type TransactionFilterDescription = {
|
|
|
1479
1520
|
like?: string;
|
|
1480
1521
|
not_eq?: string;
|
|
1481
1522
|
};
|
|
1523
|
+
type AgentFilterVersion = {
|
|
1524
|
+
contains?: string;
|
|
1525
|
+
eq?: string;
|
|
1526
|
+
greater_than?: string;
|
|
1527
|
+
greater_than_or_equal?: string;
|
|
1528
|
+
ilike?: string;
|
|
1529
|
+
in?: Array<string>;
|
|
1530
|
+
is_nil?: boolean;
|
|
1531
|
+
less_than?: string;
|
|
1532
|
+
less_than_or_equal?: string;
|
|
1533
|
+
like?: string;
|
|
1534
|
+
not_eq?: string;
|
|
1535
|
+
};
|
|
1482
1536
|
type ObjectFilterContentType = {
|
|
1483
1537
|
contains?: string;
|
|
1484
1538
|
eq?: string;
|
|
@@ -1962,6 +2016,11 @@ type WorkspaceSettingsInputUpdateType = {
|
|
|
1962
2016
|
*/
|
|
1963
2017
|
extraction_mode?: "base" | "custom" | "hybrid" | unknown;
|
|
1964
2018
|
} | unknown;
|
|
2019
|
+
billing?: {
|
|
2020
|
+
allow_overdraft?: boolean | unknown;
|
|
2021
|
+
overdraft_limit?: number | unknown;
|
|
2022
|
+
overdraft_period?: "daily" | "weekly" | "monthly" | unknown;
|
|
2023
|
+
} | unknown;
|
|
1965
2024
|
scheduling?: {
|
|
1966
2025
|
enabled?: boolean | unknown;
|
|
1967
2026
|
interval_minutes?: number | unknown;
|
|
@@ -2084,6 +2143,19 @@ type Transaction = {
|
|
|
2084
2143
|
};
|
|
2085
2144
|
type: string;
|
|
2086
2145
|
};
|
|
2146
|
+
type ExtractionDocumentFilterUploadUrl = {
|
|
2147
|
+
contains?: string;
|
|
2148
|
+
eq?: string;
|
|
2149
|
+
greater_than?: string;
|
|
2150
|
+
greater_than_or_equal?: string;
|
|
2151
|
+
ilike?: string;
|
|
2152
|
+
in?: Array<string>;
|
|
2153
|
+
is_nil?: boolean;
|
|
2154
|
+
less_than?: string;
|
|
2155
|
+
less_than_or_equal?: string;
|
|
2156
|
+
like?: string;
|
|
2157
|
+
not_eq?: string;
|
|
2158
|
+
};
|
|
2087
2159
|
/**
|
|
2088
2160
|
* A "Resource object" representing a extraction_result
|
|
2089
2161
|
*/
|
|
@@ -3471,6 +3543,10 @@ type WalletFilterStorageBlocksPurchased = {
|
|
|
3471
3543
|
less_than_or_equal?: number;
|
|
3472
3544
|
not_eq?: number;
|
|
3473
3545
|
};
|
|
3546
|
+
/**
|
|
3547
|
+
* Filters the query to results matching the given filter object
|
|
3548
|
+
*/
|
|
3549
|
+
type ExtractionBatchFilter = unknown;
|
|
3474
3550
|
type TenantMembershipFilterUserId = {
|
|
3475
3551
|
eq?: string;
|
|
3476
3552
|
greater_than?: string;
|
|
@@ -3494,6 +3570,16 @@ type TransactionFilterCurrency = {
|
|
|
3494
3570
|
like?: string;
|
|
3495
3571
|
not_eq?: string;
|
|
3496
3572
|
};
|
|
3573
|
+
type ExtractionBatchFilterStatus = {
|
|
3574
|
+
eq?: string;
|
|
3575
|
+
greater_than?: string;
|
|
3576
|
+
greater_than_or_equal?: string;
|
|
3577
|
+
in?: Array<string>;
|
|
3578
|
+
is_nil?: boolean;
|
|
3579
|
+
less_than?: string;
|
|
3580
|
+
less_than_or_equal?: string;
|
|
3581
|
+
not_eq?: string;
|
|
3582
|
+
};
|
|
3497
3583
|
type BucketFilterRegion = {
|
|
3498
3584
|
contains?: string;
|
|
3499
3585
|
eq?: string;
|
|
@@ -3701,6 +3787,46 @@ type SearchFilterId = {
|
|
|
3701
3787
|
less_than_or_equal?: string;
|
|
3702
3788
|
not_eq?: string;
|
|
3703
3789
|
};
|
|
3790
|
+
/**
|
|
3791
|
+
* A "Resource object" representing a extraction_batch
|
|
3792
|
+
*/
|
|
3793
|
+
type ExtractionBatch = {
|
|
3794
|
+
/**
|
|
3795
|
+
* An attributes object for a extraction_batch
|
|
3796
|
+
*/
|
|
3797
|
+
attributes?: {
|
|
3798
|
+
/**
|
|
3799
|
+
* Field included by default.
|
|
3800
|
+
*/
|
|
3801
|
+
name?: string | null | unknown;
|
|
3802
|
+
status?: string | null | unknown;
|
|
3803
|
+
/**
|
|
3804
|
+
* Field included by default.
|
|
3805
|
+
*/
|
|
3806
|
+
user_label?: string | null | unknown;
|
|
3807
|
+
};
|
|
3808
|
+
id: string;
|
|
3809
|
+
/**
|
|
3810
|
+
* A relationships object for a extraction_batch
|
|
3811
|
+
*/
|
|
3812
|
+
relationships?: {
|
|
3813
|
+
[key: string]: never;
|
|
3814
|
+
};
|
|
3815
|
+
type: string;
|
|
3816
|
+
};
|
|
3817
|
+
type ExtractionDocumentFilterPresignedViewUrl = {
|
|
3818
|
+
contains?: string;
|
|
3819
|
+
eq?: string;
|
|
3820
|
+
greater_than?: string;
|
|
3821
|
+
greater_than_or_equal?: string;
|
|
3822
|
+
ilike?: string;
|
|
3823
|
+
in?: Array<string>;
|
|
3824
|
+
is_nil?: boolean;
|
|
3825
|
+
less_than?: string;
|
|
3826
|
+
less_than_or_equal?: string;
|
|
3827
|
+
like?: string;
|
|
3828
|
+
not_eq?: string;
|
|
3829
|
+
};
|
|
3704
3830
|
type DocumentChunkFilterContent = {
|
|
3705
3831
|
contains?: string;
|
|
3706
3832
|
eq?: string;
|
|
@@ -4467,6 +4593,16 @@ type Agent = {
|
|
|
4467
4593
|
};
|
|
4468
4594
|
type: string;
|
|
4469
4595
|
};
|
|
4596
|
+
type ExtractionBatchFilterId = {
|
|
4597
|
+
eq?: string;
|
|
4598
|
+
greater_than?: string;
|
|
4599
|
+
greater_than_or_equal?: string;
|
|
4600
|
+
in?: Array<string>;
|
|
4601
|
+
is_nil?: boolean;
|
|
4602
|
+
less_than?: string;
|
|
4603
|
+
less_than_or_equal?: string;
|
|
4604
|
+
not_eq?: string;
|
|
4605
|
+
};
|
|
4470
4606
|
/**
|
|
4471
4607
|
* Filters the query to results matching the given filter object
|
|
4472
4608
|
*/
|
|
@@ -4684,6 +4820,23 @@ type Workspace = {
|
|
|
4684
4820
|
*/
|
|
4685
4821
|
extraction_mode: "base" | "custom" | "hybrid";
|
|
4686
4822
|
};
|
|
4823
|
+
/**
|
|
4824
|
+
* Field included by default.
|
|
4825
|
+
*/
|
|
4826
|
+
billing: {
|
|
4827
|
+
/**
|
|
4828
|
+
* Field included by default.
|
|
4829
|
+
*/
|
|
4830
|
+
allow_overdraft: boolean;
|
|
4831
|
+
/**
|
|
4832
|
+
* Field included by default.
|
|
4833
|
+
*/
|
|
4834
|
+
overdraft_limit?: number | null | unknown;
|
|
4835
|
+
/**
|
|
4836
|
+
* Field included by default.
|
|
4837
|
+
*/
|
|
4838
|
+
overdraft_period?: "daily" | "weekly" | "monthly" | unknown;
|
|
4839
|
+
};
|
|
4687
4840
|
/**
|
|
4688
4841
|
* Field included by default.
|
|
4689
4842
|
*/
|
|
@@ -4766,6 +4919,10 @@ type Workspace = {
|
|
|
4766
4919
|
* ID of the Specialty Agent assigned to this workspace. Field included by default.
|
|
4767
4920
|
*/
|
|
4768
4921
|
specialty_agent_id?: string | null | unknown;
|
|
4922
|
+
/**
|
|
4923
|
+
* Field included by default.
|
|
4924
|
+
*/
|
|
4925
|
+
tenant_id: string;
|
|
4769
4926
|
/**
|
|
4770
4927
|
* Field included by default.
|
|
4771
4928
|
*/
|
|
@@ -4776,7 +4933,18 @@ type Workspace = {
|
|
|
4776
4933
|
* A relationships object for a workspace
|
|
4777
4934
|
*/
|
|
4778
4935
|
relationships?: {
|
|
4779
|
-
|
|
4936
|
+
tenant?: {
|
|
4937
|
+
/**
|
|
4938
|
+
* An identifier for tenant
|
|
4939
|
+
*/
|
|
4940
|
+
data?: {
|
|
4941
|
+
id: string;
|
|
4942
|
+
meta?: {
|
|
4943
|
+
[key: string]: unknown;
|
|
4944
|
+
};
|
|
4945
|
+
type: string;
|
|
4946
|
+
} | null;
|
|
4947
|
+
};
|
|
4780
4948
|
};
|
|
4781
4949
|
type: string;
|
|
4782
4950
|
};
|
|
@@ -4954,6 +5122,7 @@ type ExtractionDocument = {
|
|
|
4954
5122
|
* Field included by default.
|
|
4955
5123
|
*/
|
|
4956
5124
|
pages?: number | null | unknown;
|
|
5125
|
+
presigned_view_url?: string | null | unknown;
|
|
4957
5126
|
/**
|
|
4958
5127
|
* Field included by default.
|
|
4959
5128
|
*/
|
|
@@ -4966,13 +5135,25 @@ type ExtractionDocument = {
|
|
|
4966
5135
|
* Field included by default.
|
|
4967
5136
|
*/
|
|
4968
5137
|
storage_path: string;
|
|
5138
|
+
upload_url?: string | null | unknown;
|
|
4969
5139
|
};
|
|
4970
5140
|
id: string;
|
|
4971
5141
|
/**
|
|
4972
5142
|
* A relationships object for a extraction_document
|
|
4973
5143
|
*/
|
|
4974
5144
|
relationships?: {
|
|
4975
|
-
|
|
5145
|
+
extraction_result?: {
|
|
5146
|
+
/**
|
|
5147
|
+
* An identifier for extraction_result
|
|
5148
|
+
*/
|
|
5149
|
+
data?: {
|
|
5150
|
+
id: string;
|
|
5151
|
+
meta?: {
|
|
5152
|
+
[key: string]: unknown;
|
|
5153
|
+
};
|
|
5154
|
+
type: string;
|
|
5155
|
+
} | null;
|
|
5156
|
+
};
|
|
4976
5157
|
};
|
|
4977
5158
|
type: string;
|
|
4978
5159
|
};
|
|
@@ -5201,7 +5382,7 @@ type GetExtractionDocumentsByIdResponses = {
|
|
|
5201
5382
|
*/
|
|
5202
5383
|
200: {
|
|
5203
5384
|
data?: ExtractionDocument;
|
|
5204
|
-
included?: Array<
|
|
5385
|
+
included?: Array<ExtractionResult>;
|
|
5205
5386
|
meta?: {
|
|
5206
5387
|
[key: string]: unknown;
|
|
5207
5388
|
};
|
|
@@ -5682,7 +5863,7 @@ type GetWorkspacesResponses = {
|
|
|
5682
5863
|
* An array of resource objects representing a workspace
|
|
5683
5864
|
*/
|
|
5684
5865
|
data?: Array<Workspace>;
|
|
5685
|
-
included?: Array<
|
|
5866
|
+
included?: Array<Tenant>;
|
|
5686
5867
|
meta?: {
|
|
5687
5868
|
[key: string]: unknown;
|
|
5688
5869
|
};
|
|
@@ -5782,7 +5963,7 @@ type PostWorkspacesResponses = {
|
|
|
5782
5963
|
*/
|
|
5783
5964
|
201: {
|
|
5784
5965
|
data?: Workspace;
|
|
5785
|
-
included?: Array<
|
|
5966
|
+
included?: Array<Tenant>;
|
|
5786
5967
|
meta?: {
|
|
5787
5968
|
[key: string]: unknown;
|
|
5788
5969
|
};
|
|
@@ -6174,6 +6355,92 @@ type GetCreditPackagesSlugBySlugResponses = {
|
|
|
6174
6355
|
};
|
|
6175
6356
|
};
|
|
6176
6357
|
type GetCreditPackagesSlugBySlugResponse = GetCreditPackagesSlugBySlugResponses[keyof GetCreditPackagesSlugBySlugResponses];
|
|
6358
|
+
type PostExtractionBatchesData = {
|
|
6359
|
+
/**
|
|
6360
|
+
* Request body for the /extraction/batches operation on extraction_batch resource
|
|
6361
|
+
*/
|
|
6362
|
+
body: {
|
|
6363
|
+
data: {
|
|
6364
|
+
attributes?: {
|
|
6365
|
+
name?: string | unknown;
|
|
6366
|
+
user_label?: string | unknown;
|
|
6367
|
+
workspace_id: string;
|
|
6368
|
+
};
|
|
6369
|
+
relationships?: {
|
|
6370
|
+
[key: string]: never;
|
|
6371
|
+
};
|
|
6372
|
+
type?: "extraction_batch";
|
|
6373
|
+
};
|
|
6374
|
+
};
|
|
6375
|
+
headers: {
|
|
6376
|
+
/**
|
|
6377
|
+
* Application ID for authentication and routing
|
|
6378
|
+
*/
|
|
6379
|
+
"x-application-key": string;
|
|
6380
|
+
};
|
|
6381
|
+
path?: never;
|
|
6382
|
+
query?: {
|
|
6383
|
+
/**
|
|
6384
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
6385
|
+
*/
|
|
6386
|
+
include?: string;
|
|
6387
|
+
/**
|
|
6388
|
+
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
6389
|
+
*/
|
|
6390
|
+
fields?: {
|
|
6391
|
+
/**
|
|
6392
|
+
* Comma separated field names for extraction_batch
|
|
6393
|
+
*/
|
|
6394
|
+
extraction_batch?: string;
|
|
6395
|
+
[key: string]: unknown | string | undefined;
|
|
6396
|
+
};
|
|
6397
|
+
};
|
|
6398
|
+
url: "/extraction/batches";
|
|
6399
|
+
};
|
|
6400
|
+
type PostExtractionBatchesErrors = {
|
|
6401
|
+
/**
|
|
6402
|
+
* Bad Request - Invalid input data or malformed request
|
|
6403
|
+
*/
|
|
6404
|
+
400: ErrorResponse;
|
|
6405
|
+
/**
|
|
6406
|
+
* Unauthorized - Missing or invalid authentication token
|
|
6407
|
+
*/
|
|
6408
|
+
401: ErrorResponse;
|
|
6409
|
+
/**
|
|
6410
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
6411
|
+
*/
|
|
6412
|
+
403: ErrorResponse;
|
|
6413
|
+
/**
|
|
6414
|
+
* Not Found - Resource does not exist
|
|
6415
|
+
*/
|
|
6416
|
+
404: ErrorResponse;
|
|
6417
|
+
/**
|
|
6418
|
+
* Too Many Requests - Rate limit exceeded
|
|
6419
|
+
*/
|
|
6420
|
+
429: ErrorResponse;
|
|
6421
|
+
/**
|
|
6422
|
+
* Internal Server Error - Unexpected server error
|
|
6423
|
+
*/
|
|
6424
|
+
500: ErrorResponse;
|
|
6425
|
+
/**
|
|
6426
|
+
* General Error
|
|
6427
|
+
*/
|
|
6428
|
+
default: Errors;
|
|
6429
|
+
};
|
|
6430
|
+
type PostExtractionBatchesError = PostExtractionBatchesErrors[keyof PostExtractionBatchesErrors];
|
|
6431
|
+
type PostExtractionBatchesResponses = {
|
|
6432
|
+
/**
|
|
6433
|
+
* Success
|
|
6434
|
+
*/
|
|
6435
|
+
201: {
|
|
6436
|
+
data?: ExtractionBatch;
|
|
6437
|
+
included?: Array<unknown>;
|
|
6438
|
+
meta?: {
|
|
6439
|
+
[key: string]: unknown;
|
|
6440
|
+
};
|
|
6441
|
+
};
|
|
6442
|
+
};
|
|
6443
|
+
type PostExtractionBatchesResponse = PostExtractionBatchesResponses[keyof PostExtractionBatchesResponses];
|
|
6177
6444
|
type GetLlmAnalyticsPlatformData = {
|
|
6178
6445
|
body?: never;
|
|
6179
6446
|
headers: {
|
|
@@ -6333,6 +6600,90 @@ type PostPaymentsResponses = {
|
|
|
6333
6600
|
};
|
|
6334
6601
|
};
|
|
6335
6602
|
type PostPaymentsResponse = PostPaymentsResponses[keyof PostPaymentsResponses];
|
|
6603
|
+
type GetExtractionBatchesWorkspaceByWorkspaceIdData = {
|
|
6604
|
+
body?: never;
|
|
6605
|
+
headers: {
|
|
6606
|
+
/**
|
|
6607
|
+
* Application ID for authentication and routing
|
|
6608
|
+
*/
|
|
6609
|
+
"x-application-key": string;
|
|
6610
|
+
};
|
|
6611
|
+
path: {
|
|
6612
|
+
workspace_id: string;
|
|
6613
|
+
};
|
|
6614
|
+
query?: {
|
|
6615
|
+
/**
|
|
6616
|
+
* Filter results using JSON:API filter syntax. Use field comparisons like `field[eq]=value`, `field[in][]=val1&field[in][]=val2`, etc.
|
|
6617
|
+
*/
|
|
6618
|
+
filter?: ExtractionBatchFilter;
|
|
6619
|
+
/**
|
|
6620
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
6621
|
+
*/
|
|
6622
|
+
sort?: string;
|
|
6623
|
+
/**
|
|
6624
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
6625
|
+
*/
|
|
6626
|
+
include?: string;
|
|
6627
|
+
/**
|
|
6628
|
+
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
6629
|
+
*/
|
|
6630
|
+
fields?: {
|
|
6631
|
+
/**
|
|
6632
|
+
* Comma separated field names for extraction_batch
|
|
6633
|
+
*/
|
|
6634
|
+
extraction_batch?: string;
|
|
6635
|
+
[key: string]: unknown | string | undefined;
|
|
6636
|
+
};
|
|
6637
|
+
};
|
|
6638
|
+
url: "/extraction/batches/workspace/{workspace_id}";
|
|
6639
|
+
};
|
|
6640
|
+
type GetExtractionBatchesWorkspaceByWorkspaceIdErrors = {
|
|
6641
|
+
/**
|
|
6642
|
+
* Bad Request - Invalid input data or malformed request
|
|
6643
|
+
*/
|
|
6644
|
+
400: ErrorResponse;
|
|
6645
|
+
/**
|
|
6646
|
+
* Unauthorized - Missing or invalid authentication token
|
|
6647
|
+
*/
|
|
6648
|
+
401: ErrorResponse;
|
|
6649
|
+
/**
|
|
6650
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
6651
|
+
*/
|
|
6652
|
+
403: ErrorResponse;
|
|
6653
|
+
/**
|
|
6654
|
+
* Not Found - Resource does not exist
|
|
6655
|
+
*/
|
|
6656
|
+
404: ErrorResponse;
|
|
6657
|
+
/**
|
|
6658
|
+
* Too Many Requests - Rate limit exceeded
|
|
6659
|
+
*/
|
|
6660
|
+
429: ErrorResponse;
|
|
6661
|
+
/**
|
|
6662
|
+
* Internal Server Error - Unexpected server error
|
|
6663
|
+
*/
|
|
6664
|
+
500: ErrorResponse;
|
|
6665
|
+
/**
|
|
6666
|
+
* General Error
|
|
6667
|
+
*/
|
|
6668
|
+
default: Errors;
|
|
6669
|
+
};
|
|
6670
|
+
type GetExtractionBatchesWorkspaceByWorkspaceIdError = GetExtractionBatchesWorkspaceByWorkspaceIdErrors[keyof GetExtractionBatchesWorkspaceByWorkspaceIdErrors];
|
|
6671
|
+
type GetExtractionBatchesWorkspaceByWorkspaceIdResponses = {
|
|
6672
|
+
/**
|
|
6673
|
+
* Success
|
|
6674
|
+
*/
|
|
6675
|
+
200: {
|
|
6676
|
+
/**
|
|
6677
|
+
* An array of resource objects representing a extraction_batch
|
|
6678
|
+
*/
|
|
6679
|
+
data?: Array<ExtractionBatch>;
|
|
6680
|
+
included?: Array<unknown>;
|
|
6681
|
+
meta?: {
|
|
6682
|
+
[key: string]: unknown;
|
|
6683
|
+
};
|
|
6684
|
+
};
|
|
6685
|
+
};
|
|
6686
|
+
type GetExtractionBatchesWorkspaceByWorkspaceIdResponse = GetExtractionBatchesWorkspaceByWorkspaceIdResponses[keyof GetExtractionBatchesWorkspaceByWorkspaceIdResponses];
|
|
6336
6687
|
type PatchApiKeysByIdRevokeData = {
|
|
6337
6688
|
/**
|
|
6338
6689
|
* Request body for the /api_keys/:id/revoke operation on api_key resource
|
|
@@ -6559,7 +6910,7 @@ type GetExtractionDocumentsByIdStatusResponses = {
|
|
|
6559
6910
|
*/
|
|
6560
6911
|
200: {
|
|
6561
6912
|
data?: ExtractionDocument;
|
|
6562
|
-
included?: Array<
|
|
6913
|
+
included?: Array<ExtractionResult>;
|
|
6563
6914
|
meta?: {
|
|
6564
6915
|
[key: string]: unknown;
|
|
6565
6916
|
};
|
|
@@ -6653,13 +7004,100 @@ type PatchExtractionDocumentsByIdStatusResponses = {
|
|
|
6653
7004
|
*/
|
|
6654
7005
|
200: {
|
|
6655
7006
|
data?: ExtractionDocument;
|
|
6656
|
-
included?: Array<
|
|
7007
|
+
included?: Array<ExtractionResult>;
|
|
6657
7008
|
meta?: {
|
|
6658
7009
|
[key: string]: unknown;
|
|
6659
7010
|
};
|
|
6660
7011
|
};
|
|
6661
7012
|
};
|
|
6662
7013
|
type PatchExtractionDocumentsByIdStatusResponse = PatchExtractionDocumentsByIdStatusResponses[keyof PatchExtractionDocumentsByIdStatusResponses];
|
|
7014
|
+
type PatchExtractionDocumentsByIdFinishUploadData = {
|
|
7015
|
+
/**
|
|
7016
|
+
* Request body for the /extraction/documents/:id/finish_upload operation on extraction_document resource
|
|
7017
|
+
*/
|
|
7018
|
+
body?: {
|
|
7019
|
+
data: {
|
|
7020
|
+
attributes?: {
|
|
7021
|
+
[key: string]: never;
|
|
7022
|
+
};
|
|
7023
|
+
id: string;
|
|
7024
|
+
relationships?: {
|
|
7025
|
+
[key: string]: never;
|
|
7026
|
+
};
|
|
7027
|
+
type?: "extraction_document";
|
|
7028
|
+
};
|
|
7029
|
+
};
|
|
7030
|
+
headers: {
|
|
7031
|
+
/**
|
|
7032
|
+
* Application ID for authentication and routing
|
|
7033
|
+
*/
|
|
7034
|
+
"x-application-key": string;
|
|
7035
|
+
};
|
|
7036
|
+
path: {
|
|
7037
|
+
id: string;
|
|
7038
|
+
};
|
|
7039
|
+
query?: {
|
|
7040
|
+
/**
|
|
7041
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
7042
|
+
*/
|
|
7043
|
+
include?: string;
|
|
7044
|
+
/**
|
|
7045
|
+
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
7046
|
+
*/
|
|
7047
|
+
fields?: {
|
|
7048
|
+
/**
|
|
7049
|
+
* Comma separated field names for extraction_document
|
|
7050
|
+
*/
|
|
7051
|
+
extraction_document?: string;
|
|
7052
|
+
[key: string]: unknown | string | undefined;
|
|
7053
|
+
};
|
|
7054
|
+
};
|
|
7055
|
+
url: "/extraction/documents/{id}/finish_upload";
|
|
7056
|
+
};
|
|
7057
|
+
type PatchExtractionDocumentsByIdFinishUploadErrors = {
|
|
7058
|
+
/**
|
|
7059
|
+
* Bad Request - Invalid input data or malformed request
|
|
7060
|
+
*/
|
|
7061
|
+
400: ErrorResponse;
|
|
7062
|
+
/**
|
|
7063
|
+
* Unauthorized - Missing or invalid authentication token
|
|
7064
|
+
*/
|
|
7065
|
+
401: ErrorResponse;
|
|
7066
|
+
/**
|
|
7067
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
7068
|
+
*/
|
|
7069
|
+
403: ErrorResponse;
|
|
7070
|
+
/**
|
|
7071
|
+
* Not Found - Resource does not exist
|
|
7072
|
+
*/
|
|
7073
|
+
404: ErrorResponse;
|
|
7074
|
+
/**
|
|
7075
|
+
* Too Many Requests - Rate limit exceeded
|
|
7076
|
+
*/
|
|
7077
|
+
429: ErrorResponse;
|
|
7078
|
+
/**
|
|
7079
|
+
* Internal Server Error - Unexpected server error
|
|
7080
|
+
*/
|
|
7081
|
+
500: ErrorResponse;
|
|
7082
|
+
/**
|
|
7083
|
+
* General Error
|
|
7084
|
+
*/
|
|
7085
|
+
default: Errors;
|
|
7086
|
+
};
|
|
7087
|
+
type PatchExtractionDocumentsByIdFinishUploadError = PatchExtractionDocumentsByIdFinishUploadErrors[keyof PatchExtractionDocumentsByIdFinishUploadErrors];
|
|
7088
|
+
type PatchExtractionDocumentsByIdFinishUploadResponses = {
|
|
7089
|
+
/**
|
|
7090
|
+
* Success
|
|
7091
|
+
*/
|
|
7092
|
+
200: {
|
|
7093
|
+
data?: ExtractionDocument;
|
|
7094
|
+
included?: Array<ExtractionResult>;
|
|
7095
|
+
meta?: {
|
|
7096
|
+
[key: string]: unknown;
|
|
7097
|
+
};
|
|
7098
|
+
};
|
|
7099
|
+
};
|
|
7100
|
+
type PatchExtractionDocumentsByIdFinishUploadResponse = PatchExtractionDocumentsByIdFinishUploadResponses[keyof PatchExtractionDocumentsByIdFinishUploadResponses];
|
|
6663
7101
|
type PatchWorkspacesByIdAllocateData = {
|
|
6664
7102
|
/**
|
|
6665
7103
|
* Request body for the /workspaces/:id/allocate operation on workspace resource
|
|
@@ -6740,7 +7178,7 @@ type PatchWorkspacesByIdAllocateResponses = {
|
|
|
6740
7178
|
*/
|
|
6741
7179
|
200: {
|
|
6742
7180
|
data?: Workspace;
|
|
6743
|
-
included?: Array<
|
|
7181
|
+
included?: Array<Tenant>;
|
|
6744
7182
|
meta?: {
|
|
6745
7183
|
[key: string]: unknown;
|
|
6746
7184
|
};
|
|
@@ -11743,6 +12181,7 @@ type PostExtractionDocumentsUploadData = {
|
|
|
11743
12181
|
body: {
|
|
11744
12182
|
data: {
|
|
11745
12183
|
attributes?: {
|
|
12184
|
+
batch_id?: string | unknown;
|
|
11746
12185
|
file_size_bytes?: number | unknown;
|
|
11747
12186
|
file_type: "pdf" | "docx" | "image" | "zip";
|
|
11748
12187
|
filename: string;
|
|
@@ -11818,7 +12257,7 @@ type PostExtractionDocumentsUploadResponses = {
|
|
|
11818
12257
|
*/
|
|
11819
12258
|
201: {
|
|
11820
12259
|
data?: ExtractionDocument;
|
|
11821
|
-
included?: Array<
|
|
12260
|
+
included?: Array<ExtractionResult>;
|
|
11822
12261
|
meta?: {
|
|
11823
12262
|
[key: string]: unknown;
|
|
11824
12263
|
};
|
|
@@ -12120,7 +12559,7 @@ type GetWorkspacesByIdResponses = {
|
|
|
12120
12559
|
*/
|
|
12121
12560
|
200: {
|
|
12122
12561
|
data?: Workspace;
|
|
12123
|
-
included?: Array<
|
|
12562
|
+
included?: Array<Tenant>;
|
|
12124
12563
|
meta?: {
|
|
12125
12564
|
[key: string]: unknown;
|
|
12126
12565
|
};
|
|
@@ -12215,7 +12654,7 @@ type PatchWorkspacesByIdResponses = {
|
|
|
12215
12654
|
*/
|
|
12216
12655
|
200: {
|
|
12217
12656
|
data?: Workspace;
|
|
12218
|
-
included?: Array<
|
|
12657
|
+
included?: Array<Tenant>;
|
|
12219
12658
|
meta?: {
|
|
12220
12659
|
[key: string]: unknown;
|
|
12221
12660
|
};
|
|
@@ -12438,15 +12877,88 @@ type PostTenantsByIdRemoveStorageData = {
|
|
|
12438
12877
|
*/
|
|
12439
12878
|
fields?: {
|
|
12440
12879
|
/**
|
|
12441
|
-
* Comma separated field names for tenant
|
|
12880
|
+
* Comma separated field names for tenant
|
|
12881
|
+
*/
|
|
12882
|
+
tenant?: string;
|
|
12883
|
+
[key: string]: unknown | string | undefined;
|
|
12884
|
+
};
|
|
12885
|
+
};
|
|
12886
|
+
url: "/tenants/{id}/remove-storage";
|
|
12887
|
+
};
|
|
12888
|
+
type PostTenantsByIdRemoveStorageErrors = {
|
|
12889
|
+
/**
|
|
12890
|
+
* Bad Request - Invalid input data or malformed request
|
|
12891
|
+
*/
|
|
12892
|
+
400: ErrorResponse;
|
|
12893
|
+
/**
|
|
12894
|
+
* Unauthorized - Missing or invalid authentication token
|
|
12895
|
+
*/
|
|
12896
|
+
401: ErrorResponse;
|
|
12897
|
+
/**
|
|
12898
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
12899
|
+
*/
|
|
12900
|
+
403: ErrorResponse;
|
|
12901
|
+
/**
|
|
12902
|
+
* Not Found - Resource does not exist
|
|
12903
|
+
*/
|
|
12904
|
+
404: ErrorResponse;
|
|
12905
|
+
/**
|
|
12906
|
+
* Too Many Requests - Rate limit exceeded
|
|
12907
|
+
*/
|
|
12908
|
+
429: ErrorResponse;
|
|
12909
|
+
/**
|
|
12910
|
+
* Internal Server Error - Unexpected server error
|
|
12911
|
+
*/
|
|
12912
|
+
500: ErrorResponse;
|
|
12913
|
+
/**
|
|
12914
|
+
* General Error
|
|
12915
|
+
*/
|
|
12916
|
+
default: Errors;
|
|
12917
|
+
};
|
|
12918
|
+
type PostTenantsByIdRemoveStorageError = PostTenantsByIdRemoveStorageErrors[keyof PostTenantsByIdRemoveStorageErrors];
|
|
12919
|
+
type PostTenantsByIdRemoveStorageResponses = {
|
|
12920
|
+
/**
|
|
12921
|
+
* Success
|
|
12922
|
+
*/
|
|
12923
|
+
201: {
|
|
12924
|
+
data?: Tenant;
|
|
12925
|
+
included?: Array<unknown>;
|
|
12926
|
+
meta?: {
|
|
12927
|
+
[key: string]: unknown;
|
|
12928
|
+
};
|
|
12929
|
+
};
|
|
12930
|
+
};
|
|
12931
|
+
type PostTenantsByIdRemoveStorageResponse = PostTenantsByIdRemoveStorageResponses[keyof PostTenantsByIdRemoveStorageResponses];
|
|
12932
|
+
type GetNotificationLogsByIdData = {
|
|
12933
|
+
body?: never;
|
|
12934
|
+
headers: {
|
|
12935
|
+
/**
|
|
12936
|
+
* Application ID for authentication and routing
|
|
12937
|
+
*/
|
|
12938
|
+
"x-application-key": string;
|
|
12939
|
+
};
|
|
12940
|
+
path: {
|
|
12941
|
+
id: string;
|
|
12942
|
+
};
|
|
12943
|
+
query?: {
|
|
12944
|
+
/**
|
|
12945
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
12946
|
+
*/
|
|
12947
|
+
include?: string;
|
|
12948
|
+
/**
|
|
12949
|
+
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
12950
|
+
*/
|
|
12951
|
+
fields?: {
|
|
12952
|
+
/**
|
|
12953
|
+
* Comma separated field names for notification_log
|
|
12442
12954
|
*/
|
|
12443
|
-
|
|
12955
|
+
notification_log?: string;
|
|
12444
12956
|
[key: string]: unknown | string | undefined;
|
|
12445
12957
|
};
|
|
12446
12958
|
};
|
|
12447
|
-
url: "/
|
|
12959
|
+
url: "/notification_logs/{id}";
|
|
12448
12960
|
};
|
|
12449
|
-
type
|
|
12961
|
+
type GetNotificationLogsByIdErrors = {
|
|
12450
12962
|
/**
|
|
12451
12963
|
* Bad Request - Invalid input data or malformed request
|
|
12452
12964
|
*/
|
|
@@ -12476,22 +12988,35 @@ type PostTenantsByIdRemoveStorageErrors = {
|
|
|
12476
12988
|
*/
|
|
12477
12989
|
default: Errors;
|
|
12478
12990
|
};
|
|
12479
|
-
type
|
|
12480
|
-
type
|
|
12991
|
+
type GetNotificationLogsByIdError = GetNotificationLogsByIdErrors[keyof GetNotificationLogsByIdErrors];
|
|
12992
|
+
type GetNotificationLogsByIdResponses = {
|
|
12481
12993
|
/**
|
|
12482
12994
|
* Success
|
|
12483
12995
|
*/
|
|
12484
|
-
|
|
12485
|
-
data?:
|
|
12996
|
+
200: {
|
|
12997
|
+
data?: NotificationLog;
|
|
12486
12998
|
included?: Array<unknown>;
|
|
12487
12999
|
meta?: {
|
|
12488
13000
|
[key: string]: unknown;
|
|
12489
13001
|
};
|
|
12490
13002
|
};
|
|
12491
13003
|
};
|
|
12492
|
-
type
|
|
12493
|
-
type
|
|
12494
|
-
|
|
13004
|
+
type GetNotificationLogsByIdResponse = GetNotificationLogsByIdResponses[keyof GetNotificationLogsByIdResponses];
|
|
13005
|
+
type PostExtractionDocumentsByIdViewData = {
|
|
13006
|
+
/**
|
|
13007
|
+
* Request body for the /extraction/documents/:id/view operation on extraction_document resource
|
|
13008
|
+
*/
|
|
13009
|
+
body?: {
|
|
13010
|
+
data: {
|
|
13011
|
+
attributes?: {
|
|
13012
|
+
[key: string]: never;
|
|
13013
|
+
};
|
|
13014
|
+
relationships?: {
|
|
13015
|
+
[key: string]: never;
|
|
13016
|
+
};
|
|
13017
|
+
type?: "extraction_document";
|
|
13018
|
+
};
|
|
13019
|
+
};
|
|
12495
13020
|
headers: {
|
|
12496
13021
|
/**
|
|
12497
13022
|
* Application ID for authentication and routing
|
|
@@ -12511,15 +13036,15 @@ type GetNotificationLogsByIdData = {
|
|
|
12511
13036
|
*/
|
|
12512
13037
|
fields?: {
|
|
12513
13038
|
/**
|
|
12514
|
-
* Comma separated field names for
|
|
13039
|
+
* Comma separated field names for extraction_document
|
|
12515
13040
|
*/
|
|
12516
|
-
|
|
13041
|
+
extraction_document?: string;
|
|
12517
13042
|
[key: string]: unknown | string | undefined;
|
|
12518
13043
|
};
|
|
12519
13044
|
};
|
|
12520
|
-
url: "/
|
|
13045
|
+
url: "/extraction/documents/{id}/view";
|
|
12521
13046
|
};
|
|
12522
|
-
type
|
|
13047
|
+
type PostExtractionDocumentsByIdViewErrors = {
|
|
12523
13048
|
/**
|
|
12524
13049
|
* Bad Request - Invalid input data or malformed request
|
|
12525
13050
|
*/
|
|
@@ -12549,20 +13074,20 @@ type GetNotificationLogsByIdErrors = {
|
|
|
12549
13074
|
*/
|
|
12550
13075
|
default: Errors;
|
|
12551
13076
|
};
|
|
12552
|
-
type
|
|
12553
|
-
type
|
|
13077
|
+
type PostExtractionDocumentsByIdViewError = PostExtractionDocumentsByIdViewErrors[keyof PostExtractionDocumentsByIdViewErrors];
|
|
13078
|
+
type PostExtractionDocumentsByIdViewResponses = {
|
|
12554
13079
|
/**
|
|
12555
13080
|
* Success
|
|
12556
13081
|
*/
|
|
12557
|
-
|
|
12558
|
-
data?:
|
|
12559
|
-
included?: Array<
|
|
13082
|
+
201: {
|
|
13083
|
+
data?: ExtractionDocument;
|
|
13084
|
+
included?: Array<ExtractionResult>;
|
|
12560
13085
|
meta?: {
|
|
12561
13086
|
[key: string]: unknown;
|
|
12562
13087
|
};
|
|
12563
13088
|
};
|
|
12564
13089
|
};
|
|
12565
|
-
type
|
|
13090
|
+
type PostExtractionDocumentsByIdViewResponse = PostExtractionDocumentsByIdViewResponses[keyof PostExtractionDocumentsByIdViewResponses];
|
|
12566
13091
|
type GetWebhookDeliveriesByIdData = {
|
|
12567
13092
|
body?: never;
|
|
12568
13093
|
headers: {
|
|
@@ -15993,7 +16518,7 @@ type GetWorkspacesMineResponses = {
|
|
|
15993
16518
|
* An array of resource objects representing a workspace
|
|
15994
16519
|
*/
|
|
15995
16520
|
data?: Array<Workspace>;
|
|
15996
|
-
included?: Array<
|
|
16521
|
+
included?: Array<Tenant>;
|
|
15997
16522
|
meta?: {
|
|
15998
16523
|
[key: string]: unknown;
|
|
15999
16524
|
};
|
|
@@ -17182,6 +17707,7 @@ type GetExtractionDocumentsWorkspaceByWorkspaceIdData = {
|
|
|
17182
17707
|
extraction_document?: string;
|
|
17183
17708
|
[key: string]: unknown | string | undefined;
|
|
17184
17709
|
};
|
|
17710
|
+
batch_id?: string;
|
|
17185
17711
|
};
|
|
17186
17712
|
url: "/extraction/documents/workspace/{workspace_id}";
|
|
17187
17713
|
};
|
|
@@ -17225,13 +17751,103 @@ type GetExtractionDocumentsWorkspaceByWorkspaceIdResponses = {
|
|
|
17225
17751
|
* An array of resource objects representing a extraction_document
|
|
17226
17752
|
*/
|
|
17227
17753
|
data?: Array<ExtractionDocument>;
|
|
17228
|
-
included?: Array<
|
|
17754
|
+
included?: Array<ExtractionResult>;
|
|
17229
17755
|
meta?: {
|
|
17230
17756
|
[key: string]: unknown;
|
|
17231
17757
|
};
|
|
17232
17758
|
};
|
|
17233
17759
|
};
|
|
17234
17760
|
type GetExtractionDocumentsWorkspaceByWorkspaceIdResponse = GetExtractionDocumentsWorkspaceByWorkspaceIdResponses[keyof GetExtractionDocumentsWorkspaceByWorkspaceIdResponses];
|
|
17761
|
+
type PostExtractionDocumentsBeginUploadData = {
|
|
17762
|
+
/**
|
|
17763
|
+
* Request body for the /extraction/documents/begin_upload operation on extraction_document resource
|
|
17764
|
+
*/
|
|
17765
|
+
body: {
|
|
17766
|
+
data: {
|
|
17767
|
+
attributes?: {
|
|
17768
|
+
batch_id?: string | unknown;
|
|
17769
|
+
content_type?: string | unknown;
|
|
17770
|
+
file_size_bytes?: number | unknown;
|
|
17771
|
+
file_type: "pdf" | "docx" | "image" | "zip";
|
|
17772
|
+
filename: string;
|
|
17773
|
+
parent_document_id?: string | unknown;
|
|
17774
|
+
workspace_id: string;
|
|
17775
|
+
};
|
|
17776
|
+
relationships?: {
|
|
17777
|
+
[key: string]: never;
|
|
17778
|
+
};
|
|
17779
|
+
type?: "extraction_document";
|
|
17780
|
+
};
|
|
17781
|
+
};
|
|
17782
|
+
headers: {
|
|
17783
|
+
/**
|
|
17784
|
+
* Application ID for authentication and routing
|
|
17785
|
+
*/
|
|
17786
|
+
"x-application-key": string;
|
|
17787
|
+
};
|
|
17788
|
+
path?: never;
|
|
17789
|
+
query?: {
|
|
17790
|
+
/**
|
|
17791
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
17792
|
+
*/
|
|
17793
|
+
include?: string;
|
|
17794
|
+
/**
|
|
17795
|
+
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
17796
|
+
*/
|
|
17797
|
+
fields?: {
|
|
17798
|
+
/**
|
|
17799
|
+
* Comma separated field names for extraction_document
|
|
17800
|
+
*/
|
|
17801
|
+
extraction_document?: string;
|
|
17802
|
+
[key: string]: unknown | string | undefined;
|
|
17803
|
+
};
|
|
17804
|
+
};
|
|
17805
|
+
url: "/extraction/documents/begin_upload";
|
|
17806
|
+
};
|
|
17807
|
+
type PostExtractionDocumentsBeginUploadErrors = {
|
|
17808
|
+
/**
|
|
17809
|
+
* Bad Request - Invalid input data or malformed request
|
|
17810
|
+
*/
|
|
17811
|
+
400: ErrorResponse;
|
|
17812
|
+
/**
|
|
17813
|
+
* Unauthorized - Missing or invalid authentication token
|
|
17814
|
+
*/
|
|
17815
|
+
401: ErrorResponse;
|
|
17816
|
+
/**
|
|
17817
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
17818
|
+
*/
|
|
17819
|
+
403: ErrorResponse;
|
|
17820
|
+
/**
|
|
17821
|
+
* Not Found - Resource does not exist
|
|
17822
|
+
*/
|
|
17823
|
+
404: ErrorResponse;
|
|
17824
|
+
/**
|
|
17825
|
+
* Too Many Requests - Rate limit exceeded
|
|
17826
|
+
*/
|
|
17827
|
+
429: ErrorResponse;
|
|
17828
|
+
/**
|
|
17829
|
+
* Internal Server Error - Unexpected server error
|
|
17830
|
+
*/
|
|
17831
|
+
500: ErrorResponse;
|
|
17832
|
+
/**
|
|
17833
|
+
* General Error
|
|
17834
|
+
*/
|
|
17835
|
+
default: Errors;
|
|
17836
|
+
};
|
|
17837
|
+
type PostExtractionDocumentsBeginUploadError = PostExtractionDocumentsBeginUploadErrors[keyof PostExtractionDocumentsBeginUploadErrors];
|
|
17838
|
+
type PostExtractionDocumentsBeginUploadResponses = {
|
|
17839
|
+
/**
|
|
17840
|
+
* Success
|
|
17841
|
+
*/
|
|
17842
|
+
201: {
|
|
17843
|
+
data?: ExtractionDocument;
|
|
17844
|
+
included?: Array<ExtractionResult>;
|
|
17845
|
+
meta?: {
|
|
17846
|
+
[key: string]: unknown;
|
|
17847
|
+
};
|
|
17848
|
+
};
|
|
17849
|
+
};
|
|
17850
|
+
type PostExtractionDocumentsBeginUploadResponse = PostExtractionDocumentsBeginUploadResponses[keyof PostExtractionDocumentsBeginUploadResponses];
|
|
17235
17851
|
type DeleteAiGraphEdgesByIdData = {
|
|
17236
17852
|
body?: never;
|
|
17237
17853
|
headers: {
|
|
@@ -17952,7 +18568,7 @@ type GetExtractionDocumentsResponses = {
|
|
|
17952
18568
|
* An array of resource objects representing a extraction_document
|
|
17953
18569
|
*/
|
|
17954
18570
|
data?: Array<ExtractionDocument>;
|
|
17955
|
-
included?: Array<
|
|
18571
|
+
included?: Array<ExtractionResult>;
|
|
17956
18572
|
meta?: {
|
|
17957
18573
|
[key: string]: unknown;
|
|
17958
18574
|
};
|
|
@@ -20872,6 +21488,79 @@ type PostUsersRegisterIsvResponses = {
|
|
|
20872
21488
|
};
|
|
20873
21489
|
};
|
|
20874
21490
|
type PostUsersRegisterIsvResponse = PostUsersRegisterIsvResponses[keyof PostUsersRegisterIsvResponses];
|
|
21491
|
+
type GetExtractionBatchesByIdData = {
|
|
21492
|
+
body?: never;
|
|
21493
|
+
headers: {
|
|
21494
|
+
/**
|
|
21495
|
+
* Application ID for authentication and routing
|
|
21496
|
+
*/
|
|
21497
|
+
"x-application-key": string;
|
|
21498
|
+
};
|
|
21499
|
+
path: {
|
|
21500
|
+
id: string;
|
|
21501
|
+
};
|
|
21502
|
+
query?: {
|
|
21503
|
+
/**
|
|
21504
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
21505
|
+
*/
|
|
21506
|
+
include?: string;
|
|
21507
|
+
/**
|
|
21508
|
+
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
21509
|
+
*/
|
|
21510
|
+
fields?: {
|
|
21511
|
+
/**
|
|
21512
|
+
* Comma separated field names for extraction_batch
|
|
21513
|
+
*/
|
|
21514
|
+
extraction_batch?: string;
|
|
21515
|
+
[key: string]: unknown | string | undefined;
|
|
21516
|
+
};
|
|
21517
|
+
};
|
|
21518
|
+
url: "/extraction/batches/{id}";
|
|
21519
|
+
};
|
|
21520
|
+
type GetExtractionBatchesByIdErrors = {
|
|
21521
|
+
/**
|
|
21522
|
+
* Bad Request - Invalid input data or malformed request
|
|
21523
|
+
*/
|
|
21524
|
+
400: ErrorResponse;
|
|
21525
|
+
/**
|
|
21526
|
+
* Unauthorized - Missing or invalid authentication token
|
|
21527
|
+
*/
|
|
21528
|
+
401: ErrorResponse;
|
|
21529
|
+
/**
|
|
21530
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
21531
|
+
*/
|
|
21532
|
+
403: ErrorResponse;
|
|
21533
|
+
/**
|
|
21534
|
+
* Not Found - Resource does not exist
|
|
21535
|
+
*/
|
|
21536
|
+
404: ErrorResponse;
|
|
21537
|
+
/**
|
|
21538
|
+
* Too Many Requests - Rate limit exceeded
|
|
21539
|
+
*/
|
|
21540
|
+
429: ErrorResponse;
|
|
21541
|
+
/**
|
|
21542
|
+
* Internal Server Error - Unexpected server error
|
|
21543
|
+
*/
|
|
21544
|
+
500: ErrorResponse;
|
|
21545
|
+
/**
|
|
21546
|
+
* General Error
|
|
21547
|
+
*/
|
|
21548
|
+
default: Errors;
|
|
21549
|
+
};
|
|
21550
|
+
type GetExtractionBatchesByIdError = GetExtractionBatchesByIdErrors[keyof GetExtractionBatchesByIdErrors];
|
|
21551
|
+
type GetExtractionBatchesByIdResponses = {
|
|
21552
|
+
/**
|
|
21553
|
+
* Success
|
|
21554
|
+
*/
|
|
21555
|
+
200: {
|
|
21556
|
+
data?: ExtractionBatch;
|
|
21557
|
+
included?: Array<unknown>;
|
|
21558
|
+
meta?: {
|
|
21559
|
+
[key: string]: unknown;
|
|
21560
|
+
};
|
|
21561
|
+
};
|
|
21562
|
+
};
|
|
21563
|
+
type GetExtractionBatchesByIdResponse = GetExtractionBatchesByIdResponses[keyof GetExtractionBatchesByIdResponses];
|
|
20875
21564
|
type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdData = {
|
|
20876
21565
|
body?: never;
|
|
20877
21566
|
headers: {
|
|
@@ -21774,6 +22463,16 @@ declare const getSearchIndexes: <ThrowOnError extends boolean = false>(options:
|
|
|
21774
22463
|
*
|
|
21775
22464
|
*/
|
|
21776
22465
|
declare const getCreditPackagesSlugBySlug: <ThrowOnError extends boolean = false>(options: Options<GetCreditPackagesSlugBySlugData, ThrowOnError>) => RequestResult<GetCreditPackagesSlugBySlugResponses, GetCreditPackagesSlugBySlugErrors, ThrowOnError, "fields">;
|
|
22466
|
+
/**
|
|
22467
|
+
* Create batches
|
|
22468
|
+
*
|
|
22469
|
+
* Creates a new resource. Returns the created resource with generated ID.
|
|
22470
|
+
*
|
|
22471
|
+
* **Authentication:** Required - Bearer token or API key
|
|
22472
|
+
* **Rate Limit:** 100 requests per minute
|
|
22473
|
+
*
|
|
22474
|
+
*/
|
|
22475
|
+
declare const postExtractionBatches: <ThrowOnError extends boolean = false>(options: Options<PostExtractionBatchesData, ThrowOnError>) => RequestResult<PostExtractionBatchesResponses, PostExtractionBatchesErrors, ThrowOnError, "fields">;
|
|
21777
22476
|
/**
|
|
21778
22477
|
* List platform
|
|
21779
22478
|
*
|
|
@@ -21786,6 +22485,16 @@ declare const getLlmAnalyticsPlatform: <ThrowOnError extends boolean = false>(op
|
|
|
21786
22485
|
* Process a payment
|
|
21787
22486
|
*/
|
|
21788
22487
|
declare const postPayments: <ThrowOnError extends boolean = false>(options: Options<PostPaymentsData, ThrowOnError>) => RequestResult<PostPaymentsResponses, PostPaymentsErrors, ThrowOnError, "fields">;
|
|
22488
|
+
/**
|
|
22489
|
+
* Get workspace
|
|
22490
|
+
*
|
|
22491
|
+
* Retrieves a single resource by ID.
|
|
22492
|
+
*
|
|
22493
|
+
* **Authentication:** Required - Bearer token or API key
|
|
22494
|
+
* **Rate Limit:** 100 requests per minute
|
|
22495
|
+
*
|
|
22496
|
+
*/
|
|
22497
|
+
declare const getExtractionBatchesWorkspaceByWorkspaceId: <ThrowOnError extends boolean = false>(options: Options<GetExtractionBatchesWorkspaceByWorkspaceIdData, ThrowOnError>) => RequestResult<GetExtractionBatchesWorkspaceByWorkspaceIdResponses, GetExtractionBatchesWorkspaceByWorkspaceIdErrors, ThrowOnError, "fields">;
|
|
21789
22498
|
/**
|
|
21790
22499
|
* Update revoke
|
|
21791
22500
|
*
|
|
@@ -21826,6 +22535,16 @@ declare const getExtractionDocumentsByIdStatus: <ThrowOnError extends boolean =
|
|
|
21826
22535
|
*
|
|
21827
22536
|
*/
|
|
21828
22537
|
declare const patchExtractionDocumentsByIdStatus: <ThrowOnError extends boolean = false>(options: Options<PatchExtractionDocumentsByIdStatusData, ThrowOnError>) => RequestResult<PatchExtractionDocumentsByIdStatusResponses, PatchExtractionDocumentsByIdStatusErrors, ThrowOnError, "fields">;
|
|
22538
|
+
/**
|
|
22539
|
+
* Update finish upload
|
|
22540
|
+
*
|
|
22541
|
+
* Updates specific fields of an existing resource.
|
|
22542
|
+
*
|
|
22543
|
+
* **Authentication:** Required - Bearer token or API key
|
|
22544
|
+
* **Rate Limit:** 100 requests per minute
|
|
22545
|
+
*
|
|
22546
|
+
*/
|
|
22547
|
+
declare const patchExtractionDocumentsByIdFinishUpload: <ThrowOnError extends boolean = false>(options: Options<PatchExtractionDocumentsByIdFinishUploadData, ThrowOnError>) => RequestResult<PatchExtractionDocumentsByIdFinishUploadResponses, PatchExtractionDocumentsByIdFinishUploadErrors, ThrowOnError, "fields">;
|
|
21829
22548
|
/**
|
|
21830
22549
|
* Update allocate
|
|
21831
22550
|
*
|
|
@@ -22506,6 +23225,16 @@ declare const postTenantsByIdRemoveStorage: <ThrowOnError extends boolean = fals
|
|
|
22506
23225
|
*
|
|
22507
23226
|
*/
|
|
22508
23227
|
declare const getNotificationLogsById: <ThrowOnError extends boolean = false>(options: Options<GetNotificationLogsByIdData, ThrowOnError>) => RequestResult<GetNotificationLogsByIdResponses, GetNotificationLogsByIdErrors, ThrowOnError, "fields">;
|
|
23228
|
+
/**
|
|
23229
|
+
* Create view
|
|
23230
|
+
*
|
|
23231
|
+
* Creates a new resource. Returns the created resource with generated ID.
|
|
23232
|
+
*
|
|
23233
|
+
* **Authentication:** Required - Bearer token or API key
|
|
23234
|
+
* **Rate Limit:** 100 requests per minute
|
|
23235
|
+
*
|
|
23236
|
+
*/
|
|
23237
|
+
declare const postExtractionDocumentsByIdView: <ThrowOnError extends boolean = false>(options: Options<PostExtractionDocumentsByIdViewData, ThrowOnError>) => RequestResult<PostExtractionDocumentsByIdViewResponses, PostExtractionDocumentsByIdViewErrors, ThrowOnError, "fields">;
|
|
22509
23238
|
/**
|
|
22510
23239
|
* Get webhook deliveries
|
|
22511
23240
|
*
|
|
@@ -23034,6 +23763,16 @@ declare const patchBucketsById: <ThrowOnError extends boolean = false>(options:
|
|
|
23034
23763
|
*
|
|
23035
23764
|
*/
|
|
23036
23765
|
declare const getExtractionDocumentsWorkspaceByWorkspaceId: <ThrowOnError extends boolean = false>(options: Options<GetExtractionDocumentsWorkspaceByWorkspaceIdData, ThrowOnError>) => RequestResult<GetExtractionDocumentsWorkspaceByWorkspaceIdResponses, GetExtractionDocumentsWorkspaceByWorkspaceIdErrors, ThrowOnError, "fields">;
|
|
23766
|
+
/**
|
|
23767
|
+
* Create begin upload
|
|
23768
|
+
*
|
|
23769
|
+
* Creates a new resource. Returns the created resource with generated ID.
|
|
23770
|
+
*
|
|
23771
|
+
* **Authentication:** Required - Bearer token or API key
|
|
23772
|
+
* **Rate Limit:** 100 requests per minute
|
|
23773
|
+
*
|
|
23774
|
+
*/
|
|
23775
|
+
declare const postExtractionDocumentsBeginUpload: <ThrowOnError extends boolean = false>(options: Options<PostExtractionDocumentsBeginUploadData, ThrowOnError>) => RequestResult<PostExtractionDocumentsBeginUploadResponses, PostExtractionDocumentsBeginUploadErrors, ThrowOnError, "fields">;
|
|
23037
23776
|
/**
|
|
23038
23777
|
* Delete edges
|
|
23039
23778
|
*
|
|
@@ -23468,6 +24207,16 @@ declare const getAgents: <ThrowOnError extends boolean = false>(options: Options
|
|
|
23468
24207
|
* Platform Admin action to register a new ISV (User + Tenant + App)
|
|
23469
24208
|
*/
|
|
23470
24209
|
declare const postUsersRegisterIsv: <ThrowOnError extends boolean = false>(options: Options<PostUsersRegisterIsvData, ThrowOnError>) => RequestResult<PostUsersRegisterIsvResponses, PostUsersRegisterIsvErrors, ThrowOnError, "fields">;
|
|
24210
|
+
/**
|
|
24211
|
+
* Get batches
|
|
24212
|
+
*
|
|
24213
|
+
* Retrieves a single resource by ID.
|
|
24214
|
+
*
|
|
24215
|
+
* **Authentication:** Required - Bearer token or API key
|
|
24216
|
+
* **Rate Limit:** 100 requests per minute
|
|
24217
|
+
*
|
|
24218
|
+
*/
|
|
24219
|
+
declare const getExtractionBatchesById: <ThrowOnError extends boolean = false>(options: Options<GetExtractionBatchesByIdData, ThrowOnError>) => RequestResult<GetExtractionBatchesByIdResponses, GetExtractionBatchesByIdErrors, ThrowOnError, "fields">;
|
|
23471
24220
|
/**
|
|
23472
24221
|
* Delete workspace memberships
|
|
23473
24222
|
*
|
|
@@ -23899,4 +24648,4 @@ declare function streamMessage(response: Response, options?: StreamOptions): Asy
|
|
|
23899
24648
|
*/
|
|
23900
24649
|
declare function collectStreamedMessage(stream: AsyncIterableIterator<StreamMessageChunk>): Promise<string>;
|
|
23901
24650
|
|
|
23902
|
-
export { type Account, type AccountFilter, type AccountFilterId, type Agent, type AgentCreateRequest, AgentCreateSchema, type AgentFilter, type AgentFilterCapabilities, type AgentFilterDescription, type AgentFilterId, type AgentFilterIsSystem, type AgentFilterName, type AgentFilterSlug, type AiConfig, type AiConfigFilter, type ApiKey, type ApiKeyAllocateRequest, ApiKeyAllocateSchema, type ApiKeyCreateRequest, ApiKeyCreateSchema, type ApiKeyFilter, type ApiKeyFilterApplicationId, type ApiKeyFilterExpiresAt, type ApiKeyFilterId, type ApiKeyFilterStatus, type ApiKeyFilterTenantId, type ApiKeyFilterUserId, type ApiKeyFilterWorkspaceId, type Application, type ApplicationCreateRequest, ApplicationCreateSchema, type ApplicationFilter, type ApplicationFilterDefaultFreeCredits, type ApplicationFilterDescription, type ApplicationFilterId, type ApplicationFilterName, type ApplicationFilterSlug, type AuditLog, type AuditLogFilter, type AuditLogFilterAction, type AuditLogFilterActorId, type AuditLogFilterChanges, type AuditLogFilterId, type AuditLogFilterResourceId, type AuditLogFilterResourceType, type AuditLogFilterTenantId, type AuditLogFilterWorkspaceId, AuthenticationError, AuthorizationError, type Bucket, type BucketCreateRequest, BucketCreateSchema, type BucketFilter, type BucketFilterId, type BucketFilterName, type BucketFilterRegion, type BucketFilterStorageUsed, type BucketFilterType, type ClientOptions$1 as ClientOptions, type Config$2 as Config, type ConfigFilter, type ConfigFilterDescription, type ConfigFilterKey, type ConfigFilterValue, type Conversation, type ConversationFilter, type ConversationFilterContextData, type ConversationFilterId, type ConversationFilterTenantId, type ConversationFilterTitle, type CreditPackage, type CreditPackageFilter, type CreditPackageFilterCreatedAt, type CreditPackageFilterCredits, type CreditPackageFilterId, type CreditPackageFilterName, type CreditPackageFilterPrice, type CreditPackageFilterSlug, type CreditPackageFilterUpdatedAt, type Customer, type CustomerFilter, type CustomerFilterId, DEFAULT_RETRY_CONFIG, 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 DeleteMessagesByIdData, type DeleteMessagesByIdError, type DeleteMessagesByIdErrors, type DeleteMessagesByIdResponses, 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 DocumentChunkFilter, type DocumentChunkFilterChunkIndex, type DocumentChunkFilterContent, type DocumentChunkFilterDocumentId, type DocumentChunkFilterEmbedding, type DocumentChunkFilterId, type DocumentStats, type DocumentStatsFilter, type DocumentStatsFilterCompleted, type DocumentStatsFilterFailed, type DocumentStatsFilterId, type DocumentStatsFilterPending, type DocumentStatsFilterProcessing, type DocumentStatsFilterTotal, type DocumentUploadBase64Request, DocumentUploadBase64Schema, type EmbedRequest, EmbedRequestSchema, type Embedding, type EmbeddingFilter, type EmbeddingFilterBilledCredits, type EmbeddingFilterEmbedding, type EmbeddingFilterId, type EmbeddingFilterModel, type EmbeddingFilterText, type EmbeddingFilterUsage, type ErrorResponse, type Errors, type ExtractionDocument, type ExtractionDocumentFilter, type ExtractionDocumentFilterBilledCredits, type ExtractionDocumentFilterContent, type ExtractionDocumentFilterErrorMessage, type ExtractionDocumentFilterFileSizeBytes, type ExtractionDocumentFilterFileType, type ExtractionDocumentFilterFilename, type ExtractionDocumentFilterId, type ExtractionDocumentFilterPages, type ExtractionDocumentFilterProgress, type ExtractionDocumentFilterStatus, type ExtractionDocumentFilterStoragePath, type ExtractionResult, type ExtractionResultFilter, type ExtractionResultFilterCreditsUsed, type ExtractionResultFilterExtractedFields, type ExtractionResultFilterExtractionMode, type ExtractionResultFilterId, type ExtractionResultFilterProcessingTimeMs, type ExtractionResultFilterStatus, type ExtractionResultFilterSummary, type ExtractionSchema, type ExtractionSchemaField, type ExtractionSchemaFieldFilter, type ExtractionSchemaFieldFilterExtractionHint, type ExtractionSchemaFieldFilterGroup, type ExtractionSchemaFieldFilterId, type ExtractionSchemaFieldFilterLabel, type ExtractionSchemaFieldFilterName, type ExtractionSchemaFieldFilterOrder, type ExtractionSchemaFieldFilterRequired, type ExtractionSchemaFieldFilterType, type ExtractionSchemaFilter, type ExtractionSchemaFilterId, type ExtractionSchemaFilterIsActive, type ExtractionSchemaFilterVersion, type GetAgentsByIdData, type GetAgentsByIdError, type GetAgentsByIdErrors, type GetAgentsByIdResponse, type GetAgentsByIdResponses, 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 GetExtractionDocumentsByIdData, type GetExtractionDocumentsByIdError, type GetExtractionDocumentsByIdErrors, type GetExtractionDocumentsByIdResponse, type GetExtractionDocumentsByIdResponses, type GetExtractionDocumentsByIdStatusData, type GetExtractionDocumentsByIdStatusError, type GetExtractionDocumentsByIdStatusErrors, type GetExtractionDocumentsByIdStatusResponse, type GetExtractionDocumentsByIdStatusResponses, 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 GetExtractionSchemasWorkspaceByWorkspaceIdData, type GetExtractionSchemasWorkspaceByWorkspaceIdError, type GetExtractionSchemasWorkspaceByWorkspaceIdErrors, type GetExtractionSchemasWorkspaceByWorkspaceIdResponse, type GetExtractionSchemasWorkspaceByWorkspaceIdResponses, 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 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 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 GetWorkspacesData, type GetWorkspacesError, type GetWorkspacesErrors, type GetWorkspacesMineData, type GetWorkspacesMineError, type GetWorkspacesMineErrors, type GetWorkspacesMineResponse, type GetWorkspacesMineResponses, type GetWorkspacesResponse, type GetWorkspacesResponses, GptCoreError, type GraphEdge, type GraphEdgeFilter, type GraphEdgeFilterId, type GraphEdgeFilterProperties, type GraphEdgeFilterRelationship, type GraphEdgeFilterSourceId, type GraphEdgeFilterTargetId, type GraphNode, type GraphNodeFilter, type GraphNodeFilterId, type GraphNodeFilterLabel, type GraphNodeFilterProperties, type GraphNodeFilterTenantId, type Invitation, type InvitationCreateRequest, InvitationCreateSchema, type InvitationFilter, type InvitationFilterId, type Ledger, type LedgerFilter, type LedgerFilterId, type Link, type Links, type LlmAnalytics, type LlmAnalyticsFilter, type LlmAnalyticsFilterId, type LoginRequest, LoginRequestSchema, type Message, type MessageFilter, type MessageFilterContent, type MessageFilterId, type MessageFilterRole, type MessageSendRequest, MessageSendSchema, NetworkError, NotFoundError, type NotificationLog, type NotificationLogFilter, type NotificationLogFilterId, type NotificationPreference, type NotificationPreferenceFilter, type NotificationPreferenceFilterId, type ObjectFilter, type ObjectFilterContentType, type ObjectFilterId, type ObjectFilterKey, type ObjectFilterSizeBytes, type OperationSuccess, type OperationSuccessFilter, type OperationSuccessFilterId, type OperationSuccessFilterMessage, type OperationSuccessFilterSuccess, type Options, type PaginatedResponse, type PaginationLinks, type PaginationOptions, 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 PatchApplicationsByIdResponse, type PatchApplicationsByIdResponses, type PatchBucketsByIdData, type PatchBucketsByIdError, type PatchBucketsByIdErrors, type PatchBucketsByIdResponse, type PatchBucketsByIdResponses, type PatchConfigsByKeyData, type PatchConfigsByKeyError, type PatchConfigsByKeyErrors, type PatchConfigsByKeyResponse, type PatchConfigsByKeyResponses, 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 PatchExtractionSchemasByIdData, type PatchExtractionSchemasByIdError, type PatchExtractionSchemasByIdErrors, 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 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 PatchUsersByIdConfirmEmailData, type PatchUsersByIdConfirmEmailError, type PatchUsersByIdConfirmEmailErrors, type PatchUsersByIdConfirmEmailResponse, type PatchUsersByIdConfirmEmailResponses, type PatchUsersByIdData, type PatchUsersByIdError, type PatchUsersByIdErrors, type PatchUsersByIdResetPasswordData, type PatchUsersByIdResetPasswordError, type PatchUsersByIdResetPasswordErrors, type PatchUsersByIdResetPasswordResponse, type PatchUsersByIdResetPasswordResponses, type PatchUsersByIdResponse, type PatchUsersByIdResponses, type PatchWalletAddonsByAddonSlugCancelData, type PatchWalletAddonsByAddonSlugCancelError, type PatchWalletAddonsByAddonSlugCancelErrors, type PatchWalletAddonsByAddonSlugCancelResponse, type PatchWalletAddonsByAddonSlugCancelResponses, type PatchWalletAddonsData, type PatchWalletAddonsError, type PatchWalletAddonsErrors, type PatchWalletAddonsResponse, type PatchWalletAddonsResponses, type PatchWalletPlanData, type PatchWalletPlanError, type PatchWalletPlanErrors, type PatchWalletPlanResponse, type PatchWalletPlanResponses, type PatchWebhookConfigsByIdData, type PatchWebhookConfigsByIdError, type PatchWebhookConfigsByIdErrors, type PatchWebhookConfigsByIdResponse, type PatchWebhookConfigsByIdResponses, 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 PaymentFilter, type PaymentFilterAmount, type PaymentFilterCreatedAt, type PaymentFilterCurrency, type PaymentFilterErrorMessage, type PaymentFilterId, type PaymentFilterProviderReference, type PaymentFilterStatus, type PaymentMethod, type PaymentMethodFilter, type PaymentMethodFilterId, type Plan, type PlanFilter, type PlanFilterCreatedAt, type PlanFilterId, type PlanFilterMonthlyCredits, type PlanFilterMonthlyPrice, type PlanFilterName, type PlanFilterSlug, type PlanFilterStorageDays, type PlanFilterType, type PlanFilterUpdatedAt, type PostAgentsByIdCloneData, type PostAgentsByIdCloneError, type PostAgentsByIdCloneErrors, type PostAgentsByIdCloneResponse, type PostAgentsByIdCloneResponses, type PostAgentsByIdTestData, type PostAgentsByIdTestError, type PostAgentsByIdTestErrors, type PostAgentsByIdTestResponse, type PostAgentsByIdTestResponses, type PostAgentsByIdValidateData, type PostAgentsByIdValidateError, type PostAgentsByIdValidateErrors, type PostAgentsByIdValidateResponse, type PostAgentsByIdValidateResponses, type PostAgentsPredictData, type PostAgentsPredictError, type PostAgentsPredictErrors, type PostAgentsPredictResponse, type PostAgentsPredictResponses, 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 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 PostExtractionSchemasData, type PostExtractionSchemasError, type PostExtractionSchemasErrors, type PostExtractionSchemasResponse, type PostExtractionSchemasResponses, 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 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 PostTenantsByIdRemoveStorageData, type PostTenantsByIdRemoveStorageError, type PostTenantsByIdRemoveStorageErrors, type PostTenantsByIdRemoveStorageResponse, type PostTenantsByIdRemoveStorageResponses, type PostTenantsData, type PostTenantsError, type PostTenantsErrors, 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 PostWorkspacesData, type PostWorkspacesError, type PostWorkspacesErrors, type PostWorkspacesResponse, type PostWorkspacesResponses, type PresignedDownloadRequest, PresignedDownloadSchema, type PresignedUploadRequest, PresignedUploadSchema, type PresignedUrl, type PresignedUrlFilter, type PresignedUrlFilterExpiresIn, type PresignedUrlFilterHeaders, type PresignedUrlFilterId, type PresignedUrlFilterMethod, type PresignedUrlFilterStoragePath, type PresignedUrlFilterUploadUrl, type PresignedUrlFilterUrl, type PricingRule, type PricingRuleFilter, type PricingRuleFilterId, type PricingStrategy, type PricingStrategyFilter, type PricingStrategyFilterId, RateLimitError, type RegisterRequest, RegisterRequestSchema, type RetryConfig, type SavedSearch, type SavedSearchFilter, type SavedSearchFilterFilters, type SavedSearchFilterId, type SavedSearchFilterIsShared, type SavedSearchFilterName, type SavedSearchFilterQuery, type SavedSearchFilterSearchType, type Search, type SearchFilter, type SearchFilterId, type SearchRequest, SearchRequestSchema, type SemanticCacheEntry, type SemanticCacheEntryFilter, type SemanticCacheEntryFilterId, ServerError, type StorageStats, type StorageStatsFilter, type StorageStatsFilterId, type StorageStatsFilterTotalBuckets, type StorageStatsFilterTotalObjects, type StorageStatsFilterTotalStorageBytes, type StreamMessageChunk, type StreamOptions, type Subscription, type SubscriptionFilter, type SubscriptionFilterId, type Tenant, type TenantFilter, type TenantFilterBadgeUrl, type TenantFilterId, type TenantFilterKind, type TenantFilterLogoUrl, type TenantFilterName, type TenantFilterSlug, type TenantMembership, type TenantMembershipFilter, type TenantMembershipFilterRole, type TenantMembershipFilterTenantId, type TenantMembershipFilterUserId, type Thread, type ThreadCreateRequest, ThreadCreateSchema, type ThreadFilter, type ThreadFilterContextSummary, type ThreadFilterId, type ThreadFilterTitle, TimeoutError, type Token, type TokenFilter, type TokenFilterBrand, type TokenFilterExpMonth, type TokenFilterExpYear, type TokenFilterId, type TokenFilterLast4, type TokenFilterToken, type TrainingExample, type TrainingExampleFilter, type TrainingExampleFilterEmbedding, type TrainingExampleFilterId, type TrainingExampleFilterInputText, type TrainingExampleFilterOutputJson, type Transaction, type TransactionFilter, type TransactionFilterAmount, type TransactionFilterCreatedAt, type TransactionFilterCurrency, type TransactionFilterDescription, type TransactionFilterErrorMessage, type TransactionFilterId, type TransactionFilterProviderReference, type TransactionFilterServiceId, type TransactionFilterStatus, type TransactionFilterType, type TransactionFilterUpdatedAt, type User, type UserFilter, type UserFilterCurrentWorkspaceId, type UserFilterEmail, type UserFilterId, type UserFilterIsAppAdmin, type UserFilterIsPlatformAdmin, type UserProfile, type UserProfileFilter, type UserProfileFilterAvatarUrl, type UserProfileFilterBio, type UserProfileFilterFirstName, type UserProfileFilterId, type UserProfileFilterLastName, type UserProfileFilterPreferences, type UserProfileFilterSocialLinks, type UserProfileFilterUserId, ValidationError, type Wallet, type WalletFilter, type WalletFilterApplicationId, type WalletFilterCredits, type WalletFilterCreditsFree, type WalletFilterCreditsPaid, type WalletFilterCreditsSubscription, type WalletFilterId, type WalletFilterPlan, type WalletFilterStorageBlocksPurchased, type WalletFilterStorageQuotaBytes, type WalletFilterStorageUsedBytes, type WebhookConfig, type WebhookConfigFilter, type WebhookConfigFilterId, type WebhookDelivery, type WebhookDeliveryFilter, type WebhookDeliveryFilterId, type Workspace, type WorkspaceCreateRequest, WorkspaceCreateSchema, type WorkspaceFilter, type WorkspaceFilterApplicationId, type WorkspaceFilterArchivedAt, type WorkspaceFilterCreatedAt, type WorkspaceFilterDescription, type WorkspaceFilterExpiresAt, type WorkspaceFilterId, type WorkspaceFilterIsDefault, type WorkspaceFilterLowBalanceThreshold, type WorkspaceFilterName, type WorkspaceFilterRenewalParams, type WorkspaceFilterSlug, type WorkspaceFilterSpecialtyAgentId, type WorkspaceFilterUpdatedAt, type WorkspaceMembership, type WorkspaceMembershipFilter, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, calculateBackoff, client, collectStreamedMessage, deleteAiConversationsById, deleteAiGraphEdgesById, deleteAiGraphNodesById, deleteApiKeysById, deleteApplicationsById, deleteBucketsById, deleteExtractionDocumentsById, deleteExtractionSchemaFieldsById, deleteMessagesById, deleteNotificationPreferencesById, deleteObjectsById, deleteSearchSavedById, deleteTenantMembershipsByTenantIdByUserId, deleteTenantsById, deleteThreadsById, deleteTrainingExamplesById, deleteUserProfilesById, deleteWebhookConfigsById, deleteWorkspaceMembershipsByWorkspaceIdByUserId, deleteWorkspacesById, getAgents, getAgentsById, getAiChunksDocumentByDocumentId, getAiConversations, getAiConversationsById, getAiGraphEdges, getAiGraphNodes, getAiMessages, getApiKeys, getApiKeysById, getApplications, getApplicationsById, getApplicationsBySlugBySlug, getAuditLogs, getBuckets, getBucketsById, getBucketsByIdObjects, getBucketsByIdStats, getConfigs, getCreditPackages, getCreditPackagesById, getCreditPackagesSlugBySlug, getDocumentsStats, getExtractionDocuments, getExtractionDocumentsById, getExtractionDocumentsByIdStatus, getExtractionDocumentsWorkspaceByWorkspaceId, getExtractionResultsById, getExtractionResultsDocumentByDocumentId, getExtractionSchemaFields, getExtractionSchemaFieldsById, getExtractionSchemasById, getExtractionSchemasWorkspaceByWorkspaceId, getInvitations, getInvitationsConsumeByToken, getLlmAnalytics, getLlmAnalyticsById, getLlmAnalyticsCosts, getLlmAnalyticsPlatform, getLlmAnalyticsSummary, getLlmAnalyticsUsage, getLlmAnalyticsWorkspace, getMessages, getMessagesById, getMessagesSearch, getNotificationLogs, getNotificationLogsById, getNotificationPreferences, getNotificationPreferencesById, getObjects, getObjectsById, getPlans, getPlansById, getPlansSlugBySlug, getSearch, getSearchHealth, getSearchIndexes, getSearchSaved, getSearchSemantic, getSearchStats, getSearchStatus, getStorageStats, getTenantMemberships, getTenants, getTenantsById, getThreads, getThreadsById, getThreadsSearch, getTrainingExamples, getTrainingExamplesById, getTransactions, getTransactionsById, getUserProfiles, getUserProfilesById, getUserProfilesMe, getUsers, getUsersById, getUsersMe, getWallet, getWebhookConfigs, getWebhookConfigsById, getWebhookDeliveries, getWebhookDeliveriesById, getWorkspaceMemberships, getWorkspaces, getWorkspacesById, getWorkspacesMine, handleApiError, isRetryableError, paginateAll, paginateToArray, patchApiKeysById, patchApiKeysByIdAllocate, patchApiKeysByIdRevoke, patchApiKeysByIdRotate, patchApplicationsById, patchBucketsById, patchConfigsByKey, patchExtractionDocumentsByIdStatus, patchExtractionResultsByIdCorrections, patchExtractionResultsByIdRegenerate, patchExtractionSchemaFieldsById, patchExtractionSchemasById, patchInvitationsByIdAccept, patchInvitationsByIdResend, patchInvitationsByIdRevoke, patchMessagesById, patchNotificationPreferencesById, patchTenantMembershipsByTenantIdByUserId, patchTenantsById, patchThreadsById, patchTrainingExamplesById, patchUserProfilesById, patchUsersAuthResetPassword, patchUsersById, patchUsersByIdConfirmEmail, patchUsersByIdResetPassword, patchWalletAddons, patchWalletAddonsByAddonSlugCancel, patchWalletPlan, patchWebhookConfigsById, patchWorkspaceMembershipsByWorkspaceIdByUserId, patchWorkspacesById, patchWorkspacesByIdAllocate, postAgentsByIdClone, postAgentsByIdTest, postAgentsByIdValidate, postAgentsPredict, postAiChunksSearch, postAiConversations, postAiEmbed, postAiGraphEdges, postAiGraphNodes, postAiMessages, postAiSearch, postAiSearchAdvanced, postApiKeys, postApplications, postBuckets, postConfigs, postDocumentsBulkDelete, postDocumentsPresignedUpload, postExtractionDocumentsUpload, postExtractionResults, postExtractionSchemaFields, postExtractionSchemas, postInvitationsAcceptByToken, postInvitationsInvite, postLlmAnalytics, postMessages, postNotificationPreferences, postObjectsBulkDestroy, postObjectsRegister, postPayments, postSearchReindex, postSearchSaved, postStorageSignDownload, postStorageSignUpload, postTenantMemberships, postTenants, postTenantsByIdBuyStorage, postTenantsByIdRemoveStorage, postThreads, postThreadsActive, postThreadsByIdMessages, postThreadsByIdSummarize, postTokens, postTrainingExamples, postTrainingExamplesBulk, postTrainingExamplesBulkDelete, postUserProfiles, postUsersAuthConfirm, postUsersAuthLogin, postUsersAuthMagicLinkLogin, postUsersAuthMagicLinkRequest, postUsersAuthRegister, postUsersAuthRegisterWithOidc, postUsersRegisterIsv, postWebhookConfigs, postWebhookConfigsByIdTest, postWebhookDeliveriesByIdRetry, postWorkspaceMemberships, postWorkspaces, retryWithBackoff, sleep, streamMessage, streamSSE, withRetry };
|
|
24651
|
+
export { type Account, type AccountFilter, type AccountFilterId, type Agent, type AgentCreateRequest, AgentCreateSchema, type AgentFilter, type AgentFilterCapabilities, type AgentFilterDescription, type AgentFilterId, type AgentFilterIsSystem, type AgentFilterName, type AgentFilterSlug, type AgentFilterVersion, type AiConfig, type AiConfigFilter, type ApiKey, type ApiKeyAllocateRequest, ApiKeyAllocateSchema, type ApiKeyCreateRequest, ApiKeyCreateSchema, type ApiKeyFilter, type ApiKeyFilterApplicationId, type ApiKeyFilterExpiresAt, type ApiKeyFilterId, type ApiKeyFilterStatus, type ApiKeyFilterTenantId, type ApiKeyFilterUserId, type ApiKeyFilterWorkspaceId, type Application, type ApplicationCreateRequest, ApplicationCreateSchema, type ApplicationFilter, type ApplicationFilterDefaultFreeCredits, type ApplicationFilterDescription, type ApplicationFilterId, type ApplicationFilterName, type ApplicationFilterSlug, type AuditLog, type AuditLogFilter, type AuditLogFilterAction, type AuditLogFilterActorId, type AuditLogFilterChanges, type AuditLogFilterId, type AuditLogFilterResourceId, type AuditLogFilterResourceType, type AuditLogFilterTenantId, type AuditLogFilterWorkspaceId, AuthenticationError, AuthorizationError, type Bucket, type BucketCreateRequest, BucketCreateSchema, type BucketFilter, type BucketFilterId, type BucketFilterName, type BucketFilterRegion, type BucketFilterStorageUsed, type BucketFilterType, type ClientOptions$1 as ClientOptions, type Config$2 as Config, type ConfigFilter, type ConfigFilterDescription, type ConfigFilterKey, type ConfigFilterValue, type Conversation, type ConversationFilter, type ConversationFilterContextData, type ConversationFilterId, type ConversationFilterTenantId, type ConversationFilterTitle, type CreditPackage, type CreditPackageFilter, type CreditPackageFilterCreatedAt, type CreditPackageFilterCredits, type CreditPackageFilterId, type CreditPackageFilterName, type CreditPackageFilterPrice, type CreditPackageFilterSlug, type CreditPackageFilterUpdatedAt, type Customer, type CustomerFilter, type CustomerFilterId, DEFAULT_RETRY_CONFIG, 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 DeleteMessagesByIdData, type DeleteMessagesByIdError, type DeleteMessagesByIdErrors, type DeleteMessagesByIdResponses, 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 DocumentChunkFilter, type DocumentChunkFilterChunkIndex, type DocumentChunkFilterContent, type DocumentChunkFilterDocumentId, type DocumentChunkFilterEmbedding, type DocumentChunkFilterId, type DocumentStats, type DocumentStatsFilter, type DocumentStatsFilterCompleted, type DocumentStatsFilterFailed, type DocumentStatsFilterId, type DocumentStatsFilterPending, type DocumentStatsFilterProcessing, type DocumentStatsFilterTotal, type DocumentUploadBase64Request, DocumentUploadBase64Schema, type EmbedRequest, EmbedRequestSchema, type Embedding, type EmbeddingFilter, type EmbeddingFilterBilledCredits, type EmbeddingFilterEmbedding, type EmbeddingFilterId, type EmbeddingFilterModel, type EmbeddingFilterText, type EmbeddingFilterUsage, type ErrorResponse, type Errors, type ExtractionBatch, type ExtractionBatchFilter, type ExtractionBatchFilterId, type ExtractionBatchFilterName, type ExtractionBatchFilterStatus, type ExtractionBatchFilterUserLabel, type ExtractionDocument, type ExtractionDocumentFilter, type ExtractionDocumentFilterBilledCredits, type ExtractionDocumentFilterContent, type ExtractionDocumentFilterErrorMessage, type ExtractionDocumentFilterFileSizeBytes, type ExtractionDocumentFilterFileType, type ExtractionDocumentFilterFilename, type ExtractionDocumentFilterId, type ExtractionDocumentFilterPages, type ExtractionDocumentFilterPresignedViewUrl, type ExtractionDocumentFilterProgress, type ExtractionDocumentFilterStatus, type ExtractionDocumentFilterStoragePath, type ExtractionDocumentFilterUploadUrl, type ExtractionResult, type ExtractionResultFilter, type ExtractionResultFilterCreditsUsed, type ExtractionResultFilterExtractedFields, type ExtractionResultFilterExtractionMode, type ExtractionResultFilterId, type ExtractionResultFilterProcessingTimeMs, type ExtractionResultFilterStatus, type ExtractionResultFilterSummary, type ExtractionSchema, type ExtractionSchemaField, type ExtractionSchemaFieldFilter, type ExtractionSchemaFieldFilterExtractionHint, type ExtractionSchemaFieldFilterGroup, type ExtractionSchemaFieldFilterId, type ExtractionSchemaFieldFilterLabel, type ExtractionSchemaFieldFilterName, type ExtractionSchemaFieldFilterOrder, type ExtractionSchemaFieldFilterRequired, type ExtractionSchemaFieldFilterType, type ExtractionSchemaFilter, type ExtractionSchemaFilterId, type ExtractionSchemaFilterIsActive, type ExtractionSchemaFilterVersion, type GetAgentsByIdData, type GetAgentsByIdError, type GetAgentsByIdErrors, type GetAgentsByIdResponse, type GetAgentsByIdResponses, 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 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 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 GetExtractionSchemasWorkspaceByWorkspaceIdData, type GetExtractionSchemasWorkspaceByWorkspaceIdError, type GetExtractionSchemasWorkspaceByWorkspaceIdErrors, type GetExtractionSchemasWorkspaceByWorkspaceIdResponse, type GetExtractionSchemasWorkspaceByWorkspaceIdResponses, 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 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 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 GetWorkspacesData, type GetWorkspacesError, type GetWorkspacesErrors, type GetWorkspacesMineData, type GetWorkspacesMineError, type GetWorkspacesMineErrors, type GetWorkspacesMineResponse, type GetWorkspacesMineResponses, type GetWorkspacesResponse, type GetWorkspacesResponses, GptCoreError, type GraphEdge, type GraphEdgeFilter, type GraphEdgeFilterId, type GraphEdgeFilterProperties, type GraphEdgeFilterRelationship, type GraphEdgeFilterSourceId, type GraphEdgeFilterTargetId, type GraphNode, type GraphNodeFilter, type GraphNodeFilterId, type GraphNodeFilterLabel, type GraphNodeFilterProperties, type GraphNodeFilterTenantId, type Invitation, type InvitationCreateRequest, InvitationCreateSchema, type InvitationFilter, type InvitationFilterId, type Ledger, type LedgerFilter, type LedgerFilterId, type Link, type Links, type LlmAnalytics, type LlmAnalyticsFilter, type LlmAnalyticsFilterId, type LoginRequest, LoginRequestSchema, type Message, type MessageFilter, type MessageFilterContent, type MessageFilterId, type MessageFilterRole, type MessageSendRequest, MessageSendSchema, NetworkError, NotFoundError, type NotificationLog, type NotificationLogFilter, type NotificationLogFilterId, type NotificationPreference, type NotificationPreferenceFilter, type NotificationPreferenceFilterId, type ObjectFilter, type ObjectFilterContentType, type ObjectFilterId, type ObjectFilterKey, type ObjectFilterSizeBytes, type OperationSuccess, type OperationSuccessFilter, type OperationSuccessFilterId, type OperationSuccessFilterMessage, type OperationSuccessFilterSuccess, type Options, type PaginatedResponse, type PaginationLinks, type PaginationOptions, 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 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 PatchExtractionSchemasByIdData, type PatchExtractionSchemasByIdError, type PatchExtractionSchemasByIdErrors, 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 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 PatchUsersByIdConfirmEmailData, type PatchUsersByIdConfirmEmailError, type PatchUsersByIdConfirmEmailErrors, type PatchUsersByIdConfirmEmailResponse, type PatchUsersByIdConfirmEmailResponses, type PatchUsersByIdData, type PatchUsersByIdError, type PatchUsersByIdErrors, type PatchUsersByIdResetPasswordData, type PatchUsersByIdResetPasswordError, type PatchUsersByIdResetPasswordErrors, type PatchUsersByIdResetPasswordResponse, type PatchUsersByIdResetPasswordResponses, type PatchUsersByIdResponse, type PatchUsersByIdResponses, type PatchWalletAddonsByAddonSlugCancelData, type PatchWalletAddonsByAddonSlugCancelError, type PatchWalletAddonsByAddonSlugCancelErrors, type PatchWalletAddonsByAddonSlugCancelResponse, type PatchWalletAddonsByAddonSlugCancelResponses, type PatchWalletAddonsData, type PatchWalletAddonsError, type PatchWalletAddonsErrors, type PatchWalletAddonsResponse, type PatchWalletAddonsResponses, type PatchWalletPlanData, type PatchWalletPlanError, type PatchWalletPlanErrors, type PatchWalletPlanResponse, type PatchWalletPlanResponses, type PatchWebhookConfigsByIdData, type PatchWebhookConfigsByIdError, type PatchWebhookConfigsByIdErrors, type PatchWebhookConfigsByIdResponse, type PatchWebhookConfigsByIdResponses, 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 PaymentFilter, type PaymentFilterAmount, type PaymentFilterCreatedAt, type PaymentFilterCurrency, type PaymentFilterErrorMessage, type PaymentFilterId, type PaymentFilterProviderReference, type PaymentFilterStatus, type PaymentMethod, type PaymentMethodFilter, type PaymentMethodFilterId, type Plan, type PlanFilter, type PlanFilterCreatedAt, type PlanFilterId, type PlanFilterMonthlyCredits, type PlanFilterMonthlyPrice, type PlanFilterName, type PlanFilterSlug, type PlanFilterStorageDays, type PlanFilterType, type PlanFilterUpdatedAt, type PostAgentsByIdCloneData, type PostAgentsByIdCloneError, type PostAgentsByIdCloneErrors, type PostAgentsByIdCloneResponse, type PostAgentsByIdCloneResponses, type PostAgentsByIdTestData, type PostAgentsByIdTestError, type PostAgentsByIdTestErrors, type PostAgentsByIdTestResponse, type PostAgentsByIdTestResponses, type PostAgentsByIdValidateData, type PostAgentsByIdValidateError, type PostAgentsByIdValidateErrors, type PostAgentsByIdValidateResponse, type PostAgentsByIdValidateResponses, type PostAgentsPredictData, type PostAgentsPredictError, type PostAgentsPredictErrors, type PostAgentsPredictResponse, type PostAgentsPredictResponses, 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 PostExtractionDocumentsByIdViewData, type PostExtractionDocumentsByIdViewError, type PostExtractionDocumentsByIdViewErrors, type PostExtractionDocumentsByIdViewResponse, type PostExtractionDocumentsByIdViewResponses, 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 PostExtractionSchemasData, type PostExtractionSchemasError, type PostExtractionSchemasErrors, type PostExtractionSchemasResponse, type PostExtractionSchemasResponses, 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 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 PostTenantsByIdRemoveStorageData, type PostTenantsByIdRemoveStorageError, type PostTenantsByIdRemoveStorageErrors, type PostTenantsByIdRemoveStorageResponse, type PostTenantsByIdRemoveStorageResponses, type PostTenantsData, type PostTenantsError, type PostTenantsErrors, 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 PostWorkspacesData, type PostWorkspacesError, type PostWorkspacesErrors, type PostWorkspacesResponse, type PostWorkspacesResponses, type PresignedDownloadRequest, PresignedDownloadSchema, type PresignedUploadRequest, PresignedUploadSchema, type PresignedUrl, type PresignedUrlFilter, type PresignedUrlFilterExpiresIn, type PresignedUrlFilterHeaders, type PresignedUrlFilterId, type PresignedUrlFilterMethod, type PresignedUrlFilterStoragePath, type PresignedUrlFilterUploadUrl, type PresignedUrlFilterUrl, type PricingRule, type PricingRuleFilter, type PricingRuleFilterId, type PricingStrategy, type PricingStrategyFilter, type PricingStrategyFilterId, RateLimitError, type RegisterRequest, RegisterRequestSchema, type RetryConfig, type SavedSearch, type SavedSearchFilter, type SavedSearchFilterFilters, type SavedSearchFilterId, type SavedSearchFilterIsShared, type SavedSearchFilterName, type SavedSearchFilterQuery, type SavedSearchFilterSearchType, type Search, type SearchFilter, type SearchFilterId, type SearchRequest, SearchRequestSchema, type SemanticCacheEntry, type SemanticCacheEntryFilter, type SemanticCacheEntryFilterId, ServerError, type StorageStats, type StorageStatsFilter, type StorageStatsFilterId, type StorageStatsFilterTotalBuckets, type StorageStatsFilterTotalObjects, type StorageStatsFilterTotalStorageBytes, type StreamMessageChunk, type StreamOptions, type Subscription, type SubscriptionFilter, type SubscriptionFilterId, type Tenant, type TenantFilter, type TenantFilterBadgeUrl, type TenantFilterId, type TenantFilterKind, type TenantFilterLogoUrl, type TenantFilterName, type TenantFilterSlug, type TenantMembership, type TenantMembershipFilter, type TenantMembershipFilterRole, type TenantMembershipFilterTenantId, type TenantMembershipFilterUserId, type Thread, type ThreadCreateRequest, ThreadCreateSchema, type ThreadFilter, type ThreadFilterContextSummary, type ThreadFilterId, type ThreadFilterTitle, TimeoutError, type Token, type TokenFilter, type TokenFilterBrand, type TokenFilterExpMonth, type TokenFilterExpYear, type TokenFilterId, type TokenFilterLast4, type TokenFilterToken, type TrainingExample, type TrainingExampleFilter, type TrainingExampleFilterEmbedding, type TrainingExampleFilterId, type TrainingExampleFilterInputText, type TrainingExampleFilterOutputJson, type Transaction, type TransactionFilter, type TransactionFilterAmount, type TransactionFilterCreatedAt, type TransactionFilterCurrency, type TransactionFilterDescription, type TransactionFilterErrorMessage, type TransactionFilterId, type TransactionFilterProviderReference, type TransactionFilterServiceId, type TransactionFilterStatus, type TransactionFilterType, type TransactionFilterUpdatedAt, type User, type UserFilter, type UserFilterCurrentWorkspaceId, type UserFilterEmail, type UserFilterId, type UserFilterIsAppAdmin, type UserFilterIsPlatformAdmin, type UserProfile, type UserProfileFilter, type UserProfileFilterAvatarUrl, type UserProfileFilterBio, type UserProfileFilterFirstName, type UserProfileFilterId, type UserProfileFilterLastName, type UserProfileFilterPreferences, type UserProfileFilterSocialLinks, type UserProfileFilterUserId, ValidationError, type Wallet, type WalletFilter, type WalletFilterApplicationId, type WalletFilterCredits, type WalletFilterCreditsFree, type WalletFilterCreditsPaid, type WalletFilterCreditsSubscription, type WalletFilterId, type WalletFilterPlan, type WalletFilterStorageBlocksPurchased, type WalletFilterStorageQuotaBytes, type WalletFilterStorageUsedBytes, type WebhookConfig, type WebhookConfigFilter, type WebhookConfigFilterId, type WebhookDelivery, type WebhookDeliveryFilter, type WebhookDeliveryFilterId, type Workspace, type WorkspaceCreateRequest, WorkspaceCreateSchema, type WorkspaceFilter, type WorkspaceFilterApplicationId, type WorkspaceFilterArchivedAt, type WorkspaceFilterCreatedAt, type WorkspaceFilterDescription, type WorkspaceFilterExpiresAt, type WorkspaceFilterId, type WorkspaceFilterIsDefault, type WorkspaceFilterLowBalanceThreshold, type WorkspaceFilterName, type WorkspaceFilterRenewalParams, type WorkspaceFilterSlug, type WorkspaceFilterSpecialtyAgentId, type WorkspaceFilterTenantId, type WorkspaceFilterUpdatedAt, type WorkspaceMembership, type WorkspaceMembershipFilter, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, calculateBackoff, client, collectStreamedMessage, deleteAiConversationsById, deleteAiGraphEdgesById, deleteAiGraphNodesById, deleteApiKeysById, deleteApplicationsById, deleteBucketsById, deleteExtractionDocumentsById, deleteExtractionSchemaFieldsById, deleteMessagesById, deleteNotificationPreferencesById, deleteObjectsById, deleteSearchSavedById, deleteTenantMembershipsByTenantIdByUserId, deleteTenantsById, deleteThreadsById, deleteTrainingExamplesById, deleteUserProfilesById, deleteWebhookConfigsById, deleteWorkspaceMembershipsByWorkspaceIdByUserId, deleteWorkspacesById, getAgents, getAgentsById, getAiChunksDocumentByDocumentId, getAiConversations, getAiConversationsById, getAiGraphEdges, getAiGraphNodes, getAiMessages, getApiKeys, getApiKeysById, getApplications, getApplicationsById, getApplicationsBySlugBySlug, getAuditLogs, getBuckets, getBucketsById, getBucketsByIdObjects, getBucketsByIdStats, getConfigs, getCreditPackages, getCreditPackagesById, getCreditPackagesSlugBySlug, getDocumentsStats, getExtractionBatchesById, getExtractionBatchesWorkspaceByWorkspaceId, getExtractionDocuments, getExtractionDocumentsById, getExtractionDocumentsByIdStatus, getExtractionDocumentsWorkspaceByWorkspaceId, getExtractionResultsById, getExtractionResultsDocumentByDocumentId, getExtractionSchemaFields, getExtractionSchemaFieldsById, getExtractionSchemasById, getExtractionSchemasWorkspaceByWorkspaceId, getInvitations, getInvitationsConsumeByToken, getLlmAnalytics, getLlmAnalyticsById, getLlmAnalyticsCosts, getLlmAnalyticsPlatform, getLlmAnalyticsSummary, getLlmAnalyticsUsage, getLlmAnalyticsWorkspace, getMessages, getMessagesById, getMessagesSearch, getNotificationLogs, getNotificationLogsById, getNotificationPreferences, getNotificationPreferencesById, getObjects, getObjectsById, getPlans, getPlansById, getPlansSlugBySlug, getSearch, getSearchHealth, getSearchIndexes, getSearchSaved, getSearchSemantic, getSearchStats, getSearchStatus, getStorageStats, getTenantMemberships, getTenants, getTenantsById, getThreads, getThreadsById, getThreadsSearch, getTrainingExamples, getTrainingExamplesById, getTransactions, getTransactionsById, getUserProfiles, getUserProfilesById, getUserProfilesMe, getUsers, getUsersById, getUsersMe, getWallet, getWebhookConfigs, getWebhookConfigsById, getWebhookDeliveries, getWebhookDeliveriesById, getWorkspaceMemberships, getWorkspaces, getWorkspacesById, getWorkspacesMine, handleApiError, isRetryableError, paginateAll, paginateToArray, patchApiKeysById, patchApiKeysByIdAllocate, patchApiKeysByIdRevoke, patchApiKeysByIdRotate, patchApplicationsById, patchBucketsById, patchConfigsByKey, patchExtractionDocumentsByIdFinishUpload, patchExtractionDocumentsByIdStatus, patchExtractionResultsByIdCorrections, patchExtractionResultsByIdRegenerate, patchExtractionSchemaFieldsById, patchExtractionSchemasById, patchInvitationsByIdAccept, patchInvitationsByIdResend, patchInvitationsByIdRevoke, patchMessagesById, patchNotificationPreferencesById, patchTenantMembershipsByTenantIdByUserId, patchTenantsById, patchThreadsById, patchTrainingExamplesById, patchUserProfilesById, patchUsersAuthResetPassword, patchUsersById, patchUsersByIdConfirmEmail, patchUsersByIdResetPassword, patchWalletAddons, patchWalletAddonsByAddonSlugCancel, patchWalletPlan, patchWebhookConfigsById, patchWorkspaceMembershipsByWorkspaceIdByUserId, patchWorkspacesById, patchWorkspacesByIdAllocate, postAgentsByIdClone, postAgentsByIdTest, postAgentsByIdValidate, postAgentsPredict, postAiChunksSearch, postAiConversations, postAiEmbed, postAiGraphEdges, postAiGraphNodes, postAiMessages, postAiSearch, postAiSearchAdvanced, postApiKeys, postApplications, postBuckets, postConfigs, postDocumentsBulkDelete, postDocumentsPresignedUpload, postExtractionBatches, postExtractionDocumentsBeginUpload, postExtractionDocumentsByIdView, postExtractionDocumentsUpload, postExtractionResults, postExtractionSchemaFields, postExtractionSchemas, postInvitationsAcceptByToken, postInvitationsInvite, postLlmAnalytics, postMessages, postNotificationPreferences, postObjectsBulkDestroy, postObjectsRegister, postPayments, postSearchReindex, postSearchSaved, postStorageSignDownload, postStorageSignUpload, postTenantMemberships, postTenants, postTenantsByIdBuyStorage, postTenantsByIdRemoveStorage, postThreads, postThreadsActive, postThreadsByIdMessages, postThreadsByIdSummarize, postTokens, postTrainingExamples, postTrainingExamplesBulk, postTrainingExamplesBulkDelete, postUserProfiles, postUsersAuthConfirm, postUsersAuthLogin, postUsersAuthMagicLinkLogin, postUsersAuthMagicLinkRequest, postUsersAuthRegister, postUsersAuthRegisterWithOidc, postUsersRegisterIsv, postWebhookConfigs, postWebhookConfigsByIdTest, postWebhookDeliveriesByIdRetry, postWorkspaceMemberships, postWorkspaces, retryWithBackoff, sleep, streamMessage, streamSSE, withRetry };
|