@gpt-core/admin 0.9.19 → 0.9.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +1692 -665
- package/dist/index.d.ts +1692 -665
- package/llms.txt +8 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -703,6 +703,10 @@ type Thread = {
|
|
|
703
703
|
* Field included by default.
|
|
704
704
|
*/
|
|
705
705
|
context_summary?: string | null | unknown;
|
|
706
|
+
/**
|
|
707
|
+
* Field included by default.
|
|
708
|
+
*/
|
|
709
|
+
scope?: "workspace" | "dashboard" | unknown;
|
|
706
710
|
/**
|
|
707
711
|
* Field included by default.
|
|
708
712
|
*/
|
|
@@ -1367,6 +1371,108 @@ type Application = {
|
|
|
1367
1371
|
* An attributes object for a application
|
|
1368
1372
|
*/
|
|
1369
1373
|
attributes?: {
|
|
1374
|
+
/**
|
|
1375
|
+
* AI capability configuration for this application. Field included by default.
|
|
1376
|
+
*/
|
|
1377
|
+
ai_config?: {
|
|
1378
|
+
/**
|
|
1379
|
+
* Allow AI operations at dashboard scope. Field included by default.
|
|
1380
|
+
*/
|
|
1381
|
+
allow_dashboard_scope: boolean;
|
|
1382
|
+
/**
|
|
1383
|
+
* Allow AI operations at workspace scope. Field included by default.
|
|
1384
|
+
*/
|
|
1385
|
+
allow_workspace_scope: boolean;
|
|
1386
|
+
/**
|
|
1387
|
+
* Optional whitelist of allowed tool names (nil = all allowed). Field included by default.
|
|
1388
|
+
*/
|
|
1389
|
+
allowed_tools?: Array<string> | null | unknown;
|
|
1390
|
+
/**
|
|
1391
|
+
* AI feature flags. Field included by default.
|
|
1392
|
+
*/
|
|
1393
|
+
features?: {
|
|
1394
|
+
/**
|
|
1395
|
+
* Enable querying external data sources. Field included by default.
|
|
1396
|
+
*/
|
|
1397
|
+
external_sources: boolean;
|
|
1398
|
+
/**
|
|
1399
|
+
* Enable AI intent parsing for user queries. Field included by default.
|
|
1400
|
+
*/
|
|
1401
|
+
intent_parsing: boolean;
|
|
1402
|
+
/**
|
|
1403
|
+
* Enable keyword-based search. Field included by default.
|
|
1404
|
+
*/
|
|
1405
|
+
keyword_search: boolean;
|
|
1406
|
+
/**
|
|
1407
|
+
* Enable RAG-based question answering (requires semantic_search). Field included by default.
|
|
1408
|
+
*/
|
|
1409
|
+
rag_qa: boolean;
|
|
1410
|
+
/**
|
|
1411
|
+
* Enable semantic/vector search. Field included by default.
|
|
1412
|
+
*/
|
|
1413
|
+
semantic_search: boolean;
|
|
1414
|
+
/**
|
|
1415
|
+
* Enable AI tool execution (requires intent_parsing). Field included by default.
|
|
1416
|
+
*/
|
|
1417
|
+
tool_execution: boolean;
|
|
1418
|
+
} | null | unknown;
|
|
1419
|
+
/**
|
|
1420
|
+
* Per-feature rate limits. Field included by default.
|
|
1421
|
+
*/
|
|
1422
|
+
rate_limits?: {
|
|
1423
|
+
/**
|
|
1424
|
+
* Rate limit for intent parsing (per minute). Field included by default.
|
|
1425
|
+
*/
|
|
1426
|
+
intent_parsing: number;
|
|
1427
|
+
/**
|
|
1428
|
+
* Rate limit for RAG Q&A (per minute). Field included by default.
|
|
1429
|
+
*/
|
|
1430
|
+
rag_qa: number;
|
|
1431
|
+
/**
|
|
1432
|
+
* Rate limit for semantic search (per minute). Field included by default.
|
|
1433
|
+
*/
|
|
1434
|
+
semantic_search: number;
|
|
1435
|
+
/**
|
|
1436
|
+
* Rate limit for tool execution (per minute). Field included by default.
|
|
1437
|
+
*/
|
|
1438
|
+
tool_execution: number;
|
|
1439
|
+
} | null | unknown;
|
|
1440
|
+
/**
|
|
1441
|
+
* Risk levels for different action types. Field included by default.
|
|
1442
|
+
*/
|
|
1443
|
+
risk_levels?: {
|
|
1444
|
+
/**
|
|
1445
|
+
* Risk level for create operations. Field included by default.
|
|
1446
|
+
*/
|
|
1447
|
+
create_record: "auto_execute" | "confirm_once" | "always_confirm";
|
|
1448
|
+
/**
|
|
1449
|
+
* Risk level for delete operations. Field included by default.
|
|
1450
|
+
*/
|
|
1451
|
+
delete_record: "auto_execute" | "confirm_once" | "always_confirm";
|
|
1452
|
+
/**
|
|
1453
|
+
* Risk level for financial operations. Field included by default.
|
|
1454
|
+
*/
|
|
1455
|
+
financial_transaction: "auto_execute" | "confirm_once" | "always_confirm";
|
|
1456
|
+
/**
|
|
1457
|
+
* Tool-specific risk level overrides. Field included by default.
|
|
1458
|
+
*/
|
|
1459
|
+
overrides: {
|
|
1460
|
+
[key: string]: unknown;
|
|
1461
|
+
};
|
|
1462
|
+
/**
|
|
1463
|
+
* Risk level for read operations. Field included by default.
|
|
1464
|
+
*/
|
|
1465
|
+
read_data: "auto_execute" | "confirm_once" | "always_confirm";
|
|
1466
|
+
/**
|
|
1467
|
+
* Risk level for sending emails/notifications. Field included by default.
|
|
1468
|
+
*/
|
|
1469
|
+
send_communication: "auto_execute" | "confirm_once" | "always_confirm";
|
|
1470
|
+
/**
|
|
1471
|
+
* Risk level for update operations. Field included by default.
|
|
1472
|
+
*/
|
|
1473
|
+
update_record: "auto_execute" | "confirm_once" | "always_confirm";
|
|
1474
|
+
} | null | unknown;
|
|
1475
|
+
} | null | unknown;
|
|
1370
1476
|
/**
|
|
1371
1477
|
* Field included by default.
|
|
1372
1478
|
*/
|
|
@@ -2754,6 +2860,108 @@ type AgentVersion = {
|
|
|
2754
2860
|
type: string;
|
|
2755
2861
|
};
|
|
2756
2862
|
type ApplicationType = {
|
|
2863
|
+
/**
|
|
2864
|
+
* AI capability configuration for this application. Field included by default.
|
|
2865
|
+
*/
|
|
2866
|
+
ai_config?: {
|
|
2867
|
+
/**
|
|
2868
|
+
* Allow AI operations at dashboard scope. Field included by default.
|
|
2869
|
+
*/
|
|
2870
|
+
allow_dashboard_scope: boolean;
|
|
2871
|
+
/**
|
|
2872
|
+
* Allow AI operations at workspace scope. Field included by default.
|
|
2873
|
+
*/
|
|
2874
|
+
allow_workspace_scope: boolean;
|
|
2875
|
+
/**
|
|
2876
|
+
* Optional whitelist of allowed tool names (nil = all allowed). Field included by default.
|
|
2877
|
+
*/
|
|
2878
|
+
allowed_tools?: Array<string> | null | unknown;
|
|
2879
|
+
/**
|
|
2880
|
+
* AI feature flags. Field included by default.
|
|
2881
|
+
*/
|
|
2882
|
+
features?: {
|
|
2883
|
+
/**
|
|
2884
|
+
* Enable querying external data sources. Field included by default.
|
|
2885
|
+
*/
|
|
2886
|
+
external_sources: boolean;
|
|
2887
|
+
/**
|
|
2888
|
+
* Enable AI intent parsing for user queries. Field included by default.
|
|
2889
|
+
*/
|
|
2890
|
+
intent_parsing: boolean;
|
|
2891
|
+
/**
|
|
2892
|
+
* Enable keyword-based search. Field included by default.
|
|
2893
|
+
*/
|
|
2894
|
+
keyword_search: boolean;
|
|
2895
|
+
/**
|
|
2896
|
+
* Enable RAG-based question answering (requires semantic_search). Field included by default.
|
|
2897
|
+
*/
|
|
2898
|
+
rag_qa: boolean;
|
|
2899
|
+
/**
|
|
2900
|
+
* Enable semantic/vector search. Field included by default.
|
|
2901
|
+
*/
|
|
2902
|
+
semantic_search: boolean;
|
|
2903
|
+
/**
|
|
2904
|
+
* Enable AI tool execution (requires intent_parsing). Field included by default.
|
|
2905
|
+
*/
|
|
2906
|
+
tool_execution: boolean;
|
|
2907
|
+
} | null | unknown;
|
|
2908
|
+
/**
|
|
2909
|
+
* Per-feature rate limits. Field included by default.
|
|
2910
|
+
*/
|
|
2911
|
+
rate_limits?: {
|
|
2912
|
+
/**
|
|
2913
|
+
* Rate limit for intent parsing (per minute). Field included by default.
|
|
2914
|
+
*/
|
|
2915
|
+
intent_parsing: number;
|
|
2916
|
+
/**
|
|
2917
|
+
* Rate limit for RAG Q&A (per minute). Field included by default.
|
|
2918
|
+
*/
|
|
2919
|
+
rag_qa: number;
|
|
2920
|
+
/**
|
|
2921
|
+
* Rate limit for semantic search (per minute). Field included by default.
|
|
2922
|
+
*/
|
|
2923
|
+
semantic_search: number;
|
|
2924
|
+
/**
|
|
2925
|
+
* Rate limit for tool execution (per minute). Field included by default.
|
|
2926
|
+
*/
|
|
2927
|
+
tool_execution: number;
|
|
2928
|
+
} | null | unknown;
|
|
2929
|
+
/**
|
|
2930
|
+
* Risk levels for different action types. Field included by default.
|
|
2931
|
+
*/
|
|
2932
|
+
risk_levels?: {
|
|
2933
|
+
/**
|
|
2934
|
+
* Risk level for create operations. Field included by default.
|
|
2935
|
+
*/
|
|
2936
|
+
create_record: "auto_execute" | "confirm_once" | "always_confirm";
|
|
2937
|
+
/**
|
|
2938
|
+
* Risk level for delete operations. Field included by default.
|
|
2939
|
+
*/
|
|
2940
|
+
delete_record: "auto_execute" | "confirm_once" | "always_confirm";
|
|
2941
|
+
/**
|
|
2942
|
+
* Risk level for financial operations. Field included by default.
|
|
2943
|
+
*/
|
|
2944
|
+
financial_transaction: "auto_execute" | "confirm_once" | "always_confirm";
|
|
2945
|
+
/**
|
|
2946
|
+
* Tool-specific risk level overrides. Field included by default.
|
|
2947
|
+
*/
|
|
2948
|
+
overrides: {
|
|
2949
|
+
[key: string]: unknown;
|
|
2950
|
+
};
|
|
2951
|
+
/**
|
|
2952
|
+
* Risk level for read operations. Field included by default.
|
|
2953
|
+
*/
|
|
2954
|
+
read_data: "auto_execute" | "confirm_once" | "always_confirm";
|
|
2955
|
+
/**
|
|
2956
|
+
* Risk level for sending emails/notifications. Field included by default.
|
|
2957
|
+
*/
|
|
2958
|
+
send_communication: "auto_execute" | "confirm_once" | "always_confirm";
|
|
2959
|
+
/**
|
|
2960
|
+
* Risk level for update operations. Field included by default.
|
|
2961
|
+
*/
|
|
2962
|
+
update_record: "auto_execute" | "confirm_once" | "always_confirm";
|
|
2963
|
+
} | null | unknown;
|
|
2964
|
+
} | null | unknown;
|
|
2757
2965
|
/**
|
|
2758
2966
|
* Field included by default.
|
|
2759
2967
|
*/
|
|
@@ -3449,6 +3657,56 @@ type LlmAnalytics = {
|
|
|
3449
3657
|
};
|
|
3450
3658
|
type: string;
|
|
3451
3659
|
};
|
|
3660
|
+
/**
|
|
3661
|
+
* A "Resource object" representing a platform-pricing-config
|
|
3662
|
+
*/
|
|
3663
|
+
type PlatformPricingConfig = {
|
|
3664
|
+
/**
|
|
3665
|
+
* An attributes object for a platform-pricing-config
|
|
3666
|
+
*/
|
|
3667
|
+
attributes?: {
|
|
3668
|
+
/**
|
|
3669
|
+
* Human-readable description of this service. Field included by default.
|
|
3670
|
+
*/
|
|
3671
|
+
description?: string | null | unknown;
|
|
3672
|
+
/**
|
|
3673
|
+
* Minimum price ISVs can charge. NULL means use hardcoded default. Field included by default.
|
|
3674
|
+
*/
|
|
3675
|
+
floor_price?: {
|
|
3676
|
+
amount: string;
|
|
3677
|
+
currency: string;
|
|
3678
|
+
} | null | unknown;
|
|
3679
|
+
/**
|
|
3680
|
+
* Platform COGS for this service (e.g., $0.002 per page for OCR). Field included by default.
|
|
3681
|
+
*/
|
|
3682
|
+
hard_cost?: {
|
|
3683
|
+
amount: string;
|
|
3684
|
+
currency: string;
|
|
3685
|
+
} | null | unknown;
|
|
3686
|
+
/**
|
|
3687
|
+
* Minimum margin percentage. NULL means use hardcoded default (30%). Field included by default.
|
|
3688
|
+
*/
|
|
3689
|
+
margin_percent?: number | null | unknown;
|
|
3690
|
+
/**
|
|
3691
|
+
* Additional configuration metadata (e.g., metric unit, operation type). Field included by default.
|
|
3692
|
+
*/
|
|
3693
|
+
metadata?: {
|
|
3694
|
+
[key: string]: unknown;
|
|
3695
|
+
} | null | unknown;
|
|
3696
|
+
/**
|
|
3697
|
+
* Service identifier (e.g., 'doc_extraction_base', 'llm_usage'). Field included by default.
|
|
3698
|
+
*/
|
|
3699
|
+
service_id: string;
|
|
3700
|
+
};
|
|
3701
|
+
id: string;
|
|
3702
|
+
/**
|
|
3703
|
+
* A relationships object for a platform-pricing-config
|
|
3704
|
+
*/
|
|
3705
|
+
relationships?: {
|
|
3706
|
+
[key: string]: never;
|
|
3707
|
+
};
|
|
3708
|
+
type: string;
|
|
3709
|
+
};
|
|
3452
3710
|
type _Error = {
|
|
3453
3711
|
/**
|
|
3454
3712
|
* An application-specific error code, expressed as a string value.
|
|
@@ -3557,6 +3815,102 @@ type GraphEdge = {
|
|
|
3557
3815
|
};
|
|
3558
3816
|
type: string;
|
|
3559
3817
|
};
|
|
3818
|
+
/**
|
|
3819
|
+
* A "Resource object" representing a shadow_comparison
|
|
3820
|
+
*/
|
|
3821
|
+
type ShadowComparison = {
|
|
3822
|
+
/**
|
|
3823
|
+
* An attributes object for a shadow_comparison
|
|
3824
|
+
*/
|
|
3825
|
+
attributes?: {
|
|
3826
|
+
/**
|
|
3827
|
+
* Field included by default.
|
|
3828
|
+
*/
|
|
3829
|
+
compared_at?: string | null | unknown;
|
|
3830
|
+
/**
|
|
3831
|
+
* Field included by default.
|
|
3832
|
+
*/
|
|
3833
|
+
document_id: string;
|
|
3834
|
+
/**
|
|
3835
|
+
* Error information if either extractor failed. Field included by default.
|
|
3836
|
+
*/
|
|
3837
|
+
error_details?: {
|
|
3838
|
+
[key: string]: unknown;
|
|
3839
|
+
} | null | unknown;
|
|
3840
|
+
/**
|
|
3841
|
+
* Field included by default.
|
|
3842
|
+
*/
|
|
3843
|
+
file_size: number;
|
|
3844
|
+
/**
|
|
3845
|
+
* Field included by default.
|
|
3846
|
+
*/
|
|
3847
|
+
filename: string;
|
|
3848
|
+
/**
|
|
3849
|
+
* Field included by default.
|
|
3850
|
+
*/
|
|
3851
|
+
mime_type: string;
|
|
3852
|
+
/**
|
|
3853
|
+
* Field included by default.
|
|
3854
|
+
*/
|
|
3855
|
+
page_count?: number | null | unknown;
|
|
3856
|
+
/**
|
|
3857
|
+
* Field included by default.
|
|
3858
|
+
*/
|
|
3859
|
+
primary_confidence?: number | null | unknown;
|
|
3860
|
+
/**
|
|
3861
|
+
* Field included by default.
|
|
3862
|
+
*/
|
|
3863
|
+
primary_duration_ms?: number | null | unknown;
|
|
3864
|
+
/**
|
|
3865
|
+
* Field included by default.
|
|
3866
|
+
*/
|
|
3867
|
+
primary_extractor?: string | null | unknown;
|
|
3868
|
+
/**
|
|
3869
|
+
* Field included by default.
|
|
3870
|
+
*/
|
|
3871
|
+
primary_text_length?: number | null | unknown;
|
|
3872
|
+
/**
|
|
3873
|
+
* Field included by default.
|
|
3874
|
+
*/
|
|
3875
|
+
shadow_confidence?: number | null | unknown;
|
|
3876
|
+
/**
|
|
3877
|
+
* Field included by default.
|
|
3878
|
+
*/
|
|
3879
|
+
shadow_duration_ms?: number | null | unknown;
|
|
3880
|
+
/**
|
|
3881
|
+
* Field included by default.
|
|
3882
|
+
*/
|
|
3883
|
+
shadow_extractor: string;
|
|
3884
|
+
/**
|
|
3885
|
+
* Field included by default.
|
|
3886
|
+
*/
|
|
3887
|
+
shadow_text_length?: number | null | unknown;
|
|
3888
|
+
/**
|
|
3889
|
+
* Field included by default.
|
|
3890
|
+
*/
|
|
3891
|
+
status: "success" | "primary_failed" | "shadow_failed" | "both_failed";
|
|
3892
|
+
/**
|
|
3893
|
+
* Difference in extracted text length (shadow - primary). Field included by default.
|
|
3894
|
+
*/
|
|
3895
|
+
text_length_diff?: number | null | unknown;
|
|
3896
|
+
/**
|
|
3897
|
+
* Similarity score between primary and shadow text (0.0-1.0). Field included by default.
|
|
3898
|
+
*/
|
|
3899
|
+
text_similarity?: number | null | unknown;
|
|
3900
|
+
/**
|
|
3901
|
+
* Field included by default.
|
|
3902
|
+
*/
|
|
3903
|
+
workspace_id: string;
|
|
3904
|
+
};
|
|
3905
|
+
id: string;
|
|
3906
|
+
/**
|
|
3907
|
+
* A relationships object for a shadow_comparison
|
|
3908
|
+
*/
|
|
3909
|
+
relationships?: {
|
|
3910
|
+
[key: string]: never;
|
|
3911
|
+
};
|
|
3912
|
+
type: string;
|
|
3913
|
+
};
|
|
3560
3914
|
/**
|
|
3561
3915
|
* A "Resource object" representing a object
|
|
3562
3916
|
*/
|
|
@@ -3907,6 +4261,105 @@ type Payment = {
|
|
|
3907
4261
|
};
|
|
3908
4262
|
type: string;
|
|
3909
4263
|
};
|
|
4264
|
+
type ApplicationAiConfigInputCreateType = {
|
|
4265
|
+
/**
|
|
4266
|
+
* Allow AI operations at dashboard scope
|
|
4267
|
+
*/
|
|
4268
|
+
allow_dashboard_scope?: boolean | unknown;
|
|
4269
|
+
/**
|
|
4270
|
+
* Allow AI operations at workspace scope
|
|
4271
|
+
*/
|
|
4272
|
+
allow_workspace_scope?: boolean | unknown;
|
|
4273
|
+
/**
|
|
4274
|
+
* Optional whitelist of allowed tool names (nil = all allowed)
|
|
4275
|
+
*/
|
|
4276
|
+
allowed_tools?: Array<string> | unknown;
|
|
4277
|
+
/**
|
|
4278
|
+
* AI feature flags
|
|
4279
|
+
*/
|
|
4280
|
+
features?: {
|
|
4281
|
+
/**
|
|
4282
|
+
* Enable querying external data sources
|
|
4283
|
+
*/
|
|
4284
|
+
external_sources?: boolean | unknown;
|
|
4285
|
+
/**
|
|
4286
|
+
* Enable AI intent parsing for user queries
|
|
4287
|
+
*/
|
|
4288
|
+
intent_parsing?: boolean | unknown;
|
|
4289
|
+
/**
|
|
4290
|
+
* Enable keyword-based search
|
|
4291
|
+
*/
|
|
4292
|
+
keyword_search?: boolean | unknown;
|
|
4293
|
+
/**
|
|
4294
|
+
* Enable RAG-based question answering (requires semantic_search)
|
|
4295
|
+
*/
|
|
4296
|
+
rag_qa?: boolean | unknown;
|
|
4297
|
+
/**
|
|
4298
|
+
* Enable semantic/vector search
|
|
4299
|
+
*/
|
|
4300
|
+
semantic_search?: boolean | unknown;
|
|
4301
|
+
/**
|
|
4302
|
+
* Enable AI tool execution (requires intent_parsing)
|
|
4303
|
+
*/
|
|
4304
|
+
tool_execution?: boolean | unknown;
|
|
4305
|
+
} | unknown;
|
|
4306
|
+
/**
|
|
4307
|
+
* Per-feature rate limits
|
|
4308
|
+
*/
|
|
4309
|
+
rate_limits?: {
|
|
4310
|
+
/**
|
|
4311
|
+
* Rate limit for intent parsing (per minute)
|
|
4312
|
+
*/
|
|
4313
|
+
intent_parsing?: number | unknown;
|
|
4314
|
+
/**
|
|
4315
|
+
* Rate limit for RAG Q&A (per minute)
|
|
4316
|
+
*/
|
|
4317
|
+
rag_qa?: number | unknown;
|
|
4318
|
+
/**
|
|
4319
|
+
* Rate limit for semantic search (per minute)
|
|
4320
|
+
*/
|
|
4321
|
+
semantic_search?: number | unknown;
|
|
4322
|
+
/**
|
|
4323
|
+
* Rate limit for tool execution (per minute)
|
|
4324
|
+
*/
|
|
4325
|
+
tool_execution?: number | unknown;
|
|
4326
|
+
} | unknown;
|
|
4327
|
+
/**
|
|
4328
|
+
* Risk levels for different action types
|
|
4329
|
+
*/
|
|
4330
|
+
risk_levels?: {
|
|
4331
|
+
/**
|
|
4332
|
+
* Risk level for create operations
|
|
4333
|
+
*/
|
|
4334
|
+
create_record?: "auto_execute" | "confirm_once" | "always_confirm" | unknown;
|
|
4335
|
+
/**
|
|
4336
|
+
* Risk level for delete operations
|
|
4337
|
+
*/
|
|
4338
|
+
delete_record?: "auto_execute" | "confirm_once" | "always_confirm" | unknown;
|
|
4339
|
+
/**
|
|
4340
|
+
* Risk level for financial operations
|
|
4341
|
+
*/
|
|
4342
|
+
financial_transaction?: "auto_execute" | "confirm_once" | "always_confirm" | unknown;
|
|
4343
|
+
/**
|
|
4344
|
+
* Tool-specific risk level overrides
|
|
4345
|
+
*/
|
|
4346
|
+
overrides?: {
|
|
4347
|
+
[key: string]: unknown;
|
|
4348
|
+
} | unknown;
|
|
4349
|
+
/**
|
|
4350
|
+
* Risk level for read operations
|
|
4351
|
+
*/
|
|
4352
|
+
read_data?: "auto_execute" | "confirm_once" | "always_confirm" | unknown;
|
|
4353
|
+
/**
|
|
4354
|
+
* Risk level for sending emails/notifications
|
|
4355
|
+
*/
|
|
4356
|
+
send_communication?: "auto_execute" | "confirm_once" | "always_confirm" | unknown;
|
|
4357
|
+
/**
|
|
4358
|
+
* Risk level for update operations
|
|
4359
|
+
*/
|
|
4360
|
+
update_record?: "auto_execute" | "confirm_once" | "always_confirm" | unknown;
|
|
4361
|
+
} | unknown;
|
|
4362
|
+
};
|
|
3910
4363
|
/**
|
|
3911
4364
|
* A "Resource object" representing a extraction_batch
|
|
3912
4365
|
*/
|
|
@@ -4752,6 +5205,105 @@ type DocumentChunk = {
|
|
|
4752
5205
|
};
|
|
4753
5206
|
type: string;
|
|
4754
5207
|
};
|
|
5208
|
+
type ApplicationAiConfigInputUpdateType = {
|
|
5209
|
+
/**
|
|
5210
|
+
* Allow AI operations at dashboard scope
|
|
5211
|
+
*/
|
|
5212
|
+
allow_dashboard_scope?: boolean | unknown;
|
|
5213
|
+
/**
|
|
5214
|
+
* Allow AI operations at workspace scope
|
|
5215
|
+
*/
|
|
5216
|
+
allow_workspace_scope?: boolean | unknown;
|
|
5217
|
+
/**
|
|
5218
|
+
* Optional whitelist of allowed tool names (nil = all allowed)
|
|
5219
|
+
*/
|
|
5220
|
+
allowed_tools?: Array<string> | unknown;
|
|
5221
|
+
/**
|
|
5222
|
+
* AI feature flags
|
|
5223
|
+
*/
|
|
5224
|
+
features?: {
|
|
5225
|
+
/**
|
|
5226
|
+
* Enable querying external data sources
|
|
5227
|
+
*/
|
|
5228
|
+
external_sources?: boolean | unknown;
|
|
5229
|
+
/**
|
|
5230
|
+
* Enable AI intent parsing for user queries
|
|
5231
|
+
*/
|
|
5232
|
+
intent_parsing?: boolean | unknown;
|
|
5233
|
+
/**
|
|
5234
|
+
* Enable keyword-based search
|
|
5235
|
+
*/
|
|
5236
|
+
keyword_search?: boolean | unknown;
|
|
5237
|
+
/**
|
|
5238
|
+
* Enable RAG-based question answering (requires semantic_search)
|
|
5239
|
+
*/
|
|
5240
|
+
rag_qa?: boolean | unknown;
|
|
5241
|
+
/**
|
|
5242
|
+
* Enable semantic/vector search
|
|
5243
|
+
*/
|
|
5244
|
+
semantic_search?: boolean | unknown;
|
|
5245
|
+
/**
|
|
5246
|
+
* Enable AI tool execution (requires intent_parsing)
|
|
5247
|
+
*/
|
|
5248
|
+
tool_execution?: boolean | unknown;
|
|
5249
|
+
} | unknown;
|
|
5250
|
+
/**
|
|
5251
|
+
* Per-feature rate limits
|
|
5252
|
+
*/
|
|
5253
|
+
rate_limits?: {
|
|
5254
|
+
/**
|
|
5255
|
+
* Rate limit for intent parsing (per minute)
|
|
5256
|
+
*/
|
|
5257
|
+
intent_parsing?: number | unknown;
|
|
5258
|
+
/**
|
|
5259
|
+
* Rate limit for RAG Q&A (per minute)
|
|
5260
|
+
*/
|
|
5261
|
+
rag_qa?: number | unknown;
|
|
5262
|
+
/**
|
|
5263
|
+
* Rate limit for semantic search (per minute)
|
|
5264
|
+
*/
|
|
5265
|
+
semantic_search?: number | unknown;
|
|
5266
|
+
/**
|
|
5267
|
+
* Rate limit for tool execution (per minute)
|
|
5268
|
+
*/
|
|
5269
|
+
tool_execution?: number | unknown;
|
|
5270
|
+
} | unknown;
|
|
5271
|
+
/**
|
|
5272
|
+
* Risk levels for different action types
|
|
5273
|
+
*/
|
|
5274
|
+
risk_levels?: {
|
|
5275
|
+
/**
|
|
5276
|
+
* Risk level for create operations
|
|
5277
|
+
*/
|
|
5278
|
+
create_record?: "auto_execute" | "confirm_once" | "always_confirm" | unknown;
|
|
5279
|
+
/**
|
|
5280
|
+
* Risk level for delete operations
|
|
5281
|
+
*/
|
|
5282
|
+
delete_record?: "auto_execute" | "confirm_once" | "always_confirm" | unknown;
|
|
5283
|
+
/**
|
|
5284
|
+
* Risk level for financial operations
|
|
5285
|
+
*/
|
|
5286
|
+
financial_transaction?: "auto_execute" | "confirm_once" | "always_confirm" | unknown;
|
|
5287
|
+
/**
|
|
5288
|
+
* Tool-specific risk level overrides
|
|
5289
|
+
*/
|
|
5290
|
+
overrides?: {
|
|
5291
|
+
[key: string]: unknown;
|
|
5292
|
+
} | unknown;
|
|
5293
|
+
/**
|
|
5294
|
+
* Risk level for read operations
|
|
5295
|
+
*/
|
|
5296
|
+
read_data?: "auto_execute" | "confirm_once" | "always_confirm" | unknown;
|
|
5297
|
+
/**
|
|
5298
|
+
* Risk level for sending emails/notifications
|
|
5299
|
+
*/
|
|
5300
|
+
send_communication?: "auto_execute" | "confirm_once" | "always_confirm" | unknown;
|
|
5301
|
+
/**
|
|
5302
|
+
* Risk level for update operations
|
|
5303
|
+
*/
|
|
5304
|
+
update_record?: "auto_execute" | "confirm_once" | "always_confirm" | unknown;
|
|
5305
|
+
} | unknown;
|
|
5306
|
+
};
|
|
4755
5307
|
/**
|
|
4756
5308
|
* A "Resource object" representing a tenant_pricing_override
|
|
4757
5309
|
*/
|
|
@@ -5228,6 +5780,15 @@ type WholesaleAgreement = {
|
|
|
5228
5780
|
* Minimum payout amount in cents ($25.00 default). Field included by default.
|
|
5229
5781
|
*/
|
|
5230
5782
|
minimum_payout_cents: number;
|
|
5783
|
+
/**
|
|
5784
|
+
* Per-service minimum retail floors that ISV must charge their tenants.
|
|
5785
|
+
* Format: [%{"service_id" => "doc_extraction_base", "minimum" => %Money{}}]
|
|
5786
|
+
* Platform admin sets these to ensure ISVs don't undercut below certain prices.
|
|
5787
|
+
* . Field included by default.
|
|
5788
|
+
*/
|
|
5789
|
+
minimum_retail_floors?: Array<{
|
|
5790
|
+
[key: string]: unknown;
|
|
5791
|
+
}> | null | unknown;
|
|
5231
5792
|
/**
|
|
5232
5793
|
* Wholesale pricing model: percentage of retail or fixed floor rates. Field included by default.
|
|
5233
5794
|
*/
|
|
@@ -6052,6 +6613,10 @@ type PostAdminApplicationsData = {
|
|
|
6052
6613
|
body: {
|
|
6053
6614
|
data: {
|
|
6054
6615
|
attributes?: {
|
|
6616
|
+
/**
|
|
6617
|
+
* AI capability configuration for this application
|
|
6618
|
+
*/
|
|
6619
|
+
ai_config?: ApplicationAiConfigInputCreateType | unknown;
|
|
6055
6620
|
/**
|
|
6056
6621
|
* Optional manual API key override (for system seeds)
|
|
6057
6622
|
*/
|
|
@@ -11473,7 +12038,7 @@ type GetAdminTransfersByIdResponses = {
|
|
|
11473
12038
|
};
|
|
11474
12039
|
};
|
|
11475
12040
|
type GetAdminTransfersByIdResponse = GetAdminTransfersByIdResponses[keyof GetAdminTransfersByIdResponses];
|
|
11476
|
-
type
|
|
12041
|
+
type GetAdminPlatformPricingConfigsData = {
|
|
11477
12042
|
body?: never;
|
|
11478
12043
|
headers: {
|
|
11479
12044
|
/**
|
|
@@ -11484,158 +12049,21 @@ type GetAdminLlmAnalyticsWorkspaceData = {
|
|
|
11484
12049
|
path?: never;
|
|
11485
12050
|
query?: {
|
|
11486
12051
|
/**
|
|
11487
|
-
*
|
|
11488
|
-
*/
|
|
11489
|
-
include?: string;
|
|
11490
|
-
/**
|
|
11491
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
12052
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
11492
12053
|
*/
|
|
11493
|
-
|
|
11494
|
-
[key: string]: unknown;
|
|
11495
|
-
};
|
|
11496
|
-
workspace_id?: string;
|
|
11497
|
-
};
|
|
11498
|
-
url: "/admin/llm_analytics/workspace";
|
|
11499
|
-
};
|
|
11500
|
-
type GetAdminLlmAnalyticsWorkspaceErrors = {
|
|
11501
|
-
/**
|
|
11502
|
-
* Bad Request - Invalid input data or malformed request
|
|
11503
|
-
*/
|
|
11504
|
-
400: ErrorResponse;
|
|
11505
|
-
/**
|
|
11506
|
-
* Unauthorized - Missing or invalid authentication token
|
|
11507
|
-
*/
|
|
11508
|
-
401: ErrorResponse;
|
|
11509
|
-
/**
|
|
11510
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
11511
|
-
*/
|
|
11512
|
-
403: ErrorResponse;
|
|
11513
|
-
/**
|
|
11514
|
-
* Not Found - Resource does not exist
|
|
11515
|
-
*/
|
|
11516
|
-
404: ErrorResponse;
|
|
11517
|
-
/**
|
|
11518
|
-
* Too Many Requests - Rate limit exceeded
|
|
11519
|
-
*/
|
|
11520
|
-
429: ErrorResponse;
|
|
11521
|
-
/**
|
|
11522
|
-
* Internal Server Error - Unexpected server error
|
|
11523
|
-
*/
|
|
11524
|
-
500: ErrorResponse;
|
|
11525
|
-
/**
|
|
11526
|
-
* General Error
|
|
11527
|
-
*/
|
|
11528
|
-
default: Errors;
|
|
11529
|
-
};
|
|
11530
|
-
type GetAdminLlmAnalyticsWorkspaceError = GetAdminLlmAnalyticsWorkspaceErrors[keyof GetAdminLlmAnalyticsWorkspaceErrors];
|
|
11531
|
-
type GetAdminLlmAnalyticsWorkspaceResponses = {
|
|
11532
|
-
/**
|
|
11533
|
-
* Success
|
|
11534
|
-
*/
|
|
11535
|
-
200: {
|
|
11536
|
-
data?: LlmAnalytics;
|
|
11537
|
-
included?: Array<unknown>;
|
|
11538
|
-
meta?: {
|
|
12054
|
+
filter?: {
|
|
11539
12055
|
[key: string]: unknown;
|
|
11540
12056
|
};
|
|
11541
|
-
};
|
|
11542
|
-
};
|
|
11543
|
-
type GetAdminLlmAnalyticsWorkspaceResponse = GetAdminLlmAnalyticsWorkspaceResponses[keyof GetAdminLlmAnalyticsWorkspaceResponses];
|
|
11544
|
-
type PatchAdminWalletAddonsByAddonSlugCancelData = {
|
|
11545
|
-
/**
|
|
11546
|
-
* Request body for the /wallet/addons/:addon_slug/cancel operation on wallet resource
|
|
11547
|
-
*/
|
|
11548
|
-
body?: {
|
|
11549
|
-
data: {
|
|
11550
|
-
attributes?: {
|
|
11551
|
-
quantity?: number | unknown;
|
|
11552
|
-
};
|
|
11553
|
-
id: string;
|
|
11554
|
-
relationships?: {
|
|
11555
|
-
[key: string]: never;
|
|
11556
|
-
};
|
|
11557
|
-
type?: "wallet";
|
|
11558
|
-
};
|
|
11559
|
-
};
|
|
11560
|
-
headers: {
|
|
11561
12057
|
/**
|
|
11562
|
-
*
|
|
11563
|
-
*/
|
|
11564
|
-
"x-application-key": string;
|
|
11565
|
-
};
|
|
11566
|
-
path: {
|
|
11567
|
-
addon_slug: string;
|
|
11568
|
-
};
|
|
11569
|
-
query?: {
|
|
11570
|
-
/**
|
|
11571
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
12058
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
11572
12059
|
*/
|
|
11573
|
-
|
|
12060
|
+
sort?: string;
|
|
11574
12061
|
/**
|
|
11575
|
-
* JSON:API
|
|
12062
|
+
* JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
|
|
11576
12063
|
*/
|
|
11577
|
-
|
|
11578
|
-
[key: string]: unknown;
|
|
11579
|
-
};
|
|
11580
|
-
};
|
|
11581
|
-
url: "/admin/wallet/addons/{addon_slug}/cancel";
|
|
11582
|
-
};
|
|
11583
|
-
type PatchAdminWalletAddonsByAddonSlugCancelErrors = {
|
|
11584
|
-
/**
|
|
11585
|
-
* Bad Request - Invalid input data or malformed request
|
|
11586
|
-
*/
|
|
11587
|
-
400: ErrorResponse;
|
|
11588
|
-
/**
|
|
11589
|
-
* Unauthorized - Missing or invalid authentication token
|
|
11590
|
-
*/
|
|
11591
|
-
401: ErrorResponse;
|
|
11592
|
-
/**
|
|
11593
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
11594
|
-
*/
|
|
11595
|
-
403: ErrorResponse;
|
|
11596
|
-
/**
|
|
11597
|
-
* Not Found - Resource does not exist
|
|
11598
|
-
*/
|
|
11599
|
-
404: ErrorResponse;
|
|
11600
|
-
/**
|
|
11601
|
-
* Too Many Requests - Rate limit exceeded
|
|
11602
|
-
*/
|
|
11603
|
-
429: ErrorResponse;
|
|
11604
|
-
/**
|
|
11605
|
-
* Internal Server Error - Unexpected server error
|
|
11606
|
-
*/
|
|
11607
|
-
500: ErrorResponse;
|
|
11608
|
-
/**
|
|
11609
|
-
* General Error
|
|
11610
|
-
*/
|
|
11611
|
-
default: Errors;
|
|
11612
|
-
};
|
|
11613
|
-
type PatchAdminWalletAddonsByAddonSlugCancelError = PatchAdminWalletAddonsByAddonSlugCancelErrors[keyof PatchAdminWalletAddonsByAddonSlugCancelErrors];
|
|
11614
|
-
type PatchAdminWalletAddonsByAddonSlugCancelResponses = {
|
|
11615
|
-
/**
|
|
11616
|
-
* Success
|
|
11617
|
-
*/
|
|
11618
|
-
200: {
|
|
11619
|
-
data?: Wallet;
|
|
11620
|
-
included?: Array<Plan>;
|
|
11621
|
-
meta?: {
|
|
12064
|
+
page?: {
|
|
11622
12065
|
[key: string]: unknown;
|
|
11623
12066
|
};
|
|
11624
|
-
};
|
|
11625
|
-
};
|
|
11626
|
-
type PatchAdminWalletAddonsByAddonSlugCancelResponse = PatchAdminWalletAddonsByAddonSlugCancelResponses[keyof PatchAdminWalletAddonsByAddonSlugCancelResponses];
|
|
11627
|
-
type GetAdminSettlementsByIdData = {
|
|
11628
|
-
body?: never;
|
|
11629
|
-
headers: {
|
|
11630
|
-
/**
|
|
11631
|
-
* Application ID for authentication and routing
|
|
11632
|
-
*/
|
|
11633
|
-
"x-application-key": string;
|
|
11634
|
-
};
|
|
11635
|
-
path: {
|
|
11636
|
-
id: string;
|
|
11637
|
-
};
|
|
11638
|
-
query?: {
|
|
11639
12067
|
/**
|
|
11640
12068
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
11641
12069
|
*/
|
|
@@ -11647,9 +12075,9 @@ type GetAdminSettlementsByIdData = {
|
|
|
11647
12075
|
[key: string]: unknown;
|
|
11648
12076
|
};
|
|
11649
12077
|
};
|
|
11650
|
-
url: "/admin/
|
|
12078
|
+
url: "/admin/platform-pricing-configs";
|
|
11651
12079
|
};
|
|
11652
|
-
type
|
|
12080
|
+
type GetAdminPlatformPricingConfigsErrors = {
|
|
11653
12081
|
/**
|
|
11654
12082
|
* Bad Request - Invalid input data or malformed request
|
|
11655
12083
|
*/
|
|
@@ -11679,36 +12107,67 @@ type GetAdminSettlementsByIdErrors = {
|
|
|
11679
12107
|
*/
|
|
11680
12108
|
default: Errors;
|
|
11681
12109
|
};
|
|
11682
|
-
type
|
|
11683
|
-
type
|
|
12110
|
+
type GetAdminPlatformPricingConfigsError = GetAdminPlatformPricingConfigsErrors[keyof GetAdminPlatformPricingConfigsErrors];
|
|
12111
|
+
type GetAdminPlatformPricingConfigsResponses = {
|
|
11684
12112
|
/**
|
|
11685
12113
|
* Success
|
|
11686
12114
|
*/
|
|
11687
12115
|
200: {
|
|
11688
|
-
|
|
12116
|
+
/**
|
|
12117
|
+
* An array of resource objects representing a platform-pricing-config
|
|
12118
|
+
*/
|
|
12119
|
+
data?: Array<PlatformPricingConfig>;
|
|
11689
12120
|
included?: Array<unknown>;
|
|
11690
12121
|
meta?: {
|
|
11691
12122
|
[key: string]: unknown;
|
|
11692
12123
|
};
|
|
11693
12124
|
};
|
|
11694
12125
|
};
|
|
11695
|
-
type
|
|
11696
|
-
type
|
|
12126
|
+
type GetAdminPlatformPricingConfigsResponse = GetAdminPlatformPricingConfigsResponses[keyof GetAdminPlatformPricingConfigsResponses];
|
|
12127
|
+
type PostAdminPlatformPricingConfigsData = {
|
|
11697
12128
|
/**
|
|
11698
|
-
* Request body for the /
|
|
12129
|
+
* Request body for the /platform-pricing-configs operation on platform-pricing-config resource
|
|
11699
12130
|
*/
|
|
11700
12131
|
body: {
|
|
11701
12132
|
data: {
|
|
11702
12133
|
attributes?: {
|
|
11703
|
-
|
|
11704
|
-
|
|
11705
|
-
|
|
11706
|
-
|
|
12134
|
+
/**
|
|
12135
|
+
* Human-readable description of this service
|
|
12136
|
+
*/
|
|
12137
|
+
description?: string | unknown;
|
|
12138
|
+
/**
|
|
12139
|
+
* Minimum price ISVs can charge. NULL means use hardcoded default.
|
|
12140
|
+
*/
|
|
12141
|
+
floor_price?: {
|
|
12142
|
+
amount: string;
|
|
12143
|
+
currency: string;
|
|
12144
|
+
} | unknown;
|
|
12145
|
+
/**
|
|
12146
|
+
* Platform COGS for this service (e.g., $0.002 per page for OCR)
|
|
12147
|
+
*/
|
|
12148
|
+
hard_cost?: {
|
|
12149
|
+
amount: string;
|
|
12150
|
+
currency: string;
|
|
12151
|
+
} | unknown;
|
|
12152
|
+
/**
|
|
12153
|
+
* Minimum margin percentage. NULL means use hardcoded default (30%).
|
|
12154
|
+
*/
|
|
12155
|
+
margin_percent?: number | unknown;
|
|
12156
|
+
/**
|
|
12157
|
+
* Additional configuration metadata (e.g., metric unit, operation type)
|
|
12158
|
+
*/
|
|
12159
|
+
metadata?: {
|
|
12160
|
+
[key: string]: unknown;
|
|
12161
|
+
} | unknown;
|
|
12162
|
+
/**
|
|
12163
|
+
* Service identifier (e.g., 'doc_extraction_base', 'llm_usage')
|
|
12164
|
+
*/
|
|
12165
|
+
service_id: string;
|
|
11707
12166
|
};
|
|
11708
12167
|
relationships?: {
|
|
11709
12168
|
[key: string]: never;
|
|
11710
12169
|
};
|
|
11711
|
-
type?: "
|
|
12170
|
+
type?: "platform-pricing-config";
|
|
11712
12171
|
};
|
|
11713
12172
|
};
|
|
11714
12173
|
headers: {
|
|
@@ -11730,9 +12189,9 @@ type PostAdminDocumentsPresignedUploadData = {
|
|
|
11730
12189
|
[key: string]: unknown;
|
|
11731
12190
|
};
|
|
11732
12191
|
};
|
|
11733
|
-
url: "/admin/
|
|
12192
|
+
url: "/admin/platform-pricing-configs";
|
|
11734
12193
|
};
|
|
11735
|
-
type
|
|
12194
|
+
type PostAdminPlatformPricingConfigsErrors = {
|
|
11736
12195
|
/**
|
|
11737
12196
|
* Bad Request - Invalid input data or malformed request
|
|
11738
12197
|
*/
|
|
@@ -11762,21 +12221,21 @@ type PostAdminDocumentsPresignedUploadErrors = {
|
|
|
11762
12221
|
*/
|
|
11763
12222
|
default: Errors;
|
|
11764
12223
|
};
|
|
11765
|
-
type
|
|
11766
|
-
type
|
|
12224
|
+
type PostAdminPlatformPricingConfigsError = PostAdminPlatformPricingConfigsErrors[keyof PostAdminPlatformPricingConfigsErrors];
|
|
12225
|
+
type PostAdminPlatformPricingConfigsResponses = {
|
|
11767
12226
|
/**
|
|
11768
12227
|
* Success
|
|
11769
12228
|
*/
|
|
11770
12229
|
201: {
|
|
11771
|
-
data?:
|
|
12230
|
+
data?: PlatformPricingConfig;
|
|
11772
12231
|
included?: Array<unknown>;
|
|
11773
12232
|
meta?: {
|
|
11774
12233
|
[key: string]: unknown;
|
|
11775
12234
|
};
|
|
11776
12235
|
};
|
|
11777
12236
|
};
|
|
11778
|
-
type
|
|
11779
|
-
type
|
|
12237
|
+
type PostAdminPlatformPricingConfigsResponse = PostAdminPlatformPricingConfigsResponses[keyof PostAdminPlatformPricingConfigsResponses];
|
|
12238
|
+
type GetAdminLlmAnalyticsWorkspaceData = {
|
|
11780
12239
|
body?: never;
|
|
11781
12240
|
headers: {
|
|
11782
12241
|
/**
|
|
@@ -11785,7 +12244,7 @@ type GetAdminThreadsSearchData = {
|
|
|
11785
12244
|
"x-application-key": string;
|
|
11786
12245
|
};
|
|
11787
12246
|
path?: never;
|
|
11788
|
-
query
|
|
12247
|
+
query?: {
|
|
11789
12248
|
/**
|
|
11790
12249
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
11791
12250
|
*/
|
|
@@ -11796,11 +12255,314 @@ type GetAdminThreadsSearchData = {
|
|
|
11796
12255
|
fields?: {
|
|
11797
12256
|
[key: string]: unknown;
|
|
11798
12257
|
};
|
|
11799
|
-
|
|
12258
|
+
workspace_id?: string;
|
|
11800
12259
|
};
|
|
11801
|
-
url: "/admin/
|
|
12260
|
+
url: "/admin/llm_analytics/workspace";
|
|
11802
12261
|
};
|
|
11803
|
-
type
|
|
12262
|
+
type GetAdminLlmAnalyticsWorkspaceErrors = {
|
|
12263
|
+
/**
|
|
12264
|
+
* Bad Request - Invalid input data or malformed request
|
|
12265
|
+
*/
|
|
12266
|
+
400: ErrorResponse;
|
|
12267
|
+
/**
|
|
12268
|
+
* Unauthorized - Missing or invalid authentication token
|
|
12269
|
+
*/
|
|
12270
|
+
401: ErrorResponse;
|
|
12271
|
+
/**
|
|
12272
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
12273
|
+
*/
|
|
12274
|
+
403: ErrorResponse;
|
|
12275
|
+
/**
|
|
12276
|
+
* Not Found - Resource does not exist
|
|
12277
|
+
*/
|
|
12278
|
+
404: ErrorResponse;
|
|
12279
|
+
/**
|
|
12280
|
+
* Too Many Requests - Rate limit exceeded
|
|
12281
|
+
*/
|
|
12282
|
+
429: ErrorResponse;
|
|
12283
|
+
/**
|
|
12284
|
+
* Internal Server Error - Unexpected server error
|
|
12285
|
+
*/
|
|
12286
|
+
500: ErrorResponse;
|
|
12287
|
+
/**
|
|
12288
|
+
* General Error
|
|
12289
|
+
*/
|
|
12290
|
+
default: Errors;
|
|
12291
|
+
};
|
|
12292
|
+
type GetAdminLlmAnalyticsWorkspaceError = GetAdminLlmAnalyticsWorkspaceErrors[keyof GetAdminLlmAnalyticsWorkspaceErrors];
|
|
12293
|
+
type GetAdminLlmAnalyticsWorkspaceResponses = {
|
|
12294
|
+
/**
|
|
12295
|
+
* Success
|
|
12296
|
+
*/
|
|
12297
|
+
200: {
|
|
12298
|
+
data?: LlmAnalytics;
|
|
12299
|
+
included?: Array<unknown>;
|
|
12300
|
+
meta?: {
|
|
12301
|
+
[key: string]: unknown;
|
|
12302
|
+
};
|
|
12303
|
+
};
|
|
12304
|
+
};
|
|
12305
|
+
type GetAdminLlmAnalyticsWorkspaceResponse = GetAdminLlmAnalyticsWorkspaceResponses[keyof GetAdminLlmAnalyticsWorkspaceResponses];
|
|
12306
|
+
type PatchAdminWalletAddonsByAddonSlugCancelData = {
|
|
12307
|
+
/**
|
|
12308
|
+
* Request body for the /wallet/addons/:addon_slug/cancel operation on wallet resource
|
|
12309
|
+
*/
|
|
12310
|
+
body?: {
|
|
12311
|
+
data: {
|
|
12312
|
+
attributes?: {
|
|
12313
|
+
quantity?: number | unknown;
|
|
12314
|
+
};
|
|
12315
|
+
id: string;
|
|
12316
|
+
relationships?: {
|
|
12317
|
+
[key: string]: never;
|
|
12318
|
+
};
|
|
12319
|
+
type?: "wallet";
|
|
12320
|
+
};
|
|
12321
|
+
};
|
|
12322
|
+
headers: {
|
|
12323
|
+
/**
|
|
12324
|
+
* Application ID for authentication and routing
|
|
12325
|
+
*/
|
|
12326
|
+
"x-application-key": string;
|
|
12327
|
+
};
|
|
12328
|
+
path: {
|
|
12329
|
+
addon_slug: string;
|
|
12330
|
+
};
|
|
12331
|
+
query?: {
|
|
12332
|
+
/**
|
|
12333
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
12334
|
+
*/
|
|
12335
|
+
include?: string;
|
|
12336
|
+
/**
|
|
12337
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
12338
|
+
*/
|
|
12339
|
+
fields?: {
|
|
12340
|
+
[key: string]: unknown;
|
|
12341
|
+
};
|
|
12342
|
+
};
|
|
12343
|
+
url: "/admin/wallet/addons/{addon_slug}/cancel";
|
|
12344
|
+
};
|
|
12345
|
+
type PatchAdminWalletAddonsByAddonSlugCancelErrors = {
|
|
12346
|
+
/**
|
|
12347
|
+
* Bad Request - Invalid input data or malformed request
|
|
12348
|
+
*/
|
|
12349
|
+
400: ErrorResponse;
|
|
12350
|
+
/**
|
|
12351
|
+
* Unauthorized - Missing or invalid authentication token
|
|
12352
|
+
*/
|
|
12353
|
+
401: ErrorResponse;
|
|
12354
|
+
/**
|
|
12355
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
12356
|
+
*/
|
|
12357
|
+
403: ErrorResponse;
|
|
12358
|
+
/**
|
|
12359
|
+
* Not Found - Resource does not exist
|
|
12360
|
+
*/
|
|
12361
|
+
404: ErrorResponse;
|
|
12362
|
+
/**
|
|
12363
|
+
* Too Many Requests - Rate limit exceeded
|
|
12364
|
+
*/
|
|
12365
|
+
429: ErrorResponse;
|
|
12366
|
+
/**
|
|
12367
|
+
* Internal Server Error - Unexpected server error
|
|
12368
|
+
*/
|
|
12369
|
+
500: ErrorResponse;
|
|
12370
|
+
/**
|
|
12371
|
+
* General Error
|
|
12372
|
+
*/
|
|
12373
|
+
default: Errors;
|
|
12374
|
+
};
|
|
12375
|
+
type PatchAdminWalletAddonsByAddonSlugCancelError = PatchAdminWalletAddonsByAddonSlugCancelErrors[keyof PatchAdminWalletAddonsByAddonSlugCancelErrors];
|
|
12376
|
+
type PatchAdminWalletAddonsByAddonSlugCancelResponses = {
|
|
12377
|
+
/**
|
|
12378
|
+
* Success
|
|
12379
|
+
*/
|
|
12380
|
+
200: {
|
|
12381
|
+
data?: Wallet;
|
|
12382
|
+
included?: Array<Plan>;
|
|
12383
|
+
meta?: {
|
|
12384
|
+
[key: string]: unknown;
|
|
12385
|
+
};
|
|
12386
|
+
};
|
|
12387
|
+
};
|
|
12388
|
+
type PatchAdminWalletAddonsByAddonSlugCancelResponse = PatchAdminWalletAddonsByAddonSlugCancelResponses[keyof PatchAdminWalletAddonsByAddonSlugCancelResponses];
|
|
12389
|
+
type GetAdminSettlementsByIdData = {
|
|
12390
|
+
body?: never;
|
|
12391
|
+
headers: {
|
|
12392
|
+
/**
|
|
12393
|
+
* Application ID for authentication and routing
|
|
12394
|
+
*/
|
|
12395
|
+
"x-application-key": string;
|
|
12396
|
+
};
|
|
12397
|
+
path: {
|
|
12398
|
+
id: string;
|
|
12399
|
+
};
|
|
12400
|
+
query?: {
|
|
12401
|
+
/**
|
|
12402
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
12403
|
+
*/
|
|
12404
|
+
include?: string;
|
|
12405
|
+
/**
|
|
12406
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
12407
|
+
*/
|
|
12408
|
+
fields?: {
|
|
12409
|
+
[key: string]: unknown;
|
|
12410
|
+
};
|
|
12411
|
+
};
|
|
12412
|
+
url: "/admin/settlements/{id}";
|
|
12413
|
+
};
|
|
12414
|
+
type GetAdminSettlementsByIdErrors = {
|
|
12415
|
+
/**
|
|
12416
|
+
* Bad Request - Invalid input data or malformed request
|
|
12417
|
+
*/
|
|
12418
|
+
400: ErrorResponse;
|
|
12419
|
+
/**
|
|
12420
|
+
* Unauthorized - Missing or invalid authentication token
|
|
12421
|
+
*/
|
|
12422
|
+
401: ErrorResponse;
|
|
12423
|
+
/**
|
|
12424
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
12425
|
+
*/
|
|
12426
|
+
403: ErrorResponse;
|
|
12427
|
+
/**
|
|
12428
|
+
* Not Found - Resource does not exist
|
|
12429
|
+
*/
|
|
12430
|
+
404: ErrorResponse;
|
|
12431
|
+
/**
|
|
12432
|
+
* Too Many Requests - Rate limit exceeded
|
|
12433
|
+
*/
|
|
12434
|
+
429: ErrorResponse;
|
|
12435
|
+
/**
|
|
12436
|
+
* Internal Server Error - Unexpected server error
|
|
12437
|
+
*/
|
|
12438
|
+
500: ErrorResponse;
|
|
12439
|
+
/**
|
|
12440
|
+
* General Error
|
|
12441
|
+
*/
|
|
12442
|
+
default: Errors;
|
|
12443
|
+
};
|
|
12444
|
+
type GetAdminSettlementsByIdError = GetAdminSettlementsByIdErrors[keyof GetAdminSettlementsByIdErrors];
|
|
12445
|
+
type GetAdminSettlementsByIdResponses = {
|
|
12446
|
+
/**
|
|
12447
|
+
* Success
|
|
12448
|
+
*/
|
|
12449
|
+
200: {
|
|
12450
|
+
data?: Settlement;
|
|
12451
|
+
included?: Array<unknown>;
|
|
12452
|
+
meta?: {
|
|
12453
|
+
[key: string]: unknown;
|
|
12454
|
+
};
|
|
12455
|
+
};
|
|
12456
|
+
};
|
|
12457
|
+
type GetAdminSettlementsByIdResponse = GetAdminSettlementsByIdResponses[keyof GetAdminSettlementsByIdResponses];
|
|
12458
|
+
type PostAdminDocumentsPresignedUploadData = {
|
|
12459
|
+
/**
|
|
12460
|
+
* Request body for the /documents/presigned_upload operation on presigned_url resource
|
|
12461
|
+
*/
|
|
12462
|
+
body: {
|
|
12463
|
+
data: {
|
|
12464
|
+
attributes?: {
|
|
12465
|
+
filename: string;
|
|
12466
|
+
mime_type: string;
|
|
12467
|
+
size_bytes: number;
|
|
12468
|
+
workspace_id: string;
|
|
12469
|
+
};
|
|
12470
|
+
relationships?: {
|
|
12471
|
+
[key: string]: never;
|
|
12472
|
+
};
|
|
12473
|
+
type?: "presigned_url";
|
|
12474
|
+
};
|
|
12475
|
+
};
|
|
12476
|
+
headers: {
|
|
12477
|
+
/**
|
|
12478
|
+
* Application ID for authentication and routing
|
|
12479
|
+
*/
|
|
12480
|
+
"x-application-key": string;
|
|
12481
|
+
};
|
|
12482
|
+
path?: never;
|
|
12483
|
+
query?: {
|
|
12484
|
+
/**
|
|
12485
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
12486
|
+
*/
|
|
12487
|
+
include?: string;
|
|
12488
|
+
/**
|
|
12489
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
12490
|
+
*/
|
|
12491
|
+
fields?: {
|
|
12492
|
+
[key: string]: unknown;
|
|
12493
|
+
};
|
|
12494
|
+
};
|
|
12495
|
+
url: "/admin/documents/presigned_upload";
|
|
12496
|
+
};
|
|
12497
|
+
type PostAdminDocumentsPresignedUploadErrors = {
|
|
12498
|
+
/**
|
|
12499
|
+
* Bad Request - Invalid input data or malformed request
|
|
12500
|
+
*/
|
|
12501
|
+
400: ErrorResponse;
|
|
12502
|
+
/**
|
|
12503
|
+
* Unauthorized - Missing or invalid authentication token
|
|
12504
|
+
*/
|
|
12505
|
+
401: ErrorResponse;
|
|
12506
|
+
/**
|
|
12507
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
12508
|
+
*/
|
|
12509
|
+
403: ErrorResponse;
|
|
12510
|
+
/**
|
|
12511
|
+
* Not Found - Resource does not exist
|
|
12512
|
+
*/
|
|
12513
|
+
404: ErrorResponse;
|
|
12514
|
+
/**
|
|
12515
|
+
* Too Many Requests - Rate limit exceeded
|
|
12516
|
+
*/
|
|
12517
|
+
429: ErrorResponse;
|
|
12518
|
+
/**
|
|
12519
|
+
* Internal Server Error - Unexpected server error
|
|
12520
|
+
*/
|
|
12521
|
+
500: ErrorResponse;
|
|
12522
|
+
/**
|
|
12523
|
+
* General Error
|
|
12524
|
+
*/
|
|
12525
|
+
default: Errors;
|
|
12526
|
+
};
|
|
12527
|
+
type PostAdminDocumentsPresignedUploadError = PostAdminDocumentsPresignedUploadErrors[keyof PostAdminDocumentsPresignedUploadErrors];
|
|
12528
|
+
type PostAdminDocumentsPresignedUploadResponses = {
|
|
12529
|
+
/**
|
|
12530
|
+
* Success
|
|
12531
|
+
*/
|
|
12532
|
+
201: {
|
|
12533
|
+
data?: PresignedUrl;
|
|
12534
|
+
included?: Array<unknown>;
|
|
12535
|
+
meta?: {
|
|
12536
|
+
[key: string]: unknown;
|
|
12537
|
+
};
|
|
12538
|
+
};
|
|
12539
|
+
};
|
|
12540
|
+
type PostAdminDocumentsPresignedUploadResponse = PostAdminDocumentsPresignedUploadResponses[keyof PostAdminDocumentsPresignedUploadResponses];
|
|
12541
|
+
type GetAdminThreadsSearchData = {
|
|
12542
|
+
body?: never;
|
|
12543
|
+
headers: {
|
|
12544
|
+
/**
|
|
12545
|
+
* Application ID for authentication and routing
|
|
12546
|
+
*/
|
|
12547
|
+
"x-application-key": string;
|
|
12548
|
+
};
|
|
12549
|
+
path?: never;
|
|
12550
|
+
query: {
|
|
12551
|
+
/**
|
|
12552
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
12553
|
+
*/
|
|
12554
|
+
include?: string;
|
|
12555
|
+
/**
|
|
12556
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
12557
|
+
*/
|
|
12558
|
+
fields?: {
|
|
12559
|
+
[key: string]: unknown;
|
|
12560
|
+
};
|
|
12561
|
+
query: string;
|
|
12562
|
+
};
|
|
12563
|
+
url: "/admin/threads/search";
|
|
12564
|
+
};
|
|
12565
|
+
type GetAdminThreadsSearchErrors = {
|
|
11804
12566
|
/**
|
|
11805
12567
|
* Bad Request - Invalid input data or malformed request
|
|
11806
12568
|
*/
|
|
@@ -19188,12 +19950,14 @@ type PostAdminThreadsData = {
|
|
|
19188
19950
|
body: {
|
|
19189
19951
|
data: {
|
|
19190
19952
|
attributes?: {
|
|
19953
|
+
application_id: string;
|
|
19191
19954
|
context_summary?: string | unknown;
|
|
19192
19955
|
previous_thread_id?: string | unknown;
|
|
19956
|
+
scope?: "workspace" | "dashboard" | unknown;
|
|
19193
19957
|
tenant_id: string;
|
|
19194
19958
|
title?: string | unknown;
|
|
19195
19959
|
user_id: string;
|
|
19196
|
-
workspace_id
|
|
19960
|
+
workspace_id?: string | unknown;
|
|
19197
19961
|
};
|
|
19198
19962
|
relationships?: {
|
|
19199
19963
|
[key: string]: never;
|
|
@@ -28447,6 +29211,15 @@ type PatchAdminWholesaleAgreementsByIdData = {
|
|
|
28447
29211
|
* Minimum payout amount in cents ($25.00 default)
|
|
28448
29212
|
*/
|
|
28449
29213
|
minimum_payout_cents?: number | unknown;
|
|
29214
|
+
/**
|
|
29215
|
+
* Per-service minimum retail floors that ISV must charge their tenants.
|
|
29216
|
+
* Format: [%{"service_id" => "doc_extraction_base", "minimum" => %Money{}}]
|
|
29217
|
+
* Platform admin sets these to ensure ISVs don't undercut below certain prices.
|
|
29218
|
+
*
|
|
29219
|
+
*/
|
|
29220
|
+
minimum_retail_floors?: Array<{
|
|
29221
|
+
[key: string]: unknown;
|
|
29222
|
+
}> | unknown;
|
|
28450
29223
|
/**
|
|
28451
29224
|
* Wholesale pricing model: percentage of retail or fixed floor rates
|
|
28452
29225
|
*/
|
|
@@ -31916,6 +32689,15 @@ type PostAdminWholesaleAgreementsData = {
|
|
|
31916
32689
|
* Minimum payout amount in cents ($25.00 default)
|
|
31917
32690
|
*/
|
|
31918
32691
|
minimum_payout_cents?: number | unknown;
|
|
32692
|
+
/**
|
|
32693
|
+
* Per-service minimum retail floors that ISV must charge their tenants.
|
|
32694
|
+
* Format: [%{"service_id" => "doc_extraction_base", "minimum" => %Money{}}]
|
|
32695
|
+
* Platform admin sets these to ensure ISVs don't undercut below certain prices.
|
|
32696
|
+
*
|
|
32697
|
+
*/
|
|
32698
|
+
minimum_retail_floors?: Array<{
|
|
32699
|
+
[key: string]: unknown;
|
|
32700
|
+
}> | unknown;
|
|
31919
32701
|
/**
|
|
31920
32702
|
* Wholesale pricing model: percentage of retail or fixed floor rates
|
|
31921
32703
|
*/
|
|
@@ -32919,40 +33701,429 @@ type PostAdminSystemMessagesErrors = {
|
|
|
32919
33701
|
*/
|
|
32920
33702
|
default: Errors;
|
|
32921
33703
|
};
|
|
32922
|
-
type PostAdminSystemMessagesError = PostAdminSystemMessagesErrors[keyof PostAdminSystemMessagesErrors];
|
|
32923
|
-
type PostAdminSystemMessagesResponses = {
|
|
33704
|
+
type PostAdminSystemMessagesError = PostAdminSystemMessagesErrors[keyof PostAdminSystemMessagesErrors];
|
|
33705
|
+
type PostAdminSystemMessagesResponses = {
|
|
33706
|
+
/**
|
|
33707
|
+
* Success
|
|
33708
|
+
*/
|
|
33709
|
+
201: {
|
|
33710
|
+
data?: SystemMessage;
|
|
33711
|
+
included?: Array<unknown>;
|
|
33712
|
+
meta?: {
|
|
33713
|
+
[key: string]: unknown;
|
|
33714
|
+
};
|
|
33715
|
+
};
|
|
33716
|
+
};
|
|
33717
|
+
type PostAdminSystemMessagesResponse = PostAdminSystemMessagesResponses[keyof PostAdminSystemMessagesResponses];
|
|
33718
|
+
type GetAdminBucketsData = {
|
|
33719
|
+
body?: never;
|
|
33720
|
+
headers: {
|
|
33721
|
+
/**
|
|
33722
|
+
* Application ID for authentication and routing
|
|
33723
|
+
*/
|
|
33724
|
+
"x-application-key": string;
|
|
33725
|
+
};
|
|
33726
|
+
path?: never;
|
|
33727
|
+
query?: {
|
|
33728
|
+
/**
|
|
33729
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
33730
|
+
*/
|
|
33731
|
+
filter?: {
|
|
33732
|
+
[key: string]: unknown;
|
|
33733
|
+
};
|
|
33734
|
+
/**
|
|
33735
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
33736
|
+
*/
|
|
33737
|
+
sort?: string;
|
|
33738
|
+
/**
|
|
33739
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
33740
|
+
*/
|
|
33741
|
+
include?: string;
|
|
33742
|
+
/**
|
|
33743
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
33744
|
+
*/
|
|
33745
|
+
fields?: {
|
|
33746
|
+
[key: string]: unknown;
|
|
33747
|
+
};
|
|
33748
|
+
};
|
|
33749
|
+
url: "/admin/buckets";
|
|
33750
|
+
};
|
|
33751
|
+
type GetAdminBucketsErrors = {
|
|
33752
|
+
/**
|
|
33753
|
+
* Bad Request - Invalid input data or malformed request
|
|
33754
|
+
*/
|
|
33755
|
+
400: ErrorResponse;
|
|
33756
|
+
/**
|
|
33757
|
+
* Unauthorized - Missing or invalid authentication token
|
|
33758
|
+
*/
|
|
33759
|
+
401: ErrorResponse;
|
|
33760
|
+
/**
|
|
33761
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
33762
|
+
*/
|
|
33763
|
+
403: ErrorResponse;
|
|
33764
|
+
/**
|
|
33765
|
+
* Not Found - Resource does not exist
|
|
33766
|
+
*/
|
|
33767
|
+
404: ErrorResponse;
|
|
33768
|
+
/**
|
|
33769
|
+
* Too Many Requests - Rate limit exceeded
|
|
33770
|
+
*/
|
|
33771
|
+
429: ErrorResponse;
|
|
33772
|
+
/**
|
|
33773
|
+
* Internal Server Error - Unexpected server error
|
|
33774
|
+
*/
|
|
33775
|
+
500: ErrorResponse;
|
|
33776
|
+
/**
|
|
33777
|
+
* General Error
|
|
33778
|
+
*/
|
|
33779
|
+
default: Errors;
|
|
33780
|
+
};
|
|
33781
|
+
type GetAdminBucketsError = GetAdminBucketsErrors[keyof GetAdminBucketsErrors];
|
|
33782
|
+
type GetAdminBucketsResponses = {
|
|
33783
|
+
/**
|
|
33784
|
+
* Success
|
|
33785
|
+
*/
|
|
33786
|
+
200: {
|
|
33787
|
+
/**
|
|
33788
|
+
* An array of resource objects representing a bucket
|
|
33789
|
+
*/
|
|
33790
|
+
data?: Array<Bucket>;
|
|
33791
|
+
included?: Array<unknown>;
|
|
33792
|
+
meta?: {
|
|
33793
|
+
[key: string]: unknown;
|
|
33794
|
+
};
|
|
33795
|
+
};
|
|
33796
|
+
};
|
|
33797
|
+
type GetAdminBucketsResponse = GetAdminBucketsResponses[keyof GetAdminBucketsResponses];
|
|
33798
|
+
type PostAdminBucketsData = {
|
|
33799
|
+
/**
|
|
33800
|
+
* Request body for the /buckets operation on bucket resource
|
|
33801
|
+
*/
|
|
33802
|
+
body: {
|
|
33803
|
+
data: {
|
|
33804
|
+
attributes?: {
|
|
33805
|
+
name: string;
|
|
33806
|
+
region?: string | unknown;
|
|
33807
|
+
tenant_id: string;
|
|
33808
|
+
type: "public" | "private" | "processing";
|
|
33809
|
+
};
|
|
33810
|
+
relationships?: {
|
|
33811
|
+
[key: string]: never;
|
|
33812
|
+
};
|
|
33813
|
+
type?: "bucket";
|
|
33814
|
+
};
|
|
33815
|
+
};
|
|
33816
|
+
headers: {
|
|
33817
|
+
/**
|
|
33818
|
+
* Application ID for authentication and routing
|
|
33819
|
+
*/
|
|
33820
|
+
"x-application-key": string;
|
|
33821
|
+
};
|
|
33822
|
+
path?: never;
|
|
33823
|
+
query?: {
|
|
33824
|
+
/**
|
|
33825
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
33826
|
+
*/
|
|
33827
|
+
include?: string;
|
|
33828
|
+
/**
|
|
33829
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
33830
|
+
*/
|
|
33831
|
+
fields?: {
|
|
33832
|
+
[key: string]: unknown;
|
|
33833
|
+
};
|
|
33834
|
+
};
|
|
33835
|
+
url: "/admin/buckets";
|
|
33836
|
+
};
|
|
33837
|
+
type PostAdminBucketsErrors = {
|
|
33838
|
+
/**
|
|
33839
|
+
* Bad Request - Invalid input data or malformed request
|
|
33840
|
+
*/
|
|
33841
|
+
400: ErrorResponse;
|
|
33842
|
+
/**
|
|
33843
|
+
* Unauthorized - Missing or invalid authentication token
|
|
33844
|
+
*/
|
|
33845
|
+
401: ErrorResponse;
|
|
33846
|
+
/**
|
|
33847
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
33848
|
+
*/
|
|
33849
|
+
403: ErrorResponse;
|
|
33850
|
+
/**
|
|
33851
|
+
* Not Found - Resource does not exist
|
|
33852
|
+
*/
|
|
33853
|
+
404: ErrorResponse;
|
|
33854
|
+
/**
|
|
33855
|
+
* Too Many Requests - Rate limit exceeded
|
|
33856
|
+
*/
|
|
33857
|
+
429: ErrorResponse;
|
|
33858
|
+
/**
|
|
33859
|
+
* Internal Server Error - Unexpected server error
|
|
33860
|
+
*/
|
|
33861
|
+
500: ErrorResponse;
|
|
33862
|
+
/**
|
|
33863
|
+
* General Error
|
|
33864
|
+
*/
|
|
33865
|
+
default: Errors;
|
|
33866
|
+
};
|
|
33867
|
+
type PostAdminBucketsError = PostAdminBucketsErrors[keyof PostAdminBucketsErrors];
|
|
33868
|
+
type PostAdminBucketsResponses = {
|
|
33869
|
+
/**
|
|
33870
|
+
* Success
|
|
33871
|
+
*/
|
|
33872
|
+
201: {
|
|
33873
|
+
data?: Bucket;
|
|
33874
|
+
included?: Array<unknown>;
|
|
33875
|
+
meta?: {
|
|
33876
|
+
[key: string]: unknown;
|
|
33877
|
+
};
|
|
33878
|
+
};
|
|
33879
|
+
};
|
|
33880
|
+
type PostAdminBucketsResponse = PostAdminBucketsResponses[keyof PostAdminBucketsResponses];
|
|
33881
|
+
type GetAdminSearchHealthData = {
|
|
33882
|
+
body?: never;
|
|
33883
|
+
headers: {
|
|
33884
|
+
/**
|
|
33885
|
+
* Application ID for authentication and routing
|
|
33886
|
+
*/
|
|
33887
|
+
"x-application-key": string;
|
|
33888
|
+
};
|
|
33889
|
+
path?: never;
|
|
33890
|
+
query?: {
|
|
33891
|
+
/**
|
|
33892
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
33893
|
+
*/
|
|
33894
|
+
filter?: {
|
|
33895
|
+
[key: string]: unknown;
|
|
33896
|
+
};
|
|
33897
|
+
/**
|
|
33898
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
33899
|
+
*/
|
|
33900
|
+
sort?: string;
|
|
33901
|
+
/**
|
|
33902
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
33903
|
+
*/
|
|
33904
|
+
include?: string;
|
|
33905
|
+
/**
|
|
33906
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
33907
|
+
*/
|
|
33908
|
+
fields?: {
|
|
33909
|
+
[key: string]: unknown;
|
|
33910
|
+
};
|
|
33911
|
+
};
|
|
33912
|
+
url: "/admin/search/health";
|
|
33913
|
+
};
|
|
33914
|
+
type GetAdminSearchHealthErrors = {
|
|
33915
|
+
/**
|
|
33916
|
+
* Bad Request - Invalid input data or malformed request
|
|
33917
|
+
*/
|
|
33918
|
+
400: ErrorResponse;
|
|
33919
|
+
/**
|
|
33920
|
+
* Unauthorized - Missing or invalid authentication token
|
|
33921
|
+
*/
|
|
33922
|
+
401: ErrorResponse;
|
|
33923
|
+
/**
|
|
33924
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
33925
|
+
*/
|
|
33926
|
+
403: ErrorResponse;
|
|
33927
|
+
/**
|
|
33928
|
+
* Not Found - Resource does not exist
|
|
33929
|
+
*/
|
|
33930
|
+
404: ErrorResponse;
|
|
33931
|
+
/**
|
|
33932
|
+
* Too Many Requests - Rate limit exceeded
|
|
33933
|
+
*/
|
|
33934
|
+
429: ErrorResponse;
|
|
33935
|
+
/**
|
|
33936
|
+
* Internal Server Error - Unexpected server error
|
|
33937
|
+
*/
|
|
33938
|
+
500: ErrorResponse;
|
|
33939
|
+
/**
|
|
33940
|
+
* General Error
|
|
33941
|
+
*/
|
|
33942
|
+
default: Errors;
|
|
33943
|
+
};
|
|
33944
|
+
type GetAdminSearchHealthError = GetAdminSearchHealthErrors[keyof GetAdminSearchHealthErrors];
|
|
33945
|
+
type GetAdminSearchHealthResponses = {
|
|
33946
|
+
/**
|
|
33947
|
+
* Success
|
|
33948
|
+
*/
|
|
33949
|
+
200: {
|
|
33950
|
+
/**
|
|
33951
|
+
* An array of resource objects representing a search
|
|
33952
|
+
*/
|
|
33953
|
+
data?: Array<Search>;
|
|
33954
|
+
included?: Array<unknown>;
|
|
33955
|
+
meta?: {
|
|
33956
|
+
[key: string]: unknown;
|
|
33957
|
+
};
|
|
33958
|
+
};
|
|
33959
|
+
};
|
|
33960
|
+
type GetAdminSearchHealthResponse = GetAdminSearchHealthResponses[keyof GetAdminSearchHealthResponses];
|
|
33961
|
+
type PatchAdminNotificationMethodsByIdVerifyData = {
|
|
33962
|
+
/**
|
|
33963
|
+
* Request body for the /notification_methods/:id/verify operation on notification_method resource
|
|
33964
|
+
*/
|
|
33965
|
+
body?: {
|
|
33966
|
+
data: {
|
|
33967
|
+
attributes?: {
|
|
33968
|
+
[key: string]: never;
|
|
33969
|
+
};
|
|
33970
|
+
id: string;
|
|
33971
|
+
relationships?: {
|
|
33972
|
+
[key: string]: never;
|
|
33973
|
+
};
|
|
33974
|
+
type?: "notification_method";
|
|
33975
|
+
};
|
|
33976
|
+
};
|
|
33977
|
+
headers: {
|
|
33978
|
+
/**
|
|
33979
|
+
* Application ID for authentication and routing
|
|
33980
|
+
*/
|
|
33981
|
+
"x-application-key": string;
|
|
33982
|
+
};
|
|
33983
|
+
path: {
|
|
33984
|
+
id: string;
|
|
33985
|
+
};
|
|
33986
|
+
query?: {
|
|
33987
|
+
/**
|
|
33988
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
33989
|
+
*/
|
|
33990
|
+
include?: string;
|
|
33991
|
+
/**
|
|
33992
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
33993
|
+
*/
|
|
33994
|
+
fields?: {
|
|
33995
|
+
[key: string]: unknown;
|
|
33996
|
+
};
|
|
33997
|
+
};
|
|
33998
|
+
url: "/admin/notification_methods/{id}/verify";
|
|
33999
|
+
};
|
|
34000
|
+
type PatchAdminNotificationMethodsByIdVerifyErrors = {
|
|
34001
|
+
/**
|
|
34002
|
+
* Bad Request - Invalid input data or malformed request
|
|
34003
|
+
*/
|
|
34004
|
+
400: ErrorResponse;
|
|
34005
|
+
/**
|
|
34006
|
+
* Unauthorized - Missing or invalid authentication token
|
|
34007
|
+
*/
|
|
34008
|
+
401: ErrorResponse;
|
|
34009
|
+
/**
|
|
34010
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
34011
|
+
*/
|
|
34012
|
+
403: ErrorResponse;
|
|
34013
|
+
/**
|
|
34014
|
+
* Not Found - Resource does not exist
|
|
34015
|
+
*/
|
|
34016
|
+
404: ErrorResponse;
|
|
34017
|
+
/**
|
|
34018
|
+
* Too Many Requests - Rate limit exceeded
|
|
34019
|
+
*/
|
|
34020
|
+
429: ErrorResponse;
|
|
34021
|
+
/**
|
|
34022
|
+
* Internal Server Error - Unexpected server error
|
|
34023
|
+
*/
|
|
34024
|
+
500: ErrorResponse;
|
|
34025
|
+
/**
|
|
34026
|
+
* General Error
|
|
34027
|
+
*/
|
|
34028
|
+
default: Errors;
|
|
34029
|
+
};
|
|
34030
|
+
type PatchAdminNotificationMethodsByIdVerifyError = PatchAdminNotificationMethodsByIdVerifyErrors[keyof PatchAdminNotificationMethodsByIdVerifyErrors];
|
|
34031
|
+
type PatchAdminNotificationMethodsByIdVerifyResponses = {
|
|
34032
|
+
/**
|
|
34033
|
+
* Success
|
|
34034
|
+
*/
|
|
34035
|
+
200: {
|
|
34036
|
+
data?: NotificationMethod;
|
|
34037
|
+
included?: Array<unknown>;
|
|
34038
|
+
meta?: {
|
|
34039
|
+
[key: string]: unknown;
|
|
34040
|
+
};
|
|
34041
|
+
};
|
|
34042
|
+
};
|
|
34043
|
+
type PatchAdminNotificationMethodsByIdVerifyResponse = PatchAdminNotificationMethodsByIdVerifyResponses[keyof PatchAdminNotificationMethodsByIdVerifyResponses];
|
|
34044
|
+
type GetAdminAgentVersionsByIdMetricsData = {
|
|
34045
|
+
body?: never;
|
|
34046
|
+
headers: {
|
|
34047
|
+
/**
|
|
34048
|
+
* Application ID for authentication and routing
|
|
34049
|
+
*/
|
|
34050
|
+
"x-application-key": string;
|
|
34051
|
+
};
|
|
34052
|
+
path: {
|
|
34053
|
+
id: string;
|
|
34054
|
+
};
|
|
34055
|
+
query?: {
|
|
34056
|
+
date_range_end?: unknown;
|
|
34057
|
+
date_range_start?: unknown;
|
|
34058
|
+
};
|
|
34059
|
+
url: "/admin/agent_versions/{id}/metrics";
|
|
34060
|
+
};
|
|
34061
|
+
type GetAdminAgentVersionsByIdMetricsErrors = {
|
|
34062
|
+
/**
|
|
34063
|
+
* Bad Request - Invalid input data or malformed request
|
|
34064
|
+
*/
|
|
34065
|
+
400: ErrorResponse;
|
|
34066
|
+
/**
|
|
34067
|
+
* Unauthorized - Missing or invalid authentication token
|
|
34068
|
+
*/
|
|
34069
|
+
401: ErrorResponse;
|
|
34070
|
+
/**
|
|
34071
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
34072
|
+
*/
|
|
34073
|
+
403: ErrorResponse;
|
|
34074
|
+
/**
|
|
34075
|
+
* Not Found - Resource does not exist
|
|
34076
|
+
*/
|
|
34077
|
+
404: ErrorResponse;
|
|
34078
|
+
/**
|
|
34079
|
+
* Too Many Requests - Rate limit exceeded
|
|
34080
|
+
*/
|
|
34081
|
+
429: ErrorResponse;
|
|
34082
|
+
/**
|
|
34083
|
+
* Internal Server Error - Unexpected server error
|
|
34084
|
+
*/
|
|
34085
|
+
500: ErrorResponse;
|
|
34086
|
+
/**
|
|
34087
|
+
* General Error
|
|
34088
|
+
*/
|
|
34089
|
+
default: Errors;
|
|
34090
|
+
};
|
|
34091
|
+
type GetAdminAgentVersionsByIdMetricsError = GetAdminAgentVersionsByIdMetricsErrors[keyof GetAdminAgentVersionsByIdMetricsErrors];
|
|
34092
|
+
type GetAdminAgentVersionsByIdMetricsResponses = {
|
|
32924
34093
|
/**
|
|
32925
34094
|
* Success
|
|
32926
34095
|
*/
|
|
32927
|
-
|
|
32928
|
-
|
|
32929
|
-
included?: Array<unknown>;
|
|
32930
|
-
meta?: {
|
|
32931
|
-
[key: string]: unknown;
|
|
32932
|
-
};
|
|
34096
|
+
200: {
|
|
34097
|
+
[key: string]: unknown;
|
|
32933
34098
|
};
|
|
32934
34099
|
};
|
|
32935
|
-
type
|
|
32936
|
-
type
|
|
32937
|
-
|
|
34100
|
+
type GetAdminAgentVersionsByIdMetricsResponse = GetAdminAgentVersionsByIdMetricsResponses[keyof GetAdminAgentVersionsByIdMetricsResponses];
|
|
34101
|
+
type PatchAdminExtractionDocumentsByIdDismissTrainingData = {
|
|
34102
|
+
/**
|
|
34103
|
+
* Request body for the /extraction/documents/:id/dismiss-training operation on extraction_document resource
|
|
34104
|
+
*/
|
|
34105
|
+
body?: {
|
|
34106
|
+
data: {
|
|
34107
|
+
attributes?: {
|
|
34108
|
+
[key: string]: never;
|
|
34109
|
+
};
|
|
34110
|
+
id: string;
|
|
34111
|
+
relationships?: {
|
|
34112
|
+
[key: string]: never;
|
|
34113
|
+
};
|
|
34114
|
+
type?: "extraction_document";
|
|
34115
|
+
};
|
|
34116
|
+
};
|
|
32938
34117
|
headers: {
|
|
32939
34118
|
/**
|
|
32940
34119
|
* Application ID for authentication and routing
|
|
32941
34120
|
*/
|
|
32942
34121
|
"x-application-key": string;
|
|
32943
34122
|
};
|
|
32944
|
-
path
|
|
34123
|
+
path: {
|
|
34124
|
+
id: string;
|
|
34125
|
+
};
|
|
32945
34126
|
query?: {
|
|
32946
|
-
/**
|
|
32947
|
-
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
32948
|
-
*/
|
|
32949
|
-
filter?: {
|
|
32950
|
-
[key: string]: unknown;
|
|
32951
|
-
};
|
|
32952
|
-
/**
|
|
32953
|
-
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
32954
|
-
*/
|
|
32955
|
-
sort?: string;
|
|
32956
34127
|
/**
|
|
32957
34128
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
32958
34129
|
*/
|
|
@@ -32964,9 +34135,9 @@ type GetAdminBucketsData = {
|
|
|
32964
34135
|
[key: string]: unknown;
|
|
32965
34136
|
};
|
|
32966
34137
|
};
|
|
32967
|
-
url: "/admin/
|
|
34138
|
+
url: "/admin/extraction/documents/{id}/dismiss-training";
|
|
32968
34139
|
};
|
|
32969
|
-
type
|
|
34140
|
+
type PatchAdminExtractionDocumentsByIdDismissTrainingErrors = {
|
|
32970
34141
|
/**
|
|
32971
34142
|
* Bad Request - Invalid input data or malformed request
|
|
32972
34143
|
*/
|
|
@@ -32996,39 +34167,34 @@ type GetAdminBucketsErrors = {
|
|
|
32996
34167
|
*/
|
|
32997
34168
|
default: Errors;
|
|
32998
34169
|
};
|
|
32999
|
-
type
|
|
33000
|
-
type
|
|
34170
|
+
type PatchAdminExtractionDocumentsByIdDismissTrainingError = PatchAdminExtractionDocumentsByIdDismissTrainingErrors[keyof PatchAdminExtractionDocumentsByIdDismissTrainingErrors];
|
|
34171
|
+
type PatchAdminExtractionDocumentsByIdDismissTrainingResponses = {
|
|
33001
34172
|
/**
|
|
33002
34173
|
* Success
|
|
33003
34174
|
*/
|
|
33004
34175
|
200: {
|
|
33005
|
-
|
|
33006
|
-
|
|
33007
|
-
*/
|
|
33008
|
-
data?: Array<Bucket>;
|
|
33009
|
-
included?: Array<unknown>;
|
|
34176
|
+
data?: ExtractionDocument;
|
|
34177
|
+
included?: Array<ExtractionResult>;
|
|
33010
34178
|
meta?: {
|
|
33011
34179
|
[key: string]: unknown;
|
|
33012
34180
|
};
|
|
33013
34181
|
};
|
|
33014
34182
|
};
|
|
33015
|
-
type
|
|
33016
|
-
type
|
|
34183
|
+
type PatchAdminExtractionDocumentsByIdDismissTrainingResponse = PatchAdminExtractionDocumentsByIdDismissTrainingResponses[keyof PatchAdminExtractionDocumentsByIdDismissTrainingResponses];
|
|
34184
|
+
type PostAdminExtractionSchemaDiscoveriesData = {
|
|
33017
34185
|
/**
|
|
33018
|
-
* Request body for the /
|
|
34186
|
+
* Request body for the /extraction/schema_discoveries operation on schema_discovery resource
|
|
33019
34187
|
*/
|
|
33020
34188
|
body: {
|
|
33021
34189
|
data: {
|
|
33022
34190
|
attributes?: {
|
|
33023
|
-
|
|
33024
|
-
|
|
33025
|
-
tenant_id: string;
|
|
33026
|
-
type: "public" | "private" | "processing";
|
|
34191
|
+
agent_id: string;
|
|
34192
|
+
document_id: string;
|
|
33027
34193
|
};
|
|
33028
34194
|
relationships?: {
|
|
33029
34195
|
[key: string]: never;
|
|
33030
34196
|
};
|
|
33031
|
-
type?: "
|
|
34197
|
+
type?: "schema_discovery";
|
|
33032
34198
|
};
|
|
33033
34199
|
};
|
|
33034
34200
|
headers: {
|
|
@@ -33050,9 +34216,9 @@ type PostAdminBucketsData = {
|
|
|
33050
34216
|
[key: string]: unknown;
|
|
33051
34217
|
};
|
|
33052
34218
|
};
|
|
33053
|
-
url: "/admin/
|
|
34219
|
+
url: "/admin/extraction/schema_discoveries";
|
|
33054
34220
|
};
|
|
33055
|
-
type
|
|
34221
|
+
type PostAdminExtractionSchemaDiscoveriesErrors = {
|
|
33056
34222
|
/**
|
|
33057
34223
|
* Bad Request - Invalid input data or malformed request
|
|
33058
34224
|
*/
|
|
@@ -33082,21 +34248,21 @@ type PostAdminBucketsErrors = {
|
|
|
33082
34248
|
*/
|
|
33083
34249
|
default: Errors;
|
|
33084
34250
|
};
|
|
33085
|
-
type
|
|
33086
|
-
type
|
|
34251
|
+
type PostAdminExtractionSchemaDiscoveriesError = PostAdminExtractionSchemaDiscoveriesErrors[keyof PostAdminExtractionSchemaDiscoveriesErrors];
|
|
34252
|
+
type PostAdminExtractionSchemaDiscoveriesResponses = {
|
|
33087
34253
|
/**
|
|
33088
34254
|
* Success
|
|
33089
34255
|
*/
|
|
33090
34256
|
201: {
|
|
33091
|
-
data?:
|
|
34257
|
+
data?: SchemaDiscovery;
|
|
33092
34258
|
included?: Array<unknown>;
|
|
33093
34259
|
meta?: {
|
|
33094
34260
|
[key: string]: unknown;
|
|
33095
34261
|
};
|
|
33096
34262
|
};
|
|
33097
34263
|
};
|
|
33098
|
-
type
|
|
33099
|
-
type
|
|
34264
|
+
type PostAdminExtractionSchemaDiscoveriesResponse = PostAdminExtractionSchemaDiscoveriesResponses[keyof PostAdminExtractionSchemaDiscoveriesResponses];
|
|
34265
|
+
type GetAdminTrainingSessionsAgentsByAgentIdSessionsData = {
|
|
33100
34266
|
body?: never;
|
|
33101
34267
|
headers: {
|
|
33102
34268
|
/**
|
|
@@ -33104,7 +34270,9 @@ type GetAdminSearchHealthData = {
|
|
|
33104
34270
|
*/
|
|
33105
34271
|
"x-application-key": string;
|
|
33106
34272
|
};
|
|
33107
|
-
path
|
|
34273
|
+
path: {
|
|
34274
|
+
agent_id: string;
|
|
34275
|
+
};
|
|
33108
34276
|
query?: {
|
|
33109
34277
|
/**
|
|
33110
34278
|
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
@@ -33127,9 +34295,9 @@ type GetAdminSearchHealthData = {
|
|
|
33127
34295
|
[key: string]: unknown;
|
|
33128
34296
|
};
|
|
33129
34297
|
};
|
|
33130
|
-
url: "/admin/
|
|
34298
|
+
url: "/admin/training_sessions/agents/{agent_id}/sessions";
|
|
33131
34299
|
};
|
|
33132
|
-
type
|
|
34300
|
+
type GetAdminTrainingSessionsAgentsByAgentIdSessionsErrors = {
|
|
33133
34301
|
/**
|
|
33134
34302
|
* Bad Request - Invalid input data or malformed request
|
|
33135
34303
|
*/
|
|
@@ -33159,26 +34327,26 @@ type GetAdminSearchHealthErrors = {
|
|
|
33159
34327
|
*/
|
|
33160
34328
|
default: Errors;
|
|
33161
34329
|
};
|
|
33162
|
-
type
|
|
33163
|
-
type
|
|
34330
|
+
type GetAdminTrainingSessionsAgentsByAgentIdSessionsError = GetAdminTrainingSessionsAgentsByAgentIdSessionsErrors[keyof GetAdminTrainingSessionsAgentsByAgentIdSessionsErrors];
|
|
34331
|
+
type GetAdminTrainingSessionsAgentsByAgentIdSessionsResponses = {
|
|
33164
34332
|
/**
|
|
33165
34333
|
* Success
|
|
33166
34334
|
*/
|
|
33167
34335
|
200: {
|
|
33168
34336
|
/**
|
|
33169
|
-
* An array of resource objects representing a
|
|
34337
|
+
* An array of resource objects representing a training_session
|
|
33170
34338
|
*/
|
|
33171
|
-
data?: Array<
|
|
34339
|
+
data?: Array<TrainingSession>;
|
|
33172
34340
|
included?: Array<unknown>;
|
|
33173
34341
|
meta?: {
|
|
33174
34342
|
[key: string]: unknown;
|
|
33175
34343
|
};
|
|
33176
34344
|
};
|
|
33177
34345
|
};
|
|
33178
|
-
type
|
|
33179
|
-
type
|
|
34346
|
+
type GetAdminTrainingSessionsAgentsByAgentIdSessionsResponse = GetAdminTrainingSessionsAgentsByAgentIdSessionsResponses[keyof GetAdminTrainingSessionsAgentsByAgentIdSessionsResponses];
|
|
34347
|
+
type PatchAdminNotificationMethodsByIdSetPrimaryData = {
|
|
33180
34348
|
/**
|
|
33181
|
-
* Request body for the /notification_methods/:id/
|
|
34349
|
+
* Request body for the /notification_methods/:id/set_primary operation on notification_method resource
|
|
33182
34350
|
*/
|
|
33183
34351
|
body?: {
|
|
33184
34352
|
data: {
|
|
@@ -33213,9 +34381,9 @@ type PatchAdminNotificationMethodsByIdVerifyData = {
|
|
|
33213
34381
|
[key: string]: unknown;
|
|
33214
34382
|
};
|
|
33215
34383
|
};
|
|
33216
|
-
url: "/admin/notification_methods/{id}/
|
|
34384
|
+
url: "/admin/notification_methods/{id}/set_primary";
|
|
33217
34385
|
};
|
|
33218
|
-
type
|
|
34386
|
+
type PatchAdminNotificationMethodsByIdSetPrimaryErrors = {
|
|
33219
34387
|
/**
|
|
33220
34388
|
* Bad Request - Invalid input data or malformed request
|
|
33221
34389
|
*/
|
|
@@ -33245,8 +34413,8 @@ type PatchAdminNotificationMethodsByIdVerifyErrors = {
|
|
|
33245
34413
|
*/
|
|
33246
34414
|
default: Errors;
|
|
33247
34415
|
};
|
|
33248
|
-
type
|
|
33249
|
-
type
|
|
34416
|
+
type PatchAdminNotificationMethodsByIdSetPrimaryError = PatchAdminNotificationMethodsByIdSetPrimaryErrors[keyof PatchAdminNotificationMethodsByIdSetPrimaryErrors];
|
|
34417
|
+
type PatchAdminNotificationMethodsByIdSetPrimaryResponses = {
|
|
33250
34418
|
/**
|
|
33251
34419
|
* Success
|
|
33252
34420
|
*/
|
|
@@ -33258,8 +34426,8 @@ type PatchAdminNotificationMethodsByIdVerifyResponses = {
|
|
|
33258
34426
|
};
|
|
33259
34427
|
};
|
|
33260
34428
|
};
|
|
33261
|
-
type
|
|
33262
|
-
type
|
|
34429
|
+
type PatchAdminNotificationMethodsByIdSetPrimaryResponse = PatchAdminNotificationMethodsByIdSetPrimaryResponses[keyof PatchAdminNotificationMethodsByIdSetPrimaryResponses];
|
|
34430
|
+
type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedData = {
|
|
33263
34431
|
body?: never;
|
|
33264
34432
|
headers: {
|
|
33265
34433
|
/**
|
|
@@ -33268,15 +34436,40 @@ type GetAdminAgentVersionsByIdMetricsData = {
|
|
|
33268
34436
|
"x-application-key": string;
|
|
33269
34437
|
};
|
|
33270
34438
|
path: {
|
|
33271
|
-
|
|
34439
|
+
workspace_id: string;
|
|
33272
34440
|
};
|
|
33273
34441
|
query?: {
|
|
33274
|
-
|
|
33275
|
-
|
|
34442
|
+
/**
|
|
34443
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
34444
|
+
*/
|
|
34445
|
+
filter?: {
|
|
34446
|
+
[key: string]: unknown;
|
|
34447
|
+
};
|
|
34448
|
+
/**
|
|
34449
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
34450
|
+
*/
|
|
34451
|
+
sort?: string;
|
|
34452
|
+
/**
|
|
34453
|
+
* JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
|
|
34454
|
+
*/
|
|
34455
|
+
page?: {
|
|
34456
|
+
[key: string]: unknown;
|
|
34457
|
+
};
|
|
34458
|
+
/**
|
|
34459
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
34460
|
+
*/
|
|
34461
|
+
include?: string;
|
|
34462
|
+
/**
|
|
34463
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
34464
|
+
*/
|
|
34465
|
+
fields?: {
|
|
34466
|
+
[key: string]: unknown;
|
|
34467
|
+
};
|
|
34468
|
+
limit?: number;
|
|
33276
34469
|
};
|
|
33277
|
-
url: "/admin/
|
|
34470
|
+
url: "/admin/extraction/documents/workspace/{workspace_id}/excluded";
|
|
33278
34471
|
};
|
|
33279
|
-
type
|
|
34472
|
+
type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedErrors = {
|
|
33280
34473
|
/**
|
|
33281
34474
|
* Bad Request - Invalid input data or malformed request
|
|
33282
34475
|
*/
|
|
@@ -33306,32 +34499,25 @@ type GetAdminAgentVersionsByIdMetricsErrors = {
|
|
|
33306
34499
|
*/
|
|
33307
34500
|
default: Errors;
|
|
33308
34501
|
};
|
|
33309
|
-
type
|
|
33310
|
-
type
|
|
34502
|
+
type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedError = GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedErrors[keyof GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedErrors];
|
|
34503
|
+
type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponses = {
|
|
33311
34504
|
/**
|
|
33312
34505
|
* Success
|
|
33313
34506
|
*/
|
|
33314
34507
|
200: {
|
|
33315
|
-
|
|
33316
|
-
|
|
33317
|
-
|
|
33318
|
-
|
|
33319
|
-
|
|
33320
|
-
|
|
33321
|
-
|
|
33322
|
-
*/
|
|
33323
|
-
body?: {
|
|
33324
|
-
data: {
|
|
33325
|
-
attributes?: {
|
|
33326
|
-
[key: string]: never;
|
|
33327
|
-
};
|
|
33328
|
-
id: string;
|
|
33329
|
-
relationships?: {
|
|
33330
|
-
[key: string]: never;
|
|
33331
|
-
};
|
|
33332
|
-
type?: "extraction_document";
|
|
34508
|
+
/**
|
|
34509
|
+
* An array of resource objects representing a extraction_document
|
|
34510
|
+
*/
|
|
34511
|
+
data?: Array<ExtractionDocument>;
|
|
34512
|
+
included?: Array<ExtractionResult>;
|
|
34513
|
+
meta?: {
|
|
34514
|
+
[key: string]: unknown;
|
|
33333
34515
|
};
|
|
33334
34516
|
};
|
|
34517
|
+
};
|
|
34518
|
+
type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponse = GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponses[keyof GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponses];
|
|
34519
|
+
type DeleteAdminAiGraphNodesByIdData = {
|
|
34520
|
+
body?: never;
|
|
33335
34521
|
headers: {
|
|
33336
34522
|
/**
|
|
33337
34523
|
* Application ID for authentication and routing
|
|
@@ -33353,9 +34539,9 @@ type PatchAdminExtractionDocumentsByIdDismissTrainingData = {
|
|
|
33353
34539
|
[key: string]: unknown;
|
|
33354
34540
|
};
|
|
33355
34541
|
};
|
|
33356
|
-
url: "/admin/
|
|
34542
|
+
url: "/admin/ai/graph/nodes/{id}";
|
|
33357
34543
|
};
|
|
33358
|
-
type
|
|
34544
|
+
type DeleteAdminAiGraphNodesByIdErrors = {
|
|
33359
34545
|
/**
|
|
33360
34546
|
* Bad Request - Invalid input data or malformed request
|
|
33361
34547
|
*/
|
|
@@ -33385,43 +34571,24 @@ type PatchAdminExtractionDocumentsByIdDismissTrainingErrors = {
|
|
|
33385
34571
|
*/
|
|
33386
34572
|
default: Errors;
|
|
33387
34573
|
};
|
|
33388
|
-
type
|
|
33389
|
-
type
|
|
34574
|
+
type DeleteAdminAiGraphNodesByIdError = DeleteAdminAiGraphNodesByIdErrors[keyof DeleteAdminAiGraphNodesByIdErrors];
|
|
34575
|
+
type DeleteAdminAiGraphNodesByIdResponses = {
|
|
33390
34576
|
/**
|
|
33391
|
-
*
|
|
34577
|
+
* Deleted successfully
|
|
33392
34578
|
*/
|
|
33393
|
-
200:
|
|
33394
|
-
data?: ExtractionDocument;
|
|
33395
|
-
included?: Array<ExtractionResult>;
|
|
33396
|
-
meta?: {
|
|
33397
|
-
[key: string]: unknown;
|
|
33398
|
-
};
|
|
33399
|
-
};
|
|
34579
|
+
200: unknown;
|
|
33400
34580
|
};
|
|
33401
|
-
type
|
|
33402
|
-
|
|
33403
|
-
/**
|
|
33404
|
-
* Request body for the /extraction/schema_discoveries operation on schema_discovery resource
|
|
33405
|
-
*/
|
|
33406
|
-
body: {
|
|
33407
|
-
data: {
|
|
33408
|
-
attributes?: {
|
|
33409
|
-
agent_id: string;
|
|
33410
|
-
document_id: string;
|
|
33411
|
-
};
|
|
33412
|
-
relationships?: {
|
|
33413
|
-
[key: string]: never;
|
|
33414
|
-
};
|
|
33415
|
-
type?: "schema_discovery";
|
|
33416
|
-
};
|
|
33417
|
-
};
|
|
34581
|
+
type DeleteAdminBucketsByIdData = {
|
|
34582
|
+
body?: never;
|
|
33418
34583
|
headers: {
|
|
33419
34584
|
/**
|
|
33420
34585
|
* Application ID for authentication and routing
|
|
33421
34586
|
*/
|
|
33422
34587
|
"x-application-key": string;
|
|
33423
34588
|
};
|
|
33424
|
-
path
|
|
34589
|
+
path: {
|
|
34590
|
+
id: string;
|
|
34591
|
+
};
|
|
33425
34592
|
query?: {
|
|
33426
34593
|
/**
|
|
33427
34594
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -33434,9 +34601,9 @@ type PostAdminExtractionSchemaDiscoveriesData = {
|
|
|
33434
34601
|
[key: string]: unknown;
|
|
33435
34602
|
};
|
|
33436
34603
|
};
|
|
33437
|
-
url: "/admin/
|
|
34604
|
+
url: "/admin/buckets/{id}";
|
|
33438
34605
|
};
|
|
33439
|
-
type
|
|
34606
|
+
type DeleteAdminBucketsByIdErrors = {
|
|
33440
34607
|
/**
|
|
33441
34608
|
* Bad Request - Invalid input data or malformed request
|
|
33442
34609
|
*/
|
|
@@ -33466,21 +34633,14 @@ type PostAdminExtractionSchemaDiscoveriesErrors = {
|
|
|
33466
34633
|
*/
|
|
33467
34634
|
default: Errors;
|
|
33468
34635
|
};
|
|
33469
|
-
type
|
|
33470
|
-
type
|
|
34636
|
+
type DeleteAdminBucketsByIdError = DeleteAdminBucketsByIdErrors[keyof DeleteAdminBucketsByIdErrors];
|
|
34637
|
+
type DeleteAdminBucketsByIdResponses = {
|
|
33471
34638
|
/**
|
|
33472
|
-
*
|
|
34639
|
+
* Deleted successfully
|
|
33473
34640
|
*/
|
|
33474
|
-
|
|
33475
|
-
data?: SchemaDiscovery;
|
|
33476
|
-
included?: Array<unknown>;
|
|
33477
|
-
meta?: {
|
|
33478
|
-
[key: string]: unknown;
|
|
33479
|
-
};
|
|
33480
|
-
};
|
|
34641
|
+
200: unknown;
|
|
33481
34642
|
};
|
|
33482
|
-
type
|
|
33483
|
-
type GetAdminTrainingSessionsAgentsByAgentIdSessionsData = {
|
|
34643
|
+
type GetAdminBucketsByIdData = {
|
|
33484
34644
|
body?: never;
|
|
33485
34645
|
headers: {
|
|
33486
34646
|
/**
|
|
@@ -33489,19 +34649,9 @@ type GetAdminTrainingSessionsAgentsByAgentIdSessionsData = {
|
|
|
33489
34649
|
"x-application-key": string;
|
|
33490
34650
|
};
|
|
33491
34651
|
path: {
|
|
33492
|
-
|
|
34652
|
+
id: string;
|
|
33493
34653
|
};
|
|
33494
34654
|
query?: {
|
|
33495
|
-
/**
|
|
33496
|
-
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
33497
|
-
*/
|
|
33498
|
-
filter?: {
|
|
33499
|
-
[key: string]: unknown;
|
|
33500
|
-
};
|
|
33501
|
-
/**
|
|
33502
|
-
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
33503
|
-
*/
|
|
33504
|
-
sort?: string;
|
|
33505
34655
|
/**
|
|
33506
34656
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
33507
34657
|
*/
|
|
@@ -33513,9 +34663,9 @@ type GetAdminTrainingSessionsAgentsByAgentIdSessionsData = {
|
|
|
33513
34663
|
[key: string]: unknown;
|
|
33514
34664
|
};
|
|
33515
34665
|
};
|
|
33516
|
-
url: "/admin/
|
|
34666
|
+
url: "/admin/buckets/{id}";
|
|
33517
34667
|
};
|
|
33518
|
-
type
|
|
34668
|
+
type GetAdminBucketsByIdErrors = {
|
|
33519
34669
|
/**
|
|
33520
34670
|
* Bad Request - Invalid input data or malformed request
|
|
33521
34671
|
*/
|
|
@@ -33545,37 +34695,34 @@ type GetAdminTrainingSessionsAgentsByAgentIdSessionsErrors = {
|
|
|
33545
34695
|
*/
|
|
33546
34696
|
default: Errors;
|
|
33547
34697
|
};
|
|
33548
|
-
type
|
|
33549
|
-
type
|
|
34698
|
+
type GetAdminBucketsByIdError = GetAdminBucketsByIdErrors[keyof GetAdminBucketsByIdErrors];
|
|
34699
|
+
type GetAdminBucketsByIdResponses = {
|
|
33550
34700
|
/**
|
|
33551
34701
|
* Success
|
|
33552
34702
|
*/
|
|
33553
34703
|
200: {
|
|
33554
|
-
|
|
33555
|
-
* An array of resource objects representing a training_session
|
|
33556
|
-
*/
|
|
33557
|
-
data?: Array<TrainingSession>;
|
|
34704
|
+
data?: Bucket;
|
|
33558
34705
|
included?: Array<unknown>;
|
|
33559
34706
|
meta?: {
|
|
33560
34707
|
[key: string]: unknown;
|
|
33561
34708
|
};
|
|
33562
34709
|
};
|
|
33563
34710
|
};
|
|
33564
|
-
type
|
|
33565
|
-
type
|
|
34711
|
+
type GetAdminBucketsByIdResponse = GetAdminBucketsByIdResponses[keyof GetAdminBucketsByIdResponses];
|
|
34712
|
+
type PatchAdminBucketsByIdData = {
|
|
33566
34713
|
/**
|
|
33567
|
-
* Request body for the /
|
|
34714
|
+
* Request body for the /buckets/:id operation on bucket resource
|
|
33568
34715
|
*/
|
|
33569
34716
|
body?: {
|
|
33570
34717
|
data: {
|
|
33571
34718
|
attributes?: {
|
|
33572
|
-
|
|
34719
|
+
region?: string | unknown;
|
|
33573
34720
|
};
|
|
33574
34721
|
id: string;
|
|
33575
34722
|
relationships?: {
|
|
33576
34723
|
[key: string]: never;
|
|
33577
34724
|
};
|
|
33578
|
-
type?: "
|
|
34725
|
+
type?: "bucket";
|
|
33579
34726
|
};
|
|
33580
34727
|
};
|
|
33581
34728
|
headers: {
|
|
@@ -33599,9 +34746,9 @@ type PatchAdminNotificationMethodsByIdSetPrimaryData = {
|
|
|
33599
34746
|
[key: string]: unknown;
|
|
33600
34747
|
};
|
|
33601
34748
|
};
|
|
33602
|
-
url: "/admin/
|
|
34749
|
+
url: "/admin/buckets/{id}";
|
|
33603
34750
|
};
|
|
33604
|
-
type
|
|
34751
|
+
type PatchAdminBucketsByIdErrors = {
|
|
33605
34752
|
/**
|
|
33606
34753
|
* Bad Request - Invalid input data or malformed request
|
|
33607
34754
|
*/
|
|
@@ -33631,21 +34778,21 @@ type PatchAdminNotificationMethodsByIdSetPrimaryErrors = {
|
|
|
33631
34778
|
*/
|
|
33632
34779
|
default: Errors;
|
|
33633
34780
|
};
|
|
33634
|
-
type
|
|
33635
|
-
type
|
|
34781
|
+
type PatchAdminBucketsByIdError = PatchAdminBucketsByIdErrors[keyof PatchAdminBucketsByIdErrors];
|
|
34782
|
+
type PatchAdminBucketsByIdResponses = {
|
|
33636
34783
|
/**
|
|
33637
34784
|
* Success
|
|
33638
34785
|
*/
|
|
33639
34786
|
200: {
|
|
33640
|
-
data?:
|
|
34787
|
+
data?: Bucket;
|
|
33641
34788
|
included?: Array<unknown>;
|
|
33642
34789
|
meta?: {
|
|
33643
34790
|
[key: string]: unknown;
|
|
33644
34791
|
};
|
|
33645
34792
|
};
|
|
33646
34793
|
};
|
|
33647
|
-
type
|
|
33648
|
-
type
|
|
34794
|
+
type PatchAdminBucketsByIdResponse = PatchAdminBucketsByIdResponses[keyof PatchAdminBucketsByIdResponses];
|
|
34795
|
+
type GetAdminConfigsData = {
|
|
33649
34796
|
body?: never;
|
|
33650
34797
|
headers: {
|
|
33651
34798
|
/**
|
|
@@ -33653,9 +34800,7 @@ type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedData = {
|
|
|
33653
34800
|
*/
|
|
33654
34801
|
"x-application-key": string;
|
|
33655
34802
|
};
|
|
33656
|
-
path
|
|
33657
|
-
workspace_id: string;
|
|
33658
|
-
};
|
|
34803
|
+
path?: never;
|
|
33659
34804
|
query?: {
|
|
33660
34805
|
/**
|
|
33661
34806
|
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
@@ -33683,11 +34828,10 @@ type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedData = {
|
|
|
33683
34828
|
fields?: {
|
|
33684
34829
|
[key: string]: unknown;
|
|
33685
34830
|
};
|
|
33686
|
-
limit?: number;
|
|
33687
34831
|
};
|
|
33688
|
-
url: "/admin/
|
|
34832
|
+
url: "/admin/configs";
|
|
33689
34833
|
};
|
|
33690
|
-
type
|
|
34834
|
+
type GetAdminConfigsErrors = {
|
|
33691
34835
|
/**
|
|
33692
34836
|
* Bad Request - Invalid input data or malformed request
|
|
33693
34837
|
*/
|
|
@@ -33717,34 +34861,47 @@ type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedErrors = {
|
|
|
33717
34861
|
*/
|
|
33718
34862
|
default: Errors;
|
|
33719
34863
|
};
|
|
33720
|
-
type
|
|
33721
|
-
type
|
|
34864
|
+
type GetAdminConfigsError = GetAdminConfigsErrors[keyof GetAdminConfigsErrors];
|
|
34865
|
+
type GetAdminConfigsResponses = {
|
|
33722
34866
|
/**
|
|
33723
34867
|
* Success
|
|
33724
34868
|
*/
|
|
33725
34869
|
200: {
|
|
33726
34870
|
/**
|
|
33727
|
-
* An array of resource objects representing a
|
|
34871
|
+
* An array of resource objects representing a config
|
|
33728
34872
|
*/
|
|
33729
|
-
data?: Array<
|
|
33730
|
-
included?: Array<
|
|
34873
|
+
data?: Array<Config>;
|
|
34874
|
+
included?: Array<unknown>;
|
|
33731
34875
|
meta?: {
|
|
33732
34876
|
[key: string]: unknown;
|
|
33733
34877
|
};
|
|
33734
34878
|
};
|
|
33735
34879
|
};
|
|
33736
|
-
type
|
|
33737
|
-
type
|
|
33738
|
-
|
|
34880
|
+
type GetAdminConfigsResponse = GetAdminConfigsResponses[keyof GetAdminConfigsResponses];
|
|
34881
|
+
type PostAdminConfigsData = {
|
|
34882
|
+
/**
|
|
34883
|
+
* Request body for the /configs operation on config resource
|
|
34884
|
+
*/
|
|
34885
|
+
body: {
|
|
34886
|
+
data: {
|
|
34887
|
+
attributes?: {
|
|
34888
|
+
description?: string | unknown;
|
|
34889
|
+
key: string;
|
|
34890
|
+
value: string;
|
|
34891
|
+
};
|
|
34892
|
+
relationships?: {
|
|
34893
|
+
[key: string]: never;
|
|
34894
|
+
};
|
|
34895
|
+
type?: "config";
|
|
34896
|
+
};
|
|
34897
|
+
};
|
|
33739
34898
|
headers: {
|
|
33740
34899
|
/**
|
|
33741
34900
|
* Application ID for authentication and routing
|
|
33742
34901
|
*/
|
|
33743
34902
|
"x-application-key": string;
|
|
33744
34903
|
};
|
|
33745
|
-
path
|
|
33746
|
-
id: string;
|
|
33747
|
-
};
|
|
34904
|
+
path?: never;
|
|
33748
34905
|
query?: {
|
|
33749
34906
|
/**
|
|
33750
34907
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -33757,9 +34914,9 @@ type DeleteAdminAiGraphNodesByIdData = {
|
|
|
33757
34914
|
[key: string]: unknown;
|
|
33758
34915
|
};
|
|
33759
34916
|
};
|
|
33760
|
-
url: "/admin/
|
|
34917
|
+
url: "/admin/configs";
|
|
33761
34918
|
};
|
|
33762
|
-
type
|
|
34919
|
+
type PostAdminConfigsErrors = {
|
|
33763
34920
|
/**
|
|
33764
34921
|
* Bad Request - Invalid input data or malformed request
|
|
33765
34922
|
*/
|
|
@@ -33789,14 +34946,21 @@ type DeleteAdminAiGraphNodesByIdErrors = {
|
|
|
33789
34946
|
*/
|
|
33790
34947
|
default: Errors;
|
|
33791
34948
|
};
|
|
33792
|
-
type
|
|
33793
|
-
type
|
|
34949
|
+
type PostAdminConfigsError = PostAdminConfigsErrors[keyof PostAdminConfigsErrors];
|
|
34950
|
+
type PostAdminConfigsResponses = {
|
|
33794
34951
|
/**
|
|
33795
|
-
*
|
|
34952
|
+
* Success
|
|
33796
34953
|
*/
|
|
33797
|
-
|
|
34954
|
+
201: {
|
|
34955
|
+
data?: Config;
|
|
34956
|
+
included?: Array<unknown>;
|
|
34957
|
+
meta?: {
|
|
34958
|
+
[key: string]: unknown;
|
|
34959
|
+
};
|
|
34960
|
+
};
|
|
33798
34961
|
};
|
|
33799
|
-
type
|
|
34962
|
+
type PostAdminConfigsResponse = PostAdminConfigsResponses[keyof PostAdminConfigsResponses];
|
|
34963
|
+
type DeleteAdminThreadsByIdData = {
|
|
33800
34964
|
body?: never;
|
|
33801
34965
|
headers: {
|
|
33802
34966
|
/**
|
|
@@ -33819,9 +34983,9 @@ type DeleteAdminBucketsByIdData = {
|
|
|
33819
34983
|
[key: string]: unknown;
|
|
33820
34984
|
};
|
|
33821
34985
|
};
|
|
33822
|
-
url: "/admin/
|
|
34986
|
+
url: "/admin/threads/{id}";
|
|
33823
34987
|
};
|
|
33824
|
-
type
|
|
34988
|
+
type DeleteAdminThreadsByIdErrors = {
|
|
33825
34989
|
/**
|
|
33826
34990
|
* Bad Request - Invalid input data or malformed request
|
|
33827
34991
|
*/
|
|
@@ -33851,14 +35015,14 @@ type DeleteAdminBucketsByIdErrors = {
|
|
|
33851
35015
|
*/
|
|
33852
35016
|
default: Errors;
|
|
33853
35017
|
};
|
|
33854
|
-
type
|
|
33855
|
-
type
|
|
35018
|
+
type DeleteAdminThreadsByIdError = DeleteAdminThreadsByIdErrors[keyof DeleteAdminThreadsByIdErrors];
|
|
35019
|
+
type DeleteAdminThreadsByIdResponses = {
|
|
33856
35020
|
/**
|
|
33857
35021
|
* Deleted successfully
|
|
33858
35022
|
*/
|
|
33859
35023
|
200: unknown;
|
|
33860
35024
|
};
|
|
33861
|
-
type
|
|
35025
|
+
type GetAdminThreadsByIdData = {
|
|
33862
35026
|
body?: never;
|
|
33863
35027
|
headers: {
|
|
33864
35028
|
/**
|
|
@@ -33881,9 +35045,9 @@ type GetAdminBucketsByIdData = {
|
|
|
33881
35045
|
[key: string]: unknown;
|
|
33882
35046
|
};
|
|
33883
35047
|
};
|
|
33884
|
-
url: "/admin/
|
|
35048
|
+
url: "/admin/threads/{id}";
|
|
33885
35049
|
};
|
|
33886
|
-
type
|
|
35050
|
+
type GetAdminThreadsByIdErrors = {
|
|
33887
35051
|
/**
|
|
33888
35052
|
* Bad Request - Invalid input data or malformed request
|
|
33889
35053
|
*/
|
|
@@ -33913,34 +35077,35 @@ type GetAdminBucketsByIdErrors = {
|
|
|
33913
35077
|
*/
|
|
33914
35078
|
default: Errors;
|
|
33915
35079
|
};
|
|
33916
|
-
type
|
|
33917
|
-
type
|
|
35080
|
+
type GetAdminThreadsByIdError = GetAdminThreadsByIdErrors[keyof GetAdminThreadsByIdErrors];
|
|
35081
|
+
type GetAdminThreadsByIdResponses = {
|
|
33918
35082
|
/**
|
|
33919
35083
|
* Success
|
|
33920
35084
|
*/
|
|
33921
35085
|
200: {
|
|
33922
|
-
data?:
|
|
35086
|
+
data?: Thread;
|
|
33923
35087
|
included?: Array<unknown>;
|
|
33924
35088
|
meta?: {
|
|
33925
35089
|
[key: string]: unknown;
|
|
33926
35090
|
};
|
|
33927
35091
|
};
|
|
33928
35092
|
};
|
|
33929
|
-
type
|
|
33930
|
-
type
|
|
35093
|
+
type GetAdminThreadsByIdResponse = GetAdminThreadsByIdResponses[keyof GetAdminThreadsByIdResponses];
|
|
35094
|
+
type PatchAdminThreadsByIdData = {
|
|
33931
35095
|
/**
|
|
33932
|
-
* Request body for the /
|
|
35096
|
+
* Request body for the /threads/:id operation on thread resource
|
|
33933
35097
|
*/
|
|
33934
35098
|
body?: {
|
|
33935
35099
|
data: {
|
|
33936
35100
|
attributes?: {
|
|
33937
|
-
|
|
35101
|
+
context_summary?: string | unknown;
|
|
35102
|
+
title?: string | unknown;
|
|
33938
35103
|
};
|
|
33939
35104
|
id: string;
|
|
33940
35105
|
relationships?: {
|
|
33941
35106
|
[key: string]: never;
|
|
33942
35107
|
};
|
|
33943
|
-
type?: "
|
|
35108
|
+
type?: "thread";
|
|
33944
35109
|
};
|
|
33945
35110
|
};
|
|
33946
35111
|
headers: {
|
|
@@ -33964,9 +35129,9 @@ type PatchAdminBucketsByIdData = {
|
|
|
33964
35129
|
[key: string]: unknown;
|
|
33965
35130
|
};
|
|
33966
35131
|
};
|
|
33967
|
-
url: "/admin/
|
|
35132
|
+
url: "/admin/threads/{id}";
|
|
33968
35133
|
};
|
|
33969
|
-
type
|
|
35134
|
+
type PatchAdminThreadsByIdErrors = {
|
|
33970
35135
|
/**
|
|
33971
35136
|
* Bad Request - Invalid input data or malformed request
|
|
33972
35137
|
*/
|
|
@@ -33996,22 +35161,37 @@ type PatchAdminBucketsByIdErrors = {
|
|
|
33996
35161
|
*/
|
|
33997
35162
|
default: Errors;
|
|
33998
35163
|
};
|
|
33999
|
-
type
|
|
34000
|
-
type
|
|
35164
|
+
type PatchAdminThreadsByIdError = PatchAdminThreadsByIdErrors[keyof PatchAdminThreadsByIdErrors];
|
|
35165
|
+
type PatchAdminThreadsByIdResponses = {
|
|
34001
35166
|
/**
|
|
34002
35167
|
* Success
|
|
34003
35168
|
*/
|
|
34004
35169
|
200: {
|
|
34005
|
-
data?:
|
|
35170
|
+
data?: Thread;
|
|
34006
35171
|
included?: Array<unknown>;
|
|
34007
35172
|
meta?: {
|
|
34008
35173
|
[key: string]: unknown;
|
|
34009
35174
|
};
|
|
34010
35175
|
};
|
|
34011
35176
|
};
|
|
34012
|
-
type
|
|
34013
|
-
type
|
|
34014
|
-
|
|
35177
|
+
type PatchAdminThreadsByIdResponse = PatchAdminThreadsByIdResponses[keyof PatchAdminThreadsByIdResponses];
|
|
35178
|
+
type PatchAdminWalletAddonsData = {
|
|
35179
|
+
/**
|
|
35180
|
+
* Request body for the /wallet/addons operation on wallet resource
|
|
35181
|
+
*/
|
|
35182
|
+
body: {
|
|
35183
|
+
data: {
|
|
35184
|
+
attributes?: {
|
|
35185
|
+
addon_slug: string;
|
|
35186
|
+
quantity?: number | unknown;
|
|
35187
|
+
};
|
|
35188
|
+
id: string;
|
|
35189
|
+
relationships?: {
|
|
35190
|
+
[key: string]: never;
|
|
35191
|
+
};
|
|
35192
|
+
type?: "wallet";
|
|
35193
|
+
};
|
|
35194
|
+
};
|
|
34015
35195
|
headers: {
|
|
34016
35196
|
/**
|
|
34017
35197
|
* Application ID for authentication and routing
|
|
@@ -34020,22 +35200,6 @@ type GetAdminConfigsData = {
|
|
|
34020
35200
|
};
|
|
34021
35201
|
path?: never;
|
|
34022
35202
|
query?: {
|
|
34023
|
-
/**
|
|
34024
|
-
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
34025
|
-
*/
|
|
34026
|
-
filter?: {
|
|
34027
|
-
[key: string]: unknown;
|
|
34028
|
-
};
|
|
34029
|
-
/**
|
|
34030
|
-
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
34031
|
-
*/
|
|
34032
|
-
sort?: string;
|
|
34033
|
-
/**
|
|
34034
|
-
* JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
|
|
34035
|
-
*/
|
|
34036
|
-
page?: {
|
|
34037
|
-
[key: string]: unknown;
|
|
34038
|
-
};
|
|
34039
35203
|
/**
|
|
34040
35204
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
34041
35205
|
*/
|
|
@@ -34047,9 +35211,9 @@ type GetAdminConfigsData = {
|
|
|
34047
35211
|
[key: string]: unknown;
|
|
34048
35212
|
};
|
|
34049
35213
|
};
|
|
34050
|
-
url: "/admin/
|
|
35214
|
+
url: "/admin/wallet/addons";
|
|
34051
35215
|
};
|
|
34052
|
-
type
|
|
35216
|
+
type PatchAdminWalletAddonsErrors = {
|
|
34053
35217
|
/**
|
|
34054
35218
|
* Bad Request - Invalid input data or malformed request
|
|
34055
35219
|
*/
|
|
@@ -34079,62 +35243,38 @@ type GetAdminConfigsErrors = {
|
|
|
34079
35243
|
*/
|
|
34080
35244
|
default: Errors;
|
|
34081
35245
|
};
|
|
34082
|
-
type
|
|
34083
|
-
type
|
|
35246
|
+
type PatchAdminWalletAddonsError = PatchAdminWalletAddonsErrors[keyof PatchAdminWalletAddonsErrors];
|
|
35247
|
+
type PatchAdminWalletAddonsResponses = {
|
|
34084
35248
|
/**
|
|
34085
35249
|
* Success
|
|
34086
35250
|
*/
|
|
34087
35251
|
200: {
|
|
34088
|
-
|
|
34089
|
-
|
|
34090
|
-
*/
|
|
34091
|
-
data?: Array<Config>;
|
|
34092
|
-
included?: Array<unknown>;
|
|
35252
|
+
data?: Wallet;
|
|
35253
|
+
included?: Array<Plan>;
|
|
34093
35254
|
meta?: {
|
|
34094
35255
|
[key: string]: unknown;
|
|
34095
35256
|
};
|
|
34096
35257
|
};
|
|
34097
35258
|
};
|
|
34098
|
-
type
|
|
34099
|
-
type
|
|
34100
|
-
|
|
34101
|
-
* Request body for the /configs operation on config resource
|
|
34102
|
-
*/
|
|
34103
|
-
body: {
|
|
34104
|
-
data: {
|
|
34105
|
-
attributes?: {
|
|
34106
|
-
description?: string | unknown;
|
|
34107
|
-
key: string;
|
|
34108
|
-
value: string;
|
|
34109
|
-
};
|
|
34110
|
-
relationships?: {
|
|
34111
|
-
[key: string]: never;
|
|
34112
|
-
};
|
|
34113
|
-
type?: "config";
|
|
34114
|
-
};
|
|
34115
|
-
};
|
|
35259
|
+
type PatchAdminWalletAddonsResponse = PatchAdminWalletAddonsResponses[keyof PatchAdminWalletAddonsResponses];
|
|
35260
|
+
type GetAdminAgentsByIdSchemaVersionsData = {
|
|
35261
|
+
body?: never;
|
|
34116
35262
|
headers: {
|
|
34117
35263
|
/**
|
|
34118
35264
|
* Application ID for authentication and routing
|
|
34119
35265
|
*/
|
|
34120
35266
|
"x-application-key": string;
|
|
34121
35267
|
};
|
|
34122
|
-
path
|
|
34123
|
-
query?: {
|
|
34124
|
-
/**
|
|
34125
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
34126
|
-
*/
|
|
34127
|
-
include?: string;
|
|
35268
|
+
path: {
|
|
34128
35269
|
/**
|
|
34129
|
-
*
|
|
35270
|
+
* Agent ID (automatically mapped from route)
|
|
34130
35271
|
*/
|
|
34131
|
-
|
|
34132
|
-
[key: string]: unknown;
|
|
34133
|
-
};
|
|
35272
|
+
id: string;
|
|
34134
35273
|
};
|
|
34135
|
-
|
|
35274
|
+
query?: never;
|
|
35275
|
+
url: "/admin/agents/{id}/schema_versions";
|
|
34136
35276
|
};
|
|
34137
|
-
type
|
|
35277
|
+
type GetAdminAgentsByIdSchemaVersionsErrors = {
|
|
34138
35278
|
/**
|
|
34139
35279
|
* Bad Request - Invalid input data or malformed request
|
|
34140
35280
|
*/
|
|
@@ -34164,22 +35304,35 @@ type PostAdminConfigsErrors = {
|
|
|
34164
35304
|
*/
|
|
34165
35305
|
default: Errors;
|
|
34166
35306
|
};
|
|
34167
|
-
type
|
|
34168
|
-
type
|
|
35307
|
+
type GetAdminAgentsByIdSchemaVersionsError = GetAdminAgentsByIdSchemaVersionsErrors[keyof GetAdminAgentsByIdSchemaVersionsErrors];
|
|
35308
|
+
type GetAdminAgentsByIdSchemaVersionsResponses = {
|
|
34169
35309
|
/**
|
|
34170
35310
|
* Success
|
|
34171
35311
|
*/
|
|
34172
|
-
|
|
34173
|
-
|
|
34174
|
-
included?: Array<unknown>;
|
|
34175
|
-
meta?: {
|
|
35312
|
+
200: {
|
|
35313
|
+
result: {
|
|
34176
35314
|
[key: string]: unknown;
|
|
34177
35315
|
};
|
|
34178
35316
|
};
|
|
34179
35317
|
};
|
|
34180
|
-
type
|
|
34181
|
-
type
|
|
34182
|
-
|
|
35318
|
+
type GetAdminAgentsByIdSchemaVersionsResponse = GetAdminAgentsByIdSchemaVersionsResponses[keyof GetAdminAgentsByIdSchemaVersionsResponses];
|
|
35319
|
+
type PostAdminAgentsByIdSchemaVersionsData = {
|
|
35320
|
+
/**
|
|
35321
|
+
* Request body for the /agents/:id/schema_versions operation on agent resource
|
|
35322
|
+
*/
|
|
35323
|
+
body: {
|
|
35324
|
+
data: {
|
|
35325
|
+
changes_summary?: string | unknown;
|
|
35326
|
+
fields?: Array<{
|
|
35327
|
+
[key: string]: unknown;
|
|
35328
|
+
}> | unknown;
|
|
35329
|
+
prompt_template: string;
|
|
35330
|
+
schema_definition: {
|
|
35331
|
+
[key: string]: unknown;
|
|
35332
|
+
};
|
|
35333
|
+
version_number: string;
|
|
35334
|
+
};
|
|
35335
|
+
};
|
|
34183
35336
|
headers: {
|
|
34184
35337
|
/**
|
|
34185
35338
|
* Application ID for authentication and routing
|
|
@@ -34187,23 +35340,15 @@ type DeleteAdminThreadsByIdData = {
|
|
|
34187
35340
|
"x-application-key": string;
|
|
34188
35341
|
};
|
|
34189
35342
|
path: {
|
|
34190
|
-
id: string;
|
|
34191
|
-
};
|
|
34192
|
-
query?: {
|
|
34193
|
-
/**
|
|
34194
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
34195
|
-
*/
|
|
34196
|
-
include?: string;
|
|
34197
35343
|
/**
|
|
34198
|
-
*
|
|
35344
|
+
* Agent ID (automatically mapped from route)
|
|
34199
35345
|
*/
|
|
34200
|
-
|
|
34201
|
-
[key: string]: unknown;
|
|
34202
|
-
};
|
|
35346
|
+
id: string;
|
|
34203
35347
|
};
|
|
34204
|
-
|
|
35348
|
+
query?: never;
|
|
35349
|
+
url: "/admin/agents/{id}/schema_versions";
|
|
34205
35350
|
};
|
|
34206
|
-
type
|
|
35351
|
+
type PostAdminAgentsByIdSchemaVersionsErrors = {
|
|
34207
35352
|
/**
|
|
34208
35353
|
* Bad Request - Invalid input data or malformed request
|
|
34209
35354
|
*/
|
|
@@ -34233,14 +35378,17 @@ type DeleteAdminThreadsByIdErrors = {
|
|
|
34233
35378
|
*/
|
|
34234
35379
|
default: Errors;
|
|
34235
35380
|
};
|
|
34236
|
-
type
|
|
34237
|
-
type
|
|
35381
|
+
type PostAdminAgentsByIdSchemaVersionsError = PostAdminAgentsByIdSchemaVersionsErrors[keyof PostAdminAgentsByIdSchemaVersionsErrors];
|
|
35382
|
+
type PostAdminAgentsByIdSchemaVersionsResponses = {
|
|
34238
35383
|
/**
|
|
34239
|
-
*
|
|
35384
|
+
* Success
|
|
34240
35385
|
*/
|
|
34241
|
-
|
|
35386
|
+
201: {
|
|
35387
|
+
[key: string]: unknown;
|
|
35388
|
+
};
|
|
34242
35389
|
};
|
|
34243
|
-
type
|
|
35390
|
+
type PostAdminAgentsByIdSchemaVersionsResponse = PostAdminAgentsByIdSchemaVersionsResponses[keyof PostAdminAgentsByIdSchemaVersionsResponses];
|
|
35391
|
+
type DeleteAdminMessagesByIdData = {
|
|
34244
35392
|
body?: never;
|
|
34245
35393
|
headers: {
|
|
34246
35394
|
/**
|
|
@@ -34263,9 +35411,9 @@ type GetAdminThreadsByIdData = {
|
|
|
34263
35411
|
[key: string]: unknown;
|
|
34264
35412
|
};
|
|
34265
35413
|
};
|
|
34266
|
-
url: "/admin/
|
|
35414
|
+
url: "/admin/messages/{id}";
|
|
34267
35415
|
};
|
|
34268
|
-
type
|
|
35416
|
+
type DeleteAdminMessagesByIdErrors = {
|
|
34269
35417
|
/**
|
|
34270
35418
|
* Bad Request - Invalid input data or malformed request
|
|
34271
35419
|
*/
|
|
@@ -34295,37 +35443,15 @@ type GetAdminThreadsByIdErrors = {
|
|
|
34295
35443
|
*/
|
|
34296
35444
|
default: Errors;
|
|
34297
35445
|
};
|
|
34298
|
-
type
|
|
34299
|
-
type
|
|
35446
|
+
type DeleteAdminMessagesByIdError = DeleteAdminMessagesByIdErrors[keyof DeleteAdminMessagesByIdErrors];
|
|
35447
|
+
type DeleteAdminMessagesByIdResponses = {
|
|
34300
35448
|
/**
|
|
34301
|
-
*
|
|
35449
|
+
* Deleted successfully
|
|
34302
35450
|
*/
|
|
34303
|
-
200:
|
|
34304
|
-
data?: Thread;
|
|
34305
|
-
included?: Array<unknown>;
|
|
34306
|
-
meta?: {
|
|
34307
|
-
[key: string]: unknown;
|
|
34308
|
-
};
|
|
34309
|
-
};
|
|
35451
|
+
200: unknown;
|
|
34310
35452
|
};
|
|
34311
|
-
type
|
|
34312
|
-
|
|
34313
|
-
/**
|
|
34314
|
-
* Request body for the /threads/:id operation on thread resource
|
|
34315
|
-
*/
|
|
34316
|
-
body?: {
|
|
34317
|
-
data: {
|
|
34318
|
-
attributes?: {
|
|
34319
|
-
context_summary?: string | unknown;
|
|
34320
|
-
title?: string | unknown;
|
|
34321
|
-
};
|
|
34322
|
-
id: string;
|
|
34323
|
-
relationships?: {
|
|
34324
|
-
[key: string]: never;
|
|
34325
|
-
};
|
|
34326
|
-
type?: "thread";
|
|
34327
|
-
};
|
|
34328
|
-
};
|
|
35453
|
+
type GetAdminMessagesByIdData = {
|
|
35454
|
+
body?: never;
|
|
34329
35455
|
headers: {
|
|
34330
35456
|
/**
|
|
34331
35457
|
* Application ID for authentication and routing
|
|
@@ -34347,9 +35473,9 @@ type PatchAdminThreadsByIdData = {
|
|
|
34347
35473
|
[key: string]: unknown;
|
|
34348
35474
|
};
|
|
34349
35475
|
};
|
|
34350
|
-
url: "/admin/
|
|
35476
|
+
url: "/admin/messages/{id}";
|
|
34351
35477
|
};
|
|
34352
|
-
type
|
|
35478
|
+
type GetAdminMessagesByIdErrors = {
|
|
34353
35479
|
/**
|
|
34354
35480
|
* Bad Request - Invalid input data or malformed request
|
|
34355
35481
|
*/
|
|
@@ -34379,35 +35505,38 @@ type PatchAdminThreadsByIdErrors = {
|
|
|
34379
35505
|
*/
|
|
34380
35506
|
default: Errors;
|
|
34381
35507
|
};
|
|
34382
|
-
type
|
|
34383
|
-
type
|
|
35508
|
+
type GetAdminMessagesByIdError = GetAdminMessagesByIdErrors[keyof GetAdminMessagesByIdErrors];
|
|
35509
|
+
type GetAdminMessagesByIdResponses = {
|
|
34384
35510
|
/**
|
|
34385
35511
|
* Success
|
|
34386
35512
|
*/
|
|
34387
35513
|
200: {
|
|
34388
|
-
data?:
|
|
35514
|
+
data?: Message;
|
|
34389
35515
|
included?: Array<unknown>;
|
|
34390
35516
|
meta?: {
|
|
34391
35517
|
[key: string]: unknown;
|
|
34392
35518
|
};
|
|
34393
35519
|
};
|
|
34394
35520
|
};
|
|
34395
|
-
type
|
|
34396
|
-
type
|
|
35521
|
+
type GetAdminMessagesByIdResponse = GetAdminMessagesByIdResponses[keyof GetAdminMessagesByIdResponses];
|
|
35522
|
+
type PatchAdminMessagesByIdData = {
|
|
34397
35523
|
/**
|
|
34398
|
-
* Request body for the /
|
|
35524
|
+
* Request body for the /messages/:id operation on message resource
|
|
34399
35525
|
*/
|
|
34400
|
-
body
|
|
35526
|
+
body?: {
|
|
34401
35527
|
data: {
|
|
34402
35528
|
attributes?: {
|
|
34403
|
-
|
|
34404
|
-
|
|
35529
|
+
content?: string | unknown;
|
|
35530
|
+
metadata?: {
|
|
35531
|
+
[key: string]: unknown;
|
|
35532
|
+
} | unknown;
|
|
35533
|
+
role?: "user" | "assistant" | "system" | "tool" | unknown;
|
|
34405
35534
|
};
|
|
34406
35535
|
id: string;
|
|
34407
35536
|
relationships?: {
|
|
34408
35537
|
[key: string]: never;
|
|
34409
35538
|
};
|
|
34410
|
-
type?: "
|
|
35539
|
+
type?: "message";
|
|
34411
35540
|
};
|
|
34412
35541
|
};
|
|
34413
35542
|
headers: {
|
|
@@ -34416,7 +35545,9 @@ type PatchAdminWalletAddonsData = {
|
|
|
34416
35545
|
*/
|
|
34417
35546
|
"x-application-key": string;
|
|
34418
35547
|
};
|
|
34419
|
-
path
|
|
35548
|
+
path: {
|
|
35549
|
+
id: string;
|
|
35550
|
+
};
|
|
34420
35551
|
query?: {
|
|
34421
35552
|
/**
|
|
34422
35553
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -34429,9 +35560,9 @@ type PatchAdminWalletAddonsData = {
|
|
|
34429
35560
|
[key: string]: unknown;
|
|
34430
35561
|
};
|
|
34431
35562
|
};
|
|
34432
|
-
url: "/admin/
|
|
35563
|
+
url: "/admin/messages/{id}";
|
|
34433
35564
|
};
|
|
34434
|
-
type
|
|
35565
|
+
type PatchAdminMessagesByIdErrors = {
|
|
34435
35566
|
/**
|
|
34436
35567
|
* Bad Request - Invalid input data or malformed request
|
|
34437
35568
|
*/
|
|
@@ -34461,152 +35592,21 @@ type PatchAdminWalletAddonsErrors = {
|
|
|
34461
35592
|
*/
|
|
34462
35593
|
default: Errors;
|
|
34463
35594
|
};
|
|
34464
|
-
type
|
|
34465
|
-
type
|
|
35595
|
+
type PatchAdminMessagesByIdError = PatchAdminMessagesByIdErrors[keyof PatchAdminMessagesByIdErrors];
|
|
35596
|
+
type PatchAdminMessagesByIdResponses = {
|
|
34466
35597
|
/**
|
|
34467
35598
|
* Success
|
|
34468
35599
|
*/
|
|
34469
35600
|
200: {
|
|
34470
|
-
data?:
|
|
34471
|
-
included?: Array<
|
|
35601
|
+
data?: Message;
|
|
35602
|
+
included?: Array<unknown>;
|
|
34472
35603
|
meta?: {
|
|
34473
35604
|
[key: string]: unknown;
|
|
34474
35605
|
};
|
|
34475
35606
|
};
|
|
34476
35607
|
};
|
|
34477
|
-
type
|
|
34478
|
-
type
|
|
34479
|
-
body?: never;
|
|
34480
|
-
headers: {
|
|
34481
|
-
/**
|
|
34482
|
-
* Application ID for authentication and routing
|
|
34483
|
-
*/
|
|
34484
|
-
"x-application-key": string;
|
|
34485
|
-
};
|
|
34486
|
-
path: {
|
|
34487
|
-
/**
|
|
34488
|
-
* Agent ID (automatically mapped from route)
|
|
34489
|
-
*/
|
|
34490
|
-
id: string;
|
|
34491
|
-
};
|
|
34492
|
-
query?: never;
|
|
34493
|
-
url: "/admin/agents/{id}/schema_versions";
|
|
34494
|
-
};
|
|
34495
|
-
type GetAdminAgentsByIdSchemaVersionsErrors = {
|
|
34496
|
-
/**
|
|
34497
|
-
* Bad Request - Invalid input data or malformed request
|
|
34498
|
-
*/
|
|
34499
|
-
400: ErrorResponse;
|
|
34500
|
-
/**
|
|
34501
|
-
* Unauthorized - Missing or invalid authentication token
|
|
34502
|
-
*/
|
|
34503
|
-
401: ErrorResponse;
|
|
34504
|
-
/**
|
|
34505
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
34506
|
-
*/
|
|
34507
|
-
403: ErrorResponse;
|
|
34508
|
-
/**
|
|
34509
|
-
* Not Found - Resource does not exist
|
|
34510
|
-
*/
|
|
34511
|
-
404: ErrorResponse;
|
|
34512
|
-
/**
|
|
34513
|
-
* Too Many Requests - Rate limit exceeded
|
|
34514
|
-
*/
|
|
34515
|
-
429: ErrorResponse;
|
|
34516
|
-
/**
|
|
34517
|
-
* Internal Server Error - Unexpected server error
|
|
34518
|
-
*/
|
|
34519
|
-
500: ErrorResponse;
|
|
34520
|
-
/**
|
|
34521
|
-
* General Error
|
|
34522
|
-
*/
|
|
34523
|
-
default: Errors;
|
|
34524
|
-
};
|
|
34525
|
-
type GetAdminAgentsByIdSchemaVersionsError = GetAdminAgentsByIdSchemaVersionsErrors[keyof GetAdminAgentsByIdSchemaVersionsErrors];
|
|
34526
|
-
type GetAdminAgentsByIdSchemaVersionsResponses = {
|
|
34527
|
-
/**
|
|
34528
|
-
* Success
|
|
34529
|
-
*/
|
|
34530
|
-
200: {
|
|
34531
|
-
result: {
|
|
34532
|
-
[key: string]: unknown;
|
|
34533
|
-
};
|
|
34534
|
-
};
|
|
34535
|
-
};
|
|
34536
|
-
type GetAdminAgentsByIdSchemaVersionsResponse = GetAdminAgentsByIdSchemaVersionsResponses[keyof GetAdminAgentsByIdSchemaVersionsResponses];
|
|
34537
|
-
type PostAdminAgentsByIdSchemaVersionsData = {
|
|
34538
|
-
/**
|
|
34539
|
-
* Request body for the /agents/:id/schema_versions operation on agent resource
|
|
34540
|
-
*/
|
|
34541
|
-
body: {
|
|
34542
|
-
data: {
|
|
34543
|
-
changes_summary?: string | unknown;
|
|
34544
|
-
fields?: Array<{
|
|
34545
|
-
[key: string]: unknown;
|
|
34546
|
-
}> | unknown;
|
|
34547
|
-
prompt_template: string;
|
|
34548
|
-
schema_definition: {
|
|
34549
|
-
[key: string]: unknown;
|
|
34550
|
-
};
|
|
34551
|
-
version_number: string;
|
|
34552
|
-
};
|
|
34553
|
-
};
|
|
34554
|
-
headers: {
|
|
34555
|
-
/**
|
|
34556
|
-
* Application ID for authentication and routing
|
|
34557
|
-
*/
|
|
34558
|
-
"x-application-key": string;
|
|
34559
|
-
};
|
|
34560
|
-
path: {
|
|
34561
|
-
/**
|
|
34562
|
-
* Agent ID (automatically mapped from route)
|
|
34563
|
-
*/
|
|
34564
|
-
id: string;
|
|
34565
|
-
};
|
|
34566
|
-
query?: never;
|
|
34567
|
-
url: "/admin/agents/{id}/schema_versions";
|
|
34568
|
-
};
|
|
34569
|
-
type PostAdminAgentsByIdSchemaVersionsErrors = {
|
|
34570
|
-
/**
|
|
34571
|
-
* Bad Request - Invalid input data or malformed request
|
|
34572
|
-
*/
|
|
34573
|
-
400: ErrorResponse;
|
|
34574
|
-
/**
|
|
34575
|
-
* Unauthorized - Missing or invalid authentication token
|
|
34576
|
-
*/
|
|
34577
|
-
401: ErrorResponse;
|
|
34578
|
-
/**
|
|
34579
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
34580
|
-
*/
|
|
34581
|
-
403: ErrorResponse;
|
|
34582
|
-
/**
|
|
34583
|
-
* Not Found - Resource does not exist
|
|
34584
|
-
*/
|
|
34585
|
-
404: ErrorResponse;
|
|
34586
|
-
/**
|
|
34587
|
-
* Too Many Requests - Rate limit exceeded
|
|
34588
|
-
*/
|
|
34589
|
-
429: ErrorResponse;
|
|
34590
|
-
/**
|
|
34591
|
-
* Internal Server Error - Unexpected server error
|
|
34592
|
-
*/
|
|
34593
|
-
500: ErrorResponse;
|
|
34594
|
-
/**
|
|
34595
|
-
* General Error
|
|
34596
|
-
*/
|
|
34597
|
-
default: Errors;
|
|
34598
|
-
};
|
|
34599
|
-
type PostAdminAgentsByIdSchemaVersionsError = PostAdminAgentsByIdSchemaVersionsErrors[keyof PostAdminAgentsByIdSchemaVersionsErrors];
|
|
34600
|
-
type PostAdminAgentsByIdSchemaVersionsResponses = {
|
|
34601
|
-
/**
|
|
34602
|
-
* Success
|
|
34603
|
-
*/
|
|
34604
|
-
201: {
|
|
34605
|
-
[key: string]: unknown;
|
|
34606
|
-
};
|
|
34607
|
-
};
|
|
34608
|
-
type PostAdminAgentsByIdSchemaVersionsResponse = PostAdminAgentsByIdSchemaVersionsResponses[keyof PostAdminAgentsByIdSchemaVersionsResponses];
|
|
34609
|
-
type DeleteAdminMessagesByIdData = {
|
|
35608
|
+
type PatchAdminMessagesByIdResponse = PatchAdminMessagesByIdResponses[keyof PatchAdminMessagesByIdResponses];
|
|
35609
|
+
type DeleteAdminPlatformPricingConfigsByIdData = {
|
|
34610
35610
|
body?: never;
|
|
34611
35611
|
headers: {
|
|
34612
35612
|
/**
|
|
@@ -34629,9 +35629,9 @@ type DeleteAdminMessagesByIdData = {
|
|
|
34629
35629
|
[key: string]: unknown;
|
|
34630
35630
|
};
|
|
34631
35631
|
};
|
|
34632
|
-
url: "/admin/
|
|
35632
|
+
url: "/admin/platform-pricing-configs/{id}";
|
|
34633
35633
|
};
|
|
34634
|
-
type
|
|
35634
|
+
type DeleteAdminPlatformPricingConfigsByIdErrors = {
|
|
34635
35635
|
/**
|
|
34636
35636
|
* Bad Request - Invalid input data or malformed request
|
|
34637
35637
|
*/
|
|
@@ -34661,14 +35661,14 @@ type DeleteAdminMessagesByIdErrors = {
|
|
|
34661
35661
|
*/
|
|
34662
35662
|
default: Errors;
|
|
34663
35663
|
};
|
|
34664
|
-
type
|
|
34665
|
-
type
|
|
35664
|
+
type DeleteAdminPlatformPricingConfigsByIdError = DeleteAdminPlatformPricingConfigsByIdErrors[keyof DeleteAdminPlatformPricingConfigsByIdErrors];
|
|
35665
|
+
type DeleteAdminPlatformPricingConfigsByIdResponses = {
|
|
34666
35666
|
/**
|
|
34667
35667
|
* Deleted successfully
|
|
34668
35668
|
*/
|
|
34669
35669
|
200: unknown;
|
|
34670
35670
|
};
|
|
34671
|
-
type
|
|
35671
|
+
type GetAdminPlatformPricingConfigsByIdData = {
|
|
34672
35672
|
body?: never;
|
|
34673
35673
|
headers: {
|
|
34674
35674
|
/**
|
|
@@ -34691,9 +35691,9 @@ type GetAdminMessagesByIdData = {
|
|
|
34691
35691
|
[key: string]: unknown;
|
|
34692
35692
|
};
|
|
34693
35693
|
};
|
|
34694
|
-
url: "/admin/
|
|
35694
|
+
url: "/admin/platform-pricing-configs/{id}";
|
|
34695
35695
|
};
|
|
34696
|
-
type
|
|
35696
|
+
type GetAdminPlatformPricingConfigsByIdErrors = {
|
|
34697
35697
|
/**
|
|
34698
35698
|
* Bad Request - Invalid input data or malformed request
|
|
34699
35699
|
*/
|
|
@@ -34723,38 +35723,61 @@ type GetAdminMessagesByIdErrors = {
|
|
|
34723
35723
|
*/
|
|
34724
35724
|
default: Errors;
|
|
34725
35725
|
};
|
|
34726
|
-
type
|
|
34727
|
-
type
|
|
35726
|
+
type GetAdminPlatformPricingConfigsByIdError = GetAdminPlatformPricingConfigsByIdErrors[keyof GetAdminPlatformPricingConfigsByIdErrors];
|
|
35727
|
+
type GetAdminPlatformPricingConfigsByIdResponses = {
|
|
34728
35728
|
/**
|
|
34729
35729
|
* Success
|
|
34730
35730
|
*/
|
|
34731
35731
|
200: {
|
|
34732
|
-
data?:
|
|
35732
|
+
data?: PlatformPricingConfig;
|
|
34733
35733
|
included?: Array<unknown>;
|
|
34734
35734
|
meta?: {
|
|
34735
35735
|
[key: string]: unknown;
|
|
34736
35736
|
};
|
|
34737
35737
|
};
|
|
34738
35738
|
};
|
|
34739
|
-
type
|
|
34740
|
-
type
|
|
35739
|
+
type GetAdminPlatformPricingConfigsByIdResponse = GetAdminPlatformPricingConfigsByIdResponses[keyof GetAdminPlatformPricingConfigsByIdResponses];
|
|
35740
|
+
type PatchAdminPlatformPricingConfigsByIdData = {
|
|
34741
35741
|
/**
|
|
34742
|
-
* Request body for the /
|
|
35742
|
+
* Request body for the /platform-pricing-configs/:id operation on platform-pricing-config resource
|
|
34743
35743
|
*/
|
|
34744
35744
|
body?: {
|
|
34745
35745
|
data: {
|
|
34746
35746
|
attributes?: {
|
|
34747
|
-
|
|
35747
|
+
/**
|
|
35748
|
+
* Human-readable description of this service
|
|
35749
|
+
*/
|
|
35750
|
+
description?: string | unknown;
|
|
35751
|
+
/**
|
|
35752
|
+
* Minimum price ISVs can charge. NULL means use hardcoded default.
|
|
35753
|
+
*/
|
|
35754
|
+
floor_price?: {
|
|
35755
|
+
amount: string;
|
|
35756
|
+
currency: string;
|
|
35757
|
+
} | unknown;
|
|
35758
|
+
/**
|
|
35759
|
+
* Platform COGS for this service (e.g., $0.002 per page for OCR)
|
|
35760
|
+
*/
|
|
35761
|
+
hard_cost?: {
|
|
35762
|
+
amount: string;
|
|
35763
|
+
currency: string;
|
|
35764
|
+
} | unknown;
|
|
35765
|
+
/**
|
|
35766
|
+
* Minimum margin percentage. NULL means use hardcoded default (30%).
|
|
35767
|
+
*/
|
|
35768
|
+
margin_percent?: number | unknown;
|
|
35769
|
+
/**
|
|
35770
|
+
* Additional configuration metadata (e.g., metric unit, operation type)
|
|
35771
|
+
*/
|
|
34748
35772
|
metadata?: {
|
|
34749
35773
|
[key: string]: unknown;
|
|
34750
35774
|
} | unknown;
|
|
34751
|
-
role?: "user" | "assistant" | "system" | "tool" | unknown;
|
|
34752
35775
|
};
|
|
34753
35776
|
id: string;
|
|
34754
35777
|
relationships?: {
|
|
34755
35778
|
[key: string]: never;
|
|
34756
35779
|
};
|
|
34757
|
-
type?: "
|
|
35780
|
+
type?: "platform-pricing-config";
|
|
34758
35781
|
};
|
|
34759
35782
|
};
|
|
34760
35783
|
headers: {
|
|
@@ -34778,9 +35801,9 @@ type PatchAdminMessagesByIdData = {
|
|
|
34778
35801
|
[key: string]: unknown;
|
|
34779
35802
|
};
|
|
34780
35803
|
};
|
|
34781
|
-
url: "/admin/
|
|
35804
|
+
url: "/admin/platform-pricing-configs/{id}";
|
|
34782
35805
|
};
|
|
34783
|
-
type
|
|
35806
|
+
type PatchAdminPlatformPricingConfigsByIdErrors = {
|
|
34784
35807
|
/**
|
|
34785
35808
|
* Bad Request - Invalid input data or malformed request
|
|
34786
35809
|
*/
|
|
@@ -34810,20 +35833,20 @@ type PatchAdminMessagesByIdErrors = {
|
|
|
34810
35833
|
*/
|
|
34811
35834
|
default: Errors;
|
|
34812
35835
|
};
|
|
34813
|
-
type
|
|
34814
|
-
type
|
|
35836
|
+
type PatchAdminPlatformPricingConfigsByIdError = PatchAdminPlatformPricingConfigsByIdErrors[keyof PatchAdminPlatformPricingConfigsByIdErrors];
|
|
35837
|
+
type PatchAdminPlatformPricingConfigsByIdResponses = {
|
|
34815
35838
|
/**
|
|
34816
35839
|
* Success
|
|
34817
35840
|
*/
|
|
34818
35841
|
200: {
|
|
34819
|
-
data?:
|
|
35842
|
+
data?: PlatformPricingConfig;
|
|
34820
35843
|
included?: Array<unknown>;
|
|
34821
35844
|
meta?: {
|
|
34822
35845
|
[key: string]: unknown;
|
|
34823
35846
|
};
|
|
34824
35847
|
};
|
|
34825
35848
|
};
|
|
34826
|
-
type
|
|
35849
|
+
type PatchAdminPlatformPricingConfigsByIdResponse = PatchAdminPlatformPricingConfigsByIdResponses[keyof PatchAdminPlatformPricingConfigsByIdResponses];
|
|
34827
35850
|
type DeleteAdminTenantsByIdData = {
|
|
34828
35851
|
body?: never;
|
|
34829
35852
|
headers: {
|
|
@@ -38170,6 +39193,10 @@ type PatchAdminApplicationsByIdData = {
|
|
|
38170
39193
|
body?: {
|
|
38171
39194
|
data: {
|
|
38172
39195
|
attributes?: {
|
|
39196
|
+
/**
|
|
39197
|
+
* AI capability configuration for this application
|
|
39198
|
+
*/
|
|
39199
|
+
ai_config?: ApplicationAiConfigInputUpdateType | unknown;
|
|
38173
39200
|
badge_url?: string | unknown;
|
|
38174
39201
|
/**
|
|
38175
39202
|
* ISV's base URL for email links (verification, password reset, magic links)
|
|
@@ -39245,4 +40272,4 @@ type ApiKeyAllocateRequest = z.infer<typeof ApiKeyAllocateSchema>;
|
|
|
39245
40272
|
type DocumentBulkDeleteRequest = z.infer<typeof DocumentBulkDeleteSchema>;
|
|
39246
40273
|
type DocumentBulkReprocessRequest = z.infer<typeof DocumentBulkReprocessSchema>;
|
|
39247
40274
|
|
|
39248
|
-
export { type Account, type AccountCreditRequest, AccountCreditSchema, type AccountDebitRequest, AccountDebitSchema, type Agent, type AgentAdminCreateRequest, AgentAdminCreateSchema, type AgentStats, type AgentTestResult, type AgentTrainingStats, type AgentUsage, type AgentVersion, type AgentVersionComparison, type AgentVersionFieldsInputCreateType, type AiConfig, type ApiKey, type ApiKeyAllocateRequest, ApiKeyAllocateSchema, type Application, type ApplicationOauthInputCreateType, type ApplicationOauthInputUpdateType, type ApplicationType, type AuditLog, AuthenticationError, AuthorizationError, type Balance, type Bucket, type BulkDismissalResult, type BulkReprocessResult, type ClientOptions, type Config, type ConfigEnum, type Conversation, type CreditPackage, type Customer, type DeleteAdminAgentVersionsByIdData, type DeleteAdminAgentVersionsByIdError, type DeleteAdminAgentVersionsByIdErrors, type DeleteAdminAgentVersionsByIdResponses, type DeleteAdminAiConversationsByIdData, type DeleteAdminAiConversationsByIdError, type DeleteAdminAiConversationsByIdErrors, type DeleteAdminAiConversationsByIdResponses, type DeleteAdminAiGraphEdgesByIdData, type DeleteAdminAiGraphEdgesByIdError, type DeleteAdminAiGraphEdgesByIdErrors, type DeleteAdminAiGraphEdgesByIdResponses, type DeleteAdminAiGraphNodesByIdData, type DeleteAdminAiGraphNodesByIdError, type DeleteAdminAiGraphNodesByIdErrors, type DeleteAdminAiGraphNodesByIdResponses, type DeleteAdminAiMessagesByIdData, type DeleteAdminAiMessagesByIdError, type DeleteAdminAiMessagesByIdErrors, type DeleteAdminAiMessagesByIdResponses, type DeleteAdminApiKeysByIdData, type DeleteAdminApiKeysByIdError, type DeleteAdminApiKeysByIdErrors, type DeleteAdminApiKeysByIdResponses, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugData, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugError, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses, type DeleteAdminApplicationsByIdData, type DeleteAdminApplicationsByIdError, type DeleteAdminApplicationsByIdErrors, type DeleteAdminApplicationsByIdResponses, type DeleteAdminBucketsByIdData, type DeleteAdminBucketsByIdError, type DeleteAdminBucketsByIdErrors, type DeleteAdminBucketsByIdResponses, type DeleteAdminCreditPackagesByIdData, type DeleteAdminCreditPackagesByIdError, type DeleteAdminCreditPackagesByIdErrors, type DeleteAdminCreditPackagesByIdResponses, type DeleteAdminCustomersByIdData, type DeleteAdminCustomersByIdError, type DeleteAdminCustomersByIdErrors, type DeleteAdminCustomersByIdResponses, type DeleteAdminExtractionBatchesByIdData, type DeleteAdminExtractionBatchesByIdError, type DeleteAdminExtractionBatchesByIdErrors, type DeleteAdminExtractionBatchesByIdResponses, type DeleteAdminExtractionDocumentsByIdData, type DeleteAdminExtractionDocumentsByIdError, type DeleteAdminExtractionDocumentsByIdErrors, type DeleteAdminExtractionDocumentsByIdResponses, type DeleteAdminExtractionResultsByIdData, type DeleteAdminExtractionResultsByIdError, type DeleteAdminExtractionResultsByIdErrors, type DeleteAdminExtractionResultsByIdResponses, type DeleteAdminFieldTemplatesByIdData, type DeleteAdminFieldTemplatesByIdError, type DeleteAdminFieldTemplatesByIdErrors, type DeleteAdminFieldTemplatesByIdResponses, type DeleteAdminMessagesByIdData, type DeleteAdminMessagesByIdError, type DeleteAdminMessagesByIdErrors, type DeleteAdminMessagesByIdResponses, type DeleteAdminNotificationMethodsByIdData, type DeleteAdminNotificationMethodsByIdError, type DeleteAdminNotificationMethodsByIdErrors, type DeleteAdminNotificationMethodsByIdResponses, type DeleteAdminNotificationPreferencesByIdData, type DeleteAdminNotificationPreferencesByIdError, type DeleteAdminNotificationPreferencesByIdErrors, type DeleteAdminNotificationPreferencesByIdResponses, type DeleteAdminObjectsByIdData, type DeleteAdminObjectsByIdError, type DeleteAdminObjectsByIdErrors, type DeleteAdminObjectsByIdResponses, type DeleteAdminPaymentMethodsByIdData, type DeleteAdminPaymentMethodsByIdError, type DeleteAdminPaymentMethodsByIdErrors, type DeleteAdminPaymentMethodsByIdResponses, type DeleteAdminPlansByIdData, type DeleteAdminPlansByIdError, type DeleteAdminPlansByIdErrors, type DeleteAdminPlansByIdResponses, type DeleteAdminSearchSavedByIdData, type DeleteAdminSearchSavedByIdError, type DeleteAdminSearchSavedByIdErrors, type DeleteAdminSearchSavedByIdResponses, type DeleteAdminSubscriptionsByIdData, type DeleteAdminSubscriptionsByIdError, type DeleteAdminSubscriptionsByIdErrors, type DeleteAdminSubscriptionsByIdResponses, type DeleteAdminSystemMessagesByIdData, type DeleteAdminSystemMessagesByIdError, type DeleteAdminSystemMessagesByIdErrors, type DeleteAdminSystemMessagesByIdResponses, type DeleteAdminTenantMembershipsByTenantIdByUserIdData, type DeleteAdminTenantMembershipsByTenantIdByUserIdError, type DeleteAdminTenantMembershipsByTenantIdByUserIdErrors, type DeleteAdminTenantMembershipsByTenantIdByUserIdResponses, type DeleteAdminTenantPricingOverridesByIdData, type DeleteAdminTenantPricingOverridesByIdError, type DeleteAdminTenantPricingOverridesByIdErrors, type DeleteAdminTenantPricingOverridesByIdResponses, type DeleteAdminTenantsByIdData, type DeleteAdminTenantsByIdError, type DeleteAdminTenantsByIdErrors, type DeleteAdminTenantsByIdResponses, type DeleteAdminThreadsByIdData, type DeleteAdminThreadsByIdError, type DeleteAdminThreadsByIdErrors, type DeleteAdminThreadsByIdResponses, type DeleteAdminTrainingExamplesByIdData, type DeleteAdminTrainingExamplesByIdError, type DeleteAdminTrainingExamplesByIdErrors, type DeleteAdminTrainingExamplesByIdResponses, type DeleteAdminTrainingSessionsByIdData, type DeleteAdminTrainingSessionsByIdError, type DeleteAdminTrainingSessionsByIdErrors, type DeleteAdminTrainingSessionsByIdResponses, type DeleteAdminUserProfilesByIdData, type DeleteAdminUserProfilesByIdError, type DeleteAdminUserProfilesByIdErrors, type DeleteAdminUserProfilesByIdResponses, type DeleteAdminUsersByIdData, type DeleteAdminUsersByIdError, type DeleteAdminUsersByIdErrors, type DeleteAdminUsersByIdResponses, type DeleteAdminWebhookConfigsByIdData, type DeleteAdminWebhookConfigsByIdError, type DeleteAdminWebhookConfigsByIdErrors, type DeleteAdminWebhookConfigsByIdResponses, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdData, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdError, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type DeleteAdminWorkspacesByIdData, type DeleteAdminWorkspacesByIdError, type DeleteAdminWorkspacesByIdErrors, type DeleteAdminWorkspacesByIdResponses, type DocumentBulkDeleteRequest, DocumentBulkDeleteSchema, type DocumentBulkReprocessRequest, DocumentBulkReprocessSchema, type DocumentChunk, type DocumentStats, type EmailTemplate, type Embedding, type ErrorResponse, type Errors, type ExtractionBatch, type ExtractionDocument, type ExtractionExport, type ExtractionResult, type FieldMappingConfirmation, type FieldMappingResult, type FieldTemplate, type GetAdminAccountsByIdData, type GetAdminAccountsByIdError, type GetAdminAccountsByIdErrors, type GetAdminAccountsByIdResponse, type GetAdminAccountsByIdResponses, type GetAdminAccountsByTenantByTenantIdData, type GetAdminAccountsByTenantByTenantIdError, type GetAdminAccountsByTenantByTenantIdErrors, type GetAdminAccountsByTenantByTenantIdResponse, type GetAdminAccountsByTenantByTenantIdResponses, type GetAdminAccountsData, type GetAdminAccountsError, type GetAdminAccountsErrors, type GetAdminAccountsResponse, type GetAdminAccountsResponses, type GetAdminAgentVersionsByIdData, type GetAdminAgentVersionsByIdError, type GetAdminAgentVersionsByIdErrors, type GetAdminAgentVersionsByIdMetricsData, type GetAdminAgentVersionsByIdMetricsError, type GetAdminAgentVersionsByIdMetricsErrors, type GetAdminAgentVersionsByIdMetricsResponse, type GetAdminAgentVersionsByIdMetricsResponses, type GetAdminAgentVersionsByIdResponse, type GetAdminAgentVersionsByIdResponses, type GetAdminAgentVersionsData, type GetAdminAgentVersionsError, type GetAdminAgentVersionsErrors, type GetAdminAgentVersionsResponse, type GetAdminAgentVersionsResponses, type GetAdminAgentsByIdData, type GetAdminAgentsByIdError, type GetAdminAgentsByIdErrors, type GetAdminAgentsByIdResponse, type GetAdminAgentsByIdResponses, type GetAdminAgentsByIdSchemaVersionsData, type GetAdminAgentsByIdSchemaVersionsError, type GetAdminAgentsByIdSchemaVersionsErrors, type GetAdminAgentsByIdSchemaVersionsResponse, type GetAdminAgentsByIdSchemaVersionsResponses, type GetAdminAgentsByIdStatsData, type GetAdminAgentsByIdStatsError, type GetAdminAgentsByIdStatsErrors, type GetAdminAgentsByIdStatsResponse, type GetAdminAgentsByIdStatsResponses, type GetAdminAgentsByIdTrainingStatsData, type GetAdminAgentsByIdTrainingStatsError, type GetAdminAgentsByIdTrainingStatsErrors, type GetAdminAgentsByIdTrainingStatsResponse, type GetAdminAgentsByIdTrainingStatsResponses, type GetAdminAgentsByIdUsageData, type GetAdminAgentsByIdUsageError, type GetAdminAgentsByIdUsageErrors, type GetAdminAgentsByIdUsageResponse, type GetAdminAgentsByIdUsageResponses, type GetAdminAgentsData, type GetAdminAgentsError, type GetAdminAgentsErrors, type GetAdminAgentsResponse, type GetAdminAgentsResponses, type GetAdminAgentsUsageData, type GetAdminAgentsUsageError, type GetAdminAgentsUsageErrors, type GetAdminAgentsUsageResponse, type GetAdminAgentsUsageResponses, type GetAdminAiChunksDocumentByDocumentIdData, type GetAdminAiChunksDocumentByDocumentIdError, type GetAdminAiChunksDocumentByDocumentIdErrors, type GetAdminAiChunksDocumentByDocumentIdResponse, type GetAdminAiChunksDocumentByDocumentIdResponses, type GetAdminAiConversationsByIdData, type GetAdminAiConversationsByIdError, type GetAdminAiConversationsByIdErrors, type GetAdminAiConversationsByIdResponse, type GetAdminAiConversationsByIdResponses, type GetAdminAiConversationsData, type GetAdminAiConversationsError, type GetAdminAiConversationsErrors, type GetAdminAiConversationsResponse, type GetAdminAiConversationsResponses, type GetAdminAiGraphEdgesData, type GetAdminAiGraphEdgesError, type GetAdminAiGraphEdgesErrors, type GetAdminAiGraphEdgesResponse, type GetAdminAiGraphEdgesResponses, type GetAdminAiGraphNodesBySourceNodeIdRelatedData, type GetAdminAiGraphNodesBySourceNodeIdRelatedError, type GetAdminAiGraphNodesBySourceNodeIdRelatedErrors, type GetAdminAiGraphNodesBySourceNodeIdRelatedResponse, type GetAdminAiGraphNodesBySourceNodeIdRelatedResponses, type GetAdminAiGraphNodesData, type GetAdminAiGraphNodesError, type GetAdminAiGraphNodesErrors, type GetAdminAiGraphNodesLabelByLabelData, type GetAdminAiGraphNodesLabelByLabelError, type GetAdminAiGraphNodesLabelByLabelErrors, type GetAdminAiGraphNodesLabelByLabelResponse, type GetAdminAiGraphNodesLabelByLabelResponses, type GetAdminAiGraphNodesResponse, type GetAdminAiGraphNodesResponses, type GetAdminAiMessagesData, type GetAdminAiMessagesError, type GetAdminAiMessagesErrors, type GetAdminAiMessagesResponse, type GetAdminAiMessagesResponses, type GetAdminApiKeysActiveData, type GetAdminApiKeysActiveError, type GetAdminApiKeysActiveErrors, type GetAdminApiKeysActiveResponse, type GetAdminApiKeysActiveResponses, type GetAdminApiKeysByIdData, type GetAdminApiKeysByIdError, type GetAdminApiKeysByIdErrors, type GetAdminApiKeysByIdResponse, type GetAdminApiKeysByIdResponses, type GetAdminApiKeysData, type GetAdminApiKeysError, type GetAdminApiKeysErrors, type GetAdminApiKeysResponse, type GetAdminApiKeysResponses, type GetAdminApiKeysStatsData, type GetAdminApiKeysStatsError, type GetAdminApiKeysStatsErrors, type GetAdminApiKeysStatsResponse, type GetAdminApiKeysStatsResponses, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugData, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugError, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugResponse, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses, type GetAdminApplicationsByApplicationIdEmailTemplatesData, type GetAdminApplicationsByApplicationIdEmailTemplatesError, type GetAdminApplicationsByApplicationIdEmailTemplatesErrors, type GetAdminApplicationsByApplicationIdEmailTemplatesResponse, type GetAdminApplicationsByApplicationIdEmailTemplatesResponses, type GetAdminApplicationsByIdData, type GetAdminApplicationsByIdError, type GetAdminApplicationsByIdErrors, type GetAdminApplicationsByIdResponse, type GetAdminApplicationsByIdResponses, type GetAdminApplicationsBySlugBySlugData, type GetAdminApplicationsBySlugBySlugError, type GetAdminApplicationsBySlugBySlugErrors, type GetAdminApplicationsBySlugBySlugResponse, type GetAdminApplicationsBySlugBySlugResponses, type GetAdminApplicationsCurrentData, type GetAdminApplicationsCurrentError, type GetAdminApplicationsCurrentErrors, type GetAdminApplicationsCurrentResponse, type GetAdminApplicationsCurrentResponses, type GetAdminApplicationsData, type GetAdminApplicationsError, type GetAdminApplicationsErrors, type GetAdminApplicationsResponse, type GetAdminApplicationsResponses, type GetAdminAuditLogsActivityData, type GetAdminAuditLogsActivityError, type GetAdminAuditLogsActivityErrors, type GetAdminAuditLogsActivityResponse, type GetAdminAuditLogsActivityResponses, type GetAdminAuditLogsData, type GetAdminAuditLogsError, type GetAdminAuditLogsErrors, type GetAdminAuditLogsResponse, type GetAdminAuditLogsResponses, type GetAdminBalancesByIdData, type GetAdminBalancesByIdError, type GetAdminBalancesByIdErrors, type GetAdminBalancesByIdResponse, type GetAdminBalancesByIdResponses, type GetAdminBalancesData, type GetAdminBalancesError, type GetAdminBalancesErrors, type GetAdminBalancesResponse, type GetAdminBalancesResponses, type GetAdminBucketsAllData, type GetAdminBucketsAllError, type GetAdminBucketsAllErrors, type GetAdminBucketsAllResponse, type GetAdminBucketsAllResponses, type GetAdminBucketsByIdData, type GetAdminBucketsByIdError, type GetAdminBucketsByIdErrors, type GetAdminBucketsByIdObjectsData, type GetAdminBucketsByIdObjectsError, type GetAdminBucketsByIdObjectsErrors, type GetAdminBucketsByIdObjectsResponse, type GetAdminBucketsByIdObjectsResponses, type GetAdminBucketsByIdResponse, type GetAdminBucketsByIdResponses, type GetAdminBucketsByIdStatsData, type GetAdminBucketsByIdStatsError, type GetAdminBucketsByIdStatsErrors, type GetAdminBucketsByIdStatsResponse, type GetAdminBucketsByIdStatsResponses, type GetAdminBucketsData, type GetAdminBucketsError, type GetAdminBucketsErrors, type GetAdminBucketsResponse, type GetAdminBucketsResponses, type GetAdminConfigsData, type GetAdminConfigsError, type GetAdminConfigsErrors, type GetAdminConfigsResponse, type GetAdminConfigsResponses, type GetAdminCreditPackagesByIdData, type GetAdminCreditPackagesByIdError, type GetAdminCreditPackagesByIdErrors, type GetAdminCreditPackagesByIdResponse, type GetAdminCreditPackagesByIdResponses, type GetAdminCreditPackagesData, type GetAdminCreditPackagesError, type GetAdminCreditPackagesErrors, type GetAdminCreditPackagesResponse, type GetAdminCreditPackagesResponses, type GetAdminCreditPackagesSlugBySlugData, type GetAdminCreditPackagesSlugBySlugError, type GetAdminCreditPackagesSlugBySlugErrors, type GetAdminCreditPackagesSlugBySlugResponse, type GetAdminCreditPackagesSlugBySlugResponses, type GetAdminCustomersByIdData, type GetAdminCustomersByIdError, type GetAdminCustomersByIdErrors, type GetAdminCustomersByIdResponse, type GetAdminCustomersByIdResponses, type GetAdminDocumentsStatsData, type GetAdminDocumentsStatsError, type GetAdminDocumentsStatsErrors, type GetAdminDocumentsStatsResponse, type GetAdminDocumentsStatsResponses, type GetAdminExtractionBatchesByIdData, type GetAdminExtractionBatchesByIdError, type GetAdminExtractionBatchesByIdErrors, type GetAdminExtractionBatchesByIdResponse, type GetAdminExtractionBatchesByIdResponses, type GetAdminExtractionBatchesByIdUploadUrlsData, type GetAdminExtractionBatchesByIdUploadUrlsError, type GetAdminExtractionBatchesByIdUploadUrlsErrors, type GetAdminExtractionBatchesByIdUploadUrlsResponse, type GetAdminExtractionBatchesByIdUploadUrlsResponses, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdData, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdError, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdErrors, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdResponse, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdResponses, type GetAdminExtractionConfigEnumsByIdData, type GetAdminExtractionConfigEnumsByIdError, type GetAdminExtractionConfigEnumsByIdErrors, type GetAdminExtractionConfigEnumsByIdResponse, type GetAdminExtractionConfigEnumsByIdResponses, type GetAdminExtractionConfigEnumsData, type GetAdminExtractionConfigEnumsError, type GetAdminExtractionConfigEnumsErrors, type GetAdminExtractionConfigEnumsResponse, type GetAdminExtractionConfigEnumsResponses, type GetAdminExtractionDocumentsByIdData, type GetAdminExtractionDocumentsByIdError, type GetAdminExtractionDocumentsByIdErrors, type GetAdminExtractionDocumentsByIdResponse, type GetAdminExtractionDocumentsByIdResponses, type GetAdminExtractionDocumentsByIdStatusData, type GetAdminExtractionDocumentsByIdStatusError, type GetAdminExtractionDocumentsByIdStatusErrors, type GetAdminExtractionDocumentsByIdStatusResponse, type GetAdminExtractionDocumentsByIdStatusResponses, type GetAdminExtractionDocumentsByIdViewData, type GetAdminExtractionDocumentsByIdViewError, type GetAdminExtractionDocumentsByIdViewErrors, type GetAdminExtractionDocumentsByIdViewResponse, type GetAdminExtractionDocumentsByIdViewResponses, type GetAdminExtractionDocumentsData, type GetAdminExtractionDocumentsError, type GetAdminExtractionDocumentsErrors, type GetAdminExtractionDocumentsResponse, type GetAdminExtractionDocumentsResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedResponses, type GetAdminExtractionResultsByIdData, type GetAdminExtractionResultsByIdError, type GetAdminExtractionResultsByIdErrors, type GetAdminExtractionResultsByIdResponse, type GetAdminExtractionResultsByIdResponses, type GetAdminExtractionResultsData, type GetAdminExtractionResultsDocumentByDocumentIdData, type GetAdminExtractionResultsDocumentByDocumentIdError, type GetAdminExtractionResultsDocumentByDocumentIdErrors, type GetAdminExtractionResultsDocumentByDocumentIdResponse, type GetAdminExtractionResultsDocumentByDocumentIdResponses, type GetAdminExtractionResultsError, type GetAdminExtractionResultsErrors, type GetAdminExtractionResultsResponse, type GetAdminExtractionResultsResponses, type GetAdminExtractionResultsWorkspaceByWorkspaceIdData, type GetAdminExtractionResultsWorkspaceByWorkspaceIdError, type GetAdminExtractionResultsWorkspaceByWorkspaceIdErrors, type GetAdminExtractionResultsWorkspaceByWorkspaceIdResponse, type GetAdminExtractionResultsWorkspaceByWorkspaceIdResponses, type GetAdminExtractionSchemaDiscoveriesByIdData, type GetAdminExtractionSchemaDiscoveriesByIdError, type GetAdminExtractionSchemaDiscoveriesByIdErrors, type GetAdminExtractionSchemaDiscoveriesByIdResponse, type GetAdminExtractionSchemaDiscoveriesByIdResponses, type GetAdminFieldTemplatesByIdData, type GetAdminFieldTemplatesByIdError, type GetAdminFieldTemplatesByIdErrors, type GetAdminFieldTemplatesByIdResponse, type GetAdminFieldTemplatesByIdResponses, type GetAdminFieldTemplatesData, type GetAdminFieldTemplatesError, type GetAdminFieldTemplatesErrors, type GetAdminFieldTemplatesResponse, type GetAdminFieldTemplatesResponses, type GetAdminInvitationsConsumeByTokenData, type GetAdminInvitationsConsumeByTokenError, type GetAdminInvitationsConsumeByTokenErrors, type GetAdminInvitationsConsumeByTokenResponse, type GetAdminInvitationsConsumeByTokenResponses, type GetAdminInvitationsData, type GetAdminInvitationsError, type GetAdminInvitationsErrors, type GetAdminInvitationsMeData, type GetAdminInvitationsMeError, type GetAdminInvitationsMeErrors, type GetAdminInvitationsMeResponse, type GetAdminInvitationsMeResponses, type GetAdminInvitationsResponse, type GetAdminInvitationsResponses, type GetAdminIsvRevenueByIdData, type GetAdminIsvRevenueByIdError, type GetAdminIsvRevenueByIdErrors, type GetAdminIsvRevenueByIdResponse, type GetAdminIsvRevenueByIdResponses, type GetAdminIsvRevenueData, type GetAdminIsvRevenueError, type GetAdminIsvRevenueErrors, type GetAdminIsvRevenueResponse, type GetAdminIsvRevenueResponses, type GetAdminIsvSettlementsByIdData, type GetAdminIsvSettlementsByIdError, type GetAdminIsvSettlementsByIdErrors, type GetAdminIsvSettlementsByIdResponse, type GetAdminIsvSettlementsByIdResponses, type GetAdminIsvSettlementsData, type GetAdminIsvSettlementsError, type GetAdminIsvSettlementsErrors, type GetAdminIsvSettlementsResponse, type GetAdminIsvSettlementsResponses, type GetAdminLedgerByAccountByAccountIdData, type GetAdminLedgerByAccountByAccountIdError, type GetAdminLedgerByAccountByAccountIdErrors, type GetAdminLedgerByAccountByAccountIdResponse, type GetAdminLedgerByAccountByAccountIdResponses, type GetAdminLedgerByIdData, type GetAdminLedgerByIdError, type GetAdminLedgerByIdErrors, type GetAdminLedgerByIdResponse, type GetAdminLedgerByIdResponses, type GetAdminLedgerData, type GetAdminLedgerError, type GetAdminLedgerErrors, type GetAdminLedgerResponse, type GetAdminLedgerResponses, type GetAdminLlmAnalyticsByIdData, type GetAdminLlmAnalyticsByIdError, type GetAdminLlmAnalyticsByIdErrors, type GetAdminLlmAnalyticsByIdResponse, type GetAdminLlmAnalyticsByIdResponses, type GetAdminLlmAnalyticsCostsData, type GetAdminLlmAnalyticsCostsError, type GetAdminLlmAnalyticsCostsErrors, type GetAdminLlmAnalyticsCostsResponse, type GetAdminLlmAnalyticsCostsResponses, type GetAdminLlmAnalyticsData, type GetAdminLlmAnalyticsError, type GetAdminLlmAnalyticsErrors, type GetAdminLlmAnalyticsPlatformData, type GetAdminLlmAnalyticsPlatformError, type GetAdminLlmAnalyticsPlatformErrors, type GetAdminLlmAnalyticsPlatformResponse, type GetAdminLlmAnalyticsPlatformResponses, type GetAdminLlmAnalyticsResponse, type GetAdminLlmAnalyticsResponses, type GetAdminLlmAnalyticsSummaryData, type GetAdminLlmAnalyticsSummaryError, type GetAdminLlmAnalyticsSummaryErrors, type GetAdminLlmAnalyticsSummaryResponse, type GetAdminLlmAnalyticsSummaryResponses, type GetAdminLlmAnalyticsUsageData, type GetAdminLlmAnalyticsUsageError, type GetAdminLlmAnalyticsUsageErrors, type GetAdminLlmAnalyticsUsageResponse, type GetAdminLlmAnalyticsUsageResponses, type GetAdminLlmAnalyticsWorkspaceData, type GetAdminLlmAnalyticsWorkspaceError, type GetAdminLlmAnalyticsWorkspaceErrors, type GetAdminLlmAnalyticsWorkspaceResponse, type GetAdminLlmAnalyticsWorkspaceResponses, type GetAdminMessagesByIdData, type GetAdminMessagesByIdError, type GetAdminMessagesByIdErrors, type GetAdminMessagesByIdResponse, type GetAdminMessagesByIdResponses, type GetAdminMessagesData, type GetAdminMessagesError, type GetAdminMessagesErrors, type GetAdminMessagesResponse, type GetAdminMessagesResponses, type GetAdminMessagesSearchData, type GetAdminMessagesSearchError, type GetAdminMessagesSearchErrors, type GetAdminMessagesSearchResponse, type GetAdminMessagesSearchResponses, type GetAdminMessagesSemanticSearchData, type GetAdminMessagesSemanticSearchError, type GetAdminMessagesSemanticSearchErrors, type GetAdminMessagesSemanticSearchResponse, type GetAdminMessagesSemanticSearchResponses, type GetAdminNotificationLogsByIdData, type GetAdminNotificationLogsByIdError, type GetAdminNotificationLogsByIdErrors, type GetAdminNotificationLogsByIdResponse, type GetAdminNotificationLogsByIdResponses, type GetAdminNotificationLogsData, type GetAdminNotificationLogsError, type GetAdminNotificationLogsErrors, type GetAdminNotificationLogsResponse, type GetAdminNotificationLogsResponses, type GetAdminNotificationLogsStatsData, type GetAdminNotificationLogsStatsError, type GetAdminNotificationLogsStatsErrors, type GetAdminNotificationLogsStatsResponse, type GetAdminNotificationLogsStatsResponses, type GetAdminNotificationMethodsByIdData, type GetAdminNotificationMethodsByIdError, type GetAdminNotificationMethodsByIdErrors, type GetAdminNotificationMethodsByIdResponse, type GetAdminNotificationMethodsByIdResponses, type GetAdminNotificationMethodsData, type GetAdminNotificationMethodsError, type GetAdminNotificationMethodsErrors, type GetAdminNotificationMethodsResponse, type GetAdminNotificationMethodsResponses, type GetAdminNotificationPreferencesByIdData, type GetAdminNotificationPreferencesByIdError, type GetAdminNotificationPreferencesByIdErrors, type GetAdminNotificationPreferencesByIdResponse, type GetAdminNotificationPreferencesByIdResponses, type GetAdminNotificationPreferencesData, type GetAdminNotificationPreferencesError, type GetAdminNotificationPreferencesErrors, type GetAdminNotificationPreferencesResponse, type GetAdminNotificationPreferencesResponses, type GetAdminObjectsByIdData, type GetAdminObjectsByIdError, type GetAdminObjectsByIdErrors, type GetAdminObjectsByIdResponse, type GetAdminObjectsByIdResponses, type GetAdminObjectsData, type GetAdminObjectsError, type GetAdminObjectsErrors, type GetAdminObjectsResponse, type GetAdminObjectsResponses, type GetAdminPaymentMethodsByIdData, type GetAdminPaymentMethodsByIdError, type GetAdminPaymentMethodsByIdErrors, type GetAdminPaymentMethodsByIdResponse, type GetAdminPaymentMethodsByIdResponses, type GetAdminPaymentMethodsData, type GetAdminPaymentMethodsError, type GetAdminPaymentMethodsErrors, type GetAdminPaymentMethodsResponse, type GetAdminPaymentMethodsResponses, type GetAdminPermissionsData, type GetAdminPermissionsError, type GetAdminPermissionsErrors, type GetAdminPermissionsPresetsData, type GetAdminPermissionsPresetsError, type GetAdminPermissionsPresetsErrors, type GetAdminPermissionsPresetsResponse, type GetAdminPermissionsPresetsResponses, type GetAdminPermissionsResponse, type GetAdminPermissionsResponses, type GetAdminPlansByIdData, type GetAdminPlansByIdError, type GetAdminPlansByIdErrors, type GetAdminPlansByIdResponse, type GetAdminPlansByIdResponses, type GetAdminPlansData, type GetAdminPlansError, type GetAdminPlansErrors, type GetAdminPlansResponse, type GetAdminPlansResponses, type GetAdminPlansSlugBySlugData, type GetAdminPlansSlugBySlugError, type GetAdminPlansSlugBySlugErrors, type GetAdminPlansSlugBySlugResponse, type GetAdminPlansSlugBySlugResponses, type GetAdminPricingRulesByIdData, type GetAdminPricingRulesByIdError, type GetAdminPricingRulesByIdErrors, type GetAdminPricingRulesByIdResponse, type GetAdminPricingRulesByIdResponses, type GetAdminPricingRulesData, type GetAdminPricingRulesError, type GetAdminPricingRulesErrors, type GetAdminPricingRulesResolveData, type GetAdminPricingRulesResolveError, type GetAdminPricingRulesResolveErrors, type GetAdminPricingRulesResolveResponse, type GetAdminPricingRulesResolveResponses, type GetAdminPricingRulesResponse, type GetAdminPricingRulesResponses, type GetAdminPricingStrategiesByIdData, type GetAdminPricingStrategiesByIdError, type GetAdminPricingStrategiesByIdErrors, type GetAdminPricingStrategiesByIdResponse, type GetAdminPricingStrategiesByIdResponses, type GetAdminPricingStrategiesData, type GetAdminPricingStrategiesError, type GetAdminPricingStrategiesErrors, type GetAdminPricingStrategiesResponse, type GetAdminPricingStrategiesResponses, type GetAdminSearchAnalyticsData, type GetAdminSearchAnalyticsError, type GetAdminSearchAnalyticsErrors, type GetAdminSearchAnalyticsResponse, type GetAdminSearchAnalyticsResponses, type GetAdminSearchAnalyticsSummaryData, type GetAdminSearchAnalyticsSummaryError, type GetAdminSearchAnalyticsSummaryErrors, type GetAdminSearchAnalyticsSummaryResponse, type GetAdminSearchAnalyticsSummaryResponses, type GetAdminSearchData, type GetAdminSearchError, type GetAdminSearchErrors, type GetAdminSearchHealthData, type GetAdminSearchHealthError, type GetAdminSearchHealthErrors, type GetAdminSearchHealthResponse, type GetAdminSearchHealthResponses, type GetAdminSearchIndexesData, type GetAdminSearchIndexesError, type GetAdminSearchIndexesErrors, type GetAdminSearchIndexesResponse, type GetAdminSearchIndexesResponses, type GetAdminSearchResponse, type GetAdminSearchResponses, type GetAdminSearchSavedData, type GetAdminSearchSavedError, type GetAdminSearchSavedErrors, type GetAdminSearchSavedResponse, type GetAdminSearchSavedResponses, type GetAdminSearchSemanticData, type GetAdminSearchSemanticError, type GetAdminSearchSemanticErrors, type GetAdminSearchSemanticResponse, type GetAdminSearchSemanticResponses, type GetAdminSearchStatsData, type GetAdminSearchStatsError, type GetAdminSearchStatsErrors, type GetAdminSearchStatsResponse, type GetAdminSearchStatsResponses, type GetAdminSearchStatusData, type GetAdminSearchStatusError, type GetAdminSearchStatusErrors, type GetAdminSearchStatusResponse, type GetAdminSearchStatusResponses, type GetAdminSearchSuggestData, type GetAdminSearchSuggestError, type GetAdminSearchSuggestErrors, type GetAdminSearchSuggestResponse, type GetAdminSearchSuggestResponses, type GetAdminSettlementsByIdData, type GetAdminSettlementsByIdError, type GetAdminSettlementsByIdErrors, type GetAdminSettlementsByIdResponse, type GetAdminSettlementsByIdResponses, type GetAdminSettlementsData, type GetAdminSettlementsError, type GetAdminSettlementsErrors, type GetAdminSettlementsResponse, type GetAdminSettlementsResponses, type GetAdminStorageStatsData, type GetAdminStorageStatsError, type GetAdminStorageStatsErrors, type GetAdminStorageStatsResponse, type GetAdminStorageStatsResponses, type GetAdminStorageStatsTenantByTenantIdData, type GetAdminStorageStatsTenantByTenantIdError, type GetAdminStorageStatsTenantByTenantIdErrors, type GetAdminStorageStatsTenantByTenantIdResponse, type GetAdminStorageStatsTenantByTenantIdResponses, type GetAdminSubscriptionsByIdData, type GetAdminSubscriptionsByIdError, type GetAdminSubscriptionsByIdErrors, type GetAdminSubscriptionsByIdResponse, type GetAdminSubscriptionsByIdResponses, type GetAdminSubscriptionsByTenantByTenantIdData, type GetAdminSubscriptionsByTenantByTenantIdError, type GetAdminSubscriptionsByTenantByTenantIdErrors, type GetAdminSubscriptionsByTenantByTenantIdResponse, type GetAdminSubscriptionsByTenantByTenantIdResponses, type GetAdminSubscriptionsData, type GetAdminSubscriptionsError, type GetAdminSubscriptionsErrors, type GetAdminSubscriptionsResponse, type GetAdminSubscriptionsResponses, type GetAdminSysAiConfigByIdData, type GetAdminSysAiConfigByIdError, type GetAdminSysAiConfigByIdErrors, type GetAdminSysAiConfigByIdResponse, type GetAdminSysAiConfigByIdResponses, type GetAdminSysAiConfigData, type GetAdminSysAiConfigError, type GetAdminSysAiConfigErrors, type GetAdminSysAiConfigResponse, type GetAdminSysAiConfigResponses, type GetAdminSysSemanticCacheByIdData, type GetAdminSysSemanticCacheByIdError, type GetAdminSysSemanticCacheByIdErrors, type GetAdminSysSemanticCacheByIdResponse, type GetAdminSysSemanticCacheByIdResponses, type GetAdminSystemMessagesByIdData, type GetAdminSystemMessagesByIdError, type GetAdminSystemMessagesByIdErrors, type GetAdminSystemMessagesByIdResponse, type GetAdminSystemMessagesByIdResponses, type GetAdminSystemMessagesData, type GetAdminSystemMessagesError, type GetAdminSystemMessagesErrors, type GetAdminSystemMessagesResponse, type GetAdminSystemMessagesResponses, type GetAdminTenantMembershipsData, type GetAdminTenantMembershipsError, type GetAdminTenantMembershipsErrors, type GetAdminTenantMembershipsResponse, type GetAdminTenantMembershipsResponses, type GetAdminTenantPricingOverridesByIdData, type GetAdminTenantPricingOverridesByIdError, type GetAdminTenantPricingOverridesByIdErrors, type GetAdminTenantPricingOverridesByIdResponse, type GetAdminTenantPricingOverridesByIdResponses, type GetAdminTenantPricingOverridesData, type GetAdminTenantPricingOverridesError, type GetAdminTenantPricingOverridesErrors, type GetAdminTenantPricingOverridesResponse, type GetAdminTenantPricingOverridesResponses, type GetAdminTenantsByIdData, type GetAdminTenantsByIdError, type GetAdminTenantsByIdErrors, type GetAdminTenantsByIdResponse, type GetAdminTenantsByIdResponses, type GetAdminTenantsByTenantIdDocumentStatsData, type GetAdminTenantsByTenantIdDocumentStatsError, type GetAdminTenantsByTenantIdDocumentStatsErrors, type GetAdminTenantsByTenantIdDocumentStatsResponse, type GetAdminTenantsByTenantIdDocumentStatsResponses, type GetAdminTenantsByTenantIdStatsData, type GetAdminTenantsByTenantIdStatsError, type GetAdminTenantsByTenantIdStatsErrors, type GetAdminTenantsByTenantIdStatsResponse, type GetAdminTenantsByTenantIdStatsResponses, type GetAdminTenantsByTenantIdWorkspaceStatsData, type GetAdminTenantsByTenantIdWorkspaceStatsError, type GetAdminTenantsByTenantIdWorkspaceStatsErrors, type GetAdminTenantsByTenantIdWorkspaceStatsResponse, type GetAdminTenantsByTenantIdWorkspaceStatsResponses, type GetAdminTenantsData, type GetAdminTenantsError, type GetAdminTenantsErrors, type GetAdminTenantsResponse, type GetAdminTenantsResponses, type GetAdminThreadsByIdData, type GetAdminThreadsByIdError, type GetAdminThreadsByIdErrors, type GetAdminThreadsByIdMessagesData, type GetAdminThreadsByIdMessagesError, type GetAdminThreadsByIdMessagesErrors, type GetAdminThreadsByIdMessagesResponse, type GetAdminThreadsByIdMessagesResponses, type GetAdminThreadsByIdResponse, type GetAdminThreadsByIdResponses, type GetAdminThreadsData, type GetAdminThreadsError, type GetAdminThreadsErrors, type GetAdminThreadsResponse, type GetAdminThreadsResponses, type GetAdminThreadsSearchData, type GetAdminThreadsSearchError, type GetAdminThreadsSearchErrors, type GetAdminThreadsSearchResponse, type GetAdminThreadsSearchResponses, type GetAdminThreadsStatsData, type GetAdminThreadsStatsError, type GetAdminThreadsStatsErrors, type GetAdminThreadsStatsResponse, type GetAdminThreadsStatsResponses, type GetAdminThreadsWorkspaceStatsData, type GetAdminThreadsWorkspaceStatsError, type GetAdminThreadsWorkspaceStatsErrors, type GetAdminThreadsWorkspaceStatsResponse, type GetAdminThreadsWorkspaceStatsResponses, type GetAdminTrainingExamplesByIdData, type GetAdminTrainingExamplesByIdError, type GetAdminTrainingExamplesByIdErrors, type GetAdminTrainingExamplesByIdResponse, type GetAdminTrainingExamplesByIdResponses, type GetAdminTrainingExamplesData, type GetAdminTrainingExamplesError, type GetAdminTrainingExamplesErrors, type GetAdminTrainingExamplesResponse, type GetAdminTrainingExamplesResponses, type GetAdminTrainingSessionsAgentsByAgentIdSessionsData, type GetAdminTrainingSessionsAgentsByAgentIdSessionsError, type GetAdminTrainingSessionsAgentsByAgentIdSessionsErrors, type GetAdminTrainingSessionsAgentsByAgentIdSessionsResponse, type GetAdminTrainingSessionsAgentsByAgentIdSessionsResponses, type GetAdminTrainingSessionsByIdData, type GetAdminTrainingSessionsByIdError, type GetAdminTrainingSessionsByIdErrors, type GetAdminTrainingSessionsByIdResponse, type GetAdminTrainingSessionsByIdResponses, type GetAdminTransactionsByIdData, type GetAdminTransactionsByIdError, type GetAdminTransactionsByIdErrors, type GetAdminTransactionsByIdResponse, type GetAdminTransactionsByIdResponses, type GetAdminTransactionsData, type GetAdminTransactionsError, type GetAdminTransactionsErrors, type GetAdminTransactionsResponse, type GetAdminTransactionsResponses, type GetAdminTransfersByIdData, type GetAdminTransfersByIdError, type GetAdminTransfersByIdErrors, type GetAdminTransfersByIdResponse, type GetAdminTransfersByIdResponses, type GetAdminTransfersData, type GetAdminTransfersError, type GetAdminTransfersErrors, type GetAdminTransfersResponse, type GetAdminTransfersResponses, type GetAdminUserProfilesByIdData, type GetAdminUserProfilesByIdError, type GetAdminUserProfilesByIdErrors, type GetAdminUserProfilesByIdResponse, type GetAdminUserProfilesByIdResponses, type GetAdminUserProfilesData, type GetAdminUserProfilesError, type GetAdminUserProfilesErrors, type GetAdminUserProfilesMeData, type GetAdminUserProfilesMeError, type GetAdminUserProfilesMeErrors, type GetAdminUserProfilesMeResponse, type GetAdminUserProfilesMeResponses, type GetAdminUserProfilesResponse, type GetAdminUserProfilesResponses, type GetAdminUsersByEmailData, type GetAdminUsersByEmailError, type GetAdminUsersByEmailErrors, type GetAdminUsersByEmailResponse, type GetAdminUsersByEmailResponses, type GetAdminUsersByIdData, type GetAdminUsersByIdError, type GetAdminUsersByIdErrors, type GetAdminUsersByIdResponse, type GetAdminUsersByIdResponses, type GetAdminUsersData, type GetAdminUsersError, type GetAdminUsersErrors, type GetAdminUsersMeActivityData, type GetAdminUsersMeActivityError, type GetAdminUsersMeActivityErrors, type GetAdminUsersMeActivityResponse, type GetAdminUsersMeActivityResponses, type GetAdminUsersMeDashboardData, type GetAdminUsersMeDashboardError, type GetAdminUsersMeDashboardErrors, type GetAdminUsersMeDashboardResponse, type GetAdminUsersMeDashboardResponses, type GetAdminUsersMeData, type GetAdminUsersMeError, type GetAdminUsersMeErrors, type GetAdminUsersMeResponse, type GetAdminUsersMeResponses, type GetAdminUsersMeStatsData, type GetAdminUsersMeStatsError, type GetAdminUsersMeStatsErrors, type GetAdminUsersMeStatsResponse, type GetAdminUsersMeStatsResponses, type GetAdminUsersMeTenantsData, type GetAdminUsersMeTenantsError, type GetAdminUsersMeTenantsErrors, type GetAdminUsersMeTenantsResponse, type GetAdminUsersMeTenantsResponses, type GetAdminUsersResponse, type GetAdminUsersResponses, type GetAdminWalletData, type GetAdminWalletError, type GetAdminWalletErrors, type GetAdminWalletResponse, type GetAdminWalletResponses, type GetAdminWalletStorageBreakdownData, type GetAdminWalletStorageBreakdownError, type GetAdminWalletStorageBreakdownErrors, type GetAdminWalletStorageBreakdownResponse, type GetAdminWalletStorageBreakdownResponses, type GetAdminWalletUsageBreakdownData, type GetAdminWalletUsageBreakdownError, type GetAdminWalletUsageBreakdownErrors, type GetAdminWalletUsageBreakdownResponse, type GetAdminWalletUsageBreakdownResponses, type GetAdminWalletUsageData, type GetAdminWalletUsageError, type GetAdminWalletUsageErrors, type GetAdminWalletUsageResponse, type GetAdminWalletUsageResponses, type GetAdminWebhookConfigsByIdData, type GetAdminWebhookConfigsByIdError, type GetAdminWebhookConfigsByIdErrors, type GetAdminWebhookConfigsByIdEventsData, type GetAdminWebhookConfigsByIdEventsError, type GetAdminWebhookConfigsByIdEventsErrors, type GetAdminWebhookConfigsByIdEventsResponse, type GetAdminWebhookConfigsByIdEventsResponses, type GetAdminWebhookConfigsByIdResponse, type GetAdminWebhookConfigsByIdResponses, type GetAdminWebhookConfigsData, type GetAdminWebhookConfigsError, type GetAdminWebhookConfigsErrors, type GetAdminWebhookConfigsResponse, type GetAdminWebhookConfigsResponses, type GetAdminWebhookConfigsStatsData, type GetAdminWebhookConfigsStatsError, type GetAdminWebhookConfigsStatsErrors, type GetAdminWebhookConfigsStatsResponse, type GetAdminWebhookConfigsStatsResponses, type GetAdminWebhookDeliveriesByIdData, type GetAdminWebhookDeliveriesByIdError, type GetAdminWebhookDeliveriesByIdErrors, type GetAdminWebhookDeliveriesByIdResponse, type GetAdminWebhookDeliveriesByIdResponses, type GetAdminWebhookDeliveriesData, type GetAdminWebhookDeliveriesError, type GetAdminWebhookDeliveriesErrors, type GetAdminWebhookDeliveriesResponse, type GetAdminWebhookDeliveriesResponses, type GetAdminWebhookDeliveriesStatsData, type GetAdminWebhookDeliveriesStatsError, type GetAdminWebhookDeliveriesStatsErrors, type GetAdminWebhookDeliveriesStatsResponse, type GetAdminWebhookDeliveriesStatsResponses, type GetAdminWholesaleAgreementsByIdData, type GetAdminWholesaleAgreementsByIdError, type GetAdminWholesaleAgreementsByIdErrors, type GetAdminWholesaleAgreementsByIdResponse, type GetAdminWholesaleAgreementsByIdResponses, type GetAdminWholesaleAgreementsData, type GetAdminWholesaleAgreementsError, type GetAdminWholesaleAgreementsErrors, type GetAdminWholesaleAgreementsResponse, type GetAdminWholesaleAgreementsResponses, type GetAdminWorkspaceMembershipsData, type GetAdminWorkspaceMembershipsError, type GetAdminWorkspaceMembershipsErrors, type GetAdminWorkspaceMembershipsResponse, type GetAdminWorkspaceMembershipsResponses, type GetAdminWorkspacesAnalyticsBatchData, type GetAdminWorkspacesAnalyticsBatchError, type GetAdminWorkspacesAnalyticsBatchErrors, type GetAdminWorkspacesAnalyticsBatchResponse, type GetAdminWorkspacesAnalyticsBatchResponses, type GetAdminWorkspacesByIdData, type GetAdminWorkspacesByIdError, type GetAdminWorkspacesByIdErrors, type GetAdminWorkspacesByIdMembersData, type GetAdminWorkspacesByIdMembersError, type GetAdminWorkspacesByIdMembersErrors, type GetAdminWorkspacesByIdMembersResponse, type GetAdminWorkspacesByIdMembersResponses, type GetAdminWorkspacesByIdResponse, type GetAdminWorkspacesByIdResponses, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingError, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponse, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdData, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdError, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdErrors, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdResponse, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdResponses, type GetAdminWorkspacesByWorkspaceIdExtractionExportsData, type GetAdminWorkspacesByWorkspaceIdExtractionExportsError, type GetAdminWorkspacesByWorkspaceIdExtractionExportsErrors, type GetAdminWorkspacesByWorkspaceIdExtractionExportsResponse, type GetAdminWorkspacesByWorkspaceIdExtractionExportsResponses, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsData, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsError, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsErrors, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsResponse, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsResponses, type GetAdminWorkspacesData, type GetAdminWorkspacesError, type GetAdminWorkspacesErrors, type GetAdminWorkspacesMineData, type GetAdminWorkspacesMineError, type GetAdminWorkspacesMineErrors, type GetAdminWorkspacesMineResponse, type GetAdminWorkspacesMineResponses, type GetAdminWorkspacesResponse, type GetAdminWorkspacesResponses, type GetAdminWorkspacesSharedData, type GetAdminWorkspacesSharedError, type GetAdminWorkspacesSharedErrors, type GetAdminWorkspacesSharedResponse, type GetAdminWorkspacesSharedResponses, GptAdmin, GptCoreError, type GraphEdge, type GraphNode, type Invitation, type Invoice, type IsvRevenue, type IsvSettlement, type Ledger, type Link, type Links, type LlmAnalytics, type Message, NetworkError, NotFoundError, type NotificationLog, type NotificationMethod, type NotificationPreference, type ObjectType, type OperationSuccess, type PatchAdminAccountsByIdCreditData, type PatchAdminAccountsByIdCreditError, type PatchAdminAccountsByIdCreditErrors, type PatchAdminAccountsByIdCreditResponse, type PatchAdminAccountsByIdCreditResponses, type PatchAdminAccountsByIdDebitData, type PatchAdminAccountsByIdDebitError, type PatchAdminAccountsByIdDebitErrors, type PatchAdminAccountsByIdDebitResponse, type PatchAdminAccountsByIdDebitResponses, type PatchAdminAgentsByIdSchemaVersionsByVersionIdData, type PatchAdminAgentsByIdSchemaVersionsByVersionIdError, type PatchAdminAgentsByIdSchemaVersionsByVersionIdErrors, type PatchAdminAgentsByIdSchemaVersionsByVersionIdResponse, type PatchAdminAgentsByIdSchemaVersionsByVersionIdResponses, type PatchAdminAiConversationsByIdData, type PatchAdminAiConversationsByIdError, type PatchAdminAiConversationsByIdErrors, type PatchAdminAiConversationsByIdResponse, type PatchAdminAiConversationsByIdResponses, type PatchAdminApiKeysByIdAllocateData, type PatchAdminApiKeysByIdAllocateError, type PatchAdminApiKeysByIdAllocateErrors, type PatchAdminApiKeysByIdAllocateResponse, type PatchAdminApiKeysByIdAllocateResponses, type PatchAdminApiKeysByIdData, type PatchAdminApiKeysByIdError, type PatchAdminApiKeysByIdErrors, type PatchAdminApiKeysByIdResetPeriodData, type PatchAdminApiKeysByIdResetPeriodError, type PatchAdminApiKeysByIdResetPeriodErrors, type PatchAdminApiKeysByIdResetPeriodResponse, type PatchAdminApiKeysByIdResetPeriodResponses, type PatchAdminApiKeysByIdResponse, type PatchAdminApiKeysByIdResponses, type PatchAdminApiKeysByIdRevokeData, type PatchAdminApiKeysByIdRevokeError, type PatchAdminApiKeysByIdRevokeErrors, type PatchAdminApiKeysByIdRevokeResponse, type PatchAdminApiKeysByIdRevokeResponses, type PatchAdminApiKeysByIdRotateData, type PatchAdminApiKeysByIdRotateError, type PatchAdminApiKeysByIdRotateErrors, type PatchAdminApiKeysByIdRotateResponse, type PatchAdminApiKeysByIdRotateResponses, type PatchAdminApiKeysByIdSetBudgetData, type PatchAdminApiKeysByIdSetBudgetError, type PatchAdminApiKeysByIdSetBudgetErrors, type PatchAdminApiKeysByIdSetBudgetResponse, type PatchAdminApiKeysByIdSetBudgetResponses, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugData, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugError, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugResponse, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses, type PatchAdminApplicationsByIdAllocateCreditsData, type PatchAdminApplicationsByIdAllocateCreditsError, type PatchAdminApplicationsByIdAllocateCreditsErrors, type PatchAdminApplicationsByIdAllocateCreditsResponse, type PatchAdminApplicationsByIdAllocateCreditsResponses, type PatchAdminApplicationsByIdData, type PatchAdminApplicationsByIdError, type PatchAdminApplicationsByIdErrors, type PatchAdminApplicationsByIdGrantCreditsData, type PatchAdminApplicationsByIdGrantCreditsError, type PatchAdminApplicationsByIdGrantCreditsErrors, type PatchAdminApplicationsByIdGrantCreditsResponse, type PatchAdminApplicationsByIdGrantCreditsResponses, type PatchAdminApplicationsByIdResponse, type PatchAdminApplicationsByIdResponses, type PatchAdminBucketsByIdData, type PatchAdminBucketsByIdError, type PatchAdminBucketsByIdErrors, type PatchAdminBucketsByIdResponse, type PatchAdminBucketsByIdResponses, type PatchAdminConfigsByKeyData, type PatchAdminConfigsByKeyError, type PatchAdminConfigsByKeyErrors, type PatchAdminConfigsByKeyResponse, type PatchAdminConfigsByKeyResponses, type PatchAdminCreditPackagesByIdData, type PatchAdminCreditPackagesByIdError, type PatchAdminCreditPackagesByIdErrors, type PatchAdminCreditPackagesByIdResponse, type PatchAdminCreditPackagesByIdResponses, type PatchAdminCustomersByIdData, type PatchAdminCustomersByIdError, type PatchAdminCustomersByIdErrors, type PatchAdminCustomersByIdResponse, type PatchAdminCustomersByIdResponses, type PatchAdminExtractionConfigEnumsByIdData, type PatchAdminExtractionConfigEnumsByIdError, type PatchAdminExtractionConfigEnumsByIdErrors, type PatchAdminExtractionConfigEnumsByIdResponse, type PatchAdminExtractionConfigEnumsByIdResponses, type PatchAdminExtractionDocumentsByIdCancelData, type PatchAdminExtractionDocumentsByIdCancelError, type PatchAdminExtractionDocumentsByIdCancelErrors, type PatchAdminExtractionDocumentsByIdCancelResponse, type PatchAdminExtractionDocumentsByIdCancelResponses, type PatchAdminExtractionDocumentsByIdDismissData, type PatchAdminExtractionDocumentsByIdDismissError, type PatchAdminExtractionDocumentsByIdDismissErrors, type PatchAdminExtractionDocumentsByIdDismissResponse, type PatchAdminExtractionDocumentsByIdDismissResponses, type PatchAdminExtractionDocumentsByIdDismissTrainingData, type PatchAdminExtractionDocumentsByIdDismissTrainingError, type PatchAdminExtractionDocumentsByIdDismissTrainingErrors, type PatchAdminExtractionDocumentsByIdDismissTrainingResponse, type PatchAdminExtractionDocumentsByIdDismissTrainingResponses, type PatchAdminExtractionDocumentsByIdExcludeData, type PatchAdminExtractionDocumentsByIdExcludeError, type PatchAdminExtractionDocumentsByIdExcludeErrors, type PatchAdminExtractionDocumentsByIdExcludeResponse, type PatchAdminExtractionDocumentsByIdExcludeResponses, type PatchAdminExtractionDocumentsByIdFinishUploadData, type PatchAdminExtractionDocumentsByIdFinishUploadError, type PatchAdminExtractionDocumentsByIdFinishUploadErrors, type PatchAdminExtractionDocumentsByIdFinishUploadResponse, type PatchAdminExtractionDocumentsByIdFinishUploadResponses, type PatchAdminExtractionDocumentsByIdIncludeData, type PatchAdminExtractionDocumentsByIdIncludeError, type PatchAdminExtractionDocumentsByIdIncludeErrors, type PatchAdminExtractionDocumentsByIdIncludeResponse, type PatchAdminExtractionDocumentsByIdIncludeResponses, type PatchAdminExtractionDocumentsByIdMarkTrainedData, type PatchAdminExtractionDocumentsByIdMarkTrainedError, type PatchAdminExtractionDocumentsByIdMarkTrainedErrors, type PatchAdminExtractionDocumentsByIdMarkTrainedResponse, type PatchAdminExtractionDocumentsByIdMarkTrainedResponses, type PatchAdminExtractionDocumentsByIdReprocessData, type PatchAdminExtractionDocumentsByIdReprocessError, type PatchAdminExtractionDocumentsByIdReprocessErrors, type PatchAdminExtractionDocumentsByIdReprocessResponse, type PatchAdminExtractionDocumentsByIdReprocessResponses, type PatchAdminExtractionDocumentsByIdRestoreData, type PatchAdminExtractionDocumentsByIdRestoreError, type PatchAdminExtractionDocumentsByIdRestoreErrors, type PatchAdminExtractionDocumentsByIdRestoreResponse, type PatchAdminExtractionDocumentsByIdRestoreResponses, type PatchAdminExtractionDocumentsByIdStatusData, type PatchAdminExtractionDocumentsByIdStatusError, type PatchAdminExtractionDocumentsByIdStatusErrors, type PatchAdminExtractionDocumentsByIdStatusResponse, type PatchAdminExtractionDocumentsByIdStatusResponses, type PatchAdminExtractionDocumentsByIdVerificationData, type PatchAdminExtractionDocumentsByIdVerificationError, type PatchAdminExtractionDocumentsByIdVerificationErrors, type PatchAdminExtractionDocumentsByIdVerificationResponse, type PatchAdminExtractionDocumentsByIdVerificationResponses, type PatchAdminExtractionResultsByIdData, type PatchAdminExtractionResultsByIdError, type PatchAdminExtractionResultsByIdErrors, type PatchAdminExtractionResultsByIdRegenerateData, type PatchAdminExtractionResultsByIdRegenerateError, type PatchAdminExtractionResultsByIdRegenerateErrors, type PatchAdminExtractionResultsByIdRegenerateResponse, type PatchAdminExtractionResultsByIdRegenerateResponses, type PatchAdminExtractionResultsByIdResponse, type PatchAdminExtractionResultsByIdResponses, type PatchAdminExtractionResultsByIdSaveCorrectionsData, type PatchAdminExtractionResultsByIdSaveCorrectionsError, type PatchAdminExtractionResultsByIdSaveCorrectionsErrors, type PatchAdminExtractionResultsByIdSaveCorrectionsResponse, type PatchAdminExtractionResultsByIdSaveCorrectionsResponses, type PatchAdminInvitationsByIdAcceptByUserData, type PatchAdminInvitationsByIdAcceptByUserError, type PatchAdminInvitationsByIdAcceptByUserErrors, type PatchAdminInvitationsByIdAcceptByUserResponse, type PatchAdminInvitationsByIdAcceptByUserResponses, type PatchAdminInvitationsByIdAcceptData, type PatchAdminInvitationsByIdAcceptError, type PatchAdminInvitationsByIdAcceptErrors, type PatchAdminInvitationsByIdAcceptResponse, type PatchAdminInvitationsByIdAcceptResponses, type PatchAdminInvitationsByIdDeclineData, type PatchAdminInvitationsByIdDeclineError, type PatchAdminInvitationsByIdDeclineErrors, type PatchAdminInvitationsByIdDeclineResponse, type PatchAdminInvitationsByIdDeclineResponses, type PatchAdminInvitationsByIdResendData, type PatchAdminInvitationsByIdResendError, type PatchAdminInvitationsByIdResendErrors, type PatchAdminInvitationsByIdResendResponse, type PatchAdminInvitationsByIdResendResponses, type PatchAdminInvitationsByIdRevokeData, type PatchAdminInvitationsByIdRevokeError, type PatchAdminInvitationsByIdRevokeErrors, type PatchAdminInvitationsByIdRevokeResponse, type PatchAdminInvitationsByIdRevokeResponses, type PatchAdminIsvSettlementsByIdData, type PatchAdminIsvSettlementsByIdError, type PatchAdminIsvSettlementsByIdErrors, type PatchAdminIsvSettlementsByIdResponse, type PatchAdminIsvSettlementsByIdResponses, type PatchAdminMessagesByIdData, type PatchAdminMessagesByIdError, type PatchAdminMessagesByIdErrors, type PatchAdminMessagesByIdResponse, type PatchAdminMessagesByIdResponses, type PatchAdminNotificationMethodsByIdData, type PatchAdminNotificationMethodsByIdError, type PatchAdminNotificationMethodsByIdErrors, type PatchAdminNotificationMethodsByIdResponse, type PatchAdminNotificationMethodsByIdResponses, type PatchAdminNotificationMethodsByIdSendVerificationData, type PatchAdminNotificationMethodsByIdSendVerificationError, type PatchAdminNotificationMethodsByIdSendVerificationErrors, type PatchAdminNotificationMethodsByIdSendVerificationResponse, type PatchAdminNotificationMethodsByIdSendVerificationResponses, type PatchAdminNotificationMethodsByIdSetPrimaryData, type PatchAdminNotificationMethodsByIdSetPrimaryError, type PatchAdminNotificationMethodsByIdSetPrimaryErrors, type PatchAdminNotificationMethodsByIdSetPrimaryResponse, type PatchAdminNotificationMethodsByIdSetPrimaryResponses, type PatchAdminNotificationMethodsByIdVerifyData, type PatchAdminNotificationMethodsByIdVerifyError, type PatchAdminNotificationMethodsByIdVerifyErrors, type PatchAdminNotificationMethodsByIdVerifyResponse, type PatchAdminNotificationMethodsByIdVerifyResponses, type PatchAdminNotificationPreferencesByIdData, type PatchAdminNotificationPreferencesByIdError, type PatchAdminNotificationPreferencesByIdErrors, type PatchAdminNotificationPreferencesByIdResponse, type PatchAdminNotificationPreferencesByIdResponses, type PatchAdminPaymentMethodsByIdData, type PatchAdminPaymentMethodsByIdDefaultData, type PatchAdminPaymentMethodsByIdDefaultError, type PatchAdminPaymentMethodsByIdDefaultErrors, type PatchAdminPaymentMethodsByIdDefaultResponse, type PatchAdminPaymentMethodsByIdDefaultResponses, type PatchAdminPaymentMethodsByIdError, type PatchAdminPaymentMethodsByIdErrors, type PatchAdminPaymentMethodsByIdResponse, type PatchAdminPaymentMethodsByIdResponses, type PatchAdminPlansByIdData, type PatchAdminPlansByIdError, type PatchAdminPlansByIdErrors, type PatchAdminPlansByIdResponse, type PatchAdminPlansByIdResponses, type PatchAdminPricingRulesByIdData, type PatchAdminPricingRulesByIdError, type PatchAdminPricingRulesByIdErrors, type PatchAdminPricingRulesByIdResponse, type PatchAdminPricingRulesByIdResponses, type PatchAdminPricingStrategiesByIdData, type PatchAdminPricingStrategiesByIdError, type PatchAdminPricingStrategiesByIdErrors, type PatchAdminPricingStrategiesByIdResponse, type PatchAdminPricingStrategiesByIdResponses, type PatchAdminSearchSavedByIdData, type PatchAdminSearchSavedByIdError, type PatchAdminSearchSavedByIdErrors, type PatchAdminSearchSavedByIdResponse, type PatchAdminSearchSavedByIdResponses, type PatchAdminSubscriptionsByIdCancelData, type PatchAdminSubscriptionsByIdCancelError, type PatchAdminSubscriptionsByIdCancelErrors, type PatchAdminSubscriptionsByIdCancelResponse, type PatchAdminSubscriptionsByIdCancelResponses, type PatchAdminSubscriptionsByIdData, type PatchAdminSubscriptionsByIdError, type PatchAdminSubscriptionsByIdErrors, type PatchAdminSubscriptionsByIdResponse, type PatchAdminSubscriptionsByIdResponses, type PatchAdminSysAiConfigByIdData, type PatchAdminSysAiConfigByIdError, type PatchAdminSysAiConfigByIdErrors, type PatchAdminSysAiConfigByIdResponse, type PatchAdminSysAiConfigByIdResponses, type PatchAdminSystemMessagesByIdData, type PatchAdminSystemMessagesByIdError, type PatchAdminSystemMessagesByIdErrors, type PatchAdminSystemMessagesByIdPublishData, type PatchAdminSystemMessagesByIdPublishError, type PatchAdminSystemMessagesByIdPublishErrors, type PatchAdminSystemMessagesByIdPublishResponse, type PatchAdminSystemMessagesByIdPublishResponses, type PatchAdminSystemMessagesByIdResponse, type PatchAdminSystemMessagesByIdResponses, type PatchAdminSystemMessagesByIdUnpublishData, type PatchAdminSystemMessagesByIdUnpublishError, type PatchAdminSystemMessagesByIdUnpublishErrors, type PatchAdminSystemMessagesByIdUnpublishResponse, type PatchAdminSystemMessagesByIdUnpublishResponses, type PatchAdminTenantMembershipsByTenantIdByUserIdData, type PatchAdminTenantMembershipsByTenantIdByUserIdError, type PatchAdminTenantMembershipsByTenantIdByUserIdErrors, type PatchAdminTenantMembershipsByTenantIdByUserIdResponse, type PatchAdminTenantMembershipsByTenantIdByUserIdResponses, type PatchAdminTenantPricingOverridesByIdData, type PatchAdminTenantPricingOverridesByIdError, type PatchAdminTenantPricingOverridesByIdErrors, type PatchAdminTenantPricingOverridesByIdResponse, type PatchAdminTenantPricingOverridesByIdResponses, type PatchAdminTenantsByIdData, type PatchAdminTenantsByIdError, type PatchAdminTenantsByIdErrors, type PatchAdminTenantsByIdResponse, type PatchAdminTenantsByIdResponses, type PatchAdminThreadsByIdArchiveData, type PatchAdminThreadsByIdArchiveError, type PatchAdminThreadsByIdArchiveErrors, type PatchAdminThreadsByIdArchiveResponse, type PatchAdminThreadsByIdArchiveResponses, type PatchAdminThreadsByIdData, type PatchAdminThreadsByIdError, type PatchAdminThreadsByIdErrors, type PatchAdminThreadsByIdResponse, type PatchAdminThreadsByIdResponses, type PatchAdminThreadsByIdUnarchiveData, type PatchAdminThreadsByIdUnarchiveError, type PatchAdminThreadsByIdUnarchiveErrors, type PatchAdminThreadsByIdUnarchiveResponse, type PatchAdminThreadsByIdUnarchiveResponses, type PatchAdminTrainingExamplesByIdData, type PatchAdminTrainingExamplesByIdError, type PatchAdminTrainingExamplesByIdErrors, type PatchAdminTrainingExamplesByIdResponse, type PatchAdminTrainingExamplesByIdResponses, type PatchAdminUserProfilesByIdAcceptTosData, type PatchAdminUserProfilesByIdAcceptTosError, type PatchAdminUserProfilesByIdAcceptTosErrors, type PatchAdminUserProfilesByIdAcceptTosResponse, type PatchAdminUserProfilesByIdAcceptTosResponses, type PatchAdminUserProfilesByIdData, type PatchAdminUserProfilesByIdDismissAnnouncementData, type PatchAdminUserProfilesByIdDismissAnnouncementError, type PatchAdminUserProfilesByIdDismissAnnouncementErrors, type PatchAdminUserProfilesByIdDismissAnnouncementResponse, type PatchAdminUserProfilesByIdDismissAnnouncementResponses, type PatchAdminUserProfilesByIdDismissWelcomeData, type PatchAdminUserProfilesByIdDismissWelcomeError, type PatchAdminUserProfilesByIdDismissWelcomeErrors, type PatchAdminUserProfilesByIdDismissWelcomeResponse, type PatchAdminUserProfilesByIdDismissWelcomeResponses, type PatchAdminUserProfilesByIdError, type PatchAdminUserProfilesByIdErrors, type PatchAdminUserProfilesByIdResponse, type PatchAdminUserProfilesByIdResponses, type PatchAdminUsersAuthPasswordChangeData, type PatchAdminUsersAuthPasswordChangeError, type PatchAdminUsersAuthPasswordChangeErrors, type PatchAdminUsersAuthPasswordChangeResponse, type PatchAdminUsersAuthPasswordChangeResponses, type PatchAdminUsersAuthResetPasswordData, type PatchAdminUsersAuthResetPasswordError, type PatchAdminUsersAuthResetPasswordErrors, type PatchAdminUsersAuthResetPasswordResponse, type PatchAdminUsersAuthResetPasswordResponses, type PatchAdminUsersByIdAdminData, type PatchAdminUsersByIdAdminEmailData, type PatchAdminUsersByIdAdminEmailError, type PatchAdminUsersByIdAdminEmailErrors, type PatchAdminUsersByIdAdminEmailResponse, type PatchAdminUsersByIdAdminEmailResponses, type PatchAdminUsersByIdAdminError, type PatchAdminUsersByIdAdminErrors, type PatchAdminUsersByIdAdminResponse, type PatchAdminUsersByIdAdminResponses, type PatchAdminUsersByIdConfirmEmailData, type PatchAdminUsersByIdConfirmEmailError, type PatchAdminUsersByIdConfirmEmailErrors, type PatchAdminUsersByIdConfirmEmailResponse, type PatchAdminUsersByIdConfirmEmailResponses, type PatchAdminUsersByIdResetPasswordData, type PatchAdminUsersByIdResetPasswordError, type PatchAdminUsersByIdResetPasswordErrors, type PatchAdminUsersByIdResetPasswordResponse, type PatchAdminUsersByIdResetPasswordResponses, type PatchAdminWalletAddonsByAddonSlugCancelData, type PatchAdminWalletAddonsByAddonSlugCancelError, type PatchAdminWalletAddonsByAddonSlugCancelErrors, type PatchAdminWalletAddonsByAddonSlugCancelResponse, type PatchAdminWalletAddonsByAddonSlugCancelResponses, type PatchAdminWalletAddonsData, type PatchAdminWalletAddonsError, type PatchAdminWalletAddonsErrors, type PatchAdminWalletAddonsResponse, type PatchAdminWalletAddonsResponses, type PatchAdminWalletCreditsData, type PatchAdminWalletCreditsError, type PatchAdminWalletCreditsErrors, type PatchAdminWalletCreditsResponse, type PatchAdminWalletCreditsResponses, type PatchAdminWalletPlanData, type PatchAdminWalletPlanError, type PatchAdminWalletPlanErrors, type PatchAdminWalletPlanResponse, type PatchAdminWalletPlanResponses, type PatchAdminWalletStorageData, type PatchAdminWalletStorageError, type PatchAdminWalletStorageErrors, type PatchAdminWalletStorageResponse, type PatchAdminWalletStorageResponses, type PatchAdminWebhookConfigsByIdData, type PatchAdminWebhookConfigsByIdError, type PatchAdminWebhookConfigsByIdErrors, type PatchAdminWebhookConfigsByIdResponse, type PatchAdminWebhookConfigsByIdResponses, type PatchAdminWebhookConfigsByIdRotateSecretData, type PatchAdminWebhookConfigsByIdRotateSecretError, type PatchAdminWebhookConfigsByIdRotateSecretErrors, type PatchAdminWebhookConfigsByIdRotateSecretResponse, type PatchAdminWebhookConfigsByIdRotateSecretResponses, type PatchAdminWholesaleAgreementsByIdData, type PatchAdminWholesaleAgreementsByIdError, type PatchAdminWholesaleAgreementsByIdErrors, type PatchAdminWholesaleAgreementsByIdResponse, type PatchAdminWholesaleAgreementsByIdResponses, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdData, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdError, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponse, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type PatchAdminWorkspacesByIdAllocateData, type PatchAdminWorkspacesByIdAllocateError, type PatchAdminWorkspacesByIdAllocateErrors, type PatchAdminWorkspacesByIdAllocateResponse, type PatchAdminWorkspacesByIdAllocateResponses, type PatchAdminWorkspacesByIdData, type PatchAdminWorkspacesByIdError, type PatchAdminWorkspacesByIdErrors, type PatchAdminWorkspacesByIdResponse, type PatchAdminWorkspacesByIdResponses, type PatchAdminWorkspacesByIdStorageSettingsData, type PatchAdminWorkspacesByIdStorageSettingsError, type PatchAdminWorkspacesByIdStorageSettingsErrors, type PatchAdminWorkspacesByIdStorageSettingsResponse, type PatchAdminWorkspacesByIdStorageSettingsResponses, type Payment, type PaymentMethod, type Permission, type PermissionMeta, type PermissionPreset, type Plan, type PostAdminAgentTestResultsData, type PostAdminAgentTestResultsError, type PostAdminAgentTestResultsErrors, type PostAdminAgentTestResultsResponse, type PostAdminAgentTestResultsResponses, type PostAdminAgentVersionComparisonsData, type PostAdminAgentVersionComparisonsError, type PostAdminAgentVersionComparisonsErrors, type PostAdminAgentVersionComparisonsResponse, type PostAdminAgentVersionComparisonsResponses, type PostAdminAgentVersionsByIdAddSystemFieldData, type PostAdminAgentVersionsByIdAddSystemFieldError, type PostAdminAgentVersionsByIdAddSystemFieldErrors, type PostAdminAgentVersionsByIdAddSystemFieldResponses, type PostAdminAgentVersionsByIdRemoveSystemFieldData, type PostAdminAgentVersionsByIdRemoveSystemFieldError, type PostAdminAgentVersionsByIdRemoveSystemFieldErrors, type PostAdminAgentVersionsByIdRemoveSystemFieldResponses, type PostAdminAgentVersionsByIdSetSystemFieldsData, type PostAdminAgentVersionsByIdSetSystemFieldsError, type PostAdminAgentVersionsByIdSetSystemFieldsErrors, type PostAdminAgentVersionsByIdSetSystemFieldsResponses, type PostAdminAgentVersionsData, type PostAdminAgentVersionsError, type PostAdminAgentVersionsErrors, type PostAdminAgentVersionsResponse, type PostAdminAgentVersionsResponses, type PostAdminAgentsByIdCloneData, type PostAdminAgentsByIdCloneError, type PostAdminAgentsByIdCloneErrors, type PostAdminAgentsByIdCloneResponse, type PostAdminAgentsByIdCloneResponses, type PostAdminAgentsByIdDiscoverSchemaData, type PostAdminAgentsByIdDiscoverSchemaError, type PostAdminAgentsByIdDiscoverSchemaErrors, type PostAdminAgentsByIdDiscoverSchemaResponse, type PostAdminAgentsByIdDiscoverSchemaResponses, type PostAdminAgentsByIdExportData, type PostAdminAgentsByIdExportError, type PostAdminAgentsByIdExportErrors, type PostAdminAgentsByIdExportResponse, type PostAdminAgentsByIdExportResponses, type PostAdminAgentsByIdPublishVersionData, type PostAdminAgentsByIdPublishVersionError, type PostAdminAgentsByIdPublishVersionErrors, type PostAdminAgentsByIdPublishVersionResponse, type PostAdminAgentsByIdPublishVersionResponses, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateData, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateError, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateErrors, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponse, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponses, type PostAdminAgentsByIdSchemaVersionsData, type PostAdminAgentsByIdSchemaVersionsError, type PostAdminAgentsByIdSchemaVersionsErrors, type PostAdminAgentsByIdSchemaVersionsResponse, type PostAdminAgentsByIdSchemaVersionsResponses, type PostAdminAgentsByIdTeachData, type PostAdminAgentsByIdTeachError, type PostAdminAgentsByIdTeachErrors, type PostAdminAgentsByIdTeachResponse, type PostAdminAgentsByIdTeachResponses, type PostAdminAgentsByIdTestData, type PostAdminAgentsByIdTestError, type PostAdminAgentsByIdTestErrors, type PostAdminAgentsByIdTestResponse, type PostAdminAgentsByIdTestResponses, type PostAdminAgentsByIdValidateData, type PostAdminAgentsByIdValidateError, type PostAdminAgentsByIdValidateErrors, type PostAdminAgentsByIdValidateResponse, type PostAdminAgentsByIdValidateResponses, type PostAdminAgentsCloneForWorkspaceData, type PostAdminAgentsCloneForWorkspaceError, type PostAdminAgentsCloneForWorkspaceErrors, type PostAdminAgentsCloneForWorkspaceResponse, type PostAdminAgentsCloneForWorkspaceResponses, type PostAdminAgentsImportData, type PostAdminAgentsImportError, type PostAdminAgentsImportErrors, type PostAdminAgentsImportResponse, type PostAdminAgentsImportResponses, type PostAdminAgentsPredictData, type PostAdminAgentsPredictError, type PostAdminAgentsPredictErrors, type PostAdminAgentsPredictResponse, type PostAdminAgentsPredictResponses, type PostAdminAiChunksSearchData, type PostAdminAiChunksSearchError, type PostAdminAiChunksSearchErrors, type PostAdminAiChunksSearchResponse, type PostAdminAiChunksSearchResponses, type PostAdminAiConversationsData, type PostAdminAiConversationsError, type PostAdminAiConversationsErrors, type PostAdminAiConversationsResponse, type PostAdminAiConversationsResponses, type PostAdminAiEmbedData, type PostAdminAiEmbedError, type PostAdminAiEmbedErrors, type PostAdminAiEmbedResponse, type PostAdminAiEmbedResponses, type PostAdminAiGraphEdgesData, type PostAdminAiGraphEdgesError, type PostAdminAiGraphEdgesErrors, type PostAdminAiGraphEdgesResponse, type PostAdminAiGraphEdgesResponses, type PostAdminAiGraphNodesData, type PostAdminAiGraphNodesError, type PostAdminAiGraphNodesErrors, type PostAdminAiGraphNodesResponse, type PostAdminAiGraphNodesResponses, type PostAdminAiMessagesData, type PostAdminAiMessagesError, type PostAdminAiMessagesErrors, type PostAdminAiMessagesResponse, type PostAdminAiMessagesResponses, type PostAdminAiSearchAdvancedData, type PostAdminAiSearchAdvancedError, type PostAdminAiSearchAdvancedErrors, type PostAdminAiSearchAdvancedResponse, type PostAdminAiSearchAdvancedResponses, type PostAdminAiSearchData, type PostAdminAiSearchError, type PostAdminAiSearchErrors, type PostAdminAiSearchResponse, type PostAdminAiSearchResponses, type PostAdminApiKeysData, type PostAdminApiKeysError, type PostAdminApiKeysErrors, type PostAdminApiKeysResponse, type PostAdminApiKeysResponses, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewData, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewError, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewErrors, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewResponse, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewResponses, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestData, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestError, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestErrors, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestResponse, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestResponses, type PostAdminApplicationsByApplicationIdEmailTemplatesData, type PostAdminApplicationsByApplicationIdEmailTemplatesError, type PostAdminApplicationsByApplicationIdEmailTemplatesErrors, type PostAdminApplicationsByApplicationIdEmailTemplatesResponse, type PostAdminApplicationsByApplicationIdEmailTemplatesResponses, type PostAdminApplicationsData, type PostAdminApplicationsError, type PostAdminApplicationsErrors, type PostAdminApplicationsResponse, type PostAdminApplicationsResponses, type PostAdminBucketsData, type PostAdminBucketsError, type PostAdminBucketsErrors, type PostAdminBucketsResponse, type PostAdminBucketsResponses, type PostAdminConfigsData, type PostAdminConfigsError, type PostAdminConfigsErrors, type PostAdminConfigsResponse, type PostAdminConfigsResponses, type PostAdminCreditPackagesData, type PostAdminCreditPackagesError, type PostAdminCreditPackagesErrors, type PostAdminCreditPackagesResponse, type PostAdminCreditPackagesResponses, type PostAdminCustomersData, type PostAdminCustomersError, type PostAdminCustomersErrors, type PostAdminCustomersResponse, type PostAdminCustomersResponses, type PostAdminDocumentsBulkDeleteData, type PostAdminDocumentsBulkDeleteError, type PostAdminDocumentsBulkDeleteErrors, type PostAdminDocumentsBulkDeleteResponse, type PostAdminDocumentsBulkDeleteResponses, type PostAdminDocumentsPresignedUploadData, type PostAdminDocumentsPresignedUploadError, type PostAdminDocumentsPresignedUploadErrors, type PostAdminDocumentsPresignedUploadResponse, type PostAdminDocumentsPresignedUploadResponses, type PostAdminExtractionBatchesData, type PostAdminExtractionBatchesError, type PostAdminExtractionBatchesErrors, type PostAdminExtractionBatchesResponse, type PostAdminExtractionBatchesResponses, type PostAdminExtractionConfigEnumsData, type PostAdminExtractionConfigEnumsError, type PostAdminExtractionConfigEnumsErrors, type PostAdminExtractionConfigEnumsResponse, type PostAdminExtractionConfigEnumsResponses, type PostAdminExtractionDocumentsBeginUploadData, type PostAdminExtractionDocumentsBeginUploadError, type PostAdminExtractionDocumentsBeginUploadErrors, type PostAdminExtractionDocumentsBeginUploadResponse, type PostAdminExtractionDocumentsBeginUploadResponses, type PostAdminExtractionDocumentsBulkReprocessData, type PostAdminExtractionDocumentsBulkReprocessError, type PostAdminExtractionDocumentsBulkReprocessErrors, type PostAdminExtractionDocumentsBulkReprocessResponse, type PostAdminExtractionDocumentsBulkReprocessResponses, type PostAdminExtractionDocumentsUploadData, type PostAdminExtractionDocumentsUploadError, type PostAdminExtractionDocumentsUploadErrors, type PostAdminExtractionDocumentsUploadResponse, type PostAdminExtractionDocumentsUploadResponses, type PostAdminExtractionSchemaDiscoveriesData, type PostAdminExtractionSchemaDiscoveriesError, type PostAdminExtractionSchemaDiscoveriesErrors, type PostAdminExtractionSchemaDiscoveriesResponse, type PostAdminExtractionSchemaDiscoveriesResponses, type PostAdminFieldTemplatesData, type PostAdminFieldTemplatesError, type PostAdminFieldTemplatesErrors, type PostAdminFieldTemplatesResponse, type PostAdminFieldTemplatesResponses, type PostAdminInvitationsAcceptByTokenData, type PostAdminInvitationsAcceptByTokenError, type PostAdminInvitationsAcceptByTokenErrors, type PostAdminInvitationsAcceptByTokenResponse, type PostAdminInvitationsAcceptByTokenResponses, type PostAdminInvitationsData, type PostAdminInvitationsError, type PostAdminInvitationsErrors, type PostAdminInvitationsResponse, type PostAdminInvitationsResponses, type PostAdminIsvRevenueData, type PostAdminIsvRevenueError, type PostAdminIsvRevenueErrors, type PostAdminIsvRevenueResponse, type PostAdminIsvRevenueResponses, type PostAdminIsvSettlementsData, type PostAdminIsvSettlementsError, type PostAdminIsvSettlementsErrors, type PostAdminIsvSettlementsResponse, type PostAdminIsvSettlementsResponses, type PostAdminLlmAnalyticsData, type PostAdminLlmAnalyticsError, type PostAdminLlmAnalyticsErrors, type PostAdminLlmAnalyticsResponse, type PostAdminLlmAnalyticsResponses, type PostAdminMessagesData, type PostAdminMessagesError, type PostAdminMessagesErrors, type PostAdminMessagesResponse, type PostAdminMessagesResponses, type PostAdminNotificationMethodsData, type PostAdminNotificationMethodsError, type PostAdminNotificationMethodsErrors, type PostAdminNotificationMethodsResponse, type PostAdminNotificationMethodsResponses, type PostAdminNotificationPreferencesData, type PostAdminNotificationPreferencesError, type PostAdminNotificationPreferencesErrors, type PostAdminNotificationPreferencesResponse, type PostAdminNotificationPreferencesResponses, type PostAdminObjectsBulkDestroyData, type PostAdminObjectsBulkDestroyError, type PostAdminObjectsBulkDestroyErrors, type PostAdminObjectsBulkDestroyResponse, type PostAdminObjectsBulkDestroyResponses, type PostAdminObjectsCopyData, type PostAdminObjectsCopyError, type PostAdminObjectsCopyErrors, type PostAdminObjectsCopyResponse, type PostAdminObjectsCopyResponses, type PostAdminObjectsMoveData, type PostAdminObjectsMoveError, type PostAdminObjectsMoveErrors, type PostAdminObjectsMoveResponse, type PostAdminObjectsMoveResponses, type PostAdminObjectsRegisterData, type PostAdminObjectsRegisterError, type PostAdminObjectsRegisterErrors, type PostAdminObjectsRegisterResponse, type PostAdminObjectsRegisterResponses, type PostAdminPaymentMethodsData, type PostAdminPaymentMethodsError, type PostAdminPaymentMethodsErrors, type PostAdminPaymentMethodsResponse, type PostAdminPaymentMethodsResponses, type PostAdminPaymentMethodsTokenizeData, type PostAdminPaymentMethodsTokenizeError, type PostAdminPaymentMethodsTokenizeErrors, type PostAdminPaymentMethodsTokenizeResponse, type PostAdminPaymentMethodsTokenizeResponses, type PostAdminPaymentsData, type PostAdminPaymentsError, type PostAdminPaymentsErrors, type PostAdminPaymentsResponse, type PostAdminPaymentsResponses, type PostAdminPlansData, type PostAdminPlansError, type PostAdminPlansErrors, type PostAdminPlansResponse, type PostAdminPlansResponses, type PostAdminPricingRulesData, type PostAdminPricingRulesError, type PostAdminPricingRulesErrors, type PostAdminPricingRulesResponse, type PostAdminPricingRulesResponses, type PostAdminPricingStrategiesData, type PostAdminPricingStrategiesError, type PostAdminPricingStrategiesErrors, type PostAdminPricingStrategiesResponse, type PostAdminPricingStrategiesResponses, type PostAdminSearchBatchData, type PostAdminSearchBatchError, type PostAdminSearchBatchErrors, type PostAdminSearchBatchResponse, type PostAdminSearchBatchResponses, type PostAdminSearchReindexData, type PostAdminSearchReindexError, type PostAdminSearchReindexErrors, type PostAdminSearchReindexResponse, type PostAdminSearchReindexResponses, type PostAdminSearchSavedByIdRunData, type PostAdminSearchSavedByIdRunError, type PostAdminSearchSavedByIdRunErrors, type PostAdminSearchSavedByIdRunResponse, type PostAdminSearchSavedByIdRunResponses, type PostAdminSearchSavedData, type PostAdminSearchSavedError, type PostAdminSearchSavedErrors, type PostAdminSearchSavedResponse, type PostAdminSearchSavedResponses, type PostAdminSettlementsData, type PostAdminSettlementsError, type PostAdminSettlementsErrors, type PostAdminSettlementsResponse, type PostAdminSettlementsResponses, type PostAdminStorageSignDownloadData, type PostAdminStorageSignDownloadError, type PostAdminStorageSignDownloadErrors, type PostAdminStorageSignDownloadResponse, type PostAdminStorageSignDownloadResponses, type PostAdminStorageSignUploadData, type PostAdminStorageSignUploadError, type PostAdminStorageSignUploadErrors, type PostAdminStorageSignUploadResponse, type PostAdminStorageSignUploadResponses, type PostAdminSubscriptionsData, type PostAdminSubscriptionsError, type PostAdminSubscriptionsErrors, type PostAdminSubscriptionsResponse, type PostAdminSubscriptionsResponses, type PostAdminSysAiConfigData, type PostAdminSysAiConfigError, type PostAdminSysAiConfigErrors, type PostAdminSysAiConfigResponse, type PostAdminSysAiConfigResponses, type PostAdminSysSemanticCacheClearData, type PostAdminSysSemanticCacheClearError, type PostAdminSysSemanticCacheClearErrors, type PostAdminSysSemanticCacheClearResponse, type PostAdminSysSemanticCacheClearResponses, type PostAdminSystemMessagesData, type PostAdminSystemMessagesError, type PostAdminSystemMessagesErrors, type PostAdminSystemMessagesResponse, type PostAdminSystemMessagesResponses, type PostAdminTenantMembershipsData, type PostAdminTenantMembershipsError, type PostAdminTenantMembershipsErrors, type PostAdminTenantMembershipsResponse, type PostAdminTenantMembershipsResponses, type PostAdminTenantPricingOverridesData, type PostAdminTenantPricingOverridesError, type PostAdminTenantPricingOverridesErrors, type PostAdminTenantPricingOverridesResponse, type PostAdminTenantPricingOverridesResponses, type PostAdminTenantsByIdBuyStorageData, type PostAdminTenantsByIdBuyStorageError, type PostAdminTenantsByIdBuyStorageErrors, type PostAdminTenantsByIdBuyStorageResponse, type PostAdminTenantsByIdBuyStorageResponses, type PostAdminTenantsByIdCreditData, type PostAdminTenantsByIdCreditError, type PostAdminTenantsByIdCreditErrors, type PostAdminTenantsByIdCreditResponse, type PostAdminTenantsByIdCreditResponses, type PostAdminTenantsByIdRemoveStorageData, type PostAdminTenantsByIdRemoveStorageError, type PostAdminTenantsByIdRemoveStorageErrors, type PostAdminTenantsByIdRemoveStorageResponse, type PostAdminTenantsByIdRemoveStorageResponses, type PostAdminTenantsByIdSchedulePurgeData, type PostAdminTenantsByIdSchedulePurgeError, type PostAdminTenantsByIdSchedulePurgeErrors, type PostAdminTenantsByIdSchedulePurgeResponse, type PostAdminTenantsByIdSchedulePurgeResponses, type PostAdminTenantsData, type PostAdminTenantsError, type PostAdminTenantsErrors, type PostAdminTenantsIsvData, type PostAdminTenantsIsvError, type PostAdminTenantsIsvErrors, type PostAdminTenantsIsvResponse, type PostAdminTenantsIsvResponses, type PostAdminTenantsResponse, type PostAdminTenantsResponses, type PostAdminThreadsActiveData, type PostAdminThreadsActiveError, type PostAdminThreadsActiveErrors, type PostAdminThreadsActiveResponse, type PostAdminThreadsActiveResponses, type PostAdminThreadsByIdExportData, type PostAdminThreadsByIdExportError, type PostAdminThreadsByIdExportErrors, type PostAdminThreadsByIdExportResponse, type PostAdminThreadsByIdExportResponses, type PostAdminThreadsByIdForkData, type PostAdminThreadsByIdForkError, type PostAdminThreadsByIdForkErrors, type PostAdminThreadsByIdForkResponse, type PostAdminThreadsByIdForkResponses, type PostAdminThreadsByIdMessagesData, type PostAdminThreadsByIdMessagesError, type PostAdminThreadsByIdMessagesErrors, type PostAdminThreadsByIdMessagesResponse, type PostAdminThreadsByIdMessagesResponses, type PostAdminThreadsByIdSummarizeData, type PostAdminThreadsByIdSummarizeError, type PostAdminThreadsByIdSummarizeErrors, type PostAdminThreadsByIdSummarizeResponse, type PostAdminThreadsByIdSummarizeResponses, type PostAdminThreadsData, type PostAdminThreadsError, type PostAdminThreadsErrors, type PostAdminThreadsResponse, type PostAdminThreadsResponses, type PostAdminTokensData, type PostAdminTokensError, type PostAdminTokensErrors, type PostAdminTokensResponse, type PostAdminTokensResponses, type PostAdminTrainingExamplesBulkData, type PostAdminTrainingExamplesBulkDeleteData, type PostAdminTrainingExamplesBulkDeleteError, type PostAdminTrainingExamplesBulkDeleteErrors, type PostAdminTrainingExamplesBulkDeleteResponse, type PostAdminTrainingExamplesBulkDeleteResponses, type PostAdminTrainingExamplesBulkError, type PostAdminTrainingExamplesBulkErrors, type PostAdminTrainingExamplesBulkResponse, type PostAdminTrainingExamplesBulkResponses, type PostAdminTrainingExamplesData, type PostAdminTrainingExamplesError, type PostAdminTrainingExamplesErrors, type PostAdminTrainingExamplesResponse, type PostAdminTrainingExamplesResponses, type PostAdminTrainingExamplesSearchData, type PostAdminTrainingExamplesSearchError, type PostAdminTrainingExamplesSearchErrors, type PostAdminTrainingExamplesSearchResponse, type PostAdminTrainingExamplesSearchResponses, type PostAdminUserProfilesData, type PostAdminUserProfilesError, type PostAdminUserProfilesErrors, type PostAdminUserProfilesResponse, type PostAdminUserProfilesResponses, type PostAdminUsersAuthConfirmData, type PostAdminUsersAuthConfirmError, type PostAdminUsersAuthConfirmErrors, type PostAdminUsersAuthConfirmResponse, type PostAdminUsersAuthConfirmResponses, type PostAdminUsersAuthLoginData, type PostAdminUsersAuthLoginError, type PostAdminUsersAuthLoginErrors, type PostAdminUsersAuthLoginResponse, type PostAdminUsersAuthLoginResponses, type PostAdminUsersAuthMagicLinkLoginData, type PostAdminUsersAuthMagicLinkLoginError, type PostAdminUsersAuthMagicLinkLoginErrors, type PostAdminUsersAuthMagicLinkLoginResponse, type PostAdminUsersAuthMagicLinkLoginResponses, type PostAdminUsersAuthMagicLinkRequestData, type PostAdminUsersAuthMagicLinkRequestError, type PostAdminUsersAuthMagicLinkRequestErrors, type PostAdminUsersAuthMagicLinkRequestResponse, type PostAdminUsersAuthMagicLinkRequestResponses, type PostAdminUsersAuthRegisterData, type PostAdminUsersAuthRegisterError, type PostAdminUsersAuthRegisterErrors, type PostAdminUsersAuthRegisterResponse, type PostAdminUsersAuthRegisterResponses, type PostAdminUsersAuthRegisterWithOidcData, type PostAdminUsersAuthRegisterWithOidcError, type PostAdminUsersAuthRegisterWithOidcErrors, type PostAdminUsersAuthRegisterWithOidcResponse, type PostAdminUsersAuthRegisterWithOidcResponses, type PostAdminUsersAuthResendConfirmationData, type PostAdminUsersAuthResendConfirmationError, type PostAdminUsersAuthResendConfirmationErrors, type PostAdminUsersAuthResendConfirmationResponse, type PostAdminUsersAuthResendConfirmationResponses, type PostAdminUsersRegisterIsvData, type PostAdminUsersRegisterIsvError, type PostAdminUsersRegisterIsvErrors, type PostAdminUsersRegisterIsvResponse, type PostAdminUsersRegisterIsvResponses, type PostAdminWebhookConfigsBulkDisableData, type PostAdminWebhookConfigsBulkDisableError, type PostAdminWebhookConfigsBulkDisableErrors, type PostAdminWebhookConfigsBulkDisableResponse, type PostAdminWebhookConfigsBulkDisableResponses, type PostAdminWebhookConfigsBulkEnableData, type PostAdminWebhookConfigsBulkEnableError, type PostAdminWebhookConfigsBulkEnableErrors, type PostAdminWebhookConfigsBulkEnableResponse, type PostAdminWebhookConfigsBulkEnableResponses, type PostAdminWebhookConfigsByIdReplayData, type PostAdminWebhookConfigsByIdReplayError, type PostAdminWebhookConfigsByIdReplayErrors, type PostAdminWebhookConfigsByIdReplayResponse, type PostAdminWebhookConfigsByIdReplayResponses, type PostAdminWebhookConfigsByIdTestData, type PostAdminWebhookConfigsByIdTestError, type PostAdminWebhookConfigsByIdTestErrors, type PostAdminWebhookConfigsByIdTestResponse, type PostAdminWebhookConfigsByIdTestResponses, type PostAdminWebhookConfigsData, type PostAdminWebhookConfigsError, type PostAdminWebhookConfigsErrors, type PostAdminWebhookConfigsResponse, type PostAdminWebhookConfigsResponses, type PostAdminWebhookDeliveriesBulkRetryData, type PostAdminWebhookDeliveriesBulkRetryError, type PostAdminWebhookDeliveriesBulkRetryErrors, type PostAdminWebhookDeliveriesBulkRetryResponse, type PostAdminWebhookDeliveriesBulkRetryResponses, type PostAdminWebhookDeliveriesByIdRetryData, type PostAdminWebhookDeliveriesByIdRetryError, type PostAdminWebhookDeliveriesByIdRetryErrors, type PostAdminWebhookDeliveriesByIdRetryResponse, type PostAdminWebhookDeliveriesByIdRetryResponses, type PostAdminWholesaleAgreementsData, type PostAdminWholesaleAgreementsError, type PostAdminWholesaleAgreementsErrors, type PostAdminWholesaleAgreementsResponse, type PostAdminWholesaleAgreementsResponses, type PostAdminWorkspaceMembershipsData, type PostAdminWorkspaceMembershipsError, type PostAdminWorkspaceMembershipsErrors, type PostAdminWorkspaceMembershipsResponse, type PostAdminWorkspaceMembershipsResponses, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingError, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponse, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedData, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedError, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedErrors, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponse, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponses, type PostAdminWorkspacesByWorkspaceIdExtractionExportsData, type PostAdminWorkspacesByWorkspaceIdExtractionExportsError, type PostAdminWorkspacesByWorkspaceIdExtractionExportsErrors, type PostAdminWorkspacesByWorkspaceIdExtractionExportsResponse, type PostAdminWorkspacesByWorkspaceIdExtractionExportsResponses, type PostAdminWorkspacesData, type PostAdminWorkspacesError, type PostAdminWorkspacesErrors, type PostAdminWorkspacesResponse, type PostAdminWorkspacesResponses, type PresignedUrl, type PricingRule, type PricingStrategy, RateLimitError, type SavedSearch, type SchemaDiscovery, type Search, type SearchAnalytics, type SemanticCacheEntry, ServerError, type Settlement, type StorageStats, type StorageStatsRequest, StorageStatsRequestSchema, type StorageStatsType, type Subscription, type SystemMessage, type Tenant, type TenantDocumentStats, type TenantMembership, type TenantPricingOverride, type TenantStats, type Thread, type ThreadStats, type ThreadWorkspaceStats, TimeoutError, type Token, type TrainingAnalytics, type TrainingExample, type TrainingSession, type Transaction, type Transfer, type User, type UserProfile, ValidationError, type Wallet, type WatcherClaim, type WatcherEvent, type WebhookBulkDisableRequest, WebhookBulkDisableSchema, type WebhookBulkEnableRequest, WebhookBulkEnableSchema, type WebhookConfig, type WebhookConfigCreateRequest, WebhookConfigCreateSchema, type WebhookDelivery, type WebhookDeliveryBulkRetryRequest, WebhookDeliveryBulkRetrySchema, type WholesaleAgreement, type Workspace, type WorkspaceDocumentStats, type WorkspaceMembership, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, GptAdmin as default, handleApiError };
|
|
40275
|
+
export { type Account, type AccountCreditRequest, AccountCreditSchema, type AccountDebitRequest, AccountDebitSchema, type Agent, type AgentAdminCreateRequest, AgentAdminCreateSchema, type AgentStats, type AgentTestResult, type AgentTrainingStats, type AgentUsage, type AgentVersion, type AgentVersionComparison, type AgentVersionFieldsInputCreateType, type AiConfig, type ApiKey, type ApiKeyAllocateRequest, ApiKeyAllocateSchema, type Application, type ApplicationAiConfigInputCreateType, type ApplicationAiConfigInputUpdateType, type ApplicationOauthInputCreateType, type ApplicationOauthInputUpdateType, type ApplicationType, type AuditLog, AuthenticationError, AuthorizationError, type Balance, type Bucket, type BulkDismissalResult, type BulkReprocessResult, type ClientOptions, type Config, type ConfigEnum, type Conversation, type CreditPackage, type Customer, type DeleteAdminAgentVersionsByIdData, type DeleteAdminAgentVersionsByIdError, type DeleteAdminAgentVersionsByIdErrors, type DeleteAdminAgentVersionsByIdResponses, type DeleteAdminAiConversationsByIdData, type DeleteAdminAiConversationsByIdError, type DeleteAdminAiConversationsByIdErrors, type DeleteAdminAiConversationsByIdResponses, type DeleteAdminAiGraphEdgesByIdData, type DeleteAdminAiGraphEdgesByIdError, type DeleteAdminAiGraphEdgesByIdErrors, type DeleteAdminAiGraphEdgesByIdResponses, type DeleteAdminAiGraphNodesByIdData, type DeleteAdminAiGraphNodesByIdError, type DeleteAdminAiGraphNodesByIdErrors, type DeleteAdminAiGraphNodesByIdResponses, type DeleteAdminAiMessagesByIdData, type DeleteAdminAiMessagesByIdError, type DeleteAdminAiMessagesByIdErrors, type DeleteAdminAiMessagesByIdResponses, type DeleteAdminApiKeysByIdData, type DeleteAdminApiKeysByIdError, type DeleteAdminApiKeysByIdErrors, type DeleteAdminApiKeysByIdResponses, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugData, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugError, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses, type DeleteAdminApplicationsByIdData, type DeleteAdminApplicationsByIdError, type DeleteAdminApplicationsByIdErrors, type DeleteAdminApplicationsByIdResponses, type DeleteAdminBucketsByIdData, type DeleteAdminBucketsByIdError, type DeleteAdminBucketsByIdErrors, type DeleteAdminBucketsByIdResponses, type DeleteAdminCreditPackagesByIdData, type DeleteAdminCreditPackagesByIdError, type DeleteAdminCreditPackagesByIdErrors, type DeleteAdminCreditPackagesByIdResponses, type DeleteAdminCustomersByIdData, type DeleteAdminCustomersByIdError, type DeleteAdminCustomersByIdErrors, type DeleteAdminCustomersByIdResponses, type DeleteAdminExtractionBatchesByIdData, type DeleteAdminExtractionBatchesByIdError, type DeleteAdminExtractionBatchesByIdErrors, type DeleteAdminExtractionBatchesByIdResponses, type DeleteAdminExtractionDocumentsByIdData, type DeleteAdminExtractionDocumentsByIdError, type DeleteAdminExtractionDocumentsByIdErrors, type DeleteAdminExtractionDocumentsByIdResponses, type DeleteAdminExtractionResultsByIdData, type DeleteAdminExtractionResultsByIdError, type DeleteAdminExtractionResultsByIdErrors, type DeleteAdminExtractionResultsByIdResponses, type DeleteAdminFieldTemplatesByIdData, type DeleteAdminFieldTemplatesByIdError, type DeleteAdminFieldTemplatesByIdErrors, type DeleteAdminFieldTemplatesByIdResponses, type DeleteAdminMessagesByIdData, type DeleteAdminMessagesByIdError, type DeleteAdminMessagesByIdErrors, type DeleteAdminMessagesByIdResponses, type DeleteAdminNotificationMethodsByIdData, type DeleteAdminNotificationMethodsByIdError, type DeleteAdminNotificationMethodsByIdErrors, type DeleteAdminNotificationMethodsByIdResponses, type DeleteAdminNotificationPreferencesByIdData, type DeleteAdminNotificationPreferencesByIdError, type DeleteAdminNotificationPreferencesByIdErrors, type DeleteAdminNotificationPreferencesByIdResponses, type DeleteAdminObjectsByIdData, type DeleteAdminObjectsByIdError, type DeleteAdminObjectsByIdErrors, type DeleteAdminObjectsByIdResponses, type DeleteAdminPaymentMethodsByIdData, type DeleteAdminPaymentMethodsByIdError, type DeleteAdminPaymentMethodsByIdErrors, type DeleteAdminPaymentMethodsByIdResponses, type DeleteAdminPlansByIdData, type DeleteAdminPlansByIdError, type DeleteAdminPlansByIdErrors, type DeleteAdminPlansByIdResponses, type DeleteAdminPlatformPricingConfigsByIdData, type DeleteAdminPlatformPricingConfigsByIdError, type DeleteAdminPlatformPricingConfigsByIdErrors, type DeleteAdminPlatformPricingConfigsByIdResponses, type DeleteAdminSearchSavedByIdData, type DeleteAdminSearchSavedByIdError, type DeleteAdminSearchSavedByIdErrors, type DeleteAdminSearchSavedByIdResponses, type DeleteAdminSubscriptionsByIdData, type DeleteAdminSubscriptionsByIdError, type DeleteAdminSubscriptionsByIdErrors, type DeleteAdminSubscriptionsByIdResponses, type DeleteAdminSystemMessagesByIdData, type DeleteAdminSystemMessagesByIdError, type DeleteAdminSystemMessagesByIdErrors, type DeleteAdminSystemMessagesByIdResponses, type DeleteAdminTenantMembershipsByTenantIdByUserIdData, type DeleteAdminTenantMembershipsByTenantIdByUserIdError, type DeleteAdminTenantMembershipsByTenantIdByUserIdErrors, type DeleteAdminTenantMembershipsByTenantIdByUserIdResponses, type DeleteAdminTenantPricingOverridesByIdData, type DeleteAdminTenantPricingOverridesByIdError, type DeleteAdminTenantPricingOverridesByIdErrors, type DeleteAdminTenantPricingOverridesByIdResponses, type DeleteAdminTenantsByIdData, type DeleteAdminTenantsByIdError, type DeleteAdminTenantsByIdErrors, type DeleteAdminTenantsByIdResponses, type DeleteAdminThreadsByIdData, type DeleteAdminThreadsByIdError, type DeleteAdminThreadsByIdErrors, type DeleteAdminThreadsByIdResponses, type DeleteAdminTrainingExamplesByIdData, type DeleteAdminTrainingExamplesByIdError, type DeleteAdminTrainingExamplesByIdErrors, type DeleteAdminTrainingExamplesByIdResponses, type DeleteAdminTrainingSessionsByIdData, type DeleteAdminTrainingSessionsByIdError, type DeleteAdminTrainingSessionsByIdErrors, type DeleteAdminTrainingSessionsByIdResponses, type DeleteAdminUserProfilesByIdData, type DeleteAdminUserProfilesByIdError, type DeleteAdminUserProfilesByIdErrors, type DeleteAdminUserProfilesByIdResponses, type DeleteAdminUsersByIdData, type DeleteAdminUsersByIdError, type DeleteAdminUsersByIdErrors, type DeleteAdminUsersByIdResponses, type DeleteAdminWebhookConfigsByIdData, type DeleteAdminWebhookConfigsByIdError, type DeleteAdminWebhookConfigsByIdErrors, type DeleteAdminWebhookConfigsByIdResponses, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdData, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdError, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type DeleteAdminWorkspacesByIdData, type DeleteAdminWorkspacesByIdError, type DeleteAdminWorkspacesByIdErrors, type DeleteAdminWorkspacesByIdResponses, type DocumentBulkDeleteRequest, DocumentBulkDeleteSchema, type DocumentBulkReprocessRequest, DocumentBulkReprocessSchema, type DocumentChunk, type DocumentStats, type EmailTemplate, type Embedding, type ErrorResponse, type Errors, type ExtractionBatch, type ExtractionDocument, type ExtractionExport, type ExtractionResult, type FieldMappingConfirmation, type FieldMappingResult, type FieldTemplate, type GetAdminAccountsByIdData, type GetAdminAccountsByIdError, type GetAdminAccountsByIdErrors, type GetAdminAccountsByIdResponse, type GetAdminAccountsByIdResponses, type GetAdminAccountsByTenantByTenantIdData, type GetAdminAccountsByTenantByTenantIdError, type GetAdminAccountsByTenantByTenantIdErrors, type GetAdminAccountsByTenantByTenantIdResponse, type GetAdminAccountsByTenantByTenantIdResponses, type GetAdminAccountsData, type GetAdminAccountsError, type GetAdminAccountsErrors, type GetAdminAccountsResponse, type GetAdminAccountsResponses, type GetAdminAgentVersionsByIdData, type GetAdminAgentVersionsByIdError, type GetAdminAgentVersionsByIdErrors, type GetAdminAgentVersionsByIdMetricsData, type GetAdminAgentVersionsByIdMetricsError, type GetAdminAgentVersionsByIdMetricsErrors, type GetAdminAgentVersionsByIdMetricsResponse, type GetAdminAgentVersionsByIdMetricsResponses, type GetAdminAgentVersionsByIdResponse, type GetAdminAgentVersionsByIdResponses, type GetAdminAgentVersionsData, type GetAdminAgentVersionsError, type GetAdminAgentVersionsErrors, type GetAdminAgentVersionsResponse, type GetAdminAgentVersionsResponses, type GetAdminAgentsByIdData, type GetAdminAgentsByIdError, type GetAdminAgentsByIdErrors, type GetAdminAgentsByIdResponse, type GetAdminAgentsByIdResponses, type GetAdminAgentsByIdSchemaVersionsData, type GetAdminAgentsByIdSchemaVersionsError, type GetAdminAgentsByIdSchemaVersionsErrors, type GetAdminAgentsByIdSchemaVersionsResponse, type GetAdminAgentsByIdSchemaVersionsResponses, type GetAdminAgentsByIdStatsData, type GetAdminAgentsByIdStatsError, type GetAdminAgentsByIdStatsErrors, type GetAdminAgentsByIdStatsResponse, type GetAdminAgentsByIdStatsResponses, type GetAdminAgentsByIdTrainingStatsData, type GetAdminAgentsByIdTrainingStatsError, type GetAdminAgentsByIdTrainingStatsErrors, type GetAdminAgentsByIdTrainingStatsResponse, type GetAdminAgentsByIdTrainingStatsResponses, type GetAdminAgentsByIdUsageData, type GetAdminAgentsByIdUsageError, type GetAdminAgentsByIdUsageErrors, type GetAdminAgentsByIdUsageResponse, type GetAdminAgentsByIdUsageResponses, type GetAdminAgentsData, type GetAdminAgentsError, type GetAdminAgentsErrors, type GetAdminAgentsResponse, type GetAdminAgentsResponses, type GetAdminAgentsUsageData, type GetAdminAgentsUsageError, type GetAdminAgentsUsageErrors, type GetAdminAgentsUsageResponse, type GetAdminAgentsUsageResponses, type GetAdminAiChunksDocumentByDocumentIdData, type GetAdminAiChunksDocumentByDocumentIdError, type GetAdminAiChunksDocumentByDocumentIdErrors, type GetAdminAiChunksDocumentByDocumentIdResponse, type GetAdminAiChunksDocumentByDocumentIdResponses, type GetAdminAiConversationsByIdData, type GetAdminAiConversationsByIdError, type GetAdminAiConversationsByIdErrors, type GetAdminAiConversationsByIdResponse, type GetAdminAiConversationsByIdResponses, type GetAdminAiConversationsData, type GetAdminAiConversationsError, type GetAdminAiConversationsErrors, type GetAdminAiConversationsResponse, type GetAdminAiConversationsResponses, type GetAdminAiGraphEdgesData, type GetAdminAiGraphEdgesError, type GetAdminAiGraphEdgesErrors, type GetAdminAiGraphEdgesResponse, type GetAdminAiGraphEdgesResponses, type GetAdminAiGraphNodesBySourceNodeIdRelatedData, type GetAdminAiGraphNodesBySourceNodeIdRelatedError, type GetAdminAiGraphNodesBySourceNodeIdRelatedErrors, type GetAdminAiGraphNodesBySourceNodeIdRelatedResponse, type GetAdminAiGraphNodesBySourceNodeIdRelatedResponses, type GetAdminAiGraphNodesData, type GetAdminAiGraphNodesError, type GetAdminAiGraphNodesErrors, type GetAdminAiGraphNodesLabelByLabelData, type GetAdminAiGraphNodesLabelByLabelError, type GetAdminAiGraphNodesLabelByLabelErrors, type GetAdminAiGraphNodesLabelByLabelResponse, type GetAdminAiGraphNodesLabelByLabelResponses, type GetAdminAiGraphNodesResponse, type GetAdminAiGraphNodesResponses, type GetAdminAiMessagesData, type GetAdminAiMessagesError, type GetAdminAiMessagesErrors, type GetAdminAiMessagesResponse, type GetAdminAiMessagesResponses, type GetAdminApiKeysActiveData, type GetAdminApiKeysActiveError, type GetAdminApiKeysActiveErrors, type GetAdminApiKeysActiveResponse, type GetAdminApiKeysActiveResponses, type GetAdminApiKeysByIdData, type GetAdminApiKeysByIdError, type GetAdminApiKeysByIdErrors, type GetAdminApiKeysByIdResponse, type GetAdminApiKeysByIdResponses, type GetAdminApiKeysData, type GetAdminApiKeysError, type GetAdminApiKeysErrors, type GetAdminApiKeysResponse, type GetAdminApiKeysResponses, type GetAdminApiKeysStatsData, type GetAdminApiKeysStatsError, type GetAdminApiKeysStatsErrors, type GetAdminApiKeysStatsResponse, type GetAdminApiKeysStatsResponses, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugData, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugError, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugResponse, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses, type GetAdminApplicationsByApplicationIdEmailTemplatesData, type GetAdminApplicationsByApplicationIdEmailTemplatesError, type GetAdminApplicationsByApplicationIdEmailTemplatesErrors, type GetAdminApplicationsByApplicationIdEmailTemplatesResponse, type GetAdminApplicationsByApplicationIdEmailTemplatesResponses, type GetAdminApplicationsByIdData, type GetAdminApplicationsByIdError, type GetAdminApplicationsByIdErrors, type GetAdminApplicationsByIdResponse, type GetAdminApplicationsByIdResponses, type GetAdminApplicationsBySlugBySlugData, type GetAdminApplicationsBySlugBySlugError, type GetAdminApplicationsBySlugBySlugErrors, type GetAdminApplicationsBySlugBySlugResponse, type GetAdminApplicationsBySlugBySlugResponses, type GetAdminApplicationsCurrentData, type GetAdminApplicationsCurrentError, type GetAdminApplicationsCurrentErrors, type GetAdminApplicationsCurrentResponse, type GetAdminApplicationsCurrentResponses, type GetAdminApplicationsData, type GetAdminApplicationsError, type GetAdminApplicationsErrors, type GetAdminApplicationsResponse, type GetAdminApplicationsResponses, type GetAdminAuditLogsActivityData, type GetAdminAuditLogsActivityError, type GetAdminAuditLogsActivityErrors, type GetAdminAuditLogsActivityResponse, type GetAdminAuditLogsActivityResponses, type GetAdminAuditLogsData, type GetAdminAuditLogsError, type GetAdminAuditLogsErrors, type GetAdminAuditLogsResponse, type GetAdminAuditLogsResponses, type GetAdminBalancesByIdData, type GetAdminBalancesByIdError, type GetAdminBalancesByIdErrors, type GetAdminBalancesByIdResponse, type GetAdminBalancesByIdResponses, type GetAdminBalancesData, type GetAdminBalancesError, type GetAdminBalancesErrors, type GetAdminBalancesResponse, type GetAdminBalancesResponses, type GetAdminBucketsAllData, type GetAdminBucketsAllError, type GetAdminBucketsAllErrors, type GetAdminBucketsAllResponse, type GetAdminBucketsAllResponses, type GetAdminBucketsByIdData, type GetAdminBucketsByIdError, type GetAdminBucketsByIdErrors, type GetAdminBucketsByIdObjectsData, type GetAdminBucketsByIdObjectsError, type GetAdminBucketsByIdObjectsErrors, type GetAdminBucketsByIdObjectsResponse, type GetAdminBucketsByIdObjectsResponses, type GetAdminBucketsByIdResponse, type GetAdminBucketsByIdResponses, type GetAdminBucketsByIdStatsData, type GetAdminBucketsByIdStatsError, type GetAdminBucketsByIdStatsErrors, type GetAdminBucketsByIdStatsResponse, type GetAdminBucketsByIdStatsResponses, type GetAdminBucketsData, type GetAdminBucketsError, type GetAdminBucketsErrors, type GetAdminBucketsResponse, type GetAdminBucketsResponses, type GetAdminConfigsData, type GetAdminConfigsError, type GetAdminConfigsErrors, type GetAdminConfigsResponse, type GetAdminConfigsResponses, type GetAdminCreditPackagesByIdData, type GetAdminCreditPackagesByIdError, type GetAdminCreditPackagesByIdErrors, type GetAdminCreditPackagesByIdResponse, type GetAdminCreditPackagesByIdResponses, type GetAdminCreditPackagesData, type GetAdminCreditPackagesError, type GetAdminCreditPackagesErrors, type GetAdminCreditPackagesResponse, type GetAdminCreditPackagesResponses, type GetAdminCreditPackagesSlugBySlugData, type GetAdminCreditPackagesSlugBySlugError, type GetAdminCreditPackagesSlugBySlugErrors, type GetAdminCreditPackagesSlugBySlugResponse, type GetAdminCreditPackagesSlugBySlugResponses, type GetAdminCustomersByIdData, type GetAdminCustomersByIdError, type GetAdminCustomersByIdErrors, type GetAdminCustomersByIdResponse, type GetAdminCustomersByIdResponses, type GetAdminDocumentsStatsData, type GetAdminDocumentsStatsError, type GetAdminDocumentsStatsErrors, type GetAdminDocumentsStatsResponse, type GetAdminDocumentsStatsResponses, type GetAdminExtractionBatchesByIdData, type GetAdminExtractionBatchesByIdError, type GetAdminExtractionBatchesByIdErrors, type GetAdminExtractionBatchesByIdResponse, type GetAdminExtractionBatchesByIdResponses, type GetAdminExtractionBatchesByIdUploadUrlsData, type GetAdminExtractionBatchesByIdUploadUrlsError, type GetAdminExtractionBatchesByIdUploadUrlsErrors, type GetAdminExtractionBatchesByIdUploadUrlsResponse, type GetAdminExtractionBatchesByIdUploadUrlsResponses, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdData, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdError, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdErrors, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdResponse, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdResponses, type GetAdminExtractionConfigEnumsByIdData, type GetAdminExtractionConfigEnumsByIdError, type GetAdminExtractionConfigEnumsByIdErrors, type GetAdminExtractionConfigEnumsByIdResponse, type GetAdminExtractionConfigEnumsByIdResponses, type GetAdminExtractionConfigEnumsData, type GetAdminExtractionConfigEnumsError, type GetAdminExtractionConfigEnumsErrors, type GetAdminExtractionConfigEnumsResponse, type GetAdminExtractionConfigEnumsResponses, type GetAdminExtractionDocumentsByIdData, type GetAdminExtractionDocumentsByIdError, type GetAdminExtractionDocumentsByIdErrors, type GetAdminExtractionDocumentsByIdResponse, type GetAdminExtractionDocumentsByIdResponses, type GetAdminExtractionDocumentsByIdStatusData, type GetAdminExtractionDocumentsByIdStatusError, type GetAdminExtractionDocumentsByIdStatusErrors, type GetAdminExtractionDocumentsByIdStatusResponse, type GetAdminExtractionDocumentsByIdStatusResponses, type GetAdminExtractionDocumentsByIdViewData, type GetAdminExtractionDocumentsByIdViewError, type GetAdminExtractionDocumentsByIdViewErrors, type GetAdminExtractionDocumentsByIdViewResponse, type GetAdminExtractionDocumentsByIdViewResponses, type GetAdminExtractionDocumentsData, type GetAdminExtractionDocumentsError, type GetAdminExtractionDocumentsErrors, type GetAdminExtractionDocumentsResponse, type GetAdminExtractionDocumentsResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedResponses, type GetAdminExtractionResultsByIdData, type GetAdminExtractionResultsByIdError, type GetAdminExtractionResultsByIdErrors, type GetAdminExtractionResultsByIdResponse, type GetAdminExtractionResultsByIdResponses, type GetAdminExtractionResultsData, type GetAdminExtractionResultsDocumentByDocumentIdData, type GetAdminExtractionResultsDocumentByDocumentIdError, type GetAdminExtractionResultsDocumentByDocumentIdErrors, type GetAdminExtractionResultsDocumentByDocumentIdResponse, type GetAdminExtractionResultsDocumentByDocumentIdResponses, type GetAdminExtractionResultsError, type GetAdminExtractionResultsErrors, type GetAdminExtractionResultsResponse, type GetAdminExtractionResultsResponses, type GetAdminExtractionResultsWorkspaceByWorkspaceIdData, type GetAdminExtractionResultsWorkspaceByWorkspaceIdError, type GetAdminExtractionResultsWorkspaceByWorkspaceIdErrors, type GetAdminExtractionResultsWorkspaceByWorkspaceIdResponse, type GetAdminExtractionResultsWorkspaceByWorkspaceIdResponses, type GetAdminExtractionSchemaDiscoveriesByIdData, type GetAdminExtractionSchemaDiscoveriesByIdError, type GetAdminExtractionSchemaDiscoveriesByIdErrors, type GetAdminExtractionSchemaDiscoveriesByIdResponse, type GetAdminExtractionSchemaDiscoveriesByIdResponses, type GetAdminFieldTemplatesByIdData, type GetAdminFieldTemplatesByIdError, type GetAdminFieldTemplatesByIdErrors, type GetAdminFieldTemplatesByIdResponse, type GetAdminFieldTemplatesByIdResponses, type GetAdminFieldTemplatesData, type GetAdminFieldTemplatesError, type GetAdminFieldTemplatesErrors, type GetAdminFieldTemplatesResponse, type GetAdminFieldTemplatesResponses, type GetAdminInvitationsConsumeByTokenData, type GetAdminInvitationsConsumeByTokenError, type GetAdminInvitationsConsumeByTokenErrors, type GetAdminInvitationsConsumeByTokenResponse, type GetAdminInvitationsConsumeByTokenResponses, type GetAdminInvitationsData, type GetAdminInvitationsError, type GetAdminInvitationsErrors, type GetAdminInvitationsMeData, type GetAdminInvitationsMeError, type GetAdminInvitationsMeErrors, type GetAdminInvitationsMeResponse, type GetAdminInvitationsMeResponses, type GetAdminInvitationsResponse, type GetAdminInvitationsResponses, type GetAdminIsvRevenueByIdData, type GetAdminIsvRevenueByIdError, type GetAdminIsvRevenueByIdErrors, type GetAdminIsvRevenueByIdResponse, type GetAdminIsvRevenueByIdResponses, type GetAdminIsvRevenueData, type GetAdminIsvRevenueError, type GetAdminIsvRevenueErrors, type GetAdminIsvRevenueResponse, type GetAdminIsvRevenueResponses, type GetAdminIsvSettlementsByIdData, type GetAdminIsvSettlementsByIdError, type GetAdminIsvSettlementsByIdErrors, type GetAdminIsvSettlementsByIdResponse, type GetAdminIsvSettlementsByIdResponses, type GetAdminIsvSettlementsData, type GetAdminIsvSettlementsError, type GetAdminIsvSettlementsErrors, type GetAdminIsvSettlementsResponse, type GetAdminIsvSettlementsResponses, type GetAdminLedgerByAccountByAccountIdData, type GetAdminLedgerByAccountByAccountIdError, type GetAdminLedgerByAccountByAccountIdErrors, type GetAdminLedgerByAccountByAccountIdResponse, type GetAdminLedgerByAccountByAccountIdResponses, type GetAdminLedgerByIdData, type GetAdminLedgerByIdError, type GetAdminLedgerByIdErrors, type GetAdminLedgerByIdResponse, type GetAdminLedgerByIdResponses, type GetAdminLedgerData, type GetAdminLedgerError, type GetAdminLedgerErrors, type GetAdminLedgerResponse, type GetAdminLedgerResponses, type GetAdminLlmAnalyticsByIdData, type GetAdminLlmAnalyticsByIdError, type GetAdminLlmAnalyticsByIdErrors, type GetAdminLlmAnalyticsByIdResponse, type GetAdminLlmAnalyticsByIdResponses, type GetAdminLlmAnalyticsCostsData, type GetAdminLlmAnalyticsCostsError, type GetAdminLlmAnalyticsCostsErrors, type GetAdminLlmAnalyticsCostsResponse, type GetAdminLlmAnalyticsCostsResponses, type GetAdminLlmAnalyticsData, type GetAdminLlmAnalyticsError, type GetAdminLlmAnalyticsErrors, type GetAdminLlmAnalyticsPlatformData, type GetAdminLlmAnalyticsPlatformError, type GetAdminLlmAnalyticsPlatformErrors, type GetAdminLlmAnalyticsPlatformResponse, type GetAdminLlmAnalyticsPlatformResponses, type GetAdminLlmAnalyticsResponse, type GetAdminLlmAnalyticsResponses, type GetAdminLlmAnalyticsSummaryData, type GetAdminLlmAnalyticsSummaryError, type GetAdminLlmAnalyticsSummaryErrors, type GetAdminLlmAnalyticsSummaryResponse, type GetAdminLlmAnalyticsSummaryResponses, type GetAdminLlmAnalyticsUsageData, type GetAdminLlmAnalyticsUsageError, type GetAdminLlmAnalyticsUsageErrors, type GetAdminLlmAnalyticsUsageResponse, type GetAdminLlmAnalyticsUsageResponses, type GetAdminLlmAnalyticsWorkspaceData, type GetAdminLlmAnalyticsWorkspaceError, type GetAdminLlmAnalyticsWorkspaceErrors, type GetAdminLlmAnalyticsWorkspaceResponse, type GetAdminLlmAnalyticsWorkspaceResponses, type GetAdminMessagesByIdData, type GetAdminMessagesByIdError, type GetAdminMessagesByIdErrors, type GetAdminMessagesByIdResponse, type GetAdminMessagesByIdResponses, type GetAdminMessagesData, type GetAdminMessagesError, type GetAdminMessagesErrors, type GetAdminMessagesResponse, type GetAdminMessagesResponses, type GetAdminMessagesSearchData, type GetAdminMessagesSearchError, type GetAdminMessagesSearchErrors, type GetAdminMessagesSearchResponse, type GetAdminMessagesSearchResponses, type GetAdminMessagesSemanticSearchData, type GetAdminMessagesSemanticSearchError, type GetAdminMessagesSemanticSearchErrors, type GetAdminMessagesSemanticSearchResponse, type GetAdminMessagesSemanticSearchResponses, type GetAdminNotificationLogsByIdData, type GetAdminNotificationLogsByIdError, type GetAdminNotificationLogsByIdErrors, type GetAdminNotificationLogsByIdResponse, type GetAdminNotificationLogsByIdResponses, type GetAdminNotificationLogsData, type GetAdminNotificationLogsError, type GetAdminNotificationLogsErrors, type GetAdminNotificationLogsResponse, type GetAdminNotificationLogsResponses, type GetAdminNotificationLogsStatsData, type GetAdminNotificationLogsStatsError, type GetAdminNotificationLogsStatsErrors, type GetAdminNotificationLogsStatsResponse, type GetAdminNotificationLogsStatsResponses, type GetAdminNotificationMethodsByIdData, type GetAdminNotificationMethodsByIdError, type GetAdminNotificationMethodsByIdErrors, type GetAdminNotificationMethodsByIdResponse, type GetAdminNotificationMethodsByIdResponses, type GetAdminNotificationMethodsData, type GetAdminNotificationMethodsError, type GetAdminNotificationMethodsErrors, type GetAdminNotificationMethodsResponse, type GetAdminNotificationMethodsResponses, type GetAdminNotificationPreferencesByIdData, type GetAdminNotificationPreferencesByIdError, type GetAdminNotificationPreferencesByIdErrors, type GetAdminNotificationPreferencesByIdResponse, type GetAdminNotificationPreferencesByIdResponses, type GetAdminNotificationPreferencesData, type GetAdminNotificationPreferencesError, type GetAdminNotificationPreferencesErrors, type GetAdminNotificationPreferencesResponse, type GetAdminNotificationPreferencesResponses, type GetAdminObjectsByIdData, type GetAdminObjectsByIdError, type GetAdminObjectsByIdErrors, type GetAdminObjectsByIdResponse, type GetAdminObjectsByIdResponses, type GetAdminObjectsData, type GetAdminObjectsError, type GetAdminObjectsErrors, type GetAdminObjectsResponse, type GetAdminObjectsResponses, type GetAdminPaymentMethodsByIdData, type GetAdminPaymentMethodsByIdError, type GetAdminPaymentMethodsByIdErrors, type GetAdminPaymentMethodsByIdResponse, type GetAdminPaymentMethodsByIdResponses, type GetAdminPaymentMethodsData, type GetAdminPaymentMethodsError, type GetAdminPaymentMethodsErrors, type GetAdminPaymentMethodsResponse, type GetAdminPaymentMethodsResponses, type GetAdminPermissionsData, type GetAdminPermissionsError, type GetAdminPermissionsErrors, type GetAdminPermissionsPresetsData, type GetAdminPermissionsPresetsError, type GetAdminPermissionsPresetsErrors, type GetAdminPermissionsPresetsResponse, type GetAdminPermissionsPresetsResponses, type GetAdminPermissionsResponse, type GetAdminPermissionsResponses, type GetAdminPlansByIdData, type GetAdminPlansByIdError, type GetAdminPlansByIdErrors, type GetAdminPlansByIdResponse, type GetAdminPlansByIdResponses, type GetAdminPlansData, type GetAdminPlansError, type GetAdminPlansErrors, type GetAdminPlansResponse, type GetAdminPlansResponses, type GetAdminPlansSlugBySlugData, type GetAdminPlansSlugBySlugError, type GetAdminPlansSlugBySlugErrors, type GetAdminPlansSlugBySlugResponse, type GetAdminPlansSlugBySlugResponses, type GetAdminPlatformPricingConfigsByIdData, type GetAdminPlatformPricingConfigsByIdError, type GetAdminPlatformPricingConfigsByIdErrors, type GetAdminPlatformPricingConfigsByIdResponse, type GetAdminPlatformPricingConfigsByIdResponses, type GetAdminPlatformPricingConfigsData, type GetAdminPlatformPricingConfigsError, type GetAdminPlatformPricingConfigsErrors, type GetAdminPlatformPricingConfigsResponse, type GetAdminPlatformPricingConfigsResponses, type GetAdminPricingRulesByIdData, type GetAdminPricingRulesByIdError, type GetAdminPricingRulesByIdErrors, type GetAdminPricingRulesByIdResponse, type GetAdminPricingRulesByIdResponses, type GetAdminPricingRulesData, type GetAdminPricingRulesError, type GetAdminPricingRulesErrors, type GetAdminPricingRulesResolveData, type GetAdminPricingRulesResolveError, type GetAdminPricingRulesResolveErrors, type GetAdminPricingRulesResolveResponse, type GetAdminPricingRulesResolveResponses, type GetAdminPricingRulesResponse, type GetAdminPricingRulesResponses, type GetAdminPricingStrategiesByIdData, type GetAdminPricingStrategiesByIdError, type GetAdminPricingStrategiesByIdErrors, type GetAdminPricingStrategiesByIdResponse, type GetAdminPricingStrategiesByIdResponses, type GetAdminPricingStrategiesData, type GetAdminPricingStrategiesError, type GetAdminPricingStrategiesErrors, type GetAdminPricingStrategiesResponse, type GetAdminPricingStrategiesResponses, type GetAdminSearchAnalyticsData, type GetAdminSearchAnalyticsError, type GetAdminSearchAnalyticsErrors, type GetAdminSearchAnalyticsResponse, type GetAdminSearchAnalyticsResponses, type GetAdminSearchAnalyticsSummaryData, type GetAdminSearchAnalyticsSummaryError, type GetAdminSearchAnalyticsSummaryErrors, type GetAdminSearchAnalyticsSummaryResponse, type GetAdminSearchAnalyticsSummaryResponses, type GetAdminSearchData, type GetAdminSearchError, type GetAdminSearchErrors, type GetAdminSearchHealthData, type GetAdminSearchHealthError, type GetAdminSearchHealthErrors, type GetAdminSearchHealthResponse, type GetAdminSearchHealthResponses, type GetAdminSearchIndexesData, type GetAdminSearchIndexesError, type GetAdminSearchIndexesErrors, type GetAdminSearchIndexesResponse, type GetAdminSearchIndexesResponses, type GetAdminSearchResponse, type GetAdminSearchResponses, type GetAdminSearchSavedData, type GetAdminSearchSavedError, type GetAdminSearchSavedErrors, type GetAdminSearchSavedResponse, type GetAdminSearchSavedResponses, type GetAdminSearchSemanticData, type GetAdminSearchSemanticError, type GetAdminSearchSemanticErrors, type GetAdminSearchSemanticResponse, type GetAdminSearchSemanticResponses, type GetAdminSearchStatsData, type GetAdminSearchStatsError, type GetAdminSearchStatsErrors, type GetAdminSearchStatsResponse, type GetAdminSearchStatsResponses, type GetAdminSearchStatusData, type GetAdminSearchStatusError, type GetAdminSearchStatusErrors, type GetAdminSearchStatusResponse, type GetAdminSearchStatusResponses, type GetAdminSearchSuggestData, type GetAdminSearchSuggestError, type GetAdminSearchSuggestErrors, type GetAdminSearchSuggestResponse, type GetAdminSearchSuggestResponses, type GetAdminSettlementsByIdData, type GetAdminSettlementsByIdError, type GetAdminSettlementsByIdErrors, type GetAdminSettlementsByIdResponse, type GetAdminSettlementsByIdResponses, type GetAdminSettlementsData, type GetAdminSettlementsError, type GetAdminSettlementsErrors, type GetAdminSettlementsResponse, type GetAdminSettlementsResponses, type GetAdminStorageStatsData, type GetAdminStorageStatsError, type GetAdminStorageStatsErrors, type GetAdminStorageStatsResponse, type GetAdminStorageStatsResponses, type GetAdminStorageStatsTenantByTenantIdData, type GetAdminStorageStatsTenantByTenantIdError, type GetAdminStorageStatsTenantByTenantIdErrors, type GetAdminStorageStatsTenantByTenantIdResponse, type GetAdminStorageStatsTenantByTenantIdResponses, type GetAdminSubscriptionsByIdData, type GetAdminSubscriptionsByIdError, type GetAdminSubscriptionsByIdErrors, type GetAdminSubscriptionsByIdResponse, type GetAdminSubscriptionsByIdResponses, type GetAdminSubscriptionsByTenantByTenantIdData, type GetAdminSubscriptionsByTenantByTenantIdError, type GetAdminSubscriptionsByTenantByTenantIdErrors, type GetAdminSubscriptionsByTenantByTenantIdResponse, type GetAdminSubscriptionsByTenantByTenantIdResponses, type GetAdminSubscriptionsData, type GetAdminSubscriptionsError, type GetAdminSubscriptionsErrors, type GetAdminSubscriptionsResponse, type GetAdminSubscriptionsResponses, type GetAdminSysAiConfigByIdData, type GetAdminSysAiConfigByIdError, type GetAdminSysAiConfigByIdErrors, type GetAdminSysAiConfigByIdResponse, type GetAdminSysAiConfigByIdResponses, type GetAdminSysAiConfigData, type GetAdminSysAiConfigError, type GetAdminSysAiConfigErrors, type GetAdminSysAiConfigResponse, type GetAdminSysAiConfigResponses, type GetAdminSysSemanticCacheByIdData, type GetAdminSysSemanticCacheByIdError, type GetAdminSysSemanticCacheByIdErrors, type GetAdminSysSemanticCacheByIdResponse, type GetAdminSysSemanticCacheByIdResponses, type GetAdminSystemMessagesByIdData, type GetAdminSystemMessagesByIdError, type GetAdminSystemMessagesByIdErrors, type GetAdminSystemMessagesByIdResponse, type GetAdminSystemMessagesByIdResponses, type GetAdminSystemMessagesData, type GetAdminSystemMessagesError, type GetAdminSystemMessagesErrors, type GetAdminSystemMessagesResponse, type GetAdminSystemMessagesResponses, type GetAdminTenantMembershipsData, type GetAdminTenantMembershipsError, type GetAdminTenantMembershipsErrors, type GetAdminTenantMembershipsResponse, type GetAdminTenantMembershipsResponses, type GetAdminTenantPricingOverridesByIdData, type GetAdminTenantPricingOverridesByIdError, type GetAdminTenantPricingOverridesByIdErrors, type GetAdminTenantPricingOverridesByIdResponse, type GetAdminTenantPricingOverridesByIdResponses, type GetAdminTenantPricingOverridesData, type GetAdminTenantPricingOverridesError, type GetAdminTenantPricingOverridesErrors, type GetAdminTenantPricingOverridesResponse, type GetAdminTenantPricingOverridesResponses, type GetAdminTenantsByIdData, type GetAdminTenantsByIdError, type GetAdminTenantsByIdErrors, type GetAdminTenantsByIdResponse, type GetAdminTenantsByIdResponses, type GetAdminTenantsByTenantIdDocumentStatsData, type GetAdminTenantsByTenantIdDocumentStatsError, type GetAdminTenantsByTenantIdDocumentStatsErrors, type GetAdminTenantsByTenantIdDocumentStatsResponse, type GetAdminTenantsByTenantIdDocumentStatsResponses, type GetAdminTenantsByTenantIdStatsData, type GetAdminTenantsByTenantIdStatsError, type GetAdminTenantsByTenantIdStatsErrors, type GetAdminTenantsByTenantIdStatsResponse, type GetAdminTenantsByTenantIdStatsResponses, type GetAdminTenantsByTenantIdWorkspaceStatsData, type GetAdminTenantsByTenantIdWorkspaceStatsError, type GetAdminTenantsByTenantIdWorkspaceStatsErrors, type GetAdminTenantsByTenantIdWorkspaceStatsResponse, type GetAdminTenantsByTenantIdWorkspaceStatsResponses, type GetAdminTenantsData, type GetAdminTenantsError, type GetAdminTenantsErrors, type GetAdminTenantsResponse, type GetAdminTenantsResponses, type GetAdminThreadsByIdData, type GetAdminThreadsByIdError, type GetAdminThreadsByIdErrors, type GetAdminThreadsByIdMessagesData, type GetAdminThreadsByIdMessagesError, type GetAdminThreadsByIdMessagesErrors, type GetAdminThreadsByIdMessagesResponse, type GetAdminThreadsByIdMessagesResponses, type GetAdminThreadsByIdResponse, type GetAdminThreadsByIdResponses, type GetAdminThreadsData, type GetAdminThreadsError, type GetAdminThreadsErrors, type GetAdminThreadsResponse, type GetAdminThreadsResponses, type GetAdminThreadsSearchData, type GetAdminThreadsSearchError, type GetAdminThreadsSearchErrors, type GetAdminThreadsSearchResponse, type GetAdminThreadsSearchResponses, type GetAdminThreadsStatsData, type GetAdminThreadsStatsError, type GetAdminThreadsStatsErrors, type GetAdminThreadsStatsResponse, type GetAdminThreadsStatsResponses, type GetAdminThreadsWorkspaceStatsData, type GetAdminThreadsWorkspaceStatsError, type GetAdminThreadsWorkspaceStatsErrors, type GetAdminThreadsWorkspaceStatsResponse, type GetAdminThreadsWorkspaceStatsResponses, type GetAdminTrainingExamplesByIdData, type GetAdminTrainingExamplesByIdError, type GetAdminTrainingExamplesByIdErrors, type GetAdminTrainingExamplesByIdResponse, type GetAdminTrainingExamplesByIdResponses, type GetAdminTrainingExamplesData, type GetAdminTrainingExamplesError, type GetAdminTrainingExamplesErrors, type GetAdminTrainingExamplesResponse, type GetAdminTrainingExamplesResponses, type GetAdminTrainingSessionsAgentsByAgentIdSessionsData, type GetAdminTrainingSessionsAgentsByAgentIdSessionsError, type GetAdminTrainingSessionsAgentsByAgentIdSessionsErrors, type GetAdminTrainingSessionsAgentsByAgentIdSessionsResponse, type GetAdminTrainingSessionsAgentsByAgentIdSessionsResponses, type GetAdminTrainingSessionsByIdData, type GetAdminTrainingSessionsByIdError, type GetAdminTrainingSessionsByIdErrors, type GetAdminTrainingSessionsByIdResponse, type GetAdminTrainingSessionsByIdResponses, type GetAdminTransactionsByIdData, type GetAdminTransactionsByIdError, type GetAdminTransactionsByIdErrors, type GetAdminTransactionsByIdResponse, type GetAdminTransactionsByIdResponses, type GetAdminTransactionsData, type GetAdminTransactionsError, type GetAdminTransactionsErrors, type GetAdminTransactionsResponse, type GetAdminTransactionsResponses, type GetAdminTransfersByIdData, type GetAdminTransfersByIdError, type GetAdminTransfersByIdErrors, type GetAdminTransfersByIdResponse, type GetAdminTransfersByIdResponses, type GetAdminTransfersData, type GetAdminTransfersError, type GetAdminTransfersErrors, type GetAdminTransfersResponse, type GetAdminTransfersResponses, type GetAdminUserProfilesByIdData, type GetAdminUserProfilesByIdError, type GetAdminUserProfilesByIdErrors, type GetAdminUserProfilesByIdResponse, type GetAdminUserProfilesByIdResponses, type GetAdminUserProfilesData, type GetAdminUserProfilesError, type GetAdminUserProfilesErrors, type GetAdminUserProfilesMeData, type GetAdminUserProfilesMeError, type GetAdminUserProfilesMeErrors, type GetAdminUserProfilesMeResponse, type GetAdminUserProfilesMeResponses, type GetAdminUserProfilesResponse, type GetAdminUserProfilesResponses, type GetAdminUsersByEmailData, type GetAdminUsersByEmailError, type GetAdminUsersByEmailErrors, type GetAdminUsersByEmailResponse, type GetAdminUsersByEmailResponses, type GetAdminUsersByIdData, type GetAdminUsersByIdError, type GetAdminUsersByIdErrors, type GetAdminUsersByIdResponse, type GetAdminUsersByIdResponses, type GetAdminUsersData, type GetAdminUsersError, type GetAdminUsersErrors, type GetAdminUsersMeActivityData, type GetAdminUsersMeActivityError, type GetAdminUsersMeActivityErrors, type GetAdminUsersMeActivityResponse, type GetAdminUsersMeActivityResponses, type GetAdminUsersMeDashboardData, type GetAdminUsersMeDashboardError, type GetAdminUsersMeDashboardErrors, type GetAdminUsersMeDashboardResponse, type GetAdminUsersMeDashboardResponses, type GetAdminUsersMeData, type GetAdminUsersMeError, type GetAdminUsersMeErrors, type GetAdminUsersMeResponse, type GetAdminUsersMeResponses, type GetAdminUsersMeStatsData, type GetAdminUsersMeStatsError, type GetAdminUsersMeStatsErrors, type GetAdminUsersMeStatsResponse, type GetAdminUsersMeStatsResponses, type GetAdminUsersMeTenantsData, type GetAdminUsersMeTenantsError, type GetAdminUsersMeTenantsErrors, type GetAdminUsersMeTenantsResponse, type GetAdminUsersMeTenantsResponses, type GetAdminUsersResponse, type GetAdminUsersResponses, type GetAdminWalletData, type GetAdminWalletError, type GetAdminWalletErrors, type GetAdminWalletResponse, type GetAdminWalletResponses, type GetAdminWalletStorageBreakdownData, type GetAdminWalletStorageBreakdownError, type GetAdminWalletStorageBreakdownErrors, type GetAdminWalletStorageBreakdownResponse, type GetAdminWalletStorageBreakdownResponses, type GetAdminWalletUsageBreakdownData, type GetAdminWalletUsageBreakdownError, type GetAdminWalletUsageBreakdownErrors, type GetAdminWalletUsageBreakdownResponse, type GetAdminWalletUsageBreakdownResponses, type GetAdminWalletUsageData, type GetAdminWalletUsageError, type GetAdminWalletUsageErrors, type GetAdminWalletUsageResponse, type GetAdminWalletUsageResponses, type GetAdminWebhookConfigsByIdData, type GetAdminWebhookConfigsByIdError, type GetAdminWebhookConfigsByIdErrors, type GetAdminWebhookConfigsByIdEventsData, type GetAdminWebhookConfigsByIdEventsError, type GetAdminWebhookConfigsByIdEventsErrors, type GetAdminWebhookConfigsByIdEventsResponse, type GetAdminWebhookConfigsByIdEventsResponses, type GetAdminWebhookConfigsByIdResponse, type GetAdminWebhookConfigsByIdResponses, type GetAdminWebhookConfigsData, type GetAdminWebhookConfigsError, type GetAdminWebhookConfigsErrors, type GetAdminWebhookConfigsResponse, type GetAdminWebhookConfigsResponses, type GetAdminWebhookConfigsStatsData, type GetAdminWebhookConfigsStatsError, type GetAdminWebhookConfigsStatsErrors, type GetAdminWebhookConfigsStatsResponse, type GetAdminWebhookConfigsStatsResponses, type GetAdminWebhookDeliveriesByIdData, type GetAdminWebhookDeliveriesByIdError, type GetAdminWebhookDeliveriesByIdErrors, type GetAdminWebhookDeliveriesByIdResponse, type GetAdminWebhookDeliveriesByIdResponses, type GetAdminWebhookDeliveriesData, type GetAdminWebhookDeliveriesError, type GetAdminWebhookDeliveriesErrors, type GetAdminWebhookDeliveriesResponse, type GetAdminWebhookDeliveriesResponses, type GetAdminWebhookDeliveriesStatsData, type GetAdminWebhookDeliveriesStatsError, type GetAdminWebhookDeliveriesStatsErrors, type GetAdminWebhookDeliveriesStatsResponse, type GetAdminWebhookDeliveriesStatsResponses, type GetAdminWholesaleAgreementsByIdData, type GetAdminWholesaleAgreementsByIdError, type GetAdminWholesaleAgreementsByIdErrors, type GetAdminWholesaleAgreementsByIdResponse, type GetAdminWholesaleAgreementsByIdResponses, type GetAdminWholesaleAgreementsData, type GetAdminWholesaleAgreementsError, type GetAdminWholesaleAgreementsErrors, type GetAdminWholesaleAgreementsResponse, type GetAdminWholesaleAgreementsResponses, type GetAdminWorkspaceMembershipsData, type GetAdminWorkspaceMembershipsError, type GetAdminWorkspaceMembershipsErrors, type GetAdminWorkspaceMembershipsResponse, type GetAdminWorkspaceMembershipsResponses, type GetAdminWorkspacesAnalyticsBatchData, type GetAdminWorkspacesAnalyticsBatchError, type GetAdminWorkspacesAnalyticsBatchErrors, type GetAdminWorkspacesAnalyticsBatchResponse, type GetAdminWorkspacesAnalyticsBatchResponses, type GetAdminWorkspacesByIdData, type GetAdminWorkspacesByIdError, type GetAdminWorkspacesByIdErrors, type GetAdminWorkspacesByIdMembersData, type GetAdminWorkspacesByIdMembersError, type GetAdminWorkspacesByIdMembersErrors, type GetAdminWorkspacesByIdMembersResponse, type GetAdminWorkspacesByIdMembersResponses, type GetAdminWorkspacesByIdResponse, type GetAdminWorkspacesByIdResponses, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingError, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponse, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdData, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdError, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdErrors, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdResponse, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdResponses, type GetAdminWorkspacesByWorkspaceIdExtractionExportsData, type GetAdminWorkspacesByWorkspaceIdExtractionExportsError, type GetAdminWorkspacesByWorkspaceIdExtractionExportsErrors, type GetAdminWorkspacesByWorkspaceIdExtractionExportsResponse, type GetAdminWorkspacesByWorkspaceIdExtractionExportsResponses, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsData, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsError, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsErrors, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsResponse, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsResponses, type GetAdminWorkspacesData, type GetAdminWorkspacesError, type GetAdminWorkspacesErrors, type GetAdminWorkspacesMineData, type GetAdminWorkspacesMineError, type GetAdminWorkspacesMineErrors, type GetAdminWorkspacesMineResponse, type GetAdminWorkspacesMineResponses, type GetAdminWorkspacesResponse, type GetAdminWorkspacesResponses, type GetAdminWorkspacesSharedData, type GetAdminWorkspacesSharedError, type GetAdminWorkspacesSharedErrors, type GetAdminWorkspacesSharedResponse, type GetAdminWorkspacesSharedResponses, GptAdmin, GptCoreError, type GraphEdge, type GraphNode, type Invitation, type Invoice, type IsvRevenue, type IsvSettlement, type Ledger, type Link, type Links, type LlmAnalytics, type Message, NetworkError, NotFoundError, type NotificationLog, type NotificationMethod, type NotificationPreference, type ObjectType, type OperationSuccess, type PatchAdminAccountsByIdCreditData, type PatchAdminAccountsByIdCreditError, type PatchAdminAccountsByIdCreditErrors, type PatchAdminAccountsByIdCreditResponse, type PatchAdminAccountsByIdCreditResponses, type PatchAdminAccountsByIdDebitData, type PatchAdminAccountsByIdDebitError, type PatchAdminAccountsByIdDebitErrors, type PatchAdminAccountsByIdDebitResponse, type PatchAdminAccountsByIdDebitResponses, type PatchAdminAgentsByIdSchemaVersionsByVersionIdData, type PatchAdminAgentsByIdSchemaVersionsByVersionIdError, type PatchAdminAgentsByIdSchemaVersionsByVersionIdErrors, type PatchAdminAgentsByIdSchemaVersionsByVersionIdResponse, type PatchAdminAgentsByIdSchemaVersionsByVersionIdResponses, type PatchAdminAiConversationsByIdData, type PatchAdminAiConversationsByIdError, type PatchAdminAiConversationsByIdErrors, type PatchAdminAiConversationsByIdResponse, type PatchAdminAiConversationsByIdResponses, type PatchAdminApiKeysByIdAllocateData, type PatchAdminApiKeysByIdAllocateError, type PatchAdminApiKeysByIdAllocateErrors, type PatchAdminApiKeysByIdAllocateResponse, type PatchAdminApiKeysByIdAllocateResponses, type PatchAdminApiKeysByIdData, type PatchAdminApiKeysByIdError, type PatchAdminApiKeysByIdErrors, type PatchAdminApiKeysByIdResetPeriodData, type PatchAdminApiKeysByIdResetPeriodError, type PatchAdminApiKeysByIdResetPeriodErrors, type PatchAdminApiKeysByIdResetPeriodResponse, type PatchAdminApiKeysByIdResetPeriodResponses, type PatchAdminApiKeysByIdResponse, type PatchAdminApiKeysByIdResponses, type PatchAdminApiKeysByIdRevokeData, type PatchAdminApiKeysByIdRevokeError, type PatchAdminApiKeysByIdRevokeErrors, type PatchAdminApiKeysByIdRevokeResponse, type PatchAdminApiKeysByIdRevokeResponses, type PatchAdminApiKeysByIdRotateData, type PatchAdminApiKeysByIdRotateError, type PatchAdminApiKeysByIdRotateErrors, type PatchAdminApiKeysByIdRotateResponse, type PatchAdminApiKeysByIdRotateResponses, type PatchAdminApiKeysByIdSetBudgetData, type PatchAdminApiKeysByIdSetBudgetError, type PatchAdminApiKeysByIdSetBudgetErrors, type PatchAdminApiKeysByIdSetBudgetResponse, type PatchAdminApiKeysByIdSetBudgetResponses, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugData, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugError, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugResponse, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses, type PatchAdminApplicationsByIdAllocateCreditsData, type PatchAdminApplicationsByIdAllocateCreditsError, type PatchAdminApplicationsByIdAllocateCreditsErrors, type PatchAdminApplicationsByIdAllocateCreditsResponse, type PatchAdminApplicationsByIdAllocateCreditsResponses, type PatchAdminApplicationsByIdData, type PatchAdminApplicationsByIdError, type PatchAdminApplicationsByIdErrors, type PatchAdminApplicationsByIdGrantCreditsData, type PatchAdminApplicationsByIdGrantCreditsError, type PatchAdminApplicationsByIdGrantCreditsErrors, type PatchAdminApplicationsByIdGrantCreditsResponse, type PatchAdminApplicationsByIdGrantCreditsResponses, type PatchAdminApplicationsByIdResponse, type PatchAdminApplicationsByIdResponses, type PatchAdminBucketsByIdData, type PatchAdminBucketsByIdError, type PatchAdminBucketsByIdErrors, type PatchAdminBucketsByIdResponse, type PatchAdminBucketsByIdResponses, type PatchAdminConfigsByKeyData, type PatchAdminConfigsByKeyError, type PatchAdminConfigsByKeyErrors, type PatchAdminConfigsByKeyResponse, type PatchAdminConfigsByKeyResponses, type PatchAdminCreditPackagesByIdData, type PatchAdminCreditPackagesByIdError, type PatchAdminCreditPackagesByIdErrors, type PatchAdminCreditPackagesByIdResponse, type PatchAdminCreditPackagesByIdResponses, type PatchAdminCustomersByIdData, type PatchAdminCustomersByIdError, type PatchAdminCustomersByIdErrors, type PatchAdminCustomersByIdResponse, type PatchAdminCustomersByIdResponses, type PatchAdminExtractionConfigEnumsByIdData, type PatchAdminExtractionConfigEnumsByIdError, type PatchAdminExtractionConfigEnumsByIdErrors, type PatchAdminExtractionConfigEnumsByIdResponse, type PatchAdminExtractionConfigEnumsByIdResponses, type PatchAdminExtractionDocumentsByIdCancelData, type PatchAdminExtractionDocumentsByIdCancelError, type PatchAdminExtractionDocumentsByIdCancelErrors, type PatchAdminExtractionDocumentsByIdCancelResponse, type PatchAdminExtractionDocumentsByIdCancelResponses, type PatchAdminExtractionDocumentsByIdDismissData, type PatchAdminExtractionDocumentsByIdDismissError, type PatchAdminExtractionDocumentsByIdDismissErrors, type PatchAdminExtractionDocumentsByIdDismissResponse, type PatchAdminExtractionDocumentsByIdDismissResponses, type PatchAdminExtractionDocumentsByIdDismissTrainingData, type PatchAdminExtractionDocumentsByIdDismissTrainingError, type PatchAdminExtractionDocumentsByIdDismissTrainingErrors, type PatchAdminExtractionDocumentsByIdDismissTrainingResponse, type PatchAdminExtractionDocumentsByIdDismissTrainingResponses, type PatchAdminExtractionDocumentsByIdExcludeData, type PatchAdminExtractionDocumentsByIdExcludeError, type PatchAdminExtractionDocumentsByIdExcludeErrors, type PatchAdminExtractionDocumentsByIdExcludeResponse, type PatchAdminExtractionDocumentsByIdExcludeResponses, type PatchAdminExtractionDocumentsByIdFinishUploadData, type PatchAdminExtractionDocumentsByIdFinishUploadError, type PatchAdminExtractionDocumentsByIdFinishUploadErrors, type PatchAdminExtractionDocumentsByIdFinishUploadResponse, type PatchAdminExtractionDocumentsByIdFinishUploadResponses, type PatchAdminExtractionDocumentsByIdIncludeData, type PatchAdminExtractionDocumentsByIdIncludeError, type PatchAdminExtractionDocumentsByIdIncludeErrors, type PatchAdminExtractionDocumentsByIdIncludeResponse, type PatchAdminExtractionDocumentsByIdIncludeResponses, type PatchAdminExtractionDocumentsByIdMarkTrainedData, type PatchAdminExtractionDocumentsByIdMarkTrainedError, type PatchAdminExtractionDocumentsByIdMarkTrainedErrors, type PatchAdminExtractionDocumentsByIdMarkTrainedResponse, type PatchAdminExtractionDocumentsByIdMarkTrainedResponses, type PatchAdminExtractionDocumentsByIdReprocessData, type PatchAdminExtractionDocumentsByIdReprocessError, type PatchAdminExtractionDocumentsByIdReprocessErrors, type PatchAdminExtractionDocumentsByIdReprocessResponse, type PatchAdminExtractionDocumentsByIdReprocessResponses, type PatchAdminExtractionDocumentsByIdRestoreData, type PatchAdminExtractionDocumentsByIdRestoreError, type PatchAdminExtractionDocumentsByIdRestoreErrors, type PatchAdminExtractionDocumentsByIdRestoreResponse, type PatchAdminExtractionDocumentsByIdRestoreResponses, type PatchAdminExtractionDocumentsByIdStatusData, type PatchAdminExtractionDocumentsByIdStatusError, type PatchAdminExtractionDocumentsByIdStatusErrors, type PatchAdminExtractionDocumentsByIdStatusResponse, type PatchAdminExtractionDocumentsByIdStatusResponses, type PatchAdminExtractionDocumentsByIdVerificationData, type PatchAdminExtractionDocumentsByIdVerificationError, type PatchAdminExtractionDocumentsByIdVerificationErrors, type PatchAdminExtractionDocumentsByIdVerificationResponse, type PatchAdminExtractionDocumentsByIdVerificationResponses, type PatchAdminExtractionResultsByIdData, type PatchAdminExtractionResultsByIdError, type PatchAdminExtractionResultsByIdErrors, type PatchAdminExtractionResultsByIdRegenerateData, type PatchAdminExtractionResultsByIdRegenerateError, type PatchAdminExtractionResultsByIdRegenerateErrors, type PatchAdminExtractionResultsByIdRegenerateResponse, type PatchAdminExtractionResultsByIdRegenerateResponses, type PatchAdminExtractionResultsByIdResponse, type PatchAdminExtractionResultsByIdResponses, type PatchAdminExtractionResultsByIdSaveCorrectionsData, type PatchAdminExtractionResultsByIdSaveCorrectionsError, type PatchAdminExtractionResultsByIdSaveCorrectionsErrors, type PatchAdminExtractionResultsByIdSaveCorrectionsResponse, type PatchAdminExtractionResultsByIdSaveCorrectionsResponses, type PatchAdminInvitationsByIdAcceptByUserData, type PatchAdminInvitationsByIdAcceptByUserError, type PatchAdminInvitationsByIdAcceptByUserErrors, type PatchAdminInvitationsByIdAcceptByUserResponse, type PatchAdminInvitationsByIdAcceptByUserResponses, type PatchAdminInvitationsByIdAcceptData, type PatchAdminInvitationsByIdAcceptError, type PatchAdminInvitationsByIdAcceptErrors, type PatchAdminInvitationsByIdAcceptResponse, type PatchAdminInvitationsByIdAcceptResponses, type PatchAdminInvitationsByIdDeclineData, type PatchAdminInvitationsByIdDeclineError, type PatchAdminInvitationsByIdDeclineErrors, type PatchAdminInvitationsByIdDeclineResponse, type PatchAdminInvitationsByIdDeclineResponses, type PatchAdminInvitationsByIdResendData, type PatchAdminInvitationsByIdResendError, type PatchAdminInvitationsByIdResendErrors, type PatchAdminInvitationsByIdResendResponse, type PatchAdminInvitationsByIdResendResponses, type PatchAdminInvitationsByIdRevokeData, type PatchAdminInvitationsByIdRevokeError, type PatchAdminInvitationsByIdRevokeErrors, type PatchAdminInvitationsByIdRevokeResponse, type PatchAdminInvitationsByIdRevokeResponses, type PatchAdminIsvSettlementsByIdData, type PatchAdminIsvSettlementsByIdError, type PatchAdminIsvSettlementsByIdErrors, type PatchAdminIsvSettlementsByIdResponse, type PatchAdminIsvSettlementsByIdResponses, type PatchAdminMessagesByIdData, type PatchAdminMessagesByIdError, type PatchAdminMessagesByIdErrors, type PatchAdminMessagesByIdResponse, type PatchAdminMessagesByIdResponses, type PatchAdminNotificationMethodsByIdData, type PatchAdminNotificationMethodsByIdError, type PatchAdminNotificationMethodsByIdErrors, type PatchAdminNotificationMethodsByIdResponse, type PatchAdminNotificationMethodsByIdResponses, type PatchAdminNotificationMethodsByIdSendVerificationData, type PatchAdminNotificationMethodsByIdSendVerificationError, type PatchAdminNotificationMethodsByIdSendVerificationErrors, type PatchAdminNotificationMethodsByIdSendVerificationResponse, type PatchAdminNotificationMethodsByIdSendVerificationResponses, type PatchAdminNotificationMethodsByIdSetPrimaryData, type PatchAdminNotificationMethodsByIdSetPrimaryError, type PatchAdminNotificationMethodsByIdSetPrimaryErrors, type PatchAdminNotificationMethodsByIdSetPrimaryResponse, type PatchAdminNotificationMethodsByIdSetPrimaryResponses, type PatchAdminNotificationMethodsByIdVerifyData, type PatchAdminNotificationMethodsByIdVerifyError, type PatchAdminNotificationMethodsByIdVerifyErrors, type PatchAdminNotificationMethodsByIdVerifyResponse, type PatchAdminNotificationMethodsByIdVerifyResponses, type PatchAdminNotificationPreferencesByIdData, type PatchAdminNotificationPreferencesByIdError, type PatchAdminNotificationPreferencesByIdErrors, type PatchAdminNotificationPreferencesByIdResponse, type PatchAdminNotificationPreferencesByIdResponses, type PatchAdminPaymentMethodsByIdData, type PatchAdminPaymentMethodsByIdDefaultData, type PatchAdminPaymentMethodsByIdDefaultError, type PatchAdminPaymentMethodsByIdDefaultErrors, type PatchAdminPaymentMethodsByIdDefaultResponse, type PatchAdminPaymentMethodsByIdDefaultResponses, type PatchAdminPaymentMethodsByIdError, type PatchAdminPaymentMethodsByIdErrors, type PatchAdminPaymentMethodsByIdResponse, type PatchAdminPaymentMethodsByIdResponses, type PatchAdminPlansByIdData, type PatchAdminPlansByIdError, type PatchAdminPlansByIdErrors, type PatchAdminPlansByIdResponse, type PatchAdminPlansByIdResponses, type PatchAdminPlatformPricingConfigsByIdData, type PatchAdminPlatformPricingConfigsByIdError, type PatchAdminPlatformPricingConfigsByIdErrors, type PatchAdminPlatformPricingConfigsByIdResponse, type PatchAdminPlatformPricingConfigsByIdResponses, type PatchAdminPricingRulesByIdData, type PatchAdminPricingRulesByIdError, type PatchAdminPricingRulesByIdErrors, type PatchAdminPricingRulesByIdResponse, type PatchAdminPricingRulesByIdResponses, type PatchAdminPricingStrategiesByIdData, type PatchAdminPricingStrategiesByIdError, type PatchAdminPricingStrategiesByIdErrors, type PatchAdminPricingStrategiesByIdResponse, type PatchAdminPricingStrategiesByIdResponses, type PatchAdminSearchSavedByIdData, type PatchAdminSearchSavedByIdError, type PatchAdminSearchSavedByIdErrors, type PatchAdminSearchSavedByIdResponse, type PatchAdminSearchSavedByIdResponses, type PatchAdminSubscriptionsByIdCancelData, type PatchAdminSubscriptionsByIdCancelError, type PatchAdminSubscriptionsByIdCancelErrors, type PatchAdminSubscriptionsByIdCancelResponse, type PatchAdminSubscriptionsByIdCancelResponses, type PatchAdminSubscriptionsByIdData, type PatchAdminSubscriptionsByIdError, type PatchAdminSubscriptionsByIdErrors, type PatchAdminSubscriptionsByIdResponse, type PatchAdminSubscriptionsByIdResponses, type PatchAdminSysAiConfigByIdData, type PatchAdminSysAiConfigByIdError, type PatchAdminSysAiConfigByIdErrors, type PatchAdminSysAiConfigByIdResponse, type PatchAdminSysAiConfigByIdResponses, type PatchAdminSystemMessagesByIdData, type PatchAdminSystemMessagesByIdError, type PatchAdminSystemMessagesByIdErrors, type PatchAdminSystemMessagesByIdPublishData, type PatchAdminSystemMessagesByIdPublishError, type PatchAdminSystemMessagesByIdPublishErrors, type PatchAdminSystemMessagesByIdPublishResponse, type PatchAdminSystemMessagesByIdPublishResponses, type PatchAdminSystemMessagesByIdResponse, type PatchAdminSystemMessagesByIdResponses, type PatchAdminSystemMessagesByIdUnpublishData, type PatchAdminSystemMessagesByIdUnpublishError, type PatchAdminSystemMessagesByIdUnpublishErrors, type PatchAdminSystemMessagesByIdUnpublishResponse, type PatchAdminSystemMessagesByIdUnpublishResponses, type PatchAdminTenantMembershipsByTenantIdByUserIdData, type PatchAdminTenantMembershipsByTenantIdByUserIdError, type PatchAdminTenantMembershipsByTenantIdByUserIdErrors, type PatchAdminTenantMembershipsByTenantIdByUserIdResponse, type PatchAdminTenantMembershipsByTenantIdByUserIdResponses, type PatchAdminTenantPricingOverridesByIdData, type PatchAdminTenantPricingOverridesByIdError, type PatchAdminTenantPricingOverridesByIdErrors, type PatchAdminTenantPricingOverridesByIdResponse, type PatchAdminTenantPricingOverridesByIdResponses, type PatchAdminTenantsByIdData, type PatchAdminTenantsByIdError, type PatchAdminTenantsByIdErrors, type PatchAdminTenantsByIdResponse, type PatchAdminTenantsByIdResponses, type PatchAdminThreadsByIdArchiveData, type PatchAdminThreadsByIdArchiveError, type PatchAdminThreadsByIdArchiveErrors, type PatchAdminThreadsByIdArchiveResponse, type PatchAdminThreadsByIdArchiveResponses, type PatchAdminThreadsByIdData, type PatchAdminThreadsByIdError, type PatchAdminThreadsByIdErrors, type PatchAdminThreadsByIdResponse, type PatchAdminThreadsByIdResponses, type PatchAdminThreadsByIdUnarchiveData, type PatchAdminThreadsByIdUnarchiveError, type PatchAdminThreadsByIdUnarchiveErrors, type PatchAdminThreadsByIdUnarchiveResponse, type PatchAdminThreadsByIdUnarchiveResponses, type PatchAdminTrainingExamplesByIdData, type PatchAdminTrainingExamplesByIdError, type PatchAdminTrainingExamplesByIdErrors, type PatchAdminTrainingExamplesByIdResponse, type PatchAdminTrainingExamplesByIdResponses, type PatchAdminUserProfilesByIdAcceptTosData, type PatchAdminUserProfilesByIdAcceptTosError, type PatchAdminUserProfilesByIdAcceptTosErrors, type PatchAdminUserProfilesByIdAcceptTosResponse, type PatchAdminUserProfilesByIdAcceptTosResponses, type PatchAdminUserProfilesByIdData, type PatchAdminUserProfilesByIdDismissAnnouncementData, type PatchAdminUserProfilesByIdDismissAnnouncementError, type PatchAdminUserProfilesByIdDismissAnnouncementErrors, type PatchAdminUserProfilesByIdDismissAnnouncementResponse, type PatchAdminUserProfilesByIdDismissAnnouncementResponses, type PatchAdminUserProfilesByIdDismissWelcomeData, type PatchAdminUserProfilesByIdDismissWelcomeError, type PatchAdminUserProfilesByIdDismissWelcomeErrors, type PatchAdminUserProfilesByIdDismissWelcomeResponse, type PatchAdminUserProfilesByIdDismissWelcomeResponses, type PatchAdminUserProfilesByIdError, type PatchAdminUserProfilesByIdErrors, type PatchAdminUserProfilesByIdResponse, type PatchAdminUserProfilesByIdResponses, type PatchAdminUsersAuthPasswordChangeData, type PatchAdminUsersAuthPasswordChangeError, type PatchAdminUsersAuthPasswordChangeErrors, type PatchAdminUsersAuthPasswordChangeResponse, type PatchAdminUsersAuthPasswordChangeResponses, type PatchAdminUsersAuthResetPasswordData, type PatchAdminUsersAuthResetPasswordError, type PatchAdminUsersAuthResetPasswordErrors, type PatchAdminUsersAuthResetPasswordResponse, type PatchAdminUsersAuthResetPasswordResponses, type PatchAdminUsersByIdAdminData, type PatchAdminUsersByIdAdminEmailData, type PatchAdminUsersByIdAdminEmailError, type PatchAdminUsersByIdAdminEmailErrors, type PatchAdminUsersByIdAdminEmailResponse, type PatchAdminUsersByIdAdminEmailResponses, type PatchAdminUsersByIdAdminError, type PatchAdminUsersByIdAdminErrors, type PatchAdminUsersByIdAdminResponse, type PatchAdminUsersByIdAdminResponses, type PatchAdminUsersByIdConfirmEmailData, type PatchAdminUsersByIdConfirmEmailError, type PatchAdminUsersByIdConfirmEmailErrors, type PatchAdminUsersByIdConfirmEmailResponse, type PatchAdminUsersByIdConfirmEmailResponses, type PatchAdminUsersByIdResetPasswordData, type PatchAdminUsersByIdResetPasswordError, type PatchAdminUsersByIdResetPasswordErrors, type PatchAdminUsersByIdResetPasswordResponse, type PatchAdminUsersByIdResetPasswordResponses, type PatchAdminWalletAddonsByAddonSlugCancelData, type PatchAdminWalletAddonsByAddonSlugCancelError, type PatchAdminWalletAddonsByAddonSlugCancelErrors, type PatchAdminWalletAddonsByAddonSlugCancelResponse, type PatchAdminWalletAddonsByAddonSlugCancelResponses, type PatchAdminWalletAddonsData, type PatchAdminWalletAddonsError, type PatchAdminWalletAddonsErrors, type PatchAdminWalletAddonsResponse, type PatchAdminWalletAddonsResponses, type PatchAdminWalletCreditsData, type PatchAdminWalletCreditsError, type PatchAdminWalletCreditsErrors, type PatchAdminWalletCreditsResponse, type PatchAdminWalletCreditsResponses, type PatchAdminWalletPlanData, type PatchAdminWalletPlanError, type PatchAdminWalletPlanErrors, type PatchAdminWalletPlanResponse, type PatchAdminWalletPlanResponses, type PatchAdminWalletStorageData, type PatchAdminWalletStorageError, type PatchAdminWalletStorageErrors, type PatchAdminWalletStorageResponse, type PatchAdminWalletStorageResponses, type PatchAdminWebhookConfigsByIdData, type PatchAdminWebhookConfigsByIdError, type PatchAdminWebhookConfigsByIdErrors, type PatchAdminWebhookConfigsByIdResponse, type PatchAdminWebhookConfigsByIdResponses, type PatchAdminWebhookConfigsByIdRotateSecretData, type PatchAdminWebhookConfigsByIdRotateSecretError, type PatchAdminWebhookConfigsByIdRotateSecretErrors, type PatchAdminWebhookConfigsByIdRotateSecretResponse, type PatchAdminWebhookConfigsByIdRotateSecretResponses, type PatchAdminWholesaleAgreementsByIdData, type PatchAdminWholesaleAgreementsByIdError, type PatchAdminWholesaleAgreementsByIdErrors, type PatchAdminWholesaleAgreementsByIdResponse, type PatchAdminWholesaleAgreementsByIdResponses, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdData, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdError, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponse, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type PatchAdminWorkspacesByIdAllocateData, type PatchAdminWorkspacesByIdAllocateError, type PatchAdminWorkspacesByIdAllocateErrors, type PatchAdminWorkspacesByIdAllocateResponse, type PatchAdminWorkspacesByIdAllocateResponses, type PatchAdminWorkspacesByIdData, type PatchAdminWorkspacesByIdError, type PatchAdminWorkspacesByIdErrors, type PatchAdminWorkspacesByIdResponse, type PatchAdminWorkspacesByIdResponses, type PatchAdminWorkspacesByIdStorageSettingsData, type PatchAdminWorkspacesByIdStorageSettingsError, type PatchAdminWorkspacesByIdStorageSettingsErrors, type PatchAdminWorkspacesByIdStorageSettingsResponse, type PatchAdminWorkspacesByIdStorageSettingsResponses, type Payment, type PaymentMethod, type Permission, type PermissionMeta, type PermissionPreset, type Plan, type PlatformPricingConfig, type PostAdminAgentTestResultsData, type PostAdminAgentTestResultsError, type PostAdminAgentTestResultsErrors, type PostAdminAgentTestResultsResponse, type PostAdminAgentTestResultsResponses, type PostAdminAgentVersionComparisonsData, type PostAdminAgentVersionComparisonsError, type PostAdminAgentVersionComparisonsErrors, type PostAdminAgentVersionComparisonsResponse, type PostAdminAgentVersionComparisonsResponses, type PostAdminAgentVersionsByIdAddSystemFieldData, type PostAdminAgentVersionsByIdAddSystemFieldError, type PostAdminAgentVersionsByIdAddSystemFieldErrors, type PostAdminAgentVersionsByIdAddSystemFieldResponses, type PostAdminAgentVersionsByIdRemoveSystemFieldData, type PostAdminAgentVersionsByIdRemoveSystemFieldError, type PostAdminAgentVersionsByIdRemoveSystemFieldErrors, type PostAdminAgentVersionsByIdRemoveSystemFieldResponses, type PostAdminAgentVersionsByIdSetSystemFieldsData, type PostAdminAgentVersionsByIdSetSystemFieldsError, type PostAdminAgentVersionsByIdSetSystemFieldsErrors, type PostAdminAgentVersionsByIdSetSystemFieldsResponses, type PostAdminAgentVersionsData, type PostAdminAgentVersionsError, type PostAdminAgentVersionsErrors, type PostAdminAgentVersionsResponse, type PostAdminAgentVersionsResponses, type PostAdminAgentsByIdCloneData, type PostAdminAgentsByIdCloneError, type PostAdminAgentsByIdCloneErrors, type PostAdminAgentsByIdCloneResponse, type PostAdminAgentsByIdCloneResponses, type PostAdminAgentsByIdDiscoverSchemaData, type PostAdminAgentsByIdDiscoverSchemaError, type PostAdminAgentsByIdDiscoverSchemaErrors, type PostAdminAgentsByIdDiscoverSchemaResponse, type PostAdminAgentsByIdDiscoverSchemaResponses, type PostAdminAgentsByIdExportData, type PostAdminAgentsByIdExportError, type PostAdminAgentsByIdExportErrors, type PostAdminAgentsByIdExportResponse, type PostAdminAgentsByIdExportResponses, type PostAdminAgentsByIdPublishVersionData, type PostAdminAgentsByIdPublishVersionError, type PostAdminAgentsByIdPublishVersionErrors, type PostAdminAgentsByIdPublishVersionResponse, type PostAdminAgentsByIdPublishVersionResponses, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateData, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateError, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateErrors, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponse, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponses, type PostAdminAgentsByIdSchemaVersionsData, type PostAdminAgentsByIdSchemaVersionsError, type PostAdminAgentsByIdSchemaVersionsErrors, type PostAdminAgentsByIdSchemaVersionsResponse, type PostAdminAgentsByIdSchemaVersionsResponses, type PostAdminAgentsByIdTeachData, type PostAdminAgentsByIdTeachError, type PostAdminAgentsByIdTeachErrors, type PostAdminAgentsByIdTeachResponse, type PostAdminAgentsByIdTeachResponses, type PostAdminAgentsByIdTestData, type PostAdminAgentsByIdTestError, type PostAdminAgentsByIdTestErrors, type PostAdminAgentsByIdTestResponse, type PostAdminAgentsByIdTestResponses, type PostAdminAgentsByIdValidateData, type PostAdminAgentsByIdValidateError, type PostAdminAgentsByIdValidateErrors, type PostAdminAgentsByIdValidateResponse, type PostAdminAgentsByIdValidateResponses, type PostAdminAgentsCloneForWorkspaceData, type PostAdminAgentsCloneForWorkspaceError, type PostAdminAgentsCloneForWorkspaceErrors, type PostAdminAgentsCloneForWorkspaceResponse, type PostAdminAgentsCloneForWorkspaceResponses, type PostAdminAgentsImportData, type PostAdminAgentsImportError, type PostAdminAgentsImportErrors, type PostAdminAgentsImportResponse, type PostAdminAgentsImportResponses, type PostAdminAgentsPredictData, type PostAdminAgentsPredictError, type PostAdminAgentsPredictErrors, type PostAdminAgentsPredictResponse, type PostAdminAgentsPredictResponses, type PostAdminAiChunksSearchData, type PostAdminAiChunksSearchError, type PostAdminAiChunksSearchErrors, type PostAdminAiChunksSearchResponse, type PostAdminAiChunksSearchResponses, type PostAdminAiConversationsData, type PostAdminAiConversationsError, type PostAdminAiConversationsErrors, type PostAdminAiConversationsResponse, type PostAdminAiConversationsResponses, type PostAdminAiEmbedData, type PostAdminAiEmbedError, type PostAdminAiEmbedErrors, type PostAdminAiEmbedResponse, type PostAdminAiEmbedResponses, type PostAdminAiGraphEdgesData, type PostAdminAiGraphEdgesError, type PostAdminAiGraphEdgesErrors, type PostAdminAiGraphEdgesResponse, type PostAdminAiGraphEdgesResponses, type PostAdminAiGraphNodesData, type PostAdminAiGraphNodesError, type PostAdminAiGraphNodesErrors, type PostAdminAiGraphNodesResponse, type PostAdminAiGraphNodesResponses, type PostAdminAiMessagesData, type PostAdminAiMessagesError, type PostAdminAiMessagesErrors, type PostAdminAiMessagesResponse, type PostAdminAiMessagesResponses, type PostAdminAiSearchAdvancedData, type PostAdminAiSearchAdvancedError, type PostAdminAiSearchAdvancedErrors, type PostAdminAiSearchAdvancedResponse, type PostAdminAiSearchAdvancedResponses, type PostAdminAiSearchData, type PostAdminAiSearchError, type PostAdminAiSearchErrors, type PostAdminAiSearchResponse, type PostAdminAiSearchResponses, type PostAdminApiKeysData, type PostAdminApiKeysError, type PostAdminApiKeysErrors, type PostAdminApiKeysResponse, type PostAdminApiKeysResponses, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewData, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewError, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewErrors, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewResponse, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewResponses, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestData, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestError, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestErrors, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestResponse, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestResponses, type PostAdminApplicationsByApplicationIdEmailTemplatesData, type PostAdminApplicationsByApplicationIdEmailTemplatesError, type PostAdminApplicationsByApplicationIdEmailTemplatesErrors, type PostAdminApplicationsByApplicationIdEmailTemplatesResponse, type PostAdminApplicationsByApplicationIdEmailTemplatesResponses, type PostAdminApplicationsData, type PostAdminApplicationsError, type PostAdminApplicationsErrors, type PostAdminApplicationsResponse, type PostAdminApplicationsResponses, type PostAdminBucketsData, type PostAdminBucketsError, type PostAdminBucketsErrors, type PostAdminBucketsResponse, type PostAdminBucketsResponses, type PostAdminConfigsData, type PostAdminConfigsError, type PostAdminConfigsErrors, type PostAdminConfigsResponse, type PostAdminConfigsResponses, type PostAdminCreditPackagesData, type PostAdminCreditPackagesError, type PostAdminCreditPackagesErrors, type PostAdminCreditPackagesResponse, type PostAdminCreditPackagesResponses, type PostAdminCustomersData, type PostAdminCustomersError, type PostAdminCustomersErrors, type PostAdminCustomersResponse, type PostAdminCustomersResponses, type PostAdminDocumentsBulkDeleteData, type PostAdminDocumentsBulkDeleteError, type PostAdminDocumentsBulkDeleteErrors, type PostAdminDocumentsBulkDeleteResponse, type PostAdminDocumentsBulkDeleteResponses, type PostAdminDocumentsPresignedUploadData, type PostAdminDocumentsPresignedUploadError, type PostAdminDocumentsPresignedUploadErrors, type PostAdminDocumentsPresignedUploadResponse, type PostAdminDocumentsPresignedUploadResponses, type PostAdminExtractionBatchesData, type PostAdminExtractionBatchesError, type PostAdminExtractionBatchesErrors, type PostAdminExtractionBatchesResponse, type PostAdminExtractionBatchesResponses, type PostAdminExtractionConfigEnumsData, type PostAdminExtractionConfigEnumsError, type PostAdminExtractionConfigEnumsErrors, type PostAdminExtractionConfigEnumsResponse, type PostAdminExtractionConfigEnumsResponses, type PostAdminExtractionDocumentsBeginUploadData, type PostAdminExtractionDocumentsBeginUploadError, type PostAdminExtractionDocumentsBeginUploadErrors, type PostAdminExtractionDocumentsBeginUploadResponse, type PostAdminExtractionDocumentsBeginUploadResponses, type PostAdminExtractionDocumentsBulkReprocessData, type PostAdminExtractionDocumentsBulkReprocessError, type PostAdminExtractionDocumentsBulkReprocessErrors, type PostAdminExtractionDocumentsBulkReprocessResponse, type PostAdminExtractionDocumentsBulkReprocessResponses, type PostAdminExtractionDocumentsUploadData, type PostAdminExtractionDocumentsUploadError, type PostAdminExtractionDocumentsUploadErrors, type PostAdminExtractionDocumentsUploadResponse, type PostAdminExtractionDocumentsUploadResponses, type PostAdminExtractionSchemaDiscoveriesData, type PostAdminExtractionSchemaDiscoveriesError, type PostAdminExtractionSchemaDiscoveriesErrors, type PostAdminExtractionSchemaDiscoveriesResponse, type PostAdminExtractionSchemaDiscoveriesResponses, type PostAdminFieldTemplatesData, type PostAdminFieldTemplatesError, type PostAdminFieldTemplatesErrors, type PostAdminFieldTemplatesResponse, type PostAdminFieldTemplatesResponses, type PostAdminInvitationsAcceptByTokenData, type PostAdminInvitationsAcceptByTokenError, type PostAdminInvitationsAcceptByTokenErrors, type PostAdminInvitationsAcceptByTokenResponse, type PostAdminInvitationsAcceptByTokenResponses, type PostAdminInvitationsData, type PostAdminInvitationsError, type PostAdminInvitationsErrors, type PostAdminInvitationsResponse, type PostAdminInvitationsResponses, type PostAdminIsvRevenueData, type PostAdminIsvRevenueError, type PostAdminIsvRevenueErrors, type PostAdminIsvRevenueResponse, type PostAdminIsvRevenueResponses, type PostAdminIsvSettlementsData, type PostAdminIsvSettlementsError, type PostAdminIsvSettlementsErrors, type PostAdminIsvSettlementsResponse, type PostAdminIsvSettlementsResponses, type PostAdminLlmAnalyticsData, type PostAdminLlmAnalyticsError, type PostAdminLlmAnalyticsErrors, type PostAdminLlmAnalyticsResponse, type PostAdminLlmAnalyticsResponses, type PostAdminMessagesData, type PostAdminMessagesError, type PostAdminMessagesErrors, type PostAdminMessagesResponse, type PostAdminMessagesResponses, type PostAdminNotificationMethodsData, type PostAdminNotificationMethodsError, type PostAdminNotificationMethodsErrors, type PostAdminNotificationMethodsResponse, type PostAdminNotificationMethodsResponses, type PostAdminNotificationPreferencesData, type PostAdminNotificationPreferencesError, type PostAdminNotificationPreferencesErrors, type PostAdminNotificationPreferencesResponse, type PostAdminNotificationPreferencesResponses, type PostAdminObjectsBulkDestroyData, type PostAdminObjectsBulkDestroyError, type PostAdminObjectsBulkDestroyErrors, type PostAdminObjectsBulkDestroyResponse, type PostAdminObjectsBulkDestroyResponses, type PostAdminObjectsCopyData, type PostAdminObjectsCopyError, type PostAdminObjectsCopyErrors, type PostAdminObjectsCopyResponse, type PostAdminObjectsCopyResponses, type PostAdminObjectsMoveData, type PostAdminObjectsMoveError, type PostAdminObjectsMoveErrors, type PostAdminObjectsMoveResponse, type PostAdminObjectsMoveResponses, type PostAdminObjectsRegisterData, type PostAdminObjectsRegisterError, type PostAdminObjectsRegisterErrors, type PostAdminObjectsRegisterResponse, type PostAdminObjectsRegisterResponses, type PostAdminPaymentMethodsData, type PostAdminPaymentMethodsError, type PostAdminPaymentMethodsErrors, type PostAdminPaymentMethodsResponse, type PostAdminPaymentMethodsResponses, type PostAdminPaymentMethodsTokenizeData, type PostAdminPaymentMethodsTokenizeError, type PostAdminPaymentMethodsTokenizeErrors, type PostAdminPaymentMethodsTokenizeResponse, type PostAdminPaymentMethodsTokenizeResponses, type PostAdminPaymentsData, type PostAdminPaymentsError, type PostAdminPaymentsErrors, type PostAdminPaymentsResponse, type PostAdminPaymentsResponses, type PostAdminPlansData, type PostAdminPlansError, type PostAdminPlansErrors, type PostAdminPlansResponse, type PostAdminPlansResponses, type PostAdminPlatformPricingConfigsData, type PostAdminPlatformPricingConfigsError, type PostAdminPlatformPricingConfigsErrors, type PostAdminPlatformPricingConfigsResponse, type PostAdminPlatformPricingConfigsResponses, type PostAdminPricingRulesData, type PostAdminPricingRulesError, type PostAdminPricingRulesErrors, type PostAdminPricingRulesResponse, type PostAdminPricingRulesResponses, type PostAdminPricingStrategiesData, type PostAdminPricingStrategiesError, type PostAdminPricingStrategiesErrors, type PostAdminPricingStrategiesResponse, type PostAdminPricingStrategiesResponses, type PostAdminSearchBatchData, type PostAdminSearchBatchError, type PostAdminSearchBatchErrors, type PostAdminSearchBatchResponse, type PostAdminSearchBatchResponses, type PostAdminSearchReindexData, type PostAdminSearchReindexError, type PostAdminSearchReindexErrors, type PostAdminSearchReindexResponse, type PostAdminSearchReindexResponses, type PostAdminSearchSavedByIdRunData, type PostAdminSearchSavedByIdRunError, type PostAdminSearchSavedByIdRunErrors, type PostAdminSearchSavedByIdRunResponse, type PostAdminSearchSavedByIdRunResponses, type PostAdminSearchSavedData, type PostAdminSearchSavedError, type PostAdminSearchSavedErrors, type PostAdminSearchSavedResponse, type PostAdminSearchSavedResponses, type PostAdminSettlementsData, type PostAdminSettlementsError, type PostAdminSettlementsErrors, type PostAdminSettlementsResponse, type PostAdminSettlementsResponses, type PostAdminStorageSignDownloadData, type PostAdminStorageSignDownloadError, type PostAdminStorageSignDownloadErrors, type PostAdminStorageSignDownloadResponse, type PostAdminStorageSignDownloadResponses, type PostAdminStorageSignUploadData, type PostAdminStorageSignUploadError, type PostAdminStorageSignUploadErrors, type PostAdminStorageSignUploadResponse, type PostAdminStorageSignUploadResponses, type PostAdminSubscriptionsData, type PostAdminSubscriptionsError, type PostAdminSubscriptionsErrors, type PostAdminSubscriptionsResponse, type PostAdminSubscriptionsResponses, type PostAdminSysAiConfigData, type PostAdminSysAiConfigError, type PostAdminSysAiConfigErrors, type PostAdminSysAiConfigResponse, type PostAdminSysAiConfigResponses, type PostAdminSysSemanticCacheClearData, type PostAdminSysSemanticCacheClearError, type PostAdminSysSemanticCacheClearErrors, type PostAdminSysSemanticCacheClearResponse, type PostAdminSysSemanticCacheClearResponses, type PostAdminSystemMessagesData, type PostAdminSystemMessagesError, type PostAdminSystemMessagesErrors, type PostAdminSystemMessagesResponse, type PostAdminSystemMessagesResponses, type PostAdminTenantMembershipsData, type PostAdminTenantMembershipsError, type PostAdminTenantMembershipsErrors, type PostAdminTenantMembershipsResponse, type PostAdminTenantMembershipsResponses, type PostAdminTenantPricingOverridesData, type PostAdminTenantPricingOverridesError, type PostAdminTenantPricingOverridesErrors, type PostAdminTenantPricingOverridesResponse, type PostAdminTenantPricingOverridesResponses, type PostAdminTenantsByIdBuyStorageData, type PostAdminTenantsByIdBuyStorageError, type PostAdminTenantsByIdBuyStorageErrors, type PostAdminTenantsByIdBuyStorageResponse, type PostAdminTenantsByIdBuyStorageResponses, type PostAdminTenantsByIdCreditData, type PostAdminTenantsByIdCreditError, type PostAdminTenantsByIdCreditErrors, type PostAdminTenantsByIdCreditResponse, type PostAdminTenantsByIdCreditResponses, type PostAdminTenantsByIdRemoveStorageData, type PostAdminTenantsByIdRemoveStorageError, type PostAdminTenantsByIdRemoveStorageErrors, type PostAdminTenantsByIdRemoveStorageResponse, type PostAdminTenantsByIdRemoveStorageResponses, type PostAdminTenantsByIdSchedulePurgeData, type PostAdminTenantsByIdSchedulePurgeError, type PostAdminTenantsByIdSchedulePurgeErrors, type PostAdminTenantsByIdSchedulePurgeResponse, type PostAdminTenantsByIdSchedulePurgeResponses, type PostAdminTenantsData, type PostAdminTenantsError, type PostAdminTenantsErrors, type PostAdminTenantsIsvData, type PostAdminTenantsIsvError, type PostAdminTenantsIsvErrors, type PostAdminTenantsIsvResponse, type PostAdminTenantsIsvResponses, type PostAdminTenantsResponse, type PostAdminTenantsResponses, type PostAdminThreadsActiveData, type PostAdminThreadsActiveError, type PostAdminThreadsActiveErrors, type PostAdminThreadsActiveResponse, type PostAdminThreadsActiveResponses, type PostAdminThreadsByIdExportData, type PostAdminThreadsByIdExportError, type PostAdminThreadsByIdExportErrors, type PostAdminThreadsByIdExportResponse, type PostAdminThreadsByIdExportResponses, type PostAdminThreadsByIdForkData, type PostAdminThreadsByIdForkError, type PostAdminThreadsByIdForkErrors, type PostAdminThreadsByIdForkResponse, type PostAdminThreadsByIdForkResponses, type PostAdminThreadsByIdMessagesData, type PostAdminThreadsByIdMessagesError, type PostAdminThreadsByIdMessagesErrors, type PostAdminThreadsByIdMessagesResponse, type PostAdminThreadsByIdMessagesResponses, type PostAdminThreadsByIdSummarizeData, type PostAdminThreadsByIdSummarizeError, type PostAdminThreadsByIdSummarizeErrors, type PostAdminThreadsByIdSummarizeResponse, type PostAdminThreadsByIdSummarizeResponses, type PostAdminThreadsData, type PostAdminThreadsError, type PostAdminThreadsErrors, type PostAdminThreadsResponse, type PostAdminThreadsResponses, type PostAdminTokensData, type PostAdminTokensError, type PostAdminTokensErrors, type PostAdminTokensResponse, type PostAdminTokensResponses, type PostAdminTrainingExamplesBulkData, type PostAdminTrainingExamplesBulkDeleteData, type PostAdminTrainingExamplesBulkDeleteError, type PostAdminTrainingExamplesBulkDeleteErrors, type PostAdminTrainingExamplesBulkDeleteResponse, type PostAdminTrainingExamplesBulkDeleteResponses, type PostAdminTrainingExamplesBulkError, type PostAdminTrainingExamplesBulkErrors, type PostAdminTrainingExamplesBulkResponse, type PostAdminTrainingExamplesBulkResponses, type PostAdminTrainingExamplesData, type PostAdminTrainingExamplesError, type PostAdminTrainingExamplesErrors, type PostAdminTrainingExamplesResponse, type PostAdminTrainingExamplesResponses, type PostAdminTrainingExamplesSearchData, type PostAdminTrainingExamplesSearchError, type PostAdminTrainingExamplesSearchErrors, type PostAdminTrainingExamplesSearchResponse, type PostAdminTrainingExamplesSearchResponses, type PostAdminUserProfilesData, type PostAdminUserProfilesError, type PostAdminUserProfilesErrors, type PostAdminUserProfilesResponse, type PostAdminUserProfilesResponses, type PostAdminUsersAuthConfirmData, type PostAdminUsersAuthConfirmError, type PostAdminUsersAuthConfirmErrors, type PostAdminUsersAuthConfirmResponse, type PostAdminUsersAuthConfirmResponses, type PostAdminUsersAuthLoginData, type PostAdminUsersAuthLoginError, type PostAdminUsersAuthLoginErrors, type PostAdminUsersAuthLoginResponse, type PostAdminUsersAuthLoginResponses, type PostAdminUsersAuthMagicLinkLoginData, type PostAdminUsersAuthMagicLinkLoginError, type PostAdminUsersAuthMagicLinkLoginErrors, type PostAdminUsersAuthMagicLinkLoginResponse, type PostAdminUsersAuthMagicLinkLoginResponses, type PostAdminUsersAuthMagicLinkRequestData, type PostAdminUsersAuthMagicLinkRequestError, type PostAdminUsersAuthMagicLinkRequestErrors, type PostAdminUsersAuthMagicLinkRequestResponse, type PostAdminUsersAuthMagicLinkRequestResponses, type PostAdminUsersAuthRegisterData, type PostAdminUsersAuthRegisterError, type PostAdminUsersAuthRegisterErrors, type PostAdminUsersAuthRegisterResponse, type PostAdminUsersAuthRegisterResponses, type PostAdminUsersAuthRegisterWithOidcData, type PostAdminUsersAuthRegisterWithOidcError, type PostAdminUsersAuthRegisterWithOidcErrors, type PostAdminUsersAuthRegisterWithOidcResponse, type PostAdminUsersAuthRegisterWithOidcResponses, type PostAdminUsersAuthResendConfirmationData, type PostAdminUsersAuthResendConfirmationError, type PostAdminUsersAuthResendConfirmationErrors, type PostAdminUsersAuthResendConfirmationResponse, type PostAdminUsersAuthResendConfirmationResponses, type PostAdminUsersRegisterIsvData, type PostAdminUsersRegisterIsvError, type PostAdminUsersRegisterIsvErrors, type PostAdminUsersRegisterIsvResponse, type PostAdminUsersRegisterIsvResponses, type PostAdminWebhookConfigsBulkDisableData, type PostAdminWebhookConfigsBulkDisableError, type PostAdminWebhookConfigsBulkDisableErrors, type PostAdminWebhookConfigsBulkDisableResponse, type PostAdminWebhookConfigsBulkDisableResponses, type PostAdminWebhookConfigsBulkEnableData, type PostAdminWebhookConfigsBulkEnableError, type PostAdminWebhookConfigsBulkEnableErrors, type PostAdminWebhookConfigsBulkEnableResponse, type PostAdminWebhookConfigsBulkEnableResponses, type PostAdminWebhookConfigsByIdReplayData, type PostAdminWebhookConfigsByIdReplayError, type PostAdminWebhookConfigsByIdReplayErrors, type PostAdminWebhookConfigsByIdReplayResponse, type PostAdminWebhookConfigsByIdReplayResponses, type PostAdminWebhookConfigsByIdTestData, type PostAdminWebhookConfigsByIdTestError, type PostAdminWebhookConfigsByIdTestErrors, type PostAdminWebhookConfigsByIdTestResponse, type PostAdminWebhookConfigsByIdTestResponses, type PostAdminWebhookConfigsData, type PostAdminWebhookConfigsError, type PostAdminWebhookConfigsErrors, type PostAdminWebhookConfigsResponse, type PostAdminWebhookConfigsResponses, type PostAdminWebhookDeliveriesBulkRetryData, type PostAdminWebhookDeliveriesBulkRetryError, type PostAdminWebhookDeliveriesBulkRetryErrors, type PostAdminWebhookDeliveriesBulkRetryResponse, type PostAdminWebhookDeliveriesBulkRetryResponses, type PostAdminWebhookDeliveriesByIdRetryData, type PostAdminWebhookDeliveriesByIdRetryError, type PostAdminWebhookDeliveriesByIdRetryErrors, type PostAdminWebhookDeliveriesByIdRetryResponse, type PostAdminWebhookDeliveriesByIdRetryResponses, type PostAdminWholesaleAgreementsData, type PostAdminWholesaleAgreementsError, type PostAdminWholesaleAgreementsErrors, type PostAdminWholesaleAgreementsResponse, type PostAdminWholesaleAgreementsResponses, type PostAdminWorkspaceMembershipsData, type PostAdminWorkspaceMembershipsError, type PostAdminWorkspaceMembershipsErrors, type PostAdminWorkspaceMembershipsResponse, type PostAdminWorkspaceMembershipsResponses, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingError, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponse, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedData, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedError, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedErrors, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponse, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponses, type PostAdminWorkspacesByWorkspaceIdExtractionExportsData, type PostAdminWorkspacesByWorkspaceIdExtractionExportsError, type PostAdminWorkspacesByWorkspaceIdExtractionExportsErrors, type PostAdminWorkspacesByWorkspaceIdExtractionExportsResponse, type PostAdminWorkspacesByWorkspaceIdExtractionExportsResponses, type PostAdminWorkspacesData, type PostAdminWorkspacesError, type PostAdminWorkspacesErrors, type PostAdminWorkspacesResponse, type PostAdminWorkspacesResponses, type PresignedUrl, type PricingRule, type PricingStrategy, RateLimitError, type SavedSearch, type SchemaDiscovery, type Search, type SearchAnalytics, type SemanticCacheEntry, ServerError, type Settlement, type ShadowComparison, type StorageStats, type StorageStatsRequest, StorageStatsRequestSchema, type StorageStatsType, type Subscription, type SystemMessage, type Tenant, type TenantDocumentStats, type TenantMembership, type TenantPricingOverride, type TenantStats, type Thread, type ThreadStats, type ThreadWorkspaceStats, TimeoutError, type Token, type TrainingAnalytics, type TrainingExample, type TrainingSession, type Transaction, type Transfer, type User, type UserProfile, ValidationError, type Wallet, type WatcherClaim, type WatcherEvent, type WebhookBulkDisableRequest, WebhookBulkDisableSchema, type WebhookBulkEnableRequest, WebhookBulkEnableSchema, type WebhookConfig, type WebhookConfigCreateRequest, WebhookConfigCreateSchema, type WebhookDelivery, type WebhookDeliveryBulkRetryRequest, WebhookDeliveryBulkRetrySchema, type WholesaleAgreement, type Workspace, type WorkspaceDocumentStats, type WorkspaceMembership, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, GptAdmin as default, handleApiError };
|