@gpt-core/admin 0.9.36 → 0.9.37

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 CHANGED
@@ -2482,7 +2482,7 @@ type Tenant = {
2482
2482
  */
2483
2483
  name: string;
2484
2484
  /**
2485
- * Field included by default.
2485
+ * Internal unique identifier (auto-generated with random suffix). Field included by default.
2486
2486
  */
2487
2487
  slug: string;
2488
2488
  /**
@@ -2495,6 +2495,10 @@ type Tenant = {
2495
2495
  training_pricing?: {
2496
2496
  [key: string]: unknown;
2497
2497
  } | null | unknown;
2498
+ /**
2499
+ * Optional user-facing slug for vanity URLs. Field included by default.
2500
+ */
2501
+ vanity_slug?: string | null | unknown;
2498
2502
  };
2499
2503
  id: string;
2500
2504
  /**
@@ -3931,30 +3935,7 @@ type TenantMembership = {
3931
3935
  * A relationships object for a tenant-membership
3932
3936
  */
3933
3937
  relationships?: {
3934
- tenant?: {
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
- };
3938
+ [key: string]: never;
3958
3939
  };
3959
3940
  type: string;
3960
3941
  };
@@ -4084,6 +4065,59 @@ type AuditLog = {
4084
4065
  };
4085
4066
  type: string;
4086
4067
  };
4068
+ /**
4069
+ * A "Resource object" representing a consent_record
4070
+ */
4071
+ type ConsentRecord = {
4072
+ /**
4073
+ * An attributes object for a consent_record
4074
+ */
4075
+ attributes?: {
4076
+ /**
4077
+ * Human-readable description of what was consented to. Field included by default.
4078
+ */
4079
+ description?: string | null | unknown;
4080
+ /**
4081
+ * Field included by default.
4082
+ */
4083
+ granted_at: unknown;
4084
+ /**
4085
+ * Field included by default.
4086
+ */
4087
+ purpose: "ai_document_processing" | "data_analytics" | "marketing_communications" | "third_party_sharing";
4088
+ /**
4089
+ * Field included by default.
4090
+ */
4091
+ status: "granted" | "withdrawn";
4092
+ /**
4093
+ * Field included by default.
4094
+ */
4095
+ user_id: string;
4096
+ /**
4097
+ * Field included by default.
4098
+ */
4099
+ withdrawn_at?: unknown;
4100
+ };
4101
+ id: string;
4102
+ /**
4103
+ * A relationships object for a consent_record
4104
+ */
4105
+ relationships?: {
4106
+ user?: {
4107
+ /**
4108
+ * An identifier for user
4109
+ */
4110
+ data?: {
4111
+ id: string;
4112
+ meta?: {
4113
+ [key: string]: unknown;
4114
+ };
4115
+ type: string;
4116
+ } | null;
4117
+ };
4118
+ };
4119
+ type: string;
4120
+ };
4087
4121
  /**
4088
4122
  * A "Resource object" representing a balance
4089
4123
  */
@@ -4257,6 +4291,75 @@ type PresignedUrl = {
4257
4291
  };
4258
4292
  type: string;
4259
4293
  };
4294
+ /**
4295
+ * A "Resource object" representing a legal_document
4296
+ */
4297
+ type LegalDocument = {
4298
+ /**
4299
+ * An attributes object for a legal_document
4300
+ */
4301
+ attributes?: {
4302
+ /**
4303
+ * Field included by default.
4304
+ */
4305
+ application_id?: string | null | unknown;
4306
+ /**
4307
+ * Markdown content. Field included by default.
4308
+ */
4309
+ content: string;
4310
+ /**
4311
+ * Field included by default.
4312
+ */
4313
+ document_type: "terms_of_service" | "privacy_policy";
4314
+ /**
4315
+ * Field included by default.
4316
+ */
4317
+ is_active: boolean;
4318
+ /**
4319
+ * ISO 639-1 language code. Field included by default.
4320
+ */
4321
+ locale: string;
4322
+ /**
4323
+ * Field included by default.
4324
+ */
4325
+ published_at?: unknown;
4326
+ /**
4327
+ * ISO 3166-1 region code (e.g., EU, BR, US) or nil for default. Field included by default.
4328
+ */
4329
+ region?: string | null | unknown;
4330
+ /**
4331
+ * Field included by default.
4332
+ */
4333
+ requires_acceptance: boolean;
4334
+ /**
4335
+ * Field included by default.
4336
+ */
4337
+ title: string;
4338
+ /**
4339
+ * Field included by default.
4340
+ */
4341
+ version: string;
4342
+ };
4343
+ id: string;
4344
+ /**
4345
+ * A relationships object for a legal_document
4346
+ */
4347
+ relationships?: {
4348
+ application?: {
4349
+ /**
4350
+ * An identifier for application
4351
+ */
4352
+ data?: {
4353
+ id: string;
4354
+ meta?: {
4355
+ [key: string]: unknown;
4356
+ };
4357
+ type: string;
4358
+ } | null;
4359
+ };
4360
+ };
4361
+ type: string;
4362
+ };
4260
4363
  /**
4261
4364
  * A "Resource object" representing a permission_preset
4262
4365
  */
@@ -4377,6 +4480,55 @@ type WorkspaceMembership = {
4377
4480
  };
4378
4481
  type: string;
4379
4482
  };
4483
+ /**
4484
+ * A "Resource object" representing a legal_acceptance
4485
+ */
4486
+ type LegalAcceptance = {
4487
+ /**
4488
+ * An attributes object for a legal_acceptance
4489
+ */
4490
+ attributes?: {
4491
+ /**
4492
+ * Field included by default.
4493
+ */
4494
+ accepted_at: unknown;
4495
+ /**
4496
+ * Field included by default.
4497
+ */
4498
+ context: "registration" | "version_update" | "periodic_reaccept";
4499
+ /**
4500
+ * Field included by default.
4501
+ */
4502
+ document_type: "terms_of_service" | "privacy_policy";
4503
+ /**
4504
+ * Field included by default.
4505
+ */
4506
+ user_id: string;
4507
+ /**
4508
+ * Field included by default.
4509
+ */
4510
+ version: string;
4511
+ };
4512
+ id: string;
4513
+ /**
4514
+ * A relationships object for a legal_acceptance
4515
+ */
4516
+ relationships?: {
4517
+ user?: {
4518
+ /**
4519
+ * An identifier for user
4520
+ */
4521
+ data?: {
4522
+ id: string;
4523
+ meta?: {
4524
+ [key: string]: unknown;
4525
+ };
4526
+ type: string;
4527
+ } | null;
4528
+ };
4529
+ };
4530
+ type: string;
4531
+ };
4380
4532
  /**
4381
4533
  * A "Resource object" representing a config
4382
4534
  */
@@ -5400,18 +5552,7 @@ type Invitation = {
5400
5552
  * A relationships object for a invitation
5401
5553
  */
5402
5554
  relationships?: {
5403
- inviter?: {
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
- };
5555
+ [key: string]: never;
5415
5556
  };
5416
5557
  type: string;
5417
5558
  };
@@ -5446,7 +5587,7 @@ type SystemMessage = {
5446
5587
  /**
5447
5588
  * Field included by default.
5448
5589
  */
5449
- type: "tos" | "welcome" | "announcement";
5590
+ type: "tos" | "privacy_policy" | "welcome" | "announcement";
5450
5591
  /**
5451
5592
  * Field included by default.
5452
5593
  */
@@ -7679,7 +7820,7 @@ type PatchAdminTenantMembershipsByTenantIdByUserIdResponses = {
7679
7820
  */
7680
7821
  200: {
7681
7822
  data?: TenantMembership;
7682
- included?: Array<User | Tenant | UserProfile>;
7823
+ included?: Array<unknown>;
7683
7824
  meta?: {
7684
7825
  [key: string]: unknown;
7685
7826
  };
@@ -10018,8 +10159,21 @@ type GetAdminAgentVersionsByIdRevisionsResponses = {
10018
10159
  */
10019
10160
  200: unknown;
10020
10161
  };
10021
- type GetAdminWorkspaceMembershipsInheritedData = {
10022
- body?: never;
10162
+ type PostAdminObjectsBulkDestroyData = {
10163
+ /**
10164
+ * Request body for the /objects/bulk-destroy operation on object resource
10165
+ */
10166
+ body: {
10167
+ data: {
10168
+ attributes?: {
10169
+ ids: Array<string>;
10170
+ };
10171
+ relationships?: {
10172
+ [key: string]: never;
10173
+ };
10174
+ type?: "object";
10175
+ };
10176
+ };
10023
10177
  headers: {
10024
10178
  /**
10025
10179
  * Application ID for authentication and routing
@@ -10027,17 +10181,7 @@ type GetAdminWorkspaceMembershipsInheritedData = {
10027
10181
  "x-application-key": string;
10028
10182
  };
10029
10183
  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;
10184
+ query?: {
10041
10185
  /**
10042
10186
  * Include related resources in the response. Comma-separated list of relationship names to eager-load.
10043
10187
  */
@@ -10048,11 +10192,10 @@ type GetAdminWorkspaceMembershipsInheritedData = {
10048
10192
  fields?: {
10049
10193
  [key: string]: unknown;
10050
10194
  };
10051
- workspace_id: string;
10052
10195
  };
10053
- url: "/admin/workspace-memberships/inherited";
10196
+ url: "/admin/objects/bulk-destroy";
10054
10197
  };
10055
- type GetAdminWorkspaceMembershipsInheritedErrors = {
10198
+ type PostAdminObjectsBulkDestroyErrors = {
10056
10199
  /**
10057
10200
  * Bad Request - Invalid input data or malformed request
10058
10201
  */
@@ -10082,36 +10225,27 @@ type GetAdminWorkspaceMembershipsInheritedErrors = {
10082
10225
  */
10083
10226
  default: Errors;
10084
10227
  };
10085
- type GetAdminWorkspaceMembershipsInheritedError = GetAdminWorkspaceMembershipsInheritedErrors[keyof GetAdminWorkspaceMembershipsInheritedErrors];
10086
- type GetAdminWorkspaceMembershipsInheritedResponses = {
10228
+ type PostAdminObjectsBulkDestroyError = PostAdminObjectsBulkDestroyErrors[keyof PostAdminObjectsBulkDestroyErrors];
10229
+ type PostAdminObjectsBulkDestroyResponses = {
10087
10230
  /**
10088
10231
  * Success
10089
10232
  */
10090
- 200: {
10091
- /**
10092
- * An array of resource objects representing a workspace-membership
10093
- */
10094
- data?: Array<WorkspaceMembership>;
10095
- included?: Array<User | Workspace | UserProfile>;
10233
+ 201: {
10234
+ data?: _Object;
10235
+ included?: Array<unknown>;
10096
10236
  meta?: {
10097
10237
  [key: string]: unknown;
10098
10238
  };
10099
10239
  };
10100
10240
  };
10101
- type GetAdminWorkspaceMembershipsInheritedResponse = GetAdminWorkspaceMembershipsInheritedResponses[keyof GetAdminWorkspaceMembershipsInheritedResponses];
10102
- type PostAdminObjectsBulkDestroyData = {
10241
+ type PostAdminObjectsBulkDestroyResponse = PostAdminObjectsBulkDestroyResponses[keyof PostAdminObjectsBulkDestroyResponses];
10242
+ type PostAdminWebhookConfigsBulkEnableData = {
10103
10243
  /**
10104
- * Request body for the /objects/bulk-destroy operation on object resource
10244
+ * Request body for the /webhook-configs/bulk-enable operation on webhook_config resource
10105
10245
  */
10106
10246
  body: {
10107
10247
  data: {
10108
- attributes?: {
10109
- ids: Array<string>;
10110
- };
10111
- relationships?: {
10112
- [key: string]: never;
10113
- };
10114
- type?: "object";
10248
+ ids: Array<string>;
10115
10249
  };
10116
10250
  };
10117
10251
  headers: {
@@ -10121,84 +10255,10 @@ type PostAdminObjectsBulkDestroyData = {
10121
10255
  "x-application-key": string;
10122
10256
  };
10123
10257
  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";
10258
+ query?: never;
10259
+ url: "/admin/webhook-configs/bulk-enable";
10137
10260
  };
10138
- type PostAdminObjectsBulkDestroyErrors = {
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 = {
10261
+ type PostAdminWebhookConfigsBulkEnableErrors = {
10202
10262
  /**
10203
10263
  * Bad Request - Invalid input data or malformed request
10204
10264
  */
@@ -12777,7 +12837,7 @@ type GetAdminTenantMembershipsResponses = {
12777
12837
  * An array of resource objects representing a tenant-membership
12778
12838
  */
12779
12839
  data?: Array<TenantMembership>;
12780
- included?: Array<User | Tenant | UserProfile>;
12840
+ included?: Array<unknown>;
12781
12841
  meta?: {
12782
12842
  [key: string]: unknown;
12783
12843
  };
@@ -12866,7 +12926,7 @@ type PostAdminTenantMembershipsResponses = {
12866
12926
  */
12867
12927
  201: {
12868
12928
  data?: TenantMembership;
12869
- included?: Array<User | Tenant | UserProfile>;
12929
+ included?: Array<unknown>;
12870
12930
  meta?: {
12871
12931
  [key: string]: unknown;
12872
12932
  };
@@ -13112,6 +13172,7 @@ type PostAdminUsersAuthRegisterData = {
13112
13172
  password: string;
13113
13173
  password_confirmation: string;
13114
13174
  tenant_name: string;
13175
+ tos_version?: string | unknown;
13115
13176
  };
13116
13177
  relationships?: {
13117
13178
  [key: string]: never;
@@ -14241,7 +14302,7 @@ type GetAdminInvitationsResponses = {
14241
14302
  * An array of resource objects representing a invitation
14242
14303
  */
14243
14304
  data?: Array<Invitation>;
14244
- included?: Array<User>;
14305
+ included?: Array<unknown>;
14245
14306
  meta?: {
14246
14307
  [key: string]: unknown;
14247
14308
  };
@@ -14328,7 +14389,7 @@ type PostAdminInvitationsResponses = {
14328
14389
  */
14329
14390
  201: {
14330
14391
  data?: Invitation;
14331
- included?: Array<User>;
14392
+ included?: Array<unknown>;
14332
14393
  meta?: {
14333
14394
  [key: string]: unknown;
14334
14395
  };
@@ -14654,11 +14715,14 @@ type PostAdminTenantsData = {
14654
14715
  name: string;
14655
14716
  owner_id: string;
14656
14717
  parent_id?: string | unknown;
14657
- slug: string;
14658
14718
  /**
14659
14719
  * Cost in credits for training on a single document
14660
14720
  */
14661
14721
  training_price_credits?: number | unknown;
14722
+ /**
14723
+ * Optional user-facing slug for vanity URLs
14724
+ */
14725
+ vanity_slug?: string | unknown;
14662
14726
  };
14663
14727
  relationships?: {
14664
14728
  [key: string]: never;
@@ -16895,6 +16959,179 @@ type PostAdminAgentVersionsByIdSetSystemFieldsResponses = {
16895
16959
  */
16896
16960
  201: unknown;
16897
16961
  };
16962
+ type GetAdminConsentRecordsData = {
16963
+ body?: never;
16964
+ headers: {
16965
+ /**
16966
+ * Application ID for authentication and routing
16967
+ */
16968
+ "x-application-key": string;
16969
+ };
16970
+ path?: never;
16971
+ query?: {
16972
+ /**
16973
+ * JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
16974
+ */
16975
+ filter?: {
16976
+ [key: string]: unknown;
16977
+ };
16978
+ /**
16979
+ * Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
16980
+ */
16981
+ sort?: string;
16982
+ /**
16983
+ * JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
16984
+ */
16985
+ page?: {
16986
+ [key: string]: unknown;
16987
+ };
16988
+ /**
16989
+ * Include related resources in the response. Comma-separated list of relationship names to eager-load.
16990
+ */
16991
+ include?: string;
16992
+ /**
16993
+ * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
16994
+ */
16995
+ fields?: {
16996
+ [key: string]: unknown;
16997
+ };
16998
+ };
16999
+ url: "/admin/consent-records";
17000
+ };
17001
+ type GetAdminConsentRecordsErrors = {
17002
+ /**
17003
+ * Bad Request - Invalid input data or malformed request
17004
+ */
17005
+ 400: ErrorResponse;
17006
+ /**
17007
+ * Unauthorized - Missing or invalid authentication token
17008
+ */
17009
+ 401: ErrorResponse;
17010
+ /**
17011
+ * Forbidden - Authenticated but not authorized for this resource
17012
+ */
17013
+ 403: ErrorResponse;
17014
+ /**
17015
+ * Not Found - Resource does not exist
17016
+ */
17017
+ 404: ErrorResponse;
17018
+ /**
17019
+ * Too Many Requests - Rate limit exceeded
17020
+ */
17021
+ 429: ErrorResponse;
17022
+ /**
17023
+ * Internal Server Error - Unexpected server error
17024
+ */
17025
+ 500: ErrorResponse;
17026
+ /**
17027
+ * General Error
17028
+ */
17029
+ default: Errors;
17030
+ };
17031
+ type GetAdminConsentRecordsError = GetAdminConsentRecordsErrors[keyof GetAdminConsentRecordsErrors];
17032
+ type GetAdminConsentRecordsResponses = {
17033
+ /**
17034
+ * Success
17035
+ */
17036
+ 200: {
17037
+ /**
17038
+ * An array of resource objects representing a consent_record
17039
+ */
17040
+ data?: Array<ConsentRecord>;
17041
+ included?: Array<unknown>;
17042
+ meta?: {
17043
+ [key: string]: unknown;
17044
+ };
17045
+ };
17046
+ };
17047
+ type GetAdminConsentRecordsResponse = GetAdminConsentRecordsResponses[keyof GetAdminConsentRecordsResponses];
17048
+ type PostAdminConsentRecordsData = {
17049
+ /**
17050
+ * Request body for the /consent-records operation on consent_record resource
17051
+ */
17052
+ body: {
17053
+ data: {
17054
+ attributes?: {
17055
+ /**
17056
+ * Human-readable description of what was consented to
17057
+ */
17058
+ description?: string | unknown;
17059
+ ip_address?: string | unknown;
17060
+ purpose: "ai_document_processing" | "data_analytics" | "marketing_communications" | "third_party_sharing";
17061
+ user_agent?: string | unknown;
17062
+ user_id: string;
17063
+ };
17064
+ relationships?: {
17065
+ [key: string]: never;
17066
+ };
17067
+ type?: "consent_record";
17068
+ };
17069
+ };
17070
+ headers: {
17071
+ /**
17072
+ * Application ID for authentication and routing
17073
+ */
17074
+ "x-application-key": string;
17075
+ };
17076
+ path?: never;
17077
+ query?: {
17078
+ /**
17079
+ * Include related resources in the response. Comma-separated list of relationship names to eager-load.
17080
+ */
17081
+ include?: string;
17082
+ /**
17083
+ * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
17084
+ */
17085
+ fields?: {
17086
+ [key: string]: unknown;
17087
+ };
17088
+ };
17089
+ url: "/admin/consent-records";
17090
+ };
17091
+ type PostAdminConsentRecordsErrors = {
17092
+ /**
17093
+ * Bad Request - Invalid input data or malformed request
17094
+ */
17095
+ 400: ErrorResponse;
17096
+ /**
17097
+ * Unauthorized - Missing or invalid authentication token
17098
+ */
17099
+ 401: ErrorResponse;
17100
+ /**
17101
+ * Forbidden - Authenticated but not authorized for this resource
17102
+ */
17103
+ 403: ErrorResponse;
17104
+ /**
17105
+ * Not Found - Resource does not exist
17106
+ */
17107
+ 404: ErrorResponse;
17108
+ /**
17109
+ * Too Many Requests - Rate limit exceeded
17110
+ */
17111
+ 429: ErrorResponse;
17112
+ /**
17113
+ * Internal Server Error - Unexpected server error
17114
+ */
17115
+ 500: ErrorResponse;
17116
+ /**
17117
+ * General Error
17118
+ */
17119
+ default: Errors;
17120
+ };
17121
+ type PostAdminConsentRecordsError = PostAdminConsentRecordsErrors[keyof PostAdminConsentRecordsErrors];
17122
+ type PostAdminConsentRecordsResponses = {
17123
+ /**
17124
+ * Success
17125
+ */
17126
+ 201: {
17127
+ data?: ConsentRecord;
17128
+ included?: Array<unknown>;
17129
+ meta?: {
17130
+ [key: string]: unknown;
17131
+ };
17132
+ };
17133
+ };
17134
+ type PostAdminConsentRecordsResponse = PostAdminConsentRecordsResponses[keyof PostAdminConsentRecordsResponses];
16898
17135
  type GetAdminMessagesSemanticSearchData = {
16899
17136
  body?: never;
16900
17137
  headers: {
@@ -17044,28 +17281,109 @@ type GetAdminSearchStatsResponses = {
17044
17281
  };
17045
17282
  };
17046
17283
  type GetAdminSearchStatsResponse = GetAdminSearchStatsResponses[keyof GetAdminSearchStatsResponses];
17047
- type PostAdminAgentVersionsByIdAddSystemFieldData = {
17048
- /**
17049
- * Request body for the /agent-versions/:id/add-system-field operation on agent_version resource
17050
- */
17051
- body: {
17052
- data: {
17053
- system_field_name: string;
17054
- };
17055
- };
17284
+ type GetAdminConsentRecordsActiveData = {
17285
+ body?: never;
17056
17286
  headers: {
17057
17287
  /**
17058
17288
  * Application ID for authentication and routing
17059
17289
  */
17060
17290
  "x-application-key": string;
17061
17291
  };
17062
- path: {
17063
- id: string;
17292
+ path?: never;
17293
+ query: {
17294
+ /**
17295
+ * JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
17296
+ */
17297
+ filter?: {
17298
+ [key: string]: unknown;
17299
+ };
17300
+ /**
17301
+ * Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
17302
+ */
17303
+ sort?: string;
17304
+ /**
17305
+ * Include related resources in the response. Comma-separated list of relationship names to eager-load.
17306
+ */
17307
+ include?: string;
17308
+ /**
17309
+ * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
17310
+ */
17311
+ fields?: {
17312
+ [key: string]: unknown;
17313
+ };
17314
+ user_id: string;
17064
17315
  };
17065
- query?: never;
17066
- url: "/admin/agent-versions/{id}/add-system-field";
17316
+ url: "/admin/consent-records/active";
17067
17317
  };
17068
- type PostAdminAgentVersionsByIdAddSystemFieldErrors = {
17318
+ type GetAdminConsentRecordsActiveErrors = {
17319
+ /**
17320
+ * Bad Request - Invalid input data or malformed request
17321
+ */
17322
+ 400: ErrorResponse;
17323
+ /**
17324
+ * Unauthorized - Missing or invalid authentication token
17325
+ */
17326
+ 401: ErrorResponse;
17327
+ /**
17328
+ * Forbidden - Authenticated but not authorized for this resource
17329
+ */
17330
+ 403: ErrorResponse;
17331
+ /**
17332
+ * Not Found - Resource does not exist
17333
+ */
17334
+ 404: ErrorResponse;
17335
+ /**
17336
+ * Too Many Requests - Rate limit exceeded
17337
+ */
17338
+ 429: ErrorResponse;
17339
+ /**
17340
+ * Internal Server Error - Unexpected server error
17341
+ */
17342
+ 500: ErrorResponse;
17343
+ /**
17344
+ * General Error
17345
+ */
17346
+ default: Errors;
17347
+ };
17348
+ type GetAdminConsentRecordsActiveError = GetAdminConsentRecordsActiveErrors[keyof GetAdminConsentRecordsActiveErrors];
17349
+ type GetAdminConsentRecordsActiveResponses = {
17350
+ /**
17351
+ * Success
17352
+ */
17353
+ 200: {
17354
+ /**
17355
+ * An array of resource objects representing a consent_record
17356
+ */
17357
+ data?: Array<ConsentRecord>;
17358
+ included?: Array<unknown>;
17359
+ meta?: {
17360
+ [key: string]: unknown;
17361
+ };
17362
+ };
17363
+ };
17364
+ type GetAdminConsentRecordsActiveResponse = GetAdminConsentRecordsActiveResponses[keyof GetAdminConsentRecordsActiveResponses];
17365
+ type PostAdminAgentVersionsByIdAddSystemFieldData = {
17366
+ /**
17367
+ * Request body for the /agent-versions/:id/add-system-field operation on agent_version resource
17368
+ */
17369
+ body: {
17370
+ data: {
17371
+ system_field_name: string;
17372
+ };
17373
+ };
17374
+ headers: {
17375
+ /**
17376
+ * Application ID for authentication and routing
17377
+ */
17378
+ "x-application-key": string;
17379
+ };
17380
+ path: {
17381
+ id: string;
17382
+ };
17383
+ query?: never;
17384
+ url: "/admin/agent-versions/{id}/add-system-field";
17385
+ };
17386
+ type PostAdminAgentVersionsByIdAddSystemFieldErrors = {
17069
17387
  /**
17070
17388
  * Bad Request - Invalid input data or malformed request
17071
17389
  */
@@ -19787,76 +20105,7 @@ type PatchAdminWalletCreditsResponses = {
19787
20105
  };
19788
20106
  };
19789
20107
  type PatchAdminWalletCreditsResponse = PatchAdminWalletCreditsResponses[keyof PatchAdminWalletCreditsResponses];
19790
- type GetAdminCreditPackagesSlugBySlugData = {
19791
- body?: never;
19792
- headers: {
19793
- /**
19794
- * Application ID for authentication and routing
19795
- */
19796
- "x-application-key": string;
19797
- };
19798
- path: {
19799
- slug: string;
19800
- };
19801
- query?: {
19802
- /**
19803
- * Include related resources in the response. Comma-separated list of relationship names to eager-load.
19804
- */
19805
- include?: string;
19806
- /**
19807
- * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
19808
- */
19809
- fields?: {
19810
- [key: string]: unknown;
19811
- };
19812
- };
19813
- url: "/admin/credit-packages/slug/{slug}";
19814
- };
19815
- type GetAdminCreditPackagesSlugBySlugErrors = {
19816
- /**
19817
- * Bad Request - Invalid input data or malformed request
19818
- */
19819
- 400: ErrorResponse;
19820
- /**
19821
- * Unauthorized - Missing or invalid authentication token
19822
- */
19823
- 401: ErrorResponse;
19824
- /**
19825
- * Forbidden - Authenticated but not authorized for this resource
19826
- */
19827
- 403: ErrorResponse;
19828
- /**
19829
- * Not Found - Resource does not exist
19830
- */
19831
- 404: ErrorResponse;
19832
- /**
19833
- * Too Many Requests - Rate limit exceeded
19834
- */
19835
- 429: ErrorResponse;
19836
- /**
19837
- * Internal Server Error - Unexpected server error
19838
- */
19839
- 500: ErrorResponse;
19840
- /**
19841
- * General Error
19842
- */
19843
- default: Errors;
19844
- };
19845
- type GetAdminCreditPackagesSlugBySlugError = GetAdminCreditPackagesSlugBySlugErrors[keyof GetAdminCreditPackagesSlugBySlugErrors];
19846
- type GetAdminCreditPackagesSlugBySlugResponses = {
19847
- /**
19848
- * Success
19849
- */
19850
- 200: {
19851
- data?: CreditPackage;
19852
- included?: Array<unknown>;
19853
- meta?: {
19854
- [key: string]: unknown;
19855
- };
19856
- };
19857
- };
19858
- type GetAdminCreditPackagesSlugBySlugResponse = GetAdminCreditPackagesSlugBySlugResponses[keyof GetAdminCreditPackagesSlugBySlugResponses];
19859
- type GetAdminAccountsData = {
20108
+ type GetAdminLegalDocumentsForApplicationData = {
19860
20109
  body?: never;
19861
20110
  headers: {
19862
20111
  /**
@@ -19865,93 +20114,7 @@ type GetAdminAccountsData = {
19865
20114
  "x-application-key": string;
19866
20115
  };
19867
20116
  path?: never;
19868
- query?: {
19869
- /**
19870
- * JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
19871
- */
19872
- filter?: {
19873
- [key: string]: unknown;
19874
- };
19875
- /**
19876
- * Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
19877
- */
19878
- sort?: string;
19879
- /**
19880
- * JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
19881
- */
19882
- page?: {
19883
- [key: string]: unknown;
19884
- };
19885
- /**
19886
- * Include related resources in the response. Comma-separated list of relationship names to eager-load.
19887
- */
19888
- include?: string;
19889
- /**
19890
- * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
19891
- */
19892
- fields?: {
19893
- [key: string]: unknown;
19894
- };
19895
- };
19896
- url: "/admin/accounts";
19897
- };
19898
- type GetAdminAccountsErrors = {
19899
- /**
19900
- * Bad Request - Invalid input data or malformed request
19901
- */
19902
- 400: ErrorResponse;
19903
- /**
19904
- * Unauthorized - Missing or invalid authentication token
19905
- */
19906
- 401: ErrorResponse;
19907
- /**
19908
- * Forbidden - Authenticated but not authorized for this resource
19909
- */
19910
- 403: ErrorResponse;
19911
- /**
19912
- * Not Found - Resource does not exist
19913
- */
19914
- 404: ErrorResponse;
19915
- /**
19916
- * Too Many Requests - Rate limit exceeded
19917
- */
19918
- 429: ErrorResponse;
19919
- /**
19920
- * Internal Server Error - Unexpected server error
19921
- */
19922
- 500: ErrorResponse;
19923
- /**
19924
- * General Error
19925
- */
19926
- default: Errors;
19927
- };
19928
- type GetAdminAccountsError = GetAdminAccountsErrors[keyof GetAdminAccountsErrors];
19929
- type GetAdminAccountsResponses = {
19930
- /**
19931
- * Success
19932
- */
19933
- 200: {
19934
- /**
19935
- * An array of resource objects representing a account
19936
- */
19937
- data?: Array<Account>;
19938
- included?: Array<unknown>;
19939
- meta?: {
19940
- [key: string]: unknown;
19941
- };
19942
- };
19943
- };
19944
- type GetAdminAccountsResponse = GetAdminAccountsResponses[keyof GetAdminAccountsResponses];
19945
- type GetAdminStorageStatsData = {
19946
- body?: never;
19947
- headers: {
19948
- /**
19949
- * Application ID for authentication and routing
19950
- */
19951
- "x-application-key": string;
19952
- };
19953
- path?: never;
19954
- query?: {
20117
+ query: {
19955
20118
  /**
19956
20119
  * JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
19957
20120
  */
@@ -19972,10 +20135,11 @@ type GetAdminStorageStatsData = {
19972
20135
  fields?: {
19973
20136
  [key: string]: unknown;
19974
20137
  };
20138
+ application_id: string;
19975
20139
  };
19976
- url: "/admin/storage/stats";
20140
+ url: "/admin/legal-documents/for-application";
19977
20141
  };
19978
- type GetAdminStorageStatsErrors = {
20142
+ type GetAdminLegalDocumentsForApplicationErrors = {
19979
20143
  /**
19980
20144
  * Bad Request - Invalid input data or malformed request
19981
20145
  */
@@ -20005,24 +20169,24 @@ type GetAdminStorageStatsErrors = {
20005
20169
  */
20006
20170
  default: Errors;
20007
20171
  };
20008
- type GetAdminStorageStatsError = GetAdminStorageStatsErrors[keyof GetAdminStorageStatsErrors];
20009
- type GetAdminStorageStatsResponses = {
20172
+ type GetAdminLegalDocumentsForApplicationError = GetAdminLegalDocumentsForApplicationErrors[keyof GetAdminLegalDocumentsForApplicationErrors];
20173
+ type GetAdminLegalDocumentsForApplicationResponses = {
20010
20174
  /**
20011
20175
  * Success
20012
20176
  */
20013
20177
  200: {
20014
20178
  /**
20015
- * An array of resource objects representing a storage_stats
20179
+ * An array of resource objects representing a legal_document
20016
20180
  */
20017
- data?: Array<StorageStats>;
20181
+ data?: Array<LegalDocument>;
20018
20182
  included?: Array<unknown>;
20019
20183
  meta?: {
20020
20184
  [key: string]: unknown;
20021
20185
  };
20022
20186
  };
20023
20187
  };
20024
- type GetAdminStorageStatsResponse = GetAdminStorageStatsResponses[keyof GetAdminStorageStatsResponses];
20025
- type GetAdminAgentsByIdStatsData = {
20188
+ type GetAdminLegalDocumentsForApplicationResponse = GetAdminLegalDocumentsForApplicationResponses[keyof GetAdminLegalDocumentsForApplicationResponses];
20189
+ type GetAdminCreditPackagesSlugBySlugData = {
20026
20190
  body?: never;
20027
20191
  headers: {
20028
20192
  /**
@@ -20031,10 +20195,7 @@ type GetAdminAgentsByIdStatsData = {
20031
20195
  "x-application-key": string;
20032
20196
  };
20033
20197
  path: {
20034
- /**
20035
- * Agent ID from URL path
20036
- */
20037
- id: string;
20198
+ slug: string;
20038
20199
  };
20039
20200
  query?: {
20040
20201
  /**
@@ -20048,9 +20209,9 @@ type GetAdminAgentsByIdStatsData = {
20048
20209
  [key: string]: unknown;
20049
20210
  };
20050
20211
  };
20051
- url: "/admin/agents/{id}/stats";
20212
+ url: "/admin/credit-packages/slug/{slug}";
20052
20213
  };
20053
- type GetAdminAgentsByIdStatsErrors = {
20214
+ type GetAdminCreditPackagesSlugBySlugErrors = {
20054
20215
  /**
20055
20216
  * Bad Request - Invalid input data or malformed request
20056
20217
  */
@@ -20080,21 +20241,21 @@ type GetAdminAgentsByIdStatsErrors = {
20080
20241
  */
20081
20242
  default: Errors;
20082
20243
  };
20083
- type GetAdminAgentsByIdStatsError = GetAdminAgentsByIdStatsErrors[keyof GetAdminAgentsByIdStatsErrors];
20084
- type GetAdminAgentsByIdStatsResponses = {
20244
+ type GetAdminCreditPackagesSlugBySlugError = GetAdminCreditPackagesSlugBySlugErrors[keyof GetAdminCreditPackagesSlugBySlugErrors];
20245
+ type GetAdminCreditPackagesSlugBySlugResponses = {
20085
20246
  /**
20086
20247
  * Success
20087
20248
  */
20088
20249
  200: {
20089
- data?: AgentStats;
20250
+ data?: CreditPackage;
20090
20251
  included?: Array<unknown>;
20091
20252
  meta?: {
20092
20253
  [key: string]: unknown;
20093
20254
  };
20094
20255
  };
20095
20256
  };
20096
- type GetAdminAgentsByIdStatsResponse = GetAdminAgentsByIdStatsResponses[keyof GetAdminAgentsByIdStatsResponses];
20097
- type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedData = {
20257
+ type GetAdminCreditPackagesSlugBySlugResponse = GetAdminCreditPackagesSlugBySlugResponses[keyof GetAdminCreditPackagesSlugBySlugResponses];
20258
+ type GetAdminAccountsData = {
20098
20259
  body?: never;
20099
20260
  headers: {
20100
20261
  /**
@@ -20102,9 +20263,7 @@ type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedData = {
20102
20263
  */
20103
20264
  "x-application-key": string;
20104
20265
  };
20105
- path: {
20106
- workspace_id: string;
20107
- };
20266
+ path?: never;
20108
20267
  query?: {
20109
20268
  /**
20110
20269
  * JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
@@ -20132,11 +20291,251 @@ type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedData = {
20132
20291
  fields?: {
20133
20292
  [key: string]: unknown;
20134
20293
  };
20135
- limit?: number;
20136
20294
  };
20137
- url: "/admin/extraction/documents/workspace/{workspace_id}/trashed";
20295
+ url: "/admin/accounts";
20138
20296
  };
20139
- type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedErrors = {
20297
+ type GetAdminAccountsErrors = {
20298
+ /**
20299
+ * Bad Request - Invalid input data or malformed request
20300
+ */
20301
+ 400: ErrorResponse;
20302
+ /**
20303
+ * Unauthorized - Missing or invalid authentication token
20304
+ */
20305
+ 401: ErrorResponse;
20306
+ /**
20307
+ * Forbidden - Authenticated but not authorized for this resource
20308
+ */
20309
+ 403: ErrorResponse;
20310
+ /**
20311
+ * Not Found - Resource does not exist
20312
+ */
20313
+ 404: ErrorResponse;
20314
+ /**
20315
+ * Too Many Requests - Rate limit exceeded
20316
+ */
20317
+ 429: ErrorResponse;
20318
+ /**
20319
+ * Internal Server Error - Unexpected server error
20320
+ */
20321
+ 500: ErrorResponse;
20322
+ /**
20323
+ * General Error
20324
+ */
20325
+ default: Errors;
20326
+ };
20327
+ type GetAdminAccountsError = GetAdminAccountsErrors[keyof GetAdminAccountsErrors];
20328
+ type GetAdminAccountsResponses = {
20329
+ /**
20330
+ * Success
20331
+ */
20332
+ 200: {
20333
+ /**
20334
+ * An array of resource objects representing a account
20335
+ */
20336
+ data?: Array<Account>;
20337
+ included?: Array<unknown>;
20338
+ meta?: {
20339
+ [key: string]: unknown;
20340
+ };
20341
+ };
20342
+ };
20343
+ type GetAdminAccountsResponse = GetAdminAccountsResponses[keyof GetAdminAccountsResponses];
20344
+ type GetAdminStorageStatsData = {
20345
+ body?: never;
20346
+ headers: {
20347
+ /**
20348
+ * Application ID for authentication and routing
20349
+ */
20350
+ "x-application-key": string;
20351
+ };
20352
+ path?: never;
20353
+ query?: {
20354
+ /**
20355
+ * JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
20356
+ */
20357
+ filter?: {
20358
+ [key: string]: unknown;
20359
+ };
20360
+ /**
20361
+ * Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
20362
+ */
20363
+ sort?: string;
20364
+ /**
20365
+ * Include related resources in the response. Comma-separated list of relationship names to eager-load.
20366
+ */
20367
+ include?: string;
20368
+ /**
20369
+ * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
20370
+ */
20371
+ fields?: {
20372
+ [key: string]: unknown;
20373
+ };
20374
+ };
20375
+ url: "/admin/storage/stats";
20376
+ };
20377
+ type GetAdminStorageStatsErrors = {
20378
+ /**
20379
+ * Bad Request - Invalid input data or malformed request
20380
+ */
20381
+ 400: ErrorResponse;
20382
+ /**
20383
+ * Unauthorized - Missing or invalid authentication token
20384
+ */
20385
+ 401: ErrorResponse;
20386
+ /**
20387
+ * Forbidden - Authenticated but not authorized for this resource
20388
+ */
20389
+ 403: ErrorResponse;
20390
+ /**
20391
+ * Not Found - Resource does not exist
20392
+ */
20393
+ 404: ErrorResponse;
20394
+ /**
20395
+ * Too Many Requests - Rate limit exceeded
20396
+ */
20397
+ 429: ErrorResponse;
20398
+ /**
20399
+ * Internal Server Error - Unexpected server error
20400
+ */
20401
+ 500: ErrorResponse;
20402
+ /**
20403
+ * General Error
20404
+ */
20405
+ default: Errors;
20406
+ };
20407
+ type GetAdminStorageStatsError = GetAdminStorageStatsErrors[keyof GetAdminStorageStatsErrors];
20408
+ type GetAdminStorageStatsResponses = {
20409
+ /**
20410
+ * Success
20411
+ */
20412
+ 200: {
20413
+ /**
20414
+ * An array of resource objects representing a storage_stats
20415
+ */
20416
+ data?: Array<StorageStats>;
20417
+ included?: Array<unknown>;
20418
+ meta?: {
20419
+ [key: string]: unknown;
20420
+ };
20421
+ };
20422
+ };
20423
+ type GetAdminStorageStatsResponse = GetAdminStorageStatsResponses[keyof GetAdminStorageStatsResponses];
20424
+ type GetAdminAgentsByIdStatsData = {
20425
+ body?: never;
20426
+ headers: {
20427
+ /**
20428
+ * Application ID for authentication and routing
20429
+ */
20430
+ "x-application-key": string;
20431
+ };
20432
+ path: {
20433
+ /**
20434
+ * Agent ID from URL path
20435
+ */
20436
+ id: string;
20437
+ };
20438
+ query?: {
20439
+ /**
20440
+ * Include related resources in the response. Comma-separated list of relationship names to eager-load.
20441
+ */
20442
+ include?: string;
20443
+ /**
20444
+ * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
20445
+ */
20446
+ fields?: {
20447
+ [key: string]: unknown;
20448
+ };
20449
+ };
20450
+ url: "/admin/agents/{id}/stats";
20451
+ };
20452
+ type GetAdminAgentsByIdStatsErrors = {
20453
+ /**
20454
+ * Bad Request - Invalid input data or malformed request
20455
+ */
20456
+ 400: ErrorResponse;
20457
+ /**
20458
+ * Unauthorized - Missing or invalid authentication token
20459
+ */
20460
+ 401: ErrorResponse;
20461
+ /**
20462
+ * Forbidden - Authenticated but not authorized for this resource
20463
+ */
20464
+ 403: ErrorResponse;
20465
+ /**
20466
+ * Not Found - Resource does not exist
20467
+ */
20468
+ 404: ErrorResponse;
20469
+ /**
20470
+ * Too Many Requests - Rate limit exceeded
20471
+ */
20472
+ 429: ErrorResponse;
20473
+ /**
20474
+ * Internal Server Error - Unexpected server error
20475
+ */
20476
+ 500: ErrorResponse;
20477
+ /**
20478
+ * General Error
20479
+ */
20480
+ default: Errors;
20481
+ };
20482
+ type GetAdminAgentsByIdStatsError = GetAdminAgentsByIdStatsErrors[keyof GetAdminAgentsByIdStatsErrors];
20483
+ type GetAdminAgentsByIdStatsResponses = {
20484
+ /**
20485
+ * Success
20486
+ */
20487
+ 200: {
20488
+ data?: AgentStats;
20489
+ included?: Array<unknown>;
20490
+ meta?: {
20491
+ [key: string]: unknown;
20492
+ };
20493
+ };
20494
+ };
20495
+ type GetAdminAgentsByIdStatsResponse = GetAdminAgentsByIdStatsResponses[keyof GetAdminAgentsByIdStatsResponses];
20496
+ type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedData = {
20497
+ body?: never;
20498
+ headers: {
20499
+ /**
20500
+ * Application ID for authentication and routing
20501
+ */
20502
+ "x-application-key": string;
20503
+ };
20504
+ path: {
20505
+ workspace_id: string;
20506
+ };
20507
+ query?: {
20508
+ /**
20509
+ * JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
20510
+ */
20511
+ filter?: {
20512
+ [key: string]: unknown;
20513
+ };
20514
+ /**
20515
+ * Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
20516
+ */
20517
+ sort?: string;
20518
+ /**
20519
+ * JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
20520
+ */
20521
+ page?: {
20522
+ [key: string]: unknown;
20523
+ };
20524
+ /**
20525
+ * Include related resources in the response. Comma-separated list of relationship names to eager-load.
20526
+ */
20527
+ include?: string;
20528
+ /**
20529
+ * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
20530
+ */
20531
+ fields?: {
20532
+ [key: string]: unknown;
20533
+ };
20534
+ limit?: number;
20535
+ };
20536
+ url: "/admin/extraction/documents/workspace/{workspace_id}/trashed";
20537
+ };
20538
+ type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedErrors = {
20140
20539
  /**
20141
20540
  * Bad Request - Invalid input data or malformed request
20142
20541
  */
@@ -20872,7 +21271,7 @@ type PatchAdminInvitationsByIdAcceptByUserResponses = {
20872
21271
  */
20873
21272
  200: {
20874
21273
  data?: Invitation;
20875
- included?: Array<User>;
21274
+ included?: Array<unknown>;
20876
21275
  meta?: {
20877
21276
  [key: string]: unknown;
20878
21277
  };
@@ -21868,6 +22267,10 @@ type PatchAdminUserProfilesByIdAcceptTosData = {
21868
22267
  body: {
21869
22268
  data: {
21870
22269
  attributes?: {
22270
+ /**
22271
+ * Optional: accept privacy policy simultaneously
22272
+ */
22273
+ privacy_policy_version?: string | unknown;
21871
22274
  /**
21872
22275
  * The ToS version being accepted
21873
22276
  */
@@ -22230,7 +22633,7 @@ type PatchAdminInvitationsByIdRevokeResponses = {
22230
22633
  */
22231
22634
  200: {
22232
22635
  data?: Invitation;
22233
- included?: Array<User>;
22636
+ included?: Array<unknown>;
22234
22637
  meta?: {
22235
22638
  [key: string]: unknown;
22236
22639
  };
@@ -22509,7 +22912,7 @@ type PostAdminTenantsByIdRemoveStorageResponses = {
22509
22912
  };
22510
22913
  };
22511
22914
  type PostAdminTenantsByIdRemoveStorageResponse = PostAdminTenantsByIdRemoveStorageResponses[keyof PostAdminTenantsByIdRemoveStorageResponses];
22512
- type GetAdminAgentsByIdUsageData = {
22915
+ type GetAdminLegalDocumentsData = {
22513
22916
  body?: never;
22514
22917
  headers: {
22515
22918
  /**
@@ -22517,13 +22920,24 @@ type GetAdminAgentsByIdUsageData = {
22517
22920
  */
22518
22921
  "x-application-key": string;
22519
22922
  };
22520
- path: {
22923
+ path?: never;
22924
+ query?: {
22521
22925
  /**
22522
- * Agent ID from URL path
22926
+ * JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
22523
22927
  */
22524
- id: string;
22525
- };
22526
- query?: {
22928
+ filter?: {
22929
+ [key: string]: unknown;
22930
+ };
22931
+ /**
22932
+ * Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
22933
+ */
22934
+ sort?: string;
22935
+ /**
22936
+ * JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
22937
+ */
22938
+ page?: {
22939
+ [key: string]: unknown;
22940
+ };
22527
22941
  /**
22528
22942
  * Include related resources in the response. Comma-separated list of relationship names to eager-load.
22529
22943
  */
@@ -22535,9 +22949,9 @@ type GetAdminAgentsByIdUsageData = {
22535
22949
  [key: string]: unknown;
22536
22950
  };
22537
22951
  };
22538
- url: "/admin/agents/{id}/usage";
22952
+ url: "/admin/legal-documents";
22539
22953
  };
22540
- type GetAdminAgentsByIdUsageErrors = {
22954
+ type GetAdminLegalDocumentsErrors = {
22541
22955
  /**
22542
22956
  * Bad Request - Invalid input data or malformed request
22543
22957
  */
@@ -22567,31 +22981,61 @@ type GetAdminAgentsByIdUsageErrors = {
22567
22981
  */
22568
22982
  default: Errors;
22569
22983
  };
22570
- type GetAdminAgentsByIdUsageError = GetAdminAgentsByIdUsageErrors[keyof GetAdminAgentsByIdUsageErrors];
22571
- type GetAdminAgentsByIdUsageResponses = {
22984
+ type GetAdminLegalDocumentsError = GetAdminLegalDocumentsErrors[keyof GetAdminLegalDocumentsErrors];
22985
+ type GetAdminLegalDocumentsResponses = {
22572
22986
  /**
22573
22987
  * Success
22574
22988
  */
22575
22989
  200: {
22576
- data?: AgentUsage;
22990
+ /**
22991
+ * An array of resource objects representing a legal_document
22992
+ */
22993
+ data?: Array<LegalDocument>;
22577
22994
  included?: Array<unknown>;
22578
22995
  meta?: {
22579
22996
  [key: string]: unknown;
22580
22997
  };
22581
22998
  };
22582
22999
  };
22583
- type GetAdminAgentsByIdUsageResponse = GetAdminAgentsByIdUsageResponses[keyof GetAdminAgentsByIdUsageResponses];
22584
- type GetAdminPricingRulesByIdData = {
22585
- body?: never;
23000
+ type GetAdminLegalDocumentsResponse = GetAdminLegalDocumentsResponses[keyof GetAdminLegalDocumentsResponses];
23001
+ type PostAdminLegalDocumentsData = {
23002
+ /**
23003
+ * Request body for the /legal-documents operation on legal_document resource
23004
+ */
23005
+ body: {
23006
+ data: {
23007
+ attributes?: {
23008
+ application_id?: string | unknown;
23009
+ /**
23010
+ * Markdown content
23011
+ */
23012
+ content: string;
23013
+ document_type: "terms_of_service" | "privacy_policy";
23014
+ is_active?: boolean | unknown;
23015
+ /**
23016
+ * ISO 639-1 language code
23017
+ */
23018
+ locale?: string | unknown;
23019
+ /**
23020
+ * ISO 3166-1 region code (e.g., EU, BR, US) or nil for default
23021
+ */
23022
+ region?: string | unknown;
23023
+ title: string;
23024
+ version: string;
23025
+ };
23026
+ relationships?: {
23027
+ [key: string]: never;
23028
+ };
23029
+ type?: "legal_document";
23030
+ };
23031
+ };
22586
23032
  headers: {
22587
23033
  /**
22588
23034
  * Application ID for authentication and routing
22589
23035
  */
22590
23036
  "x-application-key": string;
22591
23037
  };
22592
- path: {
22593
- id: string;
22594
- };
23038
+ path?: never;
22595
23039
  query?: {
22596
23040
  /**
22597
23041
  * Include related resources in the response. Comma-separated list of relationship names to eager-load.
@@ -22604,9 +23048,9 @@ type GetAdminPricingRulesByIdData = {
22604
23048
  [key: string]: unknown;
22605
23049
  };
22606
23050
  };
22607
- url: "/admin/pricing-rules/{id}";
23051
+ url: "/admin/legal-documents";
22608
23052
  };
22609
- type GetAdminPricingRulesByIdErrors = {
23053
+ type PostAdminLegalDocumentsErrors = {
22610
23054
  /**
22611
23055
  * Bad Request - Invalid input data or malformed request
22612
23056
  */
@@ -22636,36 +23080,22 @@ type GetAdminPricingRulesByIdErrors = {
22636
23080
  */
22637
23081
  default: Errors;
22638
23082
  };
22639
- type GetAdminPricingRulesByIdError = GetAdminPricingRulesByIdErrors[keyof GetAdminPricingRulesByIdErrors];
22640
- type GetAdminPricingRulesByIdResponses = {
23083
+ type PostAdminLegalDocumentsError = PostAdminLegalDocumentsErrors[keyof PostAdminLegalDocumentsErrors];
23084
+ type PostAdminLegalDocumentsResponses = {
22641
23085
  /**
22642
23086
  * Success
22643
23087
  */
22644
- 200: {
22645
- data?: PricingRule;
23088
+ 201: {
23089
+ data?: LegalDocument;
22646
23090
  included?: Array<unknown>;
22647
23091
  meta?: {
22648
23092
  [key: string]: unknown;
22649
23093
  };
22650
23094
  };
22651
23095
  };
22652
- type GetAdminPricingRulesByIdResponse = GetAdminPricingRulesByIdResponses[keyof GetAdminPricingRulesByIdResponses];
22653
- type PatchAdminPricingRulesByIdData = {
22654
- /**
22655
- * Request body for the /pricing-rules/:id operation on pricing_rule resource
22656
- */
22657
- body?: {
22658
- data: {
22659
- attributes?: {
22660
- cost_credits?: string | unknown;
22661
- };
22662
- id: string;
22663
- relationships?: {
22664
- [key: string]: never;
22665
- };
22666
- type?: "pricing_rule";
22667
- };
22668
- };
23096
+ type PostAdminLegalDocumentsResponse = PostAdminLegalDocumentsResponses[keyof PostAdminLegalDocumentsResponses];
23097
+ type GetAdminAgentsByIdUsageData = {
23098
+ body?: never;
22669
23099
  headers: {
22670
23100
  /**
22671
23101
  * Application ID for authentication and routing
@@ -22673,6 +23103,9 @@ type PatchAdminPricingRulesByIdData = {
22673
23103
  "x-application-key": string;
22674
23104
  };
22675
23105
  path: {
23106
+ /**
23107
+ * Agent ID from URL path
23108
+ */
22676
23109
  id: string;
22677
23110
  };
22678
23111
  query?: {
@@ -22687,9 +23120,9 @@ type PatchAdminPricingRulesByIdData = {
22687
23120
  [key: string]: unknown;
22688
23121
  };
22689
23122
  };
22690
- url: "/admin/pricing-rules/{id}";
23123
+ url: "/admin/agents/{id}/usage";
22691
23124
  };
22692
- type PatchAdminPricingRulesByIdErrors = {
23125
+ type GetAdminAgentsByIdUsageErrors = {
22693
23126
  /**
22694
23127
  * Bad Request - Invalid input data or malformed request
22695
23128
  */
@@ -22719,29 +23152,45 @@ type PatchAdminPricingRulesByIdErrors = {
22719
23152
  */
22720
23153
  default: Errors;
22721
23154
  };
22722
- type PatchAdminPricingRulesByIdError = PatchAdminPricingRulesByIdErrors[keyof PatchAdminPricingRulesByIdErrors];
22723
- type PatchAdminPricingRulesByIdResponses = {
23155
+ type GetAdminAgentsByIdUsageError = GetAdminAgentsByIdUsageErrors[keyof GetAdminAgentsByIdUsageErrors];
23156
+ type GetAdminAgentsByIdUsageResponses = {
22724
23157
  /**
22725
23158
  * Success
22726
23159
  */
22727
23160
  200: {
22728
- data?: PricingRule;
23161
+ data?: AgentUsage;
22729
23162
  included?: Array<unknown>;
22730
23163
  meta?: {
22731
23164
  [key: string]: unknown;
22732
23165
  };
22733
23166
  };
22734
23167
  };
22735
- type PatchAdminPricingRulesByIdResponse = PatchAdminPricingRulesByIdResponses[keyof PatchAdminPricingRulesByIdResponses];
22736
- type GetAdminWalletUsageData = {
22737
- body?: never;
23168
+ type GetAdminAgentsByIdUsageResponse = GetAdminAgentsByIdUsageResponses[keyof GetAdminAgentsByIdUsageResponses];
23169
+ type PatchAdminLegalDocumentsByIdUnpublishData = {
23170
+ /**
23171
+ * Request body for the /legal-documents/:id/unpublish operation on legal_document resource
23172
+ */
23173
+ body?: {
23174
+ data: {
23175
+ attributes?: {
23176
+ [key: string]: never;
23177
+ };
23178
+ id: string;
23179
+ relationships?: {
23180
+ [key: string]: never;
23181
+ };
23182
+ type?: "legal_document";
23183
+ };
23184
+ };
22738
23185
  headers: {
22739
23186
  /**
22740
23187
  * Application ID for authentication and routing
22741
23188
  */
22742
23189
  "x-application-key": string;
22743
23190
  };
22744
- path?: never;
23191
+ path: {
23192
+ id: string;
23193
+ };
22745
23194
  query?: {
22746
23195
  /**
22747
23196
  * Include related resources in the response. Comma-separated list of relationship names to eager-load.
@@ -22753,11 +23202,10 @@ type GetAdminWalletUsageData = {
22753
23202
  fields?: {
22754
23203
  [key: string]: unknown;
22755
23204
  };
22756
- tenant_id?: string;
22757
23205
  };
22758
- url: "/admin/wallet/usage";
23206
+ url: "/admin/legal-documents/{id}/unpublish";
22759
23207
  };
22760
- type GetAdminWalletUsageErrors = {
23208
+ type PatchAdminLegalDocumentsByIdUnpublishErrors = {
22761
23209
  /**
22762
23210
  * Bad Request - Invalid input data or malformed request
22763
23211
  */
@@ -22787,21 +23235,21 @@ type GetAdminWalletUsageErrors = {
22787
23235
  */
22788
23236
  default: Errors;
22789
23237
  };
22790
- type GetAdminWalletUsageError = GetAdminWalletUsageErrors[keyof GetAdminWalletUsageErrors];
22791
- type GetAdminWalletUsageResponses = {
23238
+ type PatchAdminLegalDocumentsByIdUnpublishError = PatchAdminLegalDocumentsByIdUnpublishErrors[keyof PatchAdminLegalDocumentsByIdUnpublishErrors];
23239
+ type PatchAdminLegalDocumentsByIdUnpublishResponses = {
22792
23240
  /**
22793
23241
  * Success
22794
23242
  */
22795
23243
  200: {
22796
- data?: Wallet;
22797
- included?: Array<Plan>;
23244
+ data?: LegalDocument;
23245
+ included?: Array<unknown>;
22798
23246
  meta?: {
22799
23247
  [key: string]: unknown;
22800
23248
  };
22801
23249
  };
22802
23250
  };
22803
- type GetAdminWalletUsageResponse = GetAdminWalletUsageResponses[keyof GetAdminWalletUsageResponses];
22804
- type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugData = {
23251
+ type PatchAdminLegalDocumentsByIdUnpublishResponse = PatchAdminLegalDocumentsByIdUnpublishResponses[keyof PatchAdminLegalDocumentsByIdUnpublishResponses];
23252
+ type GetAdminLegalAcceptancesByIdData = {
22805
23253
  body?: never;
22806
23254
  headers: {
22807
23255
  /**
@@ -22810,8 +23258,7 @@ type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugData = {
22810
23258
  "x-application-key": string;
22811
23259
  };
22812
23260
  path: {
22813
- slug: string;
22814
- application_id: string;
23261
+ id: string;
22815
23262
  };
22816
23263
  query?: {
22817
23264
  /**
@@ -22825,9 +23272,9 @@ type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugData = {
22825
23272
  [key: string]: unknown;
22826
23273
  };
22827
23274
  };
22828
- url: "/admin/applications/{application_id}/email-templates/{slug}";
23275
+ url: "/admin/legal-acceptances/{id}";
22829
23276
  };
22830
- type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors = {
23277
+ type GetAdminLegalAcceptancesByIdErrors = {
22831
23278
  /**
22832
23279
  * Bad Request - Invalid input data or malformed request
22833
23280
  */
@@ -22857,14 +23304,21 @@ type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors = {
22857
23304
  */
22858
23305
  default: Errors;
22859
23306
  };
22860
- type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugError = DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors[keyof DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors];
22861
- type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses = {
23307
+ type GetAdminLegalAcceptancesByIdError = GetAdminLegalAcceptancesByIdErrors[keyof GetAdminLegalAcceptancesByIdErrors];
23308
+ type GetAdminLegalAcceptancesByIdResponses = {
22862
23309
  /**
22863
- * Deleted successfully
23310
+ * Success
22864
23311
  */
22865
- 200: unknown;
23312
+ 200: {
23313
+ data?: LegalAcceptance;
23314
+ included?: Array<unknown>;
23315
+ meta?: {
23316
+ [key: string]: unknown;
23317
+ };
23318
+ };
22866
23319
  };
22867
- type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugData = {
23320
+ type GetAdminLegalAcceptancesByIdResponse = GetAdminLegalAcceptancesByIdResponses[keyof GetAdminLegalAcceptancesByIdResponses];
23321
+ type GetAdminPricingRulesByIdData = {
22868
23322
  body?: never;
22869
23323
  headers: {
22870
23324
  /**
@@ -22873,8 +23327,7 @@ type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugData = {
22873
23327
  "x-application-key": string;
22874
23328
  };
22875
23329
  path: {
22876
- slug: string;
22877
- application_id: string;
23330
+ id: string;
22878
23331
  };
22879
23332
  query?: {
22880
23333
  /**
@@ -22888,9 +23341,9 @@ type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugData = {
22888
23341
  [key: string]: unknown;
22889
23342
  };
22890
23343
  };
22891
- url: "/admin/applications/{application_id}/email-templates/{slug}";
23344
+ url: "/admin/pricing-rules/{id}";
22892
23345
  };
22893
- type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors = {
23346
+ type GetAdminPricingRulesByIdErrors = {
22894
23347
  /**
22895
23348
  * Bad Request - Invalid input data or malformed request
22896
23349
  */
@@ -22920,53 +23373,34 @@ type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors = {
22920
23373
  */
22921
23374
  default: Errors;
22922
23375
  };
22923
- type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugError = GetAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors[keyof GetAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors];
22924
- type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses = {
23376
+ type GetAdminPricingRulesByIdError = GetAdminPricingRulesByIdErrors[keyof GetAdminPricingRulesByIdErrors];
23377
+ type GetAdminPricingRulesByIdResponses = {
22925
23378
  /**
22926
23379
  * Success
22927
23380
  */
22928
23381
  200: {
22929
- data?: EmailTemplate;
23382
+ data?: PricingRule;
22930
23383
  included?: Array<unknown>;
22931
23384
  meta?: {
22932
23385
  [key: string]: unknown;
22933
23386
  };
22934
23387
  };
22935
23388
  };
22936
- type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugResponse = GetAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses[keyof GetAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses];
22937
- type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugData = {
23389
+ type GetAdminPricingRulesByIdResponse = GetAdminPricingRulesByIdResponses[keyof GetAdminPricingRulesByIdResponses];
23390
+ type PatchAdminPricingRulesByIdData = {
22938
23391
  /**
22939
- * Request body for the /applications/:application_id/email-templates/:slug operation on email_template resource
23392
+ * Request body for the /pricing-rules/:id operation on pricing_rule resource
22940
23393
  */
22941
23394
  body?: {
22942
23395
  data: {
22943
23396
  attributes?: {
22944
- /**
22945
- * Email body in markdown (supports {{variable}} interpolation)
22946
- */
22947
- body_markdown?: string | unknown;
22948
- /**
22949
- * Whether this email is sent
22950
- */
22951
- enabled?: boolean | unknown;
22952
- /**
22953
- * Display name for the template
22954
- */
22955
- name?: string | unknown;
22956
- /**
22957
- * Primary brand color for email styling (hex)
22958
- */
22959
- primary_color?: string | unknown;
22960
- /**
22961
- * Email subject line (supports {{variable}} interpolation)
22962
- */
22963
- subject?: string | unknown;
23397
+ cost_credits?: string | unknown;
22964
23398
  };
22965
23399
  id: string;
22966
23400
  relationships?: {
22967
23401
  [key: string]: never;
22968
23402
  };
22969
- type?: "email_template";
23403
+ type?: "pricing_rule";
22970
23404
  };
22971
23405
  };
22972
23406
  headers: {
@@ -22976,8 +23410,7 @@ type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugData = {
22976
23410
  "x-application-key": string;
22977
23411
  };
22978
23412
  path: {
22979
- slug: string;
22980
- application_id: string;
23413
+ id: string;
22981
23414
  };
22982
23415
  query?: {
22983
23416
  /**
@@ -22991,9 +23424,9 @@ type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugData = {
22991
23424
  [key: string]: unknown;
22992
23425
  };
22993
23426
  };
22994
- url: "/admin/applications/{application_id}/email-templates/{slug}";
23427
+ url: "/admin/pricing-rules/{id}";
22995
23428
  };
22996
- type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors = {
23429
+ type PatchAdminPricingRulesByIdErrors = {
22997
23430
  /**
22998
23431
  * Bad Request - Invalid input data or malformed request
22999
23432
  */
@@ -23023,40 +23456,22 @@ type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors = {
23023
23456
  */
23024
23457
  default: Errors;
23025
23458
  };
23026
- type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugError = PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors[keyof PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors];
23027
- type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses = {
23459
+ type PatchAdminPricingRulesByIdError = PatchAdminPricingRulesByIdErrors[keyof PatchAdminPricingRulesByIdErrors];
23460
+ type PatchAdminPricingRulesByIdResponses = {
23028
23461
  /**
23029
23462
  * Success
23030
23463
  */
23031
23464
  200: {
23032
- data?: EmailTemplate;
23465
+ data?: PricingRule;
23033
23466
  included?: Array<unknown>;
23034
23467
  meta?: {
23035
23468
  [key: string]: unknown;
23036
23469
  };
23037
23470
  };
23038
23471
  };
23039
- type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugResponse = PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses[keyof PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses];
23040
- type PostAdminAiSearchAdvancedData = {
23041
- /**
23042
- * Request body for the /ai/search/advanced operation on search resource
23043
- */
23044
- body: {
23045
- data: {
23046
- attributes?: {
23047
- date_from?: unknown;
23048
- date_to?: unknown;
23049
- document_types?: Array<string> | unknown;
23050
- query: string;
23051
- top_k?: number | unknown;
23052
- workspace_ids?: Array<string> | unknown;
23053
- };
23054
- relationships?: {
23055
- [key: string]: never;
23056
- };
23057
- type?: "search";
23058
- };
23059
- };
23472
+ type PatchAdminPricingRulesByIdResponse = PatchAdminPricingRulesByIdResponses[keyof PatchAdminPricingRulesByIdResponses];
23473
+ type GetAdminWalletUsageData = {
23474
+ body?: never;
23060
23475
  headers: {
23061
23476
  /**
23062
23477
  * Application ID for authentication and routing
@@ -23075,10 +23490,11 @@ type PostAdminAiSearchAdvancedData = {
23075
23490
  fields?: {
23076
23491
  [key: string]: unknown;
23077
23492
  };
23493
+ tenant_id?: string;
23078
23494
  };
23079
- url: "/admin/ai/search/advanced";
23495
+ url: "/admin/wallet/usage";
23080
23496
  };
23081
- type PostAdminAiSearchAdvancedErrors = {
23497
+ type GetAdminWalletUsageErrors = {
23082
23498
  /**
23083
23499
  * Bad Request - Invalid input data or malformed request
23084
23500
  */
@@ -23108,36 +23524,22 @@ type PostAdminAiSearchAdvancedErrors = {
23108
23524
  */
23109
23525
  default: Errors;
23110
23526
  };
23111
- type PostAdminAiSearchAdvancedError = PostAdminAiSearchAdvancedErrors[keyof PostAdminAiSearchAdvancedErrors];
23112
- type PostAdminAiSearchAdvancedResponses = {
23527
+ type GetAdminWalletUsageError = GetAdminWalletUsageErrors[keyof GetAdminWalletUsageErrors];
23528
+ type GetAdminWalletUsageResponses = {
23113
23529
  /**
23114
23530
  * Success
23115
23531
  */
23116
- 201: {
23117
- data?: Search;
23118
- included?: Array<unknown>;
23532
+ 200: {
23533
+ data?: Wallet;
23534
+ included?: Array<Plan>;
23119
23535
  meta?: {
23120
23536
  [key: string]: unknown;
23121
23537
  };
23122
23538
  };
23123
23539
  };
23124
- type PostAdminAiSearchAdvancedResponse = PostAdminAiSearchAdvancedResponses[keyof PostAdminAiSearchAdvancedResponses];
23125
- type PatchAdminWorkspacesByIdStorageSettingsData = {
23126
- /**
23127
- * Request body for the /workspaces/:id/storage-settings operation on workspace resource
23128
- */
23129
- body?: {
23130
- data: {
23131
- attributes?: {
23132
- settings?: WorkspaceSettingsInputUpdateType | unknown;
23133
- };
23134
- id: string;
23135
- relationships?: {
23136
- [key: string]: never;
23137
- };
23138
- type?: "workspace";
23139
- };
23140
- };
23540
+ type GetAdminWalletUsageResponse = GetAdminWalletUsageResponses[keyof GetAdminWalletUsageResponses];
23541
+ type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugData = {
23542
+ body?: never;
23141
23543
  headers: {
23142
23544
  /**
23143
23545
  * Application ID for authentication and routing
@@ -23145,7 +23547,8 @@ type PatchAdminWorkspacesByIdStorageSettingsData = {
23145
23547
  "x-application-key": string;
23146
23548
  };
23147
23549
  path: {
23148
- id: string;
23550
+ slug: string;
23551
+ application_id: string;
23149
23552
  };
23150
23553
  query?: {
23151
23554
  /**
@@ -23159,9 +23562,9 @@ type PatchAdminWorkspacesByIdStorageSettingsData = {
23159
23562
  [key: string]: unknown;
23160
23563
  };
23161
23564
  };
23162
- url: "/admin/workspaces/{id}/storage-settings";
23565
+ url: "/admin/applications/{application_id}/email-templates/{slug}";
23163
23566
  };
23164
- type PatchAdminWorkspacesByIdStorageSettingsErrors = {
23567
+ type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors = {
23165
23568
  /**
23166
23569
  * Bad Request - Invalid input data or malformed request
23167
23570
  */
@@ -23191,42 +23594,25 @@ type PatchAdminWorkspacesByIdStorageSettingsErrors = {
23191
23594
  */
23192
23595
  default: Errors;
23193
23596
  };
23194
- type PatchAdminWorkspacesByIdStorageSettingsError = PatchAdminWorkspacesByIdStorageSettingsErrors[keyof PatchAdminWorkspacesByIdStorageSettingsErrors];
23195
- type PatchAdminWorkspacesByIdStorageSettingsResponses = {
23597
+ type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugError = DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors[keyof DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors];
23598
+ type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses = {
23196
23599
  /**
23197
- * Success
23600
+ * Deleted successfully
23198
23601
  */
23199
- 200: {
23200
- data?: Workspace;
23201
- included?: Array<Tenant>;
23202
- meta?: {
23203
- [key: string]: unknown;
23204
- };
23205
- };
23602
+ 200: unknown;
23206
23603
  };
23207
- type PatchAdminWorkspacesByIdStorageSettingsResponse = PatchAdminWorkspacesByIdStorageSettingsResponses[keyof PatchAdminWorkspacesByIdStorageSettingsResponses];
23208
- type PostAdminSearchBatchData = {
23209
- /**
23210
- * Request body for the /search/batch operation on search resource
23211
- */
23212
- body: {
23213
- data: {
23214
- attributes?: {
23215
- queries: Array<string>;
23216
- };
23217
- relationships?: {
23218
- [key: string]: never;
23219
- };
23220
- type?: "search";
23221
- };
23222
- };
23604
+ type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugData = {
23605
+ body?: never;
23223
23606
  headers: {
23224
23607
  /**
23225
23608
  * Application ID for authentication and routing
23226
23609
  */
23227
23610
  "x-application-key": string;
23228
23611
  };
23229
- path?: never;
23612
+ path: {
23613
+ slug: string;
23614
+ application_id: string;
23615
+ };
23230
23616
  query?: {
23231
23617
  /**
23232
23618
  * Include related resources in the response. Comma-separated list of relationship names to eager-load.
@@ -23239,9 +23625,443 @@ type PostAdminSearchBatchData = {
23239
23625
  [key: string]: unknown;
23240
23626
  };
23241
23627
  };
23242
- url: "/admin/search/batch";
23628
+ url: "/admin/applications/{application_id}/email-templates/{slug}";
23243
23629
  };
23244
- type PostAdminSearchBatchErrors = {
23630
+ type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors = {
23631
+ /**
23632
+ * Bad Request - Invalid input data or malformed request
23633
+ */
23634
+ 400: ErrorResponse;
23635
+ /**
23636
+ * Unauthorized - Missing or invalid authentication token
23637
+ */
23638
+ 401: ErrorResponse;
23639
+ /**
23640
+ * Forbidden - Authenticated but not authorized for this resource
23641
+ */
23642
+ 403: ErrorResponse;
23643
+ /**
23644
+ * Not Found - Resource does not exist
23645
+ */
23646
+ 404: ErrorResponse;
23647
+ /**
23648
+ * Too Many Requests - Rate limit exceeded
23649
+ */
23650
+ 429: ErrorResponse;
23651
+ /**
23652
+ * Internal Server Error - Unexpected server error
23653
+ */
23654
+ 500: ErrorResponse;
23655
+ /**
23656
+ * General Error
23657
+ */
23658
+ default: Errors;
23659
+ };
23660
+ type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugError = GetAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors[keyof GetAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors];
23661
+ type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses = {
23662
+ /**
23663
+ * Success
23664
+ */
23665
+ 200: {
23666
+ data?: EmailTemplate;
23667
+ included?: Array<unknown>;
23668
+ meta?: {
23669
+ [key: string]: unknown;
23670
+ };
23671
+ };
23672
+ };
23673
+ type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugResponse = GetAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses[keyof GetAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses];
23674
+ type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugData = {
23675
+ /**
23676
+ * Request body for the /applications/:application_id/email-templates/:slug operation on email_template resource
23677
+ */
23678
+ body?: {
23679
+ data: {
23680
+ attributes?: {
23681
+ /**
23682
+ * Email body in markdown (supports {{variable}} interpolation)
23683
+ */
23684
+ body_markdown?: string | unknown;
23685
+ /**
23686
+ * Whether this email is sent
23687
+ */
23688
+ enabled?: boolean | unknown;
23689
+ /**
23690
+ * Display name for the template
23691
+ */
23692
+ name?: string | unknown;
23693
+ /**
23694
+ * Primary brand color for email styling (hex)
23695
+ */
23696
+ primary_color?: string | unknown;
23697
+ /**
23698
+ * Email subject line (supports {{variable}} interpolation)
23699
+ */
23700
+ subject?: string | unknown;
23701
+ };
23702
+ id: string;
23703
+ relationships?: {
23704
+ [key: string]: never;
23705
+ };
23706
+ type?: "email_template";
23707
+ };
23708
+ };
23709
+ headers: {
23710
+ /**
23711
+ * Application ID for authentication and routing
23712
+ */
23713
+ "x-application-key": string;
23714
+ };
23715
+ path: {
23716
+ slug: string;
23717
+ application_id: string;
23718
+ };
23719
+ query?: {
23720
+ /**
23721
+ * Include related resources in the response. Comma-separated list of relationship names to eager-load.
23722
+ */
23723
+ include?: string;
23724
+ /**
23725
+ * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
23726
+ */
23727
+ fields?: {
23728
+ [key: string]: unknown;
23729
+ };
23730
+ };
23731
+ url: "/admin/applications/{application_id}/email-templates/{slug}";
23732
+ };
23733
+ type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors = {
23734
+ /**
23735
+ * Bad Request - Invalid input data or malformed request
23736
+ */
23737
+ 400: ErrorResponse;
23738
+ /**
23739
+ * Unauthorized - Missing or invalid authentication token
23740
+ */
23741
+ 401: ErrorResponse;
23742
+ /**
23743
+ * Forbidden - Authenticated but not authorized for this resource
23744
+ */
23745
+ 403: ErrorResponse;
23746
+ /**
23747
+ * Not Found - Resource does not exist
23748
+ */
23749
+ 404: ErrorResponse;
23750
+ /**
23751
+ * Too Many Requests - Rate limit exceeded
23752
+ */
23753
+ 429: ErrorResponse;
23754
+ /**
23755
+ * Internal Server Error - Unexpected server error
23756
+ */
23757
+ 500: ErrorResponse;
23758
+ /**
23759
+ * General Error
23760
+ */
23761
+ default: Errors;
23762
+ };
23763
+ type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugError = PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors[keyof PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors];
23764
+ type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses = {
23765
+ /**
23766
+ * Success
23767
+ */
23768
+ 200: {
23769
+ data?: EmailTemplate;
23770
+ included?: Array<unknown>;
23771
+ meta?: {
23772
+ [key: string]: unknown;
23773
+ };
23774
+ };
23775
+ };
23776
+ type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugResponse = PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses[keyof PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses];
23777
+ type PostAdminAiSearchAdvancedData = {
23778
+ /**
23779
+ * Request body for the /ai/search/advanced operation on search resource
23780
+ */
23781
+ body: {
23782
+ data: {
23783
+ attributes?: {
23784
+ date_from?: unknown;
23785
+ date_to?: unknown;
23786
+ document_types?: Array<string> | unknown;
23787
+ query: string;
23788
+ top_k?: number | unknown;
23789
+ workspace_ids?: Array<string> | unknown;
23790
+ };
23791
+ relationships?: {
23792
+ [key: string]: never;
23793
+ };
23794
+ type?: "search";
23795
+ };
23796
+ };
23797
+ headers: {
23798
+ /**
23799
+ * Application ID for authentication and routing
23800
+ */
23801
+ "x-application-key": string;
23802
+ };
23803
+ path?: never;
23804
+ query?: {
23805
+ /**
23806
+ * Include related resources in the response. Comma-separated list of relationship names to eager-load.
23807
+ */
23808
+ include?: string;
23809
+ /**
23810
+ * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
23811
+ */
23812
+ fields?: {
23813
+ [key: string]: unknown;
23814
+ };
23815
+ };
23816
+ url: "/admin/ai/search/advanced";
23817
+ };
23818
+ type PostAdminAiSearchAdvancedErrors = {
23819
+ /**
23820
+ * Bad Request - Invalid input data or malformed request
23821
+ */
23822
+ 400: ErrorResponse;
23823
+ /**
23824
+ * Unauthorized - Missing or invalid authentication token
23825
+ */
23826
+ 401: ErrorResponse;
23827
+ /**
23828
+ * Forbidden - Authenticated but not authorized for this resource
23829
+ */
23830
+ 403: ErrorResponse;
23831
+ /**
23832
+ * Not Found - Resource does not exist
23833
+ */
23834
+ 404: ErrorResponse;
23835
+ /**
23836
+ * Too Many Requests - Rate limit exceeded
23837
+ */
23838
+ 429: ErrorResponse;
23839
+ /**
23840
+ * Internal Server Error - Unexpected server error
23841
+ */
23842
+ 500: ErrorResponse;
23843
+ /**
23844
+ * General Error
23845
+ */
23846
+ default: Errors;
23847
+ };
23848
+ type PostAdminAiSearchAdvancedError = PostAdminAiSearchAdvancedErrors[keyof PostAdminAiSearchAdvancedErrors];
23849
+ type PostAdminAiSearchAdvancedResponses = {
23850
+ /**
23851
+ * Success
23852
+ */
23853
+ 201: {
23854
+ data?: Search;
23855
+ included?: Array<unknown>;
23856
+ meta?: {
23857
+ [key: string]: unknown;
23858
+ };
23859
+ };
23860
+ };
23861
+ type PostAdminAiSearchAdvancedResponse = PostAdminAiSearchAdvancedResponses[keyof PostAdminAiSearchAdvancedResponses];
23862
+ type PatchAdminWorkspacesByIdStorageSettingsData = {
23863
+ /**
23864
+ * Request body for the /workspaces/:id/storage-settings operation on workspace resource
23865
+ */
23866
+ body?: {
23867
+ data: {
23868
+ attributes?: {
23869
+ settings?: WorkspaceSettingsInputUpdateType | unknown;
23870
+ };
23871
+ id: string;
23872
+ relationships?: {
23873
+ [key: string]: never;
23874
+ };
23875
+ type?: "workspace";
23876
+ };
23877
+ };
23878
+ headers: {
23879
+ /**
23880
+ * Application ID for authentication and routing
23881
+ */
23882
+ "x-application-key": string;
23883
+ };
23884
+ path: {
23885
+ id: string;
23886
+ };
23887
+ query?: {
23888
+ /**
23889
+ * Include related resources in the response. Comma-separated list of relationship names to eager-load.
23890
+ */
23891
+ include?: string;
23892
+ /**
23893
+ * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
23894
+ */
23895
+ fields?: {
23896
+ [key: string]: unknown;
23897
+ };
23898
+ };
23899
+ url: "/admin/workspaces/{id}/storage-settings";
23900
+ };
23901
+ type PatchAdminWorkspacesByIdStorageSettingsErrors = {
23902
+ /**
23903
+ * Bad Request - Invalid input data or malformed request
23904
+ */
23905
+ 400: ErrorResponse;
23906
+ /**
23907
+ * Unauthorized - Missing or invalid authentication token
23908
+ */
23909
+ 401: ErrorResponse;
23910
+ /**
23911
+ * Forbidden - Authenticated but not authorized for this resource
23912
+ */
23913
+ 403: ErrorResponse;
23914
+ /**
23915
+ * Not Found - Resource does not exist
23916
+ */
23917
+ 404: ErrorResponse;
23918
+ /**
23919
+ * Too Many Requests - Rate limit exceeded
23920
+ */
23921
+ 429: ErrorResponse;
23922
+ /**
23923
+ * Internal Server Error - Unexpected server error
23924
+ */
23925
+ 500: ErrorResponse;
23926
+ /**
23927
+ * General Error
23928
+ */
23929
+ default: Errors;
23930
+ };
23931
+ type PatchAdminWorkspacesByIdStorageSettingsError = PatchAdminWorkspacesByIdStorageSettingsErrors[keyof PatchAdminWorkspacesByIdStorageSettingsErrors];
23932
+ type PatchAdminWorkspacesByIdStorageSettingsResponses = {
23933
+ /**
23934
+ * Success
23935
+ */
23936
+ 200: {
23937
+ data?: Workspace;
23938
+ included?: Array<Tenant>;
23939
+ meta?: {
23940
+ [key: string]: unknown;
23941
+ };
23942
+ };
23943
+ };
23944
+ type PatchAdminWorkspacesByIdStorageSettingsResponse = PatchAdminWorkspacesByIdStorageSettingsResponses[keyof PatchAdminWorkspacesByIdStorageSettingsResponses];
23945
+ type PatchAdminLegalDocumentsByIdPublishData = {
23946
+ /**
23947
+ * Request body for the /legal-documents/:id/publish operation on legal_document resource
23948
+ */
23949
+ body?: {
23950
+ data: {
23951
+ attributes?: {
23952
+ [key: string]: never;
23953
+ };
23954
+ id: string;
23955
+ relationships?: {
23956
+ [key: string]: never;
23957
+ };
23958
+ type?: "legal_document";
23959
+ };
23960
+ };
23961
+ headers: {
23962
+ /**
23963
+ * Application ID for authentication and routing
23964
+ */
23965
+ "x-application-key": string;
23966
+ };
23967
+ path: {
23968
+ id: string;
23969
+ };
23970
+ query?: {
23971
+ /**
23972
+ * Include related resources in the response. Comma-separated list of relationship names to eager-load.
23973
+ */
23974
+ include?: string;
23975
+ /**
23976
+ * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
23977
+ */
23978
+ fields?: {
23979
+ [key: string]: unknown;
23980
+ };
23981
+ };
23982
+ url: "/admin/legal-documents/{id}/publish";
23983
+ };
23984
+ type PatchAdminLegalDocumentsByIdPublishErrors = {
23985
+ /**
23986
+ * Bad Request - Invalid input data or malformed request
23987
+ */
23988
+ 400: ErrorResponse;
23989
+ /**
23990
+ * Unauthorized - Missing or invalid authentication token
23991
+ */
23992
+ 401: ErrorResponse;
23993
+ /**
23994
+ * Forbidden - Authenticated but not authorized for this resource
23995
+ */
23996
+ 403: ErrorResponse;
23997
+ /**
23998
+ * Not Found - Resource does not exist
23999
+ */
24000
+ 404: ErrorResponse;
24001
+ /**
24002
+ * Too Many Requests - Rate limit exceeded
24003
+ */
24004
+ 429: ErrorResponse;
24005
+ /**
24006
+ * Internal Server Error - Unexpected server error
24007
+ */
24008
+ 500: ErrorResponse;
24009
+ /**
24010
+ * General Error
24011
+ */
24012
+ default: Errors;
24013
+ };
24014
+ type PatchAdminLegalDocumentsByIdPublishError = PatchAdminLegalDocumentsByIdPublishErrors[keyof PatchAdminLegalDocumentsByIdPublishErrors];
24015
+ type PatchAdminLegalDocumentsByIdPublishResponses = {
24016
+ /**
24017
+ * Success
24018
+ */
24019
+ 200: {
24020
+ data?: LegalDocument;
24021
+ included?: Array<unknown>;
24022
+ meta?: {
24023
+ [key: string]: unknown;
24024
+ };
24025
+ };
24026
+ };
24027
+ type PatchAdminLegalDocumentsByIdPublishResponse = PatchAdminLegalDocumentsByIdPublishResponses[keyof PatchAdminLegalDocumentsByIdPublishResponses];
24028
+ type PostAdminSearchBatchData = {
24029
+ /**
24030
+ * Request body for the /search/batch operation on search resource
24031
+ */
24032
+ body: {
24033
+ data: {
24034
+ attributes?: {
24035
+ queries: Array<string>;
24036
+ };
24037
+ relationships?: {
24038
+ [key: string]: never;
24039
+ };
24040
+ type?: "search";
24041
+ };
24042
+ };
24043
+ headers: {
24044
+ /**
24045
+ * Application ID for authentication and routing
24046
+ */
24047
+ "x-application-key": string;
24048
+ };
24049
+ path?: never;
24050
+ query?: {
24051
+ /**
24052
+ * Include related resources in the response. Comma-separated list of relationship names to eager-load.
24053
+ */
24054
+ include?: string;
24055
+ /**
24056
+ * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
24057
+ */
24058
+ fields?: {
24059
+ [key: string]: unknown;
24060
+ };
24061
+ };
24062
+ url: "/admin/search/batch";
24063
+ };
24064
+ type PostAdminSearchBatchErrors = {
23245
24065
  /**
23246
24066
  * Bad Request - Invalid input data or malformed request
23247
24067
  */
@@ -23526,7 +24346,7 @@ type GetAdminInvitationsMeResponses = {
23526
24346
  * An array of resource objects representing a invitation
23527
24347
  */
23528
24348
  data?: Array<Invitation>;
23529
- included?: Array<User>;
24349
+ included?: Array<unknown>;
23530
24350
  meta?: {
23531
24351
  [key: string]: unknown;
23532
24352
  };
@@ -23844,7 +24664,7 @@ type GetAdminInvitationsConsumeByTokenResponses = {
23844
24664
  */
23845
24665
  200: {
23846
24666
  data?: Invitation;
23847
- included?: Array<User>;
24667
+ included?: Array<unknown>;
23848
24668
  meta?: {
23849
24669
  [key: string]: unknown;
23850
24670
  };
@@ -27823,7 +28643,7 @@ type PatchAdminInvitationsByIdResendResponses = {
27823
28643
  */
27824
28644
  200: {
27825
28645
  data?: Invitation;
27826
- included?: Array<User>;
28646
+ included?: Array<unknown>;
27827
28647
  meta?: {
27828
28648
  [key: string]: unknown;
27829
28649
  };
@@ -28228,68 +29048,137 @@ type GetAdminExtractionConfigEnumsErrors = {
28228
29048
  */
28229
29049
  default: Errors;
28230
29050
  };
28231
- type GetAdminExtractionConfigEnumsError = GetAdminExtractionConfigEnumsErrors[keyof GetAdminExtractionConfigEnumsErrors];
28232
- type GetAdminExtractionConfigEnumsResponses = {
29051
+ type GetAdminExtractionConfigEnumsError = GetAdminExtractionConfigEnumsErrors[keyof GetAdminExtractionConfigEnumsErrors];
29052
+ type GetAdminExtractionConfigEnumsResponses = {
29053
+ /**
29054
+ * Success
29055
+ */
29056
+ 200: {
29057
+ /**
29058
+ * An array of resource objects representing a config_enum
29059
+ */
29060
+ data?: Array<ConfigEnum>;
29061
+ included?: Array<unknown>;
29062
+ meta?: {
29063
+ [key: string]: unknown;
29064
+ };
29065
+ };
29066
+ };
29067
+ type GetAdminExtractionConfigEnumsResponse = GetAdminExtractionConfigEnumsResponses[keyof GetAdminExtractionConfigEnumsResponses];
29068
+ type PostAdminExtractionConfigEnumsData = {
29069
+ /**
29070
+ * Request body for the /extraction/config-enums operation on config_enum resource
29071
+ */
29072
+ body: {
29073
+ data: {
29074
+ attributes?: {
29075
+ /**
29076
+ * Optional description of this enum value
29077
+ */
29078
+ description?: string | unknown;
29079
+ /**
29080
+ * Whether this enum value is active (inactive values are hidden by default)
29081
+ */
29082
+ is_active?: boolean | unknown;
29083
+ /**
29084
+ * Human-readable display label
29085
+ */
29086
+ label: string;
29087
+ /**
29088
+ * Sort order for display (lower numbers first)
29089
+ */
29090
+ sort_order?: number | unknown;
29091
+ /**
29092
+ * The enum type (e.g., 'agent_domain', 'document_category')
29093
+ */
29094
+ type: string;
29095
+ /**
29096
+ * The enum value (normalized to lowercase)
29097
+ */
29098
+ value: string;
29099
+ };
29100
+ relationships?: {
29101
+ [key: string]: never;
29102
+ };
29103
+ type?: "config_enum";
29104
+ };
29105
+ };
29106
+ headers: {
29107
+ /**
29108
+ * Application ID for authentication and routing
29109
+ */
29110
+ "x-application-key": string;
29111
+ };
29112
+ path?: never;
29113
+ query?: {
29114
+ /**
29115
+ * Include related resources in the response. Comma-separated list of relationship names to eager-load.
29116
+ */
29117
+ include?: string;
29118
+ /**
29119
+ * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
29120
+ */
29121
+ fields?: {
29122
+ [key: string]: unknown;
29123
+ };
29124
+ };
29125
+ url: "/admin/extraction/config-enums";
29126
+ };
29127
+ type PostAdminExtractionConfigEnumsErrors = {
29128
+ /**
29129
+ * Bad Request - Invalid input data or malformed request
29130
+ */
29131
+ 400: ErrorResponse;
29132
+ /**
29133
+ * Unauthorized - Missing or invalid authentication token
29134
+ */
29135
+ 401: ErrorResponse;
29136
+ /**
29137
+ * Forbidden - Authenticated but not authorized for this resource
29138
+ */
29139
+ 403: ErrorResponse;
29140
+ /**
29141
+ * Not Found - Resource does not exist
29142
+ */
29143
+ 404: ErrorResponse;
29144
+ /**
29145
+ * Too Many Requests - Rate limit exceeded
29146
+ */
29147
+ 429: ErrorResponse;
29148
+ /**
29149
+ * Internal Server Error - Unexpected server error
29150
+ */
29151
+ 500: ErrorResponse;
29152
+ /**
29153
+ * General Error
29154
+ */
29155
+ default: Errors;
29156
+ };
29157
+ type PostAdminExtractionConfigEnumsError = PostAdminExtractionConfigEnumsErrors[keyof PostAdminExtractionConfigEnumsErrors];
29158
+ type PostAdminExtractionConfigEnumsResponses = {
28233
29159
  /**
28234
29160
  * Success
28235
29161
  */
28236
- 200: {
28237
- /**
28238
- * An array of resource objects representing a config_enum
28239
- */
28240
- data?: Array<ConfigEnum>;
29162
+ 201: {
29163
+ data?: ConfigEnum;
28241
29164
  included?: Array<unknown>;
28242
29165
  meta?: {
28243
29166
  [key: string]: unknown;
28244
29167
  };
28245
29168
  };
28246
29169
  };
28247
- type GetAdminExtractionConfigEnumsResponse = GetAdminExtractionConfigEnumsResponses[keyof GetAdminExtractionConfigEnumsResponses];
28248
- type PostAdminExtractionConfigEnumsData = {
28249
- /**
28250
- * Request body for the /extraction/config-enums operation on config_enum resource
28251
- */
28252
- body: {
28253
- data: {
28254
- attributes?: {
28255
- /**
28256
- * Optional description of this enum value
28257
- */
28258
- description?: string | unknown;
28259
- /**
28260
- * Whether this enum value is active (inactive values are hidden by default)
28261
- */
28262
- is_active?: boolean | unknown;
28263
- /**
28264
- * Human-readable display label
28265
- */
28266
- label: string;
28267
- /**
28268
- * Sort order for display (lower numbers first)
28269
- */
28270
- sort_order?: number | unknown;
28271
- /**
28272
- * The enum type (e.g., 'agent_domain', 'document_category')
28273
- */
28274
- type: string;
28275
- /**
28276
- * The enum value (normalized to lowercase)
28277
- */
28278
- value: string;
28279
- };
28280
- relationships?: {
28281
- [key: string]: never;
28282
- };
28283
- type?: "config_enum";
28284
- };
28285
- };
29170
+ type PostAdminExtractionConfigEnumsResponse = PostAdminExtractionConfigEnumsResponses[keyof PostAdminExtractionConfigEnumsResponses];
29171
+ type DeleteAdminTrainingSessionsByIdData = {
29172
+ body?: never;
28286
29173
  headers: {
28287
29174
  /**
28288
29175
  * Application ID for authentication and routing
28289
29176
  */
28290
29177
  "x-application-key": string;
28291
29178
  };
28292
- path?: never;
29179
+ path: {
29180
+ id: string;
29181
+ };
28293
29182
  query?: {
28294
29183
  /**
28295
29184
  * Include related resources in the response. Comma-separated list of relationship names to eager-load.
@@ -28302,9 +29191,9 @@ type PostAdminExtractionConfigEnumsData = {
28302
29191
  [key: string]: unknown;
28303
29192
  };
28304
29193
  };
28305
- url: "/admin/extraction/config-enums";
29194
+ url: "/admin/training-sessions/{id}";
28306
29195
  };
28307
- type PostAdminExtractionConfigEnumsErrors = {
29196
+ type DeleteAdminTrainingSessionsByIdErrors = {
28308
29197
  /**
28309
29198
  * Bad Request - Invalid input data or malformed request
28310
29199
  */
@@ -28334,21 +29223,14 @@ type PostAdminExtractionConfigEnumsErrors = {
28334
29223
  */
28335
29224
  default: Errors;
28336
29225
  };
28337
- type PostAdminExtractionConfigEnumsError = PostAdminExtractionConfigEnumsErrors[keyof PostAdminExtractionConfigEnumsErrors];
28338
- type PostAdminExtractionConfigEnumsResponses = {
29226
+ type DeleteAdminTrainingSessionsByIdError = DeleteAdminTrainingSessionsByIdErrors[keyof DeleteAdminTrainingSessionsByIdErrors];
29227
+ type DeleteAdminTrainingSessionsByIdResponses = {
28339
29228
  /**
28340
- * Success
29229
+ * Deleted successfully
28341
29230
  */
28342
- 201: {
28343
- data?: ConfigEnum;
28344
- included?: Array<unknown>;
28345
- meta?: {
28346
- [key: string]: unknown;
28347
- };
28348
- };
29231
+ 200: unknown;
28349
29232
  };
28350
- type PostAdminExtractionConfigEnumsResponse = PostAdminExtractionConfigEnumsResponses[keyof PostAdminExtractionConfigEnumsResponses];
28351
- type DeleteAdminTrainingSessionsByIdData = {
29233
+ type GetAdminTrainingSessionsByIdData = {
28352
29234
  body?: never;
28353
29235
  headers: {
28354
29236
  /**
@@ -28373,7 +29255,7 @@ type DeleteAdminTrainingSessionsByIdData = {
28373
29255
  };
28374
29256
  url: "/admin/training-sessions/{id}";
28375
29257
  };
28376
- type DeleteAdminTrainingSessionsByIdErrors = {
29258
+ type GetAdminTrainingSessionsByIdErrors = {
28377
29259
  /**
28378
29260
  * Bad Request - Invalid input data or malformed request
28379
29261
  */
@@ -28403,15 +29285,39 @@ type DeleteAdminTrainingSessionsByIdErrors = {
28403
29285
  */
28404
29286
  default: Errors;
28405
29287
  };
28406
- type DeleteAdminTrainingSessionsByIdError = DeleteAdminTrainingSessionsByIdErrors[keyof DeleteAdminTrainingSessionsByIdErrors];
28407
- type DeleteAdminTrainingSessionsByIdResponses = {
29288
+ type GetAdminTrainingSessionsByIdError = GetAdminTrainingSessionsByIdErrors[keyof GetAdminTrainingSessionsByIdErrors];
29289
+ type GetAdminTrainingSessionsByIdResponses = {
28408
29290
  /**
28409
- * Deleted successfully
29291
+ * Success
28410
29292
  */
28411
- 200: unknown;
29293
+ 200: {
29294
+ data?: TrainingSession;
29295
+ included?: Array<unknown>;
29296
+ meta?: {
29297
+ [key: string]: unknown;
29298
+ };
29299
+ };
28412
29300
  };
28413
- type GetAdminTrainingSessionsByIdData = {
28414
- body?: never;
29301
+ type GetAdminTrainingSessionsByIdResponse = GetAdminTrainingSessionsByIdResponses[keyof GetAdminTrainingSessionsByIdResponses];
29302
+ type PatchAdminUserProfilesByIdAcceptPrivacyPolicyData = {
29303
+ /**
29304
+ * Request body for the /user-profiles/:id/accept-privacy-policy operation on user_profile resource
29305
+ */
29306
+ body: {
29307
+ data: {
29308
+ attributes?: {
29309
+ /**
29310
+ * The Privacy Policy version being accepted
29311
+ */
29312
+ version: string;
29313
+ };
29314
+ id: string;
29315
+ relationships?: {
29316
+ [key: string]: never;
29317
+ };
29318
+ type?: "user_profile";
29319
+ };
29320
+ };
28415
29321
  headers: {
28416
29322
  /**
28417
29323
  * Application ID for authentication and routing
@@ -28433,9 +29339,9 @@ type GetAdminTrainingSessionsByIdData = {
28433
29339
  [key: string]: unknown;
28434
29340
  };
28435
29341
  };
28436
- url: "/admin/training-sessions/{id}";
29342
+ url: "/admin/user-profiles/{id}/accept-privacy-policy";
28437
29343
  };
28438
- type GetAdminTrainingSessionsByIdErrors = {
29344
+ type PatchAdminUserProfilesByIdAcceptPrivacyPolicyErrors = {
28439
29345
  /**
28440
29346
  * Bad Request - Invalid input data or malformed request
28441
29347
  */
@@ -28465,20 +29371,20 @@ type GetAdminTrainingSessionsByIdErrors = {
28465
29371
  */
28466
29372
  default: Errors;
28467
29373
  };
28468
- type GetAdminTrainingSessionsByIdError = GetAdminTrainingSessionsByIdErrors[keyof GetAdminTrainingSessionsByIdErrors];
28469
- type GetAdminTrainingSessionsByIdResponses = {
29374
+ type PatchAdminUserProfilesByIdAcceptPrivacyPolicyError = PatchAdminUserProfilesByIdAcceptPrivacyPolicyErrors[keyof PatchAdminUserProfilesByIdAcceptPrivacyPolicyErrors];
29375
+ type PatchAdminUserProfilesByIdAcceptPrivacyPolicyResponses = {
28470
29376
  /**
28471
29377
  * Success
28472
29378
  */
28473
29379
  200: {
28474
- data?: TrainingSession;
29380
+ data?: UserProfile;
28475
29381
  included?: Array<unknown>;
28476
29382
  meta?: {
28477
29383
  [key: string]: unknown;
28478
29384
  };
28479
29385
  };
28480
29386
  };
28481
- type GetAdminTrainingSessionsByIdResponse = GetAdminTrainingSessionsByIdResponses[keyof GetAdminTrainingSessionsByIdResponses];
29387
+ type PatchAdminUserProfilesByIdAcceptPrivacyPolicyResponse = PatchAdminUserProfilesByIdAcceptPrivacyPolicyResponses[keyof PatchAdminUserProfilesByIdAcceptPrivacyPolicyResponses];
28482
29388
  type DeleteAdminAiConversationsByIdData = {
28483
29389
  body?: never;
28484
29390
  headers: {
@@ -30230,36 +31136,185 @@ type GetAdminAgentsByIdTrainingStatsErrors = {
30230
31136
  */
30231
31137
  default: Errors;
30232
31138
  };
30233
- type GetAdminAgentsByIdTrainingStatsError = GetAdminAgentsByIdTrainingStatsErrors[keyof GetAdminAgentsByIdTrainingStatsErrors];
30234
- type GetAdminAgentsByIdTrainingStatsResponses = {
31139
+ type GetAdminAgentsByIdTrainingStatsError = GetAdminAgentsByIdTrainingStatsErrors[keyof GetAdminAgentsByIdTrainingStatsErrors];
31140
+ type GetAdminAgentsByIdTrainingStatsResponses = {
31141
+ /**
31142
+ * Success
31143
+ */
31144
+ 200: {
31145
+ data?: AgentTrainingStats;
31146
+ included?: Array<unknown>;
31147
+ meta?: {
31148
+ [key: string]: unknown;
31149
+ };
31150
+ };
31151
+ };
31152
+ type GetAdminAgentsByIdTrainingStatsResponse = GetAdminAgentsByIdTrainingStatsResponses[keyof GetAdminAgentsByIdTrainingStatsResponses];
31153
+ type PostAdminStorageSignDownloadData = {
31154
+ /**
31155
+ * Request body for the /storage/sign-download operation on presigned_url resource
31156
+ */
31157
+ body: {
31158
+ data: {
31159
+ attributes?: {
31160
+ bucket_id: string;
31161
+ filename: string;
31162
+ };
31163
+ relationships?: {
31164
+ [key: string]: never;
31165
+ };
31166
+ type?: "presigned_url";
31167
+ };
31168
+ };
31169
+ headers: {
31170
+ /**
31171
+ * Application ID for authentication and routing
31172
+ */
31173
+ "x-application-key": string;
31174
+ };
31175
+ path?: never;
31176
+ query?: {
31177
+ /**
31178
+ * Include related resources in the response. Comma-separated list of relationship names to eager-load.
31179
+ */
31180
+ include?: string;
31181
+ /**
31182
+ * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
31183
+ */
31184
+ fields?: {
31185
+ [key: string]: unknown;
31186
+ };
31187
+ };
31188
+ url: "/admin/storage/sign-download";
31189
+ };
31190
+ type PostAdminStorageSignDownloadErrors = {
31191
+ /**
31192
+ * Bad Request - Invalid input data or malformed request
31193
+ */
31194
+ 400: ErrorResponse;
31195
+ /**
31196
+ * Unauthorized - Missing or invalid authentication token
31197
+ */
31198
+ 401: ErrorResponse;
31199
+ /**
31200
+ * Forbidden - Authenticated but not authorized for this resource
31201
+ */
31202
+ 403: ErrorResponse;
31203
+ /**
31204
+ * Not Found - Resource does not exist
31205
+ */
31206
+ 404: ErrorResponse;
31207
+ /**
31208
+ * Too Many Requests - Rate limit exceeded
31209
+ */
31210
+ 429: ErrorResponse;
31211
+ /**
31212
+ * Internal Server Error - Unexpected server error
31213
+ */
31214
+ 500: ErrorResponse;
31215
+ /**
31216
+ * General Error
31217
+ */
31218
+ default: Errors;
31219
+ };
31220
+ type PostAdminStorageSignDownloadError = PostAdminStorageSignDownloadErrors[keyof PostAdminStorageSignDownloadErrors];
31221
+ type PostAdminStorageSignDownloadResponses = {
31222
+ /**
31223
+ * Success
31224
+ */
31225
+ 201: {
31226
+ data?: PresignedUrl;
31227
+ included?: Array<unknown>;
31228
+ meta?: {
31229
+ [key: string]: unknown;
31230
+ };
31231
+ };
31232
+ };
31233
+ type PostAdminStorageSignDownloadResponse = PostAdminStorageSignDownloadResponses[keyof PostAdminStorageSignDownloadResponses];
31234
+ type GetAdminTenantsByTenantIdWorkspaceStatsData = {
31235
+ body?: never;
31236
+ headers: {
31237
+ /**
31238
+ * Application ID for authentication and routing
31239
+ */
31240
+ "x-application-key": string;
31241
+ };
31242
+ path: {
31243
+ tenant_id: string;
31244
+ };
31245
+ query?: {
31246
+ /**
31247
+ * JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
31248
+ */
31249
+ filter?: {
31250
+ [key: string]: unknown;
31251
+ };
31252
+ /**
31253
+ * Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
31254
+ */
31255
+ sort?: string;
31256
+ /**
31257
+ * Include related resources in the response. Comma-separated list of relationship names to eager-load.
31258
+ */
31259
+ include?: string;
31260
+ /**
31261
+ * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
31262
+ */
31263
+ fields?: {
31264
+ [key: string]: unknown;
31265
+ };
31266
+ };
31267
+ url: "/admin/tenants/{tenant_id}/workspace_stats";
31268
+ };
31269
+ type GetAdminTenantsByTenantIdWorkspaceStatsErrors = {
31270
+ /**
31271
+ * Bad Request - Invalid input data or malformed request
31272
+ */
31273
+ 400: ErrorResponse;
31274
+ /**
31275
+ * Unauthorized - Missing or invalid authentication token
31276
+ */
31277
+ 401: ErrorResponse;
31278
+ /**
31279
+ * Forbidden - Authenticated but not authorized for this resource
31280
+ */
31281
+ 403: ErrorResponse;
31282
+ /**
31283
+ * Not Found - Resource does not exist
31284
+ */
31285
+ 404: ErrorResponse;
31286
+ /**
31287
+ * Too Many Requests - Rate limit exceeded
31288
+ */
31289
+ 429: ErrorResponse;
31290
+ /**
31291
+ * Internal Server Error - Unexpected server error
31292
+ */
31293
+ 500: ErrorResponse;
31294
+ /**
31295
+ * General Error
31296
+ */
31297
+ default: Errors;
31298
+ };
31299
+ type GetAdminTenantsByTenantIdWorkspaceStatsError = GetAdminTenantsByTenantIdWorkspaceStatsErrors[keyof GetAdminTenantsByTenantIdWorkspaceStatsErrors];
31300
+ type GetAdminTenantsByTenantIdWorkspaceStatsResponses = {
30235
31301
  /**
30236
31302
  * Success
30237
31303
  */
30238
31304
  200: {
30239
- data?: AgentTrainingStats;
31305
+ /**
31306
+ * An array of resource objects representing a workspace_document_stats
31307
+ */
31308
+ data?: Array<WorkspaceDocumentStats>;
30240
31309
  included?: Array<unknown>;
30241
31310
  meta?: {
30242
31311
  [key: string]: unknown;
30243
31312
  };
30244
31313
  };
30245
31314
  };
30246
- type GetAdminAgentsByIdTrainingStatsResponse = GetAdminAgentsByIdTrainingStatsResponses[keyof GetAdminAgentsByIdTrainingStatsResponses];
30247
- type PostAdminStorageSignDownloadData = {
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
- };
31315
+ type GetAdminTenantsByTenantIdWorkspaceStatsResponse = GetAdminTenantsByTenantIdWorkspaceStatsResponses[keyof GetAdminTenantsByTenantIdWorkspaceStatsResponses];
31316
+ type GetAdminWebhookDeliveriesStatsData = {
31317
+ body?: never;
30263
31318
  headers: {
30264
31319
  /**
30265
31320
  * Application ID for authentication and routing
@@ -30267,21 +31322,10 @@ type PostAdminStorageSignDownloadData = {
30267
31322
  "x-application-key": string;
30268
31323
  };
30269
31324
  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";
31325
+ query?: never;
31326
+ url: "/admin/webhook-deliveries/stats";
30283
31327
  };
30284
- type PostAdminStorageSignDownloadErrors = {
31328
+ type GetAdminWebhookDeliveriesStatsErrors = {
30285
31329
  /**
30286
31330
  * Bad Request - Invalid input data or malformed request
30287
31331
  */
@@ -30311,22 +31355,33 @@ type PostAdminStorageSignDownloadErrors = {
30311
31355
  */
30312
31356
  default: Errors;
30313
31357
  };
30314
- type PostAdminStorageSignDownloadError = PostAdminStorageSignDownloadErrors[keyof PostAdminStorageSignDownloadErrors];
30315
- type PostAdminStorageSignDownloadResponses = {
31358
+ type GetAdminWebhookDeliveriesStatsError = GetAdminWebhookDeliveriesStatsErrors[keyof GetAdminWebhookDeliveriesStatsErrors];
31359
+ type GetAdminWebhookDeliveriesStatsResponses = {
30316
31360
  /**
30317
31361
  * Success
30318
31362
  */
30319
- 201: {
30320
- data?: PresignedUrl;
30321
- included?: Array<unknown>;
30322
- meta?: {
31363
+ 200: {
31364
+ result: {
30323
31365
  [key: string]: unknown;
30324
31366
  };
30325
31367
  };
30326
31368
  };
30327
- type PostAdminStorageSignDownloadResponse = PostAdminStorageSignDownloadResponses[keyof PostAdminStorageSignDownloadResponses];
30328
- type GetAdminTenantsByTenantIdWorkspaceStatsData = {
30329
- body?: never;
31369
+ type GetAdminWebhookDeliveriesStatsResponse = GetAdminWebhookDeliveriesStatsResponses[keyof GetAdminWebhookDeliveriesStatsResponses];
31370
+ type PostAdminAgentsByIdTestData = {
31371
+ /**
31372
+ * Request body for the /agents/:id/test operation on agent resource
31373
+ */
31374
+ body: {
31375
+ data: {
31376
+ attributes?: {
31377
+ sample_input: string;
31378
+ };
31379
+ relationships?: {
31380
+ [key: string]: never;
31381
+ };
31382
+ type?: "agent";
31383
+ };
31384
+ };
30330
31385
  headers: {
30331
31386
  /**
30332
31387
  * Application ID for authentication and routing
@@ -30334,19 +31389,12 @@ type GetAdminTenantsByTenantIdWorkspaceStatsData = {
30334
31389
  "x-application-key": string;
30335
31390
  };
30336
31391
  path: {
30337
- tenant_id: string;
30338
- };
30339
- query?: {
30340
31392
  /**
30341
- * JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
30342
- */
30343
- filter?: {
30344
- [key: string]: unknown;
30345
- };
30346
- /**
30347
- * Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
31393
+ * Agent ID (from URL path parameter)
30348
31394
  */
30349
- sort?: string;
31395
+ id: string;
31396
+ };
31397
+ query?: {
30350
31398
  /**
30351
31399
  * Include related resources in the response. Comma-separated list of relationship names to eager-load.
30352
31400
  */
@@ -30358,9 +31406,9 @@ type GetAdminTenantsByTenantIdWorkspaceStatsData = {
30358
31406
  [key: string]: unknown;
30359
31407
  };
30360
31408
  };
30361
- url: "/admin/tenants/{tenant_id}/workspace_stats";
31409
+ url: "/admin/agents/{id}/test";
30362
31410
  };
30363
- type GetAdminTenantsByTenantIdWorkspaceStatsErrors = {
31411
+ type PostAdminAgentsByIdTestErrors = {
30364
31412
  /**
30365
31413
  * Bad Request - Invalid input data or malformed request
30366
31414
  */
@@ -30390,90 +31438,34 @@ type GetAdminTenantsByTenantIdWorkspaceStatsErrors = {
30390
31438
  */
30391
31439
  default: Errors;
30392
31440
  };
30393
- type GetAdminTenantsByTenantIdWorkspaceStatsError = GetAdminTenantsByTenantIdWorkspaceStatsErrors[keyof GetAdminTenantsByTenantIdWorkspaceStatsErrors];
30394
- type GetAdminTenantsByTenantIdWorkspaceStatsResponses = {
31441
+ type PostAdminAgentsByIdTestError = PostAdminAgentsByIdTestErrors[keyof PostAdminAgentsByIdTestErrors];
31442
+ type PostAdminAgentsByIdTestResponses = {
30395
31443
  /**
30396
31444
  * Success
30397
31445
  */
30398
- 200: {
30399
- /**
30400
- * An array of resource objects representing a workspace_document_stats
30401
- */
30402
- data?: Array<WorkspaceDocumentStats>;
30403
- included?: Array<unknown>;
31446
+ 201: {
31447
+ data?: Agent;
31448
+ included?: Array<AgentVersion>;
30404
31449
  meta?: {
30405
31450
  [key: string]: unknown;
30406
31451
  };
30407
31452
  };
30408
31453
  };
30409
- type GetAdminTenantsByTenantIdWorkspaceStatsResponse = GetAdminTenantsByTenantIdWorkspaceStatsResponses[keyof GetAdminTenantsByTenantIdWorkspaceStatsResponses];
30410
- type GetAdminWebhookDeliveriesStatsData = {
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 = {
31454
+ type PostAdminAgentsByIdTestResponse = PostAdminAgentsByIdTestResponses[keyof PostAdminAgentsByIdTestResponses];
31455
+ type PatchAdminConsentRecordsByIdWithdrawData = {
30454
31456
  /**
30455
- * Success
31457
+ * Request body for the /consent-records/:id/withdraw operation on consent_record resource
30456
31458
  */
30457
- 200: {
30458
- result: {
30459
- [key: string]: unknown;
30460
- };
30461
- };
30462
- };
30463
- type GetAdminWebhookDeliveriesStatsResponse = GetAdminWebhookDeliveriesStatsResponses[keyof GetAdminWebhookDeliveriesStatsResponses];
30464
- type PostAdminAgentsByIdTestData = {
30465
- /**
30466
- * Request body for the /agents/:id/test operation on agent resource
30467
- */
30468
- body: {
31459
+ body?: {
30469
31460
  data: {
30470
31461
  attributes?: {
30471
- sample_input: string;
31462
+ [key: string]: never;
30472
31463
  };
31464
+ id: string;
30473
31465
  relationships?: {
30474
31466
  [key: string]: never;
30475
31467
  };
30476
- type?: "agent";
31468
+ type?: "consent_record";
30477
31469
  };
30478
31470
  };
30479
31471
  headers: {
@@ -30483,9 +31475,6 @@ type PostAdminAgentsByIdTestData = {
30483
31475
  "x-application-key": string;
30484
31476
  };
30485
31477
  path: {
30486
- /**
30487
- * Agent ID (from URL path parameter)
30488
- */
30489
31478
  id: string;
30490
31479
  };
30491
31480
  query?: {
@@ -30500,9 +31489,9 @@ type PostAdminAgentsByIdTestData = {
30500
31489
  [key: string]: unknown;
30501
31490
  };
30502
31491
  };
30503
- url: "/admin/agents/{id}/test";
31492
+ url: "/admin/consent-records/{id}/withdraw";
30504
31493
  };
30505
- type PostAdminAgentsByIdTestErrors = {
31494
+ type PatchAdminConsentRecordsByIdWithdrawErrors = {
30506
31495
  /**
30507
31496
  * Bad Request - Invalid input data or malformed request
30508
31497
  */
@@ -30532,20 +31521,20 @@ type PostAdminAgentsByIdTestErrors = {
30532
31521
  */
30533
31522
  default: Errors;
30534
31523
  };
30535
- type PostAdminAgentsByIdTestError = PostAdminAgentsByIdTestErrors[keyof PostAdminAgentsByIdTestErrors];
30536
- type PostAdminAgentsByIdTestResponses = {
31524
+ type PatchAdminConsentRecordsByIdWithdrawError = PatchAdminConsentRecordsByIdWithdrawErrors[keyof PatchAdminConsentRecordsByIdWithdrawErrors];
31525
+ type PatchAdminConsentRecordsByIdWithdrawResponses = {
30537
31526
  /**
30538
31527
  * Success
30539
31528
  */
30540
- 201: {
30541
- data?: Agent;
30542
- included?: Array<AgentVersion>;
31529
+ 200: {
31530
+ data?: ConsentRecord;
31531
+ included?: Array<unknown>;
30543
31532
  meta?: {
30544
31533
  [key: string]: unknown;
30545
31534
  };
30546
31535
  };
30547
31536
  };
30548
- type PostAdminAgentsByIdTestResponse = PostAdminAgentsByIdTestResponses[keyof PostAdminAgentsByIdTestResponses];
31537
+ type PatchAdminConsentRecordsByIdWithdrawResponse = PatchAdminConsentRecordsByIdWithdrawResponses[keyof PatchAdminConsentRecordsByIdWithdrawResponses];
30549
31538
  type GetAdminLlmAnalyticsData = {
30550
31539
  body?: never;
30551
31540
  headers: {
@@ -31503,7 +32492,10 @@ type PostAdminTenantsIsvData = {
31503
32492
  logo_url?: string | unknown;
31504
32493
  name: string;
31505
32494
  owner_id: string;
31506
- slug: string;
32495
+ /**
32496
+ * Optional user-facing slug for vanity URLs
32497
+ */
32498
+ vanity_slug?: string | unknown;
31507
32499
  };
31508
32500
  relationships?: {
31509
32501
  [key: string]: never;
@@ -33918,7 +34910,7 @@ type PostAdminSystemMessagesData = {
33918
34910
  */
33919
34911
  requires_acceptance?: boolean | unknown;
33920
34912
  title: string;
33921
- type: "tos" | "welcome" | "announcement";
34913
+ type: "tos" | "privacy_policy" | "welcome" | "announcement";
33922
34914
  version?: string | unknown;
33923
34915
  };
33924
34916
  relationships?: {
@@ -34308,7 +35300,7 @@ type PostAdminInvitationsAcceptByTokenResponses = {
34308
35300
  */
34309
35301
  201: {
34310
35302
  data?: Invitation;
34311
- included?: Array<User>;
35303
+ included?: Array<unknown>;
34312
35304
  meta?: {
34313
35305
  [key: string]: unknown;
34314
35306
  };
@@ -35381,6 +36373,88 @@ type PatchAdminBucketsByIdResponses = {
35381
36373
  };
35382
36374
  };
35383
36375
  type PatchAdminBucketsByIdResponse = PatchAdminBucketsByIdResponses[keyof PatchAdminBucketsByIdResponses];
36376
+ type GetAdminLegalAcceptancesLatestData = {
36377
+ body?: never;
36378
+ headers: {
36379
+ /**
36380
+ * Application ID for authentication and routing
36381
+ */
36382
+ "x-application-key": string;
36383
+ };
36384
+ path?: never;
36385
+ query: {
36386
+ /**
36387
+ * JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
36388
+ */
36389
+ filter?: {
36390
+ [key: string]: unknown;
36391
+ };
36392
+ /**
36393
+ * Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
36394
+ */
36395
+ sort?: string;
36396
+ /**
36397
+ * Include related resources in the response. Comma-separated list of relationship names to eager-load.
36398
+ */
36399
+ include?: string;
36400
+ /**
36401
+ * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
36402
+ */
36403
+ fields?: {
36404
+ [key: string]: unknown;
36405
+ };
36406
+ user_id: string;
36407
+ document_type: string;
36408
+ };
36409
+ url: "/admin/legal-acceptances/latest";
36410
+ };
36411
+ type GetAdminLegalAcceptancesLatestErrors = {
36412
+ /**
36413
+ * Bad Request - Invalid input data or malformed request
36414
+ */
36415
+ 400: ErrorResponse;
36416
+ /**
36417
+ * Unauthorized - Missing or invalid authentication token
36418
+ */
36419
+ 401: ErrorResponse;
36420
+ /**
36421
+ * Forbidden - Authenticated but not authorized for this resource
36422
+ */
36423
+ 403: ErrorResponse;
36424
+ /**
36425
+ * Not Found - Resource does not exist
36426
+ */
36427
+ 404: ErrorResponse;
36428
+ /**
36429
+ * Too Many Requests - Rate limit exceeded
36430
+ */
36431
+ 429: ErrorResponse;
36432
+ /**
36433
+ * Internal Server Error - Unexpected server error
36434
+ */
36435
+ 500: ErrorResponse;
36436
+ /**
36437
+ * General Error
36438
+ */
36439
+ default: Errors;
36440
+ };
36441
+ type GetAdminLegalAcceptancesLatestError = GetAdminLegalAcceptancesLatestErrors[keyof GetAdminLegalAcceptancesLatestErrors];
36442
+ type GetAdminLegalAcceptancesLatestResponses = {
36443
+ /**
36444
+ * Success
36445
+ */
36446
+ 200: {
36447
+ /**
36448
+ * An array of resource objects representing a legal_acceptance
36449
+ */
36450
+ data?: Array<LegalAcceptance>;
36451
+ included?: Array<unknown>;
36452
+ meta?: {
36453
+ [key: string]: unknown;
36454
+ };
36455
+ };
36456
+ };
36457
+ type GetAdminLegalAcceptancesLatestResponse = GetAdminLegalAcceptancesLatestResponses[keyof GetAdminLegalAcceptancesLatestResponses];
35384
36458
  type GetAdminConfigsData = {
35385
36459
  body?: never;
35386
36460
  headers: {
@@ -36448,11 +37522,14 @@ type PatchAdminTenantsByIdData = {
36448
37522
  logo_url?: string | unknown;
36449
37523
  name?: string | unknown;
36450
37524
  parent_id?: string | unknown;
36451
- slug?: string | unknown;
36452
37525
  /**
36453
37526
  * Cost in credits for training on a single document
36454
37527
  */
36455
37528
  training_price_credits?: number | unknown;
37529
+ /**
37530
+ * Optional user-facing slug for vanity URLs
37531
+ */
37532
+ vanity_slug?: string | unknown;
36456
37533
  };
36457
37534
  id: string;
36458
37535
  relationships?: {
@@ -36828,6 +37905,234 @@ type GetAdminBucketsAllResponses = {
36828
37905
  };
36829
37906
  };
36830
37907
  type GetAdminBucketsAllResponse = GetAdminBucketsAllResponses[keyof GetAdminBucketsAllResponses];
37908
+ type DeleteAdminLegalDocumentsByIdData = {
37909
+ body?: never;
37910
+ headers: {
37911
+ /**
37912
+ * Application ID for authentication and routing
37913
+ */
37914
+ "x-application-key": string;
37915
+ };
37916
+ path: {
37917
+ id: string;
37918
+ };
37919
+ query?: {
37920
+ /**
37921
+ * Include related resources in the response. Comma-separated list of relationship names to eager-load.
37922
+ */
37923
+ include?: string;
37924
+ /**
37925
+ * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
37926
+ */
37927
+ fields?: {
37928
+ [key: string]: unknown;
37929
+ };
37930
+ };
37931
+ url: "/admin/legal-documents/{id}";
37932
+ };
37933
+ type DeleteAdminLegalDocumentsByIdErrors = {
37934
+ /**
37935
+ * Bad Request - Invalid input data or malformed request
37936
+ */
37937
+ 400: ErrorResponse;
37938
+ /**
37939
+ * Unauthorized - Missing or invalid authentication token
37940
+ */
37941
+ 401: ErrorResponse;
37942
+ /**
37943
+ * Forbidden - Authenticated but not authorized for this resource
37944
+ */
37945
+ 403: ErrorResponse;
37946
+ /**
37947
+ * Not Found - Resource does not exist
37948
+ */
37949
+ 404: ErrorResponse;
37950
+ /**
37951
+ * Too Many Requests - Rate limit exceeded
37952
+ */
37953
+ 429: ErrorResponse;
37954
+ /**
37955
+ * Internal Server Error - Unexpected server error
37956
+ */
37957
+ 500: ErrorResponse;
37958
+ /**
37959
+ * General Error
37960
+ */
37961
+ default: Errors;
37962
+ };
37963
+ type DeleteAdminLegalDocumentsByIdError = DeleteAdminLegalDocumentsByIdErrors[keyof DeleteAdminLegalDocumentsByIdErrors];
37964
+ type DeleteAdminLegalDocumentsByIdResponses = {
37965
+ /**
37966
+ * Deleted successfully
37967
+ */
37968
+ 200: unknown;
37969
+ };
37970
+ type GetAdminLegalDocumentsByIdData = {
37971
+ body?: never;
37972
+ headers: {
37973
+ /**
37974
+ * Application ID for authentication and routing
37975
+ */
37976
+ "x-application-key": string;
37977
+ };
37978
+ path: {
37979
+ id: string;
37980
+ };
37981
+ query?: {
37982
+ /**
37983
+ * Include related resources in the response. Comma-separated list of relationship names to eager-load.
37984
+ */
37985
+ include?: string;
37986
+ /**
37987
+ * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
37988
+ */
37989
+ fields?: {
37990
+ [key: string]: unknown;
37991
+ };
37992
+ };
37993
+ url: "/admin/legal-documents/{id}";
37994
+ };
37995
+ type GetAdminLegalDocumentsByIdErrors = {
37996
+ /**
37997
+ * Bad Request - Invalid input data or malformed request
37998
+ */
37999
+ 400: ErrorResponse;
38000
+ /**
38001
+ * Unauthorized - Missing or invalid authentication token
38002
+ */
38003
+ 401: ErrorResponse;
38004
+ /**
38005
+ * Forbidden - Authenticated but not authorized for this resource
38006
+ */
38007
+ 403: ErrorResponse;
38008
+ /**
38009
+ * Not Found - Resource does not exist
38010
+ */
38011
+ 404: ErrorResponse;
38012
+ /**
38013
+ * Too Many Requests - Rate limit exceeded
38014
+ */
38015
+ 429: ErrorResponse;
38016
+ /**
38017
+ * Internal Server Error - Unexpected server error
38018
+ */
38019
+ 500: ErrorResponse;
38020
+ /**
38021
+ * General Error
38022
+ */
38023
+ default: Errors;
38024
+ };
38025
+ type GetAdminLegalDocumentsByIdError = GetAdminLegalDocumentsByIdErrors[keyof GetAdminLegalDocumentsByIdErrors];
38026
+ type GetAdminLegalDocumentsByIdResponses = {
38027
+ /**
38028
+ * Success
38029
+ */
38030
+ 200: {
38031
+ data?: LegalDocument;
38032
+ included?: Array<unknown>;
38033
+ meta?: {
38034
+ [key: string]: unknown;
38035
+ };
38036
+ };
38037
+ };
38038
+ type GetAdminLegalDocumentsByIdResponse = GetAdminLegalDocumentsByIdResponses[keyof GetAdminLegalDocumentsByIdResponses];
38039
+ type PatchAdminLegalDocumentsByIdData = {
38040
+ /**
38041
+ * Request body for the /legal-documents/:id operation on legal_document resource
38042
+ */
38043
+ body?: {
38044
+ data: {
38045
+ attributes?: {
38046
+ /**
38047
+ * Markdown content
38048
+ */
38049
+ content?: string | unknown;
38050
+ is_active?: boolean | unknown;
38051
+ /**
38052
+ * ISO 639-1 language code
38053
+ */
38054
+ locale?: string | unknown;
38055
+ /**
38056
+ * ISO 3166-1 region code (e.g., EU, BR, US) or nil for default
38057
+ */
38058
+ region?: string | unknown;
38059
+ title?: string | unknown;
38060
+ version?: string | unknown;
38061
+ };
38062
+ id: string;
38063
+ relationships?: {
38064
+ [key: string]: never;
38065
+ };
38066
+ type?: "legal_document";
38067
+ };
38068
+ };
38069
+ headers: {
38070
+ /**
38071
+ * Application ID for authentication and routing
38072
+ */
38073
+ "x-application-key": string;
38074
+ };
38075
+ path: {
38076
+ id: string;
38077
+ };
38078
+ query?: {
38079
+ /**
38080
+ * Include related resources in the response. Comma-separated list of relationship names to eager-load.
38081
+ */
38082
+ include?: string;
38083
+ /**
38084
+ * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
38085
+ */
38086
+ fields?: {
38087
+ [key: string]: unknown;
38088
+ };
38089
+ };
38090
+ url: "/admin/legal-documents/{id}";
38091
+ };
38092
+ type PatchAdminLegalDocumentsByIdErrors = {
38093
+ /**
38094
+ * Bad Request - Invalid input data or malformed request
38095
+ */
38096
+ 400: ErrorResponse;
38097
+ /**
38098
+ * Unauthorized - Missing or invalid authentication token
38099
+ */
38100
+ 401: ErrorResponse;
38101
+ /**
38102
+ * Forbidden - Authenticated but not authorized for this resource
38103
+ */
38104
+ 403: ErrorResponse;
38105
+ /**
38106
+ * Not Found - Resource does not exist
38107
+ */
38108
+ 404: ErrorResponse;
38109
+ /**
38110
+ * Too Many Requests - Rate limit exceeded
38111
+ */
38112
+ 429: ErrorResponse;
38113
+ /**
38114
+ * Internal Server Error - Unexpected server error
38115
+ */
38116
+ 500: ErrorResponse;
38117
+ /**
38118
+ * General Error
38119
+ */
38120
+ default: Errors;
38121
+ };
38122
+ type PatchAdminLegalDocumentsByIdError = PatchAdminLegalDocumentsByIdErrors[keyof PatchAdminLegalDocumentsByIdErrors];
38123
+ type PatchAdminLegalDocumentsByIdResponses = {
38124
+ /**
38125
+ * Success
38126
+ */
38127
+ 200: {
38128
+ data?: LegalDocument;
38129
+ included?: Array<unknown>;
38130
+ meta?: {
38131
+ [key: string]: unknown;
38132
+ };
38133
+ };
38134
+ };
38135
+ type PatchAdminLegalDocumentsByIdResponse = PatchAdminLegalDocumentsByIdResponses[keyof PatchAdminLegalDocumentsByIdResponses];
36831
38136
  type PostAdminAgentsByIdDiscoverSchemaData = {
36832
38137
  /**
36833
38138
  * Request body for the /agents/:id/discover-schema operation on agent resource
@@ -36889,18 +38194,183 @@ type PostAdminAgentsByIdDiscoverSchemaErrors = {
36889
38194
  */
36890
38195
  default: Errors;
36891
38196
  };
36892
- type PostAdminAgentsByIdDiscoverSchemaError = PostAdminAgentsByIdDiscoverSchemaErrors[keyof PostAdminAgentsByIdDiscoverSchemaErrors];
36893
- type PostAdminAgentsByIdDiscoverSchemaResponses = {
38197
+ type PostAdminAgentsByIdDiscoverSchemaError = PostAdminAgentsByIdDiscoverSchemaErrors[keyof PostAdminAgentsByIdDiscoverSchemaErrors];
38198
+ type PostAdminAgentsByIdDiscoverSchemaResponses = {
38199
+ /**
38200
+ * Success
38201
+ */
38202
+ 201: {
38203
+ [key: string]: unknown;
38204
+ };
38205
+ };
38206
+ type PostAdminAgentsByIdDiscoverSchemaResponse = PostAdminAgentsByIdDiscoverSchemaResponses[keyof PostAdminAgentsByIdDiscoverSchemaResponses];
38207
+ type DeleteAdminPlansByIdData = {
38208
+ body?: never;
38209
+ headers: {
38210
+ /**
38211
+ * Application ID for authentication and routing
38212
+ */
38213
+ "x-application-key": string;
38214
+ };
38215
+ path: {
38216
+ id: string;
38217
+ };
38218
+ query?: {
38219
+ /**
38220
+ * Include related resources in the response. Comma-separated list of relationship names to eager-load.
38221
+ */
38222
+ include?: string;
38223
+ /**
38224
+ * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
38225
+ */
38226
+ fields?: {
38227
+ [key: string]: unknown;
38228
+ };
38229
+ };
38230
+ url: "/admin/plans/{id}";
38231
+ };
38232
+ type DeleteAdminPlansByIdErrors = {
38233
+ /**
38234
+ * Bad Request - Invalid input data or malformed request
38235
+ */
38236
+ 400: ErrorResponse;
38237
+ /**
38238
+ * Unauthorized - Missing or invalid authentication token
38239
+ */
38240
+ 401: ErrorResponse;
38241
+ /**
38242
+ * Forbidden - Authenticated but not authorized for this resource
38243
+ */
38244
+ 403: ErrorResponse;
38245
+ /**
38246
+ * Not Found - Resource does not exist
38247
+ */
38248
+ 404: ErrorResponse;
38249
+ /**
38250
+ * Too Many Requests - Rate limit exceeded
38251
+ */
38252
+ 429: ErrorResponse;
38253
+ /**
38254
+ * Internal Server Error - Unexpected server error
38255
+ */
38256
+ 500: ErrorResponse;
38257
+ /**
38258
+ * General Error
38259
+ */
38260
+ default: Errors;
38261
+ };
38262
+ type DeleteAdminPlansByIdError = DeleteAdminPlansByIdErrors[keyof DeleteAdminPlansByIdErrors];
38263
+ type DeleteAdminPlansByIdResponses = {
38264
+ /**
38265
+ * Deleted successfully
38266
+ */
38267
+ 200: unknown;
38268
+ };
38269
+ type GetAdminPlansByIdData = {
38270
+ body?: never;
38271
+ headers: {
38272
+ /**
38273
+ * Application ID for authentication and routing
38274
+ */
38275
+ "x-application-key": string;
38276
+ };
38277
+ path: {
38278
+ id: string;
38279
+ };
38280
+ query?: {
38281
+ /**
38282
+ * Include related resources in the response. Comma-separated list of relationship names to eager-load.
38283
+ */
38284
+ include?: string;
38285
+ /**
38286
+ * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
38287
+ */
38288
+ fields?: {
38289
+ [key: string]: unknown;
38290
+ };
38291
+ };
38292
+ url: "/admin/plans/{id}";
38293
+ };
38294
+ type GetAdminPlansByIdErrors = {
38295
+ /**
38296
+ * Bad Request - Invalid input data or malformed request
38297
+ */
38298
+ 400: ErrorResponse;
38299
+ /**
38300
+ * Unauthorized - Missing or invalid authentication token
38301
+ */
38302
+ 401: ErrorResponse;
38303
+ /**
38304
+ * Forbidden - Authenticated but not authorized for this resource
38305
+ */
38306
+ 403: ErrorResponse;
38307
+ /**
38308
+ * Not Found - Resource does not exist
38309
+ */
38310
+ 404: ErrorResponse;
38311
+ /**
38312
+ * Too Many Requests - Rate limit exceeded
38313
+ */
38314
+ 429: ErrorResponse;
38315
+ /**
38316
+ * Internal Server Error - Unexpected server error
38317
+ */
38318
+ 500: ErrorResponse;
38319
+ /**
38320
+ * General Error
38321
+ */
38322
+ default: Errors;
38323
+ };
38324
+ type GetAdminPlansByIdError = GetAdminPlansByIdErrors[keyof GetAdminPlansByIdErrors];
38325
+ type GetAdminPlansByIdResponses = {
36894
38326
  /**
36895
38327
  * Success
36896
38328
  */
36897
- 201: {
36898
- [key: string]: unknown;
38329
+ 200: {
38330
+ data?: Plan;
38331
+ included?: Array<unknown>;
38332
+ meta?: {
38333
+ [key: string]: unknown;
38334
+ };
36899
38335
  };
36900
38336
  };
36901
- type PostAdminAgentsByIdDiscoverSchemaResponse = PostAdminAgentsByIdDiscoverSchemaResponses[keyof PostAdminAgentsByIdDiscoverSchemaResponses];
36902
- type DeleteAdminPlansByIdData = {
36903
- body?: never;
38337
+ type GetAdminPlansByIdResponse = GetAdminPlansByIdResponses[keyof GetAdminPlansByIdResponses];
38338
+ type PatchAdminPlansByIdData = {
38339
+ /**
38340
+ * Request body for the /plans/:id operation on plan resource
38341
+ */
38342
+ body?: {
38343
+ data: {
38344
+ attributes?: {
38345
+ billing_interval?: number | unknown;
38346
+ /**
38347
+ * One-time credits granted upon first subscription (Welcome Bonus)
38348
+ */
38349
+ initial_credits?: number | unknown;
38350
+ /**
38351
+ * Maximum number of renewals for free trial (nil = unlimited)
38352
+ */
38353
+ max_renewals?: number | unknown;
38354
+ monthly_credits?: number | unknown;
38355
+ monthly_price?: {
38356
+ amount: string;
38357
+ currency: string;
38358
+ } | unknown;
38359
+ name?: string | unknown;
38360
+ /**
38361
+ * Number of 20GB storage blocks included in plan
38362
+ */
38363
+ storage_blocks?: number | unknown;
38364
+ storage_days?: number | unknown;
38365
+ type?: "plan" | "addon" | unknown;
38366
+ };
38367
+ id: string;
38368
+ relationships?: {
38369
+ [key: string]: never;
38370
+ };
38371
+ type?: "plan";
38372
+ };
38373
+ };
36904
38374
  headers: {
36905
38375
  /**
36906
38376
  * Application ID for authentication and routing
@@ -36924,7 +38394,7 @@ type DeleteAdminPlansByIdData = {
36924
38394
  };
36925
38395
  url: "/admin/plans/{id}";
36926
38396
  };
36927
- type DeleteAdminPlansByIdErrors = {
38397
+ type PatchAdminPlansByIdErrors = {
36928
38398
  /**
36929
38399
  * Bad Request - Invalid input data or malformed request
36930
38400
  */
@@ -36954,14 +38424,21 @@ type DeleteAdminPlansByIdErrors = {
36954
38424
  */
36955
38425
  default: Errors;
36956
38426
  };
36957
- type DeleteAdminPlansByIdError = DeleteAdminPlansByIdErrors[keyof DeleteAdminPlansByIdErrors];
36958
- type DeleteAdminPlansByIdResponses = {
38427
+ type PatchAdminPlansByIdError = PatchAdminPlansByIdErrors[keyof PatchAdminPlansByIdErrors];
38428
+ type PatchAdminPlansByIdResponses = {
36959
38429
  /**
36960
- * Deleted successfully
38430
+ * Success
36961
38431
  */
36962
- 200: unknown;
38432
+ 200: {
38433
+ data?: Plan;
38434
+ included?: Array<unknown>;
38435
+ meta?: {
38436
+ [key: string]: unknown;
38437
+ };
38438
+ };
36963
38439
  };
36964
- type GetAdminPlansByIdData = {
38440
+ type PatchAdminPlansByIdResponse = PatchAdminPlansByIdResponses[keyof PatchAdminPlansByIdResponses];
38441
+ type GetAdminLegalAcceptancesData = {
36965
38442
  body?: never;
36966
38443
  headers: {
36967
38444
  /**
@@ -36969,10 +38446,24 @@ type GetAdminPlansByIdData = {
36969
38446
  */
36970
38447
  "x-application-key": string;
36971
38448
  };
36972
- path: {
36973
- id: string;
36974
- };
38449
+ path?: never;
36975
38450
  query?: {
38451
+ /**
38452
+ * JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
38453
+ */
38454
+ filter?: {
38455
+ [key: string]: unknown;
38456
+ };
38457
+ /**
38458
+ * Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
38459
+ */
38460
+ sort?: string;
38461
+ /**
38462
+ * JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
38463
+ */
38464
+ page?: {
38465
+ [key: string]: unknown;
38466
+ };
36976
38467
  /**
36977
38468
  * Include related resources in the response. Comma-separated list of relationship names to eager-load.
36978
38469
  */
@@ -36984,9 +38475,9 @@ type GetAdminPlansByIdData = {
36984
38475
  [key: string]: unknown;
36985
38476
  };
36986
38477
  };
36987
- url: "/admin/plans/{id}";
38478
+ url: "/admin/legal-acceptances";
36988
38479
  };
36989
- type GetAdminPlansByIdErrors = {
38480
+ type GetAdminLegalAcceptancesErrors = {
36990
38481
  /**
36991
38482
  * Bad Request - Invalid input data or malformed request
36992
38483
  */
@@ -37016,54 +38507,37 @@ type GetAdminPlansByIdErrors = {
37016
38507
  */
37017
38508
  default: Errors;
37018
38509
  };
37019
- type GetAdminPlansByIdError = GetAdminPlansByIdErrors[keyof GetAdminPlansByIdErrors];
37020
- type GetAdminPlansByIdResponses = {
38510
+ type GetAdminLegalAcceptancesError = GetAdminLegalAcceptancesErrors[keyof GetAdminLegalAcceptancesErrors];
38511
+ type GetAdminLegalAcceptancesResponses = {
37021
38512
  /**
37022
38513
  * Success
37023
38514
  */
37024
38515
  200: {
37025
- data?: Plan;
38516
+ /**
38517
+ * An array of resource objects representing a legal_acceptance
38518
+ */
38519
+ data?: Array<LegalAcceptance>;
37026
38520
  included?: Array<unknown>;
37027
38521
  meta?: {
37028
38522
  [key: string]: unknown;
37029
38523
  };
37030
38524
  };
37031
38525
  };
37032
- type GetAdminPlansByIdResponse = GetAdminPlansByIdResponses[keyof GetAdminPlansByIdResponses];
37033
- type PatchAdminPlansByIdData = {
38526
+ type GetAdminLegalAcceptancesResponse = GetAdminLegalAcceptancesResponses[keyof GetAdminLegalAcceptancesResponses];
38527
+ type PatchAdminUsersByIdResetPasswordData = {
37034
38528
  /**
37035
- * Request body for the /plans/:id operation on plan resource
38529
+ * Request body for the /users/:id/reset-password operation on user resource
37036
38530
  */
37037
38531
  body?: {
37038
38532
  data: {
37039
38533
  attributes?: {
37040
- billing_interval?: number | unknown;
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;
38534
+ [key: string]: never;
37061
38535
  };
37062
38536
  id: string;
37063
38537
  relationships?: {
37064
38538
  [key: string]: never;
37065
38539
  };
37066
- type?: "plan";
38540
+ type?: "user";
37067
38541
  };
37068
38542
  };
37069
38543
  headers: {
@@ -37087,9 +38561,9 @@ type PatchAdminPlansByIdData = {
37087
38561
  [key: string]: unknown;
37088
38562
  };
37089
38563
  };
37090
- url: "/admin/plans/{id}";
38564
+ url: "/admin/users/{id}/reset-password";
37091
38565
  };
37092
- type PatchAdminPlansByIdErrors = {
38566
+ type PatchAdminUsersByIdResetPasswordErrors = {
37093
38567
  /**
37094
38568
  * Bad Request - Invalid input data or malformed request
37095
38569
  */
@@ -37119,34 +38593,35 @@ type PatchAdminPlansByIdErrors = {
37119
38593
  */
37120
38594
  default: Errors;
37121
38595
  };
37122
- type PatchAdminPlansByIdError = PatchAdminPlansByIdErrors[keyof PatchAdminPlansByIdErrors];
37123
- type PatchAdminPlansByIdResponses = {
38596
+ type PatchAdminUsersByIdResetPasswordError = PatchAdminUsersByIdResetPasswordErrors[keyof PatchAdminUsersByIdResetPasswordErrors];
38597
+ type PatchAdminUsersByIdResetPasswordResponses = {
37124
38598
  /**
37125
38599
  * Success
37126
38600
  */
37127
38601
  200: {
37128
- data?: Plan;
38602
+ data?: User;
37129
38603
  included?: Array<unknown>;
37130
38604
  meta?: {
37131
38605
  [key: string]: unknown;
37132
38606
  };
37133
38607
  };
37134
38608
  };
37135
- type PatchAdminPlansByIdResponse = PatchAdminPlansByIdResponses[keyof PatchAdminPlansByIdResponses];
37136
- type PatchAdminUsersByIdResetPasswordData = {
38609
+ type PatchAdminUsersByIdResetPasswordResponse = PatchAdminUsersByIdResetPasswordResponses[keyof PatchAdminUsersByIdResetPasswordResponses];
38610
+ type PatchAdminInvitationsByIdAcceptData = {
37137
38611
  /**
37138
- * Request body for the /users/:id/reset-password operation on user resource
38612
+ * Request body for the /invitations/:id/accept operation on invitation resource
37139
38613
  */
37140
- body?: {
38614
+ body: {
37141
38615
  data: {
37142
38616
  attributes?: {
37143
- [key: string]: never;
38617
+ application_id?: string | unknown;
38618
+ token: string;
37144
38619
  };
37145
38620
  id: string;
37146
38621
  relationships?: {
37147
38622
  [key: string]: never;
37148
38623
  };
37149
- type?: "user";
38624
+ type?: "invitation";
37150
38625
  };
37151
38626
  };
37152
38627
  headers: {
@@ -37170,9 +38645,9 @@ type PatchAdminUsersByIdResetPasswordData = {
37170
38645
  [key: string]: unknown;
37171
38646
  };
37172
38647
  };
37173
- url: "/admin/users/{id}/reset-password";
38648
+ url: "/admin/invitations/{id}/accept";
37174
38649
  };
37175
- type PatchAdminUsersByIdResetPasswordErrors = {
38650
+ type PatchAdminInvitationsByIdAcceptErrors = {
37176
38651
  /**
37177
38652
  * Bad Request - Invalid input data or malformed request
37178
38653
  */
@@ -37202,37 +38677,22 @@ type PatchAdminUsersByIdResetPasswordErrors = {
37202
38677
  */
37203
38678
  default: Errors;
37204
38679
  };
37205
- type PatchAdminUsersByIdResetPasswordError = PatchAdminUsersByIdResetPasswordErrors[keyof PatchAdminUsersByIdResetPasswordErrors];
37206
- type PatchAdminUsersByIdResetPasswordResponses = {
38680
+ type PatchAdminInvitationsByIdAcceptError = PatchAdminInvitationsByIdAcceptErrors[keyof PatchAdminInvitationsByIdAcceptErrors];
38681
+ type PatchAdminInvitationsByIdAcceptResponses = {
37207
38682
  /**
37208
38683
  * Success
37209
38684
  */
37210
38685
  200: {
37211
- data?: User;
38686
+ data?: Invitation;
37212
38687
  included?: Array<unknown>;
37213
38688
  meta?: {
37214
38689
  [key: string]: unknown;
37215
38690
  };
37216
38691
  };
37217
38692
  };
37218
- type PatchAdminUsersByIdResetPasswordResponse = PatchAdminUsersByIdResetPasswordResponses[keyof PatchAdminUsersByIdResetPasswordResponses];
37219
- type PatchAdminInvitationsByIdAcceptData = {
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
- };
38693
+ type PatchAdminInvitationsByIdAcceptResponse = PatchAdminInvitationsByIdAcceptResponses[keyof PatchAdminInvitationsByIdAcceptResponses];
38694
+ type GetAdminConsentRecordsByIdData = {
38695
+ body?: never;
37236
38696
  headers: {
37237
38697
  /**
37238
38698
  * Application ID for authentication and routing
@@ -37254,9 +38714,9 @@ type PatchAdminInvitationsByIdAcceptData = {
37254
38714
  [key: string]: unknown;
37255
38715
  };
37256
38716
  };
37257
- url: "/admin/invitations/{id}/accept";
38717
+ url: "/admin/consent-records/{id}";
37258
38718
  };
37259
- type PatchAdminInvitationsByIdAcceptErrors = {
38719
+ type GetAdminConsentRecordsByIdErrors = {
37260
38720
  /**
37261
38721
  * Bad Request - Invalid input data or malformed request
37262
38722
  */
@@ -37286,20 +38746,20 @@ type PatchAdminInvitationsByIdAcceptErrors = {
37286
38746
  */
37287
38747
  default: Errors;
37288
38748
  };
37289
- type PatchAdminInvitationsByIdAcceptError = PatchAdminInvitationsByIdAcceptErrors[keyof PatchAdminInvitationsByIdAcceptErrors];
37290
- type PatchAdminInvitationsByIdAcceptResponses = {
38749
+ type GetAdminConsentRecordsByIdError = GetAdminConsentRecordsByIdErrors[keyof GetAdminConsentRecordsByIdErrors];
38750
+ type GetAdminConsentRecordsByIdResponses = {
37291
38751
  /**
37292
38752
  * Success
37293
38753
  */
37294
38754
  200: {
37295
- data?: Invitation;
37296
- included?: Array<User>;
38755
+ data?: ConsentRecord;
38756
+ included?: Array<unknown>;
37297
38757
  meta?: {
37298
38758
  [key: string]: unknown;
37299
38759
  };
37300
38760
  };
37301
38761
  };
37302
- type PatchAdminInvitationsByIdAcceptResponse = PatchAdminInvitationsByIdAcceptResponses[keyof PatchAdminInvitationsByIdAcceptResponses];
38762
+ type GetAdminConsentRecordsByIdResponse = GetAdminConsentRecordsByIdResponses[keyof GetAdminConsentRecordsByIdResponses];
37303
38763
  type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdData = {
37304
38764
  body?: never;
37305
38765
  headers: {
@@ -39048,6 +40508,88 @@ type PostAdminUserProfilesResponses = {
39048
40508
  };
39049
40509
  };
39050
40510
  type PostAdminUserProfilesResponse = PostAdminUserProfilesResponses[keyof PostAdminUserProfilesResponses];
40511
+ type GetAdminLegalDocumentsByLocaleData = {
40512
+ body?: never;
40513
+ headers: {
40514
+ /**
40515
+ * Application ID for authentication and routing
40516
+ */
40517
+ "x-application-key": string;
40518
+ };
40519
+ path?: never;
40520
+ query: {
40521
+ /**
40522
+ * JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
40523
+ */
40524
+ filter?: {
40525
+ [key: string]: unknown;
40526
+ };
40527
+ /**
40528
+ * Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
40529
+ */
40530
+ sort?: string;
40531
+ /**
40532
+ * Include related resources in the response. Comma-separated list of relationship names to eager-load.
40533
+ */
40534
+ include?: string;
40535
+ /**
40536
+ * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
40537
+ */
40538
+ fields?: {
40539
+ [key: string]: unknown;
40540
+ };
40541
+ locale: string;
40542
+ region?: string;
40543
+ };
40544
+ url: "/admin/legal-documents/by-locale";
40545
+ };
40546
+ type GetAdminLegalDocumentsByLocaleErrors = {
40547
+ /**
40548
+ * Bad Request - Invalid input data or malformed request
40549
+ */
40550
+ 400: ErrorResponse;
40551
+ /**
40552
+ * Unauthorized - Missing or invalid authentication token
40553
+ */
40554
+ 401: ErrorResponse;
40555
+ /**
40556
+ * Forbidden - Authenticated but not authorized for this resource
40557
+ */
40558
+ 403: ErrorResponse;
40559
+ /**
40560
+ * Not Found - Resource does not exist
40561
+ */
40562
+ 404: ErrorResponse;
40563
+ /**
40564
+ * Too Many Requests - Rate limit exceeded
40565
+ */
40566
+ 429: ErrorResponse;
40567
+ /**
40568
+ * Internal Server Error - Unexpected server error
40569
+ */
40570
+ 500: ErrorResponse;
40571
+ /**
40572
+ * General Error
40573
+ */
40574
+ default: Errors;
40575
+ };
40576
+ type GetAdminLegalDocumentsByLocaleError = GetAdminLegalDocumentsByLocaleErrors[keyof GetAdminLegalDocumentsByLocaleErrors];
40577
+ type GetAdminLegalDocumentsByLocaleResponses = {
40578
+ /**
40579
+ * Success
40580
+ */
40581
+ 200: {
40582
+ /**
40583
+ * An array of resource objects representing a legal_document
40584
+ */
40585
+ data?: Array<LegalDocument>;
40586
+ included?: Array<unknown>;
40587
+ meta?: {
40588
+ [key: string]: unknown;
40589
+ };
40590
+ };
40591
+ };
40592
+ type GetAdminLegalDocumentsByLocaleResponse = GetAdminLegalDocumentsByLocaleResponses[keyof GetAdminLegalDocumentsByLocaleResponses];
39051
40593
  type PostAdminCustomersData = {
39052
40594
  /**
39053
40595
  * Request body for the /customers operation on customer resource
@@ -39917,7 +41459,7 @@ type PatchAdminInvitationsByIdDeclineResponses = {
39917
41459
  */
39918
41460
  200: {
39919
41461
  data?: Invitation;
39920
- included?: Array<User>;
41462
+ included?: Array<unknown>;
39921
41463
  meta?: {
39922
41464
  [key: string]: unknown;
39923
41465
  };
@@ -40846,4 +42388,4 @@ type ApiKeyAllocateRequest = z.infer<typeof ApiKeyAllocateSchema>;
40846
42388
  type DocumentBulkDeleteRequest = z.infer<typeof DocumentBulkDeleteSchema>;
40847
42389
  type DocumentBulkReprocessRequest = z.infer<typeof DocumentBulkReprocessSchema>;
40848
42390
 
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 };
42391
+ 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 PatchAdminUserProfilesByIdAcceptPrivacyPolicyData, type PatchAdminUserProfilesByIdAcceptPrivacyPolicyError, type PatchAdminUserProfilesByIdAcceptPrivacyPolicyErrors, type PatchAdminUserProfilesByIdAcceptPrivacyPolicyResponse, type PatchAdminUserProfilesByIdAcceptPrivacyPolicyResponses, 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 };