@gpt-core/admin 0.9.36 → 0.9.38
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 +2217 -676
- package/dist/index.d.ts +2217 -676
- package/llms.txt +26 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1443,6 +1443,10 @@ type Application = {
|
|
|
1443
1443
|
* Field included by default.
|
|
1444
1444
|
*/
|
|
1445
1445
|
slug: string;
|
|
1446
|
+
/**
|
|
1447
|
+
* Memorable slug for vanity URLs. Field included by default.
|
|
1448
|
+
*/
|
|
1449
|
+
vanity_slug?: string | null | unknown;
|
|
1446
1450
|
};
|
|
1447
1451
|
id: string;
|
|
1448
1452
|
/**
|
|
@@ -2469,6 +2473,10 @@ type Tenant = {
|
|
|
2469
2473
|
* Field included by default.
|
|
2470
2474
|
*/
|
|
2471
2475
|
initial_credits?: number | null | unknown;
|
|
2476
|
+
/**
|
|
2477
|
+
* True for auto-created personal tenants, false for organizations. Field included by default.
|
|
2478
|
+
*/
|
|
2479
|
+
is_personal: boolean;
|
|
2472
2480
|
/**
|
|
2473
2481
|
* Field included by default.
|
|
2474
2482
|
*/
|
|
@@ -2481,6 +2489,10 @@ type Tenant = {
|
|
|
2481
2489
|
* Field included by default.
|
|
2482
2490
|
*/
|
|
2483
2491
|
name: string;
|
|
2492
|
+
/**
|
|
2493
|
+
* Subscription tier that gates feature access. Field included by default.
|
|
2494
|
+
*/
|
|
2495
|
+
plan_tier: "free" | "pro" | "business" | "enterprise";
|
|
2484
2496
|
/**
|
|
2485
2497
|
* Field included by default.
|
|
2486
2498
|
*/
|
|
@@ -2495,6 +2507,10 @@ type Tenant = {
|
|
|
2495
2507
|
training_pricing?: {
|
|
2496
2508
|
[key: string]: unknown;
|
|
2497
2509
|
} | null | unknown;
|
|
2510
|
+
/**
|
|
2511
|
+
* Memorable slug for vanity URLs. Field included by default.
|
|
2512
|
+
*/
|
|
2513
|
+
vanity_slug?: string | null | unknown;
|
|
2498
2514
|
};
|
|
2499
2515
|
id: string;
|
|
2500
2516
|
/**
|
|
@@ -2873,6 +2889,10 @@ type ApplicationType = {
|
|
|
2873
2889
|
* Field included by default.
|
|
2874
2890
|
*/
|
|
2875
2891
|
slug: string;
|
|
2892
|
+
/**
|
|
2893
|
+
* Memorable slug for vanity URLs. Field included by default.
|
|
2894
|
+
*/
|
|
2895
|
+
vanity_slug?: string | null | unknown;
|
|
2876
2896
|
};
|
|
2877
2897
|
/**
|
|
2878
2898
|
* A "Resource object" representing a training_example
|
|
@@ -3066,6 +3086,10 @@ type User = {
|
|
|
3066
3086
|
attributes?: {
|
|
3067
3087
|
current_scopes?: Array<string> | null | unknown;
|
|
3068
3088
|
current_workspace_id?: string | null | unknown;
|
|
3089
|
+
/**
|
|
3090
|
+
* Default tenant for billing fallback (set for domain-joined and invitation-registered users). Field included by default.
|
|
3091
|
+
*/
|
|
3092
|
+
default_tenant_id?: string | null | unknown;
|
|
3069
3093
|
/**
|
|
3070
3094
|
* Field included by default.
|
|
3071
3095
|
*/
|
|
@@ -3909,6 +3933,10 @@ type TenantMembership = {
|
|
|
3909
3933
|
* True if this member is the tenant owner
|
|
3910
3934
|
*/
|
|
3911
3935
|
is_owner?: boolean | null | unknown;
|
|
3936
|
+
/**
|
|
3937
|
+
* How the member joined this tenant. Field included by default.
|
|
3938
|
+
*/
|
|
3939
|
+
join_source: "manual" | "invitation" | "domain_whitelist" | "sso_oidc" | "sso_saml" | "scim";
|
|
3912
3940
|
/**
|
|
3913
3941
|
* Org-level permissions in format {app}:{resource}:{action}:{scope}. Field included by default.
|
|
3914
3942
|
*/
|
|
@@ -3931,30 +3959,7 @@ type TenantMembership = {
|
|
|
3931
3959
|
* A relationships object for a tenant-membership
|
|
3932
3960
|
*/
|
|
3933
3961
|
relationships?: {
|
|
3934
|
-
|
|
3935
|
-
/**
|
|
3936
|
-
* An identifier for tenant
|
|
3937
|
-
*/
|
|
3938
|
-
data?: {
|
|
3939
|
-
id: string;
|
|
3940
|
-
meta?: {
|
|
3941
|
-
[key: string]: unknown;
|
|
3942
|
-
};
|
|
3943
|
-
type: string;
|
|
3944
|
-
} | null;
|
|
3945
|
-
};
|
|
3946
|
-
user?: {
|
|
3947
|
-
/**
|
|
3948
|
-
* An identifier for user
|
|
3949
|
-
*/
|
|
3950
|
-
data?: {
|
|
3951
|
-
id: string;
|
|
3952
|
-
meta?: {
|
|
3953
|
-
[key: string]: unknown;
|
|
3954
|
-
};
|
|
3955
|
-
type: string;
|
|
3956
|
-
} | null;
|
|
3957
|
-
};
|
|
3962
|
+
[key: string]: never;
|
|
3958
3963
|
};
|
|
3959
3964
|
type: string;
|
|
3960
3965
|
};
|
|
@@ -4084,6 +4089,59 @@ type AuditLog = {
|
|
|
4084
4089
|
};
|
|
4085
4090
|
type: string;
|
|
4086
4091
|
};
|
|
4092
|
+
/**
|
|
4093
|
+
* A "Resource object" representing a consent_record
|
|
4094
|
+
*/
|
|
4095
|
+
type ConsentRecord = {
|
|
4096
|
+
/**
|
|
4097
|
+
* An attributes object for a consent_record
|
|
4098
|
+
*/
|
|
4099
|
+
attributes?: {
|
|
4100
|
+
/**
|
|
4101
|
+
* Human-readable description of what was consented to. Field included by default.
|
|
4102
|
+
*/
|
|
4103
|
+
description?: string | null | unknown;
|
|
4104
|
+
/**
|
|
4105
|
+
* Field included by default.
|
|
4106
|
+
*/
|
|
4107
|
+
granted_at: unknown;
|
|
4108
|
+
/**
|
|
4109
|
+
* Field included by default.
|
|
4110
|
+
*/
|
|
4111
|
+
purpose: "ai_document_processing" | "data_analytics" | "marketing_communications" | "third_party_sharing";
|
|
4112
|
+
/**
|
|
4113
|
+
* Field included by default.
|
|
4114
|
+
*/
|
|
4115
|
+
status: "granted" | "withdrawn";
|
|
4116
|
+
/**
|
|
4117
|
+
* Field included by default.
|
|
4118
|
+
*/
|
|
4119
|
+
user_id: string;
|
|
4120
|
+
/**
|
|
4121
|
+
* Field included by default.
|
|
4122
|
+
*/
|
|
4123
|
+
withdrawn_at?: unknown;
|
|
4124
|
+
};
|
|
4125
|
+
id: string;
|
|
4126
|
+
/**
|
|
4127
|
+
* A relationships object for a consent_record
|
|
4128
|
+
*/
|
|
4129
|
+
relationships?: {
|
|
4130
|
+
user?: {
|
|
4131
|
+
/**
|
|
4132
|
+
* An identifier for user
|
|
4133
|
+
*/
|
|
4134
|
+
data?: {
|
|
4135
|
+
id: string;
|
|
4136
|
+
meta?: {
|
|
4137
|
+
[key: string]: unknown;
|
|
4138
|
+
};
|
|
4139
|
+
type: string;
|
|
4140
|
+
} | null;
|
|
4141
|
+
};
|
|
4142
|
+
};
|
|
4143
|
+
type: string;
|
|
4144
|
+
};
|
|
4087
4145
|
/**
|
|
4088
4146
|
* A "Resource object" representing a balance
|
|
4089
4147
|
*/
|
|
@@ -4257,6 +4315,87 @@ type PresignedUrl = {
|
|
|
4257
4315
|
};
|
|
4258
4316
|
type: string;
|
|
4259
4317
|
};
|
|
4318
|
+
/**
|
|
4319
|
+
* A "Resource object" representing a legal_document
|
|
4320
|
+
*/
|
|
4321
|
+
type LegalDocument = {
|
|
4322
|
+
/**
|
|
4323
|
+
* An attributes object for a legal_document
|
|
4324
|
+
*/
|
|
4325
|
+
attributes?: {
|
|
4326
|
+
/**
|
|
4327
|
+
* Document becomes active at this time. nil = immediately active when is_active is true. Field included by default.
|
|
4328
|
+
*/
|
|
4329
|
+
active_from?: unknown;
|
|
4330
|
+
/**
|
|
4331
|
+
* Document expires at this time. nil = no expiration. Field included by default.
|
|
4332
|
+
*/
|
|
4333
|
+
active_until?: unknown;
|
|
4334
|
+
/**
|
|
4335
|
+
* Field included by default.
|
|
4336
|
+
*/
|
|
4337
|
+
application_id?: string | null | unknown;
|
|
4338
|
+
/**
|
|
4339
|
+
* Markdown content. Field included by default.
|
|
4340
|
+
*/
|
|
4341
|
+
content: string;
|
|
4342
|
+
/**
|
|
4343
|
+
* Field included by default.
|
|
4344
|
+
*/
|
|
4345
|
+
document_type: "terms_of_service" | "privacy_policy";
|
|
4346
|
+
/**
|
|
4347
|
+
* Field included by default.
|
|
4348
|
+
*/
|
|
4349
|
+
is_active: boolean;
|
|
4350
|
+
/**
|
|
4351
|
+
* ISO 639-1 language code. Field included by default.
|
|
4352
|
+
*/
|
|
4353
|
+
locale: string;
|
|
4354
|
+
/**
|
|
4355
|
+
* Field included by default.
|
|
4356
|
+
*/
|
|
4357
|
+
published_at?: unknown;
|
|
4358
|
+
/**
|
|
4359
|
+
* Field included by default.
|
|
4360
|
+
*/
|
|
4361
|
+
published_by_user_id?: string | null | unknown;
|
|
4362
|
+
/**
|
|
4363
|
+
* ISO 3166-1 region code (e.g., EU, BR, US) or nil for default. Field included by default.
|
|
4364
|
+
*/
|
|
4365
|
+
region?: string | null | unknown;
|
|
4366
|
+
/**
|
|
4367
|
+
* Field included by default.
|
|
4368
|
+
*/
|
|
4369
|
+
requires_acceptance: boolean;
|
|
4370
|
+
/**
|
|
4371
|
+
* Field included by default.
|
|
4372
|
+
*/
|
|
4373
|
+
title: string;
|
|
4374
|
+
/**
|
|
4375
|
+
* Field included by default.
|
|
4376
|
+
*/
|
|
4377
|
+
version: string;
|
|
4378
|
+
};
|
|
4379
|
+
id: string;
|
|
4380
|
+
/**
|
|
4381
|
+
* A relationships object for a legal_document
|
|
4382
|
+
*/
|
|
4383
|
+
relationships?: {
|
|
4384
|
+
application?: {
|
|
4385
|
+
/**
|
|
4386
|
+
* An identifier for application
|
|
4387
|
+
*/
|
|
4388
|
+
data?: {
|
|
4389
|
+
id: string;
|
|
4390
|
+
meta?: {
|
|
4391
|
+
[key: string]: unknown;
|
|
4392
|
+
};
|
|
4393
|
+
type: string;
|
|
4394
|
+
} | null;
|
|
4395
|
+
};
|
|
4396
|
+
};
|
|
4397
|
+
type: string;
|
|
4398
|
+
};
|
|
4260
4399
|
/**
|
|
4261
4400
|
* A "Resource object" representing a permission_preset
|
|
4262
4401
|
*/
|
|
@@ -4377,6 +4516,55 @@ type WorkspaceMembership = {
|
|
|
4377
4516
|
};
|
|
4378
4517
|
type: string;
|
|
4379
4518
|
};
|
|
4519
|
+
/**
|
|
4520
|
+
* A "Resource object" representing a legal_acceptance
|
|
4521
|
+
*/
|
|
4522
|
+
type LegalAcceptance = {
|
|
4523
|
+
/**
|
|
4524
|
+
* An attributes object for a legal_acceptance
|
|
4525
|
+
*/
|
|
4526
|
+
attributes?: {
|
|
4527
|
+
/**
|
|
4528
|
+
* Field included by default.
|
|
4529
|
+
*/
|
|
4530
|
+
accepted_at: unknown;
|
|
4531
|
+
/**
|
|
4532
|
+
* Field included by default.
|
|
4533
|
+
*/
|
|
4534
|
+
context: "registration" | "version_update" | "periodic_reaccept";
|
|
4535
|
+
/**
|
|
4536
|
+
* Field included by default.
|
|
4537
|
+
*/
|
|
4538
|
+
document_type: "terms_of_service" | "privacy_policy";
|
|
4539
|
+
/**
|
|
4540
|
+
* Field included by default.
|
|
4541
|
+
*/
|
|
4542
|
+
user_id: string;
|
|
4543
|
+
/**
|
|
4544
|
+
* Field included by default.
|
|
4545
|
+
*/
|
|
4546
|
+
version: string;
|
|
4547
|
+
};
|
|
4548
|
+
id: string;
|
|
4549
|
+
/**
|
|
4550
|
+
* A relationships object for a legal_acceptance
|
|
4551
|
+
*/
|
|
4552
|
+
relationships?: {
|
|
4553
|
+
user?: {
|
|
4554
|
+
/**
|
|
4555
|
+
* An identifier for user
|
|
4556
|
+
*/
|
|
4557
|
+
data?: {
|
|
4558
|
+
id: string;
|
|
4559
|
+
meta?: {
|
|
4560
|
+
[key: string]: unknown;
|
|
4561
|
+
};
|
|
4562
|
+
type: string;
|
|
4563
|
+
} | null;
|
|
4564
|
+
};
|
|
4565
|
+
};
|
|
4566
|
+
type: string;
|
|
4567
|
+
};
|
|
4380
4568
|
/**
|
|
4381
4569
|
* A "Resource object" representing a config
|
|
4382
4570
|
*/
|
|
@@ -5273,6 +5461,10 @@ type Workspace = {
|
|
|
5273
5461
|
* The user's effective role in this workspace: admin, editor, or viewer
|
|
5274
5462
|
*/
|
|
5275
5463
|
user_role?: string | null | unknown;
|
|
5464
|
+
/**
|
|
5465
|
+
* Memorable slug for vanity URLs. Field included by default.
|
|
5466
|
+
*/
|
|
5467
|
+
vanity_slug?: string | null | unknown;
|
|
5276
5468
|
};
|
|
5277
5469
|
id: string;
|
|
5278
5470
|
/**
|
|
@@ -5400,18 +5592,7 @@ type Invitation = {
|
|
|
5400
5592
|
* A relationships object for a invitation
|
|
5401
5593
|
*/
|
|
5402
5594
|
relationships?: {
|
|
5403
|
-
|
|
5404
|
-
/**
|
|
5405
|
-
* An identifier for inviter
|
|
5406
|
-
*/
|
|
5407
|
-
data?: {
|
|
5408
|
-
id: string;
|
|
5409
|
-
meta?: {
|
|
5410
|
-
[key: string]: unknown;
|
|
5411
|
-
};
|
|
5412
|
-
type: string;
|
|
5413
|
-
} | null;
|
|
5414
|
-
};
|
|
5595
|
+
[key: string]: never;
|
|
5415
5596
|
};
|
|
5416
5597
|
type: string;
|
|
5417
5598
|
};
|
|
@@ -5446,7 +5627,7 @@ type SystemMessage = {
|
|
|
5446
5627
|
/**
|
|
5447
5628
|
* Field included by default.
|
|
5448
5629
|
*/
|
|
5449
|
-
type: "tos" | "welcome" | "announcement";
|
|
5630
|
+
type: "tos" | "privacy_policy" | "welcome" | "announcement";
|
|
5450
5631
|
/**
|
|
5451
5632
|
* Field included by default.
|
|
5452
5633
|
*/
|
|
@@ -5913,6 +6094,10 @@ type PostAdminWorkspacesData = {
|
|
|
5913
6094
|
settings?: WorkspaceSettingsInputCreateType | unknown;
|
|
5914
6095
|
slug: string;
|
|
5915
6096
|
tenant_id: string;
|
|
6097
|
+
/**
|
|
6098
|
+
* Memorable slug for vanity URLs
|
|
6099
|
+
*/
|
|
6100
|
+
vanity_slug?: string | unknown;
|
|
5916
6101
|
};
|
|
5917
6102
|
relationships?: {
|
|
5918
6103
|
[key: string]: never;
|
|
@@ -6534,6 +6719,10 @@ type PostAdminApplicationsData = {
|
|
|
6534
6719
|
*/
|
|
6535
6720
|
sender_name?: string | unknown;
|
|
6536
6721
|
slug: string;
|
|
6722
|
+
/**
|
|
6723
|
+
* Memorable slug for vanity URLs
|
|
6724
|
+
*/
|
|
6725
|
+
vanity_slug?: string | unknown;
|
|
6537
6726
|
};
|
|
6538
6727
|
relationships?: {
|
|
6539
6728
|
[key: string]: never;
|
|
@@ -7679,7 +7868,7 @@ type PatchAdminTenantMembershipsByTenantIdByUserIdResponses = {
|
|
|
7679
7868
|
*/
|
|
7680
7869
|
200: {
|
|
7681
7870
|
data?: TenantMembership;
|
|
7682
|
-
included?: Array<
|
|
7871
|
+
included?: Array<unknown>;
|
|
7683
7872
|
meta?: {
|
|
7684
7873
|
[key: string]: unknown;
|
|
7685
7874
|
};
|
|
@@ -8616,6 +8805,10 @@ type PatchAdminWorkspacesByIdData = {
|
|
|
8616
8805
|
name?: string | unknown;
|
|
8617
8806
|
settings?: WorkspaceSettingsInputUpdateType | unknown;
|
|
8618
8807
|
slug?: string | unknown;
|
|
8808
|
+
/**
|
|
8809
|
+
* Memorable slug for vanity URLs
|
|
8810
|
+
*/
|
|
8811
|
+
vanity_slug?: string | unknown;
|
|
8619
8812
|
};
|
|
8620
8813
|
id: string;
|
|
8621
8814
|
relationships?: {
|
|
@@ -10018,8 +10211,21 @@ type GetAdminAgentVersionsByIdRevisionsResponses = {
|
|
|
10018
10211
|
*/
|
|
10019
10212
|
200: unknown;
|
|
10020
10213
|
};
|
|
10021
|
-
type
|
|
10022
|
-
|
|
10214
|
+
type PostAdminObjectsBulkDestroyData = {
|
|
10215
|
+
/**
|
|
10216
|
+
* Request body for the /objects/bulk-destroy operation on object resource
|
|
10217
|
+
*/
|
|
10218
|
+
body: {
|
|
10219
|
+
data: {
|
|
10220
|
+
attributes?: {
|
|
10221
|
+
ids: Array<string>;
|
|
10222
|
+
};
|
|
10223
|
+
relationships?: {
|
|
10224
|
+
[key: string]: never;
|
|
10225
|
+
};
|
|
10226
|
+
type?: "object";
|
|
10227
|
+
};
|
|
10228
|
+
};
|
|
10023
10229
|
headers: {
|
|
10024
10230
|
/**
|
|
10025
10231
|
* Application ID for authentication and routing
|
|
@@ -10027,17 +10233,7 @@ type GetAdminWorkspaceMembershipsInheritedData = {
|
|
|
10027
10233
|
"x-application-key": string;
|
|
10028
10234
|
};
|
|
10029
10235
|
path?: never;
|
|
10030
|
-
query
|
|
10031
|
-
/**
|
|
10032
|
-
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
10033
|
-
*/
|
|
10034
|
-
filter?: {
|
|
10035
|
-
[key: string]: unknown;
|
|
10036
|
-
};
|
|
10037
|
-
/**
|
|
10038
|
-
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
10039
|
-
*/
|
|
10040
|
-
sort?: string;
|
|
10236
|
+
query?: {
|
|
10041
10237
|
/**
|
|
10042
10238
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
10043
10239
|
*/
|
|
@@ -10048,11 +10244,10 @@ type GetAdminWorkspaceMembershipsInheritedData = {
|
|
|
10048
10244
|
fields?: {
|
|
10049
10245
|
[key: string]: unknown;
|
|
10050
10246
|
};
|
|
10051
|
-
workspace_id: string;
|
|
10052
10247
|
};
|
|
10053
|
-
url: "/admin/
|
|
10248
|
+
url: "/admin/objects/bulk-destroy";
|
|
10054
10249
|
};
|
|
10055
|
-
type
|
|
10250
|
+
type PostAdminObjectsBulkDestroyErrors = {
|
|
10056
10251
|
/**
|
|
10057
10252
|
* Bad Request - Invalid input data or malformed request
|
|
10058
10253
|
*/
|
|
@@ -10082,36 +10277,27 @@ type GetAdminWorkspaceMembershipsInheritedErrors = {
|
|
|
10082
10277
|
*/
|
|
10083
10278
|
default: Errors;
|
|
10084
10279
|
};
|
|
10085
|
-
type
|
|
10086
|
-
type
|
|
10280
|
+
type PostAdminObjectsBulkDestroyError = PostAdminObjectsBulkDestroyErrors[keyof PostAdminObjectsBulkDestroyErrors];
|
|
10281
|
+
type PostAdminObjectsBulkDestroyResponses = {
|
|
10087
10282
|
/**
|
|
10088
10283
|
* Success
|
|
10089
10284
|
*/
|
|
10090
|
-
|
|
10091
|
-
|
|
10092
|
-
|
|
10093
|
-
*/
|
|
10094
|
-
data?: Array<WorkspaceMembership>;
|
|
10095
|
-
included?: Array<User | Workspace | UserProfile>;
|
|
10285
|
+
201: {
|
|
10286
|
+
data?: _Object;
|
|
10287
|
+
included?: Array<unknown>;
|
|
10096
10288
|
meta?: {
|
|
10097
10289
|
[key: string]: unknown;
|
|
10098
10290
|
};
|
|
10099
10291
|
};
|
|
10100
10292
|
};
|
|
10101
|
-
type
|
|
10102
|
-
type
|
|
10293
|
+
type PostAdminObjectsBulkDestroyResponse = PostAdminObjectsBulkDestroyResponses[keyof PostAdminObjectsBulkDestroyResponses];
|
|
10294
|
+
type PostAdminWebhookConfigsBulkEnableData = {
|
|
10103
10295
|
/**
|
|
10104
|
-
* Request body for the /
|
|
10296
|
+
* Request body for the /webhook-configs/bulk-enable operation on webhook_config resource
|
|
10105
10297
|
*/
|
|
10106
10298
|
body: {
|
|
10107
10299
|
data: {
|
|
10108
|
-
|
|
10109
|
-
ids: Array<string>;
|
|
10110
|
-
};
|
|
10111
|
-
relationships?: {
|
|
10112
|
-
[key: string]: never;
|
|
10113
|
-
};
|
|
10114
|
-
type?: "object";
|
|
10300
|
+
ids: Array<string>;
|
|
10115
10301
|
};
|
|
10116
10302
|
};
|
|
10117
10303
|
headers: {
|
|
@@ -10121,84 +10307,10 @@ type PostAdminObjectsBulkDestroyData = {
|
|
|
10121
10307
|
"x-application-key": string;
|
|
10122
10308
|
};
|
|
10123
10309
|
path?: never;
|
|
10124
|
-
query?:
|
|
10125
|
-
|
|
10126
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
10127
|
-
*/
|
|
10128
|
-
include?: string;
|
|
10129
|
-
/**
|
|
10130
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
10131
|
-
*/
|
|
10132
|
-
fields?: {
|
|
10133
|
-
[key: string]: unknown;
|
|
10134
|
-
};
|
|
10135
|
-
};
|
|
10136
|
-
url: "/admin/objects/bulk-destroy";
|
|
10310
|
+
query?: never;
|
|
10311
|
+
url: "/admin/webhook-configs/bulk-enable";
|
|
10137
10312
|
};
|
|
10138
|
-
type
|
|
10139
|
-
/**
|
|
10140
|
-
* Bad Request - Invalid input data or malformed request
|
|
10141
|
-
*/
|
|
10142
|
-
400: ErrorResponse;
|
|
10143
|
-
/**
|
|
10144
|
-
* Unauthorized - Missing or invalid authentication token
|
|
10145
|
-
*/
|
|
10146
|
-
401: ErrorResponse;
|
|
10147
|
-
/**
|
|
10148
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
10149
|
-
*/
|
|
10150
|
-
403: ErrorResponse;
|
|
10151
|
-
/**
|
|
10152
|
-
* Not Found - Resource does not exist
|
|
10153
|
-
*/
|
|
10154
|
-
404: ErrorResponse;
|
|
10155
|
-
/**
|
|
10156
|
-
* Too Many Requests - Rate limit exceeded
|
|
10157
|
-
*/
|
|
10158
|
-
429: ErrorResponse;
|
|
10159
|
-
/**
|
|
10160
|
-
* Internal Server Error - Unexpected server error
|
|
10161
|
-
*/
|
|
10162
|
-
500: ErrorResponse;
|
|
10163
|
-
/**
|
|
10164
|
-
* General Error
|
|
10165
|
-
*/
|
|
10166
|
-
default: Errors;
|
|
10167
|
-
};
|
|
10168
|
-
type PostAdminObjectsBulkDestroyError = PostAdminObjectsBulkDestroyErrors[keyof PostAdminObjectsBulkDestroyErrors];
|
|
10169
|
-
type PostAdminObjectsBulkDestroyResponses = {
|
|
10170
|
-
/**
|
|
10171
|
-
* Success
|
|
10172
|
-
*/
|
|
10173
|
-
201: {
|
|
10174
|
-
data?: _Object;
|
|
10175
|
-
included?: Array<unknown>;
|
|
10176
|
-
meta?: {
|
|
10177
|
-
[key: string]: unknown;
|
|
10178
|
-
};
|
|
10179
|
-
};
|
|
10180
|
-
};
|
|
10181
|
-
type PostAdminObjectsBulkDestroyResponse = PostAdminObjectsBulkDestroyResponses[keyof PostAdminObjectsBulkDestroyResponses];
|
|
10182
|
-
type PostAdminWebhookConfigsBulkEnableData = {
|
|
10183
|
-
/**
|
|
10184
|
-
* Request body for the /webhook-configs/bulk-enable operation on webhook_config resource
|
|
10185
|
-
*/
|
|
10186
|
-
body: {
|
|
10187
|
-
data: {
|
|
10188
|
-
ids: Array<string>;
|
|
10189
|
-
};
|
|
10190
|
-
};
|
|
10191
|
-
headers: {
|
|
10192
|
-
/**
|
|
10193
|
-
* Application ID for authentication and routing
|
|
10194
|
-
*/
|
|
10195
|
-
"x-application-key": string;
|
|
10196
|
-
};
|
|
10197
|
-
path?: never;
|
|
10198
|
-
query?: never;
|
|
10199
|
-
url: "/admin/webhook-configs/bulk-enable";
|
|
10200
|
-
};
|
|
10201
|
-
type PostAdminWebhookConfigsBulkEnableErrors = {
|
|
10313
|
+
type PostAdminWebhookConfigsBulkEnableErrors = {
|
|
10202
10314
|
/**
|
|
10203
10315
|
* Bad Request - Invalid input data or malformed request
|
|
10204
10316
|
*/
|
|
@@ -12777,7 +12889,7 @@ type GetAdminTenantMembershipsResponses = {
|
|
|
12777
12889
|
* An array of resource objects representing a tenant-membership
|
|
12778
12890
|
*/
|
|
12779
12891
|
data?: Array<TenantMembership>;
|
|
12780
|
-
included?: Array<
|
|
12892
|
+
included?: Array<unknown>;
|
|
12781
12893
|
meta?: {
|
|
12782
12894
|
[key: string]: unknown;
|
|
12783
12895
|
};
|
|
@@ -12791,6 +12903,10 @@ type PostAdminTenantMembershipsData = {
|
|
|
12791
12903
|
body: {
|
|
12792
12904
|
data: {
|
|
12793
12905
|
attributes?: {
|
|
12906
|
+
/**
|
|
12907
|
+
* How the member joined this tenant
|
|
12908
|
+
*/
|
|
12909
|
+
join_source?: "manual" | "invitation" | "domain_whitelist" | "sso_oidc" | "sso_saml" | "scim" | unknown;
|
|
12794
12910
|
/**
|
|
12795
12911
|
* Org-level permissions in format {app}:{resource}:{action}:{scope}
|
|
12796
12912
|
*/
|
|
@@ -12866,7 +12982,7 @@ type PostAdminTenantMembershipsResponses = {
|
|
|
12866
12982
|
*/
|
|
12867
12983
|
201: {
|
|
12868
12984
|
data?: TenantMembership;
|
|
12869
|
-
included?: Array<
|
|
12985
|
+
included?: Array<unknown>;
|
|
12870
12986
|
meta?: {
|
|
12871
12987
|
[key: string]: unknown;
|
|
12872
12988
|
};
|
|
@@ -13112,6 +13228,7 @@ type PostAdminUsersAuthRegisterData = {
|
|
|
13112
13228
|
password: string;
|
|
13113
13229
|
password_confirmation: string;
|
|
13114
13230
|
tenant_name: string;
|
|
13231
|
+
tos_version?: string | unknown;
|
|
13115
13232
|
};
|
|
13116
13233
|
relationships?: {
|
|
13117
13234
|
[key: string]: never;
|
|
@@ -14241,7 +14358,7 @@ type GetAdminInvitationsResponses = {
|
|
|
14241
14358
|
* An array of resource objects representing a invitation
|
|
14242
14359
|
*/
|
|
14243
14360
|
data?: Array<Invitation>;
|
|
14244
|
-
included?: Array<
|
|
14361
|
+
included?: Array<unknown>;
|
|
14245
14362
|
meta?: {
|
|
14246
14363
|
[key: string]: unknown;
|
|
14247
14364
|
};
|
|
@@ -14328,7 +14445,7 @@ type PostAdminInvitationsResponses = {
|
|
|
14328
14445
|
*/
|
|
14329
14446
|
201: {
|
|
14330
14447
|
data?: Invitation;
|
|
14331
|
-
included?: Array<
|
|
14448
|
+
included?: Array<unknown>;
|
|
14332
14449
|
meta?: {
|
|
14333
14450
|
[key: string]: unknown;
|
|
14334
14451
|
};
|
|
@@ -14649,16 +14766,28 @@ type PostAdminTenantsData = {
|
|
|
14649
14766
|
attributes?: {
|
|
14650
14767
|
application_id?: string | unknown;
|
|
14651
14768
|
badge_url?: string | unknown;
|
|
14769
|
+
/**
|
|
14770
|
+
* True for auto-created personal tenants, false for organizations
|
|
14771
|
+
*/
|
|
14772
|
+
is_personal?: boolean | unknown;
|
|
14652
14773
|
kind?: "platform" | "isv" | "tenant" | unknown;
|
|
14653
14774
|
logo_url?: string | unknown;
|
|
14654
14775
|
name: string;
|
|
14655
14776
|
owner_id: string;
|
|
14656
14777
|
parent_id?: string | unknown;
|
|
14778
|
+
/**
|
|
14779
|
+
* Subscription tier that gates feature access
|
|
14780
|
+
*/
|
|
14781
|
+
plan_tier?: "free" | "pro" | "business" | "enterprise" | unknown;
|
|
14657
14782
|
slug: string;
|
|
14658
14783
|
/**
|
|
14659
14784
|
* Cost in credits for training on a single document
|
|
14660
14785
|
*/
|
|
14661
14786
|
training_price_credits?: number | unknown;
|
|
14787
|
+
/**
|
|
14788
|
+
* Memorable slug for vanity URLs
|
|
14789
|
+
*/
|
|
14790
|
+
vanity_slug?: string | unknown;
|
|
14662
14791
|
};
|
|
14663
14792
|
relationships?: {
|
|
14664
14793
|
[key: string]: never;
|
|
@@ -16895,76 +17024,7 @@ type PostAdminAgentVersionsByIdSetSystemFieldsResponses = {
|
|
|
16895
17024
|
*/
|
|
16896
17025
|
201: unknown;
|
|
16897
17026
|
};
|
|
16898
|
-
type
|
|
16899
|
-
body?: never;
|
|
16900
|
-
headers: {
|
|
16901
|
-
/**
|
|
16902
|
-
* Application ID for authentication and routing
|
|
16903
|
-
*/
|
|
16904
|
-
"x-application-key": string;
|
|
16905
|
-
};
|
|
16906
|
-
path?: never;
|
|
16907
|
-
query: {
|
|
16908
|
-
/**
|
|
16909
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
16910
|
-
*/
|
|
16911
|
-
include?: string;
|
|
16912
|
-
/**
|
|
16913
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
16914
|
-
*/
|
|
16915
|
-
fields?: {
|
|
16916
|
-
[key: string]: unknown;
|
|
16917
|
-
};
|
|
16918
|
-
query: string;
|
|
16919
|
-
limit?: number;
|
|
16920
|
-
};
|
|
16921
|
-
url: "/admin/messages/semantic-search";
|
|
16922
|
-
};
|
|
16923
|
-
type GetAdminMessagesSemanticSearchErrors = {
|
|
16924
|
-
/**
|
|
16925
|
-
* Bad Request - Invalid input data or malformed request
|
|
16926
|
-
*/
|
|
16927
|
-
400: ErrorResponse;
|
|
16928
|
-
/**
|
|
16929
|
-
* Unauthorized - Missing or invalid authentication token
|
|
16930
|
-
*/
|
|
16931
|
-
401: ErrorResponse;
|
|
16932
|
-
/**
|
|
16933
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
16934
|
-
*/
|
|
16935
|
-
403: ErrorResponse;
|
|
16936
|
-
/**
|
|
16937
|
-
* Not Found - Resource does not exist
|
|
16938
|
-
*/
|
|
16939
|
-
404: ErrorResponse;
|
|
16940
|
-
/**
|
|
16941
|
-
* Too Many Requests - Rate limit exceeded
|
|
16942
|
-
*/
|
|
16943
|
-
429: ErrorResponse;
|
|
16944
|
-
/**
|
|
16945
|
-
* Internal Server Error - Unexpected server error
|
|
16946
|
-
*/
|
|
16947
|
-
500: ErrorResponse;
|
|
16948
|
-
/**
|
|
16949
|
-
* General Error
|
|
16950
|
-
*/
|
|
16951
|
-
default: Errors;
|
|
16952
|
-
};
|
|
16953
|
-
type GetAdminMessagesSemanticSearchError = GetAdminMessagesSemanticSearchErrors[keyof GetAdminMessagesSemanticSearchErrors];
|
|
16954
|
-
type GetAdminMessagesSemanticSearchResponses = {
|
|
16955
|
-
/**
|
|
16956
|
-
* Success
|
|
16957
|
-
*/
|
|
16958
|
-
200: {
|
|
16959
|
-
data?: Message;
|
|
16960
|
-
included?: Array<unknown>;
|
|
16961
|
-
meta?: {
|
|
16962
|
-
[key: string]: unknown;
|
|
16963
|
-
};
|
|
16964
|
-
};
|
|
16965
|
-
};
|
|
16966
|
-
type GetAdminMessagesSemanticSearchResponse = GetAdminMessagesSemanticSearchResponses[keyof GetAdminMessagesSemanticSearchResponses];
|
|
16967
|
-
type GetAdminSearchStatsData = {
|
|
17027
|
+
type GetAdminConsentRecordsData = {
|
|
16968
17028
|
body?: never;
|
|
16969
17029
|
headers: {
|
|
16970
17030
|
/**
|
|
@@ -16984,6 +17044,12 @@ type GetAdminSearchStatsData = {
|
|
|
16984
17044
|
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
16985
17045
|
*/
|
|
16986
17046
|
sort?: string;
|
|
17047
|
+
/**
|
|
17048
|
+
* JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
|
|
17049
|
+
*/
|
|
17050
|
+
page?: {
|
|
17051
|
+
[key: string]: unknown;
|
|
17052
|
+
};
|
|
16987
17053
|
/**
|
|
16988
17054
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
16989
17055
|
*/
|
|
@@ -16995,9 +17061,9 @@ type GetAdminSearchStatsData = {
|
|
|
16995
17061
|
[key: string]: unknown;
|
|
16996
17062
|
};
|
|
16997
17063
|
};
|
|
16998
|
-
url: "/admin/
|
|
17064
|
+
url: "/admin/consent-records";
|
|
16999
17065
|
};
|
|
17000
|
-
type
|
|
17066
|
+
type GetAdminConsentRecordsErrors = {
|
|
17001
17067
|
/**
|
|
17002
17068
|
* Bad Request - Invalid input data or malformed request
|
|
17003
17069
|
*/
|
|
@@ -17027,30 +17093,43 @@ type GetAdminSearchStatsErrors = {
|
|
|
17027
17093
|
*/
|
|
17028
17094
|
default: Errors;
|
|
17029
17095
|
};
|
|
17030
|
-
type
|
|
17031
|
-
type
|
|
17096
|
+
type GetAdminConsentRecordsError = GetAdminConsentRecordsErrors[keyof GetAdminConsentRecordsErrors];
|
|
17097
|
+
type GetAdminConsentRecordsResponses = {
|
|
17032
17098
|
/**
|
|
17033
17099
|
* Success
|
|
17034
17100
|
*/
|
|
17035
17101
|
200: {
|
|
17036
17102
|
/**
|
|
17037
|
-
* An array of resource objects representing a
|
|
17103
|
+
* An array of resource objects representing a consent_record
|
|
17038
17104
|
*/
|
|
17039
|
-
data?: Array<
|
|
17105
|
+
data?: Array<ConsentRecord>;
|
|
17040
17106
|
included?: Array<unknown>;
|
|
17041
17107
|
meta?: {
|
|
17042
17108
|
[key: string]: unknown;
|
|
17043
17109
|
};
|
|
17044
17110
|
};
|
|
17045
17111
|
};
|
|
17046
|
-
type
|
|
17047
|
-
type
|
|
17112
|
+
type GetAdminConsentRecordsResponse = GetAdminConsentRecordsResponses[keyof GetAdminConsentRecordsResponses];
|
|
17113
|
+
type PostAdminConsentRecordsData = {
|
|
17048
17114
|
/**
|
|
17049
|
-
* Request body for the /
|
|
17115
|
+
* Request body for the /consent-records operation on consent_record resource
|
|
17050
17116
|
*/
|
|
17051
17117
|
body: {
|
|
17052
17118
|
data: {
|
|
17053
|
-
|
|
17119
|
+
attributes?: {
|
|
17120
|
+
/**
|
|
17121
|
+
* Human-readable description of what was consented to
|
|
17122
|
+
*/
|
|
17123
|
+
description?: string | unknown;
|
|
17124
|
+
ip_address?: string | unknown;
|
|
17125
|
+
purpose: "ai_document_processing" | "data_analytics" | "marketing_communications" | "third_party_sharing";
|
|
17126
|
+
user_agent?: string | unknown;
|
|
17127
|
+
user_id: string;
|
|
17128
|
+
};
|
|
17129
|
+
relationships?: {
|
|
17130
|
+
[key: string]: never;
|
|
17131
|
+
};
|
|
17132
|
+
type?: "consent_record";
|
|
17054
17133
|
};
|
|
17055
17134
|
};
|
|
17056
17135
|
headers: {
|
|
@@ -17059,69 +17138,8 @@ type PostAdminAgentVersionsByIdAddSystemFieldData = {
|
|
|
17059
17138
|
*/
|
|
17060
17139
|
"x-application-key": string;
|
|
17061
17140
|
};
|
|
17062
|
-
path: {
|
|
17063
|
-
id: string;
|
|
17064
|
-
};
|
|
17065
|
-
query?: never;
|
|
17066
|
-
url: "/admin/agent-versions/{id}/add-system-field";
|
|
17067
|
-
};
|
|
17068
|
-
type PostAdminAgentVersionsByIdAddSystemFieldErrors = {
|
|
17069
|
-
/**
|
|
17070
|
-
* Bad Request - Invalid input data or malformed request
|
|
17071
|
-
*/
|
|
17072
|
-
400: ErrorResponse;
|
|
17073
|
-
/**
|
|
17074
|
-
* Unauthorized - Missing or invalid authentication token
|
|
17075
|
-
*/
|
|
17076
|
-
401: ErrorResponse;
|
|
17077
|
-
/**
|
|
17078
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
17079
|
-
*/
|
|
17080
|
-
403: ErrorResponse;
|
|
17081
|
-
/**
|
|
17082
|
-
* Not Found - Resource does not exist
|
|
17083
|
-
*/
|
|
17084
|
-
404: ErrorResponse;
|
|
17085
|
-
/**
|
|
17086
|
-
* Too Many Requests - Rate limit exceeded
|
|
17087
|
-
*/
|
|
17088
|
-
429: ErrorResponse;
|
|
17089
|
-
/**
|
|
17090
|
-
* Internal Server Error - Unexpected server error
|
|
17091
|
-
*/
|
|
17092
|
-
500: ErrorResponse;
|
|
17093
|
-
/**
|
|
17094
|
-
* General Error
|
|
17095
|
-
*/
|
|
17096
|
-
default: Errors;
|
|
17097
|
-
};
|
|
17098
|
-
type PostAdminAgentVersionsByIdAddSystemFieldError = PostAdminAgentVersionsByIdAddSystemFieldErrors[keyof PostAdminAgentVersionsByIdAddSystemFieldErrors];
|
|
17099
|
-
type PostAdminAgentVersionsByIdAddSystemFieldResponses = {
|
|
17100
|
-
/**
|
|
17101
|
-
* Success
|
|
17102
|
-
*/
|
|
17103
|
-
201: unknown;
|
|
17104
|
-
};
|
|
17105
|
-
type GetAdminWorkspacesMineData = {
|
|
17106
|
-
body?: never;
|
|
17107
|
-
headers: {
|
|
17108
|
-
/**
|
|
17109
|
-
* Application ID for authentication and routing
|
|
17110
|
-
*/
|
|
17111
|
-
"x-application-key": string;
|
|
17112
|
-
};
|
|
17113
17141
|
path?: never;
|
|
17114
17142
|
query?: {
|
|
17115
|
-
/**
|
|
17116
|
-
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
17117
|
-
*/
|
|
17118
|
-
filter?: {
|
|
17119
|
-
[key: string]: unknown;
|
|
17120
|
-
};
|
|
17121
|
-
/**
|
|
17122
|
-
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
17123
|
-
*/
|
|
17124
|
-
sort?: string;
|
|
17125
17143
|
/**
|
|
17126
17144
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
17127
17145
|
*/
|
|
@@ -17133,9 +17151,9 @@ type GetAdminWorkspacesMineData = {
|
|
|
17133
17151
|
[key: string]: unknown;
|
|
17134
17152
|
};
|
|
17135
17153
|
};
|
|
17136
|
-
url: "/admin/
|
|
17154
|
+
url: "/admin/consent-records";
|
|
17137
17155
|
};
|
|
17138
|
-
type
|
|
17156
|
+
type PostAdminConsentRecordsErrors = {
|
|
17139
17157
|
/**
|
|
17140
17158
|
* Bad Request - Invalid input data or malformed request
|
|
17141
17159
|
*/
|
|
@@ -17165,24 +17183,21 @@ type GetAdminWorkspacesMineErrors = {
|
|
|
17165
17183
|
*/
|
|
17166
17184
|
default: Errors;
|
|
17167
17185
|
};
|
|
17168
|
-
type
|
|
17169
|
-
type
|
|
17186
|
+
type PostAdminConsentRecordsError = PostAdminConsentRecordsErrors[keyof PostAdminConsentRecordsErrors];
|
|
17187
|
+
type PostAdminConsentRecordsResponses = {
|
|
17170
17188
|
/**
|
|
17171
17189
|
* Success
|
|
17172
17190
|
*/
|
|
17173
|
-
|
|
17174
|
-
|
|
17175
|
-
|
|
17176
|
-
*/
|
|
17177
|
-
data?: Array<Workspace>;
|
|
17178
|
-
included?: Array<Tenant>;
|
|
17191
|
+
201: {
|
|
17192
|
+
data?: ConsentRecord;
|
|
17193
|
+
included?: Array<unknown>;
|
|
17179
17194
|
meta?: {
|
|
17180
17195
|
[key: string]: unknown;
|
|
17181
17196
|
};
|
|
17182
17197
|
};
|
|
17183
17198
|
};
|
|
17184
|
-
type
|
|
17185
|
-
type
|
|
17199
|
+
type PostAdminConsentRecordsResponse = PostAdminConsentRecordsResponses[keyof PostAdminConsentRecordsResponses];
|
|
17200
|
+
type GetAdminMessagesSemanticSearchData = {
|
|
17186
17201
|
body?: never;
|
|
17187
17202
|
headers: {
|
|
17188
17203
|
/**
|
|
@@ -17190,10 +17205,8 @@ type DeleteAdminFieldTemplatesByIdData = {
|
|
|
17190
17205
|
*/
|
|
17191
17206
|
"x-application-key": string;
|
|
17192
17207
|
};
|
|
17193
|
-
path
|
|
17194
|
-
|
|
17195
|
-
};
|
|
17196
|
-
query?: {
|
|
17208
|
+
path?: never;
|
|
17209
|
+
query: {
|
|
17197
17210
|
/**
|
|
17198
17211
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
17199
17212
|
*/
|
|
@@ -17204,10 +17217,380 @@ type DeleteAdminFieldTemplatesByIdData = {
|
|
|
17204
17217
|
fields?: {
|
|
17205
17218
|
[key: string]: unknown;
|
|
17206
17219
|
};
|
|
17220
|
+
query: string;
|
|
17221
|
+
limit?: number;
|
|
17207
17222
|
};
|
|
17208
|
-
url: "/admin/
|
|
17223
|
+
url: "/admin/messages/semantic-search";
|
|
17209
17224
|
};
|
|
17210
|
-
type
|
|
17225
|
+
type GetAdminMessagesSemanticSearchErrors = {
|
|
17226
|
+
/**
|
|
17227
|
+
* Bad Request - Invalid input data or malformed request
|
|
17228
|
+
*/
|
|
17229
|
+
400: ErrorResponse;
|
|
17230
|
+
/**
|
|
17231
|
+
* Unauthorized - Missing or invalid authentication token
|
|
17232
|
+
*/
|
|
17233
|
+
401: ErrorResponse;
|
|
17234
|
+
/**
|
|
17235
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
17236
|
+
*/
|
|
17237
|
+
403: ErrorResponse;
|
|
17238
|
+
/**
|
|
17239
|
+
* Not Found - Resource does not exist
|
|
17240
|
+
*/
|
|
17241
|
+
404: ErrorResponse;
|
|
17242
|
+
/**
|
|
17243
|
+
* Too Many Requests - Rate limit exceeded
|
|
17244
|
+
*/
|
|
17245
|
+
429: ErrorResponse;
|
|
17246
|
+
/**
|
|
17247
|
+
* Internal Server Error - Unexpected server error
|
|
17248
|
+
*/
|
|
17249
|
+
500: ErrorResponse;
|
|
17250
|
+
/**
|
|
17251
|
+
* General Error
|
|
17252
|
+
*/
|
|
17253
|
+
default: Errors;
|
|
17254
|
+
};
|
|
17255
|
+
type GetAdminMessagesSemanticSearchError = GetAdminMessagesSemanticSearchErrors[keyof GetAdminMessagesSemanticSearchErrors];
|
|
17256
|
+
type GetAdminMessagesSemanticSearchResponses = {
|
|
17257
|
+
/**
|
|
17258
|
+
* Success
|
|
17259
|
+
*/
|
|
17260
|
+
200: {
|
|
17261
|
+
data?: Message;
|
|
17262
|
+
included?: Array<unknown>;
|
|
17263
|
+
meta?: {
|
|
17264
|
+
[key: string]: unknown;
|
|
17265
|
+
};
|
|
17266
|
+
};
|
|
17267
|
+
};
|
|
17268
|
+
type GetAdminMessagesSemanticSearchResponse = GetAdminMessagesSemanticSearchResponses[keyof GetAdminMessagesSemanticSearchResponses];
|
|
17269
|
+
type GetAdminSearchStatsData = {
|
|
17270
|
+
body?: never;
|
|
17271
|
+
headers: {
|
|
17272
|
+
/**
|
|
17273
|
+
* Application ID for authentication and routing
|
|
17274
|
+
*/
|
|
17275
|
+
"x-application-key": string;
|
|
17276
|
+
};
|
|
17277
|
+
path?: never;
|
|
17278
|
+
query?: {
|
|
17279
|
+
/**
|
|
17280
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
17281
|
+
*/
|
|
17282
|
+
filter?: {
|
|
17283
|
+
[key: string]: unknown;
|
|
17284
|
+
};
|
|
17285
|
+
/**
|
|
17286
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
17287
|
+
*/
|
|
17288
|
+
sort?: string;
|
|
17289
|
+
/**
|
|
17290
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
17291
|
+
*/
|
|
17292
|
+
include?: string;
|
|
17293
|
+
/**
|
|
17294
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
17295
|
+
*/
|
|
17296
|
+
fields?: {
|
|
17297
|
+
[key: string]: unknown;
|
|
17298
|
+
};
|
|
17299
|
+
};
|
|
17300
|
+
url: "/admin/search/stats";
|
|
17301
|
+
};
|
|
17302
|
+
type GetAdminSearchStatsErrors = {
|
|
17303
|
+
/**
|
|
17304
|
+
* Bad Request - Invalid input data or malformed request
|
|
17305
|
+
*/
|
|
17306
|
+
400: ErrorResponse;
|
|
17307
|
+
/**
|
|
17308
|
+
* Unauthorized - Missing or invalid authentication token
|
|
17309
|
+
*/
|
|
17310
|
+
401: ErrorResponse;
|
|
17311
|
+
/**
|
|
17312
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
17313
|
+
*/
|
|
17314
|
+
403: ErrorResponse;
|
|
17315
|
+
/**
|
|
17316
|
+
* Not Found - Resource does not exist
|
|
17317
|
+
*/
|
|
17318
|
+
404: ErrorResponse;
|
|
17319
|
+
/**
|
|
17320
|
+
* Too Many Requests - Rate limit exceeded
|
|
17321
|
+
*/
|
|
17322
|
+
429: ErrorResponse;
|
|
17323
|
+
/**
|
|
17324
|
+
* Internal Server Error - Unexpected server error
|
|
17325
|
+
*/
|
|
17326
|
+
500: ErrorResponse;
|
|
17327
|
+
/**
|
|
17328
|
+
* General Error
|
|
17329
|
+
*/
|
|
17330
|
+
default: Errors;
|
|
17331
|
+
};
|
|
17332
|
+
type GetAdminSearchStatsError = GetAdminSearchStatsErrors[keyof GetAdminSearchStatsErrors];
|
|
17333
|
+
type GetAdminSearchStatsResponses = {
|
|
17334
|
+
/**
|
|
17335
|
+
* Success
|
|
17336
|
+
*/
|
|
17337
|
+
200: {
|
|
17338
|
+
/**
|
|
17339
|
+
* An array of resource objects representing a search
|
|
17340
|
+
*/
|
|
17341
|
+
data?: Array<Search>;
|
|
17342
|
+
included?: Array<unknown>;
|
|
17343
|
+
meta?: {
|
|
17344
|
+
[key: string]: unknown;
|
|
17345
|
+
};
|
|
17346
|
+
};
|
|
17347
|
+
};
|
|
17348
|
+
type GetAdminSearchStatsResponse = GetAdminSearchStatsResponses[keyof GetAdminSearchStatsResponses];
|
|
17349
|
+
type GetAdminConsentRecordsActiveData = {
|
|
17350
|
+
body?: never;
|
|
17351
|
+
headers: {
|
|
17352
|
+
/**
|
|
17353
|
+
* Application ID for authentication and routing
|
|
17354
|
+
*/
|
|
17355
|
+
"x-application-key": string;
|
|
17356
|
+
};
|
|
17357
|
+
path?: never;
|
|
17358
|
+
query: {
|
|
17359
|
+
/**
|
|
17360
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
17361
|
+
*/
|
|
17362
|
+
filter?: {
|
|
17363
|
+
[key: string]: unknown;
|
|
17364
|
+
};
|
|
17365
|
+
/**
|
|
17366
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
17367
|
+
*/
|
|
17368
|
+
sort?: string;
|
|
17369
|
+
/**
|
|
17370
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
17371
|
+
*/
|
|
17372
|
+
include?: string;
|
|
17373
|
+
/**
|
|
17374
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
17375
|
+
*/
|
|
17376
|
+
fields?: {
|
|
17377
|
+
[key: string]: unknown;
|
|
17378
|
+
};
|
|
17379
|
+
user_id: string;
|
|
17380
|
+
};
|
|
17381
|
+
url: "/admin/consent-records/active";
|
|
17382
|
+
};
|
|
17383
|
+
type GetAdminConsentRecordsActiveErrors = {
|
|
17384
|
+
/**
|
|
17385
|
+
* Bad Request - Invalid input data or malformed request
|
|
17386
|
+
*/
|
|
17387
|
+
400: ErrorResponse;
|
|
17388
|
+
/**
|
|
17389
|
+
* Unauthorized - Missing or invalid authentication token
|
|
17390
|
+
*/
|
|
17391
|
+
401: ErrorResponse;
|
|
17392
|
+
/**
|
|
17393
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
17394
|
+
*/
|
|
17395
|
+
403: ErrorResponse;
|
|
17396
|
+
/**
|
|
17397
|
+
* Not Found - Resource does not exist
|
|
17398
|
+
*/
|
|
17399
|
+
404: ErrorResponse;
|
|
17400
|
+
/**
|
|
17401
|
+
* Too Many Requests - Rate limit exceeded
|
|
17402
|
+
*/
|
|
17403
|
+
429: ErrorResponse;
|
|
17404
|
+
/**
|
|
17405
|
+
* Internal Server Error - Unexpected server error
|
|
17406
|
+
*/
|
|
17407
|
+
500: ErrorResponse;
|
|
17408
|
+
/**
|
|
17409
|
+
* General Error
|
|
17410
|
+
*/
|
|
17411
|
+
default: Errors;
|
|
17412
|
+
};
|
|
17413
|
+
type GetAdminConsentRecordsActiveError = GetAdminConsentRecordsActiveErrors[keyof GetAdminConsentRecordsActiveErrors];
|
|
17414
|
+
type GetAdminConsentRecordsActiveResponses = {
|
|
17415
|
+
/**
|
|
17416
|
+
* Success
|
|
17417
|
+
*/
|
|
17418
|
+
200: {
|
|
17419
|
+
/**
|
|
17420
|
+
* An array of resource objects representing a consent_record
|
|
17421
|
+
*/
|
|
17422
|
+
data?: Array<ConsentRecord>;
|
|
17423
|
+
included?: Array<unknown>;
|
|
17424
|
+
meta?: {
|
|
17425
|
+
[key: string]: unknown;
|
|
17426
|
+
};
|
|
17427
|
+
};
|
|
17428
|
+
};
|
|
17429
|
+
type GetAdminConsentRecordsActiveResponse = GetAdminConsentRecordsActiveResponses[keyof GetAdminConsentRecordsActiveResponses];
|
|
17430
|
+
type PostAdminAgentVersionsByIdAddSystemFieldData = {
|
|
17431
|
+
/**
|
|
17432
|
+
* Request body for the /agent-versions/:id/add-system-field operation on agent_version resource
|
|
17433
|
+
*/
|
|
17434
|
+
body: {
|
|
17435
|
+
data: {
|
|
17436
|
+
system_field_name: string;
|
|
17437
|
+
};
|
|
17438
|
+
};
|
|
17439
|
+
headers: {
|
|
17440
|
+
/**
|
|
17441
|
+
* Application ID for authentication and routing
|
|
17442
|
+
*/
|
|
17443
|
+
"x-application-key": string;
|
|
17444
|
+
};
|
|
17445
|
+
path: {
|
|
17446
|
+
id: string;
|
|
17447
|
+
};
|
|
17448
|
+
query?: never;
|
|
17449
|
+
url: "/admin/agent-versions/{id}/add-system-field";
|
|
17450
|
+
};
|
|
17451
|
+
type PostAdminAgentVersionsByIdAddSystemFieldErrors = {
|
|
17452
|
+
/**
|
|
17453
|
+
* Bad Request - Invalid input data or malformed request
|
|
17454
|
+
*/
|
|
17455
|
+
400: ErrorResponse;
|
|
17456
|
+
/**
|
|
17457
|
+
* Unauthorized - Missing or invalid authentication token
|
|
17458
|
+
*/
|
|
17459
|
+
401: ErrorResponse;
|
|
17460
|
+
/**
|
|
17461
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
17462
|
+
*/
|
|
17463
|
+
403: ErrorResponse;
|
|
17464
|
+
/**
|
|
17465
|
+
* Not Found - Resource does not exist
|
|
17466
|
+
*/
|
|
17467
|
+
404: ErrorResponse;
|
|
17468
|
+
/**
|
|
17469
|
+
* Too Many Requests - Rate limit exceeded
|
|
17470
|
+
*/
|
|
17471
|
+
429: ErrorResponse;
|
|
17472
|
+
/**
|
|
17473
|
+
* Internal Server Error - Unexpected server error
|
|
17474
|
+
*/
|
|
17475
|
+
500: ErrorResponse;
|
|
17476
|
+
/**
|
|
17477
|
+
* General Error
|
|
17478
|
+
*/
|
|
17479
|
+
default: Errors;
|
|
17480
|
+
};
|
|
17481
|
+
type PostAdminAgentVersionsByIdAddSystemFieldError = PostAdminAgentVersionsByIdAddSystemFieldErrors[keyof PostAdminAgentVersionsByIdAddSystemFieldErrors];
|
|
17482
|
+
type PostAdminAgentVersionsByIdAddSystemFieldResponses = {
|
|
17483
|
+
/**
|
|
17484
|
+
* Success
|
|
17485
|
+
*/
|
|
17486
|
+
201: unknown;
|
|
17487
|
+
};
|
|
17488
|
+
type GetAdminWorkspacesMineData = {
|
|
17489
|
+
body?: never;
|
|
17490
|
+
headers: {
|
|
17491
|
+
/**
|
|
17492
|
+
* Application ID for authentication and routing
|
|
17493
|
+
*/
|
|
17494
|
+
"x-application-key": string;
|
|
17495
|
+
};
|
|
17496
|
+
path?: never;
|
|
17497
|
+
query?: {
|
|
17498
|
+
/**
|
|
17499
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
17500
|
+
*/
|
|
17501
|
+
filter?: {
|
|
17502
|
+
[key: string]: unknown;
|
|
17503
|
+
};
|
|
17504
|
+
/**
|
|
17505
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
17506
|
+
*/
|
|
17507
|
+
sort?: string;
|
|
17508
|
+
/**
|
|
17509
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
17510
|
+
*/
|
|
17511
|
+
include?: string;
|
|
17512
|
+
/**
|
|
17513
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
17514
|
+
*/
|
|
17515
|
+
fields?: {
|
|
17516
|
+
[key: string]: unknown;
|
|
17517
|
+
};
|
|
17518
|
+
};
|
|
17519
|
+
url: "/admin/workspaces/mine";
|
|
17520
|
+
};
|
|
17521
|
+
type GetAdminWorkspacesMineErrors = {
|
|
17522
|
+
/**
|
|
17523
|
+
* Bad Request - Invalid input data or malformed request
|
|
17524
|
+
*/
|
|
17525
|
+
400: ErrorResponse;
|
|
17526
|
+
/**
|
|
17527
|
+
* Unauthorized - Missing or invalid authentication token
|
|
17528
|
+
*/
|
|
17529
|
+
401: ErrorResponse;
|
|
17530
|
+
/**
|
|
17531
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
17532
|
+
*/
|
|
17533
|
+
403: ErrorResponse;
|
|
17534
|
+
/**
|
|
17535
|
+
* Not Found - Resource does not exist
|
|
17536
|
+
*/
|
|
17537
|
+
404: ErrorResponse;
|
|
17538
|
+
/**
|
|
17539
|
+
* Too Many Requests - Rate limit exceeded
|
|
17540
|
+
*/
|
|
17541
|
+
429: ErrorResponse;
|
|
17542
|
+
/**
|
|
17543
|
+
* Internal Server Error - Unexpected server error
|
|
17544
|
+
*/
|
|
17545
|
+
500: ErrorResponse;
|
|
17546
|
+
/**
|
|
17547
|
+
* General Error
|
|
17548
|
+
*/
|
|
17549
|
+
default: Errors;
|
|
17550
|
+
};
|
|
17551
|
+
type GetAdminWorkspacesMineError = GetAdminWorkspacesMineErrors[keyof GetAdminWorkspacesMineErrors];
|
|
17552
|
+
type GetAdminWorkspacesMineResponses = {
|
|
17553
|
+
/**
|
|
17554
|
+
* Success
|
|
17555
|
+
*/
|
|
17556
|
+
200: {
|
|
17557
|
+
/**
|
|
17558
|
+
* An array of resource objects representing a workspace
|
|
17559
|
+
*/
|
|
17560
|
+
data?: Array<Workspace>;
|
|
17561
|
+
included?: Array<Tenant>;
|
|
17562
|
+
meta?: {
|
|
17563
|
+
[key: string]: unknown;
|
|
17564
|
+
};
|
|
17565
|
+
};
|
|
17566
|
+
};
|
|
17567
|
+
type GetAdminWorkspacesMineResponse = GetAdminWorkspacesMineResponses[keyof GetAdminWorkspacesMineResponses];
|
|
17568
|
+
type DeleteAdminFieldTemplatesByIdData = {
|
|
17569
|
+
body?: never;
|
|
17570
|
+
headers: {
|
|
17571
|
+
/**
|
|
17572
|
+
* Application ID for authentication and routing
|
|
17573
|
+
*/
|
|
17574
|
+
"x-application-key": string;
|
|
17575
|
+
};
|
|
17576
|
+
path: {
|
|
17577
|
+
id: string;
|
|
17578
|
+
};
|
|
17579
|
+
query?: {
|
|
17580
|
+
/**
|
|
17581
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
17582
|
+
*/
|
|
17583
|
+
include?: string;
|
|
17584
|
+
/**
|
|
17585
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
17586
|
+
*/
|
|
17587
|
+
fields?: {
|
|
17588
|
+
[key: string]: unknown;
|
|
17589
|
+
};
|
|
17590
|
+
};
|
|
17591
|
+
url: "/admin/field-templates/{id}";
|
|
17592
|
+
};
|
|
17593
|
+
type DeleteAdminFieldTemplatesByIdErrors = {
|
|
17211
17594
|
/**
|
|
17212
17595
|
* Bad Request - Invalid input data or malformed request
|
|
17213
17596
|
*/
|
|
@@ -19787,6 +20170,87 @@ type PatchAdminWalletCreditsResponses = {
|
|
|
19787
20170
|
};
|
|
19788
20171
|
};
|
|
19789
20172
|
type PatchAdminWalletCreditsResponse = PatchAdminWalletCreditsResponses[keyof PatchAdminWalletCreditsResponses];
|
|
20173
|
+
type GetAdminLegalDocumentsForApplicationData = {
|
|
20174
|
+
body?: never;
|
|
20175
|
+
headers: {
|
|
20176
|
+
/**
|
|
20177
|
+
* Application ID for authentication and routing
|
|
20178
|
+
*/
|
|
20179
|
+
"x-application-key": string;
|
|
20180
|
+
};
|
|
20181
|
+
path?: never;
|
|
20182
|
+
query: {
|
|
20183
|
+
/**
|
|
20184
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
20185
|
+
*/
|
|
20186
|
+
filter?: {
|
|
20187
|
+
[key: string]: unknown;
|
|
20188
|
+
};
|
|
20189
|
+
/**
|
|
20190
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
20191
|
+
*/
|
|
20192
|
+
sort?: string;
|
|
20193
|
+
/**
|
|
20194
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
20195
|
+
*/
|
|
20196
|
+
include?: string;
|
|
20197
|
+
/**
|
|
20198
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
20199
|
+
*/
|
|
20200
|
+
fields?: {
|
|
20201
|
+
[key: string]: unknown;
|
|
20202
|
+
};
|
|
20203
|
+
application_id: string;
|
|
20204
|
+
};
|
|
20205
|
+
url: "/admin/legal-documents/for-application";
|
|
20206
|
+
};
|
|
20207
|
+
type GetAdminLegalDocumentsForApplicationErrors = {
|
|
20208
|
+
/**
|
|
20209
|
+
* Bad Request - Invalid input data or malformed request
|
|
20210
|
+
*/
|
|
20211
|
+
400: ErrorResponse;
|
|
20212
|
+
/**
|
|
20213
|
+
* Unauthorized - Missing or invalid authentication token
|
|
20214
|
+
*/
|
|
20215
|
+
401: ErrorResponse;
|
|
20216
|
+
/**
|
|
20217
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
20218
|
+
*/
|
|
20219
|
+
403: ErrorResponse;
|
|
20220
|
+
/**
|
|
20221
|
+
* Not Found - Resource does not exist
|
|
20222
|
+
*/
|
|
20223
|
+
404: ErrorResponse;
|
|
20224
|
+
/**
|
|
20225
|
+
* Too Many Requests - Rate limit exceeded
|
|
20226
|
+
*/
|
|
20227
|
+
429: ErrorResponse;
|
|
20228
|
+
/**
|
|
20229
|
+
* Internal Server Error - Unexpected server error
|
|
20230
|
+
*/
|
|
20231
|
+
500: ErrorResponse;
|
|
20232
|
+
/**
|
|
20233
|
+
* General Error
|
|
20234
|
+
*/
|
|
20235
|
+
default: Errors;
|
|
20236
|
+
};
|
|
20237
|
+
type GetAdminLegalDocumentsForApplicationError = GetAdminLegalDocumentsForApplicationErrors[keyof GetAdminLegalDocumentsForApplicationErrors];
|
|
20238
|
+
type GetAdminLegalDocumentsForApplicationResponses = {
|
|
20239
|
+
/**
|
|
20240
|
+
* Success
|
|
20241
|
+
*/
|
|
20242
|
+
200: {
|
|
20243
|
+
/**
|
|
20244
|
+
* An array of resource objects representing a legal_document
|
|
20245
|
+
*/
|
|
20246
|
+
data?: Array<LegalDocument>;
|
|
20247
|
+
included?: Array<unknown>;
|
|
20248
|
+
meta?: {
|
|
20249
|
+
[key: string]: unknown;
|
|
20250
|
+
};
|
|
20251
|
+
};
|
|
20252
|
+
};
|
|
20253
|
+
type GetAdminLegalDocumentsForApplicationResponse = GetAdminLegalDocumentsForApplicationResponses[keyof GetAdminLegalDocumentsForApplicationResponses];
|
|
19790
20254
|
type GetAdminCreditPackagesSlugBySlugData = {
|
|
19791
20255
|
body?: never;
|
|
19792
20256
|
headers: {
|
|
@@ -20872,7 +21336,7 @@ type PatchAdminInvitationsByIdAcceptByUserResponses = {
|
|
|
20872
21336
|
*/
|
|
20873
21337
|
200: {
|
|
20874
21338
|
data?: Invitation;
|
|
20875
|
-
included?: Array<
|
|
21339
|
+
included?: Array<unknown>;
|
|
20876
21340
|
meta?: {
|
|
20877
21341
|
[key: string]: unknown;
|
|
20878
21342
|
};
|
|
@@ -21901,9 +22365,299 @@ type PatchAdminUserProfilesByIdAcceptTosData = {
|
|
|
21901
22365
|
[key: string]: unknown;
|
|
21902
22366
|
};
|
|
21903
22367
|
};
|
|
21904
|
-
url: "/admin/user-profiles/{id}/accept-tos";
|
|
22368
|
+
url: "/admin/user-profiles/{id}/accept-tos";
|
|
22369
|
+
};
|
|
22370
|
+
type PatchAdminUserProfilesByIdAcceptTosErrors = {
|
|
22371
|
+
/**
|
|
22372
|
+
* Bad Request - Invalid input data or malformed request
|
|
22373
|
+
*/
|
|
22374
|
+
400: ErrorResponse;
|
|
22375
|
+
/**
|
|
22376
|
+
* Unauthorized - Missing or invalid authentication token
|
|
22377
|
+
*/
|
|
22378
|
+
401: ErrorResponse;
|
|
22379
|
+
/**
|
|
22380
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
22381
|
+
*/
|
|
22382
|
+
403: ErrorResponse;
|
|
22383
|
+
/**
|
|
22384
|
+
* Not Found - Resource does not exist
|
|
22385
|
+
*/
|
|
22386
|
+
404: ErrorResponse;
|
|
22387
|
+
/**
|
|
22388
|
+
* Too Many Requests - Rate limit exceeded
|
|
22389
|
+
*/
|
|
22390
|
+
429: ErrorResponse;
|
|
22391
|
+
/**
|
|
22392
|
+
* Internal Server Error - Unexpected server error
|
|
22393
|
+
*/
|
|
22394
|
+
500: ErrorResponse;
|
|
22395
|
+
/**
|
|
22396
|
+
* General Error
|
|
22397
|
+
*/
|
|
22398
|
+
default: Errors;
|
|
22399
|
+
};
|
|
22400
|
+
type PatchAdminUserProfilesByIdAcceptTosError = PatchAdminUserProfilesByIdAcceptTosErrors[keyof PatchAdminUserProfilesByIdAcceptTosErrors];
|
|
22401
|
+
type PatchAdminUserProfilesByIdAcceptTosResponses = {
|
|
22402
|
+
/**
|
|
22403
|
+
* Success
|
|
22404
|
+
*/
|
|
22405
|
+
200: {
|
|
22406
|
+
data?: UserProfile;
|
|
22407
|
+
included?: Array<unknown>;
|
|
22408
|
+
meta?: {
|
|
22409
|
+
[key: string]: unknown;
|
|
22410
|
+
};
|
|
22411
|
+
};
|
|
22412
|
+
};
|
|
22413
|
+
type PatchAdminUserProfilesByIdAcceptTosResponse = PatchAdminUserProfilesByIdAcceptTosResponses[keyof PatchAdminUserProfilesByIdAcceptTosResponses];
|
|
22414
|
+
type PatchAdminWalletPlanData = {
|
|
22415
|
+
/**
|
|
22416
|
+
* Request body for the /wallet/plan operation on wallet resource
|
|
22417
|
+
*/
|
|
22418
|
+
body?: {
|
|
22419
|
+
data: {
|
|
22420
|
+
attributes?: {
|
|
22421
|
+
plan_id?: string | unknown;
|
|
22422
|
+
plan_slug?: string | unknown;
|
|
22423
|
+
};
|
|
22424
|
+
id: string;
|
|
22425
|
+
relationships?: {
|
|
22426
|
+
[key: string]: never;
|
|
22427
|
+
};
|
|
22428
|
+
type?: "wallet";
|
|
22429
|
+
};
|
|
22430
|
+
};
|
|
22431
|
+
headers: {
|
|
22432
|
+
/**
|
|
22433
|
+
* Application ID for authentication and routing
|
|
22434
|
+
*/
|
|
22435
|
+
"x-application-key": string;
|
|
22436
|
+
};
|
|
22437
|
+
path?: never;
|
|
22438
|
+
query?: {
|
|
22439
|
+
/**
|
|
22440
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
22441
|
+
*/
|
|
22442
|
+
include?: string;
|
|
22443
|
+
/**
|
|
22444
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
22445
|
+
*/
|
|
22446
|
+
fields?: {
|
|
22447
|
+
[key: string]: unknown;
|
|
22448
|
+
};
|
|
22449
|
+
};
|
|
22450
|
+
url: "/admin/wallet/plan";
|
|
22451
|
+
};
|
|
22452
|
+
type PatchAdminWalletPlanErrors = {
|
|
22453
|
+
/**
|
|
22454
|
+
* Bad Request - Invalid input data or malformed request
|
|
22455
|
+
*/
|
|
22456
|
+
400: ErrorResponse;
|
|
22457
|
+
/**
|
|
22458
|
+
* Unauthorized - Missing or invalid authentication token
|
|
22459
|
+
*/
|
|
22460
|
+
401: ErrorResponse;
|
|
22461
|
+
/**
|
|
22462
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
22463
|
+
*/
|
|
22464
|
+
403: ErrorResponse;
|
|
22465
|
+
/**
|
|
22466
|
+
* Not Found - Resource does not exist
|
|
22467
|
+
*/
|
|
22468
|
+
404: ErrorResponse;
|
|
22469
|
+
/**
|
|
22470
|
+
* Too Many Requests - Rate limit exceeded
|
|
22471
|
+
*/
|
|
22472
|
+
429: ErrorResponse;
|
|
22473
|
+
/**
|
|
22474
|
+
* Internal Server Error - Unexpected server error
|
|
22475
|
+
*/
|
|
22476
|
+
500: ErrorResponse;
|
|
22477
|
+
/**
|
|
22478
|
+
* General Error
|
|
22479
|
+
*/
|
|
22480
|
+
default: Errors;
|
|
22481
|
+
};
|
|
22482
|
+
type PatchAdminWalletPlanError = PatchAdminWalletPlanErrors[keyof PatchAdminWalletPlanErrors];
|
|
22483
|
+
type PatchAdminWalletPlanResponses = {
|
|
22484
|
+
/**
|
|
22485
|
+
* Success
|
|
22486
|
+
*/
|
|
22487
|
+
200: {
|
|
22488
|
+
data?: Wallet;
|
|
22489
|
+
included?: Array<Plan>;
|
|
22490
|
+
meta?: {
|
|
22491
|
+
[key: string]: unknown;
|
|
22492
|
+
};
|
|
22493
|
+
};
|
|
22494
|
+
};
|
|
22495
|
+
type PatchAdminWalletPlanResponse = PatchAdminWalletPlanResponses[keyof PatchAdminWalletPlanResponses];
|
|
22496
|
+
type GetAdminWorkspacesByIdMembersData = {
|
|
22497
|
+
body?: never;
|
|
22498
|
+
headers: {
|
|
22499
|
+
/**
|
|
22500
|
+
* Application ID for authentication and routing
|
|
22501
|
+
*/
|
|
22502
|
+
"x-application-key": string;
|
|
22503
|
+
};
|
|
22504
|
+
path: {
|
|
22505
|
+
id: string;
|
|
22506
|
+
};
|
|
22507
|
+
query?: {
|
|
22508
|
+
/**
|
|
22509
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
22510
|
+
*/
|
|
22511
|
+
include?: string;
|
|
22512
|
+
/**
|
|
22513
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
22514
|
+
*/
|
|
22515
|
+
fields?: {
|
|
22516
|
+
[key: string]: unknown;
|
|
22517
|
+
};
|
|
22518
|
+
};
|
|
22519
|
+
url: "/admin/workspaces/{id}/members";
|
|
22520
|
+
};
|
|
22521
|
+
type GetAdminWorkspacesByIdMembersErrors = {
|
|
22522
|
+
/**
|
|
22523
|
+
* Bad Request - Invalid input data or malformed request
|
|
22524
|
+
*/
|
|
22525
|
+
400: ErrorResponse;
|
|
22526
|
+
/**
|
|
22527
|
+
* Unauthorized - Missing or invalid authentication token
|
|
22528
|
+
*/
|
|
22529
|
+
401: ErrorResponse;
|
|
22530
|
+
/**
|
|
22531
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
22532
|
+
*/
|
|
22533
|
+
403: ErrorResponse;
|
|
22534
|
+
/**
|
|
22535
|
+
* Not Found - Resource does not exist
|
|
22536
|
+
*/
|
|
22537
|
+
404: ErrorResponse;
|
|
22538
|
+
/**
|
|
22539
|
+
* Too Many Requests - Rate limit exceeded
|
|
22540
|
+
*/
|
|
22541
|
+
429: ErrorResponse;
|
|
22542
|
+
/**
|
|
22543
|
+
* Internal Server Error - Unexpected server error
|
|
22544
|
+
*/
|
|
22545
|
+
500: ErrorResponse;
|
|
22546
|
+
/**
|
|
22547
|
+
* General Error
|
|
22548
|
+
*/
|
|
22549
|
+
default: Errors;
|
|
22550
|
+
};
|
|
22551
|
+
type GetAdminWorkspacesByIdMembersError = GetAdminWorkspacesByIdMembersErrors[keyof GetAdminWorkspacesByIdMembersErrors];
|
|
22552
|
+
type GetAdminWorkspacesByIdMembersResponses = {
|
|
22553
|
+
/**
|
|
22554
|
+
* Success
|
|
22555
|
+
*/
|
|
22556
|
+
200: {
|
|
22557
|
+
data?: WorkspaceMembership;
|
|
22558
|
+
included?: Array<User | Workspace | UserProfile>;
|
|
22559
|
+
meta?: {
|
|
22560
|
+
[key: string]: unknown;
|
|
22561
|
+
};
|
|
22562
|
+
};
|
|
22563
|
+
};
|
|
22564
|
+
type GetAdminWorkspacesByIdMembersResponse = GetAdminWorkspacesByIdMembersResponses[keyof GetAdminWorkspacesByIdMembersResponses];
|
|
22565
|
+
type GetAdminUsersMeStatsData = {
|
|
22566
|
+
body?: never;
|
|
22567
|
+
headers: {
|
|
22568
|
+
/**
|
|
22569
|
+
* Application ID for authentication and routing
|
|
22570
|
+
*/
|
|
22571
|
+
"x-application-key": string;
|
|
22572
|
+
};
|
|
22573
|
+
path?: never;
|
|
22574
|
+
query?: {
|
|
22575
|
+
tenant_id?: string;
|
|
22576
|
+
};
|
|
22577
|
+
url: "/admin/users/me/stats";
|
|
22578
|
+
};
|
|
22579
|
+
type GetAdminUsersMeStatsErrors = {
|
|
22580
|
+
/**
|
|
22581
|
+
* Bad Request - Invalid input data or malformed request
|
|
22582
|
+
*/
|
|
22583
|
+
400: ErrorResponse;
|
|
22584
|
+
/**
|
|
22585
|
+
* Unauthorized - Missing or invalid authentication token
|
|
22586
|
+
*/
|
|
22587
|
+
401: ErrorResponse;
|
|
22588
|
+
/**
|
|
22589
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
22590
|
+
*/
|
|
22591
|
+
403: ErrorResponse;
|
|
22592
|
+
/**
|
|
22593
|
+
* Not Found - Resource does not exist
|
|
22594
|
+
*/
|
|
22595
|
+
404: ErrorResponse;
|
|
22596
|
+
/**
|
|
22597
|
+
* Too Many Requests - Rate limit exceeded
|
|
22598
|
+
*/
|
|
22599
|
+
429: ErrorResponse;
|
|
22600
|
+
/**
|
|
22601
|
+
* Internal Server Error - Unexpected server error
|
|
22602
|
+
*/
|
|
22603
|
+
500: ErrorResponse;
|
|
22604
|
+
/**
|
|
22605
|
+
* General Error
|
|
22606
|
+
*/
|
|
22607
|
+
default: Errors;
|
|
22608
|
+
};
|
|
22609
|
+
type GetAdminUsersMeStatsError = GetAdminUsersMeStatsErrors[keyof GetAdminUsersMeStatsErrors];
|
|
22610
|
+
type GetAdminUsersMeStatsResponses = {
|
|
22611
|
+
/**
|
|
22612
|
+
* Success
|
|
22613
|
+
*/
|
|
22614
|
+
200: {
|
|
22615
|
+
result: {
|
|
22616
|
+
[key: string]: unknown;
|
|
22617
|
+
};
|
|
22618
|
+
};
|
|
22619
|
+
};
|
|
22620
|
+
type GetAdminUsersMeStatsResponse = GetAdminUsersMeStatsResponses[keyof GetAdminUsersMeStatsResponses];
|
|
22621
|
+
type PatchAdminInvitationsByIdRevokeData = {
|
|
22622
|
+
/**
|
|
22623
|
+
* Request body for the /invitations/:id/revoke operation on invitation resource
|
|
22624
|
+
*/
|
|
22625
|
+
body?: {
|
|
22626
|
+
data: {
|
|
22627
|
+
attributes?: {
|
|
22628
|
+
[key: string]: never;
|
|
22629
|
+
};
|
|
22630
|
+
id: string;
|
|
22631
|
+
relationships?: {
|
|
22632
|
+
[key: string]: never;
|
|
22633
|
+
};
|
|
22634
|
+
type?: "invitation";
|
|
22635
|
+
};
|
|
22636
|
+
};
|
|
22637
|
+
headers: {
|
|
22638
|
+
/**
|
|
22639
|
+
* Application ID for authentication and routing
|
|
22640
|
+
*/
|
|
22641
|
+
"x-application-key": string;
|
|
22642
|
+
};
|
|
22643
|
+
path: {
|
|
22644
|
+
id: string;
|
|
22645
|
+
};
|
|
22646
|
+
query?: {
|
|
22647
|
+
/**
|
|
22648
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
22649
|
+
*/
|
|
22650
|
+
include?: string;
|
|
22651
|
+
/**
|
|
22652
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
22653
|
+
*/
|
|
22654
|
+
fields?: {
|
|
22655
|
+
[key: string]: unknown;
|
|
22656
|
+
};
|
|
22657
|
+
};
|
|
22658
|
+
url: "/admin/invitations/{id}/revoke";
|
|
21905
22659
|
};
|
|
21906
|
-
type
|
|
22660
|
+
type PatchAdminInvitationsByIdRevokeErrors = {
|
|
21907
22661
|
/**
|
|
21908
22662
|
* Bad Request - Invalid input data or malformed request
|
|
21909
22663
|
*/
|
|
@@ -21933,44 +22687,31 @@ type PatchAdminUserProfilesByIdAcceptTosErrors = {
|
|
|
21933
22687
|
*/
|
|
21934
22688
|
default: Errors;
|
|
21935
22689
|
};
|
|
21936
|
-
type
|
|
21937
|
-
type
|
|
22690
|
+
type PatchAdminInvitationsByIdRevokeError = PatchAdminInvitationsByIdRevokeErrors[keyof PatchAdminInvitationsByIdRevokeErrors];
|
|
22691
|
+
type PatchAdminInvitationsByIdRevokeResponses = {
|
|
21938
22692
|
/**
|
|
21939
22693
|
* Success
|
|
21940
22694
|
*/
|
|
21941
22695
|
200: {
|
|
21942
|
-
data?:
|
|
22696
|
+
data?: Invitation;
|
|
21943
22697
|
included?: Array<unknown>;
|
|
21944
22698
|
meta?: {
|
|
21945
22699
|
[key: string]: unknown;
|
|
21946
22700
|
};
|
|
21947
22701
|
};
|
|
21948
22702
|
};
|
|
21949
|
-
type
|
|
21950
|
-
type
|
|
21951
|
-
|
|
21952
|
-
* Request body for the /wallet/plan operation on wallet resource
|
|
21953
|
-
*/
|
|
21954
|
-
body?: {
|
|
21955
|
-
data: {
|
|
21956
|
-
attributes?: {
|
|
21957
|
-
plan_id?: string | unknown;
|
|
21958
|
-
plan_slug?: string | unknown;
|
|
21959
|
-
};
|
|
21960
|
-
id: string;
|
|
21961
|
-
relationships?: {
|
|
21962
|
-
[key: string]: never;
|
|
21963
|
-
};
|
|
21964
|
-
type?: "wallet";
|
|
21965
|
-
};
|
|
21966
|
-
};
|
|
22703
|
+
type PatchAdminInvitationsByIdRevokeResponse = PatchAdminInvitationsByIdRevokeResponses[keyof PatchAdminInvitationsByIdRevokeResponses];
|
|
22704
|
+
type DeleteAdminUsersByIdData = {
|
|
22705
|
+
body?: never;
|
|
21967
22706
|
headers: {
|
|
21968
22707
|
/**
|
|
21969
22708
|
* Application ID for authentication and routing
|
|
21970
22709
|
*/
|
|
21971
22710
|
"x-application-key": string;
|
|
21972
22711
|
};
|
|
21973
|
-
path
|
|
22712
|
+
path: {
|
|
22713
|
+
id: string;
|
|
22714
|
+
};
|
|
21974
22715
|
query?: {
|
|
21975
22716
|
/**
|
|
21976
22717
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -21983,9 +22724,9 @@ type PatchAdminWalletPlanData = {
|
|
|
21983
22724
|
[key: string]: unknown;
|
|
21984
22725
|
};
|
|
21985
22726
|
};
|
|
21986
|
-
url: "/admin/
|
|
22727
|
+
url: "/admin/users/{id}";
|
|
21987
22728
|
};
|
|
21988
|
-
type
|
|
22729
|
+
type DeleteAdminUsersByIdErrors = {
|
|
21989
22730
|
/**
|
|
21990
22731
|
* Bad Request - Invalid input data or malformed request
|
|
21991
22732
|
*/
|
|
@@ -22015,21 +22756,14 @@ type PatchAdminWalletPlanErrors = {
|
|
|
22015
22756
|
*/
|
|
22016
22757
|
default: Errors;
|
|
22017
22758
|
};
|
|
22018
|
-
type
|
|
22019
|
-
type
|
|
22759
|
+
type DeleteAdminUsersByIdError = DeleteAdminUsersByIdErrors[keyof DeleteAdminUsersByIdErrors];
|
|
22760
|
+
type DeleteAdminUsersByIdResponses = {
|
|
22020
22761
|
/**
|
|
22021
|
-
*
|
|
22762
|
+
* Deleted successfully
|
|
22022
22763
|
*/
|
|
22023
|
-
200:
|
|
22024
|
-
data?: Wallet;
|
|
22025
|
-
included?: Array<Plan>;
|
|
22026
|
-
meta?: {
|
|
22027
|
-
[key: string]: unknown;
|
|
22028
|
-
};
|
|
22029
|
-
};
|
|
22764
|
+
200: unknown;
|
|
22030
22765
|
};
|
|
22031
|
-
type
|
|
22032
|
-
type GetAdminWorkspacesByIdMembersData = {
|
|
22766
|
+
type GetAdminUsersByIdData = {
|
|
22033
22767
|
body?: never;
|
|
22034
22768
|
headers: {
|
|
22035
22769
|
/**
|
|
@@ -22052,9 +22786,9 @@ type GetAdminWorkspacesByIdMembersData = {
|
|
|
22052
22786
|
[key: string]: unknown;
|
|
22053
22787
|
};
|
|
22054
22788
|
};
|
|
22055
|
-
url: "/admin/
|
|
22789
|
+
url: "/admin/users/{id}";
|
|
22056
22790
|
};
|
|
22057
|
-
type
|
|
22791
|
+
type GetAdminUsersByIdErrors = {
|
|
22058
22792
|
/**
|
|
22059
22793
|
* Bad Request - Invalid input data or malformed request
|
|
22060
22794
|
*/
|
|
@@ -22084,22 +22818,29 @@ type GetAdminWorkspacesByIdMembersErrors = {
|
|
|
22084
22818
|
*/
|
|
22085
22819
|
default: Errors;
|
|
22086
22820
|
};
|
|
22087
|
-
type
|
|
22088
|
-
type
|
|
22821
|
+
type GetAdminUsersByIdError = GetAdminUsersByIdErrors[keyof GetAdminUsersByIdErrors];
|
|
22822
|
+
type GetAdminUsersByIdResponses = {
|
|
22089
22823
|
/**
|
|
22090
22824
|
* Success
|
|
22091
22825
|
*/
|
|
22092
22826
|
200: {
|
|
22093
|
-
data?:
|
|
22094
|
-
included?: Array<
|
|
22827
|
+
data?: User;
|
|
22828
|
+
included?: Array<unknown>;
|
|
22095
22829
|
meta?: {
|
|
22096
22830
|
[key: string]: unknown;
|
|
22097
22831
|
};
|
|
22098
22832
|
};
|
|
22099
22833
|
};
|
|
22100
|
-
type
|
|
22101
|
-
type
|
|
22102
|
-
|
|
22834
|
+
type GetAdminUsersByIdResponse = GetAdminUsersByIdResponses[keyof GetAdminUsersByIdResponses];
|
|
22835
|
+
type PostAdminWebhookConfigsBulkDisableData = {
|
|
22836
|
+
/**
|
|
22837
|
+
* Request body for the /webhook-configs/bulk-disable operation on webhook_config resource
|
|
22838
|
+
*/
|
|
22839
|
+
body: {
|
|
22840
|
+
data: {
|
|
22841
|
+
ids: Array<string>;
|
|
22842
|
+
};
|
|
22843
|
+
};
|
|
22103
22844
|
headers: {
|
|
22104
22845
|
/**
|
|
22105
22846
|
* Application ID for authentication and routing
|
|
@@ -22107,12 +22848,10 @@ type GetAdminUsersMeStatsData = {
|
|
|
22107
22848
|
"x-application-key": string;
|
|
22108
22849
|
};
|
|
22109
22850
|
path?: never;
|
|
22110
|
-
query?:
|
|
22111
|
-
|
|
22112
|
-
};
|
|
22113
|
-
url: "/admin/users/me/stats";
|
|
22851
|
+
query?: never;
|
|
22852
|
+
url: "/admin/webhook-configs/bulk-disable";
|
|
22114
22853
|
};
|
|
22115
|
-
type
|
|
22854
|
+
type PostAdminWebhookConfigsBulkDisableErrors = {
|
|
22116
22855
|
/**
|
|
22117
22856
|
* Bad Request - Invalid input data or malformed request
|
|
22118
22857
|
*/
|
|
@@ -22142,32 +22881,29 @@ type GetAdminUsersMeStatsErrors = {
|
|
|
22142
22881
|
*/
|
|
22143
22882
|
default: Errors;
|
|
22144
22883
|
};
|
|
22145
|
-
type
|
|
22146
|
-
type
|
|
22884
|
+
type PostAdminWebhookConfigsBulkDisableError = PostAdminWebhookConfigsBulkDisableErrors[keyof PostAdminWebhookConfigsBulkDisableErrors];
|
|
22885
|
+
type PostAdminWebhookConfigsBulkDisableResponses = {
|
|
22147
22886
|
/**
|
|
22148
22887
|
* Success
|
|
22149
22888
|
*/
|
|
22150
|
-
|
|
22151
|
-
|
|
22152
|
-
[key: string]: unknown;
|
|
22153
|
-
};
|
|
22889
|
+
201: {
|
|
22890
|
+
[key: string]: unknown;
|
|
22154
22891
|
};
|
|
22155
22892
|
};
|
|
22156
|
-
type
|
|
22157
|
-
type
|
|
22893
|
+
type PostAdminWebhookConfigsBulkDisableResponse = PostAdminWebhookConfigsBulkDisableResponses[keyof PostAdminWebhookConfigsBulkDisableResponses];
|
|
22894
|
+
type PostAdminTenantsByIdRemoveStorageData = {
|
|
22158
22895
|
/**
|
|
22159
|
-
* Request body for the /
|
|
22896
|
+
* Request body for the /tenants/:id/remove-storage operation on tenant resource
|
|
22160
22897
|
*/
|
|
22161
22898
|
body?: {
|
|
22162
22899
|
data: {
|
|
22163
22900
|
attributes?: {
|
|
22164
|
-
|
|
22901
|
+
quantity?: number | unknown;
|
|
22165
22902
|
};
|
|
22166
|
-
id: string;
|
|
22167
22903
|
relationships?: {
|
|
22168
22904
|
[key: string]: never;
|
|
22169
22905
|
};
|
|
22170
|
-
type?: "
|
|
22906
|
+
type?: "tenant";
|
|
22171
22907
|
};
|
|
22172
22908
|
};
|
|
22173
22909
|
headers: {
|
|
@@ -22191,9 +22927,9 @@ type PatchAdminInvitationsByIdRevokeData = {
|
|
|
22191
22927
|
[key: string]: unknown;
|
|
22192
22928
|
};
|
|
22193
22929
|
};
|
|
22194
|
-
url: "/admin/
|
|
22930
|
+
url: "/admin/tenants/{id}/remove-storage";
|
|
22195
22931
|
};
|
|
22196
|
-
type
|
|
22932
|
+
type PostAdminTenantsByIdRemoveStorageErrors = {
|
|
22197
22933
|
/**
|
|
22198
22934
|
* Bad Request - Invalid input data or malformed request
|
|
22199
22935
|
*/
|
|
@@ -22223,21 +22959,21 @@ type PatchAdminInvitationsByIdRevokeErrors = {
|
|
|
22223
22959
|
*/
|
|
22224
22960
|
default: Errors;
|
|
22225
22961
|
};
|
|
22226
|
-
type
|
|
22227
|
-
type
|
|
22962
|
+
type PostAdminTenantsByIdRemoveStorageError = PostAdminTenantsByIdRemoveStorageErrors[keyof PostAdminTenantsByIdRemoveStorageErrors];
|
|
22963
|
+
type PostAdminTenantsByIdRemoveStorageResponses = {
|
|
22228
22964
|
/**
|
|
22229
22965
|
* Success
|
|
22230
22966
|
*/
|
|
22231
|
-
|
|
22232
|
-
data?:
|
|
22233
|
-
included?: Array<
|
|
22967
|
+
201: {
|
|
22968
|
+
data?: Tenant;
|
|
22969
|
+
included?: Array<Workspace>;
|
|
22234
22970
|
meta?: {
|
|
22235
22971
|
[key: string]: unknown;
|
|
22236
22972
|
};
|
|
22237
22973
|
};
|
|
22238
22974
|
};
|
|
22239
|
-
type
|
|
22240
|
-
type
|
|
22975
|
+
type PostAdminTenantsByIdRemoveStorageResponse = PostAdminTenantsByIdRemoveStorageResponses[keyof PostAdminTenantsByIdRemoveStorageResponses];
|
|
22976
|
+
type GetAdminLegalDocumentsData = {
|
|
22241
22977
|
body?: never;
|
|
22242
22978
|
headers: {
|
|
22243
22979
|
/**
|
|
@@ -22245,10 +22981,24 @@ type DeleteAdminUsersByIdData = {
|
|
|
22245
22981
|
*/
|
|
22246
22982
|
"x-application-key": string;
|
|
22247
22983
|
};
|
|
22248
|
-
path
|
|
22249
|
-
id: string;
|
|
22250
|
-
};
|
|
22984
|
+
path?: never;
|
|
22251
22985
|
query?: {
|
|
22986
|
+
/**
|
|
22987
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
22988
|
+
*/
|
|
22989
|
+
filter?: {
|
|
22990
|
+
[key: string]: unknown;
|
|
22991
|
+
};
|
|
22992
|
+
/**
|
|
22993
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
22994
|
+
*/
|
|
22995
|
+
sort?: string;
|
|
22996
|
+
/**
|
|
22997
|
+
* JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
|
|
22998
|
+
*/
|
|
22999
|
+
page?: {
|
|
23000
|
+
[key: string]: unknown;
|
|
23001
|
+
};
|
|
22252
23002
|
/**
|
|
22253
23003
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
22254
23004
|
*/
|
|
@@ -22260,9 +23010,9 @@ type DeleteAdminUsersByIdData = {
|
|
|
22260
23010
|
[key: string]: unknown;
|
|
22261
23011
|
};
|
|
22262
23012
|
};
|
|
22263
|
-
url: "/admin/
|
|
23013
|
+
url: "/admin/legal-documents";
|
|
22264
23014
|
};
|
|
22265
|
-
type
|
|
23015
|
+
type GetAdminLegalDocumentsErrors = {
|
|
22266
23016
|
/**
|
|
22267
23017
|
* Bad Request - Invalid input data or malformed request
|
|
22268
23018
|
*/
|
|
@@ -22292,24 +23042,70 @@ type DeleteAdminUsersByIdErrors = {
|
|
|
22292
23042
|
*/
|
|
22293
23043
|
default: Errors;
|
|
22294
23044
|
};
|
|
22295
|
-
type
|
|
22296
|
-
type
|
|
23045
|
+
type GetAdminLegalDocumentsError = GetAdminLegalDocumentsErrors[keyof GetAdminLegalDocumentsErrors];
|
|
23046
|
+
type GetAdminLegalDocumentsResponses = {
|
|
22297
23047
|
/**
|
|
22298
|
-
*
|
|
23048
|
+
* Success
|
|
22299
23049
|
*/
|
|
22300
|
-
200:
|
|
23050
|
+
200: {
|
|
23051
|
+
/**
|
|
23052
|
+
* An array of resource objects representing a legal_document
|
|
23053
|
+
*/
|
|
23054
|
+
data?: Array<LegalDocument>;
|
|
23055
|
+
included?: Array<unknown>;
|
|
23056
|
+
meta?: {
|
|
23057
|
+
[key: string]: unknown;
|
|
23058
|
+
};
|
|
23059
|
+
};
|
|
22301
23060
|
};
|
|
22302
|
-
type
|
|
22303
|
-
|
|
23061
|
+
type GetAdminLegalDocumentsResponse = GetAdminLegalDocumentsResponses[keyof GetAdminLegalDocumentsResponses];
|
|
23062
|
+
type PostAdminLegalDocumentsData = {
|
|
23063
|
+
/**
|
|
23064
|
+
* Request body for the /legal-documents operation on legal_document resource
|
|
23065
|
+
*/
|
|
23066
|
+
body: {
|
|
23067
|
+
data: {
|
|
23068
|
+
attributes?: {
|
|
23069
|
+
/**
|
|
23070
|
+
* Document becomes active at this time. nil = immediately active when is_active is true.
|
|
23071
|
+
*/
|
|
23072
|
+
active_from?: unknown;
|
|
23073
|
+
/**
|
|
23074
|
+
* Document expires at this time. nil = no expiration.
|
|
23075
|
+
*/
|
|
23076
|
+
active_until?: unknown;
|
|
23077
|
+
application_id?: string | unknown;
|
|
23078
|
+
/**
|
|
23079
|
+
* Markdown content
|
|
23080
|
+
*/
|
|
23081
|
+
content: string;
|
|
23082
|
+
document_type: "terms_of_service" | "privacy_policy";
|
|
23083
|
+
is_active?: boolean | unknown;
|
|
23084
|
+
/**
|
|
23085
|
+
* ISO 639-1 language code
|
|
23086
|
+
*/
|
|
23087
|
+
locale?: string | unknown;
|
|
23088
|
+
/**
|
|
23089
|
+
* ISO 3166-1 region code (e.g., EU, BR, US) or nil for default
|
|
23090
|
+
*/
|
|
23091
|
+
region?: string | unknown;
|
|
23092
|
+
requires_acceptance?: boolean | unknown;
|
|
23093
|
+
title: string;
|
|
23094
|
+
version: string;
|
|
23095
|
+
};
|
|
23096
|
+
relationships?: {
|
|
23097
|
+
[key: string]: never;
|
|
23098
|
+
};
|
|
23099
|
+
type?: "legal_document";
|
|
23100
|
+
};
|
|
23101
|
+
};
|
|
22304
23102
|
headers: {
|
|
22305
23103
|
/**
|
|
22306
23104
|
* Application ID for authentication and routing
|
|
22307
23105
|
*/
|
|
22308
23106
|
"x-application-key": string;
|
|
22309
23107
|
};
|
|
22310
|
-
path
|
|
22311
|
-
id: string;
|
|
22312
|
-
};
|
|
23108
|
+
path?: never;
|
|
22313
23109
|
query?: {
|
|
22314
23110
|
/**
|
|
22315
23111
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -22322,9 +23118,9 @@ type GetAdminUsersByIdData = {
|
|
|
22322
23118
|
[key: string]: unknown;
|
|
22323
23119
|
};
|
|
22324
23120
|
};
|
|
22325
|
-
url: "/admin/
|
|
23121
|
+
url: "/admin/legal-documents";
|
|
22326
23122
|
};
|
|
22327
|
-
type
|
|
23123
|
+
type PostAdminLegalDocumentsErrors = {
|
|
22328
23124
|
/**
|
|
22329
23125
|
* Bad Request - Invalid input data or malformed request
|
|
22330
23126
|
*/
|
|
@@ -22354,40 +23150,49 @@ type GetAdminUsersByIdErrors = {
|
|
|
22354
23150
|
*/
|
|
22355
23151
|
default: Errors;
|
|
22356
23152
|
};
|
|
22357
|
-
type
|
|
22358
|
-
type
|
|
23153
|
+
type PostAdminLegalDocumentsError = PostAdminLegalDocumentsErrors[keyof PostAdminLegalDocumentsErrors];
|
|
23154
|
+
type PostAdminLegalDocumentsResponses = {
|
|
22359
23155
|
/**
|
|
22360
23156
|
* Success
|
|
22361
23157
|
*/
|
|
22362
|
-
|
|
22363
|
-
data?:
|
|
23158
|
+
201: {
|
|
23159
|
+
data?: LegalDocument;
|
|
22364
23160
|
included?: Array<unknown>;
|
|
22365
23161
|
meta?: {
|
|
22366
23162
|
[key: string]: unknown;
|
|
22367
23163
|
};
|
|
22368
23164
|
};
|
|
22369
23165
|
};
|
|
22370
|
-
type
|
|
22371
|
-
type
|
|
22372
|
-
|
|
22373
|
-
* Request body for the /webhook-configs/bulk-disable operation on webhook_config resource
|
|
22374
|
-
*/
|
|
22375
|
-
body: {
|
|
22376
|
-
data: {
|
|
22377
|
-
ids: Array<string>;
|
|
22378
|
-
};
|
|
22379
|
-
};
|
|
23166
|
+
type PostAdminLegalDocumentsResponse = PostAdminLegalDocumentsResponses[keyof PostAdminLegalDocumentsResponses];
|
|
23167
|
+
type GetAdminAgentsByIdUsageData = {
|
|
23168
|
+
body?: never;
|
|
22380
23169
|
headers: {
|
|
22381
23170
|
/**
|
|
22382
23171
|
* Application ID for authentication and routing
|
|
22383
23172
|
*/
|
|
22384
23173
|
"x-application-key": string;
|
|
22385
23174
|
};
|
|
22386
|
-
path
|
|
22387
|
-
|
|
22388
|
-
|
|
23175
|
+
path: {
|
|
23176
|
+
/**
|
|
23177
|
+
* Agent ID from URL path
|
|
23178
|
+
*/
|
|
23179
|
+
id: string;
|
|
23180
|
+
};
|
|
23181
|
+
query?: {
|
|
23182
|
+
/**
|
|
23183
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
23184
|
+
*/
|
|
23185
|
+
include?: string;
|
|
23186
|
+
/**
|
|
23187
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
23188
|
+
*/
|
|
23189
|
+
fields?: {
|
|
23190
|
+
[key: string]: unknown;
|
|
23191
|
+
};
|
|
23192
|
+
};
|
|
23193
|
+
url: "/admin/agents/{id}/usage";
|
|
22389
23194
|
};
|
|
22390
|
-
type
|
|
23195
|
+
type GetAdminAgentsByIdUsageErrors = {
|
|
22391
23196
|
/**
|
|
22392
23197
|
* Bad Request - Invalid input data or malformed request
|
|
22393
23198
|
*/
|
|
@@ -22417,29 +23222,34 @@ type PostAdminWebhookConfigsBulkDisableErrors = {
|
|
|
22417
23222
|
*/
|
|
22418
23223
|
default: Errors;
|
|
22419
23224
|
};
|
|
22420
|
-
type
|
|
22421
|
-
type
|
|
23225
|
+
type GetAdminAgentsByIdUsageError = GetAdminAgentsByIdUsageErrors[keyof GetAdminAgentsByIdUsageErrors];
|
|
23226
|
+
type GetAdminAgentsByIdUsageResponses = {
|
|
22422
23227
|
/**
|
|
22423
23228
|
* Success
|
|
22424
23229
|
*/
|
|
22425
|
-
|
|
22426
|
-
|
|
23230
|
+
200: {
|
|
23231
|
+
data?: AgentUsage;
|
|
23232
|
+
included?: Array<unknown>;
|
|
23233
|
+
meta?: {
|
|
23234
|
+
[key: string]: unknown;
|
|
23235
|
+
};
|
|
22427
23236
|
};
|
|
22428
23237
|
};
|
|
22429
|
-
type
|
|
22430
|
-
type
|
|
23238
|
+
type GetAdminAgentsByIdUsageResponse = GetAdminAgentsByIdUsageResponses[keyof GetAdminAgentsByIdUsageResponses];
|
|
23239
|
+
type PatchAdminLegalDocumentsByIdUnpublishData = {
|
|
22431
23240
|
/**
|
|
22432
|
-
* Request body for the /
|
|
23241
|
+
* Request body for the /legal-documents/:id/unpublish operation on legal_document resource
|
|
22433
23242
|
*/
|
|
22434
23243
|
body?: {
|
|
22435
23244
|
data: {
|
|
22436
23245
|
attributes?: {
|
|
22437
|
-
|
|
23246
|
+
[key: string]: never;
|
|
22438
23247
|
};
|
|
23248
|
+
id: string;
|
|
22439
23249
|
relationships?: {
|
|
22440
23250
|
[key: string]: never;
|
|
22441
23251
|
};
|
|
22442
|
-
type?: "
|
|
23252
|
+
type?: "legal_document";
|
|
22443
23253
|
};
|
|
22444
23254
|
};
|
|
22445
23255
|
headers: {
|
|
@@ -22463,9 +23273,9 @@ type PostAdminTenantsByIdRemoveStorageData = {
|
|
|
22463
23273
|
[key: string]: unknown;
|
|
22464
23274
|
};
|
|
22465
23275
|
};
|
|
22466
|
-
url: "/admin/
|
|
23276
|
+
url: "/admin/legal-documents/{id}/unpublish";
|
|
22467
23277
|
};
|
|
22468
|
-
type
|
|
23278
|
+
type PatchAdminLegalDocumentsByIdUnpublishErrors = {
|
|
22469
23279
|
/**
|
|
22470
23280
|
* Bad Request - Invalid input data or malformed request
|
|
22471
23281
|
*/
|
|
@@ -22495,21 +23305,21 @@ type PostAdminTenantsByIdRemoveStorageErrors = {
|
|
|
22495
23305
|
*/
|
|
22496
23306
|
default: Errors;
|
|
22497
23307
|
};
|
|
22498
|
-
type
|
|
22499
|
-
type
|
|
23308
|
+
type PatchAdminLegalDocumentsByIdUnpublishError = PatchAdminLegalDocumentsByIdUnpublishErrors[keyof PatchAdminLegalDocumentsByIdUnpublishErrors];
|
|
23309
|
+
type PatchAdminLegalDocumentsByIdUnpublishResponses = {
|
|
22500
23310
|
/**
|
|
22501
23311
|
* Success
|
|
22502
23312
|
*/
|
|
22503
|
-
|
|
22504
|
-
data?:
|
|
22505
|
-
included?: Array<
|
|
23313
|
+
200: {
|
|
23314
|
+
data?: LegalDocument;
|
|
23315
|
+
included?: Array<unknown>;
|
|
22506
23316
|
meta?: {
|
|
22507
23317
|
[key: string]: unknown;
|
|
22508
23318
|
};
|
|
22509
23319
|
};
|
|
22510
23320
|
};
|
|
22511
|
-
type
|
|
22512
|
-
type
|
|
23321
|
+
type PatchAdminLegalDocumentsByIdUnpublishResponse = PatchAdminLegalDocumentsByIdUnpublishResponses[keyof PatchAdminLegalDocumentsByIdUnpublishResponses];
|
|
23322
|
+
type GetAdminLegalAcceptancesByIdData = {
|
|
22513
23323
|
body?: never;
|
|
22514
23324
|
headers: {
|
|
22515
23325
|
/**
|
|
@@ -22518,9 +23328,6 @@ type GetAdminAgentsByIdUsageData = {
|
|
|
22518
23328
|
"x-application-key": string;
|
|
22519
23329
|
};
|
|
22520
23330
|
path: {
|
|
22521
|
-
/**
|
|
22522
|
-
* Agent ID from URL path
|
|
22523
|
-
*/
|
|
22524
23331
|
id: string;
|
|
22525
23332
|
};
|
|
22526
23333
|
query?: {
|
|
@@ -22535,9 +23342,9 @@ type GetAdminAgentsByIdUsageData = {
|
|
|
22535
23342
|
[key: string]: unknown;
|
|
22536
23343
|
};
|
|
22537
23344
|
};
|
|
22538
|
-
url: "/admin/
|
|
23345
|
+
url: "/admin/legal-acceptances/{id}";
|
|
22539
23346
|
};
|
|
22540
|
-
type
|
|
23347
|
+
type GetAdminLegalAcceptancesByIdErrors = {
|
|
22541
23348
|
/**
|
|
22542
23349
|
* Bad Request - Invalid input data or malformed request
|
|
22543
23350
|
*/
|
|
@@ -22567,20 +23374,20 @@ type GetAdminAgentsByIdUsageErrors = {
|
|
|
22567
23374
|
*/
|
|
22568
23375
|
default: Errors;
|
|
22569
23376
|
};
|
|
22570
|
-
type
|
|
22571
|
-
type
|
|
23377
|
+
type GetAdminLegalAcceptancesByIdError = GetAdminLegalAcceptancesByIdErrors[keyof GetAdminLegalAcceptancesByIdErrors];
|
|
23378
|
+
type GetAdminLegalAcceptancesByIdResponses = {
|
|
22572
23379
|
/**
|
|
22573
23380
|
* Success
|
|
22574
23381
|
*/
|
|
22575
23382
|
200: {
|
|
22576
|
-
data?:
|
|
23383
|
+
data?: LegalAcceptance;
|
|
22577
23384
|
included?: Array<unknown>;
|
|
22578
23385
|
meta?: {
|
|
22579
23386
|
[key: string]: unknown;
|
|
22580
23387
|
};
|
|
22581
23388
|
};
|
|
22582
23389
|
};
|
|
22583
|
-
type
|
|
23390
|
+
type GetAdminLegalAcceptancesByIdResponse = GetAdminLegalAcceptancesByIdResponses[keyof GetAdminLegalAcceptancesByIdResponses];
|
|
22584
23391
|
type GetAdminPricingRulesByIdData = {
|
|
22585
23392
|
body?: never;
|
|
22586
23393
|
headers: {
|
|
@@ -23205,6 +24012,89 @@ type PatchAdminWorkspacesByIdStorageSettingsResponses = {
|
|
|
23205
24012
|
};
|
|
23206
24013
|
};
|
|
23207
24014
|
type PatchAdminWorkspacesByIdStorageSettingsResponse = PatchAdminWorkspacesByIdStorageSettingsResponses[keyof PatchAdminWorkspacesByIdStorageSettingsResponses];
|
|
24015
|
+
type PatchAdminLegalDocumentsByIdPublishData = {
|
|
24016
|
+
/**
|
|
24017
|
+
* Request body for the /legal-documents/:id/publish operation on legal_document resource
|
|
24018
|
+
*/
|
|
24019
|
+
body?: {
|
|
24020
|
+
data: {
|
|
24021
|
+
attributes?: {
|
|
24022
|
+
[key: string]: never;
|
|
24023
|
+
};
|
|
24024
|
+
id: string;
|
|
24025
|
+
relationships?: {
|
|
24026
|
+
[key: string]: never;
|
|
24027
|
+
};
|
|
24028
|
+
type?: "legal_document";
|
|
24029
|
+
};
|
|
24030
|
+
};
|
|
24031
|
+
headers: {
|
|
24032
|
+
/**
|
|
24033
|
+
* Application ID for authentication and routing
|
|
24034
|
+
*/
|
|
24035
|
+
"x-application-key": string;
|
|
24036
|
+
};
|
|
24037
|
+
path: {
|
|
24038
|
+
id: string;
|
|
24039
|
+
};
|
|
24040
|
+
query?: {
|
|
24041
|
+
/**
|
|
24042
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
24043
|
+
*/
|
|
24044
|
+
include?: string;
|
|
24045
|
+
/**
|
|
24046
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
24047
|
+
*/
|
|
24048
|
+
fields?: {
|
|
24049
|
+
[key: string]: unknown;
|
|
24050
|
+
};
|
|
24051
|
+
};
|
|
24052
|
+
url: "/admin/legal-documents/{id}/publish";
|
|
24053
|
+
};
|
|
24054
|
+
type PatchAdminLegalDocumentsByIdPublishErrors = {
|
|
24055
|
+
/**
|
|
24056
|
+
* Bad Request - Invalid input data or malformed request
|
|
24057
|
+
*/
|
|
24058
|
+
400: ErrorResponse;
|
|
24059
|
+
/**
|
|
24060
|
+
* Unauthorized - Missing or invalid authentication token
|
|
24061
|
+
*/
|
|
24062
|
+
401: ErrorResponse;
|
|
24063
|
+
/**
|
|
24064
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
24065
|
+
*/
|
|
24066
|
+
403: ErrorResponse;
|
|
24067
|
+
/**
|
|
24068
|
+
* Not Found - Resource does not exist
|
|
24069
|
+
*/
|
|
24070
|
+
404: ErrorResponse;
|
|
24071
|
+
/**
|
|
24072
|
+
* Too Many Requests - Rate limit exceeded
|
|
24073
|
+
*/
|
|
24074
|
+
429: ErrorResponse;
|
|
24075
|
+
/**
|
|
24076
|
+
* Internal Server Error - Unexpected server error
|
|
24077
|
+
*/
|
|
24078
|
+
500: ErrorResponse;
|
|
24079
|
+
/**
|
|
24080
|
+
* General Error
|
|
24081
|
+
*/
|
|
24082
|
+
default: Errors;
|
|
24083
|
+
};
|
|
24084
|
+
type PatchAdminLegalDocumentsByIdPublishError = PatchAdminLegalDocumentsByIdPublishErrors[keyof PatchAdminLegalDocumentsByIdPublishErrors];
|
|
24085
|
+
type PatchAdminLegalDocumentsByIdPublishResponses = {
|
|
24086
|
+
/**
|
|
24087
|
+
* Success
|
|
24088
|
+
*/
|
|
24089
|
+
200: {
|
|
24090
|
+
data?: LegalDocument;
|
|
24091
|
+
included?: Array<unknown>;
|
|
24092
|
+
meta?: {
|
|
24093
|
+
[key: string]: unknown;
|
|
24094
|
+
};
|
|
24095
|
+
};
|
|
24096
|
+
};
|
|
24097
|
+
type PatchAdminLegalDocumentsByIdPublishResponse = PatchAdminLegalDocumentsByIdPublishResponses[keyof PatchAdminLegalDocumentsByIdPublishResponses];
|
|
23208
24098
|
type PostAdminSearchBatchData = {
|
|
23209
24099
|
/**
|
|
23210
24100
|
* Request body for the /search/batch operation on search resource
|
|
@@ -23526,7 +24416,7 @@ type GetAdminInvitationsMeResponses = {
|
|
|
23526
24416
|
* An array of resource objects representing a invitation
|
|
23527
24417
|
*/
|
|
23528
24418
|
data?: Array<Invitation>;
|
|
23529
|
-
included?: Array<
|
|
24419
|
+
included?: Array<unknown>;
|
|
23530
24420
|
meta?: {
|
|
23531
24421
|
[key: string]: unknown;
|
|
23532
24422
|
};
|
|
@@ -23844,7 +24734,7 @@ type GetAdminInvitationsConsumeByTokenResponses = {
|
|
|
23844
24734
|
*/
|
|
23845
24735
|
200: {
|
|
23846
24736
|
data?: Invitation;
|
|
23847
|
-
included?: Array<
|
|
24737
|
+
included?: Array<unknown>;
|
|
23848
24738
|
meta?: {
|
|
23849
24739
|
[key: string]: unknown;
|
|
23850
24740
|
};
|
|
@@ -27823,7 +28713,7 @@ type PatchAdminInvitationsByIdResendResponses = {
|
|
|
27823
28713
|
*/
|
|
27824
28714
|
200: {
|
|
27825
28715
|
data?: Invitation;
|
|
27826
|
-
included?: Array<
|
|
28716
|
+
included?: Array<unknown>;
|
|
27827
28717
|
meta?: {
|
|
27828
28718
|
[key: string]: unknown;
|
|
27829
28719
|
};
|
|
@@ -30230,36 +31120,185 @@ type GetAdminAgentsByIdTrainingStatsErrors = {
|
|
|
30230
31120
|
*/
|
|
30231
31121
|
default: Errors;
|
|
30232
31122
|
};
|
|
30233
|
-
type GetAdminAgentsByIdTrainingStatsError = GetAdminAgentsByIdTrainingStatsErrors[keyof GetAdminAgentsByIdTrainingStatsErrors];
|
|
30234
|
-
type GetAdminAgentsByIdTrainingStatsResponses = {
|
|
31123
|
+
type GetAdminAgentsByIdTrainingStatsError = GetAdminAgentsByIdTrainingStatsErrors[keyof GetAdminAgentsByIdTrainingStatsErrors];
|
|
31124
|
+
type GetAdminAgentsByIdTrainingStatsResponses = {
|
|
31125
|
+
/**
|
|
31126
|
+
* Success
|
|
31127
|
+
*/
|
|
31128
|
+
200: {
|
|
31129
|
+
data?: AgentTrainingStats;
|
|
31130
|
+
included?: Array<unknown>;
|
|
31131
|
+
meta?: {
|
|
31132
|
+
[key: string]: unknown;
|
|
31133
|
+
};
|
|
31134
|
+
};
|
|
31135
|
+
};
|
|
31136
|
+
type GetAdminAgentsByIdTrainingStatsResponse = GetAdminAgentsByIdTrainingStatsResponses[keyof GetAdminAgentsByIdTrainingStatsResponses];
|
|
31137
|
+
type PostAdminStorageSignDownloadData = {
|
|
31138
|
+
/**
|
|
31139
|
+
* Request body for the /storage/sign-download operation on presigned_url resource
|
|
31140
|
+
*/
|
|
31141
|
+
body: {
|
|
31142
|
+
data: {
|
|
31143
|
+
attributes?: {
|
|
31144
|
+
bucket_id: string;
|
|
31145
|
+
filename: string;
|
|
31146
|
+
};
|
|
31147
|
+
relationships?: {
|
|
31148
|
+
[key: string]: never;
|
|
31149
|
+
};
|
|
31150
|
+
type?: "presigned_url";
|
|
31151
|
+
};
|
|
31152
|
+
};
|
|
31153
|
+
headers: {
|
|
31154
|
+
/**
|
|
31155
|
+
* Application ID for authentication and routing
|
|
31156
|
+
*/
|
|
31157
|
+
"x-application-key": string;
|
|
31158
|
+
};
|
|
31159
|
+
path?: never;
|
|
31160
|
+
query?: {
|
|
31161
|
+
/**
|
|
31162
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
31163
|
+
*/
|
|
31164
|
+
include?: string;
|
|
31165
|
+
/**
|
|
31166
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
31167
|
+
*/
|
|
31168
|
+
fields?: {
|
|
31169
|
+
[key: string]: unknown;
|
|
31170
|
+
};
|
|
31171
|
+
};
|
|
31172
|
+
url: "/admin/storage/sign-download";
|
|
31173
|
+
};
|
|
31174
|
+
type PostAdminStorageSignDownloadErrors = {
|
|
31175
|
+
/**
|
|
31176
|
+
* Bad Request - Invalid input data or malformed request
|
|
31177
|
+
*/
|
|
31178
|
+
400: ErrorResponse;
|
|
31179
|
+
/**
|
|
31180
|
+
* Unauthorized - Missing or invalid authentication token
|
|
31181
|
+
*/
|
|
31182
|
+
401: ErrorResponse;
|
|
31183
|
+
/**
|
|
31184
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
31185
|
+
*/
|
|
31186
|
+
403: ErrorResponse;
|
|
31187
|
+
/**
|
|
31188
|
+
* Not Found - Resource does not exist
|
|
31189
|
+
*/
|
|
31190
|
+
404: ErrorResponse;
|
|
31191
|
+
/**
|
|
31192
|
+
* Too Many Requests - Rate limit exceeded
|
|
31193
|
+
*/
|
|
31194
|
+
429: ErrorResponse;
|
|
31195
|
+
/**
|
|
31196
|
+
* Internal Server Error - Unexpected server error
|
|
31197
|
+
*/
|
|
31198
|
+
500: ErrorResponse;
|
|
31199
|
+
/**
|
|
31200
|
+
* General Error
|
|
31201
|
+
*/
|
|
31202
|
+
default: Errors;
|
|
31203
|
+
};
|
|
31204
|
+
type PostAdminStorageSignDownloadError = PostAdminStorageSignDownloadErrors[keyof PostAdminStorageSignDownloadErrors];
|
|
31205
|
+
type PostAdminStorageSignDownloadResponses = {
|
|
31206
|
+
/**
|
|
31207
|
+
* Success
|
|
31208
|
+
*/
|
|
31209
|
+
201: {
|
|
31210
|
+
data?: PresignedUrl;
|
|
31211
|
+
included?: Array<unknown>;
|
|
31212
|
+
meta?: {
|
|
31213
|
+
[key: string]: unknown;
|
|
31214
|
+
};
|
|
31215
|
+
};
|
|
31216
|
+
};
|
|
31217
|
+
type PostAdminStorageSignDownloadResponse = PostAdminStorageSignDownloadResponses[keyof PostAdminStorageSignDownloadResponses];
|
|
31218
|
+
type GetAdminTenantsByTenantIdWorkspaceStatsData = {
|
|
31219
|
+
body?: never;
|
|
31220
|
+
headers: {
|
|
31221
|
+
/**
|
|
31222
|
+
* Application ID for authentication and routing
|
|
31223
|
+
*/
|
|
31224
|
+
"x-application-key": string;
|
|
31225
|
+
};
|
|
31226
|
+
path: {
|
|
31227
|
+
tenant_id: string;
|
|
31228
|
+
};
|
|
31229
|
+
query?: {
|
|
31230
|
+
/**
|
|
31231
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
31232
|
+
*/
|
|
31233
|
+
filter?: {
|
|
31234
|
+
[key: string]: unknown;
|
|
31235
|
+
};
|
|
31236
|
+
/**
|
|
31237
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
31238
|
+
*/
|
|
31239
|
+
sort?: string;
|
|
31240
|
+
/**
|
|
31241
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
31242
|
+
*/
|
|
31243
|
+
include?: string;
|
|
31244
|
+
/**
|
|
31245
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
31246
|
+
*/
|
|
31247
|
+
fields?: {
|
|
31248
|
+
[key: string]: unknown;
|
|
31249
|
+
};
|
|
31250
|
+
};
|
|
31251
|
+
url: "/admin/tenants/{tenant_id}/workspace_stats";
|
|
31252
|
+
};
|
|
31253
|
+
type GetAdminTenantsByTenantIdWorkspaceStatsErrors = {
|
|
31254
|
+
/**
|
|
31255
|
+
* Bad Request - Invalid input data or malformed request
|
|
31256
|
+
*/
|
|
31257
|
+
400: ErrorResponse;
|
|
31258
|
+
/**
|
|
31259
|
+
* Unauthorized - Missing or invalid authentication token
|
|
31260
|
+
*/
|
|
31261
|
+
401: ErrorResponse;
|
|
31262
|
+
/**
|
|
31263
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
31264
|
+
*/
|
|
31265
|
+
403: ErrorResponse;
|
|
31266
|
+
/**
|
|
31267
|
+
* Not Found - Resource does not exist
|
|
31268
|
+
*/
|
|
31269
|
+
404: ErrorResponse;
|
|
31270
|
+
/**
|
|
31271
|
+
* Too Many Requests - Rate limit exceeded
|
|
31272
|
+
*/
|
|
31273
|
+
429: ErrorResponse;
|
|
31274
|
+
/**
|
|
31275
|
+
* Internal Server Error - Unexpected server error
|
|
31276
|
+
*/
|
|
31277
|
+
500: ErrorResponse;
|
|
31278
|
+
/**
|
|
31279
|
+
* General Error
|
|
31280
|
+
*/
|
|
31281
|
+
default: Errors;
|
|
31282
|
+
};
|
|
31283
|
+
type GetAdminTenantsByTenantIdWorkspaceStatsError = GetAdminTenantsByTenantIdWorkspaceStatsErrors[keyof GetAdminTenantsByTenantIdWorkspaceStatsErrors];
|
|
31284
|
+
type GetAdminTenantsByTenantIdWorkspaceStatsResponses = {
|
|
30235
31285
|
/**
|
|
30236
31286
|
* Success
|
|
30237
31287
|
*/
|
|
30238
31288
|
200: {
|
|
30239
|
-
|
|
31289
|
+
/**
|
|
31290
|
+
* An array of resource objects representing a workspace_document_stats
|
|
31291
|
+
*/
|
|
31292
|
+
data?: Array<WorkspaceDocumentStats>;
|
|
30240
31293
|
included?: Array<unknown>;
|
|
30241
31294
|
meta?: {
|
|
30242
31295
|
[key: string]: unknown;
|
|
30243
31296
|
};
|
|
30244
31297
|
};
|
|
30245
31298
|
};
|
|
30246
|
-
type
|
|
30247
|
-
type
|
|
30248
|
-
|
|
30249
|
-
* Request body for the /storage/sign-download operation on presigned_url resource
|
|
30250
|
-
*/
|
|
30251
|
-
body: {
|
|
30252
|
-
data: {
|
|
30253
|
-
attributes?: {
|
|
30254
|
-
bucket_id: string;
|
|
30255
|
-
filename: string;
|
|
30256
|
-
};
|
|
30257
|
-
relationships?: {
|
|
30258
|
-
[key: string]: never;
|
|
30259
|
-
};
|
|
30260
|
-
type?: "presigned_url";
|
|
30261
|
-
};
|
|
30262
|
-
};
|
|
31299
|
+
type GetAdminTenantsByTenantIdWorkspaceStatsResponse = GetAdminTenantsByTenantIdWorkspaceStatsResponses[keyof GetAdminTenantsByTenantIdWorkspaceStatsResponses];
|
|
31300
|
+
type GetAdminWebhookDeliveriesStatsData = {
|
|
31301
|
+
body?: never;
|
|
30263
31302
|
headers: {
|
|
30264
31303
|
/**
|
|
30265
31304
|
* Application ID for authentication and routing
|
|
@@ -30267,21 +31306,10 @@ type PostAdminStorageSignDownloadData = {
|
|
|
30267
31306
|
"x-application-key": string;
|
|
30268
31307
|
};
|
|
30269
31308
|
path?: never;
|
|
30270
|
-
query?:
|
|
30271
|
-
|
|
30272
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
30273
|
-
*/
|
|
30274
|
-
include?: string;
|
|
30275
|
-
/**
|
|
30276
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
30277
|
-
*/
|
|
30278
|
-
fields?: {
|
|
30279
|
-
[key: string]: unknown;
|
|
30280
|
-
};
|
|
30281
|
-
};
|
|
30282
|
-
url: "/admin/storage/sign-download";
|
|
31309
|
+
query?: never;
|
|
31310
|
+
url: "/admin/webhook-deliveries/stats";
|
|
30283
31311
|
};
|
|
30284
|
-
type
|
|
31312
|
+
type GetAdminWebhookDeliveriesStatsErrors = {
|
|
30285
31313
|
/**
|
|
30286
31314
|
* Bad Request - Invalid input data or malformed request
|
|
30287
31315
|
*/
|
|
@@ -30311,22 +31339,33 @@ type PostAdminStorageSignDownloadErrors = {
|
|
|
30311
31339
|
*/
|
|
30312
31340
|
default: Errors;
|
|
30313
31341
|
};
|
|
30314
|
-
type
|
|
30315
|
-
type
|
|
31342
|
+
type GetAdminWebhookDeliveriesStatsError = GetAdminWebhookDeliveriesStatsErrors[keyof GetAdminWebhookDeliveriesStatsErrors];
|
|
31343
|
+
type GetAdminWebhookDeliveriesStatsResponses = {
|
|
30316
31344
|
/**
|
|
30317
31345
|
* Success
|
|
30318
31346
|
*/
|
|
30319
|
-
|
|
30320
|
-
|
|
30321
|
-
included?: Array<unknown>;
|
|
30322
|
-
meta?: {
|
|
31347
|
+
200: {
|
|
31348
|
+
result: {
|
|
30323
31349
|
[key: string]: unknown;
|
|
30324
31350
|
};
|
|
30325
31351
|
};
|
|
30326
31352
|
};
|
|
30327
|
-
type
|
|
30328
|
-
type
|
|
30329
|
-
|
|
31353
|
+
type GetAdminWebhookDeliveriesStatsResponse = GetAdminWebhookDeliveriesStatsResponses[keyof GetAdminWebhookDeliveriesStatsResponses];
|
|
31354
|
+
type PostAdminAgentsByIdTestData = {
|
|
31355
|
+
/**
|
|
31356
|
+
* Request body for the /agents/:id/test operation on agent resource
|
|
31357
|
+
*/
|
|
31358
|
+
body: {
|
|
31359
|
+
data: {
|
|
31360
|
+
attributes?: {
|
|
31361
|
+
sample_input: string;
|
|
31362
|
+
};
|
|
31363
|
+
relationships?: {
|
|
31364
|
+
[key: string]: never;
|
|
31365
|
+
};
|
|
31366
|
+
type?: "agent";
|
|
31367
|
+
};
|
|
31368
|
+
};
|
|
30330
31369
|
headers: {
|
|
30331
31370
|
/**
|
|
30332
31371
|
* Application ID for authentication and routing
|
|
@@ -30334,19 +31373,12 @@ type GetAdminTenantsByTenantIdWorkspaceStatsData = {
|
|
|
30334
31373
|
"x-application-key": string;
|
|
30335
31374
|
};
|
|
30336
31375
|
path: {
|
|
30337
|
-
tenant_id: string;
|
|
30338
|
-
};
|
|
30339
|
-
query?: {
|
|
30340
|
-
/**
|
|
30341
|
-
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
30342
|
-
*/
|
|
30343
|
-
filter?: {
|
|
30344
|
-
[key: string]: unknown;
|
|
30345
|
-
};
|
|
30346
31376
|
/**
|
|
30347
|
-
*
|
|
31377
|
+
* Agent ID (from URL path parameter)
|
|
30348
31378
|
*/
|
|
30349
|
-
|
|
31379
|
+
id: string;
|
|
31380
|
+
};
|
|
31381
|
+
query?: {
|
|
30350
31382
|
/**
|
|
30351
31383
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
30352
31384
|
*/
|
|
@@ -30358,9 +31390,9 @@ type GetAdminTenantsByTenantIdWorkspaceStatsData = {
|
|
|
30358
31390
|
[key: string]: unknown;
|
|
30359
31391
|
};
|
|
30360
31392
|
};
|
|
30361
|
-
url: "/admin/
|
|
31393
|
+
url: "/admin/agents/{id}/test";
|
|
30362
31394
|
};
|
|
30363
|
-
type
|
|
31395
|
+
type PostAdminAgentsByIdTestErrors = {
|
|
30364
31396
|
/**
|
|
30365
31397
|
* Bad Request - Invalid input data or malformed request
|
|
30366
31398
|
*/
|
|
@@ -30390,90 +31422,34 @@ type GetAdminTenantsByTenantIdWorkspaceStatsErrors = {
|
|
|
30390
31422
|
*/
|
|
30391
31423
|
default: Errors;
|
|
30392
31424
|
};
|
|
30393
|
-
type
|
|
30394
|
-
type
|
|
31425
|
+
type PostAdminAgentsByIdTestError = PostAdminAgentsByIdTestErrors[keyof PostAdminAgentsByIdTestErrors];
|
|
31426
|
+
type PostAdminAgentsByIdTestResponses = {
|
|
30395
31427
|
/**
|
|
30396
31428
|
* Success
|
|
30397
31429
|
*/
|
|
30398
|
-
|
|
30399
|
-
|
|
30400
|
-
|
|
30401
|
-
*/
|
|
30402
|
-
data?: Array<WorkspaceDocumentStats>;
|
|
30403
|
-
included?: Array<unknown>;
|
|
31430
|
+
201: {
|
|
31431
|
+
data?: Agent;
|
|
31432
|
+
included?: Array<AgentVersion>;
|
|
30404
31433
|
meta?: {
|
|
30405
31434
|
[key: string]: unknown;
|
|
30406
31435
|
};
|
|
30407
31436
|
};
|
|
30408
31437
|
};
|
|
30409
|
-
type
|
|
30410
|
-
type
|
|
30411
|
-
body?: never;
|
|
30412
|
-
headers: {
|
|
30413
|
-
/**
|
|
30414
|
-
* Application ID for authentication and routing
|
|
30415
|
-
*/
|
|
30416
|
-
"x-application-key": string;
|
|
30417
|
-
};
|
|
30418
|
-
path?: never;
|
|
30419
|
-
query?: never;
|
|
30420
|
-
url: "/admin/webhook-deliveries/stats";
|
|
30421
|
-
};
|
|
30422
|
-
type GetAdminWebhookDeliveriesStatsErrors = {
|
|
30423
|
-
/**
|
|
30424
|
-
* Bad Request - Invalid input data or malformed request
|
|
30425
|
-
*/
|
|
30426
|
-
400: ErrorResponse;
|
|
30427
|
-
/**
|
|
30428
|
-
* Unauthorized - Missing or invalid authentication token
|
|
30429
|
-
*/
|
|
30430
|
-
401: ErrorResponse;
|
|
30431
|
-
/**
|
|
30432
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
30433
|
-
*/
|
|
30434
|
-
403: ErrorResponse;
|
|
30435
|
-
/**
|
|
30436
|
-
* Not Found - Resource does not exist
|
|
30437
|
-
*/
|
|
30438
|
-
404: ErrorResponse;
|
|
30439
|
-
/**
|
|
30440
|
-
* Too Many Requests - Rate limit exceeded
|
|
30441
|
-
*/
|
|
30442
|
-
429: ErrorResponse;
|
|
30443
|
-
/**
|
|
30444
|
-
* Internal Server Error - Unexpected server error
|
|
30445
|
-
*/
|
|
30446
|
-
500: ErrorResponse;
|
|
30447
|
-
/**
|
|
30448
|
-
* General Error
|
|
30449
|
-
*/
|
|
30450
|
-
default: Errors;
|
|
30451
|
-
};
|
|
30452
|
-
type GetAdminWebhookDeliveriesStatsError = GetAdminWebhookDeliveriesStatsErrors[keyof GetAdminWebhookDeliveriesStatsErrors];
|
|
30453
|
-
type GetAdminWebhookDeliveriesStatsResponses = {
|
|
30454
|
-
/**
|
|
30455
|
-
* Success
|
|
30456
|
-
*/
|
|
30457
|
-
200: {
|
|
30458
|
-
result: {
|
|
30459
|
-
[key: string]: unknown;
|
|
30460
|
-
};
|
|
30461
|
-
};
|
|
30462
|
-
};
|
|
30463
|
-
type GetAdminWebhookDeliveriesStatsResponse = GetAdminWebhookDeliveriesStatsResponses[keyof GetAdminWebhookDeliveriesStatsResponses];
|
|
30464
|
-
type PostAdminAgentsByIdTestData = {
|
|
31438
|
+
type PostAdminAgentsByIdTestResponse = PostAdminAgentsByIdTestResponses[keyof PostAdminAgentsByIdTestResponses];
|
|
31439
|
+
type PatchAdminConsentRecordsByIdWithdrawData = {
|
|
30465
31440
|
/**
|
|
30466
|
-
* Request body for the /
|
|
31441
|
+
* Request body for the /consent-records/:id/withdraw operation on consent_record resource
|
|
30467
31442
|
*/
|
|
30468
|
-
body
|
|
31443
|
+
body?: {
|
|
30469
31444
|
data: {
|
|
30470
31445
|
attributes?: {
|
|
30471
|
-
|
|
31446
|
+
[key: string]: never;
|
|
30472
31447
|
};
|
|
31448
|
+
id: string;
|
|
30473
31449
|
relationships?: {
|
|
30474
31450
|
[key: string]: never;
|
|
30475
31451
|
};
|
|
30476
|
-
type?: "
|
|
31452
|
+
type?: "consent_record";
|
|
30477
31453
|
};
|
|
30478
31454
|
};
|
|
30479
31455
|
headers: {
|
|
@@ -30483,9 +31459,6 @@ type PostAdminAgentsByIdTestData = {
|
|
|
30483
31459
|
"x-application-key": string;
|
|
30484
31460
|
};
|
|
30485
31461
|
path: {
|
|
30486
|
-
/**
|
|
30487
|
-
* Agent ID (from URL path parameter)
|
|
30488
|
-
*/
|
|
30489
31462
|
id: string;
|
|
30490
31463
|
};
|
|
30491
31464
|
query?: {
|
|
@@ -30500,9 +31473,9 @@ type PostAdminAgentsByIdTestData = {
|
|
|
30500
31473
|
[key: string]: unknown;
|
|
30501
31474
|
};
|
|
30502
31475
|
};
|
|
30503
|
-
url: "/admin/
|
|
31476
|
+
url: "/admin/consent-records/{id}/withdraw";
|
|
30504
31477
|
};
|
|
30505
|
-
type
|
|
31478
|
+
type PatchAdminConsentRecordsByIdWithdrawErrors = {
|
|
30506
31479
|
/**
|
|
30507
31480
|
* Bad Request - Invalid input data or malformed request
|
|
30508
31481
|
*/
|
|
@@ -30532,20 +31505,20 @@ type PostAdminAgentsByIdTestErrors = {
|
|
|
30532
31505
|
*/
|
|
30533
31506
|
default: Errors;
|
|
30534
31507
|
};
|
|
30535
|
-
type
|
|
30536
|
-
type
|
|
31508
|
+
type PatchAdminConsentRecordsByIdWithdrawError = PatchAdminConsentRecordsByIdWithdrawErrors[keyof PatchAdminConsentRecordsByIdWithdrawErrors];
|
|
31509
|
+
type PatchAdminConsentRecordsByIdWithdrawResponses = {
|
|
30537
31510
|
/**
|
|
30538
31511
|
* Success
|
|
30539
31512
|
*/
|
|
30540
|
-
|
|
30541
|
-
data?:
|
|
30542
|
-
included?: Array<
|
|
31513
|
+
200: {
|
|
31514
|
+
data?: ConsentRecord;
|
|
31515
|
+
included?: Array<unknown>;
|
|
30543
31516
|
meta?: {
|
|
30544
31517
|
[key: string]: unknown;
|
|
30545
31518
|
};
|
|
30546
31519
|
};
|
|
30547
31520
|
};
|
|
30548
|
-
type
|
|
31521
|
+
type PatchAdminConsentRecordsByIdWithdrawResponse = PatchAdminConsentRecordsByIdWithdrawResponses[keyof PatchAdminConsentRecordsByIdWithdrawResponses];
|
|
30549
31522
|
type GetAdminLlmAnalyticsData = {
|
|
30550
31523
|
body?: never;
|
|
30551
31524
|
headers: {
|
|
@@ -33918,7 +34891,7 @@ type PostAdminSystemMessagesData = {
|
|
|
33918
34891
|
*/
|
|
33919
34892
|
requires_acceptance?: boolean | unknown;
|
|
33920
34893
|
title: string;
|
|
33921
|
-
type: "tos" | "welcome" | "announcement";
|
|
34894
|
+
type: "tos" | "privacy_policy" | "welcome" | "announcement";
|
|
33922
34895
|
version?: string | unknown;
|
|
33923
34896
|
};
|
|
33924
34897
|
relationships?: {
|
|
@@ -34308,7 +35281,7 @@ type PostAdminInvitationsAcceptByTokenResponses = {
|
|
|
34308
35281
|
*/
|
|
34309
35282
|
201: {
|
|
34310
35283
|
data?: Invitation;
|
|
34311
|
-
included?: Array<
|
|
35284
|
+
included?: Array<unknown>;
|
|
34312
35285
|
meta?: {
|
|
34313
35286
|
[key: string]: unknown;
|
|
34314
35287
|
};
|
|
@@ -35381,6 +36354,88 @@ type PatchAdminBucketsByIdResponses = {
|
|
|
35381
36354
|
};
|
|
35382
36355
|
};
|
|
35383
36356
|
type PatchAdminBucketsByIdResponse = PatchAdminBucketsByIdResponses[keyof PatchAdminBucketsByIdResponses];
|
|
36357
|
+
type GetAdminLegalAcceptancesLatestData = {
|
|
36358
|
+
body?: never;
|
|
36359
|
+
headers: {
|
|
36360
|
+
/**
|
|
36361
|
+
* Application ID for authentication and routing
|
|
36362
|
+
*/
|
|
36363
|
+
"x-application-key": string;
|
|
36364
|
+
};
|
|
36365
|
+
path?: never;
|
|
36366
|
+
query: {
|
|
36367
|
+
/**
|
|
36368
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
36369
|
+
*/
|
|
36370
|
+
filter?: {
|
|
36371
|
+
[key: string]: unknown;
|
|
36372
|
+
};
|
|
36373
|
+
/**
|
|
36374
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
36375
|
+
*/
|
|
36376
|
+
sort?: string;
|
|
36377
|
+
/**
|
|
36378
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
36379
|
+
*/
|
|
36380
|
+
include?: string;
|
|
36381
|
+
/**
|
|
36382
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
36383
|
+
*/
|
|
36384
|
+
fields?: {
|
|
36385
|
+
[key: string]: unknown;
|
|
36386
|
+
};
|
|
36387
|
+
user_id: string;
|
|
36388
|
+
document_type: string;
|
|
36389
|
+
};
|
|
36390
|
+
url: "/admin/legal-acceptances/latest";
|
|
36391
|
+
};
|
|
36392
|
+
type GetAdminLegalAcceptancesLatestErrors = {
|
|
36393
|
+
/**
|
|
36394
|
+
* Bad Request - Invalid input data or malformed request
|
|
36395
|
+
*/
|
|
36396
|
+
400: ErrorResponse;
|
|
36397
|
+
/**
|
|
36398
|
+
* Unauthorized - Missing or invalid authentication token
|
|
36399
|
+
*/
|
|
36400
|
+
401: ErrorResponse;
|
|
36401
|
+
/**
|
|
36402
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
36403
|
+
*/
|
|
36404
|
+
403: ErrorResponse;
|
|
36405
|
+
/**
|
|
36406
|
+
* Not Found - Resource does not exist
|
|
36407
|
+
*/
|
|
36408
|
+
404: ErrorResponse;
|
|
36409
|
+
/**
|
|
36410
|
+
* Too Many Requests - Rate limit exceeded
|
|
36411
|
+
*/
|
|
36412
|
+
429: ErrorResponse;
|
|
36413
|
+
/**
|
|
36414
|
+
* Internal Server Error - Unexpected server error
|
|
36415
|
+
*/
|
|
36416
|
+
500: ErrorResponse;
|
|
36417
|
+
/**
|
|
36418
|
+
* General Error
|
|
36419
|
+
*/
|
|
36420
|
+
default: Errors;
|
|
36421
|
+
};
|
|
36422
|
+
type GetAdminLegalAcceptancesLatestError = GetAdminLegalAcceptancesLatestErrors[keyof GetAdminLegalAcceptancesLatestErrors];
|
|
36423
|
+
type GetAdminLegalAcceptancesLatestResponses = {
|
|
36424
|
+
/**
|
|
36425
|
+
* Success
|
|
36426
|
+
*/
|
|
36427
|
+
200: {
|
|
36428
|
+
/**
|
|
36429
|
+
* An array of resource objects representing a legal_acceptance
|
|
36430
|
+
*/
|
|
36431
|
+
data?: Array<LegalAcceptance>;
|
|
36432
|
+
included?: Array<unknown>;
|
|
36433
|
+
meta?: {
|
|
36434
|
+
[key: string]: unknown;
|
|
36435
|
+
};
|
|
36436
|
+
};
|
|
36437
|
+
};
|
|
36438
|
+
type GetAdminLegalAcceptancesLatestResponse = GetAdminLegalAcceptancesLatestResponses[keyof GetAdminLegalAcceptancesLatestResponses];
|
|
35384
36439
|
type GetAdminConfigsData = {
|
|
35385
36440
|
body?: never;
|
|
35386
36441
|
headers: {
|
|
@@ -36448,11 +37503,19 @@ type PatchAdminTenantsByIdData = {
|
|
|
36448
37503
|
logo_url?: string | unknown;
|
|
36449
37504
|
name?: string | unknown;
|
|
36450
37505
|
parent_id?: string | unknown;
|
|
37506
|
+
/**
|
|
37507
|
+
* Subscription tier that gates feature access
|
|
37508
|
+
*/
|
|
37509
|
+
plan_tier?: "free" | "pro" | "business" | "enterprise" | unknown;
|
|
36451
37510
|
slug?: string | unknown;
|
|
36452
37511
|
/**
|
|
36453
37512
|
* Cost in credits for training on a single document
|
|
36454
37513
|
*/
|
|
36455
37514
|
training_price_credits?: number | unknown;
|
|
37515
|
+
/**
|
|
37516
|
+
* Memorable slug for vanity URLs
|
|
37517
|
+
*/
|
|
37518
|
+
vanity_slug?: string | unknown;
|
|
36456
37519
|
};
|
|
36457
37520
|
id: string;
|
|
36458
37521
|
relationships?: {
|
|
@@ -36828,6 +37891,243 @@ type GetAdminBucketsAllResponses = {
|
|
|
36828
37891
|
};
|
|
36829
37892
|
};
|
|
36830
37893
|
type GetAdminBucketsAllResponse = GetAdminBucketsAllResponses[keyof GetAdminBucketsAllResponses];
|
|
37894
|
+
type DeleteAdminLegalDocumentsByIdData = {
|
|
37895
|
+
body?: never;
|
|
37896
|
+
headers: {
|
|
37897
|
+
/**
|
|
37898
|
+
* Application ID for authentication and routing
|
|
37899
|
+
*/
|
|
37900
|
+
"x-application-key": string;
|
|
37901
|
+
};
|
|
37902
|
+
path: {
|
|
37903
|
+
id: string;
|
|
37904
|
+
};
|
|
37905
|
+
query?: {
|
|
37906
|
+
/**
|
|
37907
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
37908
|
+
*/
|
|
37909
|
+
include?: string;
|
|
37910
|
+
/**
|
|
37911
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
37912
|
+
*/
|
|
37913
|
+
fields?: {
|
|
37914
|
+
[key: string]: unknown;
|
|
37915
|
+
};
|
|
37916
|
+
};
|
|
37917
|
+
url: "/admin/legal-documents/{id}";
|
|
37918
|
+
};
|
|
37919
|
+
type DeleteAdminLegalDocumentsByIdErrors = {
|
|
37920
|
+
/**
|
|
37921
|
+
* Bad Request - Invalid input data or malformed request
|
|
37922
|
+
*/
|
|
37923
|
+
400: ErrorResponse;
|
|
37924
|
+
/**
|
|
37925
|
+
* Unauthorized - Missing or invalid authentication token
|
|
37926
|
+
*/
|
|
37927
|
+
401: ErrorResponse;
|
|
37928
|
+
/**
|
|
37929
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
37930
|
+
*/
|
|
37931
|
+
403: ErrorResponse;
|
|
37932
|
+
/**
|
|
37933
|
+
* Not Found - Resource does not exist
|
|
37934
|
+
*/
|
|
37935
|
+
404: ErrorResponse;
|
|
37936
|
+
/**
|
|
37937
|
+
* Too Many Requests - Rate limit exceeded
|
|
37938
|
+
*/
|
|
37939
|
+
429: ErrorResponse;
|
|
37940
|
+
/**
|
|
37941
|
+
* Internal Server Error - Unexpected server error
|
|
37942
|
+
*/
|
|
37943
|
+
500: ErrorResponse;
|
|
37944
|
+
/**
|
|
37945
|
+
* General Error
|
|
37946
|
+
*/
|
|
37947
|
+
default: Errors;
|
|
37948
|
+
};
|
|
37949
|
+
type DeleteAdminLegalDocumentsByIdError = DeleteAdminLegalDocumentsByIdErrors[keyof DeleteAdminLegalDocumentsByIdErrors];
|
|
37950
|
+
type DeleteAdminLegalDocumentsByIdResponses = {
|
|
37951
|
+
/**
|
|
37952
|
+
* Deleted successfully
|
|
37953
|
+
*/
|
|
37954
|
+
200: unknown;
|
|
37955
|
+
};
|
|
37956
|
+
type GetAdminLegalDocumentsByIdData = {
|
|
37957
|
+
body?: never;
|
|
37958
|
+
headers: {
|
|
37959
|
+
/**
|
|
37960
|
+
* Application ID for authentication and routing
|
|
37961
|
+
*/
|
|
37962
|
+
"x-application-key": string;
|
|
37963
|
+
};
|
|
37964
|
+
path: {
|
|
37965
|
+
id: string;
|
|
37966
|
+
};
|
|
37967
|
+
query?: {
|
|
37968
|
+
/**
|
|
37969
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
37970
|
+
*/
|
|
37971
|
+
include?: string;
|
|
37972
|
+
/**
|
|
37973
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
37974
|
+
*/
|
|
37975
|
+
fields?: {
|
|
37976
|
+
[key: string]: unknown;
|
|
37977
|
+
};
|
|
37978
|
+
};
|
|
37979
|
+
url: "/admin/legal-documents/{id}";
|
|
37980
|
+
};
|
|
37981
|
+
type GetAdminLegalDocumentsByIdErrors = {
|
|
37982
|
+
/**
|
|
37983
|
+
* Bad Request - Invalid input data or malformed request
|
|
37984
|
+
*/
|
|
37985
|
+
400: ErrorResponse;
|
|
37986
|
+
/**
|
|
37987
|
+
* Unauthorized - Missing or invalid authentication token
|
|
37988
|
+
*/
|
|
37989
|
+
401: ErrorResponse;
|
|
37990
|
+
/**
|
|
37991
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
37992
|
+
*/
|
|
37993
|
+
403: ErrorResponse;
|
|
37994
|
+
/**
|
|
37995
|
+
* Not Found - Resource does not exist
|
|
37996
|
+
*/
|
|
37997
|
+
404: ErrorResponse;
|
|
37998
|
+
/**
|
|
37999
|
+
* Too Many Requests - Rate limit exceeded
|
|
38000
|
+
*/
|
|
38001
|
+
429: ErrorResponse;
|
|
38002
|
+
/**
|
|
38003
|
+
* Internal Server Error - Unexpected server error
|
|
38004
|
+
*/
|
|
38005
|
+
500: ErrorResponse;
|
|
38006
|
+
/**
|
|
38007
|
+
* General Error
|
|
38008
|
+
*/
|
|
38009
|
+
default: Errors;
|
|
38010
|
+
};
|
|
38011
|
+
type GetAdminLegalDocumentsByIdError = GetAdminLegalDocumentsByIdErrors[keyof GetAdminLegalDocumentsByIdErrors];
|
|
38012
|
+
type GetAdminLegalDocumentsByIdResponses = {
|
|
38013
|
+
/**
|
|
38014
|
+
* Success
|
|
38015
|
+
*/
|
|
38016
|
+
200: {
|
|
38017
|
+
data?: LegalDocument;
|
|
38018
|
+
included?: Array<unknown>;
|
|
38019
|
+
meta?: {
|
|
38020
|
+
[key: string]: unknown;
|
|
38021
|
+
};
|
|
38022
|
+
};
|
|
38023
|
+
};
|
|
38024
|
+
type GetAdminLegalDocumentsByIdResponse = GetAdminLegalDocumentsByIdResponses[keyof GetAdminLegalDocumentsByIdResponses];
|
|
38025
|
+
type PatchAdminLegalDocumentsByIdData = {
|
|
38026
|
+
/**
|
|
38027
|
+
* Request body for the /legal-documents/:id operation on legal_document resource
|
|
38028
|
+
*/
|
|
38029
|
+
body?: {
|
|
38030
|
+
data: {
|
|
38031
|
+
attributes?: {
|
|
38032
|
+
/**
|
|
38033
|
+
* Document becomes active at this time. nil = immediately active when is_active is true.
|
|
38034
|
+
*/
|
|
38035
|
+
active_from?: unknown;
|
|
38036
|
+
/**
|
|
38037
|
+
* Document expires at this time. nil = no expiration.
|
|
38038
|
+
*/
|
|
38039
|
+
active_until?: unknown;
|
|
38040
|
+
/**
|
|
38041
|
+
* Markdown content
|
|
38042
|
+
*/
|
|
38043
|
+
content?: string | unknown;
|
|
38044
|
+
is_active?: boolean | unknown;
|
|
38045
|
+
/**
|
|
38046
|
+
* ISO 639-1 language code
|
|
38047
|
+
*/
|
|
38048
|
+
locale?: string | unknown;
|
|
38049
|
+
/**
|
|
38050
|
+
* ISO 3166-1 region code (e.g., EU, BR, US) or nil for default
|
|
38051
|
+
*/
|
|
38052
|
+
region?: string | unknown;
|
|
38053
|
+
requires_acceptance?: boolean | unknown;
|
|
38054
|
+
title?: string | unknown;
|
|
38055
|
+
version?: string | unknown;
|
|
38056
|
+
};
|
|
38057
|
+
id: string;
|
|
38058
|
+
relationships?: {
|
|
38059
|
+
[key: string]: never;
|
|
38060
|
+
};
|
|
38061
|
+
type?: "legal_document";
|
|
38062
|
+
};
|
|
38063
|
+
};
|
|
38064
|
+
headers: {
|
|
38065
|
+
/**
|
|
38066
|
+
* Application ID for authentication and routing
|
|
38067
|
+
*/
|
|
38068
|
+
"x-application-key": string;
|
|
38069
|
+
};
|
|
38070
|
+
path: {
|
|
38071
|
+
id: string;
|
|
38072
|
+
};
|
|
38073
|
+
query?: {
|
|
38074
|
+
/**
|
|
38075
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
38076
|
+
*/
|
|
38077
|
+
include?: string;
|
|
38078
|
+
/**
|
|
38079
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
38080
|
+
*/
|
|
38081
|
+
fields?: {
|
|
38082
|
+
[key: string]: unknown;
|
|
38083
|
+
};
|
|
38084
|
+
};
|
|
38085
|
+
url: "/admin/legal-documents/{id}";
|
|
38086
|
+
};
|
|
38087
|
+
type PatchAdminLegalDocumentsByIdErrors = {
|
|
38088
|
+
/**
|
|
38089
|
+
* Bad Request - Invalid input data or malformed request
|
|
38090
|
+
*/
|
|
38091
|
+
400: ErrorResponse;
|
|
38092
|
+
/**
|
|
38093
|
+
* Unauthorized - Missing or invalid authentication token
|
|
38094
|
+
*/
|
|
38095
|
+
401: ErrorResponse;
|
|
38096
|
+
/**
|
|
38097
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
38098
|
+
*/
|
|
38099
|
+
403: ErrorResponse;
|
|
38100
|
+
/**
|
|
38101
|
+
* Not Found - Resource does not exist
|
|
38102
|
+
*/
|
|
38103
|
+
404: ErrorResponse;
|
|
38104
|
+
/**
|
|
38105
|
+
* Too Many Requests - Rate limit exceeded
|
|
38106
|
+
*/
|
|
38107
|
+
429: ErrorResponse;
|
|
38108
|
+
/**
|
|
38109
|
+
* Internal Server Error - Unexpected server error
|
|
38110
|
+
*/
|
|
38111
|
+
500: ErrorResponse;
|
|
38112
|
+
/**
|
|
38113
|
+
* General Error
|
|
38114
|
+
*/
|
|
38115
|
+
default: Errors;
|
|
38116
|
+
};
|
|
38117
|
+
type PatchAdminLegalDocumentsByIdError = PatchAdminLegalDocumentsByIdErrors[keyof PatchAdminLegalDocumentsByIdErrors];
|
|
38118
|
+
type PatchAdminLegalDocumentsByIdResponses = {
|
|
38119
|
+
/**
|
|
38120
|
+
* Success
|
|
38121
|
+
*/
|
|
38122
|
+
200: {
|
|
38123
|
+
data?: LegalDocument;
|
|
38124
|
+
included?: Array<unknown>;
|
|
38125
|
+
meta?: {
|
|
38126
|
+
[key: string]: unknown;
|
|
38127
|
+
};
|
|
38128
|
+
};
|
|
38129
|
+
};
|
|
38130
|
+
type PatchAdminLegalDocumentsByIdResponse = PatchAdminLegalDocumentsByIdResponses[keyof PatchAdminLegalDocumentsByIdResponses];
|
|
36831
38131
|
type PostAdminAgentsByIdDiscoverSchemaData = {
|
|
36832
38132
|
/**
|
|
36833
38133
|
* Request body for the /agents/:id/discover-schema operation on agent resource
|
|
@@ -36889,18 +38189,183 @@ type PostAdminAgentsByIdDiscoverSchemaErrors = {
|
|
|
36889
38189
|
*/
|
|
36890
38190
|
default: Errors;
|
|
36891
38191
|
};
|
|
36892
|
-
type PostAdminAgentsByIdDiscoverSchemaError = PostAdminAgentsByIdDiscoverSchemaErrors[keyof PostAdminAgentsByIdDiscoverSchemaErrors];
|
|
36893
|
-
type PostAdminAgentsByIdDiscoverSchemaResponses = {
|
|
38192
|
+
type PostAdminAgentsByIdDiscoverSchemaError = PostAdminAgentsByIdDiscoverSchemaErrors[keyof PostAdminAgentsByIdDiscoverSchemaErrors];
|
|
38193
|
+
type PostAdminAgentsByIdDiscoverSchemaResponses = {
|
|
38194
|
+
/**
|
|
38195
|
+
* Success
|
|
38196
|
+
*/
|
|
38197
|
+
201: {
|
|
38198
|
+
[key: string]: unknown;
|
|
38199
|
+
};
|
|
38200
|
+
};
|
|
38201
|
+
type PostAdminAgentsByIdDiscoverSchemaResponse = PostAdminAgentsByIdDiscoverSchemaResponses[keyof PostAdminAgentsByIdDiscoverSchemaResponses];
|
|
38202
|
+
type DeleteAdminPlansByIdData = {
|
|
38203
|
+
body?: never;
|
|
38204
|
+
headers: {
|
|
38205
|
+
/**
|
|
38206
|
+
* Application ID for authentication and routing
|
|
38207
|
+
*/
|
|
38208
|
+
"x-application-key": string;
|
|
38209
|
+
};
|
|
38210
|
+
path: {
|
|
38211
|
+
id: string;
|
|
38212
|
+
};
|
|
38213
|
+
query?: {
|
|
38214
|
+
/**
|
|
38215
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
38216
|
+
*/
|
|
38217
|
+
include?: string;
|
|
38218
|
+
/**
|
|
38219
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
38220
|
+
*/
|
|
38221
|
+
fields?: {
|
|
38222
|
+
[key: string]: unknown;
|
|
38223
|
+
};
|
|
38224
|
+
};
|
|
38225
|
+
url: "/admin/plans/{id}";
|
|
38226
|
+
};
|
|
38227
|
+
type DeleteAdminPlansByIdErrors = {
|
|
38228
|
+
/**
|
|
38229
|
+
* Bad Request - Invalid input data or malformed request
|
|
38230
|
+
*/
|
|
38231
|
+
400: ErrorResponse;
|
|
38232
|
+
/**
|
|
38233
|
+
* Unauthorized - Missing or invalid authentication token
|
|
38234
|
+
*/
|
|
38235
|
+
401: ErrorResponse;
|
|
38236
|
+
/**
|
|
38237
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
38238
|
+
*/
|
|
38239
|
+
403: ErrorResponse;
|
|
38240
|
+
/**
|
|
38241
|
+
* Not Found - Resource does not exist
|
|
38242
|
+
*/
|
|
38243
|
+
404: ErrorResponse;
|
|
38244
|
+
/**
|
|
38245
|
+
* Too Many Requests - Rate limit exceeded
|
|
38246
|
+
*/
|
|
38247
|
+
429: ErrorResponse;
|
|
38248
|
+
/**
|
|
38249
|
+
* Internal Server Error - Unexpected server error
|
|
38250
|
+
*/
|
|
38251
|
+
500: ErrorResponse;
|
|
38252
|
+
/**
|
|
38253
|
+
* General Error
|
|
38254
|
+
*/
|
|
38255
|
+
default: Errors;
|
|
38256
|
+
};
|
|
38257
|
+
type DeleteAdminPlansByIdError = DeleteAdminPlansByIdErrors[keyof DeleteAdminPlansByIdErrors];
|
|
38258
|
+
type DeleteAdminPlansByIdResponses = {
|
|
38259
|
+
/**
|
|
38260
|
+
* Deleted successfully
|
|
38261
|
+
*/
|
|
38262
|
+
200: unknown;
|
|
38263
|
+
};
|
|
38264
|
+
type GetAdminPlansByIdData = {
|
|
38265
|
+
body?: never;
|
|
38266
|
+
headers: {
|
|
38267
|
+
/**
|
|
38268
|
+
* Application ID for authentication and routing
|
|
38269
|
+
*/
|
|
38270
|
+
"x-application-key": string;
|
|
38271
|
+
};
|
|
38272
|
+
path: {
|
|
38273
|
+
id: string;
|
|
38274
|
+
};
|
|
38275
|
+
query?: {
|
|
38276
|
+
/**
|
|
38277
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
38278
|
+
*/
|
|
38279
|
+
include?: string;
|
|
38280
|
+
/**
|
|
38281
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
38282
|
+
*/
|
|
38283
|
+
fields?: {
|
|
38284
|
+
[key: string]: unknown;
|
|
38285
|
+
};
|
|
38286
|
+
};
|
|
38287
|
+
url: "/admin/plans/{id}";
|
|
38288
|
+
};
|
|
38289
|
+
type GetAdminPlansByIdErrors = {
|
|
38290
|
+
/**
|
|
38291
|
+
* Bad Request - Invalid input data or malformed request
|
|
38292
|
+
*/
|
|
38293
|
+
400: ErrorResponse;
|
|
38294
|
+
/**
|
|
38295
|
+
* Unauthorized - Missing or invalid authentication token
|
|
38296
|
+
*/
|
|
38297
|
+
401: ErrorResponse;
|
|
38298
|
+
/**
|
|
38299
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
38300
|
+
*/
|
|
38301
|
+
403: ErrorResponse;
|
|
38302
|
+
/**
|
|
38303
|
+
* Not Found - Resource does not exist
|
|
38304
|
+
*/
|
|
38305
|
+
404: ErrorResponse;
|
|
38306
|
+
/**
|
|
38307
|
+
* Too Many Requests - Rate limit exceeded
|
|
38308
|
+
*/
|
|
38309
|
+
429: ErrorResponse;
|
|
38310
|
+
/**
|
|
38311
|
+
* Internal Server Error - Unexpected server error
|
|
38312
|
+
*/
|
|
38313
|
+
500: ErrorResponse;
|
|
38314
|
+
/**
|
|
38315
|
+
* General Error
|
|
38316
|
+
*/
|
|
38317
|
+
default: Errors;
|
|
38318
|
+
};
|
|
38319
|
+
type GetAdminPlansByIdError = GetAdminPlansByIdErrors[keyof GetAdminPlansByIdErrors];
|
|
38320
|
+
type GetAdminPlansByIdResponses = {
|
|
36894
38321
|
/**
|
|
36895
38322
|
* Success
|
|
36896
38323
|
*/
|
|
36897
|
-
|
|
36898
|
-
|
|
38324
|
+
200: {
|
|
38325
|
+
data?: Plan;
|
|
38326
|
+
included?: Array<unknown>;
|
|
38327
|
+
meta?: {
|
|
38328
|
+
[key: string]: unknown;
|
|
38329
|
+
};
|
|
36899
38330
|
};
|
|
36900
38331
|
};
|
|
36901
|
-
type
|
|
36902
|
-
type
|
|
36903
|
-
|
|
38332
|
+
type GetAdminPlansByIdResponse = GetAdminPlansByIdResponses[keyof GetAdminPlansByIdResponses];
|
|
38333
|
+
type PatchAdminPlansByIdData = {
|
|
38334
|
+
/**
|
|
38335
|
+
* Request body for the /plans/:id operation on plan resource
|
|
38336
|
+
*/
|
|
38337
|
+
body?: {
|
|
38338
|
+
data: {
|
|
38339
|
+
attributes?: {
|
|
38340
|
+
billing_interval?: number | unknown;
|
|
38341
|
+
/**
|
|
38342
|
+
* One-time credits granted upon first subscription (Welcome Bonus)
|
|
38343
|
+
*/
|
|
38344
|
+
initial_credits?: number | unknown;
|
|
38345
|
+
/**
|
|
38346
|
+
* Maximum number of renewals for free trial (nil = unlimited)
|
|
38347
|
+
*/
|
|
38348
|
+
max_renewals?: number | unknown;
|
|
38349
|
+
monthly_credits?: number | unknown;
|
|
38350
|
+
monthly_price?: {
|
|
38351
|
+
amount: string;
|
|
38352
|
+
currency: string;
|
|
38353
|
+
} | unknown;
|
|
38354
|
+
name?: string | unknown;
|
|
38355
|
+
/**
|
|
38356
|
+
* Number of 20GB storage blocks included in plan
|
|
38357
|
+
*/
|
|
38358
|
+
storage_blocks?: number | unknown;
|
|
38359
|
+
storage_days?: number | unknown;
|
|
38360
|
+
type?: "plan" | "addon" | unknown;
|
|
38361
|
+
};
|
|
38362
|
+
id: string;
|
|
38363
|
+
relationships?: {
|
|
38364
|
+
[key: string]: never;
|
|
38365
|
+
};
|
|
38366
|
+
type?: "plan";
|
|
38367
|
+
};
|
|
38368
|
+
};
|
|
36904
38369
|
headers: {
|
|
36905
38370
|
/**
|
|
36906
38371
|
* Application ID for authentication and routing
|
|
@@ -36924,7 +38389,7 @@ type DeleteAdminPlansByIdData = {
|
|
|
36924
38389
|
};
|
|
36925
38390
|
url: "/admin/plans/{id}";
|
|
36926
38391
|
};
|
|
36927
|
-
type
|
|
38392
|
+
type PatchAdminPlansByIdErrors = {
|
|
36928
38393
|
/**
|
|
36929
38394
|
* Bad Request - Invalid input data or malformed request
|
|
36930
38395
|
*/
|
|
@@ -36954,14 +38419,21 @@ type DeleteAdminPlansByIdErrors = {
|
|
|
36954
38419
|
*/
|
|
36955
38420
|
default: Errors;
|
|
36956
38421
|
};
|
|
36957
|
-
type
|
|
36958
|
-
type
|
|
38422
|
+
type PatchAdminPlansByIdError = PatchAdminPlansByIdErrors[keyof PatchAdminPlansByIdErrors];
|
|
38423
|
+
type PatchAdminPlansByIdResponses = {
|
|
36959
38424
|
/**
|
|
36960
|
-
*
|
|
38425
|
+
* Success
|
|
36961
38426
|
*/
|
|
36962
|
-
200:
|
|
38427
|
+
200: {
|
|
38428
|
+
data?: Plan;
|
|
38429
|
+
included?: Array<unknown>;
|
|
38430
|
+
meta?: {
|
|
38431
|
+
[key: string]: unknown;
|
|
38432
|
+
};
|
|
38433
|
+
};
|
|
36963
38434
|
};
|
|
36964
|
-
type
|
|
38435
|
+
type PatchAdminPlansByIdResponse = PatchAdminPlansByIdResponses[keyof PatchAdminPlansByIdResponses];
|
|
38436
|
+
type GetAdminLegalAcceptancesData = {
|
|
36965
38437
|
body?: never;
|
|
36966
38438
|
headers: {
|
|
36967
38439
|
/**
|
|
@@ -36969,10 +38441,24 @@ type GetAdminPlansByIdData = {
|
|
|
36969
38441
|
*/
|
|
36970
38442
|
"x-application-key": string;
|
|
36971
38443
|
};
|
|
36972
|
-
path
|
|
36973
|
-
id: string;
|
|
36974
|
-
};
|
|
38444
|
+
path?: never;
|
|
36975
38445
|
query?: {
|
|
38446
|
+
/**
|
|
38447
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
38448
|
+
*/
|
|
38449
|
+
filter?: {
|
|
38450
|
+
[key: string]: unknown;
|
|
38451
|
+
};
|
|
38452
|
+
/**
|
|
38453
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
38454
|
+
*/
|
|
38455
|
+
sort?: string;
|
|
38456
|
+
/**
|
|
38457
|
+
* JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
|
|
38458
|
+
*/
|
|
38459
|
+
page?: {
|
|
38460
|
+
[key: string]: unknown;
|
|
38461
|
+
};
|
|
36976
38462
|
/**
|
|
36977
38463
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
36978
38464
|
*/
|
|
@@ -36984,9 +38470,9 @@ type GetAdminPlansByIdData = {
|
|
|
36984
38470
|
[key: string]: unknown;
|
|
36985
38471
|
};
|
|
36986
38472
|
};
|
|
36987
|
-
url: "/admin/
|
|
38473
|
+
url: "/admin/legal-acceptances";
|
|
36988
38474
|
};
|
|
36989
|
-
type
|
|
38475
|
+
type GetAdminLegalAcceptancesErrors = {
|
|
36990
38476
|
/**
|
|
36991
38477
|
* Bad Request - Invalid input data or malformed request
|
|
36992
38478
|
*/
|
|
@@ -37016,54 +38502,37 @@ type GetAdminPlansByIdErrors = {
|
|
|
37016
38502
|
*/
|
|
37017
38503
|
default: Errors;
|
|
37018
38504
|
};
|
|
37019
|
-
type
|
|
37020
|
-
type
|
|
38505
|
+
type GetAdminLegalAcceptancesError = GetAdminLegalAcceptancesErrors[keyof GetAdminLegalAcceptancesErrors];
|
|
38506
|
+
type GetAdminLegalAcceptancesResponses = {
|
|
37021
38507
|
/**
|
|
37022
38508
|
* Success
|
|
37023
38509
|
*/
|
|
37024
38510
|
200: {
|
|
37025
|
-
|
|
38511
|
+
/**
|
|
38512
|
+
* An array of resource objects representing a legal_acceptance
|
|
38513
|
+
*/
|
|
38514
|
+
data?: Array<LegalAcceptance>;
|
|
37026
38515
|
included?: Array<unknown>;
|
|
37027
38516
|
meta?: {
|
|
37028
38517
|
[key: string]: unknown;
|
|
37029
38518
|
};
|
|
37030
38519
|
};
|
|
37031
38520
|
};
|
|
37032
|
-
type
|
|
37033
|
-
type
|
|
38521
|
+
type GetAdminLegalAcceptancesResponse = GetAdminLegalAcceptancesResponses[keyof GetAdminLegalAcceptancesResponses];
|
|
38522
|
+
type PatchAdminUsersByIdResetPasswordData = {
|
|
37034
38523
|
/**
|
|
37035
|
-
* Request body for the /
|
|
38524
|
+
* Request body for the /users/:id/reset-password operation on user resource
|
|
37036
38525
|
*/
|
|
37037
38526
|
body?: {
|
|
37038
38527
|
data: {
|
|
37039
38528
|
attributes?: {
|
|
37040
|
-
|
|
37041
|
-
/**
|
|
37042
|
-
* One-time credits granted upon first subscription (Welcome Bonus)
|
|
37043
|
-
*/
|
|
37044
|
-
initial_credits?: number | unknown;
|
|
37045
|
-
/**
|
|
37046
|
-
* Maximum number of renewals for free trial (nil = unlimited)
|
|
37047
|
-
*/
|
|
37048
|
-
max_renewals?: number | unknown;
|
|
37049
|
-
monthly_credits?: number | unknown;
|
|
37050
|
-
monthly_price?: {
|
|
37051
|
-
amount: string;
|
|
37052
|
-
currency: string;
|
|
37053
|
-
} | unknown;
|
|
37054
|
-
name?: string | unknown;
|
|
37055
|
-
/**
|
|
37056
|
-
* Number of 20GB storage blocks included in plan
|
|
37057
|
-
*/
|
|
37058
|
-
storage_blocks?: number | unknown;
|
|
37059
|
-
storage_days?: number | unknown;
|
|
37060
|
-
type?: "plan" | "addon" | unknown;
|
|
38529
|
+
[key: string]: never;
|
|
37061
38530
|
};
|
|
37062
38531
|
id: string;
|
|
37063
38532
|
relationships?: {
|
|
37064
38533
|
[key: string]: never;
|
|
37065
38534
|
};
|
|
37066
|
-
type?: "
|
|
38535
|
+
type?: "user";
|
|
37067
38536
|
};
|
|
37068
38537
|
};
|
|
37069
38538
|
headers: {
|
|
@@ -37087,9 +38556,9 @@ type PatchAdminPlansByIdData = {
|
|
|
37087
38556
|
[key: string]: unknown;
|
|
37088
38557
|
};
|
|
37089
38558
|
};
|
|
37090
|
-
url: "/admin/
|
|
38559
|
+
url: "/admin/users/{id}/reset-password";
|
|
37091
38560
|
};
|
|
37092
|
-
type
|
|
38561
|
+
type PatchAdminUsersByIdResetPasswordErrors = {
|
|
37093
38562
|
/**
|
|
37094
38563
|
* Bad Request - Invalid input data or malformed request
|
|
37095
38564
|
*/
|
|
@@ -37119,34 +38588,35 @@ type PatchAdminPlansByIdErrors = {
|
|
|
37119
38588
|
*/
|
|
37120
38589
|
default: Errors;
|
|
37121
38590
|
};
|
|
37122
|
-
type
|
|
37123
|
-
type
|
|
38591
|
+
type PatchAdminUsersByIdResetPasswordError = PatchAdminUsersByIdResetPasswordErrors[keyof PatchAdminUsersByIdResetPasswordErrors];
|
|
38592
|
+
type PatchAdminUsersByIdResetPasswordResponses = {
|
|
37124
38593
|
/**
|
|
37125
38594
|
* Success
|
|
37126
38595
|
*/
|
|
37127
38596
|
200: {
|
|
37128
|
-
data?:
|
|
38597
|
+
data?: User;
|
|
37129
38598
|
included?: Array<unknown>;
|
|
37130
38599
|
meta?: {
|
|
37131
38600
|
[key: string]: unknown;
|
|
37132
38601
|
};
|
|
37133
38602
|
};
|
|
37134
38603
|
};
|
|
37135
|
-
type
|
|
37136
|
-
type
|
|
38604
|
+
type PatchAdminUsersByIdResetPasswordResponse = PatchAdminUsersByIdResetPasswordResponses[keyof PatchAdminUsersByIdResetPasswordResponses];
|
|
38605
|
+
type PatchAdminInvitationsByIdAcceptData = {
|
|
37137
38606
|
/**
|
|
37138
|
-
* Request body for the /
|
|
38607
|
+
* Request body for the /invitations/:id/accept operation on invitation resource
|
|
37139
38608
|
*/
|
|
37140
|
-
body
|
|
38609
|
+
body: {
|
|
37141
38610
|
data: {
|
|
37142
38611
|
attributes?: {
|
|
37143
|
-
|
|
38612
|
+
application_id?: string | unknown;
|
|
38613
|
+
token: string;
|
|
37144
38614
|
};
|
|
37145
38615
|
id: string;
|
|
37146
38616
|
relationships?: {
|
|
37147
38617
|
[key: string]: never;
|
|
37148
38618
|
};
|
|
37149
|
-
type?: "
|
|
38619
|
+
type?: "invitation";
|
|
37150
38620
|
};
|
|
37151
38621
|
};
|
|
37152
38622
|
headers: {
|
|
@@ -37170,9 +38640,9 @@ type PatchAdminUsersByIdResetPasswordData = {
|
|
|
37170
38640
|
[key: string]: unknown;
|
|
37171
38641
|
};
|
|
37172
38642
|
};
|
|
37173
|
-
url: "/admin/
|
|
38643
|
+
url: "/admin/invitations/{id}/accept";
|
|
37174
38644
|
};
|
|
37175
|
-
type
|
|
38645
|
+
type PatchAdminInvitationsByIdAcceptErrors = {
|
|
37176
38646
|
/**
|
|
37177
38647
|
* Bad Request - Invalid input data or malformed request
|
|
37178
38648
|
*/
|
|
@@ -37202,37 +38672,22 @@ type PatchAdminUsersByIdResetPasswordErrors = {
|
|
|
37202
38672
|
*/
|
|
37203
38673
|
default: Errors;
|
|
37204
38674
|
};
|
|
37205
|
-
type
|
|
37206
|
-
type
|
|
38675
|
+
type PatchAdminInvitationsByIdAcceptError = PatchAdminInvitationsByIdAcceptErrors[keyof PatchAdminInvitationsByIdAcceptErrors];
|
|
38676
|
+
type PatchAdminInvitationsByIdAcceptResponses = {
|
|
37207
38677
|
/**
|
|
37208
38678
|
* Success
|
|
37209
38679
|
*/
|
|
37210
38680
|
200: {
|
|
37211
|
-
data?:
|
|
38681
|
+
data?: Invitation;
|
|
37212
38682
|
included?: Array<unknown>;
|
|
37213
38683
|
meta?: {
|
|
37214
38684
|
[key: string]: unknown;
|
|
37215
38685
|
};
|
|
37216
38686
|
};
|
|
37217
38687
|
};
|
|
37218
|
-
type
|
|
37219
|
-
type
|
|
37220
|
-
|
|
37221
|
-
* Request body for the /invitations/:id/accept operation on invitation resource
|
|
37222
|
-
*/
|
|
37223
|
-
body: {
|
|
37224
|
-
data: {
|
|
37225
|
-
attributes?: {
|
|
37226
|
-
application_id?: string | unknown;
|
|
37227
|
-
token: string;
|
|
37228
|
-
};
|
|
37229
|
-
id: string;
|
|
37230
|
-
relationships?: {
|
|
37231
|
-
[key: string]: never;
|
|
37232
|
-
};
|
|
37233
|
-
type?: "invitation";
|
|
37234
|
-
};
|
|
37235
|
-
};
|
|
38688
|
+
type PatchAdminInvitationsByIdAcceptResponse = PatchAdminInvitationsByIdAcceptResponses[keyof PatchAdminInvitationsByIdAcceptResponses];
|
|
38689
|
+
type GetAdminConsentRecordsByIdData = {
|
|
38690
|
+
body?: never;
|
|
37236
38691
|
headers: {
|
|
37237
38692
|
/**
|
|
37238
38693
|
* Application ID for authentication and routing
|
|
@@ -37254,9 +38709,9 @@ type PatchAdminInvitationsByIdAcceptData = {
|
|
|
37254
38709
|
[key: string]: unknown;
|
|
37255
38710
|
};
|
|
37256
38711
|
};
|
|
37257
|
-
url: "/admin/
|
|
38712
|
+
url: "/admin/consent-records/{id}";
|
|
37258
38713
|
};
|
|
37259
|
-
type
|
|
38714
|
+
type GetAdminConsentRecordsByIdErrors = {
|
|
37260
38715
|
/**
|
|
37261
38716
|
* Bad Request - Invalid input data or malformed request
|
|
37262
38717
|
*/
|
|
@@ -37286,20 +38741,20 @@ type PatchAdminInvitationsByIdAcceptErrors = {
|
|
|
37286
38741
|
*/
|
|
37287
38742
|
default: Errors;
|
|
37288
38743
|
};
|
|
37289
|
-
type
|
|
37290
|
-
type
|
|
38744
|
+
type GetAdminConsentRecordsByIdError = GetAdminConsentRecordsByIdErrors[keyof GetAdminConsentRecordsByIdErrors];
|
|
38745
|
+
type GetAdminConsentRecordsByIdResponses = {
|
|
37291
38746
|
/**
|
|
37292
38747
|
* Success
|
|
37293
38748
|
*/
|
|
37294
38749
|
200: {
|
|
37295
|
-
data?:
|
|
37296
|
-
included?: Array<
|
|
38750
|
+
data?: ConsentRecord;
|
|
38751
|
+
included?: Array<unknown>;
|
|
37297
38752
|
meta?: {
|
|
37298
38753
|
[key: string]: unknown;
|
|
37299
38754
|
};
|
|
37300
38755
|
};
|
|
37301
38756
|
};
|
|
37302
|
-
type
|
|
38757
|
+
type GetAdminConsentRecordsByIdResponse = GetAdminConsentRecordsByIdResponses[keyof GetAdminConsentRecordsByIdResponses];
|
|
37303
38758
|
type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdData = {
|
|
37304
38759
|
body?: never;
|
|
37305
38760
|
headers: {
|
|
@@ -39048,6 +40503,88 @@ type PostAdminUserProfilesResponses = {
|
|
|
39048
40503
|
};
|
|
39049
40504
|
};
|
|
39050
40505
|
type PostAdminUserProfilesResponse = PostAdminUserProfilesResponses[keyof PostAdminUserProfilesResponses];
|
|
40506
|
+
type GetAdminLegalDocumentsByLocaleData = {
|
|
40507
|
+
body?: never;
|
|
40508
|
+
headers: {
|
|
40509
|
+
/**
|
|
40510
|
+
* Application ID for authentication and routing
|
|
40511
|
+
*/
|
|
40512
|
+
"x-application-key": string;
|
|
40513
|
+
};
|
|
40514
|
+
path?: never;
|
|
40515
|
+
query: {
|
|
40516
|
+
/**
|
|
40517
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
40518
|
+
*/
|
|
40519
|
+
filter?: {
|
|
40520
|
+
[key: string]: unknown;
|
|
40521
|
+
};
|
|
40522
|
+
/**
|
|
40523
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
40524
|
+
*/
|
|
40525
|
+
sort?: string;
|
|
40526
|
+
/**
|
|
40527
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
40528
|
+
*/
|
|
40529
|
+
include?: string;
|
|
40530
|
+
/**
|
|
40531
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
40532
|
+
*/
|
|
40533
|
+
fields?: {
|
|
40534
|
+
[key: string]: unknown;
|
|
40535
|
+
};
|
|
40536
|
+
locale: string;
|
|
40537
|
+
region?: string;
|
|
40538
|
+
};
|
|
40539
|
+
url: "/admin/legal-documents/by-locale";
|
|
40540
|
+
};
|
|
40541
|
+
type GetAdminLegalDocumentsByLocaleErrors = {
|
|
40542
|
+
/**
|
|
40543
|
+
* Bad Request - Invalid input data or malformed request
|
|
40544
|
+
*/
|
|
40545
|
+
400: ErrorResponse;
|
|
40546
|
+
/**
|
|
40547
|
+
* Unauthorized - Missing or invalid authentication token
|
|
40548
|
+
*/
|
|
40549
|
+
401: ErrorResponse;
|
|
40550
|
+
/**
|
|
40551
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
40552
|
+
*/
|
|
40553
|
+
403: ErrorResponse;
|
|
40554
|
+
/**
|
|
40555
|
+
* Not Found - Resource does not exist
|
|
40556
|
+
*/
|
|
40557
|
+
404: ErrorResponse;
|
|
40558
|
+
/**
|
|
40559
|
+
* Too Many Requests - Rate limit exceeded
|
|
40560
|
+
*/
|
|
40561
|
+
429: ErrorResponse;
|
|
40562
|
+
/**
|
|
40563
|
+
* Internal Server Error - Unexpected server error
|
|
40564
|
+
*/
|
|
40565
|
+
500: ErrorResponse;
|
|
40566
|
+
/**
|
|
40567
|
+
* General Error
|
|
40568
|
+
*/
|
|
40569
|
+
default: Errors;
|
|
40570
|
+
};
|
|
40571
|
+
type GetAdminLegalDocumentsByLocaleError = GetAdminLegalDocumentsByLocaleErrors[keyof GetAdminLegalDocumentsByLocaleErrors];
|
|
40572
|
+
type GetAdminLegalDocumentsByLocaleResponses = {
|
|
40573
|
+
/**
|
|
40574
|
+
* Success
|
|
40575
|
+
*/
|
|
40576
|
+
200: {
|
|
40577
|
+
/**
|
|
40578
|
+
* An array of resource objects representing a legal_document
|
|
40579
|
+
*/
|
|
40580
|
+
data?: Array<LegalDocument>;
|
|
40581
|
+
included?: Array<unknown>;
|
|
40582
|
+
meta?: {
|
|
40583
|
+
[key: string]: unknown;
|
|
40584
|
+
};
|
|
40585
|
+
};
|
|
40586
|
+
};
|
|
40587
|
+
type GetAdminLegalDocumentsByLocaleResponse = GetAdminLegalDocumentsByLocaleResponses[keyof GetAdminLegalDocumentsByLocaleResponses];
|
|
39051
40588
|
type PostAdminCustomersData = {
|
|
39052
40589
|
/**
|
|
39053
40590
|
* Request body for the /customers operation on customer resource
|
|
@@ -39766,6 +41303,10 @@ type PatchAdminApplicationsByIdData = {
|
|
|
39766
41303
|
*/
|
|
39767
41304
|
sender_name?: string | unknown;
|
|
39768
41305
|
slug?: string | unknown;
|
|
41306
|
+
/**
|
|
41307
|
+
* Memorable slug for vanity URLs
|
|
41308
|
+
*/
|
|
41309
|
+
vanity_slug?: string | unknown;
|
|
39769
41310
|
};
|
|
39770
41311
|
id: string;
|
|
39771
41312
|
relationships?: {
|
|
@@ -39917,7 +41458,7 @@ type PatchAdminInvitationsByIdDeclineResponses = {
|
|
|
39917
41458
|
*/
|
|
39918
41459
|
200: {
|
|
39919
41460
|
data?: Invitation;
|
|
39920
|
-
included?: Array<
|
|
41461
|
+
included?: Array<unknown>;
|
|
39921
41462
|
meta?: {
|
|
39922
41463
|
[key: string]: unknown;
|
|
39923
41464
|
};
|
|
@@ -40846,4 +42387,4 @@ type ApiKeyAllocateRequest = z.infer<typeof ApiKeyAllocateSchema>;
|
|
|
40846
42387
|
type DocumentBulkDeleteRequest = z.infer<typeof DocumentBulkDeleteSchema>;
|
|
40847
42388
|
type DocumentBulkReprocessRequest = z.infer<typeof DocumentBulkReprocessSchema>;
|
|
40848
42389
|
|
|
40849
|
-
export { type Account, type AccountCreditRequest, AccountCreditSchema, type AccountDebitRequest, AccountDebitSchema, type Agent, type AgentAdminCreateRequest, AgentAdminCreateSchema, type AgentStats, type AgentTestResult, type AgentTrainingStats, type AgentUsage, type AgentVersion, type AgentVersionComparison, type AgentVersionFieldsInputCreateType, type AgentVersionRevision, 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 ConfigEnum, type Conversation, type CreditPackage, type Customer, type DeleteAdminAgentVersionsByIdData, type DeleteAdminAgentVersionsByIdError, type DeleteAdminAgentVersionsByIdErrors, type DeleteAdminAgentVersionsByIdResponses, type DeleteAdminAgentsByIdTrainingExamplesByExampleIdData, type DeleteAdminAgentsByIdTrainingExamplesByExampleIdError, type DeleteAdminAgentsByIdTrainingExamplesByExampleIdErrors, type DeleteAdminAgentsByIdTrainingExamplesByExampleIdResponse, type DeleteAdminAgentsByIdTrainingExamplesByExampleIdResponses, 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 DeleteAdminPlatformPricingConfigsByIdData, type DeleteAdminPlatformPricingConfigsByIdError, type DeleteAdminPlatformPricingConfigsByIdErrors, type DeleteAdminPlatformPricingConfigsByIdResponses, 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 GetAdminAgentVersionRevisionsByIdData, type GetAdminAgentVersionRevisionsByIdError, type GetAdminAgentVersionRevisionsByIdErrors, type GetAdminAgentVersionRevisionsByIdResponse, type GetAdminAgentVersionRevisionsByIdResponses, type GetAdminAgentVersionRevisionsData, type GetAdminAgentVersionRevisionsError, type GetAdminAgentVersionRevisionsErrors, type GetAdminAgentVersionRevisionsResponse, type GetAdminAgentVersionRevisionsResponses, type GetAdminAgentVersionsByIdData, type GetAdminAgentVersionsByIdError, type GetAdminAgentVersionsByIdErrors, type GetAdminAgentVersionsByIdMetricsData, type GetAdminAgentVersionsByIdMetricsError, type GetAdminAgentVersionsByIdMetricsErrors, type GetAdminAgentVersionsByIdMetricsResponse, type GetAdminAgentVersionsByIdMetricsResponses, type GetAdminAgentVersionsByIdResponse, type GetAdminAgentVersionsByIdResponses, type GetAdminAgentVersionsByIdRevisionsData, type GetAdminAgentVersionsByIdRevisionsError, type GetAdminAgentVersionsByIdRevisionsErrors, type GetAdminAgentVersionsByIdRevisionsResponses, 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 GetAdminAgentsByIdTrainingExamplesData, type GetAdminAgentsByIdTrainingExamplesError, type GetAdminAgentsByIdTrainingExamplesErrors, type GetAdminAgentsByIdTrainingExamplesResponse, type GetAdminAgentsByIdTrainingExamplesResponses, 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 GetAdminExtractionConfigEnumsByIdData, type GetAdminExtractionConfigEnumsByIdError, type GetAdminExtractionConfigEnumsByIdErrors, type GetAdminExtractionConfigEnumsByIdResponse, type GetAdminExtractionConfigEnumsByIdResponses, type GetAdminExtractionConfigEnumsData, type GetAdminExtractionConfigEnumsError, type GetAdminExtractionConfigEnumsErrors, type GetAdminExtractionConfigEnumsResponse, type GetAdminExtractionConfigEnumsResponses, 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 GetAdminPlatformPricingConfigsByIdData, type GetAdminPlatformPricingConfigsByIdError, type GetAdminPlatformPricingConfigsByIdErrors, type GetAdminPlatformPricingConfigsByIdResponse, type GetAdminPlatformPricingConfigsByIdResponses, type GetAdminPlatformPricingConfigsData, type GetAdminPlatformPricingConfigsError, type GetAdminPlatformPricingConfigsErrors, type GetAdminPlatformPricingConfigsResponse, type GetAdminPlatformPricingConfigsResponses, 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 GetAdminSettlementsByIdData, type GetAdminSettlementsByIdError, type GetAdminSettlementsByIdErrors, type GetAdminSettlementsByIdResponse, type GetAdminSettlementsByIdResponses, type GetAdminSettlementsData, type GetAdminSettlementsError, type GetAdminSettlementsErrors, type GetAdminSettlementsResponse, type GetAdminSettlementsResponses, 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 GetAdminWholesaleAgreementsByIdData, type GetAdminWholesaleAgreementsByIdError, type GetAdminWholesaleAgreementsByIdErrors, type GetAdminWholesaleAgreementsByIdResponse, type GetAdminWholesaleAgreementsByIdResponses, type GetAdminWholesaleAgreementsData, type GetAdminWholesaleAgreementsError, type GetAdminWholesaleAgreementsErrors, type GetAdminWholesaleAgreementsResponse, type GetAdminWholesaleAgreementsResponses, type GetAdminWorkspaceMembershipsData, type GetAdminWorkspaceMembershipsError, type GetAdminWorkspaceMembershipsErrors, type GetAdminWorkspaceMembershipsInheritedData, type GetAdminWorkspaceMembershipsInheritedError, type GetAdminWorkspaceMembershipsInheritedErrors, type GetAdminWorkspaceMembershipsInheritedResponse, type GetAdminWorkspaceMembershipsInheritedResponses, 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 PatchAdminExtractionConfigEnumsByIdData, type PatchAdminExtractionConfigEnumsByIdError, type PatchAdminExtractionConfigEnumsByIdErrors, type PatchAdminExtractionConfigEnumsByIdResponse, type PatchAdminExtractionConfigEnumsByIdResponses, 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 PatchAdminPlatformPricingConfigsByIdData, type PatchAdminPlatformPricingConfigsByIdError, type PatchAdminPlatformPricingConfigsByIdErrors, type PatchAdminPlatformPricingConfigsByIdResponse, type PatchAdminPlatformPricingConfigsByIdResponses, 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 PatchAdminWholesaleAgreementsByIdData, type PatchAdminWholesaleAgreementsByIdError, type PatchAdminWholesaleAgreementsByIdErrors, type PatchAdminWholesaleAgreementsByIdResponse, type PatchAdminWholesaleAgreementsByIdResponses, 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 PatchAdminWorkspacesByIdPopulateHashesData, type PatchAdminWorkspacesByIdPopulateHashesError, type PatchAdminWorkspacesByIdPopulateHashesErrors, type PatchAdminWorkspacesByIdPopulateHashesResponse, type PatchAdminWorkspacesByIdPopulateHashesResponses, 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 PlatformPricingConfig, 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 PostAdminAgentsByIdAnalyzeTrainingData, type PostAdminAgentsByIdAnalyzeTrainingError, type PostAdminAgentsByIdAnalyzeTrainingErrors, type PostAdminAgentsByIdAnalyzeTrainingResponse, type PostAdminAgentsByIdAnalyzeTrainingResponses, 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 PostAdminAgentsByIdRestoreVersionData, type PostAdminAgentsByIdRestoreVersionError, type PostAdminAgentsByIdRestoreVersionErrors, type PostAdminAgentsByIdRestoreVersionResponse, type PostAdminAgentsByIdRestoreVersionResponses, 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 PostAdminAgentsDiscoverSchemaData, type PostAdminAgentsDiscoverSchemaError, type PostAdminAgentsDiscoverSchemaErrors, type PostAdminAgentsDiscoverSchemaResponse, type PostAdminAgentsDiscoverSchemaResponses, 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 PostAdminExtractionConfigEnumsData, type PostAdminExtractionConfigEnumsError, type PostAdminExtractionConfigEnumsErrors, type PostAdminExtractionConfigEnumsResponse, type PostAdminExtractionConfigEnumsResponses, type PostAdminExtractionDocumentsBeginUploadData, type PostAdminExtractionDocumentsBeginUploadError, type PostAdminExtractionDocumentsBeginUploadErrors, type PostAdminExtractionDocumentsBeginUploadResponse, type PostAdminExtractionDocumentsBeginUploadResponses, type PostAdminExtractionDocumentsBulkReprocessData, type PostAdminExtractionDocumentsBulkReprocessError, type PostAdminExtractionDocumentsBulkReprocessErrors, type PostAdminExtractionDocumentsBulkReprocessResponse, type PostAdminExtractionDocumentsBulkReprocessResponses, type PostAdminExtractionDocumentsFindOrBeginUploadData, type PostAdminExtractionDocumentsFindOrBeginUploadError, type PostAdminExtractionDocumentsFindOrBeginUploadErrors, type PostAdminExtractionDocumentsFindOrBeginUploadResponse, type PostAdminExtractionDocumentsFindOrBeginUploadResponses, 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 PostAdminPlatformPricingConfigsData, type PostAdminPlatformPricingConfigsError, type PostAdminPlatformPricingConfigsErrors, type PostAdminPlatformPricingConfigsResponse, type PostAdminPlatformPricingConfigsResponses, 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 PostAdminSettlementsData, type PostAdminSettlementsError, type PostAdminSettlementsErrors, type PostAdminSettlementsResponse, type PostAdminSettlementsResponses, 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 PostAdminWholesaleAgreementsData, type PostAdminWholesaleAgreementsError, type PostAdminWholesaleAgreementsErrors, type PostAdminWholesaleAgreementsResponse, type PostAdminWholesaleAgreementsResponses, 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 Settlement, type ShadowComparison, type StorageStats, type StorageStatsRequest, StorageStatsRequestSchema, type StorageStatsType, type Subscription, type SystemMessage, type Tenant, type TenantDocumentStats, type TenantMembership, type TenantPricingOverride, type TenantStats, type Thread, type ThreadStats, type ThreadWorkspaceStats, 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 WholesaleAgreement, type Workspace, type WorkspaceDocumentStats, type WorkspaceMembership, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, GptAdmin as default, handleApiError };
|
|
42390
|
+
export { type Account, type AccountCreditRequest, AccountCreditSchema, type AccountDebitRequest, AccountDebitSchema, type Agent, type AgentAdminCreateRequest, AgentAdminCreateSchema, type AgentStats, type AgentTestResult, type AgentTrainingStats, type AgentUsage, type AgentVersion, type AgentVersionComparison, type AgentVersionFieldsInputCreateType, type AgentVersionRevision, 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 ConfigEnum, type ConsentRecord, type Conversation, type CreditPackage, type Customer, type DeleteAdminAgentVersionsByIdData, type DeleteAdminAgentVersionsByIdError, type DeleteAdminAgentVersionsByIdErrors, type DeleteAdminAgentVersionsByIdResponses, type DeleteAdminAgentsByIdTrainingExamplesByExampleIdData, type DeleteAdminAgentsByIdTrainingExamplesByExampleIdError, type DeleteAdminAgentsByIdTrainingExamplesByExampleIdErrors, type DeleteAdminAgentsByIdTrainingExamplesByExampleIdResponse, type DeleteAdminAgentsByIdTrainingExamplesByExampleIdResponses, 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 DeleteAdminLegalDocumentsByIdData, type DeleteAdminLegalDocumentsByIdError, type DeleteAdminLegalDocumentsByIdErrors, type DeleteAdminLegalDocumentsByIdResponses, 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 DeleteAdminPlatformPricingConfigsByIdData, type DeleteAdminPlatformPricingConfigsByIdError, type DeleteAdminPlatformPricingConfigsByIdErrors, type DeleteAdminPlatformPricingConfigsByIdResponses, 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 GetAdminAgentVersionRevisionsByIdData, type GetAdminAgentVersionRevisionsByIdError, type GetAdminAgentVersionRevisionsByIdErrors, type GetAdminAgentVersionRevisionsByIdResponse, type GetAdminAgentVersionRevisionsByIdResponses, type GetAdminAgentVersionRevisionsData, type GetAdminAgentVersionRevisionsError, type GetAdminAgentVersionRevisionsErrors, type GetAdminAgentVersionRevisionsResponse, type GetAdminAgentVersionRevisionsResponses, type GetAdminAgentVersionsByIdData, type GetAdminAgentVersionsByIdError, type GetAdminAgentVersionsByIdErrors, type GetAdminAgentVersionsByIdMetricsData, type GetAdminAgentVersionsByIdMetricsError, type GetAdminAgentVersionsByIdMetricsErrors, type GetAdminAgentVersionsByIdMetricsResponse, type GetAdminAgentVersionsByIdMetricsResponses, type GetAdminAgentVersionsByIdResponse, type GetAdminAgentVersionsByIdResponses, type GetAdminAgentVersionsByIdRevisionsData, type GetAdminAgentVersionsByIdRevisionsError, type GetAdminAgentVersionsByIdRevisionsErrors, type GetAdminAgentVersionsByIdRevisionsResponses, 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 GetAdminAgentsByIdTrainingExamplesData, type GetAdminAgentsByIdTrainingExamplesError, type GetAdminAgentsByIdTrainingExamplesErrors, type GetAdminAgentsByIdTrainingExamplesResponse, type GetAdminAgentsByIdTrainingExamplesResponses, 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 GetAdminConsentRecordsActiveData, type GetAdminConsentRecordsActiveError, type GetAdminConsentRecordsActiveErrors, type GetAdminConsentRecordsActiveResponse, type GetAdminConsentRecordsActiveResponses, type GetAdminConsentRecordsByIdData, type GetAdminConsentRecordsByIdError, type GetAdminConsentRecordsByIdErrors, type GetAdminConsentRecordsByIdResponse, type GetAdminConsentRecordsByIdResponses, type GetAdminConsentRecordsData, type GetAdminConsentRecordsError, type GetAdminConsentRecordsErrors, type GetAdminConsentRecordsResponse, type GetAdminConsentRecordsResponses, 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 GetAdminExtractionConfigEnumsByIdData, type GetAdminExtractionConfigEnumsByIdError, type GetAdminExtractionConfigEnumsByIdErrors, type GetAdminExtractionConfigEnumsByIdResponse, type GetAdminExtractionConfigEnumsByIdResponses, type GetAdminExtractionConfigEnumsData, type GetAdminExtractionConfigEnumsError, type GetAdminExtractionConfigEnumsErrors, type GetAdminExtractionConfigEnumsResponse, type GetAdminExtractionConfigEnumsResponses, 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 GetAdminLegalAcceptancesByIdData, type GetAdminLegalAcceptancesByIdError, type GetAdminLegalAcceptancesByIdErrors, type GetAdminLegalAcceptancesByIdResponse, type GetAdminLegalAcceptancesByIdResponses, type GetAdminLegalAcceptancesData, type GetAdminLegalAcceptancesError, type GetAdminLegalAcceptancesErrors, type GetAdminLegalAcceptancesLatestData, type GetAdminLegalAcceptancesLatestError, type GetAdminLegalAcceptancesLatestErrors, type GetAdminLegalAcceptancesLatestResponse, type GetAdminLegalAcceptancesLatestResponses, type GetAdminLegalAcceptancesResponse, type GetAdminLegalAcceptancesResponses, type GetAdminLegalDocumentsByIdData, type GetAdminLegalDocumentsByIdError, type GetAdminLegalDocumentsByIdErrors, type GetAdminLegalDocumentsByIdResponse, type GetAdminLegalDocumentsByIdResponses, type GetAdminLegalDocumentsByLocaleData, type GetAdminLegalDocumentsByLocaleError, type GetAdminLegalDocumentsByLocaleErrors, type GetAdminLegalDocumentsByLocaleResponse, type GetAdminLegalDocumentsByLocaleResponses, type GetAdminLegalDocumentsData, type GetAdminLegalDocumentsError, type GetAdminLegalDocumentsErrors, type GetAdminLegalDocumentsForApplicationData, type GetAdminLegalDocumentsForApplicationError, type GetAdminLegalDocumentsForApplicationErrors, type GetAdminLegalDocumentsForApplicationResponse, type GetAdminLegalDocumentsForApplicationResponses, type GetAdminLegalDocumentsResponse, type GetAdminLegalDocumentsResponses, 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 GetAdminPlatformPricingConfigsByIdData, type GetAdminPlatformPricingConfigsByIdError, type GetAdminPlatformPricingConfigsByIdErrors, type GetAdminPlatformPricingConfigsByIdResponse, type GetAdminPlatformPricingConfigsByIdResponses, type GetAdminPlatformPricingConfigsData, type GetAdminPlatformPricingConfigsError, type GetAdminPlatformPricingConfigsErrors, type GetAdminPlatformPricingConfigsResponse, type GetAdminPlatformPricingConfigsResponses, 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 GetAdminSettlementsByIdData, type GetAdminSettlementsByIdError, type GetAdminSettlementsByIdErrors, type GetAdminSettlementsByIdResponse, type GetAdminSettlementsByIdResponses, type GetAdminSettlementsData, type GetAdminSettlementsError, type GetAdminSettlementsErrors, type GetAdminSettlementsResponse, type GetAdminSettlementsResponses, 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 GetAdminWholesaleAgreementsByIdData, type GetAdminWholesaleAgreementsByIdError, type GetAdminWholesaleAgreementsByIdErrors, type GetAdminWholesaleAgreementsByIdResponse, type GetAdminWholesaleAgreementsByIdResponses, type GetAdminWholesaleAgreementsData, type GetAdminWholesaleAgreementsError, type GetAdminWholesaleAgreementsErrors, type GetAdminWholesaleAgreementsResponse, type GetAdminWholesaleAgreementsResponses, 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 LegalAcceptance, type LegalDocument, 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 PatchAdminConsentRecordsByIdWithdrawData, type PatchAdminConsentRecordsByIdWithdrawError, type PatchAdminConsentRecordsByIdWithdrawErrors, type PatchAdminConsentRecordsByIdWithdrawResponse, type PatchAdminConsentRecordsByIdWithdrawResponses, type PatchAdminCreditPackagesByIdData, type PatchAdminCreditPackagesByIdError, type PatchAdminCreditPackagesByIdErrors, type PatchAdminCreditPackagesByIdResponse, type PatchAdminCreditPackagesByIdResponses, type PatchAdminCustomersByIdData, type PatchAdminCustomersByIdError, type PatchAdminCustomersByIdErrors, type PatchAdminCustomersByIdResponse, type PatchAdminCustomersByIdResponses, type PatchAdminExtractionConfigEnumsByIdData, type PatchAdminExtractionConfigEnumsByIdError, type PatchAdminExtractionConfigEnumsByIdErrors, type PatchAdminExtractionConfigEnumsByIdResponse, type PatchAdminExtractionConfigEnumsByIdResponses, 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 PatchAdminLegalDocumentsByIdData, type PatchAdminLegalDocumentsByIdError, type PatchAdminLegalDocumentsByIdErrors, type PatchAdminLegalDocumentsByIdPublishData, type PatchAdminLegalDocumentsByIdPublishError, type PatchAdminLegalDocumentsByIdPublishErrors, type PatchAdminLegalDocumentsByIdPublishResponse, type PatchAdminLegalDocumentsByIdPublishResponses, type PatchAdminLegalDocumentsByIdResponse, type PatchAdminLegalDocumentsByIdResponses, type PatchAdminLegalDocumentsByIdUnpublishData, type PatchAdminLegalDocumentsByIdUnpublishError, type PatchAdminLegalDocumentsByIdUnpublishErrors, type PatchAdminLegalDocumentsByIdUnpublishResponse, type PatchAdminLegalDocumentsByIdUnpublishResponses, 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 PatchAdminPlatformPricingConfigsByIdData, type PatchAdminPlatformPricingConfigsByIdError, type PatchAdminPlatformPricingConfigsByIdErrors, type PatchAdminPlatformPricingConfigsByIdResponse, type PatchAdminPlatformPricingConfigsByIdResponses, 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 PatchAdminWholesaleAgreementsByIdData, type PatchAdminWholesaleAgreementsByIdError, type PatchAdminWholesaleAgreementsByIdErrors, type PatchAdminWholesaleAgreementsByIdResponse, type PatchAdminWholesaleAgreementsByIdResponses, 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 PatchAdminWorkspacesByIdPopulateHashesData, type PatchAdminWorkspacesByIdPopulateHashesError, type PatchAdminWorkspacesByIdPopulateHashesErrors, type PatchAdminWorkspacesByIdPopulateHashesResponse, type PatchAdminWorkspacesByIdPopulateHashesResponses, 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 PlatformPricingConfig, 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 PostAdminAgentsByIdAnalyzeTrainingData, type PostAdminAgentsByIdAnalyzeTrainingError, type PostAdminAgentsByIdAnalyzeTrainingErrors, type PostAdminAgentsByIdAnalyzeTrainingResponse, type PostAdminAgentsByIdAnalyzeTrainingResponses, 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 PostAdminAgentsByIdRestoreVersionData, type PostAdminAgentsByIdRestoreVersionError, type PostAdminAgentsByIdRestoreVersionErrors, type PostAdminAgentsByIdRestoreVersionResponse, type PostAdminAgentsByIdRestoreVersionResponses, 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 PostAdminAgentsDiscoverSchemaData, type PostAdminAgentsDiscoverSchemaError, type PostAdminAgentsDiscoverSchemaErrors, type PostAdminAgentsDiscoverSchemaResponse, type PostAdminAgentsDiscoverSchemaResponses, 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 PostAdminConsentRecordsData, type PostAdminConsentRecordsError, type PostAdminConsentRecordsErrors, type PostAdminConsentRecordsResponse, type PostAdminConsentRecordsResponses, 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 PostAdminExtractionConfigEnumsData, type PostAdminExtractionConfigEnumsError, type PostAdminExtractionConfigEnumsErrors, type PostAdminExtractionConfigEnumsResponse, type PostAdminExtractionConfigEnumsResponses, type PostAdminExtractionDocumentsBeginUploadData, type PostAdminExtractionDocumentsBeginUploadError, type PostAdminExtractionDocumentsBeginUploadErrors, type PostAdminExtractionDocumentsBeginUploadResponse, type PostAdminExtractionDocumentsBeginUploadResponses, type PostAdminExtractionDocumentsBulkReprocessData, type PostAdminExtractionDocumentsBulkReprocessError, type PostAdminExtractionDocumentsBulkReprocessErrors, type PostAdminExtractionDocumentsBulkReprocessResponse, type PostAdminExtractionDocumentsBulkReprocessResponses, type PostAdminExtractionDocumentsFindOrBeginUploadData, type PostAdminExtractionDocumentsFindOrBeginUploadError, type PostAdminExtractionDocumentsFindOrBeginUploadErrors, type PostAdminExtractionDocumentsFindOrBeginUploadResponse, type PostAdminExtractionDocumentsFindOrBeginUploadResponses, 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 PostAdminLegalDocumentsData, type PostAdminLegalDocumentsError, type PostAdminLegalDocumentsErrors, type PostAdminLegalDocumentsResponse, type PostAdminLegalDocumentsResponses, 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 PostAdminPlatformPricingConfigsData, type PostAdminPlatformPricingConfigsError, type PostAdminPlatformPricingConfigsErrors, type PostAdminPlatformPricingConfigsResponse, type PostAdminPlatformPricingConfigsResponses, 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 PostAdminSettlementsData, type PostAdminSettlementsError, type PostAdminSettlementsErrors, type PostAdminSettlementsResponse, type PostAdminSettlementsResponses, 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 PostAdminWholesaleAgreementsData, type PostAdminWholesaleAgreementsError, type PostAdminWholesaleAgreementsErrors, type PostAdminWholesaleAgreementsResponse, type PostAdminWholesaleAgreementsResponses, 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 Settlement, type ShadowComparison, type StorageStats, type StorageStatsRequest, StorageStatsRequestSchema, type StorageStatsType, type Subscription, type SystemMessage, type Tenant, type TenantDocumentStats, type TenantMembership, type TenantPricingOverride, type TenantStats, type Thread, type ThreadStats, type ThreadWorkspaceStats, 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 WholesaleAgreement, type Workspace, type WorkspaceDocumentStats, type WorkspaceMembership, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, GptAdmin as default, handleApiError };
|