@gpt-core/client 0.5.9 → 0.5.92
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 +553 -129
- package/dist/index.d.ts +553 -129
- package/dist/index.js +57 -12
- package/dist/index.mjs +52 -11
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -430,7 +430,30 @@ type Account = {
|
|
|
430
430
|
* An attributes object for a account
|
|
431
431
|
*/
|
|
432
432
|
attributes?: {
|
|
433
|
-
|
|
433
|
+
/**
|
|
434
|
+
* Field included by default.
|
|
435
|
+
*/
|
|
436
|
+
credits: number;
|
|
437
|
+
/**
|
|
438
|
+
* Field included by default.
|
|
439
|
+
*/
|
|
440
|
+
currency: string;
|
|
441
|
+
/**
|
|
442
|
+
* Field included by default.
|
|
443
|
+
*/
|
|
444
|
+
expires_at?: string | null | unknown;
|
|
445
|
+
/**
|
|
446
|
+
* Field included by default.
|
|
447
|
+
*/
|
|
448
|
+
identifier: string;
|
|
449
|
+
/**
|
|
450
|
+
* Field included by default.
|
|
451
|
+
*/
|
|
452
|
+
name?: string | null | unknown;
|
|
453
|
+
/**
|
|
454
|
+
* Field included by default.
|
|
455
|
+
*/
|
|
456
|
+
type: "subscription" | "purchased" | "promotional" | "storage" | "conversational" | "rag" | "isv" | "application" | "treasury";
|
|
434
457
|
};
|
|
435
458
|
id: string;
|
|
436
459
|
/**
|
|
@@ -660,6 +683,18 @@ type Application = {
|
|
|
660
683
|
type: string;
|
|
661
684
|
}>;
|
|
662
685
|
};
|
|
686
|
+
workspaces?: {
|
|
687
|
+
/**
|
|
688
|
+
* Relationship data for workspaces
|
|
689
|
+
*/
|
|
690
|
+
data?: Array<{
|
|
691
|
+
id: string;
|
|
692
|
+
meta?: {
|
|
693
|
+
[key: string]: unknown;
|
|
694
|
+
};
|
|
695
|
+
type: string;
|
|
696
|
+
}>;
|
|
697
|
+
};
|
|
663
698
|
};
|
|
664
699
|
type: string;
|
|
665
700
|
};
|
|
@@ -684,6 +719,14 @@ type ApiKey = {
|
|
|
684
719
|
* The raw API key token. Only returned once upon creation or rotation.
|
|
685
720
|
*/
|
|
686
721
|
generated_api_key?: string | null | unknown;
|
|
722
|
+
/**
|
|
723
|
+
* Field included by default.
|
|
724
|
+
*/
|
|
725
|
+
name?: string | null | unknown;
|
|
726
|
+
/**
|
|
727
|
+
* Field included by default.
|
|
728
|
+
*/
|
|
729
|
+
prefix: string;
|
|
687
730
|
/**
|
|
688
731
|
* Field included by default.
|
|
689
732
|
*/
|
|
@@ -1046,6 +1089,10 @@ type Tenant = {
|
|
|
1046
1089
|
*/
|
|
1047
1090
|
badge_url?: string | null | unknown;
|
|
1048
1091
|
credit_balance?: number | null | unknown;
|
|
1092
|
+
/**
|
|
1093
|
+
* Field included by default.
|
|
1094
|
+
*/
|
|
1095
|
+
initial_credits?: number | null | unknown;
|
|
1049
1096
|
/**
|
|
1050
1097
|
* Field included by default.
|
|
1051
1098
|
*/
|
|
@@ -5202,6 +5249,89 @@ type DeleteSearchSavedByIdResponses = {
|
|
|
5202
5249
|
*/
|
|
5203
5250
|
200: unknown;
|
|
5204
5251
|
};
|
|
5252
|
+
type PatchUsersByIdAdminEmailData = {
|
|
5253
|
+
/**
|
|
5254
|
+
* Request body for the /users/:id/admin/email operation on user resource
|
|
5255
|
+
*/
|
|
5256
|
+
body: {
|
|
5257
|
+
data: {
|
|
5258
|
+
attributes?: {
|
|
5259
|
+
new_email: string;
|
|
5260
|
+
};
|
|
5261
|
+
id: string;
|
|
5262
|
+
relationships?: {
|
|
5263
|
+
[key: string]: never;
|
|
5264
|
+
};
|
|
5265
|
+
type?: "user";
|
|
5266
|
+
};
|
|
5267
|
+
};
|
|
5268
|
+
headers: {
|
|
5269
|
+
/**
|
|
5270
|
+
* Application ID for authentication and routing
|
|
5271
|
+
*/
|
|
5272
|
+
"x-application-key": string;
|
|
5273
|
+
};
|
|
5274
|
+
path: {
|
|
5275
|
+
id: string;
|
|
5276
|
+
};
|
|
5277
|
+
query?: {
|
|
5278
|
+
/**
|
|
5279
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
5280
|
+
*/
|
|
5281
|
+
include?: string;
|
|
5282
|
+
/**
|
|
5283
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
5284
|
+
*/
|
|
5285
|
+
fields?: {
|
|
5286
|
+
[key: string]: unknown;
|
|
5287
|
+
};
|
|
5288
|
+
};
|
|
5289
|
+
url: "/users/{id}/admin/email";
|
|
5290
|
+
};
|
|
5291
|
+
type PatchUsersByIdAdminEmailErrors = {
|
|
5292
|
+
/**
|
|
5293
|
+
* Bad Request - Invalid input data or malformed request
|
|
5294
|
+
*/
|
|
5295
|
+
400: ErrorResponse;
|
|
5296
|
+
/**
|
|
5297
|
+
* Unauthorized - Missing or invalid authentication token
|
|
5298
|
+
*/
|
|
5299
|
+
401: ErrorResponse;
|
|
5300
|
+
/**
|
|
5301
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
5302
|
+
*/
|
|
5303
|
+
403: ErrorResponse;
|
|
5304
|
+
/**
|
|
5305
|
+
* Not Found - Resource does not exist
|
|
5306
|
+
*/
|
|
5307
|
+
404: ErrorResponse;
|
|
5308
|
+
/**
|
|
5309
|
+
* Too Many Requests - Rate limit exceeded
|
|
5310
|
+
*/
|
|
5311
|
+
429: ErrorResponse;
|
|
5312
|
+
/**
|
|
5313
|
+
* Internal Server Error - Unexpected server error
|
|
5314
|
+
*/
|
|
5315
|
+
500: ErrorResponse;
|
|
5316
|
+
/**
|
|
5317
|
+
* General Error
|
|
5318
|
+
*/
|
|
5319
|
+
default: Errors;
|
|
5320
|
+
};
|
|
5321
|
+
type PatchUsersByIdAdminEmailError = PatchUsersByIdAdminEmailErrors[keyof PatchUsersByIdAdminEmailErrors];
|
|
5322
|
+
type PatchUsersByIdAdminEmailResponses = {
|
|
5323
|
+
/**
|
|
5324
|
+
* Success
|
|
5325
|
+
*/
|
|
5326
|
+
200: {
|
|
5327
|
+
data?: User;
|
|
5328
|
+
included?: Array<unknown>;
|
|
5329
|
+
meta?: {
|
|
5330
|
+
[key: string]: unknown;
|
|
5331
|
+
};
|
|
5332
|
+
};
|
|
5333
|
+
};
|
|
5334
|
+
type PatchUsersByIdAdminEmailResponse = PatchUsersByIdAdminEmailResponses[keyof PatchUsersByIdAdminEmailResponses];
|
|
5205
5335
|
type PatchUsersAuthResetPasswordData = {
|
|
5206
5336
|
/**
|
|
5207
5337
|
* Request body for the /users/auth/reset-password operation on user resource
|
|
@@ -6747,89 +6877,6 @@ type GetUsersByIdResponses = {
|
|
|
6747
6877
|
};
|
|
6748
6878
|
};
|
|
6749
6879
|
type GetUsersByIdResponse = GetUsersByIdResponses[keyof GetUsersByIdResponses];
|
|
6750
|
-
type PatchUsersByIdData = {
|
|
6751
|
-
/**
|
|
6752
|
-
* Request body for the /users/:id operation on user resource
|
|
6753
|
-
*/
|
|
6754
|
-
body?: {
|
|
6755
|
-
data: {
|
|
6756
|
-
attributes?: {
|
|
6757
|
-
is_platform_admin?: boolean | unknown;
|
|
6758
|
-
};
|
|
6759
|
-
id: string;
|
|
6760
|
-
relationships?: {
|
|
6761
|
-
[key: string]: never;
|
|
6762
|
-
};
|
|
6763
|
-
type?: "user";
|
|
6764
|
-
};
|
|
6765
|
-
};
|
|
6766
|
-
headers: {
|
|
6767
|
-
/**
|
|
6768
|
-
* Application ID for authentication and routing
|
|
6769
|
-
*/
|
|
6770
|
-
"x-application-key": string;
|
|
6771
|
-
};
|
|
6772
|
-
path: {
|
|
6773
|
-
id: string;
|
|
6774
|
-
};
|
|
6775
|
-
query?: {
|
|
6776
|
-
/**
|
|
6777
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
6778
|
-
*/
|
|
6779
|
-
include?: string;
|
|
6780
|
-
/**
|
|
6781
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
6782
|
-
*/
|
|
6783
|
-
fields?: {
|
|
6784
|
-
[key: string]: unknown;
|
|
6785
|
-
};
|
|
6786
|
-
};
|
|
6787
|
-
url: "/users/{id}";
|
|
6788
|
-
};
|
|
6789
|
-
type PatchUsersByIdErrors = {
|
|
6790
|
-
/**
|
|
6791
|
-
* Bad Request - Invalid input data or malformed request
|
|
6792
|
-
*/
|
|
6793
|
-
400: ErrorResponse;
|
|
6794
|
-
/**
|
|
6795
|
-
* Unauthorized - Missing or invalid authentication token
|
|
6796
|
-
*/
|
|
6797
|
-
401: ErrorResponse;
|
|
6798
|
-
/**
|
|
6799
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
6800
|
-
*/
|
|
6801
|
-
403: ErrorResponse;
|
|
6802
|
-
/**
|
|
6803
|
-
* Not Found - Resource does not exist
|
|
6804
|
-
*/
|
|
6805
|
-
404: ErrorResponse;
|
|
6806
|
-
/**
|
|
6807
|
-
* Too Many Requests - Rate limit exceeded
|
|
6808
|
-
*/
|
|
6809
|
-
429: ErrorResponse;
|
|
6810
|
-
/**
|
|
6811
|
-
* Internal Server Error - Unexpected server error
|
|
6812
|
-
*/
|
|
6813
|
-
500: ErrorResponse;
|
|
6814
|
-
/**
|
|
6815
|
-
* General Error
|
|
6816
|
-
*/
|
|
6817
|
-
default: Errors;
|
|
6818
|
-
};
|
|
6819
|
-
type PatchUsersByIdError = PatchUsersByIdErrors[keyof PatchUsersByIdErrors];
|
|
6820
|
-
type PatchUsersByIdResponses = {
|
|
6821
|
-
/**
|
|
6822
|
-
* Success
|
|
6823
|
-
*/
|
|
6824
|
-
200: {
|
|
6825
|
-
data?: User;
|
|
6826
|
-
included?: Array<unknown>;
|
|
6827
|
-
meta?: {
|
|
6828
|
-
[key: string]: unknown;
|
|
6829
|
-
};
|
|
6830
|
-
};
|
|
6831
|
-
};
|
|
6832
|
-
type PatchUsersByIdResponse = PatchUsersByIdResponses[keyof PatchUsersByIdResponses];
|
|
6833
6880
|
type GetExtractionResultsByIdData = {
|
|
6834
6881
|
body?: never;
|
|
6835
6882
|
headers: {
|
|
@@ -8717,7 +8764,7 @@ type GetApplicationsResponses = {
|
|
|
8717
8764
|
* An array of resource objects representing a application
|
|
8718
8765
|
*/
|
|
8719
8766
|
data?: Array<Application>;
|
|
8720
|
-
included?: Array<Plan | CreditPackage>;
|
|
8767
|
+
included?: Array<Plan | CreditPackage | Workspace>;
|
|
8721
8768
|
meta?: {
|
|
8722
8769
|
[key: string]: unknown;
|
|
8723
8770
|
};
|
|
@@ -8809,7 +8856,7 @@ type PostApplicationsResponses = {
|
|
|
8809
8856
|
*/
|
|
8810
8857
|
201: {
|
|
8811
8858
|
data?: Application;
|
|
8812
|
-
included?: Array<Plan | CreditPackage>;
|
|
8859
|
+
included?: Array<Plan | CreditPackage | Workspace>;
|
|
8813
8860
|
meta?: {
|
|
8814
8861
|
[key: string]: unknown;
|
|
8815
8862
|
};
|
|
@@ -9887,6 +9934,7 @@ type PatchWorkspacesByIdData = {
|
|
|
9887
9934
|
body?: {
|
|
9888
9935
|
data: {
|
|
9889
9936
|
attributes?: {
|
|
9937
|
+
application_id?: string | unknown;
|
|
9890
9938
|
is_default?: boolean | unknown;
|
|
9891
9939
|
low_balance_threshold?: number | unknown;
|
|
9892
9940
|
name?: string | unknown;
|
|
@@ -11665,8 +11713,24 @@ type PostApiKeysResponses = {
|
|
|
11665
11713
|
};
|
|
11666
11714
|
};
|
|
11667
11715
|
type PostApiKeysResponse = PostApiKeysResponses[keyof PostApiKeysResponses];
|
|
11668
|
-
type
|
|
11669
|
-
|
|
11716
|
+
type PatchUsersByIdAdminData = {
|
|
11717
|
+
/**
|
|
11718
|
+
* Request body for the /users/:id/admin operation on user resource
|
|
11719
|
+
*/
|
|
11720
|
+
body?: {
|
|
11721
|
+
data: {
|
|
11722
|
+
attributes?: {
|
|
11723
|
+
is_platform_admin?: boolean | unknown;
|
|
11724
|
+
password?: string | unknown;
|
|
11725
|
+
password_confirmation?: string | unknown;
|
|
11726
|
+
};
|
|
11727
|
+
id: string;
|
|
11728
|
+
relationships?: {
|
|
11729
|
+
[key: string]: never;
|
|
11730
|
+
};
|
|
11731
|
+
type?: "user";
|
|
11732
|
+
};
|
|
11733
|
+
};
|
|
11670
11734
|
headers: {
|
|
11671
11735
|
/**
|
|
11672
11736
|
* Application ID for authentication and routing
|
|
@@ -11688,9 +11752,9 @@ type GetAgentsByIdData = {
|
|
|
11688
11752
|
[key: string]: unknown;
|
|
11689
11753
|
};
|
|
11690
11754
|
};
|
|
11691
|
-
url: "/
|
|
11755
|
+
url: "/users/{id}/admin";
|
|
11692
11756
|
};
|
|
11693
|
-
type
|
|
11757
|
+
type PatchUsersByIdAdminErrors = {
|
|
11694
11758
|
/**
|
|
11695
11759
|
* Bad Request - Invalid input data or malformed request
|
|
11696
11760
|
*/
|
|
@@ -11720,21 +11784,21 @@ type GetAgentsByIdErrors = {
|
|
|
11720
11784
|
*/
|
|
11721
11785
|
default: Errors;
|
|
11722
11786
|
};
|
|
11723
|
-
type
|
|
11724
|
-
type
|
|
11787
|
+
type PatchUsersByIdAdminError = PatchUsersByIdAdminErrors[keyof PatchUsersByIdAdminErrors];
|
|
11788
|
+
type PatchUsersByIdAdminResponses = {
|
|
11725
11789
|
/**
|
|
11726
11790
|
* Success
|
|
11727
11791
|
*/
|
|
11728
11792
|
200: {
|
|
11729
|
-
data?:
|
|
11793
|
+
data?: User;
|
|
11730
11794
|
included?: Array<unknown>;
|
|
11731
11795
|
meta?: {
|
|
11732
11796
|
[key: string]: unknown;
|
|
11733
11797
|
};
|
|
11734
11798
|
};
|
|
11735
11799
|
};
|
|
11736
|
-
type
|
|
11737
|
-
type
|
|
11800
|
+
type PatchUsersByIdAdminResponse = PatchUsersByIdAdminResponses[keyof PatchUsersByIdAdminResponses];
|
|
11801
|
+
type DeleteAgentsByIdData = {
|
|
11738
11802
|
body?: never;
|
|
11739
11803
|
headers: {
|
|
11740
11804
|
/**
|
|
@@ -11757,9 +11821,9 @@ type DeleteApiKeysByIdData = {
|
|
|
11757
11821
|
[key: string]: unknown;
|
|
11758
11822
|
};
|
|
11759
11823
|
};
|
|
11760
|
-
url: "/
|
|
11824
|
+
url: "/agents/{id}";
|
|
11761
11825
|
};
|
|
11762
|
-
type
|
|
11826
|
+
type DeleteAgentsByIdErrors = {
|
|
11763
11827
|
/**
|
|
11764
11828
|
* Bad Request - Invalid input data or malformed request
|
|
11765
11829
|
*/
|
|
@@ -11789,14 +11853,14 @@ type DeleteApiKeysByIdErrors = {
|
|
|
11789
11853
|
*/
|
|
11790
11854
|
default: Errors;
|
|
11791
11855
|
};
|
|
11792
|
-
type
|
|
11793
|
-
type
|
|
11856
|
+
type DeleteAgentsByIdError = DeleteAgentsByIdErrors[keyof DeleteAgentsByIdErrors];
|
|
11857
|
+
type DeleteAgentsByIdResponses = {
|
|
11794
11858
|
/**
|
|
11795
11859
|
* Deleted successfully
|
|
11796
11860
|
*/
|
|
11797
11861
|
200: unknown;
|
|
11798
11862
|
};
|
|
11799
|
-
type
|
|
11863
|
+
type GetAgentsByIdData = {
|
|
11800
11864
|
body?: never;
|
|
11801
11865
|
headers: {
|
|
11802
11866
|
/**
|
|
@@ -11819,9 +11883,9 @@ type GetApiKeysByIdData = {
|
|
|
11819
11883
|
[key: string]: unknown;
|
|
11820
11884
|
};
|
|
11821
11885
|
};
|
|
11822
|
-
url: "/
|
|
11886
|
+
url: "/agents/{id}";
|
|
11823
11887
|
};
|
|
11824
|
-
type
|
|
11888
|
+
type GetAgentsByIdErrors = {
|
|
11825
11889
|
/**
|
|
11826
11890
|
* Bad Request - Invalid input data or malformed request
|
|
11827
11891
|
*/
|
|
@@ -11851,34 +11915,45 @@ type GetApiKeysByIdErrors = {
|
|
|
11851
11915
|
*/
|
|
11852
11916
|
default: Errors;
|
|
11853
11917
|
};
|
|
11854
|
-
type
|
|
11855
|
-
type
|
|
11918
|
+
type GetAgentsByIdError = GetAgentsByIdErrors[keyof GetAgentsByIdErrors];
|
|
11919
|
+
type GetAgentsByIdResponses = {
|
|
11856
11920
|
/**
|
|
11857
11921
|
* Success
|
|
11858
11922
|
*/
|
|
11859
11923
|
200: {
|
|
11860
|
-
data?:
|
|
11924
|
+
data?: Agent;
|
|
11861
11925
|
included?: Array<unknown>;
|
|
11862
11926
|
meta?: {
|
|
11863
11927
|
[key: string]: unknown;
|
|
11864
11928
|
};
|
|
11865
11929
|
};
|
|
11866
11930
|
};
|
|
11867
|
-
type
|
|
11868
|
-
type
|
|
11931
|
+
type GetAgentsByIdResponse = GetAgentsByIdResponses[keyof GetAgentsByIdResponses];
|
|
11932
|
+
type PatchAgentsByIdData = {
|
|
11869
11933
|
/**
|
|
11870
|
-
* Request body for the /
|
|
11934
|
+
* Request body for the /agents/:id operation on agent resource
|
|
11871
11935
|
*/
|
|
11872
11936
|
body?: {
|
|
11873
11937
|
data: {
|
|
11874
11938
|
attributes?: {
|
|
11939
|
+
default_instructions?: string | unknown;
|
|
11940
|
+
description?: string | unknown;
|
|
11941
|
+
domain?: "legal" | "medical" | "financial" | "compliance" | "support" | "recruitment" | "general" | "extraction" | "municipal" | "logistics" | unknown;
|
|
11942
|
+
instructions?: string | unknown;
|
|
11943
|
+
is_system?: boolean | unknown;
|
|
11875
11944
|
name?: string | unknown;
|
|
11945
|
+
prompt_template?: string | unknown;
|
|
11946
|
+
schema_definition?: {
|
|
11947
|
+
[key: string]: unknown;
|
|
11948
|
+
} | unknown;
|
|
11949
|
+
tags?: Array<string> | unknown;
|
|
11950
|
+
version?: string | unknown;
|
|
11876
11951
|
};
|
|
11877
11952
|
id: string;
|
|
11878
11953
|
relationships?: {
|
|
11879
11954
|
[key: string]: never;
|
|
11880
11955
|
};
|
|
11881
|
-
type?: "
|
|
11956
|
+
type?: "agent";
|
|
11882
11957
|
};
|
|
11883
11958
|
};
|
|
11884
11959
|
headers: {
|
|
@@ -11902,9 +11977,9 @@ type PatchApiKeysByIdData = {
|
|
|
11902
11977
|
[key: string]: unknown;
|
|
11903
11978
|
};
|
|
11904
11979
|
};
|
|
11905
|
-
url: "/
|
|
11980
|
+
url: "/agents/{id}";
|
|
11906
11981
|
};
|
|
11907
|
-
type
|
|
11982
|
+
type PatchAgentsByIdErrors = {
|
|
11908
11983
|
/**
|
|
11909
11984
|
* Bad Request - Invalid input data or malformed request
|
|
11910
11985
|
*/
|
|
@@ -11934,21 +12009,21 @@ type PatchApiKeysByIdErrors = {
|
|
|
11934
12009
|
*/
|
|
11935
12010
|
default: Errors;
|
|
11936
12011
|
};
|
|
11937
|
-
type
|
|
11938
|
-
type
|
|
12012
|
+
type PatchAgentsByIdError = PatchAgentsByIdErrors[keyof PatchAgentsByIdErrors];
|
|
12013
|
+
type PatchAgentsByIdResponses = {
|
|
11939
12014
|
/**
|
|
11940
12015
|
* Success
|
|
11941
12016
|
*/
|
|
11942
12017
|
200: {
|
|
11943
|
-
data?:
|
|
12018
|
+
data?: Agent;
|
|
11944
12019
|
included?: Array<unknown>;
|
|
11945
12020
|
meta?: {
|
|
11946
12021
|
[key: string]: unknown;
|
|
11947
12022
|
};
|
|
11948
12023
|
};
|
|
11949
12024
|
};
|
|
11950
|
-
type
|
|
11951
|
-
type
|
|
12025
|
+
type PatchAgentsByIdResponse = PatchAgentsByIdResponses[keyof PatchAgentsByIdResponses];
|
|
12026
|
+
type DeleteApiKeysByIdData = {
|
|
11952
12027
|
body?: never;
|
|
11953
12028
|
headers: {
|
|
11954
12029
|
/**
|
|
@@ -11956,7 +12031,221 @@ type GetAiConversationsData = {
|
|
|
11956
12031
|
*/
|
|
11957
12032
|
"x-application-key": string;
|
|
11958
12033
|
};
|
|
11959
|
-
path
|
|
12034
|
+
path: {
|
|
12035
|
+
id: string;
|
|
12036
|
+
};
|
|
12037
|
+
query?: {
|
|
12038
|
+
/**
|
|
12039
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
12040
|
+
*/
|
|
12041
|
+
include?: string;
|
|
12042
|
+
/**
|
|
12043
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
12044
|
+
*/
|
|
12045
|
+
fields?: {
|
|
12046
|
+
[key: string]: unknown;
|
|
12047
|
+
};
|
|
12048
|
+
};
|
|
12049
|
+
url: "/api_keys/{id}";
|
|
12050
|
+
};
|
|
12051
|
+
type DeleteApiKeysByIdErrors = {
|
|
12052
|
+
/**
|
|
12053
|
+
* Bad Request - Invalid input data or malformed request
|
|
12054
|
+
*/
|
|
12055
|
+
400: ErrorResponse;
|
|
12056
|
+
/**
|
|
12057
|
+
* Unauthorized - Missing or invalid authentication token
|
|
12058
|
+
*/
|
|
12059
|
+
401: ErrorResponse;
|
|
12060
|
+
/**
|
|
12061
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
12062
|
+
*/
|
|
12063
|
+
403: ErrorResponse;
|
|
12064
|
+
/**
|
|
12065
|
+
* Not Found - Resource does not exist
|
|
12066
|
+
*/
|
|
12067
|
+
404: ErrorResponse;
|
|
12068
|
+
/**
|
|
12069
|
+
* Too Many Requests - Rate limit exceeded
|
|
12070
|
+
*/
|
|
12071
|
+
429: ErrorResponse;
|
|
12072
|
+
/**
|
|
12073
|
+
* Internal Server Error - Unexpected server error
|
|
12074
|
+
*/
|
|
12075
|
+
500: ErrorResponse;
|
|
12076
|
+
/**
|
|
12077
|
+
* General Error
|
|
12078
|
+
*/
|
|
12079
|
+
default: Errors;
|
|
12080
|
+
};
|
|
12081
|
+
type DeleteApiKeysByIdError = DeleteApiKeysByIdErrors[keyof DeleteApiKeysByIdErrors];
|
|
12082
|
+
type DeleteApiKeysByIdResponses = {
|
|
12083
|
+
/**
|
|
12084
|
+
* Deleted successfully
|
|
12085
|
+
*/
|
|
12086
|
+
200: unknown;
|
|
12087
|
+
};
|
|
12088
|
+
type GetApiKeysByIdData = {
|
|
12089
|
+
body?: never;
|
|
12090
|
+
headers: {
|
|
12091
|
+
/**
|
|
12092
|
+
* Application ID for authentication and routing
|
|
12093
|
+
*/
|
|
12094
|
+
"x-application-key": string;
|
|
12095
|
+
};
|
|
12096
|
+
path: {
|
|
12097
|
+
id: string;
|
|
12098
|
+
};
|
|
12099
|
+
query?: {
|
|
12100
|
+
/**
|
|
12101
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
12102
|
+
*/
|
|
12103
|
+
include?: string;
|
|
12104
|
+
/**
|
|
12105
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
12106
|
+
*/
|
|
12107
|
+
fields?: {
|
|
12108
|
+
[key: string]: unknown;
|
|
12109
|
+
};
|
|
12110
|
+
};
|
|
12111
|
+
url: "/api_keys/{id}";
|
|
12112
|
+
};
|
|
12113
|
+
type GetApiKeysByIdErrors = {
|
|
12114
|
+
/**
|
|
12115
|
+
* Bad Request - Invalid input data or malformed request
|
|
12116
|
+
*/
|
|
12117
|
+
400: ErrorResponse;
|
|
12118
|
+
/**
|
|
12119
|
+
* Unauthorized - Missing or invalid authentication token
|
|
12120
|
+
*/
|
|
12121
|
+
401: ErrorResponse;
|
|
12122
|
+
/**
|
|
12123
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
12124
|
+
*/
|
|
12125
|
+
403: ErrorResponse;
|
|
12126
|
+
/**
|
|
12127
|
+
* Not Found - Resource does not exist
|
|
12128
|
+
*/
|
|
12129
|
+
404: ErrorResponse;
|
|
12130
|
+
/**
|
|
12131
|
+
* Too Many Requests - Rate limit exceeded
|
|
12132
|
+
*/
|
|
12133
|
+
429: ErrorResponse;
|
|
12134
|
+
/**
|
|
12135
|
+
* Internal Server Error - Unexpected server error
|
|
12136
|
+
*/
|
|
12137
|
+
500: ErrorResponse;
|
|
12138
|
+
/**
|
|
12139
|
+
* General Error
|
|
12140
|
+
*/
|
|
12141
|
+
default: Errors;
|
|
12142
|
+
};
|
|
12143
|
+
type GetApiKeysByIdError = GetApiKeysByIdErrors[keyof GetApiKeysByIdErrors];
|
|
12144
|
+
type GetApiKeysByIdResponses = {
|
|
12145
|
+
/**
|
|
12146
|
+
* Success
|
|
12147
|
+
*/
|
|
12148
|
+
200: {
|
|
12149
|
+
data?: ApiKey;
|
|
12150
|
+
included?: Array<unknown>;
|
|
12151
|
+
meta?: {
|
|
12152
|
+
[key: string]: unknown;
|
|
12153
|
+
};
|
|
12154
|
+
};
|
|
12155
|
+
};
|
|
12156
|
+
type GetApiKeysByIdResponse = GetApiKeysByIdResponses[keyof GetApiKeysByIdResponses];
|
|
12157
|
+
type PatchApiKeysByIdData = {
|
|
12158
|
+
/**
|
|
12159
|
+
* Request body for the /api_keys/:id operation on api_key resource
|
|
12160
|
+
*/
|
|
12161
|
+
body?: {
|
|
12162
|
+
data: {
|
|
12163
|
+
attributes?: {
|
|
12164
|
+
name?: string | unknown;
|
|
12165
|
+
};
|
|
12166
|
+
id: string;
|
|
12167
|
+
relationships?: {
|
|
12168
|
+
[key: string]: never;
|
|
12169
|
+
};
|
|
12170
|
+
type?: "api_key";
|
|
12171
|
+
};
|
|
12172
|
+
};
|
|
12173
|
+
headers: {
|
|
12174
|
+
/**
|
|
12175
|
+
* Application ID for authentication and routing
|
|
12176
|
+
*/
|
|
12177
|
+
"x-application-key": string;
|
|
12178
|
+
};
|
|
12179
|
+
path: {
|
|
12180
|
+
id: string;
|
|
12181
|
+
};
|
|
12182
|
+
query?: {
|
|
12183
|
+
/**
|
|
12184
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
12185
|
+
*/
|
|
12186
|
+
include?: string;
|
|
12187
|
+
/**
|
|
12188
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
12189
|
+
*/
|
|
12190
|
+
fields?: {
|
|
12191
|
+
[key: string]: unknown;
|
|
12192
|
+
};
|
|
12193
|
+
};
|
|
12194
|
+
url: "/api_keys/{id}";
|
|
12195
|
+
};
|
|
12196
|
+
type PatchApiKeysByIdErrors = {
|
|
12197
|
+
/**
|
|
12198
|
+
* Bad Request - Invalid input data or malformed request
|
|
12199
|
+
*/
|
|
12200
|
+
400: ErrorResponse;
|
|
12201
|
+
/**
|
|
12202
|
+
* Unauthorized - Missing or invalid authentication token
|
|
12203
|
+
*/
|
|
12204
|
+
401: ErrorResponse;
|
|
12205
|
+
/**
|
|
12206
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
12207
|
+
*/
|
|
12208
|
+
403: ErrorResponse;
|
|
12209
|
+
/**
|
|
12210
|
+
* Not Found - Resource does not exist
|
|
12211
|
+
*/
|
|
12212
|
+
404: ErrorResponse;
|
|
12213
|
+
/**
|
|
12214
|
+
* Too Many Requests - Rate limit exceeded
|
|
12215
|
+
*/
|
|
12216
|
+
429: ErrorResponse;
|
|
12217
|
+
/**
|
|
12218
|
+
* Internal Server Error - Unexpected server error
|
|
12219
|
+
*/
|
|
12220
|
+
500: ErrorResponse;
|
|
12221
|
+
/**
|
|
12222
|
+
* General Error
|
|
12223
|
+
*/
|
|
12224
|
+
default: Errors;
|
|
12225
|
+
};
|
|
12226
|
+
type PatchApiKeysByIdError = PatchApiKeysByIdErrors[keyof PatchApiKeysByIdErrors];
|
|
12227
|
+
type PatchApiKeysByIdResponses = {
|
|
12228
|
+
/**
|
|
12229
|
+
* Success
|
|
12230
|
+
*/
|
|
12231
|
+
200: {
|
|
12232
|
+
data?: ApiKey;
|
|
12233
|
+
included?: Array<unknown>;
|
|
12234
|
+
meta?: {
|
|
12235
|
+
[key: string]: unknown;
|
|
12236
|
+
};
|
|
12237
|
+
};
|
|
12238
|
+
};
|
|
12239
|
+
type PatchApiKeysByIdResponse = PatchApiKeysByIdResponses[keyof PatchApiKeysByIdResponses];
|
|
12240
|
+
type GetAiConversationsData = {
|
|
12241
|
+
body?: never;
|
|
12242
|
+
headers: {
|
|
12243
|
+
/**
|
|
12244
|
+
* Application ID for authentication and routing
|
|
12245
|
+
*/
|
|
12246
|
+
"x-application-key": string;
|
|
12247
|
+
};
|
|
12248
|
+
path?: never;
|
|
11960
12249
|
query?: {
|
|
11961
12250
|
/**
|
|
11962
12251
|
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
@@ -12557,7 +12846,7 @@ type GetApplicationsByIdResponses = {
|
|
|
12557
12846
|
*/
|
|
12558
12847
|
200: {
|
|
12559
12848
|
data?: Application;
|
|
12560
|
-
included?: Array<Plan | CreditPackage>;
|
|
12849
|
+
included?: Array<Plan | CreditPackage | Workspace>;
|
|
12561
12850
|
meta?: {
|
|
12562
12851
|
[key: string]: unknown;
|
|
12563
12852
|
};
|
|
@@ -12646,7 +12935,7 @@ type PatchApplicationsByIdResponses = {
|
|
|
12646
12935
|
*/
|
|
12647
12936
|
200: {
|
|
12648
12937
|
data?: Application;
|
|
12649
|
-
included?: Array<Plan | CreditPackage>;
|
|
12938
|
+
included?: Array<Plan | CreditPackage | Workspace>;
|
|
12650
12939
|
meta?: {
|
|
12651
12940
|
[key: string]: unknown;
|
|
12652
12941
|
};
|
|
@@ -13610,7 +13899,7 @@ type PatchApplicationsByIdGrantCreditsResponses = {
|
|
|
13610
13899
|
*/
|
|
13611
13900
|
200: {
|
|
13612
13901
|
data?: Application;
|
|
13613
|
-
included?: Array<Plan | CreditPackage>;
|
|
13902
|
+
included?: Array<Plan | CreditPackage | Workspace>;
|
|
13614
13903
|
meta?: {
|
|
13615
13904
|
[key: string]: unknown;
|
|
13616
13905
|
};
|
|
@@ -14120,7 +14409,8 @@ type PostTenantsIsvData = {
|
|
|
14120
14409
|
data: {
|
|
14121
14410
|
attributes?: {
|
|
14122
14411
|
badge_url?: string | unknown;
|
|
14123
|
-
initial_credits
|
|
14412
|
+
initial_credits?: number | unknown;
|
|
14413
|
+
kind?: "platform" | "admin" | "tenant" | unknown;
|
|
14124
14414
|
logo_url?: string | unknown;
|
|
14125
14415
|
name: string;
|
|
14126
14416
|
owner_id: string;
|
|
@@ -17997,7 +18287,7 @@ type GetApplicationsBySlugBySlugResponses = {
|
|
|
17997
18287
|
*/
|
|
17998
18288
|
200: {
|
|
17999
18289
|
data?: Application;
|
|
18000
|
-
included?: Array<Plan | CreditPackage>;
|
|
18290
|
+
included?: Array<Plan | CreditPackage | Workspace>;
|
|
18001
18291
|
meta?: {
|
|
18002
18292
|
[key: string]: unknown;
|
|
18003
18293
|
};
|
|
@@ -18922,6 +19212,12 @@ type GetAgentsData = {
|
|
|
18922
19212
|
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
18923
19213
|
*/
|
|
18924
19214
|
sort?: string;
|
|
19215
|
+
/**
|
|
19216
|
+
* JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
|
|
19217
|
+
*/
|
|
19218
|
+
page?: {
|
|
19219
|
+
[key: string]: unknown;
|
|
19220
|
+
};
|
|
18925
19221
|
/**
|
|
18926
19222
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
18927
19223
|
*/
|
|
@@ -18982,6 +19278,98 @@ type GetAgentsResponses = {
|
|
|
18982
19278
|
};
|
|
18983
19279
|
};
|
|
18984
19280
|
type GetAgentsResponse = GetAgentsResponses[keyof GetAgentsResponses];
|
|
19281
|
+
type PostAgentsData = {
|
|
19282
|
+
/**
|
|
19283
|
+
* Request body for the /agents operation on agent resource
|
|
19284
|
+
*/
|
|
19285
|
+
body: {
|
|
19286
|
+
data: {
|
|
19287
|
+
attributes?: {
|
|
19288
|
+
default_instructions?: string | unknown;
|
|
19289
|
+
description?: string | unknown;
|
|
19290
|
+
domain?: "legal" | "medical" | "financial" | "compliance" | "support" | "recruitment" | "general" | "extraction" | "municipal" | "logistics" | unknown;
|
|
19291
|
+
instructions?: string | unknown;
|
|
19292
|
+
is_system?: boolean | unknown;
|
|
19293
|
+
name: string;
|
|
19294
|
+
prompt_template: string;
|
|
19295
|
+
schema_definition?: {
|
|
19296
|
+
[key: string]: unknown;
|
|
19297
|
+
} | unknown;
|
|
19298
|
+
tags?: Array<string> | unknown;
|
|
19299
|
+
version?: string | unknown;
|
|
19300
|
+
workspace_id?: string | unknown;
|
|
19301
|
+
};
|
|
19302
|
+
relationships?: {
|
|
19303
|
+
[key: string]: never;
|
|
19304
|
+
};
|
|
19305
|
+
type?: "agent";
|
|
19306
|
+
};
|
|
19307
|
+
};
|
|
19308
|
+
headers: {
|
|
19309
|
+
/**
|
|
19310
|
+
* Application ID for authentication and routing
|
|
19311
|
+
*/
|
|
19312
|
+
"x-application-key": string;
|
|
19313
|
+
};
|
|
19314
|
+
path?: never;
|
|
19315
|
+
query?: {
|
|
19316
|
+
/**
|
|
19317
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
19318
|
+
*/
|
|
19319
|
+
include?: string;
|
|
19320
|
+
/**
|
|
19321
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
19322
|
+
*/
|
|
19323
|
+
fields?: {
|
|
19324
|
+
[key: string]: unknown;
|
|
19325
|
+
};
|
|
19326
|
+
};
|
|
19327
|
+
url: "/agents";
|
|
19328
|
+
};
|
|
19329
|
+
type PostAgentsErrors = {
|
|
19330
|
+
/**
|
|
19331
|
+
* Bad Request - Invalid input data or malformed request
|
|
19332
|
+
*/
|
|
19333
|
+
400: ErrorResponse;
|
|
19334
|
+
/**
|
|
19335
|
+
* Unauthorized - Missing or invalid authentication token
|
|
19336
|
+
*/
|
|
19337
|
+
401: ErrorResponse;
|
|
19338
|
+
/**
|
|
19339
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
19340
|
+
*/
|
|
19341
|
+
403: ErrorResponse;
|
|
19342
|
+
/**
|
|
19343
|
+
* Not Found - Resource does not exist
|
|
19344
|
+
*/
|
|
19345
|
+
404: ErrorResponse;
|
|
19346
|
+
/**
|
|
19347
|
+
* Too Many Requests - Rate limit exceeded
|
|
19348
|
+
*/
|
|
19349
|
+
429: ErrorResponse;
|
|
19350
|
+
/**
|
|
19351
|
+
* Internal Server Error - Unexpected server error
|
|
19352
|
+
*/
|
|
19353
|
+
500: ErrorResponse;
|
|
19354
|
+
/**
|
|
19355
|
+
* General Error
|
|
19356
|
+
*/
|
|
19357
|
+
default: Errors;
|
|
19358
|
+
};
|
|
19359
|
+
type PostAgentsError = PostAgentsErrors[keyof PostAgentsErrors];
|
|
19360
|
+
type PostAgentsResponses = {
|
|
19361
|
+
/**
|
|
19362
|
+
* Success
|
|
19363
|
+
*/
|
|
19364
|
+
201: {
|
|
19365
|
+
data?: Agent;
|
|
19366
|
+
included?: Array<unknown>;
|
|
19367
|
+
meta?: {
|
|
19368
|
+
[key: string]: unknown;
|
|
19369
|
+
};
|
|
19370
|
+
};
|
|
19371
|
+
};
|
|
19372
|
+
type PostAgentsResponse = PostAgentsResponses[keyof PostAgentsResponses];
|
|
18985
19373
|
type PostUsersRegisterIsvData = {
|
|
18986
19374
|
/**
|
|
18987
19375
|
* Request body for the /users/register_isv operation on user resource
|
|
@@ -20372,6 +20760,12 @@ declare const patchTrainingExamplesById: <ThrowOnError extends boolean = false>(
|
|
|
20372
20760
|
*
|
|
20373
20761
|
*/
|
|
20374
20762
|
declare const deleteSearchSavedById: <ThrowOnError extends boolean = false>(options: Options<DeleteSearchSavedByIdData, ThrowOnError>) => RequestResult<DeleteSearchSavedByIdResponses, DeleteSearchSavedByIdErrors, ThrowOnError, "fields">;
|
|
20763
|
+
/**
|
|
20764
|
+
* Update email
|
|
20765
|
+
*
|
|
20766
|
+
* Admin-only email update
|
|
20767
|
+
*/
|
|
20768
|
+
declare const patchUsersByIdAdminEmail: <ThrowOnError extends boolean = false>(options: Options<PatchUsersByIdAdminEmailData, ThrowOnError>) => RequestResult<PatchUsersByIdAdminEmailResponses, PatchUsersByIdAdminEmailErrors, ThrowOnError, "fields">;
|
|
20375
20769
|
/**
|
|
20376
20770
|
* Update reset password
|
|
20377
20771
|
*
|
|
@@ -20552,12 +20946,6 @@ declare const getCreditPackagesById: <ThrowOnError extends boolean = false>(opti
|
|
|
20552
20946
|
*
|
|
20553
20947
|
*/
|
|
20554
20948
|
declare const getUsersById: <ThrowOnError extends boolean = false>(options: Options<GetUsersByIdData, ThrowOnError>) => RequestResult<GetUsersByIdResponses, GetUsersByIdErrors, ThrowOnError, "fields">;
|
|
20555
|
-
/**
|
|
20556
|
-
* Update users
|
|
20557
|
-
*
|
|
20558
|
-
* Admin-only user management (platform admins) - promotes/demotes admin status
|
|
20559
|
-
*/
|
|
20560
|
-
declare const patchUsersById: <ThrowOnError extends boolean = false>(options: Options<PatchUsersByIdData, ThrowOnError>) => RequestResult<PatchUsersByIdResponses, PatchUsersByIdErrors, ThrowOnError, "fields">;
|
|
20561
20949
|
/**
|
|
20562
20950
|
* Get results
|
|
20563
20951
|
*
|
|
@@ -21132,6 +21520,22 @@ declare const getApiKeys: <ThrowOnError extends boolean = false>(options: Option
|
|
|
21132
21520
|
*
|
|
21133
21521
|
*/
|
|
21134
21522
|
declare const postApiKeys: <ThrowOnError extends boolean = false>(options: Options<PostApiKeysData, ThrowOnError>) => RequestResult<PostApiKeysResponses, PostApiKeysErrors, ThrowOnError, "fields">;
|
|
21523
|
+
/**
|
|
21524
|
+
* Update admin
|
|
21525
|
+
*
|
|
21526
|
+
* Admin-only user management (platform admins) - promotes/demotes admin status
|
|
21527
|
+
*/
|
|
21528
|
+
declare const patchUsersByIdAdmin: <ThrowOnError extends boolean = false>(options: Options<PatchUsersByIdAdminData, ThrowOnError>) => RequestResult<PatchUsersByIdAdminResponses, PatchUsersByIdAdminErrors, ThrowOnError, "fields">;
|
|
21529
|
+
/**
|
|
21530
|
+
* Delete agents
|
|
21531
|
+
*
|
|
21532
|
+
* Deletes a resource permanently. This action cannot be undone.
|
|
21533
|
+
*
|
|
21534
|
+
* **Authentication:** Required - Bearer token or API key
|
|
21535
|
+
* **Rate Limit:** 100 requests per minute
|
|
21536
|
+
*
|
|
21537
|
+
*/
|
|
21538
|
+
declare const deleteAgentsById: <ThrowOnError extends boolean = false>(options: Options<DeleteAgentsByIdData, ThrowOnError>) => RequestResult<DeleteAgentsByIdResponses, DeleteAgentsByIdErrors, ThrowOnError, "fields">;
|
|
21135
21539
|
/**
|
|
21136
21540
|
* Get agents
|
|
21137
21541
|
*
|
|
@@ -21142,6 +21546,16 @@ declare const postApiKeys: <ThrowOnError extends boolean = false>(options: Optio
|
|
|
21142
21546
|
*
|
|
21143
21547
|
*/
|
|
21144
21548
|
declare const getAgentsById: <ThrowOnError extends boolean = false>(options: Options<GetAgentsByIdData, ThrowOnError>) => RequestResult<GetAgentsByIdResponses, GetAgentsByIdErrors, ThrowOnError, "fields">;
|
|
21549
|
+
/**
|
|
21550
|
+
* Update agents
|
|
21551
|
+
*
|
|
21552
|
+
* Updates specific fields of an existing resource.
|
|
21553
|
+
*
|
|
21554
|
+
* **Authentication:** Required - Bearer token or API key
|
|
21555
|
+
* **Rate Limit:** 100 requests per minute
|
|
21556
|
+
*
|
|
21557
|
+
*/
|
|
21558
|
+
declare const patchAgentsById: <ThrowOnError extends boolean = false>(options: Options<PatchAgentsByIdData, ThrowOnError>) => RequestResult<PatchAgentsByIdResponses, PatchAgentsByIdErrors, ThrowOnError, "fields">;
|
|
21145
21559
|
/**
|
|
21146
21560
|
* Delete api keys
|
|
21147
21561
|
*
|
|
@@ -22024,6 +22438,16 @@ declare const postAiGraphNodes: <ThrowOnError extends boolean = false>(options:
|
|
|
22024
22438
|
*
|
|
22025
22439
|
*/
|
|
22026
22440
|
declare const getAgents: <ThrowOnError extends boolean = false>(options: Options<GetAgentsData, ThrowOnError>) => RequestResult<GetAgentsResponses, GetAgentsErrors, ThrowOnError, "fields">;
|
|
22441
|
+
/**
|
|
22442
|
+
* Create agents
|
|
22443
|
+
*
|
|
22444
|
+
* Creates a new resource. Returns the created resource with generated ID.
|
|
22445
|
+
*
|
|
22446
|
+
* **Authentication:** Required - Bearer token or API key
|
|
22447
|
+
* **Rate Limit:** 100 requests per minute
|
|
22448
|
+
*
|
|
22449
|
+
*/
|
|
22450
|
+
declare const postAgents: <ThrowOnError extends boolean = false>(options: Options<PostAgentsData, ThrowOnError>) => RequestResult<PostAgentsResponses, PostAgentsErrors, ThrowOnError, "fields">;
|
|
22027
22451
|
/**
|
|
22028
22452
|
* Create register isv
|
|
22029
22453
|
*
|
|
@@ -22487,4 +22911,4 @@ declare function streamMessage(response: Response, options?: StreamOptions): Asy
|
|
|
22487
22911
|
*/
|
|
22488
22912
|
declare function collectStreamedMessage(stream: AsyncIterableIterator<StreamMessageChunk>): Promise<string>;
|
|
22489
22913
|
|
|
22490
|
-
export { type Account, type Agent, type AgentCreateRequest, AgentCreateSchema, type AiConfig, type ApiKey, type ApiKeyAllocateRequest, ApiKeyAllocateSchema, type ApiKeyCreateRequest, ApiKeyCreateSchema, type Application, type ApplicationCreateRequest, ApplicationCreateSchema, type AuditLog, AuthenticationError, AuthorizationError, type Bucket, type BucketCreateRequest, BucketCreateSchema, type ClientOptions$1 as ClientOptions, type Config$2 as Config, type Conversation, type CreditPackage, type Customer, DEFAULT_RETRY_CONFIG, 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 DeleteApiKeysByIdData, type DeleteApiKeysByIdError, type DeleteApiKeysByIdErrors, type DeleteApiKeysByIdResponses, type DeleteApplicationsByIdData, type DeleteApplicationsByIdError, type DeleteApplicationsByIdErrors, type DeleteApplicationsByIdResponses, type DeleteBucketsByIdData, type DeleteBucketsByIdError, type DeleteBucketsByIdErrors, type DeleteBucketsByIdResponses, type DeleteExtractionDocumentsByIdData, type DeleteExtractionDocumentsByIdError, type DeleteExtractionDocumentsByIdErrors, type DeleteExtractionDocumentsByIdResponses, type DeleteExtractionSchemaFieldsByIdData, type DeleteExtractionSchemaFieldsByIdError, type DeleteExtractionSchemaFieldsByIdErrors, type DeleteExtractionSchemaFieldsByIdResponses, type DeleteMessagesByIdData, type DeleteMessagesByIdError, type DeleteMessagesByIdErrors, type DeleteMessagesByIdResponses, type DeleteNotificationPreferencesByIdData, type DeleteNotificationPreferencesByIdError, type DeleteNotificationPreferencesByIdErrors, type DeleteNotificationPreferencesByIdResponses, type DeleteObjectsByIdData, type DeleteObjectsByIdError, type DeleteObjectsByIdErrors, type DeleteObjectsByIdResponses, 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 DeleteUserProfilesByIdData, type DeleteUserProfilesByIdError, type DeleteUserProfilesByIdErrors, type DeleteUserProfilesByIdResponses, 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 EmbedRequest, EmbedRequestSchema, type Embedding, type ErrorResponse, type Errors, type ExtractionBatch, type ExtractionDocument, type ExtractionExport, type ExtractionResult, type ExtractionSchema, type ExtractionSchemaField, type GetAgentsByIdData, type GetAgentsByIdError, type GetAgentsByIdErrors, type GetAgentsByIdResponse, type GetAgentsByIdResponses, type GetAgentsByIdTrainingStatsData, type GetAgentsByIdTrainingStatsError, type GetAgentsByIdTrainingStatsErrors, type GetAgentsByIdTrainingStatsResponse, type GetAgentsByIdTrainingStatsResponses, type GetAgentsData, type GetAgentsError, type GetAgentsErrors, type GetAgentsResponse, type GetAgentsResponses, 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 GetAiGraphNodesData, type GetAiGraphNodesError, type GetAiGraphNodesErrors, type GetAiGraphNodesResponse, type GetAiGraphNodesResponses, type GetAiMessagesData, type GetAiMessagesError, type GetAiMessagesErrors, type GetAiMessagesResponse, type GetAiMessagesResponses, type GetApiKeysByIdData, type GetApiKeysByIdError, type GetApiKeysByIdErrors, type GetApiKeysByIdResponse, type GetApiKeysByIdResponses, type GetApiKeysData, type GetApiKeysError, type GetApiKeysErrors, type GetApiKeysResponse, type GetApiKeysResponses, type GetApplicationsByIdData, type GetApplicationsByIdError, type GetApplicationsByIdErrors, type GetApplicationsByIdResponse, type GetApplicationsByIdResponses, type GetApplicationsBySlugBySlugData, type GetApplicationsBySlugBySlugError, type GetApplicationsBySlugBySlugErrors, type GetApplicationsBySlugBySlugResponse, type GetApplicationsBySlugBySlugResponses, type GetApplicationsData, type GetApplicationsError, type GetApplicationsErrors, type GetApplicationsResponse, type GetApplicationsResponses, type GetAuditLogsData, type GetAuditLogsError, type GetAuditLogsErrors, type GetAuditLogsResponse, type GetAuditLogsResponses, 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 GetExtractionDocumentsByIdData, type GetExtractionDocumentsByIdError, type GetExtractionDocumentsByIdErrors, type GetExtractionDocumentsByIdResponse, type GetExtractionDocumentsByIdResponses, type GetExtractionDocumentsByIdStatusData, type GetExtractionDocumentsByIdStatusError, type GetExtractionDocumentsByIdStatusErrors, type GetExtractionDocumentsByIdStatusResponse, type GetExtractionDocumentsByIdStatusResponses, type GetExtractionDocumentsData, type GetExtractionDocumentsError, type GetExtractionDocumentsErrors, type GetExtractionDocumentsResponse, type GetExtractionDocumentsResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdData, type GetExtractionDocumentsWorkspaceByWorkspaceIdError, type GetExtractionDocumentsWorkspaceByWorkspaceIdErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdResponses, type GetExtractionResultsByIdData, type GetExtractionResultsByIdError, type GetExtractionResultsByIdErrors, type GetExtractionResultsByIdResponse, type GetExtractionResultsByIdResponses, type GetExtractionResultsDocumentByDocumentIdData, type GetExtractionResultsDocumentByDocumentIdError, type GetExtractionResultsDocumentByDocumentIdErrors, type GetExtractionResultsDocumentByDocumentIdResponse, type GetExtractionResultsDocumentByDocumentIdResponses, type GetExtractionSchemaFieldsByIdData, type GetExtractionSchemaFieldsByIdError, type GetExtractionSchemaFieldsByIdErrors, type GetExtractionSchemaFieldsByIdResponse, type GetExtractionSchemaFieldsByIdResponses, type GetExtractionSchemaFieldsData, type GetExtractionSchemaFieldsError, type GetExtractionSchemaFieldsErrors, type GetExtractionSchemaFieldsResponse, type GetExtractionSchemaFieldsResponses, type GetExtractionSchemasByIdData, type GetExtractionSchemasByIdError, type GetExtractionSchemasByIdErrors, type GetExtractionSchemasByIdResponse, type GetExtractionSchemasByIdResponses, type GetExtractionSchemasWorkspaceByWorkspaceIdData, type GetExtractionSchemasWorkspaceByWorkspaceIdError, type GetExtractionSchemasWorkspaceByWorkspaceIdErrors, type GetExtractionSchemasWorkspaceByWorkspaceIdResponse, type GetExtractionSchemasWorkspaceByWorkspaceIdResponses, type GetInvitationsConsumeByTokenData, type GetInvitationsConsumeByTokenError, type GetInvitationsConsumeByTokenErrors, type GetInvitationsConsumeByTokenResponse, type GetInvitationsConsumeByTokenResponses, type GetInvitationsData, type GetInvitationsError, type GetInvitationsErrors, 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 GetNotificationLogsByIdData, type GetNotificationLogsByIdError, type GetNotificationLogsByIdErrors, type GetNotificationLogsByIdResponse, type GetNotificationLogsByIdResponses, type GetNotificationLogsData, type GetNotificationLogsError, type GetNotificationLogsErrors, type GetNotificationLogsResponse, type GetNotificationLogsResponses, 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 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 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 GetStorageStatsData, type GetStorageStatsError, type GetStorageStatsErrors, type GetStorageStatsResponse, type GetStorageStatsResponses, 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 GetThreadsByIdResponse, type GetThreadsByIdResponses, type GetThreadsData, type GetThreadsError, type GetThreadsErrors, type GetThreadsResponse, type GetThreadsResponses, type GetThreadsSearchData, type GetThreadsSearchError, type GetThreadsSearchErrors, type GetThreadsSearchResponse, type GetThreadsSearchResponses, type GetTrainingExamplesByIdData, type GetTrainingExamplesByIdError, type GetTrainingExamplesByIdErrors, type GetTrainingExamplesByIdResponse, type GetTrainingExamplesByIdResponses, type GetTrainingExamplesData, type GetTrainingExamplesError, type GetTrainingExamplesErrors, type GetTrainingExamplesResponse, type GetTrainingExamplesResponses, 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 GetUsersByIdData, type GetUsersByIdError, type GetUsersByIdErrors, type GetUsersByIdResponse, type GetUsersByIdResponses, type GetUsersData, type GetUsersError, type GetUsersErrors, type GetUsersMeData, type GetUsersMeError, type GetUsersMeErrors, type GetUsersMeResponse, type GetUsersMeResponses, type GetUsersResponse, type GetUsersResponses, type GetWalletData, type GetWalletError, type GetWalletErrors, type GetWalletResponse, type GetWalletResponses, type GetWebhookConfigsByIdData, type GetWebhookConfigsByIdError, type GetWebhookConfigsByIdErrors, type GetWebhookConfigsByIdResponse, type GetWebhookConfigsByIdResponses, type GetWebhookConfigsData, type GetWebhookConfigsError, type GetWebhookConfigsErrors, type GetWebhookConfigsResponse, type GetWebhookConfigsResponses, type GetWebhookDeliveriesByIdData, type GetWebhookDeliveriesByIdError, type GetWebhookDeliveriesByIdErrors, type GetWebhookDeliveriesByIdResponse, type GetWebhookDeliveriesByIdResponses, type GetWebhookDeliveriesData, type GetWebhookDeliveriesError, type GetWebhookDeliveriesErrors, type GetWebhookDeliveriesResponse, type GetWebhookDeliveriesResponses, type GetWorkspaceMembershipsData, type GetWorkspaceMembershipsError, type GetWorkspaceMembershipsErrors, type GetWorkspaceMembershipsResponse, type GetWorkspaceMembershipsResponses, type GetWorkspacesByIdData, type GetWorkspacesByIdError, type GetWorkspacesByIdErrors, type GetWorkspacesByIdResponse, type GetWorkspacesByIdResponses, type GetWorkspacesByWorkspaceIdExtractionExportsByIdData, type GetWorkspacesByWorkspaceIdExtractionExportsByIdError, type GetWorkspacesByWorkspaceIdExtractionExportsByIdErrors, type GetWorkspacesByWorkspaceIdExtractionExportsByIdResponse, type GetWorkspacesByWorkspaceIdExtractionExportsByIdResponses, type GetWorkspacesByWorkspaceIdExtractionExportsData, type GetWorkspacesByWorkspaceIdExtractionExportsError, type GetWorkspacesByWorkspaceIdExtractionExportsErrors, type GetWorkspacesByWorkspaceIdExtractionExportsResponse, type GetWorkspacesByWorkspaceIdExtractionExportsResponses, type GetWorkspacesData, type GetWorkspacesError, type GetWorkspacesErrors, type GetWorkspacesMineData, type GetWorkspacesMineError, type GetWorkspacesMineErrors, type GetWorkspacesMineResponse, type GetWorkspacesMineResponses, type GetWorkspacesResponse, type GetWorkspacesResponses, GptCoreError, type GraphEdge, type GraphNode, type Invitation, type InvitationCreateRequest, InvitationCreateSchema, 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 NotificationPreference, type OperationSuccess, type Options, type PaginatedResponse, type PaginationLinks, type PaginationOptions, type PatchApiKeysByIdAllocateData, type PatchApiKeysByIdAllocateError, type PatchApiKeysByIdAllocateErrors, type PatchApiKeysByIdAllocateResponse, type PatchApiKeysByIdAllocateResponses, type PatchApiKeysByIdData, type PatchApiKeysByIdError, type PatchApiKeysByIdErrors, 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 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 PatchExtractionDocumentsByIdFinishUploadData, type PatchExtractionDocumentsByIdFinishUploadError, type PatchExtractionDocumentsByIdFinishUploadErrors, type PatchExtractionDocumentsByIdFinishUploadResponse, type PatchExtractionDocumentsByIdFinishUploadResponses, type PatchExtractionDocumentsByIdStatusData, type PatchExtractionDocumentsByIdStatusError, type PatchExtractionDocumentsByIdStatusErrors, type PatchExtractionDocumentsByIdStatusResponse, type PatchExtractionDocumentsByIdStatusResponses, type PatchExtractionResultsByIdCorrectionsData, type PatchExtractionResultsByIdCorrectionsError, type PatchExtractionResultsByIdCorrectionsErrors, type PatchExtractionResultsByIdCorrectionsResponse, type PatchExtractionResultsByIdCorrectionsResponses, type PatchExtractionResultsByIdRegenerateData, type PatchExtractionResultsByIdRegenerateError, type PatchExtractionResultsByIdRegenerateErrors, type PatchExtractionResultsByIdRegenerateResponse, type PatchExtractionResultsByIdRegenerateResponses, type PatchExtractionSchemaFieldsByIdData, type PatchExtractionSchemaFieldsByIdError, type PatchExtractionSchemaFieldsByIdErrors, type PatchExtractionSchemaFieldsByIdResponse, type PatchExtractionSchemaFieldsByIdResponses, type PatchExtractionSchemasByIdData, type PatchExtractionSchemasByIdError, type PatchExtractionSchemasByIdErrors, type PatchExtractionSchemasByIdResponse, type PatchExtractionSchemasByIdResponses, type PatchInvitationsByIdAcceptData, type PatchInvitationsByIdAcceptError, type PatchInvitationsByIdAcceptErrors, type PatchInvitationsByIdAcceptResponse, type PatchInvitationsByIdAcceptResponses, 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 PatchNotificationPreferencesByIdData, type PatchNotificationPreferencesByIdError, type PatchNotificationPreferencesByIdErrors, type PatchNotificationPreferencesByIdResponse, type PatchNotificationPreferencesByIdResponses, type PatchTenantMembershipsByTenantIdByUserIdData, type PatchTenantMembershipsByTenantIdByUserIdError, type PatchTenantMembershipsByTenantIdByUserIdErrors, type PatchTenantMembershipsByTenantIdByUserIdResponse, type PatchTenantMembershipsByTenantIdByUserIdResponses, type PatchTenantsByIdData, type PatchTenantsByIdError, type PatchTenantsByIdErrors, type PatchTenantsByIdResponse, type PatchTenantsByIdResponses, type PatchThreadsByIdData, type PatchThreadsByIdError, type PatchThreadsByIdErrors, type PatchThreadsByIdResponse, type PatchThreadsByIdResponses, type PatchTrainingExamplesByIdData, type PatchTrainingExamplesByIdError, type PatchTrainingExamplesByIdErrors, type PatchTrainingExamplesByIdResponse, type PatchTrainingExamplesByIdResponses, type PatchUserProfilesByIdData, type PatchUserProfilesByIdError, type PatchUserProfilesByIdErrors, type PatchUserProfilesByIdResponse, type PatchUserProfilesByIdResponses, type PatchUsersAuthResetPasswordData, type PatchUsersAuthResetPasswordError, type PatchUsersAuthResetPasswordErrors, type PatchUsersAuthResetPasswordResponse, type PatchUsersAuthResetPasswordResponses, type PatchUsersByIdConfirmEmailData, type PatchUsersByIdConfirmEmailError, type PatchUsersByIdConfirmEmailErrors, type PatchUsersByIdConfirmEmailResponse, type PatchUsersByIdConfirmEmailResponses, type PatchUsersByIdData, type PatchUsersByIdError, type PatchUsersByIdErrors, type PatchUsersByIdResetPasswordData, type PatchUsersByIdResetPasswordError, type PatchUsersByIdResetPasswordErrors, type PatchUsersByIdResetPasswordResponse, type PatchUsersByIdResetPasswordResponses, type PatchUsersByIdResponse, type PatchUsersByIdResponses, type PatchWalletAddonsByAddonSlugCancelData, type PatchWalletAddonsByAddonSlugCancelError, type PatchWalletAddonsByAddonSlugCancelErrors, type PatchWalletAddonsByAddonSlugCancelResponse, type PatchWalletAddonsByAddonSlugCancelResponses, type PatchWalletAddonsData, type PatchWalletAddonsError, type PatchWalletAddonsErrors, type PatchWalletAddonsResponse, type PatchWalletAddonsResponses, type PatchWalletPlanData, type PatchWalletPlanError, type PatchWalletPlanErrors, type PatchWalletPlanResponse, type PatchWalletPlanResponses, 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 PatchWorkspacesByIdResponse, type PatchWorkspacesByIdResponses, type Payment, type PaymentMethod, type Plan, type PostAgentsByIdCloneData, type PostAgentsByIdCloneError, type PostAgentsByIdCloneErrors, type PostAgentsByIdCloneResponse, type PostAgentsByIdCloneResponses, type PostAgentsByIdLearnFromDocumentData, type PostAgentsByIdLearnFromDocumentError, type PostAgentsByIdLearnFromDocumentErrors, type PostAgentsByIdLearnFromDocumentResponse, type PostAgentsByIdLearnFromDocumentResponses, 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 PostAgentsPredictData, type PostAgentsPredictError, type PostAgentsPredictErrors, type PostAgentsPredictResponse, type PostAgentsPredictResponses, 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 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 PostExtractionDocumentsBeginUploadData, type PostExtractionDocumentsBeginUploadError, type PostExtractionDocumentsBeginUploadErrors, type PostExtractionDocumentsBeginUploadResponse, type PostExtractionDocumentsBeginUploadResponses, type PostExtractionDocumentsByIdViewData, type PostExtractionDocumentsByIdViewError, type PostExtractionDocumentsByIdViewErrors, type PostExtractionDocumentsByIdViewResponse, type PostExtractionDocumentsByIdViewResponses, type PostExtractionDocumentsUploadData, type PostExtractionDocumentsUploadError, type PostExtractionDocumentsUploadErrors, type PostExtractionDocumentsUploadResponse, type PostExtractionDocumentsUploadResponses, type PostExtractionResultsData, type PostExtractionResultsError, type PostExtractionResultsErrors, type PostExtractionResultsResponse, type PostExtractionResultsResponses, type PostExtractionSchemaFieldsData, type PostExtractionSchemaFieldsError, type PostExtractionSchemaFieldsErrors, type PostExtractionSchemaFieldsResponse, type PostExtractionSchemaFieldsResponses, type PostExtractionSchemasData, type PostExtractionSchemasError, type PostExtractionSchemasErrors, type PostExtractionSchemasResponse, type PostExtractionSchemasResponses, type PostInvitationsAcceptByTokenData, type PostInvitationsAcceptByTokenError, type PostInvitationsAcceptByTokenErrors, type PostInvitationsAcceptByTokenResponse, type PostInvitationsAcceptByTokenResponses, type PostInvitationsInviteData, type PostInvitationsInviteError, type PostInvitationsInviteErrors, type PostInvitationsInviteResponse, type PostInvitationsInviteResponses, type PostLlmAnalyticsData, type PostLlmAnalyticsError, type PostLlmAnalyticsErrors, type PostLlmAnalyticsResponse, type PostLlmAnalyticsResponses, type PostMessagesData, type PostMessagesError, type PostMessagesErrors, type PostMessagesResponse, type PostMessagesResponses, type PostNotificationPreferencesData, type PostNotificationPreferencesError, type PostNotificationPreferencesErrors, type PostNotificationPreferencesResponse, type PostNotificationPreferencesResponses, type PostObjectsBulkDestroyData, type PostObjectsBulkDestroyError, type PostObjectsBulkDestroyErrors, type PostObjectsBulkDestroyResponse, type PostObjectsBulkDestroyResponses, type PostObjectsRegisterData, type PostObjectsRegisterError, type PostObjectsRegisterErrors, type PostObjectsRegisterResponse, type PostObjectsRegisterResponses, type PostPaymentsData, type PostPaymentsError, type PostPaymentsErrors, type PostPaymentsResponse, type PostPaymentsResponses, type PostSearchReindexData, type PostSearchReindexError, type PostSearchReindexErrors, type PostSearchReindexResponse, type PostSearchReindexResponses, 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 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 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 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 PostUsersRegisterIsvData, type PostUsersRegisterIsvError, type PostUsersRegisterIsvErrors, type PostUsersRegisterIsvResponse, type PostUsersRegisterIsvResponses, type PostWebhookConfigsByIdTestData, type PostWebhookConfigsByIdTestError, type PostWebhookConfigsByIdTestErrors, type PostWebhookConfigsByIdTestResponse, type PostWebhookConfigsByIdTestResponses, type PostWebhookConfigsData, type PostWebhookConfigsError, type PostWebhookConfigsErrors, type PostWebhookConfigsResponse, type PostWebhookConfigsResponses, type PostWebhookDeliveriesByIdRetryData, type PostWebhookDeliveriesByIdRetryError, type PostWebhookDeliveriesByIdRetryErrors, type PostWebhookDeliveriesByIdRetryResponse, type PostWebhookDeliveriesByIdRetryResponses, type PostWorkspaceMembershipsData, type PostWorkspaceMembershipsError, type PostWorkspaceMembershipsErrors, type PostWorkspaceMembershipsResponse, type PostWorkspaceMembershipsResponses, 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 Search, type SearchRequest, SearchRequestSchema, type SemanticCacheEntry, ServerError, type StorageStats, type StreamMessageChunk, type StreamOptions, type Subscription, type Tenant, type TenantDocumentStats, type TenantMembership, type TenantStats, type Thread, type ThreadCreateRequest, ThreadCreateSchema, TimeoutError, type Token, type TrainingExample, type Transaction, type User, type UserProfile, ValidationError, type Wallet, type WebhookConfig, type WebhookDelivery, type Workspace, type WorkspaceCreateRequest, WorkspaceCreateSchema, type WorkspaceDocumentStats, type WorkspaceMembership, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, calculateBackoff, client, collectStreamedMessage, deleteAiConversationsById, deleteAiGraphEdgesById, deleteAiGraphNodesById, deleteApiKeysById, deleteApplicationsById, deleteBucketsById, deleteExtractionDocumentsById, deleteExtractionSchemaFieldsById, deleteMessagesById, deleteNotificationPreferencesById, deleteObjectsById, deleteSearchSavedById, deleteTenantMembershipsByTenantIdByUserId, deleteTenantsById, deleteThreadsById, deleteTrainingExamplesById, deleteUserProfilesById, deleteWebhookConfigsById, deleteWorkspaceMembershipsByWorkspaceIdByUserId, deleteWorkspacesById, getAgents, getAgentsById, getAgentsByIdTrainingStats, getAiChunksDocumentByDocumentId, getAiConversations, getAiConversationsById, getAiGraphEdges, getAiGraphNodes, getAiMessages, getApiKeys, getApiKeysById, getApplications, getApplicationsById, getApplicationsBySlugBySlug, getAuditLogs, getBuckets, getBucketsById, getBucketsByIdObjects, getBucketsByIdStats, getConfigs, getCreditPackages, getCreditPackagesById, getCreditPackagesSlugBySlug, getDocumentsStats, getExtractionBatchesById, getExtractionBatchesByIdUploadUrls, getExtractionBatchesWorkspaceByWorkspaceId, getExtractionDocuments, getExtractionDocumentsById, getExtractionDocumentsByIdStatus, getExtractionDocumentsWorkspaceByWorkspaceId, getExtractionResultsById, getExtractionResultsDocumentByDocumentId, getExtractionSchemaFields, getExtractionSchemaFieldsById, getExtractionSchemasById, getExtractionSchemasWorkspaceByWorkspaceId, getInvitations, getInvitationsConsumeByToken, getLlmAnalytics, getLlmAnalyticsById, getLlmAnalyticsCosts, getLlmAnalyticsPlatform, getLlmAnalyticsSummary, getLlmAnalyticsUsage, getLlmAnalyticsWorkspace, getMessages, getMessagesById, getMessagesSearch, getNotificationLogs, getNotificationLogsById, getNotificationPreferences, getNotificationPreferencesById, getObjects, getObjectsById, getPlans, getPlansById, getPlansSlugBySlug, getSearch, getSearchHealth, getSearchIndexes, getSearchSaved, getSearchSemantic, getSearchStats, getSearchStatus, getStorageStats, getTenantMemberships, getTenants, getTenantsById, getTenantsByTenantIdDocumentStats, getTenantsByTenantIdStats, getTenantsByTenantIdWorkspaceStats, getThreads, getThreadsById, getThreadsSearch, getTrainingExamples, getTrainingExamplesById, getTransactions, getTransactionsById, getUserProfiles, getUserProfilesById, getUserProfilesMe, getUsers, getUsersById, getUsersMe, getWallet, getWebhookConfigs, getWebhookConfigsById, getWebhookDeliveries, getWebhookDeliveriesById, getWorkspaceMemberships, getWorkspaces, getWorkspacesById, getWorkspacesByWorkspaceIdExtractionExports, getWorkspacesByWorkspaceIdExtractionExportsById, getWorkspacesMine, handleApiError, isRetryableError, paginateAll, paginateToArray, patchApiKeysById, patchApiKeysByIdAllocate, patchApiKeysByIdRevoke, patchApiKeysByIdRotate, patchApplicationsById, patchApplicationsByIdGrantCredits, patchBucketsById, patchConfigsByKey, patchExtractionDocumentsByIdFinishUpload, patchExtractionDocumentsByIdStatus, patchExtractionResultsByIdCorrections, patchExtractionResultsByIdRegenerate, patchExtractionSchemaFieldsById, patchExtractionSchemasById, patchInvitationsByIdAccept, patchInvitationsByIdResend, patchInvitationsByIdRevoke, patchMessagesById, patchNotificationPreferencesById, patchTenantMembershipsByTenantIdByUserId, patchTenantsById, patchThreadsById, patchTrainingExamplesById, patchUserProfilesById, patchUsersAuthResetPassword, patchUsersById, patchUsersByIdConfirmEmail, patchUsersByIdResetPassword, patchWalletAddons, patchWalletAddonsByAddonSlugCancel, patchWalletPlan, patchWebhookConfigsById, patchWebhookConfigsByIdRotateSecret, patchWorkspaceMembershipsByWorkspaceIdByUserId, patchWorkspacesById, patchWorkspacesByIdAllocate, postAgentsByIdClone, postAgentsByIdLearnFromDocument, postAgentsByIdTest, postAgentsByIdValidate, postAgentsCloneForWorkspace, postAgentsPredict, postAiChunksSearch, postAiConversations, postAiEmbed, postAiGraphEdges, postAiGraphNodes, postAiMessages, postAiSearch, postAiSearchAdvanced, postApiKeys, postApplications, postBuckets, postConfigs, postDocumentsBulkDelete, postDocumentsPresignedUpload, postExtractionBatches, postExtractionDocumentsBeginUpload, postExtractionDocumentsByIdView, postExtractionDocumentsUpload, postExtractionResults, postExtractionSchemaFields, postExtractionSchemas, postInvitationsAcceptByToken, postInvitationsInvite, postLlmAnalytics, postMessages, postNotificationPreferences, postObjectsBulkDestroy, postObjectsRegister, postPayments, postSearchReindex, postSearchSaved, postStorageSignDownload, postStorageSignUpload, postTenantMemberships, postTenants, postTenantsByIdBuyStorage, postTenantsByIdCredit, postTenantsByIdRemoveStorage, postTenantsIsv, postThreads, postThreadsActive, postThreadsByIdMessages, postThreadsByIdSummarize, postTokens, postTrainingExamples, postTrainingExamplesBulk, postTrainingExamplesBulkDelete, postUserProfiles, postUsersAuthConfirm, postUsersAuthLogin, postUsersAuthMagicLinkLogin, postUsersAuthMagicLinkRequest, postUsersAuthRegister, postUsersAuthRegisterWithOidc, postUsersRegisterIsv, postWebhookConfigs, postWebhookConfigsByIdTest, postWebhookDeliveriesByIdRetry, postWorkspaceMemberships, postWorkspaces, postWorkspacesByWorkspaceIdExtractionExports, retryWithBackoff, sleep, streamMessage, streamSSE, withRetry };
|
|
22914
|
+
export { type Account, type Agent, type AgentCreateRequest, AgentCreateSchema, type AiConfig, type ApiKey, type ApiKeyAllocateRequest, ApiKeyAllocateSchema, type ApiKeyCreateRequest, ApiKeyCreateSchema, type Application, type ApplicationCreateRequest, ApplicationCreateSchema, type AuditLog, AuthenticationError, AuthorizationError, type Bucket, type BucketCreateRequest, BucketCreateSchema, type ClientOptions$1 as ClientOptions, type Config$2 as Config, type Conversation, type CreditPackage, type Customer, DEFAULT_RETRY_CONFIG, type DeleteAgentsByIdData, type DeleteAgentsByIdError, type DeleteAgentsByIdErrors, type DeleteAgentsByIdResponses, 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 DeleteApiKeysByIdData, type DeleteApiKeysByIdError, type DeleteApiKeysByIdErrors, type DeleteApiKeysByIdResponses, type DeleteApplicationsByIdData, type DeleteApplicationsByIdError, type DeleteApplicationsByIdErrors, type DeleteApplicationsByIdResponses, type DeleteBucketsByIdData, type DeleteBucketsByIdError, type DeleteBucketsByIdErrors, type DeleteBucketsByIdResponses, type DeleteExtractionDocumentsByIdData, type DeleteExtractionDocumentsByIdError, type DeleteExtractionDocumentsByIdErrors, type DeleteExtractionDocumentsByIdResponses, type DeleteExtractionSchemaFieldsByIdData, type DeleteExtractionSchemaFieldsByIdError, type DeleteExtractionSchemaFieldsByIdErrors, type DeleteExtractionSchemaFieldsByIdResponses, type DeleteMessagesByIdData, type DeleteMessagesByIdError, type DeleteMessagesByIdErrors, type DeleteMessagesByIdResponses, type DeleteNotificationPreferencesByIdData, type DeleteNotificationPreferencesByIdError, type DeleteNotificationPreferencesByIdErrors, type DeleteNotificationPreferencesByIdResponses, type DeleteObjectsByIdData, type DeleteObjectsByIdError, type DeleteObjectsByIdErrors, type DeleteObjectsByIdResponses, 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 DeleteUserProfilesByIdData, type DeleteUserProfilesByIdError, type DeleteUserProfilesByIdErrors, type DeleteUserProfilesByIdResponses, 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 EmbedRequest, EmbedRequestSchema, type Embedding, type ErrorResponse, type Errors, type ExtractionBatch, type ExtractionDocument, type ExtractionExport, type ExtractionResult, type ExtractionSchema, type ExtractionSchemaField, type GetAgentsByIdData, type GetAgentsByIdError, type GetAgentsByIdErrors, type GetAgentsByIdResponse, type GetAgentsByIdResponses, type GetAgentsByIdTrainingStatsData, type GetAgentsByIdTrainingStatsError, type GetAgentsByIdTrainingStatsErrors, type GetAgentsByIdTrainingStatsResponse, type GetAgentsByIdTrainingStatsResponses, type GetAgentsData, type GetAgentsError, type GetAgentsErrors, type GetAgentsResponse, type GetAgentsResponses, 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 GetAiGraphNodesData, type GetAiGraphNodesError, type GetAiGraphNodesErrors, type GetAiGraphNodesResponse, type GetAiGraphNodesResponses, type GetAiMessagesData, type GetAiMessagesError, type GetAiMessagesErrors, type GetAiMessagesResponse, type GetAiMessagesResponses, type GetApiKeysByIdData, type GetApiKeysByIdError, type GetApiKeysByIdErrors, type GetApiKeysByIdResponse, type GetApiKeysByIdResponses, type GetApiKeysData, type GetApiKeysError, type GetApiKeysErrors, type GetApiKeysResponse, type GetApiKeysResponses, type GetApplicationsByIdData, type GetApplicationsByIdError, type GetApplicationsByIdErrors, type GetApplicationsByIdResponse, type GetApplicationsByIdResponses, type GetApplicationsBySlugBySlugData, type GetApplicationsBySlugBySlugError, type GetApplicationsBySlugBySlugErrors, type GetApplicationsBySlugBySlugResponse, type GetApplicationsBySlugBySlugResponses, type GetApplicationsData, type GetApplicationsError, type GetApplicationsErrors, type GetApplicationsResponse, type GetApplicationsResponses, type GetAuditLogsData, type GetAuditLogsError, type GetAuditLogsErrors, type GetAuditLogsResponse, type GetAuditLogsResponses, 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 GetExtractionDocumentsByIdData, type GetExtractionDocumentsByIdError, type GetExtractionDocumentsByIdErrors, type GetExtractionDocumentsByIdResponse, type GetExtractionDocumentsByIdResponses, type GetExtractionDocumentsByIdStatusData, type GetExtractionDocumentsByIdStatusError, type GetExtractionDocumentsByIdStatusErrors, type GetExtractionDocumentsByIdStatusResponse, type GetExtractionDocumentsByIdStatusResponses, type GetExtractionDocumentsData, type GetExtractionDocumentsError, type GetExtractionDocumentsErrors, type GetExtractionDocumentsResponse, type GetExtractionDocumentsResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdData, type GetExtractionDocumentsWorkspaceByWorkspaceIdError, type GetExtractionDocumentsWorkspaceByWorkspaceIdErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdResponses, type GetExtractionResultsByIdData, type GetExtractionResultsByIdError, type GetExtractionResultsByIdErrors, type GetExtractionResultsByIdResponse, type GetExtractionResultsByIdResponses, type GetExtractionResultsDocumentByDocumentIdData, type GetExtractionResultsDocumentByDocumentIdError, type GetExtractionResultsDocumentByDocumentIdErrors, type GetExtractionResultsDocumentByDocumentIdResponse, type GetExtractionResultsDocumentByDocumentIdResponses, type GetExtractionSchemaFieldsByIdData, type GetExtractionSchemaFieldsByIdError, type GetExtractionSchemaFieldsByIdErrors, type GetExtractionSchemaFieldsByIdResponse, type GetExtractionSchemaFieldsByIdResponses, type GetExtractionSchemaFieldsData, type GetExtractionSchemaFieldsError, type GetExtractionSchemaFieldsErrors, type GetExtractionSchemaFieldsResponse, type GetExtractionSchemaFieldsResponses, type GetExtractionSchemasByIdData, type GetExtractionSchemasByIdError, type GetExtractionSchemasByIdErrors, type GetExtractionSchemasByIdResponse, type GetExtractionSchemasByIdResponses, type GetExtractionSchemasWorkspaceByWorkspaceIdData, type GetExtractionSchemasWorkspaceByWorkspaceIdError, type GetExtractionSchemasWorkspaceByWorkspaceIdErrors, type GetExtractionSchemasWorkspaceByWorkspaceIdResponse, type GetExtractionSchemasWorkspaceByWorkspaceIdResponses, type GetInvitationsConsumeByTokenData, type GetInvitationsConsumeByTokenError, type GetInvitationsConsumeByTokenErrors, type GetInvitationsConsumeByTokenResponse, type GetInvitationsConsumeByTokenResponses, type GetInvitationsData, type GetInvitationsError, type GetInvitationsErrors, 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 GetNotificationLogsByIdData, type GetNotificationLogsByIdError, type GetNotificationLogsByIdErrors, type GetNotificationLogsByIdResponse, type GetNotificationLogsByIdResponses, type GetNotificationLogsData, type GetNotificationLogsError, type GetNotificationLogsErrors, type GetNotificationLogsResponse, type GetNotificationLogsResponses, 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 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 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 GetStorageStatsData, type GetStorageStatsError, type GetStorageStatsErrors, type GetStorageStatsResponse, type GetStorageStatsResponses, 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 GetThreadsByIdResponse, type GetThreadsByIdResponses, type GetThreadsData, type GetThreadsError, type GetThreadsErrors, type GetThreadsResponse, type GetThreadsResponses, type GetThreadsSearchData, type GetThreadsSearchError, type GetThreadsSearchErrors, type GetThreadsSearchResponse, type GetThreadsSearchResponses, type GetTrainingExamplesByIdData, type GetTrainingExamplesByIdError, type GetTrainingExamplesByIdErrors, type GetTrainingExamplesByIdResponse, type GetTrainingExamplesByIdResponses, type GetTrainingExamplesData, type GetTrainingExamplesError, type GetTrainingExamplesErrors, type GetTrainingExamplesResponse, type GetTrainingExamplesResponses, 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 GetUsersByIdData, type GetUsersByIdError, type GetUsersByIdErrors, type GetUsersByIdResponse, type GetUsersByIdResponses, type GetUsersData, type GetUsersError, type GetUsersErrors, type GetUsersMeData, type GetUsersMeError, type GetUsersMeErrors, type GetUsersMeResponse, type GetUsersMeResponses, type GetUsersResponse, type GetUsersResponses, type GetWalletData, type GetWalletError, type GetWalletErrors, type GetWalletResponse, type GetWalletResponses, type GetWebhookConfigsByIdData, type GetWebhookConfigsByIdError, type GetWebhookConfigsByIdErrors, type GetWebhookConfigsByIdResponse, type GetWebhookConfigsByIdResponses, type GetWebhookConfigsData, type GetWebhookConfigsError, type GetWebhookConfigsErrors, type GetWebhookConfigsResponse, type GetWebhookConfigsResponses, type GetWebhookDeliveriesByIdData, type GetWebhookDeliveriesByIdError, type GetWebhookDeliveriesByIdErrors, type GetWebhookDeliveriesByIdResponse, type GetWebhookDeliveriesByIdResponses, type GetWebhookDeliveriesData, type GetWebhookDeliveriesError, type GetWebhookDeliveriesErrors, type GetWebhookDeliveriesResponse, type GetWebhookDeliveriesResponses, type GetWorkspaceMembershipsData, type GetWorkspaceMembershipsError, type GetWorkspaceMembershipsErrors, type GetWorkspaceMembershipsResponse, type GetWorkspaceMembershipsResponses, type GetWorkspacesByIdData, type GetWorkspacesByIdError, type GetWorkspacesByIdErrors, type GetWorkspacesByIdResponse, type GetWorkspacesByIdResponses, type GetWorkspacesByWorkspaceIdExtractionExportsByIdData, type GetWorkspacesByWorkspaceIdExtractionExportsByIdError, type GetWorkspacesByWorkspaceIdExtractionExportsByIdErrors, type GetWorkspacesByWorkspaceIdExtractionExportsByIdResponse, type GetWorkspacesByWorkspaceIdExtractionExportsByIdResponses, type GetWorkspacesByWorkspaceIdExtractionExportsData, type GetWorkspacesByWorkspaceIdExtractionExportsError, type GetWorkspacesByWorkspaceIdExtractionExportsErrors, type GetWorkspacesByWorkspaceIdExtractionExportsResponse, type GetWorkspacesByWorkspaceIdExtractionExportsResponses, type GetWorkspacesData, type GetWorkspacesError, type GetWorkspacesErrors, type GetWorkspacesMineData, type GetWorkspacesMineError, type GetWorkspacesMineErrors, type GetWorkspacesMineResponse, type GetWorkspacesMineResponses, type GetWorkspacesResponse, type GetWorkspacesResponses, GptCoreError, type GraphEdge, type GraphNode, type Invitation, type InvitationCreateRequest, InvitationCreateSchema, 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 NotificationPreference, type OperationSuccess, type Options, type PaginatedResponse, type PaginationLinks, type PaginationOptions, type PatchAgentsByIdData, type PatchAgentsByIdError, type PatchAgentsByIdErrors, type PatchAgentsByIdResponse, type PatchAgentsByIdResponses, type PatchApiKeysByIdAllocateData, type PatchApiKeysByIdAllocateError, type PatchApiKeysByIdAllocateErrors, type PatchApiKeysByIdAllocateResponse, type PatchApiKeysByIdAllocateResponses, type PatchApiKeysByIdData, type PatchApiKeysByIdError, type PatchApiKeysByIdErrors, 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 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 PatchExtractionDocumentsByIdFinishUploadData, type PatchExtractionDocumentsByIdFinishUploadError, type PatchExtractionDocumentsByIdFinishUploadErrors, type PatchExtractionDocumentsByIdFinishUploadResponse, type PatchExtractionDocumentsByIdFinishUploadResponses, type PatchExtractionDocumentsByIdStatusData, type PatchExtractionDocumentsByIdStatusError, type PatchExtractionDocumentsByIdStatusErrors, type PatchExtractionDocumentsByIdStatusResponse, type PatchExtractionDocumentsByIdStatusResponses, type PatchExtractionResultsByIdCorrectionsData, type PatchExtractionResultsByIdCorrectionsError, type PatchExtractionResultsByIdCorrectionsErrors, type PatchExtractionResultsByIdCorrectionsResponse, type PatchExtractionResultsByIdCorrectionsResponses, type PatchExtractionResultsByIdRegenerateData, type PatchExtractionResultsByIdRegenerateError, type PatchExtractionResultsByIdRegenerateErrors, type PatchExtractionResultsByIdRegenerateResponse, type PatchExtractionResultsByIdRegenerateResponses, type PatchExtractionSchemaFieldsByIdData, type PatchExtractionSchemaFieldsByIdError, type PatchExtractionSchemaFieldsByIdErrors, type PatchExtractionSchemaFieldsByIdResponse, type PatchExtractionSchemaFieldsByIdResponses, type PatchExtractionSchemasByIdData, type PatchExtractionSchemasByIdError, type PatchExtractionSchemasByIdErrors, type PatchExtractionSchemasByIdResponse, type PatchExtractionSchemasByIdResponses, type PatchInvitationsByIdAcceptData, type PatchInvitationsByIdAcceptError, type PatchInvitationsByIdAcceptErrors, type PatchInvitationsByIdAcceptResponse, type PatchInvitationsByIdAcceptResponses, 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 PatchNotificationPreferencesByIdData, type PatchNotificationPreferencesByIdError, type PatchNotificationPreferencesByIdErrors, type PatchNotificationPreferencesByIdResponse, type PatchNotificationPreferencesByIdResponses, type PatchTenantMembershipsByTenantIdByUserIdData, type PatchTenantMembershipsByTenantIdByUserIdError, type PatchTenantMembershipsByTenantIdByUserIdErrors, type PatchTenantMembershipsByTenantIdByUserIdResponse, type PatchTenantMembershipsByTenantIdByUserIdResponses, type PatchTenantsByIdData, type PatchTenantsByIdError, type PatchTenantsByIdErrors, type PatchTenantsByIdResponse, type PatchTenantsByIdResponses, type PatchThreadsByIdData, type PatchThreadsByIdError, type PatchThreadsByIdErrors, type PatchThreadsByIdResponse, type PatchThreadsByIdResponses, type PatchTrainingExamplesByIdData, type PatchTrainingExamplesByIdError, type PatchTrainingExamplesByIdErrors, type PatchTrainingExamplesByIdResponse, type PatchTrainingExamplesByIdResponses, type PatchUserProfilesByIdData, type PatchUserProfilesByIdError, type PatchUserProfilesByIdErrors, type PatchUserProfilesByIdResponse, type PatchUserProfilesByIdResponses, 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 PatchWalletPlanData, type PatchWalletPlanError, type PatchWalletPlanErrors, type PatchWalletPlanResponse, type PatchWalletPlanResponses, 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 PatchWorkspacesByIdResponse, type PatchWorkspacesByIdResponses, type Payment, type PaymentMethod, type Plan, type PostAgentsByIdCloneData, type PostAgentsByIdCloneError, type PostAgentsByIdCloneErrors, type PostAgentsByIdCloneResponse, type PostAgentsByIdCloneResponses, type PostAgentsByIdLearnFromDocumentData, type PostAgentsByIdLearnFromDocumentError, type PostAgentsByIdLearnFromDocumentErrors, type PostAgentsByIdLearnFromDocumentResponse, type PostAgentsByIdLearnFromDocumentResponses, 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 PostAgentsError, type PostAgentsErrors, 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 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 PostExtractionDocumentsBeginUploadData, type PostExtractionDocumentsBeginUploadError, type PostExtractionDocumentsBeginUploadErrors, type PostExtractionDocumentsBeginUploadResponse, type PostExtractionDocumentsBeginUploadResponses, type PostExtractionDocumentsByIdViewData, type PostExtractionDocumentsByIdViewError, type PostExtractionDocumentsByIdViewErrors, type PostExtractionDocumentsByIdViewResponse, type PostExtractionDocumentsByIdViewResponses, type PostExtractionDocumentsUploadData, type PostExtractionDocumentsUploadError, type PostExtractionDocumentsUploadErrors, type PostExtractionDocumentsUploadResponse, type PostExtractionDocumentsUploadResponses, type PostExtractionResultsData, type PostExtractionResultsError, type PostExtractionResultsErrors, type PostExtractionResultsResponse, type PostExtractionResultsResponses, type PostExtractionSchemaFieldsData, type PostExtractionSchemaFieldsError, type PostExtractionSchemaFieldsErrors, type PostExtractionSchemaFieldsResponse, type PostExtractionSchemaFieldsResponses, type PostExtractionSchemasData, type PostExtractionSchemasError, type PostExtractionSchemasErrors, type PostExtractionSchemasResponse, type PostExtractionSchemasResponses, type PostInvitationsAcceptByTokenData, type PostInvitationsAcceptByTokenError, type PostInvitationsAcceptByTokenErrors, type PostInvitationsAcceptByTokenResponse, type PostInvitationsAcceptByTokenResponses, type PostInvitationsInviteData, type PostInvitationsInviteError, type PostInvitationsInviteErrors, type PostInvitationsInviteResponse, type PostInvitationsInviteResponses, type PostLlmAnalyticsData, type PostLlmAnalyticsError, type PostLlmAnalyticsErrors, type PostLlmAnalyticsResponse, type PostLlmAnalyticsResponses, type PostMessagesData, type PostMessagesError, type PostMessagesErrors, type PostMessagesResponse, type PostMessagesResponses, type PostNotificationPreferencesData, type PostNotificationPreferencesError, type PostNotificationPreferencesErrors, type PostNotificationPreferencesResponse, type PostNotificationPreferencesResponses, type PostObjectsBulkDestroyData, type PostObjectsBulkDestroyError, type PostObjectsBulkDestroyErrors, type PostObjectsBulkDestroyResponse, type PostObjectsBulkDestroyResponses, type PostObjectsRegisterData, type PostObjectsRegisterError, type PostObjectsRegisterErrors, type PostObjectsRegisterResponse, type PostObjectsRegisterResponses, type PostPaymentsData, type PostPaymentsError, type PostPaymentsErrors, type PostPaymentsResponse, type PostPaymentsResponses, type PostSearchReindexData, type PostSearchReindexError, type PostSearchReindexErrors, type PostSearchReindexResponse, type PostSearchReindexResponses, 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 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 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 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 PostUsersRegisterIsvData, type PostUsersRegisterIsvError, type PostUsersRegisterIsvErrors, type PostUsersRegisterIsvResponse, type PostUsersRegisterIsvResponses, type PostWebhookConfigsByIdTestData, type PostWebhookConfigsByIdTestError, type PostWebhookConfigsByIdTestErrors, type PostWebhookConfigsByIdTestResponse, type PostWebhookConfigsByIdTestResponses, type PostWebhookConfigsData, type PostWebhookConfigsError, type PostWebhookConfigsErrors, type PostWebhookConfigsResponse, type PostWebhookConfigsResponses, type PostWebhookDeliveriesByIdRetryData, type PostWebhookDeliveriesByIdRetryError, type PostWebhookDeliveriesByIdRetryErrors, type PostWebhookDeliveriesByIdRetryResponse, type PostWebhookDeliveriesByIdRetryResponses, type PostWorkspaceMembershipsData, type PostWorkspaceMembershipsError, type PostWorkspaceMembershipsErrors, type PostWorkspaceMembershipsResponse, type PostWorkspaceMembershipsResponses, 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 Search, type SearchRequest, SearchRequestSchema, type SemanticCacheEntry, ServerError, type StorageStats, type StreamMessageChunk, type StreamOptions, type Subscription, type Tenant, type TenantDocumentStats, type TenantMembership, type TenantStats, type Thread, type ThreadCreateRequest, ThreadCreateSchema, TimeoutError, type Token, type TrainingExample, type Transaction, type User, type UserProfile, ValidationError, type Wallet, type WebhookConfig, type WebhookDelivery, type Workspace, type WorkspaceCreateRequest, WorkspaceCreateSchema, type WorkspaceDocumentStats, type WorkspaceMembership, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, calculateBackoff, client, collectStreamedMessage, deleteAgentsById, deleteAiConversationsById, deleteAiGraphEdgesById, deleteAiGraphNodesById, deleteApiKeysById, deleteApplicationsById, deleteBucketsById, deleteExtractionDocumentsById, deleteExtractionSchemaFieldsById, deleteMessagesById, deleteNotificationPreferencesById, deleteObjectsById, deleteSearchSavedById, deleteTenantMembershipsByTenantIdByUserId, deleteTenantsById, deleteThreadsById, deleteTrainingExamplesById, deleteUserProfilesById, deleteWebhookConfigsById, deleteWorkspaceMembershipsByWorkspaceIdByUserId, deleteWorkspacesById, getAgents, getAgentsById, getAgentsByIdTrainingStats, getAiChunksDocumentByDocumentId, getAiConversations, getAiConversationsById, getAiGraphEdges, getAiGraphNodes, getAiMessages, getApiKeys, getApiKeysById, getApplications, getApplicationsById, getApplicationsBySlugBySlug, getAuditLogs, getBuckets, getBucketsById, getBucketsByIdObjects, getBucketsByIdStats, getConfigs, getCreditPackages, getCreditPackagesById, getCreditPackagesSlugBySlug, getDocumentsStats, getExtractionBatchesById, getExtractionBatchesByIdUploadUrls, getExtractionBatchesWorkspaceByWorkspaceId, getExtractionDocuments, getExtractionDocumentsById, getExtractionDocumentsByIdStatus, getExtractionDocumentsWorkspaceByWorkspaceId, getExtractionResultsById, getExtractionResultsDocumentByDocumentId, getExtractionSchemaFields, getExtractionSchemaFieldsById, getExtractionSchemasById, getExtractionSchemasWorkspaceByWorkspaceId, getInvitations, getInvitationsConsumeByToken, getLlmAnalytics, getLlmAnalyticsById, getLlmAnalyticsCosts, getLlmAnalyticsPlatform, getLlmAnalyticsSummary, getLlmAnalyticsUsage, getLlmAnalyticsWorkspace, getMessages, getMessagesById, getMessagesSearch, getNotificationLogs, getNotificationLogsById, getNotificationPreferences, getNotificationPreferencesById, getObjects, getObjectsById, getPlans, getPlansById, getPlansSlugBySlug, getSearch, getSearchHealth, getSearchIndexes, getSearchSaved, getSearchSemantic, getSearchStats, getSearchStatus, getStorageStats, getTenantMemberships, getTenants, getTenantsById, getTenantsByTenantIdDocumentStats, getTenantsByTenantIdStats, getTenantsByTenantIdWorkspaceStats, getThreads, getThreadsById, getThreadsSearch, getTrainingExamples, getTrainingExamplesById, getTransactions, getTransactionsById, getUserProfiles, getUserProfilesById, getUserProfilesMe, getUsers, getUsersById, getUsersMe, getWallet, getWebhookConfigs, getWebhookConfigsById, getWebhookDeliveries, getWebhookDeliveriesById, getWorkspaceMemberships, getWorkspaces, getWorkspacesById, getWorkspacesByWorkspaceIdExtractionExports, getWorkspacesByWorkspaceIdExtractionExportsById, getWorkspacesMine, handleApiError, isRetryableError, paginateAll, paginateToArray, patchAgentsById, patchApiKeysById, patchApiKeysByIdAllocate, patchApiKeysByIdRevoke, patchApiKeysByIdRotate, patchApplicationsById, patchApplicationsByIdGrantCredits, patchBucketsById, patchConfigsByKey, patchExtractionDocumentsByIdFinishUpload, patchExtractionDocumentsByIdStatus, patchExtractionResultsByIdCorrections, patchExtractionResultsByIdRegenerate, patchExtractionSchemaFieldsById, patchExtractionSchemasById, patchInvitationsByIdAccept, patchInvitationsByIdResend, patchInvitationsByIdRevoke, patchMessagesById, patchNotificationPreferencesById, patchTenantMembershipsByTenantIdByUserId, patchTenantsById, patchThreadsById, patchTrainingExamplesById, patchUserProfilesById, patchUsersAuthResetPassword, patchUsersByIdAdmin, patchUsersByIdAdminEmail, patchUsersByIdConfirmEmail, patchUsersByIdResetPassword, patchWalletAddons, patchWalletAddonsByAddonSlugCancel, patchWalletPlan, patchWebhookConfigsById, patchWebhookConfigsByIdRotateSecret, patchWorkspaceMembershipsByWorkspaceIdByUserId, patchWorkspacesById, patchWorkspacesByIdAllocate, postAgents, postAgentsByIdClone, postAgentsByIdLearnFromDocument, postAgentsByIdTest, postAgentsByIdValidate, postAgentsCloneForWorkspace, postAgentsPredict, postAiChunksSearch, postAiConversations, postAiEmbed, postAiGraphEdges, postAiGraphNodes, postAiMessages, postAiSearch, postAiSearchAdvanced, postApiKeys, postApplications, postBuckets, postConfigs, postDocumentsBulkDelete, postDocumentsPresignedUpload, postExtractionBatches, postExtractionDocumentsBeginUpload, postExtractionDocumentsByIdView, postExtractionDocumentsUpload, postExtractionResults, postExtractionSchemaFields, postExtractionSchemas, postInvitationsAcceptByToken, postInvitationsInvite, postLlmAnalytics, postMessages, postNotificationPreferences, postObjectsBulkDestroy, postObjectsRegister, postPayments, postSearchReindex, postSearchSaved, postStorageSignDownload, postStorageSignUpload, postTenantMemberships, postTenants, postTenantsByIdBuyStorage, postTenantsByIdCredit, postTenantsByIdRemoveStorage, postTenantsIsv, postThreads, postThreadsActive, postThreadsByIdMessages, postThreadsByIdSummarize, postTokens, postTrainingExamples, postTrainingExamplesBulk, postTrainingExamplesBulkDelete, postUserProfiles, postUsersAuthConfirm, postUsersAuthLogin, postUsersAuthMagicLinkLogin, postUsersAuthMagicLinkRequest, postUsersAuthRegister, postUsersAuthRegisterWithOidc, postUsersRegisterIsv, postWebhookConfigs, postWebhookConfigsByIdTest, postWebhookDeliveriesByIdRetry, postWorkspaceMemberships, postWorkspaces, postWorkspacesByWorkspaceIdExtractionExports, retryWithBackoff, sleep, streamMessage, streamSSE, withRetry };
|