@gpt-core/client 0.9.36 → 0.9.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +2272 -547
- package/dist/index.d.ts +2272 -547
- package/dist/index.js +228 -14
- package/dist/index.mjs +210 -13
- package/llms.txt +27 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2707,7 +2707,7 @@ type Tenant = {
|
|
|
2707
2707
|
*/
|
|
2708
2708
|
name: string;
|
|
2709
2709
|
/**
|
|
2710
|
-
* Field included by default.
|
|
2710
|
+
* Internal unique identifier (auto-generated with random suffix). Field included by default.
|
|
2711
2711
|
*/
|
|
2712
2712
|
slug: string;
|
|
2713
2713
|
/**
|
|
@@ -2720,6 +2720,10 @@ type Tenant = {
|
|
|
2720
2720
|
training_pricing?: {
|
|
2721
2721
|
[key: string]: unknown;
|
|
2722
2722
|
} | null | unknown;
|
|
2723
|
+
/**
|
|
2724
|
+
* Optional user-facing slug for vanity URLs. Field included by default.
|
|
2725
|
+
*/
|
|
2726
|
+
vanity_slug?: string | null | unknown;
|
|
2723
2727
|
};
|
|
2724
2728
|
id: string;
|
|
2725
2729
|
/**
|
|
@@ -4156,30 +4160,7 @@ type TenantMembership = {
|
|
|
4156
4160
|
* A relationships object for a tenant-membership
|
|
4157
4161
|
*/
|
|
4158
4162
|
relationships?: {
|
|
4159
|
-
|
|
4160
|
-
/**
|
|
4161
|
-
* An identifier for tenant
|
|
4162
|
-
*/
|
|
4163
|
-
data?: {
|
|
4164
|
-
id: string;
|
|
4165
|
-
meta?: {
|
|
4166
|
-
[key: string]: unknown;
|
|
4167
|
-
};
|
|
4168
|
-
type: string;
|
|
4169
|
-
} | null;
|
|
4170
|
-
};
|
|
4171
|
-
user?: {
|
|
4172
|
-
/**
|
|
4173
|
-
* An identifier for user
|
|
4174
|
-
*/
|
|
4175
|
-
data?: {
|
|
4176
|
-
id: string;
|
|
4177
|
-
meta?: {
|
|
4178
|
-
[key: string]: unknown;
|
|
4179
|
-
};
|
|
4180
|
-
type: string;
|
|
4181
|
-
} | null;
|
|
4182
|
-
};
|
|
4163
|
+
[key: string]: never;
|
|
4183
4164
|
};
|
|
4184
4165
|
type: string;
|
|
4185
4166
|
};
|
|
@@ -4309,6 +4290,59 @@ type AuditLog = {
|
|
|
4309
4290
|
};
|
|
4310
4291
|
type: string;
|
|
4311
4292
|
};
|
|
4293
|
+
/**
|
|
4294
|
+
* A "Resource object" representing a consent_record
|
|
4295
|
+
*/
|
|
4296
|
+
type ConsentRecord = {
|
|
4297
|
+
/**
|
|
4298
|
+
* An attributes object for a consent_record
|
|
4299
|
+
*/
|
|
4300
|
+
attributes?: {
|
|
4301
|
+
/**
|
|
4302
|
+
* Human-readable description of what was consented to. Field included by default.
|
|
4303
|
+
*/
|
|
4304
|
+
description?: string | null | unknown;
|
|
4305
|
+
/**
|
|
4306
|
+
* Field included by default.
|
|
4307
|
+
*/
|
|
4308
|
+
granted_at: unknown;
|
|
4309
|
+
/**
|
|
4310
|
+
* Field included by default.
|
|
4311
|
+
*/
|
|
4312
|
+
purpose: "ai_document_processing" | "data_analytics" | "marketing_communications" | "third_party_sharing";
|
|
4313
|
+
/**
|
|
4314
|
+
* Field included by default.
|
|
4315
|
+
*/
|
|
4316
|
+
status: "granted" | "withdrawn";
|
|
4317
|
+
/**
|
|
4318
|
+
* Field included by default.
|
|
4319
|
+
*/
|
|
4320
|
+
user_id: string;
|
|
4321
|
+
/**
|
|
4322
|
+
* Field included by default.
|
|
4323
|
+
*/
|
|
4324
|
+
withdrawn_at?: unknown;
|
|
4325
|
+
};
|
|
4326
|
+
id: string;
|
|
4327
|
+
/**
|
|
4328
|
+
* A relationships object for a consent_record
|
|
4329
|
+
*/
|
|
4330
|
+
relationships?: {
|
|
4331
|
+
user?: {
|
|
4332
|
+
/**
|
|
4333
|
+
* An identifier for user
|
|
4334
|
+
*/
|
|
4335
|
+
data?: {
|
|
4336
|
+
id: string;
|
|
4337
|
+
meta?: {
|
|
4338
|
+
[key: string]: unknown;
|
|
4339
|
+
};
|
|
4340
|
+
type: string;
|
|
4341
|
+
} | null;
|
|
4342
|
+
};
|
|
4343
|
+
};
|
|
4344
|
+
type: string;
|
|
4345
|
+
};
|
|
4312
4346
|
/**
|
|
4313
4347
|
* A "Resource object" representing a balance
|
|
4314
4348
|
*/
|
|
@@ -4482,6 +4516,75 @@ type PresignedUrl = {
|
|
|
4482
4516
|
};
|
|
4483
4517
|
type: string;
|
|
4484
4518
|
};
|
|
4519
|
+
/**
|
|
4520
|
+
* A "Resource object" representing a legal_document
|
|
4521
|
+
*/
|
|
4522
|
+
type LegalDocument = {
|
|
4523
|
+
/**
|
|
4524
|
+
* An attributes object for a legal_document
|
|
4525
|
+
*/
|
|
4526
|
+
attributes?: {
|
|
4527
|
+
/**
|
|
4528
|
+
* Field included by default.
|
|
4529
|
+
*/
|
|
4530
|
+
application_id?: string | null | unknown;
|
|
4531
|
+
/**
|
|
4532
|
+
* Markdown content. Field included by default.
|
|
4533
|
+
*/
|
|
4534
|
+
content: string;
|
|
4535
|
+
/**
|
|
4536
|
+
* Field included by default.
|
|
4537
|
+
*/
|
|
4538
|
+
document_type: "terms_of_service" | "privacy_policy";
|
|
4539
|
+
/**
|
|
4540
|
+
* Field included by default.
|
|
4541
|
+
*/
|
|
4542
|
+
is_active: boolean;
|
|
4543
|
+
/**
|
|
4544
|
+
* ISO 639-1 language code. Field included by default.
|
|
4545
|
+
*/
|
|
4546
|
+
locale: string;
|
|
4547
|
+
/**
|
|
4548
|
+
* Field included by default.
|
|
4549
|
+
*/
|
|
4550
|
+
published_at?: unknown;
|
|
4551
|
+
/**
|
|
4552
|
+
* ISO 3166-1 region code (e.g., EU, BR, US) or nil for default. Field included by default.
|
|
4553
|
+
*/
|
|
4554
|
+
region?: string | null | unknown;
|
|
4555
|
+
/**
|
|
4556
|
+
* Field included by default.
|
|
4557
|
+
*/
|
|
4558
|
+
requires_acceptance: boolean;
|
|
4559
|
+
/**
|
|
4560
|
+
* Field included by default.
|
|
4561
|
+
*/
|
|
4562
|
+
title: string;
|
|
4563
|
+
/**
|
|
4564
|
+
* Field included by default.
|
|
4565
|
+
*/
|
|
4566
|
+
version: string;
|
|
4567
|
+
};
|
|
4568
|
+
id: string;
|
|
4569
|
+
/**
|
|
4570
|
+
* A relationships object for a legal_document
|
|
4571
|
+
*/
|
|
4572
|
+
relationships?: {
|
|
4573
|
+
application?: {
|
|
4574
|
+
/**
|
|
4575
|
+
* An identifier for application
|
|
4576
|
+
*/
|
|
4577
|
+
data?: {
|
|
4578
|
+
id: string;
|
|
4579
|
+
meta?: {
|
|
4580
|
+
[key: string]: unknown;
|
|
4581
|
+
};
|
|
4582
|
+
type: string;
|
|
4583
|
+
} | null;
|
|
4584
|
+
};
|
|
4585
|
+
};
|
|
4586
|
+
type: string;
|
|
4587
|
+
};
|
|
4485
4588
|
/**
|
|
4486
4589
|
* A "Resource object" representing a permission_preset
|
|
4487
4590
|
*/
|
|
@@ -4602,6 +4705,55 @@ type WorkspaceMembership = {
|
|
|
4602
4705
|
};
|
|
4603
4706
|
type: string;
|
|
4604
4707
|
};
|
|
4708
|
+
/**
|
|
4709
|
+
* A "Resource object" representing a legal_acceptance
|
|
4710
|
+
*/
|
|
4711
|
+
type LegalAcceptance = {
|
|
4712
|
+
/**
|
|
4713
|
+
* An attributes object for a legal_acceptance
|
|
4714
|
+
*/
|
|
4715
|
+
attributes?: {
|
|
4716
|
+
/**
|
|
4717
|
+
* Field included by default.
|
|
4718
|
+
*/
|
|
4719
|
+
accepted_at: unknown;
|
|
4720
|
+
/**
|
|
4721
|
+
* Field included by default.
|
|
4722
|
+
*/
|
|
4723
|
+
context: "registration" | "version_update" | "periodic_reaccept";
|
|
4724
|
+
/**
|
|
4725
|
+
* Field included by default.
|
|
4726
|
+
*/
|
|
4727
|
+
document_type: "terms_of_service" | "privacy_policy";
|
|
4728
|
+
/**
|
|
4729
|
+
* Field included by default.
|
|
4730
|
+
*/
|
|
4731
|
+
user_id: string;
|
|
4732
|
+
/**
|
|
4733
|
+
* Field included by default.
|
|
4734
|
+
*/
|
|
4735
|
+
version: string;
|
|
4736
|
+
};
|
|
4737
|
+
id: string;
|
|
4738
|
+
/**
|
|
4739
|
+
* A relationships object for a legal_acceptance
|
|
4740
|
+
*/
|
|
4741
|
+
relationships?: {
|
|
4742
|
+
user?: {
|
|
4743
|
+
/**
|
|
4744
|
+
* An identifier for user
|
|
4745
|
+
*/
|
|
4746
|
+
data?: {
|
|
4747
|
+
id: string;
|
|
4748
|
+
meta?: {
|
|
4749
|
+
[key: string]: unknown;
|
|
4750
|
+
};
|
|
4751
|
+
type: string;
|
|
4752
|
+
} | null;
|
|
4753
|
+
};
|
|
4754
|
+
};
|
|
4755
|
+
type: string;
|
|
4756
|
+
};
|
|
4605
4757
|
/**
|
|
4606
4758
|
* A "Resource object" representing a config
|
|
4607
4759
|
*/
|
|
@@ -5625,18 +5777,7 @@ type Invitation = {
|
|
|
5625
5777
|
* A relationships object for a invitation
|
|
5626
5778
|
*/
|
|
5627
5779
|
relationships?: {
|
|
5628
|
-
|
|
5629
|
-
/**
|
|
5630
|
-
* An identifier for inviter
|
|
5631
|
-
*/
|
|
5632
|
-
data?: {
|
|
5633
|
-
id: string;
|
|
5634
|
-
meta?: {
|
|
5635
|
-
[key: string]: unknown;
|
|
5636
|
-
};
|
|
5637
|
-
type: string;
|
|
5638
|
-
} | null;
|
|
5639
|
-
};
|
|
5780
|
+
[key: string]: never;
|
|
5640
5781
|
};
|
|
5641
5782
|
type: string;
|
|
5642
5783
|
};
|
|
@@ -5671,7 +5812,7 @@ type SystemMessage = {
|
|
|
5671
5812
|
/**
|
|
5672
5813
|
* Field included by default.
|
|
5673
5814
|
*/
|
|
5674
|
-
type: "tos" | "welcome" | "announcement";
|
|
5815
|
+
type: "tos" | "privacy_policy" | "welcome" | "announcement";
|
|
5675
5816
|
/**
|
|
5676
5817
|
* Field included by default.
|
|
5677
5818
|
*/
|
|
@@ -7452,7 +7593,7 @@ type PostInvitationsAcceptByTokenResponses = {
|
|
|
7452
7593
|
*/
|
|
7453
7594
|
201: {
|
|
7454
7595
|
data?: Invitation;
|
|
7455
|
-
included?: Array<
|
|
7596
|
+
included?: Array<unknown>;
|
|
7456
7597
|
meta?: {
|
|
7457
7598
|
[key: string]: unknown;
|
|
7458
7599
|
};
|
|
@@ -9465,6 +9606,10 @@ type PatchUserProfilesByIdAcceptTosData = {
|
|
|
9465
9606
|
body: {
|
|
9466
9607
|
data: {
|
|
9467
9608
|
attributes?: {
|
|
9609
|
+
/**
|
|
9610
|
+
* Optional: accept privacy policy simultaneously
|
|
9611
|
+
*/
|
|
9612
|
+
privacy_policy_version?: string | unknown;
|
|
9468
9613
|
/**
|
|
9469
9614
|
* The ToS version being accepted
|
|
9470
9615
|
*/
|
|
@@ -9747,7 +9892,7 @@ type GetInvitationsConsumeByTokenResponses = {
|
|
|
9747
9892
|
*/
|
|
9748
9893
|
200: {
|
|
9749
9894
|
data?: Invitation;
|
|
9750
|
-
included?: Array<
|
|
9895
|
+
included?: Array<unknown>;
|
|
9751
9896
|
meta?: {
|
|
9752
9897
|
[key: string]: unknown;
|
|
9753
9898
|
};
|
|
@@ -10297,7 +10442,7 @@ type PatchInvitationsByIdRevokeResponses = {
|
|
|
10297
10442
|
*/
|
|
10298
10443
|
200: {
|
|
10299
10444
|
data?: Invitation;
|
|
10300
|
-
included?: Array<
|
|
10445
|
+
included?: Array<unknown>;
|
|
10301
10446
|
meta?: {
|
|
10302
10447
|
[key: string]: unknown;
|
|
10303
10448
|
};
|
|
@@ -11554,6 +11699,89 @@ type PatchSearchSavedByIdResponses = {
|
|
|
11554
11699
|
};
|
|
11555
11700
|
};
|
|
11556
11701
|
type PatchSearchSavedByIdResponse = PatchSearchSavedByIdResponses[keyof PatchSearchSavedByIdResponses];
|
|
11702
|
+
type PatchLegalDocumentsByIdUnpublishData = {
|
|
11703
|
+
/**
|
|
11704
|
+
* Request body for the /legal-documents/:id/unpublish operation on legal_document resource
|
|
11705
|
+
*/
|
|
11706
|
+
body?: {
|
|
11707
|
+
data: {
|
|
11708
|
+
attributes?: {
|
|
11709
|
+
[key: string]: never;
|
|
11710
|
+
};
|
|
11711
|
+
id: string;
|
|
11712
|
+
relationships?: {
|
|
11713
|
+
[key: string]: never;
|
|
11714
|
+
};
|
|
11715
|
+
type?: "legal_document";
|
|
11716
|
+
};
|
|
11717
|
+
};
|
|
11718
|
+
headers: {
|
|
11719
|
+
/**
|
|
11720
|
+
* Application ID for authentication and routing
|
|
11721
|
+
*/
|
|
11722
|
+
"x-application-key": string;
|
|
11723
|
+
};
|
|
11724
|
+
path: {
|
|
11725
|
+
id: string;
|
|
11726
|
+
};
|
|
11727
|
+
query?: {
|
|
11728
|
+
/**
|
|
11729
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
11730
|
+
*/
|
|
11731
|
+
include?: string;
|
|
11732
|
+
/**
|
|
11733
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
11734
|
+
*/
|
|
11735
|
+
fields?: {
|
|
11736
|
+
[key: string]: unknown;
|
|
11737
|
+
};
|
|
11738
|
+
};
|
|
11739
|
+
url: "/legal-documents/{id}/unpublish";
|
|
11740
|
+
};
|
|
11741
|
+
type PatchLegalDocumentsByIdUnpublishErrors = {
|
|
11742
|
+
/**
|
|
11743
|
+
* Bad Request - Invalid input data or malformed request
|
|
11744
|
+
*/
|
|
11745
|
+
400: ErrorResponse;
|
|
11746
|
+
/**
|
|
11747
|
+
* Unauthorized - Missing or invalid authentication token
|
|
11748
|
+
*/
|
|
11749
|
+
401: ErrorResponse;
|
|
11750
|
+
/**
|
|
11751
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
11752
|
+
*/
|
|
11753
|
+
403: ErrorResponse;
|
|
11754
|
+
/**
|
|
11755
|
+
* Not Found - Resource does not exist
|
|
11756
|
+
*/
|
|
11757
|
+
404: ErrorResponse;
|
|
11758
|
+
/**
|
|
11759
|
+
* Too Many Requests - Rate limit exceeded
|
|
11760
|
+
*/
|
|
11761
|
+
429: ErrorResponse;
|
|
11762
|
+
/**
|
|
11763
|
+
* Internal Server Error - Unexpected server error
|
|
11764
|
+
*/
|
|
11765
|
+
500: ErrorResponse;
|
|
11766
|
+
/**
|
|
11767
|
+
* General Error
|
|
11768
|
+
*/
|
|
11769
|
+
default: Errors;
|
|
11770
|
+
};
|
|
11771
|
+
type PatchLegalDocumentsByIdUnpublishError = PatchLegalDocumentsByIdUnpublishErrors[keyof PatchLegalDocumentsByIdUnpublishErrors];
|
|
11772
|
+
type PatchLegalDocumentsByIdUnpublishResponses = {
|
|
11773
|
+
/**
|
|
11774
|
+
* Success
|
|
11775
|
+
*/
|
|
11776
|
+
200: {
|
|
11777
|
+
data?: LegalDocument;
|
|
11778
|
+
included?: Array<unknown>;
|
|
11779
|
+
meta?: {
|
|
11780
|
+
[key: string]: unknown;
|
|
11781
|
+
};
|
|
11782
|
+
};
|
|
11783
|
+
};
|
|
11784
|
+
type PatchLegalDocumentsByIdUnpublishResponse = PatchLegalDocumentsByIdUnpublishResponses[keyof PatchLegalDocumentsByIdUnpublishResponses];
|
|
11557
11785
|
type PatchUsersByIdAdminEmailData = {
|
|
11558
11786
|
/**
|
|
11559
11787
|
* Request body for the /users/:id/admin/email operation on user resource
|
|
@@ -12927,7 +13155,7 @@ type PatchInvitationsByIdResendResponses = {
|
|
|
12927
13155
|
*/
|
|
12928
13156
|
200: {
|
|
12929
13157
|
data?: Invitation;
|
|
12930
|
-
included?: Array<
|
|
13158
|
+
included?: Array<unknown>;
|
|
12931
13159
|
meta?: {
|
|
12932
13160
|
[key: string]: unknown;
|
|
12933
13161
|
};
|
|
@@ -13832,7 +14060,7 @@ type PatchInvitationsByIdAcceptByUserResponses = {
|
|
|
13832
14060
|
*/
|
|
13833
14061
|
200: {
|
|
13834
14062
|
data?: Invitation;
|
|
13835
|
-
included?: Array<
|
|
14063
|
+
included?: Array<unknown>;
|
|
13836
14064
|
meta?: {
|
|
13837
14065
|
[key: string]: unknown;
|
|
13838
14066
|
};
|
|
@@ -14184,6 +14412,75 @@ type DeleteAiMessagesByIdResponses = {
|
|
|
14184
14412
|
*/
|
|
14185
14413
|
200: unknown;
|
|
14186
14414
|
};
|
|
14415
|
+
type GetLegalAcceptancesByIdData = {
|
|
14416
|
+
body?: never;
|
|
14417
|
+
headers: {
|
|
14418
|
+
/**
|
|
14419
|
+
* Application ID for authentication and routing
|
|
14420
|
+
*/
|
|
14421
|
+
"x-application-key": string;
|
|
14422
|
+
};
|
|
14423
|
+
path: {
|
|
14424
|
+
id: string;
|
|
14425
|
+
};
|
|
14426
|
+
query?: {
|
|
14427
|
+
/**
|
|
14428
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
14429
|
+
*/
|
|
14430
|
+
include?: string;
|
|
14431
|
+
/**
|
|
14432
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
14433
|
+
*/
|
|
14434
|
+
fields?: {
|
|
14435
|
+
[key: string]: unknown;
|
|
14436
|
+
};
|
|
14437
|
+
};
|
|
14438
|
+
url: "/legal-acceptances/{id}";
|
|
14439
|
+
};
|
|
14440
|
+
type GetLegalAcceptancesByIdErrors = {
|
|
14441
|
+
/**
|
|
14442
|
+
* Bad Request - Invalid input data or malformed request
|
|
14443
|
+
*/
|
|
14444
|
+
400: ErrorResponse;
|
|
14445
|
+
/**
|
|
14446
|
+
* Unauthorized - Missing or invalid authentication token
|
|
14447
|
+
*/
|
|
14448
|
+
401: ErrorResponse;
|
|
14449
|
+
/**
|
|
14450
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
14451
|
+
*/
|
|
14452
|
+
403: ErrorResponse;
|
|
14453
|
+
/**
|
|
14454
|
+
* Not Found - Resource does not exist
|
|
14455
|
+
*/
|
|
14456
|
+
404: ErrorResponse;
|
|
14457
|
+
/**
|
|
14458
|
+
* Too Many Requests - Rate limit exceeded
|
|
14459
|
+
*/
|
|
14460
|
+
429: ErrorResponse;
|
|
14461
|
+
/**
|
|
14462
|
+
* Internal Server Error - Unexpected server error
|
|
14463
|
+
*/
|
|
14464
|
+
500: ErrorResponse;
|
|
14465
|
+
/**
|
|
14466
|
+
* General Error
|
|
14467
|
+
*/
|
|
14468
|
+
default: Errors;
|
|
14469
|
+
};
|
|
14470
|
+
type GetLegalAcceptancesByIdError = GetLegalAcceptancesByIdErrors[keyof GetLegalAcceptancesByIdErrors];
|
|
14471
|
+
type GetLegalAcceptancesByIdResponses = {
|
|
14472
|
+
/**
|
|
14473
|
+
* Success
|
|
14474
|
+
*/
|
|
14475
|
+
200: {
|
|
14476
|
+
data?: LegalAcceptance;
|
|
14477
|
+
included?: Array<unknown>;
|
|
14478
|
+
meta?: {
|
|
14479
|
+
[key: string]: unknown;
|
|
14480
|
+
};
|
|
14481
|
+
};
|
|
14482
|
+
};
|
|
14483
|
+
type GetLegalAcceptancesByIdResponse = GetLegalAcceptancesByIdResponses[keyof GetLegalAcceptancesByIdResponses];
|
|
14187
14484
|
type GetExtractionBatchesByIdUploadUrlsData = {
|
|
14188
14485
|
body?: never;
|
|
14189
14486
|
headers: {
|
|
@@ -14629,7 +14926,7 @@ type PatchInvitationsByIdAcceptResponses = {
|
|
|
14629
14926
|
*/
|
|
14630
14927
|
200: {
|
|
14631
14928
|
data?: Invitation;
|
|
14632
|
-
included?: Array<
|
|
14929
|
+
included?: Array<unknown>;
|
|
14633
14930
|
meta?: {
|
|
14634
14931
|
[key: string]: unknown;
|
|
14635
14932
|
};
|
|
@@ -15881,7 +16178,7 @@ type GetTenantMembershipsResponses = {
|
|
|
15881
16178
|
* An array of resource objects representing a tenant-membership
|
|
15882
16179
|
*/
|
|
15883
16180
|
data?: Array<TenantMembership>;
|
|
15884
|
-
included?: Array<
|
|
16181
|
+
included?: Array<unknown>;
|
|
15885
16182
|
meta?: {
|
|
15886
16183
|
[key: string]: unknown;
|
|
15887
16184
|
};
|
|
@@ -15970,7 +16267,7 @@ type PostTenantMembershipsResponses = {
|
|
|
15970
16267
|
*/
|
|
15971
16268
|
201: {
|
|
15972
16269
|
data?: TenantMembership;
|
|
15973
|
-
included?: Array<
|
|
16270
|
+
included?: Array<unknown>;
|
|
15974
16271
|
meta?: {
|
|
15975
16272
|
[key: string]: unknown;
|
|
15976
16273
|
};
|
|
@@ -16610,7 +16907,7 @@ type PatchExtractionDocumentsByIdFinishUploadResponses = {
|
|
|
16610
16907
|
};
|
|
16611
16908
|
};
|
|
16612
16909
|
type PatchExtractionDocumentsByIdFinishUploadResponse = PatchExtractionDocumentsByIdFinishUploadResponses[keyof PatchExtractionDocumentsByIdFinishUploadResponses];
|
|
16613
|
-
type
|
|
16910
|
+
type GetConsentRecordsByIdData = {
|
|
16614
16911
|
body?: never;
|
|
16615
16912
|
headers: {
|
|
16616
16913
|
/**
|
|
@@ -16619,19 +16916,9 @@ type GetTrainingSessionsAgentsByAgentIdSessionsData = {
|
|
|
16619
16916
|
"x-application-key": string;
|
|
16620
16917
|
};
|
|
16621
16918
|
path: {
|
|
16622
|
-
|
|
16919
|
+
id: string;
|
|
16623
16920
|
};
|
|
16624
16921
|
query?: {
|
|
16625
|
-
/**
|
|
16626
|
-
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
16627
|
-
*/
|
|
16628
|
-
filter?: {
|
|
16629
|
-
[key: string]: unknown;
|
|
16630
|
-
};
|
|
16631
|
-
/**
|
|
16632
|
-
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
16633
|
-
*/
|
|
16634
|
-
sort?: string;
|
|
16635
16922
|
/**
|
|
16636
16923
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
16637
16924
|
*/
|
|
@@ -16643,9 +16930,9 @@ type GetTrainingSessionsAgentsByAgentIdSessionsData = {
|
|
|
16643
16930
|
[key: string]: unknown;
|
|
16644
16931
|
};
|
|
16645
16932
|
};
|
|
16646
|
-
url: "/
|
|
16933
|
+
url: "/consent-records/{id}";
|
|
16647
16934
|
};
|
|
16648
|
-
type
|
|
16935
|
+
type GetConsentRecordsByIdErrors = {
|
|
16649
16936
|
/**
|
|
16650
16937
|
* Bad Request - Invalid input data or malformed request
|
|
16651
16938
|
*/
|
|
@@ -16675,24 +16962,21 @@ type GetTrainingSessionsAgentsByAgentIdSessionsErrors = {
|
|
|
16675
16962
|
*/
|
|
16676
16963
|
default: Errors;
|
|
16677
16964
|
};
|
|
16678
|
-
type
|
|
16679
|
-
type
|
|
16965
|
+
type GetConsentRecordsByIdError = GetConsentRecordsByIdErrors[keyof GetConsentRecordsByIdErrors];
|
|
16966
|
+
type GetConsentRecordsByIdResponses = {
|
|
16680
16967
|
/**
|
|
16681
16968
|
* Success
|
|
16682
16969
|
*/
|
|
16683
16970
|
200: {
|
|
16684
|
-
|
|
16685
|
-
* An array of resource objects representing a training_session
|
|
16686
|
-
*/
|
|
16687
|
-
data?: Array<TrainingSession>;
|
|
16971
|
+
data?: ConsentRecord;
|
|
16688
16972
|
included?: Array<unknown>;
|
|
16689
16973
|
meta?: {
|
|
16690
16974
|
[key: string]: unknown;
|
|
16691
16975
|
};
|
|
16692
16976
|
};
|
|
16693
16977
|
};
|
|
16694
|
-
type
|
|
16695
|
-
type
|
|
16978
|
+
type GetConsentRecordsByIdResponse = GetConsentRecordsByIdResponses[keyof GetConsentRecordsByIdResponses];
|
|
16979
|
+
type GetTrainingSessionsAgentsByAgentIdSessionsData = {
|
|
16696
16980
|
body?: never;
|
|
16697
16981
|
headers: {
|
|
16698
16982
|
/**
|
|
@@ -16700,90 +16984,10 @@ type GetApiKeysStatsData = {
|
|
|
16700
16984
|
*/
|
|
16701
16985
|
"x-application-key": string;
|
|
16702
16986
|
};
|
|
16703
|
-
path
|
|
16704
|
-
|
|
16705
|
-
/**
|
|
16706
|
-
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
16707
|
-
*/
|
|
16708
|
-
filter?: {
|
|
16709
|
-
[key: string]: unknown;
|
|
16710
|
-
};
|
|
16711
|
-
/**
|
|
16712
|
-
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
16713
|
-
*/
|
|
16714
|
-
sort?: string;
|
|
16715
|
-
/**
|
|
16716
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
16717
|
-
*/
|
|
16718
|
-
include?: string;
|
|
16719
|
-
/**
|
|
16720
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
16721
|
-
*/
|
|
16722
|
-
fields?: {
|
|
16723
|
-
[key: string]: unknown;
|
|
16724
|
-
};
|
|
16725
|
-
tenant_id: string;
|
|
16726
|
-
key_type?: "user" | "application" | "system" | "server";
|
|
16727
|
-
};
|
|
16728
|
-
url: "/api-keys/stats";
|
|
16729
|
-
};
|
|
16730
|
-
type GetApiKeysStatsErrors = {
|
|
16731
|
-
/**
|
|
16732
|
-
* Bad Request - Invalid input data or malformed request
|
|
16733
|
-
*/
|
|
16734
|
-
400: ErrorResponse;
|
|
16735
|
-
/**
|
|
16736
|
-
* Unauthorized - Missing or invalid authentication token
|
|
16737
|
-
*/
|
|
16738
|
-
401: ErrorResponse;
|
|
16739
|
-
/**
|
|
16740
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
16741
|
-
*/
|
|
16742
|
-
403: ErrorResponse;
|
|
16743
|
-
/**
|
|
16744
|
-
* Not Found - Resource does not exist
|
|
16745
|
-
*/
|
|
16746
|
-
404: ErrorResponse;
|
|
16747
|
-
/**
|
|
16748
|
-
* Too Many Requests - Rate limit exceeded
|
|
16749
|
-
*/
|
|
16750
|
-
429: ErrorResponse;
|
|
16751
|
-
/**
|
|
16752
|
-
* Internal Server Error - Unexpected server error
|
|
16753
|
-
*/
|
|
16754
|
-
500: ErrorResponse;
|
|
16755
|
-
/**
|
|
16756
|
-
* General Error
|
|
16757
|
-
*/
|
|
16758
|
-
default: Errors;
|
|
16759
|
-
};
|
|
16760
|
-
type GetApiKeysStatsError = GetApiKeysStatsErrors[keyof GetApiKeysStatsErrors];
|
|
16761
|
-
type GetApiKeysStatsResponses = {
|
|
16762
|
-
/**
|
|
16763
|
-
* Success
|
|
16764
|
-
*/
|
|
16765
|
-
200: {
|
|
16766
|
-
/**
|
|
16767
|
-
* An array of resource objects representing a api_key
|
|
16768
|
-
*/
|
|
16769
|
-
data?: Array<ApiKey>;
|
|
16770
|
-
included?: Array<unknown>;
|
|
16771
|
-
meta?: {
|
|
16772
|
-
[key: string]: unknown;
|
|
16773
|
-
};
|
|
16774
|
-
};
|
|
16775
|
-
};
|
|
16776
|
-
type GetApiKeysStatsResponse = GetApiKeysStatsResponses[keyof GetApiKeysStatsResponses];
|
|
16777
|
-
type GetSearchData = {
|
|
16778
|
-
body?: never;
|
|
16779
|
-
headers: {
|
|
16780
|
-
/**
|
|
16781
|
-
* Application ID for authentication and routing
|
|
16782
|
-
*/
|
|
16783
|
-
"x-application-key": string;
|
|
16987
|
+
path: {
|
|
16988
|
+
agent_id: string;
|
|
16784
16989
|
};
|
|
16785
|
-
|
|
16786
|
-
query: {
|
|
16990
|
+
query?: {
|
|
16787
16991
|
/**
|
|
16788
16992
|
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
16789
16993
|
*/
|
|
@@ -16804,12 +17008,10 @@ type GetSearchData = {
|
|
|
16804
17008
|
fields?: {
|
|
16805
17009
|
[key: string]: unknown;
|
|
16806
17010
|
};
|
|
16807
|
-
query: string;
|
|
16808
|
-
scope?: "global" | "tenant";
|
|
16809
17011
|
};
|
|
16810
|
-
url: "/
|
|
17012
|
+
url: "/training-sessions/agents/{agent_id}/sessions";
|
|
16811
17013
|
};
|
|
16812
|
-
type
|
|
17014
|
+
type GetTrainingSessionsAgentsByAgentIdSessionsErrors = {
|
|
16813
17015
|
/**
|
|
16814
17016
|
* Bad Request - Invalid input data or malformed request
|
|
16815
17017
|
*/
|
|
@@ -16839,33 +17041,37 @@ type GetSearchErrors = {
|
|
|
16839
17041
|
*/
|
|
16840
17042
|
default: Errors;
|
|
16841
17043
|
};
|
|
16842
|
-
type
|
|
16843
|
-
type
|
|
17044
|
+
type GetTrainingSessionsAgentsByAgentIdSessionsError = GetTrainingSessionsAgentsByAgentIdSessionsErrors[keyof GetTrainingSessionsAgentsByAgentIdSessionsErrors];
|
|
17045
|
+
type GetTrainingSessionsAgentsByAgentIdSessionsResponses = {
|
|
16844
17046
|
/**
|
|
16845
17047
|
* Success
|
|
16846
17048
|
*/
|
|
16847
17049
|
200: {
|
|
16848
17050
|
/**
|
|
16849
|
-
* An array of resource objects representing a
|
|
17051
|
+
* An array of resource objects representing a training_session
|
|
16850
17052
|
*/
|
|
16851
|
-
data?: Array<
|
|
17053
|
+
data?: Array<TrainingSession>;
|
|
16852
17054
|
included?: Array<unknown>;
|
|
16853
17055
|
meta?: {
|
|
16854
17056
|
[key: string]: unknown;
|
|
16855
17057
|
};
|
|
16856
17058
|
};
|
|
16857
17059
|
};
|
|
16858
|
-
type
|
|
16859
|
-
type
|
|
17060
|
+
type GetTrainingSessionsAgentsByAgentIdSessionsResponse = GetTrainingSessionsAgentsByAgentIdSessionsResponses[keyof GetTrainingSessionsAgentsByAgentIdSessionsResponses];
|
|
17061
|
+
type PatchLegalDocumentsByIdPublishData = {
|
|
16860
17062
|
/**
|
|
16861
|
-
* Request body for the /
|
|
17063
|
+
* Request body for the /legal-documents/:id/publish operation on legal_document resource
|
|
16862
17064
|
*/
|
|
16863
|
-
body
|
|
17065
|
+
body?: {
|
|
16864
17066
|
data: {
|
|
16865
|
-
|
|
16866
|
-
|
|
16867
|
-
|
|
16868
|
-
|
|
17067
|
+
attributes?: {
|
|
17068
|
+
[key: string]: never;
|
|
17069
|
+
};
|
|
17070
|
+
id: string;
|
|
17071
|
+
relationships?: {
|
|
17072
|
+
[key: string]: never;
|
|
17073
|
+
};
|
|
17074
|
+
type?: "legal_document";
|
|
16869
17075
|
};
|
|
16870
17076
|
};
|
|
16871
17077
|
headers: {
|
|
@@ -16874,70 +17080,10 @@ type PostAgentsDiscoverSchemaData = {
|
|
|
16874
17080
|
*/
|
|
16875
17081
|
"x-application-key": string;
|
|
16876
17082
|
};
|
|
16877
|
-
path
|
|
16878
|
-
|
|
16879
|
-
url: "/agents/discover-schema";
|
|
16880
|
-
};
|
|
16881
|
-
type PostAgentsDiscoverSchemaErrors = {
|
|
16882
|
-
/**
|
|
16883
|
-
* Bad Request - Invalid input data or malformed request
|
|
16884
|
-
*/
|
|
16885
|
-
400: ErrorResponse;
|
|
16886
|
-
/**
|
|
16887
|
-
* Unauthorized - Missing or invalid authentication token
|
|
16888
|
-
*/
|
|
16889
|
-
401: ErrorResponse;
|
|
16890
|
-
/**
|
|
16891
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
16892
|
-
*/
|
|
16893
|
-
403: ErrorResponse;
|
|
16894
|
-
/**
|
|
16895
|
-
* Not Found - Resource does not exist
|
|
16896
|
-
*/
|
|
16897
|
-
404: ErrorResponse;
|
|
16898
|
-
/**
|
|
16899
|
-
* Too Many Requests - Rate limit exceeded
|
|
16900
|
-
*/
|
|
16901
|
-
429: ErrorResponse;
|
|
16902
|
-
/**
|
|
16903
|
-
* Internal Server Error - Unexpected server error
|
|
16904
|
-
*/
|
|
16905
|
-
500: ErrorResponse;
|
|
16906
|
-
/**
|
|
16907
|
-
* General Error
|
|
16908
|
-
*/
|
|
16909
|
-
default: Errors;
|
|
16910
|
-
};
|
|
16911
|
-
type PostAgentsDiscoverSchemaError = PostAgentsDiscoverSchemaErrors[keyof PostAgentsDiscoverSchemaErrors];
|
|
16912
|
-
type PostAgentsDiscoverSchemaResponses = {
|
|
16913
|
-
/**
|
|
16914
|
-
* Success
|
|
16915
|
-
*/
|
|
16916
|
-
201: {
|
|
16917
|
-
[key: string]: unknown;
|
|
16918
|
-
};
|
|
16919
|
-
};
|
|
16920
|
-
type PostAgentsDiscoverSchemaResponse = PostAgentsDiscoverSchemaResponses[keyof PostAgentsDiscoverSchemaResponses];
|
|
16921
|
-
type GetInvitationsData = {
|
|
16922
|
-
body?: never;
|
|
16923
|
-
headers: {
|
|
16924
|
-
/**
|
|
16925
|
-
* Application ID for authentication and routing
|
|
16926
|
-
*/
|
|
16927
|
-
"x-application-key": string;
|
|
17083
|
+
path: {
|
|
17084
|
+
id: string;
|
|
16928
17085
|
};
|
|
16929
|
-
path?: never;
|
|
16930
17086
|
query?: {
|
|
16931
|
-
/**
|
|
16932
|
-
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
16933
|
-
*/
|
|
16934
|
-
filter?: {
|
|
16935
|
-
[key: string]: unknown;
|
|
16936
|
-
};
|
|
16937
|
-
/**
|
|
16938
|
-
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
16939
|
-
*/
|
|
16940
|
-
sort?: string;
|
|
16941
17087
|
/**
|
|
16942
17088
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
16943
17089
|
*/
|
|
@@ -16949,9 +17095,312 @@ type GetInvitationsData = {
|
|
|
16949
17095
|
[key: string]: unknown;
|
|
16950
17096
|
};
|
|
16951
17097
|
};
|
|
16952
|
-
url: "/
|
|
17098
|
+
url: "/legal-documents/{id}/publish";
|
|
16953
17099
|
};
|
|
16954
|
-
type
|
|
17100
|
+
type PatchLegalDocumentsByIdPublishErrors = {
|
|
17101
|
+
/**
|
|
17102
|
+
* Bad Request - Invalid input data or malformed request
|
|
17103
|
+
*/
|
|
17104
|
+
400: ErrorResponse;
|
|
17105
|
+
/**
|
|
17106
|
+
* Unauthorized - Missing or invalid authentication token
|
|
17107
|
+
*/
|
|
17108
|
+
401: ErrorResponse;
|
|
17109
|
+
/**
|
|
17110
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
17111
|
+
*/
|
|
17112
|
+
403: ErrorResponse;
|
|
17113
|
+
/**
|
|
17114
|
+
* Not Found - Resource does not exist
|
|
17115
|
+
*/
|
|
17116
|
+
404: ErrorResponse;
|
|
17117
|
+
/**
|
|
17118
|
+
* Too Many Requests - Rate limit exceeded
|
|
17119
|
+
*/
|
|
17120
|
+
429: ErrorResponse;
|
|
17121
|
+
/**
|
|
17122
|
+
* Internal Server Error - Unexpected server error
|
|
17123
|
+
*/
|
|
17124
|
+
500: ErrorResponse;
|
|
17125
|
+
/**
|
|
17126
|
+
* General Error
|
|
17127
|
+
*/
|
|
17128
|
+
default: Errors;
|
|
17129
|
+
};
|
|
17130
|
+
type PatchLegalDocumentsByIdPublishError = PatchLegalDocumentsByIdPublishErrors[keyof PatchLegalDocumentsByIdPublishErrors];
|
|
17131
|
+
type PatchLegalDocumentsByIdPublishResponses = {
|
|
17132
|
+
/**
|
|
17133
|
+
* Success
|
|
17134
|
+
*/
|
|
17135
|
+
200: {
|
|
17136
|
+
data?: LegalDocument;
|
|
17137
|
+
included?: Array<unknown>;
|
|
17138
|
+
meta?: {
|
|
17139
|
+
[key: string]: unknown;
|
|
17140
|
+
};
|
|
17141
|
+
};
|
|
17142
|
+
};
|
|
17143
|
+
type PatchLegalDocumentsByIdPublishResponse = PatchLegalDocumentsByIdPublishResponses[keyof PatchLegalDocumentsByIdPublishResponses];
|
|
17144
|
+
type GetApiKeysStatsData = {
|
|
17145
|
+
body?: never;
|
|
17146
|
+
headers: {
|
|
17147
|
+
/**
|
|
17148
|
+
* Application ID for authentication and routing
|
|
17149
|
+
*/
|
|
17150
|
+
"x-application-key": string;
|
|
17151
|
+
};
|
|
17152
|
+
path?: never;
|
|
17153
|
+
query: {
|
|
17154
|
+
/**
|
|
17155
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
17156
|
+
*/
|
|
17157
|
+
filter?: {
|
|
17158
|
+
[key: string]: unknown;
|
|
17159
|
+
};
|
|
17160
|
+
/**
|
|
17161
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
17162
|
+
*/
|
|
17163
|
+
sort?: string;
|
|
17164
|
+
/**
|
|
17165
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
17166
|
+
*/
|
|
17167
|
+
include?: string;
|
|
17168
|
+
/**
|
|
17169
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
17170
|
+
*/
|
|
17171
|
+
fields?: {
|
|
17172
|
+
[key: string]: unknown;
|
|
17173
|
+
};
|
|
17174
|
+
tenant_id: string;
|
|
17175
|
+
key_type?: "user" | "application" | "system" | "server";
|
|
17176
|
+
};
|
|
17177
|
+
url: "/api-keys/stats";
|
|
17178
|
+
};
|
|
17179
|
+
type GetApiKeysStatsErrors = {
|
|
17180
|
+
/**
|
|
17181
|
+
* Bad Request - Invalid input data or malformed request
|
|
17182
|
+
*/
|
|
17183
|
+
400: ErrorResponse;
|
|
17184
|
+
/**
|
|
17185
|
+
* Unauthorized - Missing or invalid authentication token
|
|
17186
|
+
*/
|
|
17187
|
+
401: ErrorResponse;
|
|
17188
|
+
/**
|
|
17189
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
17190
|
+
*/
|
|
17191
|
+
403: ErrorResponse;
|
|
17192
|
+
/**
|
|
17193
|
+
* Not Found - Resource does not exist
|
|
17194
|
+
*/
|
|
17195
|
+
404: ErrorResponse;
|
|
17196
|
+
/**
|
|
17197
|
+
* Too Many Requests - Rate limit exceeded
|
|
17198
|
+
*/
|
|
17199
|
+
429: ErrorResponse;
|
|
17200
|
+
/**
|
|
17201
|
+
* Internal Server Error - Unexpected server error
|
|
17202
|
+
*/
|
|
17203
|
+
500: ErrorResponse;
|
|
17204
|
+
/**
|
|
17205
|
+
* General Error
|
|
17206
|
+
*/
|
|
17207
|
+
default: Errors;
|
|
17208
|
+
};
|
|
17209
|
+
type GetApiKeysStatsError = GetApiKeysStatsErrors[keyof GetApiKeysStatsErrors];
|
|
17210
|
+
type GetApiKeysStatsResponses = {
|
|
17211
|
+
/**
|
|
17212
|
+
* Success
|
|
17213
|
+
*/
|
|
17214
|
+
200: {
|
|
17215
|
+
/**
|
|
17216
|
+
* An array of resource objects representing a api_key
|
|
17217
|
+
*/
|
|
17218
|
+
data?: Array<ApiKey>;
|
|
17219
|
+
included?: Array<unknown>;
|
|
17220
|
+
meta?: {
|
|
17221
|
+
[key: string]: unknown;
|
|
17222
|
+
};
|
|
17223
|
+
};
|
|
17224
|
+
};
|
|
17225
|
+
type GetApiKeysStatsResponse = GetApiKeysStatsResponses[keyof GetApiKeysStatsResponses];
|
|
17226
|
+
type GetSearchData = {
|
|
17227
|
+
body?: never;
|
|
17228
|
+
headers: {
|
|
17229
|
+
/**
|
|
17230
|
+
* Application ID for authentication and routing
|
|
17231
|
+
*/
|
|
17232
|
+
"x-application-key": string;
|
|
17233
|
+
};
|
|
17234
|
+
path?: never;
|
|
17235
|
+
query: {
|
|
17236
|
+
/**
|
|
17237
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
17238
|
+
*/
|
|
17239
|
+
filter?: {
|
|
17240
|
+
[key: string]: unknown;
|
|
17241
|
+
};
|
|
17242
|
+
/**
|
|
17243
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
17244
|
+
*/
|
|
17245
|
+
sort?: string;
|
|
17246
|
+
/**
|
|
17247
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
17248
|
+
*/
|
|
17249
|
+
include?: string;
|
|
17250
|
+
/**
|
|
17251
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
17252
|
+
*/
|
|
17253
|
+
fields?: {
|
|
17254
|
+
[key: string]: unknown;
|
|
17255
|
+
};
|
|
17256
|
+
query: string;
|
|
17257
|
+
scope?: "global" | "tenant";
|
|
17258
|
+
};
|
|
17259
|
+
url: "/search";
|
|
17260
|
+
};
|
|
17261
|
+
type GetSearchErrors = {
|
|
17262
|
+
/**
|
|
17263
|
+
* Bad Request - Invalid input data or malformed request
|
|
17264
|
+
*/
|
|
17265
|
+
400: ErrorResponse;
|
|
17266
|
+
/**
|
|
17267
|
+
* Unauthorized - Missing or invalid authentication token
|
|
17268
|
+
*/
|
|
17269
|
+
401: ErrorResponse;
|
|
17270
|
+
/**
|
|
17271
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
17272
|
+
*/
|
|
17273
|
+
403: ErrorResponse;
|
|
17274
|
+
/**
|
|
17275
|
+
* Not Found - Resource does not exist
|
|
17276
|
+
*/
|
|
17277
|
+
404: ErrorResponse;
|
|
17278
|
+
/**
|
|
17279
|
+
* Too Many Requests - Rate limit exceeded
|
|
17280
|
+
*/
|
|
17281
|
+
429: ErrorResponse;
|
|
17282
|
+
/**
|
|
17283
|
+
* Internal Server Error - Unexpected server error
|
|
17284
|
+
*/
|
|
17285
|
+
500: ErrorResponse;
|
|
17286
|
+
/**
|
|
17287
|
+
* General Error
|
|
17288
|
+
*/
|
|
17289
|
+
default: Errors;
|
|
17290
|
+
};
|
|
17291
|
+
type GetSearchError = GetSearchErrors[keyof GetSearchErrors];
|
|
17292
|
+
type GetSearchResponses = {
|
|
17293
|
+
/**
|
|
17294
|
+
* Success
|
|
17295
|
+
*/
|
|
17296
|
+
200: {
|
|
17297
|
+
/**
|
|
17298
|
+
* An array of resource objects representing a search
|
|
17299
|
+
*/
|
|
17300
|
+
data?: Array<Search>;
|
|
17301
|
+
included?: Array<unknown>;
|
|
17302
|
+
meta?: {
|
|
17303
|
+
[key: string]: unknown;
|
|
17304
|
+
};
|
|
17305
|
+
};
|
|
17306
|
+
};
|
|
17307
|
+
type GetSearchResponse = GetSearchResponses[keyof GetSearchResponses];
|
|
17308
|
+
type PostAgentsDiscoverSchemaData = {
|
|
17309
|
+
/**
|
|
17310
|
+
* Request body for the /agents/discover-schema operation on agent resource
|
|
17311
|
+
*/
|
|
17312
|
+
body: {
|
|
17313
|
+
data: {
|
|
17314
|
+
advanced_mode?: boolean | unknown;
|
|
17315
|
+
document_id: string;
|
|
17316
|
+
suggested_name?: string | unknown;
|
|
17317
|
+
workspace_id: string;
|
|
17318
|
+
};
|
|
17319
|
+
};
|
|
17320
|
+
headers: {
|
|
17321
|
+
/**
|
|
17322
|
+
* Application ID for authentication and routing
|
|
17323
|
+
*/
|
|
17324
|
+
"x-application-key": string;
|
|
17325
|
+
};
|
|
17326
|
+
path?: never;
|
|
17327
|
+
query?: never;
|
|
17328
|
+
url: "/agents/discover-schema";
|
|
17329
|
+
};
|
|
17330
|
+
type PostAgentsDiscoverSchemaErrors = {
|
|
17331
|
+
/**
|
|
17332
|
+
* Bad Request - Invalid input data or malformed request
|
|
17333
|
+
*/
|
|
17334
|
+
400: ErrorResponse;
|
|
17335
|
+
/**
|
|
17336
|
+
* Unauthorized - Missing or invalid authentication token
|
|
17337
|
+
*/
|
|
17338
|
+
401: ErrorResponse;
|
|
17339
|
+
/**
|
|
17340
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
17341
|
+
*/
|
|
17342
|
+
403: ErrorResponse;
|
|
17343
|
+
/**
|
|
17344
|
+
* Not Found - Resource does not exist
|
|
17345
|
+
*/
|
|
17346
|
+
404: ErrorResponse;
|
|
17347
|
+
/**
|
|
17348
|
+
* Too Many Requests - Rate limit exceeded
|
|
17349
|
+
*/
|
|
17350
|
+
429: ErrorResponse;
|
|
17351
|
+
/**
|
|
17352
|
+
* Internal Server Error - Unexpected server error
|
|
17353
|
+
*/
|
|
17354
|
+
500: ErrorResponse;
|
|
17355
|
+
/**
|
|
17356
|
+
* General Error
|
|
17357
|
+
*/
|
|
17358
|
+
default: Errors;
|
|
17359
|
+
};
|
|
17360
|
+
type PostAgentsDiscoverSchemaError = PostAgentsDiscoverSchemaErrors[keyof PostAgentsDiscoverSchemaErrors];
|
|
17361
|
+
type PostAgentsDiscoverSchemaResponses = {
|
|
17362
|
+
/**
|
|
17363
|
+
* Success
|
|
17364
|
+
*/
|
|
17365
|
+
201: {
|
|
17366
|
+
[key: string]: unknown;
|
|
17367
|
+
};
|
|
17368
|
+
};
|
|
17369
|
+
type PostAgentsDiscoverSchemaResponse = PostAgentsDiscoverSchemaResponses[keyof PostAgentsDiscoverSchemaResponses];
|
|
17370
|
+
type GetInvitationsData = {
|
|
17371
|
+
body?: never;
|
|
17372
|
+
headers: {
|
|
17373
|
+
/**
|
|
17374
|
+
* Application ID for authentication and routing
|
|
17375
|
+
*/
|
|
17376
|
+
"x-application-key": string;
|
|
17377
|
+
};
|
|
17378
|
+
path?: never;
|
|
17379
|
+
query?: {
|
|
17380
|
+
/**
|
|
17381
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
17382
|
+
*/
|
|
17383
|
+
filter?: {
|
|
17384
|
+
[key: string]: unknown;
|
|
17385
|
+
};
|
|
17386
|
+
/**
|
|
17387
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
17388
|
+
*/
|
|
17389
|
+
sort?: string;
|
|
17390
|
+
/**
|
|
17391
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
17392
|
+
*/
|
|
17393
|
+
include?: string;
|
|
17394
|
+
/**
|
|
17395
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
17396
|
+
*/
|
|
17397
|
+
fields?: {
|
|
17398
|
+
[key: string]: unknown;
|
|
17399
|
+
};
|
|
17400
|
+
};
|
|
17401
|
+
url: "/invitations";
|
|
17402
|
+
};
|
|
17403
|
+
type GetInvitationsErrors = {
|
|
16955
17404
|
/**
|
|
16956
17405
|
* Bad Request - Invalid input data or malformed request
|
|
16957
17406
|
*/
|
|
@@ -16991,7 +17440,7 @@ type GetInvitationsResponses = {
|
|
|
16991
17440
|
* An array of resource objects representing a invitation
|
|
16992
17441
|
*/
|
|
16993
17442
|
data?: Array<Invitation>;
|
|
16994
|
-
included?: Array<
|
|
17443
|
+
included?: Array<unknown>;
|
|
16995
17444
|
meta?: {
|
|
16996
17445
|
[key: string]: unknown;
|
|
16997
17446
|
};
|
|
@@ -17078,7 +17527,7 @@ type PostInvitationsResponses = {
|
|
|
17078
17527
|
*/
|
|
17079
17528
|
201: {
|
|
17080
17529
|
data?: Invitation;
|
|
17081
|
-
included?: Array<
|
|
17530
|
+
included?: Array<unknown>;
|
|
17082
17531
|
meta?: {
|
|
17083
17532
|
[key: string]: unknown;
|
|
17084
17533
|
};
|
|
@@ -17861,6 +18310,92 @@ type PostNotificationPreferencesResponses = {
|
|
|
17861
18310
|
};
|
|
17862
18311
|
};
|
|
17863
18312
|
type PostNotificationPreferencesResponse = PostNotificationPreferencesResponses[keyof PostNotificationPreferencesResponses];
|
|
18313
|
+
type GetLegalAcceptancesData = {
|
|
18314
|
+
body?: never;
|
|
18315
|
+
headers: {
|
|
18316
|
+
/**
|
|
18317
|
+
* Application ID for authentication and routing
|
|
18318
|
+
*/
|
|
18319
|
+
"x-application-key": string;
|
|
18320
|
+
};
|
|
18321
|
+
path?: never;
|
|
18322
|
+
query?: {
|
|
18323
|
+
/**
|
|
18324
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
18325
|
+
*/
|
|
18326
|
+
filter?: {
|
|
18327
|
+
[key: string]: unknown;
|
|
18328
|
+
};
|
|
18329
|
+
/**
|
|
18330
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
18331
|
+
*/
|
|
18332
|
+
sort?: string;
|
|
18333
|
+
/**
|
|
18334
|
+
* JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
|
|
18335
|
+
*/
|
|
18336
|
+
page?: {
|
|
18337
|
+
[key: string]: unknown;
|
|
18338
|
+
};
|
|
18339
|
+
/**
|
|
18340
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
18341
|
+
*/
|
|
18342
|
+
include?: string;
|
|
18343
|
+
/**
|
|
18344
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
18345
|
+
*/
|
|
18346
|
+
fields?: {
|
|
18347
|
+
[key: string]: unknown;
|
|
18348
|
+
};
|
|
18349
|
+
};
|
|
18350
|
+
url: "/legal-acceptances";
|
|
18351
|
+
};
|
|
18352
|
+
type GetLegalAcceptancesErrors = {
|
|
18353
|
+
/**
|
|
18354
|
+
* Bad Request - Invalid input data or malformed request
|
|
18355
|
+
*/
|
|
18356
|
+
400: ErrorResponse;
|
|
18357
|
+
/**
|
|
18358
|
+
* Unauthorized - Missing or invalid authentication token
|
|
18359
|
+
*/
|
|
18360
|
+
401: ErrorResponse;
|
|
18361
|
+
/**
|
|
18362
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
18363
|
+
*/
|
|
18364
|
+
403: ErrorResponse;
|
|
18365
|
+
/**
|
|
18366
|
+
* Not Found - Resource does not exist
|
|
18367
|
+
*/
|
|
18368
|
+
404: ErrorResponse;
|
|
18369
|
+
/**
|
|
18370
|
+
* Too Many Requests - Rate limit exceeded
|
|
18371
|
+
*/
|
|
18372
|
+
429: ErrorResponse;
|
|
18373
|
+
/**
|
|
18374
|
+
* Internal Server Error - Unexpected server error
|
|
18375
|
+
*/
|
|
18376
|
+
500: ErrorResponse;
|
|
18377
|
+
/**
|
|
18378
|
+
* General Error
|
|
18379
|
+
*/
|
|
18380
|
+
default: Errors;
|
|
18381
|
+
};
|
|
18382
|
+
type GetLegalAcceptancesError = GetLegalAcceptancesErrors[keyof GetLegalAcceptancesErrors];
|
|
18383
|
+
type GetLegalAcceptancesResponses = {
|
|
18384
|
+
/**
|
|
18385
|
+
* Success
|
|
18386
|
+
*/
|
|
18387
|
+
200: {
|
|
18388
|
+
/**
|
|
18389
|
+
* An array of resource objects representing a legal_acceptance
|
|
18390
|
+
*/
|
|
18391
|
+
data?: Array<LegalAcceptance>;
|
|
18392
|
+
included?: Array<unknown>;
|
|
18393
|
+
meta?: {
|
|
18394
|
+
[key: string]: unknown;
|
|
18395
|
+
};
|
|
18396
|
+
};
|
|
18397
|
+
};
|
|
18398
|
+
type GetLegalAcceptancesResponse = GetLegalAcceptancesResponses[keyof GetLegalAcceptancesResponses];
|
|
17864
18399
|
type PatchWatcherClaimsByIdRetryData = {
|
|
17865
18400
|
/**
|
|
17866
18401
|
* Request body for the /watcher/claims/:id/retry operation on watcher_claim resource
|
|
@@ -19597,7 +20132,7 @@ type PatchInvitationsByIdDeclineResponses = {
|
|
|
19597
20132
|
*/
|
|
19598
20133
|
200: {
|
|
19599
20134
|
data?: Invitation;
|
|
19600
|
-
included?: Array<
|
|
20135
|
+
included?: Array<unknown>;
|
|
19601
20136
|
meta?: {
|
|
19602
20137
|
[key: string]: unknown;
|
|
19603
20138
|
};
|
|
@@ -20048,87 +20583,6 @@ type PostAgentVersionsByIdRemoveSystemFieldResponses = {
|
|
|
20048
20583
|
*/
|
|
20049
20584
|
201: unknown;
|
|
20050
20585
|
};
|
|
20051
|
-
type GetWorkspaceMembershipsInheritedData = {
|
|
20052
|
-
body?: never;
|
|
20053
|
-
headers: {
|
|
20054
|
-
/**
|
|
20055
|
-
* Application ID for authentication and routing
|
|
20056
|
-
*/
|
|
20057
|
-
"x-application-key": string;
|
|
20058
|
-
};
|
|
20059
|
-
path?: never;
|
|
20060
|
-
query: {
|
|
20061
|
-
/**
|
|
20062
|
-
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
20063
|
-
*/
|
|
20064
|
-
filter?: {
|
|
20065
|
-
[key: string]: unknown;
|
|
20066
|
-
};
|
|
20067
|
-
/**
|
|
20068
|
-
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
20069
|
-
*/
|
|
20070
|
-
sort?: string;
|
|
20071
|
-
/**
|
|
20072
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
20073
|
-
*/
|
|
20074
|
-
include?: string;
|
|
20075
|
-
/**
|
|
20076
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
20077
|
-
*/
|
|
20078
|
-
fields?: {
|
|
20079
|
-
[key: string]: unknown;
|
|
20080
|
-
};
|
|
20081
|
-
workspace_id: string;
|
|
20082
|
-
};
|
|
20083
|
-
url: "/workspace-memberships/inherited";
|
|
20084
|
-
};
|
|
20085
|
-
type GetWorkspaceMembershipsInheritedErrors = {
|
|
20086
|
-
/**
|
|
20087
|
-
* Bad Request - Invalid input data or malformed request
|
|
20088
|
-
*/
|
|
20089
|
-
400: ErrorResponse;
|
|
20090
|
-
/**
|
|
20091
|
-
* Unauthorized - Missing or invalid authentication token
|
|
20092
|
-
*/
|
|
20093
|
-
401: ErrorResponse;
|
|
20094
|
-
/**
|
|
20095
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
20096
|
-
*/
|
|
20097
|
-
403: ErrorResponse;
|
|
20098
|
-
/**
|
|
20099
|
-
* Not Found - Resource does not exist
|
|
20100
|
-
*/
|
|
20101
|
-
404: ErrorResponse;
|
|
20102
|
-
/**
|
|
20103
|
-
* Too Many Requests - Rate limit exceeded
|
|
20104
|
-
*/
|
|
20105
|
-
429: ErrorResponse;
|
|
20106
|
-
/**
|
|
20107
|
-
* Internal Server Error - Unexpected server error
|
|
20108
|
-
*/
|
|
20109
|
-
500: ErrorResponse;
|
|
20110
|
-
/**
|
|
20111
|
-
* General Error
|
|
20112
|
-
*/
|
|
20113
|
-
default: Errors;
|
|
20114
|
-
};
|
|
20115
|
-
type GetWorkspaceMembershipsInheritedError = GetWorkspaceMembershipsInheritedErrors[keyof GetWorkspaceMembershipsInheritedErrors];
|
|
20116
|
-
type GetWorkspaceMembershipsInheritedResponses = {
|
|
20117
|
-
/**
|
|
20118
|
-
* Success
|
|
20119
|
-
*/
|
|
20120
|
-
200: {
|
|
20121
|
-
/**
|
|
20122
|
-
* An array of resource objects representing a workspace-membership
|
|
20123
|
-
*/
|
|
20124
|
-
data?: Array<WorkspaceMembership>;
|
|
20125
|
-
included?: Array<User | Workspace | UserProfile>;
|
|
20126
|
-
meta?: {
|
|
20127
|
-
[key: string]: unknown;
|
|
20128
|
-
};
|
|
20129
|
-
};
|
|
20130
|
-
};
|
|
20131
|
-
type GetWorkspaceMembershipsInheritedResponse = GetWorkspaceMembershipsInheritedResponses[keyof GetWorkspaceMembershipsInheritedResponses];
|
|
20132
20586
|
type DeleteWorkspacesByIdData = {
|
|
20133
20587
|
body?: never;
|
|
20134
20588
|
headers: {
|
|
@@ -20515,11 +20969,14 @@ type PostTenantsData = {
|
|
|
20515
20969
|
name: string;
|
|
20516
20970
|
owner_id: string;
|
|
20517
20971
|
parent_id?: string | unknown;
|
|
20518
|
-
slug: string;
|
|
20519
20972
|
/**
|
|
20520
20973
|
* Cost in credits for training on a single document
|
|
20521
20974
|
*/
|
|
20522
20975
|
training_price_credits?: number | unknown;
|
|
20976
|
+
/**
|
|
20977
|
+
* Optional user-facing slug for vanity URLs
|
|
20978
|
+
*/
|
|
20979
|
+
vanity_slug?: string | unknown;
|
|
20523
20980
|
};
|
|
20524
20981
|
relationships?: {
|
|
20525
20982
|
[key: string]: never;
|
|
@@ -24674,6 +25131,88 @@ type DeleteAiGraphNodesByIdResponses = {
|
|
|
24674
25131
|
*/
|
|
24675
25132
|
200: unknown;
|
|
24676
25133
|
};
|
|
25134
|
+
type GetLegalAcceptancesLatestData = {
|
|
25135
|
+
body?: never;
|
|
25136
|
+
headers: {
|
|
25137
|
+
/**
|
|
25138
|
+
* Application ID for authentication and routing
|
|
25139
|
+
*/
|
|
25140
|
+
"x-application-key": string;
|
|
25141
|
+
};
|
|
25142
|
+
path?: never;
|
|
25143
|
+
query: {
|
|
25144
|
+
/**
|
|
25145
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
25146
|
+
*/
|
|
25147
|
+
filter?: {
|
|
25148
|
+
[key: string]: unknown;
|
|
25149
|
+
};
|
|
25150
|
+
/**
|
|
25151
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
25152
|
+
*/
|
|
25153
|
+
sort?: string;
|
|
25154
|
+
/**
|
|
25155
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
25156
|
+
*/
|
|
25157
|
+
include?: string;
|
|
25158
|
+
/**
|
|
25159
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
25160
|
+
*/
|
|
25161
|
+
fields?: {
|
|
25162
|
+
[key: string]: unknown;
|
|
25163
|
+
};
|
|
25164
|
+
user_id: string;
|
|
25165
|
+
document_type: string;
|
|
25166
|
+
};
|
|
25167
|
+
url: "/legal-acceptances/latest";
|
|
25168
|
+
};
|
|
25169
|
+
type GetLegalAcceptancesLatestErrors = {
|
|
25170
|
+
/**
|
|
25171
|
+
* Bad Request - Invalid input data or malformed request
|
|
25172
|
+
*/
|
|
25173
|
+
400: ErrorResponse;
|
|
25174
|
+
/**
|
|
25175
|
+
* Unauthorized - Missing or invalid authentication token
|
|
25176
|
+
*/
|
|
25177
|
+
401: ErrorResponse;
|
|
25178
|
+
/**
|
|
25179
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
25180
|
+
*/
|
|
25181
|
+
403: ErrorResponse;
|
|
25182
|
+
/**
|
|
25183
|
+
* Not Found - Resource does not exist
|
|
25184
|
+
*/
|
|
25185
|
+
404: ErrorResponse;
|
|
25186
|
+
/**
|
|
25187
|
+
* Too Many Requests - Rate limit exceeded
|
|
25188
|
+
*/
|
|
25189
|
+
429: ErrorResponse;
|
|
25190
|
+
/**
|
|
25191
|
+
* Internal Server Error - Unexpected server error
|
|
25192
|
+
*/
|
|
25193
|
+
500: ErrorResponse;
|
|
25194
|
+
/**
|
|
25195
|
+
* General Error
|
|
25196
|
+
*/
|
|
25197
|
+
default: Errors;
|
|
25198
|
+
};
|
|
25199
|
+
type GetLegalAcceptancesLatestError = GetLegalAcceptancesLatestErrors[keyof GetLegalAcceptancesLatestErrors];
|
|
25200
|
+
type GetLegalAcceptancesLatestResponses = {
|
|
25201
|
+
/**
|
|
25202
|
+
* Success
|
|
25203
|
+
*/
|
|
25204
|
+
200: {
|
|
25205
|
+
/**
|
|
25206
|
+
* An array of resource objects representing a legal_acceptance
|
|
25207
|
+
*/
|
|
25208
|
+
data?: Array<LegalAcceptance>;
|
|
25209
|
+
included?: Array<unknown>;
|
|
25210
|
+
meta?: {
|
|
25211
|
+
[key: string]: unknown;
|
|
25212
|
+
};
|
|
25213
|
+
};
|
|
25214
|
+
};
|
|
25215
|
+
type GetLegalAcceptancesLatestResponse = GetLegalAcceptancesLatestResponses[keyof GetLegalAcceptancesLatestResponses];
|
|
24677
25216
|
type GetWorkspacesSharedData = {
|
|
24678
25217
|
body?: never;
|
|
24679
25218
|
headers: {
|
|
@@ -25651,31 +26190,26 @@ type GetThreadsSearchResponses = {
|
|
|
25651
26190
|
};
|
|
25652
26191
|
};
|
|
25653
26192
|
type GetThreadsSearchResponse = GetThreadsSearchResponses[keyof GetThreadsSearchResponses];
|
|
25654
|
-
type
|
|
25655
|
-
|
|
25656
|
-
* Request body for the /search/saved/:id/run operation on saved_search resource
|
|
25657
|
-
*/
|
|
25658
|
-
body?: {
|
|
25659
|
-
data: {
|
|
25660
|
-
attributes?: {
|
|
25661
|
-
[key: string]: never;
|
|
25662
|
-
};
|
|
25663
|
-
relationships?: {
|
|
25664
|
-
[key: string]: never;
|
|
25665
|
-
};
|
|
25666
|
-
type?: "saved_search";
|
|
25667
|
-
};
|
|
25668
|
-
};
|
|
26193
|
+
type GetConsentRecordsActiveData = {
|
|
26194
|
+
body?: never;
|
|
25669
26195
|
headers: {
|
|
25670
26196
|
/**
|
|
25671
26197
|
* Application ID for authentication and routing
|
|
25672
26198
|
*/
|
|
25673
26199
|
"x-application-key": string;
|
|
25674
26200
|
};
|
|
25675
|
-
path
|
|
25676
|
-
|
|
25677
|
-
|
|
25678
|
-
|
|
26201
|
+
path?: never;
|
|
26202
|
+
query: {
|
|
26203
|
+
/**
|
|
26204
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
26205
|
+
*/
|
|
26206
|
+
filter?: {
|
|
26207
|
+
[key: string]: unknown;
|
|
26208
|
+
};
|
|
26209
|
+
/**
|
|
26210
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
26211
|
+
*/
|
|
26212
|
+
sort?: string;
|
|
25679
26213
|
/**
|
|
25680
26214
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
25681
26215
|
*/
|
|
@@ -25686,10 +26220,96 @@ type PostSearchSavedByIdRunData = {
|
|
|
25686
26220
|
fields?: {
|
|
25687
26221
|
[key: string]: unknown;
|
|
25688
26222
|
};
|
|
26223
|
+
user_id: string;
|
|
25689
26224
|
};
|
|
25690
|
-
url: "/
|
|
26225
|
+
url: "/consent-records/active";
|
|
25691
26226
|
};
|
|
25692
|
-
type
|
|
26227
|
+
type GetConsentRecordsActiveErrors = {
|
|
26228
|
+
/**
|
|
26229
|
+
* Bad Request - Invalid input data or malformed request
|
|
26230
|
+
*/
|
|
26231
|
+
400: ErrorResponse;
|
|
26232
|
+
/**
|
|
26233
|
+
* Unauthorized - Missing or invalid authentication token
|
|
26234
|
+
*/
|
|
26235
|
+
401: ErrorResponse;
|
|
26236
|
+
/**
|
|
26237
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
26238
|
+
*/
|
|
26239
|
+
403: ErrorResponse;
|
|
26240
|
+
/**
|
|
26241
|
+
* Not Found - Resource does not exist
|
|
26242
|
+
*/
|
|
26243
|
+
404: ErrorResponse;
|
|
26244
|
+
/**
|
|
26245
|
+
* Too Many Requests - Rate limit exceeded
|
|
26246
|
+
*/
|
|
26247
|
+
429: ErrorResponse;
|
|
26248
|
+
/**
|
|
26249
|
+
* Internal Server Error - Unexpected server error
|
|
26250
|
+
*/
|
|
26251
|
+
500: ErrorResponse;
|
|
26252
|
+
/**
|
|
26253
|
+
* General Error
|
|
26254
|
+
*/
|
|
26255
|
+
default: Errors;
|
|
26256
|
+
};
|
|
26257
|
+
type GetConsentRecordsActiveError = GetConsentRecordsActiveErrors[keyof GetConsentRecordsActiveErrors];
|
|
26258
|
+
type GetConsentRecordsActiveResponses = {
|
|
26259
|
+
/**
|
|
26260
|
+
* Success
|
|
26261
|
+
*/
|
|
26262
|
+
200: {
|
|
26263
|
+
/**
|
|
26264
|
+
* An array of resource objects representing a consent_record
|
|
26265
|
+
*/
|
|
26266
|
+
data?: Array<ConsentRecord>;
|
|
26267
|
+
included?: Array<unknown>;
|
|
26268
|
+
meta?: {
|
|
26269
|
+
[key: string]: unknown;
|
|
26270
|
+
};
|
|
26271
|
+
};
|
|
26272
|
+
};
|
|
26273
|
+
type GetConsentRecordsActiveResponse = GetConsentRecordsActiveResponses[keyof GetConsentRecordsActiveResponses];
|
|
26274
|
+
type PostSearchSavedByIdRunData = {
|
|
26275
|
+
/**
|
|
26276
|
+
* Request body for the /search/saved/:id/run operation on saved_search resource
|
|
26277
|
+
*/
|
|
26278
|
+
body?: {
|
|
26279
|
+
data: {
|
|
26280
|
+
attributes?: {
|
|
26281
|
+
[key: string]: never;
|
|
26282
|
+
};
|
|
26283
|
+
relationships?: {
|
|
26284
|
+
[key: string]: never;
|
|
26285
|
+
};
|
|
26286
|
+
type?: "saved_search";
|
|
26287
|
+
};
|
|
26288
|
+
};
|
|
26289
|
+
headers: {
|
|
26290
|
+
/**
|
|
26291
|
+
* Application ID for authentication and routing
|
|
26292
|
+
*/
|
|
26293
|
+
"x-application-key": string;
|
|
26294
|
+
};
|
|
26295
|
+
path: {
|
|
26296
|
+
id: string;
|
|
26297
|
+
};
|
|
26298
|
+
query?: {
|
|
26299
|
+
/**
|
|
26300
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
26301
|
+
*/
|
|
26302
|
+
include?: string;
|
|
26303
|
+
/**
|
|
26304
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
26305
|
+
*/
|
|
26306
|
+
fields?: {
|
|
26307
|
+
[key: string]: unknown;
|
|
26308
|
+
};
|
|
26309
|
+
};
|
|
26310
|
+
url: "/search/saved/{id}/run";
|
|
26311
|
+
};
|
|
26312
|
+
type PostSearchSavedByIdRunErrors = {
|
|
25693
26313
|
/**
|
|
25694
26314
|
* Bad Request - Invalid input data or malformed request
|
|
25695
26315
|
*/
|
|
@@ -26380,6 +27000,88 @@ type PatchNotificationMethodsByIdSendVerificationResponses = {
|
|
|
26380
27000
|
};
|
|
26381
27001
|
};
|
|
26382
27002
|
type PatchNotificationMethodsByIdSendVerificationResponse = PatchNotificationMethodsByIdSendVerificationResponses[keyof PatchNotificationMethodsByIdSendVerificationResponses];
|
|
27003
|
+
type GetLegalDocumentsByLocaleData = {
|
|
27004
|
+
body?: never;
|
|
27005
|
+
headers: {
|
|
27006
|
+
/**
|
|
27007
|
+
* Application ID for authentication and routing
|
|
27008
|
+
*/
|
|
27009
|
+
"x-application-key": string;
|
|
27010
|
+
};
|
|
27011
|
+
path?: never;
|
|
27012
|
+
query: {
|
|
27013
|
+
/**
|
|
27014
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
27015
|
+
*/
|
|
27016
|
+
filter?: {
|
|
27017
|
+
[key: string]: unknown;
|
|
27018
|
+
};
|
|
27019
|
+
/**
|
|
27020
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
27021
|
+
*/
|
|
27022
|
+
sort?: string;
|
|
27023
|
+
/**
|
|
27024
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
27025
|
+
*/
|
|
27026
|
+
include?: string;
|
|
27027
|
+
/**
|
|
27028
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
27029
|
+
*/
|
|
27030
|
+
fields?: {
|
|
27031
|
+
[key: string]: unknown;
|
|
27032
|
+
};
|
|
27033
|
+
locale: string;
|
|
27034
|
+
region?: string;
|
|
27035
|
+
};
|
|
27036
|
+
url: "/legal-documents/by-locale";
|
|
27037
|
+
};
|
|
27038
|
+
type GetLegalDocumentsByLocaleErrors = {
|
|
27039
|
+
/**
|
|
27040
|
+
* Bad Request - Invalid input data or malformed request
|
|
27041
|
+
*/
|
|
27042
|
+
400: ErrorResponse;
|
|
27043
|
+
/**
|
|
27044
|
+
* Unauthorized - Missing or invalid authentication token
|
|
27045
|
+
*/
|
|
27046
|
+
401: ErrorResponse;
|
|
27047
|
+
/**
|
|
27048
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
27049
|
+
*/
|
|
27050
|
+
403: ErrorResponse;
|
|
27051
|
+
/**
|
|
27052
|
+
* Not Found - Resource does not exist
|
|
27053
|
+
*/
|
|
27054
|
+
404: ErrorResponse;
|
|
27055
|
+
/**
|
|
27056
|
+
* Too Many Requests - Rate limit exceeded
|
|
27057
|
+
*/
|
|
27058
|
+
429: ErrorResponse;
|
|
27059
|
+
/**
|
|
27060
|
+
* Internal Server Error - Unexpected server error
|
|
27061
|
+
*/
|
|
27062
|
+
500: ErrorResponse;
|
|
27063
|
+
/**
|
|
27064
|
+
* General Error
|
|
27065
|
+
*/
|
|
27066
|
+
default: Errors;
|
|
27067
|
+
};
|
|
27068
|
+
type GetLegalDocumentsByLocaleError = GetLegalDocumentsByLocaleErrors[keyof GetLegalDocumentsByLocaleErrors];
|
|
27069
|
+
type GetLegalDocumentsByLocaleResponses = {
|
|
27070
|
+
/**
|
|
27071
|
+
* Success
|
|
27072
|
+
*/
|
|
27073
|
+
200: {
|
|
27074
|
+
/**
|
|
27075
|
+
* An array of resource objects representing a legal_document
|
|
27076
|
+
*/
|
|
27077
|
+
data?: Array<LegalDocument>;
|
|
27078
|
+
included?: Array<unknown>;
|
|
27079
|
+
meta?: {
|
|
27080
|
+
[key: string]: unknown;
|
|
27081
|
+
};
|
|
27082
|
+
};
|
|
27083
|
+
};
|
|
27084
|
+
type GetLegalDocumentsByLocaleResponse = GetLegalDocumentsByLocaleResponses[keyof GetLegalDocumentsByLocaleResponses];
|
|
26383
27085
|
type PatchApplicationsByIdGrantCreditsData = {
|
|
26384
27086
|
/**
|
|
26385
27087
|
* Request body for the /applications/:id/grant-credits operation on application resource
|
|
@@ -27105,6 +27807,89 @@ type PostAiEmbedResponses = {
|
|
|
27105
27807
|
};
|
|
27106
27808
|
};
|
|
27107
27809
|
type PostAiEmbedResponse = PostAiEmbedResponses[keyof PostAiEmbedResponses];
|
|
27810
|
+
type PatchConsentRecordsByIdWithdrawData = {
|
|
27811
|
+
/**
|
|
27812
|
+
* Request body for the /consent-records/:id/withdraw operation on consent_record resource
|
|
27813
|
+
*/
|
|
27814
|
+
body?: {
|
|
27815
|
+
data: {
|
|
27816
|
+
attributes?: {
|
|
27817
|
+
[key: string]: never;
|
|
27818
|
+
};
|
|
27819
|
+
id: string;
|
|
27820
|
+
relationships?: {
|
|
27821
|
+
[key: string]: never;
|
|
27822
|
+
};
|
|
27823
|
+
type?: "consent_record";
|
|
27824
|
+
};
|
|
27825
|
+
};
|
|
27826
|
+
headers: {
|
|
27827
|
+
/**
|
|
27828
|
+
* Application ID for authentication and routing
|
|
27829
|
+
*/
|
|
27830
|
+
"x-application-key": string;
|
|
27831
|
+
};
|
|
27832
|
+
path: {
|
|
27833
|
+
id: string;
|
|
27834
|
+
};
|
|
27835
|
+
query?: {
|
|
27836
|
+
/**
|
|
27837
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
27838
|
+
*/
|
|
27839
|
+
include?: string;
|
|
27840
|
+
/**
|
|
27841
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
27842
|
+
*/
|
|
27843
|
+
fields?: {
|
|
27844
|
+
[key: string]: unknown;
|
|
27845
|
+
};
|
|
27846
|
+
};
|
|
27847
|
+
url: "/consent-records/{id}/withdraw";
|
|
27848
|
+
};
|
|
27849
|
+
type PatchConsentRecordsByIdWithdrawErrors = {
|
|
27850
|
+
/**
|
|
27851
|
+
* Bad Request - Invalid input data or malformed request
|
|
27852
|
+
*/
|
|
27853
|
+
400: ErrorResponse;
|
|
27854
|
+
/**
|
|
27855
|
+
* Unauthorized - Missing or invalid authentication token
|
|
27856
|
+
*/
|
|
27857
|
+
401: ErrorResponse;
|
|
27858
|
+
/**
|
|
27859
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
27860
|
+
*/
|
|
27861
|
+
403: ErrorResponse;
|
|
27862
|
+
/**
|
|
27863
|
+
* Not Found - Resource does not exist
|
|
27864
|
+
*/
|
|
27865
|
+
404: ErrorResponse;
|
|
27866
|
+
/**
|
|
27867
|
+
* Too Many Requests - Rate limit exceeded
|
|
27868
|
+
*/
|
|
27869
|
+
429: ErrorResponse;
|
|
27870
|
+
/**
|
|
27871
|
+
* Internal Server Error - Unexpected server error
|
|
27872
|
+
*/
|
|
27873
|
+
500: ErrorResponse;
|
|
27874
|
+
/**
|
|
27875
|
+
* General Error
|
|
27876
|
+
*/
|
|
27877
|
+
default: Errors;
|
|
27878
|
+
};
|
|
27879
|
+
type PatchConsentRecordsByIdWithdrawError = PatchConsentRecordsByIdWithdrawErrors[keyof PatchConsentRecordsByIdWithdrawErrors];
|
|
27880
|
+
type PatchConsentRecordsByIdWithdrawResponses = {
|
|
27881
|
+
/**
|
|
27882
|
+
* Success
|
|
27883
|
+
*/
|
|
27884
|
+
200: {
|
|
27885
|
+
data?: ConsentRecord;
|
|
27886
|
+
included?: Array<unknown>;
|
|
27887
|
+
meta?: {
|
|
27888
|
+
[key: string]: unknown;
|
|
27889
|
+
};
|
|
27890
|
+
};
|
|
27891
|
+
};
|
|
27892
|
+
type PatchConsentRecordsByIdWithdrawResponse = PatchConsentRecordsByIdWithdrawResponses[keyof PatchConsentRecordsByIdWithdrawResponses];
|
|
27108
27893
|
type PostAgentVersionComparisonsData = {
|
|
27109
27894
|
/**
|
|
27110
27895
|
* Request body for the /agent-version-comparisons operation on agent_version_comparison resource
|
|
@@ -27368,7 +28153,10 @@ type PostTenantsIsvData = {
|
|
|
27368
28153
|
logo_url?: string | unknown;
|
|
27369
28154
|
name: string;
|
|
27370
28155
|
owner_id: string;
|
|
27371
|
-
|
|
28156
|
+
/**
|
|
28157
|
+
* Optional user-facing slug for vanity URLs
|
|
28158
|
+
*/
|
|
28159
|
+
vanity_slug?: string | unknown;
|
|
27372
28160
|
};
|
|
27373
28161
|
relationships?: {
|
|
27374
28162
|
[key: string]: never;
|
|
@@ -27441,24 +28229,23 @@ type PostTenantsIsvResponses = {
|
|
|
27441
28229
|
};
|
|
27442
28230
|
};
|
|
27443
28231
|
type PostTenantsIsvResponse = PostTenantsIsvResponses[keyof PostTenantsIsvResponses];
|
|
27444
|
-
type
|
|
28232
|
+
type PatchUserProfilesByIdAcceptPrivacyPolicyData = {
|
|
27445
28233
|
/**
|
|
27446
|
-
* Request body for the /
|
|
28234
|
+
* Request body for the /user-profiles/:id/accept-privacy-policy operation on user_profile resource
|
|
27447
28235
|
*/
|
|
27448
28236
|
body: {
|
|
27449
28237
|
data: {
|
|
27450
28238
|
attributes?: {
|
|
27451
|
-
|
|
27452
|
-
|
|
27453
|
-
|
|
27454
|
-
|
|
27455
|
-
[key: string]: unknown;
|
|
27456
|
-
};
|
|
28239
|
+
/**
|
|
28240
|
+
* The Privacy Policy version being accepted
|
|
28241
|
+
*/
|
|
28242
|
+
version: string;
|
|
27457
28243
|
};
|
|
28244
|
+
id: string;
|
|
27458
28245
|
relationships?: {
|
|
27459
28246
|
[key: string]: never;
|
|
27460
28247
|
};
|
|
27461
|
-
type?: "
|
|
28248
|
+
type?: "user_profile";
|
|
27462
28249
|
};
|
|
27463
28250
|
};
|
|
27464
28251
|
headers: {
|
|
@@ -27467,7 +28254,9 @@ type PostUsersAuthRegisterWithOidcData = {
|
|
|
27467
28254
|
*/
|
|
27468
28255
|
"x-application-key": string;
|
|
27469
28256
|
};
|
|
27470
|
-
path
|
|
28257
|
+
path: {
|
|
28258
|
+
id: string;
|
|
28259
|
+
};
|
|
27471
28260
|
query?: {
|
|
27472
28261
|
/**
|
|
27473
28262
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -27480,9 +28269,9 @@ type PostUsersAuthRegisterWithOidcData = {
|
|
|
27480
28269
|
[key: string]: unknown;
|
|
27481
28270
|
};
|
|
27482
28271
|
};
|
|
27483
|
-
url: "/
|
|
28272
|
+
url: "/user-profiles/{id}/accept-privacy-policy";
|
|
27484
28273
|
};
|
|
27485
|
-
type
|
|
28274
|
+
type PatchUserProfilesByIdAcceptPrivacyPolicyErrors = {
|
|
27486
28275
|
/**
|
|
27487
28276
|
* Bad Request - Invalid input data or malformed request
|
|
27488
28277
|
*/
|
|
@@ -27512,33 +28301,118 @@ type PostUsersAuthRegisterWithOidcErrors = {
|
|
|
27512
28301
|
*/
|
|
27513
28302
|
default: Errors;
|
|
27514
28303
|
};
|
|
27515
|
-
type
|
|
27516
|
-
type
|
|
28304
|
+
type PatchUserProfilesByIdAcceptPrivacyPolicyError = PatchUserProfilesByIdAcceptPrivacyPolicyErrors[keyof PatchUserProfilesByIdAcceptPrivacyPolicyErrors];
|
|
28305
|
+
type PatchUserProfilesByIdAcceptPrivacyPolicyResponses = {
|
|
27517
28306
|
/**
|
|
27518
28307
|
* Success
|
|
27519
28308
|
*/
|
|
27520
|
-
|
|
27521
|
-
data?:
|
|
28309
|
+
200: {
|
|
28310
|
+
data?: UserProfile;
|
|
27522
28311
|
included?: Array<unknown>;
|
|
27523
28312
|
meta?: {
|
|
27524
28313
|
[key: string]: unknown;
|
|
27525
28314
|
};
|
|
27526
28315
|
};
|
|
27527
28316
|
};
|
|
27528
|
-
type
|
|
27529
|
-
type
|
|
28317
|
+
type PatchUserProfilesByIdAcceptPrivacyPolicyResponse = PatchUserProfilesByIdAcceptPrivacyPolicyResponses[keyof PatchUserProfilesByIdAcceptPrivacyPolicyResponses];
|
|
28318
|
+
type PostUsersAuthRegisterWithOidcData = {
|
|
27530
28319
|
/**
|
|
27531
|
-
* Request body for the /
|
|
28320
|
+
* Request body for the /users/auth/register-with-oidc operation on user resource
|
|
27532
28321
|
*/
|
|
27533
|
-
body
|
|
28322
|
+
body: {
|
|
27534
28323
|
data: {
|
|
27535
28324
|
attributes?: {
|
|
27536
|
-
|
|
28325
|
+
oauth_tokens: {
|
|
28326
|
+
[key: string]: unknown;
|
|
28327
|
+
};
|
|
28328
|
+
user_info: {
|
|
28329
|
+
[key: string]: unknown;
|
|
28330
|
+
};
|
|
27537
28331
|
};
|
|
27538
28332
|
relationships?: {
|
|
27539
28333
|
[key: string]: never;
|
|
27540
28334
|
};
|
|
27541
|
-
type?: "
|
|
28335
|
+
type?: "user";
|
|
28336
|
+
};
|
|
28337
|
+
};
|
|
28338
|
+
headers: {
|
|
28339
|
+
/**
|
|
28340
|
+
* Application ID for authentication and routing
|
|
28341
|
+
*/
|
|
28342
|
+
"x-application-key": string;
|
|
28343
|
+
};
|
|
28344
|
+
path?: never;
|
|
28345
|
+
query?: {
|
|
28346
|
+
/**
|
|
28347
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
28348
|
+
*/
|
|
28349
|
+
include?: string;
|
|
28350
|
+
/**
|
|
28351
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
28352
|
+
*/
|
|
28353
|
+
fields?: {
|
|
28354
|
+
[key: string]: unknown;
|
|
28355
|
+
};
|
|
28356
|
+
};
|
|
28357
|
+
url: "/users/auth/register-with-oidc";
|
|
28358
|
+
};
|
|
28359
|
+
type PostUsersAuthRegisterWithOidcErrors = {
|
|
28360
|
+
/**
|
|
28361
|
+
* Bad Request - Invalid input data or malformed request
|
|
28362
|
+
*/
|
|
28363
|
+
400: ErrorResponse;
|
|
28364
|
+
/**
|
|
28365
|
+
* Unauthorized - Missing or invalid authentication token
|
|
28366
|
+
*/
|
|
28367
|
+
401: ErrorResponse;
|
|
28368
|
+
/**
|
|
28369
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
28370
|
+
*/
|
|
28371
|
+
403: ErrorResponse;
|
|
28372
|
+
/**
|
|
28373
|
+
* Not Found - Resource does not exist
|
|
28374
|
+
*/
|
|
28375
|
+
404: ErrorResponse;
|
|
28376
|
+
/**
|
|
28377
|
+
* Too Many Requests - Rate limit exceeded
|
|
28378
|
+
*/
|
|
28379
|
+
429: ErrorResponse;
|
|
28380
|
+
/**
|
|
28381
|
+
* Internal Server Error - Unexpected server error
|
|
28382
|
+
*/
|
|
28383
|
+
500: ErrorResponse;
|
|
28384
|
+
/**
|
|
28385
|
+
* General Error
|
|
28386
|
+
*/
|
|
28387
|
+
default: Errors;
|
|
28388
|
+
};
|
|
28389
|
+
type PostUsersAuthRegisterWithOidcError = PostUsersAuthRegisterWithOidcErrors[keyof PostUsersAuthRegisterWithOidcErrors];
|
|
28390
|
+
type PostUsersAuthRegisterWithOidcResponses = {
|
|
28391
|
+
/**
|
|
28392
|
+
* Success
|
|
28393
|
+
*/
|
|
28394
|
+
201: {
|
|
28395
|
+
data?: User;
|
|
28396
|
+
included?: Array<unknown>;
|
|
28397
|
+
meta?: {
|
|
28398
|
+
[key: string]: unknown;
|
|
28399
|
+
};
|
|
28400
|
+
};
|
|
28401
|
+
};
|
|
28402
|
+
type PostUsersAuthRegisterWithOidcResponse = PostUsersAuthRegisterWithOidcResponses[keyof PostUsersAuthRegisterWithOidcResponses];
|
|
28403
|
+
type PostSearchReindexData = {
|
|
28404
|
+
/**
|
|
28405
|
+
* Request body for the /search/reindex operation on search resource
|
|
28406
|
+
*/
|
|
28407
|
+
body?: {
|
|
28408
|
+
data: {
|
|
28409
|
+
attributes?: {
|
|
28410
|
+
scope?: "all" | "users" | "tenants" | "documents" | unknown;
|
|
28411
|
+
};
|
|
28412
|
+
relationships?: {
|
|
28413
|
+
[key: string]: never;
|
|
28414
|
+
};
|
|
28415
|
+
type?: "search";
|
|
27542
28416
|
};
|
|
27543
28417
|
};
|
|
27544
28418
|
headers: {
|
|
@@ -28711,6 +29585,7 @@ type PostUsersAuthRegisterData = {
|
|
|
28711
29585
|
password: string;
|
|
28712
29586
|
password_confirmation: string;
|
|
28713
29587
|
tenant_name: string;
|
|
29588
|
+
tos_version?: string | unknown;
|
|
28714
29589
|
};
|
|
28715
29590
|
relationships?: {
|
|
28716
29591
|
[key: string]: never;
|
|
@@ -30300,11 +31175,14 @@ type PatchTenantsByIdData = {
|
|
|
30300
31175
|
logo_url?: string | unknown;
|
|
30301
31176
|
name?: string | unknown;
|
|
30302
31177
|
parent_id?: string | unknown;
|
|
30303
|
-
slug?: string | unknown;
|
|
30304
31178
|
/**
|
|
30305
31179
|
* Cost in credits for training on a single document
|
|
30306
31180
|
*/
|
|
30307
31181
|
training_price_credits?: number | unknown;
|
|
31182
|
+
/**
|
|
31183
|
+
* Optional user-facing slug for vanity URLs
|
|
31184
|
+
*/
|
|
31185
|
+
vanity_slug?: string | unknown;
|
|
30308
31186
|
};
|
|
30309
31187
|
id: string;
|
|
30310
31188
|
relationships?: {
|
|
@@ -30772,7 +31650,7 @@ type PatchTenantMembershipsByTenantIdByUserIdResponses = {
|
|
|
30772
31650
|
*/
|
|
30773
31651
|
200: {
|
|
30774
31652
|
data?: TenantMembership;
|
|
30775
|
-
included?: Array<
|
|
31653
|
+
included?: Array<unknown>;
|
|
30776
31654
|
meta?: {
|
|
30777
31655
|
[key: string]: unknown;
|
|
30778
31656
|
};
|
|
@@ -30944,7 +31822,7 @@ type PatchExtractionResultsByIdSaveCorrectionsResponses = {
|
|
|
30944
31822
|
};
|
|
30945
31823
|
};
|
|
30946
31824
|
type PatchExtractionResultsByIdSaveCorrectionsResponse = PatchExtractionResultsByIdSaveCorrectionsResponses[keyof PatchExtractionResultsByIdSaveCorrectionsResponses];
|
|
30947
|
-
type
|
|
31825
|
+
type GetConsentRecordsData = {
|
|
30948
31826
|
body?: never;
|
|
30949
31827
|
headers: {
|
|
30950
31828
|
/**
|
|
@@ -30953,7 +31831,7 @@ type GetAuditLogsActivityData = {
|
|
|
30953
31831
|
"x-application-key": string;
|
|
30954
31832
|
};
|
|
30955
31833
|
path?: never;
|
|
30956
|
-
query
|
|
31834
|
+
query?: {
|
|
30957
31835
|
/**
|
|
30958
31836
|
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
30959
31837
|
*/
|
|
@@ -30964,6 +31842,12 @@ type GetAuditLogsActivityData = {
|
|
|
30964
31842
|
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
30965
31843
|
*/
|
|
30966
31844
|
sort?: string;
|
|
31845
|
+
/**
|
|
31846
|
+
* JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
|
|
31847
|
+
*/
|
|
31848
|
+
page?: {
|
|
31849
|
+
[key: string]: unknown;
|
|
31850
|
+
};
|
|
30967
31851
|
/**
|
|
30968
31852
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
30969
31853
|
*/
|
|
@@ -30974,15 +31858,10 @@ type GetAuditLogsActivityData = {
|
|
|
30974
31858
|
fields?: {
|
|
30975
31859
|
[key: string]: unknown;
|
|
30976
31860
|
};
|
|
30977
|
-
tenant_id: string;
|
|
30978
|
-
workspace_id?: string;
|
|
30979
|
-
activity_type?: string;
|
|
30980
|
-
limit?: number;
|
|
30981
|
-
offset?: number;
|
|
30982
31861
|
};
|
|
30983
|
-
url: "/
|
|
31862
|
+
url: "/consent-records";
|
|
30984
31863
|
};
|
|
30985
|
-
type
|
|
31864
|
+
type GetConsentRecordsErrors = {
|
|
30986
31865
|
/**
|
|
30987
31866
|
* Bad Request - Invalid input data or malformed request
|
|
30988
31867
|
*/
|
|
@@ -31012,36 +31891,43 @@ type GetAuditLogsActivityErrors = {
|
|
|
31012
31891
|
*/
|
|
31013
31892
|
default: Errors;
|
|
31014
31893
|
};
|
|
31015
|
-
type
|
|
31016
|
-
type
|
|
31894
|
+
type GetConsentRecordsError = GetConsentRecordsErrors[keyof GetConsentRecordsErrors];
|
|
31895
|
+
type GetConsentRecordsResponses = {
|
|
31017
31896
|
/**
|
|
31018
31897
|
* Success
|
|
31019
31898
|
*/
|
|
31020
31899
|
200: {
|
|
31021
31900
|
/**
|
|
31022
|
-
* An array of resource objects representing a
|
|
31901
|
+
* An array of resource objects representing a consent_record
|
|
31023
31902
|
*/
|
|
31024
|
-
data?: Array<
|
|
31903
|
+
data?: Array<ConsentRecord>;
|
|
31025
31904
|
included?: Array<unknown>;
|
|
31026
31905
|
meta?: {
|
|
31027
31906
|
[key: string]: unknown;
|
|
31028
31907
|
};
|
|
31029
31908
|
};
|
|
31030
31909
|
};
|
|
31031
|
-
type
|
|
31032
|
-
type
|
|
31910
|
+
type GetConsentRecordsResponse = GetConsentRecordsResponses[keyof GetConsentRecordsResponses];
|
|
31911
|
+
type PostConsentRecordsData = {
|
|
31033
31912
|
/**
|
|
31034
|
-
* Request body for the /
|
|
31913
|
+
* Request body for the /consent-records operation on consent_record resource
|
|
31035
31914
|
*/
|
|
31036
31915
|
body: {
|
|
31037
31916
|
data: {
|
|
31038
31917
|
attributes?: {
|
|
31039
|
-
|
|
31918
|
+
/**
|
|
31919
|
+
* Human-readable description of what was consented to
|
|
31920
|
+
*/
|
|
31921
|
+
description?: string | unknown;
|
|
31922
|
+
ip_address?: string | unknown;
|
|
31923
|
+
purpose: "ai_document_processing" | "data_analytics" | "marketing_communications" | "third_party_sharing";
|
|
31924
|
+
user_agent?: string | unknown;
|
|
31925
|
+
user_id: string;
|
|
31040
31926
|
};
|
|
31041
31927
|
relationships?: {
|
|
31042
31928
|
[key: string]: never;
|
|
31043
31929
|
};
|
|
31044
|
-
type?: "
|
|
31930
|
+
type?: "consent_record";
|
|
31045
31931
|
};
|
|
31046
31932
|
};
|
|
31047
31933
|
headers: {
|
|
@@ -31063,9 +31949,9 @@ type PostUsersAuthResendConfirmationData = {
|
|
|
31063
31949
|
[key: string]: unknown;
|
|
31064
31950
|
};
|
|
31065
31951
|
};
|
|
31066
|
-
url: "/
|
|
31952
|
+
url: "/consent-records";
|
|
31067
31953
|
};
|
|
31068
|
-
type
|
|
31954
|
+
type PostConsentRecordsErrors = {
|
|
31069
31955
|
/**
|
|
31070
31956
|
* Bad Request - Invalid input data or malformed request
|
|
31071
31957
|
*/
|
|
@@ -31095,21 +31981,21 @@ type PostUsersAuthResendConfirmationErrors = {
|
|
|
31095
31981
|
*/
|
|
31096
31982
|
default: Errors;
|
|
31097
31983
|
};
|
|
31098
|
-
type
|
|
31099
|
-
type
|
|
31984
|
+
type PostConsentRecordsError = PostConsentRecordsErrors[keyof PostConsentRecordsErrors];
|
|
31985
|
+
type PostConsentRecordsResponses = {
|
|
31100
31986
|
/**
|
|
31101
31987
|
* Success
|
|
31102
31988
|
*/
|
|
31103
31989
|
201: {
|
|
31104
|
-
data?:
|
|
31990
|
+
data?: ConsentRecord;
|
|
31105
31991
|
included?: Array<unknown>;
|
|
31106
31992
|
meta?: {
|
|
31107
31993
|
[key: string]: unknown;
|
|
31108
31994
|
};
|
|
31109
31995
|
};
|
|
31110
31996
|
};
|
|
31111
|
-
type
|
|
31112
|
-
type
|
|
31997
|
+
type PostConsentRecordsResponse = PostConsentRecordsResponses[keyof PostConsentRecordsResponses];
|
|
31998
|
+
type GetAuditLogsActivityData = {
|
|
31113
31999
|
body?: never;
|
|
31114
32000
|
headers: {
|
|
31115
32001
|
/**
|
|
@@ -31139,97 +32025,15 @@ type GetWorkspacesAnalyticsBatchData = {
|
|
|
31139
32025
|
fields?: {
|
|
31140
32026
|
[key: string]: unknown;
|
|
31141
32027
|
};
|
|
31142
|
-
|
|
31143
|
-
|
|
31144
|
-
|
|
31145
|
-
|
|
31146
|
-
|
|
31147
|
-
/**
|
|
31148
|
-
* Bad Request - Invalid input data or malformed request
|
|
31149
|
-
*/
|
|
31150
|
-
400: ErrorResponse;
|
|
31151
|
-
/**
|
|
31152
|
-
* Unauthorized - Missing or invalid authentication token
|
|
31153
|
-
*/
|
|
31154
|
-
401: ErrorResponse;
|
|
31155
|
-
/**
|
|
31156
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
31157
|
-
*/
|
|
31158
|
-
403: ErrorResponse;
|
|
31159
|
-
/**
|
|
31160
|
-
* Not Found - Resource does not exist
|
|
31161
|
-
*/
|
|
31162
|
-
404: ErrorResponse;
|
|
31163
|
-
/**
|
|
31164
|
-
* Too Many Requests - Rate limit exceeded
|
|
31165
|
-
*/
|
|
31166
|
-
429: ErrorResponse;
|
|
31167
|
-
/**
|
|
31168
|
-
* Internal Server Error - Unexpected server error
|
|
31169
|
-
*/
|
|
31170
|
-
500: ErrorResponse;
|
|
31171
|
-
/**
|
|
31172
|
-
* General Error
|
|
31173
|
-
*/
|
|
31174
|
-
default: Errors;
|
|
31175
|
-
};
|
|
31176
|
-
type GetWorkspacesAnalyticsBatchError = GetWorkspacesAnalyticsBatchErrors[keyof GetWorkspacesAnalyticsBatchErrors];
|
|
31177
|
-
type GetWorkspacesAnalyticsBatchResponses = {
|
|
31178
|
-
/**
|
|
31179
|
-
* Success
|
|
31180
|
-
*/
|
|
31181
|
-
200: {
|
|
31182
|
-
/**
|
|
31183
|
-
* An array of resource objects representing a training_analytics
|
|
31184
|
-
*/
|
|
31185
|
-
data?: Array<TrainingAnalytics>;
|
|
31186
|
-
included?: Array<unknown>;
|
|
31187
|
-
meta?: {
|
|
31188
|
-
[key: string]: unknown;
|
|
31189
|
-
};
|
|
31190
|
-
};
|
|
31191
|
-
};
|
|
31192
|
-
type GetWorkspacesAnalyticsBatchResponse = GetWorkspacesAnalyticsBatchResponses[keyof GetWorkspacesAnalyticsBatchResponses];
|
|
31193
|
-
type GetAiMessagesData = {
|
|
31194
|
-
body?: never;
|
|
31195
|
-
headers: {
|
|
31196
|
-
/**
|
|
31197
|
-
* Application ID for authentication and routing
|
|
31198
|
-
*/
|
|
31199
|
-
"x-application-key": string;
|
|
31200
|
-
};
|
|
31201
|
-
path?: never;
|
|
31202
|
-
query?: {
|
|
31203
|
-
/**
|
|
31204
|
-
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
31205
|
-
*/
|
|
31206
|
-
filter?: {
|
|
31207
|
-
[key: string]: unknown;
|
|
31208
|
-
};
|
|
31209
|
-
/**
|
|
31210
|
-
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
31211
|
-
*/
|
|
31212
|
-
sort?: string;
|
|
31213
|
-
/**
|
|
31214
|
-
* JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
|
|
31215
|
-
*/
|
|
31216
|
-
page?: {
|
|
31217
|
-
[key: string]: unknown;
|
|
31218
|
-
};
|
|
31219
|
-
/**
|
|
31220
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
31221
|
-
*/
|
|
31222
|
-
include?: string;
|
|
31223
|
-
/**
|
|
31224
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
31225
|
-
*/
|
|
31226
|
-
fields?: {
|
|
31227
|
-
[key: string]: unknown;
|
|
31228
|
-
};
|
|
32028
|
+
tenant_id: string;
|
|
32029
|
+
workspace_id?: string;
|
|
32030
|
+
activity_type?: string;
|
|
32031
|
+
limit?: number;
|
|
32032
|
+
offset?: number;
|
|
31229
32033
|
};
|
|
31230
|
-
url: "/
|
|
32034
|
+
url: "/audit-logs/activity";
|
|
31231
32035
|
};
|
|
31232
|
-
type
|
|
32036
|
+
type GetAuditLogsActivityErrors = {
|
|
31233
32037
|
/**
|
|
31234
32038
|
* Bad Request - Invalid input data or malformed request
|
|
31235
32039
|
*/
|
|
@@ -31259,38 +32063,36 @@ type GetAiMessagesErrors = {
|
|
|
31259
32063
|
*/
|
|
31260
32064
|
default: Errors;
|
|
31261
32065
|
};
|
|
31262
|
-
type
|
|
31263
|
-
type
|
|
32066
|
+
type GetAuditLogsActivityError = GetAuditLogsActivityErrors[keyof GetAuditLogsActivityErrors];
|
|
32067
|
+
type GetAuditLogsActivityResponses = {
|
|
31264
32068
|
/**
|
|
31265
32069
|
* Success
|
|
31266
32070
|
*/
|
|
31267
32071
|
200: {
|
|
31268
32072
|
/**
|
|
31269
|
-
* An array of resource objects representing a
|
|
32073
|
+
* An array of resource objects representing a audit-log
|
|
31270
32074
|
*/
|
|
31271
|
-
data?: Array<
|
|
32075
|
+
data?: Array<AuditLog>;
|
|
31272
32076
|
included?: Array<unknown>;
|
|
31273
32077
|
meta?: {
|
|
31274
32078
|
[key: string]: unknown;
|
|
31275
32079
|
};
|
|
31276
32080
|
};
|
|
31277
32081
|
};
|
|
31278
|
-
type
|
|
31279
|
-
type
|
|
32082
|
+
type GetAuditLogsActivityResponse = GetAuditLogsActivityResponses[keyof GetAuditLogsActivityResponses];
|
|
32083
|
+
type PostUsersAuthResendConfirmationData = {
|
|
31280
32084
|
/**
|
|
31281
|
-
* Request body for the /
|
|
32085
|
+
* Request body for the /users/auth/resend-confirmation operation on user resource
|
|
31282
32086
|
*/
|
|
31283
32087
|
body: {
|
|
31284
32088
|
data: {
|
|
31285
32089
|
attributes?: {
|
|
31286
|
-
|
|
31287
|
-
conversation_id: string;
|
|
31288
|
-
role: "system" | "user" | "assistant";
|
|
32090
|
+
email: string;
|
|
31289
32091
|
};
|
|
31290
32092
|
relationships?: {
|
|
31291
32093
|
[key: string]: never;
|
|
31292
32094
|
};
|
|
31293
|
-
type?: "
|
|
32095
|
+
type?: "user";
|
|
31294
32096
|
};
|
|
31295
32097
|
};
|
|
31296
32098
|
headers: {
|
|
@@ -31312,9 +32114,9 @@ type PostAiMessagesData = {
|
|
|
31312
32114
|
[key: string]: unknown;
|
|
31313
32115
|
};
|
|
31314
32116
|
};
|
|
31315
|
-
url: "/
|
|
32117
|
+
url: "/users/auth/resend-confirmation";
|
|
31316
32118
|
};
|
|
31317
|
-
type
|
|
32119
|
+
type PostUsersAuthResendConfirmationErrors = {
|
|
31318
32120
|
/**
|
|
31319
32121
|
* Bad Request - Invalid input data or malformed request
|
|
31320
32122
|
*/
|
|
@@ -31344,21 +32146,21 @@ type PostAiMessagesErrors = {
|
|
|
31344
32146
|
*/
|
|
31345
32147
|
default: Errors;
|
|
31346
32148
|
};
|
|
31347
|
-
type
|
|
31348
|
-
type
|
|
32149
|
+
type PostUsersAuthResendConfirmationError = PostUsersAuthResendConfirmationErrors[keyof PostUsersAuthResendConfirmationErrors];
|
|
32150
|
+
type PostUsersAuthResendConfirmationResponses = {
|
|
31349
32151
|
/**
|
|
31350
32152
|
* Success
|
|
31351
32153
|
*/
|
|
31352
32154
|
201: {
|
|
31353
|
-
data?:
|
|
32155
|
+
data?: User;
|
|
31354
32156
|
included?: Array<unknown>;
|
|
31355
32157
|
meta?: {
|
|
31356
32158
|
[key: string]: unknown;
|
|
31357
32159
|
};
|
|
31358
32160
|
};
|
|
31359
32161
|
};
|
|
31360
|
-
type
|
|
31361
|
-
type
|
|
32162
|
+
type PostUsersAuthResendConfirmationResponse = PostUsersAuthResendConfirmationResponses[keyof PostUsersAuthResendConfirmationResponses];
|
|
32163
|
+
type GetWorkspacesAnalyticsBatchData = {
|
|
31362
32164
|
body?: never;
|
|
31363
32165
|
headers: {
|
|
31364
32166
|
/**
|
|
@@ -31378,12 +32180,6 @@ type GetWatcherEventsData = {
|
|
|
31378
32180
|
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
31379
32181
|
*/
|
|
31380
32182
|
sort?: string;
|
|
31381
|
-
/**
|
|
31382
|
-
* JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
|
|
31383
|
-
*/
|
|
31384
|
-
page?: {
|
|
31385
|
-
[key: string]: unknown;
|
|
31386
|
-
};
|
|
31387
32183
|
/**
|
|
31388
32184
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
31389
32185
|
*/
|
|
@@ -31394,14 +32190,269 @@ type GetWatcherEventsData = {
|
|
|
31394
32190
|
fields?: {
|
|
31395
32191
|
[key: string]: unknown;
|
|
31396
32192
|
};
|
|
31397
|
-
|
|
31398
|
-
event_type?: Array<string>;
|
|
31399
|
-
machine_id?: string;
|
|
31400
|
-
since?: unknown;
|
|
32193
|
+
workspace_ids: string;
|
|
31401
32194
|
};
|
|
31402
|
-
url: "/
|
|
32195
|
+
url: "/workspaces/analytics-batch";
|
|
31403
32196
|
};
|
|
31404
|
-
type
|
|
32197
|
+
type GetWorkspacesAnalyticsBatchErrors = {
|
|
32198
|
+
/**
|
|
32199
|
+
* Bad Request - Invalid input data or malformed request
|
|
32200
|
+
*/
|
|
32201
|
+
400: ErrorResponse;
|
|
32202
|
+
/**
|
|
32203
|
+
* Unauthorized - Missing or invalid authentication token
|
|
32204
|
+
*/
|
|
32205
|
+
401: ErrorResponse;
|
|
32206
|
+
/**
|
|
32207
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
32208
|
+
*/
|
|
32209
|
+
403: ErrorResponse;
|
|
32210
|
+
/**
|
|
32211
|
+
* Not Found - Resource does not exist
|
|
32212
|
+
*/
|
|
32213
|
+
404: ErrorResponse;
|
|
32214
|
+
/**
|
|
32215
|
+
* Too Many Requests - Rate limit exceeded
|
|
32216
|
+
*/
|
|
32217
|
+
429: ErrorResponse;
|
|
32218
|
+
/**
|
|
32219
|
+
* Internal Server Error - Unexpected server error
|
|
32220
|
+
*/
|
|
32221
|
+
500: ErrorResponse;
|
|
32222
|
+
/**
|
|
32223
|
+
* General Error
|
|
32224
|
+
*/
|
|
32225
|
+
default: Errors;
|
|
32226
|
+
};
|
|
32227
|
+
type GetWorkspacesAnalyticsBatchError = GetWorkspacesAnalyticsBatchErrors[keyof GetWorkspacesAnalyticsBatchErrors];
|
|
32228
|
+
type GetWorkspacesAnalyticsBatchResponses = {
|
|
32229
|
+
/**
|
|
32230
|
+
* Success
|
|
32231
|
+
*/
|
|
32232
|
+
200: {
|
|
32233
|
+
/**
|
|
32234
|
+
* An array of resource objects representing a training_analytics
|
|
32235
|
+
*/
|
|
32236
|
+
data?: Array<TrainingAnalytics>;
|
|
32237
|
+
included?: Array<unknown>;
|
|
32238
|
+
meta?: {
|
|
32239
|
+
[key: string]: unknown;
|
|
32240
|
+
};
|
|
32241
|
+
};
|
|
32242
|
+
};
|
|
32243
|
+
type GetWorkspacesAnalyticsBatchResponse = GetWorkspacesAnalyticsBatchResponses[keyof GetWorkspacesAnalyticsBatchResponses];
|
|
32244
|
+
type GetAiMessagesData = {
|
|
32245
|
+
body?: never;
|
|
32246
|
+
headers: {
|
|
32247
|
+
/**
|
|
32248
|
+
* Application ID for authentication and routing
|
|
32249
|
+
*/
|
|
32250
|
+
"x-application-key": string;
|
|
32251
|
+
};
|
|
32252
|
+
path?: never;
|
|
32253
|
+
query?: {
|
|
32254
|
+
/**
|
|
32255
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
32256
|
+
*/
|
|
32257
|
+
filter?: {
|
|
32258
|
+
[key: string]: unknown;
|
|
32259
|
+
};
|
|
32260
|
+
/**
|
|
32261
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
32262
|
+
*/
|
|
32263
|
+
sort?: string;
|
|
32264
|
+
/**
|
|
32265
|
+
* JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
|
|
32266
|
+
*/
|
|
32267
|
+
page?: {
|
|
32268
|
+
[key: string]: unknown;
|
|
32269
|
+
};
|
|
32270
|
+
/**
|
|
32271
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
32272
|
+
*/
|
|
32273
|
+
include?: string;
|
|
32274
|
+
/**
|
|
32275
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
32276
|
+
*/
|
|
32277
|
+
fields?: {
|
|
32278
|
+
[key: string]: unknown;
|
|
32279
|
+
};
|
|
32280
|
+
};
|
|
32281
|
+
url: "/ai/messages";
|
|
32282
|
+
};
|
|
32283
|
+
type GetAiMessagesErrors = {
|
|
32284
|
+
/**
|
|
32285
|
+
* Bad Request - Invalid input data or malformed request
|
|
32286
|
+
*/
|
|
32287
|
+
400: ErrorResponse;
|
|
32288
|
+
/**
|
|
32289
|
+
* Unauthorized - Missing or invalid authentication token
|
|
32290
|
+
*/
|
|
32291
|
+
401: ErrorResponse;
|
|
32292
|
+
/**
|
|
32293
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
32294
|
+
*/
|
|
32295
|
+
403: ErrorResponse;
|
|
32296
|
+
/**
|
|
32297
|
+
* Not Found - Resource does not exist
|
|
32298
|
+
*/
|
|
32299
|
+
404: ErrorResponse;
|
|
32300
|
+
/**
|
|
32301
|
+
* Too Many Requests - Rate limit exceeded
|
|
32302
|
+
*/
|
|
32303
|
+
429: ErrorResponse;
|
|
32304
|
+
/**
|
|
32305
|
+
* Internal Server Error - Unexpected server error
|
|
32306
|
+
*/
|
|
32307
|
+
500: ErrorResponse;
|
|
32308
|
+
/**
|
|
32309
|
+
* General Error
|
|
32310
|
+
*/
|
|
32311
|
+
default: Errors;
|
|
32312
|
+
};
|
|
32313
|
+
type GetAiMessagesError = GetAiMessagesErrors[keyof GetAiMessagesErrors];
|
|
32314
|
+
type GetAiMessagesResponses = {
|
|
32315
|
+
/**
|
|
32316
|
+
* Success
|
|
32317
|
+
*/
|
|
32318
|
+
200: {
|
|
32319
|
+
/**
|
|
32320
|
+
* An array of resource objects representing a message
|
|
32321
|
+
*/
|
|
32322
|
+
data?: Array<Message>;
|
|
32323
|
+
included?: Array<unknown>;
|
|
32324
|
+
meta?: {
|
|
32325
|
+
[key: string]: unknown;
|
|
32326
|
+
};
|
|
32327
|
+
};
|
|
32328
|
+
};
|
|
32329
|
+
type GetAiMessagesResponse = GetAiMessagesResponses[keyof GetAiMessagesResponses];
|
|
32330
|
+
type PostAiMessagesData = {
|
|
32331
|
+
/**
|
|
32332
|
+
* Request body for the /ai/messages operation on message resource
|
|
32333
|
+
*/
|
|
32334
|
+
body: {
|
|
32335
|
+
data: {
|
|
32336
|
+
attributes?: {
|
|
32337
|
+
content: string;
|
|
32338
|
+
conversation_id: string;
|
|
32339
|
+
role: "system" | "user" | "assistant";
|
|
32340
|
+
};
|
|
32341
|
+
relationships?: {
|
|
32342
|
+
[key: string]: never;
|
|
32343
|
+
};
|
|
32344
|
+
type?: "message";
|
|
32345
|
+
};
|
|
32346
|
+
};
|
|
32347
|
+
headers: {
|
|
32348
|
+
/**
|
|
32349
|
+
* Application ID for authentication and routing
|
|
32350
|
+
*/
|
|
32351
|
+
"x-application-key": string;
|
|
32352
|
+
};
|
|
32353
|
+
path?: never;
|
|
32354
|
+
query?: {
|
|
32355
|
+
/**
|
|
32356
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
32357
|
+
*/
|
|
32358
|
+
include?: string;
|
|
32359
|
+
/**
|
|
32360
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
32361
|
+
*/
|
|
32362
|
+
fields?: {
|
|
32363
|
+
[key: string]: unknown;
|
|
32364
|
+
};
|
|
32365
|
+
};
|
|
32366
|
+
url: "/ai/messages";
|
|
32367
|
+
};
|
|
32368
|
+
type PostAiMessagesErrors = {
|
|
32369
|
+
/**
|
|
32370
|
+
* Bad Request - Invalid input data or malformed request
|
|
32371
|
+
*/
|
|
32372
|
+
400: ErrorResponse;
|
|
32373
|
+
/**
|
|
32374
|
+
* Unauthorized - Missing or invalid authentication token
|
|
32375
|
+
*/
|
|
32376
|
+
401: ErrorResponse;
|
|
32377
|
+
/**
|
|
32378
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
32379
|
+
*/
|
|
32380
|
+
403: ErrorResponse;
|
|
32381
|
+
/**
|
|
32382
|
+
* Not Found - Resource does not exist
|
|
32383
|
+
*/
|
|
32384
|
+
404: ErrorResponse;
|
|
32385
|
+
/**
|
|
32386
|
+
* Too Many Requests - Rate limit exceeded
|
|
32387
|
+
*/
|
|
32388
|
+
429: ErrorResponse;
|
|
32389
|
+
/**
|
|
32390
|
+
* Internal Server Error - Unexpected server error
|
|
32391
|
+
*/
|
|
32392
|
+
500: ErrorResponse;
|
|
32393
|
+
/**
|
|
32394
|
+
* General Error
|
|
32395
|
+
*/
|
|
32396
|
+
default: Errors;
|
|
32397
|
+
};
|
|
32398
|
+
type PostAiMessagesError = PostAiMessagesErrors[keyof PostAiMessagesErrors];
|
|
32399
|
+
type PostAiMessagesResponses = {
|
|
32400
|
+
/**
|
|
32401
|
+
* Success
|
|
32402
|
+
*/
|
|
32403
|
+
201: {
|
|
32404
|
+
data?: Message;
|
|
32405
|
+
included?: Array<unknown>;
|
|
32406
|
+
meta?: {
|
|
32407
|
+
[key: string]: unknown;
|
|
32408
|
+
};
|
|
32409
|
+
};
|
|
32410
|
+
};
|
|
32411
|
+
type PostAiMessagesResponse = PostAiMessagesResponses[keyof PostAiMessagesResponses];
|
|
32412
|
+
type GetWatcherEventsData = {
|
|
32413
|
+
body?: never;
|
|
32414
|
+
headers: {
|
|
32415
|
+
/**
|
|
32416
|
+
* Application ID for authentication and routing
|
|
32417
|
+
*/
|
|
32418
|
+
"x-application-key": string;
|
|
32419
|
+
};
|
|
32420
|
+
path?: never;
|
|
32421
|
+
query: {
|
|
32422
|
+
/**
|
|
32423
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
32424
|
+
*/
|
|
32425
|
+
filter?: {
|
|
32426
|
+
[key: string]: unknown;
|
|
32427
|
+
};
|
|
32428
|
+
/**
|
|
32429
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
32430
|
+
*/
|
|
32431
|
+
sort?: string;
|
|
32432
|
+
/**
|
|
32433
|
+
* JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
|
|
32434
|
+
*/
|
|
32435
|
+
page?: {
|
|
32436
|
+
[key: string]: unknown;
|
|
32437
|
+
};
|
|
32438
|
+
/**
|
|
32439
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
32440
|
+
*/
|
|
32441
|
+
include?: string;
|
|
32442
|
+
/**
|
|
32443
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
32444
|
+
*/
|
|
32445
|
+
fields?: {
|
|
32446
|
+
[key: string]: unknown;
|
|
32447
|
+
};
|
|
32448
|
+
workspace_id: string;
|
|
32449
|
+
event_type?: Array<string>;
|
|
32450
|
+
machine_id?: string;
|
|
32451
|
+
since?: unknown;
|
|
32452
|
+
};
|
|
32453
|
+
url: "/watcher/events";
|
|
32454
|
+
};
|
|
32455
|
+
type GetWatcherEventsErrors = {
|
|
31405
32456
|
/**
|
|
31406
32457
|
* Bad Request - Invalid input data or malformed request
|
|
31407
32458
|
*/
|
|
@@ -31845,21 +32896,414 @@ type PatchConfigsByKeyErrors = {
|
|
|
31845
32896
|
*/
|
|
31846
32897
|
default: Errors;
|
|
31847
32898
|
};
|
|
31848
|
-
type PatchConfigsByKeyError = PatchConfigsByKeyErrors[keyof PatchConfigsByKeyErrors];
|
|
31849
|
-
type PatchConfigsByKeyResponses = {
|
|
32899
|
+
type PatchConfigsByKeyError = PatchConfigsByKeyErrors[keyof PatchConfigsByKeyErrors];
|
|
32900
|
+
type PatchConfigsByKeyResponses = {
|
|
32901
|
+
/**
|
|
32902
|
+
* Success
|
|
32903
|
+
*/
|
|
32904
|
+
200: {
|
|
32905
|
+
data?: Config$2;
|
|
32906
|
+
included?: Array<unknown>;
|
|
32907
|
+
meta?: {
|
|
32908
|
+
[key: string]: unknown;
|
|
32909
|
+
};
|
|
32910
|
+
};
|
|
32911
|
+
};
|
|
32912
|
+
type PatchConfigsByKeyResponse = PatchConfigsByKeyResponses[keyof PatchConfigsByKeyResponses];
|
|
32913
|
+
type DeleteLegalDocumentsByIdData = {
|
|
32914
|
+
body?: never;
|
|
32915
|
+
headers: {
|
|
32916
|
+
/**
|
|
32917
|
+
* Application ID for authentication and routing
|
|
32918
|
+
*/
|
|
32919
|
+
"x-application-key": string;
|
|
32920
|
+
};
|
|
32921
|
+
path: {
|
|
32922
|
+
id: string;
|
|
32923
|
+
};
|
|
32924
|
+
query?: {
|
|
32925
|
+
/**
|
|
32926
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
32927
|
+
*/
|
|
32928
|
+
include?: string;
|
|
32929
|
+
/**
|
|
32930
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
32931
|
+
*/
|
|
32932
|
+
fields?: {
|
|
32933
|
+
[key: string]: unknown;
|
|
32934
|
+
};
|
|
32935
|
+
};
|
|
32936
|
+
url: "/legal-documents/{id}";
|
|
32937
|
+
};
|
|
32938
|
+
type DeleteLegalDocumentsByIdErrors = {
|
|
32939
|
+
/**
|
|
32940
|
+
* Bad Request - Invalid input data or malformed request
|
|
32941
|
+
*/
|
|
32942
|
+
400: ErrorResponse;
|
|
32943
|
+
/**
|
|
32944
|
+
* Unauthorized - Missing or invalid authentication token
|
|
32945
|
+
*/
|
|
32946
|
+
401: ErrorResponse;
|
|
32947
|
+
/**
|
|
32948
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
32949
|
+
*/
|
|
32950
|
+
403: ErrorResponse;
|
|
32951
|
+
/**
|
|
32952
|
+
* Not Found - Resource does not exist
|
|
32953
|
+
*/
|
|
32954
|
+
404: ErrorResponse;
|
|
32955
|
+
/**
|
|
32956
|
+
* Too Many Requests - Rate limit exceeded
|
|
32957
|
+
*/
|
|
32958
|
+
429: ErrorResponse;
|
|
32959
|
+
/**
|
|
32960
|
+
* Internal Server Error - Unexpected server error
|
|
32961
|
+
*/
|
|
32962
|
+
500: ErrorResponse;
|
|
32963
|
+
/**
|
|
32964
|
+
* General Error
|
|
32965
|
+
*/
|
|
32966
|
+
default: Errors;
|
|
32967
|
+
};
|
|
32968
|
+
type DeleteLegalDocumentsByIdError = DeleteLegalDocumentsByIdErrors[keyof DeleteLegalDocumentsByIdErrors];
|
|
32969
|
+
type DeleteLegalDocumentsByIdResponses = {
|
|
32970
|
+
/**
|
|
32971
|
+
* Deleted successfully
|
|
32972
|
+
*/
|
|
32973
|
+
200: unknown;
|
|
32974
|
+
};
|
|
32975
|
+
type GetLegalDocumentsByIdData = {
|
|
32976
|
+
body?: never;
|
|
32977
|
+
headers: {
|
|
32978
|
+
/**
|
|
32979
|
+
* Application ID for authentication and routing
|
|
32980
|
+
*/
|
|
32981
|
+
"x-application-key": string;
|
|
32982
|
+
};
|
|
32983
|
+
path: {
|
|
32984
|
+
id: string;
|
|
32985
|
+
};
|
|
32986
|
+
query?: {
|
|
32987
|
+
/**
|
|
32988
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
32989
|
+
*/
|
|
32990
|
+
include?: string;
|
|
32991
|
+
/**
|
|
32992
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
32993
|
+
*/
|
|
32994
|
+
fields?: {
|
|
32995
|
+
[key: string]: unknown;
|
|
32996
|
+
};
|
|
32997
|
+
};
|
|
32998
|
+
url: "/legal-documents/{id}";
|
|
32999
|
+
};
|
|
33000
|
+
type GetLegalDocumentsByIdErrors = {
|
|
33001
|
+
/**
|
|
33002
|
+
* Bad Request - Invalid input data or malformed request
|
|
33003
|
+
*/
|
|
33004
|
+
400: ErrorResponse;
|
|
33005
|
+
/**
|
|
33006
|
+
* Unauthorized - Missing or invalid authentication token
|
|
33007
|
+
*/
|
|
33008
|
+
401: ErrorResponse;
|
|
33009
|
+
/**
|
|
33010
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
33011
|
+
*/
|
|
33012
|
+
403: ErrorResponse;
|
|
33013
|
+
/**
|
|
33014
|
+
* Not Found - Resource does not exist
|
|
33015
|
+
*/
|
|
33016
|
+
404: ErrorResponse;
|
|
33017
|
+
/**
|
|
33018
|
+
* Too Many Requests - Rate limit exceeded
|
|
33019
|
+
*/
|
|
33020
|
+
429: ErrorResponse;
|
|
33021
|
+
/**
|
|
33022
|
+
* Internal Server Error - Unexpected server error
|
|
33023
|
+
*/
|
|
33024
|
+
500: ErrorResponse;
|
|
33025
|
+
/**
|
|
33026
|
+
* General Error
|
|
33027
|
+
*/
|
|
33028
|
+
default: Errors;
|
|
33029
|
+
};
|
|
33030
|
+
type GetLegalDocumentsByIdError = GetLegalDocumentsByIdErrors[keyof GetLegalDocumentsByIdErrors];
|
|
33031
|
+
type GetLegalDocumentsByIdResponses = {
|
|
33032
|
+
/**
|
|
33033
|
+
* Success
|
|
33034
|
+
*/
|
|
33035
|
+
200: {
|
|
33036
|
+
data?: LegalDocument;
|
|
33037
|
+
included?: Array<unknown>;
|
|
33038
|
+
meta?: {
|
|
33039
|
+
[key: string]: unknown;
|
|
33040
|
+
};
|
|
33041
|
+
};
|
|
33042
|
+
};
|
|
33043
|
+
type GetLegalDocumentsByIdResponse = GetLegalDocumentsByIdResponses[keyof GetLegalDocumentsByIdResponses];
|
|
33044
|
+
type PatchLegalDocumentsByIdData = {
|
|
33045
|
+
/**
|
|
33046
|
+
* Request body for the /legal-documents/:id operation on legal_document resource
|
|
33047
|
+
*/
|
|
33048
|
+
body?: {
|
|
33049
|
+
data: {
|
|
33050
|
+
attributes?: {
|
|
33051
|
+
/**
|
|
33052
|
+
* Markdown content
|
|
33053
|
+
*/
|
|
33054
|
+
content?: string | unknown;
|
|
33055
|
+
is_active?: boolean | unknown;
|
|
33056
|
+
/**
|
|
33057
|
+
* ISO 639-1 language code
|
|
33058
|
+
*/
|
|
33059
|
+
locale?: string | unknown;
|
|
33060
|
+
/**
|
|
33061
|
+
* ISO 3166-1 region code (e.g., EU, BR, US) or nil for default
|
|
33062
|
+
*/
|
|
33063
|
+
region?: string | unknown;
|
|
33064
|
+
title?: string | unknown;
|
|
33065
|
+
version?: string | unknown;
|
|
33066
|
+
};
|
|
33067
|
+
id: string;
|
|
33068
|
+
relationships?: {
|
|
33069
|
+
[key: string]: never;
|
|
33070
|
+
};
|
|
33071
|
+
type?: "legal_document";
|
|
33072
|
+
};
|
|
33073
|
+
};
|
|
33074
|
+
headers: {
|
|
33075
|
+
/**
|
|
33076
|
+
* Application ID for authentication and routing
|
|
33077
|
+
*/
|
|
33078
|
+
"x-application-key": string;
|
|
33079
|
+
};
|
|
33080
|
+
path: {
|
|
33081
|
+
id: string;
|
|
33082
|
+
};
|
|
33083
|
+
query?: {
|
|
33084
|
+
/**
|
|
33085
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
33086
|
+
*/
|
|
33087
|
+
include?: string;
|
|
33088
|
+
/**
|
|
33089
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
33090
|
+
*/
|
|
33091
|
+
fields?: {
|
|
33092
|
+
[key: string]: unknown;
|
|
33093
|
+
};
|
|
33094
|
+
};
|
|
33095
|
+
url: "/legal-documents/{id}";
|
|
33096
|
+
};
|
|
33097
|
+
type PatchLegalDocumentsByIdErrors = {
|
|
33098
|
+
/**
|
|
33099
|
+
* Bad Request - Invalid input data or malformed request
|
|
33100
|
+
*/
|
|
33101
|
+
400: ErrorResponse;
|
|
33102
|
+
/**
|
|
33103
|
+
* Unauthorized - Missing or invalid authentication token
|
|
33104
|
+
*/
|
|
33105
|
+
401: ErrorResponse;
|
|
33106
|
+
/**
|
|
33107
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
33108
|
+
*/
|
|
33109
|
+
403: ErrorResponse;
|
|
33110
|
+
/**
|
|
33111
|
+
* Not Found - Resource does not exist
|
|
33112
|
+
*/
|
|
33113
|
+
404: ErrorResponse;
|
|
33114
|
+
/**
|
|
33115
|
+
* Too Many Requests - Rate limit exceeded
|
|
33116
|
+
*/
|
|
33117
|
+
429: ErrorResponse;
|
|
33118
|
+
/**
|
|
33119
|
+
* Internal Server Error - Unexpected server error
|
|
33120
|
+
*/
|
|
33121
|
+
500: ErrorResponse;
|
|
33122
|
+
/**
|
|
33123
|
+
* General Error
|
|
33124
|
+
*/
|
|
33125
|
+
default: Errors;
|
|
33126
|
+
};
|
|
33127
|
+
type PatchLegalDocumentsByIdError = PatchLegalDocumentsByIdErrors[keyof PatchLegalDocumentsByIdErrors];
|
|
33128
|
+
type PatchLegalDocumentsByIdResponses = {
|
|
33129
|
+
/**
|
|
33130
|
+
* Success
|
|
33131
|
+
*/
|
|
33132
|
+
200: {
|
|
33133
|
+
data?: LegalDocument;
|
|
33134
|
+
included?: Array<unknown>;
|
|
33135
|
+
meta?: {
|
|
33136
|
+
[key: string]: unknown;
|
|
33137
|
+
};
|
|
33138
|
+
};
|
|
33139
|
+
};
|
|
33140
|
+
type PatchLegalDocumentsByIdResponse = PatchLegalDocumentsByIdResponses[keyof PatchLegalDocumentsByIdResponses];
|
|
33141
|
+
type GetExtractionResultsData = {
|
|
33142
|
+
body?: never;
|
|
33143
|
+
headers: {
|
|
33144
|
+
/**
|
|
33145
|
+
* Application ID for authentication and routing
|
|
33146
|
+
*/
|
|
33147
|
+
"x-application-key": string;
|
|
33148
|
+
};
|
|
33149
|
+
path?: never;
|
|
33150
|
+
query?: {
|
|
33151
|
+
/**
|
|
33152
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
33153
|
+
*/
|
|
33154
|
+
filter?: {
|
|
33155
|
+
[key: string]: unknown;
|
|
33156
|
+
};
|
|
33157
|
+
/**
|
|
33158
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
33159
|
+
*/
|
|
33160
|
+
sort?: string;
|
|
33161
|
+
/**
|
|
33162
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
33163
|
+
*/
|
|
33164
|
+
include?: string;
|
|
33165
|
+
/**
|
|
33166
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
33167
|
+
*/
|
|
33168
|
+
fields?: {
|
|
33169
|
+
[key: string]: unknown;
|
|
33170
|
+
};
|
|
33171
|
+
};
|
|
33172
|
+
url: "/extraction/results";
|
|
33173
|
+
};
|
|
33174
|
+
type GetExtractionResultsErrors = {
|
|
33175
|
+
/**
|
|
33176
|
+
* Bad Request - Invalid input data or malformed request
|
|
33177
|
+
*/
|
|
33178
|
+
400: ErrorResponse;
|
|
33179
|
+
/**
|
|
33180
|
+
* Unauthorized - Missing or invalid authentication token
|
|
33181
|
+
*/
|
|
33182
|
+
401: ErrorResponse;
|
|
33183
|
+
/**
|
|
33184
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
33185
|
+
*/
|
|
33186
|
+
403: ErrorResponse;
|
|
33187
|
+
/**
|
|
33188
|
+
* Not Found - Resource does not exist
|
|
33189
|
+
*/
|
|
33190
|
+
404: ErrorResponse;
|
|
33191
|
+
/**
|
|
33192
|
+
* Too Many Requests - Rate limit exceeded
|
|
33193
|
+
*/
|
|
33194
|
+
429: ErrorResponse;
|
|
33195
|
+
/**
|
|
33196
|
+
* Internal Server Error - Unexpected server error
|
|
33197
|
+
*/
|
|
33198
|
+
500: ErrorResponse;
|
|
33199
|
+
/**
|
|
33200
|
+
* General Error
|
|
33201
|
+
*/
|
|
33202
|
+
default: Errors;
|
|
33203
|
+
};
|
|
33204
|
+
type GetExtractionResultsError = GetExtractionResultsErrors[keyof GetExtractionResultsErrors];
|
|
33205
|
+
type GetExtractionResultsResponses = {
|
|
33206
|
+
/**
|
|
33207
|
+
* Success
|
|
33208
|
+
*/
|
|
33209
|
+
200: {
|
|
33210
|
+
/**
|
|
33211
|
+
* An array of resource objects representing a extraction_result
|
|
33212
|
+
*/
|
|
33213
|
+
data?: Array<ExtractionResult>;
|
|
33214
|
+
included?: Array<unknown>;
|
|
33215
|
+
meta?: {
|
|
33216
|
+
[key: string]: unknown;
|
|
33217
|
+
};
|
|
33218
|
+
};
|
|
33219
|
+
};
|
|
33220
|
+
type GetExtractionResultsResponse = GetExtractionResultsResponses[keyof GetExtractionResultsResponses];
|
|
33221
|
+
type PostAgentsByIdCloneData = {
|
|
33222
|
+
/**
|
|
33223
|
+
* Request body for the /agents/:id/clone operation on agent resource
|
|
33224
|
+
*/
|
|
33225
|
+
body: {
|
|
33226
|
+
data: {
|
|
33227
|
+
attributes?: {
|
|
33228
|
+
new_name: string;
|
|
33229
|
+
};
|
|
33230
|
+
relationships?: {
|
|
33231
|
+
[key: string]: never;
|
|
33232
|
+
};
|
|
33233
|
+
type?: "agent";
|
|
33234
|
+
};
|
|
33235
|
+
};
|
|
33236
|
+
headers: {
|
|
33237
|
+
/**
|
|
33238
|
+
* Application ID for authentication and routing
|
|
33239
|
+
*/
|
|
33240
|
+
"x-application-key": string;
|
|
33241
|
+
};
|
|
33242
|
+
path: {
|
|
33243
|
+
/**
|
|
33244
|
+
* Agent ID (from URL path parameter)
|
|
33245
|
+
*/
|
|
33246
|
+
id: string;
|
|
33247
|
+
};
|
|
33248
|
+
query?: {
|
|
33249
|
+
/**
|
|
33250
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
33251
|
+
*/
|
|
33252
|
+
include?: string;
|
|
33253
|
+
/**
|
|
33254
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
33255
|
+
*/
|
|
33256
|
+
fields?: {
|
|
33257
|
+
[key: string]: unknown;
|
|
33258
|
+
};
|
|
33259
|
+
};
|
|
33260
|
+
url: "/agents/{id}/clone";
|
|
33261
|
+
};
|
|
33262
|
+
type PostAgentsByIdCloneErrors = {
|
|
33263
|
+
/**
|
|
33264
|
+
* Bad Request - Invalid input data or malformed request
|
|
33265
|
+
*/
|
|
33266
|
+
400: ErrorResponse;
|
|
33267
|
+
/**
|
|
33268
|
+
* Unauthorized - Missing or invalid authentication token
|
|
33269
|
+
*/
|
|
33270
|
+
401: ErrorResponse;
|
|
33271
|
+
/**
|
|
33272
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
33273
|
+
*/
|
|
33274
|
+
403: ErrorResponse;
|
|
33275
|
+
/**
|
|
33276
|
+
* Not Found - Resource does not exist
|
|
33277
|
+
*/
|
|
33278
|
+
404: ErrorResponse;
|
|
33279
|
+
/**
|
|
33280
|
+
* Too Many Requests - Rate limit exceeded
|
|
33281
|
+
*/
|
|
33282
|
+
429: ErrorResponse;
|
|
33283
|
+
/**
|
|
33284
|
+
* Internal Server Error - Unexpected server error
|
|
33285
|
+
*/
|
|
33286
|
+
500: ErrorResponse;
|
|
33287
|
+
/**
|
|
33288
|
+
* General Error
|
|
33289
|
+
*/
|
|
33290
|
+
default: Errors;
|
|
33291
|
+
};
|
|
33292
|
+
type PostAgentsByIdCloneError = PostAgentsByIdCloneErrors[keyof PostAgentsByIdCloneErrors];
|
|
33293
|
+
type PostAgentsByIdCloneResponses = {
|
|
31850
33294
|
/**
|
|
31851
33295
|
* Success
|
|
31852
33296
|
*/
|
|
31853
|
-
|
|
31854
|
-
data?:
|
|
31855
|
-
included?: Array<
|
|
33297
|
+
201: {
|
|
33298
|
+
data?: Agent;
|
|
33299
|
+
included?: Array<AgentVersion>;
|
|
31856
33300
|
meta?: {
|
|
31857
33301
|
[key: string]: unknown;
|
|
31858
33302
|
};
|
|
31859
33303
|
};
|
|
31860
33304
|
};
|
|
31861
|
-
type
|
|
31862
|
-
type
|
|
33305
|
+
type PostAgentsByIdCloneResponse = PostAgentsByIdCloneResponses[keyof PostAgentsByIdCloneResponses];
|
|
33306
|
+
type GetLegalDocumentsData = {
|
|
31863
33307
|
body?: never;
|
|
31864
33308
|
headers: {
|
|
31865
33309
|
/**
|
|
@@ -31879,6 +33323,12 @@ type GetExtractionResultsData = {
|
|
|
31879
33323
|
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
31880
33324
|
*/
|
|
31881
33325
|
sort?: string;
|
|
33326
|
+
/**
|
|
33327
|
+
* JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
|
|
33328
|
+
*/
|
|
33329
|
+
page?: {
|
|
33330
|
+
[key: string]: unknown;
|
|
33331
|
+
};
|
|
31882
33332
|
/**
|
|
31883
33333
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
31884
33334
|
*/
|
|
@@ -31890,9 +33340,9 @@ type GetExtractionResultsData = {
|
|
|
31890
33340
|
[key: string]: unknown;
|
|
31891
33341
|
};
|
|
31892
33342
|
};
|
|
31893
|
-
url: "/
|
|
33343
|
+
url: "/legal-documents";
|
|
31894
33344
|
};
|
|
31895
|
-
type
|
|
33345
|
+
type GetLegalDocumentsErrors = {
|
|
31896
33346
|
/**
|
|
31897
33347
|
* Bad Request - Invalid input data or malformed request
|
|
31898
33348
|
*/
|
|
@@ -31922,36 +33372,52 @@ type GetExtractionResultsErrors = {
|
|
|
31922
33372
|
*/
|
|
31923
33373
|
default: Errors;
|
|
31924
33374
|
};
|
|
31925
|
-
type
|
|
31926
|
-
type
|
|
33375
|
+
type GetLegalDocumentsError = GetLegalDocumentsErrors[keyof GetLegalDocumentsErrors];
|
|
33376
|
+
type GetLegalDocumentsResponses = {
|
|
31927
33377
|
/**
|
|
31928
33378
|
* Success
|
|
31929
33379
|
*/
|
|
31930
33380
|
200: {
|
|
31931
33381
|
/**
|
|
31932
|
-
* An array of resource objects representing a
|
|
33382
|
+
* An array of resource objects representing a legal_document
|
|
31933
33383
|
*/
|
|
31934
|
-
data?: Array<
|
|
33384
|
+
data?: Array<LegalDocument>;
|
|
31935
33385
|
included?: Array<unknown>;
|
|
31936
33386
|
meta?: {
|
|
31937
33387
|
[key: string]: unknown;
|
|
31938
33388
|
};
|
|
31939
33389
|
};
|
|
31940
33390
|
};
|
|
31941
|
-
type
|
|
31942
|
-
type
|
|
33391
|
+
type GetLegalDocumentsResponse = GetLegalDocumentsResponses[keyof GetLegalDocumentsResponses];
|
|
33392
|
+
type PostLegalDocumentsData = {
|
|
31943
33393
|
/**
|
|
31944
|
-
* Request body for the /
|
|
33394
|
+
* Request body for the /legal-documents operation on legal_document resource
|
|
31945
33395
|
*/
|
|
31946
33396
|
body: {
|
|
31947
33397
|
data: {
|
|
31948
33398
|
attributes?: {
|
|
31949
|
-
|
|
33399
|
+
application_id?: string | unknown;
|
|
33400
|
+
/**
|
|
33401
|
+
* Markdown content
|
|
33402
|
+
*/
|
|
33403
|
+
content: string;
|
|
33404
|
+
document_type: "terms_of_service" | "privacy_policy";
|
|
33405
|
+
is_active?: boolean | unknown;
|
|
33406
|
+
/**
|
|
33407
|
+
* ISO 639-1 language code
|
|
33408
|
+
*/
|
|
33409
|
+
locale?: string | unknown;
|
|
33410
|
+
/**
|
|
33411
|
+
* ISO 3166-1 region code (e.g., EU, BR, US) or nil for default
|
|
33412
|
+
*/
|
|
33413
|
+
region?: string | unknown;
|
|
33414
|
+
title: string;
|
|
33415
|
+
version: string;
|
|
31950
33416
|
};
|
|
31951
33417
|
relationships?: {
|
|
31952
33418
|
[key: string]: never;
|
|
31953
33419
|
};
|
|
31954
|
-
type?: "
|
|
33420
|
+
type?: "legal_document";
|
|
31955
33421
|
};
|
|
31956
33422
|
};
|
|
31957
33423
|
headers: {
|
|
@@ -31960,12 +33426,7 @@ type PostAgentsByIdCloneData = {
|
|
|
31960
33426
|
*/
|
|
31961
33427
|
"x-application-key": string;
|
|
31962
33428
|
};
|
|
31963
|
-
path
|
|
31964
|
-
/**
|
|
31965
|
-
* Agent ID (from URL path parameter)
|
|
31966
|
-
*/
|
|
31967
|
-
id: string;
|
|
31968
|
-
};
|
|
33429
|
+
path?: never;
|
|
31969
33430
|
query?: {
|
|
31970
33431
|
/**
|
|
31971
33432
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -31978,9 +33439,9 @@ type PostAgentsByIdCloneData = {
|
|
|
31978
33439
|
[key: string]: unknown;
|
|
31979
33440
|
};
|
|
31980
33441
|
};
|
|
31981
|
-
url: "/
|
|
33442
|
+
url: "/legal-documents";
|
|
31982
33443
|
};
|
|
31983
|
-
type
|
|
33444
|
+
type PostLegalDocumentsErrors = {
|
|
31984
33445
|
/**
|
|
31985
33446
|
* Bad Request - Invalid input data or malformed request
|
|
31986
33447
|
*/
|
|
@@ -32010,20 +33471,20 @@ type PostAgentsByIdCloneErrors = {
|
|
|
32010
33471
|
*/
|
|
32011
33472
|
default: Errors;
|
|
32012
33473
|
};
|
|
32013
|
-
type
|
|
32014
|
-
type
|
|
33474
|
+
type PostLegalDocumentsError = PostLegalDocumentsErrors[keyof PostLegalDocumentsErrors];
|
|
33475
|
+
type PostLegalDocumentsResponses = {
|
|
32015
33476
|
/**
|
|
32016
33477
|
* Success
|
|
32017
33478
|
*/
|
|
32018
33479
|
201: {
|
|
32019
|
-
data?:
|
|
32020
|
-
included?: Array<
|
|
33480
|
+
data?: LegalDocument;
|
|
33481
|
+
included?: Array<unknown>;
|
|
32021
33482
|
meta?: {
|
|
32022
33483
|
[key: string]: unknown;
|
|
32023
33484
|
};
|
|
32024
33485
|
};
|
|
32025
33486
|
};
|
|
32026
|
-
type
|
|
33487
|
+
type PostLegalDocumentsResponse = PostLegalDocumentsResponses[keyof PostLegalDocumentsResponses];
|
|
32027
33488
|
type DeleteAiConversationsByIdData = {
|
|
32028
33489
|
body?: never;
|
|
32029
33490
|
headers: {
|
|
@@ -32321,7 +33782,7 @@ type GetInvitationsMeResponses = {
|
|
|
32321
33782
|
* An array of resource objects representing a invitation
|
|
32322
33783
|
*/
|
|
32323
33784
|
data?: Array<Invitation>;
|
|
32324
|
-
included?: Array<
|
|
33785
|
+
included?: Array<unknown>;
|
|
32325
33786
|
meta?: {
|
|
32326
33787
|
[key: string]: unknown;
|
|
32327
33788
|
};
|
|
@@ -32379,6 +33840,87 @@ type GetAgentVersionsByIdRevisionsResponses = {
|
|
|
32379
33840
|
*/
|
|
32380
33841
|
200: unknown;
|
|
32381
33842
|
};
|
|
33843
|
+
type GetLegalDocumentsForApplicationData = {
|
|
33844
|
+
body?: never;
|
|
33845
|
+
headers: {
|
|
33846
|
+
/**
|
|
33847
|
+
* Application ID for authentication and routing
|
|
33848
|
+
*/
|
|
33849
|
+
"x-application-key": string;
|
|
33850
|
+
};
|
|
33851
|
+
path?: never;
|
|
33852
|
+
query: {
|
|
33853
|
+
/**
|
|
33854
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
33855
|
+
*/
|
|
33856
|
+
filter?: {
|
|
33857
|
+
[key: string]: unknown;
|
|
33858
|
+
};
|
|
33859
|
+
/**
|
|
33860
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
33861
|
+
*/
|
|
33862
|
+
sort?: string;
|
|
33863
|
+
/**
|
|
33864
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
33865
|
+
*/
|
|
33866
|
+
include?: string;
|
|
33867
|
+
/**
|
|
33868
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
33869
|
+
*/
|
|
33870
|
+
fields?: {
|
|
33871
|
+
[key: string]: unknown;
|
|
33872
|
+
};
|
|
33873
|
+
application_id: string;
|
|
33874
|
+
};
|
|
33875
|
+
url: "/legal-documents/for-application";
|
|
33876
|
+
};
|
|
33877
|
+
type GetLegalDocumentsForApplicationErrors = {
|
|
33878
|
+
/**
|
|
33879
|
+
* Bad Request - Invalid input data or malformed request
|
|
33880
|
+
*/
|
|
33881
|
+
400: ErrorResponse;
|
|
33882
|
+
/**
|
|
33883
|
+
* Unauthorized - Missing or invalid authentication token
|
|
33884
|
+
*/
|
|
33885
|
+
401: ErrorResponse;
|
|
33886
|
+
/**
|
|
33887
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
33888
|
+
*/
|
|
33889
|
+
403: ErrorResponse;
|
|
33890
|
+
/**
|
|
33891
|
+
* Not Found - Resource does not exist
|
|
33892
|
+
*/
|
|
33893
|
+
404: ErrorResponse;
|
|
33894
|
+
/**
|
|
33895
|
+
* Too Many Requests - Rate limit exceeded
|
|
33896
|
+
*/
|
|
33897
|
+
429: ErrorResponse;
|
|
33898
|
+
/**
|
|
33899
|
+
* Internal Server Error - Unexpected server error
|
|
33900
|
+
*/
|
|
33901
|
+
500: ErrorResponse;
|
|
33902
|
+
/**
|
|
33903
|
+
* General Error
|
|
33904
|
+
*/
|
|
33905
|
+
default: Errors;
|
|
33906
|
+
};
|
|
33907
|
+
type GetLegalDocumentsForApplicationError = GetLegalDocumentsForApplicationErrors[keyof GetLegalDocumentsForApplicationErrors];
|
|
33908
|
+
type GetLegalDocumentsForApplicationResponses = {
|
|
33909
|
+
/**
|
|
33910
|
+
* Success
|
|
33911
|
+
*/
|
|
33912
|
+
200: {
|
|
33913
|
+
/**
|
|
33914
|
+
* An array of resource objects representing a legal_document
|
|
33915
|
+
*/
|
|
33916
|
+
data?: Array<LegalDocument>;
|
|
33917
|
+
included?: Array<unknown>;
|
|
33918
|
+
meta?: {
|
|
33919
|
+
[key: string]: unknown;
|
|
33920
|
+
};
|
|
33921
|
+
};
|
|
33922
|
+
};
|
|
33923
|
+
type GetLegalDocumentsForApplicationResponse = GetLegalDocumentsForApplicationResponses[keyof GetLegalDocumentsForApplicationResponses];
|
|
32382
33924
|
type PostSearchBatchData = {
|
|
32383
33925
|
/**
|
|
32384
33926
|
* Request body for the /search/batch operation on search resource
|
|
@@ -36545,7 +38087,7 @@ declare const getExtractionBatchesWorkspaceByWorkspaceId: <ThrowOnError extends
|
|
|
36545
38087
|
/**
|
|
36546
38088
|
* Update accept tos
|
|
36547
38089
|
*
|
|
36548
|
-
* Accept Terms of Service
|
|
38090
|
+
* Accept Terms of Service — creates immutable LegalAcceptance audit record
|
|
36549
38091
|
*/
|
|
36550
38092
|
declare const patchUserProfilesByIdAcceptTos: <ThrowOnError extends boolean = false>(options: Options<PatchUserProfilesByIdAcceptTosData, ThrowOnError>) => RequestResult<PatchUserProfilesByIdAcceptTosResponses, PatchUserProfilesByIdAcceptTosErrors, ThrowOnError, "fields">;
|
|
36551
38093
|
/**
|
|
@@ -36760,6 +38302,16 @@ declare const deleteSearchSavedById: <ThrowOnError extends boolean = false>(opti
|
|
|
36760
38302
|
*
|
|
36761
38303
|
*/
|
|
36762
38304
|
declare const patchSearchSavedById: <ThrowOnError extends boolean = false>(options: Options<PatchSearchSavedByIdData, ThrowOnError>) => RequestResult<PatchSearchSavedByIdResponses, PatchSearchSavedByIdErrors, ThrowOnError, "fields">;
|
|
38305
|
+
/**
|
|
38306
|
+
* Update unpublish
|
|
38307
|
+
*
|
|
38308
|
+
* Updates specific fields of an existing resource.
|
|
38309
|
+
*
|
|
38310
|
+
* **Authentication:** Required - Bearer token or API key
|
|
38311
|
+
* **Rate Limit:** 100 requests per minute
|
|
38312
|
+
*
|
|
38313
|
+
*/
|
|
38314
|
+
declare const patchLegalDocumentsByIdUnpublish: <ThrowOnError extends boolean = false>(options: Options<PatchLegalDocumentsByIdUnpublishData, ThrowOnError>) => RequestResult<PatchLegalDocumentsByIdUnpublishResponses, PatchLegalDocumentsByIdUnpublishErrors, ThrowOnError, "fields">;
|
|
36763
38315
|
/**
|
|
36764
38316
|
* Update email
|
|
36765
38317
|
*
|
|
@@ -37060,6 +38612,16 @@ declare const patchAgentsByIdSchemaVersionsByVersionId: <ThrowOnError extends bo
|
|
|
37060
38612
|
*
|
|
37061
38613
|
*/
|
|
37062
38614
|
declare const deleteAiMessagesById: <ThrowOnError extends boolean = false>(options: Options<DeleteAiMessagesByIdData, ThrowOnError>) => RequestResult<DeleteAiMessagesByIdResponses, DeleteAiMessagesByIdErrors, ThrowOnError, "fields">;
|
|
38615
|
+
/**
|
|
38616
|
+
* Get legal acceptances
|
|
38617
|
+
*
|
|
38618
|
+
* Retrieves a single resource by ID.
|
|
38619
|
+
*
|
|
38620
|
+
* **Authentication:** Required - Bearer token or API key
|
|
38621
|
+
* **Rate Limit:** 100 requests per minute
|
|
38622
|
+
*
|
|
38623
|
+
*/
|
|
38624
|
+
declare const getLegalAcceptancesById: <ThrowOnError extends boolean = false>(options: Options<GetLegalAcceptancesByIdData, ThrowOnError>) => RequestResult<GetLegalAcceptancesByIdResponses, GetLegalAcceptancesByIdErrors, ThrowOnError, "fields">;
|
|
37063
38625
|
/**
|
|
37064
38626
|
* Get upload urls
|
|
37065
38627
|
*
|
|
@@ -37346,6 +38908,16 @@ declare const getUsersByEmail: <ThrowOnError extends boolean = false>(options: O
|
|
|
37346
38908
|
*
|
|
37347
38909
|
*/
|
|
37348
38910
|
declare const patchExtractionDocumentsByIdFinishUpload: <ThrowOnError extends boolean = false>(options: Options<PatchExtractionDocumentsByIdFinishUploadData, ThrowOnError>) => RequestResult<PatchExtractionDocumentsByIdFinishUploadResponses, PatchExtractionDocumentsByIdFinishUploadErrors, ThrowOnError, "fields">;
|
|
38911
|
+
/**
|
|
38912
|
+
* Get consent records
|
|
38913
|
+
*
|
|
38914
|
+
* Retrieves a single resource by ID.
|
|
38915
|
+
*
|
|
38916
|
+
* **Authentication:** Required - Bearer token or API key
|
|
38917
|
+
* **Rate Limit:** 100 requests per minute
|
|
38918
|
+
*
|
|
38919
|
+
*/
|
|
38920
|
+
declare const getConsentRecordsById: <ThrowOnError extends boolean = false>(options: Options<GetConsentRecordsByIdData, ThrowOnError>) => RequestResult<GetConsentRecordsByIdResponses, GetConsentRecordsByIdErrors, ThrowOnError, "fields">;
|
|
37349
38921
|
/**
|
|
37350
38922
|
* Get sessions
|
|
37351
38923
|
*
|
|
@@ -37356,6 +38928,16 @@ declare const patchExtractionDocumentsByIdFinishUpload: <ThrowOnError extends bo
|
|
|
37356
38928
|
*
|
|
37357
38929
|
*/
|
|
37358
38930
|
declare const getTrainingSessionsAgentsByAgentIdSessions: <ThrowOnError extends boolean = false>(options: Options<GetTrainingSessionsAgentsByAgentIdSessionsData, ThrowOnError>) => RequestResult<GetTrainingSessionsAgentsByAgentIdSessionsResponses, GetTrainingSessionsAgentsByAgentIdSessionsErrors, ThrowOnError, "fields">;
|
|
38931
|
+
/**
|
|
38932
|
+
* Update publish
|
|
38933
|
+
*
|
|
38934
|
+
* Updates specific fields of an existing resource.
|
|
38935
|
+
*
|
|
38936
|
+
* **Authentication:** Required - Bearer token or API key
|
|
38937
|
+
* **Rate Limit:** 100 requests per minute
|
|
38938
|
+
*
|
|
38939
|
+
*/
|
|
38940
|
+
declare const patchLegalDocumentsByIdPublish: <ThrowOnError extends boolean = false>(options: Options<PatchLegalDocumentsByIdPublishData, ThrowOnError>) => RequestResult<PatchLegalDocumentsByIdPublishResponses, PatchLegalDocumentsByIdPublishErrors, ThrowOnError, "fields">;
|
|
37359
38941
|
/**
|
|
37360
38942
|
* List stats
|
|
37361
38943
|
*
|
|
@@ -37488,6 +39070,16 @@ declare const getNotificationPreferences: <ThrowOnError extends boolean = false>
|
|
|
37488
39070
|
*
|
|
37489
39071
|
*/
|
|
37490
39072
|
declare const postNotificationPreferences: <ThrowOnError extends boolean = false>(options: Options<PostNotificationPreferencesData, ThrowOnError>) => RequestResult<PostNotificationPreferencesResponses, PostNotificationPreferencesErrors, ThrowOnError, "fields">;
|
|
39073
|
+
/**
|
|
39074
|
+
* List legal acceptances
|
|
39075
|
+
*
|
|
39076
|
+
* Lists resources with optional filtering, sorting, and pagination.
|
|
39077
|
+
*
|
|
39078
|
+
* **Authentication:** Required - Bearer token or API key
|
|
39079
|
+
* **Rate Limit:** 100 requests per minute
|
|
39080
|
+
*
|
|
39081
|
+
*/
|
|
39082
|
+
declare const getLegalAcceptances: <ThrowOnError extends boolean = false>(options: Options<GetLegalAcceptancesData, ThrowOnError>) => RequestResult<GetLegalAcceptancesResponses, GetLegalAcceptancesErrors, ThrowOnError, "fields">;
|
|
37491
39083
|
/**
|
|
37492
39084
|
* Update retry
|
|
37493
39085
|
*
|
|
@@ -37734,12 +39326,6 @@ declare const getExtractionResultsDocumentByDocumentId: <ThrowOnError extends bo
|
|
|
37734
39326
|
* Remove a system field from this version's schema
|
|
37735
39327
|
*/
|
|
37736
39328
|
declare const postAgentVersionsByIdRemoveSystemField: <ThrowOnError extends boolean = false>(options: Options<PostAgentVersionsByIdRemoveSystemFieldData, ThrowOnError>) => RequestResult<PostAgentVersionsByIdRemoveSystemFieldResponses, PostAgentVersionsByIdRemoveSystemFieldErrors, ThrowOnError, "fields">;
|
|
37737
|
-
/**
|
|
37738
|
-
* List inherited
|
|
37739
|
-
*
|
|
37740
|
-
* List workspace members including inherited org owners/admins
|
|
37741
|
-
*/
|
|
37742
|
-
declare const getWorkspaceMembershipsInherited: <ThrowOnError extends boolean = false>(options: Options<GetWorkspaceMembershipsInheritedData, ThrowOnError>) => RequestResult<GetWorkspaceMembershipsInheritedResponses, GetWorkspaceMembershipsInheritedErrors, ThrowOnError, "fields">;
|
|
37743
39329
|
/**
|
|
37744
39330
|
* Delete workspaces
|
|
37745
39331
|
*
|
|
@@ -38268,6 +39854,16 @@ declare const postAiSearch: <ThrowOnError extends boolean = false>(options: Opti
|
|
|
38268
39854
|
*
|
|
38269
39855
|
*/
|
|
38270
39856
|
declare const deleteAiGraphNodesById: <ThrowOnError extends boolean = false>(options: Options<DeleteAiGraphNodesByIdData, ThrowOnError>) => RequestResult<DeleteAiGraphNodesByIdResponses, DeleteAiGraphNodesByIdErrors, ThrowOnError, "fields">;
|
|
39857
|
+
/**
|
|
39858
|
+
* List latest
|
|
39859
|
+
*
|
|
39860
|
+
* Lists resources with optional filtering, sorting, and pagination.
|
|
39861
|
+
*
|
|
39862
|
+
* **Authentication:** Required - Bearer token or API key
|
|
39863
|
+
* **Rate Limit:** 100 requests per minute
|
|
39864
|
+
*
|
|
39865
|
+
*/
|
|
39866
|
+
declare const getLegalAcceptancesLatest: <ThrowOnError extends boolean = false>(options: Options<GetLegalAcceptancesLatestData, ThrowOnError>) => RequestResult<GetLegalAcceptancesLatestResponses, GetLegalAcceptancesLatestErrors, ThrowOnError, "fields">;
|
|
38271
39867
|
/**
|
|
38272
39868
|
* List shared
|
|
38273
39869
|
*
|
|
@@ -38364,6 +39960,16 @@ declare const patchUsersByIdConfirmEmail: <ThrowOnError extends boolean = false>
|
|
|
38364
39960
|
*
|
|
38365
39961
|
*/
|
|
38366
39962
|
declare const getThreadsSearch: <ThrowOnError extends boolean = false>(options: Options<GetThreadsSearchData, ThrowOnError>) => RequestResult<GetThreadsSearchResponses, GetThreadsSearchErrors, ThrowOnError, "fields">;
|
|
39963
|
+
/**
|
|
39964
|
+
* List active
|
|
39965
|
+
*
|
|
39966
|
+
* Lists resources with optional filtering, sorting, and pagination.
|
|
39967
|
+
*
|
|
39968
|
+
* **Authentication:** Required - Bearer token or API key
|
|
39969
|
+
* **Rate Limit:** 100 requests per minute
|
|
39970
|
+
*
|
|
39971
|
+
*/
|
|
39972
|
+
declare const getConsentRecordsActive: <ThrowOnError extends boolean = false>(options: Options<GetConsentRecordsActiveData, ThrowOnError>) => RequestResult<GetConsentRecordsActiveResponses, GetConsentRecordsActiveErrors, ThrowOnError, "fields">;
|
|
38367
39973
|
/**
|
|
38368
39974
|
* Create run
|
|
38369
39975
|
*
|
|
@@ -38456,6 +40062,16 @@ declare const postWebhookDeliveriesBulkRetry: <ThrowOnError extends boolean = fa
|
|
|
38456
40062
|
*
|
|
38457
40063
|
*/
|
|
38458
40064
|
declare const patchNotificationMethodsByIdSendVerification: <ThrowOnError extends boolean = false>(options: Options<PatchNotificationMethodsByIdSendVerificationData, ThrowOnError>) => RequestResult<PatchNotificationMethodsByIdSendVerificationResponses, PatchNotificationMethodsByIdSendVerificationErrors, ThrowOnError, "fields">;
|
|
40065
|
+
/**
|
|
40066
|
+
* List by locale
|
|
40067
|
+
*
|
|
40068
|
+
* Lists resources with optional filtering, sorting, and pagination.
|
|
40069
|
+
*
|
|
40070
|
+
* **Authentication:** Required - Bearer token or API key
|
|
40071
|
+
* **Rate Limit:** 100 requests per minute
|
|
40072
|
+
*
|
|
40073
|
+
*/
|
|
40074
|
+
declare const getLegalDocumentsByLocale: <ThrowOnError extends boolean = false>(options: Options<GetLegalDocumentsByLocaleData, ThrowOnError>) => RequestResult<GetLegalDocumentsByLocaleResponses, GetLegalDocumentsByLocaleErrors, ThrowOnError, "fields">;
|
|
38459
40075
|
/**
|
|
38460
40076
|
* Update grant credits
|
|
38461
40077
|
*
|
|
@@ -38534,6 +40150,16 @@ declare const postUsersAuthLogin: <ThrowOnError extends boolean = false>(options
|
|
|
38534
40150
|
*
|
|
38535
40151
|
*/
|
|
38536
40152
|
declare const postAiEmbed: <ThrowOnError extends boolean = false>(options: Options<PostAiEmbedData, ThrowOnError>) => RequestResult<PostAiEmbedResponses, PostAiEmbedErrors, ThrowOnError, "fields">;
|
|
40153
|
+
/**
|
|
40154
|
+
* Update withdraw
|
|
40155
|
+
*
|
|
40156
|
+
* Updates specific fields of an existing resource.
|
|
40157
|
+
*
|
|
40158
|
+
* **Authentication:** Required - Bearer token or API key
|
|
40159
|
+
* **Rate Limit:** 100 requests per minute
|
|
40160
|
+
*
|
|
40161
|
+
*/
|
|
40162
|
+
declare const patchConsentRecordsByIdWithdraw: <ThrowOnError extends boolean = false>(options: Options<PatchConsentRecordsByIdWithdrawData, ThrowOnError>) => RequestResult<PatchConsentRecordsByIdWithdrawResponses, PatchConsentRecordsByIdWithdrawErrors, ThrowOnError, "fields">;
|
|
38537
40163
|
/**
|
|
38538
40164
|
* Create agent version comparisons
|
|
38539
40165
|
*
|
|
@@ -38562,6 +40188,12 @@ declare const getWorkspacesMine: <ThrowOnError extends boolean = false>(options:
|
|
|
38562
40188
|
* Create an ISV tenant with initial credits
|
|
38563
40189
|
*/
|
|
38564
40190
|
declare const postTenantsIsv: <ThrowOnError extends boolean = false>(options: Options<PostTenantsIsvData, ThrowOnError>) => RequestResult<PostTenantsIsvResponses, PostTenantsIsvErrors, ThrowOnError, "fields">;
|
|
40191
|
+
/**
|
|
40192
|
+
* Update accept privacy policy
|
|
40193
|
+
*
|
|
40194
|
+
* Accept Privacy Policy — creates immutable LegalAcceptance audit record
|
|
40195
|
+
*/
|
|
40196
|
+
declare const patchUserProfilesByIdAcceptPrivacyPolicy: <ThrowOnError extends boolean = false>(options: Options<PatchUserProfilesByIdAcceptPrivacyPolicyData, ThrowOnError>) => RequestResult<PatchUserProfilesByIdAcceptPrivacyPolicyResponses, PatchUserProfilesByIdAcceptPrivacyPolicyErrors, ThrowOnError, "fields">;
|
|
38565
40197
|
/**
|
|
38566
40198
|
* Create register with oidc
|
|
38567
40199
|
*
|
|
@@ -38962,6 +40594,26 @@ declare const getApiKeysActive: <ThrowOnError extends boolean = false>(options:
|
|
|
38962
40594
|
*
|
|
38963
40595
|
*/
|
|
38964
40596
|
declare const patchExtractionResultsByIdSaveCorrections: <ThrowOnError extends boolean = false>(options: Options<PatchExtractionResultsByIdSaveCorrectionsData, ThrowOnError>) => RequestResult<PatchExtractionResultsByIdSaveCorrectionsResponses, PatchExtractionResultsByIdSaveCorrectionsErrors, ThrowOnError, "fields">;
|
|
40597
|
+
/**
|
|
40598
|
+
* List consent records
|
|
40599
|
+
*
|
|
40600
|
+
* Lists resources with optional filtering, sorting, and pagination.
|
|
40601
|
+
*
|
|
40602
|
+
* **Authentication:** Required - Bearer token or API key
|
|
40603
|
+
* **Rate Limit:** 100 requests per minute
|
|
40604
|
+
*
|
|
40605
|
+
*/
|
|
40606
|
+
declare const getConsentRecords: <ThrowOnError extends boolean = false>(options: Options<GetConsentRecordsData, ThrowOnError>) => RequestResult<GetConsentRecordsResponses, GetConsentRecordsErrors, ThrowOnError, "fields">;
|
|
40607
|
+
/**
|
|
40608
|
+
* Create consent records
|
|
40609
|
+
*
|
|
40610
|
+
* Creates a new resource. Returns the created resource with generated ID.
|
|
40611
|
+
*
|
|
40612
|
+
* **Authentication:** Required - Bearer token or API key
|
|
40613
|
+
* **Rate Limit:** 100 requests per minute
|
|
40614
|
+
*
|
|
40615
|
+
*/
|
|
40616
|
+
declare const postConsentRecords: <ThrowOnError extends boolean = false>(options: Options<PostConsentRecordsData, ThrowOnError>) => RequestResult<PostConsentRecordsResponses, PostConsentRecordsErrors, ThrowOnError, "fields">;
|
|
38965
40617
|
/**
|
|
38966
40618
|
* List activity
|
|
38967
40619
|
*
|
|
@@ -39058,6 +40710,36 @@ declare const postThreadsByIdSummarize: <ThrowOnError extends boolean = false>(o
|
|
|
39058
40710
|
*
|
|
39059
40711
|
*/
|
|
39060
40712
|
declare const patchConfigsByKey: <ThrowOnError extends boolean = false>(options: Options<PatchConfigsByKeyData, ThrowOnError>) => RequestResult<PatchConfigsByKeyResponses, PatchConfigsByKeyErrors, ThrowOnError, "fields">;
|
|
40713
|
+
/**
|
|
40714
|
+
* Delete legal documents
|
|
40715
|
+
*
|
|
40716
|
+
* Deletes a resource permanently. This action cannot be undone.
|
|
40717
|
+
*
|
|
40718
|
+
* **Authentication:** Required - Bearer token or API key
|
|
40719
|
+
* **Rate Limit:** 100 requests per minute
|
|
40720
|
+
*
|
|
40721
|
+
*/
|
|
40722
|
+
declare const deleteLegalDocumentsById: <ThrowOnError extends boolean = false>(options: Options<DeleteLegalDocumentsByIdData, ThrowOnError>) => RequestResult<DeleteLegalDocumentsByIdResponses, DeleteLegalDocumentsByIdErrors, ThrowOnError, "fields">;
|
|
40723
|
+
/**
|
|
40724
|
+
* Get legal documents
|
|
40725
|
+
*
|
|
40726
|
+
* Retrieves a single resource by ID.
|
|
40727
|
+
*
|
|
40728
|
+
* **Authentication:** Required - Bearer token or API key
|
|
40729
|
+
* **Rate Limit:** 100 requests per minute
|
|
40730
|
+
*
|
|
40731
|
+
*/
|
|
40732
|
+
declare const getLegalDocumentsById: <ThrowOnError extends boolean = false>(options: Options<GetLegalDocumentsByIdData, ThrowOnError>) => RequestResult<GetLegalDocumentsByIdResponses, GetLegalDocumentsByIdErrors, ThrowOnError, "fields">;
|
|
40733
|
+
/**
|
|
40734
|
+
* Update legal documents
|
|
40735
|
+
*
|
|
40736
|
+
* Updates specific fields of an existing resource.
|
|
40737
|
+
*
|
|
40738
|
+
* **Authentication:** Required - Bearer token or API key
|
|
40739
|
+
* **Rate Limit:** 100 requests per minute
|
|
40740
|
+
*
|
|
40741
|
+
*/
|
|
40742
|
+
declare const patchLegalDocumentsById: <ThrowOnError extends boolean = false>(options: Options<PatchLegalDocumentsByIdData, ThrowOnError>) => RequestResult<PatchLegalDocumentsByIdResponses, PatchLegalDocumentsByIdErrors, ThrowOnError, "fields">;
|
|
39061
40743
|
/**
|
|
39062
40744
|
* List results
|
|
39063
40745
|
*
|
|
@@ -39074,6 +40756,26 @@ declare const getExtractionResults: <ThrowOnError extends boolean = false>(optio
|
|
|
39074
40756
|
* Clone the agent to a new one with a new name
|
|
39075
40757
|
*/
|
|
39076
40758
|
declare const postAgentsByIdClone: <ThrowOnError extends boolean = false>(options: Options<PostAgentsByIdCloneData, ThrowOnError>) => RequestResult<PostAgentsByIdCloneResponses, PostAgentsByIdCloneErrors, ThrowOnError, "fields">;
|
|
40759
|
+
/**
|
|
40760
|
+
* List legal documents
|
|
40761
|
+
*
|
|
40762
|
+
* Lists resources with optional filtering, sorting, and pagination.
|
|
40763
|
+
*
|
|
40764
|
+
* **Authentication:** Required - Bearer token or API key
|
|
40765
|
+
* **Rate Limit:** 100 requests per minute
|
|
40766
|
+
*
|
|
40767
|
+
*/
|
|
40768
|
+
declare const getLegalDocuments: <ThrowOnError extends boolean = false>(options: Options<GetLegalDocumentsData, ThrowOnError>) => RequestResult<GetLegalDocumentsResponses, GetLegalDocumentsErrors, ThrowOnError, "fields">;
|
|
40769
|
+
/**
|
|
40770
|
+
* Create legal documents
|
|
40771
|
+
*
|
|
40772
|
+
* Creates a new resource. Returns the created resource with generated ID.
|
|
40773
|
+
*
|
|
40774
|
+
* **Authentication:** Required - Bearer token or API key
|
|
40775
|
+
* **Rate Limit:** 100 requests per minute
|
|
40776
|
+
*
|
|
40777
|
+
*/
|
|
40778
|
+
declare const postLegalDocuments: <ThrowOnError extends boolean = false>(options: Options<PostLegalDocumentsData, ThrowOnError>) => RequestResult<PostLegalDocumentsResponses, PostLegalDocumentsErrors, ThrowOnError, "fields">;
|
|
39077
40779
|
/**
|
|
39078
40780
|
* Delete conversations
|
|
39079
40781
|
*
|
|
@@ -39124,6 +40826,12 @@ declare const getInvitationsMe: <ThrowOnError extends boolean = false>(options:
|
|
|
39124
40826
|
*
|
|
39125
40827
|
*/
|
|
39126
40828
|
declare const getAgentVersionsByIdRevisions: <ThrowOnError extends boolean = false>(options: Options<GetAgentVersionsByIdRevisionsData, ThrowOnError>) => RequestResult<GetAgentVersionsByIdRevisionsResponses, GetAgentVersionsByIdRevisionsErrors, ThrowOnError, "fields">;
|
|
40829
|
+
/**
|
|
40830
|
+
* List for application
|
|
40831
|
+
*
|
|
40832
|
+
* Returns active documents for a specific application (platform + app-scoped)
|
|
40833
|
+
*/
|
|
40834
|
+
declare const getLegalDocumentsForApplication: <ThrowOnError extends boolean = false>(options: Options<GetLegalDocumentsForApplicationData, ThrowOnError>) => RequestResult<GetLegalDocumentsForApplicationResponses, GetLegalDocumentsForApplicationErrors, ThrowOnError, "fields">;
|
|
39127
40835
|
/**
|
|
39128
40836
|
* Create batch
|
|
39129
40837
|
*
|
|
@@ -39937,6 +41645,7 @@ declare const gptCore: {
|
|
|
39937
41645
|
postAgentsByIdPublishVersion: <ThrowOnError extends boolean = false>(options: Options<PostAgentsByIdPublishVersionData, ThrowOnError>) => RequestResult<PostAgentsByIdPublishVersionResponses, PostAgentsByIdPublishVersionErrors, ThrowOnError, "fields">;
|
|
39938
41646
|
deleteSearchSavedById: <ThrowOnError extends boolean = false>(options: Options<DeleteSearchSavedByIdData, ThrowOnError>) => RequestResult<DeleteSearchSavedByIdResponses, DeleteSearchSavedByIdErrors, ThrowOnError, "fields">;
|
|
39939
41647
|
patchSearchSavedById: <ThrowOnError extends boolean = false>(options: Options<PatchSearchSavedByIdData, ThrowOnError>) => RequestResult<PatchSearchSavedByIdResponses, PatchSearchSavedByIdErrors, ThrowOnError, "fields">;
|
|
41648
|
+
patchLegalDocumentsByIdUnpublish: <ThrowOnError extends boolean = false>(options: Options<PatchLegalDocumentsByIdUnpublishData, ThrowOnError>) => RequestResult<PatchLegalDocumentsByIdUnpublishResponses, PatchLegalDocumentsByIdUnpublishErrors, ThrowOnError, "fields">;
|
|
39940
41649
|
patchUsersByIdAdminEmail: <ThrowOnError extends boolean = false>(options: Options<PatchUsersByIdAdminEmailData, ThrowOnError>) => RequestResult<PatchUsersByIdAdminEmailResponses, PatchUsersByIdAdminEmailErrors, ThrowOnError, "fields">;
|
|
39941
41650
|
postUsersAuthMagicLinkLogin: <ThrowOnError extends boolean = false>(options: Options<PostUsersAuthMagicLinkLoginData, ThrowOnError>) => RequestResult<PostUsersAuthMagicLinkLoginResponses, PostUsersAuthMagicLinkLoginErrors, ThrowOnError, "fields">;
|
|
39942
41651
|
getExtractionDocumentsWorkspaceByWorkspaceIdTrained: <ThrowOnError extends boolean = false>(options: Options<GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedData, ThrowOnError>) => RequestResult<GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponses, GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedErrors, ThrowOnError, "fields">;
|
|
@@ -39971,6 +41680,7 @@ declare const gptCore: {
|
|
|
39971
41680
|
getSearchSuggest: <ThrowOnError extends boolean = false>(options: Options<GetSearchSuggestData, ThrowOnError>) => RequestResult<GetSearchSuggestResponses, GetSearchSuggestErrors, ThrowOnError, "fields">;
|
|
39972
41681
|
patchAgentsByIdSchemaVersionsByVersionId: <ThrowOnError extends boolean = false>(options: Options<PatchAgentsByIdSchemaVersionsByVersionIdData, ThrowOnError>) => RequestResult<PatchAgentsByIdSchemaVersionsByVersionIdResponses, PatchAgentsByIdSchemaVersionsByVersionIdErrors, ThrowOnError, "fields">;
|
|
39973
41682
|
deleteAiMessagesById: <ThrowOnError extends boolean = false>(options: Options<DeleteAiMessagesByIdData, ThrowOnError>) => RequestResult<DeleteAiMessagesByIdResponses, DeleteAiMessagesByIdErrors, ThrowOnError, "fields">;
|
|
41683
|
+
getLegalAcceptancesById: <ThrowOnError extends boolean = false>(options: Options<GetLegalAcceptancesByIdData, ThrowOnError>) => RequestResult<GetLegalAcceptancesByIdResponses, GetLegalAcceptancesByIdErrors, ThrowOnError, "fields">;
|
|
39974
41684
|
getExtractionBatchesByIdUploadUrls: <ThrowOnError extends boolean = false>(options: Options<GetExtractionBatchesByIdUploadUrlsData, ThrowOnError>) => RequestResult<GetExtractionBatchesByIdUploadUrlsResponses, GetExtractionBatchesByIdUploadUrlsErrors, ThrowOnError, "fields">;
|
|
39975
41685
|
postAiChunksSearch: <ThrowOnError extends boolean = false>(options: Options<PostAiChunksSearchData, ThrowOnError>) => RequestResult<PostAiChunksSearchResponses, PostAiChunksSearchErrors, ThrowOnError, "fields">;
|
|
39976
41686
|
postAgentVersionsByIdAddSystemField: <ThrowOnError extends boolean = false>(options: Options<PostAgentVersionsByIdAddSystemFieldData, ThrowOnError>) => RequestResult<PostAgentVersionsByIdAddSystemFieldResponses, PostAgentVersionsByIdAddSystemFieldErrors, ThrowOnError, "fields">;
|
|
@@ -40004,7 +41714,9 @@ declare const gptCore: {
|
|
|
40004
41714
|
getNotificationLogsById: <ThrowOnError extends boolean = false>(options: Options<GetNotificationLogsByIdData, ThrowOnError>) => RequestResult<GetNotificationLogsByIdResponses, GetNotificationLogsByIdErrors, ThrowOnError, "fields">;
|
|
40005
41715
|
getUsersByEmail: <ThrowOnError extends boolean = false>(options: Options<GetUsersByEmailData, ThrowOnError>) => RequestResult<GetUsersByEmailResponses, GetUsersByEmailErrors, ThrowOnError, "fields">;
|
|
40006
41716
|
patchExtractionDocumentsByIdFinishUpload: <ThrowOnError extends boolean = false>(options: Options<PatchExtractionDocumentsByIdFinishUploadData, ThrowOnError>) => RequestResult<PatchExtractionDocumentsByIdFinishUploadResponses, PatchExtractionDocumentsByIdFinishUploadErrors, ThrowOnError, "fields">;
|
|
41717
|
+
getConsentRecordsById: <ThrowOnError extends boolean = false>(options: Options<GetConsentRecordsByIdData, ThrowOnError>) => RequestResult<GetConsentRecordsByIdResponses, GetConsentRecordsByIdErrors, ThrowOnError, "fields">;
|
|
40007
41718
|
getTrainingSessionsAgentsByAgentIdSessions: <ThrowOnError extends boolean = false>(options: Options<GetTrainingSessionsAgentsByAgentIdSessionsData, ThrowOnError>) => RequestResult<GetTrainingSessionsAgentsByAgentIdSessionsResponses, GetTrainingSessionsAgentsByAgentIdSessionsErrors, ThrowOnError, "fields">;
|
|
41719
|
+
patchLegalDocumentsByIdPublish: <ThrowOnError extends boolean = false>(options: Options<PatchLegalDocumentsByIdPublishData, ThrowOnError>) => RequestResult<PatchLegalDocumentsByIdPublishResponses, PatchLegalDocumentsByIdPublishErrors, ThrowOnError, "fields">;
|
|
40008
41720
|
getApiKeysStats: <ThrowOnError extends boolean = false>(options: Options<GetApiKeysStatsData, ThrowOnError>) => RequestResult<GetApiKeysStatsResponses, GetApiKeysStatsErrors, ThrowOnError, "fields">;
|
|
40009
41721
|
getSearch: <ThrowOnError extends boolean = false>(options: Options<GetSearchData, ThrowOnError>) => RequestResult<GetSearchResponses, GetSearchErrors, ThrowOnError, "fields">;
|
|
40010
41722
|
postAgentsDiscoverSchema: <ThrowOnError extends boolean = false>(options: Options<PostAgentsDiscoverSchemaData, ThrowOnError>) => RequestResult<PostAgentsDiscoverSchemaResponses, PostAgentsDiscoverSchemaErrors, ThrowOnError, "fields">;
|
|
@@ -40019,6 +41731,7 @@ declare const gptCore: {
|
|
|
40019
41731
|
postApplications: <ThrowOnError extends boolean = false>(options: Options<PostApplicationsData, ThrowOnError>) => RequestResult<PostApplicationsResponses, PostApplicationsErrors, ThrowOnError, "fields">;
|
|
40020
41732
|
getNotificationPreferences: <ThrowOnError extends boolean = false>(options: Options<GetNotificationPreferencesData, ThrowOnError>) => RequestResult<GetNotificationPreferencesResponses, GetNotificationPreferencesErrors, ThrowOnError, "fields">;
|
|
40021
41733
|
postNotificationPreferences: <ThrowOnError extends boolean = false>(options: Options<PostNotificationPreferencesData, ThrowOnError>) => RequestResult<PostNotificationPreferencesResponses, PostNotificationPreferencesErrors, ThrowOnError, "fields">;
|
|
41734
|
+
getLegalAcceptances: <ThrowOnError extends boolean = false>(options: Options<GetLegalAcceptancesData, ThrowOnError>) => RequestResult<GetLegalAcceptancesResponses, GetLegalAcceptancesErrors, ThrowOnError, "fields">;
|
|
40022
41735
|
patchWatcherClaimsByIdRetry: <ThrowOnError extends boolean = false>(options: Options<PatchWatcherClaimsByIdRetryData, ThrowOnError>) => RequestResult<PatchWatcherClaimsByIdRetryResponses, PatchWatcherClaimsByIdRetryErrors, ThrowOnError, "fields">;
|
|
40023
41736
|
postAgentsPredict: <ThrowOnError extends boolean = false>(options: Options<PostAgentsPredictData, ThrowOnError>) => RequestResult<PostAgentsPredictResponses, PostAgentsPredictErrors, ThrowOnError, "fields">;
|
|
40024
41737
|
patchExtractionDocumentsByIdReprocess: <ThrowOnError extends boolean = false>(options: Options<PatchExtractionDocumentsByIdReprocessData, ThrowOnError>) => RequestResult<PatchExtractionDocumentsByIdReprocessResponses, PatchExtractionDocumentsByIdReprocessErrors, ThrowOnError, "fields">;
|
|
@@ -40048,7 +41761,6 @@ declare const gptCore: {
|
|
|
40048
41761
|
postUsersRegisterIsv: <ThrowOnError extends boolean = false>(options: Options<PostUsersRegisterIsvData, ThrowOnError>) => RequestResult<PostUsersRegisterIsvResponses, PostUsersRegisterIsvErrors, ThrowOnError, "fields">;
|
|
40049
41762
|
getExtractionResultsDocumentByDocumentId: <ThrowOnError extends boolean = false>(options: Options<GetExtractionResultsDocumentByDocumentIdData, ThrowOnError>) => RequestResult<GetExtractionResultsDocumentByDocumentIdResponses, GetExtractionResultsDocumentByDocumentIdErrors, ThrowOnError, "fields">;
|
|
40050
41763
|
postAgentVersionsByIdRemoveSystemField: <ThrowOnError extends boolean = false>(options: Options<PostAgentVersionsByIdRemoveSystemFieldData, ThrowOnError>) => RequestResult<PostAgentVersionsByIdRemoveSystemFieldResponses, PostAgentVersionsByIdRemoveSystemFieldErrors, ThrowOnError, "fields">;
|
|
40051
|
-
getWorkspaceMembershipsInherited: <ThrowOnError extends boolean = false>(options: Options<GetWorkspaceMembershipsInheritedData, ThrowOnError>) => RequestResult<GetWorkspaceMembershipsInheritedResponses, GetWorkspaceMembershipsInheritedErrors, ThrowOnError, "fields">;
|
|
40052
41764
|
deleteWorkspacesById: <ThrowOnError extends boolean = false>(options: Options<DeleteWorkspacesByIdData, ThrowOnError>) => RequestResult<DeleteWorkspacesByIdResponses, DeleteWorkspacesByIdErrors, ThrowOnError, "fields">;
|
|
40053
41765
|
getWorkspacesById: <ThrowOnError extends boolean = false>(options: Options<GetWorkspacesByIdData, ThrowOnError>) => RequestResult<GetWorkspacesByIdResponses, GetWorkspacesByIdErrors, ThrowOnError, "fields">;
|
|
40054
41766
|
patchWorkspacesById: <ThrowOnError extends boolean = false>(options: Options<PatchWorkspacesByIdData, ThrowOnError>) => RequestResult<PatchWorkspacesByIdResponses, PatchWorkspacesByIdErrors, ThrowOnError, "fields">;
|
|
@@ -40107,6 +41819,7 @@ declare const gptCore: {
|
|
|
40107
41819
|
postAiConversations: <ThrowOnError extends boolean = false>(options: Options<PostAiConversationsData, ThrowOnError>) => RequestResult<PostAiConversationsResponses, PostAiConversationsErrors, ThrowOnError, "fields">;
|
|
40108
41820
|
postAiSearch: <ThrowOnError extends boolean = false>(options: Options<PostAiSearchData, ThrowOnError>) => RequestResult<PostAiSearchResponses, PostAiSearchErrors, ThrowOnError, "fields">;
|
|
40109
41821
|
deleteAiGraphNodesById: <ThrowOnError extends boolean = false>(options: Options<DeleteAiGraphNodesByIdData, ThrowOnError>) => RequestResult<DeleteAiGraphNodesByIdResponses, DeleteAiGraphNodesByIdErrors, ThrowOnError, "fields">;
|
|
41822
|
+
getLegalAcceptancesLatest: <ThrowOnError extends boolean = false>(options: Options<GetLegalAcceptancesLatestData, ThrowOnError>) => RequestResult<GetLegalAcceptancesLatestResponses, GetLegalAcceptancesLatestErrors, ThrowOnError, "fields">;
|
|
40110
41823
|
getWorkspacesShared: <ThrowOnError extends boolean = false>(options: Options<GetWorkspacesSharedData, ThrowOnError>) => RequestResult<GetWorkspacesSharedResponses, GetWorkspacesSharedErrors, ThrowOnError, "fields">;
|
|
40111
41824
|
patchUserProfilesByIdDismissWelcome: <ThrowOnError extends boolean = false>(options: Options<PatchUserProfilesByIdDismissWelcomeData, ThrowOnError>) => RequestResult<PatchUserProfilesByIdDismissWelcomeResponses, PatchUserProfilesByIdDismissWelcomeErrors, ThrowOnError, "fields">;
|
|
40112
41825
|
patchWalletAddonsByAddonSlugCancel: <ThrowOnError extends boolean = false>(options: Options<PatchWalletAddonsByAddonSlugCancelData, ThrowOnError>) => RequestResult<PatchWalletAddonsByAddonSlugCancelResponses, PatchWalletAddonsByAddonSlugCancelErrors, ThrowOnError, "fields">;
|
|
@@ -40119,6 +41832,7 @@ declare const gptCore: {
|
|
|
40119
41832
|
getTransactions: <ThrowOnError extends boolean = false>(options: Options<GetTransactionsData, ThrowOnError>) => RequestResult<GetTransactionsResponses, GetTransactionsErrors, ThrowOnError, "fields">;
|
|
40120
41833
|
patchUsersByIdConfirmEmail: <ThrowOnError extends boolean = false>(options: Options<PatchUsersByIdConfirmEmailData, ThrowOnError>) => RequestResult<PatchUsersByIdConfirmEmailResponses, PatchUsersByIdConfirmEmailErrors, ThrowOnError, "fields">;
|
|
40121
41834
|
getThreadsSearch: <ThrowOnError extends boolean = false>(options: Options<GetThreadsSearchData, ThrowOnError>) => RequestResult<GetThreadsSearchResponses, GetThreadsSearchErrors, ThrowOnError, "fields">;
|
|
41835
|
+
getConsentRecordsActive: <ThrowOnError extends boolean = false>(options: Options<GetConsentRecordsActiveData, ThrowOnError>) => RequestResult<GetConsentRecordsActiveResponses, GetConsentRecordsActiveErrors, ThrowOnError, "fields">;
|
|
40122
41836
|
postSearchSavedByIdRun: <ThrowOnError extends boolean = false>(options: Options<PostSearchSavedByIdRunData, ThrowOnError>) => RequestResult<PostSearchSavedByIdRunResponses, PostSearchSavedByIdRunErrors, ThrowOnError, "fields">;
|
|
40123
41837
|
patchWalletPlan: <ThrowOnError extends boolean = false>(options: Options<PatchWalletPlanData, ThrowOnError>) => RequestResult<PatchWalletPlanResponses, PatchWalletPlanErrors, ThrowOnError, "fields">;
|
|
40124
41838
|
postWebhookConfigsBulkEnable: <ThrowOnError extends boolean = false>(options: Options<PostWebhookConfigsBulkEnableData, ThrowOnError>) => RequestResult<PostWebhookConfigsBulkEnableResponses, PostWebhookConfigsBulkEnableErrors, ThrowOnError, "fields">;
|
|
@@ -40129,6 +41843,7 @@ declare const gptCore: {
|
|
|
40129
41843
|
getPermissions: <ThrowOnError extends boolean = false>(options: Options<GetPermissionsData, ThrowOnError>) => RequestResult<GetPermissionsResponses, GetPermissionsErrors, ThrowOnError, "fields">;
|
|
40130
41844
|
postWebhookDeliveriesBulkRetry: <ThrowOnError extends boolean = false>(options: Options<PostWebhookDeliveriesBulkRetryData, ThrowOnError>) => RequestResult<PostWebhookDeliveriesBulkRetryResponses, PostWebhookDeliveriesBulkRetryErrors, ThrowOnError, "fields">;
|
|
40131
41845
|
patchNotificationMethodsByIdSendVerification: <ThrowOnError extends boolean = false>(options: Options<PatchNotificationMethodsByIdSendVerificationData, ThrowOnError>) => RequestResult<PatchNotificationMethodsByIdSendVerificationResponses, PatchNotificationMethodsByIdSendVerificationErrors, ThrowOnError, "fields">;
|
|
41846
|
+
getLegalDocumentsByLocale: <ThrowOnError extends boolean = false>(options: Options<GetLegalDocumentsByLocaleData, ThrowOnError>) => RequestResult<GetLegalDocumentsByLocaleResponses, GetLegalDocumentsByLocaleErrors, ThrowOnError, "fields">;
|
|
40132
41847
|
patchApplicationsByIdGrantCredits: <ThrowOnError extends boolean = false>(options: Options<PatchApplicationsByIdGrantCreditsData, ThrowOnError>) => RequestResult<PatchApplicationsByIdGrantCreditsResponses, PatchApplicationsByIdGrantCreditsErrors, ThrowOnError, "fields">;
|
|
40133
41848
|
getSearchStatus: <ThrowOnError extends boolean = false>(options: Options<GetSearchStatusData, ThrowOnError>) => RequestResult<GetSearchStatusResponses, GetSearchStatusErrors, ThrowOnError, "fields">;
|
|
40134
41849
|
patchUserProfilesByIdDismissAnnouncement: <ThrowOnError extends boolean = false>(options: Options<PatchUserProfilesByIdDismissAnnouncementData, ThrowOnError>) => RequestResult<PatchUserProfilesByIdDismissAnnouncementResponses, PatchUserProfilesByIdDismissAnnouncementErrors, ThrowOnError, "fields">;
|
|
@@ -40138,10 +41853,12 @@ declare const gptCore: {
|
|
|
40138
41853
|
patchWatcherClaimsById: <ThrowOnError extends boolean = false>(options: Options<PatchWatcherClaimsByIdData, ThrowOnError>) => RequestResult<PatchWatcherClaimsByIdResponses, PatchWatcherClaimsByIdErrors, ThrowOnError, "fields">;
|
|
40139
41854
|
postUsersAuthLogin: <ThrowOnError extends boolean = false>(options: Options<PostUsersAuthLoginData, ThrowOnError>) => RequestResult<PostUsersAuthLoginResponses, PostUsersAuthLoginErrors, ThrowOnError, "fields">;
|
|
40140
41855
|
postAiEmbed: <ThrowOnError extends boolean = false>(options: Options<PostAiEmbedData, ThrowOnError>) => RequestResult<PostAiEmbedResponses, PostAiEmbedErrors, ThrowOnError, "fields">;
|
|
41856
|
+
patchConsentRecordsByIdWithdraw: <ThrowOnError extends boolean = false>(options: Options<PatchConsentRecordsByIdWithdrawData, ThrowOnError>) => RequestResult<PatchConsentRecordsByIdWithdrawResponses, PatchConsentRecordsByIdWithdrawErrors, ThrowOnError, "fields">;
|
|
40141
41857
|
postAgentVersionComparisons: <ThrowOnError extends boolean = false>(options: Options<PostAgentVersionComparisonsData, ThrowOnError>) => RequestResult<PostAgentVersionComparisonsResponses, PostAgentVersionComparisonsErrors, ThrowOnError, "fields">;
|
|
40142
41858
|
getExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatus: <ThrowOnError extends boolean = false>(options: Options<GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusData, ThrowOnError>) => RequestResult<GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponses, GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusErrors, ThrowOnError, "fields">;
|
|
40143
41859
|
getWorkspacesMine: <ThrowOnError extends boolean = false>(options: Options<GetWorkspacesMineData, ThrowOnError>) => RequestResult<GetWorkspacesMineResponses, GetWorkspacesMineErrors, ThrowOnError, "fields">;
|
|
40144
41860
|
postTenantsIsv: <ThrowOnError extends boolean = false>(options: Options<PostTenantsIsvData, ThrowOnError>) => RequestResult<PostTenantsIsvResponses, PostTenantsIsvErrors, ThrowOnError, "fields">;
|
|
41861
|
+
patchUserProfilesByIdAcceptPrivacyPolicy: <ThrowOnError extends boolean = false>(options: Options<PatchUserProfilesByIdAcceptPrivacyPolicyData, ThrowOnError>) => RequestResult<PatchUserProfilesByIdAcceptPrivacyPolicyResponses, PatchUserProfilesByIdAcceptPrivacyPolicyErrors, ThrowOnError, "fields">;
|
|
40145
41862
|
postUsersAuthRegisterWithOidc: <ThrowOnError extends boolean = false>(options: Options<PostUsersAuthRegisterWithOidcData, ThrowOnError>) => RequestResult<PostUsersAuthRegisterWithOidcResponses, PostUsersAuthRegisterWithOidcErrors, ThrowOnError, "fields">;
|
|
40146
41863
|
postSearchReindex: <ThrowOnError extends boolean = false>(options: Options<PostSearchReindexData, ThrowOnError>) => RequestResult<PostSearchReindexResponses, PostSearchReindexErrors, ThrowOnError, "fields">;
|
|
40147
41864
|
patchExtractionResultsByIdRegenerate: <ThrowOnError extends boolean = false>(options: Options<PatchExtractionResultsByIdRegenerateData, ThrowOnError>) => RequestResult<PatchExtractionResultsByIdRegenerateResponses, PatchExtractionResultsByIdRegenerateErrors, ThrowOnError, "fields">;
|
|
@@ -40186,6 +41903,8 @@ declare const gptCore: {
|
|
|
40186
41903
|
patchTenantMembershipsByTenantIdByUserId: <ThrowOnError extends boolean = false>(options: Options<PatchTenantMembershipsByTenantIdByUserIdData, ThrowOnError>) => RequestResult<PatchTenantMembershipsByTenantIdByUserIdResponses, PatchTenantMembershipsByTenantIdByUserIdErrors, ThrowOnError, "fields">;
|
|
40187
41904
|
getApiKeysActive: <ThrowOnError extends boolean = false>(options: Options<GetApiKeysActiveData, ThrowOnError>) => RequestResult<GetApiKeysActiveResponses, GetApiKeysActiveErrors, ThrowOnError, "fields">;
|
|
40188
41905
|
patchExtractionResultsByIdSaveCorrections: <ThrowOnError extends boolean = false>(options: Options<PatchExtractionResultsByIdSaveCorrectionsData, ThrowOnError>) => RequestResult<PatchExtractionResultsByIdSaveCorrectionsResponses, PatchExtractionResultsByIdSaveCorrectionsErrors, ThrowOnError, "fields">;
|
|
41906
|
+
getConsentRecords: <ThrowOnError extends boolean = false>(options: Options<GetConsentRecordsData, ThrowOnError>) => RequestResult<GetConsentRecordsResponses, GetConsentRecordsErrors, ThrowOnError, "fields">;
|
|
41907
|
+
postConsentRecords: <ThrowOnError extends boolean = false>(options: Options<PostConsentRecordsData, ThrowOnError>) => RequestResult<PostConsentRecordsResponses, PostConsentRecordsErrors, ThrowOnError, "fields">;
|
|
40189
41908
|
getAuditLogsActivity: <ThrowOnError extends boolean = false>(options: Options<GetAuditLogsActivityData, ThrowOnError>) => RequestResult<GetAuditLogsActivityResponses, GetAuditLogsActivityErrors, ThrowOnError, "fields">;
|
|
40190
41909
|
postUsersAuthResendConfirmation: <ThrowOnError extends boolean = false>(options: Options<PostUsersAuthResendConfirmationData, ThrowOnError>) => RequestResult<PostUsersAuthResendConfirmationResponses, PostUsersAuthResendConfirmationErrors, ThrowOnError, "fields">;
|
|
40191
41910
|
getWorkspacesAnalyticsBatch: <ThrowOnError extends boolean = false>(options: Options<GetWorkspacesAnalyticsBatchData, ThrowOnError>) => RequestResult<GetWorkspacesAnalyticsBatchResponses, GetWorkspacesAnalyticsBatchErrors, ThrowOnError, "fields">;
|
|
@@ -40198,13 +41917,19 @@ declare const gptCore: {
|
|
|
40198
41917
|
postAgentVersionsByIdSetSystemFields: <ThrowOnError extends boolean = false>(options: Options<PostAgentVersionsByIdSetSystemFieldsData, ThrowOnError>) => RequestResult<PostAgentVersionsByIdSetSystemFieldsResponses, PostAgentVersionsByIdSetSystemFieldsErrors, ThrowOnError, "fields">;
|
|
40199
41918
|
postThreadsByIdSummarize: <ThrowOnError extends boolean = false>(options: Options<PostThreadsByIdSummarizeData, ThrowOnError>) => RequestResult<PostThreadsByIdSummarizeResponses, PostThreadsByIdSummarizeErrors, ThrowOnError, "fields">;
|
|
40200
41919
|
patchConfigsByKey: <ThrowOnError extends boolean = false>(options: Options<PatchConfigsByKeyData, ThrowOnError>) => RequestResult<PatchConfigsByKeyResponses, PatchConfigsByKeyErrors, ThrowOnError, "fields">;
|
|
41920
|
+
deleteLegalDocumentsById: <ThrowOnError extends boolean = false>(options: Options<DeleteLegalDocumentsByIdData, ThrowOnError>) => RequestResult<DeleteLegalDocumentsByIdResponses, DeleteLegalDocumentsByIdErrors, ThrowOnError, "fields">;
|
|
41921
|
+
getLegalDocumentsById: <ThrowOnError extends boolean = false>(options: Options<GetLegalDocumentsByIdData, ThrowOnError>) => RequestResult<GetLegalDocumentsByIdResponses, GetLegalDocumentsByIdErrors, ThrowOnError, "fields">;
|
|
41922
|
+
patchLegalDocumentsById: <ThrowOnError extends boolean = false>(options: Options<PatchLegalDocumentsByIdData, ThrowOnError>) => RequestResult<PatchLegalDocumentsByIdResponses, PatchLegalDocumentsByIdErrors, ThrowOnError, "fields">;
|
|
40201
41923
|
getExtractionResults: <ThrowOnError extends boolean = false>(options: Options<GetExtractionResultsData, ThrowOnError>) => RequestResult<GetExtractionResultsResponses, GetExtractionResultsErrors, ThrowOnError, "fields">;
|
|
40202
41924
|
postAgentsByIdClone: <ThrowOnError extends boolean = false>(options: Options<PostAgentsByIdCloneData, ThrowOnError>) => RequestResult<PostAgentsByIdCloneResponses, PostAgentsByIdCloneErrors, ThrowOnError, "fields">;
|
|
41925
|
+
getLegalDocuments: <ThrowOnError extends boolean = false>(options: Options<GetLegalDocumentsData, ThrowOnError>) => RequestResult<GetLegalDocumentsResponses, GetLegalDocumentsErrors, ThrowOnError, "fields">;
|
|
41926
|
+
postLegalDocuments: <ThrowOnError extends boolean = false>(options: Options<PostLegalDocumentsData, ThrowOnError>) => RequestResult<PostLegalDocumentsResponses, PostLegalDocumentsErrors, ThrowOnError, "fields">;
|
|
40203
41927
|
deleteAiConversationsById: <ThrowOnError extends boolean = false>(options: Options<DeleteAiConversationsByIdData, ThrowOnError>) => RequestResult<DeleteAiConversationsByIdResponses, DeleteAiConversationsByIdErrors, ThrowOnError, "fields">;
|
|
40204
41928
|
getAiConversationsById: <ThrowOnError extends boolean = false>(options: Options<GetAiConversationsByIdData, ThrowOnError>) => RequestResult<GetAiConversationsByIdResponses, GetAiConversationsByIdErrors, ThrowOnError, "fields">;
|
|
40205
41929
|
patchAiConversationsById: <ThrowOnError extends boolean = false>(options: Options<PatchAiConversationsByIdData, ThrowOnError>) => RequestResult<PatchAiConversationsByIdResponses, PatchAiConversationsByIdErrors, ThrowOnError, "fields">;
|
|
40206
41930
|
getInvitationsMe: <ThrowOnError extends boolean = false>(options: Options<GetInvitationsMeData, ThrowOnError>) => RequestResult<GetInvitationsMeResponses, GetInvitationsMeErrors, ThrowOnError, "fields">;
|
|
40207
41931
|
getAgentVersionsByIdRevisions: <ThrowOnError extends boolean = false>(options: Options<GetAgentVersionsByIdRevisionsData, ThrowOnError>) => RequestResult<GetAgentVersionsByIdRevisionsResponses, GetAgentVersionsByIdRevisionsErrors, ThrowOnError, "fields">;
|
|
41932
|
+
getLegalDocumentsForApplication: <ThrowOnError extends boolean = false>(options: Options<GetLegalDocumentsForApplicationData, ThrowOnError>) => RequestResult<GetLegalDocumentsForApplicationResponses, GetLegalDocumentsForApplicationErrors, ThrowOnError, "fields">;
|
|
40208
41933
|
postSearchBatch: <ThrowOnError extends boolean = false>(options: Options<PostSearchBatchData, ThrowOnError>) => RequestResult<PostSearchBatchResponses, PostSearchBatchErrors, ThrowOnError, "fields">;
|
|
40209
41934
|
getThreadsWorkspaceStats: <ThrowOnError extends boolean = false>(options: Options<GetThreadsWorkspaceStatsData, ThrowOnError>) => RequestResult<GetThreadsWorkspaceStatsResponses, GetThreadsWorkspaceStatsErrors, ThrowOnError, "fields">;
|
|
40210
41935
|
getApiKeys: <ThrowOnError extends boolean = false>(options: Options<GetApiKeysData, ThrowOnError>) => RequestResult<GetApiKeysResponses, GetApiKeysErrors, ThrowOnError, "fields">;
|
|
@@ -40250,4 +41975,4 @@ declare const gptCore: {
|
|
|
40250
41975
|
getObjects: <ThrowOnError extends boolean = false>(options: Options<GetObjectsData, ThrowOnError>) => RequestResult<GetObjectsResponses, GetObjectsErrors, ThrowOnError, "fields">;
|
|
40251
41976
|
};
|
|
40252
41977
|
|
|
40253
|
-
export { type Account, type Agent, type AgentCreateRequest, AgentCreateSchema, type AgentStats, type AgentTestResult, type AgentTrainingStats, type AgentUsage, type AgentVersion, type AgentVersionComparison, type AgentVersionFieldsInputCreateType, type AgentVersionRevision, type AiConfig, type ApiKey, type ApiKeyAllocateRequest, ApiKeyAllocateSchema, type ApiKeyCreateRequest, ApiKeyCreateSchema, type Application, type ApplicationCreateRequest, ApplicationCreateSchema, type ApplicationOauthInputCreateType, type ApplicationOauthInputUpdateType, type ApplicationType, type AuditLog, AuthenticationError, AuthorizationError, type Balance, type Bucket, type BucketCreateRequest, BucketCreateSchema, type BulkDismissalResult, type BulkReprocessResult, type ClientOptions$1 as ClientOptions, type Config$2 as Config, type ConfigEnum, type Conversation, type CreditPackage, type Customer, DEFAULT_RETRY_CONFIG, type DeleteAgentVersionsByIdData, type DeleteAgentVersionsByIdError, type DeleteAgentVersionsByIdErrors, type DeleteAgentVersionsByIdResponses, type DeleteAgentsByIdData, type DeleteAgentsByIdError, type DeleteAgentsByIdErrors, type DeleteAgentsByIdResponses, type DeleteAgentsByIdTrainingExamplesByExampleIdData, type DeleteAgentsByIdTrainingExamplesByExampleIdError, type DeleteAgentsByIdTrainingExamplesByExampleIdErrors, type DeleteAgentsByIdTrainingExamplesByExampleIdResponse, type DeleteAgentsByIdTrainingExamplesByExampleIdResponses, type DeleteAiConversationsByIdData, type DeleteAiConversationsByIdError, type DeleteAiConversationsByIdErrors, type DeleteAiConversationsByIdResponses, type DeleteAiGraphEdgesByIdData, type DeleteAiGraphEdgesByIdError, type DeleteAiGraphEdgesByIdErrors, type DeleteAiGraphEdgesByIdResponses, type DeleteAiGraphNodesByIdData, type DeleteAiGraphNodesByIdError, type DeleteAiGraphNodesByIdErrors, type DeleteAiGraphNodesByIdResponses, type DeleteAiMessagesByIdData, type DeleteAiMessagesByIdError, type DeleteAiMessagesByIdErrors, type DeleteAiMessagesByIdResponses, type DeleteApiKeysByIdData, type DeleteApiKeysByIdError, type DeleteApiKeysByIdErrors, type DeleteApiKeysByIdResponses, type DeleteApplicationsByApplicationIdEmailTemplatesBySlugData, type DeleteApplicationsByApplicationIdEmailTemplatesBySlugError, type DeleteApplicationsByApplicationIdEmailTemplatesBySlugErrors, type DeleteApplicationsByApplicationIdEmailTemplatesBySlugResponses, type DeleteApplicationsByIdData, type DeleteApplicationsByIdError, type DeleteApplicationsByIdErrors, type DeleteApplicationsByIdResponses, type DeleteBucketsByIdData, type DeleteBucketsByIdError, type DeleteBucketsByIdErrors, type DeleteBucketsByIdResponses, type DeleteExtractionBatchesByIdData, type DeleteExtractionBatchesByIdError, type DeleteExtractionBatchesByIdErrors, type DeleteExtractionBatchesByIdResponses, type DeleteExtractionDocumentsByIdData, type DeleteExtractionDocumentsByIdError, type DeleteExtractionDocumentsByIdErrors, type DeleteExtractionDocumentsByIdResponses, type DeleteExtractionResultsByIdData, type DeleteExtractionResultsByIdError, type DeleteExtractionResultsByIdErrors, type DeleteExtractionResultsByIdResponses, type DeleteFieldTemplatesByIdData, type DeleteFieldTemplatesByIdError, type DeleteFieldTemplatesByIdErrors, type DeleteFieldTemplatesByIdResponses, type DeleteMessagesByIdData, type DeleteMessagesByIdError, type DeleteMessagesByIdErrors, type DeleteMessagesByIdResponses, type DeleteNotificationMethodsByIdData, type DeleteNotificationMethodsByIdError, type DeleteNotificationMethodsByIdErrors, type DeleteNotificationMethodsByIdResponses, type DeleteNotificationPreferencesByIdData, type DeleteNotificationPreferencesByIdError, type DeleteNotificationPreferencesByIdErrors, type DeleteNotificationPreferencesByIdResponses, type DeleteObjectsByIdData, type DeleteObjectsByIdError, type DeleteObjectsByIdErrors, type DeleteObjectsByIdResponses, type DeletePaymentMethodsByIdData, type DeletePaymentMethodsByIdError, type DeletePaymentMethodsByIdErrors, type DeletePaymentMethodsByIdResponses, type DeleteSearchSavedByIdData, type DeleteSearchSavedByIdError, type DeleteSearchSavedByIdErrors, type DeleteSearchSavedByIdResponses, type DeleteTenantMembershipsByTenantIdByUserIdData, type DeleteTenantMembershipsByTenantIdByUserIdError, type DeleteTenantMembershipsByTenantIdByUserIdErrors, type DeleteTenantMembershipsByTenantIdByUserIdResponses, type DeleteTenantsByIdData, type DeleteTenantsByIdError, type DeleteTenantsByIdErrors, type DeleteTenantsByIdResponses, type DeleteThreadsByIdData, type DeleteThreadsByIdError, type DeleteThreadsByIdErrors, type DeleteThreadsByIdResponses, type DeleteTrainingExamplesByIdData, type DeleteTrainingExamplesByIdError, type DeleteTrainingExamplesByIdErrors, type DeleteTrainingExamplesByIdResponses, type DeleteTrainingSessionsByIdData, type DeleteTrainingSessionsByIdError, type DeleteTrainingSessionsByIdErrors, type DeleteTrainingSessionsByIdResponses, type DeleteUserProfilesByIdData, type DeleteUserProfilesByIdError, type DeleteUserProfilesByIdErrors, type DeleteUserProfilesByIdResponses, type DeleteUsersByIdData, type DeleteUsersByIdError, type DeleteUsersByIdErrors, type DeleteUsersByIdResponses, type DeleteWebhookConfigsByIdData, type DeleteWebhookConfigsByIdError, type DeleteWebhookConfigsByIdErrors, type DeleteWebhookConfigsByIdResponses, type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdData, type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdError, type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type DeleteWorkspacesByIdData, type DeleteWorkspacesByIdError, type DeleteWorkspacesByIdErrors, type DeleteWorkspacesByIdResponses, type DocumentChunk, type DocumentStats, type DocumentUploadBase64Request, DocumentUploadBase64Schema, type EmailTemplate, type EmbedRequest, EmbedRequestSchema, type Embedding, type ErrorResponse, type Errors, type ExtractionBatch, type ExtractionDocument, type ExtractionExport, type ExtractionResult, type FieldMappingConfirmation, type FieldMappingResult, type FieldTemplate, type GetAgentVersionRevisionsByIdData, type GetAgentVersionRevisionsByIdError, type GetAgentVersionRevisionsByIdErrors, type GetAgentVersionRevisionsByIdResponse, type GetAgentVersionRevisionsByIdResponses, type GetAgentVersionRevisionsData, type GetAgentVersionRevisionsError, type GetAgentVersionRevisionsErrors, type GetAgentVersionRevisionsResponse, type GetAgentVersionRevisionsResponses, type GetAgentVersionsByIdData, type GetAgentVersionsByIdError, type GetAgentVersionsByIdErrors, type GetAgentVersionsByIdMetricsData, type GetAgentVersionsByIdMetricsError, type GetAgentVersionsByIdMetricsErrors, type GetAgentVersionsByIdMetricsResponse, type GetAgentVersionsByIdMetricsResponses, type GetAgentVersionsByIdResponse, type GetAgentVersionsByIdResponses, type GetAgentVersionsByIdRevisionsData, type GetAgentVersionsByIdRevisionsError, type GetAgentVersionsByIdRevisionsErrors, type GetAgentVersionsByIdRevisionsResponses, type GetAgentVersionsData, type GetAgentVersionsError, type GetAgentVersionsErrors, type GetAgentVersionsResponse, type GetAgentVersionsResponses, type GetAgentsByIdData, type GetAgentsByIdError, type GetAgentsByIdErrors, type GetAgentsByIdResponse, type GetAgentsByIdResponses, type GetAgentsByIdSchemaVersionsData, type GetAgentsByIdSchemaVersionsError, type GetAgentsByIdSchemaVersionsErrors, type GetAgentsByIdSchemaVersionsResponse, type GetAgentsByIdSchemaVersionsResponses, type GetAgentsByIdStatsData, type GetAgentsByIdStatsError, type GetAgentsByIdStatsErrors, type GetAgentsByIdStatsResponse, type GetAgentsByIdStatsResponses, type GetAgentsByIdTrainingExamplesData, type GetAgentsByIdTrainingExamplesError, type GetAgentsByIdTrainingExamplesErrors, type GetAgentsByIdTrainingExamplesResponse, type GetAgentsByIdTrainingExamplesResponses, type GetAgentsByIdTrainingStatsData, type GetAgentsByIdTrainingStatsError, type GetAgentsByIdTrainingStatsErrors, type GetAgentsByIdTrainingStatsResponse, type GetAgentsByIdTrainingStatsResponses, type GetAgentsByIdUsageData, type GetAgentsByIdUsageError, type GetAgentsByIdUsageErrors, type GetAgentsByIdUsageResponse, type GetAgentsByIdUsageResponses, type GetAgentsData, type GetAgentsError, type GetAgentsErrors, type GetAgentsResponse, type GetAgentsResponses, type GetAgentsUsageData, type GetAgentsUsageError, type GetAgentsUsageErrors, type GetAgentsUsageResponse, type GetAgentsUsageResponses, type GetAiChunksDocumentByDocumentIdData, type GetAiChunksDocumentByDocumentIdError, type GetAiChunksDocumentByDocumentIdErrors, type GetAiChunksDocumentByDocumentIdResponse, type GetAiChunksDocumentByDocumentIdResponses, type GetAiConversationsByIdData, type GetAiConversationsByIdError, type GetAiConversationsByIdErrors, type GetAiConversationsByIdResponse, type GetAiConversationsByIdResponses, type GetAiConversationsData, type GetAiConversationsError, type GetAiConversationsErrors, type GetAiConversationsResponse, type GetAiConversationsResponses, type GetAiGraphEdgesData, type GetAiGraphEdgesError, type GetAiGraphEdgesErrors, type GetAiGraphEdgesResponse, type GetAiGraphEdgesResponses, type GetAiGraphNodesBySourceNodeIdRelatedData, type GetAiGraphNodesBySourceNodeIdRelatedError, type GetAiGraphNodesBySourceNodeIdRelatedErrors, type GetAiGraphNodesBySourceNodeIdRelatedResponse, type GetAiGraphNodesBySourceNodeIdRelatedResponses, type GetAiGraphNodesData, type GetAiGraphNodesError, type GetAiGraphNodesErrors, type GetAiGraphNodesLabelByLabelData, type GetAiGraphNodesLabelByLabelError, type GetAiGraphNodesLabelByLabelErrors, type GetAiGraphNodesLabelByLabelResponse, type GetAiGraphNodesLabelByLabelResponses, type GetAiGraphNodesResponse, type GetAiGraphNodesResponses, type GetAiMessagesData, type GetAiMessagesError, type GetAiMessagesErrors, type GetAiMessagesResponse, type GetAiMessagesResponses, type GetApiKeysActiveData, type GetApiKeysActiveError, type GetApiKeysActiveErrors, type GetApiKeysActiveResponse, type GetApiKeysActiveResponses, type GetApiKeysByIdData, type GetApiKeysByIdError, type GetApiKeysByIdErrors, type GetApiKeysByIdResponse, type GetApiKeysByIdResponses, type GetApiKeysData, type GetApiKeysError, type GetApiKeysErrors, type GetApiKeysResponse, type GetApiKeysResponses, type GetApiKeysStatsData, type GetApiKeysStatsError, type GetApiKeysStatsErrors, type GetApiKeysStatsResponse, type GetApiKeysStatsResponses, type GetApplicationsByApplicationIdEmailTemplatesBySlugData, type GetApplicationsByApplicationIdEmailTemplatesBySlugError, type GetApplicationsByApplicationIdEmailTemplatesBySlugErrors, type GetApplicationsByApplicationIdEmailTemplatesBySlugResponse, type GetApplicationsByApplicationIdEmailTemplatesBySlugResponses, type GetApplicationsByApplicationIdEmailTemplatesData, type GetApplicationsByApplicationIdEmailTemplatesError, type GetApplicationsByApplicationIdEmailTemplatesErrors, type GetApplicationsByApplicationIdEmailTemplatesResponse, type GetApplicationsByApplicationIdEmailTemplatesResponses, type GetApplicationsByIdData, type GetApplicationsByIdError, type GetApplicationsByIdErrors, type GetApplicationsByIdResponse, type GetApplicationsByIdResponses, type GetApplicationsBySlugBySlugData, type GetApplicationsBySlugBySlugError, type GetApplicationsBySlugBySlugErrors, type GetApplicationsBySlugBySlugResponse, type GetApplicationsBySlugBySlugResponses, type GetApplicationsCurrentData, type GetApplicationsCurrentError, type GetApplicationsCurrentErrors, type GetApplicationsCurrentResponse, type GetApplicationsCurrentResponses, type GetApplicationsData, type GetApplicationsError, type GetApplicationsErrors, type GetApplicationsResponse, type GetApplicationsResponses, type GetAuditLogsActivityData, type GetAuditLogsActivityError, type GetAuditLogsActivityErrors, type GetAuditLogsActivityResponse, type GetAuditLogsActivityResponses, type GetAuditLogsData, type GetAuditLogsError, type GetAuditLogsErrors, type GetAuditLogsResponse, type GetAuditLogsResponses, type GetBucketsAllData, type GetBucketsAllError, type GetBucketsAllErrors, type GetBucketsAllResponse, type GetBucketsAllResponses, type GetBucketsByIdData, type GetBucketsByIdError, type GetBucketsByIdErrors, type GetBucketsByIdObjectsData, type GetBucketsByIdObjectsError, type GetBucketsByIdObjectsErrors, type GetBucketsByIdObjectsResponse, type GetBucketsByIdObjectsResponses, type GetBucketsByIdResponse, type GetBucketsByIdResponses, type GetBucketsByIdStatsData, type GetBucketsByIdStatsError, type GetBucketsByIdStatsErrors, type GetBucketsByIdStatsResponse, type GetBucketsByIdStatsResponses, type GetBucketsData, type GetBucketsError, type GetBucketsErrors, type GetBucketsResponse, type GetBucketsResponses, type GetConfigsData, type GetConfigsError, type GetConfigsErrors, type GetConfigsResponse, type GetConfigsResponses, type GetCreditPackagesByIdData, type GetCreditPackagesByIdError, type GetCreditPackagesByIdErrors, type GetCreditPackagesByIdResponse, type GetCreditPackagesByIdResponses, type GetCreditPackagesData, type GetCreditPackagesError, type GetCreditPackagesErrors, type GetCreditPackagesResponse, type GetCreditPackagesResponses, type GetCreditPackagesSlugBySlugData, type GetCreditPackagesSlugBySlugError, type GetCreditPackagesSlugBySlugErrors, type GetCreditPackagesSlugBySlugResponse, type GetCreditPackagesSlugBySlugResponses, type GetDocumentsStatsData, type GetDocumentsStatsError, type GetDocumentsStatsErrors, type GetDocumentsStatsResponse, type GetDocumentsStatsResponses, type GetExtractionBatchesByIdData, type GetExtractionBatchesByIdError, type GetExtractionBatchesByIdErrors, type GetExtractionBatchesByIdResponse, type GetExtractionBatchesByIdResponses, type GetExtractionBatchesByIdUploadUrlsData, type GetExtractionBatchesByIdUploadUrlsError, type GetExtractionBatchesByIdUploadUrlsErrors, type GetExtractionBatchesByIdUploadUrlsResponse, type GetExtractionBatchesByIdUploadUrlsResponses, type GetExtractionBatchesWorkspaceByWorkspaceIdData, type GetExtractionBatchesWorkspaceByWorkspaceIdError, type GetExtractionBatchesWorkspaceByWorkspaceIdErrors, type GetExtractionBatchesWorkspaceByWorkspaceIdResponse, type GetExtractionBatchesWorkspaceByWorkspaceIdResponses, type GetExtractionConfigEnumsByIdData, type GetExtractionConfigEnumsByIdError, type GetExtractionConfigEnumsByIdErrors, type GetExtractionConfigEnumsByIdResponse, type GetExtractionConfigEnumsByIdResponses, type GetExtractionConfigEnumsData, type GetExtractionConfigEnumsError, type GetExtractionConfigEnumsErrors, type GetExtractionConfigEnumsResponse, type GetExtractionConfigEnumsResponses, type GetExtractionDocumentsByIdData, type GetExtractionDocumentsByIdError, type GetExtractionDocumentsByIdErrors, type GetExtractionDocumentsByIdResponse, type GetExtractionDocumentsByIdResponses, type GetExtractionDocumentsByIdStatusData, type GetExtractionDocumentsByIdStatusError, type GetExtractionDocumentsByIdStatusErrors, type GetExtractionDocumentsByIdStatusResponse, type GetExtractionDocumentsByIdStatusResponses, type GetExtractionDocumentsByIdViewData, type GetExtractionDocumentsByIdViewError, type GetExtractionDocumentsByIdViewErrors, type GetExtractionDocumentsByIdViewResponse, type GetExtractionDocumentsByIdViewResponses, type GetExtractionDocumentsData, type GetExtractionDocumentsError, type GetExtractionDocumentsErrors, type GetExtractionDocumentsResponse, type GetExtractionDocumentsResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusData, type GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusError, type GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdData, type GetExtractionDocumentsWorkspaceByWorkspaceIdError, type GetExtractionDocumentsWorkspaceByWorkspaceIdErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedData, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedError, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueData, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueError, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedData, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedError, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrashedData, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrashedError, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrashedErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrashedResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrashedResponses, type GetExtractionResultsByIdData, type GetExtractionResultsByIdError, type GetExtractionResultsByIdErrors, type GetExtractionResultsByIdResponse, type GetExtractionResultsByIdResponses, type GetExtractionResultsData, type GetExtractionResultsDocumentByDocumentIdData, type GetExtractionResultsDocumentByDocumentIdError, type GetExtractionResultsDocumentByDocumentIdErrors, type GetExtractionResultsDocumentByDocumentIdResponse, type GetExtractionResultsDocumentByDocumentIdResponses, type GetExtractionResultsError, type GetExtractionResultsErrors, type GetExtractionResultsResponse, type GetExtractionResultsResponses, type GetExtractionResultsWorkspaceByWorkspaceIdData, type GetExtractionResultsWorkspaceByWorkspaceIdError, type GetExtractionResultsWorkspaceByWorkspaceIdErrors, type GetExtractionResultsWorkspaceByWorkspaceIdResponse, type GetExtractionResultsWorkspaceByWorkspaceIdResponses, type GetExtractionSchemaDiscoveriesByIdData, type GetExtractionSchemaDiscoveriesByIdError, type GetExtractionSchemaDiscoveriesByIdErrors, type GetExtractionSchemaDiscoveriesByIdResponse, type GetExtractionSchemaDiscoveriesByIdResponses, type GetFieldTemplatesByIdData, type GetFieldTemplatesByIdError, type GetFieldTemplatesByIdErrors, type GetFieldTemplatesByIdResponse, type GetFieldTemplatesByIdResponses, type GetFieldTemplatesData, type GetFieldTemplatesError, type GetFieldTemplatesErrors, type GetFieldTemplatesResponse, type GetFieldTemplatesResponses, type GetInvitationsConsumeByTokenData, type GetInvitationsConsumeByTokenError, type GetInvitationsConsumeByTokenErrors, type GetInvitationsConsumeByTokenResponse, type GetInvitationsConsumeByTokenResponses, type GetInvitationsData, type GetInvitationsError, type GetInvitationsErrors, type GetInvitationsMeData, type GetInvitationsMeError, type GetInvitationsMeErrors, type GetInvitationsMeResponse, type GetInvitationsMeResponses, type GetInvitationsResponse, type GetInvitationsResponses, type GetLlmAnalyticsByIdData, type GetLlmAnalyticsByIdError, type GetLlmAnalyticsByIdErrors, type GetLlmAnalyticsByIdResponse, type GetLlmAnalyticsByIdResponses, type GetLlmAnalyticsCostsData, type GetLlmAnalyticsCostsError, type GetLlmAnalyticsCostsErrors, type GetLlmAnalyticsCostsResponse, type GetLlmAnalyticsCostsResponses, type GetLlmAnalyticsData, type GetLlmAnalyticsError, type GetLlmAnalyticsErrors, type GetLlmAnalyticsPlatformData, type GetLlmAnalyticsPlatformError, type GetLlmAnalyticsPlatformErrors, type GetLlmAnalyticsPlatformResponse, type GetLlmAnalyticsPlatformResponses, type GetLlmAnalyticsResponse, type GetLlmAnalyticsResponses, type GetLlmAnalyticsSummaryData, type GetLlmAnalyticsSummaryError, type GetLlmAnalyticsSummaryErrors, type GetLlmAnalyticsSummaryResponse, type GetLlmAnalyticsSummaryResponses, type GetLlmAnalyticsUsageData, type GetLlmAnalyticsUsageError, type GetLlmAnalyticsUsageErrors, type GetLlmAnalyticsUsageResponse, type GetLlmAnalyticsUsageResponses, type GetLlmAnalyticsWorkspaceData, type GetLlmAnalyticsWorkspaceError, type GetLlmAnalyticsWorkspaceErrors, type GetLlmAnalyticsWorkspaceResponse, type GetLlmAnalyticsWorkspaceResponses, type GetMessagesByIdData, type GetMessagesByIdError, type GetMessagesByIdErrors, type GetMessagesByIdResponse, type GetMessagesByIdResponses, type GetMessagesData, type GetMessagesError, type GetMessagesErrors, type GetMessagesResponse, type GetMessagesResponses, type GetMessagesSearchData, type GetMessagesSearchError, type GetMessagesSearchErrors, type GetMessagesSearchResponse, type GetMessagesSearchResponses, type GetMessagesSemanticSearchData, type GetMessagesSemanticSearchError, type GetMessagesSemanticSearchErrors, type GetMessagesSemanticSearchResponse, type GetMessagesSemanticSearchResponses, type GetNotificationLogsByIdData, type GetNotificationLogsByIdError, type GetNotificationLogsByIdErrors, type GetNotificationLogsByIdResponse, type GetNotificationLogsByIdResponses, type GetNotificationLogsData, type GetNotificationLogsError, type GetNotificationLogsErrors, type GetNotificationLogsResponse, type GetNotificationLogsResponses, type GetNotificationLogsStatsData, type GetNotificationLogsStatsError, type GetNotificationLogsStatsErrors, type GetNotificationLogsStatsResponse, type GetNotificationLogsStatsResponses, type GetNotificationMethodsByIdData, type GetNotificationMethodsByIdError, type GetNotificationMethodsByIdErrors, type GetNotificationMethodsByIdResponse, type GetNotificationMethodsByIdResponses, type GetNotificationMethodsData, type GetNotificationMethodsError, type GetNotificationMethodsErrors, type GetNotificationMethodsResponse, type GetNotificationMethodsResponses, type GetNotificationPreferencesByIdData, type GetNotificationPreferencesByIdError, type GetNotificationPreferencesByIdErrors, type GetNotificationPreferencesByIdResponse, type GetNotificationPreferencesByIdResponses, type GetNotificationPreferencesData, type GetNotificationPreferencesError, type GetNotificationPreferencesErrors, type GetNotificationPreferencesResponse, type GetNotificationPreferencesResponses, type GetObjectsByIdData, type GetObjectsByIdError, type GetObjectsByIdErrors, type GetObjectsByIdResponse, type GetObjectsByIdResponses, type GetObjectsData, type GetObjectsError, type GetObjectsErrors, type GetObjectsResponse, type GetObjectsResponses, type GetPaymentMethodsByIdData, type GetPaymentMethodsByIdError, type GetPaymentMethodsByIdErrors, type GetPaymentMethodsByIdResponse, type GetPaymentMethodsByIdResponses, type GetPaymentMethodsData, type GetPaymentMethodsError, type GetPaymentMethodsErrors, type GetPaymentMethodsResponse, type GetPaymentMethodsResponses, type GetPermissionsByIdData, type GetPermissionsByIdError, type GetPermissionsByIdErrors, type GetPermissionsByIdResponse, type GetPermissionsByIdResponses, type GetPermissionsData, type GetPermissionsError, type GetPermissionsErrors, type GetPermissionsMetaData, type GetPermissionsMetaError, type GetPermissionsMetaErrors, type GetPermissionsMetaResponse, type GetPermissionsMetaResponses, type GetPermissionsPresetsByIdData, type GetPermissionsPresetsByIdError, type GetPermissionsPresetsByIdErrors, type GetPermissionsPresetsByIdResponse, type GetPermissionsPresetsByIdResponses, type GetPermissionsPresetsData, type GetPermissionsPresetsError, type GetPermissionsPresetsErrors, type GetPermissionsPresetsResponse, type GetPermissionsPresetsResponses, type GetPermissionsResponse, type GetPermissionsResponses, type GetPlansByIdData, type GetPlansByIdError, type GetPlansByIdErrors, type GetPlansByIdResponse, type GetPlansByIdResponses, type GetPlansData, type GetPlansError, type GetPlansErrors, type GetPlansResponse, type GetPlansResponses, type GetPlansSlugBySlugData, type GetPlansSlugBySlugError, type GetPlansSlugBySlugErrors, type GetPlansSlugBySlugResponse, type GetPlansSlugBySlugResponses, type GetSearchAnalyticsData, type GetSearchAnalyticsError, type GetSearchAnalyticsErrors, type GetSearchAnalyticsResponse, type GetSearchAnalyticsResponses, type GetSearchAnalyticsSummaryData, type GetSearchAnalyticsSummaryError, type GetSearchAnalyticsSummaryErrors, type GetSearchAnalyticsSummaryResponse, type GetSearchAnalyticsSummaryResponses, type GetSearchData, type GetSearchError, type GetSearchErrors, type GetSearchHealthData, type GetSearchHealthError, type GetSearchHealthErrors, type GetSearchHealthResponse, type GetSearchHealthResponses, type GetSearchIndexesData, type GetSearchIndexesError, type GetSearchIndexesErrors, type GetSearchIndexesResponse, type GetSearchIndexesResponses, type GetSearchResponse, type GetSearchResponses, type GetSearchSavedData, type GetSearchSavedError, type GetSearchSavedErrors, type GetSearchSavedResponse, type GetSearchSavedResponses, type GetSearchSemanticData, type GetSearchSemanticError, type GetSearchSemanticErrors, type GetSearchSemanticResponse, type GetSearchSemanticResponses, type GetSearchStatsData, type GetSearchStatsError, type GetSearchStatsErrors, type GetSearchStatsResponse, type GetSearchStatsResponses, type GetSearchStatusData, type GetSearchStatusError, type GetSearchStatusErrors, type GetSearchStatusResponse, type GetSearchStatusResponses, type GetSearchSuggestData, type GetSearchSuggestError, type GetSearchSuggestErrors, type GetSearchSuggestResponse, type GetSearchSuggestResponses, type GetStorageStatsData, type GetStorageStatsError, type GetStorageStatsErrors, type GetStorageStatsResponse, type GetStorageStatsResponses, type GetStorageStatsTenantByTenantIdData, type GetStorageStatsTenantByTenantIdError, type GetStorageStatsTenantByTenantIdErrors, type GetStorageStatsTenantByTenantIdResponse, type GetStorageStatsTenantByTenantIdResponses, type GetTenantMembershipsData, type GetTenantMembershipsError, type GetTenantMembershipsErrors, type GetTenantMembershipsResponse, type GetTenantMembershipsResponses, type GetTenantsByIdData, type GetTenantsByIdError, type GetTenantsByIdErrors, type GetTenantsByIdResponse, type GetTenantsByIdResponses, type GetTenantsByTenantIdDocumentStatsData, type GetTenantsByTenantIdDocumentStatsError, type GetTenantsByTenantIdDocumentStatsErrors, type GetTenantsByTenantIdDocumentStatsResponse, type GetTenantsByTenantIdDocumentStatsResponses, type GetTenantsByTenantIdStatsData, type GetTenantsByTenantIdStatsError, type GetTenantsByTenantIdStatsErrors, type GetTenantsByTenantIdStatsResponse, type GetTenantsByTenantIdStatsResponses, type GetTenantsByTenantIdWorkspaceStatsData, type GetTenantsByTenantIdWorkspaceStatsError, type GetTenantsByTenantIdWorkspaceStatsErrors, type GetTenantsByTenantIdWorkspaceStatsResponse, type GetTenantsByTenantIdWorkspaceStatsResponses, type GetTenantsData, type GetTenantsError, type GetTenantsErrors, type GetTenantsResponse, type GetTenantsResponses, type GetThreadsByIdData, type GetThreadsByIdError, type GetThreadsByIdErrors, type GetThreadsByIdMessagesData, type GetThreadsByIdMessagesError, type GetThreadsByIdMessagesErrors, type GetThreadsByIdMessagesResponse, type GetThreadsByIdMessagesResponses, type GetThreadsByIdResponse, type GetThreadsByIdResponses, type GetThreadsData, type GetThreadsError, type GetThreadsErrors, type GetThreadsResponse, type GetThreadsResponses, type GetThreadsSearchData, type GetThreadsSearchError, type GetThreadsSearchErrors, type GetThreadsSearchResponse, type GetThreadsSearchResponses, type GetThreadsStatsData, type GetThreadsStatsError, type GetThreadsStatsErrors, type GetThreadsStatsResponse, type GetThreadsStatsResponses, type GetThreadsWorkspaceStatsData, type GetThreadsWorkspaceStatsError, type GetThreadsWorkspaceStatsErrors, type GetThreadsWorkspaceStatsResponse, type GetThreadsWorkspaceStatsResponses, type GetTrainingExamplesByIdData, type GetTrainingExamplesByIdError, type GetTrainingExamplesByIdErrors, type GetTrainingExamplesByIdResponse, type GetTrainingExamplesByIdResponses, type GetTrainingExamplesData, type GetTrainingExamplesError, type GetTrainingExamplesErrors, type GetTrainingExamplesResponse, type GetTrainingExamplesResponses, type GetTrainingSessionsAgentsByAgentIdSessionsData, type GetTrainingSessionsAgentsByAgentIdSessionsError, type GetTrainingSessionsAgentsByAgentIdSessionsErrors, type GetTrainingSessionsAgentsByAgentIdSessionsResponse, type GetTrainingSessionsAgentsByAgentIdSessionsResponses, type GetTrainingSessionsByIdData, type GetTrainingSessionsByIdError, type GetTrainingSessionsByIdErrors, type GetTrainingSessionsByIdResponse, type GetTrainingSessionsByIdResponses, type GetTransactionsByIdData, type GetTransactionsByIdError, type GetTransactionsByIdErrors, type GetTransactionsByIdResponse, type GetTransactionsByIdResponses, type GetTransactionsData, type GetTransactionsError, type GetTransactionsErrors, type GetTransactionsResponse, type GetTransactionsResponses, type GetUserProfilesByIdData, type GetUserProfilesByIdError, type GetUserProfilesByIdErrors, type GetUserProfilesByIdResponse, type GetUserProfilesByIdResponses, type GetUserProfilesData, type GetUserProfilesError, type GetUserProfilesErrors, type GetUserProfilesMeData, type GetUserProfilesMeError, type GetUserProfilesMeErrors, type GetUserProfilesMeResponse, type GetUserProfilesMeResponses, type GetUserProfilesResponse, type GetUserProfilesResponses, type GetUsersByEmailData, type GetUsersByEmailError, type GetUsersByEmailErrors, type GetUsersByEmailResponse, type GetUsersByEmailResponses, type GetUsersByIdData, type GetUsersByIdError, type GetUsersByIdErrors, type GetUsersByIdResponse, type GetUsersByIdResponses, type GetUsersData, type GetUsersError, type GetUsersErrors, type GetUsersMeActivityData, type GetUsersMeActivityError, type GetUsersMeActivityErrors, type GetUsersMeActivityResponse, type GetUsersMeActivityResponses, type GetUsersMeDashboardData, type GetUsersMeDashboardError, type GetUsersMeDashboardErrors, type GetUsersMeDashboardResponse, type GetUsersMeDashboardResponses, type GetUsersMeData, type GetUsersMeError, type GetUsersMeErrors, type GetUsersMeResponse, type GetUsersMeResponses, type GetUsersMeStatsData, type GetUsersMeStatsError, type GetUsersMeStatsErrors, type GetUsersMeStatsResponse, type GetUsersMeStatsResponses, type GetUsersMeTenantsData, type GetUsersMeTenantsError, type GetUsersMeTenantsErrors, type GetUsersMeTenantsResponse, type GetUsersMeTenantsResponses, type GetUsersResponse, type GetUsersResponses, type GetWalletData, type GetWalletError, type GetWalletErrors, type GetWalletInvoicesData, type GetWalletInvoicesError, type GetWalletInvoicesErrors, type GetWalletInvoicesResponse, type GetWalletInvoicesResponses, type GetWalletPlanPreviewData, type GetWalletPlanPreviewError, type GetWalletPlanPreviewErrors, type GetWalletPlanPreviewResponse, type GetWalletPlanPreviewResponses, type GetWalletResponse, type GetWalletResponses, type GetWatcherClaimsByIdData, type GetWatcherClaimsByIdError, type GetWatcherClaimsByIdErrors, type GetWatcherClaimsByIdResponse, type GetWatcherClaimsByIdResponses, type GetWatcherClaimsData, type GetWatcherClaimsError, type GetWatcherClaimsErrors, type GetWatcherClaimsHistoryData, type GetWatcherClaimsHistoryError, type GetWatcherClaimsHistoryErrors, type GetWatcherClaimsHistoryResponse, type GetWatcherClaimsHistoryResponses, type GetWatcherClaimsResponse, type GetWatcherClaimsResponses, type GetWatcherClaimsStatusData, type GetWatcherClaimsStatusError, type GetWatcherClaimsStatusErrors, type GetWatcherClaimsStatusResponse, type GetWatcherClaimsStatusResponses, type GetWatcherEventsByIdData, type GetWatcherEventsByIdError, type GetWatcherEventsByIdErrors, type GetWatcherEventsByIdResponse, type GetWatcherEventsByIdResponses, type GetWatcherEventsData, type GetWatcherEventsError, type GetWatcherEventsErrors, type GetWatcherEventsResponse, type GetWatcherEventsResponses, type GetWebhookConfigsByIdData, type GetWebhookConfigsByIdError, type GetWebhookConfigsByIdErrors, type GetWebhookConfigsByIdEventsData, type GetWebhookConfigsByIdEventsError, type GetWebhookConfigsByIdEventsErrors, type GetWebhookConfigsByIdEventsResponse, type GetWebhookConfigsByIdEventsResponses, type GetWebhookConfigsByIdResponse, type GetWebhookConfigsByIdResponses, type GetWebhookConfigsData, type GetWebhookConfigsError, type GetWebhookConfigsErrors, type GetWebhookConfigsResponse, type GetWebhookConfigsResponses, type GetWebhookConfigsStatsData, type GetWebhookConfigsStatsError, type GetWebhookConfigsStatsErrors, type GetWebhookConfigsStatsResponse, type GetWebhookConfigsStatsResponses, type GetWebhookDeliveriesByIdData, type GetWebhookDeliveriesByIdError, type GetWebhookDeliveriesByIdErrors, type GetWebhookDeliveriesByIdResponse, type GetWebhookDeliveriesByIdResponses, type GetWebhookDeliveriesData, type GetWebhookDeliveriesError, type GetWebhookDeliveriesErrors, type GetWebhookDeliveriesResponse, type GetWebhookDeliveriesResponses, type GetWebhookDeliveriesStatsData, type GetWebhookDeliveriesStatsError, type GetWebhookDeliveriesStatsErrors, type GetWebhookDeliveriesStatsResponse, type GetWebhookDeliveriesStatsResponses, type GetWorkspaceMembershipsData, type GetWorkspaceMembershipsError, type GetWorkspaceMembershipsErrors, type GetWorkspaceMembershipsInheritedData, type GetWorkspaceMembershipsInheritedError, type GetWorkspaceMembershipsInheritedErrors, type GetWorkspaceMembershipsInheritedResponse, type GetWorkspaceMembershipsInheritedResponses, type GetWorkspaceMembershipsResponse, type GetWorkspaceMembershipsResponses, type GetWorkspacesAnalyticsBatchData, type GetWorkspacesAnalyticsBatchError, type GetWorkspacesAnalyticsBatchErrors, type GetWorkspacesAnalyticsBatchResponse, type GetWorkspacesAnalyticsBatchResponses, type GetWorkspacesByIdData, type GetWorkspacesByIdError, type GetWorkspacesByIdErrors, type GetWorkspacesByIdMembersData, type GetWorkspacesByIdMembersError, type GetWorkspacesByIdMembersErrors, type GetWorkspacesByIdMembersResponse, type GetWorkspacesByIdMembersResponses, type GetWorkspacesByIdResponse, type GetWorkspacesByIdResponses, type GetWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, type GetWorkspacesByWorkspaceIdExtractionByDocumentIdMappingError, type GetWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, type GetWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponse, type GetWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, type GetWorkspacesByWorkspaceIdExtractionExportsByIdData, type GetWorkspacesByWorkspaceIdExtractionExportsByIdError, type GetWorkspacesByWorkspaceIdExtractionExportsByIdErrors, type GetWorkspacesByWorkspaceIdExtractionExportsByIdResponse, type GetWorkspacesByWorkspaceIdExtractionExportsByIdResponses, type GetWorkspacesByWorkspaceIdExtractionExportsData, type GetWorkspacesByWorkspaceIdExtractionExportsError, type GetWorkspacesByWorkspaceIdExtractionExportsErrors, type GetWorkspacesByWorkspaceIdExtractionExportsResponse, type GetWorkspacesByWorkspaceIdExtractionExportsResponses, type GetWorkspacesByWorkspaceIdTrainingAnalyticsData, type GetWorkspacesByWorkspaceIdTrainingAnalyticsError, type GetWorkspacesByWorkspaceIdTrainingAnalyticsErrors, type GetWorkspacesByWorkspaceIdTrainingAnalyticsResponse, type GetWorkspacesByWorkspaceIdTrainingAnalyticsResponses, type GetWorkspacesData, type GetWorkspacesError, type GetWorkspacesErrors, type GetWorkspacesMineData, type GetWorkspacesMineError, type GetWorkspacesMineErrors, type GetWorkspacesMineResponse, type GetWorkspacesMineResponses, type GetWorkspacesResponse, type GetWorkspacesResponses, type GetWorkspacesSharedData, type GetWorkspacesSharedError, type GetWorkspacesSharedErrors, type GetWorkspacesSharedResponse, type GetWorkspacesSharedResponses, GptCoreError, type GraphEdge, type GraphNode, type Invitation, type InvitationCreateRequest, InvitationCreateSchema, type Invoice, type IsvRevenue, type IsvSettlement, type Ledger, type Link, type Links, type LlmAnalytics, type LoginRequest, LoginRequestSchema, type Message, type MessageSendRequest, MessageSendSchema, NetworkError, NotFoundError, type NotificationLog, type NotificationMethod, type NotificationPreference, type ObjectType, type OperationSuccess, type Options, type PaginatedResponse, type PaginationLinks, type PaginationOptions, type PatchAgentsByIdData, type PatchAgentsByIdError, type PatchAgentsByIdErrors, type PatchAgentsByIdResponse, type PatchAgentsByIdResponses, type PatchAgentsByIdSchemaVersionsByVersionIdData, type PatchAgentsByIdSchemaVersionsByVersionIdError, type PatchAgentsByIdSchemaVersionsByVersionIdErrors, type PatchAgentsByIdSchemaVersionsByVersionIdResponse, type PatchAgentsByIdSchemaVersionsByVersionIdResponses, type PatchAiConversationsByIdData, type PatchAiConversationsByIdError, type PatchAiConversationsByIdErrors, type PatchAiConversationsByIdResponse, type PatchAiConversationsByIdResponses, type PatchApiKeysByIdAllocateData, type PatchApiKeysByIdAllocateError, type PatchApiKeysByIdAllocateErrors, type PatchApiKeysByIdAllocateResponse, type PatchApiKeysByIdAllocateResponses, type PatchApiKeysByIdData, type PatchApiKeysByIdError, type PatchApiKeysByIdErrors, type PatchApiKeysByIdResetPeriodData, type PatchApiKeysByIdResetPeriodError, type PatchApiKeysByIdResetPeriodErrors, type PatchApiKeysByIdResetPeriodResponse, type PatchApiKeysByIdResetPeriodResponses, type PatchApiKeysByIdResponse, type PatchApiKeysByIdResponses, type PatchApiKeysByIdRevokeData, type PatchApiKeysByIdRevokeError, type PatchApiKeysByIdRevokeErrors, type PatchApiKeysByIdRevokeResponse, type PatchApiKeysByIdRevokeResponses, type PatchApiKeysByIdRotateData, type PatchApiKeysByIdRotateError, type PatchApiKeysByIdRotateErrors, type PatchApiKeysByIdRotateResponse, type PatchApiKeysByIdRotateResponses, type PatchApiKeysByIdSetBudgetData, type PatchApiKeysByIdSetBudgetError, type PatchApiKeysByIdSetBudgetErrors, type PatchApiKeysByIdSetBudgetResponse, type PatchApiKeysByIdSetBudgetResponses, type PatchApplicationsByApplicationIdEmailTemplatesBySlugData, type PatchApplicationsByApplicationIdEmailTemplatesBySlugError, type PatchApplicationsByApplicationIdEmailTemplatesBySlugErrors, type PatchApplicationsByApplicationIdEmailTemplatesBySlugResponse, type PatchApplicationsByApplicationIdEmailTemplatesBySlugResponses, type PatchApplicationsByIdAllocateCreditsData, type PatchApplicationsByIdAllocateCreditsError, type PatchApplicationsByIdAllocateCreditsErrors, type PatchApplicationsByIdAllocateCreditsResponse, type PatchApplicationsByIdAllocateCreditsResponses, type PatchApplicationsByIdData, type PatchApplicationsByIdError, type PatchApplicationsByIdErrors, type PatchApplicationsByIdGrantCreditsData, type PatchApplicationsByIdGrantCreditsError, type PatchApplicationsByIdGrantCreditsErrors, type PatchApplicationsByIdGrantCreditsResponse, type PatchApplicationsByIdGrantCreditsResponses, type PatchApplicationsByIdResponse, type PatchApplicationsByIdResponses, type PatchBucketsByIdData, type PatchBucketsByIdError, type PatchBucketsByIdErrors, type PatchBucketsByIdResponse, type PatchBucketsByIdResponses, type PatchConfigsByKeyData, type PatchConfigsByKeyError, type PatchConfigsByKeyErrors, type PatchConfigsByKeyResponse, type PatchConfigsByKeyResponses, type PatchExtractionConfigEnumsByIdData, type PatchExtractionConfigEnumsByIdError, type PatchExtractionConfigEnumsByIdErrors, type PatchExtractionConfigEnumsByIdResponse, type PatchExtractionConfigEnumsByIdResponses, type PatchExtractionDocumentsByIdCancelData, type PatchExtractionDocumentsByIdCancelError, type PatchExtractionDocumentsByIdCancelErrors, type PatchExtractionDocumentsByIdCancelResponse, type PatchExtractionDocumentsByIdCancelResponses, type PatchExtractionDocumentsByIdDismissData, type PatchExtractionDocumentsByIdDismissError, type PatchExtractionDocumentsByIdDismissErrors, type PatchExtractionDocumentsByIdDismissResponse, type PatchExtractionDocumentsByIdDismissResponses, type PatchExtractionDocumentsByIdDismissTrainingData, type PatchExtractionDocumentsByIdDismissTrainingError, type PatchExtractionDocumentsByIdDismissTrainingErrors, type PatchExtractionDocumentsByIdDismissTrainingResponse, type PatchExtractionDocumentsByIdDismissTrainingResponses, type PatchExtractionDocumentsByIdExcludeData, type PatchExtractionDocumentsByIdExcludeError, type PatchExtractionDocumentsByIdExcludeErrors, type PatchExtractionDocumentsByIdExcludeResponse, type PatchExtractionDocumentsByIdExcludeResponses, type PatchExtractionDocumentsByIdFinishUploadData, type PatchExtractionDocumentsByIdFinishUploadError, type PatchExtractionDocumentsByIdFinishUploadErrors, type PatchExtractionDocumentsByIdFinishUploadResponse, type PatchExtractionDocumentsByIdFinishUploadResponses, type PatchExtractionDocumentsByIdIncludeData, type PatchExtractionDocumentsByIdIncludeError, type PatchExtractionDocumentsByIdIncludeErrors, type PatchExtractionDocumentsByIdIncludeResponse, type PatchExtractionDocumentsByIdIncludeResponses, type PatchExtractionDocumentsByIdMarkTrainedData, type PatchExtractionDocumentsByIdMarkTrainedError, type PatchExtractionDocumentsByIdMarkTrainedErrors, type PatchExtractionDocumentsByIdMarkTrainedResponse, type PatchExtractionDocumentsByIdMarkTrainedResponses, type PatchExtractionDocumentsByIdReprocessData, type PatchExtractionDocumentsByIdReprocessError, type PatchExtractionDocumentsByIdReprocessErrors, type PatchExtractionDocumentsByIdReprocessResponse, type PatchExtractionDocumentsByIdReprocessResponses, type PatchExtractionDocumentsByIdRestoreData, type PatchExtractionDocumentsByIdRestoreError, type PatchExtractionDocumentsByIdRestoreErrors, type PatchExtractionDocumentsByIdRestoreResponse, type PatchExtractionDocumentsByIdRestoreResponses, type PatchExtractionDocumentsByIdStatusData, type PatchExtractionDocumentsByIdStatusError, type PatchExtractionDocumentsByIdStatusErrors, type PatchExtractionDocumentsByIdStatusResponse, type PatchExtractionDocumentsByIdStatusResponses, type PatchExtractionDocumentsByIdVerificationData, type PatchExtractionDocumentsByIdVerificationError, type PatchExtractionDocumentsByIdVerificationErrors, type PatchExtractionDocumentsByIdVerificationResponse, type PatchExtractionDocumentsByIdVerificationResponses, type PatchExtractionResultsByIdData, type PatchExtractionResultsByIdError, type PatchExtractionResultsByIdErrors, type PatchExtractionResultsByIdRegenerateData, type PatchExtractionResultsByIdRegenerateError, type PatchExtractionResultsByIdRegenerateErrors, type PatchExtractionResultsByIdRegenerateResponse, type PatchExtractionResultsByIdRegenerateResponses, type PatchExtractionResultsByIdResponse, type PatchExtractionResultsByIdResponses, type PatchExtractionResultsByIdSaveCorrectionsData, type PatchExtractionResultsByIdSaveCorrectionsError, type PatchExtractionResultsByIdSaveCorrectionsErrors, type PatchExtractionResultsByIdSaveCorrectionsResponse, type PatchExtractionResultsByIdSaveCorrectionsResponses, type PatchInvitationsByIdAcceptByUserData, type PatchInvitationsByIdAcceptByUserError, type PatchInvitationsByIdAcceptByUserErrors, type PatchInvitationsByIdAcceptByUserResponse, type PatchInvitationsByIdAcceptByUserResponses, type PatchInvitationsByIdAcceptData, type PatchInvitationsByIdAcceptError, type PatchInvitationsByIdAcceptErrors, type PatchInvitationsByIdAcceptResponse, type PatchInvitationsByIdAcceptResponses, type PatchInvitationsByIdDeclineData, type PatchInvitationsByIdDeclineError, type PatchInvitationsByIdDeclineErrors, type PatchInvitationsByIdDeclineResponse, type PatchInvitationsByIdDeclineResponses, type PatchInvitationsByIdResendData, type PatchInvitationsByIdResendError, type PatchInvitationsByIdResendErrors, type PatchInvitationsByIdResendResponse, type PatchInvitationsByIdResendResponses, type PatchInvitationsByIdRevokeData, type PatchInvitationsByIdRevokeError, type PatchInvitationsByIdRevokeErrors, type PatchInvitationsByIdRevokeResponse, type PatchInvitationsByIdRevokeResponses, type PatchMessagesByIdData, type PatchMessagesByIdError, type PatchMessagesByIdErrors, type PatchMessagesByIdResponse, type PatchMessagesByIdResponses, type PatchNotificationMethodsByIdData, type PatchNotificationMethodsByIdError, type PatchNotificationMethodsByIdErrors, type PatchNotificationMethodsByIdResponse, type PatchNotificationMethodsByIdResponses, type PatchNotificationMethodsByIdSendVerificationData, type PatchNotificationMethodsByIdSendVerificationError, type PatchNotificationMethodsByIdSendVerificationErrors, type PatchNotificationMethodsByIdSendVerificationResponse, type PatchNotificationMethodsByIdSendVerificationResponses, type PatchNotificationMethodsByIdSetPrimaryData, type PatchNotificationMethodsByIdSetPrimaryError, type PatchNotificationMethodsByIdSetPrimaryErrors, type PatchNotificationMethodsByIdSetPrimaryResponse, type PatchNotificationMethodsByIdSetPrimaryResponses, type PatchNotificationMethodsByIdVerifyData, type PatchNotificationMethodsByIdVerifyError, type PatchNotificationMethodsByIdVerifyErrors, type PatchNotificationMethodsByIdVerifyResponse, type PatchNotificationMethodsByIdVerifyResponses, type PatchNotificationPreferencesByIdData, type PatchNotificationPreferencesByIdError, type PatchNotificationPreferencesByIdErrors, type PatchNotificationPreferencesByIdResponse, type PatchNotificationPreferencesByIdResponses, type PatchPaymentMethodsByIdData, type PatchPaymentMethodsByIdDefaultData, type PatchPaymentMethodsByIdDefaultError, type PatchPaymentMethodsByIdDefaultErrors, type PatchPaymentMethodsByIdDefaultResponse, type PatchPaymentMethodsByIdDefaultResponses, type PatchPaymentMethodsByIdError, type PatchPaymentMethodsByIdErrors, type PatchPaymentMethodsByIdResponse, type PatchPaymentMethodsByIdResponses, type PatchSearchSavedByIdData, type PatchSearchSavedByIdError, type PatchSearchSavedByIdErrors, type PatchSearchSavedByIdResponse, type PatchSearchSavedByIdResponses, type PatchTenantMembershipsByTenantIdByUserIdData, type PatchTenantMembershipsByTenantIdByUserIdError, type PatchTenantMembershipsByTenantIdByUserIdErrors, type PatchTenantMembershipsByTenantIdByUserIdResponse, type PatchTenantMembershipsByTenantIdByUserIdResponses, type PatchTenantsByIdData, type PatchTenantsByIdError, type PatchTenantsByIdErrors, type PatchTenantsByIdResponse, type PatchTenantsByIdResponses, type PatchThreadsByIdArchiveData, type PatchThreadsByIdArchiveError, type PatchThreadsByIdArchiveErrors, type PatchThreadsByIdArchiveResponse, type PatchThreadsByIdArchiveResponses, type PatchThreadsByIdData, type PatchThreadsByIdError, type PatchThreadsByIdErrors, type PatchThreadsByIdResponse, type PatchThreadsByIdResponses, type PatchThreadsByIdUnarchiveData, type PatchThreadsByIdUnarchiveError, type PatchThreadsByIdUnarchiveErrors, type PatchThreadsByIdUnarchiveResponse, type PatchThreadsByIdUnarchiveResponses, type PatchTrainingExamplesByIdData, type PatchTrainingExamplesByIdError, type PatchTrainingExamplesByIdErrors, type PatchTrainingExamplesByIdResponse, type PatchTrainingExamplesByIdResponses, type PatchUserProfilesByIdAcceptTosData, type PatchUserProfilesByIdAcceptTosError, type PatchUserProfilesByIdAcceptTosErrors, type PatchUserProfilesByIdAcceptTosResponse, type PatchUserProfilesByIdAcceptTosResponses, type PatchUserProfilesByIdData, type PatchUserProfilesByIdDismissAnnouncementData, type PatchUserProfilesByIdDismissAnnouncementError, type PatchUserProfilesByIdDismissAnnouncementErrors, type PatchUserProfilesByIdDismissAnnouncementResponse, type PatchUserProfilesByIdDismissAnnouncementResponses, type PatchUserProfilesByIdDismissWelcomeData, type PatchUserProfilesByIdDismissWelcomeError, type PatchUserProfilesByIdDismissWelcomeErrors, type PatchUserProfilesByIdDismissWelcomeResponse, type PatchUserProfilesByIdDismissWelcomeResponses, type PatchUserProfilesByIdError, type PatchUserProfilesByIdErrors, type PatchUserProfilesByIdResponse, type PatchUserProfilesByIdResponses, type PatchUsersAuthPasswordChangeData, type PatchUsersAuthPasswordChangeError, type PatchUsersAuthPasswordChangeErrors, type PatchUsersAuthPasswordChangeResponse, type PatchUsersAuthPasswordChangeResponses, type PatchUsersAuthResetPasswordData, type PatchUsersAuthResetPasswordError, type PatchUsersAuthResetPasswordErrors, type PatchUsersAuthResetPasswordResponse, type PatchUsersAuthResetPasswordResponses, type PatchUsersByIdAdminData, type PatchUsersByIdAdminEmailData, type PatchUsersByIdAdminEmailError, type PatchUsersByIdAdminEmailErrors, type PatchUsersByIdAdminEmailResponse, type PatchUsersByIdAdminEmailResponses, type PatchUsersByIdAdminError, type PatchUsersByIdAdminErrors, type PatchUsersByIdAdminResponse, type PatchUsersByIdAdminResponses, type PatchUsersByIdConfirmEmailData, type PatchUsersByIdConfirmEmailError, type PatchUsersByIdConfirmEmailErrors, type PatchUsersByIdConfirmEmailResponse, type PatchUsersByIdConfirmEmailResponses, type PatchUsersByIdResetPasswordData, type PatchUsersByIdResetPasswordError, type PatchUsersByIdResetPasswordErrors, type PatchUsersByIdResetPasswordResponse, type PatchUsersByIdResetPasswordResponses, type PatchWalletAddonsByAddonSlugCancelData, type PatchWalletAddonsByAddonSlugCancelError, type PatchWalletAddonsByAddonSlugCancelErrors, type PatchWalletAddonsByAddonSlugCancelResponse, type PatchWalletAddonsByAddonSlugCancelResponses, type PatchWalletAddonsData, type PatchWalletAddonsError, type PatchWalletAddonsErrors, type PatchWalletAddonsResponse, type PatchWalletAddonsResponses, type PatchWalletAutoTopUpData, type PatchWalletAutoTopUpError, type PatchWalletAutoTopUpErrors, type PatchWalletAutoTopUpResponse, type PatchWalletAutoTopUpResponses, type PatchWalletCreditsData, type PatchWalletCreditsError, type PatchWalletCreditsErrors, type PatchWalletCreditsResponse, type PatchWalletCreditsResponses, type PatchWalletPlanData, type PatchWalletPlanError, type PatchWalletPlanErrors, type PatchWalletPlanResponse, type PatchWalletPlanResponses, type PatchWatcherClaimsByIdData, type PatchWatcherClaimsByIdError, type PatchWatcherClaimsByIdErrors, type PatchWatcherClaimsByIdReleaseData, type PatchWatcherClaimsByIdReleaseError, type PatchWatcherClaimsByIdReleaseErrors, type PatchWatcherClaimsByIdReleaseResponse, type PatchWatcherClaimsByIdReleaseResponses, type PatchWatcherClaimsByIdResponse, type PatchWatcherClaimsByIdResponses, type PatchWatcherClaimsByIdRetryData, type PatchWatcherClaimsByIdRetryError, type PatchWatcherClaimsByIdRetryErrors, type PatchWatcherClaimsByIdRetryResponse, type PatchWatcherClaimsByIdRetryResponses, type PatchWebhookConfigsByIdData, type PatchWebhookConfigsByIdError, type PatchWebhookConfigsByIdErrors, type PatchWebhookConfigsByIdResponse, type PatchWebhookConfigsByIdResponses, type PatchWebhookConfigsByIdRotateSecretData, type PatchWebhookConfigsByIdRotateSecretError, type PatchWebhookConfigsByIdRotateSecretErrors, type PatchWebhookConfigsByIdRotateSecretResponse, type PatchWebhookConfigsByIdRotateSecretResponses, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdData, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdError, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdResponse, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type PatchWorkspacesByIdAllocateData, type PatchWorkspacesByIdAllocateError, type PatchWorkspacesByIdAllocateErrors, type PatchWorkspacesByIdAllocateResponse, type PatchWorkspacesByIdAllocateResponses, type PatchWorkspacesByIdData, type PatchWorkspacesByIdError, type PatchWorkspacesByIdErrors, type PatchWorkspacesByIdPopulateHashesData, type PatchWorkspacesByIdPopulateHashesError, type PatchWorkspacesByIdPopulateHashesErrors, type PatchWorkspacesByIdPopulateHashesResponse, type PatchWorkspacesByIdPopulateHashesResponses, type PatchWorkspacesByIdResponse, type PatchWorkspacesByIdResponses, type PatchWorkspacesByIdStorageSettingsData, type PatchWorkspacesByIdStorageSettingsError, type PatchWorkspacesByIdStorageSettingsErrors, type PatchWorkspacesByIdStorageSettingsResponse, type PatchWorkspacesByIdStorageSettingsResponses, type Payment, type PaymentMethod, type Permission, type PermissionMeta, type PermissionPreset, type Plan, type PlatformPricingConfig, type PostAgentTestResultsData, type PostAgentTestResultsError, type PostAgentTestResultsErrors, type PostAgentTestResultsResponse, type PostAgentTestResultsResponses, type PostAgentVersionComparisonsData, type PostAgentVersionComparisonsError, type PostAgentVersionComparisonsErrors, type PostAgentVersionComparisonsResponse, type PostAgentVersionComparisonsResponses, type PostAgentVersionsByIdAddSystemFieldData, type PostAgentVersionsByIdAddSystemFieldError, type PostAgentVersionsByIdAddSystemFieldErrors, type PostAgentVersionsByIdAddSystemFieldResponses, type PostAgentVersionsByIdRemoveSystemFieldData, type PostAgentVersionsByIdRemoveSystemFieldError, type PostAgentVersionsByIdRemoveSystemFieldErrors, type PostAgentVersionsByIdRemoveSystemFieldResponses, type PostAgentVersionsByIdSetSystemFieldsData, type PostAgentVersionsByIdSetSystemFieldsError, type PostAgentVersionsByIdSetSystemFieldsErrors, type PostAgentVersionsByIdSetSystemFieldsResponses, type PostAgentVersionsData, type PostAgentVersionsError, type PostAgentVersionsErrors, type PostAgentVersionsResponse, type PostAgentVersionsResponses, type PostAgentsByIdAnalyzeTrainingData, type PostAgentsByIdAnalyzeTrainingError, type PostAgentsByIdAnalyzeTrainingErrors, type PostAgentsByIdAnalyzeTrainingResponse, type PostAgentsByIdAnalyzeTrainingResponses, type PostAgentsByIdCloneData, type PostAgentsByIdCloneError, type PostAgentsByIdCloneErrors, type PostAgentsByIdCloneResponse, type PostAgentsByIdCloneResponses, type PostAgentsByIdDiscoverSchemaData, type PostAgentsByIdDiscoverSchemaError, type PostAgentsByIdDiscoverSchemaErrors, type PostAgentsByIdDiscoverSchemaResponse, type PostAgentsByIdDiscoverSchemaResponses, type PostAgentsByIdExportData, type PostAgentsByIdExportError, type PostAgentsByIdExportErrors, type PostAgentsByIdExportResponse, type PostAgentsByIdExportResponses, type PostAgentsByIdPublishVersionData, type PostAgentsByIdPublishVersionError, type PostAgentsByIdPublishVersionErrors, type PostAgentsByIdPublishVersionResponse, type PostAgentsByIdPublishVersionResponses, type PostAgentsByIdRestoreVersionData, type PostAgentsByIdRestoreVersionError, type PostAgentsByIdRestoreVersionErrors, type PostAgentsByIdRestoreVersionResponse, type PostAgentsByIdRestoreVersionResponses, type PostAgentsByIdSchemaVersionsByVersionIdActivateData, type PostAgentsByIdSchemaVersionsByVersionIdActivateError, type PostAgentsByIdSchemaVersionsByVersionIdActivateErrors, type PostAgentsByIdSchemaVersionsByVersionIdActivateResponse, type PostAgentsByIdSchemaVersionsByVersionIdActivateResponses, type PostAgentsByIdSchemaVersionsData, type PostAgentsByIdSchemaVersionsError, type PostAgentsByIdSchemaVersionsErrors, type PostAgentsByIdSchemaVersionsResponse, type PostAgentsByIdSchemaVersionsResponses, type PostAgentsByIdTeachData, type PostAgentsByIdTeachError, type PostAgentsByIdTeachErrors, type PostAgentsByIdTeachResponse, type PostAgentsByIdTeachResponses, type PostAgentsByIdTestData, type PostAgentsByIdTestError, type PostAgentsByIdTestErrors, type PostAgentsByIdTestResponse, type PostAgentsByIdTestResponses, type PostAgentsByIdValidateData, type PostAgentsByIdValidateError, type PostAgentsByIdValidateErrors, type PostAgentsByIdValidateResponse, type PostAgentsByIdValidateResponses, type PostAgentsCloneForWorkspaceData, type PostAgentsCloneForWorkspaceError, type PostAgentsCloneForWorkspaceErrors, type PostAgentsCloneForWorkspaceResponse, type PostAgentsCloneForWorkspaceResponses, type PostAgentsData, type PostAgentsDiscoverSchemaData, type PostAgentsDiscoverSchemaError, type PostAgentsDiscoverSchemaErrors, type PostAgentsDiscoverSchemaResponse, type PostAgentsDiscoverSchemaResponses, type PostAgentsError, type PostAgentsErrors, type PostAgentsImportData, type PostAgentsImportError, type PostAgentsImportErrors, type PostAgentsImportResponse, type PostAgentsImportResponses, type PostAgentsPredictData, type PostAgentsPredictError, type PostAgentsPredictErrors, type PostAgentsPredictResponse, type PostAgentsPredictResponses, type PostAgentsResponse, type PostAgentsResponses, type PostAiChunksSearchData, type PostAiChunksSearchError, type PostAiChunksSearchErrors, type PostAiChunksSearchResponse, type PostAiChunksSearchResponses, type PostAiConversationsData, type PostAiConversationsError, type PostAiConversationsErrors, type PostAiConversationsResponse, type PostAiConversationsResponses, type PostAiEmbedData, type PostAiEmbedError, type PostAiEmbedErrors, type PostAiEmbedResponse, type PostAiEmbedResponses, type PostAiGraphEdgesData, type PostAiGraphEdgesError, type PostAiGraphEdgesErrors, type PostAiGraphEdgesResponse, type PostAiGraphEdgesResponses, type PostAiGraphNodesData, type PostAiGraphNodesError, type PostAiGraphNodesErrors, type PostAiGraphNodesResponse, type PostAiGraphNodesResponses, type PostAiMessagesData, type PostAiMessagesError, type PostAiMessagesErrors, type PostAiMessagesResponse, type PostAiMessagesResponses, type PostAiSearchAdvancedData, type PostAiSearchAdvancedError, type PostAiSearchAdvancedErrors, type PostAiSearchAdvancedResponse, type PostAiSearchAdvancedResponses, type PostAiSearchData, type PostAiSearchError, type PostAiSearchErrors, type PostAiSearchResponse, type PostAiSearchResponses, type PostApiKeysData, type PostApiKeysError, type PostApiKeysErrors, type PostApiKeysResponse, type PostApiKeysResponses, type PostApplicationsByApplicationIdEmailTemplatesBySlugPreviewData, type PostApplicationsByApplicationIdEmailTemplatesBySlugPreviewError, type PostApplicationsByApplicationIdEmailTemplatesBySlugPreviewErrors, type PostApplicationsByApplicationIdEmailTemplatesBySlugPreviewResponse, type PostApplicationsByApplicationIdEmailTemplatesBySlugPreviewResponses, type PostApplicationsByApplicationIdEmailTemplatesBySlugTestData, type PostApplicationsByApplicationIdEmailTemplatesBySlugTestError, type PostApplicationsByApplicationIdEmailTemplatesBySlugTestErrors, type PostApplicationsByApplicationIdEmailTemplatesBySlugTestResponse, type PostApplicationsByApplicationIdEmailTemplatesBySlugTestResponses, type PostApplicationsByApplicationIdEmailTemplatesData, type PostApplicationsByApplicationIdEmailTemplatesError, type PostApplicationsByApplicationIdEmailTemplatesErrors, type PostApplicationsByApplicationIdEmailTemplatesResponse, type PostApplicationsByApplicationIdEmailTemplatesResponses, type PostApplicationsData, type PostApplicationsError, type PostApplicationsErrors, type PostApplicationsResponse, type PostApplicationsResponses, type PostBucketsData, type PostBucketsError, type PostBucketsErrors, type PostBucketsResponse, type PostBucketsResponses, type PostConfigsData, type PostConfigsError, type PostConfigsErrors, type PostConfigsResponse, type PostConfigsResponses, type PostDocumentsBulkDeleteData, type PostDocumentsBulkDeleteError, type PostDocumentsBulkDeleteErrors, type PostDocumentsBulkDeleteResponse, type PostDocumentsBulkDeleteResponses, type PostDocumentsPresignedUploadData, type PostDocumentsPresignedUploadError, type PostDocumentsPresignedUploadErrors, type PostDocumentsPresignedUploadResponse, type PostDocumentsPresignedUploadResponses, type PostExtractionBatchesData, type PostExtractionBatchesError, type PostExtractionBatchesErrors, type PostExtractionBatchesResponse, type PostExtractionBatchesResponses, type PostExtractionConfigEnumsData, type PostExtractionConfigEnumsError, type PostExtractionConfigEnumsErrors, type PostExtractionConfigEnumsResponse, type PostExtractionConfigEnumsResponses, type PostExtractionDocumentsBeginUploadData, type PostExtractionDocumentsBeginUploadError, type PostExtractionDocumentsBeginUploadErrors, type PostExtractionDocumentsBeginUploadResponse, type PostExtractionDocumentsBeginUploadResponses, type PostExtractionDocumentsBulkReprocessData, type PostExtractionDocumentsBulkReprocessError, type PostExtractionDocumentsBulkReprocessErrors, type PostExtractionDocumentsBulkReprocessResponse, type PostExtractionDocumentsBulkReprocessResponses, type PostExtractionDocumentsFindOrBeginUploadData, type PostExtractionDocumentsFindOrBeginUploadError, type PostExtractionDocumentsFindOrBeginUploadErrors, type PostExtractionDocumentsFindOrBeginUploadResponse, type PostExtractionDocumentsFindOrBeginUploadResponses, type PostExtractionDocumentsUploadData, type PostExtractionDocumentsUploadError, type PostExtractionDocumentsUploadErrors, type PostExtractionDocumentsUploadResponse, type PostExtractionDocumentsUploadResponses, type PostExtractionSchemaDiscoveriesData, type PostExtractionSchemaDiscoveriesError, type PostExtractionSchemaDiscoveriesErrors, type PostExtractionSchemaDiscoveriesResponse, type PostExtractionSchemaDiscoveriesResponses, type PostFieldTemplatesData, type PostFieldTemplatesError, type PostFieldTemplatesErrors, type PostFieldTemplatesResponse, type PostFieldTemplatesResponses, type PostInvitationsAcceptByTokenData, type PostInvitationsAcceptByTokenError, type PostInvitationsAcceptByTokenErrors, type PostInvitationsAcceptByTokenResponse, type PostInvitationsAcceptByTokenResponses, type PostInvitationsData, type PostInvitationsError, type PostInvitationsErrors, type PostInvitationsResponse, type PostInvitationsResponses, type PostLlmAnalyticsData, type PostLlmAnalyticsError, type PostLlmAnalyticsErrors, type PostLlmAnalyticsResponse, type PostLlmAnalyticsResponses, type PostMessagesData, type PostMessagesError, type PostMessagesErrors, type PostMessagesResponse, type PostMessagesResponses, type PostNotificationMethodsData, type PostNotificationMethodsError, type PostNotificationMethodsErrors, type PostNotificationMethodsResponse, type PostNotificationMethodsResponses, type PostNotificationPreferencesData, type PostNotificationPreferencesError, type PostNotificationPreferencesErrors, type PostNotificationPreferencesResponse, type PostNotificationPreferencesResponses, type PostObjectsBulkDestroyData, type PostObjectsBulkDestroyError, type PostObjectsBulkDestroyErrors, type PostObjectsBulkDestroyResponse, type PostObjectsBulkDestroyResponses, type PostObjectsCopyData, type PostObjectsCopyError, type PostObjectsCopyErrors, type PostObjectsCopyResponse, type PostObjectsCopyResponses, type PostObjectsMoveData, type PostObjectsMoveError, type PostObjectsMoveErrors, type PostObjectsMoveResponse, type PostObjectsMoveResponses, type PostObjectsRegisterData, type PostObjectsRegisterError, type PostObjectsRegisterErrors, type PostObjectsRegisterResponse, type PostObjectsRegisterResponses, type PostPaymentMethodsData, type PostPaymentMethodsError, type PostPaymentMethodsErrors, type PostPaymentMethodsResponse, type PostPaymentMethodsResponses, type PostPaymentMethodsTokenizeData, type PostPaymentMethodsTokenizeError, type PostPaymentMethodsTokenizeErrors, type PostPaymentMethodsTokenizeResponse, type PostPaymentMethodsTokenizeResponses, type PostPaymentsData, type PostPaymentsError, type PostPaymentsErrors, type PostPaymentsResponse, type PostPaymentsResponses, type PostSearchBatchData, type PostSearchBatchError, type PostSearchBatchErrors, type PostSearchBatchResponse, type PostSearchBatchResponses, type PostSearchReindexData, type PostSearchReindexError, type PostSearchReindexErrors, type PostSearchReindexResponse, type PostSearchReindexResponses, type PostSearchSavedByIdRunData, type PostSearchSavedByIdRunError, type PostSearchSavedByIdRunErrors, type PostSearchSavedByIdRunResponse, type PostSearchSavedByIdRunResponses, type PostSearchSavedData, type PostSearchSavedError, type PostSearchSavedErrors, type PostSearchSavedResponse, type PostSearchSavedResponses, type PostStorageSignDownloadData, type PostStorageSignDownloadError, type PostStorageSignDownloadErrors, type PostStorageSignDownloadResponse, type PostStorageSignDownloadResponses, type PostStorageSignUploadData, type PostStorageSignUploadError, type PostStorageSignUploadErrors, type PostStorageSignUploadResponse, type PostStorageSignUploadResponses, type PostTenantMembershipsData, type PostTenantMembershipsError, type PostTenantMembershipsErrors, type PostTenantMembershipsResponse, type PostTenantMembershipsResponses, type PostTenantsByIdBuyStorageData, type PostTenantsByIdBuyStorageError, type PostTenantsByIdBuyStorageErrors, type PostTenantsByIdBuyStorageResponse, type PostTenantsByIdBuyStorageResponses, type PostTenantsByIdCreditData, type PostTenantsByIdCreditError, type PostTenantsByIdCreditErrors, type PostTenantsByIdCreditResponse, type PostTenantsByIdCreditResponses, type PostTenantsByIdRemoveStorageData, type PostTenantsByIdRemoveStorageError, type PostTenantsByIdRemoveStorageErrors, type PostTenantsByIdRemoveStorageResponse, type PostTenantsByIdRemoveStorageResponses, type PostTenantsByIdSchedulePurgeData, type PostTenantsByIdSchedulePurgeError, type PostTenantsByIdSchedulePurgeErrors, type PostTenantsByIdSchedulePurgeResponse, type PostTenantsByIdSchedulePurgeResponses, type PostTenantsData, type PostTenantsError, type PostTenantsErrors, type PostTenantsIsvData, type PostTenantsIsvError, type PostTenantsIsvErrors, type PostTenantsIsvResponse, type PostTenantsIsvResponses, type PostTenantsResponse, type PostTenantsResponses, type PostThreadsActiveData, type PostThreadsActiveError, type PostThreadsActiveErrors, type PostThreadsActiveResponse, type PostThreadsActiveResponses, type PostThreadsByIdExportData, type PostThreadsByIdExportError, type PostThreadsByIdExportErrors, type PostThreadsByIdExportResponse, type PostThreadsByIdExportResponses, type PostThreadsByIdForkData, type PostThreadsByIdForkError, type PostThreadsByIdForkErrors, type PostThreadsByIdForkResponse, type PostThreadsByIdForkResponses, type PostThreadsByIdMessagesData, type PostThreadsByIdMessagesError, type PostThreadsByIdMessagesErrors, type PostThreadsByIdMessagesResponse, type PostThreadsByIdMessagesResponses, type PostThreadsByIdSummarizeData, type PostThreadsByIdSummarizeError, type PostThreadsByIdSummarizeErrors, type PostThreadsByIdSummarizeResponse, type PostThreadsByIdSummarizeResponses, type PostThreadsData, type PostThreadsError, type PostThreadsErrors, type PostThreadsResponse, type PostThreadsResponses, type PostTokensData, type PostTokensError, type PostTokensErrors, type PostTokensResponse, type PostTokensResponses, type PostTrainingExamplesBulkData, type PostTrainingExamplesBulkDeleteData, type PostTrainingExamplesBulkDeleteError, type PostTrainingExamplesBulkDeleteErrors, type PostTrainingExamplesBulkDeleteResponse, type PostTrainingExamplesBulkDeleteResponses, type PostTrainingExamplesBulkError, type PostTrainingExamplesBulkErrors, type PostTrainingExamplesBulkResponse, type PostTrainingExamplesBulkResponses, type PostTrainingExamplesData, type PostTrainingExamplesError, type PostTrainingExamplesErrors, type PostTrainingExamplesResponse, type PostTrainingExamplesResponses, type PostTrainingExamplesSearchData, type PostTrainingExamplesSearchError, type PostTrainingExamplesSearchErrors, type PostTrainingExamplesSearchResponse, type PostTrainingExamplesSearchResponses, type PostUserProfilesData, type PostUserProfilesError, type PostUserProfilesErrors, type PostUserProfilesResponse, type PostUserProfilesResponses, type PostUsersAuthConfirmData, type PostUsersAuthConfirmError, type PostUsersAuthConfirmErrors, type PostUsersAuthConfirmResponse, type PostUsersAuthConfirmResponses, type PostUsersAuthLoginData, type PostUsersAuthLoginError, type PostUsersAuthLoginErrors, type PostUsersAuthLoginResponse, type PostUsersAuthLoginResponses, type PostUsersAuthMagicLinkLoginData, type PostUsersAuthMagicLinkLoginError, type PostUsersAuthMagicLinkLoginErrors, type PostUsersAuthMagicLinkLoginResponse, type PostUsersAuthMagicLinkLoginResponses, type PostUsersAuthMagicLinkRequestData, type PostUsersAuthMagicLinkRequestError, type PostUsersAuthMagicLinkRequestErrors, type PostUsersAuthMagicLinkRequestResponse, type PostUsersAuthMagicLinkRequestResponses, type PostUsersAuthRegisterData, type PostUsersAuthRegisterError, type PostUsersAuthRegisterErrors, type PostUsersAuthRegisterResponse, type PostUsersAuthRegisterResponses, type PostUsersAuthRegisterWithOidcData, type PostUsersAuthRegisterWithOidcError, type PostUsersAuthRegisterWithOidcErrors, type PostUsersAuthRegisterWithOidcResponse, type PostUsersAuthRegisterWithOidcResponses, type PostUsersAuthResendConfirmationData, type PostUsersAuthResendConfirmationError, type PostUsersAuthResendConfirmationErrors, type PostUsersAuthResendConfirmationResponse, type PostUsersAuthResendConfirmationResponses, type PostUsersRegisterIsvData, type PostUsersRegisterIsvError, type PostUsersRegisterIsvErrors, type PostUsersRegisterIsvResponse, type PostUsersRegisterIsvResponses, type PostWatcherClaimsData, type PostWatcherClaimsError, type PostWatcherClaimsErrors, type PostWatcherClaimsResponse, type PostWatcherClaimsResponses, type PostWatcherEventsData, type PostWatcherEventsError, type PostWatcherEventsErrors, type PostWatcherEventsResponse, type PostWatcherEventsResponses, type PostWebhookConfigsBulkDisableData, type PostWebhookConfigsBulkDisableError, type PostWebhookConfigsBulkDisableErrors, type PostWebhookConfigsBulkDisableResponse, type PostWebhookConfigsBulkDisableResponses, type PostWebhookConfigsBulkEnableData, type PostWebhookConfigsBulkEnableError, type PostWebhookConfigsBulkEnableErrors, type PostWebhookConfigsBulkEnableResponse, type PostWebhookConfigsBulkEnableResponses, type PostWebhookConfigsByIdReplayData, type PostWebhookConfigsByIdReplayError, type PostWebhookConfigsByIdReplayErrors, type PostWebhookConfigsByIdReplayResponse, type PostWebhookConfigsByIdReplayResponses, type PostWebhookConfigsByIdTestData, type PostWebhookConfigsByIdTestError, type PostWebhookConfigsByIdTestErrors, type PostWebhookConfigsByIdTestResponse, type PostWebhookConfigsByIdTestResponses, type PostWebhookConfigsData, type PostWebhookConfigsError, type PostWebhookConfigsErrors, type PostWebhookConfigsResponse, type PostWebhookConfigsResponses, type PostWebhookDeliveriesBulkRetryData, type PostWebhookDeliveriesBulkRetryError, type PostWebhookDeliveriesBulkRetryErrors, type PostWebhookDeliveriesBulkRetryResponse, type PostWebhookDeliveriesBulkRetryResponses, type PostWebhookDeliveriesByIdRetryData, type PostWebhookDeliveriesByIdRetryError, type PostWebhookDeliveriesByIdRetryErrors, type PostWebhookDeliveriesByIdRetryResponse, type PostWebhookDeliveriesByIdRetryResponses, type PostWorkspaceMembershipsData, type PostWorkspaceMembershipsError, type PostWorkspaceMembershipsErrors, type PostWorkspaceMembershipsResponse, type PostWorkspaceMembershipsResponses, type PostWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, type PostWorkspacesByWorkspaceIdExtractionByDocumentIdMappingError, type PostWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, type PostWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponse, type PostWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedData, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedError, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedErrors, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponse, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponses, type PostWorkspacesByWorkspaceIdExtractionExportsData, type PostWorkspacesByWorkspaceIdExtractionExportsError, type PostWorkspacesByWorkspaceIdExtractionExportsErrors, type PostWorkspacesByWorkspaceIdExtractionExportsResponse, type PostWorkspacesByWorkspaceIdExtractionExportsResponses, type PostWorkspacesData, type PostWorkspacesError, type PostWorkspacesErrors, type PostWorkspacesResponse, type PostWorkspacesResponses, type PresignedDownloadRequest, PresignedDownloadSchema, type PresignedUploadRequest, PresignedUploadSchema, type PresignedUrl, type PricingRule, type PricingStrategy, RateLimitError, type RegisterRequest, RegisterRequestSchema, type RetryConfig, type SavedSearch, type SchemaDiscovery, type Search, type SearchAnalytics, type SearchRequest, SearchRequestSchema, type SemanticCacheEntry, ServerError, type Settlement, type ShadowComparison, type StorageStats, type StorageStatsType, type StreamMessageChunk, type StreamOptions, type Subscription, type SystemMessage, type Tenant, type TenantDocumentStats, type TenantMembership, type TenantPricingOverride, type TenantStats, type Thread, type ThreadCreateRequest, ThreadCreateSchema, 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 WebhookConfig, type WebhookConfigCreateRequest, WebhookConfigCreateSchema, type WebhookConfigUpdateRequest, WebhookConfigUpdateSchema, type WebhookDelivery, WebhookError, type WholesaleAgreement, type Workspace, type WorkspaceCreateRequest, WorkspaceCreateSchema, type WorkspaceDocumentStats, type WorkspaceMembership, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, calculateBackoff, client, collectStreamedMessage, gptCore as default, deleteAgentVersionsById, deleteAgentsById, deleteAgentsByIdTrainingExamplesByExampleId, deleteAiConversationsById, deleteAiGraphEdgesById, deleteAiGraphNodesById, deleteAiMessagesById, deleteApiKeysById, deleteApplicationsByApplicationIdEmailTemplatesBySlug, deleteApplicationsById, deleteBucketsById, deleteExtractionBatchesById, deleteExtractionDocumentsById, deleteExtractionResultsById, deleteFieldTemplatesById, deleteMessagesById, deleteNotificationMethodsById, deleteNotificationPreferencesById, deleteObjectsById, deletePaymentMethodsById, deleteSearchSavedById, deleteTenantMembershipsByTenantIdByUserId, deleteTenantsById, deleteThreadsById, deleteTrainingExamplesById, deleteTrainingSessionsById, deleteUserProfilesById, deleteUsersById, deleteWebhookConfigsById, deleteWorkspaceMembershipsByWorkspaceIdByUserId, deleteWorkspacesById, getAgentVersionRevisions, getAgentVersionRevisionsById, getAgentVersions, getAgentVersionsById, getAgentVersionsByIdMetrics, getAgentVersionsByIdRevisions, getAgents, getAgentsById, getAgentsByIdSchemaVersions, getAgentsByIdStats, getAgentsByIdTrainingExamples, getAgentsByIdTrainingStats, getAgentsByIdUsage, getAgentsUsage, getAiChunksDocumentByDocumentId, getAiConversations, getAiConversationsById, getAiGraphEdges, getAiGraphNodes, getAiGraphNodesBySourceNodeIdRelated, getAiGraphNodesLabelByLabel, getAiMessages, getApiKeys, getApiKeysActive, getApiKeysById, getApiKeysStats, getApplications, getApplicationsByApplicationIdEmailTemplates, getApplicationsByApplicationIdEmailTemplatesBySlug, getApplicationsById, getApplicationsBySlugBySlug, getApplicationsCurrent, getAuditLogs, getAuditLogsActivity, getBuckets, getBucketsAll, getBucketsById, getBucketsByIdObjects, getBucketsByIdStats, getConfigs, getCreditPackages, getCreditPackagesById, getCreditPackagesSlugBySlug, getDocumentsStats, getExtractionBatchesById, getExtractionBatchesByIdUploadUrls, getExtractionBatchesWorkspaceByWorkspaceId, getExtractionConfigEnums, getExtractionConfigEnumsById, getExtractionDocuments, getExtractionDocumentsById, getExtractionDocumentsByIdStatus, getExtractionDocumentsByIdView, getExtractionDocumentsWorkspaceByWorkspaceId, getExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatus, getExtractionDocumentsWorkspaceByWorkspaceIdExcluded, getExtractionDocumentsWorkspaceByWorkspaceIdReviewQueue, getExtractionDocumentsWorkspaceByWorkspaceIdTrained, getExtractionDocumentsWorkspaceByWorkspaceIdTrashed, getExtractionResults, getExtractionResultsById, getExtractionResultsDocumentByDocumentId, getExtractionResultsWorkspaceByWorkspaceId, getExtractionSchemaDiscoveriesById, getFieldTemplates, getFieldTemplatesById, getInvitations, getInvitationsConsumeByToken, getInvitationsMe, getLlmAnalytics, getLlmAnalyticsById, getLlmAnalyticsCosts, getLlmAnalyticsPlatform, getLlmAnalyticsSummary, getLlmAnalyticsUsage, getLlmAnalyticsWorkspace, getMessages, getMessagesById, getMessagesSearch, getMessagesSemanticSearch, getNotificationLogs, getNotificationLogsById, getNotificationLogsStats, getNotificationMethods, getNotificationMethodsById, getNotificationPreferences, getNotificationPreferencesById, getObjects, getObjectsById, getPaymentMethods, getPaymentMethodsById, getPermissions, getPermissionsById, getPermissionsMeta, getPermissionsPresets, getPermissionsPresetsById, getPlans, getPlansById, getPlansSlugBySlug, getSearch, getSearchAnalytics, getSearchAnalyticsSummary, getSearchHealth, getSearchIndexes, getSearchSaved, getSearchSemantic, getSearchStats, getSearchStatus, getSearchSuggest, getStorageStats, getStorageStatsTenantByTenantId, getTenantMemberships, getTenants, getTenantsById, getTenantsByTenantIdDocumentStats, getTenantsByTenantIdStats, getTenantsByTenantIdWorkspaceStats, getThreads, getThreadsById, getThreadsByIdMessages, getThreadsSearch, getThreadsStats, getThreadsWorkspaceStats, getTrainingExamples, getTrainingExamplesById, getTrainingSessionsAgentsByAgentIdSessions, getTrainingSessionsById, getTransactions, getTransactionsById, getUserProfiles, getUserProfilesById, getUserProfilesMe, getUsers, getUsersByEmail, getUsersById, getUsersMe, getUsersMeActivity, getUsersMeDashboard, getUsersMeStats, getUsersMeTenants, getWallet, getWalletInvoices, getWalletPlanPreview, getWatcherClaims, getWatcherClaimsById, getWatcherClaimsHistory, getWatcherClaimsStatus, getWatcherEvents, getWatcherEventsById, getWebhookConfigs, getWebhookConfigsById, getWebhookConfigsByIdEvents, getWebhookConfigsStats, getWebhookDeliveries, getWebhookDeliveriesById, getWebhookDeliveriesStats, getWorkspaceMemberships, getWorkspaceMembershipsInherited, getWorkspaces, getWorkspacesAnalyticsBatch, getWorkspacesById, getWorkspacesByIdMembers, getWorkspacesByWorkspaceIdExtractionByDocumentIdMapping, getWorkspacesByWorkspaceIdExtractionExports, getWorkspacesByWorkspaceIdExtractionExportsById, getWorkspacesByWorkspaceIdTrainingAnalytics, getWorkspacesMine, getWorkspacesShared, handleApiError, isRetryableError, paginateAll, paginateToArray, patchAgentsById, patchAgentsByIdSchemaVersionsByVersionId, patchAiConversationsById, patchApiKeysById, patchApiKeysByIdAllocate, patchApiKeysByIdResetPeriod, patchApiKeysByIdRevoke, patchApiKeysByIdRotate, patchApiKeysByIdSetBudget, patchApplicationsByApplicationIdEmailTemplatesBySlug, patchApplicationsById, patchApplicationsByIdAllocateCredits, patchApplicationsByIdGrantCredits, patchBucketsById, patchConfigsByKey, patchExtractionConfigEnumsById, patchExtractionDocumentsByIdCancel, patchExtractionDocumentsByIdDismiss, patchExtractionDocumentsByIdDismissTraining, patchExtractionDocumentsByIdExclude, patchExtractionDocumentsByIdFinishUpload, patchExtractionDocumentsByIdInclude, patchExtractionDocumentsByIdMarkTrained, patchExtractionDocumentsByIdReprocess, patchExtractionDocumentsByIdRestore, patchExtractionDocumentsByIdStatus, patchExtractionDocumentsByIdVerification, patchExtractionResultsById, patchExtractionResultsByIdRegenerate, patchExtractionResultsByIdSaveCorrections, patchInvitationsByIdAccept, patchInvitationsByIdAcceptByUser, patchInvitationsByIdDecline, patchInvitationsByIdResend, patchInvitationsByIdRevoke, patchMessagesById, patchNotificationMethodsById, patchNotificationMethodsByIdSendVerification, patchNotificationMethodsByIdSetPrimary, patchNotificationMethodsByIdVerify, patchNotificationPreferencesById, patchPaymentMethodsById, patchPaymentMethodsByIdDefault, patchSearchSavedById, patchTenantMembershipsByTenantIdByUserId, patchTenantsById, patchThreadsById, patchThreadsByIdArchive, patchThreadsByIdUnarchive, patchTrainingExamplesById, patchUserProfilesById, patchUserProfilesByIdAcceptTos, patchUserProfilesByIdDismissAnnouncement, patchUserProfilesByIdDismissWelcome, patchUsersAuthPasswordChange, patchUsersAuthResetPassword, patchUsersByIdAdmin, patchUsersByIdAdminEmail, patchUsersByIdConfirmEmail, patchUsersByIdResetPassword, patchWalletAddons, patchWalletAddonsByAddonSlugCancel, patchWalletAutoTopUp, patchWalletCredits, patchWalletPlan, patchWatcherClaimsById, patchWatcherClaimsByIdRelease, patchWatcherClaimsByIdRetry, patchWebhookConfigsById, patchWebhookConfigsByIdRotateSecret, patchWorkspaceMembershipsByWorkspaceIdByUserId, patchWorkspacesById, patchWorkspacesByIdAllocate, patchWorkspacesByIdPopulateHashes, patchWorkspacesByIdStorageSettings, postAgentTestResults, postAgentVersionComparisons, postAgentVersions, postAgentVersionsByIdAddSystemField, postAgentVersionsByIdRemoveSystemField, postAgentVersionsByIdSetSystemFields, postAgents, postAgentsByIdAnalyzeTraining, postAgentsByIdClone, postAgentsByIdDiscoverSchema, postAgentsByIdExport, postAgentsByIdPublishVersion, postAgentsByIdRestoreVersion, postAgentsByIdSchemaVersions, postAgentsByIdSchemaVersionsByVersionIdActivate, postAgentsByIdTeach, postAgentsByIdTest, postAgentsByIdValidate, postAgentsCloneForWorkspace, postAgentsDiscoverSchema, postAgentsImport, postAgentsPredict, postAiChunksSearch, postAiConversations, postAiEmbed, postAiGraphEdges, postAiGraphNodes, postAiMessages, postAiSearch, postAiSearchAdvanced, postApiKeys, postApplications, postApplicationsByApplicationIdEmailTemplates, postApplicationsByApplicationIdEmailTemplatesBySlugPreview, postApplicationsByApplicationIdEmailTemplatesBySlugTest, postBuckets, postConfigs, postDocumentsBulkDelete, postDocumentsPresignedUpload, postExtractionBatches, postExtractionConfigEnums, postExtractionDocumentsBeginUpload, postExtractionDocumentsBulkReprocess, postExtractionDocumentsFindOrBeginUpload, postExtractionDocumentsUpload, postExtractionSchemaDiscoveries, postFieldTemplates, postInvitations, postInvitationsAcceptByToken, postLlmAnalytics, postMessages, postNotificationMethods, postNotificationPreferences, postObjectsBulkDestroy, postObjectsCopy, postObjectsMove, postObjectsRegister, postPaymentMethods, postPaymentMethodsTokenize, postPayments, postSearchBatch, postSearchReindex, postSearchSaved, postSearchSavedByIdRun, postStorageSignDownload, postStorageSignUpload, postTenantMemberships, postTenants, postTenantsByIdBuyStorage, postTenantsByIdCredit, postTenantsByIdRemoveStorage, postTenantsByIdSchedulePurge, postTenantsIsv, postThreads, postThreadsActive, postThreadsByIdExport, postThreadsByIdFork, postThreadsByIdMessages, postThreadsByIdSummarize, postTokens, postTrainingExamples, postTrainingExamplesBulk, postTrainingExamplesBulkDelete, postTrainingExamplesSearch, postUserProfiles, postUsersAuthConfirm, postUsersAuthLogin, postUsersAuthMagicLinkLogin, postUsersAuthMagicLinkRequest, postUsersAuthRegister, postUsersAuthRegisterWithOidc, postUsersAuthResendConfirmation, postUsersRegisterIsv, postWatcherClaims, postWatcherEvents, postWebhookConfigs, postWebhookConfigsBulkDisable, postWebhookConfigsBulkEnable, postWebhookConfigsByIdReplay, postWebhookConfigsByIdTest, postWebhookDeliveriesBulkRetry, postWebhookDeliveriesByIdRetry, postWorkspaceMemberships, postWorkspaces, postWorkspacesByWorkspaceIdExtractionByDocumentIdMapping, postWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrained, postWorkspacesByWorkspaceIdExtractionExports, retryWithBackoff, sleep, streamMessage, streamSSE, webhooks, withRetry };
|
|
41978
|
+
export { type Account, type Agent, type AgentCreateRequest, AgentCreateSchema, type AgentStats, type AgentTestResult, type AgentTrainingStats, type AgentUsage, type AgentVersion, type AgentVersionComparison, type AgentVersionFieldsInputCreateType, type AgentVersionRevision, type AiConfig, type ApiKey, type ApiKeyAllocateRequest, ApiKeyAllocateSchema, type ApiKeyCreateRequest, ApiKeyCreateSchema, type Application, type ApplicationCreateRequest, ApplicationCreateSchema, type ApplicationOauthInputCreateType, type ApplicationOauthInputUpdateType, type ApplicationType, type AuditLog, AuthenticationError, AuthorizationError, type Balance, type Bucket, type BucketCreateRequest, BucketCreateSchema, type BulkDismissalResult, type BulkReprocessResult, type ClientOptions$1 as ClientOptions, type Config$2 as Config, type ConfigEnum, type ConsentRecord, type Conversation, type CreditPackage, type Customer, DEFAULT_RETRY_CONFIG, type DeleteAgentVersionsByIdData, type DeleteAgentVersionsByIdError, type DeleteAgentVersionsByIdErrors, type DeleteAgentVersionsByIdResponses, type DeleteAgentsByIdData, type DeleteAgentsByIdError, type DeleteAgentsByIdErrors, type DeleteAgentsByIdResponses, type DeleteAgentsByIdTrainingExamplesByExampleIdData, type DeleteAgentsByIdTrainingExamplesByExampleIdError, type DeleteAgentsByIdTrainingExamplesByExampleIdErrors, type DeleteAgentsByIdTrainingExamplesByExampleIdResponse, type DeleteAgentsByIdTrainingExamplesByExampleIdResponses, type DeleteAiConversationsByIdData, type DeleteAiConversationsByIdError, type DeleteAiConversationsByIdErrors, type DeleteAiConversationsByIdResponses, type DeleteAiGraphEdgesByIdData, type DeleteAiGraphEdgesByIdError, type DeleteAiGraphEdgesByIdErrors, type DeleteAiGraphEdgesByIdResponses, type DeleteAiGraphNodesByIdData, type DeleteAiGraphNodesByIdError, type DeleteAiGraphNodesByIdErrors, type DeleteAiGraphNodesByIdResponses, type DeleteAiMessagesByIdData, type DeleteAiMessagesByIdError, type DeleteAiMessagesByIdErrors, type DeleteAiMessagesByIdResponses, type DeleteApiKeysByIdData, type DeleteApiKeysByIdError, type DeleteApiKeysByIdErrors, type DeleteApiKeysByIdResponses, type DeleteApplicationsByApplicationIdEmailTemplatesBySlugData, type DeleteApplicationsByApplicationIdEmailTemplatesBySlugError, type DeleteApplicationsByApplicationIdEmailTemplatesBySlugErrors, type DeleteApplicationsByApplicationIdEmailTemplatesBySlugResponses, type DeleteApplicationsByIdData, type DeleteApplicationsByIdError, type DeleteApplicationsByIdErrors, type DeleteApplicationsByIdResponses, type DeleteBucketsByIdData, type DeleteBucketsByIdError, type DeleteBucketsByIdErrors, type DeleteBucketsByIdResponses, type DeleteExtractionBatchesByIdData, type DeleteExtractionBatchesByIdError, type DeleteExtractionBatchesByIdErrors, type DeleteExtractionBatchesByIdResponses, type DeleteExtractionDocumentsByIdData, type DeleteExtractionDocumentsByIdError, type DeleteExtractionDocumentsByIdErrors, type DeleteExtractionDocumentsByIdResponses, type DeleteExtractionResultsByIdData, type DeleteExtractionResultsByIdError, type DeleteExtractionResultsByIdErrors, type DeleteExtractionResultsByIdResponses, type DeleteFieldTemplatesByIdData, type DeleteFieldTemplatesByIdError, type DeleteFieldTemplatesByIdErrors, type DeleteFieldTemplatesByIdResponses, type DeleteLegalDocumentsByIdData, type DeleteLegalDocumentsByIdError, type DeleteLegalDocumentsByIdErrors, type DeleteLegalDocumentsByIdResponses, type DeleteMessagesByIdData, type DeleteMessagesByIdError, type DeleteMessagesByIdErrors, type DeleteMessagesByIdResponses, type DeleteNotificationMethodsByIdData, type DeleteNotificationMethodsByIdError, type DeleteNotificationMethodsByIdErrors, type DeleteNotificationMethodsByIdResponses, type DeleteNotificationPreferencesByIdData, type DeleteNotificationPreferencesByIdError, type DeleteNotificationPreferencesByIdErrors, type DeleteNotificationPreferencesByIdResponses, type DeleteObjectsByIdData, type DeleteObjectsByIdError, type DeleteObjectsByIdErrors, type DeleteObjectsByIdResponses, type DeletePaymentMethodsByIdData, type DeletePaymentMethodsByIdError, type DeletePaymentMethodsByIdErrors, type DeletePaymentMethodsByIdResponses, type DeleteSearchSavedByIdData, type DeleteSearchSavedByIdError, type DeleteSearchSavedByIdErrors, type DeleteSearchSavedByIdResponses, type DeleteTenantMembershipsByTenantIdByUserIdData, type DeleteTenantMembershipsByTenantIdByUserIdError, type DeleteTenantMembershipsByTenantIdByUserIdErrors, type DeleteTenantMembershipsByTenantIdByUserIdResponses, type DeleteTenantsByIdData, type DeleteTenantsByIdError, type DeleteTenantsByIdErrors, type DeleteTenantsByIdResponses, type DeleteThreadsByIdData, type DeleteThreadsByIdError, type DeleteThreadsByIdErrors, type DeleteThreadsByIdResponses, type DeleteTrainingExamplesByIdData, type DeleteTrainingExamplesByIdError, type DeleteTrainingExamplesByIdErrors, type DeleteTrainingExamplesByIdResponses, type DeleteTrainingSessionsByIdData, type DeleteTrainingSessionsByIdError, type DeleteTrainingSessionsByIdErrors, type DeleteTrainingSessionsByIdResponses, type DeleteUserProfilesByIdData, type DeleteUserProfilesByIdError, type DeleteUserProfilesByIdErrors, type DeleteUserProfilesByIdResponses, type DeleteUsersByIdData, type DeleteUsersByIdError, type DeleteUsersByIdErrors, type DeleteUsersByIdResponses, type DeleteWebhookConfigsByIdData, type DeleteWebhookConfigsByIdError, type DeleteWebhookConfigsByIdErrors, type DeleteWebhookConfigsByIdResponses, type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdData, type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdError, type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type DeleteWorkspacesByIdData, type DeleteWorkspacesByIdError, type DeleteWorkspacesByIdErrors, type DeleteWorkspacesByIdResponses, type DocumentChunk, type DocumentStats, type DocumentUploadBase64Request, DocumentUploadBase64Schema, type EmailTemplate, type EmbedRequest, EmbedRequestSchema, type Embedding, type ErrorResponse, type Errors, type ExtractionBatch, type ExtractionDocument, type ExtractionExport, type ExtractionResult, type FieldMappingConfirmation, type FieldMappingResult, type FieldTemplate, type GetAgentVersionRevisionsByIdData, type GetAgentVersionRevisionsByIdError, type GetAgentVersionRevisionsByIdErrors, type GetAgentVersionRevisionsByIdResponse, type GetAgentVersionRevisionsByIdResponses, type GetAgentVersionRevisionsData, type GetAgentVersionRevisionsError, type GetAgentVersionRevisionsErrors, type GetAgentVersionRevisionsResponse, type GetAgentVersionRevisionsResponses, type GetAgentVersionsByIdData, type GetAgentVersionsByIdError, type GetAgentVersionsByIdErrors, type GetAgentVersionsByIdMetricsData, type GetAgentVersionsByIdMetricsError, type GetAgentVersionsByIdMetricsErrors, type GetAgentVersionsByIdMetricsResponse, type GetAgentVersionsByIdMetricsResponses, type GetAgentVersionsByIdResponse, type GetAgentVersionsByIdResponses, type GetAgentVersionsByIdRevisionsData, type GetAgentVersionsByIdRevisionsError, type GetAgentVersionsByIdRevisionsErrors, type GetAgentVersionsByIdRevisionsResponses, type GetAgentVersionsData, type GetAgentVersionsError, type GetAgentVersionsErrors, type GetAgentVersionsResponse, type GetAgentVersionsResponses, type GetAgentsByIdData, type GetAgentsByIdError, type GetAgentsByIdErrors, type GetAgentsByIdResponse, type GetAgentsByIdResponses, type GetAgentsByIdSchemaVersionsData, type GetAgentsByIdSchemaVersionsError, type GetAgentsByIdSchemaVersionsErrors, type GetAgentsByIdSchemaVersionsResponse, type GetAgentsByIdSchemaVersionsResponses, type GetAgentsByIdStatsData, type GetAgentsByIdStatsError, type GetAgentsByIdStatsErrors, type GetAgentsByIdStatsResponse, type GetAgentsByIdStatsResponses, type GetAgentsByIdTrainingExamplesData, type GetAgentsByIdTrainingExamplesError, type GetAgentsByIdTrainingExamplesErrors, type GetAgentsByIdTrainingExamplesResponse, type GetAgentsByIdTrainingExamplesResponses, type GetAgentsByIdTrainingStatsData, type GetAgentsByIdTrainingStatsError, type GetAgentsByIdTrainingStatsErrors, type GetAgentsByIdTrainingStatsResponse, type GetAgentsByIdTrainingStatsResponses, type GetAgentsByIdUsageData, type GetAgentsByIdUsageError, type GetAgentsByIdUsageErrors, type GetAgentsByIdUsageResponse, type GetAgentsByIdUsageResponses, type GetAgentsData, type GetAgentsError, type GetAgentsErrors, type GetAgentsResponse, type GetAgentsResponses, type GetAgentsUsageData, type GetAgentsUsageError, type GetAgentsUsageErrors, type GetAgentsUsageResponse, type GetAgentsUsageResponses, type GetAiChunksDocumentByDocumentIdData, type GetAiChunksDocumentByDocumentIdError, type GetAiChunksDocumentByDocumentIdErrors, type GetAiChunksDocumentByDocumentIdResponse, type GetAiChunksDocumentByDocumentIdResponses, type GetAiConversationsByIdData, type GetAiConversationsByIdError, type GetAiConversationsByIdErrors, type GetAiConversationsByIdResponse, type GetAiConversationsByIdResponses, type GetAiConversationsData, type GetAiConversationsError, type GetAiConversationsErrors, type GetAiConversationsResponse, type GetAiConversationsResponses, type GetAiGraphEdgesData, type GetAiGraphEdgesError, type GetAiGraphEdgesErrors, type GetAiGraphEdgesResponse, type GetAiGraphEdgesResponses, type GetAiGraphNodesBySourceNodeIdRelatedData, type GetAiGraphNodesBySourceNodeIdRelatedError, type GetAiGraphNodesBySourceNodeIdRelatedErrors, type GetAiGraphNodesBySourceNodeIdRelatedResponse, type GetAiGraphNodesBySourceNodeIdRelatedResponses, type GetAiGraphNodesData, type GetAiGraphNodesError, type GetAiGraphNodesErrors, type GetAiGraphNodesLabelByLabelData, type GetAiGraphNodesLabelByLabelError, type GetAiGraphNodesLabelByLabelErrors, type GetAiGraphNodesLabelByLabelResponse, type GetAiGraphNodesLabelByLabelResponses, type GetAiGraphNodesResponse, type GetAiGraphNodesResponses, type GetAiMessagesData, type GetAiMessagesError, type GetAiMessagesErrors, type GetAiMessagesResponse, type GetAiMessagesResponses, type GetApiKeysActiveData, type GetApiKeysActiveError, type GetApiKeysActiveErrors, type GetApiKeysActiveResponse, type GetApiKeysActiveResponses, type GetApiKeysByIdData, type GetApiKeysByIdError, type GetApiKeysByIdErrors, type GetApiKeysByIdResponse, type GetApiKeysByIdResponses, type GetApiKeysData, type GetApiKeysError, type GetApiKeysErrors, type GetApiKeysResponse, type GetApiKeysResponses, type GetApiKeysStatsData, type GetApiKeysStatsError, type GetApiKeysStatsErrors, type GetApiKeysStatsResponse, type GetApiKeysStatsResponses, type GetApplicationsByApplicationIdEmailTemplatesBySlugData, type GetApplicationsByApplicationIdEmailTemplatesBySlugError, type GetApplicationsByApplicationIdEmailTemplatesBySlugErrors, type GetApplicationsByApplicationIdEmailTemplatesBySlugResponse, type GetApplicationsByApplicationIdEmailTemplatesBySlugResponses, type GetApplicationsByApplicationIdEmailTemplatesData, type GetApplicationsByApplicationIdEmailTemplatesError, type GetApplicationsByApplicationIdEmailTemplatesErrors, type GetApplicationsByApplicationIdEmailTemplatesResponse, type GetApplicationsByApplicationIdEmailTemplatesResponses, type GetApplicationsByIdData, type GetApplicationsByIdError, type GetApplicationsByIdErrors, type GetApplicationsByIdResponse, type GetApplicationsByIdResponses, type GetApplicationsBySlugBySlugData, type GetApplicationsBySlugBySlugError, type GetApplicationsBySlugBySlugErrors, type GetApplicationsBySlugBySlugResponse, type GetApplicationsBySlugBySlugResponses, type GetApplicationsCurrentData, type GetApplicationsCurrentError, type GetApplicationsCurrentErrors, type GetApplicationsCurrentResponse, type GetApplicationsCurrentResponses, type GetApplicationsData, type GetApplicationsError, type GetApplicationsErrors, type GetApplicationsResponse, type GetApplicationsResponses, type GetAuditLogsActivityData, type GetAuditLogsActivityError, type GetAuditLogsActivityErrors, type GetAuditLogsActivityResponse, type GetAuditLogsActivityResponses, type GetAuditLogsData, type GetAuditLogsError, type GetAuditLogsErrors, type GetAuditLogsResponse, type GetAuditLogsResponses, type GetBucketsAllData, type GetBucketsAllError, type GetBucketsAllErrors, type GetBucketsAllResponse, type GetBucketsAllResponses, type GetBucketsByIdData, type GetBucketsByIdError, type GetBucketsByIdErrors, type GetBucketsByIdObjectsData, type GetBucketsByIdObjectsError, type GetBucketsByIdObjectsErrors, type GetBucketsByIdObjectsResponse, type GetBucketsByIdObjectsResponses, type GetBucketsByIdResponse, type GetBucketsByIdResponses, type GetBucketsByIdStatsData, type GetBucketsByIdStatsError, type GetBucketsByIdStatsErrors, type GetBucketsByIdStatsResponse, type GetBucketsByIdStatsResponses, type GetBucketsData, type GetBucketsError, type GetBucketsErrors, type GetBucketsResponse, type GetBucketsResponses, type GetConfigsData, type GetConfigsError, type GetConfigsErrors, type GetConfigsResponse, type GetConfigsResponses, type GetConsentRecordsActiveData, type GetConsentRecordsActiveError, type GetConsentRecordsActiveErrors, type GetConsentRecordsActiveResponse, type GetConsentRecordsActiveResponses, type GetConsentRecordsByIdData, type GetConsentRecordsByIdError, type GetConsentRecordsByIdErrors, type GetConsentRecordsByIdResponse, type GetConsentRecordsByIdResponses, type GetConsentRecordsData, type GetConsentRecordsError, type GetConsentRecordsErrors, type GetConsentRecordsResponse, type GetConsentRecordsResponses, type GetCreditPackagesByIdData, type GetCreditPackagesByIdError, type GetCreditPackagesByIdErrors, type GetCreditPackagesByIdResponse, type GetCreditPackagesByIdResponses, type GetCreditPackagesData, type GetCreditPackagesError, type GetCreditPackagesErrors, type GetCreditPackagesResponse, type GetCreditPackagesResponses, type GetCreditPackagesSlugBySlugData, type GetCreditPackagesSlugBySlugError, type GetCreditPackagesSlugBySlugErrors, type GetCreditPackagesSlugBySlugResponse, type GetCreditPackagesSlugBySlugResponses, type GetDocumentsStatsData, type GetDocumentsStatsError, type GetDocumentsStatsErrors, type GetDocumentsStatsResponse, type GetDocumentsStatsResponses, type GetExtractionBatchesByIdData, type GetExtractionBatchesByIdError, type GetExtractionBatchesByIdErrors, type GetExtractionBatchesByIdResponse, type GetExtractionBatchesByIdResponses, type GetExtractionBatchesByIdUploadUrlsData, type GetExtractionBatchesByIdUploadUrlsError, type GetExtractionBatchesByIdUploadUrlsErrors, type GetExtractionBatchesByIdUploadUrlsResponse, type GetExtractionBatchesByIdUploadUrlsResponses, type GetExtractionBatchesWorkspaceByWorkspaceIdData, type GetExtractionBatchesWorkspaceByWorkspaceIdError, type GetExtractionBatchesWorkspaceByWorkspaceIdErrors, type GetExtractionBatchesWorkspaceByWorkspaceIdResponse, type GetExtractionBatchesWorkspaceByWorkspaceIdResponses, type GetExtractionConfigEnumsByIdData, type GetExtractionConfigEnumsByIdError, type GetExtractionConfigEnumsByIdErrors, type GetExtractionConfigEnumsByIdResponse, type GetExtractionConfigEnumsByIdResponses, type GetExtractionConfigEnumsData, type GetExtractionConfigEnumsError, type GetExtractionConfigEnumsErrors, type GetExtractionConfigEnumsResponse, type GetExtractionConfigEnumsResponses, type GetExtractionDocumentsByIdData, type GetExtractionDocumentsByIdError, type GetExtractionDocumentsByIdErrors, type GetExtractionDocumentsByIdResponse, type GetExtractionDocumentsByIdResponses, type GetExtractionDocumentsByIdStatusData, type GetExtractionDocumentsByIdStatusError, type GetExtractionDocumentsByIdStatusErrors, type GetExtractionDocumentsByIdStatusResponse, type GetExtractionDocumentsByIdStatusResponses, type GetExtractionDocumentsByIdViewData, type GetExtractionDocumentsByIdViewError, type GetExtractionDocumentsByIdViewErrors, type GetExtractionDocumentsByIdViewResponse, type GetExtractionDocumentsByIdViewResponses, type GetExtractionDocumentsData, type GetExtractionDocumentsError, type GetExtractionDocumentsErrors, type GetExtractionDocumentsResponse, type GetExtractionDocumentsResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusData, type GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusError, type GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdData, type GetExtractionDocumentsWorkspaceByWorkspaceIdError, type GetExtractionDocumentsWorkspaceByWorkspaceIdErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedData, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedError, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueData, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueError, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedData, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedError, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrashedData, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrashedError, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrashedErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrashedResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrashedResponses, type GetExtractionResultsByIdData, type GetExtractionResultsByIdError, type GetExtractionResultsByIdErrors, type GetExtractionResultsByIdResponse, type GetExtractionResultsByIdResponses, type GetExtractionResultsData, type GetExtractionResultsDocumentByDocumentIdData, type GetExtractionResultsDocumentByDocumentIdError, type GetExtractionResultsDocumentByDocumentIdErrors, type GetExtractionResultsDocumentByDocumentIdResponse, type GetExtractionResultsDocumentByDocumentIdResponses, type GetExtractionResultsError, type GetExtractionResultsErrors, type GetExtractionResultsResponse, type GetExtractionResultsResponses, type GetExtractionResultsWorkspaceByWorkspaceIdData, type GetExtractionResultsWorkspaceByWorkspaceIdError, type GetExtractionResultsWorkspaceByWorkspaceIdErrors, type GetExtractionResultsWorkspaceByWorkspaceIdResponse, type GetExtractionResultsWorkspaceByWorkspaceIdResponses, type GetExtractionSchemaDiscoveriesByIdData, type GetExtractionSchemaDiscoveriesByIdError, type GetExtractionSchemaDiscoveriesByIdErrors, type GetExtractionSchemaDiscoveriesByIdResponse, type GetExtractionSchemaDiscoveriesByIdResponses, type GetFieldTemplatesByIdData, type GetFieldTemplatesByIdError, type GetFieldTemplatesByIdErrors, type GetFieldTemplatesByIdResponse, type GetFieldTemplatesByIdResponses, type GetFieldTemplatesData, type GetFieldTemplatesError, type GetFieldTemplatesErrors, type GetFieldTemplatesResponse, type GetFieldTemplatesResponses, type GetInvitationsConsumeByTokenData, type GetInvitationsConsumeByTokenError, type GetInvitationsConsumeByTokenErrors, type GetInvitationsConsumeByTokenResponse, type GetInvitationsConsumeByTokenResponses, type GetInvitationsData, type GetInvitationsError, type GetInvitationsErrors, type GetInvitationsMeData, type GetInvitationsMeError, type GetInvitationsMeErrors, type GetInvitationsMeResponse, type GetInvitationsMeResponses, type GetInvitationsResponse, type GetInvitationsResponses, type GetLegalAcceptancesByIdData, type GetLegalAcceptancesByIdError, type GetLegalAcceptancesByIdErrors, type GetLegalAcceptancesByIdResponse, type GetLegalAcceptancesByIdResponses, type GetLegalAcceptancesData, type GetLegalAcceptancesError, type GetLegalAcceptancesErrors, type GetLegalAcceptancesLatestData, type GetLegalAcceptancesLatestError, type GetLegalAcceptancesLatestErrors, type GetLegalAcceptancesLatestResponse, type GetLegalAcceptancesLatestResponses, type GetLegalAcceptancesResponse, type GetLegalAcceptancesResponses, type GetLegalDocumentsByIdData, type GetLegalDocumentsByIdError, type GetLegalDocumentsByIdErrors, type GetLegalDocumentsByIdResponse, type GetLegalDocumentsByIdResponses, type GetLegalDocumentsByLocaleData, type GetLegalDocumentsByLocaleError, type GetLegalDocumentsByLocaleErrors, type GetLegalDocumentsByLocaleResponse, type GetLegalDocumentsByLocaleResponses, type GetLegalDocumentsData, type GetLegalDocumentsError, type GetLegalDocumentsErrors, type GetLegalDocumentsForApplicationData, type GetLegalDocumentsForApplicationError, type GetLegalDocumentsForApplicationErrors, type GetLegalDocumentsForApplicationResponse, type GetLegalDocumentsForApplicationResponses, type GetLegalDocumentsResponse, type GetLegalDocumentsResponses, type GetLlmAnalyticsByIdData, type GetLlmAnalyticsByIdError, type GetLlmAnalyticsByIdErrors, type GetLlmAnalyticsByIdResponse, type GetLlmAnalyticsByIdResponses, type GetLlmAnalyticsCostsData, type GetLlmAnalyticsCostsError, type GetLlmAnalyticsCostsErrors, type GetLlmAnalyticsCostsResponse, type GetLlmAnalyticsCostsResponses, type GetLlmAnalyticsData, type GetLlmAnalyticsError, type GetLlmAnalyticsErrors, type GetLlmAnalyticsPlatformData, type GetLlmAnalyticsPlatformError, type GetLlmAnalyticsPlatformErrors, type GetLlmAnalyticsPlatformResponse, type GetLlmAnalyticsPlatformResponses, type GetLlmAnalyticsResponse, type GetLlmAnalyticsResponses, type GetLlmAnalyticsSummaryData, type GetLlmAnalyticsSummaryError, type GetLlmAnalyticsSummaryErrors, type GetLlmAnalyticsSummaryResponse, type GetLlmAnalyticsSummaryResponses, type GetLlmAnalyticsUsageData, type GetLlmAnalyticsUsageError, type GetLlmAnalyticsUsageErrors, type GetLlmAnalyticsUsageResponse, type GetLlmAnalyticsUsageResponses, type GetLlmAnalyticsWorkspaceData, type GetLlmAnalyticsWorkspaceError, type GetLlmAnalyticsWorkspaceErrors, type GetLlmAnalyticsWorkspaceResponse, type GetLlmAnalyticsWorkspaceResponses, type GetMessagesByIdData, type GetMessagesByIdError, type GetMessagesByIdErrors, type GetMessagesByIdResponse, type GetMessagesByIdResponses, type GetMessagesData, type GetMessagesError, type GetMessagesErrors, type GetMessagesResponse, type GetMessagesResponses, type GetMessagesSearchData, type GetMessagesSearchError, type GetMessagesSearchErrors, type GetMessagesSearchResponse, type GetMessagesSearchResponses, type GetMessagesSemanticSearchData, type GetMessagesSemanticSearchError, type GetMessagesSemanticSearchErrors, type GetMessagesSemanticSearchResponse, type GetMessagesSemanticSearchResponses, type GetNotificationLogsByIdData, type GetNotificationLogsByIdError, type GetNotificationLogsByIdErrors, type GetNotificationLogsByIdResponse, type GetNotificationLogsByIdResponses, type GetNotificationLogsData, type GetNotificationLogsError, type GetNotificationLogsErrors, type GetNotificationLogsResponse, type GetNotificationLogsResponses, type GetNotificationLogsStatsData, type GetNotificationLogsStatsError, type GetNotificationLogsStatsErrors, type GetNotificationLogsStatsResponse, type GetNotificationLogsStatsResponses, type GetNotificationMethodsByIdData, type GetNotificationMethodsByIdError, type GetNotificationMethodsByIdErrors, type GetNotificationMethodsByIdResponse, type GetNotificationMethodsByIdResponses, type GetNotificationMethodsData, type GetNotificationMethodsError, type GetNotificationMethodsErrors, type GetNotificationMethodsResponse, type GetNotificationMethodsResponses, type GetNotificationPreferencesByIdData, type GetNotificationPreferencesByIdError, type GetNotificationPreferencesByIdErrors, type GetNotificationPreferencesByIdResponse, type GetNotificationPreferencesByIdResponses, type GetNotificationPreferencesData, type GetNotificationPreferencesError, type GetNotificationPreferencesErrors, type GetNotificationPreferencesResponse, type GetNotificationPreferencesResponses, type GetObjectsByIdData, type GetObjectsByIdError, type GetObjectsByIdErrors, type GetObjectsByIdResponse, type GetObjectsByIdResponses, type GetObjectsData, type GetObjectsError, type GetObjectsErrors, type GetObjectsResponse, type GetObjectsResponses, type GetPaymentMethodsByIdData, type GetPaymentMethodsByIdError, type GetPaymentMethodsByIdErrors, type GetPaymentMethodsByIdResponse, type GetPaymentMethodsByIdResponses, type GetPaymentMethodsData, type GetPaymentMethodsError, type GetPaymentMethodsErrors, type GetPaymentMethodsResponse, type GetPaymentMethodsResponses, type GetPermissionsByIdData, type GetPermissionsByIdError, type GetPermissionsByIdErrors, type GetPermissionsByIdResponse, type GetPermissionsByIdResponses, type GetPermissionsData, type GetPermissionsError, type GetPermissionsErrors, type GetPermissionsMetaData, type GetPermissionsMetaError, type GetPermissionsMetaErrors, type GetPermissionsMetaResponse, type GetPermissionsMetaResponses, type GetPermissionsPresetsByIdData, type GetPermissionsPresetsByIdError, type GetPermissionsPresetsByIdErrors, type GetPermissionsPresetsByIdResponse, type GetPermissionsPresetsByIdResponses, type GetPermissionsPresetsData, type GetPermissionsPresetsError, type GetPermissionsPresetsErrors, type GetPermissionsPresetsResponse, type GetPermissionsPresetsResponses, type GetPermissionsResponse, type GetPermissionsResponses, type GetPlansByIdData, type GetPlansByIdError, type GetPlansByIdErrors, type GetPlansByIdResponse, type GetPlansByIdResponses, type GetPlansData, type GetPlansError, type GetPlansErrors, type GetPlansResponse, type GetPlansResponses, type GetPlansSlugBySlugData, type GetPlansSlugBySlugError, type GetPlansSlugBySlugErrors, type GetPlansSlugBySlugResponse, type GetPlansSlugBySlugResponses, type GetSearchAnalyticsData, type GetSearchAnalyticsError, type GetSearchAnalyticsErrors, type GetSearchAnalyticsResponse, type GetSearchAnalyticsResponses, type GetSearchAnalyticsSummaryData, type GetSearchAnalyticsSummaryError, type GetSearchAnalyticsSummaryErrors, type GetSearchAnalyticsSummaryResponse, type GetSearchAnalyticsSummaryResponses, type GetSearchData, type GetSearchError, type GetSearchErrors, type GetSearchHealthData, type GetSearchHealthError, type GetSearchHealthErrors, type GetSearchHealthResponse, type GetSearchHealthResponses, type GetSearchIndexesData, type GetSearchIndexesError, type GetSearchIndexesErrors, type GetSearchIndexesResponse, type GetSearchIndexesResponses, type GetSearchResponse, type GetSearchResponses, type GetSearchSavedData, type GetSearchSavedError, type GetSearchSavedErrors, type GetSearchSavedResponse, type GetSearchSavedResponses, type GetSearchSemanticData, type GetSearchSemanticError, type GetSearchSemanticErrors, type GetSearchSemanticResponse, type GetSearchSemanticResponses, type GetSearchStatsData, type GetSearchStatsError, type GetSearchStatsErrors, type GetSearchStatsResponse, type GetSearchStatsResponses, type GetSearchStatusData, type GetSearchStatusError, type GetSearchStatusErrors, type GetSearchStatusResponse, type GetSearchStatusResponses, type GetSearchSuggestData, type GetSearchSuggestError, type GetSearchSuggestErrors, type GetSearchSuggestResponse, type GetSearchSuggestResponses, type GetStorageStatsData, type GetStorageStatsError, type GetStorageStatsErrors, type GetStorageStatsResponse, type GetStorageStatsResponses, type GetStorageStatsTenantByTenantIdData, type GetStorageStatsTenantByTenantIdError, type GetStorageStatsTenantByTenantIdErrors, type GetStorageStatsTenantByTenantIdResponse, type GetStorageStatsTenantByTenantIdResponses, type GetTenantMembershipsData, type GetTenantMembershipsError, type GetTenantMembershipsErrors, type GetTenantMembershipsResponse, type GetTenantMembershipsResponses, type GetTenantsByIdData, type GetTenantsByIdError, type GetTenantsByIdErrors, type GetTenantsByIdResponse, type GetTenantsByIdResponses, type GetTenantsByTenantIdDocumentStatsData, type GetTenantsByTenantIdDocumentStatsError, type GetTenantsByTenantIdDocumentStatsErrors, type GetTenantsByTenantIdDocumentStatsResponse, type GetTenantsByTenantIdDocumentStatsResponses, type GetTenantsByTenantIdStatsData, type GetTenantsByTenantIdStatsError, type GetTenantsByTenantIdStatsErrors, type GetTenantsByTenantIdStatsResponse, type GetTenantsByTenantIdStatsResponses, type GetTenantsByTenantIdWorkspaceStatsData, type GetTenantsByTenantIdWorkspaceStatsError, type GetTenantsByTenantIdWorkspaceStatsErrors, type GetTenantsByTenantIdWorkspaceStatsResponse, type GetTenantsByTenantIdWorkspaceStatsResponses, type GetTenantsData, type GetTenantsError, type GetTenantsErrors, type GetTenantsResponse, type GetTenantsResponses, type GetThreadsByIdData, type GetThreadsByIdError, type GetThreadsByIdErrors, type GetThreadsByIdMessagesData, type GetThreadsByIdMessagesError, type GetThreadsByIdMessagesErrors, type GetThreadsByIdMessagesResponse, type GetThreadsByIdMessagesResponses, type GetThreadsByIdResponse, type GetThreadsByIdResponses, type GetThreadsData, type GetThreadsError, type GetThreadsErrors, type GetThreadsResponse, type GetThreadsResponses, type GetThreadsSearchData, type GetThreadsSearchError, type GetThreadsSearchErrors, type GetThreadsSearchResponse, type GetThreadsSearchResponses, type GetThreadsStatsData, type GetThreadsStatsError, type GetThreadsStatsErrors, type GetThreadsStatsResponse, type GetThreadsStatsResponses, type GetThreadsWorkspaceStatsData, type GetThreadsWorkspaceStatsError, type GetThreadsWorkspaceStatsErrors, type GetThreadsWorkspaceStatsResponse, type GetThreadsWorkspaceStatsResponses, type GetTrainingExamplesByIdData, type GetTrainingExamplesByIdError, type GetTrainingExamplesByIdErrors, type GetTrainingExamplesByIdResponse, type GetTrainingExamplesByIdResponses, type GetTrainingExamplesData, type GetTrainingExamplesError, type GetTrainingExamplesErrors, type GetTrainingExamplesResponse, type GetTrainingExamplesResponses, type GetTrainingSessionsAgentsByAgentIdSessionsData, type GetTrainingSessionsAgentsByAgentIdSessionsError, type GetTrainingSessionsAgentsByAgentIdSessionsErrors, type GetTrainingSessionsAgentsByAgentIdSessionsResponse, type GetTrainingSessionsAgentsByAgentIdSessionsResponses, type GetTrainingSessionsByIdData, type GetTrainingSessionsByIdError, type GetTrainingSessionsByIdErrors, type GetTrainingSessionsByIdResponse, type GetTrainingSessionsByIdResponses, type GetTransactionsByIdData, type GetTransactionsByIdError, type GetTransactionsByIdErrors, type GetTransactionsByIdResponse, type GetTransactionsByIdResponses, type GetTransactionsData, type GetTransactionsError, type GetTransactionsErrors, type GetTransactionsResponse, type GetTransactionsResponses, type GetUserProfilesByIdData, type GetUserProfilesByIdError, type GetUserProfilesByIdErrors, type GetUserProfilesByIdResponse, type GetUserProfilesByIdResponses, type GetUserProfilesData, type GetUserProfilesError, type GetUserProfilesErrors, type GetUserProfilesMeData, type GetUserProfilesMeError, type GetUserProfilesMeErrors, type GetUserProfilesMeResponse, type GetUserProfilesMeResponses, type GetUserProfilesResponse, type GetUserProfilesResponses, type GetUsersByEmailData, type GetUsersByEmailError, type GetUsersByEmailErrors, type GetUsersByEmailResponse, type GetUsersByEmailResponses, type GetUsersByIdData, type GetUsersByIdError, type GetUsersByIdErrors, type GetUsersByIdResponse, type GetUsersByIdResponses, type GetUsersData, type GetUsersError, type GetUsersErrors, type GetUsersMeActivityData, type GetUsersMeActivityError, type GetUsersMeActivityErrors, type GetUsersMeActivityResponse, type GetUsersMeActivityResponses, type GetUsersMeDashboardData, type GetUsersMeDashboardError, type GetUsersMeDashboardErrors, type GetUsersMeDashboardResponse, type GetUsersMeDashboardResponses, type GetUsersMeData, type GetUsersMeError, type GetUsersMeErrors, type GetUsersMeResponse, type GetUsersMeResponses, type GetUsersMeStatsData, type GetUsersMeStatsError, type GetUsersMeStatsErrors, type GetUsersMeStatsResponse, type GetUsersMeStatsResponses, type GetUsersMeTenantsData, type GetUsersMeTenantsError, type GetUsersMeTenantsErrors, type GetUsersMeTenantsResponse, type GetUsersMeTenantsResponses, type GetUsersResponse, type GetUsersResponses, type GetWalletData, type GetWalletError, type GetWalletErrors, type GetWalletInvoicesData, type GetWalletInvoicesError, type GetWalletInvoicesErrors, type GetWalletInvoicesResponse, type GetWalletInvoicesResponses, type GetWalletPlanPreviewData, type GetWalletPlanPreviewError, type GetWalletPlanPreviewErrors, type GetWalletPlanPreviewResponse, type GetWalletPlanPreviewResponses, type GetWalletResponse, type GetWalletResponses, type GetWatcherClaimsByIdData, type GetWatcherClaimsByIdError, type GetWatcherClaimsByIdErrors, type GetWatcherClaimsByIdResponse, type GetWatcherClaimsByIdResponses, type GetWatcherClaimsData, type GetWatcherClaimsError, type GetWatcherClaimsErrors, type GetWatcherClaimsHistoryData, type GetWatcherClaimsHistoryError, type GetWatcherClaimsHistoryErrors, type GetWatcherClaimsHistoryResponse, type GetWatcherClaimsHistoryResponses, type GetWatcherClaimsResponse, type GetWatcherClaimsResponses, type GetWatcherClaimsStatusData, type GetWatcherClaimsStatusError, type GetWatcherClaimsStatusErrors, type GetWatcherClaimsStatusResponse, type GetWatcherClaimsStatusResponses, type GetWatcherEventsByIdData, type GetWatcherEventsByIdError, type GetWatcherEventsByIdErrors, type GetWatcherEventsByIdResponse, type GetWatcherEventsByIdResponses, type GetWatcherEventsData, type GetWatcherEventsError, type GetWatcherEventsErrors, type GetWatcherEventsResponse, type GetWatcherEventsResponses, type GetWebhookConfigsByIdData, type GetWebhookConfigsByIdError, type GetWebhookConfigsByIdErrors, type GetWebhookConfigsByIdEventsData, type GetWebhookConfigsByIdEventsError, type GetWebhookConfigsByIdEventsErrors, type GetWebhookConfigsByIdEventsResponse, type GetWebhookConfigsByIdEventsResponses, type GetWebhookConfigsByIdResponse, type GetWebhookConfigsByIdResponses, type GetWebhookConfigsData, type GetWebhookConfigsError, type GetWebhookConfigsErrors, type GetWebhookConfigsResponse, type GetWebhookConfigsResponses, type GetWebhookConfigsStatsData, type GetWebhookConfigsStatsError, type GetWebhookConfigsStatsErrors, type GetWebhookConfigsStatsResponse, type GetWebhookConfigsStatsResponses, type GetWebhookDeliveriesByIdData, type GetWebhookDeliveriesByIdError, type GetWebhookDeliveriesByIdErrors, type GetWebhookDeliveriesByIdResponse, type GetWebhookDeliveriesByIdResponses, type GetWebhookDeliveriesData, type GetWebhookDeliveriesError, type GetWebhookDeliveriesErrors, type GetWebhookDeliveriesResponse, type GetWebhookDeliveriesResponses, type GetWebhookDeliveriesStatsData, type GetWebhookDeliveriesStatsError, type GetWebhookDeliveriesStatsErrors, type GetWebhookDeliveriesStatsResponse, type GetWebhookDeliveriesStatsResponses, type GetWorkspaceMembershipsData, type GetWorkspaceMembershipsError, type GetWorkspaceMembershipsErrors, type GetWorkspaceMembershipsResponse, type GetWorkspaceMembershipsResponses, type GetWorkspacesAnalyticsBatchData, type GetWorkspacesAnalyticsBatchError, type GetWorkspacesAnalyticsBatchErrors, type GetWorkspacesAnalyticsBatchResponse, type GetWorkspacesAnalyticsBatchResponses, type GetWorkspacesByIdData, type GetWorkspacesByIdError, type GetWorkspacesByIdErrors, type GetWorkspacesByIdMembersData, type GetWorkspacesByIdMembersError, type GetWorkspacesByIdMembersErrors, type GetWorkspacesByIdMembersResponse, type GetWorkspacesByIdMembersResponses, type GetWorkspacesByIdResponse, type GetWorkspacesByIdResponses, type GetWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, type GetWorkspacesByWorkspaceIdExtractionByDocumentIdMappingError, type GetWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, type GetWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponse, type GetWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, type GetWorkspacesByWorkspaceIdExtractionExportsByIdData, type GetWorkspacesByWorkspaceIdExtractionExportsByIdError, type GetWorkspacesByWorkspaceIdExtractionExportsByIdErrors, type GetWorkspacesByWorkspaceIdExtractionExportsByIdResponse, type GetWorkspacesByWorkspaceIdExtractionExportsByIdResponses, type GetWorkspacesByWorkspaceIdExtractionExportsData, type GetWorkspacesByWorkspaceIdExtractionExportsError, type GetWorkspacesByWorkspaceIdExtractionExportsErrors, type GetWorkspacesByWorkspaceIdExtractionExportsResponse, type GetWorkspacesByWorkspaceIdExtractionExportsResponses, type GetWorkspacesByWorkspaceIdTrainingAnalyticsData, type GetWorkspacesByWorkspaceIdTrainingAnalyticsError, type GetWorkspacesByWorkspaceIdTrainingAnalyticsErrors, type GetWorkspacesByWorkspaceIdTrainingAnalyticsResponse, type GetWorkspacesByWorkspaceIdTrainingAnalyticsResponses, type GetWorkspacesData, type GetWorkspacesError, type GetWorkspacesErrors, type GetWorkspacesMineData, type GetWorkspacesMineError, type GetWorkspacesMineErrors, type GetWorkspacesMineResponse, type GetWorkspacesMineResponses, type GetWorkspacesResponse, type GetWorkspacesResponses, type GetWorkspacesSharedData, type GetWorkspacesSharedError, type GetWorkspacesSharedErrors, type GetWorkspacesSharedResponse, type GetWorkspacesSharedResponses, GptCoreError, type GraphEdge, type GraphNode, type Invitation, type InvitationCreateRequest, InvitationCreateSchema, type Invoice, type IsvRevenue, type IsvSettlement, type Ledger, type LegalAcceptance, type LegalDocument, type Link, type Links, type LlmAnalytics, type LoginRequest, LoginRequestSchema, type Message, type MessageSendRequest, MessageSendSchema, NetworkError, NotFoundError, type NotificationLog, type NotificationMethod, type NotificationPreference, type ObjectType, type OperationSuccess, type Options, type PaginatedResponse, type PaginationLinks, type PaginationOptions, type PatchAgentsByIdData, type PatchAgentsByIdError, type PatchAgentsByIdErrors, type PatchAgentsByIdResponse, type PatchAgentsByIdResponses, type PatchAgentsByIdSchemaVersionsByVersionIdData, type PatchAgentsByIdSchemaVersionsByVersionIdError, type PatchAgentsByIdSchemaVersionsByVersionIdErrors, type PatchAgentsByIdSchemaVersionsByVersionIdResponse, type PatchAgentsByIdSchemaVersionsByVersionIdResponses, type PatchAiConversationsByIdData, type PatchAiConversationsByIdError, type PatchAiConversationsByIdErrors, type PatchAiConversationsByIdResponse, type PatchAiConversationsByIdResponses, type PatchApiKeysByIdAllocateData, type PatchApiKeysByIdAllocateError, type PatchApiKeysByIdAllocateErrors, type PatchApiKeysByIdAllocateResponse, type PatchApiKeysByIdAllocateResponses, type PatchApiKeysByIdData, type PatchApiKeysByIdError, type PatchApiKeysByIdErrors, type PatchApiKeysByIdResetPeriodData, type PatchApiKeysByIdResetPeriodError, type PatchApiKeysByIdResetPeriodErrors, type PatchApiKeysByIdResetPeriodResponse, type PatchApiKeysByIdResetPeriodResponses, type PatchApiKeysByIdResponse, type PatchApiKeysByIdResponses, type PatchApiKeysByIdRevokeData, type PatchApiKeysByIdRevokeError, type PatchApiKeysByIdRevokeErrors, type PatchApiKeysByIdRevokeResponse, type PatchApiKeysByIdRevokeResponses, type PatchApiKeysByIdRotateData, type PatchApiKeysByIdRotateError, type PatchApiKeysByIdRotateErrors, type PatchApiKeysByIdRotateResponse, type PatchApiKeysByIdRotateResponses, type PatchApiKeysByIdSetBudgetData, type PatchApiKeysByIdSetBudgetError, type PatchApiKeysByIdSetBudgetErrors, type PatchApiKeysByIdSetBudgetResponse, type PatchApiKeysByIdSetBudgetResponses, type PatchApplicationsByApplicationIdEmailTemplatesBySlugData, type PatchApplicationsByApplicationIdEmailTemplatesBySlugError, type PatchApplicationsByApplicationIdEmailTemplatesBySlugErrors, type PatchApplicationsByApplicationIdEmailTemplatesBySlugResponse, type PatchApplicationsByApplicationIdEmailTemplatesBySlugResponses, type PatchApplicationsByIdAllocateCreditsData, type PatchApplicationsByIdAllocateCreditsError, type PatchApplicationsByIdAllocateCreditsErrors, type PatchApplicationsByIdAllocateCreditsResponse, type PatchApplicationsByIdAllocateCreditsResponses, type PatchApplicationsByIdData, type PatchApplicationsByIdError, type PatchApplicationsByIdErrors, type PatchApplicationsByIdGrantCreditsData, type PatchApplicationsByIdGrantCreditsError, type PatchApplicationsByIdGrantCreditsErrors, type PatchApplicationsByIdGrantCreditsResponse, type PatchApplicationsByIdGrantCreditsResponses, type PatchApplicationsByIdResponse, type PatchApplicationsByIdResponses, type PatchBucketsByIdData, type PatchBucketsByIdError, type PatchBucketsByIdErrors, type PatchBucketsByIdResponse, type PatchBucketsByIdResponses, type PatchConfigsByKeyData, type PatchConfigsByKeyError, type PatchConfigsByKeyErrors, type PatchConfigsByKeyResponse, type PatchConfigsByKeyResponses, type PatchConsentRecordsByIdWithdrawData, type PatchConsentRecordsByIdWithdrawError, type PatchConsentRecordsByIdWithdrawErrors, type PatchConsentRecordsByIdWithdrawResponse, type PatchConsentRecordsByIdWithdrawResponses, type PatchExtractionConfigEnumsByIdData, type PatchExtractionConfigEnumsByIdError, type PatchExtractionConfigEnumsByIdErrors, type PatchExtractionConfigEnumsByIdResponse, type PatchExtractionConfigEnumsByIdResponses, type PatchExtractionDocumentsByIdCancelData, type PatchExtractionDocumentsByIdCancelError, type PatchExtractionDocumentsByIdCancelErrors, type PatchExtractionDocumentsByIdCancelResponse, type PatchExtractionDocumentsByIdCancelResponses, type PatchExtractionDocumentsByIdDismissData, type PatchExtractionDocumentsByIdDismissError, type PatchExtractionDocumentsByIdDismissErrors, type PatchExtractionDocumentsByIdDismissResponse, type PatchExtractionDocumentsByIdDismissResponses, type PatchExtractionDocumentsByIdDismissTrainingData, type PatchExtractionDocumentsByIdDismissTrainingError, type PatchExtractionDocumentsByIdDismissTrainingErrors, type PatchExtractionDocumentsByIdDismissTrainingResponse, type PatchExtractionDocumentsByIdDismissTrainingResponses, type PatchExtractionDocumentsByIdExcludeData, type PatchExtractionDocumentsByIdExcludeError, type PatchExtractionDocumentsByIdExcludeErrors, type PatchExtractionDocumentsByIdExcludeResponse, type PatchExtractionDocumentsByIdExcludeResponses, type PatchExtractionDocumentsByIdFinishUploadData, type PatchExtractionDocumentsByIdFinishUploadError, type PatchExtractionDocumentsByIdFinishUploadErrors, type PatchExtractionDocumentsByIdFinishUploadResponse, type PatchExtractionDocumentsByIdFinishUploadResponses, type PatchExtractionDocumentsByIdIncludeData, type PatchExtractionDocumentsByIdIncludeError, type PatchExtractionDocumentsByIdIncludeErrors, type PatchExtractionDocumentsByIdIncludeResponse, type PatchExtractionDocumentsByIdIncludeResponses, type PatchExtractionDocumentsByIdMarkTrainedData, type PatchExtractionDocumentsByIdMarkTrainedError, type PatchExtractionDocumentsByIdMarkTrainedErrors, type PatchExtractionDocumentsByIdMarkTrainedResponse, type PatchExtractionDocumentsByIdMarkTrainedResponses, type PatchExtractionDocumentsByIdReprocessData, type PatchExtractionDocumentsByIdReprocessError, type PatchExtractionDocumentsByIdReprocessErrors, type PatchExtractionDocumentsByIdReprocessResponse, type PatchExtractionDocumentsByIdReprocessResponses, type PatchExtractionDocumentsByIdRestoreData, type PatchExtractionDocumentsByIdRestoreError, type PatchExtractionDocumentsByIdRestoreErrors, type PatchExtractionDocumentsByIdRestoreResponse, type PatchExtractionDocumentsByIdRestoreResponses, type PatchExtractionDocumentsByIdStatusData, type PatchExtractionDocumentsByIdStatusError, type PatchExtractionDocumentsByIdStatusErrors, type PatchExtractionDocumentsByIdStatusResponse, type PatchExtractionDocumentsByIdStatusResponses, type PatchExtractionDocumentsByIdVerificationData, type PatchExtractionDocumentsByIdVerificationError, type PatchExtractionDocumentsByIdVerificationErrors, type PatchExtractionDocumentsByIdVerificationResponse, type PatchExtractionDocumentsByIdVerificationResponses, type PatchExtractionResultsByIdData, type PatchExtractionResultsByIdError, type PatchExtractionResultsByIdErrors, type PatchExtractionResultsByIdRegenerateData, type PatchExtractionResultsByIdRegenerateError, type PatchExtractionResultsByIdRegenerateErrors, type PatchExtractionResultsByIdRegenerateResponse, type PatchExtractionResultsByIdRegenerateResponses, type PatchExtractionResultsByIdResponse, type PatchExtractionResultsByIdResponses, type PatchExtractionResultsByIdSaveCorrectionsData, type PatchExtractionResultsByIdSaveCorrectionsError, type PatchExtractionResultsByIdSaveCorrectionsErrors, type PatchExtractionResultsByIdSaveCorrectionsResponse, type PatchExtractionResultsByIdSaveCorrectionsResponses, type PatchInvitationsByIdAcceptByUserData, type PatchInvitationsByIdAcceptByUserError, type PatchInvitationsByIdAcceptByUserErrors, type PatchInvitationsByIdAcceptByUserResponse, type PatchInvitationsByIdAcceptByUserResponses, type PatchInvitationsByIdAcceptData, type PatchInvitationsByIdAcceptError, type PatchInvitationsByIdAcceptErrors, type PatchInvitationsByIdAcceptResponse, type PatchInvitationsByIdAcceptResponses, type PatchInvitationsByIdDeclineData, type PatchInvitationsByIdDeclineError, type PatchInvitationsByIdDeclineErrors, type PatchInvitationsByIdDeclineResponse, type PatchInvitationsByIdDeclineResponses, type PatchInvitationsByIdResendData, type PatchInvitationsByIdResendError, type PatchInvitationsByIdResendErrors, type PatchInvitationsByIdResendResponse, type PatchInvitationsByIdResendResponses, type PatchInvitationsByIdRevokeData, type PatchInvitationsByIdRevokeError, type PatchInvitationsByIdRevokeErrors, type PatchInvitationsByIdRevokeResponse, type PatchInvitationsByIdRevokeResponses, type PatchLegalDocumentsByIdData, type PatchLegalDocumentsByIdError, type PatchLegalDocumentsByIdErrors, type PatchLegalDocumentsByIdPublishData, type PatchLegalDocumentsByIdPublishError, type PatchLegalDocumentsByIdPublishErrors, type PatchLegalDocumentsByIdPublishResponse, type PatchLegalDocumentsByIdPublishResponses, type PatchLegalDocumentsByIdResponse, type PatchLegalDocumentsByIdResponses, type PatchLegalDocumentsByIdUnpublishData, type PatchLegalDocumentsByIdUnpublishError, type PatchLegalDocumentsByIdUnpublishErrors, type PatchLegalDocumentsByIdUnpublishResponse, type PatchLegalDocumentsByIdUnpublishResponses, type PatchMessagesByIdData, type PatchMessagesByIdError, type PatchMessagesByIdErrors, type PatchMessagesByIdResponse, type PatchMessagesByIdResponses, type PatchNotificationMethodsByIdData, type PatchNotificationMethodsByIdError, type PatchNotificationMethodsByIdErrors, type PatchNotificationMethodsByIdResponse, type PatchNotificationMethodsByIdResponses, type PatchNotificationMethodsByIdSendVerificationData, type PatchNotificationMethodsByIdSendVerificationError, type PatchNotificationMethodsByIdSendVerificationErrors, type PatchNotificationMethodsByIdSendVerificationResponse, type PatchNotificationMethodsByIdSendVerificationResponses, type PatchNotificationMethodsByIdSetPrimaryData, type PatchNotificationMethodsByIdSetPrimaryError, type PatchNotificationMethodsByIdSetPrimaryErrors, type PatchNotificationMethodsByIdSetPrimaryResponse, type PatchNotificationMethodsByIdSetPrimaryResponses, type PatchNotificationMethodsByIdVerifyData, type PatchNotificationMethodsByIdVerifyError, type PatchNotificationMethodsByIdVerifyErrors, type PatchNotificationMethodsByIdVerifyResponse, type PatchNotificationMethodsByIdVerifyResponses, type PatchNotificationPreferencesByIdData, type PatchNotificationPreferencesByIdError, type PatchNotificationPreferencesByIdErrors, type PatchNotificationPreferencesByIdResponse, type PatchNotificationPreferencesByIdResponses, type PatchPaymentMethodsByIdData, type PatchPaymentMethodsByIdDefaultData, type PatchPaymentMethodsByIdDefaultError, type PatchPaymentMethodsByIdDefaultErrors, type PatchPaymentMethodsByIdDefaultResponse, type PatchPaymentMethodsByIdDefaultResponses, type PatchPaymentMethodsByIdError, type PatchPaymentMethodsByIdErrors, type PatchPaymentMethodsByIdResponse, type PatchPaymentMethodsByIdResponses, type PatchSearchSavedByIdData, type PatchSearchSavedByIdError, type PatchSearchSavedByIdErrors, type PatchSearchSavedByIdResponse, type PatchSearchSavedByIdResponses, type PatchTenantMembershipsByTenantIdByUserIdData, type PatchTenantMembershipsByTenantIdByUserIdError, type PatchTenantMembershipsByTenantIdByUserIdErrors, type PatchTenantMembershipsByTenantIdByUserIdResponse, type PatchTenantMembershipsByTenantIdByUserIdResponses, type PatchTenantsByIdData, type PatchTenantsByIdError, type PatchTenantsByIdErrors, type PatchTenantsByIdResponse, type PatchTenantsByIdResponses, type PatchThreadsByIdArchiveData, type PatchThreadsByIdArchiveError, type PatchThreadsByIdArchiveErrors, type PatchThreadsByIdArchiveResponse, type PatchThreadsByIdArchiveResponses, type PatchThreadsByIdData, type PatchThreadsByIdError, type PatchThreadsByIdErrors, type PatchThreadsByIdResponse, type PatchThreadsByIdResponses, type PatchThreadsByIdUnarchiveData, type PatchThreadsByIdUnarchiveError, type PatchThreadsByIdUnarchiveErrors, type PatchThreadsByIdUnarchiveResponse, type PatchThreadsByIdUnarchiveResponses, type PatchTrainingExamplesByIdData, type PatchTrainingExamplesByIdError, type PatchTrainingExamplesByIdErrors, type PatchTrainingExamplesByIdResponse, type PatchTrainingExamplesByIdResponses, type PatchUserProfilesByIdAcceptPrivacyPolicyData, type PatchUserProfilesByIdAcceptPrivacyPolicyError, type PatchUserProfilesByIdAcceptPrivacyPolicyErrors, type PatchUserProfilesByIdAcceptPrivacyPolicyResponse, type PatchUserProfilesByIdAcceptPrivacyPolicyResponses, type PatchUserProfilesByIdAcceptTosData, type PatchUserProfilesByIdAcceptTosError, type PatchUserProfilesByIdAcceptTosErrors, type PatchUserProfilesByIdAcceptTosResponse, type PatchUserProfilesByIdAcceptTosResponses, type PatchUserProfilesByIdData, type PatchUserProfilesByIdDismissAnnouncementData, type PatchUserProfilesByIdDismissAnnouncementError, type PatchUserProfilesByIdDismissAnnouncementErrors, type PatchUserProfilesByIdDismissAnnouncementResponse, type PatchUserProfilesByIdDismissAnnouncementResponses, type PatchUserProfilesByIdDismissWelcomeData, type PatchUserProfilesByIdDismissWelcomeError, type PatchUserProfilesByIdDismissWelcomeErrors, type PatchUserProfilesByIdDismissWelcomeResponse, type PatchUserProfilesByIdDismissWelcomeResponses, type PatchUserProfilesByIdError, type PatchUserProfilesByIdErrors, type PatchUserProfilesByIdResponse, type PatchUserProfilesByIdResponses, type PatchUsersAuthPasswordChangeData, type PatchUsersAuthPasswordChangeError, type PatchUsersAuthPasswordChangeErrors, type PatchUsersAuthPasswordChangeResponse, type PatchUsersAuthPasswordChangeResponses, type PatchUsersAuthResetPasswordData, type PatchUsersAuthResetPasswordError, type PatchUsersAuthResetPasswordErrors, type PatchUsersAuthResetPasswordResponse, type PatchUsersAuthResetPasswordResponses, type PatchUsersByIdAdminData, type PatchUsersByIdAdminEmailData, type PatchUsersByIdAdminEmailError, type PatchUsersByIdAdminEmailErrors, type PatchUsersByIdAdminEmailResponse, type PatchUsersByIdAdminEmailResponses, type PatchUsersByIdAdminError, type PatchUsersByIdAdminErrors, type PatchUsersByIdAdminResponse, type PatchUsersByIdAdminResponses, type PatchUsersByIdConfirmEmailData, type PatchUsersByIdConfirmEmailError, type PatchUsersByIdConfirmEmailErrors, type PatchUsersByIdConfirmEmailResponse, type PatchUsersByIdConfirmEmailResponses, type PatchUsersByIdResetPasswordData, type PatchUsersByIdResetPasswordError, type PatchUsersByIdResetPasswordErrors, type PatchUsersByIdResetPasswordResponse, type PatchUsersByIdResetPasswordResponses, type PatchWalletAddonsByAddonSlugCancelData, type PatchWalletAddonsByAddonSlugCancelError, type PatchWalletAddonsByAddonSlugCancelErrors, type PatchWalletAddonsByAddonSlugCancelResponse, type PatchWalletAddonsByAddonSlugCancelResponses, type PatchWalletAddonsData, type PatchWalletAddonsError, type PatchWalletAddonsErrors, type PatchWalletAddonsResponse, type PatchWalletAddonsResponses, type PatchWalletAutoTopUpData, type PatchWalletAutoTopUpError, type PatchWalletAutoTopUpErrors, type PatchWalletAutoTopUpResponse, type PatchWalletAutoTopUpResponses, type PatchWalletCreditsData, type PatchWalletCreditsError, type PatchWalletCreditsErrors, type PatchWalletCreditsResponse, type PatchWalletCreditsResponses, type PatchWalletPlanData, type PatchWalletPlanError, type PatchWalletPlanErrors, type PatchWalletPlanResponse, type PatchWalletPlanResponses, type PatchWatcherClaimsByIdData, type PatchWatcherClaimsByIdError, type PatchWatcherClaimsByIdErrors, type PatchWatcherClaimsByIdReleaseData, type PatchWatcherClaimsByIdReleaseError, type PatchWatcherClaimsByIdReleaseErrors, type PatchWatcherClaimsByIdReleaseResponse, type PatchWatcherClaimsByIdReleaseResponses, type PatchWatcherClaimsByIdResponse, type PatchWatcherClaimsByIdResponses, type PatchWatcherClaimsByIdRetryData, type PatchWatcherClaimsByIdRetryError, type PatchWatcherClaimsByIdRetryErrors, type PatchWatcherClaimsByIdRetryResponse, type PatchWatcherClaimsByIdRetryResponses, type PatchWebhookConfigsByIdData, type PatchWebhookConfigsByIdError, type PatchWebhookConfigsByIdErrors, type PatchWebhookConfigsByIdResponse, type PatchWebhookConfigsByIdResponses, type PatchWebhookConfigsByIdRotateSecretData, type PatchWebhookConfigsByIdRotateSecretError, type PatchWebhookConfigsByIdRotateSecretErrors, type PatchWebhookConfigsByIdRotateSecretResponse, type PatchWebhookConfigsByIdRotateSecretResponses, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdData, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdError, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdResponse, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type PatchWorkspacesByIdAllocateData, type PatchWorkspacesByIdAllocateError, type PatchWorkspacesByIdAllocateErrors, type PatchWorkspacesByIdAllocateResponse, type PatchWorkspacesByIdAllocateResponses, type PatchWorkspacesByIdData, type PatchWorkspacesByIdError, type PatchWorkspacesByIdErrors, type PatchWorkspacesByIdPopulateHashesData, type PatchWorkspacesByIdPopulateHashesError, type PatchWorkspacesByIdPopulateHashesErrors, type PatchWorkspacesByIdPopulateHashesResponse, type PatchWorkspacesByIdPopulateHashesResponses, type PatchWorkspacesByIdResponse, type PatchWorkspacesByIdResponses, type PatchWorkspacesByIdStorageSettingsData, type PatchWorkspacesByIdStorageSettingsError, type PatchWorkspacesByIdStorageSettingsErrors, type PatchWorkspacesByIdStorageSettingsResponse, type PatchWorkspacesByIdStorageSettingsResponses, type Payment, type PaymentMethod, type Permission, type PermissionMeta, type PermissionPreset, type Plan, type PlatformPricingConfig, type PostAgentTestResultsData, type PostAgentTestResultsError, type PostAgentTestResultsErrors, type PostAgentTestResultsResponse, type PostAgentTestResultsResponses, type PostAgentVersionComparisonsData, type PostAgentVersionComparisonsError, type PostAgentVersionComparisonsErrors, type PostAgentVersionComparisonsResponse, type PostAgentVersionComparisonsResponses, type PostAgentVersionsByIdAddSystemFieldData, type PostAgentVersionsByIdAddSystemFieldError, type PostAgentVersionsByIdAddSystemFieldErrors, type PostAgentVersionsByIdAddSystemFieldResponses, type PostAgentVersionsByIdRemoveSystemFieldData, type PostAgentVersionsByIdRemoveSystemFieldError, type PostAgentVersionsByIdRemoveSystemFieldErrors, type PostAgentVersionsByIdRemoveSystemFieldResponses, type PostAgentVersionsByIdSetSystemFieldsData, type PostAgentVersionsByIdSetSystemFieldsError, type PostAgentVersionsByIdSetSystemFieldsErrors, type PostAgentVersionsByIdSetSystemFieldsResponses, type PostAgentVersionsData, type PostAgentVersionsError, type PostAgentVersionsErrors, type PostAgentVersionsResponse, type PostAgentVersionsResponses, type PostAgentsByIdAnalyzeTrainingData, type PostAgentsByIdAnalyzeTrainingError, type PostAgentsByIdAnalyzeTrainingErrors, type PostAgentsByIdAnalyzeTrainingResponse, type PostAgentsByIdAnalyzeTrainingResponses, type PostAgentsByIdCloneData, type PostAgentsByIdCloneError, type PostAgentsByIdCloneErrors, type PostAgentsByIdCloneResponse, type PostAgentsByIdCloneResponses, type PostAgentsByIdDiscoverSchemaData, type PostAgentsByIdDiscoverSchemaError, type PostAgentsByIdDiscoverSchemaErrors, type PostAgentsByIdDiscoverSchemaResponse, type PostAgentsByIdDiscoverSchemaResponses, type PostAgentsByIdExportData, type PostAgentsByIdExportError, type PostAgentsByIdExportErrors, type PostAgentsByIdExportResponse, type PostAgentsByIdExportResponses, type PostAgentsByIdPublishVersionData, type PostAgentsByIdPublishVersionError, type PostAgentsByIdPublishVersionErrors, type PostAgentsByIdPublishVersionResponse, type PostAgentsByIdPublishVersionResponses, type PostAgentsByIdRestoreVersionData, type PostAgentsByIdRestoreVersionError, type PostAgentsByIdRestoreVersionErrors, type PostAgentsByIdRestoreVersionResponse, type PostAgentsByIdRestoreVersionResponses, type PostAgentsByIdSchemaVersionsByVersionIdActivateData, type PostAgentsByIdSchemaVersionsByVersionIdActivateError, type PostAgentsByIdSchemaVersionsByVersionIdActivateErrors, type PostAgentsByIdSchemaVersionsByVersionIdActivateResponse, type PostAgentsByIdSchemaVersionsByVersionIdActivateResponses, type PostAgentsByIdSchemaVersionsData, type PostAgentsByIdSchemaVersionsError, type PostAgentsByIdSchemaVersionsErrors, type PostAgentsByIdSchemaVersionsResponse, type PostAgentsByIdSchemaVersionsResponses, type PostAgentsByIdTeachData, type PostAgentsByIdTeachError, type PostAgentsByIdTeachErrors, type PostAgentsByIdTeachResponse, type PostAgentsByIdTeachResponses, type PostAgentsByIdTestData, type PostAgentsByIdTestError, type PostAgentsByIdTestErrors, type PostAgentsByIdTestResponse, type PostAgentsByIdTestResponses, type PostAgentsByIdValidateData, type PostAgentsByIdValidateError, type PostAgentsByIdValidateErrors, type PostAgentsByIdValidateResponse, type PostAgentsByIdValidateResponses, type PostAgentsCloneForWorkspaceData, type PostAgentsCloneForWorkspaceError, type PostAgentsCloneForWorkspaceErrors, type PostAgentsCloneForWorkspaceResponse, type PostAgentsCloneForWorkspaceResponses, type PostAgentsData, type PostAgentsDiscoverSchemaData, type PostAgentsDiscoverSchemaError, type PostAgentsDiscoverSchemaErrors, type PostAgentsDiscoverSchemaResponse, type PostAgentsDiscoverSchemaResponses, type PostAgentsError, type PostAgentsErrors, type PostAgentsImportData, type PostAgentsImportError, type PostAgentsImportErrors, type PostAgentsImportResponse, type PostAgentsImportResponses, type PostAgentsPredictData, type PostAgentsPredictError, type PostAgentsPredictErrors, type PostAgentsPredictResponse, type PostAgentsPredictResponses, type PostAgentsResponse, type PostAgentsResponses, type PostAiChunksSearchData, type PostAiChunksSearchError, type PostAiChunksSearchErrors, type PostAiChunksSearchResponse, type PostAiChunksSearchResponses, type PostAiConversationsData, type PostAiConversationsError, type PostAiConversationsErrors, type PostAiConversationsResponse, type PostAiConversationsResponses, type PostAiEmbedData, type PostAiEmbedError, type PostAiEmbedErrors, type PostAiEmbedResponse, type PostAiEmbedResponses, type PostAiGraphEdgesData, type PostAiGraphEdgesError, type PostAiGraphEdgesErrors, type PostAiGraphEdgesResponse, type PostAiGraphEdgesResponses, type PostAiGraphNodesData, type PostAiGraphNodesError, type PostAiGraphNodesErrors, type PostAiGraphNodesResponse, type PostAiGraphNodesResponses, type PostAiMessagesData, type PostAiMessagesError, type PostAiMessagesErrors, type PostAiMessagesResponse, type PostAiMessagesResponses, type PostAiSearchAdvancedData, type PostAiSearchAdvancedError, type PostAiSearchAdvancedErrors, type PostAiSearchAdvancedResponse, type PostAiSearchAdvancedResponses, type PostAiSearchData, type PostAiSearchError, type PostAiSearchErrors, type PostAiSearchResponse, type PostAiSearchResponses, type PostApiKeysData, type PostApiKeysError, type PostApiKeysErrors, type PostApiKeysResponse, type PostApiKeysResponses, type PostApplicationsByApplicationIdEmailTemplatesBySlugPreviewData, type PostApplicationsByApplicationIdEmailTemplatesBySlugPreviewError, type PostApplicationsByApplicationIdEmailTemplatesBySlugPreviewErrors, type PostApplicationsByApplicationIdEmailTemplatesBySlugPreviewResponse, type PostApplicationsByApplicationIdEmailTemplatesBySlugPreviewResponses, type PostApplicationsByApplicationIdEmailTemplatesBySlugTestData, type PostApplicationsByApplicationIdEmailTemplatesBySlugTestError, type PostApplicationsByApplicationIdEmailTemplatesBySlugTestErrors, type PostApplicationsByApplicationIdEmailTemplatesBySlugTestResponse, type PostApplicationsByApplicationIdEmailTemplatesBySlugTestResponses, type PostApplicationsByApplicationIdEmailTemplatesData, type PostApplicationsByApplicationIdEmailTemplatesError, type PostApplicationsByApplicationIdEmailTemplatesErrors, type PostApplicationsByApplicationIdEmailTemplatesResponse, type PostApplicationsByApplicationIdEmailTemplatesResponses, type PostApplicationsData, type PostApplicationsError, type PostApplicationsErrors, type PostApplicationsResponse, type PostApplicationsResponses, type PostBucketsData, type PostBucketsError, type PostBucketsErrors, type PostBucketsResponse, type PostBucketsResponses, type PostConfigsData, type PostConfigsError, type PostConfigsErrors, type PostConfigsResponse, type PostConfigsResponses, type PostConsentRecordsData, type PostConsentRecordsError, type PostConsentRecordsErrors, type PostConsentRecordsResponse, type PostConsentRecordsResponses, type PostDocumentsBulkDeleteData, type PostDocumentsBulkDeleteError, type PostDocumentsBulkDeleteErrors, type PostDocumentsBulkDeleteResponse, type PostDocumentsBulkDeleteResponses, type PostDocumentsPresignedUploadData, type PostDocumentsPresignedUploadError, type PostDocumentsPresignedUploadErrors, type PostDocumentsPresignedUploadResponse, type PostDocumentsPresignedUploadResponses, type PostExtractionBatchesData, type PostExtractionBatchesError, type PostExtractionBatchesErrors, type PostExtractionBatchesResponse, type PostExtractionBatchesResponses, type PostExtractionConfigEnumsData, type PostExtractionConfigEnumsError, type PostExtractionConfigEnumsErrors, type PostExtractionConfigEnumsResponse, type PostExtractionConfigEnumsResponses, type PostExtractionDocumentsBeginUploadData, type PostExtractionDocumentsBeginUploadError, type PostExtractionDocumentsBeginUploadErrors, type PostExtractionDocumentsBeginUploadResponse, type PostExtractionDocumentsBeginUploadResponses, type PostExtractionDocumentsBulkReprocessData, type PostExtractionDocumentsBulkReprocessError, type PostExtractionDocumentsBulkReprocessErrors, type PostExtractionDocumentsBulkReprocessResponse, type PostExtractionDocumentsBulkReprocessResponses, type PostExtractionDocumentsFindOrBeginUploadData, type PostExtractionDocumentsFindOrBeginUploadError, type PostExtractionDocumentsFindOrBeginUploadErrors, type PostExtractionDocumentsFindOrBeginUploadResponse, type PostExtractionDocumentsFindOrBeginUploadResponses, type PostExtractionDocumentsUploadData, type PostExtractionDocumentsUploadError, type PostExtractionDocumentsUploadErrors, type PostExtractionDocumentsUploadResponse, type PostExtractionDocumentsUploadResponses, type PostExtractionSchemaDiscoveriesData, type PostExtractionSchemaDiscoveriesError, type PostExtractionSchemaDiscoveriesErrors, type PostExtractionSchemaDiscoveriesResponse, type PostExtractionSchemaDiscoveriesResponses, type PostFieldTemplatesData, type PostFieldTemplatesError, type PostFieldTemplatesErrors, type PostFieldTemplatesResponse, type PostFieldTemplatesResponses, type PostInvitationsAcceptByTokenData, type PostInvitationsAcceptByTokenError, type PostInvitationsAcceptByTokenErrors, type PostInvitationsAcceptByTokenResponse, type PostInvitationsAcceptByTokenResponses, type PostInvitationsData, type PostInvitationsError, type PostInvitationsErrors, type PostInvitationsResponse, type PostInvitationsResponses, type PostLegalDocumentsData, type PostLegalDocumentsError, type PostLegalDocumentsErrors, type PostLegalDocumentsResponse, type PostLegalDocumentsResponses, type PostLlmAnalyticsData, type PostLlmAnalyticsError, type PostLlmAnalyticsErrors, type PostLlmAnalyticsResponse, type PostLlmAnalyticsResponses, type PostMessagesData, type PostMessagesError, type PostMessagesErrors, type PostMessagesResponse, type PostMessagesResponses, type PostNotificationMethodsData, type PostNotificationMethodsError, type PostNotificationMethodsErrors, type PostNotificationMethodsResponse, type PostNotificationMethodsResponses, type PostNotificationPreferencesData, type PostNotificationPreferencesError, type PostNotificationPreferencesErrors, type PostNotificationPreferencesResponse, type PostNotificationPreferencesResponses, type PostObjectsBulkDestroyData, type PostObjectsBulkDestroyError, type PostObjectsBulkDestroyErrors, type PostObjectsBulkDestroyResponse, type PostObjectsBulkDestroyResponses, type PostObjectsCopyData, type PostObjectsCopyError, type PostObjectsCopyErrors, type PostObjectsCopyResponse, type PostObjectsCopyResponses, type PostObjectsMoveData, type PostObjectsMoveError, type PostObjectsMoveErrors, type PostObjectsMoveResponse, type PostObjectsMoveResponses, type PostObjectsRegisterData, type PostObjectsRegisterError, type PostObjectsRegisterErrors, type PostObjectsRegisterResponse, type PostObjectsRegisterResponses, type PostPaymentMethodsData, type PostPaymentMethodsError, type PostPaymentMethodsErrors, type PostPaymentMethodsResponse, type PostPaymentMethodsResponses, type PostPaymentMethodsTokenizeData, type PostPaymentMethodsTokenizeError, type PostPaymentMethodsTokenizeErrors, type PostPaymentMethodsTokenizeResponse, type PostPaymentMethodsTokenizeResponses, type PostPaymentsData, type PostPaymentsError, type PostPaymentsErrors, type PostPaymentsResponse, type PostPaymentsResponses, type PostSearchBatchData, type PostSearchBatchError, type PostSearchBatchErrors, type PostSearchBatchResponse, type PostSearchBatchResponses, type PostSearchReindexData, type PostSearchReindexError, type PostSearchReindexErrors, type PostSearchReindexResponse, type PostSearchReindexResponses, type PostSearchSavedByIdRunData, type PostSearchSavedByIdRunError, type PostSearchSavedByIdRunErrors, type PostSearchSavedByIdRunResponse, type PostSearchSavedByIdRunResponses, type PostSearchSavedData, type PostSearchSavedError, type PostSearchSavedErrors, type PostSearchSavedResponse, type PostSearchSavedResponses, type PostStorageSignDownloadData, type PostStorageSignDownloadError, type PostStorageSignDownloadErrors, type PostStorageSignDownloadResponse, type PostStorageSignDownloadResponses, type PostStorageSignUploadData, type PostStorageSignUploadError, type PostStorageSignUploadErrors, type PostStorageSignUploadResponse, type PostStorageSignUploadResponses, type PostTenantMembershipsData, type PostTenantMembershipsError, type PostTenantMembershipsErrors, type PostTenantMembershipsResponse, type PostTenantMembershipsResponses, type PostTenantsByIdBuyStorageData, type PostTenantsByIdBuyStorageError, type PostTenantsByIdBuyStorageErrors, type PostTenantsByIdBuyStorageResponse, type PostTenantsByIdBuyStorageResponses, type PostTenantsByIdCreditData, type PostTenantsByIdCreditError, type PostTenantsByIdCreditErrors, type PostTenantsByIdCreditResponse, type PostTenantsByIdCreditResponses, type PostTenantsByIdRemoveStorageData, type PostTenantsByIdRemoveStorageError, type PostTenantsByIdRemoveStorageErrors, type PostTenantsByIdRemoveStorageResponse, type PostTenantsByIdRemoveStorageResponses, type PostTenantsByIdSchedulePurgeData, type PostTenantsByIdSchedulePurgeError, type PostTenantsByIdSchedulePurgeErrors, type PostTenantsByIdSchedulePurgeResponse, type PostTenantsByIdSchedulePurgeResponses, type PostTenantsData, type PostTenantsError, type PostTenantsErrors, type PostTenantsIsvData, type PostTenantsIsvError, type PostTenantsIsvErrors, type PostTenantsIsvResponse, type PostTenantsIsvResponses, type PostTenantsResponse, type PostTenantsResponses, type PostThreadsActiveData, type PostThreadsActiveError, type PostThreadsActiveErrors, type PostThreadsActiveResponse, type PostThreadsActiveResponses, type PostThreadsByIdExportData, type PostThreadsByIdExportError, type PostThreadsByIdExportErrors, type PostThreadsByIdExportResponse, type PostThreadsByIdExportResponses, type PostThreadsByIdForkData, type PostThreadsByIdForkError, type PostThreadsByIdForkErrors, type PostThreadsByIdForkResponse, type PostThreadsByIdForkResponses, type PostThreadsByIdMessagesData, type PostThreadsByIdMessagesError, type PostThreadsByIdMessagesErrors, type PostThreadsByIdMessagesResponse, type PostThreadsByIdMessagesResponses, type PostThreadsByIdSummarizeData, type PostThreadsByIdSummarizeError, type PostThreadsByIdSummarizeErrors, type PostThreadsByIdSummarizeResponse, type PostThreadsByIdSummarizeResponses, type PostThreadsData, type PostThreadsError, type PostThreadsErrors, type PostThreadsResponse, type PostThreadsResponses, type PostTokensData, type PostTokensError, type PostTokensErrors, type PostTokensResponse, type PostTokensResponses, type PostTrainingExamplesBulkData, type PostTrainingExamplesBulkDeleteData, type PostTrainingExamplesBulkDeleteError, type PostTrainingExamplesBulkDeleteErrors, type PostTrainingExamplesBulkDeleteResponse, type PostTrainingExamplesBulkDeleteResponses, type PostTrainingExamplesBulkError, type PostTrainingExamplesBulkErrors, type PostTrainingExamplesBulkResponse, type PostTrainingExamplesBulkResponses, type PostTrainingExamplesData, type PostTrainingExamplesError, type PostTrainingExamplesErrors, type PostTrainingExamplesResponse, type PostTrainingExamplesResponses, type PostTrainingExamplesSearchData, type PostTrainingExamplesSearchError, type PostTrainingExamplesSearchErrors, type PostTrainingExamplesSearchResponse, type PostTrainingExamplesSearchResponses, type PostUserProfilesData, type PostUserProfilesError, type PostUserProfilesErrors, type PostUserProfilesResponse, type PostUserProfilesResponses, type PostUsersAuthConfirmData, type PostUsersAuthConfirmError, type PostUsersAuthConfirmErrors, type PostUsersAuthConfirmResponse, type PostUsersAuthConfirmResponses, type PostUsersAuthLoginData, type PostUsersAuthLoginError, type PostUsersAuthLoginErrors, type PostUsersAuthLoginResponse, type PostUsersAuthLoginResponses, type PostUsersAuthMagicLinkLoginData, type PostUsersAuthMagicLinkLoginError, type PostUsersAuthMagicLinkLoginErrors, type PostUsersAuthMagicLinkLoginResponse, type PostUsersAuthMagicLinkLoginResponses, type PostUsersAuthMagicLinkRequestData, type PostUsersAuthMagicLinkRequestError, type PostUsersAuthMagicLinkRequestErrors, type PostUsersAuthMagicLinkRequestResponse, type PostUsersAuthMagicLinkRequestResponses, type PostUsersAuthRegisterData, type PostUsersAuthRegisterError, type PostUsersAuthRegisterErrors, type PostUsersAuthRegisterResponse, type PostUsersAuthRegisterResponses, type PostUsersAuthRegisterWithOidcData, type PostUsersAuthRegisterWithOidcError, type PostUsersAuthRegisterWithOidcErrors, type PostUsersAuthRegisterWithOidcResponse, type PostUsersAuthRegisterWithOidcResponses, type PostUsersAuthResendConfirmationData, type PostUsersAuthResendConfirmationError, type PostUsersAuthResendConfirmationErrors, type PostUsersAuthResendConfirmationResponse, type PostUsersAuthResendConfirmationResponses, type PostUsersRegisterIsvData, type PostUsersRegisterIsvError, type PostUsersRegisterIsvErrors, type PostUsersRegisterIsvResponse, type PostUsersRegisterIsvResponses, type PostWatcherClaimsData, type PostWatcherClaimsError, type PostWatcherClaimsErrors, type PostWatcherClaimsResponse, type PostWatcherClaimsResponses, type PostWatcherEventsData, type PostWatcherEventsError, type PostWatcherEventsErrors, type PostWatcherEventsResponse, type PostWatcherEventsResponses, type PostWebhookConfigsBulkDisableData, type PostWebhookConfigsBulkDisableError, type PostWebhookConfigsBulkDisableErrors, type PostWebhookConfigsBulkDisableResponse, type PostWebhookConfigsBulkDisableResponses, type PostWebhookConfigsBulkEnableData, type PostWebhookConfigsBulkEnableError, type PostWebhookConfigsBulkEnableErrors, type PostWebhookConfigsBulkEnableResponse, type PostWebhookConfigsBulkEnableResponses, type PostWebhookConfigsByIdReplayData, type PostWebhookConfigsByIdReplayError, type PostWebhookConfigsByIdReplayErrors, type PostWebhookConfigsByIdReplayResponse, type PostWebhookConfigsByIdReplayResponses, type PostWebhookConfigsByIdTestData, type PostWebhookConfigsByIdTestError, type PostWebhookConfigsByIdTestErrors, type PostWebhookConfigsByIdTestResponse, type PostWebhookConfigsByIdTestResponses, type PostWebhookConfigsData, type PostWebhookConfigsError, type PostWebhookConfigsErrors, type PostWebhookConfigsResponse, type PostWebhookConfigsResponses, type PostWebhookDeliveriesBulkRetryData, type PostWebhookDeliveriesBulkRetryError, type PostWebhookDeliveriesBulkRetryErrors, type PostWebhookDeliveriesBulkRetryResponse, type PostWebhookDeliveriesBulkRetryResponses, type PostWebhookDeliveriesByIdRetryData, type PostWebhookDeliveriesByIdRetryError, type PostWebhookDeliveriesByIdRetryErrors, type PostWebhookDeliveriesByIdRetryResponse, type PostWebhookDeliveriesByIdRetryResponses, type PostWorkspaceMembershipsData, type PostWorkspaceMembershipsError, type PostWorkspaceMembershipsErrors, type PostWorkspaceMembershipsResponse, type PostWorkspaceMembershipsResponses, type PostWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, type PostWorkspacesByWorkspaceIdExtractionByDocumentIdMappingError, type PostWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, type PostWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponse, type PostWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedData, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedError, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedErrors, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponse, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponses, type PostWorkspacesByWorkspaceIdExtractionExportsData, type PostWorkspacesByWorkspaceIdExtractionExportsError, type PostWorkspacesByWorkspaceIdExtractionExportsErrors, type PostWorkspacesByWorkspaceIdExtractionExportsResponse, type PostWorkspacesByWorkspaceIdExtractionExportsResponses, type PostWorkspacesData, type PostWorkspacesError, type PostWorkspacesErrors, type PostWorkspacesResponse, type PostWorkspacesResponses, type PresignedDownloadRequest, PresignedDownloadSchema, type PresignedUploadRequest, PresignedUploadSchema, type PresignedUrl, type PricingRule, type PricingStrategy, RateLimitError, type RegisterRequest, RegisterRequestSchema, type RetryConfig, type SavedSearch, type SchemaDiscovery, type Search, type SearchAnalytics, type SearchRequest, SearchRequestSchema, type SemanticCacheEntry, ServerError, type Settlement, type ShadowComparison, type StorageStats, type StorageStatsType, type StreamMessageChunk, type StreamOptions, type Subscription, type SystemMessage, type Tenant, type TenantDocumentStats, type TenantMembership, type TenantPricingOverride, type TenantStats, type Thread, type ThreadCreateRequest, ThreadCreateSchema, 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 WebhookConfig, type WebhookConfigCreateRequest, WebhookConfigCreateSchema, type WebhookConfigUpdateRequest, WebhookConfigUpdateSchema, type WebhookDelivery, WebhookError, type WholesaleAgreement, type Workspace, type WorkspaceCreateRequest, WorkspaceCreateSchema, type WorkspaceDocumentStats, type WorkspaceMembership, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, calculateBackoff, client, collectStreamedMessage, gptCore as default, deleteAgentVersionsById, deleteAgentsById, deleteAgentsByIdTrainingExamplesByExampleId, deleteAiConversationsById, deleteAiGraphEdgesById, deleteAiGraphNodesById, deleteAiMessagesById, deleteApiKeysById, deleteApplicationsByApplicationIdEmailTemplatesBySlug, deleteApplicationsById, deleteBucketsById, deleteExtractionBatchesById, deleteExtractionDocumentsById, deleteExtractionResultsById, deleteFieldTemplatesById, deleteLegalDocumentsById, deleteMessagesById, deleteNotificationMethodsById, deleteNotificationPreferencesById, deleteObjectsById, deletePaymentMethodsById, deleteSearchSavedById, deleteTenantMembershipsByTenantIdByUserId, deleteTenantsById, deleteThreadsById, deleteTrainingExamplesById, deleteTrainingSessionsById, deleteUserProfilesById, deleteUsersById, deleteWebhookConfigsById, deleteWorkspaceMembershipsByWorkspaceIdByUserId, deleteWorkspacesById, getAgentVersionRevisions, getAgentVersionRevisionsById, getAgentVersions, getAgentVersionsById, getAgentVersionsByIdMetrics, getAgentVersionsByIdRevisions, getAgents, getAgentsById, getAgentsByIdSchemaVersions, getAgentsByIdStats, getAgentsByIdTrainingExamples, getAgentsByIdTrainingStats, getAgentsByIdUsage, getAgentsUsage, getAiChunksDocumentByDocumentId, getAiConversations, getAiConversationsById, getAiGraphEdges, getAiGraphNodes, getAiGraphNodesBySourceNodeIdRelated, getAiGraphNodesLabelByLabel, getAiMessages, getApiKeys, getApiKeysActive, getApiKeysById, getApiKeysStats, getApplications, getApplicationsByApplicationIdEmailTemplates, getApplicationsByApplicationIdEmailTemplatesBySlug, getApplicationsById, getApplicationsBySlugBySlug, getApplicationsCurrent, getAuditLogs, getAuditLogsActivity, getBuckets, getBucketsAll, getBucketsById, getBucketsByIdObjects, getBucketsByIdStats, getConfigs, getConsentRecords, getConsentRecordsActive, getConsentRecordsById, getCreditPackages, getCreditPackagesById, getCreditPackagesSlugBySlug, getDocumentsStats, getExtractionBatchesById, getExtractionBatchesByIdUploadUrls, getExtractionBatchesWorkspaceByWorkspaceId, getExtractionConfigEnums, getExtractionConfigEnumsById, getExtractionDocuments, getExtractionDocumentsById, getExtractionDocumentsByIdStatus, getExtractionDocumentsByIdView, getExtractionDocumentsWorkspaceByWorkspaceId, getExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatus, getExtractionDocumentsWorkspaceByWorkspaceIdExcluded, getExtractionDocumentsWorkspaceByWorkspaceIdReviewQueue, getExtractionDocumentsWorkspaceByWorkspaceIdTrained, getExtractionDocumentsWorkspaceByWorkspaceIdTrashed, getExtractionResults, getExtractionResultsById, getExtractionResultsDocumentByDocumentId, getExtractionResultsWorkspaceByWorkspaceId, getExtractionSchemaDiscoveriesById, getFieldTemplates, getFieldTemplatesById, getInvitations, getInvitationsConsumeByToken, getInvitationsMe, getLegalAcceptances, getLegalAcceptancesById, getLegalAcceptancesLatest, getLegalDocuments, getLegalDocumentsById, getLegalDocumentsByLocale, getLegalDocumentsForApplication, getLlmAnalytics, getLlmAnalyticsById, getLlmAnalyticsCosts, getLlmAnalyticsPlatform, getLlmAnalyticsSummary, getLlmAnalyticsUsage, getLlmAnalyticsWorkspace, getMessages, getMessagesById, getMessagesSearch, getMessagesSemanticSearch, getNotificationLogs, getNotificationLogsById, getNotificationLogsStats, getNotificationMethods, getNotificationMethodsById, getNotificationPreferences, getNotificationPreferencesById, getObjects, getObjectsById, getPaymentMethods, getPaymentMethodsById, getPermissions, getPermissionsById, getPermissionsMeta, getPermissionsPresets, getPermissionsPresetsById, getPlans, getPlansById, getPlansSlugBySlug, getSearch, getSearchAnalytics, getSearchAnalyticsSummary, getSearchHealth, getSearchIndexes, getSearchSaved, getSearchSemantic, getSearchStats, getSearchStatus, getSearchSuggest, getStorageStats, getStorageStatsTenantByTenantId, getTenantMemberships, getTenants, getTenantsById, getTenantsByTenantIdDocumentStats, getTenantsByTenantIdStats, getTenantsByTenantIdWorkspaceStats, getThreads, getThreadsById, getThreadsByIdMessages, getThreadsSearch, getThreadsStats, getThreadsWorkspaceStats, getTrainingExamples, getTrainingExamplesById, getTrainingSessionsAgentsByAgentIdSessions, getTrainingSessionsById, getTransactions, getTransactionsById, getUserProfiles, getUserProfilesById, getUserProfilesMe, getUsers, getUsersByEmail, getUsersById, getUsersMe, getUsersMeActivity, getUsersMeDashboard, getUsersMeStats, getUsersMeTenants, getWallet, getWalletInvoices, getWalletPlanPreview, getWatcherClaims, getWatcherClaimsById, getWatcherClaimsHistory, getWatcherClaimsStatus, getWatcherEvents, getWatcherEventsById, getWebhookConfigs, getWebhookConfigsById, getWebhookConfigsByIdEvents, getWebhookConfigsStats, getWebhookDeliveries, getWebhookDeliveriesById, getWebhookDeliveriesStats, getWorkspaceMemberships, getWorkspaces, getWorkspacesAnalyticsBatch, getWorkspacesById, getWorkspacesByIdMembers, getWorkspacesByWorkspaceIdExtractionByDocumentIdMapping, getWorkspacesByWorkspaceIdExtractionExports, getWorkspacesByWorkspaceIdExtractionExportsById, getWorkspacesByWorkspaceIdTrainingAnalytics, getWorkspacesMine, getWorkspacesShared, handleApiError, isRetryableError, paginateAll, paginateToArray, patchAgentsById, patchAgentsByIdSchemaVersionsByVersionId, patchAiConversationsById, patchApiKeysById, patchApiKeysByIdAllocate, patchApiKeysByIdResetPeriod, patchApiKeysByIdRevoke, patchApiKeysByIdRotate, patchApiKeysByIdSetBudget, patchApplicationsByApplicationIdEmailTemplatesBySlug, patchApplicationsById, patchApplicationsByIdAllocateCredits, patchApplicationsByIdGrantCredits, patchBucketsById, patchConfigsByKey, patchConsentRecordsByIdWithdraw, patchExtractionConfigEnumsById, patchExtractionDocumentsByIdCancel, patchExtractionDocumentsByIdDismiss, patchExtractionDocumentsByIdDismissTraining, patchExtractionDocumentsByIdExclude, patchExtractionDocumentsByIdFinishUpload, patchExtractionDocumentsByIdInclude, patchExtractionDocumentsByIdMarkTrained, patchExtractionDocumentsByIdReprocess, patchExtractionDocumentsByIdRestore, patchExtractionDocumentsByIdStatus, patchExtractionDocumentsByIdVerification, patchExtractionResultsById, patchExtractionResultsByIdRegenerate, patchExtractionResultsByIdSaveCorrections, patchInvitationsByIdAccept, patchInvitationsByIdAcceptByUser, patchInvitationsByIdDecline, patchInvitationsByIdResend, patchInvitationsByIdRevoke, patchLegalDocumentsById, patchLegalDocumentsByIdPublish, patchLegalDocumentsByIdUnpublish, patchMessagesById, patchNotificationMethodsById, patchNotificationMethodsByIdSendVerification, patchNotificationMethodsByIdSetPrimary, patchNotificationMethodsByIdVerify, patchNotificationPreferencesById, patchPaymentMethodsById, patchPaymentMethodsByIdDefault, patchSearchSavedById, patchTenantMembershipsByTenantIdByUserId, patchTenantsById, patchThreadsById, patchThreadsByIdArchive, patchThreadsByIdUnarchive, patchTrainingExamplesById, patchUserProfilesById, patchUserProfilesByIdAcceptPrivacyPolicy, patchUserProfilesByIdAcceptTos, patchUserProfilesByIdDismissAnnouncement, patchUserProfilesByIdDismissWelcome, patchUsersAuthPasswordChange, patchUsersAuthResetPassword, patchUsersByIdAdmin, patchUsersByIdAdminEmail, patchUsersByIdConfirmEmail, patchUsersByIdResetPassword, patchWalletAddons, patchWalletAddonsByAddonSlugCancel, patchWalletAutoTopUp, patchWalletCredits, patchWalletPlan, patchWatcherClaimsById, patchWatcherClaimsByIdRelease, patchWatcherClaimsByIdRetry, patchWebhookConfigsById, patchWebhookConfigsByIdRotateSecret, patchWorkspaceMembershipsByWorkspaceIdByUserId, patchWorkspacesById, patchWorkspacesByIdAllocate, patchWorkspacesByIdPopulateHashes, patchWorkspacesByIdStorageSettings, postAgentTestResults, postAgentVersionComparisons, postAgentVersions, postAgentVersionsByIdAddSystemField, postAgentVersionsByIdRemoveSystemField, postAgentVersionsByIdSetSystemFields, postAgents, postAgentsByIdAnalyzeTraining, postAgentsByIdClone, postAgentsByIdDiscoverSchema, postAgentsByIdExport, postAgentsByIdPublishVersion, postAgentsByIdRestoreVersion, postAgentsByIdSchemaVersions, postAgentsByIdSchemaVersionsByVersionIdActivate, postAgentsByIdTeach, postAgentsByIdTest, postAgentsByIdValidate, postAgentsCloneForWorkspace, postAgentsDiscoverSchema, postAgentsImport, postAgentsPredict, postAiChunksSearch, postAiConversations, postAiEmbed, postAiGraphEdges, postAiGraphNodes, postAiMessages, postAiSearch, postAiSearchAdvanced, postApiKeys, postApplications, postApplicationsByApplicationIdEmailTemplates, postApplicationsByApplicationIdEmailTemplatesBySlugPreview, postApplicationsByApplicationIdEmailTemplatesBySlugTest, postBuckets, postConfigs, postConsentRecords, postDocumentsBulkDelete, postDocumentsPresignedUpload, postExtractionBatches, postExtractionConfigEnums, postExtractionDocumentsBeginUpload, postExtractionDocumentsBulkReprocess, postExtractionDocumentsFindOrBeginUpload, postExtractionDocumentsUpload, postExtractionSchemaDiscoveries, postFieldTemplates, postInvitations, postInvitationsAcceptByToken, postLegalDocuments, postLlmAnalytics, postMessages, postNotificationMethods, postNotificationPreferences, postObjectsBulkDestroy, postObjectsCopy, postObjectsMove, postObjectsRegister, postPaymentMethods, postPaymentMethodsTokenize, postPayments, postSearchBatch, postSearchReindex, postSearchSaved, postSearchSavedByIdRun, postStorageSignDownload, postStorageSignUpload, postTenantMemberships, postTenants, postTenantsByIdBuyStorage, postTenantsByIdCredit, postTenantsByIdRemoveStorage, postTenantsByIdSchedulePurge, postTenantsIsv, postThreads, postThreadsActive, postThreadsByIdExport, postThreadsByIdFork, postThreadsByIdMessages, postThreadsByIdSummarize, postTokens, postTrainingExamples, postTrainingExamplesBulk, postTrainingExamplesBulkDelete, postTrainingExamplesSearch, postUserProfiles, postUsersAuthConfirm, postUsersAuthLogin, postUsersAuthMagicLinkLogin, postUsersAuthMagicLinkRequest, postUsersAuthRegister, postUsersAuthRegisterWithOidc, postUsersAuthResendConfirmation, postUsersRegisterIsv, postWatcherClaims, postWatcherEvents, postWebhookConfigs, postWebhookConfigsBulkDisable, postWebhookConfigsBulkEnable, postWebhookConfigsByIdReplay, postWebhookConfigsByIdTest, postWebhookDeliveriesBulkRetry, postWebhookDeliveriesByIdRetry, postWorkspaceMemberships, postWorkspaces, postWorkspacesByWorkspaceIdExtractionByDocumentIdMapping, postWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrained, postWorkspacesByWorkspaceIdExtractionExports, retryWithBackoff, sleep, streamMessage, streamSSE, webhooks, withRetry };
|