@gpt-core/client 0.9.35 → 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 +2297 -450
- package/dist/index.d.ts +2297 -450
- package/dist/index.js +228 -0
- package/dist/index.mjs +210 -0
- package/llms.txt +27 -0
- 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
|
/**
|
|
@@ -4286,6 +4290,59 @@ type AuditLog = {
|
|
|
4286
4290
|
};
|
|
4287
4291
|
type: string;
|
|
4288
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
|
+
};
|
|
4289
4346
|
/**
|
|
4290
4347
|
* A "Resource object" representing a balance
|
|
4291
4348
|
*/
|
|
@@ -4459,6 +4516,75 @@ type PresignedUrl = {
|
|
|
4459
4516
|
};
|
|
4460
4517
|
type: string;
|
|
4461
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
|
+
};
|
|
4462
4588
|
/**
|
|
4463
4589
|
* A "Resource object" representing a permission_preset
|
|
4464
4590
|
*/
|
|
@@ -4579,6 +4705,55 @@ type WorkspaceMembership = {
|
|
|
4579
4705
|
};
|
|
4580
4706
|
type: string;
|
|
4581
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
|
+
};
|
|
4582
4757
|
/**
|
|
4583
4758
|
* A "Resource object" representing a config
|
|
4584
4759
|
*/
|
|
@@ -5637,7 +5812,7 @@ type SystemMessage = {
|
|
|
5637
5812
|
/**
|
|
5638
5813
|
* Field included by default.
|
|
5639
5814
|
*/
|
|
5640
|
-
type: "tos" | "welcome" | "announcement";
|
|
5815
|
+
type: "tos" | "privacy_policy" | "welcome" | "announcement";
|
|
5641
5816
|
/**
|
|
5642
5817
|
* Field included by default.
|
|
5643
5818
|
*/
|
|
@@ -9431,6 +9606,10 @@ type PatchUserProfilesByIdAcceptTosData = {
|
|
|
9431
9606
|
body: {
|
|
9432
9607
|
data: {
|
|
9433
9608
|
attributes?: {
|
|
9609
|
+
/**
|
|
9610
|
+
* Optional: accept privacy policy simultaneously
|
|
9611
|
+
*/
|
|
9612
|
+
privacy_policy_version?: string | unknown;
|
|
9434
9613
|
/**
|
|
9435
9614
|
* The ToS version being accepted
|
|
9436
9615
|
*/
|
|
@@ -11520,20 +11699,20 @@ type PatchSearchSavedByIdResponses = {
|
|
|
11520
11699
|
};
|
|
11521
11700
|
};
|
|
11522
11701
|
type PatchSearchSavedByIdResponse = PatchSearchSavedByIdResponses[keyof PatchSearchSavedByIdResponses];
|
|
11523
|
-
type
|
|
11702
|
+
type PatchLegalDocumentsByIdUnpublishData = {
|
|
11524
11703
|
/**
|
|
11525
|
-
* Request body for the /
|
|
11704
|
+
* Request body for the /legal-documents/:id/unpublish operation on legal_document resource
|
|
11526
11705
|
*/
|
|
11527
|
-
body
|
|
11706
|
+
body?: {
|
|
11528
11707
|
data: {
|
|
11529
11708
|
attributes?: {
|
|
11530
|
-
|
|
11709
|
+
[key: string]: never;
|
|
11531
11710
|
};
|
|
11532
11711
|
id: string;
|
|
11533
11712
|
relationships?: {
|
|
11534
11713
|
[key: string]: never;
|
|
11535
11714
|
};
|
|
11536
|
-
type?: "
|
|
11715
|
+
type?: "legal_document";
|
|
11537
11716
|
};
|
|
11538
11717
|
};
|
|
11539
11718
|
headers: {
|
|
@@ -11557,9 +11736,9 @@ type PatchUsersByIdAdminEmailData = {
|
|
|
11557
11736
|
[key: string]: unknown;
|
|
11558
11737
|
};
|
|
11559
11738
|
};
|
|
11560
|
-
url: "/
|
|
11739
|
+
url: "/legal-documents/{id}/unpublish";
|
|
11561
11740
|
};
|
|
11562
|
-
type
|
|
11741
|
+
type PatchLegalDocumentsByIdUnpublishErrors = {
|
|
11563
11742
|
/**
|
|
11564
11743
|
* Bad Request - Invalid input data or malformed request
|
|
11565
11744
|
*/
|
|
@@ -11589,29 +11768,30 @@ type PatchUsersByIdAdminEmailErrors = {
|
|
|
11589
11768
|
*/
|
|
11590
11769
|
default: Errors;
|
|
11591
11770
|
};
|
|
11592
|
-
type
|
|
11593
|
-
type
|
|
11771
|
+
type PatchLegalDocumentsByIdUnpublishError = PatchLegalDocumentsByIdUnpublishErrors[keyof PatchLegalDocumentsByIdUnpublishErrors];
|
|
11772
|
+
type PatchLegalDocumentsByIdUnpublishResponses = {
|
|
11594
11773
|
/**
|
|
11595
11774
|
* Success
|
|
11596
11775
|
*/
|
|
11597
11776
|
200: {
|
|
11598
|
-
data?:
|
|
11777
|
+
data?: LegalDocument;
|
|
11599
11778
|
included?: Array<unknown>;
|
|
11600
11779
|
meta?: {
|
|
11601
11780
|
[key: string]: unknown;
|
|
11602
11781
|
};
|
|
11603
11782
|
};
|
|
11604
11783
|
};
|
|
11605
|
-
type
|
|
11606
|
-
type
|
|
11784
|
+
type PatchLegalDocumentsByIdUnpublishResponse = PatchLegalDocumentsByIdUnpublishResponses[keyof PatchLegalDocumentsByIdUnpublishResponses];
|
|
11785
|
+
type PatchUsersByIdAdminEmailData = {
|
|
11607
11786
|
/**
|
|
11608
|
-
* Request body for the /users/
|
|
11787
|
+
* Request body for the /users/:id/admin/email operation on user resource
|
|
11609
11788
|
*/
|
|
11610
11789
|
body: {
|
|
11611
11790
|
data: {
|
|
11612
11791
|
attributes?: {
|
|
11613
|
-
|
|
11792
|
+
new_email: string;
|
|
11614
11793
|
};
|
|
11794
|
+
id: string;
|
|
11615
11795
|
relationships?: {
|
|
11616
11796
|
[key: string]: never;
|
|
11617
11797
|
};
|
|
@@ -11624,93 +11804,10 @@ type PostUsersAuthMagicLinkLoginData = {
|
|
|
11624
11804
|
*/
|
|
11625
11805
|
"x-application-key": string;
|
|
11626
11806
|
};
|
|
11627
|
-
path?: never;
|
|
11628
|
-
query?: {
|
|
11629
|
-
/**
|
|
11630
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
11631
|
-
*/
|
|
11632
|
-
include?: string;
|
|
11633
|
-
/**
|
|
11634
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
11635
|
-
*/
|
|
11636
|
-
fields?: {
|
|
11637
|
-
[key: string]: unknown;
|
|
11638
|
-
};
|
|
11639
|
-
};
|
|
11640
|
-
url: "/users/auth/magic-link/login";
|
|
11641
|
-
};
|
|
11642
|
-
type PostUsersAuthMagicLinkLoginErrors = {
|
|
11643
|
-
/**
|
|
11644
|
-
* Bad Request - Invalid input data or malformed request
|
|
11645
|
-
*/
|
|
11646
|
-
400: ErrorResponse;
|
|
11647
|
-
/**
|
|
11648
|
-
* Unauthorized - Missing or invalid authentication token
|
|
11649
|
-
*/
|
|
11650
|
-
401: ErrorResponse;
|
|
11651
|
-
/**
|
|
11652
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
11653
|
-
*/
|
|
11654
|
-
403: ErrorResponse;
|
|
11655
|
-
/**
|
|
11656
|
-
* Not Found - Resource does not exist
|
|
11657
|
-
*/
|
|
11658
|
-
404: ErrorResponse;
|
|
11659
|
-
/**
|
|
11660
|
-
* Too Many Requests - Rate limit exceeded
|
|
11661
|
-
*/
|
|
11662
|
-
429: ErrorResponse;
|
|
11663
|
-
/**
|
|
11664
|
-
* Internal Server Error - Unexpected server error
|
|
11665
|
-
*/
|
|
11666
|
-
500: ErrorResponse;
|
|
11667
|
-
/**
|
|
11668
|
-
* General Error
|
|
11669
|
-
*/
|
|
11670
|
-
default: Errors;
|
|
11671
|
-
};
|
|
11672
|
-
type PostUsersAuthMagicLinkLoginError = PostUsersAuthMagicLinkLoginErrors[keyof PostUsersAuthMagicLinkLoginErrors];
|
|
11673
|
-
type PostUsersAuthMagicLinkLoginResponses = {
|
|
11674
|
-
/**
|
|
11675
|
-
* Success
|
|
11676
|
-
*/
|
|
11677
|
-
201: {
|
|
11678
|
-
data?: User;
|
|
11679
|
-
included?: Array<unknown>;
|
|
11680
|
-
meta?: {
|
|
11681
|
-
[key: string]: unknown;
|
|
11682
|
-
};
|
|
11683
|
-
};
|
|
11684
|
-
};
|
|
11685
|
-
type PostUsersAuthMagicLinkLoginResponse = PostUsersAuthMagicLinkLoginResponses[keyof PostUsersAuthMagicLinkLoginResponses];
|
|
11686
|
-
type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedData = {
|
|
11687
|
-
body?: never;
|
|
11688
|
-
headers: {
|
|
11689
|
-
/**
|
|
11690
|
-
* Application ID for authentication and routing
|
|
11691
|
-
*/
|
|
11692
|
-
"x-application-key": string;
|
|
11693
|
-
};
|
|
11694
11807
|
path: {
|
|
11695
|
-
|
|
11808
|
+
id: string;
|
|
11696
11809
|
};
|
|
11697
11810
|
query?: {
|
|
11698
|
-
/**
|
|
11699
|
-
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
11700
|
-
*/
|
|
11701
|
-
filter?: {
|
|
11702
|
-
[key: string]: unknown;
|
|
11703
|
-
};
|
|
11704
|
-
/**
|
|
11705
|
-
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
11706
|
-
*/
|
|
11707
|
-
sort?: string;
|
|
11708
|
-
/**
|
|
11709
|
-
* JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
|
|
11710
|
-
*/
|
|
11711
|
-
page?: {
|
|
11712
|
-
[key: string]: unknown;
|
|
11713
|
-
};
|
|
11714
11811
|
/**
|
|
11715
11812
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
11716
11813
|
*/
|
|
@@ -11721,16 +11818,181 @@ type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedData = {
|
|
|
11721
11818
|
fields?: {
|
|
11722
11819
|
[key: string]: unknown;
|
|
11723
11820
|
};
|
|
11724
|
-
limit?: number;
|
|
11725
|
-
agent_version_id?: string;
|
|
11726
|
-
/**
|
|
11727
|
-
* Version mode: 'active' (default, filter to workspace agent's active version), 'all' (no version filtering)
|
|
11728
|
-
*/
|
|
11729
|
-
version_mode?: string;
|
|
11730
11821
|
};
|
|
11731
|
-
url: "/
|
|
11822
|
+
url: "/users/{id}/admin/email";
|
|
11732
11823
|
};
|
|
11733
|
-
type
|
|
11824
|
+
type PatchUsersByIdAdminEmailErrors = {
|
|
11825
|
+
/**
|
|
11826
|
+
* Bad Request - Invalid input data or malformed request
|
|
11827
|
+
*/
|
|
11828
|
+
400: ErrorResponse;
|
|
11829
|
+
/**
|
|
11830
|
+
* Unauthorized - Missing or invalid authentication token
|
|
11831
|
+
*/
|
|
11832
|
+
401: ErrorResponse;
|
|
11833
|
+
/**
|
|
11834
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
11835
|
+
*/
|
|
11836
|
+
403: ErrorResponse;
|
|
11837
|
+
/**
|
|
11838
|
+
* Not Found - Resource does not exist
|
|
11839
|
+
*/
|
|
11840
|
+
404: ErrorResponse;
|
|
11841
|
+
/**
|
|
11842
|
+
* Too Many Requests - Rate limit exceeded
|
|
11843
|
+
*/
|
|
11844
|
+
429: ErrorResponse;
|
|
11845
|
+
/**
|
|
11846
|
+
* Internal Server Error - Unexpected server error
|
|
11847
|
+
*/
|
|
11848
|
+
500: ErrorResponse;
|
|
11849
|
+
/**
|
|
11850
|
+
* General Error
|
|
11851
|
+
*/
|
|
11852
|
+
default: Errors;
|
|
11853
|
+
};
|
|
11854
|
+
type PatchUsersByIdAdminEmailError = PatchUsersByIdAdminEmailErrors[keyof PatchUsersByIdAdminEmailErrors];
|
|
11855
|
+
type PatchUsersByIdAdminEmailResponses = {
|
|
11856
|
+
/**
|
|
11857
|
+
* Success
|
|
11858
|
+
*/
|
|
11859
|
+
200: {
|
|
11860
|
+
data?: User;
|
|
11861
|
+
included?: Array<unknown>;
|
|
11862
|
+
meta?: {
|
|
11863
|
+
[key: string]: unknown;
|
|
11864
|
+
};
|
|
11865
|
+
};
|
|
11866
|
+
};
|
|
11867
|
+
type PatchUsersByIdAdminEmailResponse = PatchUsersByIdAdminEmailResponses[keyof PatchUsersByIdAdminEmailResponses];
|
|
11868
|
+
type PostUsersAuthMagicLinkLoginData = {
|
|
11869
|
+
/**
|
|
11870
|
+
* Request body for the /users/auth/magic-link/login operation on user resource
|
|
11871
|
+
*/
|
|
11872
|
+
body: {
|
|
11873
|
+
data: {
|
|
11874
|
+
attributes?: {
|
|
11875
|
+
token: string;
|
|
11876
|
+
};
|
|
11877
|
+
relationships?: {
|
|
11878
|
+
[key: string]: never;
|
|
11879
|
+
};
|
|
11880
|
+
type?: "user";
|
|
11881
|
+
};
|
|
11882
|
+
};
|
|
11883
|
+
headers: {
|
|
11884
|
+
/**
|
|
11885
|
+
* Application ID for authentication and routing
|
|
11886
|
+
*/
|
|
11887
|
+
"x-application-key": string;
|
|
11888
|
+
};
|
|
11889
|
+
path?: never;
|
|
11890
|
+
query?: {
|
|
11891
|
+
/**
|
|
11892
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
11893
|
+
*/
|
|
11894
|
+
include?: string;
|
|
11895
|
+
/**
|
|
11896
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
11897
|
+
*/
|
|
11898
|
+
fields?: {
|
|
11899
|
+
[key: string]: unknown;
|
|
11900
|
+
};
|
|
11901
|
+
};
|
|
11902
|
+
url: "/users/auth/magic-link/login";
|
|
11903
|
+
};
|
|
11904
|
+
type PostUsersAuthMagicLinkLoginErrors = {
|
|
11905
|
+
/**
|
|
11906
|
+
* Bad Request - Invalid input data or malformed request
|
|
11907
|
+
*/
|
|
11908
|
+
400: ErrorResponse;
|
|
11909
|
+
/**
|
|
11910
|
+
* Unauthorized - Missing or invalid authentication token
|
|
11911
|
+
*/
|
|
11912
|
+
401: ErrorResponse;
|
|
11913
|
+
/**
|
|
11914
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
11915
|
+
*/
|
|
11916
|
+
403: ErrorResponse;
|
|
11917
|
+
/**
|
|
11918
|
+
* Not Found - Resource does not exist
|
|
11919
|
+
*/
|
|
11920
|
+
404: ErrorResponse;
|
|
11921
|
+
/**
|
|
11922
|
+
* Too Many Requests - Rate limit exceeded
|
|
11923
|
+
*/
|
|
11924
|
+
429: ErrorResponse;
|
|
11925
|
+
/**
|
|
11926
|
+
* Internal Server Error - Unexpected server error
|
|
11927
|
+
*/
|
|
11928
|
+
500: ErrorResponse;
|
|
11929
|
+
/**
|
|
11930
|
+
* General Error
|
|
11931
|
+
*/
|
|
11932
|
+
default: Errors;
|
|
11933
|
+
};
|
|
11934
|
+
type PostUsersAuthMagicLinkLoginError = PostUsersAuthMagicLinkLoginErrors[keyof PostUsersAuthMagicLinkLoginErrors];
|
|
11935
|
+
type PostUsersAuthMagicLinkLoginResponses = {
|
|
11936
|
+
/**
|
|
11937
|
+
* Success
|
|
11938
|
+
*/
|
|
11939
|
+
201: {
|
|
11940
|
+
data?: User;
|
|
11941
|
+
included?: Array<unknown>;
|
|
11942
|
+
meta?: {
|
|
11943
|
+
[key: string]: unknown;
|
|
11944
|
+
};
|
|
11945
|
+
};
|
|
11946
|
+
};
|
|
11947
|
+
type PostUsersAuthMagicLinkLoginResponse = PostUsersAuthMagicLinkLoginResponses[keyof PostUsersAuthMagicLinkLoginResponses];
|
|
11948
|
+
type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedData = {
|
|
11949
|
+
body?: never;
|
|
11950
|
+
headers: {
|
|
11951
|
+
/**
|
|
11952
|
+
* Application ID for authentication and routing
|
|
11953
|
+
*/
|
|
11954
|
+
"x-application-key": string;
|
|
11955
|
+
};
|
|
11956
|
+
path: {
|
|
11957
|
+
workspace_id: string;
|
|
11958
|
+
};
|
|
11959
|
+
query?: {
|
|
11960
|
+
/**
|
|
11961
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
11962
|
+
*/
|
|
11963
|
+
filter?: {
|
|
11964
|
+
[key: string]: unknown;
|
|
11965
|
+
};
|
|
11966
|
+
/**
|
|
11967
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
11968
|
+
*/
|
|
11969
|
+
sort?: string;
|
|
11970
|
+
/**
|
|
11971
|
+
* JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
|
|
11972
|
+
*/
|
|
11973
|
+
page?: {
|
|
11974
|
+
[key: string]: unknown;
|
|
11975
|
+
};
|
|
11976
|
+
/**
|
|
11977
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
11978
|
+
*/
|
|
11979
|
+
include?: string;
|
|
11980
|
+
/**
|
|
11981
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
11982
|
+
*/
|
|
11983
|
+
fields?: {
|
|
11984
|
+
[key: string]: unknown;
|
|
11985
|
+
};
|
|
11986
|
+
limit?: number;
|
|
11987
|
+
agent_version_id?: string;
|
|
11988
|
+
/**
|
|
11989
|
+
* Version mode: 'active' (default, filter to workspace agent's active version), 'all' (no version filtering)
|
|
11990
|
+
*/
|
|
11991
|
+
version_mode?: string;
|
|
11992
|
+
};
|
|
11993
|
+
url: "/extraction/documents/workspace/{workspace_id}/trained";
|
|
11994
|
+
};
|
|
11995
|
+
type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedErrors = {
|
|
11734
11996
|
/**
|
|
11735
11997
|
* Bad Request - Invalid input data or malformed request
|
|
11736
11998
|
*/
|
|
@@ -14150,6 +14412,75 @@ type DeleteAiMessagesByIdResponses = {
|
|
|
14150
14412
|
*/
|
|
14151
14413
|
200: unknown;
|
|
14152
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];
|
|
14153
14484
|
type GetExtractionBatchesByIdUploadUrlsData = {
|
|
14154
14485
|
body?: never;
|
|
14155
14486
|
headers: {
|
|
@@ -16576,7 +16907,7 @@ type PatchExtractionDocumentsByIdFinishUploadResponses = {
|
|
|
16576
16907
|
};
|
|
16577
16908
|
};
|
|
16578
16909
|
type PatchExtractionDocumentsByIdFinishUploadResponse = PatchExtractionDocumentsByIdFinishUploadResponses[keyof PatchExtractionDocumentsByIdFinishUploadResponses];
|
|
16579
|
-
type
|
|
16910
|
+
type GetConsentRecordsByIdData = {
|
|
16580
16911
|
body?: never;
|
|
16581
16912
|
headers: {
|
|
16582
16913
|
/**
|
|
@@ -16585,19 +16916,9 @@ type GetTrainingSessionsAgentsByAgentIdSessionsData = {
|
|
|
16585
16916
|
"x-application-key": string;
|
|
16586
16917
|
};
|
|
16587
16918
|
path: {
|
|
16588
|
-
|
|
16919
|
+
id: string;
|
|
16589
16920
|
};
|
|
16590
16921
|
query?: {
|
|
16591
|
-
/**
|
|
16592
|
-
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
16593
|
-
*/
|
|
16594
|
-
filter?: {
|
|
16595
|
-
[key: string]: unknown;
|
|
16596
|
-
};
|
|
16597
|
-
/**
|
|
16598
|
-
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
16599
|
-
*/
|
|
16600
|
-
sort?: string;
|
|
16601
16922
|
/**
|
|
16602
16923
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
16603
16924
|
*/
|
|
@@ -16609,9 +16930,9 @@ type GetTrainingSessionsAgentsByAgentIdSessionsData = {
|
|
|
16609
16930
|
[key: string]: unknown;
|
|
16610
16931
|
};
|
|
16611
16932
|
};
|
|
16612
|
-
url: "/
|
|
16933
|
+
url: "/consent-records/{id}";
|
|
16613
16934
|
};
|
|
16614
|
-
type
|
|
16935
|
+
type GetConsentRecordsByIdErrors = {
|
|
16615
16936
|
/**
|
|
16616
16937
|
* Bad Request - Invalid input data or malformed request
|
|
16617
16938
|
*/
|
|
@@ -16641,24 +16962,21 @@ type GetTrainingSessionsAgentsByAgentIdSessionsErrors = {
|
|
|
16641
16962
|
*/
|
|
16642
16963
|
default: Errors;
|
|
16643
16964
|
};
|
|
16644
|
-
type
|
|
16645
|
-
type
|
|
16965
|
+
type GetConsentRecordsByIdError = GetConsentRecordsByIdErrors[keyof GetConsentRecordsByIdErrors];
|
|
16966
|
+
type GetConsentRecordsByIdResponses = {
|
|
16646
16967
|
/**
|
|
16647
16968
|
* Success
|
|
16648
16969
|
*/
|
|
16649
16970
|
200: {
|
|
16650
|
-
|
|
16651
|
-
* An array of resource objects representing a training_session
|
|
16652
|
-
*/
|
|
16653
|
-
data?: Array<TrainingSession>;
|
|
16971
|
+
data?: ConsentRecord;
|
|
16654
16972
|
included?: Array<unknown>;
|
|
16655
16973
|
meta?: {
|
|
16656
16974
|
[key: string]: unknown;
|
|
16657
16975
|
};
|
|
16658
16976
|
};
|
|
16659
16977
|
};
|
|
16660
|
-
type
|
|
16661
|
-
type
|
|
16978
|
+
type GetConsentRecordsByIdResponse = GetConsentRecordsByIdResponses[keyof GetConsentRecordsByIdResponses];
|
|
16979
|
+
type GetTrainingSessionsAgentsByAgentIdSessionsData = {
|
|
16662
16980
|
body?: never;
|
|
16663
16981
|
headers: {
|
|
16664
16982
|
/**
|
|
@@ -16666,8 +16984,173 @@ type GetApiKeysStatsData = {
|
|
|
16666
16984
|
*/
|
|
16667
16985
|
"x-application-key": string;
|
|
16668
16986
|
};
|
|
16669
|
-
path
|
|
16670
|
-
|
|
16987
|
+
path: {
|
|
16988
|
+
agent_id: string;
|
|
16989
|
+
};
|
|
16990
|
+
query?: {
|
|
16991
|
+
/**
|
|
16992
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
16993
|
+
*/
|
|
16994
|
+
filter?: {
|
|
16995
|
+
[key: string]: unknown;
|
|
16996
|
+
};
|
|
16997
|
+
/**
|
|
16998
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
16999
|
+
*/
|
|
17000
|
+
sort?: string;
|
|
17001
|
+
/**
|
|
17002
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
17003
|
+
*/
|
|
17004
|
+
include?: string;
|
|
17005
|
+
/**
|
|
17006
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
17007
|
+
*/
|
|
17008
|
+
fields?: {
|
|
17009
|
+
[key: string]: unknown;
|
|
17010
|
+
};
|
|
17011
|
+
};
|
|
17012
|
+
url: "/training-sessions/agents/{agent_id}/sessions";
|
|
17013
|
+
};
|
|
17014
|
+
type GetTrainingSessionsAgentsByAgentIdSessionsErrors = {
|
|
17015
|
+
/**
|
|
17016
|
+
* Bad Request - Invalid input data or malformed request
|
|
17017
|
+
*/
|
|
17018
|
+
400: ErrorResponse;
|
|
17019
|
+
/**
|
|
17020
|
+
* Unauthorized - Missing or invalid authentication token
|
|
17021
|
+
*/
|
|
17022
|
+
401: ErrorResponse;
|
|
17023
|
+
/**
|
|
17024
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
17025
|
+
*/
|
|
17026
|
+
403: ErrorResponse;
|
|
17027
|
+
/**
|
|
17028
|
+
* Not Found - Resource does not exist
|
|
17029
|
+
*/
|
|
17030
|
+
404: ErrorResponse;
|
|
17031
|
+
/**
|
|
17032
|
+
* Too Many Requests - Rate limit exceeded
|
|
17033
|
+
*/
|
|
17034
|
+
429: ErrorResponse;
|
|
17035
|
+
/**
|
|
17036
|
+
* Internal Server Error - Unexpected server error
|
|
17037
|
+
*/
|
|
17038
|
+
500: ErrorResponse;
|
|
17039
|
+
/**
|
|
17040
|
+
* General Error
|
|
17041
|
+
*/
|
|
17042
|
+
default: Errors;
|
|
17043
|
+
};
|
|
17044
|
+
type GetTrainingSessionsAgentsByAgentIdSessionsError = GetTrainingSessionsAgentsByAgentIdSessionsErrors[keyof GetTrainingSessionsAgentsByAgentIdSessionsErrors];
|
|
17045
|
+
type GetTrainingSessionsAgentsByAgentIdSessionsResponses = {
|
|
17046
|
+
/**
|
|
17047
|
+
* Success
|
|
17048
|
+
*/
|
|
17049
|
+
200: {
|
|
17050
|
+
/**
|
|
17051
|
+
* An array of resource objects representing a training_session
|
|
17052
|
+
*/
|
|
17053
|
+
data?: Array<TrainingSession>;
|
|
17054
|
+
included?: Array<unknown>;
|
|
17055
|
+
meta?: {
|
|
17056
|
+
[key: string]: unknown;
|
|
17057
|
+
};
|
|
17058
|
+
};
|
|
17059
|
+
};
|
|
17060
|
+
type GetTrainingSessionsAgentsByAgentIdSessionsResponse = GetTrainingSessionsAgentsByAgentIdSessionsResponses[keyof GetTrainingSessionsAgentsByAgentIdSessionsResponses];
|
|
17061
|
+
type PatchLegalDocumentsByIdPublishData = {
|
|
17062
|
+
/**
|
|
17063
|
+
* Request body for the /legal-documents/:id/publish operation on legal_document resource
|
|
17064
|
+
*/
|
|
17065
|
+
body?: {
|
|
17066
|
+
data: {
|
|
17067
|
+
attributes?: {
|
|
17068
|
+
[key: string]: never;
|
|
17069
|
+
};
|
|
17070
|
+
id: string;
|
|
17071
|
+
relationships?: {
|
|
17072
|
+
[key: string]: never;
|
|
17073
|
+
};
|
|
17074
|
+
type?: "legal_document";
|
|
17075
|
+
};
|
|
17076
|
+
};
|
|
17077
|
+
headers: {
|
|
17078
|
+
/**
|
|
17079
|
+
* Application ID for authentication and routing
|
|
17080
|
+
*/
|
|
17081
|
+
"x-application-key": string;
|
|
17082
|
+
};
|
|
17083
|
+
path: {
|
|
17084
|
+
id: string;
|
|
17085
|
+
};
|
|
17086
|
+
query?: {
|
|
17087
|
+
/**
|
|
17088
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
17089
|
+
*/
|
|
17090
|
+
include?: string;
|
|
17091
|
+
/**
|
|
17092
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
17093
|
+
*/
|
|
17094
|
+
fields?: {
|
|
17095
|
+
[key: string]: unknown;
|
|
17096
|
+
};
|
|
17097
|
+
};
|
|
17098
|
+
url: "/legal-documents/{id}/publish";
|
|
17099
|
+
};
|
|
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: {
|
|
16671
17154
|
/**
|
|
16672
17155
|
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
16673
17156
|
*/
|
|
@@ -17827,32 +18310,32 @@ type PostNotificationPreferencesResponses = {
|
|
|
17827
18310
|
};
|
|
17828
18311
|
};
|
|
17829
18312
|
type PostNotificationPreferencesResponse = PostNotificationPreferencesResponses[keyof PostNotificationPreferencesResponses];
|
|
17830
|
-
type
|
|
17831
|
-
|
|
17832
|
-
* Request body for the /watcher/claims/:id/retry operation on watcher_claim resource
|
|
17833
|
-
*/
|
|
17834
|
-
body?: {
|
|
17835
|
-
data: {
|
|
17836
|
-
attributes?: {
|
|
17837
|
-
reset_retry_count?: boolean | unknown;
|
|
17838
|
-
};
|
|
17839
|
-
id: string;
|
|
17840
|
-
relationships?: {
|
|
17841
|
-
[key: string]: never;
|
|
17842
|
-
};
|
|
17843
|
-
type?: "watcher_claim";
|
|
17844
|
-
};
|
|
17845
|
-
};
|
|
18313
|
+
type GetLegalAcceptancesData = {
|
|
18314
|
+
body?: never;
|
|
17846
18315
|
headers: {
|
|
17847
18316
|
/**
|
|
17848
18317
|
* Application ID for authentication and routing
|
|
17849
18318
|
*/
|
|
17850
18319
|
"x-application-key": string;
|
|
17851
18320
|
};
|
|
17852
|
-
path
|
|
17853
|
-
id: string;
|
|
17854
|
-
};
|
|
18321
|
+
path?: never;
|
|
17855
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
|
+
};
|
|
17856
18339
|
/**
|
|
17857
18340
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
17858
18341
|
*/
|
|
@@ -17864,9 +18347,9 @@ type PatchWatcherClaimsByIdRetryData = {
|
|
|
17864
18347
|
[key: string]: unknown;
|
|
17865
18348
|
};
|
|
17866
18349
|
};
|
|
17867
|
-
url: "/
|
|
18350
|
+
url: "/legal-acceptances";
|
|
17868
18351
|
};
|
|
17869
|
-
type
|
|
18352
|
+
type GetLegalAcceptancesErrors = {
|
|
17870
18353
|
/**
|
|
17871
18354
|
* Bad Request - Invalid input data or malformed request
|
|
17872
18355
|
*/
|
|
@@ -17896,100 +18379,186 @@ type PatchWatcherClaimsByIdRetryErrors = {
|
|
|
17896
18379
|
*/
|
|
17897
18380
|
default: Errors;
|
|
17898
18381
|
};
|
|
17899
|
-
type
|
|
17900
|
-
type
|
|
18382
|
+
type GetLegalAcceptancesError = GetLegalAcceptancesErrors[keyof GetLegalAcceptancesErrors];
|
|
18383
|
+
type GetLegalAcceptancesResponses = {
|
|
17901
18384
|
/**
|
|
17902
18385
|
* Success
|
|
17903
18386
|
*/
|
|
17904
18387
|
200: {
|
|
17905
|
-
|
|
18388
|
+
/**
|
|
18389
|
+
* An array of resource objects representing a legal_acceptance
|
|
18390
|
+
*/
|
|
18391
|
+
data?: Array<LegalAcceptance>;
|
|
17906
18392
|
included?: Array<unknown>;
|
|
17907
18393
|
meta?: {
|
|
17908
18394
|
[key: string]: unknown;
|
|
17909
18395
|
};
|
|
17910
18396
|
};
|
|
17911
18397
|
};
|
|
17912
|
-
type
|
|
17913
|
-
type
|
|
17914
|
-
/**
|
|
17915
|
-
* Request body for the /agents/predict operation on agent resource
|
|
17916
|
-
*/
|
|
17917
|
-
body?: {
|
|
17918
|
-
data: {
|
|
17919
|
-
description?: string | unknown;
|
|
17920
|
-
document_id?: string | unknown;
|
|
17921
|
-
file_content?: string | unknown;
|
|
17922
|
-
name?: string | unknown;
|
|
17923
|
-
};
|
|
17924
|
-
};
|
|
17925
|
-
headers: {
|
|
17926
|
-
/**
|
|
17927
|
-
* Application ID for authentication and routing
|
|
17928
|
-
*/
|
|
17929
|
-
"x-application-key": string;
|
|
17930
|
-
};
|
|
17931
|
-
path?: never;
|
|
17932
|
-
query?: never;
|
|
17933
|
-
url: "/agents/predict";
|
|
17934
|
-
};
|
|
17935
|
-
type PostAgentsPredictErrors = {
|
|
17936
|
-
/**
|
|
17937
|
-
* Bad Request - Invalid input data or malformed request
|
|
17938
|
-
*/
|
|
17939
|
-
400: ErrorResponse;
|
|
17940
|
-
/**
|
|
17941
|
-
* Unauthorized - Missing or invalid authentication token
|
|
17942
|
-
*/
|
|
17943
|
-
401: ErrorResponse;
|
|
17944
|
-
/**
|
|
17945
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
17946
|
-
*/
|
|
17947
|
-
403: ErrorResponse;
|
|
17948
|
-
/**
|
|
17949
|
-
* Not Found - Resource does not exist
|
|
17950
|
-
*/
|
|
17951
|
-
404: ErrorResponse;
|
|
17952
|
-
/**
|
|
17953
|
-
* Too Many Requests - Rate limit exceeded
|
|
17954
|
-
*/
|
|
17955
|
-
429: ErrorResponse;
|
|
17956
|
-
/**
|
|
17957
|
-
* Internal Server Error - Unexpected server error
|
|
17958
|
-
*/
|
|
17959
|
-
500: ErrorResponse;
|
|
17960
|
-
/**
|
|
17961
|
-
* General Error
|
|
17962
|
-
*/
|
|
17963
|
-
default: Errors;
|
|
17964
|
-
};
|
|
17965
|
-
type PostAgentsPredictError = PostAgentsPredictErrors[keyof PostAgentsPredictErrors];
|
|
17966
|
-
type PostAgentsPredictResponses = {
|
|
17967
|
-
/**
|
|
17968
|
-
* Success
|
|
17969
|
-
*/
|
|
17970
|
-
201: {
|
|
17971
|
-
[key: string]: unknown;
|
|
17972
|
-
};
|
|
17973
|
-
};
|
|
17974
|
-
type PostAgentsPredictResponse = PostAgentsPredictResponses[keyof PostAgentsPredictResponses];
|
|
17975
|
-
type PatchExtractionDocumentsByIdReprocessData = {
|
|
18398
|
+
type GetLegalAcceptancesResponse = GetLegalAcceptancesResponses[keyof GetLegalAcceptancesResponses];
|
|
18399
|
+
type PatchWatcherClaimsByIdRetryData = {
|
|
17976
18400
|
/**
|
|
17977
|
-
* Request body for the /
|
|
18401
|
+
* Request body for the /watcher/claims/:id/retry operation on watcher_claim resource
|
|
17978
18402
|
*/
|
|
17979
18403
|
body?: {
|
|
17980
18404
|
data: {
|
|
17981
18405
|
attributes?: {
|
|
17982
|
-
|
|
17983
|
-
* The version of the agent/schema used to process this document
|
|
17984
|
-
*/
|
|
17985
|
-
schema_version?: string | unknown;
|
|
17986
|
-
schema_version_id?: string | unknown;
|
|
18406
|
+
reset_retry_count?: boolean | unknown;
|
|
17987
18407
|
};
|
|
17988
18408
|
id: string;
|
|
17989
18409
|
relationships?: {
|
|
17990
18410
|
[key: string]: never;
|
|
17991
18411
|
};
|
|
17992
|
-
type?: "
|
|
18412
|
+
type?: "watcher_claim";
|
|
18413
|
+
};
|
|
18414
|
+
};
|
|
18415
|
+
headers: {
|
|
18416
|
+
/**
|
|
18417
|
+
* Application ID for authentication and routing
|
|
18418
|
+
*/
|
|
18419
|
+
"x-application-key": string;
|
|
18420
|
+
};
|
|
18421
|
+
path: {
|
|
18422
|
+
id: string;
|
|
18423
|
+
};
|
|
18424
|
+
query?: {
|
|
18425
|
+
/**
|
|
18426
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
18427
|
+
*/
|
|
18428
|
+
include?: string;
|
|
18429
|
+
/**
|
|
18430
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
18431
|
+
*/
|
|
18432
|
+
fields?: {
|
|
18433
|
+
[key: string]: unknown;
|
|
18434
|
+
};
|
|
18435
|
+
};
|
|
18436
|
+
url: "/watcher/claims/{id}/retry";
|
|
18437
|
+
};
|
|
18438
|
+
type PatchWatcherClaimsByIdRetryErrors = {
|
|
18439
|
+
/**
|
|
18440
|
+
* Bad Request - Invalid input data or malformed request
|
|
18441
|
+
*/
|
|
18442
|
+
400: ErrorResponse;
|
|
18443
|
+
/**
|
|
18444
|
+
* Unauthorized - Missing or invalid authentication token
|
|
18445
|
+
*/
|
|
18446
|
+
401: ErrorResponse;
|
|
18447
|
+
/**
|
|
18448
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
18449
|
+
*/
|
|
18450
|
+
403: ErrorResponse;
|
|
18451
|
+
/**
|
|
18452
|
+
* Not Found - Resource does not exist
|
|
18453
|
+
*/
|
|
18454
|
+
404: ErrorResponse;
|
|
18455
|
+
/**
|
|
18456
|
+
* Too Many Requests - Rate limit exceeded
|
|
18457
|
+
*/
|
|
18458
|
+
429: ErrorResponse;
|
|
18459
|
+
/**
|
|
18460
|
+
* Internal Server Error - Unexpected server error
|
|
18461
|
+
*/
|
|
18462
|
+
500: ErrorResponse;
|
|
18463
|
+
/**
|
|
18464
|
+
* General Error
|
|
18465
|
+
*/
|
|
18466
|
+
default: Errors;
|
|
18467
|
+
};
|
|
18468
|
+
type PatchWatcherClaimsByIdRetryError = PatchWatcherClaimsByIdRetryErrors[keyof PatchWatcherClaimsByIdRetryErrors];
|
|
18469
|
+
type PatchWatcherClaimsByIdRetryResponses = {
|
|
18470
|
+
/**
|
|
18471
|
+
* Success
|
|
18472
|
+
*/
|
|
18473
|
+
200: {
|
|
18474
|
+
data?: WatcherClaim;
|
|
18475
|
+
included?: Array<unknown>;
|
|
18476
|
+
meta?: {
|
|
18477
|
+
[key: string]: unknown;
|
|
18478
|
+
};
|
|
18479
|
+
};
|
|
18480
|
+
};
|
|
18481
|
+
type PatchWatcherClaimsByIdRetryResponse = PatchWatcherClaimsByIdRetryResponses[keyof PatchWatcherClaimsByIdRetryResponses];
|
|
18482
|
+
type PostAgentsPredictData = {
|
|
18483
|
+
/**
|
|
18484
|
+
* Request body for the /agents/predict operation on agent resource
|
|
18485
|
+
*/
|
|
18486
|
+
body?: {
|
|
18487
|
+
data: {
|
|
18488
|
+
description?: string | unknown;
|
|
18489
|
+
document_id?: string | unknown;
|
|
18490
|
+
file_content?: string | unknown;
|
|
18491
|
+
name?: string | unknown;
|
|
18492
|
+
};
|
|
18493
|
+
};
|
|
18494
|
+
headers: {
|
|
18495
|
+
/**
|
|
18496
|
+
* Application ID for authentication and routing
|
|
18497
|
+
*/
|
|
18498
|
+
"x-application-key": string;
|
|
18499
|
+
};
|
|
18500
|
+
path?: never;
|
|
18501
|
+
query?: never;
|
|
18502
|
+
url: "/agents/predict";
|
|
18503
|
+
};
|
|
18504
|
+
type PostAgentsPredictErrors = {
|
|
18505
|
+
/**
|
|
18506
|
+
* Bad Request - Invalid input data or malformed request
|
|
18507
|
+
*/
|
|
18508
|
+
400: ErrorResponse;
|
|
18509
|
+
/**
|
|
18510
|
+
* Unauthorized - Missing or invalid authentication token
|
|
18511
|
+
*/
|
|
18512
|
+
401: ErrorResponse;
|
|
18513
|
+
/**
|
|
18514
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
18515
|
+
*/
|
|
18516
|
+
403: ErrorResponse;
|
|
18517
|
+
/**
|
|
18518
|
+
* Not Found - Resource does not exist
|
|
18519
|
+
*/
|
|
18520
|
+
404: ErrorResponse;
|
|
18521
|
+
/**
|
|
18522
|
+
* Too Many Requests - Rate limit exceeded
|
|
18523
|
+
*/
|
|
18524
|
+
429: ErrorResponse;
|
|
18525
|
+
/**
|
|
18526
|
+
* Internal Server Error - Unexpected server error
|
|
18527
|
+
*/
|
|
18528
|
+
500: ErrorResponse;
|
|
18529
|
+
/**
|
|
18530
|
+
* General Error
|
|
18531
|
+
*/
|
|
18532
|
+
default: Errors;
|
|
18533
|
+
};
|
|
18534
|
+
type PostAgentsPredictError = PostAgentsPredictErrors[keyof PostAgentsPredictErrors];
|
|
18535
|
+
type PostAgentsPredictResponses = {
|
|
18536
|
+
/**
|
|
18537
|
+
* Success
|
|
18538
|
+
*/
|
|
18539
|
+
201: {
|
|
18540
|
+
[key: string]: unknown;
|
|
18541
|
+
};
|
|
18542
|
+
};
|
|
18543
|
+
type PostAgentsPredictResponse = PostAgentsPredictResponses[keyof PostAgentsPredictResponses];
|
|
18544
|
+
type PatchExtractionDocumentsByIdReprocessData = {
|
|
18545
|
+
/**
|
|
18546
|
+
* Request body for the /extraction/documents/:id/reprocess operation on extraction_document resource
|
|
18547
|
+
*/
|
|
18548
|
+
body?: {
|
|
18549
|
+
data: {
|
|
18550
|
+
attributes?: {
|
|
18551
|
+
/**
|
|
18552
|
+
* The version of the agent/schema used to process this document
|
|
18553
|
+
*/
|
|
18554
|
+
schema_version?: string | unknown;
|
|
18555
|
+
schema_version_id?: string | unknown;
|
|
18556
|
+
};
|
|
18557
|
+
id: string;
|
|
18558
|
+
relationships?: {
|
|
18559
|
+
[key: string]: never;
|
|
18560
|
+
};
|
|
18561
|
+
type?: "extraction_document";
|
|
17993
18562
|
};
|
|
17994
18563
|
};
|
|
17995
18564
|
headers: {
|
|
@@ -20400,11 +20969,14 @@ type PostTenantsData = {
|
|
|
20400
20969
|
name: string;
|
|
20401
20970
|
owner_id: string;
|
|
20402
20971
|
parent_id?: string | unknown;
|
|
20403
|
-
slug: string;
|
|
20404
20972
|
/**
|
|
20405
20973
|
* Cost in credits for training on a single document
|
|
20406
20974
|
*/
|
|
20407
20975
|
training_price_credits?: number | unknown;
|
|
20976
|
+
/**
|
|
20977
|
+
* Optional user-facing slug for vanity URLs
|
|
20978
|
+
*/
|
|
20979
|
+
vanity_slug?: string | unknown;
|
|
20408
20980
|
};
|
|
20409
20981
|
relationships?: {
|
|
20410
20982
|
[key: string]: never;
|
|
@@ -24559,6 +25131,88 @@ type DeleteAiGraphNodesByIdResponses = {
|
|
|
24559
25131
|
*/
|
|
24560
25132
|
200: unknown;
|
|
24561
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];
|
|
24562
25216
|
type GetWorkspacesSharedData = {
|
|
24563
25217
|
body?: never;
|
|
24564
25218
|
headers: {
|
|
@@ -25536,31 +26190,26 @@ type GetThreadsSearchResponses = {
|
|
|
25536
26190
|
};
|
|
25537
26191
|
};
|
|
25538
26192
|
type GetThreadsSearchResponse = GetThreadsSearchResponses[keyof GetThreadsSearchResponses];
|
|
25539
|
-
type
|
|
25540
|
-
|
|
25541
|
-
* Request body for the /search/saved/:id/run operation on saved_search resource
|
|
25542
|
-
*/
|
|
25543
|
-
body?: {
|
|
25544
|
-
data: {
|
|
25545
|
-
attributes?: {
|
|
25546
|
-
[key: string]: never;
|
|
25547
|
-
};
|
|
25548
|
-
relationships?: {
|
|
25549
|
-
[key: string]: never;
|
|
25550
|
-
};
|
|
25551
|
-
type?: "saved_search";
|
|
25552
|
-
};
|
|
25553
|
-
};
|
|
26193
|
+
type GetConsentRecordsActiveData = {
|
|
26194
|
+
body?: never;
|
|
25554
26195
|
headers: {
|
|
25555
26196
|
/**
|
|
25556
26197
|
* Application ID for authentication and routing
|
|
25557
26198
|
*/
|
|
25558
26199
|
"x-application-key": string;
|
|
25559
26200
|
};
|
|
25560
|
-
path
|
|
25561
|
-
|
|
25562
|
-
|
|
25563
|
-
|
|
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;
|
|
25564
26213
|
/**
|
|
25565
26214
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
25566
26215
|
*/
|
|
@@ -25571,10 +26220,96 @@ type PostSearchSavedByIdRunData = {
|
|
|
25571
26220
|
fields?: {
|
|
25572
26221
|
[key: string]: unknown;
|
|
25573
26222
|
};
|
|
26223
|
+
user_id: string;
|
|
25574
26224
|
};
|
|
25575
|
-
url: "/
|
|
26225
|
+
url: "/consent-records/active";
|
|
25576
26226
|
};
|
|
25577
|
-
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 = {
|
|
25578
26313
|
/**
|
|
25579
26314
|
* Bad Request - Invalid input data or malformed request
|
|
25580
26315
|
*/
|
|
@@ -26265,6 +27000,88 @@ type PatchNotificationMethodsByIdSendVerificationResponses = {
|
|
|
26265
27000
|
};
|
|
26266
27001
|
};
|
|
26267
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];
|
|
26268
27085
|
type PatchApplicationsByIdGrantCreditsData = {
|
|
26269
27086
|
/**
|
|
26270
27087
|
* Request body for the /applications/:id/grant-credits operation on application resource
|
|
@@ -26990,6 +27807,89 @@ type PostAiEmbedResponses = {
|
|
|
26990
27807
|
};
|
|
26991
27808
|
};
|
|
26992
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];
|
|
26993
27893
|
type PostAgentVersionComparisonsData = {
|
|
26994
27894
|
/**
|
|
26995
27895
|
* Request body for the /agent-version-comparisons operation on agent_version_comparison resource
|
|
@@ -27253,7 +28153,10 @@ type PostTenantsIsvData = {
|
|
|
27253
28153
|
logo_url?: string | unknown;
|
|
27254
28154
|
name: string;
|
|
27255
28155
|
owner_id: string;
|
|
27256
|
-
|
|
28156
|
+
/**
|
|
28157
|
+
* Optional user-facing slug for vanity URLs
|
|
28158
|
+
*/
|
|
28159
|
+
vanity_slug?: string | unknown;
|
|
27257
28160
|
};
|
|
27258
28161
|
relationships?: {
|
|
27259
28162
|
[key: string]: never;
|
|
@@ -27326,24 +28229,23 @@ type PostTenantsIsvResponses = {
|
|
|
27326
28229
|
};
|
|
27327
28230
|
};
|
|
27328
28231
|
type PostTenantsIsvResponse = PostTenantsIsvResponses[keyof PostTenantsIsvResponses];
|
|
27329
|
-
type
|
|
28232
|
+
type PatchUserProfilesByIdAcceptPrivacyPolicyData = {
|
|
27330
28233
|
/**
|
|
27331
|
-
* Request body for the /
|
|
28234
|
+
* Request body for the /user-profiles/:id/accept-privacy-policy operation on user_profile resource
|
|
27332
28235
|
*/
|
|
27333
28236
|
body: {
|
|
27334
28237
|
data: {
|
|
27335
28238
|
attributes?: {
|
|
27336
|
-
|
|
27337
|
-
|
|
27338
|
-
|
|
27339
|
-
|
|
27340
|
-
[key: string]: unknown;
|
|
27341
|
-
};
|
|
28239
|
+
/**
|
|
28240
|
+
* The Privacy Policy version being accepted
|
|
28241
|
+
*/
|
|
28242
|
+
version: string;
|
|
27342
28243
|
};
|
|
28244
|
+
id: string;
|
|
27343
28245
|
relationships?: {
|
|
27344
28246
|
[key: string]: never;
|
|
27345
28247
|
};
|
|
27346
|
-
type?: "
|
|
28248
|
+
type?: "user_profile";
|
|
27347
28249
|
};
|
|
27348
28250
|
};
|
|
27349
28251
|
headers: {
|
|
@@ -27352,7 +28254,9 @@ type PostUsersAuthRegisterWithOidcData = {
|
|
|
27352
28254
|
*/
|
|
27353
28255
|
"x-application-key": string;
|
|
27354
28256
|
};
|
|
27355
|
-
path
|
|
28257
|
+
path: {
|
|
28258
|
+
id: string;
|
|
28259
|
+
};
|
|
27356
28260
|
query?: {
|
|
27357
28261
|
/**
|
|
27358
28262
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -27365,9 +28269,9 @@ type PostUsersAuthRegisterWithOidcData = {
|
|
|
27365
28269
|
[key: string]: unknown;
|
|
27366
28270
|
};
|
|
27367
28271
|
};
|
|
27368
|
-
url: "/
|
|
28272
|
+
url: "/user-profiles/{id}/accept-privacy-policy";
|
|
27369
28273
|
};
|
|
27370
|
-
type
|
|
28274
|
+
type PatchUserProfilesByIdAcceptPrivacyPolicyErrors = {
|
|
27371
28275
|
/**
|
|
27372
28276
|
* Bad Request - Invalid input data or malformed request
|
|
27373
28277
|
*/
|
|
@@ -27397,33 +28301,118 @@ type PostUsersAuthRegisterWithOidcErrors = {
|
|
|
27397
28301
|
*/
|
|
27398
28302
|
default: Errors;
|
|
27399
28303
|
};
|
|
27400
|
-
type
|
|
27401
|
-
type
|
|
28304
|
+
type PatchUserProfilesByIdAcceptPrivacyPolicyError = PatchUserProfilesByIdAcceptPrivacyPolicyErrors[keyof PatchUserProfilesByIdAcceptPrivacyPolicyErrors];
|
|
28305
|
+
type PatchUserProfilesByIdAcceptPrivacyPolicyResponses = {
|
|
27402
28306
|
/**
|
|
27403
28307
|
* Success
|
|
27404
28308
|
*/
|
|
27405
|
-
|
|
27406
|
-
data?:
|
|
28309
|
+
200: {
|
|
28310
|
+
data?: UserProfile;
|
|
27407
28311
|
included?: Array<unknown>;
|
|
27408
28312
|
meta?: {
|
|
27409
28313
|
[key: string]: unknown;
|
|
27410
28314
|
};
|
|
27411
28315
|
};
|
|
27412
28316
|
};
|
|
27413
|
-
type
|
|
27414
|
-
type
|
|
28317
|
+
type PatchUserProfilesByIdAcceptPrivacyPolicyResponse = PatchUserProfilesByIdAcceptPrivacyPolicyResponses[keyof PatchUserProfilesByIdAcceptPrivacyPolicyResponses];
|
|
28318
|
+
type PostUsersAuthRegisterWithOidcData = {
|
|
27415
28319
|
/**
|
|
27416
|
-
* Request body for the /
|
|
28320
|
+
* Request body for the /users/auth/register-with-oidc operation on user resource
|
|
27417
28321
|
*/
|
|
27418
|
-
body
|
|
28322
|
+
body: {
|
|
27419
28323
|
data: {
|
|
27420
28324
|
attributes?: {
|
|
27421
|
-
|
|
28325
|
+
oauth_tokens: {
|
|
28326
|
+
[key: string]: unknown;
|
|
28327
|
+
};
|
|
28328
|
+
user_info: {
|
|
28329
|
+
[key: string]: unknown;
|
|
28330
|
+
};
|
|
27422
28331
|
};
|
|
27423
28332
|
relationships?: {
|
|
27424
28333
|
[key: string]: never;
|
|
27425
28334
|
};
|
|
27426
|
-
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";
|
|
27427
28416
|
};
|
|
27428
28417
|
};
|
|
27429
28418
|
headers: {
|
|
@@ -28596,6 +29585,7 @@ type PostUsersAuthRegisterData = {
|
|
|
28596
29585
|
password: string;
|
|
28597
29586
|
password_confirmation: string;
|
|
28598
29587
|
tenant_name: string;
|
|
29588
|
+
tos_version?: string | unknown;
|
|
28599
29589
|
};
|
|
28600
29590
|
relationships?: {
|
|
28601
29591
|
[key: string]: never;
|
|
@@ -30185,11 +31175,14 @@ type PatchTenantsByIdData = {
|
|
|
30185
31175
|
logo_url?: string | unknown;
|
|
30186
31176
|
name?: string | unknown;
|
|
30187
31177
|
parent_id?: string | unknown;
|
|
30188
|
-
slug?: string | unknown;
|
|
30189
31178
|
/**
|
|
30190
31179
|
* Cost in credits for training on a single document
|
|
30191
31180
|
*/
|
|
30192
31181
|
training_price_credits?: number | unknown;
|
|
31182
|
+
/**
|
|
31183
|
+
* Optional user-facing slug for vanity URLs
|
|
31184
|
+
*/
|
|
31185
|
+
vanity_slug?: string | unknown;
|
|
30193
31186
|
};
|
|
30194
31187
|
id: string;
|
|
30195
31188
|
relationships?: {
|
|
@@ -30829,7 +31822,7 @@ type PatchExtractionResultsByIdSaveCorrectionsResponses = {
|
|
|
30829
31822
|
};
|
|
30830
31823
|
};
|
|
30831
31824
|
type PatchExtractionResultsByIdSaveCorrectionsResponse = PatchExtractionResultsByIdSaveCorrectionsResponses[keyof PatchExtractionResultsByIdSaveCorrectionsResponses];
|
|
30832
|
-
type
|
|
31825
|
+
type GetConsentRecordsData = {
|
|
30833
31826
|
body?: never;
|
|
30834
31827
|
headers: {
|
|
30835
31828
|
/**
|
|
@@ -30838,7 +31831,7 @@ type GetAuditLogsActivityData = {
|
|
|
30838
31831
|
"x-application-key": string;
|
|
30839
31832
|
};
|
|
30840
31833
|
path?: never;
|
|
30841
|
-
query
|
|
31834
|
+
query?: {
|
|
30842
31835
|
/**
|
|
30843
31836
|
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
30844
31837
|
*/
|
|
@@ -30849,6 +31842,12 @@ type GetAuditLogsActivityData = {
|
|
|
30849
31842
|
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
30850
31843
|
*/
|
|
30851
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
|
+
};
|
|
30852
31851
|
/**
|
|
30853
31852
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
30854
31853
|
*/
|
|
@@ -30859,15 +31858,10 @@ type GetAuditLogsActivityData = {
|
|
|
30859
31858
|
fields?: {
|
|
30860
31859
|
[key: string]: unknown;
|
|
30861
31860
|
};
|
|
30862
|
-
tenant_id: string;
|
|
30863
|
-
workspace_id?: string;
|
|
30864
|
-
activity_type?: string;
|
|
30865
|
-
limit?: number;
|
|
30866
|
-
offset?: number;
|
|
30867
31861
|
};
|
|
30868
|
-
url: "/
|
|
31862
|
+
url: "/consent-records";
|
|
30869
31863
|
};
|
|
30870
|
-
type
|
|
31864
|
+
type GetConsentRecordsErrors = {
|
|
30871
31865
|
/**
|
|
30872
31866
|
* Bad Request - Invalid input data or malformed request
|
|
30873
31867
|
*/
|
|
@@ -30897,36 +31891,43 @@ type GetAuditLogsActivityErrors = {
|
|
|
30897
31891
|
*/
|
|
30898
31892
|
default: Errors;
|
|
30899
31893
|
};
|
|
30900
|
-
type
|
|
30901
|
-
type
|
|
31894
|
+
type GetConsentRecordsError = GetConsentRecordsErrors[keyof GetConsentRecordsErrors];
|
|
31895
|
+
type GetConsentRecordsResponses = {
|
|
30902
31896
|
/**
|
|
30903
31897
|
* Success
|
|
30904
31898
|
*/
|
|
30905
31899
|
200: {
|
|
30906
31900
|
/**
|
|
30907
|
-
* An array of resource objects representing a
|
|
31901
|
+
* An array of resource objects representing a consent_record
|
|
30908
31902
|
*/
|
|
30909
|
-
data?: Array<
|
|
31903
|
+
data?: Array<ConsentRecord>;
|
|
30910
31904
|
included?: Array<unknown>;
|
|
30911
31905
|
meta?: {
|
|
30912
31906
|
[key: string]: unknown;
|
|
30913
31907
|
};
|
|
30914
31908
|
};
|
|
30915
31909
|
};
|
|
30916
|
-
type
|
|
30917
|
-
type
|
|
31910
|
+
type GetConsentRecordsResponse = GetConsentRecordsResponses[keyof GetConsentRecordsResponses];
|
|
31911
|
+
type PostConsentRecordsData = {
|
|
30918
31912
|
/**
|
|
30919
|
-
* Request body for the /
|
|
31913
|
+
* Request body for the /consent-records operation on consent_record resource
|
|
30920
31914
|
*/
|
|
30921
31915
|
body: {
|
|
30922
31916
|
data: {
|
|
30923
31917
|
attributes?: {
|
|
30924
|
-
|
|
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;
|
|
30925
31926
|
};
|
|
30926
31927
|
relationships?: {
|
|
30927
31928
|
[key: string]: never;
|
|
30928
31929
|
};
|
|
30929
|
-
type?: "
|
|
31930
|
+
type?: "consent_record";
|
|
30930
31931
|
};
|
|
30931
31932
|
};
|
|
30932
31933
|
headers: {
|
|
@@ -30948,9 +31949,9 @@ type PostUsersAuthResendConfirmationData = {
|
|
|
30948
31949
|
[key: string]: unknown;
|
|
30949
31950
|
};
|
|
30950
31951
|
};
|
|
30951
|
-
url: "/
|
|
31952
|
+
url: "/consent-records";
|
|
30952
31953
|
};
|
|
30953
|
-
type
|
|
31954
|
+
type PostConsentRecordsErrors = {
|
|
30954
31955
|
/**
|
|
30955
31956
|
* Bad Request - Invalid input data or malformed request
|
|
30956
31957
|
*/
|
|
@@ -30980,21 +31981,21 @@ type PostUsersAuthResendConfirmationErrors = {
|
|
|
30980
31981
|
*/
|
|
30981
31982
|
default: Errors;
|
|
30982
31983
|
};
|
|
30983
|
-
type
|
|
30984
|
-
type
|
|
31984
|
+
type PostConsentRecordsError = PostConsentRecordsErrors[keyof PostConsentRecordsErrors];
|
|
31985
|
+
type PostConsentRecordsResponses = {
|
|
30985
31986
|
/**
|
|
30986
31987
|
* Success
|
|
30987
31988
|
*/
|
|
30988
31989
|
201: {
|
|
30989
|
-
data?:
|
|
31990
|
+
data?: ConsentRecord;
|
|
30990
31991
|
included?: Array<unknown>;
|
|
30991
31992
|
meta?: {
|
|
30992
31993
|
[key: string]: unknown;
|
|
30993
31994
|
};
|
|
30994
31995
|
};
|
|
30995
31996
|
};
|
|
30996
|
-
type
|
|
30997
|
-
type
|
|
31997
|
+
type PostConsentRecordsResponse = PostConsentRecordsResponses[keyof PostConsentRecordsResponses];
|
|
31998
|
+
type GetAuditLogsActivityData = {
|
|
30998
31999
|
body?: never;
|
|
30999
32000
|
headers: {
|
|
31000
32001
|
/**
|
|
@@ -31024,97 +32025,15 @@ type GetWorkspacesAnalyticsBatchData = {
|
|
|
31024
32025
|
fields?: {
|
|
31025
32026
|
[key: string]: unknown;
|
|
31026
32027
|
};
|
|
31027
|
-
|
|
31028
|
-
|
|
31029
|
-
|
|
31030
|
-
|
|
31031
|
-
|
|
31032
|
-
/**
|
|
31033
|
-
* Bad Request - Invalid input data or malformed request
|
|
31034
|
-
*/
|
|
31035
|
-
400: ErrorResponse;
|
|
31036
|
-
/**
|
|
31037
|
-
* Unauthorized - Missing or invalid authentication token
|
|
31038
|
-
*/
|
|
31039
|
-
401: ErrorResponse;
|
|
31040
|
-
/**
|
|
31041
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
31042
|
-
*/
|
|
31043
|
-
403: ErrorResponse;
|
|
31044
|
-
/**
|
|
31045
|
-
* Not Found - Resource does not exist
|
|
31046
|
-
*/
|
|
31047
|
-
404: ErrorResponse;
|
|
31048
|
-
/**
|
|
31049
|
-
* Too Many Requests - Rate limit exceeded
|
|
31050
|
-
*/
|
|
31051
|
-
429: ErrorResponse;
|
|
31052
|
-
/**
|
|
31053
|
-
* Internal Server Error - Unexpected server error
|
|
31054
|
-
*/
|
|
31055
|
-
500: ErrorResponse;
|
|
31056
|
-
/**
|
|
31057
|
-
* General Error
|
|
31058
|
-
*/
|
|
31059
|
-
default: Errors;
|
|
31060
|
-
};
|
|
31061
|
-
type GetWorkspacesAnalyticsBatchError = GetWorkspacesAnalyticsBatchErrors[keyof GetWorkspacesAnalyticsBatchErrors];
|
|
31062
|
-
type GetWorkspacesAnalyticsBatchResponses = {
|
|
31063
|
-
/**
|
|
31064
|
-
* Success
|
|
31065
|
-
*/
|
|
31066
|
-
200: {
|
|
31067
|
-
/**
|
|
31068
|
-
* An array of resource objects representing a training_analytics
|
|
31069
|
-
*/
|
|
31070
|
-
data?: Array<TrainingAnalytics>;
|
|
31071
|
-
included?: Array<unknown>;
|
|
31072
|
-
meta?: {
|
|
31073
|
-
[key: string]: unknown;
|
|
31074
|
-
};
|
|
31075
|
-
};
|
|
31076
|
-
};
|
|
31077
|
-
type GetWorkspacesAnalyticsBatchResponse = GetWorkspacesAnalyticsBatchResponses[keyof GetWorkspacesAnalyticsBatchResponses];
|
|
31078
|
-
type GetAiMessagesData = {
|
|
31079
|
-
body?: never;
|
|
31080
|
-
headers: {
|
|
31081
|
-
/**
|
|
31082
|
-
* Application ID for authentication and routing
|
|
31083
|
-
*/
|
|
31084
|
-
"x-application-key": string;
|
|
31085
|
-
};
|
|
31086
|
-
path?: never;
|
|
31087
|
-
query?: {
|
|
31088
|
-
/**
|
|
31089
|
-
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
31090
|
-
*/
|
|
31091
|
-
filter?: {
|
|
31092
|
-
[key: string]: unknown;
|
|
31093
|
-
};
|
|
31094
|
-
/**
|
|
31095
|
-
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
31096
|
-
*/
|
|
31097
|
-
sort?: string;
|
|
31098
|
-
/**
|
|
31099
|
-
* JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
|
|
31100
|
-
*/
|
|
31101
|
-
page?: {
|
|
31102
|
-
[key: string]: unknown;
|
|
31103
|
-
};
|
|
31104
|
-
/**
|
|
31105
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
31106
|
-
*/
|
|
31107
|
-
include?: string;
|
|
31108
|
-
/**
|
|
31109
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
31110
|
-
*/
|
|
31111
|
-
fields?: {
|
|
31112
|
-
[key: string]: unknown;
|
|
31113
|
-
};
|
|
32028
|
+
tenant_id: string;
|
|
32029
|
+
workspace_id?: string;
|
|
32030
|
+
activity_type?: string;
|
|
32031
|
+
limit?: number;
|
|
32032
|
+
offset?: number;
|
|
31114
32033
|
};
|
|
31115
|
-
url: "/
|
|
32034
|
+
url: "/audit-logs/activity";
|
|
31116
32035
|
};
|
|
31117
|
-
type
|
|
32036
|
+
type GetAuditLogsActivityErrors = {
|
|
31118
32037
|
/**
|
|
31119
32038
|
* Bad Request - Invalid input data or malformed request
|
|
31120
32039
|
*/
|
|
@@ -31144,38 +32063,36 @@ type GetAiMessagesErrors = {
|
|
|
31144
32063
|
*/
|
|
31145
32064
|
default: Errors;
|
|
31146
32065
|
};
|
|
31147
|
-
type
|
|
31148
|
-
type
|
|
32066
|
+
type GetAuditLogsActivityError = GetAuditLogsActivityErrors[keyof GetAuditLogsActivityErrors];
|
|
32067
|
+
type GetAuditLogsActivityResponses = {
|
|
31149
32068
|
/**
|
|
31150
32069
|
* Success
|
|
31151
32070
|
*/
|
|
31152
32071
|
200: {
|
|
31153
32072
|
/**
|
|
31154
|
-
* An array of resource objects representing a
|
|
32073
|
+
* An array of resource objects representing a audit-log
|
|
31155
32074
|
*/
|
|
31156
|
-
data?: Array<
|
|
32075
|
+
data?: Array<AuditLog>;
|
|
31157
32076
|
included?: Array<unknown>;
|
|
31158
32077
|
meta?: {
|
|
31159
32078
|
[key: string]: unknown;
|
|
31160
32079
|
};
|
|
31161
32080
|
};
|
|
31162
32081
|
};
|
|
31163
|
-
type
|
|
31164
|
-
type
|
|
32082
|
+
type GetAuditLogsActivityResponse = GetAuditLogsActivityResponses[keyof GetAuditLogsActivityResponses];
|
|
32083
|
+
type PostUsersAuthResendConfirmationData = {
|
|
31165
32084
|
/**
|
|
31166
|
-
* Request body for the /
|
|
32085
|
+
* Request body for the /users/auth/resend-confirmation operation on user resource
|
|
31167
32086
|
*/
|
|
31168
32087
|
body: {
|
|
31169
32088
|
data: {
|
|
31170
32089
|
attributes?: {
|
|
31171
|
-
|
|
31172
|
-
conversation_id: string;
|
|
31173
|
-
role: "system" | "user" | "assistant";
|
|
32090
|
+
email: string;
|
|
31174
32091
|
};
|
|
31175
32092
|
relationships?: {
|
|
31176
32093
|
[key: string]: never;
|
|
31177
32094
|
};
|
|
31178
|
-
type?: "
|
|
32095
|
+
type?: "user";
|
|
31179
32096
|
};
|
|
31180
32097
|
};
|
|
31181
32098
|
headers: {
|
|
@@ -31197,9 +32114,9 @@ type PostAiMessagesData = {
|
|
|
31197
32114
|
[key: string]: unknown;
|
|
31198
32115
|
};
|
|
31199
32116
|
};
|
|
31200
|
-
url: "/
|
|
32117
|
+
url: "/users/auth/resend-confirmation";
|
|
31201
32118
|
};
|
|
31202
|
-
type
|
|
32119
|
+
type PostUsersAuthResendConfirmationErrors = {
|
|
31203
32120
|
/**
|
|
31204
32121
|
* Bad Request - Invalid input data or malformed request
|
|
31205
32122
|
*/
|
|
@@ -31229,21 +32146,21 @@ type PostAiMessagesErrors = {
|
|
|
31229
32146
|
*/
|
|
31230
32147
|
default: Errors;
|
|
31231
32148
|
};
|
|
31232
|
-
type
|
|
31233
|
-
type
|
|
32149
|
+
type PostUsersAuthResendConfirmationError = PostUsersAuthResendConfirmationErrors[keyof PostUsersAuthResendConfirmationErrors];
|
|
32150
|
+
type PostUsersAuthResendConfirmationResponses = {
|
|
31234
32151
|
/**
|
|
31235
32152
|
* Success
|
|
31236
32153
|
*/
|
|
31237
32154
|
201: {
|
|
31238
|
-
data?:
|
|
32155
|
+
data?: User;
|
|
31239
32156
|
included?: Array<unknown>;
|
|
31240
32157
|
meta?: {
|
|
31241
32158
|
[key: string]: unknown;
|
|
31242
32159
|
};
|
|
31243
32160
|
};
|
|
31244
32161
|
};
|
|
31245
|
-
type
|
|
31246
|
-
type
|
|
32162
|
+
type PostUsersAuthResendConfirmationResponse = PostUsersAuthResendConfirmationResponses[keyof PostUsersAuthResendConfirmationResponses];
|
|
32163
|
+
type GetWorkspacesAnalyticsBatchData = {
|
|
31247
32164
|
body?: never;
|
|
31248
32165
|
headers: {
|
|
31249
32166
|
/**
|
|
@@ -31263,12 +32180,6 @@ type GetWatcherEventsData = {
|
|
|
31263
32180
|
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
31264
32181
|
*/
|
|
31265
32182
|
sort?: string;
|
|
31266
|
-
/**
|
|
31267
|
-
* JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
|
|
31268
|
-
*/
|
|
31269
|
-
page?: {
|
|
31270
|
-
[key: string]: unknown;
|
|
31271
|
-
};
|
|
31272
32183
|
/**
|
|
31273
32184
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
31274
32185
|
*/
|
|
@@ -31279,14 +32190,269 @@ type GetWatcherEventsData = {
|
|
|
31279
32190
|
fields?: {
|
|
31280
32191
|
[key: string]: unknown;
|
|
31281
32192
|
};
|
|
31282
|
-
|
|
31283
|
-
event_type?: Array<string>;
|
|
31284
|
-
machine_id?: string;
|
|
31285
|
-
since?: unknown;
|
|
32193
|
+
workspace_ids: string;
|
|
31286
32194
|
};
|
|
31287
|
-
url: "/
|
|
32195
|
+
url: "/workspaces/analytics-batch";
|
|
31288
32196
|
};
|
|
31289
|
-
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 = {
|
|
31290
32456
|
/**
|
|
31291
32457
|
* Bad Request - Invalid input data or malformed request
|
|
31292
32458
|
*/
|
|
@@ -31730,21 +32896,414 @@ type PatchConfigsByKeyErrors = {
|
|
|
31730
32896
|
*/
|
|
31731
32897
|
default: Errors;
|
|
31732
32898
|
};
|
|
31733
|
-
type PatchConfigsByKeyError = PatchConfigsByKeyErrors[keyof PatchConfigsByKeyErrors];
|
|
31734
|
-
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 = {
|
|
31735
33294
|
/**
|
|
31736
33295
|
* Success
|
|
31737
33296
|
*/
|
|
31738
|
-
|
|
31739
|
-
data?:
|
|
31740
|
-
included?: Array<
|
|
33297
|
+
201: {
|
|
33298
|
+
data?: Agent;
|
|
33299
|
+
included?: Array<AgentVersion>;
|
|
31741
33300
|
meta?: {
|
|
31742
33301
|
[key: string]: unknown;
|
|
31743
33302
|
};
|
|
31744
33303
|
};
|
|
31745
33304
|
};
|
|
31746
|
-
type
|
|
31747
|
-
type
|
|
33305
|
+
type PostAgentsByIdCloneResponse = PostAgentsByIdCloneResponses[keyof PostAgentsByIdCloneResponses];
|
|
33306
|
+
type GetLegalDocumentsData = {
|
|
31748
33307
|
body?: never;
|
|
31749
33308
|
headers: {
|
|
31750
33309
|
/**
|
|
@@ -31764,6 +33323,12 @@ type GetExtractionResultsData = {
|
|
|
31764
33323
|
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
31765
33324
|
*/
|
|
31766
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
|
+
};
|
|
31767
33332
|
/**
|
|
31768
33333
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
31769
33334
|
*/
|
|
@@ -31775,9 +33340,9 @@ type GetExtractionResultsData = {
|
|
|
31775
33340
|
[key: string]: unknown;
|
|
31776
33341
|
};
|
|
31777
33342
|
};
|
|
31778
|
-
url: "/
|
|
33343
|
+
url: "/legal-documents";
|
|
31779
33344
|
};
|
|
31780
|
-
type
|
|
33345
|
+
type GetLegalDocumentsErrors = {
|
|
31781
33346
|
/**
|
|
31782
33347
|
* Bad Request - Invalid input data or malformed request
|
|
31783
33348
|
*/
|
|
@@ -31807,36 +33372,52 @@ type GetExtractionResultsErrors = {
|
|
|
31807
33372
|
*/
|
|
31808
33373
|
default: Errors;
|
|
31809
33374
|
};
|
|
31810
|
-
type
|
|
31811
|
-
type
|
|
33375
|
+
type GetLegalDocumentsError = GetLegalDocumentsErrors[keyof GetLegalDocumentsErrors];
|
|
33376
|
+
type GetLegalDocumentsResponses = {
|
|
31812
33377
|
/**
|
|
31813
33378
|
* Success
|
|
31814
33379
|
*/
|
|
31815
33380
|
200: {
|
|
31816
33381
|
/**
|
|
31817
|
-
* An array of resource objects representing a
|
|
33382
|
+
* An array of resource objects representing a legal_document
|
|
31818
33383
|
*/
|
|
31819
|
-
data?: Array<
|
|
33384
|
+
data?: Array<LegalDocument>;
|
|
31820
33385
|
included?: Array<unknown>;
|
|
31821
33386
|
meta?: {
|
|
31822
33387
|
[key: string]: unknown;
|
|
31823
33388
|
};
|
|
31824
33389
|
};
|
|
31825
33390
|
};
|
|
31826
|
-
type
|
|
31827
|
-
type
|
|
33391
|
+
type GetLegalDocumentsResponse = GetLegalDocumentsResponses[keyof GetLegalDocumentsResponses];
|
|
33392
|
+
type PostLegalDocumentsData = {
|
|
31828
33393
|
/**
|
|
31829
|
-
* Request body for the /
|
|
33394
|
+
* Request body for the /legal-documents operation on legal_document resource
|
|
31830
33395
|
*/
|
|
31831
33396
|
body: {
|
|
31832
33397
|
data: {
|
|
31833
33398
|
attributes?: {
|
|
31834
|
-
|
|
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;
|
|
31835
33416
|
};
|
|
31836
33417
|
relationships?: {
|
|
31837
33418
|
[key: string]: never;
|
|
31838
33419
|
};
|
|
31839
|
-
type?: "
|
|
33420
|
+
type?: "legal_document";
|
|
31840
33421
|
};
|
|
31841
33422
|
};
|
|
31842
33423
|
headers: {
|
|
@@ -31845,12 +33426,7 @@ type PostAgentsByIdCloneData = {
|
|
|
31845
33426
|
*/
|
|
31846
33427
|
"x-application-key": string;
|
|
31847
33428
|
};
|
|
31848
|
-
path
|
|
31849
|
-
/**
|
|
31850
|
-
* Agent ID (from URL path parameter)
|
|
31851
|
-
*/
|
|
31852
|
-
id: string;
|
|
31853
|
-
};
|
|
33429
|
+
path?: never;
|
|
31854
33430
|
query?: {
|
|
31855
33431
|
/**
|
|
31856
33432
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -31863,9 +33439,9 @@ type PostAgentsByIdCloneData = {
|
|
|
31863
33439
|
[key: string]: unknown;
|
|
31864
33440
|
};
|
|
31865
33441
|
};
|
|
31866
|
-
url: "/
|
|
33442
|
+
url: "/legal-documents";
|
|
31867
33443
|
};
|
|
31868
|
-
type
|
|
33444
|
+
type PostLegalDocumentsErrors = {
|
|
31869
33445
|
/**
|
|
31870
33446
|
* Bad Request - Invalid input data or malformed request
|
|
31871
33447
|
*/
|
|
@@ -31895,20 +33471,20 @@ type PostAgentsByIdCloneErrors = {
|
|
|
31895
33471
|
*/
|
|
31896
33472
|
default: Errors;
|
|
31897
33473
|
};
|
|
31898
|
-
type
|
|
31899
|
-
type
|
|
33474
|
+
type PostLegalDocumentsError = PostLegalDocumentsErrors[keyof PostLegalDocumentsErrors];
|
|
33475
|
+
type PostLegalDocumentsResponses = {
|
|
31900
33476
|
/**
|
|
31901
33477
|
* Success
|
|
31902
33478
|
*/
|
|
31903
33479
|
201: {
|
|
31904
|
-
data?:
|
|
31905
|
-
included?: Array<
|
|
33480
|
+
data?: LegalDocument;
|
|
33481
|
+
included?: Array<unknown>;
|
|
31906
33482
|
meta?: {
|
|
31907
33483
|
[key: string]: unknown;
|
|
31908
33484
|
};
|
|
31909
33485
|
};
|
|
31910
33486
|
};
|
|
31911
|
-
type
|
|
33487
|
+
type PostLegalDocumentsResponse = PostLegalDocumentsResponses[keyof PostLegalDocumentsResponses];
|
|
31912
33488
|
type DeleteAiConversationsByIdData = {
|
|
31913
33489
|
body?: never;
|
|
31914
33490
|
headers: {
|
|
@@ -32264,6 +33840,87 @@ type GetAgentVersionsByIdRevisionsResponses = {
|
|
|
32264
33840
|
*/
|
|
32265
33841
|
200: unknown;
|
|
32266
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];
|
|
32267
33924
|
type PostSearchBatchData = {
|
|
32268
33925
|
/**
|
|
32269
33926
|
* Request body for the /search/batch operation on search resource
|
|
@@ -36430,7 +38087,7 @@ declare const getExtractionBatchesWorkspaceByWorkspaceId: <ThrowOnError extends
|
|
|
36430
38087
|
/**
|
|
36431
38088
|
* Update accept tos
|
|
36432
38089
|
*
|
|
36433
|
-
* Accept Terms of Service
|
|
38090
|
+
* Accept Terms of Service — creates immutable LegalAcceptance audit record
|
|
36434
38091
|
*/
|
|
36435
38092
|
declare const patchUserProfilesByIdAcceptTos: <ThrowOnError extends boolean = false>(options: Options<PatchUserProfilesByIdAcceptTosData, ThrowOnError>) => RequestResult<PatchUserProfilesByIdAcceptTosResponses, PatchUserProfilesByIdAcceptTosErrors, ThrowOnError, "fields">;
|
|
36436
38093
|
/**
|
|
@@ -36645,6 +38302,16 @@ declare const deleteSearchSavedById: <ThrowOnError extends boolean = false>(opti
|
|
|
36645
38302
|
*
|
|
36646
38303
|
*/
|
|
36647
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">;
|
|
36648
38315
|
/**
|
|
36649
38316
|
* Update email
|
|
36650
38317
|
*
|
|
@@ -36945,6 +38612,16 @@ declare const patchAgentsByIdSchemaVersionsByVersionId: <ThrowOnError extends bo
|
|
|
36945
38612
|
*
|
|
36946
38613
|
*/
|
|
36947
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">;
|
|
36948
38625
|
/**
|
|
36949
38626
|
* Get upload urls
|
|
36950
38627
|
*
|
|
@@ -37231,6 +38908,16 @@ declare const getUsersByEmail: <ThrowOnError extends boolean = false>(options: O
|
|
|
37231
38908
|
*
|
|
37232
38909
|
*/
|
|
37233
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">;
|
|
37234
38921
|
/**
|
|
37235
38922
|
* Get sessions
|
|
37236
38923
|
*
|
|
@@ -37241,6 +38928,16 @@ declare const patchExtractionDocumentsByIdFinishUpload: <ThrowOnError extends bo
|
|
|
37241
38928
|
*
|
|
37242
38929
|
*/
|
|
37243
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">;
|
|
37244
38941
|
/**
|
|
37245
38942
|
* List stats
|
|
37246
38943
|
*
|
|
@@ -37373,6 +39070,16 @@ declare const getNotificationPreferences: <ThrowOnError extends boolean = false>
|
|
|
37373
39070
|
*
|
|
37374
39071
|
*/
|
|
37375
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">;
|
|
37376
39083
|
/**
|
|
37377
39084
|
* Update retry
|
|
37378
39085
|
*
|
|
@@ -38147,6 +39854,16 @@ declare const postAiSearch: <ThrowOnError extends boolean = false>(options: Opti
|
|
|
38147
39854
|
*
|
|
38148
39855
|
*/
|
|
38149
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">;
|
|
38150
39867
|
/**
|
|
38151
39868
|
* List shared
|
|
38152
39869
|
*
|
|
@@ -38243,6 +39960,16 @@ declare const patchUsersByIdConfirmEmail: <ThrowOnError extends boolean = false>
|
|
|
38243
39960
|
*
|
|
38244
39961
|
*/
|
|
38245
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">;
|
|
38246
39973
|
/**
|
|
38247
39974
|
* Create run
|
|
38248
39975
|
*
|
|
@@ -38335,6 +40062,16 @@ declare const postWebhookDeliveriesBulkRetry: <ThrowOnError extends boolean = fa
|
|
|
38335
40062
|
*
|
|
38336
40063
|
*/
|
|
38337
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">;
|
|
38338
40075
|
/**
|
|
38339
40076
|
* Update grant credits
|
|
38340
40077
|
*
|
|
@@ -38413,6 +40150,16 @@ declare const postUsersAuthLogin: <ThrowOnError extends boolean = false>(options
|
|
|
38413
40150
|
*
|
|
38414
40151
|
*/
|
|
38415
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">;
|
|
38416
40163
|
/**
|
|
38417
40164
|
* Create agent version comparisons
|
|
38418
40165
|
*
|
|
@@ -38441,6 +40188,12 @@ declare const getWorkspacesMine: <ThrowOnError extends boolean = false>(options:
|
|
|
38441
40188
|
* Create an ISV tenant with initial credits
|
|
38442
40189
|
*/
|
|
38443
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">;
|
|
38444
40197
|
/**
|
|
38445
40198
|
* Create register with oidc
|
|
38446
40199
|
*
|
|
@@ -38841,6 +40594,26 @@ declare const getApiKeysActive: <ThrowOnError extends boolean = false>(options:
|
|
|
38841
40594
|
*
|
|
38842
40595
|
*/
|
|
38843
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">;
|
|
38844
40617
|
/**
|
|
38845
40618
|
* List activity
|
|
38846
40619
|
*
|
|
@@ -38937,6 +40710,36 @@ declare const postThreadsByIdSummarize: <ThrowOnError extends boolean = false>(o
|
|
|
38937
40710
|
*
|
|
38938
40711
|
*/
|
|
38939
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">;
|
|
38940
40743
|
/**
|
|
38941
40744
|
* List results
|
|
38942
40745
|
*
|
|
@@ -38953,6 +40756,26 @@ declare const getExtractionResults: <ThrowOnError extends boolean = false>(optio
|
|
|
38953
40756
|
* Clone the agent to a new one with a new name
|
|
38954
40757
|
*/
|
|
38955
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">;
|
|
38956
40779
|
/**
|
|
38957
40780
|
* Delete conversations
|
|
38958
40781
|
*
|
|
@@ -39003,6 +40826,12 @@ declare const getInvitationsMe: <ThrowOnError extends boolean = false>(options:
|
|
|
39003
40826
|
*
|
|
39004
40827
|
*/
|
|
39005
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">;
|
|
39006
40835
|
/**
|
|
39007
40836
|
* Create batch
|
|
39008
40837
|
*
|
|
@@ -39816,6 +41645,7 @@ declare const gptCore: {
|
|
|
39816
41645
|
postAgentsByIdPublishVersion: <ThrowOnError extends boolean = false>(options: Options<PostAgentsByIdPublishVersionData, ThrowOnError>) => RequestResult<PostAgentsByIdPublishVersionResponses, PostAgentsByIdPublishVersionErrors, ThrowOnError, "fields">;
|
|
39817
41646
|
deleteSearchSavedById: <ThrowOnError extends boolean = false>(options: Options<DeleteSearchSavedByIdData, ThrowOnError>) => RequestResult<DeleteSearchSavedByIdResponses, DeleteSearchSavedByIdErrors, ThrowOnError, "fields">;
|
|
39818
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">;
|
|
39819
41649
|
patchUsersByIdAdminEmail: <ThrowOnError extends boolean = false>(options: Options<PatchUsersByIdAdminEmailData, ThrowOnError>) => RequestResult<PatchUsersByIdAdminEmailResponses, PatchUsersByIdAdminEmailErrors, ThrowOnError, "fields">;
|
|
39820
41650
|
postUsersAuthMagicLinkLogin: <ThrowOnError extends boolean = false>(options: Options<PostUsersAuthMagicLinkLoginData, ThrowOnError>) => RequestResult<PostUsersAuthMagicLinkLoginResponses, PostUsersAuthMagicLinkLoginErrors, ThrowOnError, "fields">;
|
|
39821
41651
|
getExtractionDocumentsWorkspaceByWorkspaceIdTrained: <ThrowOnError extends boolean = false>(options: Options<GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedData, ThrowOnError>) => RequestResult<GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponses, GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedErrors, ThrowOnError, "fields">;
|
|
@@ -39850,6 +41680,7 @@ declare const gptCore: {
|
|
|
39850
41680
|
getSearchSuggest: <ThrowOnError extends boolean = false>(options: Options<GetSearchSuggestData, ThrowOnError>) => RequestResult<GetSearchSuggestResponses, GetSearchSuggestErrors, ThrowOnError, "fields">;
|
|
39851
41681
|
patchAgentsByIdSchemaVersionsByVersionId: <ThrowOnError extends boolean = false>(options: Options<PatchAgentsByIdSchemaVersionsByVersionIdData, ThrowOnError>) => RequestResult<PatchAgentsByIdSchemaVersionsByVersionIdResponses, PatchAgentsByIdSchemaVersionsByVersionIdErrors, ThrowOnError, "fields">;
|
|
39852
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">;
|
|
39853
41684
|
getExtractionBatchesByIdUploadUrls: <ThrowOnError extends boolean = false>(options: Options<GetExtractionBatchesByIdUploadUrlsData, ThrowOnError>) => RequestResult<GetExtractionBatchesByIdUploadUrlsResponses, GetExtractionBatchesByIdUploadUrlsErrors, ThrowOnError, "fields">;
|
|
39854
41685
|
postAiChunksSearch: <ThrowOnError extends boolean = false>(options: Options<PostAiChunksSearchData, ThrowOnError>) => RequestResult<PostAiChunksSearchResponses, PostAiChunksSearchErrors, ThrowOnError, "fields">;
|
|
39855
41686
|
postAgentVersionsByIdAddSystemField: <ThrowOnError extends boolean = false>(options: Options<PostAgentVersionsByIdAddSystemFieldData, ThrowOnError>) => RequestResult<PostAgentVersionsByIdAddSystemFieldResponses, PostAgentVersionsByIdAddSystemFieldErrors, ThrowOnError, "fields">;
|
|
@@ -39883,7 +41714,9 @@ declare const gptCore: {
|
|
|
39883
41714
|
getNotificationLogsById: <ThrowOnError extends boolean = false>(options: Options<GetNotificationLogsByIdData, ThrowOnError>) => RequestResult<GetNotificationLogsByIdResponses, GetNotificationLogsByIdErrors, ThrowOnError, "fields">;
|
|
39884
41715
|
getUsersByEmail: <ThrowOnError extends boolean = false>(options: Options<GetUsersByEmailData, ThrowOnError>) => RequestResult<GetUsersByEmailResponses, GetUsersByEmailErrors, ThrowOnError, "fields">;
|
|
39885
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">;
|
|
39886
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">;
|
|
39887
41720
|
getApiKeysStats: <ThrowOnError extends boolean = false>(options: Options<GetApiKeysStatsData, ThrowOnError>) => RequestResult<GetApiKeysStatsResponses, GetApiKeysStatsErrors, ThrowOnError, "fields">;
|
|
39888
41721
|
getSearch: <ThrowOnError extends boolean = false>(options: Options<GetSearchData, ThrowOnError>) => RequestResult<GetSearchResponses, GetSearchErrors, ThrowOnError, "fields">;
|
|
39889
41722
|
postAgentsDiscoverSchema: <ThrowOnError extends boolean = false>(options: Options<PostAgentsDiscoverSchemaData, ThrowOnError>) => RequestResult<PostAgentsDiscoverSchemaResponses, PostAgentsDiscoverSchemaErrors, ThrowOnError, "fields">;
|
|
@@ -39898,6 +41731,7 @@ declare const gptCore: {
|
|
|
39898
41731
|
postApplications: <ThrowOnError extends boolean = false>(options: Options<PostApplicationsData, ThrowOnError>) => RequestResult<PostApplicationsResponses, PostApplicationsErrors, ThrowOnError, "fields">;
|
|
39899
41732
|
getNotificationPreferences: <ThrowOnError extends boolean = false>(options: Options<GetNotificationPreferencesData, ThrowOnError>) => RequestResult<GetNotificationPreferencesResponses, GetNotificationPreferencesErrors, ThrowOnError, "fields">;
|
|
39900
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">;
|
|
39901
41735
|
patchWatcherClaimsByIdRetry: <ThrowOnError extends boolean = false>(options: Options<PatchWatcherClaimsByIdRetryData, ThrowOnError>) => RequestResult<PatchWatcherClaimsByIdRetryResponses, PatchWatcherClaimsByIdRetryErrors, ThrowOnError, "fields">;
|
|
39902
41736
|
postAgentsPredict: <ThrowOnError extends boolean = false>(options: Options<PostAgentsPredictData, ThrowOnError>) => RequestResult<PostAgentsPredictResponses, PostAgentsPredictErrors, ThrowOnError, "fields">;
|
|
39903
41737
|
patchExtractionDocumentsByIdReprocess: <ThrowOnError extends boolean = false>(options: Options<PatchExtractionDocumentsByIdReprocessData, ThrowOnError>) => RequestResult<PatchExtractionDocumentsByIdReprocessResponses, PatchExtractionDocumentsByIdReprocessErrors, ThrowOnError, "fields">;
|
|
@@ -39985,6 +41819,7 @@ declare const gptCore: {
|
|
|
39985
41819
|
postAiConversations: <ThrowOnError extends boolean = false>(options: Options<PostAiConversationsData, ThrowOnError>) => RequestResult<PostAiConversationsResponses, PostAiConversationsErrors, ThrowOnError, "fields">;
|
|
39986
41820
|
postAiSearch: <ThrowOnError extends boolean = false>(options: Options<PostAiSearchData, ThrowOnError>) => RequestResult<PostAiSearchResponses, PostAiSearchErrors, ThrowOnError, "fields">;
|
|
39987
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">;
|
|
39988
41823
|
getWorkspacesShared: <ThrowOnError extends boolean = false>(options: Options<GetWorkspacesSharedData, ThrowOnError>) => RequestResult<GetWorkspacesSharedResponses, GetWorkspacesSharedErrors, ThrowOnError, "fields">;
|
|
39989
41824
|
patchUserProfilesByIdDismissWelcome: <ThrowOnError extends boolean = false>(options: Options<PatchUserProfilesByIdDismissWelcomeData, ThrowOnError>) => RequestResult<PatchUserProfilesByIdDismissWelcomeResponses, PatchUserProfilesByIdDismissWelcomeErrors, ThrowOnError, "fields">;
|
|
39990
41825
|
patchWalletAddonsByAddonSlugCancel: <ThrowOnError extends boolean = false>(options: Options<PatchWalletAddonsByAddonSlugCancelData, ThrowOnError>) => RequestResult<PatchWalletAddonsByAddonSlugCancelResponses, PatchWalletAddonsByAddonSlugCancelErrors, ThrowOnError, "fields">;
|
|
@@ -39997,6 +41832,7 @@ declare const gptCore: {
|
|
|
39997
41832
|
getTransactions: <ThrowOnError extends boolean = false>(options: Options<GetTransactionsData, ThrowOnError>) => RequestResult<GetTransactionsResponses, GetTransactionsErrors, ThrowOnError, "fields">;
|
|
39998
41833
|
patchUsersByIdConfirmEmail: <ThrowOnError extends boolean = false>(options: Options<PatchUsersByIdConfirmEmailData, ThrowOnError>) => RequestResult<PatchUsersByIdConfirmEmailResponses, PatchUsersByIdConfirmEmailErrors, ThrowOnError, "fields">;
|
|
39999
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">;
|
|
40000
41836
|
postSearchSavedByIdRun: <ThrowOnError extends boolean = false>(options: Options<PostSearchSavedByIdRunData, ThrowOnError>) => RequestResult<PostSearchSavedByIdRunResponses, PostSearchSavedByIdRunErrors, ThrowOnError, "fields">;
|
|
40001
41837
|
patchWalletPlan: <ThrowOnError extends boolean = false>(options: Options<PatchWalletPlanData, ThrowOnError>) => RequestResult<PatchWalletPlanResponses, PatchWalletPlanErrors, ThrowOnError, "fields">;
|
|
40002
41838
|
postWebhookConfigsBulkEnable: <ThrowOnError extends boolean = false>(options: Options<PostWebhookConfigsBulkEnableData, ThrowOnError>) => RequestResult<PostWebhookConfigsBulkEnableResponses, PostWebhookConfigsBulkEnableErrors, ThrowOnError, "fields">;
|
|
@@ -40007,6 +41843,7 @@ declare const gptCore: {
|
|
|
40007
41843
|
getPermissions: <ThrowOnError extends boolean = false>(options: Options<GetPermissionsData, ThrowOnError>) => RequestResult<GetPermissionsResponses, GetPermissionsErrors, ThrowOnError, "fields">;
|
|
40008
41844
|
postWebhookDeliveriesBulkRetry: <ThrowOnError extends boolean = false>(options: Options<PostWebhookDeliveriesBulkRetryData, ThrowOnError>) => RequestResult<PostWebhookDeliveriesBulkRetryResponses, PostWebhookDeliveriesBulkRetryErrors, ThrowOnError, "fields">;
|
|
40009
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">;
|
|
40010
41847
|
patchApplicationsByIdGrantCredits: <ThrowOnError extends boolean = false>(options: Options<PatchApplicationsByIdGrantCreditsData, ThrowOnError>) => RequestResult<PatchApplicationsByIdGrantCreditsResponses, PatchApplicationsByIdGrantCreditsErrors, ThrowOnError, "fields">;
|
|
40011
41848
|
getSearchStatus: <ThrowOnError extends boolean = false>(options: Options<GetSearchStatusData, ThrowOnError>) => RequestResult<GetSearchStatusResponses, GetSearchStatusErrors, ThrowOnError, "fields">;
|
|
40012
41849
|
patchUserProfilesByIdDismissAnnouncement: <ThrowOnError extends boolean = false>(options: Options<PatchUserProfilesByIdDismissAnnouncementData, ThrowOnError>) => RequestResult<PatchUserProfilesByIdDismissAnnouncementResponses, PatchUserProfilesByIdDismissAnnouncementErrors, ThrowOnError, "fields">;
|
|
@@ -40016,10 +41853,12 @@ declare const gptCore: {
|
|
|
40016
41853
|
patchWatcherClaimsById: <ThrowOnError extends boolean = false>(options: Options<PatchWatcherClaimsByIdData, ThrowOnError>) => RequestResult<PatchWatcherClaimsByIdResponses, PatchWatcherClaimsByIdErrors, ThrowOnError, "fields">;
|
|
40017
41854
|
postUsersAuthLogin: <ThrowOnError extends boolean = false>(options: Options<PostUsersAuthLoginData, ThrowOnError>) => RequestResult<PostUsersAuthLoginResponses, PostUsersAuthLoginErrors, ThrowOnError, "fields">;
|
|
40018
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">;
|
|
40019
41857
|
postAgentVersionComparisons: <ThrowOnError extends boolean = false>(options: Options<PostAgentVersionComparisonsData, ThrowOnError>) => RequestResult<PostAgentVersionComparisonsResponses, PostAgentVersionComparisonsErrors, ThrowOnError, "fields">;
|
|
40020
41858
|
getExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatus: <ThrowOnError extends boolean = false>(options: Options<GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusData, ThrowOnError>) => RequestResult<GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponses, GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusErrors, ThrowOnError, "fields">;
|
|
40021
41859
|
getWorkspacesMine: <ThrowOnError extends boolean = false>(options: Options<GetWorkspacesMineData, ThrowOnError>) => RequestResult<GetWorkspacesMineResponses, GetWorkspacesMineErrors, ThrowOnError, "fields">;
|
|
40022
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">;
|
|
40023
41862
|
postUsersAuthRegisterWithOidc: <ThrowOnError extends boolean = false>(options: Options<PostUsersAuthRegisterWithOidcData, ThrowOnError>) => RequestResult<PostUsersAuthRegisterWithOidcResponses, PostUsersAuthRegisterWithOidcErrors, ThrowOnError, "fields">;
|
|
40024
41863
|
postSearchReindex: <ThrowOnError extends boolean = false>(options: Options<PostSearchReindexData, ThrowOnError>) => RequestResult<PostSearchReindexResponses, PostSearchReindexErrors, ThrowOnError, "fields">;
|
|
40025
41864
|
patchExtractionResultsByIdRegenerate: <ThrowOnError extends boolean = false>(options: Options<PatchExtractionResultsByIdRegenerateData, ThrowOnError>) => RequestResult<PatchExtractionResultsByIdRegenerateResponses, PatchExtractionResultsByIdRegenerateErrors, ThrowOnError, "fields">;
|
|
@@ -40064,6 +41903,8 @@ declare const gptCore: {
|
|
|
40064
41903
|
patchTenantMembershipsByTenantIdByUserId: <ThrowOnError extends boolean = false>(options: Options<PatchTenantMembershipsByTenantIdByUserIdData, ThrowOnError>) => RequestResult<PatchTenantMembershipsByTenantIdByUserIdResponses, PatchTenantMembershipsByTenantIdByUserIdErrors, ThrowOnError, "fields">;
|
|
40065
41904
|
getApiKeysActive: <ThrowOnError extends boolean = false>(options: Options<GetApiKeysActiveData, ThrowOnError>) => RequestResult<GetApiKeysActiveResponses, GetApiKeysActiveErrors, ThrowOnError, "fields">;
|
|
40066
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">;
|
|
40067
41908
|
getAuditLogsActivity: <ThrowOnError extends boolean = false>(options: Options<GetAuditLogsActivityData, ThrowOnError>) => RequestResult<GetAuditLogsActivityResponses, GetAuditLogsActivityErrors, ThrowOnError, "fields">;
|
|
40068
41909
|
postUsersAuthResendConfirmation: <ThrowOnError extends boolean = false>(options: Options<PostUsersAuthResendConfirmationData, ThrowOnError>) => RequestResult<PostUsersAuthResendConfirmationResponses, PostUsersAuthResendConfirmationErrors, ThrowOnError, "fields">;
|
|
40069
41910
|
getWorkspacesAnalyticsBatch: <ThrowOnError extends boolean = false>(options: Options<GetWorkspacesAnalyticsBatchData, ThrowOnError>) => RequestResult<GetWorkspacesAnalyticsBatchResponses, GetWorkspacesAnalyticsBatchErrors, ThrowOnError, "fields">;
|
|
@@ -40076,13 +41917,19 @@ declare const gptCore: {
|
|
|
40076
41917
|
postAgentVersionsByIdSetSystemFields: <ThrowOnError extends boolean = false>(options: Options<PostAgentVersionsByIdSetSystemFieldsData, ThrowOnError>) => RequestResult<PostAgentVersionsByIdSetSystemFieldsResponses, PostAgentVersionsByIdSetSystemFieldsErrors, ThrowOnError, "fields">;
|
|
40077
41918
|
postThreadsByIdSummarize: <ThrowOnError extends boolean = false>(options: Options<PostThreadsByIdSummarizeData, ThrowOnError>) => RequestResult<PostThreadsByIdSummarizeResponses, PostThreadsByIdSummarizeErrors, ThrowOnError, "fields">;
|
|
40078
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">;
|
|
40079
41923
|
getExtractionResults: <ThrowOnError extends boolean = false>(options: Options<GetExtractionResultsData, ThrowOnError>) => RequestResult<GetExtractionResultsResponses, GetExtractionResultsErrors, ThrowOnError, "fields">;
|
|
40080
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">;
|
|
40081
41927
|
deleteAiConversationsById: <ThrowOnError extends boolean = false>(options: Options<DeleteAiConversationsByIdData, ThrowOnError>) => RequestResult<DeleteAiConversationsByIdResponses, DeleteAiConversationsByIdErrors, ThrowOnError, "fields">;
|
|
40082
41928
|
getAiConversationsById: <ThrowOnError extends boolean = false>(options: Options<GetAiConversationsByIdData, ThrowOnError>) => RequestResult<GetAiConversationsByIdResponses, GetAiConversationsByIdErrors, ThrowOnError, "fields">;
|
|
40083
41929
|
patchAiConversationsById: <ThrowOnError extends boolean = false>(options: Options<PatchAiConversationsByIdData, ThrowOnError>) => RequestResult<PatchAiConversationsByIdResponses, PatchAiConversationsByIdErrors, ThrowOnError, "fields">;
|
|
40084
41930
|
getInvitationsMe: <ThrowOnError extends boolean = false>(options: Options<GetInvitationsMeData, ThrowOnError>) => RequestResult<GetInvitationsMeResponses, GetInvitationsMeErrors, ThrowOnError, "fields">;
|
|
40085
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">;
|
|
40086
41933
|
postSearchBatch: <ThrowOnError extends boolean = false>(options: Options<PostSearchBatchData, ThrowOnError>) => RequestResult<PostSearchBatchResponses, PostSearchBatchErrors, ThrowOnError, "fields">;
|
|
40087
41934
|
getThreadsWorkspaceStats: <ThrowOnError extends boolean = false>(options: Options<GetThreadsWorkspaceStatsData, ThrowOnError>) => RequestResult<GetThreadsWorkspaceStatsResponses, GetThreadsWorkspaceStatsErrors, ThrowOnError, "fields">;
|
|
40088
41935
|
getApiKeys: <ThrowOnError extends boolean = false>(options: Options<GetApiKeysData, ThrowOnError>) => RequestResult<GetApiKeysResponses, GetApiKeysErrors, ThrowOnError, "fields">;
|
|
@@ -40128,4 +41975,4 @@ declare const gptCore: {
|
|
|
40128
41975
|
getObjects: <ThrowOnError extends boolean = false>(options: Options<GetObjectsData, ThrowOnError>) => RequestResult<GetObjectsResponses, GetObjectsErrors, ThrowOnError, "fields">;
|
|
40129
41976
|
};
|
|
40130
41977
|
|
|
40131
|
-
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 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, 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 };
|