@gpt-core/admin 0.8.27 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +909 -559
- package/dist/index.d.ts +909 -559
- package/llms.txt +4 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -43,8 +43,22 @@ type WorkspaceSettingsInputCreateType = {
|
|
|
43
43
|
} | unknown;
|
|
44
44
|
billing?: {
|
|
45
45
|
allow_overdraft?: boolean | unknown;
|
|
46
|
+
/**
|
|
47
|
+
* Maximum overdraft credits allowed per period
|
|
48
|
+
*/
|
|
46
49
|
overdraft_limit?: number | unknown;
|
|
50
|
+
/**
|
|
51
|
+
* Period for overdraft limit reset (daily, weekly, monthly)
|
|
52
|
+
*/
|
|
47
53
|
overdraft_period?: "daily" | "weekly" | "monthly" | unknown;
|
|
54
|
+
/**
|
|
55
|
+
* When the current overdraft period began
|
|
56
|
+
*/
|
|
57
|
+
overdraft_period_started_at?: unknown;
|
|
58
|
+
/**
|
|
59
|
+
* Credits used from overdraft in current period
|
|
60
|
+
*/
|
|
61
|
+
overdraft_used?: number | unknown;
|
|
48
62
|
} | unknown;
|
|
49
63
|
review_train?: {
|
|
50
64
|
confidence_threshold?: number | unknown;
|
|
@@ -411,6 +425,36 @@ type FieldMappingConfirmation = {
|
|
|
411
425
|
};
|
|
412
426
|
type: string;
|
|
413
427
|
};
|
|
428
|
+
type ApplicationOauthInputCreateType = {
|
|
429
|
+
/**
|
|
430
|
+
* Allowed OAuth callback URLs for this application
|
|
431
|
+
*/
|
|
432
|
+
callback_urls?: Array<string> | unknown;
|
|
433
|
+
/**
|
|
434
|
+
* Default callback URL if not specified in request
|
|
435
|
+
*/
|
|
436
|
+
default_callback_url?: string | unknown;
|
|
437
|
+
/**
|
|
438
|
+
* Which OAuth providers are enabled for this app
|
|
439
|
+
*/
|
|
440
|
+
enabled_providers?: Array<"google" | "github" | "salesforce"> | unknown;
|
|
441
|
+
/**
|
|
442
|
+
* Custom GitHub OAuth client ID (optional)
|
|
443
|
+
*/
|
|
444
|
+
github_client_id?: string | unknown;
|
|
445
|
+
/**
|
|
446
|
+
* Custom GitHub OAuth client secret (optional)
|
|
447
|
+
*/
|
|
448
|
+
github_client_secret?: string | unknown;
|
|
449
|
+
/**
|
|
450
|
+
* Custom Google OAuth client ID (optional)
|
|
451
|
+
*/
|
|
452
|
+
google_client_id?: string | unknown;
|
|
453
|
+
/**
|
|
454
|
+
* Custom Google OAuth client secret (optional)
|
|
455
|
+
*/
|
|
456
|
+
google_client_secret?: string | unknown;
|
|
457
|
+
};
|
|
414
458
|
/**
|
|
415
459
|
* A "Resource object" representing a training_session
|
|
416
460
|
*/
|
|
@@ -857,6 +901,93 @@ type Account = {
|
|
|
857
901
|
};
|
|
858
902
|
type: string;
|
|
859
903
|
};
|
|
904
|
+
type AgentVersionType = {
|
|
905
|
+
/**
|
|
906
|
+
* Field included by default.
|
|
907
|
+
*/
|
|
908
|
+
changes_summary?: string | null | unknown;
|
|
909
|
+
/**
|
|
910
|
+
* Field included by default.
|
|
911
|
+
*/
|
|
912
|
+
created_at: unknown;
|
|
913
|
+
/**
|
|
914
|
+
* Field included by default.
|
|
915
|
+
*/
|
|
916
|
+
fields?: Array<{
|
|
917
|
+
/**
|
|
918
|
+
* Field included by default.
|
|
919
|
+
*/
|
|
920
|
+
ai_hints?: string | null | unknown;
|
|
921
|
+
/**
|
|
922
|
+
* Field included by default.
|
|
923
|
+
*/
|
|
924
|
+
description?: string | null | unknown;
|
|
925
|
+
/**
|
|
926
|
+
* Whether this field is system-generated (e.g., _ai_suggestions) vs user-defined. Field included by default.
|
|
927
|
+
*/
|
|
928
|
+
is_system: boolean;
|
|
929
|
+
/**
|
|
930
|
+
* For array fields, specifies the type of items in the array. Field included by default.
|
|
931
|
+
*/
|
|
932
|
+
item_type?: "text" | "date" | "datetime" | "time" | "number" | "currency" | "boolean" | "email" | "phone" | "url" | "address" | "timestamp" | "alphanumeric_code" | unknown;
|
|
933
|
+
/**
|
|
934
|
+
* Field included by default.
|
|
935
|
+
*/
|
|
936
|
+
label?: string | null | unknown;
|
|
937
|
+
/**
|
|
938
|
+
* Field included by default.
|
|
939
|
+
*/
|
|
940
|
+
name: string;
|
|
941
|
+
/**
|
|
942
|
+
* Field included by default.
|
|
943
|
+
*/
|
|
944
|
+
order: number;
|
|
945
|
+
/**
|
|
946
|
+
* Field included by default.
|
|
947
|
+
*/
|
|
948
|
+
required: boolean;
|
|
949
|
+
/**
|
|
950
|
+
* Field included by default.
|
|
951
|
+
*/
|
|
952
|
+
type: "text" | "date" | "datetime" | "time" | "number" | "currency" | "boolean" | "email" | "phone" | "url" | "array" | "address" | "object" | "timestamp" | "alphanumeric_code";
|
|
953
|
+
}> | null | unknown;
|
|
954
|
+
/**
|
|
955
|
+
* Field included by default.
|
|
956
|
+
*/
|
|
957
|
+
has_been_used?: boolean | null | unknown;
|
|
958
|
+
/**
|
|
959
|
+
* Field included by default.
|
|
960
|
+
*/
|
|
961
|
+
id?: string | unknown;
|
|
962
|
+
/**
|
|
963
|
+
* Field included by default.
|
|
964
|
+
*/
|
|
965
|
+
is_active: boolean;
|
|
966
|
+
/**
|
|
967
|
+
* Field included by default.
|
|
968
|
+
*/
|
|
969
|
+
json_schema?: {
|
|
970
|
+
[key: string]: unknown;
|
|
971
|
+
} | null | unknown;
|
|
972
|
+
/**
|
|
973
|
+
* Field included by default.
|
|
974
|
+
*/
|
|
975
|
+
prompt_template: string;
|
|
976
|
+
/**
|
|
977
|
+
* Field included by default.
|
|
978
|
+
*/
|
|
979
|
+
schema_definition: {
|
|
980
|
+
[key: string]: unknown;
|
|
981
|
+
};
|
|
982
|
+
/**
|
|
983
|
+
* Field included by default.
|
|
984
|
+
*/
|
|
985
|
+
updated_at: unknown;
|
|
986
|
+
/**
|
|
987
|
+
* Field included by default.
|
|
988
|
+
*/
|
|
989
|
+
version_number: string;
|
|
990
|
+
};
|
|
860
991
|
/**
|
|
861
992
|
* A "Resource object" representing a payment_method
|
|
862
993
|
*/
|
|
@@ -1187,6 +1318,39 @@ type Application = {
|
|
|
1187
1318
|
* Field included by default.
|
|
1188
1319
|
*/
|
|
1189
1320
|
name: string;
|
|
1321
|
+
/**
|
|
1322
|
+
* OAuth configuration for this application. Field included by default.
|
|
1323
|
+
*/
|
|
1324
|
+
oauth?: {
|
|
1325
|
+
/**
|
|
1326
|
+
* Allowed OAuth callback URLs for this application. Field included by default.
|
|
1327
|
+
*/
|
|
1328
|
+
callback_urls?: Array<string> | null | unknown;
|
|
1329
|
+
/**
|
|
1330
|
+
* Default callback URL if not specified in request. Field included by default.
|
|
1331
|
+
*/
|
|
1332
|
+
default_callback_url?: string | null | unknown;
|
|
1333
|
+
/**
|
|
1334
|
+
* Which OAuth providers are enabled for this app. Field included by default.
|
|
1335
|
+
*/
|
|
1336
|
+
enabled_providers?: Array<"google" | "github" | "salesforce"> | null | unknown;
|
|
1337
|
+
/**
|
|
1338
|
+
* Custom GitHub OAuth client ID (optional). Field included by default.
|
|
1339
|
+
*/
|
|
1340
|
+
github_client_id?: string | null | unknown;
|
|
1341
|
+
/**
|
|
1342
|
+
* Custom GitHub OAuth client secret (optional). Field included by default.
|
|
1343
|
+
*/
|
|
1344
|
+
github_client_secret?: string | null | unknown;
|
|
1345
|
+
/**
|
|
1346
|
+
* Custom Google OAuth client ID (optional). Field included by default.
|
|
1347
|
+
*/
|
|
1348
|
+
google_client_id?: string | null | unknown;
|
|
1349
|
+
/**
|
|
1350
|
+
* Custom Google OAuth client secret (optional). Field included by default.
|
|
1351
|
+
*/
|
|
1352
|
+
google_client_secret?: string | null | unknown;
|
|
1353
|
+
} | null | unknown;
|
|
1190
1354
|
/**
|
|
1191
1355
|
* When true, password registration withholds JWT until email is verified. Field included by default.
|
|
1192
1356
|
*/
|
|
@@ -1319,7 +1483,7 @@ type ApiKey = {
|
|
|
1319
1483
|
*/
|
|
1320
1484
|
attributes?: {
|
|
1321
1485
|
/**
|
|
1322
|
-
* Field included by default.
|
|
1486
|
+
* Required - the application this API key belongs to. Field included by default.
|
|
1323
1487
|
*/
|
|
1324
1488
|
application_id: string;
|
|
1325
1489
|
/**
|
|
@@ -1644,8 +1808,22 @@ type WorkspaceSettingsInputUpdateType = {
|
|
|
1644
1808
|
} | unknown;
|
|
1645
1809
|
billing?: {
|
|
1646
1810
|
allow_overdraft?: boolean | unknown;
|
|
1811
|
+
/**
|
|
1812
|
+
* Maximum overdraft credits allowed per period
|
|
1813
|
+
*/
|
|
1647
1814
|
overdraft_limit?: number | unknown;
|
|
1815
|
+
/**
|
|
1816
|
+
* Period for overdraft limit reset (daily, weekly, monthly)
|
|
1817
|
+
*/
|
|
1648
1818
|
overdraft_period?: "daily" | "weekly" | "monthly" | unknown;
|
|
1819
|
+
/**
|
|
1820
|
+
* When the current overdraft period began
|
|
1821
|
+
*/
|
|
1822
|
+
overdraft_period_started_at?: unknown;
|
|
1823
|
+
/**
|
|
1824
|
+
* Credits used from overdraft in current period
|
|
1825
|
+
*/
|
|
1826
|
+
overdraft_used?: number | unknown;
|
|
1649
1827
|
} | unknown;
|
|
1650
1828
|
review_train?: {
|
|
1651
1829
|
confidence_threshold?: number | unknown;
|
|
@@ -2525,6 +2703,39 @@ type ApplicationType = {
|
|
|
2525
2703
|
* Field included by default.
|
|
2526
2704
|
*/
|
|
2527
2705
|
name: string;
|
|
2706
|
+
/**
|
|
2707
|
+
* OAuth configuration for this application. Field included by default.
|
|
2708
|
+
*/
|
|
2709
|
+
oauth?: {
|
|
2710
|
+
/**
|
|
2711
|
+
* Allowed OAuth callback URLs for this application. Field included by default.
|
|
2712
|
+
*/
|
|
2713
|
+
callback_urls?: Array<string> | null | unknown;
|
|
2714
|
+
/**
|
|
2715
|
+
* Default callback URL if not specified in request. Field included by default.
|
|
2716
|
+
*/
|
|
2717
|
+
default_callback_url?: string | null | unknown;
|
|
2718
|
+
/**
|
|
2719
|
+
* Which OAuth providers are enabled for this app. Field included by default.
|
|
2720
|
+
*/
|
|
2721
|
+
enabled_providers?: Array<"google" | "github" | "salesforce"> | null | unknown;
|
|
2722
|
+
/**
|
|
2723
|
+
* Custom GitHub OAuth client ID (optional). Field included by default.
|
|
2724
|
+
*/
|
|
2725
|
+
github_client_id?: string | null | unknown;
|
|
2726
|
+
/**
|
|
2727
|
+
* Custom GitHub OAuth client secret (optional). Field included by default.
|
|
2728
|
+
*/
|
|
2729
|
+
github_client_secret?: string | null | unknown;
|
|
2730
|
+
/**
|
|
2731
|
+
* Custom Google OAuth client ID (optional). Field included by default.
|
|
2732
|
+
*/
|
|
2733
|
+
google_client_id?: string | null | unknown;
|
|
2734
|
+
/**
|
|
2735
|
+
* Custom Google OAuth client secret (optional). Field included by default.
|
|
2736
|
+
*/
|
|
2737
|
+
google_client_secret?: string | null | unknown;
|
|
2738
|
+
} | null | unknown;
|
|
2528
2739
|
/**
|
|
2529
2740
|
* When true, password registration withholds JWT until email is verified. Field included by default.
|
|
2530
2741
|
*/
|
|
@@ -3590,6 +3801,36 @@ type Transfer = {
|
|
|
3590
3801
|
};
|
|
3591
3802
|
type: string;
|
|
3592
3803
|
};
|
|
3804
|
+
type ApplicationOauthInputUpdateType = {
|
|
3805
|
+
/**
|
|
3806
|
+
* Allowed OAuth callback URLs for this application
|
|
3807
|
+
*/
|
|
3808
|
+
callback_urls?: Array<string> | unknown;
|
|
3809
|
+
/**
|
|
3810
|
+
* Default callback URL if not specified in request
|
|
3811
|
+
*/
|
|
3812
|
+
default_callback_url?: string | unknown;
|
|
3813
|
+
/**
|
|
3814
|
+
* Which OAuth providers are enabled for this app
|
|
3815
|
+
*/
|
|
3816
|
+
enabled_providers?: Array<"google" | "github" | "salesforce"> | unknown;
|
|
3817
|
+
/**
|
|
3818
|
+
* Custom GitHub OAuth client ID (optional)
|
|
3819
|
+
*/
|
|
3820
|
+
github_client_id?: string | unknown;
|
|
3821
|
+
/**
|
|
3822
|
+
* Custom GitHub OAuth client secret (optional)
|
|
3823
|
+
*/
|
|
3824
|
+
github_client_secret?: string | unknown;
|
|
3825
|
+
/**
|
|
3826
|
+
* Custom Google OAuth client ID (optional)
|
|
3827
|
+
*/
|
|
3828
|
+
google_client_id?: string | unknown;
|
|
3829
|
+
/**
|
|
3830
|
+
* Custom Google OAuth client secret (optional)
|
|
3831
|
+
*/
|
|
3832
|
+
google_client_secret?: string | unknown;
|
|
3833
|
+
};
|
|
3593
3834
|
/**
|
|
3594
3835
|
* A "Resource object" representing a presigned_url
|
|
3595
3836
|
*/
|
|
@@ -4282,9 +4523,9 @@ type Workspace = {
|
|
|
4282
4523
|
*/
|
|
4283
4524
|
app: string;
|
|
4284
4525
|
/**
|
|
4285
|
-
* Field included by default.
|
|
4526
|
+
* Required - the application this workspace belongs to. Field included by default.
|
|
4286
4527
|
*/
|
|
4287
|
-
application_id
|
|
4528
|
+
application_id: string;
|
|
4288
4529
|
/**
|
|
4289
4530
|
* Field included by default.
|
|
4290
4531
|
*/
|
|
@@ -4365,13 +4606,21 @@ type Workspace = {
|
|
|
4365
4606
|
*/
|
|
4366
4607
|
allow_overdraft: boolean;
|
|
4367
4608
|
/**
|
|
4368
|
-
* Field included by default.
|
|
4609
|
+
* Maximum overdraft credits allowed per period. Field included by default.
|
|
4369
4610
|
*/
|
|
4370
4611
|
overdraft_limit?: number | null | unknown;
|
|
4371
4612
|
/**
|
|
4372
|
-
* Field included by default.
|
|
4613
|
+
* Period for overdraft limit reset (daily, weekly, monthly). Field included by default.
|
|
4373
4614
|
*/
|
|
4374
4615
|
overdraft_period?: "daily" | "weekly" | "monthly" | unknown;
|
|
4616
|
+
/**
|
|
4617
|
+
* When the current overdraft period began. Field included by default.
|
|
4618
|
+
*/
|
|
4619
|
+
overdraft_period_started_at?: unknown;
|
|
4620
|
+
/**
|
|
4621
|
+
* Credits used from overdraft in current period. Field included by default.
|
|
4622
|
+
*/
|
|
4623
|
+
overdraft_used?: number | null | unknown;
|
|
4375
4624
|
};
|
|
4376
4625
|
/**
|
|
4377
4626
|
* Field included by default.
|
|
@@ -4963,7 +5212,10 @@ type PostAdminWorkspacesData = {
|
|
|
4963
5212
|
* App type: extract, invoicing, crm, etc.
|
|
4964
5213
|
*/
|
|
4965
5214
|
app?: string | unknown;
|
|
4966
|
-
|
|
5215
|
+
/**
|
|
5216
|
+
* Required - the application this workspace belongs to
|
|
5217
|
+
*/
|
|
5218
|
+
application_id: string;
|
|
4967
5219
|
description?: string | unknown;
|
|
4968
5220
|
expires_at?: unknown;
|
|
4969
5221
|
initial_credits?: number | unknown;
|
|
@@ -5446,6 +5698,10 @@ type PostAdminApplicationsData = {
|
|
|
5446
5698
|
invite_only?: boolean | unknown;
|
|
5447
5699
|
logo_url?: string | unknown;
|
|
5448
5700
|
name: string;
|
|
5701
|
+
/**
|
|
5702
|
+
* OAuth configuration for this application
|
|
5703
|
+
*/
|
|
5704
|
+
oauth?: ApplicationOauthInputCreateType | unknown;
|
|
5449
5705
|
owner_id?: string | unknown;
|
|
5450
5706
|
/**
|
|
5451
5707
|
* When true, password registration withholds JWT until email is verified
|
|
@@ -6744,6 +7000,9 @@ type PatchAdminWorkspacesByIdData = {
|
|
|
6744
7000
|
body?: {
|
|
6745
7001
|
data: {
|
|
6746
7002
|
attributes?: {
|
|
7003
|
+
/**
|
|
7004
|
+
* Required - the application this workspace belongs to
|
|
7005
|
+
*/
|
|
6747
7006
|
application_id?: string | unknown;
|
|
6748
7007
|
is_default?: boolean | unknown;
|
|
6749
7008
|
low_balance_threshold?: number | unknown;
|
|
@@ -8202,71 +8461,22 @@ type GetAdminWorkspacesSharedResponses = {
|
|
|
8202
8461
|
};
|
|
8203
8462
|
};
|
|
8204
8463
|
type GetAdminWorkspacesSharedResponse = GetAdminWorkspacesSharedResponses[keyof GetAdminWorkspacesSharedResponses];
|
|
8205
|
-
type
|
|
8206
|
-
body?: never;
|
|
8207
|
-
headers: {
|
|
8208
|
-
/**
|
|
8209
|
-
* Application ID for authentication and routing
|
|
8210
|
-
*/
|
|
8211
|
-
"x-application-key": string;
|
|
8212
|
-
};
|
|
8213
|
-
path?: never;
|
|
8214
|
-
query?: never;
|
|
8215
|
-
url: "/admin/notification_logs/stats";
|
|
8216
|
-
};
|
|
8217
|
-
type GetAdminNotificationLogsStatsErrors = {
|
|
8218
|
-
/**
|
|
8219
|
-
* Bad Request - Invalid input data or malformed request
|
|
8220
|
-
*/
|
|
8221
|
-
400: ErrorResponse;
|
|
8222
|
-
/**
|
|
8223
|
-
* Unauthorized - Missing or invalid authentication token
|
|
8224
|
-
*/
|
|
8225
|
-
401: ErrorResponse;
|
|
8226
|
-
/**
|
|
8227
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
8228
|
-
*/
|
|
8229
|
-
403: ErrorResponse;
|
|
8230
|
-
/**
|
|
8231
|
-
* Not Found - Resource does not exist
|
|
8232
|
-
*/
|
|
8233
|
-
404: ErrorResponse;
|
|
8234
|
-
/**
|
|
8235
|
-
* Too Many Requests - Rate limit exceeded
|
|
8236
|
-
*/
|
|
8237
|
-
429: ErrorResponse;
|
|
8238
|
-
/**
|
|
8239
|
-
* Internal Server Error - Unexpected server error
|
|
8240
|
-
*/
|
|
8241
|
-
500: ErrorResponse;
|
|
8242
|
-
/**
|
|
8243
|
-
* General Error
|
|
8244
|
-
*/
|
|
8245
|
-
default: Errors;
|
|
8246
|
-
};
|
|
8247
|
-
type GetAdminNotificationLogsStatsError = GetAdminNotificationLogsStatsErrors[keyof GetAdminNotificationLogsStatsErrors];
|
|
8248
|
-
type GetAdminNotificationLogsStatsResponses = {
|
|
8464
|
+
type PatchAdminExtractionResultsByIdSaveCorrectionsData = {
|
|
8249
8465
|
/**
|
|
8250
|
-
*
|
|
8251
|
-
*/
|
|
8252
|
-
200: {
|
|
8253
|
-
[key: string]: unknown;
|
|
8254
|
-
};
|
|
8255
|
-
};
|
|
8256
|
-
type GetAdminNotificationLogsStatsResponse = GetAdminNotificationLogsStatsResponses[keyof GetAdminNotificationLogsStatsResponses];
|
|
8257
|
-
type PostAdminObjectsBulkDestroyData = {
|
|
8258
|
-
/**
|
|
8259
|
-
* Request body for the /objects/bulk-destroy operation on object resource
|
|
8466
|
+
* Request body for the /extraction/results/:id/save_corrections operation on extraction_result resource
|
|
8260
8467
|
*/
|
|
8261
8468
|
body: {
|
|
8262
8469
|
data: {
|
|
8263
8470
|
attributes?: {
|
|
8264
|
-
|
|
8471
|
+
corrections: Array<{
|
|
8472
|
+
[key: string]: unknown;
|
|
8473
|
+
}>;
|
|
8265
8474
|
};
|
|
8475
|
+
id: string;
|
|
8266
8476
|
relationships?: {
|
|
8267
8477
|
[key: string]: never;
|
|
8268
8478
|
};
|
|
8269
|
-
type?: "
|
|
8479
|
+
type?: "extraction_result";
|
|
8270
8480
|
};
|
|
8271
8481
|
};
|
|
8272
8482
|
headers: {
|
|
@@ -8275,7 +8485,9 @@ type PostAdminObjectsBulkDestroyData = {
|
|
|
8275
8485
|
*/
|
|
8276
8486
|
"x-application-key": string;
|
|
8277
8487
|
};
|
|
8278
|
-
path
|
|
8488
|
+
path: {
|
|
8489
|
+
id: string;
|
|
8490
|
+
};
|
|
8279
8491
|
query?: {
|
|
8280
8492
|
/**
|
|
8281
8493
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -8288,9 +8500,9 @@ type PostAdminObjectsBulkDestroyData = {
|
|
|
8288
8500
|
[key: string]: unknown;
|
|
8289
8501
|
};
|
|
8290
8502
|
};
|
|
8291
|
-
url: "/admin/
|
|
8503
|
+
url: "/admin/extraction/results/{id}/save_corrections";
|
|
8292
8504
|
};
|
|
8293
|
-
type
|
|
8505
|
+
type PatchAdminExtractionResultsByIdSaveCorrectionsErrors = {
|
|
8294
8506
|
/**
|
|
8295
8507
|
* Bad Request - Invalid input data or malformed request
|
|
8296
8508
|
*/
|
|
@@ -8320,21 +8532,21 @@ type PostAdminObjectsBulkDestroyErrors = {
|
|
|
8320
8532
|
*/
|
|
8321
8533
|
default: Errors;
|
|
8322
8534
|
};
|
|
8323
|
-
type
|
|
8324
|
-
type
|
|
8535
|
+
type PatchAdminExtractionResultsByIdSaveCorrectionsError = PatchAdminExtractionResultsByIdSaveCorrectionsErrors[keyof PatchAdminExtractionResultsByIdSaveCorrectionsErrors];
|
|
8536
|
+
type PatchAdminExtractionResultsByIdSaveCorrectionsResponses = {
|
|
8325
8537
|
/**
|
|
8326
8538
|
* Success
|
|
8327
8539
|
*/
|
|
8328
|
-
|
|
8329
|
-
data?:
|
|
8540
|
+
200: {
|
|
8541
|
+
data?: ExtractionResult;
|
|
8330
8542
|
included?: Array<unknown>;
|
|
8331
8543
|
meta?: {
|
|
8332
8544
|
[key: string]: unknown;
|
|
8333
8545
|
};
|
|
8334
8546
|
};
|
|
8335
8547
|
};
|
|
8336
|
-
type
|
|
8337
|
-
type
|
|
8548
|
+
type PatchAdminExtractionResultsByIdSaveCorrectionsResponse = PatchAdminExtractionResultsByIdSaveCorrectionsResponses[keyof PatchAdminExtractionResultsByIdSaveCorrectionsResponses];
|
|
8549
|
+
type GetAdminNotificationLogsStatsData = {
|
|
8338
8550
|
body?: never;
|
|
8339
8551
|
headers: {
|
|
8340
8552
|
/**
|
|
@@ -8343,37 +8555,169 @@ type GetAdminIsvSettlementsData = {
|
|
|
8343
8555
|
"x-application-key": string;
|
|
8344
8556
|
};
|
|
8345
8557
|
path?: never;
|
|
8346
|
-
query?:
|
|
8347
|
-
|
|
8348
|
-
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
8349
|
-
*/
|
|
8350
|
-
filter?: {
|
|
8351
|
-
[key: string]: unknown;
|
|
8352
|
-
};
|
|
8353
|
-
/**
|
|
8354
|
-
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
8355
|
-
*/
|
|
8356
|
-
sort?: string;
|
|
8357
|
-
/**
|
|
8358
|
-
* JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
|
|
8359
|
-
*/
|
|
8360
|
-
page?: {
|
|
8361
|
-
[key: string]: unknown;
|
|
8362
|
-
};
|
|
8363
|
-
/**
|
|
8364
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
8365
|
-
*/
|
|
8366
|
-
include?: string;
|
|
8367
|
-
/**
|
|
8368
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
8369
|
-
*/
|
|
8370
|
-
fields?: {
|
|
8371
|
-
[key: string]: unknown;
|
|
8372
|
-
};
|
|
8373
|
-
};
|
|
8374
|
-
url: "/admin/isv_settlements";
|
|
8558
|
+
query?: never;
|
|
8559
|
+
url: "/admin/notification_logs/stats";
|
|
8375
8560
|
};
|
|
8376
|
-
type
|
|
8561
|
+
type GetAdminNotificationLogsStatsErrors = {
|
|
8562
|
+
/**
|
|
8563
|
+
* Bad Request - Invalid input data or malformed request
|
|
8564
|
+
*/
|
|
8565
|
+
400: ErrorResponse;
|
|
8566
|
+
/**
|
|
8567
|
+
* Unauthorized - Missing or invalid authentication token
|
|
8568
|
+
*/
|
|
8569
|
+
401: ErrorResponse;
|
|
8570
|
+
/**
|
|
8571
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
8572
|
+
*/
|
|
8573
|
+
403: ErrorResponse;
|
|
8574
|
+
/**
|
|
8575
|
+
* Not Found - Resource does not exist
|
|
8576
|
+
*/
|
|
8577
|
+
404: ErrorResponse;
|
|
8578
|
+
/**
|
|
8579
|
+
* Too Many Requests - Rate limit exceeded
|
|
8580
|
+
*/
|
|
8581
|
+
429: ErrorResponse;
|
|
8582
|
+
/**
|
|
8583
|
+
* Internal Server Error - Unexpected server error
|
|
8584
|
+
*/
|
|
8585
|
+
500: ErrorResponse;
|
|
8586
|
+
/**
|
|
8587
|
+
* General Error
|
|
8588
|
+
*/
|
|
8589
|
+
default: Errors;
|
|
8590
|
+
};
|
|
8591
|
+
type GetAdminNotificationLogsStatsError = GetAdminNotificationLogsStatsErrors[keyof GetAdminNotificationLogsStatsErrors];
|
|
8592
|
+
type GetAdminNotificationLogsStatsResponses = {
|
|
8593
|
+
/**
|
|
8594
|
+
* Success
|
|
8595
|
+
*/
|
|
8596
|
+
200: {
|
|
8597
|
+
[key: string]: unknown;
|
|
8598
|
+
};
|
|
8599
|
+
};
|
|
8600
|
+
type GetAdminNotificationLogsStatsResponse = GetAdminNotificationLogsStatsResponses[keyof GetAdminNotificationLogsStatsResponses];
|
|
8601
|
+
type PostAdminObjectsBulkDestroyData = {
|
|
8602
|
+
/**
|
|
8603
|
+
* Request body for the /objects/bulk-destroy operation on object resource
|
|
8604
|
+
*/
|
|
8605
|
+
body: {
|
|
8606
|
+
data: {
|
|
8607
|
+
attributes?: {
|
|
8608
|
+
ids: Array<string>;
|
|
8609
|
+
};
|
|
8610
|
+
relationships?: {
|
|
8611
|
+
[key: string]: never;
|
|
8612
|
+
};
|
|
8613
|
+
type?: "object";
|
|
8614
|
+
};
|
|
8615
|
+
};
|
|
8616
|
+
headers: {
|
|
8617
|
+
/**
|
|
8618
|
+
* Application ID for authentication and routing
|
|
8619
|
+
*/
|
|
8620
|
+
"x-application-key": string;
|
|
8621
|
+
};
|
|
8622
|
+
path?: never;
|
|
8623
|
+
query?: {
|
|
8624
|
+
/**
|
|
8625
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
8626
|
+
*/
|
|
8627
|
+
include?: string;
|
|
8628
|
+
/**
|
|
8629
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
8630
|
+
*/
|
|
8631
|
+
fields?: {
|
|
8632
|
+
[key: string]: unknown;
|
|
8633
|
+
};
|
|
8634
|
+
};
|
|
8635
|
+
url: "/admin/objects/bulk-destroy";
|
|
8636
|
+
};
|
|
8637
|
+
type PostAdminObjectsBulkDestroyErrors = {
|
|
8638
|
+
/**
|
|
8639
|
+
* Bad Request - Invalid input data or malformed request
|
|
8640
|
+
*/
|
|
8641
|
+
400: ErrorResponse;
|
|
8642
|
+
/**
|
|
8643
|
+
* Unauthorized - Missing or invalid authentication token
|
|
8644
|
+
*/
|
|
8645
|
+
401: ErrorResponse;
|
|
8646
|
+
/**
|
|
8647
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
8648
|
+
*/
|
|
8649
|
+
403: ErrorResponse;
|
|
8650
|
+
/**
|
|
8651
|
+
* Not Found - Resource does not exist
|
|
8652
|
+
*/
|
|
8653
|
+
404: ErrorResponse;
|
|
8654
|
+
/**
|
|
8655
|
+
* Too Many Requests - Rate limit exceeded
|
|
8656
|
+
*/
|
|
8657
|
+
429: ErrorResponse;
|
|
8658
|
+
/**
|
|
8659
|
+
* Internal Server Error - Unexpected server error
|
|
8660
|
+
*/
|
|
8661
|
+
500: ErrorResponse;
|
|
8662
|
+
/**
|
|
8663
|
+
* General Error
|
|
8664
|
+
*/
|
|
8665
|
+
default: Errors;
|
|
8666
|
+
};
|
|
8667
|
+
type PostAdminObjectsBulkDestroyError = PostAdminObjectsBulkDestroyErrors[keyof PostAdminObjectsBulkDestroyErrors];
|
|
8668
|
+
type PostAdminObjectsBulkDestroyResponses = {
|
|
8669
|
+
/**
|
|
8670
|
+
* Success
|
|
8671
|
+
*/
|
|
8672
|
+
201: {
|
|
8673
|
+
data?: _Object;
|
|
8674
|
+
included?: Array<unknown>;
|
|
8675
|
+
meta?: {
|
|
8676
|
+
[key: string]: unknown;
|
|
8677
|
+
};
|
|
8678
|
+
};
|
|
8679
|
+
};
|
|
8680
|
+
type PostAdminObjectsBulkDestroyResponse = PostAdminObjectsBulkDestroyResponses[keyof PostAdminObjectsBulkDestroyResponses];
|
|
8681
|
+
type GetAdminIsvSettlementsData = {
|
|
8682
|
+
body?: never;
|
|
8683
|
+
headers: {
|
|
8684
|
+
/**
|
|
8685
|
+
* Application ID for authentication and routing
|
|
8686
|
+
*/
|
|
8687
|
+
"x-application-key": string;
|
|
8688
|
+
};
|
|
8689
|
+
path?: never;
|
|
8690
|
+
query?: {
|
|
8691
|
+
/**
|
|
8692
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
8693
|
+
*/
|
|
8694
|
+
filter?: {
|
|
8695
|
+
[key: string]: unknown;
|
|
8696
|
+
};
|
|
8697
|
+
/**
|
|
8698
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
8699
|
+
*/
|
|
8700
|
+
sort?: string;
|
|
8701
|
+
/**
|
|
8702
|
+
* JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
|
|
8703
|
+
*/
|
|
8704
|
+
page?: {
|
|
8705
|
+
[key: string]: unknown;
|
|
8706
|
+
};
|
|
8707
|
+
/**
|
|
8708
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
8709
|
+
*/
|
|
8710
|
+
include?: string;
|
|
8711
|
+
/**
|
|
8712
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
8713
|
+
*/
|
|
8714
|
+
fields?: {
|
|
8715
|
+
[key: string]: unknown;
|
|
8716
|
+
};
|
|
8717
|
+
};
|
|
8718
|
+
url: "/admin/isv_settlements";
|
|
8719
|
+
};
|
|
8720
|
+
type GetAdminIsvSettlementsErrors = {
|
|
8377
8721
|
/**
|
|
8378
8722
|
* Bad Request - Invalid input data or malformed request
|
|
8379
8723
|
*/
|
|
@@ -12514,7 +12858,7 @@ type PostAdminTenantsResponses = {
|
|
|
12514
12858
|
};
|
|
12515
12859
|
};
|
|
12516
12860
|
type PostAdminTenantsResponse = PostAdminTenantsResponses[keyof PostAdminTenantsResponses];
|
|
12517
|
-
type
|
|
12861
|
+
type DeleteAdminExtractionResultsByIdData = {
|
|
12518
12862
|
body?: never;
|
|
12519
12863
|
headers: {
|
|
12520
12864
|
/**
|
|
@@ -12539,7 +12883,7 @@ type GetAdminExtractionResultsByIdData = {
|
|
|
12539
12883
|
};
|
|
12540
12884
|
url: "/admin/extraction/results/{id}";
|
|
12541
12885
|
};
|
|
12542
|
-
type
|
|
12886
|
+
type DeleteAdminExtractionResultsByIdErrors = {
|
|
12543
12887
|
/**
|
|
12544
12888
|
* Bad Request - Invalid input data or malformed request
|
|
12545
12889
|
*/
|
|
@@ -12569,43 +12913,24 @@ type GetAdminExtractionResultsByIdErrors = {
|
|
|
12569
12913
|
*/
|
|
12570
12914
|
default: Errors;
|
|
12571
12915
|
};
|
|
12572
|
-
type
|
|
12573
|
-
type
|
|
12916
|
+
type DeleteAdminExtractionResultsByIdError = DeleteAdminExtractionResultsByIdErrors[keyof DeleteAdminExtractionResultsByIdErrors];
|
|
12917
|
+
type DeleteAdminExtractionResultsByIdResponses = {
|
|
12574
12918
|
/**
|
|
12575
|
-
*
|
|
12919
|
+
* Deleted successfully
|
|
12576
12920
|
*/
|
|
12577
|
-
200:
|
|
12578
|
-
data?: ExtractionResult;
|
|
12579
|
-
included?: Array<unknown>;
|
|
12580
|
-
meta?: {
|
|
12581
|
-
[key: string]: unknown;
|
|
12582
|
-
};
|
|
12583
|
-
};
|
|
12921
|
+
200: unknown;
|
|
12584
12922
|
};
|
|
12585
|
-
type
|
|
12586
|
-
|
|
12587
|
-
/**
|
|
12588
|
-
* Request body for the /users/auth/confirm operation on user resource
|
|
12589
|
-
*/
|
|
12590
|
-
body: {
|
|
12591
|
-
data: {
|
|
12592
|
-
attributes?: {
|
|
12593
|
-
confirmation_token: string;
|
|
12594
|
-
email: string;
|
|
12595
|
-
};
|
|
12596
|
-
relationships?: {
|
|
12597
|
-
[key: string]: never;
|
|
12598
|
-
};
|
|
12599
|
-
type?: "user";
|
|
12600
|
-
};
|
|
12601
|
-
};
|
|
12923
|
+
type GetAdminExtractionResultsByIdData = {
|
|
12924
|
+
body?: never;
|
|
12602
12925
|
headers: {
|
|
12603
12926
|
/**
|
|
12604
12927
|
* Application ID for authentication and routing
|
|
12605
12928
|
*/
|
|
12606
12929
|
"x-application-key": string;
|
|
12607
12930
|
};
|
|
12608
|
-
path
|
|
12931
|
+
path: {
|
|
12932
|
+
id: string;
|
|
12933
|
+
};
|
|
12609
12934
|
query?: {
|
|
12610
12935
|
/**
|
|
12611
12936
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -12618,9 +12943,9 @@ type PostAdminUsersAuthConfirmData = {
|
|
|
12618
12943
|
[key: string]: unknown;
|
|
12619
12944
|
};
|
|
12620
12945
|
};
|
|
12621
|
-
url: "/admin/
|
|
12946
|
+
url: "/admin/extraction/results/{id}";
|
|
12622
12947
|
};
|
|
12623
|
-
type
|
|
12948
|
+
type GetAdminExtractionResultsByIdErrors = {
|
|
12624
12949
|
/**
|
|
12625
12950
|
* Bad Request - Invalid input data or malformed request
|
|
12626
12951
|
*/
|
|
@@ -12650,22 +12975,41 @@ type PostAdminUsersAuthConfirmErrors = {
|
|
|
12650
12975
|
*/
|
|
12651
12976
|
default: Errors;
|
|
12652
12977
|
};
|
|
12653
|
-
type
|
|
12654
|
-
type
|
|
12978
|
+
type GetAdminExtractionResultsByIdError = GetAdminExtractionResultsByIdErrors[keyof GetAdminExtractionResultsByIdErrors];
|
|
12979
|
+
type GetAdminExtractionResultsByIdResponses = {
|
|
12655
12980
|
/**
|
|
12656
12981
|
* Success
|
|
12657
12982
|
*/
|
|
12658
|
-
|
|
12659
|
-
data?:
|
|
12983
|
+
200: {
|
|
12984
|
+
data?: ExtractionResult;
|
|
12660
12985
|
included?: Array<unknown>;
|
|
12661
12986
|
meta?: {
|
|
12662
12987
|
[key: string]: unknown;
|
|
12663
12988
|
};
|
|
12664
12989
|
};
|
|
12665
12990
|
};
|
|
12666
|
-
type
|
|
12667
|
-
type
|
|
12668
|
-
|
|
12991
|
+
type GetAdminExtractionResultsByIdResponse = GetAdminExtractionResultsByIdResponses[keyof GetAdminExtractionResultsByIdResponses];
|
|
12992
|
+
type PatchAdminExtractionResultsByIdData = {
|
|
12993
|
+
/**
|
|
12994
|
+
* Request body for the /extraction/results/:id operation on extraction_result resource
|
|
12995
|
+
*/
|
|
12996
|
+
body?: {
|
|
12997
|
+
data: {
|
|
12998
|
+
attributes?: {
|
|
12999
|
+
credits_used?: string | unknown;
|
|
13000
|
+
extracted_fields?: {
|
|
13001
|
+
[key: string]: unknown;
|
|
13002
|
+
} | unknown;
|
|
13003
|
+
processing_time_ms?: number | unknown;
|
|
13004
|
+
status?: "pending" | "completed" | "failed" | unknown;
|
|
13005
|
+
};
|
|
13006
|
+
id: string;
|
|
13007
|
+
relationships?: {
|
|
13008
|
+
[key: string]: never;
|
|
13009
|
+
};
|
|
13010
|
+
type?: "extraction_result";
|
|
13011
|
+
};
|
|
13012
|
+
};
|
|
12669
13013
|
headers: {
|
|
12670
13014
|
/**
|
|
12671
13015
|
* Application ID for authentication and routing
|
|
@@ -12673,16 +13017,23 @@ type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateData = {
|
|
|
12673
13017
|
"x-application-key": string;
|
|
12674
13018
|
};
|
|
12675
13019
|
path: {
|
|
12676
|
-
|
|
13020
|
+
id: string;
|
|
13021
|
+
};
|
|
13022
|
+
query?: {
|
|
12677
13023
|
/**
|
|
12678
|
-
*
|
|
13024
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
12679
13025
|
*/
|
|
12680
|
-
|
|
13026
|
+
include?: string;
|
|
13027
|
+
/**
|
|
13028
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
13029
|
+
*/
|
|
13030
|
+
fields?: {
|
|
13031
|
+
[key: string]: unknown;
|
|
13032
|
+
};
|
|
12681
13033
|
};
|
|
12682
|
-
|
|
12683
|
-
url: "/admin/agents/{id}/schema_versions/{version_id}/activate";
|
|
13034
|
+
url: "/admin/extraction/results/{id}";
|
|
12684
13035
|
};
|
|
12685
|
-
type
|
|
13036
|
+
type PatchAdminExtractionResultsByIdErrors = {
|
|
12686
13037
|
/**
|
|
12687
13038
|
* Bad Request - Invalid input data or malformed request
|
|
12688
13039
|
*/
|
|
@@ -12712,30 +13063,34 @@ type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateErrors = {
|
|
|
12712
13063
|
*/
|
|
12713
13064
|
default: Errors;
|
|
12714
13065
|
};
|
|
12715
|
-
type
|
|
12716
|
-
type
|
|
13066
|
+
type PatchAdminExtractionResultsByIdError = PatchAdminExtractionResultsByIdErrors[keyof PatchAdminExtractionResultsByIdErrors];
|
|
13067
|
+
type PatchAdminExtractionResultsByIdResponses = {
|
|
12717
13068
|
/**
|
|
12718
13069
|
* Success
|
|
12719
13070
|
*/
|
|
12720
|
-
|
|
12721
|
-
|
|
13071
|
+
200: {
|
|
13072
|
+
data?: ExtractionResult;
|
|
13073
|
+
included?: Array<unknown>;
|
|
13074
|
+
meta?: {
|
|
13075
|
+
[key: string]: unknown;
|
|
13076
|
+
};
|
|
12722
13077
|
};
|
|
12723
13078
|
};
|
|
12724
|
-
type
|
|
12725
|
-
type
|
|
13079
|
+
type PatchAdminExtractionResultsByIdResponse = PatchAdminExtractionResultsByIdResponses[keyof PatchAdminExtractionResultsByIdResponses];
|
|
13080
|
+
type PostAdminUsersAuthConfirmData = {
|
|
12726
13081
|
/**
|
|
12727
|
-
* Request body for the /
|
|
13082
|
+
* Request body for the /users/auth/confirm operation on user resource
|
|
12728
13083
|
*/
|
|
12729
13084
|
body: {
|
|
12730
13085
|
data: {
|
|
12731
13086
|
attributes?: {
|
|
12732
|
-
|
|
12733
|
-
|
|
13087
|
+
confirmation_token: string;
|
|
13088
|
+
email: string;
|
|
12734
13089
|
};
|
|
12735
13090
|
relationships?: {
|
|
12736
13091
|
[key: string]: never;
|
|
12737
13092
|
};
|
|
12738
|
-
type?: "
|
|
13093
|
+
type?: "user";
|
|
12739
13094
|
};
|
|
12740
13095
|
};
|
|
12741
13096
|
headers: {
|
|
@@ -12744,12 +13099,7 @@ type PostAdminAgentsByIdPublishVersionData = {
|
|
|
12744
13099
|
*/
|
|
12745
13100
|
"x-application-key": string;
|
|
12746
13101
|
};
|
|
12747
|
-
path
|
|
12748
|
-
/**
|
|
12749
|
-
* Agent ID (from URL path parameter)
|
|
12750
|
-
*/
|
|
12751
|
-
id: string;
|
|
12752
|
-
};
|
|
13102
|
+
path?: never;
|
|
12753
13103
|
query?: {
|
|
12754
13104
|
/**
|
|
12755
13105
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -12762,9 +13112,9 @@ type PostAdminAgentsByIdPublishVersionData = {
|
|
|
12762
13112
|
[key: string]: unknown;
|
|
12763
13113
|
};
|
|
12764
13114
|
};
|
|
12765
|
-
url: "/admin/
|
|
13115
|
+
url: "/admin/users/auth/confirm";
|
|
12766
13116
|
};
|
|
12767
|
-
type
|
|
13117
|
+
type PostAdminUsersAuthConfirmErrors = {
|
|
12768
13118
|
/**
|
|
12769
13119
|
* Bad Request - Invalid input data or malformed request
|
|
12770
13120
|
*/
|
|
@@ -12794,19 +13144,140 @@ type PostAdminAgentsByIdPublishVersionErrors = {
|
|
|
12794
13144
|
*/
|
|
12795
13145
|
default: Errors;
|
|
12796
13146
|
};
|
|
12797
|
-
type
|
|
12798
|
-
type
|
|
13147
|
+
type PostAdminUsersAuthConfirmError = PostAdminUsersAuthConfirmErrors[keyof PostAdminUsersAuthConfirmErrors];
|
|
13148
|
+
type PostAdminUsersAuthConfirmResponses = {
|
|
12799
13149
|
/**
|
|
12800
13150
|
* Success
|
|
12801
13151
|
*/
|
|
12802
13152
|
201: {
|
|
12803
|
-
data?:
|
|
12804
|
-
included?: Array<
|
|
13153
|
+
data?: User;
|
|
13154
|
+
included?: Array<unknown>;
|
|
12805
13155
|
meta?: {
|
|
12806
13156
|
[key: string]: unknown;
|
|
12807
13157
|
};
|
|
12808
13158
|
};
|
|
12809
13159
|
};
|
|
13160
|
+
type PostAdminUsersAuthConfirmResponse = PostAdminUsersAuthConfirmResponses[keyof PostAdminUsersAuthConfirmResponses];
|
|
13161
|
+
type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateData = {
|
|
13162
|
+
body?: never;
|
|
13163
|
+
headers: {
|
|
13164
|
+
/**
|
|
13165
|
+
* Application ID for authentication and routing
|
|
13166
|
+
*/
|
|
13167
|
+
"x-application-key": string;
|
|
13168
|
+
};
|
|
13169
|
+
path: {
|
|
13170
|
+
version_id: string;
|
|
13171
|
+
/**
|
|
13172
|
+
* Agent ID (automatically mapped from route)
|
|
13173
|
+
*/
|
|
13174
|
+
id: string;
|
|
13175
|
+
};
|
|
13176
|
+
query?: never;
|
|
13177
|
+
url: "/admin/agents/{id}/schema_versions/{version_id}/activate";
|
|
13178
|
+
};
|
|
13179
|
+
type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateErrors = {
|
|
13180
|
+
/**
|
|
13181
|
+
* Bad Request - Invalid input data or malformed request
|
|
13182
|
+
*/
|
|
13183
|
+
400: ErrorResponse;
|
|
13184
|
+
/**
|
|
13185
|
+
* Unauthorized - Missing or invalid authentication token
|
|
13186
|
+
*/
|
|
13187
|
+
401: ErrorResponse;
|
|
13188
|
+
/**
|
|
13189
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
13190
|
+
*/
|
|
13191
|
+
403: ErrorResponse;
|
|
13192
|
+
/**
|
|
13193
|
+
* Not Found - Resource does not exist
|
|
13194
|
+
*/
|
|
13195
|
+
404: ErrorResponse;
|
|
13196
|
+
/**
|
|
13197
|
+
* Too Many Requests - Rate limit exceeded
|
|
13198
|
+
*/
|
|
13199
|
+
429: ErrorResponse;
|
|
13200
|
+
/**
|
|
13201
|
+
* Internal Server Error - Unexpected server error
|
|
13202
|
+
*/
|
|
13203
|
+
500: ErrorResponse;
|
|
13204
|
+
/**
|
|
13205
|
+
* General Error
|
|
13206
|
+
*/
|
|
13207
|
+
default: Errors;
|
|
13208
|
+
};
|
|
13209
|
+
type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateError = PostAdminAgentsByIdSchemaVersionsByVersionIdActivateErrors[keyof PostAdminAgentsByIdSchemaVersionsByVersionIdActivateErrors];
|
|
13210
|
+
type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponses = {
|
|
13211
|
+
/**
|
|
13212
|
+
* Success
|
|
13213
|
+
*/
|
|
13214
|
+
201: {
|
|
13215
|
+
[key: string]: unknown;
|
|
13216
|
+
};
|
|
13217
|
+
};
|
|
13218
|
+
type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponse = PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponses[keyof PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponses];
|
|
13219
|
+
type PostAdminAgentsByIdPublishVersionData = {
|
|
13220
|
+
/**
|
|
13221
|
+
* Request body for the /agents/:id/publish_version operation on agent resource
|
|
13222
|
+
*/
|
|
13223
|
+
body: {
|
|
13224
|
+
data: {
|
|
13225
|
+
changes_summary?: string | unknown;
|
|
13226
|
+
version_number: string;
|
|
13227
|
+
};
|
|
13228
|
+
};
|
|
13229
|
+
headers: {
|
|
13230
|
+
/**
|
|
13231
|
+
* Application ID for authentication and routing
|
|
13232
|
+
*/
|
|
13233
|
+
"x-application-key": string;
|
|
13234
|
+
};
|
|
13235
|
+
path: {
|
|
13236
|
+
/**
|
|
13237
|
+
* Agent ID (from URL path parameter)
|
|
13238
|
+
*/
|
|
13239
|
+
id: string;
|
|
13240
|
+
};
|
|
13241
|
+
query?: never;
|
|
13242
|
+
url: "/admin/agents/{id}/publish_version";
|
|
13243
|
+
};
|
|
13244
|
+
type PostAdminAgentsByIdPublishVersionErrors = {
|
|
13245
|
+
/**
|
|
13246
|
+
* Bad Request - Invalid input data or malformed request
|
|
13247
|
+
*/
|
|
13248
|
+
400: ErrorResponse;
|
|
13249
|
+
/**
|
|
13250
|
+
* Unauthorized - Missing or invalid authentication token
|
|
13251
|
+
*/
|
|
13252
|
+
401: ErrorResponse;
|
|
13253
|
+
/**
|
|
13254
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
13255
|
+
*/
|
|
13256
|
+
403: ErrorResponse;
|
|
13257
|
+
/**
|
|
13258
|
+
* Not Found - Resource does not exist
|
|
13259
|
+
*/
|
|
13260
|
+
404: ErrorResponse;
|
|
13261
|
+
/**
|
|
13262
|
+
* Too Many Requests - Rate limit exceeded
|
|
13263
|
+
*/
|
|
13264
|
+
429: ErrorResponse;
|
|
13265
|
+
/**
|
|
13266
|
+
* Internal Server Error - Unexpected server error
|
|
13267
|
+
*/
|
|
13268
|
+
500: ErrorResponse;
|
|
13269
|
+
/**
|
|
13270
|
+
* General Error
|
|
13271
|
+
*/
|
|
13272
|
+
default: Errors;
|
|
13273
|
+
};
|
|
13274
|
+
type PostAdminAgentsByIdPublishVersionError = PostAdminAgentsByIdPublishVersionErrors[keyof PostAdminAgentsByIdPublishVersionErrors];
|
|
13275
|
+
type PostAdminAgentsByIdPublishVersionResponses = {
|
|
13276
|
+
/**
|
|
13277
|
+
* Success
|
|
13278
|
+
*/
|
|
13279
|
+
201: AgentVersionType;
|
|
13280
|
+
};
|
|
12810
13281
|
type PostAdminAgentsByIdPublishVersionResponse = PostAdminAgentsByIdPublishVersionResponses[keyof PostAdminAgentsByIdPublishVersionResponses];
|
|
12811
13282
|
type GetAdminUserProfilesData = {
|
|
12812
13283
|
body?: never;
|
|
@@ -17197,6 +17668,10 @@ type PatchAdminExtractionDocumentsByIdVerificationData = {
|
|
|
17197
17668
|
body?: {
|
|
17198
17669
|
data: {
|
|
17199
17670
|
attributes?: {
|
|
17671
|
+
/**
|
|
17672
|
+
* Average confidence score across all extracted fields (0.0 to 1.0)
|
|
17673
|
+
*/
|
|
17674
|
+
avg_confidence?: number | unknown;
|
|
17200
17675
|
last_verified_at?: unknown;
|
|
17201
17676
|
/**
|
|
17202
17677
|
* The review/verification state of the document
|
|
@@ -18168,7 +18643,7 @@ type PostAdminPaymentMethodsTokenizeData = {
|
|
|
18168
18643
|
data: {
|
|
18169
18644
|
attributes?: {
|
|
18170
18645
|
card_number: string;
|
|
18171
|
-
customer_id
|
|
18646
|
+
customer_id?: string | unknown;
|
|
18172
18647
|
cvc: string;
|
|
18173
18648
|
exp_month: number;
|
|
18174
18649
|
exp_year: number;
|
|
@@ -22591,68 +23066,8 @@ type PostAdminAgentsImportResponses = {
|
|
|
22591
23066
|
};
|
|
22592
23067
|
};
|
|
22593
23068
|
type PostAdminAgentsImportResponse = PostAdminAgentsImportResponses[keyof PostAdminAgentsImportResponses];
|
|
22594
|
-
type
|
|
22595
|
-
|
|
22596
|
-
* Request body for the /extraction/results operation on extraction_result resource
|
|
22597
|
-
*/
|
|
22598
|
-
body: {
|
|
22599
|
-
data: {
|
|
22600
|
-
attributes?: {
|
|
22601
|
-
agent_id: string;
|
|
22602
|
-
agent_version_id?: string | unknown;
|
|
22603
|
-
/**
|
|
22604
|
-
* Character count of extracted text
|
|
22605
|
-
*/
|
|
22606
|
-
char_count?: number | unknown;
|
|
22607
|
-
credits_used?: string | unknown;
|
|
22608
|
-
document_id: string;
|
|
22609
|
-
extracted_fields?: {
|
|
22610
|
-
[key: string]: unknown;
|
|
22611
|
-
} | unknown;
|
|
22612
|
-
extraction_mode?: "base" | "custom" | "hybrid" | unknown;
|
|
22613
|
-
/**
|
|
22614
|
-
* Image height in pixels (for image documents)
|
|
22615
|
-
*/
|
|
22616
|
-
image_height?: number | unknown;
|
|
22617
|
-
/**
|
|
22618
|
-
* Image width in pixels (for image documents)
|
|
22619
|
-
*/
|
|
22620
|
-
image_width?: number | unknown;
|
|
22621
|
-
/**
|
|
22622
|
-
* Line count of extracted text
|
|
22623
|
-
*/
|
|
22624
|
-
line_count?: number | unknown;
|
|
22625
|
-
/**
|
|
22626
|
-
* LLM model used for extraction
|
|
22627
|
-
*/
|
|
22628
|
-
llm_model?: string | unknown;
|
|
22629
|
-
ocr_blocks?: Array<{
|
|
22630
|
-
[key: string]: unknown;
|
|
22631
|
-
}> | unknown;
|
|
22632
|
-
/**
|
|
22633
|
-
* OCR provider used (DocTriage, LlamaParse)
|
|
22634
|
-
*/
|
|
22635
|
-
ocr_provider?: string | unknown;
|
|
22636
|
-
processing_time_ms?: number | unknown;
|
|
22637
|
-
schema_id?: string | unknown;
|
|
22638
|
-
/**
|
|
22639
|
-
* The version of the schema/agent used for this extraction
|
|
22640
|
-
*/
|
|
22641
|
-
schema_version?: string | unknown;
|
|
22642
|
-
status?: "pending" | "completed" | "failed" | unknown;
|
|
22643
|
-
used_training_example_ids?: Array<string> | unknown;
|
|
22644
|
-
/**
|
|
22645
|
-
* Word count of extracted text
|
|
22646
|
-
*/
|
|
22647
|
-
word_count?: number | unknown;
|
|
22648
|
-
workspace_id: string;
|
|
22649
|
-
};
|
|
22650
|
-
relationships?: {
|
|
22651
|
-
[key: string]: never;
|
|
22652
|
-
};
|
|
22653
|
-
type?: "extraction_result";
|
|
22654
|
-
};
|
|
22655
|
-
};
|
|
23069
|
+
type GetAdminExtractionResultsData = {
|
|
23070
|
+
body?: never;
|
|
22656
23071
|
headers: {
|
|
22657
23072
|
/**
|
|
22658
23073
|
* Application ID for authentication and routing
|
|
@@ -22661,6 +23076,16 @@ type PostAdminExtractionResultsData = {
|
|
|
22661
23076
|
};
|
|
22662
23077
|
path?: never;
|
|
22663
23078
|
query?: {
|
|
23079
|
+
/**
|
|
23080
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
23081
|
+
*/
|
|
23082
|
+
filter?: {
|
|
23083
|
+
[key: string]: unknown;
|
|
23084
|
+
};
|
|
23085
|
+
/**
|
|
23086
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
23087
|
+
*/
|
|
23088
|
+
sort?: string;
|
|
22664
23089
|
/**
|
|
22665
23090
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
22666
23091
|
*/
|
|
@@ -22674,7 +23099,7 @@ type PostAdminExtractionResultsData = {
|
|
|
22674
23099
|
};
|
|
22675
23100
|
url: "/admin/extraction/results";
|
|
22676
23101
|
};
|
|
22677
|
-
type
|
|
23102
|
+
type GetAdminExtractionResultsErrors = {
|
|
22678
23103
|
/**
|
|
22679
23104
|
* Bad Request - Invalid input data or malformed request
|
|
22680
23105
|
*/
|
|
@@ -22704,20 +23129,23 @@ type PostAdminExtractionResultsErrors = {
|
|
|
22704
23129
|
*/
|
|
22705
23130
|
default: Errors;
|
|
22706
23131
|
};
|
|
22707
|
-
type
|
|
22708
|
-
type
|
|
23132
|
+
type GetAdminExtractionResultsError = GetAdminExtractionResultsErrors[keyof GetAdminExtractionResultsErrors];
|
|
23133
|
+
type GetAdminExtractionResultsResponses = {
|
|
22709
23134
|
/**
|
|
22710
23135
|
* Success
|
|
22711
23136
|
*/
|
|
22712
|
-
|
|
22713
|
-
|
|
23137
|
+
200: {
|
|
23138
|
+
/**
|
|
23139
|
+
* An array of resource objects representing a extraction_result
|
|
23140
|
+
*/
|
|
23141
|
+
data?: Array<ExtractionResult>;
|
|
22714
23142
|
included?: Array<unknown>;
|
|
22715
23143
|
meta?: {
|
|
22716
23144
|
[key: string]: unknown;
|
|
22717
23145
|
};
|
|
22718
23146
|
};
|
|
22719
23147
|
};
|
|
22720
|
-
type
|
|
23148
|
+
type GetAdminExtractionResultsResponse = GetAdminExtractionResultsResponses[keyof GetAdminExtractionResultsResponses];
|
|
22721
23149
|
type GetAdminWebhookDeliveriesByIdData = {
|
|
22722
23150
|
body?: never;
|
|
22723
23151
|
headers: {
|
|
@@ -22974,6 +23402,7 @@ type PostAdminTrainingExamplesData = {
|
|
|
22974
23402
|
* The type of document (e.g., 'Invoice', 'Receipt', 'Contract')
|
|
22975
23403
|
*/
|
|
22976
23404
|
document_type?: string | unknown;
|
|
23405
|
+
embedding?: unknown;
|
|
22977
23406
|
/**
|
|
22978
23407
|
* The field name that was corrected (e.g., 'customer_name', 'total_amount')
|
|
22979
23408
|
*/
|
|
@@ -25003,10 +25432,13 @@ type PostAdminApiKeysData = {
|
|
|
25003
25432
|
/**
|
|
25004
25433
|
* Request body for the /api_keys operation on api_key resource
|
|
25005
25434
|
*/
|
|
25006
|
-
body
|
|
25435
|
+
body: {
|
|
25007
25436
|
data: {
|
|
25008
25437
|
attributes?: {
|
|
25009
|
-
|
|
25438
|
+
/**
|
|
25439
|
+
* Required - the application this API key belongs to
|
|
25440
|
+
*/
|
|
25441
|
+
application_id: string;
|
|
25010
25442
|
/**
|
|
25011
25443
|
* Maximum credits allowed per period (null = unlimited)
|
|
25012
25444
|
*/
|
|
@@ -26159,7 +26591,7 @@ type PostAdminPaymentMethodsData = {
|
|
|
26159
26591
|
data: {
|
|
26160
26592
|
attributes?: {
|
|
26161
26593
|
brand?: string | unknown;
|
|
26162
|
-
customer_id
|
|
26594
|
+
customer_id?: string | unknown;
|
|
26163
26595
|
exp_month?: number | unknown;
|
|
26164
26596
|
exp_year?: number | unknown;
|
|
26165
26597
|
is_default?: boolean | unknown;
|
|
@@ -27115,312 +27547,83 @@ type PostAdminWorkspacesByWorkspaceIdExtractionExportsErrors = {
|
|
|
27115
27547
|
*/
|
|
27116
27548
|
default: Errors;
|
|
27117
27549
|
};
|
|
27118
|
-
type PostAdminWorkspacesByWorkspaceIdExtractionExportsError = PostAdminWorkspacesByWorkspaceIdExtractionExportsErrors[keyof PostAdminWorkspacesByWorkspaceIdExtractionExportsErrors];
|
|
27119
|
-
type PostAdminWorkspacesByWorkspaceIdExtractionExportsResponses = {
|
|
27120
|
-
/**
|
|
27121
|
-
* Success
|
|
27122
|
-
*/
|
|
27123
|
-
201: {
|
|
27124
|
-
data?: ExtractionExport;
|
|
27125
|
-
included?: Array<unknown>;
|
|
27126
|
-
meta?: {
|
|
27127
|
-
[key: string]: unknown;
|
|
27128
|
-
};
|
|
27129
|
-
};
|
|
27130
|
-
};
|
|
27131
|
-
type PostAdminWorkspacesByWorkspaceIdExtractionExportsResponse = PostAdminWorkspacesByWorkspaceIdExtractionExportsResponses[keyof PostAdminWorkspacesByWorkspaceIdExtractionExportsResponses];
|
|
27132
|
-
type GetAdminApplicationsCurrentData = {
|
|
27133
|
-
body?: never;
|
|
27134
|
-
headers: {
|
|
27135
|
-
/**
|
|
27136
|
-
* Application ID for authentication and routing
|
|
27137
|
-
*/
|
|
27138
|
-
"x-application-key": string;
|
|
27139
|
-
};
|
|
27140
|
-
path?: never;
|
|
27141
|
-
query?: never;
|
|
27142
|
-
url: "/admin/applications/current";
|
|
27143
|
-
};
|
|
27144
|
-
type GetAdminApplicationsCurrentErrors = {
|
|
27145
|
-
/**
|
|
27146
|
-
* Bad Request - Invalid input data or malformed request
|
|
27147
|
-
*/
|
|
27148
|
-
400: ErrorResponse;
|
|
27149
|
-
/**
|
|
27150
|
-
* Unauthorized - Missing or invalid authentication token
|
|
27151
|
-
*/
|
|
27152
|
-
401: ErrorResponse;
|
|
27153
|
-
/**
|
|
27154
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
27155
|
-
*/
|
|
27156
|
-
403: ErrorResponse;
|
|
27157
|
-
/**
|
|
27158
|
-
* Not Found - Resource does not exist
|
|
27159
|
-
*/
|
|
27160
|
-
404: ErrorResponse;
|
|
27161
|
-
/**
|
|
27162
|
-
* Too Many Requests - Rate limit exceeded
|
|
27163
|
-
*/
|
|
27164
|
-
429: ErrorResponse;
|
|
27165
|
-
/**
|
|
27166
|
-
* Internal Server Error - Unexpected server error
|
|
27167
|
-
*/
|
|
27168
|
-
500: ErrorResponse;
|
|
27169
|
-
/**
|
|
27170
|
-
* General Error
|
|
27171
|
-
*/
|
|
27172
|
-
default: Errors;
|
|
27173
|
-
};
|
|
27174
|
-
type GetAdminApplicationsCurrentError = GetAdminApplicationsCurrentErrors[keyof GetAdminApplicationsCurrentErrors];
|
|
27175
|
-
type GetAdminApplicationsCurrentResponses = {
|
|
27176
|
-
/**
|
|
27177
|
-
* Success
|
|
27178
|
-
*/
|
|
27179
|
-
200: ApplicationType;
|
|
27180
|
-
};
|
|
27181
|
-
type GetAdminApplicationsCurrentResponse = GetAdminApplicationsCurrentResponses[keyof GetAdminApplicationsCurrentResponses];
|
|
27182
|
-
type PostAdminUsersAuthMagicLinkLoginData = {
|
|
27183
|
-
/**
|
|
27184
|
-
* Request body for the /users/auth/magic_link/login operation on user resource
|
|
27185
|
-
*/
|
|
27186
|
-
body: {
|
|
27187
|
-
data: {
|
|
27188
|
-
attributes?: {
|
|
27189
|
-
token: string;
|
|
27190
|
-
};
|
|
27191
|
-
relationships?: {
|
|
27192
|
-
[key: string]: never;
|
|
27193
|
-
};
|
|
27194
|
-
type?: "user";
|
|
27195
|
-
};
|
|
27196
|
-
};
|
|
27197
|
-
headers: {
|
|
27198
|
-
/**
|
|
27199
|
-
* Application ID for authentication and routing
|
|
27200
|
-
*/
|
|
27201
|
-
"x-application-key": string;
|
|
27202
|
-
};
|
|
27203
|
-
path?: never;
|
|
27204
|
-
query?: {
|
|
27205
|
-
/**
|
|
27206
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
27207
|
-
*/
|
|
27208
|
-
include?: string;
|
|
27209
|
-
/**
|
|
27210
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
27211
|
-
*/
|
|
27212
|
-
fields?: {
|
|
27213
|
-
[key: string]: unknown;
|
|
27214
|
-
};
|
|
27215
|
-
};
|
|
27216
|
-
url: "/admin/users/auth/magic_link/login";
|
|
27217
|
-
};
|
|
27218
|
-
type PostAdminUsersAuthMagicLinkLoginErrors = {
|
|
27219
|
-
/**
|
|
27220
|
-
* Bad Request - Invalid input data or malformed request
|
|
27221
|
-
*/
|
|
27222
|
-
400: ErrorResponse;
|
|
27223
|
-
/**
|
|
27224
|
-
* Unauthorized - Missing or invalid authentication token
|
|
27225
|
-
*/
|
|
27226
|
-
401: ErrorResponse;
|
|
27227
|
-
/**
|
|
27228
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
27229
|
-
*/
|
|
27230
|
-
403: ErrorResponse;
|
|
27231
|
-
/**
|
|
27232
|
-
* Not Found - Resource does not exist
|
|
27233
|
-
*/
|
|
27234
|
-
404: ErrorResponse;
|
|
27235
|
-
/**
|
|
27236
|
-
* Too Many Requests - Rate limit exceeded
|
|
27237
|
-
*/
|
|
27238
|
-
429: ErrorResponse;
|
|
27239
|
-
/**
|
|
27240
|
-
* Internal Server Error - Unexpected server error
|
|
27241
|
-
*/
|
|
27242
|
-
500: ErrorResponse;
|
|
27243
|
-
/**
|
|
27244
|
-
* General Error
|
|
27245
|
-
*/
|
|
27246
|
-
default: Errors;
|
|
27247
|
-
};
|
|
27248
|
-
type PostAdminUsersAuthMagicLinkLoginError = PostAdminUsersAuthMagicLinkLoginErrors[keyof PostAdminUsersAuthMagicLinkLoginErrors];
|
|
27249
|
-
type PostAdminUsersAuthMagicLinkLoginResponses = {
|
|
27250
|
-
/**
|
|
27251
|
-
* Success
|
|
27252
|
-
*/
|
|
27253
|
-
201: {
|
|
27254
|
-
data?: User;
|
|
27255
|
-
included?: Array<unknown>;
|
|
27256
|
-
meta?: {
|
|
27257
|
-
[key: string]: unknown;
|
|
27258
|
-
};
|
|
27259
|
-
};
|
|
27260
|
-
};
|
|
27261
|
-
type PostAdminUsersAuthMagicLinkLoginResponse = PostAdminUsersAuthMagicLinkLoginResponses[keyof PostAdminUsersAuthMagicLinkLoginResponses];
|
|
27262
|
-
type GetAdminTenantsByTenantIdWorkspaceStatsData = {
|
|
27263
|
-
body?: never;
|
|
27264
|
-
headers: {
|
|
27265
|
-
/**
|
|
27266
|
-
* Application ID for authentication and routing
|
|
27267
|
-
*/
|
|
27268
|
-
"x-application-key": string;
|
|
27269
|
-
};
|
|
27270
|
-
path: {
|
|
27271
|
-
tenant_id: string;
|
|
27272
|
-
};
|
|
27273
|
-
query?: {
|
|
27274
|
-
/**
|
|
27275
|
-
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
27276
|
-
*/
|
|
27277
|
-
filter?: {
|
|
27278
|
-
[key: string]: unknown;
|
|
27279
|
-
};
|
|
27280
|
-
/**
|
|
27281
|
-
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
27282
|
-
*/
|
|
27283
|
-
sort?: string;
|
|
27284
|
-
/**
|
|
27285
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
27286
|
-
*/
|
|
27287
|
-
include?: string;
|
|
27288
|
-
/**
|
|
27289
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
27290
|
-
*/
|
|
27291
|
-
fields?: {
|
|
27292
|
-
[key: string]: unknown;
|
|
27293
|
-
};
|
|
27294
|
-
};
|
|
27295
|
-
url: "/admin/tenants/{tenant_id}/workspace_stats";
|
|
27296
|
-
};
|
|
27297
|
-
type GetAdminTenantsByTenantIdWorkspaceStatsErrors = {
|
|
27298
|
-
/**
|
|
27299
|
-
* Bad Request - Invalid input data or malformed request
|
|
27300
|
-
*/
|
|
27301
|
-
400: ErrorResponse;
|
|
27302
|
-
/**
|
|
27303
|
-
* Unauthorized - Missing or invalid authentication token
|
|
27304
|
-
*/
|
|
27305
|
-
401: ErrorResponse;
|
|
27306
|
-
/**
|
|
27307
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
27308
|
-
*/
|
|
27309
|
-
403: ErrorResponse;
|
|
27310
|
-
/**
|
|
27311
|
-
* Not Found - Resource does not exist
|
|
27312
|
-
*/
|
|
27313
|
-
404: ErrorResponse;
|
|
27314
|
-
/**
|
|
27315
|
-
* Too Many Requests - Rate limit exceeded
|
|
27316
|
-
*/
|
|
27317
|
-
429: ErrorResponse;
|
|
27318
|
-
/**
|
|
27319
|
-
* Internal Server Error - Unexpected server error
|
|
27320
|
-
*/
|
|
27321
|
-
500: ErrorResponse;
|
|
27322
|
-
/**
|
|
27323
|
-
* General Error
|
|
27324
|
-
*/
|
|
27325
|
-
default: Errors;
|
|
27326
|
-
};
|
|
27327
|
-
type GetAdminTenantsByTenantIdWorkspaceStatsError = GetAdminTenantsByTenantIdWorkspaceStatsErrors[keyof GetAdminTenantsByTenantIdWorkspaceStatsErrors];
|
|
27328
|
-
type GetAdminTenantsByTenantIdWorkspaceStatsResponses = {
|
|
27329
|
-
/**
|
|
27330
|
-
* Success
|
|
27331
|
-
*/
|
|
27332
|
-
200: {
|
|
27333
|
-
/**
|
|
27334
|
-
* An array of resource objects representing a workspace_document_stats
|
|
27335
|
-
*/
|
|
27336
|
-
data?: Array<WorkspaceDocumentStats>;
|
|
27337
|
-
included?: Array<unknown>;
|
|
27338
|
-
meta?: {
|
|
27339
|
-
[key: string]: unknown;
|
|
27340
|
-
};
|
|
27341
|
-
};
|
|
27342
|
-
};
|
|
27343
|
-
type GetAdminTenantsByTenantIdWorkspaceStatsResponse = GetAdminTenantsByTenantIdWorkspaceStatsResponses[keyof GetAdminTenantsByTenantIdWorkspaceStatsResponses];
|
|
27344
|
-
type PostAdminAgentsByIdDiscoverSchemaData = {
|
|
27345
|
-
/**
|
|
27346
|
-
* Request body for the /agents/:id/discover_schema operation on agent resource
|
|
27347
|
-
*/
|
|
27348
|
-
body: {
|
|
27349
|
-
data: {
|
|
27350
|
-
/**
|
|
27351
|
-
* ID of document to analyze
|
|
27352
|
-
*/
|
|
27353
|
-
document_id: string;
|
|
27354
|
-
};
|
|
27355
|
-
};
|
|
27356
|
-
headers: {
|
|
27357
|
-
/**
|
|
27358
|
-
* Application ID for authentication and routing
|
|
27359
|
-
*/
|
|
27360
|
-
"x-application-key": string;
|
|
27361
|
-
};
|
|
27362
|
-
path: {
|
|
27363
|
-
/**
|
|
27364
|
-
* Agent ID (automatically mapped from route)
|
|
27365
|
-
*/
|
|
27366
|
-
id: string;
|
|
27367
|
-
};
|
|
27368
|
-
query?: never;
|
|
27369
|
-
url: "/admin/agents/{id}/discover_schema";
|
|
27370
|
-
};
|
|
27371
|
-
type PostAdminAgentsByIdDiscoverSchemaErrors = {
|
|
27372
|
-
/**
|
|
27373
|
-
* Bad Request - Invalid input data or malformed request
|
|
27374
|
-
*/
|
|
27375
|
-
400: ErrorResponse;
|
|
27376
|
-
/**
|
|
27377
|
-
* Unauthorized - Missing or invalid authentication token
|
|
27378
|
-
*/
|
|
27379
|
-
401: ErrorResponse;
|
|
27380
|
-
/**
|
|
27381
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
27382
|
-
*/
|
|
27383
|
-
403: ErrorResponse;
|
|
27384
|
-
/**
|
|
27385
|
-
* Not Found - Resource does not exist
|
|
27386
|
-
*/
|
|
27387
|
-
404: ErrorResponse;
|
|
27388
|
-
/**
|
|
27389
|
-
* Too Many Requests - Rate limit exceeded
|
|
27390
|
-
*/
|
|
27391
|
-
429: ErrorResponse;
|
|
27392
|
-
/**
|
|
27393
|
-
* Internal Server Error - Unexpected server error
|
|
27394
|
-
*/
|
|
27395
|
-
500: ErrorResponse;
|
|
27396
|
-
/**
|
|
27397
|
-
* General Error
|
|
27398
|
-
*/
|
|
27399
|
-
default: Errors;
|
|
27400
|
-
};
|
|
27401
|
-
type PostAdminAgentsByIdDiscoverSchemaError = PostAdminAgentsByIdDiscoverSchemaErrors[keyof PostAdminAgentsByIdDiscoverSchemaErrors];
|
|
27402
|
-
type PostAdminAgentsByIdDiscoverSchemaResponses = {
|
|
27550
|
+
type PostAdminWorkspacesByWorkspaceIdExtractionExportsError = PostAdminWorkspacesByWorkspaceIdExtractionExportsErrors[keyof PostAdminWorkspacesByWorkspaceIdExtractionExportsErrors];
|
|
27551
|
+
type PostAdminWorkspacesByWorkspaceIdExtractionExportsResponses = {
|
|
27403
27552
|
/**
|
|
27404
27553
|
* Success
|
|
27405
27554
|
*/
|
|
27406
27555
|
201: {
|
|
27407
|
-
|
|
27556
|
+
data?: ExtractionExport;
|
|
27557
|
+
included?: Array<unknown>;
|
|
27558
|
+
meta?: {
|
|
27559
|
+
[key: string]: unknown;
|
|
27560
|
+
};
|
|
27408
27561
|
};
|
|
27409
27562
|
};
|
|
27410
|
-
type
|
|
27411
|
-
type
|
|
27563
|
+
type PostAdminWorkspacesByWorkspaceIdExtractionExportsResponse = PostAdminWorkspacesByWorkspaceIdExtractionExportsResponses[keyof PostAdminWorkspacesByWorkspaceIdExtractionExportsResponses];
|
|
27564
|
+
type GetAdminApplicationsCurrentData = {
|
|
27565
|
+
body?: never;
|
|
27566
|
+
headers: {
|
|
27567
|
+
/**
|
|
27568
|
+
* Application ID for authentication and routing
|
|
27569
|
+
*/
|
|
27570
|
+
"x-application-key": string;
|
|
27571
|
+
};
|
|
27572
|
+
path?: never;
|
|
27573
|
+
query?: never;
|
|
27574
|
+
url: "/admin/applications/current";
|
|
27575
|
+
};
|
|
27576
|
+
type GetAdminApplicationsCurrentErrors = {
|
|
27412
27577
|
/**
|
|
27413
|
-
* Request
|
|
27578
|
+
* Bad Request - Invalid input data or malformed request
|
|
27579
|
+
*/
|
|
27580
|
+
400: ErrorResponse;
|
|
27581
|
+
/**
|
|
27582
|
+
* Unauthorized - Missing or invalid authentication token
|
|
27583
|
+
*/
|
|
27584
|
+
401: ErrorResponse;
|
|
27585
|
+
/**
|
|
27586
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
27587
|
+
*/
|
|
27588
|
+
403: ErrorResponse;
|
|
27589
|
+
/**
|
|
27590
|
+
* Not Found - Resource does not exist
|
|
27591
|
+
*/
|
|
27592
|
+
404: ErrorResponse;
|
|
27593
|
+
/**
|
|
27594
|
+
* Too Many Requests - Rate limit exceeded
|
|
27595
|
+
*/
|
|
27596
|
+
429: ErrorResponse;
|
|
27597
|
+
/**
|
|
27598
|
+
* Internal Server Error - Unexpected server error
|
|
27599
|
+
*/
|
|
27600
|
+
500: ErrorResponse;
|
|
27601
|
+
/**
|
|
27602
|
+
* General Error
|
|
27603
|
+
*/
|
|
27604
|
+
default: Errors;
|
|
27605
|
+
};
|
|
27606
|
+
type GetAdminApplicationsCurrentError = GetAdminApplicationsCurrentErrors[keyof GetAdminApplicationsCurrentErrors];
|
|
27607
|
+
type GetAdminApplicationsCurrentResponses = {
|
|
27608
|
+
/**
|
|
27609
|
+
* Success
|
|
27610
|
+
*/
|
|
27611
|
+
200: ApplicationType;
|
|
27612
|
+
};
|
|
27613
|
+
type GetAdminApplicationsCurrentResponse = GetAdminApplicationsCurrentResponses[keyof GetAdminApplicationsCurrentResponses];
|
|
27614
|
+
type PostAdminUsersAuthMagicLinkLoginData = {
|
|
27615
|
+
/**
|
|
27616
|
+
* Request body for the /users/auth/magic_link/login operation on user resource
|
|
27414
27617
|
*/
|
|
27415
27618
|
body: {
|
|
27416
27619
|
data: {
|
|
27417
27620
|
attributes?: {
|
|
27418
|
-
|
|
27621
|
+
token: string;
|
|
27419
27622
|
};
|
|
27420
27623
|
relationships?: {
|
|
27421
27624
|
[key: string]: never;
|
|
27422
27625
|
};
|
|
27423
|
-
type?: "
|
|
27626
|
+
type?: "user";
|
|
27424
27627
|
};
|
|
27425
27628
|
};
|
|
27426
27629
|
headers: {
|
|
@@ -27429,13 +27632,87 @@ type PostAdminAgentsByIdTestData = {
|
|
|
27429
27632
|
*/
|
|
27430
27633
|
"x-application-key": string;
|
|
27431
27634
|
};
|
|
27432
|
-
path
|
|
27635
|
+
path?: never;
|
|
27636
|
+
query?: {
|
|
27433
27637
|
/**
|
|
27434
|
-
*
|
|
27638
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
27435
27639
|
*/
|
|
27436
|
-
|
|
27640
|
+
include?: string;
|
|
27641
|
+
/**
|
|
27642
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
27643
|
+
*/
|
|
27644
|
+
fields?: {
|
|
27645
|
+
[key: string]: unknown;
|
|
27646
|
+
};
|
|
27647
|
+
};
|
|
27648
|
+
url: "/admin/users/auth/magic_link/login";
|
|
27649
|
+
};
|
|
27650
|
+
type PostAdminUsersAuthMagicLinkLoginErrors = {
|
|
27651
|
+
/**
|
|
27652
|
+
* Bad Request - Invalid input data or malformed request
|
|
27653
|
+
*/
|
|
27654
|
+
400: ErrorResponse;
|
|
27655
|
+
/**
|
|
27656
|
+
* Unauthorized - Missing or invalid authentication token
|
|
27657
|
+
*/
|
|
27658
|
+
401: ErrorResponse;
|
|
27659
|
+
/**
|
|
27660
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
27661
|
+
*/
|
|
27662
|
+
403: ErrorResponse;
|
|
27663
|
+
/**
|
|
27664
|
+
* Not Found - Resource does not exist
|
|
27665
|
+
*/
|
|
27666
|
+
404: ErrorResponse;
|
|
27667
|
+
/**
|
|
27668
|
+
* Too Many Requests - Rate limit exceeded
|
|
27669
|
+
*/
|
|
27670
|
+
429: ErrorResponse;
|
|
27671
|
+
/**
|
|
27672
|
+
* Internal Server Error - Unexpected server error
|
|
27673
|
+
*/
|
|
27674
|
+
500: ErrorResponse;
|
|
27675
|
+
/**
|
|
27676
|
+
* General Error
|
|
27677
|
+
*/
|
|
27678
|
+
default: Errors;
|
|
27679
|
+
};
|
|
27680
|
+
type PostAdminUsersAuthMagicLinkLoginError = PostAdminUsersAuthMagicLinkLoginErrors[keyof PostAdminUsersAuthMagicLinkLoginErrors];
|
|
27681
|
+
type PostAdminUsersAuthMagicLinkLoginResponses = {
|
|
27682
|
+
/**
|
|
27683
|
+
* Success
|
|
27684
|
+
*/
|
|
27685
|
+
201: {
|
|
27686
|
+
data?: User;
|
|
27687
|
+
included?: Array<unknown>;
|
|
27688
|
+
meta?: {
|
|
27689
|
+
[key: string]: unknown;
|
|
27690
|
+
};
|
|
27691
|
+
};
|
|
27692
|
+
};
|
|
27693
|
+
type PostAdminUsersAuthMagicLinkLoginResponse = PostAdminUsersAuthMagicLinkLoginResponses[keyof PostAdminUsersAuthMagicLinkLoginResponses];
|
|
27694
|
+
type GetAdminTenantsByTenantIdWorkspaceStatsData = {
|
|
27695
|
+
body?: never;
|
|
27696
|
+
headers: {
|
|
27697
|
+
/**
|
|
27698
|
+
* Application ID for authentication and routing
|
|
27699
|
+
*/
|
|
27700
|
+
"x-application-key": string;
|
|
27701
|
+
};
|
|
27702
|
+
path: {
|
|
27703
|
+
tenant_id: string;
|
|
27437
27704
|
};
|
|
27438
27705
|
query?: {
|
|
27706
|
+
/**
|
|
27707
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
27708
|
+
*/
|
|
27709
|
+
filter?: {
|
|
27710
|
+
[key: string]: unknown;
|
|
27711
|
+
};
|
|
27712
|
+
/**
|
|
27713
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
27714
|
+
*/
|
|
27715
|
+
sort?: string;
|
|
27439
27716
|
/**
|
|
27440
27717
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
27441
27718
|
*/
|
|
@@ -27447,9 +27724,9 @@ type PostAdminAgentsByIdTestData = {
|
|
|
27447
27724
|
[key: string]: unknown;
|
|
27448
27725
|
};
|
|
27449
27726
|
};
|
|
27450
|
-
url: "/admin/
|
|
27727
|
+
url: "/admin/tenants/{tenant_id}/workspace_stats";
|
|
27451
27728
|
};
|
|
27452
|
-
type
|
|
27729
|
+
type GetAdminTenantsByTenantIdWorkspaceStatsErrors = {
|
|
27453
27730
|
/**
|
|
27454
27731
|
* Bad Request - Invalid input data or malformed request
|
|
27455
27732
|
*/
|
|
@@ -27479,37 +27756,103 @@ type PostAdminAgentsByIdTestErrors = {
|
|
|
27479
27756
|
*/
|
|
27480
27757
|
default: Errors;
|
|
27481
27758
|
};
|
|
27482
|
-
type
|
|
27483
|
-
type
|
|
27759
|
+
type GetAdminTenantsByTenantIdWorkspaceStatsError = GetAdminTenantsByTenantIdWorkspaceStatsErrors[keyof GetAdminTenantsByTenantIdWorkspaceStatsErrors];
|
|
27760
|
+
type GetAdminTenantsByTenantIdWorkspaceStatsResponses = {
|
|
27484
27761
|
/**
|
|
27485
27762
|
* Success
|
|
27486
27763
|
*/
|
|
27487
|
-
|
|
27488
|
-
|
|
27489
|
-
|
|
27764
|
+
200: {
|
|
27765
|
+
/**
|
|
27766
|
+
* An array of resource objects representing a workspace_document_stats
|
|
27767
|
+
*/
|
|
27768
|
+
data?: Array<WorkspaceDocumentStats>;
|
|
27769
|
+
included?: Array<unknown>;
|
|
27490
27770
|
meta?: {
|
|
27491
27771
|
[key: string]: unknown;
|
|
27492
27772
|
};
|
|
27493
27773
|
};
|
|
27494
27774
|
};
|
|
27495
|
-
type
|
|
27496
|
-
type
|
|
27775
|
+
type GetAdminTenantsByTenantIdWorkspaceStatsResponse = GetAdminTenantsByTenantIdWorkspaceStatsResponses[keyof GetAdminTenantsByTenantIdWorkspaceStatsResponses];
|
|
27776
|
+
type PostAdminAgentsByIdDiscoverSchemaData = {
|
|
27497
27777
|
/**
|
|
27498
|
-
* Request body for the /
|
|
27778
|
+
* Request body for the /agents/:id/discover_schema operation on agent resource
|
|
27779
|
+
*/
|
|
27780
|
+
body: {
|
|
27781
|
+
data: {
|
|
27782
|
+
/**
|
|
27783
|
+
* ID of document to analyze
|
|
27784
|
+
*/
|
|
27785
|
+
document_id: string;
|
|
27786
|
+
};
|
|
27787
|
+
};
|
|
27788
|
+
headers: {
|
|
27789
|
+
/**
|
|
27790
|
+
* Application ID for authentication and routing
|
|
27791
|
+
*/
|
|
27792
|
+
"x-application-key": string;
|
|
27793
|
+
};
|
|
27794
|
+
path: {
|
|
27795
|
+
/**
|
|
27796
|
+
* Agent ID (automatically mapped from route)
|
|
27797
|
+
*/
|
|
27798
|
+
id: string;
|
|
27799
|
+
};
|
|
27800
|
+
query?: never;
|
|
27801
|
+
url: "/admin/agents/{id}/discover_schema";
|
|
27802
|
+
};
|
|
27803
|
+
type PostAdminAgentsByIdDiscoverSchemaErrors = {
|
|
27804
|
+
/**
|
|
27805
|
+
* Bad Request - Invalid input data or malformed request
|
|
27806
|
+
*/
|
|
27807
|
+
400: ErrorResponse;
|
|
27808
|
+
/**
|
|
27809
|
+
* Unauthorized - Missing or invalid authentication token
|
|
27810
|
+
*/
|
|
27811
|
+
401: ErrorResponse;
|
|
27812
|
+
/**
|
|
27813
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
27814
|
+
*/
|
|
27815
|
+
403: ErrorResponse;
|
|
27816
|
+
/**
|
|
27817
|
+
* Not Found - Resource does not exist
|
|
27818
|
+
*/
|
|
27819
|
+
404: ErrorResponse;
|
|
27820
|
+
/**
|
|
27821
|
+
* Too Many Requests - Rate limit exceeded
|
|
27822
|
+
*/
|
|
27823
|
+
429: ErrorResponse;
|
|
27824
|
+
/**
|
|
27825
|
+
* Internal Server Error - Unexpected server error
|
|
27826
|
+
*/
|
|
27827
|
+
500: ErrorResponse;
|
|
27828
|
+
/**
|
|
27829
|
+
* General Error
|
|
27830
|
+
*/
|
|
27831
|
+
default: Errors;
|
|
27832
|
+
};
|
|
27833
|
+
type PostAdminAgentsByIdDiscoverSchemaError = PostAdminAgentsByIdDiscoverSchemaErrors[keyof PostAdminAgentsByIdDiscoverSchemaErrors];
|
|
27834
|
+
type PostAdminAgentsByIdDiscoverSchemaResponses = {
|
|
27835
|
+
/**
|
|
27836
|
+
* Success
|
|
27837
|
+
*/
|
|
27838
|
+
201: {
|
|
27839
|
+
[key: string]: unknown;
|
|
27840
|
+
};
|
|
27841
|
+
};
|
|
27842
|
+
type PostAdminAgentsByIdDiscoverSchemaResponse = PostAdminAgentsByIdDiscoverSchemaResponses[keyof PostAdminAgentsByIdDiscoverSchemaResponses];
|
|
27843
|
+
type PostAdminAgentsByIdTestData = {
|
|
27844
|
+
/**
|
|
27845
|
+
* Request body for the /agents/:id/test operation on agent resource
|
|
27499
27846
|
*/
|
|
27500
27847
|
body: {
|
|
27501
27848
|
data: {
|
|
27502
27849
|
attributes?: {
|
|
27503
|
-
|
|
27504
|
-
corrections: Array<{
|
|
27505
|
-
[key: string]: unknown;
|
|
27506
|
-
}>;
|
|
27850
|
+
sample_input: string;
|
|
27507
27851
|
};
|
|
27508
|
-
id: string;
|
|
27509
27852
|
relationships?: {
|
|
27510
27853
|
[key: string]: never;
|
|
27511
27854
|
};
|
|
27512
|
-
type?: "
|
|
27855
|
+
type?: "agent";
|
|
27513
27856
|
};
|
|
27514
27857
|
};
|
|
27515
27858
|
headers: {
|
|
@@ -27519,6 +27862,9 @@ type PatchAdminExtractionResultsByIdCorrectionsData = {
|
|
|
27519
27862
|
"x-application-key": string;
|
|
27520
27863
|
};
|
|
27521
27864
|
path: {
|
|
27865
|
+
/**
|
|
27866
|
+
* Agent ID (from URL path parameter)
|
|
27867
|
+
*/
|
|
27522
27868
|
id: string;
|
|
27523
27869
|
};
|
|
27524
27870
|
query?: {
|
|
@@ -27533,9 +27879,9 @@ type PatchAdminExtractionResultsByIdCorrectionsData = {
|
|
|
27533
27879
|
[key: string]: unknown;
|
|
27534
27880
|
};
|
|
27535
27881
|
};
|
|
27536
|
-
url: "/admin/
|
|
27882
|
+
url: "/admin/agents/{id}/test";
|
|
27537
27883
|
};
|
|
27538
|
-
type
|
|
27884
|
+
type PostAdminAgentsByIdTestErrors = {
|
|
27539
27885
|
/**
|
|
27540
27886
|
* Bad Request - Invalid input data or malformed request
|
|
27541
27887
|
*/
|
|
@@ -27565,20 +27911,20 @@ type PatchAdminExtractionResultsByIdCorrectionsErrors = {
|
|
|
27565
27911
|
*/
|
|
27566
27912
|
default: Errors;
|
|
27567
27913
|
};
|
|
27568
|
-
type
|
|
27569
|
-
type
|
|
27914
|
+
type PostAdminAgentsByIdTestError = PostAdminAgentsByIdTestErrors[keyof PostAdminAgentsByIdTestErrors];
|
|
27915
|
+
type PostAdminAgentsByIdTestResponses = {
|
|
27570
27916
|
/**
|
|
27571
27917
|
* Success
|
|
27572
27918
|
*/
|
|
27573
|
-
|
|
27574
|
-
data?:
|
|
27575
|
-
included?: Array<
|
|
27919
|
+
201: {
|
|
27920
|
+
data?: Agent;
|
|
27921
|
+
included?: Array<AgentVersion>;
|
|
27576
27922
|
meta?: {
|
|
27577
27923
|
[key: string]: unknown;
|
|
27578
27924
|
};
|
|
27579
27925
|
};
|
|
27580
27926
|
};
|
|
27581
|
-
type
|
|
27927
|
+
type PostAdminAgentsByIdTestResponse = PostAdminAgentsByIdTestResponses[keyof PostAdminAgentsByIdTestResponses];
|
|
27582
27928
|
type DeleteAdminApiKeysByIdData = {
|
|
27583
27929
|
body?: never;
|
|
27584
27930
|
headers: {
|
|
@@ -36262,6 +36608,10 @@ type PatchAdminApplicationsByIdData = {
|
|
|
36262
36608
|
invite_only?: boolean | unknown;
|
|
36263
36609
|
logo_url?: string | unknown;
|
|
36264
36610
|
name?: string | unknown;
|
|
36611
|
+
/**
|
|
36612
|
+
* OAuth configuration for this application
|
|
36613
|
+
*/
|
|
36614
|
+
oauth?: ApplicationOauthInputUpdateType | unknown;
|
|
36265
36615
|
/**
|
|
36266
36616
|
* When true, password registration withholds JWT until email is verified
|
|
36267
36617
|
*/
|
|
@@ -37317,4 +37667,4 @@ type ApiKeyAllocateRequest = z.infer<typeof ApiKeyAllocateSchema>;
|
|
|
37317
37667
|
type DocumentBulkDeleteRequest = z.infer<typeof DocumentBulkDeleteSchema>;
|
|
37318
37668
|
type DocumentBulkReprocessRequest = z.infer<typeof DocumentBulkReprocessSchema>;
|
|
37319
37669
|
|
|
37320
|
-
export { type Account, type AccountCreditRequest, AccountCreditSchema, type AccountDebitRequest, AccountDebitSchema, type Agent, type AgentAdminCreateRequest, AgentAdminCreateSchema, type AgentTestResult, type AgentVersion, type AgentVersionComparison, type AgentVersionFieldsInputCreateType, type AiConfig, type ApiKey, type ApiKeyAllocateRequest, ApiKeyAllocateSchema, type Application, type ApplicationType, type AuditLog, AuthenticationError, AuthorizationError, type Balance, type Bucket, type BulkDismissalResult, type BulkReprocessResult, type ClientOptions, type Config, type Conversation, type CreditPackage, type Customer, type DeleteAdminAgentVersionsByIdData, type DeleteAdminAgentVersionsByIdError, type DeleteAdminAgentVersionsByIdErrors, type DeleteAdminAgentVersionsByIdResponses, type DeleteAdminAiConversationsByIdData, type DeleteAdminAiConversationsByIdError, type DeleteAdminAiConversationsByIdErrors, type DeleteAdminAiConversationsByIdResponses, type DeleteAdminAiGraphEdgesByIdData, type DeleteAdminAiGraphEdgesByIdError, type DeleteAdminAiGraphEdgesByIdErrors, type DeleteAdminAiGraphEdgesByIdResponses, type DeleteAdminAiGraphNodesByIdData, type DeleteAdminAiGraphNodesByIdError, type DeleteAdminAiGraphNodesByIdErrors, type DeleteAdminAiGraphNodesByIdResponses, type DeleteAdminAiMessagesByIdData, type DeleteAdminAiMessagesByIdError, type DeleteAdminAiMessagesByIdErrors, type DeleteAdminAiMessagesByIdResponses, type DeleteAdminApiKeysByIdData, type DeleteAdminApiKeysByIdError, type DeleteAdminApiKeysByIdErrors, type DeleteAdminApiKeysByIdResponses, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugData, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugError, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses, type DeleteAdminApplicationsByIdData, type DeleteAdminApplicationsByIdError, type DeleteAdminApplicationsByIdErrors, type DeleteAdminApplicationsByIdResponses, type DeleteAdminBucketsByIdData, type DeleteAdminBucketsByIdError, type DeleteAdminBucketsByIdErrors, type DeleteAdminBucketsByIdResponses, type DeleteAdminCreditPackagesByIdData, type DeleteAdminCreditPackagesByIdError, type DeleteAdminCreditPackagesByIdErrors, type DeleteAdminCreditPackagesByIdResponses, type DeleteAdminCustomersByIdData, type DeleteAdminCustomersByIdError, type DeleteAdminCustomersByIdErrors, type DeleteAdminCustomersByIdResponses, type DeleteAdminExtractionBatchesByIdData, type DeleteAdminExtractionBatchesByIdError, type DeleteAdminExtractionBatchesByIdErrors, type DeleteAdminExtractionBatchesByIdResponses, type DeleteAdminExtractionDocumentsByIdData, type DeleteAdminExtractionDocumentsByIdError, type DeleteAdminExtractionDocumentsByIdErrors, type DeleteAdminExtractionDocumentsByIdResponses, type DeleteAdminFieldTemplatesByIdData, type DeleteAdminFieldTemplatesByIdError, type DeleteAdminFieldTemplatesByIdErrors, type DeleteAdminFieldTemplatesByIdResponses, type DeleteAdminMessagesByIdData, type DeleteAdminMessagesByIdError, type DeleteAdminMessagesByIdErrors, type DeleteAdminMessagesByIdResponses, type DeleteAdminNotificationMethodsByIdData, type DeleteAdminNotificationMethodsByIdError, type DeleteAdminNotificationMethodsByIdErrors, type DeleteAdminNotificationMethodsByIdResponses, type DeleteAdminNotificationPreferencesByIdData, type DeleteAdminNotificationPreferencesByIdError, type DeleteAdminNotificationPreferencesByIdErrors, type DeleteAdminNotificationPreferencesByIdResponses, type DeleteAdminObjectsByIdData, type DeleteAdminObjectsByIdError, type DeleteAdminObjectsByIdErrors, type DeleteAdminObjectsByIdResponses, type DeleteAdminPaymentMethodsByIdData, type DeleteAdminPaymentMethodsByIdError, type DeleteAdminPaymentMethodsByIdErrors, type DeleteAdminPaymentMethodsByIdResponses, type DeleteAdminPlansByIdData, type DeleteAdminPlansByIdError, type DeleteAdminPlansByIdErrors, type DeleteAdminPlansByIdResponses, type DeleteAdminSearchSavedByIdData, type DeleteAdminSearchSavedByIdError, type DeleteAdminSearchSavedByIdErrors, type DeleteAdminSearchSavedByIdResponses, type DeleteAdminSubscriptionsByIdData, type DeleteAdminSubscriptionsByIdError, type DeleteAdminSubscriptionsByIdErrors, type DeleteAdminSubscriptionsByIdResponses, type DeleteAdminSystemMessagesByIdData, type DeleteAdminSystemMessagesByIdError, type DeleteAdminSystemMessagesByIdErrors, type DeleteAdminSystemMessagesByIdResponses, type DeleteAdminTenantMembershipsByTenantIdByUserIdData, type DeleteAdminTenantMembershipsByTenantIdByUserIdError, type DeleteAdminTenantMembershipsByTenantIdByUserIdErrors, type DeleteAdminTenantMembershipsByTenantIdByUserIdResponses, type DeleteAdminTenantPricingOverridesByIdData, type DeleteAdminTenantPricingOverridesByIdError, type DeleteAdminTenantPricingOverridesByIdErrors, type DeleteAdminTenantPricingOverridesByIdResponses, type DeleteAdminTenantsByIdData, type DeleteAdminTenantsByIdError, type DeleteAdminTenantsByIdErrors, type DeleteAdminTenantsByIdResponses, type DeleteAdminThreadsByIdData, type DeleteAdminThreadsByIdError, type DeleteAdminThreadsByIdErrors, type DeleteAdminThreadsByIdResponses, type DeleteAdminTrainingExamplesByIdData, type DeleteAdminTrainingExamplesByIdError, type DeleteAdminTrainingExamplesByIdErrors, type DeleteAdminTrainingExamplesByIdResponses, type DeleteAdminTrainingSessionsByIdData, type DeleteAdminTrainingSessionsByIdError, type DeleteAdminTrainingSessionsByIdErrors, type DeleteAdminTrainingSessionsByIdResponses, type DeleteAdminUserProfilesByIdData, type DeleteAdminUserProfilesByIdError, type DeleteAdminUserProfilesByIdErrors, type DeleteAdminUserProfilesByIdResponses, type DeleteAdminUsersByIdData, type DeleteAdminUsersByIdError, type DeleteAdminUsersByIdErrors, type DeleteAdminUsersByIdResponses, type DeleteAdminWebhookConfigsByIdData, type DeleteAdminWebhookConfigsByIdError, type DeleteAdminWebhookConfigsByIdErrors, type DeleteAdminWebhookConfigsByIdResponses, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdData, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdError, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type DeleteAdminWorkspacesByIdData, type DeleteAdminWorkspacesByIdError, type DeleteAdminWorkspacesByIdErrors, type DeleteAdminWorkspacesByIdResponses, type DocumentBulkDeleteRequest, DocumentBulkDeleteSchema, type DocumentBulkReprocessRequest, DocumentBulkReprocessSchema, type DocumentChunk, type DocumentStats, type EmailTemplate, type Embedding, type ErrorResponse, type Errors, type ExtractionBatch, type ExtractionDocument, type ExtractionExport, type ExtractionResult, type FieldMappingConfirmation, type FieldMappingResult, type FieldTemplate, type GetAdminAccountsByIdData, type GetAdminAccountsByIdError, type GetAdminAccountsByIdErrors, type GetAdminAccountsByIdResponse, type GetAdminAccountsByIdResponses, type GetAdminAccountsByTenantByTenantIdData, type GetAdminAccountsByTenantByTenantIdError, type GetAdminAccountsByTenantByTenantIdErrors, type GetAdminAccountsByTenantByTenantIdResponse, type GetAdminAccountsByTenantByTenantIdResponses, type GetAdminAccountsData, type GetAdminAccountsError, type GetAdminAccountsErrors, type GetAdminAccountsResponse, type GetAdminAccountsResponses, type GetAdminAgentVersionsByIdData, type GetAdminAgentVersionsByIdError, type GetAdminAgentVersionsByIdErrors, type GetAdminAgentVersionsByIdMetricsData, type GetAdminAgentVersionsByIdMetricsError, type GetAdminAgentVersionsByIdMetricsErrors, type GetAdminAgentVersionsByIdMetricsResponse, type GetAdminAgentVersionsByIdMetricsResponses, type GetAdminAgentVersionsByIdResponse, type GetAdminAgentVersionsByIdResponses, type GetAdminAgentVersionsData, type GetAdminAgentVersionsError, type GetAdminAgentVersionsErrors, type GetAdminAgentVersionsResponse, type GetAdminAgentVersionsResponses, type GetAdminAgentsByIdData, type GetAdminAgentsByIdError, type GetAdminAgentsByIdErrors, type GetAdminAgentsByIdResponse, type GetAdminAgentsByIdResponses, type GetAdminAgentsByIdSchemaVersionsData, type GetAdminAgentsByIdSchemaVersionsError, type GetAdminAgentsByIdSchemaVersionsErrors, type GetAdminAgentsByIdSchemaVersionsResponse, type GetAdminAgentsByIdSchemaVersionsResponses, type GetAdminAgentsByIdStatsData, type GetAdminAgentsByIdStatsError, type GetAdminAgentsByIdStatsErrors, type GetAdminAgentsByIdStatsResponse, type GetAdminAgentsByIdStatsResponses, type GetAdminAgentsByIdTrainingStatsData, type GetAdminAgentsByIdTrainingStatsError, type GetAdminAgentsByIdTrainingStatsErrors, type GetAdminAgentsByIdTrainingStatsResponse, type GetAdminAgentsByIdTrainingStatsResponses, type GetAdminAgentsByIdUsageData, type GetAdminAgentsByIdUsageError, type GetAdminAgentsByIdUsageErrors, type GetAdminAgentsByIdUsageResponse, type GetAdminAgentsByIdUsageResponses, type GetAdminAgentsData, type GetAdminAgentsError, type GetAdminAgentsErrors, type GetAdminAgentsResponse, type GetAdminAgentsResponses, type GetAdminAgentsUsageData, type GetAdminAgentsUsageError, type GetAdminAgentsUsageErrors, type GetAdminAgentsUsageResponse, type GetAdminAgentsUsageResponses, type GetAdminAiChunksDocumentByDocumentIdData, type GetAdminAiChunksDocumentByDocumentIdError, type GetAdminAiChunksDocumentByDocumentIdErrors, type GetAdminAiChunksDocumentByDocumentIdResponse, type GetAdminAiChunksDocumentByDocumentIdResponses, type GetAdminAiConversationsByIdData, type GetAdminAiConversationsByIdError, type GetAdminAiConversationsByIdErrors, type GetAdminAiConversationsByIdResponse, type GetAdminAiConversationsByIdResponses, type GetAdminAiConversationsData, type GetAdminAiConversationsError, type GetAdminAiConversationsErrors, type GetAdminAiConversationsResponse, type GetAdminAiConversationsResponses, type GetAdminAiGraphEdgesData, type GetAdminAiGraphEdgesError, type GetAdminAiGraphEdgesErrors, type GetAdminAiGraphEdgesResponse, type GetAdminAiGraphEdgesResponses, type GetAdminAiGraphNodesBySourceNodeIdRelatedData, type GetAdminAiGraphNodesBySourceNodeIdRelatedError, type GetAdminAiGraphNodesBySourceNodeIdRelatedErrors, type GetAdminAiGraphNodesBySourceNodeIdRelatedResponse, type GetAdminAiGraphNodesBySourceNodeIdRelatedResponses, type GetAdminAiGraphNodesData, type GetAdminAiGraphNodesError, type GetAdminAiGraphNodesErrors, type GetAdminAiGraphNodesLabelByLabelData, type GetAdminAiGraphNodesLabelByLabelError, type GetAdminAiGraphNodesLabelByLabelErrors, type GetAdminAiGraphNodesLabelByLabelResponse, type GetAdminAiGraphNodesLabelByLabelResponses, type GetAdminAiGraphNodesResponse, type GetAdminAiGraphNodesResponses, type GetAdminAiMessagesData, type GetAdminAiMessagesError, type GetAdminAiMessagesErrors, type GetAdminAiMessagesResponse, type GetAdminAiMessagesResponses, type GetAdminApiKeysActiveData, type GetAdminApiKeysActiveError, type GetAdminApiKeysActiveErrors, type GetAdminApiKeysActiveResponse, type GetAdminApiKeysActiveResponses, type GetAdminApiKeysByIdData, type GetAdminApiKeysByIdError, type GetAdminApiKeysByIdErrors, type GetAdminApiKeysByIdResponse, type GetAdminApiKeysByIdResponses, type GetAdminApiKeysData, type GetAdminApiKeysError, type GetAdminApiKeysErrors, type GetAdminApiKeysResponse, type GetAdminApiKeysResponses, type GetAdminApiKeysStatsData, type GetAdminApiKeysStatsError, type GetAdminApiKeysStatsErrors, type GetAdminApiKeysStatsResponse, type GetAdminApiKeysStatsResponses, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugData, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugError, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugResponse, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses, type GetAdminApplicationsByApplicationIdEmailTemplatesData, type GetAdminApplicationsByApplicationIdEmailTemplatesError, type GetAdminApplicationsByApplicationIdEmailTemplatesErrors, type GetAdminApplicationsByApplicationIdEmailTemplatesResponse, type GetAdminApplicationsByApplicationIdEmailTemplatesResponses, type GetAdminApplicationsByIdData, type GetAdminApplicationsByIdError, type GetAdminApplicationsByIdErrors, type GetAdminApplicationsByIdResponse, type GetAdminApplicationsByIdResponses, type GetAdminApplicationsBySlugBySlugData, type GetAdminApplicationsBySlugBySlugError, type GetAdminApplicationsBySlugBySlugErrors, type GetAdminApplicationsBySlugBySlugResponse, type GetAdminApplicationsBySlugBySlugResponses, type GetAdminApplicationsCurrentData, type GetAdminApplicationsCurrentError, type GetAdminApplicationsCurrentErrors, type GetAdminApplicationsCurrentResponse, type GetAdminApplicationsCurrentResponses, type GetAdminApplicationsData, type GetAdminApplicationsError, type GetAdminApplicationsErrors, type GetAdminApplicationsResponse, type GetAdminApplicationsResponses, type GetAdminAuditLogsActivityData, type GetAdminAuditLogsActivityError, type GetAdminAuditLogsActivityErrors, type GetAdminAuditLogsActivityResponse, type GetAdminAuditLogsActivityResponses, type GetAdminAuditLogsData, type GetAdminAuditLogsError, type GetAdminAuditLogsErrors, type GetAdminAuditLogsResponse, type GetAdminAuditLogsResponses, type GetAdminBalancesByIdData, type GetAdminBalancesByIdError, type GetAdminBalancesByIdErrors, type GetAdminBalancesByIdResponse, type GetAdminBalancesByIdResponses, type GetAdminBalancesData, type GetAdminBalancesError, type GetAdminBalancesErrors, type GetAdminBalancesResponse, type GetAdminBalancesResponses, type GetAdminBucketsAllData, type GetAdminBucketsAllError, type GetAdminBucketsAllErrors, type GetAdminBucketsAllResponse, type GetAdminBucketsAllResponses, type GetAdminBucketsByIdData, type GetAdminBucketsByIdError, type GetAdminBucketsByIdErrors, type GetAdminBucketsByIdObjectsData, type GetAdminBucketsByIdObjectsError, type GetAdminBucketsByIdObjectsErrors, type GetAdminBucketsByIdObjectsResponse, type GetAdminBucketsByIdObjectsResponses, type GetAdminBucketsByIdResponse, type GetAdminBucketsByIdResponses, type GetAdminBucketsByIdStatsData, type GetAdminBucketsByIdStatsError, type GetAdminBucketsByIdStatsErrors, type GetAdminBucketsByIdStatsResponse, type GetAdminBucketsByIdStatsResponses, type GetAdminBucketsData, type GetAdminBucketsError, type GetAdminBucketsErrors, type GetAdminBucketsResponse, type GetAdminBucketsResponses, type GetAdminConfigsData, type GetAdminConfigsError, type GetAdminConfigsErrors, type GetAdminConfigsResponse, type GetAdminConfigsResponses, type GetAdminCreditPackagesByIdData, type GetAdminCreditPackagesByIdError, type GetAdminCreditPackagesByIdErrors, type GetAdminCreditPackagesByIdResponse, type GetAdminCreditPackagesByIdResponses, type GetAdminCreditPackagesData, type GetAdminCreditPackagesError, type GetAdminCreditPackagesErrors, type GetAdminCreditPackagesResponse, type GetAdminCreditPackagesResponses, type GetAdminCreditPackagesSlugBySlugData, type GetAdminCreditPackagesSlugBySlugError, type GetAdminCreditPackagesSlugBySlugErrors, type GetAdminCreditPackagesSlugBySlugResponse, type GetAdminCreditPackagesSlugBySlugResponses, type GetAdminCustomersByIdData, type GetAdminCustomersByIdError, type GetAdminCustomersByIdErrors, type GetAdminCustomersByIdResponse, type GetAdminCustomersByIdResponses, type GetAdminDocumentsStatsData, type GetAdminDocumentsStatsError, type GetAdminDocumentsStatsErrors, type GetAdminDocumentsStatsResponse, type GetAdminDocumentsStatsResponses, type GetAdminExtractionBatchesByIdData, type GetAdminExtractionBatchesByIdError, type GetAdminExtractionBatchesByIdErrors, type GetAdminExtractionBatchesByIdResponse, type GetAdminExtractionBatchesByIdResponses, type GetAdminExtractionBatchesByIdUploadUrlsData, type GetAdminExtractionBatchesByIdUploadUrlsError, type GetAdminExtractionBatchesByIdUploadUrlsErrors, type GetAdminExtractionBatchesByIdUploadUrlsResponse, type GetAdminExtractionBatchesByIdUploadUrlsResponses, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdData, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdError, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdErrors, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdResponse, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdResponses, type GetAdminExtractionDocumentsByIdData, type GetAdminExtractionDocumentsByIdError, type GetAdminExtractionDocumentsByIdErrors, type GetAdminExtractionDocumentsByIdResponse, type GetAdminExtractionDocumentsByIdResponses, type GetAdminExtractionDocumentsByIdStatusData, type GetAdminExtractionDocumentsByIdStatusError, type GetAdminExtractionDocumentsByIdStatusErrors, type GetAdminExtractionDocumentsByIdStatusResponse, type GetAdminExtractionDocumentsByIdStatusResponses, type GetAdminExtractionDocumentsByIdViewData, type GetAdminExtractionDocumentsByIdViewError, type GetAdminExtractionDocumentsByIdViewErrors, type GetAdminExtractionDocumentsByIdViewResponse, type GetAdminExtractionDocumentsByIdViewResponses, type GetAdminExtractionDocumentsData, type GetAdminExtractionDocumentsError, type GetAdminExtractionDocumentsErrors, type GetAdminExtractionDocumentsResponse, type GetAdminExtractionDocumentsResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedResponses, type GetAdminExtractionResultsByIdData, type GetAdminExtractionResultsByIdError, type GetAdminExtractionResultsByIdErrors, type GetAdminExtractionResultsByIdResponse, type GetAdminExtractionResultsByIdResponses, type GetAdminExtractionResultsDocumentByDocumentIdData, type GetAdminExtractionResultsDocumentByDocumentIdError, type GetAdminExtractionResultsDocumentByDocumentIdErrors, type GetAdminExtractionResultsDocumentByDocumentIdResponse, type GetAdminExtractionResultsDocumentByDocumentIdResponses, type GetAdminExtractionResultsWorkspaceByWorkspaceIdData, type GetAdminExtractionResultsWorkspaceByWorkspaceIdError, type GetAdminExtractionResultsWorkspaceByWorkspaceIdErrors, type GetAdminExtractionResultsWorkspaceByWorkspaceIdResponse, type GetAdminExtractionResultsWorkspaceByWorkspaceIdResponses, type GetAdminExtractionSchemaDiscoveriesByIdData, type GetAdminExtractionSchemaDiscoveriesByIdError, type GetAdminExtractionSchemaDiscoveriesByIdErrors, type GetAdminExtractionSchemaDiscoveriesByIdResponse, type GetAdminExtractionSchemaDiscoveriesByIdResponses, type GetAdminFieldTemplatesByIdData, type GetAdminFieldTemplatesByIdError, type GetAdminFieldTemplatesByIdErrors, type GetAdminFieldTemplatesByIdResponse, type GetAdminFieldTemplatesByIdResponses, type GetAdminFieldTemplatesData, type GetAdminFieldTemplatesError, type GetAdminFieldTemplatesErrors, type GetAdminFieldTemplatesResponse, type GetAdminFieldTemplatesResponses, type GetAdminInvitationsConsumeByTokenData, type GetAdminInvitationsConsumeByTokenError, type GetAdminInvitationsConsumeByTokenErrors, type GetAdminInvitationsConsumeByTokenResponse, type GetAdminInvitationsConsumeByTokenResponses, type GetAdminInvitationsData, type GetAdminInvitationsError, type GetAdminInvitationsErrors, type GetAdminInvitationsMeData, type GetAdminInvitationsMeError, type GetAdminInvitationsMeErrors, type GetAdminInvitationsMeResponse, type GetAdminInvitationsMeResponses, type GetAdminInvitationsResponse, type GetAdminInvitationsResponses, type GetAdminIsvRevenueByIdData, type GetAdminIsvRevenueByIdError, type GetAdminIsvRevenueByIdErrors, type GetAdminIsvRevenueByIdResponse, type GetAdminIsvRevenueByIdResponses, type GetAdminIsvRevenueData, type GetAdminIsvRevenueError, type GetAdminIsvRevenueErrors, type GetAdminIsvRevenueResponse, type GetAdminIsvRevenueResponses, type GetAdminIsvSettlementsByIdData, type GetAdminIsvSettlementsByIdError, type GetAdminIsvSettlementsByIdErrors, type GetAdminIsvSettlementsByIdResponse, type GetAdminIsvSettlementsByIdResponses, type GetAdminIsvSettlementsData, type GetAdminIsvSettlementsError, type GetAdminIsvSettlementsErrors, type GetAdminIsvSettlementsResponse, type GetAdminIsvSettlementsResponses, type GetAdminLedgerByAccountByAccountIdData, type GetAdminLedgerByAccountByAccountIdError, type GetAdminLedgerByAccountByAccountIdErrors, type GetAdminLedgerByAccountByAccountIdResponse, type GetAdminLedgerByAccountByAccountIdResponses, type GetAdminLedgerByIdData, type GetAdminLedgerByIdError, type GetAdminLedgerByIdErrors, type GetAdminLedgerByIdResponse, type GetAdminLedgerByIdResponses, type GetAdminLedgerData, type GetAdminLedgerError, type GetAdminLedgerErrors, type GetAdminLedgerResponse, type GetAdminLedgerResponses, type GetAdminLlmAnalyticsByIdData, type GetAdminLlmAnalyticsByIdError, type GetAdminLlmAnalyticsByIdErrors, type GetAdminLlmAnalyticsByIdResponse, type GetAdminLlmAnalyticsByIdResponses, type GetAdminLlmAnalyticsCostsData, type GetAdminLlmAnalyticsCostsError, type GetAdminLlmAnalyticsCostsErrors, type GetAdminLlmAnalyticsCostsResponse, type GetAdminLlmAnalyticsCostsResponses, type GetAdminLlmAnalyticsData, type GetAdminLlmAnalyticsError, type GetAdminLlmAnalyticsErrors, type GetAdminLlmAnalyticsPlatformData, type GetAdminLlmAnalyticsPlatformError, type GetAdminLlmAnalyticsPlatformErrors, type GetAdminLlmAnalyticsPlatformResponse, type GetAdminLlmAnalyticsPlatformResponses, type GetAdminLlmAnalyticsResponse, type GetAdminLlmAnalyticsResponses, type GetAdminLlmAnalyticsSummaryData, type GetAdminLlmAnalyticsSummaryError, type GetAdminLlmAnalyticsSummaryErrors, type GetAdminLlmAnalyticsSummaryResponse, type GetAdminLlmAnalyticsSummaryResponses, type GetAdminLlmAnalyticsUsageData, type GetAdminLlmAnalyticsUsageError, type GetAdminLlmAnalyticsUsageErrors, type GetAdminLlmAnalyticsUsageResponse, type GetAdminLlmAnalyticsUsageResponses, type GetAdminLlmAnalyticsWorkspaceData, type GetAdminLlmAnalyticsWorkspaceError, type GetAdminLlmAnalyticsWorkspaceErrors, type GetAdminLlmAnalyticsWorkspaceResponse, type GetAdminLlmAnalyticsWorkspaceResponses, type GetAdminMessagesByIdData, type GetAdminMessagesByIdError, type GetAdminMessagesByIdErrors, type GetAdminMessagesByIdResponse, type GetAdminMessagesByIdResponses, type GetAdminMessagesData, type GetAdminMessagesError, type GetAdminMessagesErrors, type GetAdminMessagesResponse, type GetAdminMessagesResponses, type GetAdminMessagesSearchData, type GetAdminMessagesSearchError, type GetAdminMessagesSearchErrors, type GetAdminMessagesSearchResponse, type GetAdminMessagesSearchResponses, type GetAdminMessagesSemanticSearchData, type GetAdminMessagesSemanticSearchError, type GetAdminMessagesSemanticSearchErrors, type GetAdminMessagesSemanticSearchResponse, type GetAdminMessagesSemanticSearchResponses, type GetAdminNotificationLogsByIdData, type GetAdminNotificationLogsByIdError, type GetAdminNotificationLogsByIdErrors, type GetAdminNotificationLogsByIdResponse, type GetAdminNotificationLogsByIdResponses, type GetAdminNotificationLogsData, type GetAdminNotificationLogsError, type GetAdminNotificationLogsErrors, type GetAdminNotificationLogsResponse, type GetAdminNotificationLogsResponses, type GetAdminNotificationLogsStatsData, type GetAdminNotificationLogsStatsError, type GetAdminNotificationLogsStatsErrors, type GetAdminNotificationLogsStatsResponse, type GetAdminNotificationLogsStatsResponses, type GetAdminNotificationMethodsByIdData, type GetAdminNotificationMethodsByIdError, type GetAdminNotificationMethodsByIdErrors, type GetAdminNotificationMethodsByIdResponse, type GetAdminNotificationMethodsByIdResponses, type GetAdminNotificationMethodsData, type GetAdminNotificationMethodsError, type GetAdminNotificationMethodsErrors, type GetAdminNotificationMethodsResponse, type GetAdminNotificationMethodsResponses, type GetAdminNotificationPreferencesByIdData, type GetAdminNotificationPreferencesByIdError, type GetAdminNotificationPreferencesByIdErrors, type GetAdminNotificationPreferencesByIdResponse, type GetAdminNotificationPreferencesByIdResponses, type GetAdminNotificationPreferencesData, type GetAdminNotificationPreferencesError, type GetAdminNotificationPreferencesErrors, type GetAdminNotificationPreferencesResponse, type GetAdminNotificationPreferencesResponses, type GetAdminObjectsByIdData, type GetAdminObjectsByIdError, type GetAdminObjectsByIdErrors, type GetAdminObjectsByIdResponse, type GetAdminObjectsByIdResponses, type GetAdminObjectsData, type GetAdminObjectsError, type GetAdminObjectsErrors, type GetAdminObjectsResponse, type GetAdminObjectsResponses, type GetAdminPaymentMethodsByIdData, type GetAdminPaymentMethodsByIdError, type GetAdminPaymentMethodsByIdErrors, type GetAdminPaymentMethodsByIdResponse, type GetAdminPaymentMethodsByIdResponses, type GetAdminPaymentMethodsData, type GetAdminPaymentMethodsError, type GetAdminPaymentMethodsErrors, type GetAdminPaymentMethodsResponse, type GetAdminPaymentMethodsResponses, type GetAdminPermissionsData, type GetAdminPermissionsError, type GetAdminPermissionsErrors, type GetAdminPermissionsPresetsData, type GetAdminPermissionsPresetsError, type GetAdminPermissionsPresetsErrors, type GetAdminPermissionsPresetsResponse, type GetAdminPermissionsPresetsResponses, type GetAdminPermissionsResponse, type GetAdminPermissionsResponses, type GetAdminPlansByIdData, type GetAdminPlansByIdError, type GetAdminPlansByIdErrors, type GetAdminPlansByIdResponse, type GetAdminPlansByIdResponses, type GetAdminPlansData, type GetAdminPlansError, type GetAdminPlansErrors, type GetAdminPlansResponse, type GetAdminPlansResponses, type GetAdminPlansSlugBySlugData, type GetAdminPlansSlugBySlugError, type GetAdminPlansSlugBySlugErrors, type GetAdminPlansSlugBySlugResponse, type GetAdminPlansSlugBySlugResponses, type GetAdminPricingRulesByIdData, type GetAdminPricingRulesByIdError, type GetAdminPricingRulesByIdErrors, type GetAdminPricingRulesByIdResponse, type GetAdminPricingRulesByIdResponses, type GetAdminPricingRulesData, type GetAdminPricingRulesError, type GetAdminPricingRulesErrors, type GetAdminPricingRulesResolveData, type GetAdminPricingRulesResolveError, type GetAdminPricingRulesResolveErrors, type GetAdminPricingRulesResolveResponse, type GetAdminPricingRulesResolveResponses, type GetAdminPricingRulesResponse, type GetAdminPricingRulesResponses, type GetAdminPricingStrategiesByIdData, type GetAdminPricingStrategiesByIdError, type GetAdminPricingStrategiesByIdErrors, type GetAdminPricingStrategiesByIdResponse, type GetAdminPricingStrategiesByIdResponses, type GetAdminPricingStrategiesData, type GetAdminPricingStrategiesError, type GetAdminPricingStrategiesErrors, type GetAdminPricingStrategiesResponse, type GetAdminPricingStrategiesResponses, type GetAdminSearchAnalyticsData, type GetAdminSearchAnalyticsError, type GetAdminSearchAnalyticsErrors, type GetAdminSearchAnalyticsResponse, type GetAdminSearchAnalyticsResponses, type GetAdminSearchAnalyticsSummaryData, type GetAdminSearchAnalyticsSummaryError, type GetAdminSearchAnalyticsSummaryErrors, type GetAdminSearchAnalyticsSummaryResponse, type GetAdminSearchAnalyticsSummaryResponses, type GetAdminSearchData, type GetAdminSearchError, type GetAdminSearchErrors, type GetAdminSearchHealthData, type GetAdminSearchHealthError, type GetAdminSearchHealthErrors, type GetAdminSearchHealthResponse, type GetAdminSearchHealthResponses, type GetAdminSearchIndexesData, type GetAdminSearchIndexesError, type GetAdminSearchIndexesErrors, type GetAdminSearchIndexesResponse, type GetAdminSearchIndexesResponses, type GetAdminSearchResponse, type GetAdminSearchResponses, type GetAdminSearchSavedData, type GetAdminSearchSavedError, type GetAdminSearchSavedErrors, type GetAdminSearchSavedResponse, type GetAdminSearchSavedResponses, type GetAdminSearchSemanticData, type GetAdminSearchSemanticError, type GetAdminSearchSemanticErrors, type GetAdminSearchSemanticResponse, type GetAdminSearchSemanticResponses, type GetAdminSearchStatsData, type GetAdminSearchStatsError, type GetAdminSearchStatsErrors, type GetAdminSearchStatsResponse, type GetAdminSearchStatsResponses, type GetAdminSearchStatusData, type GetAdminSearchStatusError, type GetAdminSearchStatusErrors, type GetAdminSearchStatusResponse, type GetAdminSearchStatusResponses, type GetAdminSearchSuggestData, type GetAdminSearchSuggestError, type GetAdminSearchSuggestErrors, type GetAdminSearchSuggestResponse, type GetAdminSearchSuggestResponses, type GetAdminStorageStatsData, type GetAdminStorageStatsError, type GetAdminStorageStatsErrors, type GetAdminStorageStatsResponse, type GetAdminStorageStatsResponses, type GetAdminStorageStatsTenantByTenantIdData, type GetAdminStorageStatsTenantByTenantIdError, type GetAdminStorageStatsTenantByTenantIdErrors, type GetAdminStorageStatsTenantByTenantIdResponse, type GetAdminStorageStatsTenantByTenantIdResponses, type GetAdminSubscriptionsByIdData, type GetAdminSubscriptionsByIdError, type GetAdminSubscriptionsByIdErrors, type GetAdminSubscriptionsByIdResponse, type GetAdminSubscriptionsByIdResponses, type GetAdminSubscriptionsByTenantByTenantIdData, type GetAdminSubscriptionsByTenantByTenantIdError, type GetAdminSubscriptionsByTenantByTenantIdErrors, type GetAdminSubscriptionsByTenantByTenantIdResponse, type GetAdminSubscriptionsByTenantByTenantIdResponses, type GetAdminSubscriptionsData, type GetAdminSubscriptionsError, type GetAdminSubscriptionsErrors, type GetAdminSubscriptionsResponse, type GetAdminSubscriptionsResponses, type GetAdminSysAiConfigByIdData, type GetAdminSysAiConfigByIdError, type GetAdminSysAiConfigByIdErrors, type GetAdminSysAiConfigByIdResponse, type GetAdminSysAiConfigByIdResponses, type GetAdminSysAiConfigData, type GetAdminSysAiConfigError, type GetAdminSysAiConfigErrors, type GetAdminSysAiConfigResponse, type GetAdminSysAiConfigResponses, type GetAdminSysSemanticCacheByIdData, type GetAdminSysSemanticCacheByIdError, type GetAdminSysSemanticCacheByIdErrors, type GetAdminSysSemanticCacheByIdResponse, type GetAdminSysSemanticCacheByIdResponses, type GetAdminSystemMessagesByIdData, type GetAdminSystemMessagesByIdError, type GetAdminSystemMessagesByIdErrors, type GetAdminSystemMessagesByIdResponse, type GetAdminSystemMessagesByIdResponses, type GetAdminSystemMessagesData, type GetAdminSystemMessagesError, type GetAdminSystemMessagesErrors, type GetAdminSystemMessagesResponse, type GetAdminSystemMessagesResponses, type GetAdminTenantMembershipsData, type GetAdminTenantMembershipsError, type GetAdminTenantMembershipsErrors, type GetAdminTenantMembershipsResponse, type GetAdminTenantMembershipsResponses, type GetAdminTenantPricingOverridesByIdData, type GetAdminTenantPricingOverridesByIdError, type GetAdminTenantPricingOverridesByIdErrors, type GetAdminTenantPricingOverridesByIdResponse, type GetAdminTenantPricingOverridesByIdResponses, type GetAdminTenantPricingOverridesData, type GetAdminTenantPricingOverridesError, type GetAdminTenantPricingOverridesErrors, type GetAdminTenantPricingOverridesResponse, type GetAdminTenantPricingOverridesResponses, type GetAdminTenantsByIdData, type GetAdminTenantsByIdError, type GetAdminTenantsByIdErrors, type GetAdminTenantsByIdResponse, type GetAdminTenantsByIdResponses, type GetAdminTenantsByTenantIdDocumentStatsData, type GetAdminTenantsByTenantIdDocumentStatsError, type GetAdminTenantsByTenantIdDocumentStatsErrors, type GetAdminTenantsByTenantIdDocumentStatsResponse, type GetAdminTenantsByTenantIdDocumentStatsResponses, type GetAdminTenantsByTenantIdStatsData, type GetAdminTenantsByTenantIdStatsError, type GetAdminTenantsByTenantIdStatsErrors, type GetAdminTenantsByTenantIdStatsResponse, type GetAdminTenantsByTenantIdStatsResponses, type GetAdminTenantsByTenantIdWorkspaceStatsData, type GetAdminTenantsByTenantIdWorkspaceStatsError, type GetAdminTenantsByTenantIdWorkspaceStatsErrors, type GetAdminTenantsByTenantIdWorkspaceStatsResponse, type GetAdminTenantsByTenantIdWorkspaceStatsResponses, type GetAdminTenantsData, type GetAdminTenantsError, type GetAdminTenantsErrors, type GetAdminTenantsResponse, type GetAdminTenantsResponses, type GetAdminThreadsByIdData, type GetAdminThreadsByIdError, type GetAdminThreadsByIdErrors, type GetAdminThreadsByIdMessagesData, type GetAdminThreadsByIdMessagesError, type GetAdminThreadsByIdMessagesErrors, type GetAdminThreadsByIdMessagesResponse, type GetAdminThreadsByIdMessagesResponses, type GetAdminThreadsByIdResponse, type GetAdminThreadsByIdResponses, type GetAdminThreadsData, type GetAdminThreadsError, type GetAdminThreadsErrors, type GetAdminThreadsResponse, type GetAdminThreadsResponses, type GetAdminThreadsSearchData, type GetAdminThreadsSearchError, type GetAdminThreadsSearchErrors, type GetAdminThreadsSearchResponse, type GetAdminThreadsSearchResponses, type GetAdminThreadsStatsData, type GetAdminThreadsStatsError, type GetAdminThreadsStatsErrors, type GetAdminThreadsStatsResponse, type GetAdminThreadsStatsResponses, type GetAdminThreadsWorkspaceStatsData, type GetAdminThreadsWorkspaceStatsError, type GetAdminThreadsWorkspaceStatsErrors, type GetAdminThreadsWorkspaceStatsResponse, type GetAdminThreadsWorkspaceStatsResponses, type GetAdminTrainingExamplesByIdData, type GetAdminTrainingExamplesByIdError, type GetAdminTrainingExamplesByIdErrors, type GetAdminTrainingExamplesByIdResponse, type GetAdminTrainingExamplesByIdResponses, type GetAdminTrainingExamplesData, type GetAdminTrainingExamplesError, type GetAdminTrainingExamplesErrors, type GetAdminTrainingExamplesResponse, type GetAdminTrainingExamplesResponses, type GetAdminTrainingSessionsAgentsByAgentIdSessionsData, type GetAdminTrainingSessionsAgentsByAgentIdSessionsError, type GetAdminTrainingSessionsAgentsByAgentIdSessionsErrors, type GetAdminTrainingSessionsAgentsByAgentIdSessionsResponse, type GetAdminTrainingSessionsAgentsByAgentIdSessionsResponses, type GetAdminTrainingSessionsByIdData, type GetAdminTrainingSessionsByIdError, type GetAdminTrainingSessionsByIdErrors, type GetAdminTrainingSessionsByIdResponse, type GetAdminTrainingSessionsByIdResponses, type GetAdminTransactionsByIdData, type GetAdminTransactionsByIdError, type GetAdminTransactionsByIdErrors, type GetAdminTransactionsByIdResponse, type GetAdminTransactionsByIdResponses, type GetAdminTransactionsData, type GetAdminTransactionsError, type GetAdminTransactionsErrors, type GetAdminTransactionsResponse, type GetAdminTransactionsResponses, type GetAdminTransfersByIdData, type GetAdminTransfersByIdError, type GetAdminTransfersByIdErrors, type GetAdminTransfersByIdResponse, type GetAdminTransfersByIdResponses, type GetAdminTransfersData, type GetAdminTransfersError, type GetAdminTransfersErrors, type GetAdminTransfersResponse, type GetAdminTransfersResponses, type GetAdminUserProfilesByIdData, type GetAdminUserProfilesByIdError, type GetAdminUserProfilesByIdErrors, type GetAdminUserProfilesByIdResponse, type GetAdminUserProfilesByIdResponses, type GetAdminUserProfilesData, type GetAdminUserProfilesError, type GetAdminUserProfilesErrors, type GetAdminUserProfilesMeData, type GetAdminUserProfilesMeError, type GetAdminUserProfilesMeErrors, type GetAdminUserProfilesMeResponse, type GetAdminUserProfilesMeResponses, type GetAdminUserProfilesResponse, type GetAdminUserProfilesResponses, type GetAdminUsersByEmailData, type GetAdminUsersByEmailError, type GetAdminUsersByEmailErrors, type GetAdminUsersByEmailResponse, type GetAdminUsersByEmailResponses, type GetAdminUsersByIdData, type GetAdminUsersByIdError, type GetAdminUsersByIdErrors, type GetAdminUsersByIdResponse, type GetAdminUsersByIdResponses, type GetAdminUsersData, type GetAdminUsersError, type GetAdminUsersErrors, type GetAdminUsersMeActivityData, type GetAdminUsersMeActivityError, type GetAdminUsersMeActivityErrors, type GetAdminUsersMeActivityResponse, type GetAdminUsersMeActivityResponses, type GetAdminUsersMeDashboardData, type GetAdminUsersMeDashboardError, type GetAdminUsersMeDashboardErrors, type GetAdminUsersMeDashboardResponse, type GetAdminUsersMeDashboardResponses, type GetAdminUsersMeData, type GetAdminUsersMeError, type GetAdminUsersMeErrors, type GetAdminUsersMeResponse, type GetAdminUsersMeResponses, type GetAdminUsersMeStatsData, type GetAdminUsersMeStatsError, type GetAdminUsersMeStatsErrors, type GetAdminUsersMeStatsResponse, type GetAdminUsersMeStatsResponses, type GetAdminUsersMeTenantsData, type GetAdminUsersMeTenantsError, type GetAdminUsersMeTenantsErrors, type GetAdminUsersMeTenantsResponse, type GetAdminUsersMeTenantsResponses, type GetAdminUsersResponse, type GetAdminUsersResponses, type GetAdminWalletData, type GetAdminWalletError, type GetAdminWalletErrors, type GetAdminWalletResponse, type GetAdminWalletResponses, type GetAdminWalletStorageBreakdownData, type GetAdminWalletStorageBreakdownError, type GetAdminWalletStorageBreakdownErrors, type GetAdminWalletStorageBreakdownResponse, type GetAdminWalletStorageBreakdownResponses, type GetAdminWalletUsageBreakdownData, type GetAdminWalletUsageBreakdownError, type GetAdminWalletUsageBreakdownErrors, type GetAdminWalletUsageBreakdownResponse, type GetAdminWalletUsageBreakdownResponses, type GetAdminWalletUsageData, type GetAdminWalletUsageError, type GetAdminWalletUsageErrors, type GetAdminWalletUsageResponse, type GetAdminWalletUsageResponses, type GetAdminWebhookConfigsByIdData, type GetAdminWebhookConfigsByIdError, type GetAdminWebhookConfigsByIdErrors, type GetAdminWebhookConfigsByIdEventsData, type GetAdminWebhookConfigsByIdEventsError, type GetAdminWebhookConfigsByIdEventsErrors, type GetAdminWebhookConfigsByIdEventsResponse, type GetAdminWebhookConfigsByIdEventsResponses, type GetAdminWebhookConfigsByIdResponse, type GetAdminWebhookConfigsByIdResponses, type GetAdminWebhookConfigsData, type GetAdminWebhookConfigsError, type GetAdminWebhookConfigsErrors, type GetAdminWebhookConfigsResponse, type GetAdminWebhookConfigsResponses, type GetAdminWebhookConfigsStatsData, type GetAdminWebhookConfigsStatsError, type GetAdminWebhookConfigsStatsErrors, type GetAdminWebhookConfigsStatsResponse, type GetAdminWebhookConfigsStatsResponses, type GetAdminWebhookDeliveriesByIdData, type GetAdminWebhookDeliveriesByIdError, type GetAdminWebhookDeliveriesByIdErrors, type GetAdminWebhookDeliveriesByIdResponse, type GetAdminWebhookDeliveriesByIdResponses, type GetAdminWebhookDeliveriesData, type GetAdminWebhookDeliveriesError, type GetAdminWebhookDeliveriesErrors, type GetAdminWebhookDeliveriesResponse, type GetAdminWebhookDeliveriesResponses, type GetAdminWebhookDeliveriesStatsData, type GetAdminWebhookDeliveriesStatsError, type GetAdminWebhookDeliveriesStatsErrors, type GetAdminWebhookDeliveriesStatsResponse, type GetAdminWebhookDeliveriesStatsResponses, type GetAdminWorkspaceMembershipsData, type GetAdminWorkspaceMembershipsError, type GetAdminWorkspaceMembershipsErrors, type GetAdminWorkspaceMembershipsResponse, type GetAdminWorkspaceMembershipsResponses, type GetAdminWorkspacesAnalyticsBatchData, type GetAdminWorkspacesAnalyticsBatchError, type GetAdminWorkspacesAnalyticsBatchErrors, type GetAdminWorkspacesAnalyticsBatchResponse, type GetAdminWorkspacesAnalyticsBatchResponses, type GetAdminWorkspacesByIdData, type GetAdminWorkspacesByIdError, type GetAdminWorkspacesByIdErrors, type GetAdminWorkspacesByIdMembersData, type GetAdminWorkspacesByIdMembersError, type GetAdminWorkspacesByIdMembersErrors, type GetAdminWorkspacesByIdMembersResponse, type GetAdminWorkspacesByIdMembersResponses, type GetAdminWorkspacesByIdResponse, type GetAdminWorkspacesByIdResponses, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingError, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponse, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdData, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdError, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdErrors, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdResponse, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdResponses, type GetAdminWorkspacesByWorkspaceIdExtractionExportsData, type GetAdminWorkspacesByWorkspaceIdExtractionExportsError, type GetAdminWorkspacesByWorkspaceIdExtractionExportsErrors, type GetAdminWorkspacesByWorkspaceIdExtractionExportsResponse, type GetAdminWorkspacesByWorkspaceIdExtractionExportsResponses, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsData, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsError, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsErrors, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsResponse, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsResponses, type GetAdminWorkspacesData, type GetAdminWorkspacesError, type GetAdminWorkspacesErrors, type GetAdminWorkspacesMineData, type GetAdminWorkspacesMineError, type GetAdminWorkspacesMineErrors, type GetAdminWorkspacesMineResponse, type GetAdminWorkspacesMineResponses, type GetAdminWorkspacesResponse, type GetAdminWorkspacesResponses, type GetAdminWorkspacesSharedData, type GetAdminWorkspacesSharedError, type GetAdminWorkspacesSharedErrors, type GetAdminWorkspacesSharedResponse, type GetAdminWorkspacesSharedResponses, GptAdmin, GptCoreError, type GraphEdge, type GraphNode, type Invitation, type Invoice, type IsvRevenue, type IsvSettlement, type Ledger, type Link, type Links, type LlmAnalytics, type Message, NetworkError, NotFoundError, type NotificationLog, type NotificationMethod, type NotificationPreference, type ObjectType, type OperationSuccess, type PatchAdminAccountsByIdCreditData, type PatchAdminAccountsByIdCreditError, type PatchAdminAccountsByIdCreditErrors, type PatchAdminAccountsByIdCreditResponse, type PatchAdminAccountsByIdCreditResponses, type PatchAdminAccountsByIdDebitData, type PatchAdminAccountsByIdDebitError, type PatchAdminAccountsByIdDebitErrors, type PatchAdminAccountsByIdDebitResponse, type PatchAdminAccountsByIdDebitResponses, type PatchAdminAgentsByIdSchemaVersionsByVersionIdData, type PatchAdminAgentsByIdSchemaVersionsByVersionIdError, type PatchAdminAgentsByIdSchemaVersionsByVersionIdErrors, type PatchAdminAgentsByIdSchemaVersionsByVersionIdResponse, type PatchAdminAgentsByIdSchemaVersionsByVersionIdResponses, type PatchAdminAiConversationsByIdData, type PatchAdminAiConversationsByIdError, type PatchAdminAiConversationsByIdErrors, type PatchAdminAiConversationsByIdResponse, type PatchAdminAiConversationsByIdResponses, type PatchAdminApiKeysByIdAllocateData, type PatchAdminApiKeysByIdAllocateError, type PatchAdminApiKeysByIdAllocateErrors, type PatchAdminApiKeysByIdAllocateResponse, type PatchAdminApiKeysByIdAllocateResponses, type PatchAdminApiKeysByIdData, type PatchAdminApiKeysByIdError, type PatchAdminApiKeysByIdErrors, type PatchAdminApiKeysByIdResetPeriodData, type PatchAdminApiKeysByIdResetPeriodError, type PatchAdminApiKeysByIdResetPeriodErrors, type PatchAdminApiKeysByIdResetPeriodResponse, type PatchAdminApiKeysByIdResetPeriodResponses, type PatchAdminApiKeysByIdResponse, type PatchAdminApiKeysByIdResponses, type PatchAdminApiKeysByIdRevokeData, type PatchAdminApiKeysByIdRevokeError, type PatchAdminApiKeysByIdRevokeErrors, type PatchAdminApiKeysByIdRevokeResponse, type PatchAdminApiKeysByIdRevokeResponses, type PatchAdminApiKeysByIdRotateData, type PatchAdminApiKeysByIdRotateError, type PatchAdminApiKeysByIdRotateErrors, type PatchAdminApiKeysByIdRotateResponse, type PatchAdminApiKeysByIdRotateResponses, type PatchAdminApiKeysByIdSetBudgetData, type PatchAdminApiKeysByIdSetBudgetError, type PatchAdminApiKeysByIdSetBudgetErrors, type PatchAdminApiKeysByIdSetBudgetResponse, type PatchAdminApiKeysByIdSetBudgetResponses, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugData, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugError, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugResponse, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses, type PatchAdminApplicationsByIdAllocateCreditsData, type PatchAdminApplicationsByIdAllocateCreditsError, type PatchAdminApplicationsByIdAllocateCreditsErrors, type PatchAdminApplicationsByIdAllocateCreditsResponse, type PatchAdminApplicationsByIdAllocateCreditsResponses, type PatchAdminApplicationsByIdData, type PatchAdminApplicationsByIdError, type PatchAdminApplicationsByIdErrors, type PatchAdminApplicationsByIdGrantCreditsData, type PatchAdminApplicationsByIdGrantCreditsError, type PatchAdminApplicationsByIdGrantCreditsErrors, type PatchAdminApplicationsByIdGrantCreditsResponse, type PatchAdminApplicationsByIdGrantCreditsResponses, type PatchAdminApplicationsByIdResponse, type PatchAdminApplicationsByIdResponses, type PatchAdminBucketsByIdData, type PatchAdminBucketsByIdError, type PatchAdminBucketsByIdErrors, type PatchAdminBucketsByIdResponse, type PatchAdminBucketsByIdResponses, type PatchAdminConfigsByKeyData, type PatchAdminConfigsByKeyError, type PatchAdminConfigsByKeyErrors, type PatchAdminConfigsByKeyResponse, type PatchAdminConfigsByKeyResponses, type PatchAdminCreditPackagesByIdData, type PatchAdminCreditPackagesByIdError, type PatchAdminCreditPackagesByIdErrors, type PatchAdminCreditPackagesByIdResponse, type PatchAdminCreditPackagesByIdResponses, type PatchAdminCustomersByIdData, type PatchAdminCustomersByIdError, type PatchAdminCustomersByIdErrors, type PatchAdminCustomersByIdResponse, type PatchAdminCustomersByIdResponses, type PatchAdminExtractionDocumentsByIdCancelData, type PatchAdminExtractionDocumentsByIdCancelError, type PatchAdminExtractionDocumentsByIdCancelErrors, type PatchAdminExtractionDocumentsByIdCancelResponse, type PatchAdminExtractionDocumentsByIdCancelResponses, type PatchAdminExtractionDocumentsByIdDismissData, type PatchAdminExtractionDocumentsByIdDismissError, type PatchAdminExtractionDocumentsByIdDismissErrors, type PatchAdminExtractionDocumentsByIdDismissResponse, type PatchAdminExtractionDocumentsByIdDismissResponses, type PatchAdminExtractionDocumentsByIdDismissTrainingData, type PatchAdminExtractionDocumentsByIdDismissTrainingError, type PatchAdminExtractionDocumentsByIdDismissTrainingErrors, type PatchAdminExtractionDocumentsByIdDismissTrainingResponse, type PatchAdminExtractionDocumentsByIdDismissTrainingResponses, type PatchAdminExtractionDocumentsByIdExcludeData, type PatchAdminExtractionDocumentsByIdExcludeError, type PatchAdminExtractionDocumentsByIdExcludeErrors, type PatchAdminExtractionDocumentsByIdExcludeResponse, type PatchAdminExtractionDocumentsByIdExcludeResponses, type PatchAdminExtractionDocumentsByIdFinishUploadData, type PatchAdminExtractionDocumentsByIdFinishUploadError, type PatchAdminExtractionDocumentsByIdFinishUploadErrors, type PatchAdminExtractionDocumentsByIdFinishUploadResponse, type PatchAdminExtractionDocumentsByIdFinishUploadResponses, type PatchAdminExtractionDocumentsByIdIncludeData, type PatchAdminExtractionDocumentsByIdIncludeError, type PatchAdminExtractionDocumentsByIdIncludeErrors, type PatchAdminExtractionDocumentsByIdIncludeResponse, type PatchAdminExtractionDocumentsByIdIncludeResponses, type PatchAdminExtractionDocumentsByIdMarkTrainedData, type PatchAdminExtractionDocumentsByIdMarkTrainedError, type PatchAdminExtractionDocumentsByIdMarkTrainedErrors, type PatchAdminExtractionDocumentsByIdMarkTrainedResponse, type PatchAdminExtractionDocumentsByIdMarkTrainedResponses, type PatchAdminExtractionDocumentsByIdReprocessData, type PatchAdminExtractionDocumentsByIdReprocessError, type PatchAdminExtractionDocumentsByIdReprocessErrors, type PatchAdminExtractionDocumentsByIdReprocessResponse, type PatchAdminExtractionDocumentsByIdReprocessResponses, type PatchAdminExtractionDocumentsByIdRestoreData, type PatchAdminExtractionDocumentsByIdRestoreError, type PatchAdminExtractionDocumentsByIdRestoreErrors, type PatchAdminExtractionDocumentsByIdRestoreResponse, type PatchAdminExtractionDocumentsByIdRestoreResponses, type PatchAdminExtractionDocumentsByIdStatusData, type PatchAdminExtractionDocumentsByIdStatusError, type PatchAdminExtractionDocumentsByIdStatusErrors, type PatchAdminExtractionDocumentsByIdStatusResponse, type PatchAdminExtractionDocumentsByIdStatusResponses, type PatchAdminExtractionDocumentsByIdVerificationData, type PatchAdminExtractionDocumentsByIdVerificationError, type PatchAdminExtractionDocumentsByIdVerificationErrors, type PatchAdminExtractionDocumentsByIdVerificationResponse, type PatchAdminExtractionDocumentsByIdVerificationResponses, type PatchAdminExtractionResultsByIdCorrectionsData, type PatchAdminExtractionResultsByIdCorrectionsError, type PatchAdminExtractionResultsByIdCorrectionsErrors, type PatchAdminExtractionResultsByIdCorrectionsResponse, type PatchAdminExtractionResultsByIdCorrectionsResponses, type PatchAdminExtractionResultsByIdRegenerateData, type PatchAdminExtractionResultsByIdRegenerateError, type PatchAdminExtractionResultsByIdRegenerateErrors, type PatchAdminExtractionResultsByIdRegenerateResponse, type PatchAdminExtractionResultsByIdRegenerateResponses, type PatchAdminInvitationsByIdAcceptByUserData, type PatchAdminInvitationsByIdAcceptByUserError, type PatchAdminInvitationsByIdAcceptByUserErrors, type PatchAdminInvitationsByIdAcceptByUserResponse, type PatchAdminInvitationsByIdAcceptByUserResponses, type PatchAdminInvitationsByIdAcceptData, type PatchAdminInvitationsByIdAcceptError, type PatchAdminInvitationsByIdAcceptErrors, type PatchAdminInvitationsByIdAcceptResponse, type PatchAdminInvitationsByIdAcceptResponses, type PatchAdminInvitationsByIdDeclineData, type PatchAdminInvitationsByIdDeclineError, type PatchAdminInvitationsByIdDeclineErrors, type PatchAdminInvitationsByIdDeclineResponse, type PatchAdminInvitationsByIdDeclineResponses, type PatchAdminInvitationsByIdResendData, type PatchAdminInvitationsByIdResendError, type PatchAdminInvitationsByIdResendErrors, type PatchAdminInvitationsByIdResendResponse, type PatchAdminInvitationsByIdResendResponses, type PatchAdminInvitationsByIdRevokeData, type PatchAdminInvitationsByIdRevokeError, type PatchAdminInvitationsByIdRevokeErrors, type PatchAdminInvitationsByIdRevokeResponse, type PatchAdminInvitationsByIdRevokeResponses, type PatchAdminIsvSettlementsByIdData, type PatchAdminIsvSettlementsByIdError, type PatchAdminIsvSettlementsByIdErrors, type PatchAdminIsvSettlementsByIdResponse, type PatchAdminIsvSettlementsByIdResponses, type PatchAdminMessagesByIdData, type PatchAdminMessagesByIdError, type PatchAdminMessagesByIdErrors, type PatchAdminMessagesByIdResponse, type PatchAdminMessagesByIdResponses, type PatchAdminNotificationMethodsByIdData, type PatchAdminNotificationMethodsByIdError, type PatchAdminNotificationMethodsByIdErrors, type PatchAdminNotificationMethodsByIdResponse, type PatchAdminNotificationMethodsByIdResponses, type PatchAdminNotificationMethodsByIdSendVerificationData, type PatchAdminNotificationMethodsByIdSendVerificationError, type PatchAdminNotificationMethodsByIdSendVerificationErrors, type PatchAdminNotificationMethodsByIdSendVerificationResponse, type PatchAdminNotificationMethodsByIdSendVerificationResponses, type PatchAdminNotificationMethodsByIdSetPrimaryData, type PatchAdminNotificationMethodsByIdSetPrimaryError, type PatchAdminNotificationMethodsByIdSetPrimaryErrors, type PatchAdminNotificationMethodsByIdSetPrimaryResponse, type PatchAdminNotificationMethodsByIdSetPrimaryResponses, type PatchAdminNotificationMethodsByIdVerifyData, type PatchAdminNotificationMethodsByIdVerifyError, type PatchAdminNotificationMethodsByIdVerifyErrors, type PatchAdminNotificationMethodsByIdVerifyResponse, type PatchAdminNotificationMethodsByIdVerifyResponses, type PatchAdminNotificationPreferencesByIdData, type PatchAdminNotificationPreferencesByIdError, type PatchAdminNotificationPreferencesByIdErrors, type PatchAdminNotificationPreferencesByIdResponse, type PatchAdminNotificationPreferencesByIdResponses, type PatchAdminPaymentMethodsByIdData, type PatchAdminPaymentMethodsByIdDefaultData, type PatchAdminPaymentMethodsByIdDefaultError, type PatchAdminPaymentMethodsByIdDefaultErrors, type PatchAdminPaymentMethodsByIdDefaultResponse, type PatchAdminPaymentMethodsByIdDefaultResponses, type PatchAdminPaymentMethodsByIdError, type PatchAdminPaymentMethodsByIdErrors, type PatchAdminPaymentMethodsByIdResponse, type PatchAdminPaymentMethodsByIdResponses, type PatchAdminPlansByIdData, type PatchAdminPlansByIdError, type PatchAdminPlansByIdErrors, type PatchAdminPlansByIdResponse, type PatchAdminPlansByIdResponses, type PatchAdminPricingRulesByIdData, type PatchAdminPricingRulesByIdError, type PatchAdminPricingRulesByIdErrors, type PatchAdminPricingRulesByIdResponse, type PatchAdminPricingRulesByIdResponses, type PatchAdminPricingStrategiesByIdData, type PatchAdminPricingStrategiesByIdError, type PatchAdminPricingStrategiesByIdErrors, type PatchAdminPricingStrategiesByIdResponse, type PatchAdminPricingStrategiesByIdResponses, type PatchAdminSearchSavedByIdData, type PatchAdminSearchSavedByIdError, type PatchAdminSearchSavedByIdErrors, type PatchAdminSearchSavedByIdResponse, type PatchAdminSearchSavedByIdResponses, type PatchAdminSubscriptionsByIdCancelData, type PatchAdminSubscriptionsByIdCancelError, type PatchAdminSubscriptionsByIdCancelErrors, type PatchAdminSubscriptionsByIdCancelResponse, type PatchAdminSubscriptionsByIdCancelResponses, type PatchAdminSubscriptionsByIdData, type PatchAdminSubscriptionsByIdError, type PatchAdminSubscriptionsByIdErrors, type PatchAdminSubscriptionsByIdResponse, type PatchAdminSubscriptionsByIdResponses, type PatchAdminSysAiConfigByIdData, type PatchAdminSysAiConfigByIdError, type PatchAdminSysAiConfigByIdErrors, type PatchAdminSysAiConfigByIdResponse, type PatchAdminSysAiConfigByIdResponses, type PatchAdminSystemMessagesByIdData, type PatchAdminSystemMessagesByIdError, type PatchAdminSystemMessagesByIdErrors, type PatchAdminSystemMessagesByIdPublishData, type PatchAdminSystemMessagesByIdPublishError, type PatchAdminSystemMessagesByIdPublishErrors, type PatchAdminSystemMessagesByIdPublishResponse, type PatchAdminSystemMessagesByIdPublishResponses, type PatchAdminSystemMessagesByIdResponse, type PatchAdminSystemMessagesByIdResponses, type PatchAdminSystemMessagesByIdUnpublishData, type PatchAdminSystemMessagesByIdUnpublishError, type PatchAdminSystemMessagesByIdUnpublishErrors, type PatchAdminSystemMessagesByIdUnpublishResponse, type PatchAdminSystemMessagesByIdUnpublishResponses, type PatchAdminTenantMembershipsByTenantIdByUserIdData, type PatchAdminTenantMembershipsByTenantIdByUserIdError, type PatchAdminTenantMembershipsByTenantIdByUserIdErrors, type PatchAdminTenantMembershipsByTenantIdByUserIdResponse, type PatchAdminTenantMembershipsByTenantIdByUserIdResponses, type PatchAdminTenantPricingOverridesByIdData, type PatchAdminTenantPricingOverridesByIdError, type PatchAdminTenantPricingOverridesByIdErrors, type PatchAdminTenantPricingOverridesByIdResponse, type PatchAdminTenantPricingOverridesByIdResponses, type PatchAdminTenantsByIdData, type PatchAdminTenantsByIdError, type PatchAdminTenantsByIdErrors, type PatchAdminTenantsByIdResponse, type PatchAdminTenantsByIdResponses, type PatchAdminThreadsByIdArchiveData, type PatchAdminThreadsByIdArchiveError, type PatchAdminThreadsByIdArchiveErrors, type PatchAdminThreadsByIdArchiveResponse, type PatchAdminThreadsByIdArchiveResponses, type PatchAdminThreadsByIdData, type PatchAdminThreadsByIdError, type PatchAdminThreadsByIdErrors, type PatchAdminThreadsByIdResponse, type PatchAdminThreadsByIdResponses, type PatchAdminThreadsByIdUnarchiveData, type PatchAdminThreadsByIdUnarchiveError, type PatchAdminThreadsByIdUnarchiveErrors, type PatchAdminThreadsByIdUnarchiveResponse, type PatchAdminThreadsByIdUnarchiveResponses, type PatchAdminTrainingExamplesByIdData, type PatchAdminTrainingExamplesByIdError, type PatchAdminTrainingExamplesByIdErrors, type PatchAdminTrainingExamplesByIdResponse, type PatchAdminTrainingExamplesByIdResponses, type PatchAdminUserProfilesByIdAcceptTosData, type PatchAdminUserProfilesByIdAcceptTosError, type PatchAdminUserProfilesByIdAcceptTosErrors, type PatchAdminUserProfilesByIdAcceptTosResponse, type PatchAdminUserProfilesByIdAcceptTosResponses, type PatchAdminUserProfilesByIdData, type PatchAdminUserProfilesByIdDismissAnnouncementData, type PatchAdminUserProfilesByIdDismissAnnouncementError, type PatchAdminUserProfilesByIdDismissAnnouncementErrors, type PatchAdminUserProfilesByIdDismissAnnouncementResponse, type PatchAdminUserProfilesByIdDismissAnnouncementResponses, type PatchAdminUserProfilesByIdDismissWelcomeData, type PatchAdminUserProfilesByIdDismissWelcomeError, type PatchAdminUserProfilesByIdDismissWelcomeErrors, type PatchAdminUserProfilesByIdDismissWelcomeResponse, type PatchAdminUserProfilesByIdDismissWelcomeResponses, type PatchAdminUserProfilesByIdError, type PatchAdminUserProfilesByIdErrors, type PatchAdminUserProfilesByIdResponse, type PatchAdminUserProfilesByIdResponses, type PatchAdminUsersAuthPasswordChangeData, type PatchAdminUsersAuthPasswordChangeError, type PatchAdminUsersAuthPasswordChangeErrors, type PatchAdminUsersAuthPasswordChangeResponse, type PatchAdminUsersAuthPasswordChangeResponses, type PatchAdminUsersAuthResetPasswordData, type PatchAdminUsersAuthResetPasswordError, type PatchAdminUsersAuthResetPasswordErrors, type PatchAdminUsersAuthResetPasswordResponse, type PatchAdminUsersAuthResetPasswordResponses, type PatchAdminUsersByIdAdminData, type PatchAdminUsersByIdAdminEmailData, type PatchAdminUsersByIdAdminEmailError, type PatchAdminUsersByIdAdminEmailErrors, type PatchAdminUsersByIdAdminEmailResponse, type PatchAdminUsersByIdAdminEmailResponses, type PatchAdminUsersByIdAdminError, type PatchAdminUsersByIdAdminErrors, type PatchAdminUsersByIdAdminResponse, type PatchAdminUsersByIdAdminResponses, type PatchAdminUsersByIdConfirmEmailData, type PatchAdminUsersByIdConfirmEmailError, type PatchAdminUsersByIdConfirmEmailErrors, type PatchAdminUsersByIdConfirmEmailResponse, type PatchAdminUsersByIdConfirmEmailResponses, type PatchAdminUsersByIdResetPasswordData, type PatchAdminUsersByIdResetPasswordError, type PatchAdminUsersByIdResetPasswordErrors, type PatchAdminUsersByIdResetPasswordResponse, type PatchAdminUsersByIdResetPasswordResponses, type PatchAdminWalletAddonsByAddonSlugCancelData, type PatchAdminWalletAddonsByAddonSlugCancelError, type PatchAdminWalletAddonsByAddonSlugCancelErrors, type PatchAdminWalletAddonsByAddonSlugCancelResponse, type PatchAdminWalletAddonsByAddonSlugCancelResponses, type PatchAdminWalletAddonsData, type PatchAdminWalletAddonsError, type PatchAdminWalletAddonsErrors, type PatchAdminWalletAddonsResponse, type PatchAdminWalletAddonsResponses, type PatchAdminWalletCreditsData, type PatchAdminWalletCreditsError, type PatchAdminWalletCreditsErrors, type PatchAdminWalletCreditsResponse, type PatchAdminWalletCreditsResponses, type PatchAdminWalletPlanData, type PatchAdminWalletPlanError, type PatchAdminWalletPlanErrors, type PatchAdminWalletPlanResponse, type PatchAdminWalletPlanResponses, type PatchAdminWalletStorageData, type PatchAdminWalletStorageError, type PatchAdminWalletStorageErrors, type PatchAdminWalletStorageResponse, type PatchAdminWalletStorageResponses, type PatchAdminWebhookConfigsByIdData, type PatchAdminWebhookConfigsByIdError, type PatchAdminWebhookConfigsByIdErrors, type PatchAdminWebhookConfigsByIdResponse, type PatchAdminWebhookConfigsByIdResponses, type PatchAdminWebhookConfigsByIdRotateSecretData, type PatchAdminWebhookConfigsByIdRotateSecretError, type PatchAdminWebhookConfigsByIdRotateSecretErrors, type PatchAdminWebhookConfigsByIdRotateSecretResponse, type PatchAdminWebhookConfigsByIdRotateSecretResponses, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdData, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdError, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponse, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type PatchAdminWorkspacesByIdAllocateData, type PatchAdminWorkspacesByIdAllocateError, type PatchAdminWorkspacesByIdAllocateErrors, type PatchAdminWorkspacesByIdAllocateResponse, type PatchAdminWorkspacesByIdAllocateResponses, type PatchAdminWorkspacesByIdData, type PatchAdminWorkspacesByIdError, type PatchAdminWorkspacesByIdErrors, type PatchAdminWorkspacesByIdResponse, type PatchAdminWorkspacesByIdResponses, type PatchAdminWorkspacesByIdStorageSettingsData, type PatchAdminWorkspacesByIdStorageSettingsError, type PatchAdminWorkspacesByIdStorageSettingsErrors, type PatchAdminWorkspacesByIdStorageSettingsResponse, type PatchAdminWorkspacesByIdStorageSettingsResponses, type Payment, type PaymentMethod, type Permission, type PermissionMeta, type PermissionPreset, type Plan, type PostAdminAgentTestResultsData, type PostAdminAgentTestResultsError, type PostAdminAgentTestResultsErrors, type PostAdminAgentTestResultsResponse, type PostAdminAgentTestResultsResponses, type PostAdminAgentVersionComparisonsData, type PostAdminAgentVersionComparisonsError, type PostAdminAgentVersionComparisonsErrors, type PostAdminAgentVersionComparisonsResponse, type PostAdminAgentVersionComparisonsResponses, type PostAdminAgentVersionsByIdAddSystemFieldData, type PostAdminAgentVersionsByIdAddSystemFieldError, type PostAdminAgentVersionsByIdAddSystemFieldErrors, type PostAdminAgentVersionsByIdAddSystemFieldResponses, type PostAdminAgentVersionsByIdRemoveSystemFieldData, type PostAdminAgentVersionsByIdRemoveSystemFieldError, type PostAdminAgentVersionsByIdRemoveSystemFieldErrors, type PostAdminAgentVersionsByIdRemoveSystemFieldResponses, type PostAdminAgentVersionsByIdSetSystemFieldsData, type PostAdminAgentVersionsByIdSetSystemFieldsError, type PostAdminAgentVersionsByIdSetSystemFieldsErrors, type PostAdminAgentVersionsByIdSetSystemFieldsResponses, type PostAdminAgentVersionsData, type PostAdminAgentVersionsError, type PostAdminAgentVersionsErrors, type PostAdminAgentVersionsResponse, type PostAdminAgentVersionsResponses, type PostAdminAgentsByIdCloneData, type PostAdminAgentsByIdCloneError, type PostAdminAgentsByIdCloneErrors, type PostAdminAgentsByIdCloneResponse, type PostAdminAgentsByIdCloneResponses, type PostAdminAgentsByIdDiscoverSchemaData, type PostAdminAgentsByIdDiscoverSchemaError, type PostAdminAgentsByIdDiscoverSchemaErrors, type PostAdminAgentsByIdDiscoverSchemaResponse, type PostAdminAgentsByIdDiscoverSchemaResponses, type PostAdminAgentsByIdExportData, type PostAdminAgentsByIdExportError, type PostAdminAgentsByIdExportErrors, type PostAdminAgentsByIdExportResponse, type PostAdminAgentsByIdExportResponses, type PostAdminAgentsByIdPublishVersionData, type PostAdminAgentsByIdPublishVersionError, type PostAdminAgentsByIdPublishVersionErrors, type PostAdminAgentsByIdPublishVersionResponse, type PostAdminAgentsByIdPublishVersionResponses, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateData, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateError, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateErrors, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponse, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponses, type PostAdminAgentsByIdSchemaVersionsData, type PostAdminAgentsByIdSchemaVersionsError, type PostAdminAgentsByIdSchemaVersionsErrors, type PostAdminAgentsByIdSchemaVersionsResponse, type PostAdminAgentsByIdSchemaVersionsResponses, type PostAdminAgentsByIdTeachData, type PostAdminAgentsByIdTeachError, type PostAdminAgentsByIdTeachErrors, type PostAdminAgentsByIdTeachResponse, type PostAdminAgentsByIdTeachResponses, type PostAdminAgentsByIdTestData, type PostAdminAgentsByIdTestError, type PostAdminAgentsByIdTestErrors, type PostAdminAgentsByIdTestResponse, type PostAdminAgentsByIdTestResponses, type PostAdminAgentsByIdValidateData, type PostAdminAgentsByIdValidateError, type PostAdminAgentsByIdValidateErrors, type PostAdminAgentsByIdValidateResponse, type PostAdminAgentsByIdValidateResponses, type PostAdminAgentsCloneForWorkspaceData, type PostAdminAgentsCloneForWorkspaceError, type PostAdminAgentsCloneForWorkspaceErrors, type PostAdminAgentsCloneForWorkspaceResponse, type PostAdminAgentsCloneForWorkspaceResponses, type PostAdminAgentsImportData, type PostAdminAgentsImportError, type PostAdminAgentsImportErrors, type PostAdminAgentsImportResponse, type PostAdminAgentsImportResponses, type PostAdminAgentsPredictData, type PostAdminAgentsPredictError, type PostAdminAgentsPredictErrors, type PostAdminAgentsPredictResponse, type PostAdminAgentsPredictResponses, type PostAdminAiChunksSearchData, type PostAdminAiChunksSearchError, type PostAdminAiChunksSearchErrors, type PostAdminAiChunksSearchResponse, type PostAdminAiChunksSearchResponses, type PostAdminAiConversationsData, type PostAdminAiConversationsError, type PostAdminAiConversationsErrors, type PostAdminAiConversationsResponse, type PostAdminAiConversationsResponses, type PostAdminAiEmbedData, type PostAdminAiEmbedError, type PostAdminAiEmbedErrors, type PostAdminAiEmbedResponse, type PostAdminAiEmbedResponses, type PostAdminAiGraphEdgesData, type PostAdminAiGraphEdgesError, type PostAdminAiGraphEdgesErrors, type PostAdminAiGraphEdgesResponse, type PostAdminAiGraphEdgesResponses, type PostAdminAiGraphNodesData, type PostAdminAiGraphNodesError, type PostAdminAiGraphNodesErrors, type PostAdminAiGraphNodesResponse, type PostAdminAiGraphNodesResponses, type PostAdminAiMessagesData, type PostAdminAiMessagesError, type PostAdminAiMessagesErrors, type PostAdminAiMessagesResponse, type PostAdminAiMessagesResponses, type PostAdminAiSearchAdvancedData, type PostAdminAiSearchAdvancedError, type PostAdminAiSearchAdvancedErrors, type PostAdminAiSearchAdvancedResponse, type PostAdminAiSearchAdvancedResponses, type PostAdminAiSearchData, type PostAdminAiSearchError, type PostAdminAiSearchErrors, type PostAdminAiSearchResponse, type PostAdminAiSearchResponses, type PostAdminApiKeysData, type PostAdminApiKeysError, type PostAdminApiKeysErrors, type PostAdminApiKeysResponse, type PostAdminApiKeysResponses, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewData, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewError, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewErrors, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewResponse, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewResponses, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestData, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestError, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestErrors, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestResponse, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestResponses, type PostAdminApplicationsByApplicationIdEmailTemplatesData, type PostAdminApplicationsByApplicationIdEmailTemplatesError, type PostAdminApplicationsByApplicationIdEmailTemplatesErrors, type PostAdminApplicationsByApplicationIdEmailTemplatesResponse, type PostAdminApplicationsByApplicationIdEmailTemplatesResponses, type PostAdminApplicationsData, type PostAdminApplicationsError, type PostAdminApplicationsErrors, type PostAdminApplicationsResponse, type PostAdminApplicationsResponses, type PostAdminBucketsData, type PostAdminBucketsError, type PostAdminBucketsErrors, type PostAdminBucketsResponse, type PostAdminBucketsResponses, type PostAdminConfigsData, type PostAdminConfigsError, type PostAdminConfigsErrors, type PostAdminConfigsResponse, type PostAdminConfigsResponses, type PostAdminCreditPackagesData, type PostAdminCreditPackagesError, type PostAdminCreditPackagesErrors, type PostAdminCreditPackagesResponse, type PostAdminCreditPackagesResponses, type PostAdminCustomersData, type PostAdminCustomersError, type PostAdminCustomersErrors, type PostAdminCustomersResponse, type PostAdminCustomersResponses, type PostAdminDocumentsBulkDeleteData, type PostAdminDocumentsBulkDeleteError, type PostAdminDocumentsBulkDeleteErrors, type PostAdminDocumentsBulkDeleteResponse, type PostAdminDocumentsBulkDeleteResponses, type PostAdminDocumentsPresignedUploadData, type PostAdminDocumentsPresignedUploadError, type PostAdminDocumentsPresignedUploadErrors, type PostAdminDocumentsPresignedUploadResponse, type PostAdminDocumentsPresignedUploadResponses, type PostAdminExtractionBatchesData, type PostAdminExtractionBatchesError, type PostAdminExtractionBatchesErrors, type PostAdminExtractionBatchesResponse, type PostAdminExtractionBatchesResponses, type PostAdminExtractionDocumentsBeginUploadData, type PostAdminExtractionDocumentsBeginUploadError, type PostAdminExtractionDocumentsBeginUploadErrors, type PostAdminExtractionDocumentsBeginUploadResponse, type PostAdminExtractionDocumentsBeginUploadResponses, type PostAdminExtractionDocumentsBulkReprocessData, type PostAdminExtractionDocumentsBulkReprocessError, type PostAdminExtractionDocumentsBulkReprocessErrors, type PostAdminExtractionDocumentsBulkReprocessResponse, type PostAdminExtractionDocumentsBulkReprocessResponses, type PostAdminExtractionDocumentsUploadData, type PostAdminExtractionDocumentsUploadError, type PostAdminExtractionDocumentsUploadErrors, type PostAdminExtractionDocumentsUploadResponse, type PostAdminExtractionDocumentsUploadResponses, type PostAdminExtractionResultsData, type PostAdminExtractionResultsError, type PostAdminExtractionResultsErrors, type PostAdminExtractionResultsResponse, type PostAdminExtractionResultsResponses, type PostAdminExtractionSchemaDiscoveriesData, type PostAdminExtractionSchemaDiscoveriesError, type PostAdminExtractionSchemaDiscoveriesErrors, type PostAdminExtractionSchemaDiscoveriesResponse, type PostAdminExtractionSchemaDiscoveriesResponses, type PostAdminFieldTemplatesData, type PostAdminFieldTemplatesError, type PostAdminFieldTemplatesErrors, type PostAdminFieldTemplatesResponse, type PostAdminFieldTemplatesResponses, type PostAdminInvitationsAcceptByTokenData, type PostAdminInvitationsAcceptByTokenError, type PostAdminInvitationsAcceptByTokenErrors, type PostAdminInvitationsAcceptByTokenResponse, type PostAdminInvitationsAcceptByTokenResponses, type PostAdminInvitationsData, type PostAdminInvitationsError, type PostAdminInvitationsErrors, type PostAdminInvitationsResponse, type PostAdminInvitationsResponses, type PostAdminIsvRevenueData, type PostAdminIsvRevenueError, type PostAdminIsvRevenueErrors, type PostAdminIsvRevenueResponse, type PostAdminIsvRevenueResponses, type PostAdminIsvSettlementsData, type PostAdminIsvSettlementsError, type PostAdminIsvSettlementsErrors, type PostAdminIsvSettlementsResponse, type PostAdminIsvSettlementsResponses, type PostAdminLlmAnalyticsData, type PostAdminLlmAnalyticsError, type PostAdminLlmAnalyticsErrors, type PostAdminLlmAnalyticsResponse, type PostAdminLlmAnalyticsResponses, type PostAdminMessagesData, type PostAdminMessagesError, type PostAdminMessagesErrors, type PostAdminMessagesResponse, type PostAdminMessagesResponses, type PostAdminNotificationMethodsData, type PostAdminNotificationMethodsError, type PostAdminNotificationMethodsErrors, type PostAdminNotificationMethodsResponse, type PostAdminNotificationMethodsResponses, type PostAdminNotificationPreferencesData, type PostAdminNotificationPreferencesError, type PostAdminNotificationPreferencesErrors, type PostAdminNotificationPreferencesResponse, type PostAdminNotificationPreferencesResponses, type PostAdminObjectsBulkDestroyData, type PostAdminObjectsBulkDestroyError, type PostAdminObjectsBulkDestroyErrors, type PostAdminObjectsBulkDestroyResponse, type PostAdminObjectsBulkDestroyResponses, type PostAdminObjectsCopyData, type PostAdminObjectsCopyError, type PostAdminObjectsCopyErrors, type PostAdminObjectsCopyResponse, type PostAdminObjectsCopyResponses, type PostAdminObjectsMoveData, type PostAdminObjectsMoveError, type PostAdminObjectsMoveErrors, type PostAdminObjectsMoveResponse, type PostAdminObjectsMoveResponses, type PostAdminObjectsRegisterData, type PostAdminObjectsRegisterError, type PostAdminObjectsRegisterErrors, type PostAdminObjectsRegisterResponse, type PostAdminObjectsRegisterResponses, type PostAdminPaymentMethodsData, type PostAdminPaymentMethodsError, type PostAdminPaymentMethodsErrors, type PostAdminPaymentMethodsResponse, type PostAdminPaymentMethodsResponses, type PostAdminPaymentMethodsTokenizeData, type PostAdminPaymentMethodsTokenizeError, type PostAdminPaymentMethodsTokenizeErrors, type PostAdminPaymentMethodsTokenizeResponse, type PostAdminPaymentMethodsTokenizeResponses, type PostAdminPaymentsData, type PostAdminPaymentsError, type PostAdminPaymentsErrors, type PostAdminPaymentsResponse, type PostAdminPaymentsResponses, type PostAdminPlansData, type PostAdminPlansError, type PostAdminPlansErrors, type PostAdminPlansResponse, type PostAdminPlansResponses, type PostAdminPricingRulesData, type PostAdminPricingRulesError, type PostAdminPricingRulesErrors, type PostAdminPricingRulesResponse, type PostAdminPricingRulesResponses, type PostAdminPricingStrategiesData, type PostAdminPricingStrategiesError, type PostAdminPricingStrategiesErrors, type PostAdminPricingStrategiesResponse, type PostAdminPricingStrategiesResponses, type PostAdminSearchBatchData, type PostAdminSearchBatchError, type PostAdminSearchBatchErrors, type PostAdminSearchBatchResponse, type PostAdminSearchBatchResponses, type PostAdminSearchReindexData, type PostAdminSearchReindexError, type PostAdminSearchReindexErrors, type PostAdminSearchReindexResponse, type PostAdminSearchReindexResponses, type PostAdminSearchSavedByIdRunData, type PostAdminSearchSavedByIdRunError, type PostAdminSearchSavedByIdRunErrors, type PostAdminSearchSavedByIdRunResponse, type PostAdminSearchSavedByIdRunResponses, type PostAdminSearchSavedData, type PostAdminSearchSavedError, type PostAdminSearchSavedErrors, type PostAdminSearchSavedResponse, type PostAdminSearchSavedResponses, type PostAdminStorageSignDownloadData, type PostAdminStorageSignDownloadError, type PostAdminStorageSignDownloadErrors, type PostAdminStorageSignDownloadResponse, type PostAdminStorageSignDownloadResponses, type PostAdminStorageSignUploadData, type PostAdminStorageSignUploadError, type PostAdminStorageSignUploadErrors, type PostAdminStorageSignUploadResponse, type PostAdminStorageSignUploadResponses, type PostAdminSubscriptionsData, type PostAdminSubscriptionsError, type PostAdminSubscriptionsErrors, type PostAdminSubscriptionsResponse, type PostAdminSubscriptionsResponses, type PostAdminSysAiConfigData, type PostAdminSysAiConfigError, type PostAdminSysAiConfigErrors, type PostAdminSysAiConfigResponse, type PostAdminSysAiConfigResponses, type PostAdminSysSemanticCacheClearData, type PostAdminSysSemanticCacheClearError, type PostAdminSysSemanticCacheClearErrors, type PostAdminSysSemanticCacheClearResponse, type PostAdminSysSemanticCacheClearResponses, type PostAdminSystemMessagesData, type PostAdminSystemMessagesError, type PostAdminSystemMessagesErrors, type PostAdminSystemMessagesResponse, type PostAdminSystemMessagesResponses, type PostAdminTenantMembershipsData, type PostAdminTenantMembershipsError, type PostAdminTenantMembershipsErrors, type PostAdminTenantMembershipsResponse, type PostAdminTenantMembershipsResponses, type PostAdminTenantPricingOverridesData, type PostAdminTenantPricingOverridesError, type PostAdminTenantPricingOverridesErrors, type PostAdminTenantPricingOverridesResponse, type PostAdminTenantPricingOverridesResponses, type PostAdminTenantsByIdBuyStorageData, type PostAdminTenantsByIdBuyStorageError, type PostAdminTenantsByIdBuyStorageErrors, type PostAdminTenantsByIdBuyStorageResponse, type PostAdminTenantsByIdBuyStorageResponses, type PostAdminTenantsByIdCreditData, type PostAdminTenantsByIdCreditError, type PostAdminTenantsByIdCreditErrors, type PostAdminTenantsByIdCreditResponse, type PostAdminTenantsByIdCreditResponses, type PostAdminTenantsByIdRemoveStorageData, type PostAdminTenantsByIdRemoveStorageError, type PostAdminTenantsByIdRemoveStorageErrors, type PostAdminTenantsByIdRemoveStorageResponse, type PostAdminTenantsByIdRemoveStorageResponses, type PostAdminTenantsByIdSchedulePurgeData, type PostAdminTenantsByIdSchedulePurgeError, type PostAdminTenantsByIdSchedulePurgeErrors, type PostAdminTenantsByIdSchedulePurgeResponse, type PostAdminTenantsByIdSchedulePurgeResponses, type PostAdminTenantsData, type PostAdminTenantsError, type PostAdminTenantsErrors, type PostAdminTenantsIsvData, type PostAdminTenantsIsvError, type PostAdminTenantsIsvErrors, type PostAdminTenantsIsvResponse, type PostAdminTenantsIsvResponses, type PostAdminTenantsResponse, type PostAdminTenantsResponses, type PostAdminThreadsActiveData, type PostAdminThreadsActiveError, type PostAdminThreadsActiveErrors, type PostAdminThreadsActiveResponse, type PostAdminThreadsActiveResponses, type PostAdminThreadsByIdExportData, type PostAdminThreadsByIdExportError, type PostAdminThreadsByIdExportErrors, type PostAdminThreadsByIdExportResponse, type PostAdminThreadsByIdExportResponses, type PostAdminThreadsByIdForkData, type PostAdminThreadsByIdForkError, type PostAdminThreadsByIdForkErrors, type PostAdminThreadsByIdForkResponse, type PostAdminThreadsByIdForkResponses, type PostAdminThreadsByIdMessagesData, type PostAdminThreadsByIdMessagesError, type PostAdminThreadsByIdMessagesErrors, type PostAdminThreadsByIdMessagesResponse, type PostAdminThreadsByIdMessagesResponses, type PostAdminThreadsByIdSummarizeData, type PostAdminThreadsByIdSummarizeError, type PostAdminThreadsByIdSummarizeErrors, type PostAdminThreadsByIdSummarizeResponse, type PostAdminThreadsByIdSummarizeResponses, type PostAdminThreadsData, type PostAdminThreadsError, type PostAdminThreadsErrors, type PostAdminThreadsResponse, type PostAdminThreadsResponses, type PostAdminTokensData, type PostAdminTokensError, type PostAdminTokensErrors, type PostAdminTokensResponse, type PostAdminTokensResponses, type PostAdminTrainingExamplesBulkData, type PostAdminTrainingExamplesBulkDeleteData, type PostAdminTrainingExamplesBulkDeleteError, type PostAdminTrainingExamplesBulkDeleteErrors, type PostAdminTrainingExamplesBulkDeleteResponse, type PostAdminTrainingExamplesBulkDeleteResponses, type PostAdminTrainingExamplesBulkError, type PostAdminTrainingExamplesBulkErrors, type PostAdminTrainingExamplesBulkResponse, type PostAdminTrainingExamplesBulkResponses, type PostAdminTrainingExamplesData, type PostAdminTrainingExamplesError, type PostAdminTrainingExamplesErrors, type PostAdminTrainingExamplesResponse, type PostAdminTrainingExamplesResponses, type PostAdminTrainingExamplesSearchData, type PostAdminTrainingExamplesSearchError, type PostAdminTrainingExamplesSearchErrors, type PostAdminTrainingExamplesSearchResponse, type PostAdminTrainingExamplesSearchResponses, type PostAdminUserProfilesData, type PostAdminUserProfilesError, type PostAdminUserProfilesErrors, type PostAdminUserProfilesResponse, type PostAdminUserProfilesResponses, type PostAdminUsersAuthConfirmData, type PostAdminUsersAuthConfirmError, type PostAdminUsersAuthConfirmErrors, type PostAdminUsersAuthConfirmResponse, type PostAdminUsersAuthConfirmResponses, type PostAdminUsersAuthLoginData, type PostAdminUsersAuthLoginError, type PostAdminUsersAuthLoginErrors, type PostAdminUsersAuthLoginResponse, type PostAdminUsersAuthLoginResponses, type PostAdminUsersAuthMagicLinkLoginData, type PostAdminUsersAuthMagicLinkLoginError, type PostAdminUsersAuthMagicLinkLoginErrors, type PostAdminUsersAuthMagicLinkLoginResponse, type PostAdminUsersAuthMagicLinkLoginResponses, type PostAdminUsersAuthMagicLinkRequestData, type PostAdminUsersAuthMagicLinkRequestError, type PostAdminUsersAuthMagicLinkRequestErrors, type PostAdminUsersAuthMagicLinkRequestResponse, type PostAdminUsersAuthMagicLinkRequestResponses, type PostAdminUsersAuthRegisterData, type PostAdminUsersAuthRegisterError, type PostAdminUsersAuthRegisterErrors, type PostAdminUsersAuthRegisterResponse, type PostAdminUsersAuthRegisterResponses, type PostAdminUsersAuthRegisterWithOidcData, type PostAdminUsersAuthRegisterWithOidcError, type PostAdminUsersAuthRegisterWithOidcErrors, type PostAdminUsersAuthRegisterWithOidcResponse, type PostAdminUsersAuthRegisterWithOidcResponses, type PostAdminUsersAuthResendConfirmationData, type PostAdminUsersAuthResendConfirmationError, type PostAdminUsersAuthResendConfirmationErrors, type PostAdminUsersAuthResendConfirmationResponse, type PostAdminUsersAuthResendConfirmationResponses, type PostAdminUsersRegisterIsvData, type PostAdminUsersRegisterIsvError, type PostAdminUsersRegisterIsvErrors, type PostAdminUsersRegisterIsvResponse, type PostAdminUsersRegisterIsvResponses, type PostAdminWebhookConfigsBulkDisableData, type PostAdminWebhookConfigsBulkDisableError, type PostAdminWebhookConfigsBulkDisableErrors, type PostAdminWebhookConfigsBulkDisableResponse, type PostAdminWebhookConfigsBulkDisableResponses, type PostAdminWebhookConfigsBulkEnableData, type PostAdminWebhookConfigsBulkEnableError, type PostAdminWebhookConfigsBulkEnableErrors, type PostAdminWebhookConfigsBulkEnableResponse, type PostAdminWebhookConfigsBulkEnableResponses, type PostAdminWebhookConfigsByIdReplayData, type PostAdminWebhookConfigsByIdReplayError, type PostAdminWebhookConfigsByIdReplayErrors, type PostAdminWebhookConfigsByIdReplayResponse, type PostAdminWebhookConfigsByIdReplayResponses, type PostAdminWebhookConfigsByIdTestData, type PostAdminWebhookConfigsByIdTestError, type PostAdminWebhookConfigsByIdTestErrors, type PostAdminWebhookConfigsByIdTestResponse, type PostAdminWebhookConfigsByIdTestResponses, type PostAdminWebhookConfigsData, type PostAdminWebhookConfigsError, type PostAdminWebhookConfigsErrors, type PostAdminWebhookConfigsResponse, type PostAdminWebhookConfigsResponses, type PostAdminWebhookDeliveriesBulkRetryData, type PostAdminWebhookDeliveriesBulkRetryError, type PostAdminWebhookDeliveriesBulkRetryErrors, type PostAdminWebhookDeliveriesBulkRetryResponse, type PostAdminWebhookDeliveriesBulkRetryResponses, type PostAdminWebhookDeliveriesByIdRetryData, type PostAdminWebhookDeliveriesByIdRetryError, type PostAdminWebhookDeliveriesByIdRetryErrors, type PostAdminWebhookDeliveriesByIdRetryResponse, type PostAdminWebhookDeliveriesByIdRetryResponses, type PostAdminWorkspaceMembershipsData, type PostAdminWorkspaceMembershipsError, type PostAdminWorkspaceMembershipsErrors, type PostAdminWorkspaceMembershipsResponse, type PostAdminWorkspaceMembershipsResponses, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingError, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponse, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedData, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedError, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedErrors, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponse, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponses, type PostAdminWorkspacesByWorkspaceIdExtractionExportsData, type PostAdminWorkspacesByWorkspaceIdExtractionExportsError, type PostAdminWorkspacesByWorkspaceIdExtractionExportsErrors, type PostAdminWorkspacesByWorkspaceIdExtractionExportsResponse, type PostAdminWorkspacesByWorkspaceIdExtractionExportsResponses, type PostAdminWorkspacesData, type PostAdminWorkspacesError, type PostAdminWorkspacesErrors, type PostAdminWorkspacesResponse, type PostAdminWorkspacesResponses, type PresignedUrl, type PricingRule, type PricingStrategy, RateLimitError, type SavedSearch, type SchemaDiscovery, type Search, type SearchAnalytics, type SemanticCacheEntry, ServerError, type StorageStats, type StorageStatsRequest, StorageStatsRequestSchema, type StorageStatsType, type Subscription, type SystemMessage, type Tenant, type TenantDocumentStats, type TenantMembership, type TenantPricingOverride, type TenantStats, type Thread, TimeoutError, type Token, type TrainingAnalytics, type TrainingExample, type TrainingSession, type Transaction, type Transfer, type User, type UserProfile, ValidationError, type Wallet, type WatcherClaim, type WatcherEvent, type WebhookBulkDisableRequest, WebhookBulkDisableSchema, type WebhookBulkEnableRequest, WebhookBulkEnableSchema, type WebhookConfig, type WebhookConfigCreateRequest, WebhookConfigCreateSchema, type WebhookDelivery, type WebhookDeliveryBulkRetryRequest, WebhookDeliveryBulkRetrySchema, type Workspace, type WorkspaceDocumentStats, type WorkspaceMembership, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, GptAdmin as default, handleApiError };
|
|
37670
|
+
export { type Account, type AccountCreditRequest, AccountCreditSchema, type AccountDebitRequest, AccountDebitSchema, type Agent, type AgentAdminCreateRequest, AgentAdminCreateSchema, type AgentTestResult, type AgentVersion, type AgentVersionComparison, type AgentVersionFieldsInputCreateType, type AgentVersionType, type AiConfig, type ApiKey, type ApiKeyAllocateRequest, ApiKeyAllocateSchema, type Application, type ApplicationOauthInputCreateType, type ApplicationOauthInputUpdateType, type ApplicationType, type AuditLog, AuthenticationError, AuthorizationError, type Balance, type Bucket, type BulkDismissalResult, type BulkReprocessResult, type ClientOptions, type Config, type Conversation, type CreditPackage, type Customer, type DeleteAdminAgentVersionsByIdData, type DeleteAdminAgentVersionsByIdError, type DeleteAdminAgentVersionsByIdErrors, type DeleteAdminAgentVersionsByIdResponses, type DeleteAdminAiConversationsByIdData, type DeleteAdminAiConversationsByIdError, type DeleteAdminAiConversationsByIdErrors, type DeleteAdminAiConversationsByIdResponses, type DeleteAdminAiGraphEdgesByIdData, type DeleteAdminAiGraphEdgesByIdError, type DeleteAdminAiGraphEdgesByIdErrors, type DeleteAdminAiGraphEdgesByIdResponses, type DeleteAdminAiGraphNodesByIdData, type DeleteAdminAiGraphNodesByIdError, type DeleteAdminAiGraphNodesByIdErrors, type DeleteAdminAiGraphNodesByIdResponses, type DeleteAdminAiMessagesByIdData, type DeleteAdminAiMessagesByIdError, type DeleteAdminAiMessagesByIdErrors, type DeleteAdminAiMessagesByIdResponses, type DeleteAdminApiKeysByIdData, type DeleteAdminApiKeysByIdError, type DeleteAdminApiKeysByIdErrors, type DeleteAdminApiKeysByIdResponses, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugData, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugError, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses, type DeleteAdminApplicationsByIdData, type DeleteAdminApplicationsByIdError, type DeleteAdminApplicationsByIdErrors, type DeleteAdminApplicationsByIdResponses, type DeleteAdminBucketsByIdData, type DeleteAdminBucketsByIdError, type DeleteAdminBucketsByIdErrors, type DeleteAdminBucketsByIdResponses, type DeleteAdminCreditPackagesByIdData, type DeleteAdminCreditPackagesByIdError, type DeleteAdminCreditPackagesByIdErrors, type DeleteAdminCreditPackagesByIdResponses, type DeleteAdminCustomersByIdData, type DeleteAdminCustomersByIdError, type DeleteAdminCustomersByIdErrors, type DeleteAdminCustomersByIdResponses, type DeleteAdminExtractionBatchesByIdData, type DeleteAdminExtractionBatchesByIdError, type DeleteAdminExtractionBatchesByIdErrors, type DeleteAdminExtractionBatchesByIdResponses, type DeleteAdminExtractionDocumentsByIdData, type DeleteAdminExtractionDocumentsByIdError, type DeleteAdminExtractionDocumentsByIdErrors, type DeleteAdminExtractionDocumentsByIdResponses, type DeleteAdminExtractionResultsByIdData, type DeleteAdminExtractionResultsByIdError, type DeleteAdminExtractionResultsByIdErrors, type DeleteAdminExtractionResultsByIdResponses, type DeleteAdminFieldTemplatesByIdData, type DeleteAdminFieldTemplatesByIdError, type DeleteAdminFieldTemplatesByIdErrors, type DeleteAdminFieldTemplatesByIdResponses, type DeleteAdminMessagesByIdData, type DeleteAdminMessagesByIdError, type DeleteAdminMessagesByIdErrors, type DeleteAdminMessagesByIdResponses, type DeleteAdminNotificationMethodsByIdData, type DeleteAdminNotificationMethodsByIdError, type DeleteAdminNotificationMethodsByIdErrors, type DeleteAdminNotificationMethodsByIdResponses, type DeleteAdminNotificationPreferencesByIdData, type DeleteAdminNotificationPreferencesByIdError, type DeleteAdminNotificationPreferencesByIdErrors, type DeleteAdminNotificationPreferencesByIdResponses, type DeleteAdminObjectsByIdData, type DeleteAdminObjectsByIdError, type DeleteAdminObjectsByIdErrors, type DeleteAdminObjectsByIdResponses, type DeleteAdminPaymentMethodsByIdData, type DeleteAdminPaymentMethodsByIdError, type DeleteAdminPaymentMethodsByIdErrors, type DeleteAdminPaymentMethodsByIdResponses, type DeleteAdminPlansByIdData, type DeleteAdminPlansByIdError, type DeleteAdminPlansByIdErrors, type DeleteAdminPlansByIdResponses, type DeleteAdminSearchSavedByIdData, type DeleteAdminSearchSavedByIdError, type DeleteAdminSearchSavedByIdErrors, type DeleteAdminSearchSavedByIdResponses, type DeleteAdminSubscriptionsByIdData, type DeleteAdminSubscriptionsByIdError, type DeleteAdminSubscriptionsByIdErrors, type DeleteAdminSubscriptionsByIdResponses, type DeleteAdminSystemMessagesByIdData, type DeleteAdminSystemMessagesByIdError, type DeleteAdminSystemMessagesByIdErrors, type DeleteAdminSystemMessagesByIdResponses, type DeleteAdminTenantMembershipsByTenantIdByUserIdData, type DeleteAdminTenantMembershipsByTenantIdByUserIdError, type DeleteAdminTenantMembershipsByTenantIdByUserIdErrors, type DeleteAdminTenantMembershipsByTenantIdByUserIdResponses, type DeleteAdminTenantPricingOverridesByIdData, type DeleteAdminTenantPricingOverridesByIdError, type DeleteAdminTenantPricingOverridesByIdErrors, type DeleteAdminTenantPricingOverridesByIdResponses, type DeleteAdminTenantsByIdData, type DeleteAdminTenantsByIdError, type DeleteAdminTenantsByIdErrors, type DeleteAdminTenantsByIdResponses, type DeleteAdminThreadsByIdData, type DeleteAdminThreadsByIdError, type DeleteAdminThreadsByIdErrors, type DeleteAdminThreadsByIdResponses, type DeleteAdminTrainingExamplesByIdData, type DeleteAdminTrainingExamplesByIdError, type DeleteAdminTrainingExamplesByIdErrors, type DeleteAdminTrainingExamplesByIdResponses, type DeleteAdminTrainingSessionsByIdData, type DeleteAdminTrainingSessionsByIdError, type DeleteAdminTrainingSessionsByIdErrors, type DeleteAdminTrainingSessionsByIdResponses, type DeleteAdminUserProfilesByIdData, type DeleteAdminUserProfilesByIdError, type DeleteAdminUserProfilesByIdErrors, type DeleteAdminUserProfilesByIdResponses, type DeleteAdminUsersByIdData, type DeleteAdminUsersByIdError, type DeleteAdminUsersByIdErrors, type DeleteAdminUsersByIdResponses, type DeleteAdminWebhookConfigsByIdData, type DeleteAdminWebhookConfigsByIdError, type DeleteAdminWebhookConfigsByIdErrors, type DeleteAdminWebhookConfigsByIdResponses, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdData, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdError, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type DeleteAdminWorkspacesByIdData, type DeleteAdminWorkspacesByIdError, type DeleteAdminWorkspacesByIdErrors, type DeleteAdminWorkspacesByIdResponses, type DocumentBulkDeleteRequest, DocumentBulkDeleteSchema, type DocumentBulkReprocessRequest, DocumentBulkReprocessSchema, type DocumentChunk, type DocumentStats, type EmailTemplate, type Embedding, type ErrorResponse, type Errors, type ExtractionBatch, type ExtractionDocument, type ExtractionExport, type ExtractionResult, type FieldMappingConfirmation, type FieldMappingResult, type FieldTemplate, type GetAdminAccountsByIdData, type GetAdminAccountsByIdError, type GetAdminAccountsByIdErrors, type GetAdminAccountsByIdResponse, type GetAdminAccountsByIdResponses, type GetAdminAccountsByTenantByTenantIdData, type GetAdminAccountsByTenantByTenantIdError, type GetAdminAccountsByTenantByTenantIdErrors, type GetAdminAccountsByTenantByTenantIdResponse, type GetAdminAccountsByTenantByTenantIdResponses, type GetAdminAccountsData, type GetAdminAccountsError, type GetAdminAccountsErrors, type GetAdminAccountsResponse, type GetAdminAccountsResponses, type GetAdminAgentVersionsByIdData, type GetAdminAgentVersionsByIdError, type GetAdminAgentVersionsByIdErrors, type GetAdminAgentVersionsByIdMetricsData, type GetAdminAgentVersionsByIdMetricsError, type GetAdminAgentVersionsByIdMetricsErrors, type GetAdminAgentVersionsByIdMetricsResponse, type GetAdminAgentVersionsByIdMetricsResponses, type GetAdminAgentVersionsByIdResponse, type GetAdminAgentVersionsByIdResponses, type GetAdminAgentVersionsData, type GetAdminAgentVersionsError, type GetAdminAgentVersionsErrors, type GetAdminAgentVersionsResponse, type GetAdminAgentVersionsResponses, type GetAdminAgentsByIdData, type GetAdminAgentsByIdError, type GetAdminAgentsByIdErrors, type GetAdminAgentsByIdResponse, type GetAdminAgentsByIdResponses, type GetAdminAgentsByIdSchemaVersionsData, type GetAdminAgentsByIdSchemaVersionsError, type GetAdminAgentsByIdSchemaVersionsErrors, type GetAdminAgentsByIdSchemaVersionsResponse, type GetAdminAgentsByIdSchemaVersionsResponses, type GetAdminAgentsByIdStatsData, type GetAdminAgentsByIdStatsError, type GetAdminAgentsByIdStatsErrors, type GetAdminAgentsByIdStatsResponse, type GetAdminAgentsByIdStatsResponses, type GetAdminAgentsByIdTrainingStatsData, type GetAdminAgentsByIdTrainingStatsError, type GetAdminAgentsByIdTrainingStatsErrors, type GetAdminAgentsByIdTrainingStatsResponse, type GetAdminAgentsByIdTrainingStatsResponses, type GetAdminAgentsByIdUsageData, type GetAdminAgentsByIdUsageError, type GetAdminAgentsByIdUsageErrors, type GetAdminAgentsByIdUsageResponse, type GetAdminAgentsByIdUsageResponses, type GetAdminAgentsData, type GetAdminAgentsError, type GetAdminAgentsErrors, type GetAdminAgentsResponse, type GetAdminAgentsResponses, type GetAdminAgentsUsageData, type GetAdminAgentsUsageError, type GetAdminAgentsUsageErrors, type GetAdminAgentsUsageResponse, type GetAdminAgentsUsageResponses, type GetAdminAiChunksDocumentByDocumentIdData, type GetAdminAiChunksDocumentByDocumentIdError, type GetAdminAiChunksDocumentByDocumentIdErrors, type GetAdminAiChunksDocumentByDocumentIdResponse, type GetAdminAiChunksDocumentByDocumentIdResponses, type GetAdminAiConversationsByIdData, type GetAdminAiConversationsByIdError, type GetAdminAiConversationsByIdErrors, type GetAdminAiConversationsByIdResponse, type GetAdminAiConversationsByIdResponses, type GetAdminAiConversationsData, type GetAdminAiConversationsError, type GetAdminAiConversationsErrors, type GetAdminAiConversationsResponse, type GetAdminAiConversationsResponses, type GetAdminAiGraphEdgesData, type GetAdminAiGraphEdgesError, type GetAdminAiGraphEdgesErrors, type GetAdminAiGraphEdgesResponse, type GetAdminAiGraphEdgesResponses, type GetAdminAiGraphNodesBySourceNodeIdRelatedData, type GetAdminAiGraphNodesBySourceNodeIdRelatedError, type GetAdminAiGraphNodesBySourceNodeIdRelatedErrors, type GetAdminAiGraphNodesBySourceNodeIdRelatedResponse, type GetAdminAiGraphNodesBySourceNodeIdRelatedResponses, type GetAdminAiGraphNodesData, type GetAdminAiGraphNodesError, type GetAdminAiGraphNodesErrors, type GetAdminAiGraphNodesLabelByLabelData, type GetAdminAiGraphNodesLabelByLabelError, type GetAdminAiGraphNodesLabelByLabelErrors, type GetAdminAiGraphNodesLabelByLabelResponse, type GetAdminAiGraphNodesLabelByLabelResponses, type GetAdminAiGraphNodesResponse, type GetAdminAiGraphNodesResponses, type GetAdminAiMessagesData, type GetAdminAiMessagesError, type GetAdminAiMessagesErrors, type GetAdminAiMessagesResponse, type GetAdminAiMessagesResponses, type GetAdminApiKeysActiveData, type GetAdminApiKeysActiveError, type GetAdminApiKeysActiveErrors, type GetAdminApiKeysActiveResponse, type GetAdminApiKeysActiveResponses, type GetAdminApiKeysByIdData, type GetAdminApiKeysByIdError, type GetAdminApiKeysByIdErrors, type GetAdminApiKeysByIdResponse, type GetAdminApiKeysByIdResponses, type GetAdminApiKeysData, type GetAdminApiKeysError, type GetAdminApiKeysErrors, type GetAdminApiKeysResponse, type GetAdminApiKeysResponses, type GetAdminApiKeysStatsData, type GetAdminApiKeysStatsError, type GetAdminApiKeysStatsErrors, type GetAdminApiKeysStatsResponse, type GetAdminApiKeysStatsResponses, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugData, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugError, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugResponse, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses, type GetAdminApplicationsByApplicationIdEmailTemplatesData, type GetAdminApplicationsByApplicationIdEmailTemplatesError, type GetAdminApplicationsByApplicationIdEmailTemplatesErrors, type GetAdminApplicationsByApplicationIdEmailTemplatesResponse, type GetAdminApplicationsByApplicationIdEmailTemplatesResponses, type GetAdminApplicationsByIdData, type GetAdminApplicationsByIdError, type GetAdminApplicationsByIdErrors, type GetAdminApplicationsByIdResponse, type GetAdminApplicationsByIdResponses, type GetAdminApplicationsBySlugBySlugData, type GetAdminApplicationsBySlugBySlugError, type GetAdminApplicationsBySlugBySlugErrors, type GetAdminApplicationsBySlugBySlugResponse, type GetAdminApplicationsBySlugBySlugResponses, type GetAdminApplicationsCurrentData, type GetAdminApplicationsCurrentError, type GetAdminApplicationsCurrentErrors, type GetAdminApplicationsCurrentResponse, type GetAdminApplicationsCurrentResponses, type GetAdminApplicationsData, type GetAdminApplicationsError, type GetAdminApplicationsErrors, type GetAdminApplicationsResponse, type GetAdminApplicationsResponses, type GetAdminAuditLogsActivityData, type GetAdminAuditLogsActivityError, type GetAdminAuditLogsActivityErrors, type GetAdminAuditLogsActivityResponse, type GetAdminAuditLogsActivityResponses, type GetAdminAuditLogsData, type GetAdminAuditLogsError, type GetAdminAuditLogsErrors, type GetAdminAuditLogsResponse, type GetAdminAuditLogsResponses, type GetAdminBalancesByIdData, type GetAdminBalancesByIdError, type GetAdminBalancesByIdErrors, type GetAdminBalancesByIdResponse, type GetAdminBalancesByIdResponses, type GetAdminBalancesData, type GetAdminBalancesError, type GetAdminBalancesErrors, type GetAdminBalancesResponse, type GetAdminBalancesResponses, type GetAdminBucketsAllData, type GetAdminBucketsAllError, type GetAdminBucketsAllErrors, type GetAdminBucketsAllResponse, type GetAdminBucketsAllResponses, type GetAdminBucketsByIdData, type GetAdminBucketsByIdError, type GetAdminBucketsByIdErrors, type GetAdminBucketsByIdObjectsData, type GetAdminBucketsByIdObjectsError, type GetAdminBucketsByIdObjectsErrors, type GetAdminBucketsByIdObjectsResponse, type GetAdminBucketsByIdObjectsResponses, type GetAdminBucketsByIdResponse, type GetAdminBucketsByIdResponses, type GetAdminBucketsByIdStatsData, type GetAdminBucketsByIdStatsError, type GetAdminBucketsByIdStatsErrors, type GetAdminBucketsByIdStatsResponse, type GetAdminBucketsByIdStatsResponses, type GetAdminBucketsData, type GetAdminBucketsError, type GetAdminBucketsErrors, type GetAdminBucketsResponse, type GetAdminBucketsResponses, type GetAdminConfigsData, type GetAdminConfigsError, type GetAdminConfigsErrors, type GetAdminConfigsResponse, type GetAdminConfigsResponses, type GetAdminCreditPackagesByIdData, type GetAdminCreditPackagesByIdError, type GetAdminCreditPackagesByIdErrors, type GetAdminCreditPackagesByIdResponse, type GetAdminCreditPackagesByIdResponses, type GetAdminCreditPackagesData, type GetAdminCreditPackagesError, type GetAdminCreditPackagesErrors, type GetAdminCreditPackagesResponse, type GetAdminCreditPackagesResponses, type GetAdminCreditPackagesSlugBySlugData, type GetAdminCreditPackagesSlugBySlugError, type GetAdminCreditPackagesSlugBySlugErrors, type GetAdminCreditPackagesSlugBySlugResponse, type GetAdminCreditPackagesSlugBySlugResponses, type GetAdminCustomersByIdData, type GetAdminCustomersByIdError, type GetAdminCustomersByIdErrors, type GetAdminCustomersByIdResponse, type GetAdminCustomersByIdResponses, type GetAdminDocumentsStatsData, type GetAdminDocumentsStatsError, type GetAdminDocumentsStatsErrors, type GetAdminDocumentsStatsResponse, type GetAdminDocumentsStatsResponses, type GetAdminExtractionBatchesByIdData, type GetAdminExtractionBatchesByIdError, type GetAdminExtractionBatchesByIdErrors, type GetAdminExtractionBatchesByIdResponse, type GetAdminExtractionBatchesByIdResponses, type GetAdminExtractionBatchesByIdUploadUrlsData, type GetAdminExtractionBatchesByIdUploadUrlsError, type GetAdminExtractionBatchesByIdUploadUrlsErrors, type GetAdminExtractionBatchesByIdUploadUrlsResponse, type GetAdminExtractionBatchesByIdUploadUrlsResponses, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdData, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdError, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdErrors, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdResponse, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdResponses, type GetAdminExtractionDocumentsByIdData, type GetAdminExtractionDocumentsByIdError, type GetAdminExtractionDocumentsByIdErrors, type GetAdminExtractionDocumentsByIdResponse, type GetAdminExtractionDocumentsByIdResponses, type GetAdminExtractionDocumentsByIdStatusData, type GetAdminExtractionDocumentsByIdStatusError, type GetAdminExtractionDocumentsByIdStatusErrors, type GetAdminExtractionDocumentsByIdStatusResponse, type GetAdminExtractionDocumentsByIdStatusResponses, type GetAdminExtractionDocumentsByIdViewData, type GetAdminExtractionDocumentsByIdViewError, type GetAdminExtractionDocumentsByIdViewErrors, type GetAdminExtractionDocumentsByIdViewResponse, type GetAdminExtractionDocumentsByIdViewResponses, type GetAdminExtractionDocumentsData, type GetAdminExtractionDocumentsError, type GetAdminExtractionDocumentsErrors, type GetAdminExtractionDocumentsResponse, type GetAdminExtractionDocumentsResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedResponses, type GetAdminExtractionResultsByIdData, type GetAdminExtractionResultsByIdError, type GetAdminExtractionResultsByIdErrors, type GetAdminExtractionResultsByIdResponse, type GetAdminExtractionResultsByIdResponses, type GetAdminExtractionResultsData, type GetAdminExtractionResultsDocumentByDocumentIdData, type GetAdminExtractionResultsDocumentByDocumentIdError, type GetAdminExtractionResultsDocumentByDocumentIdErrors, type GetAdminExtractionResultsDocumentByDocumentIdResponse, type GetAdminExtractionResultsDocumentByDocumentIdResponses, type GetAdminExtractionResultsError, type GetAdminExtractionResultsErrors, type GetAdminExtractionResultsResponse, type GetAdminExtractionResultsResponses, type GetAdminExtractionResultsWorkspaceByWorkspaceIdData, type GetAdminExtractionResultsWorkspaceByWorkspaceIdError, type GetAdminExtractionResultsWorkspaceByWorkspaceIdErrors, type GetAdminExtractionResultsWorkspaceByWorkspaceIdResponse, type GetAdminExtractionResultsWorkspaceByWorkspaceIdResponses, type GetAdminExtractionSchemaDiscoveriesByIdData, type GetAdminExtractionSchemaDiscoveriesByIdError, type GetAdminExtractionSchemaDiscoveriesByIdErrors, type GetAdminExtractionSchemaDiscoveriesByIdResponse, type GetAdminExtractionSchemaDiscoveriesByIdResponses, type GetAdminFieldTemplatesByIdData, type GetAdminFieldTemplatesByIdError, type GetAdminFieldTemplatesByIdErrors, type GetAdminFieldTemplatesByIdResponse, type GetAdminFieldTemplatesByIdResponses, type GetAdminFieldTemplatesData, type GetAdminFieldTemplatesError, type GetAdminFieldTemplatesErrors, type GetAdminFieldTemplatesResponse, type GetAdminFieldTemplatesResponses, type GetAdminInvitationsConsumeByTokenData, type GetAdminInvitationsConsumeByTokenError, type GetAdminInvitationsConsumeByTokenErrors, type GetAdminInvitationsConsumeByTokenResponse, type GetAdminInvitationsConsumeByTokenResponses, type GetAdminInvitationsData, type GetAdminInvitationsError, type GetAdminInvitationsErrors, type GetAdminInvitationsMeData, type GetAdminInvitationsMeError, type GetAdminInvitationsMeErrors, type GetAdminInvitationsMeResponse, type GetAdminInvitationsMeResponses, type GetAdminInvitationsResponse, type GetAdminInvitationsResponses, type GetAdminIsvRevenueByIdData, type GetAdminIsvRevenueByIdError, type GetAdminIsvRevenueByIdErrors, type GetAdminIsvRevenueByIdResponse, type GetAdminIsvRevenueByIdResponses, type GetAdminIsvRevenueData, type GetAdminIsvRevenueError, type GetAdminIsvRevenueErrors, type GetAdminIsvRevenueResponse, type GetAdminIsvRevenueResponses, type GetAdminIsvSettlementsByIdData, type GetAdminIsvSettlementsByIdError, type GetAdminIsvSettlementsByIdErrors, type GetAdminIsvSettlementsByIdResponse, type GetAdminIsvSettlementsByIdResponses, type GetAdminIsvSettlementsData, type GetAdminIsvSettlementsError, type GetAdminIsvSettlementsErrors, type GetAdminIsvSettlementsResponse, type GetAdminIsvSettlementsResponses, type GetAdminLedgerByAccountByAccountIdData, type GetAdminLedgerByAccountByAccountIdError, type GetAdminLedgerByAccountByAccountIdErrors, type GetAdminLedgerByAccountByAccountIdResponse, type GetAdminLedgerByAccountByAccountIdResponses, type GetAdminLedgerByIdData, type GetAdminLedgerByIdError, type GetAdminLedgerByIdErrors, type GetAdminLedgerByIdResponse, type GetAdminLedgerByIdResponses, type GetAdminLedgerData, type GetAdminLedgerError, type GetAdminLedgerErrors, type GetAdminLedgerResponse, type GetAdminLedgerResponses, type GetAdminLlmAnalyticsByIdData, type GetAdminLlmAnalyticsByIdError, type GetAdminLlmAnalyticsByIdErrors, type GetAdminLlmAnalyticsByIdResponse, type GetAdminLlmAnalyticsByIdResponses, type GetAdminLlmAnalyticsCostsData, type GetAdminLlmAnalyticsCostsError, type GetAdminLlmAnalyticsCostsErrors, type GetAdminLlmAnalyticsCostsResponse, type GetAdminLlmAnalyticsCostsResponses, type GetAdminLlmAnalyticsData, type GetAdminLlmAnalyticsError, type GetAdminLlmAnalyticsErrors, type GetAdminLlmAnalyticsPlatformData, type GetAdminLlmAnalyticsPlatformError, type GetAdminLlmAnalyticsPlatformErrors, type GetAdminLlmAnalyticsPlatformResponse, type GetAdminLlmAnalyticsPlatformResponses, type GetAdminLlmAnalyticsResponse, type GetAdminLlmAnalyticsResponses, type GetAdminLlmAnalyticsSummaryData, type GetAdminLlmAnalyticsSummaryError, type GetAdminLlmAnalyticsSummaryErrors, type GetAdminLlmAnalyticsSummaryResponse, type GetAdminLlmAnalyticsSummaryResponses, type GetAdminLlmAnalyticsUsageData, type GetAdminLlmAnalyticsUsageError, type GetAdminLlmAnalyticsUsageErrors, type GetAdminLlmAnalyticsUsageResponse, type GetAdminLlmAnalyticsUsageResponses, type GetAdminLlmAnalyticsWorkspaceData, type GetAdminLlmAnalyticsWorkspaceError, type GetAdminLlmAnalyticsWorkspaceErrors, type GetAdminLlmAnalyticsWorkspaceResponse, type GetAdminLlmAnalyticsWorkspaceResponses, type GetAdminMessagesByIdData, type GetAdminMessagesByIdError, type GetAdminMessagesByIdErrors, type GetAdminMessagesByIdResponse, type GetAdminMessagesByIdResponses, type GetAdminMessagesData, type GetAdminMessagesError, type GetAdminMessagesErrors, type GetAdminMessagesResponse, type GetAdminMessagesResponses, type GetAdminMessagesSearchData, type GetAdminMessagesSearchError, type GetAdminMessagesSearchErrors, type GetAdminMessagesSearchResponse, type GetAdminMessagesSearchResponses, type GetAdminMessagesSemanticSearchData, type GetAdminMessagesSemanticSearchError, type GetAdminMessagesSemanticSearchErrors, type GetAdminMessagesSemanticSearchResponse, type GetAdminMessagesSemanticSearchResponses, type GetAdminNotificationLogsByIdData, type GetAdminNotificationLogsByIdError, type GetAdminNotificationLogsByIdErrors, type GetAdminNotificationLogsByIdResponse, type GetAdminNotificationLogsByIdResponses, type GetAdminNotificationLogsData, type GetAdminNotificationLogsError, type GetAdminNotificationLogsErrors, type GetAdminNotificationLogsResponse, type GetAdminNotificationLogsResponses, type GetAdminNotificationLogsStatsData, type GetAdminNotificationLogsStatsError, type GetAdminNotificationLogsStatsErrors, type GetAdminNotificationLogsStatsResponse, type GetAdminNotificationLogsStatsResponses, type GetAdminNotificationMethodsByIdData, type GetAdminNotificationMethodsByIdError, type GetAdminNotificationMethodsByIdErrors, type GetAdminNotificationMethodsByIdResponse, type GetAdminNotificationMethodsByIdResponses, type GetAdminNotificationMethodsData, type GetAdminNotificationMethodsError, type GetAdminNotificationMethodsErrors, type GetAdminNotificationMethodsResponse, type GetAdminNotificationMethodsResponses, type GetAdminNotificationPreferencesByIdData, type GetAdminNotificationPreferencesByIdError, type GetAdminNotificationPreferencesByIdErrors, type GetAdminNotificationPreferencesByIdResponse, type GetAdminNotificationPreferencesByIdResponses, type GetAdminNotificationPreferencesData, type GetAdminNotificationPreferencesError, type GetAdminNotificationPreferencesErrors, type GetAdminNotificationPreferencesResponse, type GetAdminNotificationPreferencesResponses, type GetAdminObjectsByIdData, type GetAdminObjectsByIdError, type GetAdminObjectsByIdErrors, type GetAdminObjectsByIdResponse, type GetAdminObjectsByIdResponses, type GetAdminObjectsData, type GetAdminObjectsError, type GetAdminObjectsErrors, type GetAdminObjectsResponse, type GetAdminObjectsResponses, type GetAdminPaymentMethodsByIdData, type GetAdminPaymentMethodsByIdError, type GetAdminPaymentMethodsByIdErrors, type GetAdminPaymentMethodsByIdResponse, type GetAdminPaymentMethodsByIdResponses, type GetAdminPaymentMethodsData, type GetAdminPaymentMethodsError, type GetAdminPaymentMethodsErrors, type GetAdminPaymentMethodsResponse, type GetAdminPaymentMethodsResponses, type GetAdminPermissionsData, type GetAdminPermissionsError, type GetAdminPermissionsErrors, type GetAdminPermissionsPresetsData, type GetAdminPermissionsPresetsError, type GetAdminPermissionsPresetsErrors, type GetAdminPermissionsPresetsResponse, type GetAdminPermissionsPresetsResponses, type GetAdminPermissionsResponse, type GetAdminPermissionsResponses, type GetAdminPlansByIdData, type GetAdminPlansByIdError, type GetAdminPlansByIdErrors, type GetAdminPlansByIdResponse, type GetAdminPlansByIdResponses, type GetAdminPlansData, type GetAdminPlansError, type GetAdminPlansErrors, type GetAdminPlansResponse, type GetAdminPlansResponses, type GetAdminPlansSlugBySlugData, type GetAdminPlansSlugBySlugError, type GetAdminPlansSlugBySlugErrors, type GetAdminPlansSlugBySlugResponse, type GetAdminPlansSlugBySlugResponses, type GetAdminPricingRulesByIdData, type GetAdminPricingRulesByIdError, type GetAdminPricingRulesByIdErrors, type GetAdminPricingRulesByIdResponse, type GetAdminPricingRulesByIdResponses, type GetAdminPricingRulesData, type GetAdminPricingRulesError, type GetAdminPricingRulesErrors, type GetAdminPricingRulesResolveData, type GetAdminPricingRulesResolveError, type GetAdminPricingRulesResolveErrors, type GetAdminPricingRulesResolveResponse, type GetAdminPricingRulesResolveResponses, type GetAdminPricingRulesResponse, type GetAdminPricingRulesResponses, type GetAdminPricingStrategiesByIdData, type GetAdminPricingStrategiesByIdError, type GetAdminPricingStrategiesByIdErrors, type GetAdminPricingStrategiesByIdResponse, type GetAdminPricingStrategiesByIdResponses, type GetAdminPricingStrategiesData, type GetAdminPricingStrategiesError, type GetAdminPricingStrategiesErrors, type GetAdminPricingStrategiesResponse, type GetAdminPricingStrategiesResponses, type GetAdminSearchAnalyticsData, type GetAdminSearchAnalyticsError, type GetAdminSearchAnalyticsErrors, type GetAdminSearchAnalyticsResponse, type GetAdminSearchAnalyticsResponses, type GetAdminSearchAnalyticsSummaryData, type GetAdminSearchAnalyticsSummaryError, type GetAdminSearchAnalyticsSummaryErrors, type GetAdminSearchAnalyticsSummaryResponse, type GetAdminSearchAnalyticsSummaryResponses, type GetAdminSearchData, type GetAdminSearchError, type GetAdminSearchErrors, type GetAdminSearchHealthData, type GetAdminSearchHealthError, type GetAdminSearchHealthErrors, type GetAdminSearchHealthResponse, type GetAdminSearchHealthResponses, type GetAdminSearchIndexesData, type GetAdminSearchIndexesError, type GetAdminSearchIndexesErrors, type GetAdminSearchIndexesResponse, type GetAdminSearchIndexesResponses, type GetAdminSearchResponse, type GetAdminSearchResponses, type GetAdminSearchSavedData, type GetAdminSearchSavedError, type GetAdminSearchSavedErrors, type GetAdminSearchSavedResponse, type GetAdminSearchSavedResponses, type GetAdminSearchSemanticData, type GetAdminSearchSemanticError, type GetAdminSearchSemanticErrors, type GetAdminSearchSemanticResponse, type GetAdminSearchSemanticResponses, type GetAdminSearchStatsData, type GetAdminSearchStatsError, type GetAdminSearchStatsErrors, type GetAdminSearchStatsResponse, type GetAdminSearchStatsResponses, type GetAdminSearchStatusData, type GetAdminSearchStatusError, type GetAdminSearchStatusErrors, type GetAdminSearchStatusResponse, type GetAdminSearchStatusResponses, type GetAdminSearchSuggestData, type GetAdminSearchSuggestError, type GetAdminSearchSuggestErrors, type GetAdminSearchSuggestResponse, type GetAdminSearchSuggestResponses, type GetAdminStorageStatsData, type GetAdminStorageStatsError, type GetAdminStorageStatsErrors, type GetAdminStorageStatsResponse, type GetAdminStorageStatsResponses, type GetAdminStorageStatsTenantByTenantIdData, type GetAdminStorageStatsTenantByTenantIdError, type GetAdminStorageStatsTenantByTenantIdErrors, type GetAdminStorageStatsTenantByTenantIdResponse, type GetAdminStorageStatsTenantByTenantIdResponses, type GetAdminSubscriptionsByIdData, type GetAdminSubscriptionsByIdError, type GetAdminSubscriptionsByIdErrors, type GetAdminSubscriptionsByIdResponse, type GetAdminSubscriptionsByIdResponses, type GetAdminSubscriptionsByTenantByTenantIdData, type GetAdminSubscriptionsByTenantByTenantIdError, type GetAdminSubscriptionsByTenantByTenantIdErrors, type GetAdminSubscriptionsByTenantByTenantIdResponse, type GetAdminSubscriptionsByTenantByTenantIdResponses, type GetAdminSubscriptionsData, type GetAdminSubscriptionsError, type GetAdminSubscriptionsErrors, type GetAdminSubscriptionsResponse, type GetAdminSubscriptionsResponses, type GetAdminSysAiConfigByIdData, type GetAdminSysAiConfigByIdError, type GetAdminSysAiConfigByIdErrors, type GetAdminSysAiConfigByIdResponse, type GetAdminSysAiConfigByIdResponses, type GetAdminSysAiConfigData, type GetAdminSysAiConfigError, type GetAdminSysAiConfigErrors, type GetAdminSysAiConfigResponse, type GetAdminSysAiConfigResponses, type GetAdminSysSemanticCacheByIdData, type GetAdminSysSemanticCacheByIdError, type GetAdminSysSemanticCacheByIdErrors, type GetAdminSysSemanticCacheByIdResponse, type GetAdminSysSemanticCacheByIdResponses, type GetAdminSystemMessagesByIdData, type GetAdminSystemMessagesByIdError, type GetAdminSystemMessagesByIdErrors, type GetAdminSystemMessagesByIdResponse, type GetAdminSystemMessagesByIdResponses, type GetAdminSystemMessagesData, type GetAdminSystemMessagesError, type GetAdminSystemMessagesErrors, type GetAdminSystemMessagesResponse, type GetAdminSystemMessagesResponses, type GetAdminTenantMembershipsData, type GetAdminTenantMembershipsError, type GetAdminTenantMembershipsErrors, type GetAdminTenantMembershipsResponse, type GetAdminTenantMembershipsResponses, type GetAdminTenantPricingOverridesByIdData, type GetAdminTenantPricingOverridesByIdError, type GetAdminTenantPricingOverridesByIdErrors, type GetAdminTenantPricingOverridesByIdResponse, type GetAdminTenantPricingOverridesByIdResponses, type GetAdminTenantPricingOverridesData, type GetAdminTenantPricingOverridesError, type GetAdminTenantPricingOverridesErrors, type GetAdminTenantPricingOverridesResponse, type GetAdminTenantPricingOverridesResponses, type GetAdminTenantsByIdData, type GetAdminTenantsByIdError, type GetAdminTenantsByIdErrors, type GetAdminTenantsByIdResponse, type GetAdminTenantsByIdResponses, type GetAdminTenantsByTenantIdDocumentStatsData, type GetAdminTenantsByTenantIdDocumentStatsError, type GetAdminTenantsByTenantIdDocumentStatsErrors, type GetAdminTenantsByTenantIdDocumentStatsResponse, type GetAdminTenantsByTenantIdDocumentStatsResponses, type GetAdminTenantsByTenantIdStatsData, type GetAdminTenantsByTenantIdStatsError, type GetAdminTenantsByTenantIdStatsErrors, type GetAdminTenantsByTenantIdStatsResponse, type GetAdminTenantsByTenantIdStatsResponses, type GetAdminTenantsByTenantIdWorkspaceStatsData, type GetAdminTenantsByTenantIdWorkspaceStatsError, type GetAdminTenantsByTenantIdWorkspaceStatsErrors, type GetAdminTenantsByTenantIdWorkspaceStatsResponse, type GetAdminTenantsByTenantIdWorkspaceStatsResponses, type GetAdminTenantsData, type GetAdminTenantsError, type GetAdminTenantsErrors, type GetAdminTenantsResponse, type GetAdminTenantsResponses, type GetAdminThreadsByIdData, type GetAdminThreadsByIdError, type GetAdminThreadsByIdErrors, type GetAdminThreadsByIdMessagesData, type GetAdminThreadsByIdMessagesError, type GetAdminThreadsByIdMessagesErrors, type GetAdminThreadsByIdMessagesResponse, type GetAdminThreadsByIdMessagesResponses, type GetAdminThreadsByIdResponse, type GetAdminThreadsByIdResponses, type GetAdminThreadsData, type GetAdminThreadsError, type GetAdminThreadsErrors, type GetAdminThreadsResponse, type GetAdminThreadsResponses, type GetAdminThreadsSearchData, type GetAdminThreadsSearchError, type GetAdminThreadsSearchErrors, type GetAdminThreadsSearchResponse, type GetAdminThreadsSearchResponses, type GetAdminThreadsStatsData, type GetAdminThreadsStatsError, type GetAdminThreadsStatsErrors, type GetAdminThreadsStatsResponse, type GetAdminThreadsStatsResponses, type GetAdminThreadsWorkspaceStatsData, type GetAdminThreadsWorkspaceStatsError, type GetAdminThreadsWorkspaceStatsErrors, type GetAdminThreadsWorkspaceStatsResponse, type GetAdminThreadsWorkspaceStatsResponses, type GetAdminTrainingExamplesByIdData, type GetAdminTrainingExamplesByIdError, type GetAdminTrainingExamplesByIdErrors, type GetAdminTrainingExamplesByIdResponse, type GetAdminTrainingExamplesByIdResponses, type GetAdminTrainingExamplesData, type GetAdminTrainingExamplesError, type GetAdminTrainingExamplesErrors, type GetAdminTrainingExamplesResponse, type GetAdminTrainingExamplesResponses, type GetAdminTrainingSessionsAgentsByAgentIdSessionsData, type GetAdminTrainingSessionsAgentsByAgentIdSessionsError, type GetAdminTrainingSessionsAgentsByAgentIdSessionsErrors, type GetAdminTrainingSessionsAgentsByAgentIdSessionsResponse, type GetAdminTrainingSessionsAgentsByAgentIdSessionsResponses, type GetAdminTrainingSessionsByIdData, type GetAdminTrainingSessionsByIdError, type GetAdminTrainingSessionsByIdErrors, type GetAdminTrainingSessionsByIdResponse, type GetAdminTrainingSessionsByIdResponses, type GetAdminTransactionsByIdData, type GetAdminTransactionsByIdError, type GetAdminTransactionsByIdErrors, type GetAdminTransactionsByIdResponse, type GetAdminTransactionsByIdResponses, type GetAdminTransactionsData, type GetAdminTransactionsError, type GetAdminTransactionsErrors, type GetAdminTransactionsResponse, type GetAdminTransactionsResponses, type GetAdminTransfersByIdData, type GetAdminTransfersByIdError, type GetAdminTransfersByIdErrors, type GetAdminTransfersByIdResponse, type GetAdminTransfersByIdResponses, type GetAdminTransfersData, type GetAdminTransfersError, type GetAdminTransfersErrors, type GetAdminTransfersResponse, type GetAdminTransfersResponses, type GetAdminUserProfilesByIdData, type GetAdminUserProfilesByIdError, type GetAdminUserProfilesByIdErrors, type GetAdminUserProfilesByIdResponse, type GetAdminUserProfilesByIdResponses, type GetAdminUserProfilesData, type GetAdminUserProfilesError, type GetAdminUserProfilesErrors, type GetAdminUserProfilesMeData, type GetAdminUserProfilesMeError, type GetAdminUserProfilesMeErrors, type GetAdminUserProfilesMeResponse, type GetAdminUserProfilesMeResponses, type GetAdminUserProfilesResponse, type GetAdminUserProfilesResponses, type GetAdminUsersByEmailData, type GetAdminUsersByEmailError, type GetAdminUsersByEmailErrors, type GetAdminUsersByEmailResponse, type GetAdminUsersByEmailResponses, type GetAdminUsersByIdData, type GetAdminUsersByIdError, type GetAdminUsersByIdErrors, type GetAdminUsersByIdResponse, type GetAdminUsersByIdResponses, type GetAdminUsersData, type GetAdminUsersError, type GetAdminUsersErrors, type GetAdminUsersMeActivityData, type GetAdminUsersMeActivityError, type GetAdminUsersMeActivityErrors, type GetAdminUsersMeActivityResponse, type GetAdminUsersMeActivityResponses, type GetAdminUsersMeDashboardData, type GetAdminUsersMeDashboardError, type GetAdminUsersMeDashboardErrors, type GetAdminUsersMeDashboardResponse, type GetAdminUsersMeDashboardResponses, type GetAdminUsersMeData, type GetAdminUsersMeError, type GetAdminUsersMeErrors, type GetAdminUsersMeResponse, type GetAdminUsersMeResponses, type GetAdminUsersMeStatsData, type GetAdminUsersMeStatsError, type GetAdminUsersMeStatsErrors, type GetAdminUsersMeStatsResponse, type GetAdminUsersMeStatsResponses, type GetAdminUsersMeTenantsData, type GetAdminUsersMeTenantsError, type GetAdminUsersMeTenantsErrors, type GetAdminUsersMeTenantsResponse, type GetAdminUsersMeTenantsResponses, type GetAdminUsersResponse, type GetAdminUsersResponses, type GetAdminWalletData, type GetAdminWalletError, type GetAdminWalletErrors, type GetAdminWalletResponse, type GetAdminWalletResponses, type GetAdminWalletStorageBreakdownData, type GetAdminWalletStorageBreakdownError, type GetAdminWalletStorageBreakdownErrors, type GetAdminWalletStorageBreakdownResponse, type GetAdminWalletStorageBreakdownResponses, type GetAdminWalletUsageBreakdownData, type GetAdminWalletUsageBreakdownError, type GetAdminWalletUsageBreakdownErrors, type GetAdminWalletUsageBreakdownResponse, type GetAdminWalletUsageBreakdownResponses, type GetAdminWalletUsageData, type GetAdminWalletUsageError, type GetAdminWalletUsageErrors, type GetAdminWalletUsageResponse, type GetAdminWalletUsageResponses, type GetAdminWebhookConfigsByIdData, type GetAdminWebhookConfigsByIdError, type GetAdminWebhookConfigsByIdErrors, type GetAdminWebhookConfigsByIdEventsData, type GetAdminWebhookConfigsByIdEventsError, type GetAdminWebhookConfigsByIdEventsErrors, type GetAdminWebhookConfigsByIdEventsResponse, type GetAdminWebhookConfigsByIdEventsResponses, type GetAdminWebhookConfigsByIdResponse, type GetAdminWebhookConfigsByIdResponses, type GetAdminWebhookConfigsData, type GetAdminWebhookConfigsError, type GetAdminWebhookConfigsErrors, type GetAdminWebhookConfigsResponse, type GetAdminWebhookConfigsResponses, type GetAdminWebhookConfigsStatsData, type GetAdminWebhookConfigsStatsError, type GetAdminWebhookConfigsStatsErrors, type GetAdminWebhookConfigsStatsResponse, type GetAdminWebhookConfigsStatsResponses, type GetAdminWebhookDeliveriesByIdData, type GetAdminWebhookDeliveriesByIdError, type GetAdminWebhookDeliveriesByIdErrors, type GetAdminWebhookDeliveriesByIdResponse, type GetAdminWebhookDeliveriesByIdResponses, type GetAdminWebhookDeliveriesData, type GetAdminWebhookDeliveriesError, type GetAdminWebhookDeliveriesErrors, type GetAdminWebhookDeliveriesResponse, type GetAdminWebhookDeliveriesResponses, type GetAdminWebhookDeliveriesStatsData, type GetAdminWebhookDeliveriesStatsError, type GetAdminWebhookDeliveriesStatsErrors, type GetAdminWebhookDeliveriesStatsResponse, type GetAdminWebhookDeliveriesStatsResponses, type GetAdminWorkspaceMembershipsData, type GetAdminWorkspaceMembershipsError, type GetAdminWorkspaceMembershipsErrors, type GetAdminWorkspaceMembershipsResponse, type GetAdminWorkspaceMembershipsResponses, type GetAdminWorkspacesAnalyticsBatchData, type GetAdminWorkspacesAnalyticsBatchError, type GetAdminWorkspacesAnalyticsBatchErrors, type GetAdminWorkspacesAnalyticsBatchResponse, type GetAdminWorkspacesAnalyticsBatchResponses, type GetAdminWorkspacesByIdData, type GetAdminWorkspacesByIdError, type GetAdminWorkspacesByIdErrors, type GetAdminWorkspacesByIdMembersData, type GetAdminWorkspacesByIdMembersError, type GetAdminWorkspacesByIdMembersErrors, type GetAdminWorkspacesByIdMembersResponse, type GetAdminWorkspacesByIdMembersResponses, type GetAdminWorkspacesByIdResponse, type GetAdminWorkspacesByIdResponses, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingError, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponse, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdData, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdError, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdErrors, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdResponse, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdResponses, type GetAdminWorkspacesByWorkspaceIdExtractionExportsData, type GetAdminWorkspacesByWorkspaceIdExtractionExportsError, type GetAdminWorkspacesByWorkspaceIdExtractionExportsErrors, type GetAdminWorkspacesByWorkspaceIdExtractionExportsResponse, type GetAdminWorkspacesByWorkspaceIdExtractionExportsResponses, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsData, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsError, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsErrors, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsResponse, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsResponses, type GetAdminWorkspacesData, type GetAdminWorkspacesError, type GetAdminWorkspacesErrors, type GetAdminWorkspacesMineData, type GetAdminWorkspacesMineError, type GetAdminWorkspacesMineErrors, type GetAdminWorkspacesMineResponse, type GetAdminWorkspacesMineResponses, type GetAdminWorkspacesResponse, type GetAdminWorkspacesResponses, type GetAdminWorkspacesSharedData, type GetAdminWorkspacesSharedError, type GetAdminWorkspacesSharedErrors, type GetAdminWorkspacesSharedResponse, type GetAdminWorkspacesSharedResponses, GptAdmin, GptCoreError, type GraphEdge, type GraphNode, type Invitation, type Invoice, type IsvRevenue, type IsvSettlement, type Ledger, type Link, type Links, type LlmAnalytics, type Message, NetworkError, NotFoundError, type NotificationLog, type NotificationMethod, type NotificationPreference, type ObjectType, type OperationSuccess, type PatchAdminAccountsByIdCreditData, type PatchAdminAccountsByIdCreditError, type PatchAdminAccountsByIdCreditErrors, type PatchAdminAccountsByIdCreditResponse, type PatchAdminAccountsByIdCreditResponses, type PatchAdminAccountsByIdDebitData, type PatchAdminAccountsByIdDebitError, type PatchAdminAccountsByIdDebitErrors, type PatchAdminAccountsByIdDebitResponse, type PatchAdminAccountsByIdDebitResponses, type PatchAdminAgentsByIdSchemaVersionsByVersionIdData, type PatchAdminAgentsByIdSchemaVersionsByVersionIdError, type PatchAdminAgentsByIdSchemaVersionsByVersionIdErrors, type PatchAdminAgentsByIdSchemaVersionsByVersionIdResponse, type PatchAdminAgentsByIdSchemaVersionsByVersionIdResponses, type PatchAdminAiConversationsByIdData, type PatchAdminAiConversationsByIdError, type PatchAdminAiConversationsByIdErrors, type PatchAdminAiConversationsByIdResponse, type PatchAdminAiConversationsByIdResponses, type PatchAdminApiKeysByIdAllocateData, type PatchAdminApiKeysByIdAllocateError, type PatchAdminApiKeysByIdAllocateErrors, type PatchAdminApiKeysByIdAllocateResponse, type PatchAdminApiKeysByIdAllocateResponses, type PatchAdminApiKeysByIdData, type PatchAdminApiKeysByIdError, type PatchAdminApiKeysByIdErrors, type PatchAdminApiKeysByIdResetPeriodData, type PatchAdminApiKeysByIdResetPeriodError, type PatchAdminApiKeysByIdResetPeriodErrors, type PatchAdminApiKeysByIdResetPeriodResponse, type PatchAdminApiKeysByIdResetPeriodResponses, type PatchAdminApiKeysByIdResponse, type PatchAdminApiKeysByIdResponses, type PatchAdminApiKeysByIdRevokeData, type PatchAdminApiKeysByIdRevokeError, type PatchAdminApiKeysByIdRevokeErrors, type PatchAdminApiKeysByIdRevokeResponse, type PatchAdminApiKeysByIdRevokeResponses, type PatchAdminApiKeysByIdRotateData, type PatchAdminApiKeysByIdRotateError, type PatchAdminApiKeysByIdRotateErrors, type PatchAdminApiKeysByIdRotateResponse, type PatchAdminApiKeysByIdRotateResponses, type PatchAdminApiKeysByIdSetBudgetData, type PatchAdminApiKeysByIdSetBudgetError, type PatchAdminApiKeysByIdSetBudgetErrors, type PatchAdminApiKeysByIdSetBudgetResponse, type PatchAdminApiKeysByIdSetBudgetResponses, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugData, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugError, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugResponse, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses, type PatchAdminApplicationsByIdAllocateCreditsData, type PatchAdminApplicationsByIdAllocateCreditsError, type PatchAdminApplicationsByIdAllocateCreditsErrors, type PatchAdminApplicationsByIdAllocateCreditsResponse, type PatchAdminApplicationsByIdAllocateCreditsResponses, type PatchAdminApplicationsByIdData, type PatchAdminApplicationsByIdError, type PatchAdminApplicationsByIdErrors, type PatchAdminApplicationsByIdGrantCreditsData, type PatchAdminApplicationsByIdGrantCreditsError, type PatchAdminApplicationsByIdGrantCreditsErrors, type PatchAdminApplicationsByIdGrantCreditsResponse, type PatchAdminApplicationsByIdGrantCreditsResponses, type PatchAdminApplicationsByIdResponse, type PatchAdminApplicationsByIdResponses, type PatchAdminBucketsByIdData, type PatchAdminBucketsByIdError, type PatchAdminBucketsByIdErrors, type PatchAdminBucketsByIdResponse, type PatchAdminBucketsByIdResponses, type PatchAdminConfigsByKeyData, type PatchAdminConfigsByKeyError, type PatchAdminConfigsByKeyErrors, type PatchAdminConfigsByKeyResponse, type PatchAdminConfigsByKeyResponses, type PatchAdminCreditPackagesByIdData, type PatchAdminCreditPackagesByIdError, type PatchAdminCreditPackagesByIdErrors, type PatchAdminCreditPackagesByIdResponse, type PatchAdminCreditPackagesByIdResponses, type PatchAdminCustomersByIdData, type PatchAdminCustomersByIdError, type PatchAdminCustomersByIdErrors, type PatchAdminCustomersByIdResponse, type PatchAdminCustomersByIdResponses, type PatchAdminExtractionDocumentsByIdCancelData, type PatchAdminExtractionDocumentsByIdCancelError, type PatchAdminExtractionDocumentsByIdCancelErrors, type PatchAdminExtractionDocumentsByIdCancelResponse, type PatchAdminExtractionDocumentsByIdCancelResponses, type PatchAdminExtractionDocumentsByIdDismissData, type PatchAdminExtractionDocumentsByIdDismissError, type PatchAdminExtractionDocumentsByIdDismissErrors, type PatchAdminExtractionDocumentsByIdDismissResponse, type PatchAdminExtractionDocumentsByIdDismissResponses, type PatchAdminExtractionDocumentsByIdDismissTrainingData, type PatchAdminExtractionDocumentsByIdDismissTrainingError, type PatchAdminExtractionDocumentsByIdDismissTrainingErrors, type PatchAdminExtractionDocumentsByIdDismissTrainingResponse, type PatchAdminExtractionDocumentsByIdDismissTrainingResponses, type PatchAdminExtractionDocumentsByIdExcludeData, type PatchAdminExtractionDocumentsByIdExcludeError, type PatchAdminExtractionDocumentsByIdExcludeErrors, type PatchAdminExtractionDocumentsByIdExcludeResponse, type PatchAdminExtractionDocumentsByIdExcludeResponses, type PatchAdminExtractionDocumentsByIdFinishUploadData, type PatchAdminExtractionDocumentsByIdFinishUploadError, type PatchAdminExtractionDocumentsByIdFinishUploadErrors, type PatchAdminExtractionDocumentsByIdFinishUploadResponse, type PatchAdminExtractionDocumentsByIdFinishUploadResponses, type PatchAdminExtractionDocumentsByIdIncludeData, type PatchAdminExtractionDocumentsByIdIncludeError, type PatchAdminExtractionDocumentsByIdIncludeErrors, type PatchAdminExtractionDocumentsByIdIncludeResponse, type PatchAdminExtractionDocumentsByIdIncludeResponses, type PatchAdminExtractionDocumentsByIdMarkTrainedData, type PatchAdminExtractionDocumentsByIdMarkTrainedError, type PatchAdminExtractionDocumentsByIdMarkTrainedErrors, type PatchAdminExtractionDocumentsByIdMarkTrainedResponse, type PatchAdminExtractionDocumentsByIdMarkTrainedResponses, type PatchAdminExtractionDocumentsByIdReprocessData, type PatchAdminExtractionDocumentsByIdReprocessError, type PatchAdminExtractionDocumentsByIdReprocessErrors, type PatchAdminExtractionDocumentsByIdReprocessResponse, type PatchAdminExtractionDocumentsByIdReprocessResponses, type PatchAdminExtractionDocumentsByIdRestoreData, type PatchAdminExtractionDocumentsByIdRestoreError, type PatchAdminExtractionDocumentsByIdRestoreErrors, type PatchAdminExtractionDocumentsByIdRestoreResponse, type PatchAdminExtractionDocumentsByIdRestoreResponses, type PatchAdminExtractionDocumentsByIdStatusData, type PatchAdminExtractionDocumentsByIdStatusError, type PatchAdminExtractionDocumentsByIdStatusErrors, type PatchAdminExtractionDocumentsByIdStatusResponse, type PatchAdminExtractionDocumentsByIdStatusResponses, type PatchAdminExtractionDocumentsByIdVerificationData, type PatchAdminExtractionDocumentsByIdVerificationError, type PatchAdminExtractionDocumentsByIdVerificationErrors, type PatchAdminExtractionDocumentsByIdVerificationResponse, type PatchAdminExtractionDocumentsByIdVerificationResponses, type PatchAdminExtractionResultsByIdData, type PatchAdminExtractionResultsByIdError, type PatchAdminExtractionResultsByIdErrors, type PatchAdminExtractionResultsByIdRegenerateData, type PatchAdminExtractionResultsByIdRegenerateError, type PatchAdminExtractionResultsByIdRegenerateErrors, type PatchAdminExtractionResultsByIdRegenerateResponse, type PatchAdminExtractionResultsByIdRegenerateResponses, type PatchAdminExtractionResultsByIdResponse, type PatchAdminExtractionResultsByIdResponses, type PatchAdminExtractionResultsByIdSaveCorrectionsData, type PatchAdminExtractionResultsByIdSaveCorrectionsError, type PatchAdminExtractionResultsByIdSaveCorrectionsErrors, type PatchAdminExtractionResultsByIdSaveCorrectionsResponse, type PatchAdminExtractionResultsByIdSaveCorrectionsResponses, type PatchAdminInvitationsByIdAcceptByUserData, type PatchAdminInvitationsByIdAcceptByUserError, type PatchAdminInvitationsByIdAcceptByUserErrors, type PatchAdminInvitationsByIdAcceptByUserResponse, type PatchAdminInvitationsByIdAcceptByUserResponses, type PatchAdminInvitationsByIdAcceptData, type PatchAdminInvitationsByIdAcceptError, type PatchAdminInvitationsByIdAcceptErrors, type PatchAdminInvitationsByIdAcceptResponse, type PatchAdminInvitationsByIdAcceptResponses, type PatchAdminInvitationsByIdDeclineData, type PatchAdminInvitationsByIdDeclineError, type PatchAdminInvitationsByIdDeclineErrors, type PatchAdminInvitationsByIdDeclineResponse, type PatchAdminInvitationsByIdDeclineResponses, type PatchAdminInvitationsByIdResendData, type PatchAdminInvitationsByIdResendError, type PatchAdminInvitationsByIdResendErrors, type PatchAdminInvitationsByIdResendResponse, type PatchAdminInvitationsByIdResendResponses, type PatchAdminInvitationsByIdRevokeData, type PatchAdminInvitationsByIdRevokeError, type PatchAdminInvitationsByIdRevokeErrors, type PatchAdminInvitationsByIdRevokeResponse, type PatchAdminInvitationsByIdRevokeResponses, type PatchAdminIsvSettlementsByIdData, type PatchAdminIsvSettlementsByIdError, type PatchAdminIsvSettlementsByIdErrors, type PatchAdminIsvSettlementsByIdResponse, type PatchAdminIsvSettlementsByIdResponses, type PatchAdminMessagesByIdData, type PatchAdminMessagesByIdError, type PatchAdminMessagesByIdErrors, type PatchAdminMessagesByIdResponse, type PatchAdminMessagesByIdResponses, type PatchAdminNotificationMethodsByIdData, type PatchAdminNotificationMethodsByIdError, type PatchAdminNotificationMethodsByIdErrors, type PatchAdminNotificationMethodsByIdResponse, type PatchAdminNotificationMethodsByIdResponses, type PatchAdminNotificationMethodsByIdSendVerificationData, type PatchAdminNotificationMethodsByIdSendVerificationError, type PatchAdminNotificationMethodsByIdSendVerificationErrors, type PatchAdminNotificationMethodsByIdSendVerificationResponse, type PatchAdminNotificationMethodsByIdSendVerificationResponses, type PatchAdminNotificationMethodsByIdSetPrimaryData, type PatchAdminNotificationMethodsByIdSetPrimaryError, type PatchAdminNotificationMethodsByIdSetPrimaryErrors, type PatchAdminNotificationMethodsByIdSetPrimaryResponse, type PatchAdminNotificationMethodsByIdSetPrimaryResponses, type PatchAdminNotificationMethodsByIdVerifyData, type PatchAdminNotificationMethodsByIdVerifyError, type PatchAdminNotificationMethodsByIdVerifyErrors, type PatchAdminNotificationMethodsByIdVerifyResponse, type PatchAdminNotificationMethodsByIdVerifyResponses, type PatchAdminNotificationPreferencesByIdData, type PatchAdminNotificationPreferencesByIdError, type PatchAdminNotificationPreferencesByIdErrors, type PatchAdminNotificationPreferencesByIdResponse, type PatchAdminNotificationPreferencesByIdResponses, type PatchAdminPaymentMethodsByIdData, type PatchAdminPaymentMethodsByIdDefaultData, type PatchAdminPaymentMethodsByIdDefaultError, type PatchAdminPaymentMethodsByIdDefaultErrors, type PatchAdminPaymentMethodsByIdDefaultResponse, type PatchAdminPaymentMethodsByIdDefaultResponses, type PatchAdminPaymentMethodsByIdError, type PatchAdminPaymentMethodsByIdErrors, type PatchAdminPaymentMethodsByIdResponse, type PatchAdminPaymentMethodsByIdResponses, type PatchAdminPlansByIdData, type PatchAdminPlansByIdError, type PatchAdminPlansByIdErrors, type PatchAdminPlansByIdResponse, type PatchAdminPlansByIdResponses, type PatchAdminPricingRulesByIdData, type PatchAdminPricingRulesByIdError, type PatchAdminPricingRulesByIdErrors, type PatchAdminPricingRulesByIdResponse, type PatchAdminPricingRulesByIdResponses, type PatchAdminPricingStrategiesByIdData, type PatchAdminPricingStrategiesByIdError, type PatchAdminPricingStrategiesByIdErrors, type PatchAdminPricingStrategiesByIdResponse, type PatchAdminPricingStrategiesByIdResponses, type PatchAdminSearchSavedByIdData, type PatchAdminSearchSavedByIdError, type PatchAdminSearchSavedByIdErrors, type PatchAdminSearchSavedByIdResponse, type PatchAdminSearchSavedByIdResponses, type PatchAdminSubscriptionsByIdCancelData, type PatchAdminSubscriptionsByIdCancelError, type PatchAdminSubscriptionsByIdCancelErrors, type PatchAdminSubscriptionsByIdCancelResponse, type PatchAdminSubscriptionsByIdCancelResponses, type PatchAdminSubscriptionsByIdData, type PatchAdminSubscriptionsByIdError, type PatchAdminSubscriptionsByIdErrors, type PatchAdminSubscriptionsByIdResponse, type PatchAdminSubscriptionsByIdResponses, type PatchAdminSysAiConfigByIdData, type PatchAdminSysAiConfigByIdError, type PatchAdminSysAiConfigByIdErrors, type PatchAdminSysAiConfigByIdResponse, type PatchAdminSysAiConfigByIdResponses, type PatchAdminSystemMessagesByIdData, type PatchAdminSystemMessagesByIdError, type PatchAdminSystemMessagesByIdErrors, type PatchAdminSystemMessagesByIdPublishData, type PatchAdminSystemMessagesByIdPublishError, type PatchAdminSystemMessagesByIdPublishErrors, type PatchAdminSystemMessagesByIdPublishResponse, type PatchAdminSystemMessagesByIdPublishResponses, type PatchAdminSystemMessagesByIdResponse, type PatchAdminSystemMessagesByIdResponses, type PatchAdminSystemMessagesByIdUnpublishData, type PatchAdminSystemMessagesByIdUnpublishError, type PatchAdminSystemMessagesByIdUnpublishErrors, type PatchAdminSystemMessagesByIdUnpublishResponse, type PatchAdminSystemMessagesByIdUnpublishResponses, type PatchAdminTenantMembershipsByTenantIdByUserIdData, type PatchAdminTenantMembershipsByTenantIdByUserIdError, type PatchAdminTenantMembershipsByTenantIdByUserIdErrors, type PatchAdminTenantMembershipsByTenantIdByUserIdResponse, type PatchAdminTenantMembershipsByTenantIdByUserIdResponses, type PatchAdminTenantPricingOverridesByIdData, type PatchAdminTenantPricingOverridesByIdError, type PatchAdminTenantPricingOverridesByIdErrors, type PatchAdminTenantPricingOverridesByIdResponse, type PatchAdminTenantPricingOverridesByIdResponses, type PatchAdminTenantsByIdData, type PatchAdminTenantsByIdError, type PatchAdminTenantsByIdErrors, type PatchAdminTenantsByIdResponse, type PatchAdminTenantsByIdResponses, type PatchAdminThreadsByIdArchiveData, type PatchAdminThreadsByIdArchiveError, type PatchAdminThreadsByIdArchiveErrors, type PatchAdminThreadsByIdArchiveResponse, type PatchAdminThreadsByIdArchiveResponses, type PatchAdminThreadsByIdData, type PatchAdminThreadsByIdError, type PatchAdminThreadsByIdErrors, type PatchAdminThreadsByIdResponse, type PatchAdminThreadsByIdResponses, type PatchAdminThreadsByIdUnarchiveData, type PatchAdminThreadsByIdUnarchiveError, type PatchAdminThreadsByIdUnarchiveErrors, type PatchAdminThreadsByIdUnarchiveResponse, type PatchAdminThreadsByIdUnarchiveResponses, type PatchAdminTrainingExamplesByIdData, type PatchAdminTrainingExamplesByIdError, type PatchAdminTrainingExamplesByIdErrors, type PatchAdminTrainingExamplesByIdResponse, type PatchAdminTrainingExamplesByIdResponses, type PatchAdminUserProfilesByIdAcceptTosData, type PatchAdminUserProfilesByIdAcceptTosError, type PatchAdminUserProfilesByIdAcceptTosErrors, type PatchAdminUserProfilesByIdAcceptTosResponse, type PatchAdminUserProfilesByIdAcceptTosResponses, type PatchAdminUserProfilesByIdData, type PatchAdminUserProfilesByIdDismissAnnouncementData, type PatchAdminUserProfilesByIdDismissAnnouncementError, type PatchAdminUserProfilesByIdDismissAnnouncementErrors, type PatchAdminUserProfilesByIdDismissAnnouncementResponse, type PatchAdminUserProfilesByIdDismissAnnouncementResponses, type PatchAdminUserProfilesByIdDismissWelcomeData, type PatchAdminUserProfilesByIdDismissWelcomeError, type PatchAdminUserProfilesByIdDismissWelcomeErrors, type PatchAdminUserProfilesByIdDismissWelcomeResponse, type PatchAdminUserProfilesByIdDismissWelcomeResponses, type PatchAdminUserProfilesByIdError, type PatchAdminUserProfilesByIdErrors, type PatchAdminUserProfilesByIdResponse, type PatchAdminUserProfilesByIdResponses, type PatchAdminUsersAuthPasswordChangeData, type PatchAdminUsersAuthPasswordChangeError, type PatchAdminUsersAuthPasswordChangeErrors, type PatchAdminUsersAuthPasswordChangeResponse, type PatchAdminUsersAuthPasswordChangeResponses, type PatchAdminUsersAuthResetPasswordData, type PatchAdminUsersAuthResetPasswordError, type PatchAdminUsersAuthResetPasswordErrors, type PatchAdminUsersAuthResetPasswordResponse, type PatchAdminUsersAuthResetPasswordResponses, type PatchAdminUsersByIdAdminData, type PatchAdminUsersByIdAdminEmailData, type PatchAdminUsersByIdAdminEmailError, type PatchAdminUsersByIdAdminEmailErrors, type PatchAdminUsersByIdAdminEmailResponse, type PatchAdminUsersByIdAdminEmailResponses, type PatchAdminUsersByIdAdminError, type PatchAdminUsersByIdAdminErrors, type PatchAdminUsersByIdAdminResponse, type PatchAdminUsersByIdAdminResponses, type PatchAdminUsersByIdConfirmEmailData, type PatchAdminUsersByIdConfirmEmailError, type PatchAdminUsersByIdConfirmEmailErrors, type PatchAdminUsersByIdConfirmEmailResponse, type PatchAdminUsersByIdConfirmEmailResponses, type PatchAdminUsersByIdResetPasswordData, type PatchAdminUsersByIdResetPasswordError, type PatchAdminUsersByIdResetPasswordErrors, type PatchAdminUsersByIdResetPasswordResponse, type PatchAdminUsersByIdResetPasswordResponses, type PatchAdminWalletAddonsByAddonSlugCancelData, type PatchAdminWalletAddonsByAddonSlugCancelError, type PatchAdminWalletAddonsByAddonSlugCancelErrors, type PatchAdminWalletAddonsByAddonSlugCancelResponse, type PatchAdminWalletAddonsByAddonSlugCancelResponses, type PatchAdminWalletAddonsData, type PatchAdminWalletAddonsError, type PatchAdminWalletAddonsErrors, type PatchAdminWalletAddonsResponse, type PatchAdminWalletAddonsResponses, type PatchAdminWalletCreditsData, type PatchAdminWalletCreditsError, type PatchAdminWalletCreditsErrors, type PatchAdminWalletCreditsResponse, type PatchAdminWalletCreditsResponses, type PatchAdminWalletPlanData, type PatchAdminWalletPlanError, type PatchAdminWalletPlanErrors, type PatchAdminWalletPlanResponse, type PatchAdminWalletPlanResponses, type PatchAdminWalletStorageData, type PatchAdminWalletStorageError, type PatchAdminWalletStorageErrors, type PatchAdminWalletStorageResponse, type PatchAdminWalletStorageResponses, type PatchAdminWebhookConfigsByIdData, type PatchAdminWebhookConfigsByIdError, type PatchAdminWebhookConfigsByIdErrors, type PatchAdminWebhookConfigsByIdResponse, type PatchAdminWebhookConfigsByIdResponses, type PatchAdminWebhookConfigsByIdRotateSecretData, type PatchAdminWebhookConfigsByIdRotateSecretError, type PatchAdminWebhookConfigsByIdRotateSecretErrors, type PatchAdminWebhookConfigsByIdRotateSecretResponse, type PatchAdminWebhookConfigsByIdRotateSecretResponses, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdData, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdError, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponse, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type PatchAdminWorkspacesByIdAllocateData, type PatchAdminWorkspacesByIdAllocateError, type PatchAdminWorkspacesByIdAllocateErrors, type PatchAdminWorkspacesByIdAllocateResponse, type PatchAdminWorkspacesByIdAllocateResponses, type PatchAdminWorkspacesByIdData, type PatchAdminWorkspacesByIdError, type PatchAdminWorkspacesByIdErrors, type PatchAdminWorkspacesByIdResponse, type PatchAdminWorkspacesByIdResponses, type PatchAdminWorkspacesByIdStorageSettingsData, type PatchAdminWorkspacesByIdStorageSettingsError, type PatchAdminWorkspacesByIdStorageSettingsErrors, type PatchAdminWorkspacesByIdStorageSettingsResponse, type PatchAdminWorkspacesByIdStorageSettingsResponses, type Payment, type PaymentMethod, type Permission, type PermissionMeta, type PermissionPreset, type Plan, type PostAdminAgentTestResultsData, type PostAdminAgentTestResultsError, type PostAdminAgentTestResultsErrors, type PostAdminAgentTestResultsResponse, type PostAdminAgentTestResultsResponses, type PostAdminAgentVersionComparisonsData, type PostAdminAgentVersionComparisonsError, type PostAdminAgentVersionComparisonsErrors, type PostAdminAgentVersionComparisonsResponse, type PostAdminAgentVersionComparisonsResponses, type PostAdminAgentVersionsByIdAddSystemFieldData, type PostAdminAgentVersionsByIdAddSystemFieldError, type PostAdminAgentVersionsByIdAddSystemFieldErrors, type PostAdminAgentVersionsByIdAddSystemFieldResponses, type PostAdminAgentVersionsByIdRemoveSystemFieldData, type PostAdminAgentVersionsByIdRemoveSystemFieldError, type PostAdminAgentVersionsByIdRemoveSystemFieldErrors, type PostAdminAgentVersionsByIdRemoveSystemFieldResponses, type PostAdminAgentVersionsByIdSetSystemFieldsData, type PostAdminAgentVersionsByIdSetSystemFieldsError, type PostAdminAgentVersionsByIdSetSystemFieldsErrors, type PostAdminAgentVersionsByIdSetSystemFieldsResponses, type PostAdminAgentVersionsData, type PostAdminAgentVersionsError, type PostAdminAgentVersionsErrors, type PostAdminAgentVersionsResponse, type PostAdminAgentVersionsResponses, type PostAdminAgentsByIdCloneData, type PostAdminAgentsByIdCloneError, type PostAdminAgentsByIdCloneErrors, type PostAdminAgentsByIdCloneResponse, type PostAdminAgentsByIdCloneResponses, type PostAdminAgentsByIdDiscoverSchemaData, type PostAdminAgentsByIdDiscoverSchemaError, type PostAdminAgentsByIdDiscoverSchemaErrors, type PostAdminAgentsByIdDiscoverSchemaResponse, type PostAdminAgentsByIdDiscoverSchemaResponses, type PostAdminAgentsByIdExportData, type PostAdminAgentsByIdExportError, type PostAdminAgentsByIdExportErrors, type PostAdminAgentsByIdExportResponse, type PostAdminAgentsByIdExportResponses, type PostAdminAgentsByIdPublishVersionData, type PostAdminAgentsByIdPublishVersionError, type PostAdminAgentsByIdPublishVersionErrors, type PostAdminAgentsByIdPublishVersionResponse, type PostAdminAgentsByIdPublishVersionResponses, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateData, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateError, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateErrors, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponse, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponses, type PostAdminAgentsByIdSchemaVersionsData, type PostAdminAgentsByIdSchemaVersionsError, type PostAdminAgentsByIdSchemaVersionsErrors, type PostAdminAgentsByIdSchemaVersionsResponse, type PostAdminAgentsByIdSchemaVersionsResponses, type PostAdminAgentsByIdTeachData, type PostAdminAgentsByIdTeachError, type PostAdminAgentsByIdTeachErrors, type PostAdminAgentsByIdTeachResponse, type PostAdminAgentsByIdTeachResponses, type PostAdminAgentsByIdTestData, type PostAdminAgentsByIdTestError, type PostAdminAgentsByIdTestErrors, type PostAdminAgentsByIdTestResponse, type PostAdminAgentsByIdTestResponses, type PostAdminAgentsByIdValidateData, type PostAdminAgentsByIdValidateError, type PostAdminAgentsByIdValidateErrors, type PostAdminAgentsByIdValidateResponse, type PostAdminAgentsByIdValidateResponses, type PostAdminAgentsCloneForWorkspaceData, type PostAdminAgentsCloneForWorkspaceError, type PostAdminAgentsCloneForWorkspaceErrors, type PostAdminAgentsCloneForWorkspaceResponse, type PostAdminAgentsCloneForWorkspaceResponses, type PostAdminAgentsImportData, type PostAdminAgentsImportError, type PostAdminAgentsImportErrors, type PostAdminAgentsImportResponse, type PostAdminAgentsImportResponses, type PostAdminAgentsPredictData, type PostAdminAgentsPredictError, type PostAdminAgentsPredictErrors, type PostAdminAgentsPredictResponse, type PostAdminAgentsPredictResponses, type PostAdminAiChunksSearchData, type PostAdminAiChunksSearchError, type PostAdminAiChunksSearchErrors, type PostAdminAiChunksSearchResponse, type PostAdminAiChunksSearchResponses, type PostAdminAiConversationsData, type PostAdminAiConversationsError, type PostAdminAiConversationsErrors, type PostAdminAiConversationsResponse, type PostAdminAiConversationsResponses, type PostAdminAiEmbedData, type PostAdminAiEmbedError, type PostAdminAiEmbedErrors, type PostAdminAiEmbedResponse, type PostAdminAiEmbedResponses, type PostAdminAiGraphEdgesData, type PostAdminAiGraphEdgesError, type PostAdminAiGraphEdgesErrors, type PostAdminAiGraphEdgesResponse, type PostAdminAiGraphEdgesResponses, type PostAdminAiGraphNodesData, type PostAdminAiGraphNodesError, type PostAdminAiGraphNodesErrors, type PostAdminAiGraphNodesResponse, type PostAdminAiGraphNodesResponses, type PostAdminAiMessagesData, type PostAdminAiMessagesError, type PostAdminAiMessagesErrors, type PostAdminAiMessagesResponse, type PostAdminAiMessagesResponses, type PostAdminAiSearchAdvancedData, type PostAdminAiSearchAdvancedError, type PostAdminAiSearchAdvancedErrors, type PostAdminAiSearchAdvancedResponse, type PostAdminAiSearchAdvancedResponses, type PostAdminAiSearchData, type PostAdminAiSearchError, type PostAdminAiSearchErrors, type PostAdminAiSearchResponse, type PostAdminAiSearchResponses, type PostAdminApiKeysData, type PostAdminApiKeysError, type PostAdminApiKeysErrors, type PostAdminApiKeysResponse, type PostAdminApiKeysResponses, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewData, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewError, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewErrors, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewResponse, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewResponses, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestData, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestError, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestErrors, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestResponse, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestResponses, type PostAdminApplicationsByApplicationIdEmailTemplatesData, type PostAdminApplicationsByApplicationIdEmailTemplatesError, type PostAdminApplicationsByApplicationIdEmailTemplatesErrors, type PostAdminApplicationsByApplicationIdEmailTemplatesResponse, type PostAdminApplicationsByApplicationIdEmailTemplatesResponses, type PostAdminApplicationsData, type PostAdminApplicationsError, type PostAdminApplicationsErrors, type PostAdminApplicationsResponse, type PostAdminApplicationsResponses, type PostAdminBucketsData, type PostAdminBucketsError, type PostAdminBucketsErrors, type PostAdminBucketsResponse, type PostAdminBucketsResponses, type PostAdminConfigsData, type PostAdminConfigsError, type PostAdminConfigsErrors, type PostAdminConfigsResponse, type PostAdminConfigsResponses, type PostAdminCreditPackagesData, type PostAdminCreditPackagesError, type PostAdminCreditPackagesErrors, type PostAdminCreditPackagesResponse, type PostAdminCreditPackagesResponses, type PostAdminCustomersData, type PostAdminCustomersError, type PostAdminCustomersErrors, type PostAdminCustomersResponse, type PostAdminCustomersResponses, type PostAdminDocumentsBulkDeleteData, type PostAdminDocumentsBulkDeleteError, type PostAdminDocumentsBulkDeleteErrors, type PostAdminDocumentsBulkDeleteResponse, type PostAdminDocumentsBulkDeleteResponses, type PostAdminDocumentsPresignedUploadData, type PostAdminDocumentsPresignedUploadError, type PostAdminDocumentsPresignedUploadErrors, type PostAdminDocumentsPresignedUploadResponse, type PostAdminDocumentsPresignedUploadResponses, type PostAdminExtractionBatchesData, type PostAdminExtractionBatchesError, type PostAdminExtractionBatchesErrors, type PostAdminExtractionBatchesResponse, type PostAdminExtractionBatchesResponses, type PostAdminExtractionDocumentsBeginUploadData, type PostAdminExtractionDocumentsBeginUploadError, type PostAdminExtractionDocumentsBeginUploadErrors, type PostAdminExtractionDocumentsBeginUploadResponse, type PostAdminExtractionDocumentsBeginUploadResponses, type PostAdminExtractionDocumentsBulkReprocessData, type PostAdminExtractionDocumentsBulkReprocessError, type PostAdminExtractionDocumentsBulkReprocessErrors, type PostAdminExtractionDocumentsBulkReprocessResponse, type PostAdminExtractionDocumentsBulkReprocessResponses, type PostAdminExtractionDocumentsUploadData, type PostAdminExtractionDocumentsUploadError, type PostAdminExtractionDocumentsUploadErrors, type PostAdminExtractionDocumentsUploadResponse, type PostAdminExtractionDocumentsUploadResponses, type PostAdminExtractionSchemaDiscoveriesData, type PostAdminExtractionSchemaDiscoveriesError, type PostAdminExtractionSchemaDiscoveriesErrors, type PostAdminExtractionSchemaDiscoveriesResponse, type PostAdminExtractionSchemaDiscoveriesResponses, type PostAdminFieldTemplatesData, type PostAdminFieldTemplatesError, type PostAdminFieldTemplatesErrors, type PostAdminFieldTemplatesResponse, type PostAdminFieldTemplatesResponses, type PostAdminInvitationsAcceptByTokenData, type PostAdminInvitationsAcceptByTokenError, type PostAdminInvitationsAcceptByTokenErrors, type PostAdminInvitationsAcceptByTokenResponse, type PostAdminInvitationsAcceptByTokenResponses, type PostAdminInvitationsData, type PostAdminInvitationsError, type PostAdminInvitationsErrors, type PostAdminInvitationsResponse, type PostAdminInvitationsResponses, type PostAdminIsvRevenueData, type PostAdminIsvRevenueError, type PostAdminIsvRevenueErrors, type PostAdminIsvRevenueResponse, type PostAdminIsvRevenueResponses, type PostAdminIsvSettlementsData, type PostAdminIsvSettlementsError, type PostAdminIsvSettlementsErrors, type PostAdminIsvSettlementsResponse, type PostAdminIsvSettlementsResponses, type PostAdminLlmAnalyticsData, type PostAdminLlmAnalyticsError, type PostAdminLlmAnalyticsErrors, type PostAdminLlmAnalyticsResponse, type PostAdminLlmAnalyticsResponses, type PostAdminMessagesData, type PostAdminMessagesError, type PostAdminMessagesErrors, type PostAdminMessagesResponse, type PostAdminMessagesResponses, type PostAdminNotificationMethodsData, type PostAdminNotificationMethodsError, type PostAdminNotificationMethodsErrors, type PostAdminNotificationMethodsResponse, type PostAdminNotificationMethodsResponses, type PostAdminNotificationPreferencesData, type PostAdminNotificationPreferencesError, type PostAdminNotificationPreferencesErrors, type PostAdminNotificationPreferencesResponse, type PostAdminNotificationPreferencesResponses, type PostAdminObjectsBulkDestroyData, type PostAdminObjectsBulkDestroyError, type PostAdminObjectsBulkDestroyErrors, type PostAdminObjectsBulkDestroyResponse, type PostAdminObjectsBulkDestroyResponses, type PostAdminObjectsCopyData, type PostAdminObjectsCopyError, type PostAdminObjectsCopyErrors, type PostAdminObjectsCopyResponse, type PostAdminObjectsCopyResponses, type PostAdminObjectsMoveData, type PostAdminObjectsMoveError, type PostAdminObjectsMoveErrors, type PostAdminObjectsMoveResponse, type PostAdminObjectsMoveResponses, type PostAdminObjectsRegisterData, type PostAdminObjectsRegisterError, type PostAdminObjectsRegisterErrors, type PostAdminObjectsRegisterResponse, type PostAdminObjectsRegisterResponses, type PostAdminPaymentMethodsData, type PostAdminPaymentMethodsError, type PostAdminPaymentMethodsErrors, type PostAdminPaymentMethodsResponse, type PostAdminPaymentMethodsResponses, type PostAdminPaymentMethodsTokenizeData, type PostAdminPaymentMethodsTokenizeError, type PostAdminPaymentMethodsTokenizeErrors, type PostAdminPaymentMethodsTokenizeResponse, type PostAdminPaymentMethodsTokenizeResponses, type PostAdminPaymentsData, type PostAdminPaymentsError, type PostAdminPaymentsErrors, type PostAdminPaymentsResponse, type PostAdminPaymentsResponses, type PostAdminPlansData, type PostAdminPlansError, type PostAdminPlansErrors, type PostAdminPlansResponse, type PostAdminPlansResponses, type PostAdminPricingRulesData, type PostAdminPricingRulesError, type PostAdminPricingRulesErrors, type PostAdminPricingRulesResponse, type PostAdminPricingRulesResponses, type PostAdminPricingStrategiesData, type PostAdminPricingStrategiesError, type PostAdminPricingStrategiesErrors, type PostAdminPricingStrategiesResponse, type PostAdminPricingStrategiesResponses, type PostAdminSearchBatchData, type PostAdminSearchBatchError, type PostAdminSearchBatchErrors, type PostAdminSearchBatchResponse, type PostAdminSearchBatchResponses, type PostAdminSearchReindexData, type PostAdminSearchReindexError, type PostAdminSearchReindexErrors, type PostAdminSearchReindexResponse, type PostAdminSearchReindexResponses, type PostAdminSearchSavedByIdRunData, type PostAdminSearchSavedByIdRunError, type PostAdminSearchSavedByIdRunErrors, type PostAdminSearchSavedByIdRunResponse, type PostAdminSearchSavedByIdRunResponses, type PostAdminSearchSavedData, type PostAdminSearchSavedError, type PostAdminSearchSavedErrors, type PostAdminSearchSavedResponse, type PostAdminSearchSavedResponses, type PostAdminStorageSignDownloadData, type PostAdminStorageSignDownloadError, type PostAdminStorageSignDownloadErrors, type PostAdminStorageSignDownloadResponse, type PostAdminStorageSignDownloadResponses, type PostAdminStorageSignUploadData, type PostAdminStorageSignUploadError, type PostAdminStorageSignUploadErrors, type PostAdminStorageSignUploadResponse, type PostAdminStorageSignUploadResponses, type PostAdminSubscriptionsData, type PostAdminSubscriptionsError, type PostAdminSubscriptionsErrors, type PostAdminSubscriptionsResponse, type PostAdminSubscriptionsResponses, type PostAdminSysAiConfigData, type PostAdminSysAiConfigError, type PostAdminSysAiConfigErrors, type PostAdminSysAiConfigResponse, type PostAdminSysAiConfigResponses, type PostAdminSysSemanticCacheClearData, type PostAdminSysSemanticCacheClearError, type PostAdminSysSemanticCacheClearErrors, type PostAdminSysSemanticCacheClearResponse, type PostAdminSysSemanticCacheClearResponses, type PostAdminSystemMessagesData, type PostAdminSystemMessagesError, type PostAdminSystemMessagesErrors, type PostAdminSystemMessagesResponse, type PostAdminSystemMessagesResponses, type PostAdminTenantMembershipsData, type PostAdminTenantMembershipsError, type PostAdminTenantMembershipsErrors, type PostAdminTenantMembershipsResponse, type PostAdminTenantMembershipsResponses, type PostAdminTenantPricingOverridesData, type PostAdminTenantPricingOverridesError, type PostAdminTenantPricingOverridesErrors, type PostAdminTenantPricingOverridesResponse, type PostAdminTenantPricingOverridesResponses, type PostAdminTenantsByIdBuyStorageData, type PostAdminTenantsByIdBuyStorageError, type PostAdminTenantsByIdBuyStorageErrors, type PostAdminTenantsByIdBuyStorageResponse, type PostAdminTenantsByIdBuyStorageResponses, type PostAdminTenantsByIdCreditData, type PostAdminTenantsByIdCreditError, type PostAdminTenantsByIdCreditErrors, type PostAdminTenantsByIdCreditResponse, type PostAdminTenantsByIdCreditResponses, type PostAdminTenantsByIdRemoveStorageData, type PostAdminTenantsByIdRemoveStorageError, type PostAdminTenantsByIdRemoveStorageErrors, type PostAdminTenantsByIdRemoveStorageResponse, type PostAdminTenantsByIdRemoveStorageResponses, type PostAdminTenantsByIdSchedulePurgeData, type PostAdminTenantsByIdSchedulePurgeError, type PostAdminTenantsByIdSchedulePurgeErrors, type PostAdminTenantsByIdSchedulePurgeResponse, type PostAdminTenantsByIdSchedulePurgeResponses, type PostAdminTenantsData, type PostAdminTenantsError, type PostAdminTenantsErrors, type PostAdminTenantsIsvData, type PostAdminTenantsIsvError, type PostAdminTenantsIsvErrors, type PostAdminTenantsIsvResponse, type PostAdminTenantsIsvResponses, type PostAdminTenantsResponse, type PostAdminTenantsResponses, type PostAdminThreadsActiveData, type PostAdminThreadsActiveError, type PostAdminThreadsActiveErrors, type PostAdminThreadsActiveResponse, type PostAdminThreadsActiveResponses, type PostAdminThreadsByIdExportData, type PostAdminThreadsByIdExportError, type PostAdminThreadsByIdExportErrors, type PostAdminThreadsByIdExportResponse, type PostAdminThreadsByIdExportResponses, type PostAdminThreadsByIdForkData, type PostAdminThreadsByIdForkError, type PostAdminThreadsByIdForkErrors, type PostAdminThreadsByIdForkResponse, type PostAdminThreadsByIdForkResponses, type PostAdminThreadsByIdMessagesData, type PostAdminThreadsByIdMessagesError, type PostAdminThreadsByIdMessagesErrors, type PostAdminThreadsByIdMessagesResponse, type PostAdminThreadsByIdMessagesResponses, type PostAdminThreadsByIdSummarizeData, type PostAdminThreadsByIdSummarizeError, type PostAdminThreadsByIdSummarizeErrors, type PostAdminThreadsByIdSummarizeResponse, type PostAdminThreadsByIdSummarizeResponses, type PostAdminThreadsData, type PostAdminThreadsError, type PostAdminThreadsErrors, type PostAdminThreadsResponse, type PostAdminThreadsResponses, type PostAdminTokensData, type PostAdminTokensError, type PostAdminTokensErrors, type PostAdminTokensResponse, type PostAdminTokensResponses, type PostAdminTrainingExamplesBulkData, type PostAdminTrainingExamplesBulkDeleteData, type PostAdminTrainingExamplesBulkDeleteError, type PostAdminTrainingExamplesBulkDeleteErrors, type PostAdminTrainingExamplesBulkDeleteResponse, type PostAdminTrainingExamplesBulkDeleteResponses, type PostAdminTrainingExamplesBulkError, type PostAdminTrainingExamplesBulkErrors, type PostAdminTrainingExamplesBulkResponse, type PostAdminTrainingExamplesBulkResponses, type PostAdminTrainingExamplesData, type PostAdminTrainingExamplesError, type PostAdminTrainingExamplesErrors, type PostAdminTrainingExamplesResponse, type PostAdminTrainingExamplesResponses, type PostAdminTrainingExamplesSearchData, type PostAdminTrainingExamplesSearchError, type PostAdminTrainingExamplesSearchErrors, type PostAdminTrainingExamplesSearchResponse, type PostAdminTrainingExamplesSearchResponses, type PostAdminUserProfilesData, type PostAdminUserProfilesError, type PostAdminUserProfilesErrors, type PostAdminUserProfilesResponse, type PostAdminUserProfilesResponses, type PostAdminUsersAuthConfirmData, type PostAdminUsersAuthConfirmError, type PostAdminUsersAuthConfirmErrors, type PostAdminUsersAuthConfirmResponse, type PostAdminUsersAuthConfirmResponses, type PostAdminUsersAuthLoginData, type PostAdminUsersAuthLoginError, type PostAdminUsersAuthLoginErrors, type PostAdminUsersAuthLoginResponse, type PostAdminUsersAuthLoginResponses, type PostAdminUsersAuthMagicLinkLoginData, type PostAdminUsersAuthMagicLinkLoginError, type PostAdminUsersAuthMagicLinkLoginErrors, type PostAdminUsersAuthMagicLinkLoginResponse, type PostAdminUsersAuthMagicLinkLoginResponses, type PostAdminUsersAuthMagicLinkRequestData, type PostAdminUsersAuthMagicLinkRequestError, type PostAdminUsersAuthMagicLinkRequestErrors, type PostAdminUsersAuthMagicLinkRequestResponse, type PostAdminUsersAuthMagicLinkRequestResponses, type PostAdminUsersAuthRegisterData, type PostAdminUsersAuthRegisterError, type PostAdminUsersAuthRegisterErrors, type PostAdminUsersAuthRegisterResponse, type PostAdminUsersAuthRegisterResponses, type PostAdminUsersAuthRegisterWithOidcData, type PostAdminUsersAuthRegisterWithOidcError, type PostAdminUsersAuthRegisterWithOidcErrors, type PostAdminUsersAuthRegisterWithOidcResponse, type PostAdminUsersAuthRegisterWithOidcResponses, type PostAdminUsersAuthResendConfirmationData, type PostAdminUsersAuthResendConfirmationError, type PostAdminUsersAuthResendConfirmationErrors, type PostAdminUsersAuthResendConfirmationResponse, type PostAdminUsersAuthResendConfirmationResponses, type PostAdminUsersRegisterIsvData, type PostAdminUsersRegisterIsvError, type PostAdminUsersRegisterIsvErrors, type PostAdminUsersRegisterIsvResponse, type PostAdminUsersRegisterIsvResponses, type PostAdminWebhookConfigsBulkDisableData, type PostAdminWebhookConfigsBulkDisableError, type PostAdminWebhookConfigsBulkDisableErrors, type PostAdminWebhookConfigsBulkDisableResponse, type PostAdminWebhookConfigsBulkDisableResponses, type PostAdminWebhookConfigsBulkEnableData, type PostAdminWebhookConfigsBulkEnableError, type PostAdminWebhookConfigsBulkEnableErrors, type PostAdminWebhookConfigsBulkEnableResponse, type PostAdminWebhookConfigsBulkEnableResponses, type PostAdminWebhookConfigsByIdReplayData, type PostAdminWebhookConfigsByIdReplayError, type PostAdminWebhookConfigsByIdReplayErrors, type PostAdminWebhookConfigsByIdReplayResponse, type PostAdminWebhookConfigsByIdReplayResponses, type PostAdminWebhookConfigsByIdTestData, type PostAdminWebhookConfigsByIdTestError, type PostAdminWebhookConfigsByIdTestErrors, type PostAdminWebhookConfigsByIdTestResponse, type PostAdminWebhookConfigsByIdTestResponses, type PostAdminWebhookConfigsData, type PostAdminWebhookConfigsError, type PostAdminWebhookConfigsErrors, type PostAdminWebhookConfigsResponse, type PostAdminWebhookConfigsResponses, type PostAdminWebhookDeliveriesBulkRetryData, type PostAdminWebhookDeliveriesBulkRetryError, type PostAdminWebhookDeliveriesBulkRetryErrors, type PostAdminWebhookDeliveriesBulkRetryResponse, type PostAdminWebhookDeliveriesBulkRetryResponses, type PostAdminWebhookDeliveriesByIdRetryData, type PostAdminWebhookDeliveriesByIdRetryError, type PostAdminWebhookDeliveriesByIdRetryErrors, type PostAdminWebhookDeliveriesByIdRetryResponse, type PostAdminWebhookDeliveriesByIdRetryResponses, type PostAdminWorkspaceMembershipsData, type PostAdminWorkspaceMembershipsError, type PostAdminWorkspaceMembershipsErrors, type PostAdminWorkspaceMembershipsResponse, type PostAdminWorkspaceMembershipsResponses, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingError, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponse, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedData, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedError, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedErrors, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponse, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponses, type PostAdminWorkspacesByWorkspaceIdExtractionExportsData, type PostAdminWorkspacesByWorkspaceIdExtractionExportsError, type PostAdminWorkspacesByWorkspaceIdExtractionExportsErrors, type PostAdminWorkspacesByWorkspaceIdExtractionExportsResponse, type PostAdminWorkspacesByWorkspaceIdExtractionExportsResponses, type PostAdminWorkspacesData, type PostAdminWorkspacesError, type PostAdminWorkspacesErrors, type PostAdminWorkspacesResponse, type PostAdminWorkspacesResponses, type PresignedUrl, type PricingRule, type PricingStrategy, RateLimitError, type SavedSearch, type SchemaDiscovery, type Search, type SearchAnalytics, type SemanticCacheEntry, ServerError, type StorageStats, type StorageStatsRequest, StorageStatsRequestSchema, type StorageStatsType, type Subscription, type SystemMessage, type Tenant, type TenantDocumentStats, type TenantMembership, type TenantPricingOverride, type TenantStats, type Thread, TimeoutError, type Token, type TrainingAnalytics, type TrainingExample, type TrainingSession, type Transaction, type Transfer, type User, type UserProfile, ValidationError, type Wallet, type WatcherClaim, type WatcherEvent, type WebhookBulkDisableRequest, WebhookBulkDisableSchema, type WebhookBulkEnableRequest, WebhookBulkEnableSchema, type WebhookConfig, type WebhookConfigCreateRequest, WebhookConfigCreateSchema, type WebhookDelivery, type WebhookDeliveryBulkRetryRequest, WebhookDeliveryBulkRetrySchema, type Workspace, type WorkspaceDocumentStats, type WorkspaceMembership, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, GptAdmin as default, handleApiError };
|