@gpt-core/admin 0.7.62 → 0.7.64

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.
Files changed (3) hide show
  1. package/dist/index.d.mts +592 -1326
  2. package/dist/index.d.ts +592 -1326
  3. package/package.json +10 -10
package/dist/index.d.ts CHANGED
@@ -392,43 +392,6 @@ type IsvRevenue = {
392
392
  };
393
393
  type: string;
394
394
  };
395
- /**
396
- * A "Resource object" representing a extraction_schema
397
- */
398
- type ExtractionSchema = {
399
- /**
400
- * An attributes object for a extraction_schema
401
- */
402
- attributes?: {
403
- /**
404
- * Field included by default.
405
- */
406
- is_active: boolean;
407
- /**
408
- * Field included by default.
409
- */
410
- version: number;
411
- };
412
- id: string;
413
- /**
414
- * A relationships object for a extraction_schema
415
- */
416
- relationships?: {
417
- fields?: {
418
- /**
419
- * Relationship data for fields
420
- */
421
- data?: Array<{
422
- id: string;
423
- meta?: {
424
- [key: string]: unknown;
425
- };
426
- type: string;
427
- }>;
428
- };
429
- };
430
- type: string;
431
- };
432
395
  /**
433
396
  * A "Resource object" representing a user_profile
434
397
  */
@@ -675,6 +638,15 @@ type NotificationMethod = {
675
638
  };
676
639
  type: string;
677
640
  };
641
+ type AgentVersionFieldsInputCreateType = {
642
+ ai_hints?: string | unknown;
643
+ description?: string | unknown;
644
+ label?: string | unknown;
645
+ name: string;
646
+ order?: number | unknown;
647
+ required?: boolean | unknown;
648
+ type?: "text" | "date" | "currency" | "number" | "boolean" | "array" | "email" | "phone" | "url" | "datetime" | "address" | unknown;
649
+ };
678
650
  /**
679
651
  * A "Resource object" representing a account
680
652
  */
@@ -1454,10 +1426,11 @@ type ExtractionResult = {
1454
1426
  * Field included by default.
1455
1427
  */
1456
1428
  processing_time_ms?: number | null | unknown;
1429
+ schema_id?: string | null | unknown;
1457
1430
  /**
1458
- * The version of the schema used for this extraction. Field included by default.
1431
+ * The version of the schema/agent used for this extraction. Field included by default.
1459
1432
  */
1460
- schema_version?: number | null | unknown;
1433
+ schema_version?: string | null | unknown;
1461
1434
  /**
1462
1435
  * Field included by default.
1463
1436
  */
@@ -1609,10 +1582,46 @@ type AgentVersion = {
1609
1582
  * Field included by default.
1610
1583
  */
1611
1584
  created_at: unknown;
1585
+ /**
1586
+ * Field included by default.
1587
+ */
1588
+ fields?: Array<{
1589
+ /**
1590
+ * Field included by default.
1591
+ */
1592
+ ai_hints?: string | null | unknown;
1593
+ /**
1594
+ * Field included by default.
1595
+ */
1596
+ description?: string | null | unknown;
1597
+ /**
1598
+ * Field included by default.
1599
+ */
1600
+ label?: string | null | unknown;
1601
+ /**
1602
+ * Field included by default.
1603
+ */
1604
+ name: string;
1605
+ /**
1606
+ * Field included by default.
1607
+ */
1608
+ order: number;
1609
+ /**
1610
+ * Field included by default.
1611
+ */
1612
+ required: boolean;
1613
+ /**
1614
+ * Field included by default.
1615
+ */
1616
+ type: "text" | "date" | "currency" | "number" | "boolean" | "array" | "email" | "phone" | "url" | "datetime" | "address";
1617
+ }> | null | unknown;
1612
1618
  /**
1613
1619
  * Field included by default.
1614
1620
  */
1615
1621
  is_active: boolean;
1622
+ json_schema?: {
1623
+ [key: string]: unknown;
1624
+ } | null | unknown;
1616
1625
  /**
1617
1626
  * Field included by default.
1618
1627
  */
@@ -2437,52 +2446,6 @@ type AuditLog = {
2437
2446
  };
2438
2447
  type: string;
2439
2448
  };
2440
- /**
2441
- * A "Resource object" representing a extraction_schema_field
2442
- */
2443
- type ExtractionSchemaField = {
2444
- /**
2445
- * An attributes object for a extraction_schema_field
2446
- */
2447
- attributes?: {
2448
- /**
2449
- * Field included by default.
2450
- */
2451
- extraction_hint?: string | null | unknown;
2452
- /**
2453
- * Field included by default.
2454
- */
2455
- group?: string | null | unknown;
2456
- /**
2457
- * Field included by default.
2458
- */
2459
- label?: string | null | unknown;
2460
- /**
2461
- * Field included by default.
2462
- */
2463
- name: string;
2464
- /**
2465
- * Field included by default.
2466
- */
2467
- order?: number | null | unknown;
2468
- /**
2469
- * Field included by default.
2470
- */
2471
- required: boolean;
2472
- /**
2473
- * Field included by default.
2474
- */
2475
- type: "text" | "date" | "currency" | "number" | "boolean" | "array" | "email" | "phone" | "url" | "datetime" | "timestamp" | "alphanumeric_code" | "address";
2476
- };
2477
- id: string;
2478
- /**
2479
- * A relationships object for a extraction_schema_field
2480
- */
2481
- relationships?: {
2482
- [key: string]: never;
2483
- };
2484
- type: string;
2485
- };
2486
2449
  /**
2487
2450
  * A "Resource object" representing a payment
2488
2451
  */
@@ -3363,7 +3326,7 @@ type ExtractionDocument = {
3363
3326
  /**
3364
3327
  * Field included by default.
3365
3328
  */
3366
- status?: "queued" | "processing" | "completed" | "failed" | "cancelled" | unknown;
3329
+ status?: "queued" | "processing" | "completed" | "failed" | "cancelled" | "pending_credits" | unknown;
3367
3330
  /**
3368
3331
  * Field included by default.
3369
3332
  */
@@ -3416,9 +3379,9 @@ type ExtractionDocument = {
3416
3379
  */
3417
3380
  completed_at?: unknown;
3418
3381
  /**
3419
- * The version of the extraction schema used to process this document. Field included by default.
3382
+ * The version of the agent/schema used to process this document. Field included by default.
3420
3383
  */
3421
- schema_version?: number | null | unknown;
3384
+ schema_version?: string | null | unknown;
3422
3385
  presigned_view_url?: string | null | unknown;
3423
3386
  /**
3424
3387
  * Field included by default.
@@ -4683,89 +4646,6 @@ type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponses = {
4683
4646
  };
4684
4647
  };
4685
4648
  type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponse = GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponses[keyof GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponses];
4686
- type PatchAdminExtractionSchemasByIdActivateData = {
4687
- /**
4688
- * Request body for the /extraction/schemas/:id/activate operation on extraction_schema resource
4689
- */
4690
- body?: {
4691
- data: {
4692
- attributes?: {
4693
- [key: string]: never;
4694
- };
4695
- id: string;
4696
- relationships?: {
4697
- [key: string]: never;
4698
- };
4699
- type?: "extraction_schema";
4700
- };
4701
- };
4702
- headers: {
4703
- /**
4704
- * Application ID for authentication and routing
4705
- */
4706
- "x-application-key": string;
4707
- };
4708
- path: {
4709
- id: string;
4710
- };
4711
- query?: {
4712
- /**
4713
- * Include related resources in the response. Comma-separated list of relationship names to eager-load.
4714
- */
4715
- include?: string;
4716
- /**
4717
- * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
4718
- */
4719
- fields?: {
4720
- [key: string]: unknown;
4721
- };
4722
- };
4723
- url: "/admin/extraction/schemas/{id}/activate";
4724
- };
4725
- type PatchAdminExtractionSchemasByIdActivateErrors = {
4726
- /**
4727
- * Bad Request - Invalid input data or malformed request
4728
- */
4729
- 400: ErrorResponse;
4730
- /**
4731
- * Unauthorized - Missing or invalid authentication token
4732
- */
4733
- 401: ErrorResponse;
4734
- /**
4735
- * Forbidden - Authenticated but not authorized for this resource
4736
- */
4737
- 403: ErrorResponse;
4738
- /**
4739
- * Not Found - Resource does not exist
4740
- */
4741
- 404: ErrorResponse;
4742
- /**
4743
- * Too Many Requests - Rate limit exceeded
4744
- */
4745
- 429: ErrorResponse;
4746
- /**
4747
- * Internal Server Error - Unexpected server error
4748
- */
4749
- 500: ErrorResponse;
4750
- /**
4751
- * General Error
4752
- */
4753
- default: Errors;
4754
- };
4755
- type PatchAdminExtractionSchemasByIdActivateError = PatchAdminExtractionSchemasByIdActivateErrors[keyof PatchAdminExtractionSchemasByIdActivateErrors];
4756
- type PatchAdminExtractionSchemasByIdActivateResponses = {
4757
- /**
4758
- * Success
4759
- */
4760
- 200: {
4761
- data?: ExtractionSchema;
4762
- included?: Array<ExtractionSchemaField>;
4763
- meta?: {
4764
- [key: string]: unknown;
4765
- };
4766
- };
4767
- };
4768
- type PatchAdminExtractionSchemasByIdActivateResponse = PatchAdminExtractionSchemasByIdActivateResponses[keyof PatchAdminExtractionSchemasByIdActivateResponses];
4769
4649
  type PatchAdminAccountsByIdCreditData = {
4770
4650
  /**
4771
4651
  * Request body for the /accounts/:id/credit operation on account resource
@@ -7278,6 +7158,88 @@ type PostAdminExtractionBatchesResponses = {
7278
7158
  };
7279
7159
  };
7280
7160
  type PostAdminExtractionBatchesResponse = PostAdminExtractionBatchesResponses[keyof PostAdminExtractionBatchesResponses];
7161
+ type PostAdminExtractionDocumentsByIdReprocessData = {
7162
+ /**
7163
+ * Request body for the /extraction/documents/:id/reprocess operation on extraction_document resource
7164
+ */
7165
+ body?: {
7166
+ data: {
7167
+ attributes?: {
7168
+ schema_version_id?: string | unknown;
7169
+ };
7170
+ relationships?: {
7171
+ [key: string]: never;
7172
+ };
7173
+ type?: "extraction_document";
7174
+ };
7175
+ };
7176
+ headers: {
7177
+ /**
7178
+ * Application ID for authentication and routing
7179
+ */
7180
+ "x-application-key": string;
7181
+ };
7182
+ path: {
7183
+ id: string;
7184
+ };
7185
+ query?: {
7186
+ /**
7187
+ * Include related resources in the response. Comma-separated list of relationship names to eager-load.
7188
+ */
7189
+ include?: string;
7190
+ /**
7191
+ * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
7192
+ */
7193
+ fields?: {
7194
+ [key: string]: unknown;
7195
+ };
7196
+ };
7197
+ url: "/admin/extraction/documents/{id}/reprocess";
7198
+ };
7199
+ type PostAdminExtractionDocumentsByIdReprocessErrors = {
7200
+ /**
7201
+ * Bad Request - Invalid input data or malformed request
7202
+ */
7203
+ 400: ErrorResponse;
7204
+ /**
7205
+ * Unauthorized - Missing or invalid authentication token
7206
+ */
7207
+ 401: ErrorResponse;
7208
+ /**
7209
+ * Forbidden - Authenticated but not authorized for this resource
7210
+ */
7211
+ 403: ErrorResponse;
7212
+ /**
7213
+ * Not Found - Resource does not exist
7214
+ */
7215
+ 404: ErrorResponse;
7216
+ /**
7217
+ * Too Many Requests - Rate limit exceeded
7218
+ */
7219
+ 429: ErrorResponse;
7220
+ /**
7221
+ * Internal Server Error - Unexpected server error
7222
+ */
7223
+ 500: ErrorResponse;
7224
+ /**
7225
+ * General Error
7226
+ */
7227
+ default: Errors;
7228
+ };
7229
+ type PostAdminExtractionDocumentsByIdReprocessError = PostAdminExtractionDocumentsByIdReprocessErrors[keyof PostAdminExtractionDocumentsByIdReprocessErrors];
7230
+ type PostAdminExtractionDocumentsByIdReprocessResponses = {
7231
+ /**
7232
+ * Success
7233
+ */
7234
+ 201: {
7235
+ data?: ExtractionDocument;
7236
+ included?: Array<ExtractionResult>;
7237
+ meta?: {
7238
+ [key: string]: unknown;
7239
+ };
7240
+ };
7241
+ };
7242
+ type PostAdminExtractionDocumentsByIdReprocessResponse = PostAdminExtractionDocumentsByIdReprocessResponses[keyof PostAdminExtractionDocumentsByIdReprocessResponses];
7281
7243
  type GetAdminWorkspaceMembershipsData = {
7282
7244
  body?: never;
7283
7245
  headers: {
@@ -9221,19 +9183,77 @@ type PostAdminUsersAuthConfirmResponses = {
9221
9183
  };
9222
9184
  };
9223
9185
  type PostAdminUsersAuthConfirmResponse = PostAdminUsersAuthConfirmResponses[keyof PostAdminUsersAuthConfirmResponses];
9224
- type PostAdminAgentsByIdPublishVersionData = {
9225
- /**
9226
- * Request body for the /agents/:id/publish_version operation on agent resource
9227
- */
9228
- body: {
9229
- data: {
9230
- attributes?: {
9231
- changes_summary?: string | unknown;
9232
- version_number: string;
9233
- };
9234
- relationships?: {
9235
- [key: string]: never;
9236
- };
9186
+ type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateData = {
9187
+ body?: never;
9188
+ headers: {
9189
+ /**
9190
+ * Application ID for authentication and routing
9191
+ */
9192
+ "x-application-key": string;
9193
+ };
9194
+ path: {
9195
+ version_id: string;
9196
+ /**
9197
+ * Agent ID (automatically mapped from route)
9198
+ */
9199
+ id: string;
9200
+ };
9201
+ query?: never;
9202
+ url: "/admin/agents/{id}/schema_versions/{version_id}/activate";
9203
+ };
9204
+ type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateErrors = {
9205
+ /**
9206
+ * Bad Request - Invalid input data or malformed request
9207
+ */
9208
+ 400: ErrorResponse;
9209
+ /**
9210
+ * Unauthorized - Missing or invalid authentication token
9211
+ */
9212
+ 401: ErrorResponse;
9213
+ /**
9214
+ * Forbidden - Authenticated but not authorized for this resource
9215
+ */
9216
+ 403: ErrorResponse;
9217
+ /**
9218
+ * Not Found - Resource does not exist
9219
+ */
9220
+ 404: ErrorResponse;
9221
+ /**
9222
+ * Too Many Requests - Rate limit exceeded
9223
+ */
9224
+ 429: ErrorResponse;
9225
+ /**
9226
+ * Internal Server Error - Unexpected server error
9227
+ */
9228
+ 500: ErrorResponse;
9229
+ /**
9230
+ * General Error
9231
+ */
9232
+ default: Errors;
9233
+ };
9234
+ type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateError = PostAdminAgentsByIdSchemaVersionsByVersionIdActivateErrors[keyof PostAdminAgentsByIdSchemaVersionsByVersionIdActivateErrors];
9235
+ type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponses = {
9236
+ /**
9237
+ * Success
9238
+ */
9239
+ 201: {
9240
+ [key: string]: unknown;
9241
+ };
9242
+ };
9243
+ type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponse = PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponses[keyof PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponses];
9244
+ type PostAdminAgentsByIdPublishVersionData = {
9245
+ /**
9246
+ * Request body for the /agents/:id/publish_version operation on agent resource
9247
+ */
9248
+ body: {
9249
+ data: {
9250
+ attributes?: {
9251
+ changes_summary?: string | unknown;
9252
+ version_number: string;
9253
+ };
9254
+ relationships?: {
9255
+ [key: string]: never;
9256
+ };
9237
9257
  type?: "agent";
9238
9258
  };
9239
9259
  };
@@ -13497,8 +13517,21 @@ type GetAdminUsersByIdResponses = {
13497
13517
  };
13498
13518
  };
13499
13519
  type GetAdminUsersByIdResponse = GetAdminUsersByIdResponses[keyof GetAdminUsersByIdResponses];
13500
- type GetAdminExtractionSchemaFieldsData = {
13501
- body?: never;
13520
+ type PostAdminDocumentsBulkDeleteData = {
13521
+ /**
13522
+ * Request body for the /documents/bulk_delete operation on operation_success resource
13523
+ */
13524
+ body: {
13525
+ data: {
13526
+ attributes?: {
13527
+ ids: Array<string>;
13528
+ };
13529
+ relationships?: {
13530
+ [key: string]: never;
13531
+ };
13532
+ type?: "operation_success";
13533
+ };
13534
+ };
13502
13535
  headers: {
13503
13536
  /**
13504
13537
  * Application ID for authentication and routing
@@ -13507,22 +13540,6 @@ type GetAdminExtractionSchemaFieldsData = {
13507
13540
  };
13508
13541
  path?: never;
13509
13542
  query?: {
13510
- /**
13511
- * JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
13512
- */
13513
- filter?: {
13514
- [key: string]: unknown;
13515
- };
13516
- /**
13517
- * Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
13518
- */
13519
- sort?: string;
13520
- /**
13521
- * JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
13522
- */
13523
- page?: {
13524
- [key: string]: unknown;
13525
- };
13526
13543
  /**
13527
13544
  * Include related resources in the response. Comma-separated list of relationship names to eager-load.
13528
13545
  */
@@ -13534,9 +13551,9 @@ type GetAdminExtractionSchemaFieldsData = {
13534
13551
  [key: string]: unknown;
13535
13552
  };
13536
13553
  };
13537
- url: "/admin/extraction/schema-fields";
13554
+ url: "/admin/documents/bulk_delete";
13538
13555
  };
13539
- type GetAdminExtractionSchemaFieldsErrors = {
13556
+ type PostAdminDocumentsBulkDeleteErrors = {
13540
13557
  /**
13541
13558
  * Bad Request - Invalid input data or malformed request
13542
13559
  */
@@ -13566,43 +13583,33 @@ type GetAdminExtractionSchemaFieldsErrors = {
13566
13583
  */
13567
13584
  default: Errors;
13568
13585
  };
13569
- type GetAdminExtractionSchemaFieldsError = GetAdminExtractionSchemaFieldsErrors[keyof GetAdminExtractionSchemaFieldsErrors];
13570
- type GetAdminExtractionSchemaFieldsResponses = {
13586
+ type PostAdminDocumentsBulkDeleteError = PostAdminDocumentsBulkDeleteErrors[keyof PostAdminDocumentsBulkDeleteErrors];
13587
+ type PostAdminDocumentsBulkDeleteResponses = {
13571
13588
  /**
13572
13589
  * Success
13573
13590
  */
13574
- 200: {
13575
- /**
13576
- * An array of resource objects representing a extraction_schema_field
13577
- */
13578
- data?: Array<ExtractionSchemaField>;
13591
+ 201: {
13592
+ data?: OperationSuccess;
13579
13593
  included?: Array<unknown>;
13580
13594
  meta?: {
13581
13595
  [key: string]: unknown;
13582
13596
  };
13583
13597
  };
13584
13598
  };
13585
- type GetAdminExtractionSchemaFieldsResponse = GetAdminExtractionSchemaFieldsResponses[keyof GetAdminExtractionSchemaFieldsResponses];
13586
- type PostAdminExtractionSchemaFieldsData = {
13599
+ type PostAdminDocumentsBulkDeleteResponse = PostAdminDocumentsBulkDeleteResponses[keyof PostAdminDocumentsBulkDeleteResponses];
13600
+ type PostAdminTenantsByIdRemoveStorageData = {
13587
13601
  /**
13588
- * Request body for the /extraction/schema-fields operation on extraction_schema_field resource
13602
+ * Request body for the /tenants/:id/remove-storage operation on tenant resource
13589
13603
  */
13590
- body: {
13604
+ body?: {
13591
13605
  data: {
13592
13606
  attributes?: {
13593
- extraction_hint?: string | unknown;
13594
- group?: string | unknown;
13595
- label?: string | unknown;
13596
- name: string;
13597
- order?: number | unknown;
13598
- required?: boolean | unknown;
13599
- schema_id: string;
13600
- type: "text" | "date" | "currency" | "number" | "boolean" | "array" | "email" | "phone" | "url" | "datetime" | "timestamp" | "alphanumeric_code" | "address";
13607
+ quantity?: number | unknown;
13601
13608
  };
13602
13609
  relationships?: {
13603
13610
  [key: string]: never;
13604
13611
  };
13605
- type?: "extraction_schema_field";
13612
+ type?: "tenant";
13606
13613
  };
13607
13614
  };
13608
13615
  headers: {
@@ -13611,7 +13618,9 @@ type PostAdminExtractionSchemaFieldsData = {
13611
13618
  */
13612
13619
  "x-application-key": string;
13613
13620
  };
13614
- path?: never;
13621
+ path: {
13622
+ id: string;
13623
+ };
13615
13624
  query?: {
13616
13625
  /**
13617
13626
  * Include related resources in the response. Comma-separated list of relationship names to eager-load.
@@ -13624,9 +13633,9 @@ type PostAdminExtractionSchemaFieldsData = {
13624
13633
  [key: string]: unknown;
13625
13634
  };
13626
13635
  };
13627
- url: "/admin/extraction/schema-fields";
13636
+ url: "/admin/tenants/{id}/remove-storage";
13628
13637
  };
13629
- type PostAdminExtractionSchemaFieldsErrors = {
13638
+ type PostAdminTenantsByIdRemoveStorageErrors = {
13630
13639
  /**
13631
13640
  * Bad Request - Invalid input data or malformed request
13632
13641
  */
@@ -13656,42 +13665,31 @@ type PostAdminExtractionSchemaFieldsErrors = {
13656
13665
  */
13657
13666
  default: Errors;
13658
13667
  };
13659
- type PostAdminExtractionSchemaFieldsError = PostAdminExtractionSchemaFieldsErrors[keyof PostAdminExtractionSchemaFieldsErrors];
13660
- type PostAdminExtractionSchemaFieldsResponses = {
13668
+ type PostAdminTenantsByIdRemoveStorageError = PostAdminTenantsByIdRemoveStorageErrors[keyof PostAdminTenantsByIdRemoveStorageErrors];
13669
+ type PostAdminTenantsByIdRemoveStorageResponses = {
13661
13670
  /**
13662
13671
  * Success
13663
13672
  */
13664
13673
  201: {
13665
- data?: ExtractionSchemaField;
13666
- included?: Array<unknown>;
13674
+ data?: Tenant;
13675
+ included?: Array<Workspace>;
13667
13676
  meta?: {
13668
13677
  [key: string]: unknown;
13669
13678
  };
13670
13679
  };
13671
13680
  };
13672
- type PostAdminExtractionSchemaFieldsResponse = PostAdminExtractionSchemaFieldsResponses[keyof PostAdminExtractionSchemaFieldsResponses];
13673
- type PostAdminDocumentsBulkDeleteData = {
13674
- /**
13675
- * Request body for the /documents/bulk_delete operation on operation_success resource
13676
- */
13677
- body: {
13678
- data: {
13679
- attributes?: {
13680
- ids: Array<string>;
13681
- };
13682
- relationships?: {
13683
- [key: string]: never;
13684
- };
13685
- type?: "operation_success";
13686
- };
13687
- };
13681
+ type PostAdminTenantsByIdRemoveStorageResponse = PostAdminTenantsByIdRemoveStorageResponses[keyof PostAdminTenantsByIdRemoveStorageResponses];
13682
+ type GetAdminPricingRulesByIdData = {
13683
+ body?: never;
13688
13684
  headers: {
13689
13685
  /**
13690
13686
  * Application ID for authentication and routing
13691
13687
  */
13692
13688
  "x-application-key": string;
13693
13689
  };
13694
- path?: never;
13690
+ path: {
13691
+ id: string;
13692
+ };
13695
13693
  query?: {
13696
13694
  /**
13697
13695
  * Include related resources in the response. Comma-separated list of relationship names to eager-load.
@@ -13704,9 +13702,9 @@ type PostAdminDocumentsBulkDeleteData = {
13704
13702
  [key: string]: unknown;
13705
13703
  };
13706
13704
  };
13707
- url: "/admin/documents/bulk_delete";
13705
+ url: "/admin/pricing-rules/{id}";
13708
13706
  };
13709
- type PostAdminDocumentsBulkDeleteErrors = {
13707
+ type GetAdminPricingRulesByIdErrors = {
13710
13708
  /**
13711
13709
  * Bad Request - Invalid input data or malformed request
13712
13710
  */
@@ -13736,33 +13734,34 @@ type PostAdminDocumentsBulkDeleteErrors = {
13736
13734
  */
13737
13735
  default: Errors;
13738
13736
  };
13739
- type PostAdminDocumentsBulkDeleteError = PostAdminDocumentsBulkDeleteErrors[keyof PostAdminDocumentsBulkDeleteErrors];
13740
- type PostAdminDocumentsBulkDeleteResponses = {
13737
+ type GetAdminPricingRulesByIdError = GetAdminPricingRulesByIdErrors[keyof GetAdminPricingRulesByIdErrors];
13738
+ type GetAdminPricingRulesByIdResponses = {
13741
13739
  /**
13742
13740
  * Success
13743
13741
  */
13744
- 201: {
13745
- data?: OperationSuccess;
13742
+ 200: {
13743
+ data?: PricingRule;
13746
13744
  included?: Array<unknown>;
13747
13745
  meta?: {
13748
13746
  [key: string]: unknown;
13749
13747
  };
13750
13748
  };
13751
13749
  };
13752
- type PostAdminDocumentsBulkDeleteResponse = PostAdminDocumentsBulkDeleteResponses[keyof PostAdminDocumentsBulkDeleteResponses];
13753
- type PostAdminTenantsByIdRemoveStorageData = {
13750
+ type GetAdminPricingRulesByIdResponse = GetAdminPricingRulesByIdResponses[keyof GetAdminPricingRulesByIdResponses];
13751
+ type PatchAdminPricingRulesByIdData = {
13754
13752
  /**
13755
- * Request body for the /tenants/:id/remove-storage operation on tenant resource
13753
+ * Request body for the /pricing-rules/:id operation on pricing_rule resource
13756
13754
  */
13757
13755
  body?: {
13758
13756
  data: {
13759
13757
  attributes?: {
13760
- quantity?: number | unknown;
13758
+ cost_credits?: string | unknown;
13761
13759
  };
13760
+ id: string;
13762
13761
  relationships?: {
13763
13762
  [key: string]: never;
13764
13763
  };
13765
- type?: "tenant";
13764
+ type?: "pricing_rule";
13766
13765
  };
13767
13766
  };
13768
13767
  headers: {
@@ -13786,9 +13785,9 @@ type PostAdminTenantsByIdRemoveStorageData = {
13786
13785
  [key: string]: unknown;
13787
13786
  };
13788
13787
  };
13789
- url: "/admin/tenants/{id}/remove-storage";
13788
+ url: "/admin/pricing-rules/{id}";
13790
13789
  };
13791
- type PostAdminTenantsByIdRemoveStorageErrors = {
13790
+ type PatchAdminPricingRulesByIdErrors = {
13792
13791
  /**
13793
13792
  * Bad Request - Invalid input data or malformed request
13794
13793
  */
@@ -13818,37 +13817,38 @@ type PostAdminTenantsByIdRemoveStorageErrors = {
13818
13817
  */
13819
13818
  default: Errors;
13820
13819
  };
13821
- type PostAdminTenantsByIdRemoveStorageError = PostAdminTenantsByIdRemoveStorageErrors[keyof PostAdminTenantsByIdRemoveStorageErrors];
13822
- type PostAdminTenantsByIdRemoveStorageResponses = {
13820
+ type PatchAdminPricingRulesByIdError = PatchAdminPricingRulesByIdErrors[keyof PatchAdminPricingRulesByIdErrors];
13821
+ type PatchAdminPricingRulesByIdResponses = {
13823
13822
  /**
13824
13823
  * Success
13825
13824
  */
13826
- 201: {
13827
- data?: Tenant;
13828
- included?: Array<Workspace>;
13825
+ 200: {
13826
+ data?: PricingRule;
13827
+ included?: Array<unknown>;
13829
13828
  meta?: {
13830
13829
  [key: string]: unknown;
13831
13830
  };
13832
13831
  };
13833
13832
  };
13834
- type PostAdminTenantsByIdRemoveStorageResponse = PostAdminTenantsByIdRemoveStorageResponses[keyof PostAdminTenantsByIdRemoveStorageResponses];
13835
- type PatchAdminExtractionSchemasByIdFieldsData = {
13833
+ type PatchAdminPricingRulesByIdResponse = PatchAdminPricingRulesByIdResponses[keyof PatchAdminPricingRulesByIdResponses];
13834
+ type PostAdminAiSearchAdvancedData = {
13836
13835
  /**
13837
- * Request body for the /extraction/schemas/:id/fields operation on extraction_schema resource
13836
+ * Request body for the /ai/search/advanced operation on search resource
13838
13837
  */
13839
- body?: {
13838
+ body: {
13840
13839
  data: {
13841
13840
  attributes?: {
13842
- fields?: Array<{
13843
- [key: string]: unknown;
13844
- }> | unknown;
13845
- is_active?: boolean | unknown;
13841
+ date_from?: unknown;
13842
+ date_to?: unknown;
13843
+ document_types?: Array<string> | unknown;
13844
+ query: string;
13845
+ top_k?: number | unknown;
13846
+ workspace_ids?: Array<string> | unknown;
13846
13847
  };
13847
- id: string;
13848
13848
  relationships?: {
13849
13849
  [key: string]: never;
13850
13850
  };
13851
- type?: "extraction_schema";
13851
+ type?: "search";
13852
13852
  };
13853
13853
  };
13854
13854
  headers: {
@@ -13857,9 +13857,7 @@ type PatchAdminExtractionSchemasByIdFieldsData = {
13857
13857
  */
13858
13858
  "x-application-key": string;
13859
13859
  };
13860
- path: {
13861
- id: string;
13862
- };
13860
+ path?: never;
13863
13861
  query?: {
13864
13862
  /**
13865
13863
  * Include related resources in the response. Comma-separated list of relationship names to eager-load.
@@ -13872,9 +13870,9 @@ type PatchAdminExtractionSchemasByIdFieldsData = {
13872
13870
  [key: string]: unknown;
13873
13871
  };
13874
13872
  };
13875
- url: "/admin/extraction/schemas/{id}/fields";
13873
+ url: "/admin/ai/search/advanced";
13876
13874
  };
13877
- type PatchAdminExtractionSchemasByIdFieldsErrors = {
13875
+ type PostAdminAiSearchAdvancedErrors = {
13878
13876
  /**
13879
13877
  * Bad Request - Invalid input data or malformed request
13880
13878
  */
@@ -13904,21 +13902,21 @@ type PatchAdminExtractionSchemasByIdFieldsErrors = {
13904
13902
  */
13905
13903
  default: Errors;
13906
13904
  };
13907
- type PatchAdminExtractionSchemasByIdFieldsError = PatchAdminExtractionSchemasByIdFieldsErrors[keyof PatchAdminExtractionSchemasByIdFieldsErrors];
13908
- type PatchAdminExtractionSchemasByIdFieldsResponses = {
13905
+ type PostAdminAiSearchAdvancedError = PostAdminAiSearchAdvancedErrors[keyof PostAdminAiSearchAdvancedErrors];
13906
+ type PostAdminAiSearchAdvancedResponses = {
13909
13907
  /**
13910
13908
  * Success
13911
13909
  */
13912
- 200: {
13913
- data?: ExtractionSchema;
13914
- included?: Array<ExtractionSchemaField>;
13910
+ 201: {
13911
+ data?: Search;
13912
+ included?: Array<unknown>;
13915
13913
  meta?: {
13916
13914
  [key: string]: unknown;
13917
13915
  };
13918
13916
  };
13919
13917
  };
13920
- type PatchAdminExtractionSchemasByIdFieldsResponse = PatchAdminExtractionSchemasByIdFieldsResponses[keyof PatchAdminExtractionSchemasByIdFieldsResponses];
13921
- type GetAdminPricingRulesByIdData = {
13918
+ type PostAdminAiSearchAdvancedResponse = PostAdminAiSearchAdvancedResponses[keyof PostAdminAiSearchAdvancedResponses];
13919
+ type GetAdminExtractionBatchesWorkspaceByWorkspaceIdData = {
13922
13920
  body?: never;
13923
13921
  headers: {
13924
13922
  /**
@@ -13927,9 +13925,19 @@ type GetAdminPricingRulesByIdData = {
13927
13925
  "x-application-key": string;
13928
13926
  };
13929
13927
  path: {
13930
- id: string;
13928
+ workspace_id: string;
13931
13929
  };
13932
13930
  query?: {
13931
+ /**
13932
+ * JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
13933
+ */
13934
+ filter?: {
13935
+ [key: string]: unknown;
13936
+ };
13937
+ /**
13938
+ * Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
13939
+ */
13940
+ sort?: string;
13933
13941
  /**
13934
13942
  * Include related resources in the response. Comma-separated list of relationship names to eager-load.
13935
13943
  */
@@ -13941,9 +13949,9 @@ type GetAdminPricingRulesByIdData = {
13941
13949
  [key: string]: unknown;
13942
13950
  };
13943
13951
  };
13944
- url: "/admin/pricing-rules/{id}";
13952
+ url: "/admin/extraction/batches/workspace/{workspace_id}";
13945
13953
  };
13946
- type GetAdminPricingRulesByIdErrors = {
13954
+ type GetAdminExtractionBatchesWorkspaceByWorkspaceIdErrors = {
13947
13955
  /**
13948
13956
  * Bad Request - Invalid input data or malformed request
13949
13957
  */
@@ -13973,263 +13981,16 @@ type GetAdminPricingRulesByIdErrors = {
13973
13981
  */
13974
13982
  default: Errors;
13975
13983
  };
13976
- type GetAdminPricingRulesByIdError = GetAdminPricingRulesByIdErrors[keyof GetAdminPricingRulesByIdErrors];
13977
- type GetAdminPricingRulesByIdResponses = {
13984
+ type GetAdminExtractionBatchesWorkspaceByWorkspaceIdError = GetAdminExtractionBatchesWorkspaceByWorkspaceIdErrors[keyof GetAdminExtractionBatchesWorkspaceByWorkspaceIdErrors];
13985
+ type GetAdminExtractionBatchesWorkspaceByWorkspaceIdResponses = {
13978
13986
  /**
13979
13987
  * Success
13980
13988
  */
13981
13989
  200: {
13982
- data?: PricingRule;
13983
- included?: Array<unknown>;
13984
- meta?: {
13985
- [key: string]: unknown;
13986
- };
13987
- };
13988
- };
13989
- type GetAdminPricingRulesByIdResponse = GetAdminPricingRulesByIdResponses[keyof GetAdminPricingRulesByIdResponses];
13990
- type PatchAdminPricingRulesByIdData = {
13991
- /**
13992
- * Request body for the /pricing-rules/:id operation on pricing_rule resource
13993
- */
13994
- body?: {
13995
- data: {
13996
- attributes?: {
13997
- cost_credits?: string | unknown;
13998
- };
13999
- id: string;
14000
- relationships?: {
14001
- [key: string]: never;
14002
- };
14003
- type?: "pricing_rule";
14004
- };
14005
- };
14006
- headers: {
14007
- /**
14008
- * Application ID for authentication and routing
14009
- */
14010
- "x-application-key": string;
14011
- };
14012
- path: {
14013
- id: string;
14014
- };
14015
- query?: {
14016
- /**
14017
- * Include related resources in the response. Comma-separated list of relationship names to eager-load.
14018
- */
14019
- include?: string;
14020
- /**
14021
- * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
14022
- */
14023
- fields?: {
14024
- [key: string]: unknown;
14025
- };
14026
- };
14027
- url: "/admin/pricing-rules/{id}";
14028
- };
14029
- type PatchAdminPricingRulesByIdErrors = {
14030
- /**
14031
- * Bad Request - Invalid input data or malformed request
14032
- */
14033
- 400: ErrorResponse;
14034
- /**
14035
- * Unauthorized - Missing or invalid authentication token
14036
- */
14037
- 401: ErrorResponse;
14038
- /**
14039
- * Forbidden - Authenticated but not authorized for this resource
14040
- */
14041
- 403: ErrorResponse;
14042
- /**
14043
- * Not Found - Resource does not exist
14044
- */
14045
- 404: ErrorResponse;
14046
- /**
14047
- * Too Many Requests - Rate limit exceeded
14048
- */
14049
- 429: ErrorResponse;
14050
- /**
14051
- * Internal Server Error - Unexpected server error
14052
- */
14053
- 500: ErrorResponse;
14054
- /**
14055
- * General Error
14056
- */
14057
- default: Errors;
14058
- };
14059
- type PatchAdminPricingRulesByIdError = PatchAdminPricingRulesByIdErrors[keyof PatchAdminPricingRulesByIdErrors];
14060
- type PatchAdminPricingRulesByIdResponses = {
14061
- /**
14062
- * Success
14063
- */
14064
- 200: {
14065
- data?: PricingRule;
14066
- included?: Array<unknown>;
14067
- meta?: {
14068
- [key: string]: unknown;
14069
- };
14070
- };
14071
- };
14072
- type PatchAdminPricingRulesByIdResponse = PatchAdminPricingRulesByIdResponses[keyof PatchAdminPricingRulesByIdResponses];
14073
- type PostAdminAiSearchAdvancedData = {
14074
- /**
14075
- * Request body for the /ai/search/advanced operation on search resource
14076
- */
14077
- body: {
14078
- data: {
14079
- attributes?: {
14080
- date_from?: unknown;
14081
- date_to?: unknown;
14082
- document_types?: Array<string> | unknown;
14083
- query: string;
14084
- top_k?: number | unknown;
14085
- workspace_ids?: Array<string> | unknown;
14086
- };
14087
- relationships?: {
14088
- [key: string]: never;
14089
- };
14090
- type?: "search";
14091
- };
14092
- };
14093
- headers: {
14094
- /**
14095
- * Application ID for authentication and routing
14096
- */
14097
- "x-application-key": string;
14098
- };
14099
- path?: never;
14100
- query?: {
14101
- /**
14102
- * Include related resources in the response. Comma-separated list of relationship names to eager-load.
14103
- */
14104
- include?: string;
14105
- /**
14106
- * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
14107
- */
14108
- fields?: {
14109
- [key: string]: unknown;
14110
- };
14111
- };
14112
- url: "/admin/ai/search/advanced";
14113
- };
14114
- type PostAdminAiSearchAdvancedErrors = {
14115
- /**
14116
- * Bad Request - Invalid input data or malformed request
14117
- */
14118
- 400: ErrorResponse;
14119
- /**
14120
- * Unauthorized - Missing or invalid authentication token
14121
- */
14122
- 401: ErrorResponse;
14123
- /**
14124
- * Forbidden - Authenticated but not authorized for this resource
14125
- */
14126
- 403: ErrorResponse;
14127
- /**
14128
- * Not Found - Resource does not exist
14129
- */
14130
- 404: ErrorResponse;
14131
- /**
14132
- * Too Many Requests - Rate limit exceeded
14133
- */
14134
- 429: ErrorResponse;
14135
- /**
14136
- * Internal Server Error - Unexpected server error
14137
- */
14138
- 500: ErrorResponse;
14139
- /**
14140
- * General Error
14141
- */
14142
- default: Errors;
14143
- };
14144
- type PostAdminAiSearchAdvancedError = PostAdminAiSearchAdvancedErrors[keyof PostAdminAiSearchAdvancedErrors];
14145
- type PostAdminAiSearchAdvancedResponses = {
14146
- /**
14147
- * Success
14148
- */
14149
- 201: {
14150
- data?: Search;
14151
- included?: Array<unknown>;
14152
- meta?: {
14153
- [key: string]: unknown;
14154
- };
14155
- };
14156
- };
14157
- type PostAdminAiSearchAdvancedResponse = PostAdminAiSearchAdvancedResponses[keyof PostAdminAiSearchAdvancedResponses];
14158
- type GetAdminExtractionBatchesWorkspaceByWorkspaceIdData = {
14159
- body?: never;
14160
- headers: {
14161
- /**
14162
- * Application ID for authentication and routing
14163
- */
14164
- "x-application-key": string;
14165
- };
14166
- path: {
14167
- workspace_id: string;
14168
- };
14169
- query?: {
14170
- /**
14171
- * JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
14172
- */
14173
- filter?: {
14174
- [key: string]: unknown;
14175
- };
14176
- /**
14177
- * Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
14178
- */
14179
- sort?: string;
14180
- /**
14181
- * Include related resources in the response. Comma-separated list of relationship names to eager-load.
14182
- */
14183
- include?: string;
14184
- /**
14185
- * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
14186
- */
14187
- fields?: {
14188
- [key: string]: unknown;
14189
- };
14190
- };
14191
- url: "/admin/extraction/batches/workspace/{workspace_id}";
14192
- };
14193
- type GetAdminExtractionBatchesWorkspaceByWorkspaceIdErrors = {
14194
- /**
14195
- * Bad Request - Invalid input data or malformed request
14196
- */
14197
- 400: ErrorResponse;
14198
- /**
14199
- * Unauthorized - Missing or invalid authentication token
14200
- */
14201
- 401: ErrorResponse;
14202
- /**
14203
- * Forbidden - Authenticated but not authorized for this resource
14204
- */
14205
- 403: ErrorResponse;
14206
- /**
14207
- * Not Found - Resource does not exist
14208
- */
14209
- 404: ErrorResponse;
14210
- /**
14211
- * Too Many Requests - Rate limit exceeded
14212
- */
14213
- 429: ErrorResponse;
14214
- /**
14215
- * Internal Server Error - Unexpected server error
14216
- */
14217
- 500: ErrorResponse;
14218
- /**
14219
- * General Error
14220
- */
14221
- default: Errors;
14222
- };
14223
- type GetAdminExtractionBatchesWorkspaceByWorkspaceIdError = GetAdminExtractionBatchesWorkspaceByWorkspaceIdErrors[keyof GetAdminExtractionBatchesWorkspaceByWorkspaceIdErrors];
14224
- type GetAdminExtractionBatchesWorkspaceByWorkspaceIdResponses = {
14225
- /**
14226
- * Success
14227
- */
14228
- 200: {
14229
- /**
14230
- * An array of resource objects representing a extraction_batch
14231
- */
14232
- data?: Array<ExtractionBatch>;
13990
+ /**
13991
+ * An array of resource objects representing a extraction_batch
13992
+ */
13993
+ data?: Array<ExtractionBatch>;
14233
13994
  included?: Array<unknown>;
14234
13995
  meta?: {
14235
13996
  [key: string]: unknown;
@@ -14785,191 +14546,31 @@ type GetAdminLedgerByIdErrors = {
14785
14546
  */
14786
14547
  default: Errors;
14787
14548
  };
14788
- type GetAdminLedgerByIdError = GetAdminLedgerByIdErrors[keyof GetAdminLedgerByIdErrors];
14789
- type GetAdminLedgerByIdResponses = {
14790
- /**
14791
- * Success
14792
- */
14793
- 200: {
14794
- data?: Ledger;
14795
- included?: Array<unknown>;
14796
- meta?: {
14797
- [key: string]: unknown;
14798
- };
14799
- };
14800
- };
14801
- type GetAdminLedgerByIdResponse = GetAdminLedgerByIdResponses[keyof GetAdminLedgerByIdResponses];
14802
- type DeleteAdminAiGraphEdgesByIdData = {
14803
- body?: never;
14804
- headers: {
14805
- /**
14806
- * Application ID for authentication and routing
14807
- */
14808
- "x-application-key": string;
14809
- };
14810
- path: {
14811
- id: string;
14812
- };
14813
- query?: {
14814
- /**
14815
- * Include related resources in the response. Comma-separated list of relationship names to eager-load.
14816
- */
14817
- include?: string;
14818
- /**
14819
- * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
14820
- */
14821
- fields?: {
14822
- [key: string]: unknown;
14823
- };
14824
- };
14825
- url: "/admin/ai/graph/edges/{id}";
14826
- };
14827
- type DeleteAdminAiGraphEdgesByIdErrors = {
14828
- /**
14829
- * Bad Request - Invalid input data or malformed request
14830
- */
14831
- 400: ErrorResponse;
14832
- /**
14833
- * Unauthorized - Missing or invalid authentication token
14834
- */
14835
- 401: ErrorResponse;
14836
- /**
14837
- * Forbidden - Authenticated but not authorized for this resource
14838
- */
14839
- 403: ErrorResponse;
14840
- /**
14841
- * Not Found - Resource does not exist
14842
- */
14843
- 404: ErrorResponse;
14844
- /**
14845
- * Too Many Requests - Rate limit exceeded
14846
- */
14847
- 429: ErrorResponse;
14848
- /**
14849
- * Internal Server Error - Unexpected server error
14850
- */
14851
- 500: ErrorResponse;
14852
- /**
14853
- * General Error
14854
- */
14855
- default: Errors;
14856
- };
14857
- type DeleteAdminAiGraphEdgesByIdError = DeleteAdminAiGraphEdgesByIdErrors[keyof DeleteAdminAiGraphEdgesByIdErrors];
14858
- type DeleteAdminAiGraphEdgesByIdResponses = {
14859
- /**
14860
- * Deleted successfully
14861
- */
14862
- 200: unknown;
14863
- };
14864
- type PatchAdminApiKeysByIdAllocateData = {
14865
- /**
14866
- * Request body for the /api_keys/:id/allocate operation on api_key resource
14867
- */
14868
- body: {
14869
- data: {
14870
- attributes?: {
14871
- amount: number;
14872
- description?: string | unknown;
14873
- };
14874
- id: string;
14875
- relationships?: {
14876
- [key: string]: never;
14877
- };
14878
- type?: "api_key";
14879
- };
14880
- };
14881
- headers: {
14882
- /**
14883
- * Application ID for authentication and routing
14884
- */
14885
- "x-application-key": string;
14886
- };
14887
- path: {
14888
- id: string;
14889
- };
14890
- query?: {
14891
- /**
14892
- * Include related resources in the response. Comma-separated list of relationship names to eager-load.
14893
- */
14894
- include?: string;
14895
- /**
14896
- * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
14897
- */
14898
- fields?: {
14899
- [key: string]: unknown;
14900
- };
14901
- };
14902
- url: "/admin/api_keys/{id}/allocate";
14903
- };
14904
- type PatchAdminApiKeysByIdAllocateErrors = {
14905
- /**
14906
- * Bad Request - Invalid input data or malformed request
14907
- */
14908
- 400: ErrorResponse;
14909
- /**
14910
- * Unauthorized - Missing or invalid authentication token
14911
- */
14912
- 401: ErrorResponse;
14913
- /**
14914
- * Forbidden - Authenticated but not authorized for this resource
14915
- */
14916
- 403: ErrorResponse;
14917
- /**
14918
- * Not Found - Resource does not exist
14919
- */
14920
- 404: ErrorResponse;
14921
- /**
14922
- * Too Many Requests - Rate limit exceeded
14923
- */
14924
- 429: ErrorResponse;
14925
- /**
14926
- * Internal Server Error - Unexpected server error
14927
- */
14928
- 500: ErrorResponse;
14929
- /**
14930
- * General Error
14931
- */
14932
- default: Errors;
14933
- };
14934
- type PatchAdminApiKeysByIdAllocateError = PatchAdminApiKeysByIdAllocateErrors[keyof PatchAdminApiKeysByIdAllocateErrors];
14935
- type PatchAdminApiKeysByIdAllocateResponses = {
14936
- /**
14937
- * Success
14938
- */
14939
- 200: {
14940
- data?: ApiKey;
14941
- included?: Array<unknown>;
14942
- meta?: {
14943
- [key: string]: unknown;
14944
- };
14945
- };
14946
- };
14947
- type PatchAdminApiKeysByIdAllocateResponse = PatchAdminApiKeysByIdAllocateResponses[keyof PatchAdminApiKeysByIdAllocateResponses];
14948
- type PostAdminStorageSignUploadData = {
14949
- /**
14950
- * Request body for the /storage/sign_upload operation on presigned_url resource
14951
- */
14952
- body: {
14953
- data: {
14954
- attributes?: {
14955
- bucket_id: string;
14956
- content_type?: string | unknown;
14957
- filename: string;
14958
- size_bytes: number;
14959
- };
14960
- relationships?: {
14961
- [key: string]: never;
14962
- };
14963
- type?: "presigned_url";
14549
+ type GetAdminLedgerByIdError = GetAdminLedgerByIdErrors[keyof GetAdminLedgerByIdErrors];
14550
+ type GetAdminLedgerByIdResponses = {
14551
+ /**
14552
+ * Success
14553
+ */
14554
+ 200: {
14555
+ data?: Ledger;
14556
+ included?: Array<unknown>;
14557
+ meta?: {
14558
+ [key: string]: unknown;
14964
14559
  };
14965
14560
  };
14561
+ };
14562
+ type GetAdminLedgerByIdResponse = GetAdminLedgerByIdResponses[keyof GetAdminLedgerByIdResponses];
14563
+ type DeleteAdminAiGraphEdgesByIdData = {
14564
+ body?: never;
14966
14565
  headers: {
14967
14566
  /**
14968
14567
  * Application ID for authentication and routing
14969
14568
  */
14970
14569
  "x-application-key": string;
14971
14570
  };
14972
- path?: never;
14571
+ path: {
14572
+ id: string;
14573
+ };
14973
14574
  query?: {
14974
14575
  /**
14975
14576
  * Include related resources in the response. Comma-separated list of relationship names to eager-load.
@@ -14982,9 +14583,9 @@ type PostAdminStorageSignUploadData = {
14982
14583
  [key: string]: unknown;
14983
14584
  };
14984
14585
  };
14985
- url: "/admin/storage/sign_upload";
14586
+ url: "/admin/ai/graph/edges/{id}";
14986
14587
  };
14987
- type PostAdminStorageSignUploadErrors = {
14588
+ type DeleteAdminAiGraphEdgesByIdErrors = {
14988
14589
  /**
14989
14590
  * Bad Request - Invalid input data or malformed request
14990
14591
  */
@@ -15014,46 +14615,40 @@ type PostAdminStorageSignUploadErrors = {
15014
14615
  */
15015
14616
  default: Errors;
15016
14617
  };
15017
- type PostAdminStorageSignUploadError = PostAdminStorageSignUploadErrors[keyof PostAdminStorageSignUploadErrors];
15018
- type PostAdminStorageSignUploadResponses = {
14618
+ type DeleteAdminAiGraphEdgesByIdError = DeleteAdminAiGraphEdgesByIdErrors[keyof DeleteAdminAiGraphEdgesByIdErrors];
14619
+ type DeleteAdminAiGraphEdgesByIdResponses = {
15019
14620
  /**
15020
- * Success
14621
+ * Deleted successfully
15021
14622
  */
15022
- 201: {
15023
- data?: PresignedUrl;
15024
- included?: Array<unknown>;
15025
- meta?: {
15026
- [key: string]: unknown;
14623
+ 200: unknown;
14624
+ };
14625
+ type PatchAdminApiKeysByIdAllocateData = {
14626
+ /**
14627
+ * Request body for the /api_keys/:id/allocate operation on api_key resource
14628
+ */
14629
+ body: {
14630
+ data: {
14631
+ attributes?: {
14632
+ amount: number;
14633
+ description?: string | unknown;
14634
+ };
14635
+ id: string;
14636
+ relationships?: {
14637
+ [key: string]: never;
14638
+ };
14639
+ type?: "api_key";
15027
14640
  };
15028
14641
  };
15029
- };
15030
- type PostAdminStorageSignUploadResponse = PostAdminStorageSignUploadResponses[keyof PostAdminStorageSignUploadResponses];
15031
- type GetAdminExtractionSchemasData = {
15032
- body?: never;
15033
14642
  headers: {
15034
14643
  /**
15035
14644
  * Application ID for authentication and routing
15036
14645
  */
15037
14646
  "x-application-key": string;
15038
14647
  };
15039
- path?: never;
14648
+ path: {
14649
+ id: string;
14650
+ };
15040
14651
  query?: {
15041
- /**
15042
- * JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
15043
- */
15044
- filter?: {
15045
- [key: string]: unknown;
15046
- };
15047
- /**
15048
- * Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
15049
- */
15050
- sort?: string;
15051
- /**
15052
- * JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
15053
- */
15054
- page?: {
15055
- [key: string]: unknown;
15056
- };
15057
14652
  /**
15058
14653
  * Include related resources in the response. Comma-separated list of relationship names to eager-load.
15059
14654
  */
@@ -15065,9 +14660,9 @@ type GetAdminExtractionSchemasData = {
15065
14660
  [key: string]: unknown;
15066
14661
  };
15067
14662
  };
15068
- url: "/admin/extraction/schemas";
14663
+ url: "/admin/api_keys/{id}/allocate";
15069
14664
  };
15070
- type GetAdminExtractionSchemasErrors = {
14665
+ type PatchAdminApiKeysByIdAllocateErrors = {
15071
14666
  /**
15072
14667
  * Bad Request - Invalid input data or malformed request
15073
14668
  */
@@ -15097,39 +14692,36 @@ type GetAdminExtractionSchemasErrors = {
15097
14692
  */
15098
14693
  default: Errors;
15099
14694
  };
15100
- type GetAdminExtractionSchemasError = GetAdminExtractionSchemasErrors[keyof GetAdminExtractionSchemasErrors];
15101
- type GetAdminExtractionSchemasResponses = {
14695
+ type PatchAdminApiKeysByIdAllocateError = PatchAdminApiKeysByIdAllocateErrors[keyof PatchAdminApiKeysByIdAllocateErrors];
14696
+ type PatchAdminApiKeysByIdAllocateResponses = {
15102
14697
  /**
15103
14698
  * Success
15104
14699
  */
15105
14700
  200: {
15106
- /**
15107
- * An array of resource objects representing a extraction_schema
15108
- */
15109
- data?: Array<ExtractionSchema>;
15110
- included?: Array<ExtractionSchemaField>;
14701
+ data?: ApiKey;
14702
+ included?: Array<unknown>;
15111
14703
  meta?: {
15112
14704
  [key: string]: unknown;
15113
14705
  };
15114
14706
  };
15115
14707
  };
15116
- type GetAdminExtractionSchemasResponse = GetAdminExtractionSchemasResponses[keyof GetAdminExtractionSchemasResponses];
15117
- type PostAdminExtractionSchemasData = {
14708
+ type PatchAdminApiKeysByIdAllocateResponse = PatchAdminApiKeysByIdAllocateResponses[keyof PatchAdminApiKeysByIdAllocateResponses];
14709
+ type PostAdminStorageSignUploadData = {
15118
14710
  /**
15119
- * Request body for the /extraction/schemas operation on extraction_schema resource
14711
+ * Request body for the /storage/sign_upload operation on presigned_url resource
15120
14712
  */
15121
14713
  body: {
15122
14714
  data: {
15123
14715
  attributes?: {
15124
- fields?: Array<{
15125
- [key: string]: unknown;
15126
- }> | unknown;
15127
- workspace_id: string;
14716
+ bucket_id: string;
14717
+ content_type?: string | unknown;
14718
+ filename: string;
14719
+ size_bytes: number;
15128
14720
  };
15129
14721
  relationships?: {
15130
14722
  [key: string]: never;
15131
14723
  };
15132
- type?: "extraction_schema";
14724
+ type?: "presigned_url";
15133
14725
  };
15134
14726
  };
15135
14727
  headers: {
@@ -15151,9 +14743,9 @@ type PostAdminExtractionSchemasData = {
15151
14743
  [key: string]: unknown;
15152
14744
  };
15153
14745
  };
15154
- url: "/admin/extraction/schemas";
14746
+ url: "/admin/storage/sign_upload";
15155
14747
  };
15156
- type PostAdminExtractionSchemasErrors = {
14748
+ type PostAdminStorageSignUploadErrors = {
15157
14749
  /**
15158
14750
  * Bad Request - Invalid input data or malformed request
15159
14751
  */
@@ -15183,20 +14775,20 @@ type PostAdminExtractionSchemasErrors = {
15183
14775
  */
15184
14776
  default: Errors;
15185
14777
  };
15186
- type PostAdminExtractionSchemasError = PostAdminExtractionSchemasErrors[keyof PostAdminExtractionSchemasErrors];
15187
- type PostAdminExtractionSchemasResponses = {
14778
+ type PostAdminStorageSignUploadError = PostAdminStorageSignUploadErrors[keyof PostAdminStorageSignUploadErrors];
14779
+ type PostAdminStorageSignUploadResponses = {
15188
14780
  /**
15189
14781
  * Success
15190
14782
  */
15191
14783
  201: {
15192
- data?: ExtractionSchema;
15193
- included?: Array<ExtractionSchemaField>;
14784
+ data?: PresignedUrl;
14785
+ included?: Array<unknown>;
15194
14786
  meta?: {
15195
14787
  [key: string]: unknown;
15196
14788
  };
15197
14789
  };
15198
14790
  };
15199
- type PostAdminExtractionSchemasResponse = PostAdminExtractionSchemasResponses[keyof PostAdminExtractionSchemasResponses];
14791
+ type PostAdminStorageSignUploadResponse = PostAdminStorageSignUploadResponses[keyof PostAdminStorageSignUploadResponses];
15200
14792
  type GetAdminTenantsByTenantIdDocumentStatsData = {
15201
14793
  body?: never;
15202
14794
  headers: {
@@ -16034,11 +15626,11 @@ type PostAdminExtractionResultsData = {
16034
15626
  [key: string]: unknown;
16035
15627
  }> | unknown;
16036
15628
  processing_time_ms?: number | unknown;
16037
- schema_id: string;
15629
+ schema_id?: string | unknown;
16038
15630
  /**
16039
- * The version of the schema used for this extraction
15631
+ * The version of the schema/agent used for this extraction
16040
15632
  */
16041
- schema_version?: number | unknown;
15633
+ schema_version?: string | unknown;
16042
15634
  status?: "pending" | "completed" | "failed" | unknown;
16043
15635
  used_training_example_ids?: Array<string> | unknown;
16044
15636
  workspace_id: string;
@@ -17377,89 +16969,6 @@ type GetAdminBucketsByIdObjectsResponses = {
17377
16969
  };
17378
16970
  };
17379
16971
  type GetAdminBucketsByIdObjectsResponse = GetAdminBucketsByIdObjectsResponses[keyof GetAdminBucketsByIdObjectsResponses];
17380
- type PostAdminExtractionSchemasBulkCreateData = {
17381
- /**
17382
- * Request body for the /extraction/schemas/bulk_create operation on extraction_schema resource
17383
- */
17384
- body: {
17385
- data: {
17386
- attributes?: {
17387
- fields?: Array<{
17388
- [key: string]: unknown;
17389
- }> | unknown;
17390
- workspace_id: string;
17391
- };
17392
- relationships?: {
17393
- [key: string]: never;
17394
- };
17395
- type?: "extraction_schema";
17396
- };
17397
- };
17398
- headers: {
17399
- /**
17400
- * Application ID for authentication and routing
17401
- */
17402
- "x-application-key": string;
17403
- };
17404
- path?: never;
17405
- query?: {
17406
- /**
17407
- * Include related resources in the response. Comma-separated list of relationship names to eager-load.
17408
- */
17409
- include?: string;
17410
- /**
17411
- * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
17412
- */
17413
- fields?: {
17414
- [key: string]: unknown;
17415
- };
17416
- };
17417
- url: "/admin/extraction/schemas/bulk_create";
17418
- };
17419
- type PostAdminExtractionSchemasBulkCreateErrors = {
17420
- /**
17421
- * Bad Request - Invalid input data or malformed request
17422
- */
17423
- 400: ErrorResponse;
17424
- /**
17425
- * Unauthorized - Missing or invalid authentication token
17426
- */
17427
- 401: ErrorResponse;
17428
- /**
17429
- * Forbidden - Authenticated but not authorized for this resource
17430
- */
17431
- 403: ErrorResponse;
17432
- /**
17433
- * Not Found - Resource does not exist
17434
- */
17435
- 404: ErrorResponse;
17436
- /**
17437
- * Too Many Requests - Rate limit exceeded
17438
- */
17439
- 429: ErrorResponse;
17440
- /**
17441
- * Internal Server Error - Unexpected server error
17442
- */
17443
- 500: ErrorResponse;
17444
- /**
17445
- * General Error
17446
- */
17447
- default: Errors;
17448
- };
17449
- type PostAdminExtractionSchemasBulkCreateError = PostAdminExtractionSchemasBulkCreateErrors[keyof PostAdminExtractionSchemasBulkCreateErrors];
17450
- type PostAdminExtractionSchemasBulkCreateResponses = {
17451
- /**
17452
- * Success
17453
- */
17454
- 201: {
17455
- data?: ExtractionSchema;
17456
- included?: Array<ExtractionSchemaField>;
17457
- meta?: {
17458
- [key: string]: unknown;
17459
- };
17460
- };
17461
- };
17462
- type PostAdminExtractionSchemasBulkCreateResponse = PostAdminExtractionSchemasBulkCreateResponses[keyof PostAdminExtractionSchemasBulkCreateResponses];
17463
16972
  type GetAdminLlmAnalyticsByIdData = {
17464
16973
  body?: never;
17465
16974
  headers: {
@@ -19799,7 +19308,7 @@ type PostAdminUsersAuthMagicLinkLoginResponses = {
19799
19308
  };
19800
19309
  };
19801
19310
  type PostAdminUsersAuthMagicLinkLoginResponse = PostAdminUsersAuthMagicLinkLoginResponses[keyof PostAdminUsersAuthMagicLinkLoginResponses];
19802
- type GetAdminExtractionSchemasByIdData = {
19311
+ type GetAdminTenantsByTenantIdWorkspaceStatsData = {
19803
19312
  body?: never;
19804
19313
  headers: {
19805
19314
  /**
@@ -19808,9 +19317,19 @@ type GetAdminExtractionSchemasByIdData = {
19808
19317
  "x-application-key": string;
19809
19318
  };
19810
19319
  path: {
19811
- id: string;
19320
+ tenant_id: string;
19812
19321
  };
19813
19322
  query?: {
19323
+ /**
19324
+ * JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
19325
+ */
19326
+ filter?: {
19327
+ [key: string]: unknown;
19328
+ };
19329
+ /**
19330
+ * Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
19331
+ */
19332
+ sort?: string;
19814
19333
  /**
19815
19334
  * Include related resources in the response. Comma-separated list of relationship names to eager-load.
19816
19335
  */
@@ -19822,9 +19341,9 @@ type GetAdminExtractionSchemasByIdData = {
19822
19341
  [key: string]: unknown;
19823
19342
  };
19824
19343
  };
19825
- url: "/admin/extraction/schemas/{id}";
19344
+ url: "/admin/tenants/{tenant_id}/workspace_stats";
19826
19345
  };
19827
- type GetAdminExtractionSchemasByIdErrors = {
19346
+ type GetAdminTenantsByTenantIdWorkspaceStatsErrors = {
19828
19347
  /**
19829
19348
  * Bad Request - Invalid input data or malformed request
19830
19349
  */
@@ -19854,105 +19373,39 @@ type GetAdminExtractionSchemasByIdErrors = {
19854
19373
  */
19855
19374
  default: Errors;
19856
19375
  };
19857
- type GetAdminExtractionSchemasByIdError = GetAdminExtractionSchemasByIdErrors[keyof GetAdminExtractionSchemasByIdErrors];
19858
- type GetAdminExtractionSchemasByIdResponses = {
19376
+ type GetAdminTenantsByTenantIdWorkspaceStatsError = GetAdminTenantsByTenantIdWorkspaceStatsErrors[keyof GetAdminTenantsByTenantIdWorkspaceStatsErrors];
19377
+ type GetAdminTenantsByTenantIdWorkspaceStatsResponses = {
19859
19378
  /**
19860
19379
  * Success
19861
19380
  */
19862
19381
  200: {
19863
- data?: ExtractionSchema;
19864
- included?: Array<ExtractionSchemaField>;
19865
- meta?: {
19866
- [key: string]: unknown;
19867
- };
19868
- };
19869
- };
19870
- type GetAdminExtractionSchemasByIdResponse = GetAdminExtractionSchemasByIdResponses[keyof GetAdminExtractionSchemasByIdResponses];
19871
- type PatchAdminExtractionSchemasByIdData = {
19872
- /**
19873
- * Request body for the /extraction/schemas/:id operation on extraction_schema resource
19874
- */
19875
- body?: {
19876
- data: {
19877
- attributes?: {
19878
- is_active?: boolean | unknown;
19879
- };
19880
- id: string;
19881
- relationships?: {
19882
- [key: string]: never;
19883
- };
19884
- type?: "extraction_schema";
19885
- };
19886
- };
19887
- headers: {
19888
- /**
19889
- * Application ID for authentication and routing
19890
- */
19891
- "x-application-key": string;
19892
- };
19893
- path: {
19894
- id: string;
19895
- };
19896
- query?: {
19897
- /**
19898
- * Include related resources in the response. Comma-separated list of relationship names to eager-load.
19899
- */
19900
- include?: string;
19901
19382
  /**
19902
- * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
19383
+ * An array of resource objects representing a workspace_document_stats
19903
19384
  */
19904
- fields?: {
19385
+ data?: Array<WorkspaceDocumentStats>;
19386
+ included?: Array<unknown>;
19387
+ meta?: {
19905
19388
  [key: string]: unknown;
19906
19389
  };
19907
19390
  };
19908
- url: "/admin/extraction/schemas/{id}";
19909
- };
19910
- type PatchAdminExtractionSchemasByIdErrors = {
19911
- /**
19912
- * Bad Request - Invalid input data or malformed request
19913
- */
19914
- 400: ErrorResponse;
19915
- /**
19916
- * Unauthorized - Missing or invalid authentication token
19917
- */
19918
- 401: ErrorResponse;
19919
- /**
19920
- * Forbidden - Authenticated but not authorized for this resource
19921
- */
19922
- 403: ErrorResponse;
19923
- /**
19924
- * Not Found - Resource does not exist
19925
- */
19926
- 404: ErrorResponse;
19927
- /**
19928
- * Too Many Requests - Rate limit exceeded
19929
- */
19930
- 429: ErrorResponse;
19931
- /**
19932
- * Internal Server Error - Unexpected server error
19933
- */
19934
- 500: ErrorResponse;
19935
- /**
19936
- * General Error
19937
- */
19938
- default: Errors;
19939
19391
  };
19940
- type PatchAdminExtractionSchemasByIdError = PatchAdminExtractionSchemasByIdErrors[keyof PatchAdminExtractionSchemasByIdErrors];
19941
- type PatchAdminExtractionSchemasByIdResponses = {
19392
+ type GetAdminTenantsByTenantIdWorkspaceStatsResponse = GetAdminTenantsByTenantIdWorkspaceStatsResponses[keyof GetAdminTenantsByTenantIdWorkspaceStatsResponses];
19393
+ type PostAdminAgentsByIdDiscoverSchemaData = {
19942
19394
  /**
19943
- * Success
19395
+ * Request body for the /agents/:id/discover_schema operation on agent resource
19944
19396
  */
19945
- 200: {
19946
- data?: ExtractionSchema;
19947
- included?: Array<ExtractionSchemaField>;
19948
- meta?: {
19949
- [key: string]: unknown;
19397
+ body?: {
19398
+ data: {
19399
+ /**
19400
+ * Raw content to analyze (alternative to document_id)
19401
+ */
19402
+ content?: string | unknown;
19403
+ /**
19404
+ * ID of document to analyze (will fetch content from document)
19405
+ */
19406
+ document_id?: string | unknown;
19950
19407
  };
19951
19408
  };
19952
- };
19953
- type PatchAdminExtractionSchemasByIdResponse = PatchAdminExtractionSchemasByIdResponses[keyof PatchAdminExtractionSchemasByIdResponses];
19954
- type GetAdminTenantsByTenantIdWorkspaceStatsData = {
19955
- body?: never;
19956
19409
  headers: {
19957
19410
  /**
19958
19411
  * Application ID for authentication and routing
@@ -19960,33 +19413,12 @@ type GetAdminTenantsByTenantIdWorkspaceStatsData = {
19960
19413
  "x-application-key": string;
19961
19414
  };
19962
19415
  path: {
19963
- tenant_id: string;
19964
- };
19965
- query?: {
19966
- /**
19967
- * JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
19968
- */
19969
- filter?: {
19970
- [key: string]: unknown;
19971
- };
19972
- /**
19973
- * Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
19974
- */
19975
- sort?: string;
19976
- /**
19977
- * Include related resources in the response. Comma-separated list of relationship names to eager-load.
19978
- */
19979
- include?: string;
19980
- /**
19981
- * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
19982
- */
19983
- fields?: {
19984
- [key: string]: unknown;
19985
- };
19416
+ id: string;
19986
19417
  };
19987
- url: "/admin/tenants/{tenant_id}/workspace_stats";
19418
+ query?: never;
19419
+ url: "/admin/agents/{id}/discover_schema";
19988
19420
  };
19989
- type GetAdminTenantsByTenantIdWorkspaceStatsErrors = {
19421
+ type PostAdminAgentsByIdDiscoverSchemaErrors = {
19990
19422
  /**
19991
19423
  * Bad Request - Invalid input data or malformed request
19992
19424
  */
@@ -20016,23 +19448,16 @@ type GetAdminTenantsByTenantIdWorkspaceStatsErrors = {
20016
19448
  */
20017
19449
  default: Errors;
20018
19450
  };
20019
- type GetAdminTenantsByTenantIdWorkspaceStatsError = GetAdminTenantsByTenantIdWorkspaceStatsErrors[keyof GetAdminTenantsByTenantIdWorkspaceStatsErrors];
20020
- type GetAdminTenantsByTenantIdWorkspaceStatsResponses = {
19451
+ type PostAdminAgentsByIdDiscoverSchemaError = PostAdminAgentsByIdDiscoverSchemaErrors[keyof PostAdminAgentsByIdDiscoverSchemaErrors];
19452
+ type PostAdminAgentsByIdDiscoverSchemaResponses = {
20021
19453
  /**
20022
19454
  * Success
20023
19455
  */
20024
- 200: {
20025
- /**
20026
- * An array of resource objects representing a workspace_document_stats
20027
- */
20028
- data?: Array<WorkspaceDocumentStats>;
20029
- included?: Array<unknown>;
20030
- meta?: {
20031
- [key: string]: unknown;
20032
- };
19456
+ 201: {
19457
+ [key: string]: unknown;
20033
19458
  };
20034
19459
  };
20035
- type GetAdminTenantsByTenantIdWorkspaceStatsResponse = GetAdminTenantsByTenantIdWorkspaceStatsResponses[keyof GetAdminTenantsByTenantIdWorkspaceStatsResponses];
19460
+ type PostAdminAgentsByIdDiscoverSchemaResponse = PostAdminAgentsByIdDiscoverSchemaResponses[keyof PostAdminAgentsByIdDiscoverSchemaResponses];
20036
19461
  type PostAdminAgentsByIdTestData = {
20037
19462
  /**
20038
19463
  * Request body for the /agents/:id/test operation on agent resource
@@ -21597,75 +21022,6 @@ type GetAdminMessagesSearchResponses = {
21597
21022
  };
21598
21023
  };
21599
21024
  type GetAdminMessagesSearchResponse = GetAdminMessagesSearchResponses[keyof GetAdminMessagesSearchResponses];
21600
- type GetAdminExtractionSchemasWorkspaceByWorkspaceIdData = {
21601
- body?: never;
21602
- headers: {
21603
- /**
21604
- * Application ID for authentication and routing
21605
- */
21606
- "x-application-key": string;
21607
- };
21608
- path: {
21609
- workspace_id: string;
21610
- };
21611
- query?: {
21612
- /**
21613
- * Include related resources in the response. Comma-separated list of relationship names to eager-load.
21614
- */
21615
- include?: string;
21616
- /**
21617
- * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
21618
- */
21619
- fields?: {
21620
- [key: string]: unknown;
21621
- };
21622
- };
21623
- url: "/admin/extraction/schemas/workspace/{workspace_id}";
21624
- };
21625
- type GetAdminExtractionSchemasWorkspaceByWorkspaceIdErrors = {
21626
- /**
21627
- * Bad Request - Invalid input data or malformed request
21628
- */
21629
- 400: ErrorResponse;
21630
- /**
21631
- * Unauthorized - Missing or invalid authentication token
21632
- */
21633
- 401: ErrorResponse;
21634
- /**
21635
- * Forbidden - Authenticated but not authorized for this resource
21636
- */
21637
- 403: ErrorResponse;
21638
- /**
21639
- * Not Found - Resource does not exist
21640
- */
21641
- 404: ErrorResponse;
21642
- /**
21643
- * Too Many Requests - Rate limit exceeded
21644
- */
21645
- 429: ErrorResponse;
21646
- /**
21647
- * Internal Server Error - Unexpected server error
21648
- */
21649
- 500: ErrorResponse;
21650
- /**
21651
- * General Error
21652
- */
21653
- default: Errors;
21654
- };
21655
- type GetAdminExtractionSchemasWorkspaceByWorkspaceIdError = GetAdminExtractionSchemasWorkspaceByWorkspaceIdErrors[keyof GetAdminExtractionSchemasWorkspaceByWorkspaceIdErrors];
21656
- type GetAdminExtractionSchemasWorkspaceByWorkspaceIdResponses = {
21657
- /**
21658
- * Success
21659
- */
21660
- 200: {
21661
- data?: ExtractionSchema;
21662
- included?: Array<ExtractionSchemaField>;
21663
- meta?: {
21664
- [key: string]: unknown;
21665
- };
21666
- };
21667
- };
21668
- type GetAdminExtractionSchemasWorkspaceByWorkspaceIdResponse = GetAdminExtractionSchemasWorkspaceByWorkspaceIdResponses[keyof GetAdminExtractionSchemasWorkspaceByWorkspaceIdResponses];
21669
21025
  type GetAdminAgentsByIdTrainingStatsData = {
21670
21026
  body?: never;
21671
21027
  headers: {
@@ -22102,7 +21458,7 @@ type PatchAdminExtractionDocumentsByIdStatusData = {
22102
21458
  * State or province code (2-letter)
22103
21459
  */
22104
21460
  state?: string | unknown;
22105
- status?: "queued" | "processing" | "completed" | "failed" | "cancelled" | unknown;
21461
+ status?: "queued" | "processing" | "completed" | "failed" | "cancelled" | "pending_credits" | unknown;
22106
21462
  /**
22107
21463
  * Metadata about the training session for this document (trained_at, user_id, scores)
22108
21464
  */
@@ -22356,6 +21712,7 @@ type PostAdminAgentVersionsData = {
22356
21712
  attributes?: {
22357
21713
  agent_id: string;
22358
21714
  changes_summary?: string | unknown;
21715
+ fields?: Array<AgentVersionFieldsInputCreateType> | unknown;
22359
21716
  parent_version_id?: string | unknown;
22360
21717
  prompt_template: string;
22361
21718
  schema_definition?: {
@@ -23787,19 +23144,162 @@ type PatchAdminThreadsByIdData = {
23787
23144
  };
23788
23145
  query?: {
23789
23146
  /**
23790
- * Include related resources in the response. Comma-separated list of relationship names to eager-load.
23147
+ * Include related resources in the response. Comma-separated list of relationship names to eager-load.
23148
+ */
23149
+ include?: string;
23150
+ /**
23151
+ * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
23152
+ */
23153
+ fields?: {
23154
+ [key: string]: unknown;
23155
+ };
23156
+ };
23157
+ url: "/admin/threads/{id}";
23158
+ };
23159
+ type PatchAdminThreadsByIdErrors = {
23160
+ /**
23161
+ * Bad Request - Invalid input data or malformed request
23162
+ */
23163
+ 400: ErrorResponse;
23164
+ /**
23165
+ * Unauthorized - Missing or invalid authentication token
23166
+ */
23167
+ 401: ErrorResponse;
23168
+ /**
23169
+ * Forbidden - Authenticated but not authorized for this resource
23170
+ */
23171
+ 403: ErrorResponse;
23172
+ /**
23173
+ * Not Found - Resource does not exist
23174
+ */
23175
+ 404: ErrorResponse;
23176
+ /**
23177
+ * Too Many Requests - Rate limit exceeded
23178
+ */
23179
+ 429: ErrorResponse;
23180
+ /**
23181
+ * Internal Server Error - Unexpected server error
23182
+ */
23183
+ 500: ErrorResponse;
23184
+ /**
23185
+ * General Error
23186
+ */
23187
+ default: Errors;
23188
+ };
23189
+ type PatchAdminThreadsByIdError = PatchAdminThreadsByIdErrors[keyof PatchAdminThreadsByIdErrors];
23190
+ type PatchAdminThreadsByIdResponses = {
23191
+ /**
23192
+ * Success
23193
+ */
23194
+ 200: {
23195
+ data?: Thread;
23196
+ included?: Array<unknown>;
23197
+ meta?: {
23198
+ [key: string]: unknown;
23199
+ };
23200
+ };
23201
+ };
23202
+ type PatchAdminThreadsByIdResponse = PatchAdminThreadsByIdResponses[keyof PatchAdminThreadsByIdResponses];
23203
+ type PatchAdminWalletAddonsData = {
23204
+ /**
23205
+ * Request body for the /wallet/addons operation on wallet resource
23206
+ */
23207
+ body: {
23208
+ data: {
23209
+ attributes?: {
23210
+ addon_slug: string;
23211
+ quantity?: number | unknown;
23212
+ };
23213
+ id: string;
23214
+ relationships?: {
23215
+ [key: string]: never;
23216
+ };
23217
+ type?: "wallet";
23218
+ };
23219
+ };
23220
+ headers: {
23221
+ /**
23222
+ * Application ID for authentication and routing
23223
+ */
23224
+ "x-application-key": string;
23225
+ };
23226
+ path?: never;
23227
+ query?: {
23228
+ /**
23229
+ * Include related resources in the response. Comma-separated list of relationship names to eager-load.
23230
+ */
23231
+ include?: string;
23232
+ /**
23233
+ * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
23234
+ */
23235
+ fields?: {
23236
+ [key: string]: unknown;
23237
+ };
23238
+ };
23239
+ url: "/admin/wallet/addons";
23240
+ };
23241
+ type PatchAdminWalletAddonsErrors = {
23242
+ /**
23243
+ * Bad Request - Invalid input data or malformed request
23244
+ */
23245
+ 400: ErrorResponse;
23246
+ /**
23247
+ * Unauthorized - Missing or invalid authentication token
23248
+ */
23249
+ 401: ErrorResponse;
23250
+ /**
23251
+ * Forbidden - Authenticated but not authorized for this resource
23252
+ */
23253
+ 403: ErrorResponse;
23254
+ /**
23255
+ * Not Found - Resource does not exist
23256
+ */
23257
+ 404: ErrorResponse;
23258
+ /**
23259
+ * Too Many Requests - Rate limit exceeded
23260
+ */
23261
+ 429: ErrorResponse;
23262
+ /**
23263
+ * Internal Server Error - Unexpected server error
23264
+ */
23265
+ 500: ErrorResponse;
23266
+ /**
23267
+ * General Error
23268
+ */
23269
+ default: Errors;
23270
+ };
23271
+ type PatchAdminWalletAddonsError = PatchAdminWalletAddonsErrors[keyof PatchAdminWalletAddonsErrors];
23272
+ type PatchAdminWalletAddonsResponses = {
23273
+ /**
23274
+ * Success
23275
+ */
23276
+ 200: {
23277
+ data?: Wallet;
23278
+ included?: Array<unknown>;
23279
+ meta?: {
23280
+ [key: string]: unknown;
23281
+ };
23282
+ };
23283
+ };
23284
+ type PatchAdminWalletAddonsResponse = PatchAdminWalletAddonsResponses[keyof PatchAdminWalletAddonsResponses];
23285
+ type GetAdminAgentsByIdSchemaVersionsData = {
23286
+ body?: never;
23287
+ headers: {
23288
+ /**
23289
+ * Application ID for authentication and routing
23791
23290
  */
23792
- include?: string;
23291
+ "x-application-key": string;
23292
+ };
23293
+ path: {
23793
23294
  /**
23794
- * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
23295
+ * Agent ID (automatically mapped from route)
23795
23296
  */
23796
- fields?: {
23797
- [key: string]: unknown;
23798
- };
23297
+ id: string;
23799
23298
  };
23800
- url: "/admin/threads/{id}";
23299
+ query?: never;
23300
+ url: "/admin/agents/{id}/schema_versions";
23801
23301
  };
23802
- type PatchAdminThreadsByIdErrors = {
23302
+ type GetAdminAgentsByIdSchemaVersionsErrors = {
23803
23303
  /**
23804
23304
  * Bad Request - Invalid input data or malformed request
23805
23305
  */
@@ -23829,35 +23329,31 @@ type PatchAdminThreadsByIdErrors = {
23829
23329
  */
23830
23330
  default: Errors;
23831
23331
  };
23832
- type PatchAdminThreadsByIdError = PatchAdminThreadsByIdErrors[keyof PatchAdminThreadsByIdErrors];
23833
- type PatchAdminThreadsByIdResponses = {
23332
+ type GetAdminAgentsByIdSchemaVersionsError = GetAdminAgentsByIdSchemaVersionsErrors[keyof GetAdminAgentsByIdSchemaVersionsErrors];
23333
+ type GetAdminAgentsByIdSchemaVersionsResponses = {
23834
23334
  /**
23835
23335
  * Success
23836
23336
  */
23837
23337
  200: {
23838
- data?: Thread;
23839
- included?: Array<unknown>;
23840
- meta?: {
23841
- [key: string]: unknown;
23842
- };
23338
+ [key: string]: unknown;
23843
23339
  };
23844
23340
  };
23845
- type PatchAdminThreadsByIdResponse = PatchAdminThreadsByIdResponses[keyof PatchAdminThreadsByIdResponses];
23846
- type PatchAdminWalletAddonsData = {
23341
+ type GetAdminAgentsByIdSchemaVersionsResponse = GetAdminAgentsByIdSchemaVersionsResponses[keyof GetAdminAgentsByIdSchemaVersionsResponses];
23342
+ type PostAdminAgentsByIdSchemaVersionsData = {
23847
23343
  /**
23848
- * Request body for the /wallet/addons operation on wallet resource
23344
+ * Request body for the /agents/:id/schema_versions operation on agent resource
23849
23345
  */
23850
23346
  body: {
23851
23347
  data: {
23852
- attributes?: {
23853
- addon_slug: string;
23854
- quantity?: number | unknown;
23855
- };
23856
- id: string;
23857
- relationships?: {
23858
- [key: string]: never;
23348
+ changes_summary?: string | unknown;
23349
+ fields?: Array<{
23350
+ [key: string]: unknown;
23351
+ }> | unknown;
23352
+ prompt_template: string;
23353
+ schema_definition: {
23354
+ [key: string]: unknown;
23859
23355
  };
23860
- type?: "wallet";
23356
+ version_number: string;
23861
23357
  };
23862
23358
  };
23863
23359
  headers: {
@@ -23866,22 +23362,16 @@ type PatchAdminWalletAddonsData = {
23866
23362
  */
23867
23363
  "x-application-key": string;
23868
23364
  };
23869
- path?: never;
23870
- query?: {
23871
- /**
23872
- * Include related resources in the response. Comma-separated list of relationship names to eager-load.
23873
- */
23874
- include?: string;
23365
+ path: {
23875
23366
  /**
23876
- * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
23367
+ * Agent ID (automatically mapped from route)
23877
23368
  */
23878
- fields?: {
23879
- [key: string]: unknown;
23880
- };
23369
+ id: string;
23881
23370
  };
23882
- url: "/admin/wallet/addons";
23371
+ query?: never;
23372
+ url: "/admin/agents/{id}/schema_versions";
23883
23373
  };
23884
- type PatchAdminWalletAddonsErrors = {
23374
+ type PostAdminAgentsByIdSchemaVersionsErrors = {
23885
23375
  /**
23886
23376
  * Bad Request - Invalid input data or malformed request
23887
23377
  */
@@ -23911,20 +23401,16 @@ type PatchAdminWalletAddonsErrors = {
23911
23401
  */
23912
23402
  default: Errors;
23913
23403
  };
23914
- type PatchAdminWalletAddonsError = PatchAdminWalletAddonsErrors[keyof PatchAdminWalletAddonsErrors];
23915
- type PatchAdminWalletAddonsResponses = {
23404
+ type PostAdminAgentsByIdSchemaVersionsError = PostAdminAgentsByIdSchemaVersionsErrors[keyof PostAdminAgentsByIdSchemaVersionsErrors];
23405
+ type PostAdminAgentsByIdSchemaVersionsResponses = {
23916
23406
  /**
23917
23407
  * Success
23918
23408
  */
23919
- 200: {
23920
- data?: Wallet;
23921
- included?: Array<unknown>;
23922
- meta?: {
23923
- [key: string]: unknown;
23924
- };
23409
+ 201: {
23410
+ [key: string]: unknown;
23925
23411
  };
23926
23412
  };
23927
- type PatchAdminWalletAddonsResponse = PatchAdminWalletAddonsResponses[keyof PatchAdminWalletAddonsResponses];
23413
+ type PostAdminAgentsByIdSchemaVersionsResponse = PostAdminAgentsByIdSchemaVersionsResponses[keyof PostAdminAgentsByIdSchemaVersionsResponses];
23928
23414
  type DeleteAdminMessagesByIdData = {
23929
23415
  body?: never;
23930
23416
  headers: {
@@ -27073,226 +26559,6 @@ type PatchAdminApplicationsByIdResponses = {
27073
26559
  };
27074
26560
  };
27075
26561
  type PatchAdminApplicationsByIdResponse = PatchAdminApplicationsByIdResponses[keyof PatchAdminApplicationsByIdResponses];
27076
- type DeleteAdminExtractionSchemaFieldsByIdData = {
27077
- body?: never;
27078
- headers: {
27079
- /**
27080
- * Application ID for authentication and routing
27081
- */
27082
- "x-application-key": string;
27083
- };
27084
- path: {
27085
- id: string;
27086
- };
27087
- query?: {
27088
- /**
27089
- * Include related resources in the response. Comma-separated list of relationship names to eager-load.
27090
- */
27091
- include?: string;
27092
- /**
27093
- * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
27094
- */
27095
- fields?: {
27096
- [key: string]: unknown;
27097
- };
27098
- };
27099
- url: "/admin/extraction/schema-fields/{id}";
27100
- };
27101
- type DeleteAdminExtractionSchemaFieldsByIdErrors = {
27102
- /**
27103
- * Bad Request - Invalid input data or malformed request
27104
- */
27105
- 400: ErrorResponse;
27106
- /**
27107
- * Unauthorized - Missing or invalid authentication token
27108
- */
27109
- 401: ErrorResponse;
27110
- /**
27111
- * Forbidden - Authenticated but not authorized for this resource
27112
- */
27113
- 403: ErrorResponse;
27114
- /**
27115
- * Not Found - Resource does not exist
27116
- */
27117
- 404: ErrorResponse;
27118
- /**
27119
- * Too Many Requests - Rate limit exceeded
27120
- */
27121
- 429: ErrorResponse;
27122
- /**
27123
- * Internal Server Error - Unexpected server error
27124
- */
27125
- 500: ErrorResponse;
27126
- /**
27127
- * General Error
27128
- */
27129
- default: Errors;
27130
- };
27131
- type DeleteAdminExtractionSchemaFieldsByIdError = DeleteAdminExtractionSchemaFieldsByIdErrors[keyof DeleteAdminExtractionSchemaFieldsByIdErrors];
27132
- type DeleteAdminExtractionSchemaFieldsByIdResponses = {
27133
- /**
27134
- * Deleted successfully
27135
- */
27136
- 200: unknown;
27137
- };
27138
- type GetAdminExtractionSchemaFieldsByIdData = {
27139
- body?: never;
27140
- headers: {
27141
- /**
27142
- * Application ID for authentication and routing
27143
- */
27144
- "x-application-key": string;
27145
- };
27146
- path: {
27147
- id: string;
27148
- };
27149
- query?: {
27150
- /**
27151
- * Include related resources in the response. Comma-separated list of relationship names to eager-load.
27152
- */
27153
- include?: string;
27154
- /**
27155
- * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
27156
- */
27157
- fields?: {
27158
- [key: string]: unknown;
27159
- };
27160
- };
27161
- url: "/admin/extraction/schema-fields/{id}";
27162
- };
27163
- type GetAdminExtractionSchemaFieldsByIdErrors = {
27164
- /**
27165
- * Bad Request - Invalid input data or malformed request
27166
- */
27167
- 400: ErrorResponse;
27168
- /**
27169
- * Unauthorized - Missing or invalid authentication token
27170
- */
27171
- 401: ErrorResponse;
27172
- /**
27173
- * Forbidden - Authenticated but not authorized for this resource
27174
- */
27175
- 403: ErrorResponse;
27176
- /**
27177
- * Not Found - Resource does not exist
27178
- */
27179
- 404: ErrorResponse;
27180
- /**
27181
- * Too Many Requests - Rate limit exceeded
27182
- */
27183
- 429: ErrorResponse;
27184
- /**
27185
- * Internal Server Error - Unexpected server error
27186
- */
27187
- 500: ErrorResponse;
27188
- /**
27189
- * General Error
27190
- */
27191
- default: Errors;
27192
- };
27193
- type GetAdminExtractionSchemaFieldsByIdError = GetAdminExtractionSchemaFieldsByIdErrors[keyof GetAdminExtractionSchemaFieldsByIdErrors];
27194
- type GetAdminExtractionSchemaFieldsByIdResponses = {
27195
- /**
27196
- * Success
27197
- */
27198
- 200: {
27199
- data?: ExtractionSchemaField;
27200
- included?: Array<unknown>;
27201
- meta?: {
27202
- [key: string]: unknown;
27203
- };
27204
- };
27205
- };
27206
- type GetAdminExtractionSchemaFieldsByIdResponse = GetAdminExtractionSchemaFieldsByIdResponses[keyof GetAdminExtractionSchemaFieldsByIdResponses];
27207
- type PatchAdminExtractionSchemaFieldsByIdData = {
27208
- /**
27209
- * Request body for the /extraction/schema-fields/:id operation on extraction_schema_field resource
27210
- */
27211
- body?: {
27212
- data: {
27213
- attributes?: {
27214
- extraction_hint?: string | unknown;
27215
- group?: string | unknown;
27216
- label?: string | unknown;
27217
- name?: string | unknown;
27218
- order?: number | unknown;
27219
- required?: boolean | unknown;
27220
- type?: "text" | "date" | "currency" | "number" | "boolean" | "array" | "email" | "phone" | "url" | "datetime" | "timestamp" | "alphanumeric_code" | "address" | unknown;
27221
- };
27222
- id: string;
27223
- relationships?: {
27224
- [key: string]: never;
27225
- };
27226
- type?: "extraction_schema_field";
27227
- };
27228
- };
27229
- headers: {
27230
- /**
27231
- * Application ID for authentication and routing
27232
- */
27233
- "x-application-key": string;
27234
- };
27235
- path: {
27236
- id: string;
27237
- };
27238
- query?: {
27239
- /**
27240
- * Include related resources in the response. Comma-separated list of relationship names to eager-load.
27241
- */
27242
- include?: string;
27243
- /**
27244
- * JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
27245
- */
27246
- fields?: {
27247
- [key: string]: unknown;
27248
- };
27249
- };
27250
- url: "/admin/extraction/schema-fields/{id}";
27251
- };
27252
- type PatchAdminExtractionSchemaFieldsByIdErrors = {
27253
- /**
27254
- * Bad Request - Invalid input data or malformed request
27255
- */
27256
- 400: ErrorResponse;
27257
- /**
27258
- * Unauthorized - Missing or invalid authentication token
27259
- */
27260
- 401: ErrorResponse;
27261
- /**
27262
- * Forbidden - Authenticated but not authorized for this resource
27263
- */
27264
- 403: ErrorResponse;
27265
- /**
27266
- * Not Found - Resource does not exist
27267
- */
27268
- 404: ErrorResponse;
27269
- /**
27270
- * Too Many Requests - Rate limit exceeded
27271
- */
27272
- 429: ErrorResponse;
27273
- /**
27274
- * Internal Server Error - Unexpected server error
27275
- */
27276
- 500: ErrorResponse;
27277
- /**
27278
- * General Error
27279
- */
27280
- default: Errors;
27281
- };
27282
- type PatchAdminExtractionSchemaFieldsByIdError = PatchAdminExtractionSchemaFieldsByIdErrors[keyof PatchAdminExtractionSchemaFieldsByIdErrors];
27283
- type PatchAdminExtractionSchemaFieldsByIdResponses = {
27284
- /**
27285
- * Success
27286
- */
27287
- 200: {
27288
- data?: ExtractionSchemaField;
27289
- included?: Array<unknown>;
27290
- meta?: {
27291
- [key: string]: unknown;
27292
- };
27293
- };
27294
- };
27295
- type PatchAdminExtractionSchemaFieldsByIdResponse = PatchAdminExtractionSchemaFieldsByIdResponses[keyof PatchAdminExtractionSchemaFieldsByIdResponses];
27296
26562
  type GetAdminExtractionBatchesByIdUploadUrlsData = {
27297
26563
  body?: never;
27298
26564
  headers: {
@@ -27963,4 +27229,4 @@ type ApiKeyAllocateRequest = z.infer<typeof ApiKeyAllocateSchema>;
27963
27229
  type DocumentBulkDeleteRequest = z.infer<typeof DocumentBulkDeleteSchema>;
27964
27230
  type DocumentBulkReprocessRequest = z.infer<typeof DocumentBulkReprocessSchema>;
27965
27231
 
27966
- export { type Account, type AccountCreditRequest, AccountCreditSchema, type AccountDebitRequest, AccountDebitSchema, type Agent, type AgentAdminCreateRequest, AgentAdminCreateSchema, type AgentVersion, type AiConfig, type ApiKey, type ApiKeyAllocateRequest, ApiKeyAllocateSchema, type Application, type AuditLog, AuthenticationError, AuthorizationError, type Bucket, type BulkDismissalResult, type ClientOptions, type Config, type Conversation, type CreditPackage, type Customer, 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 DeleteAdminApiKeysByIdData, type DeleteAdminApiKeysByIdError, type DeleteAdminApiKeysByIdErrors, type DeleteAdminApiKeysByIdResponses, 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 DeleteAdminExtractionDocumentsByIdData, type DeleteAdminExtractionDocumentsByIdError, type DeleteAdminExtractionDocumentsByIdErrors, type DeleteAdminExtractionDocumentsByIdResponses, type DeleteAdminExtractionSchemaFieldsByIdData, type DeleteAdminExtractionSchemaFieldsByIdError, type DeleteAdminExtractionSchemaFieldsByIdErrors, type DeleteAdminExtractionSchemaFieldsByIdResponses, type DeleteAdminFieldTemplatesByIdData, type DeleteAdminFieldTemplatesByIdError, type DeleteAdminFieldTemplatesByIdErrors, type DeleteAdminFieldTemplatesByIdResponses, type DeleteAdminMessagesByIdData, type DeleteAdminMessagesByIdError, type DeleteAdminMessagesByIdErrors, type DeleteAdminMessagesByIdResponses, type DeleteAdminNotificationMethodsByIdData, type DeleteAdminNotificationMethodsByIdError, type DeleteAdminNotificationMethodsByIdErrors, type DeleteAdminNotificationMethodsByIdResponses, type DeleteAdminNotificationPreferencesByIdData, type DeleteAdminNotificationPreferencesByIdError, type DeleteAdminNotificationPreferencesByIdErrors, type DeleteAdminNotificationPreferencesByIdResponses, type DeleteAdminObjectsByIdData, type DeleteAdminObjectsByIdError, type DeleteAdminObjectsByIdErrors, type DeleteAdminObjectsByIdResponses, type DeleteAdminPaymentMethodsByIdData, type DeleteAdminPaymentMethodsByIdError, type DeleteAdminPaymentMethodsByIdErrors, type DeleteAdminPaymentMethodsByIdResponses, type DeleteAdminPlansByIdData, type DeleteAdminPlansByIdError, type DeleteAdminPlansByIdErrors, type DeleteAdminPlansByIdResponses, type DeleteAdminSearchSavedByIdData, type DeleteAdminSearchSavedByIdError, type DeleteAdminSearchSavedByIdErrors, type DeleteAdminSearchSavedByIdResponses, type DeleteAdminSubscriptionsByIdData, type DeleteAdminSubscriptionsByIdError, type DeleteAdminSubscriptionsByIdErrors, type DeleteAdminSubscriptionsByIdResponses, type DeleteAdminTenantMembershipsByTenantIdByUserIdData, type DeleteAdminTenantMembershipsByTenantIdByUserIdError, type DeleteAdminTenantMembershipsByTenantIdByUserIdErrors, type DeleteAdminTenantMembershipsByTenantIdByUserIdResponses, 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 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 Embedding, type ErrorResponse, type Errors, type ExtractionBatch, type ExtractionDocument, type ExtractionExport, type ExtractionResult, type ExtractionSchema, type ExtractionSchemaField, type FieldTemplate, type GetAdminAccountsByIdData, type GetAdminAccountsByIdError, type GetAdminAccountsByIdErrors, type GetAdminAccountsByIdResponse, type GetAdminAccountsByIdResponses, type GetAdminAccountsData, type GetAdminAccountsError, type GetAdminAccountsErrors, type GetAdminAccountsResponse, type GetAdminAccountsResponses, type GetAdminAgentVersionsByIdData, type GetAdminAgentVersionsByIdError, type GetAdminAgentVersionsByIdErrors, type GetAdminAgentVersionsByIdResponse, type GetAdminAgentVersionsByIdResponses, type GetAdminAgentVersionsData, type GetAdminAgentVersionsError, type GetAdminAgentVersionsErrors, type GetAdminAgentVersionsResponse, type GetAdminAgentVersionsResponses, type GetAdminAgentsByIdData, type GetAdminAgentsByIdError, type GetAdminAgentsByIdErrors, type GetAdminAgentsByIdResponse, type GetAdminAgentsByIdResponses, type GetAdminAgentsByIdTrainingStatsData, type GetAdminAgentsByIdTrainingStatsError, type GetAdminAgentsByIdTrainingStatsErrors, type GetAdminAgentsByIdTrainingStatsResponse, type GetAdminAgentsByIdTrainingStatsResponses, type GetAdminAgentsData, type GetAdminAgentsError, type GetAdminAgentsErrors, type GetAdminAgentsResponse, type GetAdminAgentsResponses, 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 GetAdminAiGraphNodesData, type GetAdminAiGraphNodesError, type GetAdminAiGraphNodesErrors, type GetAdminAiGraphNodesResponse, type GetAdminAiGraphNodesResponses, type GetAdminAiMessagesData, type GetAdminAiMessagesError, type GetAdminAiMessagesErrors, type GetAdminAiMessagesResponse, type GetAdminAiMessagesResponses, type GetAdminApiKeysByIdData, type GetAdminApiKeysByIdError, type GetAdminApiKeysByIdErrors, type GetAdminApiKeysByIdResponse, type GetAdminApiKeysByIdResponses, type GetAdminApiKeysData, type GetAdminApiKeysError, type GetAdminApiKeysErrors, type GetAdminApiKeysResponse, type GetAdminApiKeysResponses, type GetAdminApplicationsByIdData, type GetAdminApplicationsByIdError, type GetAdminApplicationsByIdErrors, type GetAdminApplicationsByIdResponse, type GetAdminApplicationsByIdResponses, type GetAdminApplicationsBySlugBySlugData, type GetAdminApplicationsBySlugBySlugError, type GetAdminApplicationsBySlugBySlugErrors, type GetAdminApplicationsBySlugBySlugResponse, type GetAdminApplicationsBySlugBySlugResponses, type GetAdminApplicationsData, type GetAdminApplicationsError, type GetAdminApplicationsErrors, type GetAdminApplicationsResponse, type GetAdminApplicationsResponses, type GetAdminAuditLogsData, type GetAdminAuditLogsError, type GetAdminAuditLogsErrors, type GetAdminAuditLogsResponse, type GetAdminAuditLogsResponses, type GetAdminBucketsByIdData, type GetAdminBucketsByIdError, type GetAdminBucketsByIdErrors, type GetAdminBucketsByIdObjectsData, type GetAdminBucketsByIdObjectsError, type GetAdminBucketsByIdObjectsErrors, type GetAdminBucketsByIdObjectsResponse, type GetAdminBucketsByIdObjectsResponses, type GetAdminBucketsByIdResponse, type GetAdminBucketsByIdResponses, type GetAdminBucketsByIdStatsData, type GetAdminBucketsByIdStatsError, type GetAdminBucketsByIdStatsErrors, type GetAdminBucketsByIdStatsResponse, type GetAdminBucketsByIdStatsResponses, type GetAdminBucketsData, type GetAdminBucketsError, type GetAdminBucketsErrors, type GetAdminBucketsResponse, type GetAdminBucketsResponses, type GetAdminConfigsData, type GetAdminConfigsError, type GetAdminConfigsErrors, type GetAdminConfigsResponse, type GetAdminConfigsResponses, type GetAdminCreditPackagesByIdData, type GetAdminCreditPackagesByIdError, type GetAdminCreditPackagesByIdErrors, type GetAdminCreditPackagesByIdResponse, type GetAdminCreditPackagesByIdResponses, type GetAdminCreditPackagesData, type GetAdminCreditPackagesError, type GetAdminCreditPackagesErrors, type GetAdminCreditPackagesResponse, type GetAdminCreditPackagesResponses, type GetAdminCreditPackagesSlugBySlugData, type GetAdminCreditPackagesSlugBySlugError, type GetAdminCreditPackagesSlugBySlugErrors, type GetAdminCreditPackagesSlugBySlugResponse, type GetAdminCreditPackagesSlugBySlugResponses, type GetAdminCustomersByIdData, type GetAdminCustomersByIdError, type GetAdminCustomersByIdErrors, type GetAdminCustomersByIdResponse, type GetAdminCustomersByIdResponses, type GetAdminDocumentsStatsData, type GetAdminDocumentsStatsError, type GetAdminDocumentsStatsErrors, type GetAdminDocumentsStatsResponse, type GetAdminDocumentsStatsResponses, type GetAdminExtractionBatchesByIdData, type GetAdminExtractionBatchesByIdError, type GetAdminExtractionBatchesByIdErrors, type GetAdminExtractionBatchesByIdResponse, type GetAdminExtractionBatchesByIdResponses, type GetAdminExtractionBatchesByIdUploadUrlsData, type GetAdminExtractionBatchesByIdUploadUrlsError, type GetAdminExtractionBatchesByIdUploadUrlsErrors, type GetAdminExtractionBatchesByIdUploadUrlsResponse, type GetAdminExtractionBatchesByIdUploadUrlsResponses, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdData, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdError, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdErrors, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdResponse, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdResponses, type GetAdminExtractionDocumentsByIdData, type GetAdminExtractionDocumentsByIdError, type GetAdminExtractionDocumentsByIdErrors, type GetAdminExtractionDocumentsByIdResponse, type GetAdminExtractionDocumentsByIdResponses, type GetAdminExtractionDocumentsByIdStatusData, type GetAdminExtractionDocumentsByIdStatusError, type GetAdminExtractionDocumentsByIdStatusErrors, type GetAdminExtractionDocumentsByIdStatusResponse, type GetAdminExtractionDocumentsByIdStatusResponses, type GetAdminExtractionDocumentsByIdViewData, type GetAdminExtractionDocumentsByIdViewError, type GetAdminExtractionDocumentsByIdViewErrors, type GetAdminExtractionDocumentsByIdViewResponse, type GetAdminExtractionDocumentsByIdViewResponses, type GetAdminExtractionDocumentsData, type GetAdminExtractionDocumentsError, type GetAdminExtractionDocumentsErrors, type GetAdminExtractionDocumentsResponse, type GetAdminExtractionDocumentsResponses, type 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 GetAdminExtractionResultsByIdData, type GetAdminExtractionResultsByIdError, type GetAdminExtractionResultsByIdErrors, type GetAdminExtractionResultsByIdResponse, type GetAdminExtractionResultsByIdResponses, type GetAdminExtractionResultsDocumentByDocumentIdData, type GetAdminExtractionResultsDocumentByDocumentIdError, type GetAdminExtractionResultsDocumentByDocumentIdErrors, type GetAdminExtractionResultsDocumentByDocumentIdResponse, type GetAdminExtractionResultsDocumentByDocumentIdResponses, type GetAdminExtractionSchemaFieldsByIdData, type GetAdminExtractionSchemaFieldsByIdError, type GetAdminExtractionSchemaFieldsByIdErrors, type GetAdminExtractionSchemaFieldsByIdResponse, type GetAdminExtractionSchemaFieldsByIdResponses, type GetAdminExtractionSchemaFieldsData, type GetAdminExtractionSchemaFieldsError, type GetAdminExtractionSchemaFieldsErrors, type GetAdminExtractionSchemaFieldsResponse, type GetAdminExtractionSchemaFieldsResponses, type GetAdminExtractionSchemasByIdData, type GetAdminExtractionSchemasByIdError, type GetAdminExtractionSchemasByIdErrors, type GetAdminExtractionSchemasByIdResponse, type GetAdminExtractionSchemasByIdResponses, type GetAdminExtractionSchemasData, type GetAdminExtractionSchemasError, type GetAdminExtractionSchemasErrors, type GetAdminExtractionSchemasResponse, type GetAdminExtractionSchemasResponses, type GetAdminExtractionSchemasWorkspaceByWorkspaceIdData, type GetAdminExtractionSchemasWorkspaceByWorkspaceIdError, type GetAdminExtractionSchemasWorkspaceByWorkspaceIdErrors, type GetAdminExtractionSchemasWorkspaceByWorkspaceIdResponse, type GetAdminExtractionSchemasWorkspaceByWorkspaceIdResponses, 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 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 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 GetAdminNotificationLogsByIdData, type GetAdminNotificationLogsByIdError, type GetAdminNotificationLogsByIdErrors, type GetAdminNotificationLogsByIdResponse, type GetAdminNotificationLogsByIdResponses, type GetAdminNotificationLogsData, type GetAdminNotificationLogsError, type GetAdminNotificationLogsErrors, type GetAdminNotificationLogsResponse, type GetAdminNotificationLogsResponses, 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 GetAdminPlansByIdData, type GetAdminPlansByIdError, type GetAdminPlansByIdErrors, type GetAdminPlansByIdResponse, type GetAdminPlansByIdResponses, type GetAdminPlansData, type GetAdminPlansError, type GetAdminPlansErrors, type GetAdminPlansResponse, type GetAdminPlansResponses, type GetAdminPlansSlugBySlugData, type GetAdminPlansSlugBySlugError, type GetAdminPlansSlugBySlugErrors, type GetAdminPlansSlugBySlugResponse, type GetAdminPlansSlugBySlugResponses, type GetAdminPricingRulesByIdData, type GetAdminPricingRulesByIdError, type GetAdminPricingRulesByIdErrors, type GetAdminPricingRulesByIdResponse, type GetAdminPricingRulesByIdResponses, type GetAdminPricingRulesData, type GetAdminPricingRulesError, type GetAdminPricingRulesErrors, type GetAdminPricingRulesResolveData, type GetAdminPricingRulesResolveError, type GetAdminPricingRulesResolveErrors, type GetAdminPricingRulesResolveResponse, type GetAdminPricingRulesResolveResponses, type GetAdminPricingRulesResponse, type GetAdminPricingRulesResponses, type GetAdminPricingStrategiesByIdData, type GetAdminPricingStrategiesByIdError, type GetAdminPricingStrategiesByIdErrors, type GetAdminPricingStrategiesByIdResponse, type GetAdminPricingStrategiesByIdResponses, type GetAdminPricingStrategiesData, type GetAdminPricingStrategiesError, type GetAdminPricingStrategiesErrors, type GetAdminPricingStrategiesResponse, type GetAdminPricingStrategiesResponses, type 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 GetAdminStorageStatsData, type GetAdminStorageStatsError, type GetAdminStorageStatsErrors, type GetAdminStorageStatsResponse, type GetAdminStorageStatsResponses, type GetAdminSubscriptionsByIdData, type GetAdminSubscriptionsByIdError, type GetAdminSubscriptionsByIdErrors, type GetAdminSubscriptionsByIdResponse, type GetAdminSubscriptionsByIdResponses, 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 GetAdminTenantMembershipsData, type GetAdminTenantMembershipsError, type GetAdminTenantMembershipsErrors, type GetAdminTenantMembershipsResponse, type GetAdminTenantMembershipsResponses, 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 GetAdminThreadsByIdResponse, type GetAdminThreadsByIdResponses, type GetAdminThreadsData, type GetAdminThreadsError, type GetAdminThreadsErrors, type GetAdminThreadsResponse, type GetAdminThreadsResponses, type GetAdminThreadsSearchData, type GetAdminThreadsSearchError, type GetAdminThreadsSearchErrors, type GetAdminThreadsSearchResponse, type GetAdminThreadsSearchResponses, 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 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 GetAdminUsersByIdData, type GetAdminUsersByIdError, type GetAdminUsersByIdErrors, type GetAdminUsersByIdResponse, type GetAdminUsersByIdResponses, type GetAdminUsersData, type GetAdminUsersError, type GetAdminUsersErrors, type GetAdminUsersMeData, type GetAdminUsersMeError, type GetAdminUsersMeErrors, type GetAdminUsersMeResponse, type GetAdminUsersMeResponses, type GetAdminUsersResponse, type GetAdminUsersResponses, type GetAdminWalletData, type GetAdminWalletError, type GetAdminWalletErrors, type GetAdminWalletResponse, type GetAdminWalletResponses, type GetAdminWebhookConfigsByIdData, type GetAdminWebhookConfigsByIdError, type GetAdminWebhookConfigsByIdErrors, type GetAdminWebhookConfigsByIdResponse, type GetAdminWebhookConfigsByIdResponses, type GetAdminWebhookConfigsData, type GetAdminWebhookConfigsError, type GetAdminWebhookConfigsErrors, type GetAdminWebhookConfigsResponse, type GetAdminWebhookConfigsResponses, type GetAdminWebhookDeliveriesByIdData, type GetAdminWebhookDeliveriesByIdError, type GetAdminWebhookDeliveriesByIdErrors, type GetAdminWebhookDeliveriesByIdResponse, type GetAdminWebhookDeliveriesByIdResponses, type GetAdminWebhookDeliveriesData, type GetAdminWebhookDeliveriesError, type GetAdminWebhookDeliveriesErrors, type GetAdminWebhookDeliveriesResponse, type GetAdminWebhookDeliveriesResponses, type GetAdminWorkspaceMembershipsData, type GetAdminWorkspaceMembershipsError, type GetAdminWorkspaceMembershipsErrors, type GetAdminWorkspaceMembershipsResponse, type GetAdminWorkspaceMembershipsResponses, type GetAdminWorkspacesByIdData, type GetAdminWorkspacesByIdError, type GetAdminWorkspacesByIdErrors, type GetAdminWorkspacesByIdResponse, type GetAdminWorkspacesByIdResponses, 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, GptAdmin, GptCoreError, type GraphEdge, type GraphNode, type Invitation, type IsvRevenue, type IsvSettlement, type Ledger, type Link, type Links, type LlmAnalytics, type Message, NetworkError, NotFoundError, type NotificationLog, type NotificationMethod, type NotificationPreference, type OperationSuccess, type PatchAdminAccountsByIdCreditData, type PatchAdminAccountsByIdCreditError, type PatchAdminAccountsByIdCreditErrors, type PatchAdminAccountsByIdCreditResponse, type PatchAdminAccountsByIdCreditResponses, type PatchAdminAccountsByIdDebitData, type PatchAdminAccountsByIdDebitError, type PatchAdminAccountsByIdDebitErrors, type PatchAdminAccountsByIdDebitResponse, type PatchAdminAccountsByIdDebitResponses, type PatchAdminApiKeysByIdAllocateData, type PatchAdminApiKeysByIdAllocateError, type PatchAdminApiKeysByIdAllocateErrors, type PatchAdminApiKeysByIdAllocateResponse, type PatchAdminApiKeysByIdAllocateResponses, type PatchAdminApiKeysByIdData, type PatchAdminApiKeysByIdError, type PatchAdminApiKeysByIdErrors, 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 PatchAdminApplicationsByIdData, type PatchAdminApplicationsByIdError, type PatchAdminApplicationsByIdErrors, type PatchAdminApplicationsByIdGrantCreditsData, type PatchAdminApplicationsByIdGrantCreditsError, type PatchAdminApplicationsByIdGrantCreditsErrors, type PatchAdminApplicationsByIdGrantCreditsResponse, type PatchAdminApplicationsByIdGrantCreditsResponses, type PatchAdminApplicationsByIdResponse, type PatchAdminApplicationsByIdResponses, type PatchAdminBucketsByIdData, type PatchAdminBucketsByIdError, type PatchAdminBucketsByIdErrors, type PatchAdminBucketsByIdResponse, type PatchAdminBucketsByIdResponses, type PatchAdminConfigsByKeyData, type PatchAdminConfigsByKeyError, type PatchAdminConfigsByKeyErrors, type PatchAdminConfigsByKeyResponse, type PatchAdminConfigsByKeyResponses, type PatchAdminCreditPackagesByIdData, type PatchAdminCreditPackagesByIdError, type PatchAdminCreditPackagesByIdErrors, type PatchAdminCreditPackagesByIdResponse, type PatchAdminCreditPackagesByIdResponses, type PatchAdminCustomersByIdData, type PatchAdminCustomersByIdError, type PatchAdminCustomersByIdErrors, type PatchAdminCustomersByIdResponse, type PatchAdminCustomersByIdResponses, type PatchAdminExtractionDocumentsByIdCancelData, type PatchAdminExtractionDocumentsByIdCancelError, type PatchAdminExtractionDocumentsByIdCancelErrors, type PatchAdminExtractionDocumentsByIdCancelResponse, type PatchAdminExtractionDocumentsByIdCancelResponses, type PatchAdminExtractionDocumentsByIdDismissData, type PatchAdminExtractionDocumentsByIdDismissError, type PatchAdminExtractionDocumentsByIdDismissErrors, type PatchAdminExtractionDocumentsByIdDismissResponse, type PatchAdminExtractionDocumentsByIdDismissResponses, type PatchAdminExtractionDocumentsByIdDismissTrainingData, type PatchAdminExtractionDocumentsByIdDismissTrainingError, type PatchAdminExtractionDocumentsByIdDismissTrainingErrors, type PatchAdminExtractionDocumentsByIdDismissTrainingResponse, type PatchAdminExtractionDocumentsByIdDismissTrainingResponses, type PatchAdminExtractionDocumentsByIdExcludeData, type PatchAdminExtractionDocumentsByIdExcludeError, type PatchAdminExtractionDocumentsByIdExcludeErrors, type PatchAdminExtractionDocumentsByIdExcludeResponse, type PatchAdminExtractionDocumentsByIdExcludeResponses, type PatchAdminExtractionDocumentsByIdFinishUploadData, type PatchAdminExtractionDocumentsByIdFinishUploadError, type PatchAdminExtractionDocumentsByIdFinishUploadErrors, type PatchAdminExtractionDocumentsByIdFinishUploadResponse, type PatchAdminExtractionDocumentsByIdFinishUploadResponses, type PatchAdminExtractionDocumentsByIdIncludeData, type PatchAdminExtractionDocumentsByIdIncludeError, type PatchAdminExtractionDocumentsByIdIncludeErrors, type PatchAdminExtractionDocumentsByIdIncludeResponse, type PatchAdminExtractionDocumentsByIdIncludeResponses, type PatchAdminExtractionDocumentsByIdMarkTrainedData, type PatchAdminExtractionDocumentsByIdMarkTrainedError, type PatchAdminExtractionDocumentsByIdMarkTrainedErrors, type PatchAdminExtractionDocumentsByIdMarkTrainedResponse, type PatchAdminExtractionDocumentsByIdMarkTrainedResponses, type PatchAdminExtractionDocumentsByIdRestoreData, type PatchAdminExtractionDocumentsByIdRestoreError, type PatchAdminExtractionDocumentsByIdRestoreErrors, type PatchAdminExtractionDocumentsByIdRestoreResponse, type PatchAdminExtractionDocumentsByIdRestoreResponses, type PatchAdminExtractionDocumentsByIdStatusData, type PatchAdminExtractionDocumentsByIdStatusError, type PatchAdminExtractionDocumentsByIdStatusErrors, type PatchAdminExtractionDocumentsByIdStatusResponse, type PatchAdminExtractionDocumentsByIdStatusResponses, type PatchAdminExtractionResultsByIdCorrectionsData, type PatchAdminExtractionResultsByIdCorrectionsError, type PatchAdminExtractionResultsByIdCorrectionsErrors, type PatchAdminExtractionResultsByIdCorrectionsResponse, type PatchAdminExtractionResultsByIdCorrectionsResponses, type PatchAdminExtractionResultsByIdRegenerateData, type PatchAdminExtractionResultsByIdRegenerateError, type PatchAdminExtractionResultsByIdRegenerateErrors, type PatchAdminExtractionResultsByIdRegenerateResponse, type PatchAdminExtractionResultsByIdRegenerateResponses, type PatchAdminExtractionSchemaFieldsByIdData, type PatchAdminExtractionSchemaFieldsByIdError, type PatchAdminExtractionSchemaFieldsByIdErrors, type PatchAdminExtractionSchemaFieldsByIdResponse, type PatchAdminExtractionSchemaFieldsByIdResponses, type PatchAdminExtractionSchemasByIdActivateData, type PatchAdminExtractionSchemasByIdActivateError, type PatchAdminExtractionSchemasByIdActivateErrors, type PatchAdminExtractionSchemasByIdActivateResponse, type PatchAdminExtractionSchemasByIdActivateResponses, type PatchAdminExtractionSchemasByIdData, type PatchAdminExtractionSchemasByIdError, type PatchAdminExtractionSchemasByIdErrors, type PatchAdminExtractionSchemasByIdFieldsData, type PatchAdminExtractionSchemasByIdFieldsError, type PatchAdminExtractionSchemasByIdFieldsErrors, type PatchAdminExtractionSchemasByIdFieldsResponse, type PatchAdminExtractionSchemasByIdFieldsResponses, type PatchAdminExtractionSchemasByIdResponse, type PatchAdminExtractionSchemasByIdResponses, type PatchAdminInvitationsByIdAcceptData, type PatchAdminInvitationsByIdAcceptError, type PatchAdminInvitationsByIdAcceptErrors, type PatchAdminInvitationsByIdAcceptResponse, type PatchAdminInvitationsByIdAcceptResponses, 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 PatchAdminNotificationMethodsByIdSetPrimaryData, type PatchAdminNotificationMethodsByIdSetPrimaryError, type PatchAdminNotificationMethodsByIdSetPrimaryErrors, type PatchAdminNotificationMethodsByIdSetPrimaryResponse, type PatchAdminNotificationMethodsByIdSetPrimaryResponses, type PatchAdminNotificationPreferencesByIdData, type PatchAdminNotificationPreferencesByIdError, type PatchAdminNotificationPreferencesByIdErrors, type PatchAdminNotificationPreferencesByIdResponse, type PatchAdminNotificationPreferencesByIdResponses, type PatchAdminPlansByIdData, type PatchAdminPlansByIdError, type PatchAdminPlansByIdErrors, type PatchAdminPlansByIdResponse, type PatchAdminPlansByIdResponses, type PatchAdminPricingRulesByIdData, type PatchAdminPricingRulesByIdError, type PatchAdminPricingRulesByIdErrors, type PatchAdminPricingRulesByIdResponse, type PatchAdminPricingRulesByIdResponses, type PatchAdminPricingStrategiesByIdData, type PatchAdminPricingStrategiesByIdError, type PatchAdminPricingStrategiesByIdErrors, type PatchAdminPricingStrategiesByIdResponse, type PatchAdminPricingStrategiesByIdResponses, type PatchAdminSubscriptionsByIdData, type PatchAdminSubscriptionsByIdError, type PatchAdminSubscriptionsByIdErrors, type PatchAdminSubscriptionsByIdResponse, type PatchAdminSubscriptionsByIdResponses, type PatchAdminSysAiConfigByIdData, type PatchAdminSysAiConfigByIdError, type PatchAdminSysAiConfigByIdErrors, type PatchAdminSysAiConfigByIdResponse, type PatchAdminSysAiConfigByIdResponses, type PatchAdminTenantMembershipsByTenantIdByUserIdData, type PatchAdminTenantMembershipsByTenantIdByUserIdError, type PatchAdminTenantMembershipsByTenantIdByUserIdErrors, type PatchAdminTenantMembershipsByTenantIdByUserIdResponse, type PatchAdminTenantMembershipsByTenantIdByUserIdResponses, type PatchAdminTenantsByIdData, type PatchAdminTenantsByIdError, type PatchAdminTenantsByIdErrors, type PatchAdminTenantsByIdResponse, type PatchAdminTenantsByIdResponses, type PatchAdminThreadsByIdData, type PatchAdminThreadsByIdError, type PatchAdminThreadsByIdErrors, type PatchAdminThreadsByIdResponse, type PatchAdminThreadsByIdResponses, type PatchAdminTrainingExamplesByIdData, type PatchAdminTrainingExamplesByIdError, type PatchAdminTrainingExamplesByIdErrors, type PatchAdminTrainingExamplesByIdResponse, type PatchAdminTrainingExamplesByIdResponses, type PatchAdminUserProfilesByIdData, type PatchAdminUserProfilesByIdError, type PatchAdminUserProfilesByIdErrors, type PatchAdminUserProfilesByIdResponse, type PatchAdminUserProfilesByIdResponses, type PatchAdminUsersAuthResetPasswordData, type PatchAdminUsersAuthResetPasswordError, type PatchAdminUsersAuthResetPasswordErrors, type PatchAdminUsersAuthResetPasswordResponse, type PatchAdminUsersAuthResetPasswordResponses, type PatchAdminUsersByIdAdminData, type PatchAdminUsersByIdAdminEmailData, type PatchAdminUsersByIdAdminEmailError, type PatchAdminUsersByIdAdminEmailErrors, type PatchAdminUsersByIdAdminEmailResponse, type PatchAdminUsersByIdAdminEmailResponses, type PatchAdminUsersByIdAdminError, type PatchAdminUsersByIdAdminErrors, type PatchAdminUsersByIdAdminResponse, type PatchAdminUsersByIdAdminResponses, type PatchAdminUsersByIdConfirmEmailData, type PatchAdminUsersByIdConfirmEmailError, type PatchAdminUsersByIdConfirmEmailErrors, type PatchAdminUsersByIdConfirmEmailResponse, type PatchAdminUsersByIdConfirmEmailResponses, type PatchAdminUsersByIdResetPasswordData, type PatchAdminUsersByIdResetPasswordError, type PatchAdminUsersByIdResetPasswordErrors, type PatchAdminUsersByIdResetPasswordResponse, type PatchAdminUsersByIdResetPasswordResponses, type PatchAdminWalletAddonsByAddonSlugCancelData, type PatchAdminWalletAddonsByAddonSlugCancelError, type PatchAdminWalletAddonsByAddonSlugCancelErrors, type PatchAdminWalletAddonsByAddonSlugCancelResponse, type PatchAdminWalletAddonsByAddonSlugCancelResponses, type PatchAdminWalletAddonsData, type PatchAdminWalletAddonsError, type PatchAdminWalletAddonsErrors, type PatchAdminWalletAddonsResponse, type PatchAdminWalletAddonsResponses, type PatchAdminWalletCreditsData, type PatchAdminWalletCreditsError, type PatchAdminWalletCreditsErrors, type PatchAdminWalletCreditsResponse, type PatchAdminWalletCreditsResponses, type PatchAdminWalletPlanData, type PatchAdminWalletPlanError, type PatchAdminWalletPlanErrors, type PatchAdminWalletPlanResponse, type PatchAdminWalletPlanResponses, type PatchAdminWalletStorageData, type PatchAdminWalletStorageError, type PatchAdminWalletStorageErrors, type PatchAdminWalletStorageResponse, type PatchAdminWalletStorageResponses, type PatchAdminWebhookConfigsByIdData, type PatchAdminWebhookConfigsByIdError, type PatchAdminWebhookConfigsByIdErrors, type PatchAdminWebhookConfigsByIdResponse, type PatchAdminWebhookConfigsByIdResponses, type PatchAdminWebhookConfigsByIdRotateSecretData, type PatchAdminWebhookConfigsByIdRotateSecretError, type PatchAdminWebhookConfigsByIdRotateSecretErrors, type PatchAdminWebhookConfigsByIdRotateSecretResponse, type PatchAdminWebhookConfigsByIdRotateSecretResponses, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdData, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdError, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponse, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type PatchAdminWorkspacesByIdAllocateData, type PatchAdminWorkspacesByIdAllocateError, type PatchAdminWorkspacesByIdAllocateErrors, type PatchAdminWorkspacesByIdAllocateResponse, type PatchAdminWorkspacesByIdAllocateResponses, type PatchAdminWorkspacesByIdData, type PatchAdminWorkspacesByIdError, type PatchAdminWorkspacesByIdErrors, type PatchAdminWorkspacesByIdResponse, type PatchAdminWorkspacesByIdResponses, type Payment, type PaymentMethod, type Plan, type PostAdminAgentVersionsData, type PostAdminAgentVersionsError, type PostAdminAgentVersionsErrors, type PostAdminAgentVersionsResponse, type PostAdminAgentVersionsResponses, type PostAdminAgentsByIdCloneData, type PostAdminAgentsByIdCloneError, type PostAdminAgentsByIdCloneErrors, type PostAdminAgentsByIdCloneResponse, type PostAdminAgentsByIdCloneResponses, type PostAdminAgentsByIdPublishVersionData, type PostAdminAgentsByIdPublishVersionError, type PostAdminAgentsByIdPublishVersionErrors, type PostAdminAgentsByIdPublishVersionResponse, type PostAdminAgentsByIdPublishVersionResponses, 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 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 PostAdminApplicationsData, type PostAdminApplicationsError, type PostAdminApplicationsErrors, type PostAdminApplicationsResponse, type PostAdminApplicationsResponses, type PostAdminBucketsData, type PostAdminBucketsError, type PostAdminBucketsErrors, type PostAdminBucketsResponse, type PostAdminBucketsResponses, type PostAdminConfigsData, type PostAdminConfigsError, type PostAdminConfigsErrors, type PostAdminConfigsResponse, type PostAdminConfigsResponses, type PostAdminCreditPackagesData, type PostAdminCreditPackagesError, type PostAdminCreditPackagesErrors, type PostAdminCreditPackagesResponse, type PostAdminCreditPackagesResponses, type PostAdminCustomersData, type PostAdminCustomersError, type PostAdminCustomersErrors, type PostAdminCustomersResponse, type PostAdminCustomersResponses, type PostAdminDocumentsBulkDeleteData, type PostAdminDocumentsBulkDeleteError, type PostAdminDocumentsBulkDeleteErrors, type PostAdminDocumentsBulkDeleteResponse, type PostAdminDocumentsBulkDeleteResponses, type PostAdminDocumentsPresignedUploadData, type PostAdminDocumentsPresignedUploadError, type PostAdminDocumentsPresignedUploadErrors, type PostAdminDocumentsPresignedUploadResponse, type PostAdminDocumentsPresignedUploadResponses, type PostAdminExtractionBatchesData, type PostAdminExtractionBatchesError, type PostAdminExtractionBatchesErrors, type PostAdminExtractionBatchesResponse, type PostAdminExtractionBatchesResponses, type PostAdminExtractionDocumentsBeginUploadData, type PostAdminExtractionDocumentsBeginUploadError, type PostAdminExtractionDocumentsBeginUploadErrors, type PostAdminExtractionDocumentsBeginUploadResponse, type PostAdminExtractionDocumentsBeginUploadResponses, type PostAdminExtractionDocumentsUploadData, type PostAdminExtractionDocumentsUploadError, type PostAdminExtractionDocumentsUploadErrors, type PostAdminExtractionDocumentsUploadResponse, type PostAdminExtractionDocumentsUploadResponses, type PostAdminExtractionResultsData, type PostAdminExtractionResultsError, type PostAdminExtractionResultsErrors, type PostAdminExtractionResultsResponse, type PostAdminExtractionResultsResponses, type PostAdminExtractionSchemaFieldsData, type PostAdminExtractionSchemaFieldsError, type PostAdminExtractionSchemaFieldsErrors, type PostAdminExtractionSchemaFieldsResponse, type PostAdminExtractionSchemaFieldsResponses, type PostAdminExtractionSchemasBulkCreateData, type PostAdminExtractionSchemasBulkCreateError, type PostAdminExtractionSchemasBulkCreateErrors, type PostAdminExtractionSchemasBulkCreateResponse, type PostAdminExtractionSchemasBulkCreateResponses, type PostAdminExtractionSchemasData, type PostAdminExtractionSchemasError, type PostAdminExtractionSchemasErrors, type PostAdminExtractionSchemasResponse, type PostAdminExtractionSchemasResponses, type PostAdminFieldTemplatesData, type PostAdminFieldTemplatesError, type PostAdminFieldTemplatesErrors, type PostAdminFieldTemplatesResponse, type PostAdminFieldTemplatesResponses, type PostAdminInvitationsAcceptByTokenData, type PostAdminInvitationsAcceptByTokenError, type PostAdminInvitationsAcceptByTokenErrors, type PostAdminInvitationsAcceptByTokenResponse, type PostAdminInvitationsAcceptByTokenResponses, type PostAdminInvitationsInviteData, type PostAdminInvitationsInviteError, type PostAdminInvitationsInviteErrors, type PostAdminInvitationsInviteResponse, type PostAdminInvitationsInviteResponses, 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 PostAdminObjectsRegisterData, type PostAdminObjectsRegisterError, type PostAdminObjectsRegisterErrors, type PostAdminObjectsRegisterResponse, type PostAdminObjectsRegisterResponses, type PostAdminPaymentMethodsData, type PostAdminPaymentMethodsError, type PostAdminPaymentMethodsErrors, type PostAdminPaymentMethodsResponse, type PostAdminPaymentMethodsResponses, type PostAdminPaymentsData, type PostAdminPaymentsError, type PostAdminPaymentsErrors, type PostAdminPaymentsResponse, type PostAdminPaymentsResponses, type PostAdminPlansData, type PostAdminPlansError, type PostAdminPlansErrors, type PostAdminPlansResponse, type PostAdminPlansResponses, type PostAdminPricingRulesData, type PostAdminPricingRulesError, type PostAdminPricingRulesErrors, type PostAdminPricingRulesResponse, type PostAdminPricingRulesResponses, type PostAdminPricingStrategiesData, type PostAdminPricingStrategiesError, type PostAdminPricingStrategiesErrors, type PostAdminPricingStrategiesResponse, type PostAdminPricingStrategiesResponses, type PostAdminSearchReindexData, type PostAdminSearchReindexError, type PostAdminSearchReindexErrors, type PostAdminSearchReindexResponse, type PostAdminSearchReindexResponses, type PostAdminSearchSavedData, type PostAdminSearchSavedError, type PostAdminSearchSavedErrors, type PostAdminSearchSavedResponse, type PostAdminSearchSavedResponses, type PostAdminStorageSignDownloadData, type PostAdminStorageSignDownloadError, type PostAdminStorageSignDownloadErrors, type PostAdminStorageSignDownloadResponse, type PostAdminStorageSignDownloadResponses, type PostAdminStorageSignUploadData, type PostAdminStorageSignUploadError, type PostAdminStorageSignUploadErrors, type PostAdminStorageSignUploadResponse, type PostAdminStorageSignUploadResponses, type PostAdminSubscriptionsData, type PostAdminSubscriptionsError, type PostAdminSubscriptionsErrors, type PostAdminSubscriptionsResponse, type PostAdminSubscriptionsResponses, type PostAdminSysAiConfigData, type PostAdminSysAiConfigError, type PostAdminSysAiConfigErrors, type PostAdminSysAiConfigResponse, type PostAdminSysAiConfigResponses, type PostAdminSysSemanticCacheClearData, type PostAdminSysSemanticCacheClearError, type PostAdminSysSemanticCacheClearErrors, type PostAdminSysSemanticCacheClearResponse, type PostAdminSysSemanticCacheClearResponses, type PostAdminTenantMembershipsData, type PostAdminTenantMembershipsError, type PostAdminTenantMembershipsErrors, type PostAdminTenantMembershipsResponse, type PostAdminTenantMembershipsResponses, 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 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 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 PostAdminUsersRegisterIsvData, type PostAdminUsersRegisterIsvError, type PostAdminUsersRegisterIsvErrors, type PostAdminUsersRegisterIsvResponse, type PostAdminUsersRegisterIsvResponses, type PostAdminWebhookConfigsByIdTestData, type PostAdminWebhookConfigsByIdTestError, type PostAdminWebhookConfigsByIdTestErrors, type PostAdminWebhookConfigsByIdTestResponse, type PostAdminWebhookConfigsByIdTestResponses, type PostAdminWebhookConfigsData, type PostAdminWebhookConfigsError, type PostAdminWebhookConfigsErrors, type PostAdminWebhookConfigsResponse, type PostAdminWebhookConfigsResponses, type PostAdminWebhookDeliveriesByIdRetryData, type PostAdminWebhookDeliveriesByIdRetryError, type PostAdminWebhookDeliveriesByIdRetryErrors, type PostAdminWebhookDeliveriesByIdRetryResponse, type PostAdminWebhookDeliveriesByIdRetryResponses, type PostAdminWorkspaceMembershipsData, type PostAdminWorkspaceMembershipsError, type PostAdminWorkspaceMembershipsErrors, type PostAdminWorkspaceMembershipsResponse, type PostAdminWorkspaceMembershipsResponses, 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 Search, type SemanticCacheEntry, ServerError, type StorageStats, type StorageStatsRequest, StorageStatsRequestSchema, type Subscription, type Tenant, type TenantDocumentStats, type TenantMembership, type TenantStats, type Thread, TimeoutError, type Token, type TrainingAnalytics, type TrainingExample, type TrainingSession, type Transaction, type User, type UserProfile, ValidationError, type Wallet, type WebhookBulkDisableRequest, WebhookBulkDisableSchema, type WebhookBulkEnableRequest, WebhookBulkEnableSchema, type WebhookConfig, type WebhookConfigCreateRequest, WebhookConfigCreateSchema, type WebhookDelivery, type WebhookDeliveryBulkRetryRequest, WebhookDeliveryBulkRetrySchema, type Workspace, type WorkspaceDocumentStats, type WorkspaceMembership, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, GptAdmin as default, handleApiError };
27232
+ export { type Account, type AccountCreditRequest, AccountCreditSchema, type AccountDebitRequest, AccountDebitSchema, type Agent, type AgentAdminCreateRequest, AgentAdminCreateSchema, type AgentVersion, type AgentVersionFieldsInputCreateType, type AiConfig, type ApiKey, type ApiKeyAllocateRequest, ApiKeyAllocateSchema, type Application, type AuditLog, AuthenticationError, AuthorizationError, type Bucket, type BulkDismissalResult, type ClientOptions, type Config, type Conversation, type CreditPackage, type Customer, 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 DeleteAdminApiKeysByIdData, type DeleteAdminApiKeysByIdError, type DeleteAdminApiKeysByIdErrors, type DeleteAdminApiKeysByIdResponses, 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 DeleteAdminExtractionDocumentsByIdData, type DeleteAdminExtractionDocumentsByIdError, type DeleteAdminExtractionDocumentsByIdErrors, type DeleteAdminExtractionDocumentsByIdResponses, type DeleteAdminFieldTemplatesByIdData, type DeleteAdminFieldTemplatesByIdError, type DeleteAdminFieldTemplatesByIdErrors, type DeleteAdminFieldTemplatesByIdResponses, type DeleteAdminMessagesByIdData, type DeleteAdminMessagesByIdError, type DeleteAdminMessagesByIdErrors, type DeleteAdminMessagesByIdResponses, type DeleteAdminNotificationMethodsByIdData, type DeleteAdminNotificationMethodsByIdError, type DeleteAdminNotificationMethodsByIdErrors, type DeleteAdminNotificationMethodsByIdResponses, type DeleteAdminNotificationPreferencesByIdData, type DeleteAdminNotificationPreferencesByIdError, type DeleteAdminNotificationPreferencesByIdErrors, type DeleteAdminNotificationPreferencesByIdResponses, type DeleteAdminObjectsByIdData, type DeleteAdminObjectsByIdError, type DeleteAdminObjectsByIdErrors, type DeleteAdminObjectsByIdResponses, type DeleteAdminPaymentMethodsByIdData, type DeleteAdminPaymentMethodsByIdError, type DeleteAdminPaymentMethodsByIdErrors, type DeleteAdminPaymentMethodsByIdResponses, type DeleteAdminPlansByIdData, type DeleteAdminPlansByIdError, type DeleteAdminPlansByIdErrors, type DeleteAdminPlansByIdResponses, type DeleteAdminSearchSavedByIdData, type DeleteAdminSearchSavedByIdError, type DeleteAdminSearchSavedByIdErrors, type DeleteAdminSearchSavedByIdResponses, type DeleteAdminSubscriptionsByIdData, type DeleteAdminSubscriptionsByIdError, type DeleteAdminSubscriptionsByIdErrors, type DeleteAdminSubscriptionsByIdResponses, type DeleteAdminTenantMembershipsByTenantIdByUserIdData, type DeleteAdminTenantMembershipsByTenantIdByUserIdError, type DeleteAdminTenantMembershipsByTenantIdByUserIdErrors, type DeleteAdminTenantMembershipsByTenantIdByUserIdResponses, 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 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 Embedding, type ErrorResponse, type Errors, type ExtractionBatch, type ExtractionDocument, type ExtractionExport, type ExtractionResult, type FieldTemplate, type GetAdminAccountsByIdData, type GetAdminAccountsByIdError, type GetAdminAccountsByIdErrors, type GetAdminAccountsByIdResponse, type GetAdminAccountsByIdResponses, type GetAdminAccountsData, type GetAdminAccountsError, type GetAdminAccountsErrors, type GetAdminAccountsResponse, type GetAdminAccountsResponses, type GetAdminAgentVersionsByIdData, type GetAdminAgentVersionsByIdError, type GetAdminAgentVersionsByIdErrors, type GetAdminAgentVersionsByIdResponse, type GetAdminAgentVersionsByIdResponses, type GetAdminAgentVersionsData, type GetAdminAgentVersionsError, type GetAdminAgentVersionsErrors, type GetAdminAgentVersionsResponse, type GetAdminAgentVersionsResponses, type GetAdminAgentsByIdData, type GetAdminAgentsByIdError, type GetAdminAgentsByIdErrors, type GetAdminAgentsByIdResponse, type GetAdminAgentsByIdResponses, type GetAdminAgentsByIdSchemaVersionsData, type GetAdminAgentsByIdSchemaVersionsError, type GetAdminAgentsByIdSchemaVersionsErrors, type GetAdminAgentsByIdSchemaVersionsResponse, type GetAdminAgentsByIdSchemaVersionsResponses, type GetAdminAgentsByIdTrainingStatsData, type GetAdminAgentsByIdTrainingStatsError, type GetAdminAgentsByIdTrainingStatsErrors, type GetAdminAgentsByIdTrainingStatsResponse, type GetAdminAgentsByIdTrainingStatsResponses, type GetAdminAgentsData, type GetAdminAgentsError, type GetAdminAgentsErrors, type GetAdminAgentsResponse, type GetAdminAgentsResponses, 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 GetAdminAiGraphNodesData, type GetAdminAiGraphNodesError, type GetAdminAiGraphNodesErrors, type GetAdminAiGraphNodesResponse, type GetAdminAiGraphNodesResponses, type GetAdminAiMessagesData, type GetAdminAiMessagesError, type GetAdminAiMessagesErrors, type GetAdminAiMessagesResponse, type GetAdminAiMessagesResponses, type GetAdminApiKeysByIdData, type GetAdminApiKeysByIdError, type GetAdminApiKeysByIdErrors, type GetAdminApiKeysByIdResponse, type GetAdminApiKeysByIdResponses, type GetAdminApiKeysData, type GetAdminApiKeysError, type GetAdminApiKeysErrors, type GetAdminApiKeysResponse, type GetAdminApiKeysResponses, type GetAdminApplicationsByIdData, type GetAdminApplicationsByIdError, type GetAdminApplicationsByIdErrors, type GetAdminApplicationsByIdResponse, type GetAdminApplicationsByIdResponses, type GetAdminApplicationsBySlugBySlugData, type GetAdminApplicationsBySlugBySlugError, type GetAdminApplicationsBySlugBySlugErrors, type GetAdminApplicationsBySlugBySlugResponse, type GetAdminApplicationsBySlugBySlugResponses, type GetAdminApplicationsData, type GetAdminApplicationsError, type GetAdminApplicationsErrors, type GetAdminApplicationsResponse, type GetAdminApplicationsResponses, type GetAdminAuditLogsData, type GetAdminAuditLogsError, type GetAdminAuditLogsErrors, type GetAdminAuditLogsResponse, type GetAdminAuditLogsResponses, type GetAdminBucketsByIdData, type GetAdminBucketsByIdError, type GetAdminBucketsByIdErrors, type GetAdminBucketsByIdObjectsData, type GetAdminBucketsByIdObjectsError, type GetAdminBucketsByIdObjectsErrors, type GetAdminBucketsByIdObjectsResponse, type GetAdminBucketsByIdObjectsResponses, type GetAdminBucketsByIdResponse, type GetAdminBucketsByIdResponses, type GetAdminBucketsByIdStatsData, type GetAdminBucketsByIdStatsError, type GetAdminBucketsByIdStatsErrors, type GetAdminBucketsByIdStatsResponse, type GetAdminBucketsByIdStatsResponses, type GetAdminBucketsData, type GetAdminBucketsError, type GetAdminBucketsErrors, type GetAdminBucketsResponse, type GetAdminBucketsResponses, type GetAdminConfigsData, type GetAdminConfigsError, type GetAdminConfigsErrors, type GetAdminConfigsResponse, type GetAdminConfigsResponses, type GetAdminCreditPackagesByIdData, type GetAdminCreditPackagesByIdError, type GetAdminCreditPackagesByIdErrors, type GetAdminCreditPackagesByIdResponse, type GetAdminCreditPackagesByIdResponses, type GetAdminCreditPackagesData, type GetAdminCreditPackagesError, type GetAdminCreditPackagesErrors, type GetAdminCreditPackagesResponse, type GetAdminCreditPackagesResponses, type GetAdminCreditPackagesSlugBySlugData, type GetAdminCreditPackagesSlugBySlugError, type GetAdminCreditPackagesSlugBySlugErrors, type GetAdminCreditPackagesSlugBySlugResponse, type GetAdminCreditPackagesSlugBySlugResponses, type GetAdminCustomersByIdData, type GetAdminCustomersByIdError, type GetAdminCustomersByIdErrors, type GetAdminCustomersByIdResponse, type GetAdminCustomersByIdResponses, type GetAdminDocumentsStatsData, type GetAdminDocumentsStatsError, type GetAdminDocumentsStatsErrors, type GetAdminDocumentsStatsResponse, type GetAdminDocumentsStatsResponses, type GetAdminExtractionBatchesByIdData, type GetAdminExtractionBatchesByIdError, type GetAdminExtractionBatchesByIdErrors, type GetAdminExtractionBatchesByIdResponse, type GetAdminExtractionBatchesByIdResponses, type GetAdminExtractionBatchesByIdUploadUrlsData, type GetAdminExtractionBatchesByIdUploadUrlsError, type GetAdminExtractionBatchesByIdUploadUrlsErrors, type GetAdminExtractionBatchesByIdUploadUrlsResponse, type GetAdminExtractionBatchesByIdUploadUrlsResponses, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdData, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdError, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdErrors, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdResponse, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdResponses, type GetAdminExtractionDocumentsByIdData, type GetAdminExtractionDocumentsByIdError, type GetAdminExtractionDocumentsByIdErrors, type GetAdminExtractionDocumentsByIdResponse, type GetAdminExtractionDocumentsByIdResponses, type GetAdminExtractionDocumentsByIdStatusData, type GetAdminExtractionDocumentsByIdStatusError, type GetAdminExtractionDocumentsByIdStatusErrors, type GetAdminExtractionDocumentsByIdStatusResponse, type GetAdminExtractionDocumentsByIdStatusResponses, type GetAdminExtractionDocumentsByIdViewData, type GetAdminExtractionDocumentsByIdViewError, type GetAdminExtractionDocumentsByIdViewErrors, type GetAdminExtractionDocumentsByIdViewResponse, type GetAdminExtractionDocumentsByIdViewResponses, type GetAdminExtractionDocumentsData, type GetAdminExtractionDocumentsError, type GetAdminExtractionDocumentsErrors, type GetAdminExtractionDocumentsResponse, type GetAdminExtractionDocumentsResponses, type 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 GetAdminExtractionResultsByIdData, type GetAdminExtractionResultsByIdError, type GetAdminExtractionResultsByIdErrors, type GetAdminExtractionResultsByIdResponse, type GetAdminExtractionResultsByIdResponses, type GetAdminExtractionResultsDocumentByDocumentIdData, type GetAdminExtractionResultsDocumentByDocumentIdError, type GetAdminExtractionResultsDocumentByDocumentIdErrors, type GetAdminExtractionResultsDocumentByDocumentIdResponse, type GetAdminExtractionResultsDocumentByDocumentIdResponses, 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 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 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 GetAdminNotificationLogsByIdData, type GetAdminNotificationLogsByIdError, type GetAdminNotificationLogsByIdErrors, type GetAdminNotificationLogsByIdResponse, type GetAdminNotificationLogsByIdResponses, type GetAdminNotificationLogsData, type GetAdminNotificationLogsError, type GetAdminNotificationLogsErrors, type GetAdminNotificationLogsResponse, type GetAdminNotificationLogsResponses, 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 GetAdminPlansByIdData, type GetAdminPlansByIdError, type GetAdminPlansByIdErrors, type GetAdminPlansByIdResponse, type GetAdminPlansByIdResponses, type GetAdminPlansData, type GetAdminPlansError, type GetAdminPlansErrors, type GetAdminPlansResponse, type GetAdminPlansResponses, type GetAdminPlansSlugBySlugData, type GetAdminPlansSlugBySlugError, type GetAdminPlansSlugBySlugErrors, type GetAdminPlansSlugBySlugResponse, type GetAdminPlansSlugBySlugResponses, type GetAdminPricingRulesByIdData, type GetAdminPricingRulesByIdError, type GetAdminPricingRulesByIdErrors, type GetAdminPricingRulesByIdResponse, type GetAdminPricingRulesByIdResponses, type GetAdminPricingRulesData, type GetAdminPricingRulesError, type GetAdminPricingRulesErrors, type GetAdminPricingRulesResolveData, type GetAdminPricingRulesResolveError, type GetAdminPricingRulesResolveErrors, type GetAdminPricingRulesResolveResponse, type GetAdminPricingRulesResolveResponses, type GetAdminPricingRulesResponse, type GetAdminPricingRulesResponses, type GetAdminPricingStrategiesByIdData, type GetAdminPricingStrategiesByIdError, type GetAdminPricingStrategiesByIdErrors, type GetAdminPricingStrategiesByIdResponse, type GetAdminPricingStrategiesByIdResponses, type GetAdminPricingStrategiesData, type GetAdminPricingStrategiesError, type GetAdminPricingStrategiesErrors, type GetAdminPricingStrategiesResponse, type GetAdminPricingStrategiesResponses, type 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 GetAdminStorageStatsData, type GetAdminStorageStatsError, type GetAdminStorageStatsErrors, type GetAdminStorageStatsResponse, type GetAdminStorageStatsResponses, type GetAdminSubscriptionsByIdData, type GetAdminSubscriptionsByIdError, type GetAdminSubscriptionsByIdErrors, type GetAdminSubscriptionsByIdResponse, type GetAdminSubscriptionsByIdResponses, 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 GetAdminTenantMembershipsData, type GetAdminTenantMembershipsError, type GetAdminTenantMembershipsErrors, type GetAdminTenantMembershipsResponse, type GetAdminTenantMembershipsResponses, 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 GetAdminThreadsByIdResponse, type GetAdminThreadsByIdResponses, type GetAdminThreadsData, type GetAdminThreadsError, type GetAdminThreadsErrors, type GetAdminThreadsResponse, type GetAdminThreadsResponses, type GetAdminThreadsSearchData, type GetAdminThreadsSearchError, type GetAdminThreadsSearchErrors, type GetAdminThreadsSearchResponse, type GetAdminThreadsSearchResponses, 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 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 GetAdminUsersByIdData, type GetAdminUsersByIdError, type GetAdminUsersByIdErrors, type GetAdminUsersByIdResponse, type GetAdminUsersByIdResponses, type GetAdminUsersData, type GetAdminUsersError, type GetAdminUsersErrors, type GetAdminUsersMeData, type GetAdminUsersMeError, type GetAdminUsersMeErrors, type GetAdminUsersMeResponse, type GetAdminUsersMeResponses, type GetAdminUsersResponse, type GetAdminUsersResponses, type GetAdminWalletData, type GetAdminWalletError, type GetAdminWalletErrors, type GetAdminWalletResponse, type GetAdminWalletResponses, type GetAdminWebhookConfigsByIdData, type GetAdminWebhookConfigsByIdError, type GetAdminWebhookConfigsByIdErrors, type GetAdminWebhookConfigsByIdResponse, type GetAdminWebhookConfigsByIdResponses, type GetAdminWebhookConfigsData, type GetAdminWebhookConfigsError, type GetAdminWebhookConfigsErrors, type GetAdminWebhookConfigsResponse, type GetAdminWebhookConfigsResponses, type GetAdminWebhookDeliveriesByIdData, type GetAdminWebhookDeliveriesByIdError, type GetAdminWebhookDeliveriesByIdErrors, type GetAdminWebhookDeliveriesByIdResponse, type GetAdminWebhookDeliveriesByIdResponses, type GetAdminWebhookDeliveriesData, type GetAdminWebhookDeliveriesError, type GetAdminWebhookDeliveriesErrors, type GetAdminWebhookDeliveriesResponse, type GetAdminWebhookDeliveriesResponses, type GetAdminWorkspaceMembershipsData, type GetAdminWorkspaceMembershipsError, type GetAdminWorkspaceMembershipsErrors, type GetAdminWorkspaceMembershipsResponse, type GetAdminWorkspaceMembershipsResponses, type GetAdminWorkspacesByIdData, type GetAdminWorkspacesByIdError, type GetAdminWorkspacesByIdErrors, type GetAdminWorkspacesByIdResponse, type GetAdminWorkspacesByIdResponses, 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, GptAdmin, GptCoreError, type GraphEdge, type GraphNode, type Invitation, type IsvRevenue, type IsvSettlement, type Ledger, type Link, type Links, type LlmAnalytics, type Message, NetworkError, NotFoundError, type NotificationLog, type NotificationMethod, type NotificationPreference, type OperationSuccess, type PatchAdminAccountsByIdCreditData, type PatchAdminAccountsByIdCreditError, type PatchAdminAccountsByIdCreditErrors, type PatchAdminAccountsByIdCreditResponse, type PatchAdminAccountsByIdCreditResponses, type PatchAdminAccountsByIdDebitData, type PatchAdminAccountsByIdDebitError, type PatchAdminAccountsByIdDebitErrors, type PatchAdminAccountsByIdDebitResponse, type PatchAdminAccountsByIdDebitResponses, type PatchAdminApiKeysByIdAllocateData, type PatchAdminApiKeysByIdAllocateError, type PatchAdminApiKeysByIdAllocateErrors, type PatchAdminApiKeysByIdAllocateResponse, type PatchAdminApiKeysByIdAllocateResponses, type PatchAdminApiKeysByIdData, type PatchAdminApiKeysByIdError, type PatchAdminApiKeysByIdErrors, 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 PatchAdminApplicationsByIdData, type PatchAdminApplicationsByIdError, type PatchAdminApplicationsByIdErrors, type PatchAdminApplicationsByIdGrantCreditsData, type PatchAdminApplicationsByIdGrantCreditsError, type PatchAdminApplicationsByIdGrantCreditsErrors, type PatchAdminApplicationsByIdGrantCreditsResponse, type PatchAdminApplicationsByIdGrantCreditsResponses, type PatchAdminApplicationsByIdResponse, type PatchAdminApplicationsByIdResponses, type PatchAdminBucketsByIdData, type PatchAdminBucketsByIdError, type PatchAdminBucketsByIdErrors, type PatchAdminBucketsByIdResponse, type PatchAdminBucketsByIdResponses, type PatchAdminConfigsByKeyData, type PatchAdminConfigsByKeyError, type PatchAdminConfigsByKeyErrors, type PatchAdminConfigsByKeyResponse, type PatchAdminConfigsByKeyResponses, type PatchAdminCreditPackagesByIdData, type PatchAdminCreditPackagesByIdError, type PatchAdminCreditPackagesByIdErrors, type PatchAdminCreditPackagesByIdResponse, type PatchAdminCreditPackagesByIdResponses, type PatchAdminCustomersByIdData, type PatchAdminCustomersByIdError, type PatchAdminCustomersByIdErrors, type PatchAdminCustomersByIdResponse, type PatchAdminCustomersByIdResponses, type PatchAdminExtractionDocumentsByIdCancelData, type PatchAdminExtractionDocumentsByIdCancelError, type PatchAdminExtractionDocumentsByIdCancelErrors, type PatchAdminExtractionDocumentsByIdCancelResponse, type PatchAdminExtractionDocumentsByIdCancelResponses, type PatchAdminExtractionDocumentsByIdDismissData, type PatchAdminExtractionDocumentsByIdDismissError, type PatchAdminExtractionDocumentsByIdDismissErrors, type PatchAdminExtractionDocumentsByIdDismissResponse, type PatchAdminExtractionDocumentsByIdDismissResponses, type PatchAdminExtractionDocumentsByIdDismissTrainingData, type PatchAdminExtractionDocumentsByIdDismissTrainingError, type PatchAdminExtractionDocumentsByIdDismissTrainingErrors, type PatchAdminExtractionDocumentsByIdDismissTrainingResponse, type PatchAdminExtractionDocumentsByIdDismissTrainingResponses, type PatchAdminExtractionDocumentsByIdExcludeData, type PatchAdminExtractionDocumentsByIdExcludeError, type PatchAdminExtractionDocumentsByIdExcludeErrors, type PatchAdminExtractionDocumentsByIdExcludeResponse, type PatchAdminExtractionDocumentsByIdExcludeResponses, type PatchAdminExtractionDocumentsByIdFinishUploadData, type PatchAdminExtractionDocumentsByIdFinishUploadError, type PatchAdminExtractionDocumentsByIdFinishUploadErrors, type PatchAdminExtractionDocumentsByIdFinishUploadResponse, type PatchAdminExtractionDocumentsByIdFinishUploadResponses, type PatchAdminExtractionDocumentsByIdIncludeData, type PatchAdminExtractionDocumentsByIdIncludeError, type PatchAdminExtractionDocumentsByIdIncludeErrors, type PatchAdminExtractionDocumentsByIdIncludeResponse, type PatchAdminExtractionDocumentsByIdIncludeResponses, type PatchAdminExtractionDocumentsByIdMarkTrainedData, type PatchAdminExtractionDocumentsByIdMarkTrainedError, type PatchAdminExtractionDocumentsByIdMarkTrainedErrors, type PatchAdminExtractionDocumentsByIdMarkTrainedResponse, type PatchAdminExtractionDocumentsByIdMarkTrainedResponses, type PatchAdminExtractionDocumentsByIdRestoreData, type PatchAdminExtractionDocumentsByIdRestoreError, type PatchAdminExtractionDocumentsByIdRestoreErrors, type PatchAdminExtractionDocumentsByIdRestoreResponse, type PatchAdminExtractionDocumentsByIdRestoreResponses, type PatchAdminExtractionDocumentsByIdStatusData, type PatchAdminExtractionDocumentsByIdStatusError, type PatchAdminExtractionDocumentsByIdStatusErrors, type PatchAdminExtractionDocumentsByIdStatusResponse, type PatchAdminExtractionDocumentsByIdStatusResponses, type PatchAdminExtractionResultsByIdCorrectionsData, type PatchAdminExtractionResultsByIdCorrectionsError, type PatchAdminExtractionResultsByIdCorrectionsErrors, type PatchAdminExtractionResultsByIdCorrectionsResponse, type PatchAdminExtractionResultsByIdCorrectionsResponses, type PatchAdminExtractionResultsByIdRegenerateData, type PatchAdminExtractionResultsByIdRegenerateError, type PatchAdminExtractionResultsByIdRegenerateErrors, type PatchAdminExtractionResultsByIdRegenerateResponse, type PatchAdminExtractionResultsByIdRegenerateResponses, type PatchAdminInvitationsByIdAcceptData, type PatchAdminInvitationsByIdAcceptError, type PatchAdminInvitationsByIdAcceptErrors, type PatchAdminInvitationsByIdAcceptResponse, type PatchAdminInvitationsByIdAcceptResponses, 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 PatchAdminNotificationMethodsByIdSetPrimaryData, type PatchAdminNotificationMethodsByIdSetPrimaryError, type PatchAdminNotificationMethodsByIdSetPrimaryErrors, type PatchAdminNotificationMethodsByIdSetPrimaryResponse, type PatchAdminNotificationMethodsByIdSetPrimaryResponses, type PatchAdminNotificationPreferencesByIdData, type PatchAdminNotificationPreferencesByIdError, type PatchAdminNotificationPreferencesByIdErrors, type PatchAdminNotificationPreferencesByIdResponse, type PatchAdminNotificationPreferencesByIdResponses, type PatchAdminPlansByIdData, type PatchAdminPlansByIdError, type PatchAdminPlansByIdErrors, type PatchAdminPlansByIdResponse, type PatchAdminPlansByIdResponses, type PatchAdminPricingRulesByIdData, type PatchAdminPricingRulesByIdError, type PatchAdminPricingRulesByIdErrors, type PatchAdminPricingRulesByIdResponse, type PatchAdminPricingRulesByIdResponses, type PatchAdminPricingStrategiesByIdData, type PatchAdminPricingStrategiesByIdError, type PatchAdminPricingStrategiesByIdErrors, type PatchAdminPricingStrategiesByIdResponse, type PatchAdminPricingStrategiesByIdResponses, type PatchAdminSubscriptionsByIdData, type PatchAdminSubscriptionsByIdError, type PatchAdminSubscriptionsByIdErrors, type PatchAdminSubscriptionsByIdResponse, type PatchAdminSubscriptionsByIdResponses, type PatchAdminSysAiConfigByIdData, type PatchAdminSysAiConfigByIdError, type PatchAdminSysAiConfigByIdErrors, type PatchAdminSysAiConfigByIdResponse, type PatchAdminSysAiConfigByIdResponses, type PatchAdminTenantMembershipsByTenantIdByUserIdData, type PatchAdminTenantMembershipsByTenantIdByUserIdError, type PatchAdminTenantMembershipsByTenantIdByUserIdErrors, type PatchAdminTenantMembershipsByTenantIdByUserIdResponse, type PatchAdminTenantMembershipsByTenantIdByUserIdResponses, type PatchAdminTenantsByIdData, type PatchAdminTenantsByIdError, type PatchAdminTenantsByIdErrors, type PatchAdminTenantsByIdResponse, type PatchAdminTenantsByIdResponses, type PatchAdminThreadsByIdData, type PatchAdminThreadsByIdError, type PatchAdminThreadsByIdErrors, type PatchAdminThreadsByIdResponse, type PatchAdminThreadsByIdResponses, type PatchAdminTrainingExamplesByIdData, type PatchAdminTrainingExamplesByIdError, type PatchAdminTrainingExamplesByIdErrors, type PatchAdminTrainingExamplesByIdResponse, type PatchAdminTrainingExamplesByIdResponses, type PatchAdminUserProfilesByIdData, type PatchAdminUserProfilesByIdError, type PatchAdminUserProfilesByIdErrors, type PatchAdminUserProfilesByIdResponse, type PatchAdminUserProfilesByIdResponses, type PatchAdminUsersAuthResetPasswordData, type PatchAdminUsersAuthResetPasswordError, type PatchAdminUsersAuthResetPasswordErrors, type PatchAdminUsersAuthResetPasswordResponse, type PatchAdminUsersAuthResetPasswordResponses, type PatchAdminUsersByIdAdminData, type PatchAdminUsersByIdAdminEmailData, type PatchAdminUsersByIdAdminEmailError, type PatchAdminUsersByIdAdminEmailErrors, type PatchAdminUsersByIdAdminEmailResponse, type PatchAdminUsersByIdAdminEmailResponses, type PatchAdminUsersByIdAdminError, type PatchAdminUsersByIdAdminErrors, type PatchAdminUsersByIdAdminResponse, type PatchAdminUsersByIdAdminResponses, type PatchAdminUsersByIdConfirmEmailData, type PatchAdminUsersByIdConfirmEmailError, type PatchAdminUsersByIdConfirmEmailErrors, type PatchAdminUsersByIdConfirmEmailResponse, type PatchAdminUsersByIdConfirmEmailResponses, type PatchAdminUsersByIdResetPasswordData, type PatchAdminUsersByIdResetPasswordError, type PatchAdminUsersByIdResetPasswordErrors, type PatchAdminUsersByIdResetPasswordResponse, type PatchAdminUsersByIdResetPasswordResponses, type PatchAdminWalletAddonsByAddonSlugCancelData, type PatchAdminWalletAddonsByAddonSlugCancelError, type PatchAdminWalletAddonsByAddonSlugCancelErrors, type PatchAdminWalletAddonsByAddonSlugCancelResponse, type PatchAdminWalletAddonsByAddonSlugCancelResponses, type PatchAdminWalletAddonsData, type PatchAdminWalletAddonsError, type PatchAdminWalletAddonsErrors, type PatchAdminWalletAddonsResponse, type PatchAdminWalletAddonsResponses, type PatchAdminWalletCreditsData, type PatchAdminWalletCreditsError, type PatchAdminWalletCreditsErrors, type PatchAdminWalletCreditsResponse, type PatchAdminWalletCreditsResponses, type PatchAdminWalletPlanData, type PatchAdminWalletPlanError, type PatchAdminWalletPlanErrors, type PatchAdminWalletPlanResponse, type PatchAdminWalletPlanResponses, type PatchAdminWalletStorageData, type PatchAdminWalletStorageError, type PatchAdminWalletStorageErrors, type PatchAdminWalletStorageResponse, type PatchAdminWalletStorageResponses, type PatchAdminWebhookConfigsByIdData, type PatchAdminWebhookConfigsByIdError, type PatchAdminWebhookConfigsByIdErrors, type PatchAdminWebhookConfigsByIdResponse, type PatchAdminWebhookConfigsByIdResponses, type PatchAdminWebhookConfigsByIdRotateSecretData, type PatchAdminWebhookConfigsByIdRotateSecretError, type PatchAdminWebhookConfigsByIdRotateSecretErrors, type PatchAdminWebhookConfigsByIdRotateSecretResponse, type PatchAdminWebhookConfigsByIdRotateSecretResponses, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdData, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdError, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponse, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type PatchAdminWorkspacesByIdAllocateData, type PatchAdminWorkspacesByIdAllocateError, type PatchAdminWorkspacesByIdAllocateErrors, type PatchAdminWorkspacesByIdAllocateResponse, type PatchAdminWorkspacesByIdAllocateResponses, type PatchAdminWorkspacesByIdData, type PatchAdminWorkspacesByIdError, type PatchAdminWorkspacesByIdErrors, type PatchAdminWorkspacesByIdResponse, type PatchAdminWorkspacesByIdResponses, type Payment, type PaymentMethod, type Plan, type PostAdminAgentVersionsData, type PostAdminAgentVersionsError, type PostAdminAgentVersionsErrors, type PostAdminAgentVersionsResponse, type PostAdminAgentVersionsResponses, type PostAdminAgentsByIdCloneData, type PostAdminAgentsByIdCloneError, type PostAdminAgentsByIdCloneErrors, type PostAdminAgentsByIdCloneResponse, type PostAdminAgentsByIdCloneResponses, type PostAdminAgentsByIdDiscoverSchemaData, type PostAdminAgentsByIdDiscoverSchemaError, type PostAdminAgentsByIdDiscoverSchemaErrors, type PostAdminAgentsByIdDiscoverSchemaResponse, type PostAdminAgentsByIdDiscoverSchemaResponses, type PostAdminAgentsByIdPublishVersionData, type PostAdminAgentsByIdPublishVersionError, type PostAdminAgentsByIdPublishVersionErrors, type PostAdminAgentsByIdPublishVersionResponse, type PostAdminAgentsByIdPublishVersionResponses, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateData, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateError, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateErrors, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponse, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponses, type PostAdminAgentsByIdSchemaVersionsData, type PostAdminAgentsByIdSchemaVersionsError, type PostAdminAgentsByIdSchemaVersionsErrors, type PostAdminAgentsByIdSchemaVersionsResponse, type PostAdminAgentsByIdSchemaVersionsResponses, type PostAdminAgentsByIdTeachData, type PostAdminAgentsByIdTeachError, type PostAdminAgentsByIdTeachErrors, type PostAdminAgentsByIdTeachResponse, type PostAdminAgentsByIdTeachResponses, type PostAdminAgentsByIdTestData, type PostAdminAgentsByIdTestError, type PostAdminAgentsByIdTestErrors, type PostAdminAgentsByIdTestResponse, type PostAdminAgentsByIdTestResponses, type PostAdminAgentsByIdValidateData, type PostAdminAgentsByIdValidateError, type PostAdminAgentsByIdValidateErrors, type PostAdminAgentsByIdValidateResponse, type PostAdminAgentsByIdValidateResponses, type PostAdminAgentsCloneForWorkspaceData, type PostAdminAgentsCloneForWorkspaceError, type PostAdminAgentsCloneForWorkspaceErrors, type PostAdminAgentsCloneForWorkspaceResponse, type PostAdminAgentsCloneForWorkspaceResponses, type 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 PostAdminApplicationsData, type PostAdminApplicationsError, type PostAdminApplicationsErrors, type PostAdminApplicationsResponse, type PostAdminApplicationsResponses, type PostAdminBucketsData, type PostAdminBucketsError, type PostAdminBucketsErrors, type PostAdminBucketsResponse, type PostAdminBucketsResponses, type PostAdminConfigsData, type PostAdminConfigsError, type PostAdminConfigsErrors, type PostAdminConfigsResponse, type PostAdminConfigsResponses, type PostAdminCreditPackagesData, type PostAdminCreditPackagesError, type PostAdminCreditPackagesErrors, type PostAdminCreditPackagesResponse, type PostAdminCreditPackagesResponses, type PostAdminCustomersData, type PostAdminCustomersError, type PostAdminCustomersErrors, type PostAdminCustomersResponse, type PostAdminCustomersResponses, type PostAdminDocumentsBulkDeleteData, type PostAdminDocumentsBulkDeleteError, type PostAdminDocumentsBulkDeleteErrors, type PostAdminDocumentsBulkDeleteResponse, type PostAdminDocumentsBulkDeleteResponses, type PostAdminDocumentsPresignedUploadData, type PostAdminDocumentsPresignedUploadError, type PostAdminDocumentsPresignedUploadErrors, type PostAdminDocumentsPresignedUploadResponse, type PostAdminDocumentsPresignedUploadResponses, type PostAdminExtractionBatchesData, type PostAdminExtractionBatchesError, type PostAdminExtractionBatchesErrors, type PostAdminExtractionBatchesResponse, type PostAdminExtractionBatchesResponses, type PostAdminExtractionDocumentsBeginUploadData, type PostAdminExtractionDocumentsBeginUploadError, type PostAdminExtractionDocumentsBeginUploadErrors, type PostAdminExtractionDocumentsBeginUploadResponse, type PostAdminExtractionDocumentsBeginUploadResponses, type PostAdminExtractionDocumentsByIdReprocessData, type PostAdminExtractionDocumentsByIdReprocessError, type PostAdminExtractionDocumentsByIdReprocessErrors, type PostAdminExtractionDocumentsByIdReprocessResponse, type PostAdminExtractionDocumentsByIdReprocessResponses, type PostAdminExtractionDocumentsUploadData, type PostAdminExtractionDocumentsUploadError, type PostAdminExtractionDocumentsUploadErrors, type PostAdminExtractionDocumentsUploadResponse, type PostAdminExtractionDocumentsUploadResponses, type PostAdminExtractionResultsData, type PostAdminExtractionResultsError, type PostAdminExtractionResultsErrors, type PostAdminExtractionResultsResponse, type PostAdminExtractionResultsResponses, type PostAdminFieldTemplatesData, type PostAdminFieldTemplatesError, type PostAdminFieldTemplatesErrors, type PostAdminFieldTemplatesResponse, type PostAdminFieldTemplatesResponses, type PostAdminInvitationsAcceptByTokenData, type PostAdminInvitationsAcceptByTokenError, type PostAdminInvitationsAcceptByTokenErrors, type PostAdminInvitationsAcceptByTokenResponse, type PostAdminInvitationsAcceptByTokenResponses, type PostAdminInvitationsInviteData, type PostAdminInvitationsInviteError, type PostAdminInvitationsInviteErrors, type PostAdminInvitationsInviteResponse, type PostAdminInvitationsInviteResponses, 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 PostAdminObjectsRegisterData, type PostAdminObjectsRegisterError, type PostAdminObjectsRegisterErrors, type PostAdminObjectsRegisterResponse, type PostAdminObjectsRegisterResponses, type PostAdminPaymentMethodsData, type PostAdminPaymentMethodsError, type PostAdminPaymentMethodsErrors, type PostAdminPaymentMethodsResponse, type PostAdminPaymentMethodsResponses, type PostAdminPaymentsData, type PostAdminPaymentsError, type PostAdminPaymentsErrors, type PostAdminPaymentsResponse, type PostAdminPaymentsResponses, type PostAdminPlansData, type PostAdminPlansError, type PostAdminPlansErrors, type PostAdminPlansResponse, type PostAdminPlansResponses, type PostAdminPricingRulesData, type PostAdminPricingRulesError, type PostAdminPricingRulesErrors, type PostAdminPricingRulesResponse, type PostAdminPricingRulesResponses, type PostAdminPricingStrategiesData, type PostAdminPricingStrategiesError, type PostAdminPricingStrategiesErrors, type PostAdminPricingStrategiesResponse, type PostAdminPricingStrategiesResponses, type PostAdminSearchReindexData, type PostAdminSearchReindexError, type PostAdminSearchReindexErrors, type PostAdminSearchReindexResponse, type PostAdminSearchReindexResponses, type PostAdminSearchSavedData, type PostAdminSearchSavedError, type PostAdminSearchSavedErrors, type PostAdminSearchSavedResponse, type PostAdminSearchSavedResponses, type PostAdminStorageSignDownloadData, type PostAdminStorageSignDownloadError, type PostAdminStorageSignDownloadErrors, type PostAdminStorageSignDownloadResponse, type PostAdminStorageSignDownloadResponses, type PostAdminStorageSignUploadData, type PostAdminStorageSignUploadError, type PostAdminStorageSignUploadErrors, type PostAdminStorageSignUploadResponse, type PostAdminStorageSignUploadResponses, type PostAdminSubscriptionsData, type PostAdminSubscriptionsError, type PostAdminSubscriptionsErrors, type PostAdminSubscriptionsResponse, type PostAdminSubscriptionsResponses, type PostAdminSysAiConfigData, type PostAdminSysAiConfigError, type PostAdminSysAiConfigErrors, type PostAdminSysAiConfigResponse, type PostAdminSysAiConfigResponses, type PostAdminSysSemanticCacheClearData, type PostAdminSysSemanticCacheClearError, type PostAdminSysSemanticCacheClearErrors, type PostAdminSysSemanticCacheClearResponse, type PostAdminSysSemanticCacheClearResponses, type PostAdminTenantMembershipsData, type PostAdminTenantMembershipsError, type PostAdminTenantMembershipsErrors, type PostAdminTenantMembershipsResponse, type PostAdminTenantMembershipsResponses, 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 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 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 PostAdminUsersRegisterIsvData, type PostAdminUsersRegisterIsvError, type PostAdminUsersRegisterIsvErrors, type PostAdminUsersRegisterIsvResponse, type PostAdminUsersRegisterIsvResponses, type PostAdminWebhookConfigsByIdTestData, type PostAdminWebhookConfigsByIdTestError, type PostAdminWebhookConfigsByIdTestErrors, type PostAdminWebhookConfigsByIdTestResponse, type PostAdminWebhookConfigsByIdTestResponses, type PostAdminWebhookConfigsData, type PostAdminWebhookConfigsError, type PostAdminWebhookConfigsErrors, type PostAdminWebhookConfigsResponse, type PostAdminWebhookConfigsResponses, type PostAdminWebhookDeliveriesByIdRetryData, type PostAdminWebhookDeliveriesByIdRetryError, type PostAdminWebhookDeliveriesByIdRetryErrors, type PostAdminWebhookDeliveriesByIdRetryResponse, type PostAdminWebhookDeliveriesByIdRetryResponses, type PostAdminWorkspaceMembershipsData, type PostAdminWorkspaceMembershipsError, type PostAdminWorkspaceMembershipsErrors, type PostAdminWorkspaceMembershipsResponse, type PostAdminWorkspaceMembershipsResponses, 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 Search, type SemanticCacheEntry, ServerError, type StorageStats, type StorageStatsRequest, StorageStatsRequestSchema, type Subscription, type Tenant, type TenantDocumentStats, type TenantMembership, type TenantStats, type Thread, TimeoutError, type Token, type TrainingAnalytics, type TrainingExample, type TrainingSession, type Transaction, type User, type UserProfile, ValidationError, type Wallet, type WebhookBulkDisableRequest, WebhookBulkDisableSchema, type WebhookBulkEnableRequest, WebhookBulkEnableSchema, type WebhookConfig, type WebhookConfigCreateRequest, WebhookConfigCreateSchema, type WebhookDelivery, type WebhookDeliveryBulkRetryRequest, WebhookDeliveryBulkRetrySchema, type Workspace, type WorkspaceDocumentStats, type WorkspaceMembership, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, GptAdmin as default, handleApiError };