@gpt-core/client 0.5.92 → 0.5.94
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 +898 -105
- package/dist/index.d.ts +898 -105
- package/dist/index.js +90 -8
- package/dist/index.mjs +81 -7
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1119,6 +1119,54 @@ type Tenant = {
|
|
|
1119
1119
|
};
|
|
1120
1120
|
type: string;
|
|
1121
1121
|
};
|
|
1122
|
+
/**
|
|
1123
|
+
* A "Resource object" representing a agent_version
|
|
1124
|
+
*/
|
|
1125
|
+
type AgentVersion = {
|
|
1126
|
+
/**
|
|
1127
|
+
* An attributes object for a agent_version
|
|
1128
|
+
*/
|
|
1129
|
+
attributes?: {
|
|
1130
|
+
/**
|
|
1131
|
+
* Field included by default.
|
|
1132
|
+
*/
|
|
1133
|
+
changes_summary?: string | null | unknown;
|
|
1134
|
+
/**
|
|
1135
|
+
* Field included by default.
|
|
1136
|
+
*/
|
|
1137
|
+
created_at: unknown;
|
|
1138
|
+
/**
|
|
1139
|
+
* Field included by default.
|
|
1140
|
+
*/
|
|
1141
|
+
is_active: boolean;
|
|
1142
|
+
/**
|
|
1143
|
+
* Field included by default.
|
|
1144
|
+
*/
|
|
1145
|
+
prompt_template: string;
|
|
1146
|
+
/**
|
|
1147
|
+
* Field included by default.
|
|
1148
|
+
*/
|
|
1149
|
+
schema_definition: {
|
|
1150
|
+
[key: string]: unknown;
|
|
1151
|
+
};
|
|
1152
|
+
/**
|
|
1153
|
+
* Field included by default.
|
|
1154
|
+
*/
|
|
1155
|
+
updated_at: unknown;
|
|
1156
|
+
/**
|
|
1157
|
+
* Field included by default.
|
|
1158
|
+
*/
|
|
1159
|
+
version_number: string;
|
|
1160
|
+
};
|
|
1161
|
+
id: string;
|
|
1162
|
+
/**
|
|
1163
|
+
* A relationships object for a agent_version
|
|
1164
|
+
*/
|
|
1165
|
+
relationships?: {
|
|
1166
|
+
[key: string]: never;
|
|
1167
|
+
};
|
|
1168
|
+
type: string;
|
|
1169
|
+
};
|
|
1122
1170
|
/**
|
|
1123
1171
|
* A "Resource object" representing a training_example
|
|
1124
1172
|
*/
|
|
@@ -1174,6 +1222,10 @@ type TrainingExample = {
|
|
|
1174
1222
|
* Field included by default.
|
|
1175
1223
|
*/
|
|
1176
1224
|
updated_at: unknown;
|
|
1225
|
+
/**
|
|
1226
|
+
* Field included by default.
|
|
1227
|
+
*/
|
|
1228
|
+
version_id?: string | null | unknown;
|
|
1177
1229
|
};
|
|
1178
1230
|
id: string;
|
|
1179
1231
|
/**
|
|
@@ -1195,6 +1247,62 @@ type TrainingExample = {
|
|
|
1195
1247
|
};
|
|
1196
1248
|
type: string;
|
|
1197
1249
|
};
|
|
1250
|
+
/**
|
|
1251
|
+
* A "Resource object" representing a field_template
|
|
1252
|
+
*/
|
|
1253
|
+
type FieldTemplate = {
|
|
1254
|
+
/**
|
|
1255
|
+
* An attributes object for a field_template
|
|
1256
|
+
*/
|
|
1257
|
+
attributes?: {
|
|
1258
|
+
/**
|
|
1259
|
+
* Field included by default.
|
|
1260
|
+
*/
|
|
1261
|
+
category: string;
|
|
1262
|
+
/**
|
|
1263
|
+
* Field included by default.
|
|
1264
|
+
*/
|
|
1265
|
+
created_at: unknown;
|
|
1266
|
+
/**
|
|
1267
|
+
* Field included by default.
|
|
1268
|
+
*/
|
|
1269
|
+
extraction_hints?: {
|
|
1270
|
+
[key: string]: unknown;
|
|
1271
|
+
} | null | unknown;
|
|
1272
|
+
/**
|
|
1273
|
+
* Field included by default.
|
|
1274
|
+
*/
|
|
1275
|
+
field_type: string;
|
|
1276
|
+
/**
|
|
1277
|
+
* Field included by default.
|
|
1278
|
+
*/
|
|
1279
|
+
is_system: boolean;
|
|
1280
|
+
/**
|
|
1281
|
+
* Field included by default.
|
|
1282
|
+
*/
|
|
1283
|
+
llm_instructions?: string | null | unknown;
|
|
1284
|
+
/**
|
|
1285
|
+
* Field included by default.
|
|
1286
|
+
*/
|
|
1287
|
+
name: string;
|
|
1288
|
+
/**
|
|
1289
|
+
* Field included by default.
|
|
1290
|
+
*/
|
|
1291
|
+
updated_at: unknown;
|
|
1292
|
+
/**
|
|
1293
|
+
* Field included by default.
|
|
1294
|
+
*/
|
|
1295
|
+
validation_pattern?: string | null | unknown;
|
|
1296
|
+
};
|
|
1297
|
+
id: string;
|
|
1298
|
+
/**
|
|
1299
|
+
* A relationships object for a field_template
|
|
1300
|
+
*/
|
|
1301
|
+
relationships?: {
|
|
1302
|
+
[key: string]: never;
|
|
1303
|
+
};
|
|
1304
|
+
type: string;
|
|
1305
|
+
};
|
|
1198
1306
|
/**
|
|
1199
1307
|
* A "Resource object" representing a user
|
|
1200
1308
|
*/
|
|
@@ -5802,6 +5910,137 @@ type PostSearchSavedResponses = {
|
|
|
5802
5910
|
};
|
|
5803
5911
|
};
|
|
5804
5912
|
type PostSearchSavedResponse = PostSearchSavedResponses[keyof PostSearchSavedResponses];
|
|
5913
|
+
type DeleteFieldTemplatesByIdData = {
|
|
5914
|
+
body?: never;
|
|
5915
|
+
headers: {
|
|
5916
|
+
/**
|
|
5917
|
+
* Application ID for authentication and routing
|
|
5918
|
+
*/
|
|
5919
|
+
"x-application-key": string;
|
|
5920
|
+
};
|
|
5921
|
+
path: {
|
|
5922
|
+
id: string;
|
|
5923
|
+
};
|
|
5924
|
+
query?: {
|
|
5925
|
+
/**
|
|
5926
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
5927
|
+
*/
|
|
5928
|
+
include?: string;
|
|
5929
|
+
/**
|
|
5930
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
5931
|
+
*/
|
|
5932
|
+
fields?: {
|
|
5933
|
+
[key: string]: unknown;
|
|
5934
|
+
};
|
|
5935
|
+
};
|
|
5936
|
+
url: "/field_templates/{id}";
|
|
5937
|
+
};
|
|
5938
|
+
type DeleteFieldTemplatesByIdErrors = {
|
|
5939
|
+
/**
|
|
5940
|
+
* Bad Request - Invalid input data or malformed request
|
|
5941
|
+
*/
|
|
5942
|
+
400: ErrorResponse;
|
|
5943
|
+
/**
|
|
5944
|
+
* Unauthorized - Missing or invalid authentication token
|
|
5945
|
+
*/
|
|
5946
|
+
401: ErrorResponse;
|
|
5947
|
+
/**
|
|
5948
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
5949
|
+
*/
|
|
5950
|
+
403: ErrorResponse;
|
|
5951
|
+
/**
|
|
5952
|
+
* Not Found - Resource does not exist
|
|
5953
|
+
*/
|
|
5954
|
+
404: ErrorResponse;
|
|
5955
|
+
/**
|
|
5956
|
+
* Too Many Requests - Rate limit exceeded
|
|
5957
|
+
*/
|
|
5958
|
+
429: ErrorResponse;
|
|
5959
|
+
/**
|
|
5960
|
+
* Internal Server Error - Unexpected server error
|
|
5961
|
+
*/
|
|
5962
|
+
500: ErrorResponse;
|
|
5963
|
+
/**
|
|
5964
|
+
* General Error
|
|
5965
|
+
*/
|
|
5966
|
+
default: Errors;
|
|
5967
|
+
};
|
|
5968
|
+
type DeleteFieldTemplatesByIdError = DeleteFieldTemplatesByIdErrors[keyof DeleteFieldTemplatesByIdErrors];
|
|
5969
|
+
type DeleteFieldTemplatesByIdResponses = {
|
|
5970
|
+
/**
|
|
5971
|
+
* Deleted successfully
|
|
5972
|
+
*/
|
|
5973
|
+
200: unknown;
|
|
5974
|
+
};
|
|
5975
|
+
type GetFieldTemplatesByIdData = {
|
|
5976
|
+
body?: never;
|
|
5977
|
+
headers: {
|
|
5978
|
+
/**
|
|
5979
|
+
* Application ID for authentication and routing
|
|
5980
|
+
*/
|
|
5981
|
+
"x-application-key": string;
|
|
5982
|
+
};
|
|
5983
|
+
path: {
|
|
5984
|
+
id: string;
|
|
5985
|
+
};
|
|
5986
|
+
query?: {
|
|
5987
|
+
/**
|
|
5988
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
5989
|
+
*/
|
|
5990
|
+
include?: string;
|
|
5991
|
+
/**
|
|
5992
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
5993
|
+
*/
|
|
5994
|
+
fields?: {
|
|
5995
|
+
[key: string]: unknown;
|
|
5996
|
+
};
|
|
5997
|
+
};
|
|
5998
|
+
url: "/field_templates/{id}";
|
|
5999
|
+
};
|
|
6000
|
+
type GetFieldTemplatesByIdErrors = {
|
|
6001
|
+
/**
|
|
6002
|
+
* Bad Request - Invalid input data or malformed request
|
|
6003
|
+
*/
|
|
6004
|
+
400: ErrorResponse;
|
|
6005
|
+
/**
|
|
6006
|
+
* Unauthorized - Missing or invalid authentication token
|
|
6007
|
+
*/
|
|
6008
|
+
401: ErrorResponse;
|
|
6009
|
+
/**
|
|
6010
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
6011
|
+
*/
|
|
6012
|
+
403: ErrorResponse;
|
|
6013
|
+
/**
|
|
6014
|
+
* Not Found - Resource does not exist
|
|
6015
|
+
*/
|
|
6016
|
+
404: ErrorResponse;
|
|
6017
|
+
/**
|
|
6018
|
+
* Too Many Requests - Rate limit exceeded
|
|
6019
|
+
*/
|
|
6020
|
+
429: ErrorResponse;
|
|
6021
|
+
/**
|
|
6022
|
+
* Internal Server Error - Unexpected server error
|
|
6023
|
+
*/
|
|
6024
|
+
500: ErrorResponse;
|
|
6025
|
+
/**
|
|
6026
|
+
* General Error
|
|
6027
|
+
*/
|
|
6028
|
+
default: Errors;
|
|
6029
|
+
};
|
|
6030
|
+
type GetFieldTemplatesByIdError = GetFieldTemplatesByIdErrors[keyof GetFieldTemplatesByIdErrors];
|
|
6031
|
+
type GetFieldTemplatesByIdResponses = {
|
|
6032
|
+
/**
|
|
6033
|
+
* Success
|
|
6034
|
+
*/
|
|
6035
|
+
200: {
|
|
6036
|
+
data?: FieldTemplate;
|
|
6037
|
+
included?: Array<unknown>;
|
|
6038
|
+
meta?: {
|
|
6039
|
+
[key: string]: unknown;
|
|
6040
|
+
};
|
|
6041
|
+
};
|
|
6042
|
+
};
|
|
6043
|
+
type GetFieldTemplatesByIdResponse = GetFieldTemplatesByIdResponses[keyof GetFieldTemplatesByIdResponses];
|
|
5805
6044
|
type GetUserProfilesMeData = {
|
|
5806
6045
|
body?: never;
|
|
5807
6046
|
headers: {
|
|
@@ -5823,9 +6062,171 @@ type GetUserProfilesMeData = {
|
|
|
5823
6062
|
[key: string]: unknown;
|
|
5824
6063
|
};
|
|
5825
6064
|
};
|
|
5826
|
-
url: "/user_profiles/me";
|
|
6065
|
+
url: "/user_profiles/me";
|
|
6066
|
+
};
|
|
6067
|
+
type GetUserProfilesMeErrors = {
|
|
6068
|
+
/**
|
|
6069
|
+
* Bad Request - Invalid input data or malformed request
|
|
6070
|
+
*/
|
|
6071
|
+
400: ErrorResponse;
|
|
6072
|
+
/**
|
|
6073
|
+
* Unauthorized - Missing or invalid authentication token
|
|
6074
|
+
*/
|
|
6075
|
+
401: ErrorResponse;
|
|
6076
|
+
/**
|
|
6077
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
6078
|
+
*/
|
|
6079
|
+
403: ErrorResponse;
|
|
6080
|
+
/**
|
|
6081
|
+
* Not Found - Resource does not exist
|
|
6082
|
+
*/
|
|
6083
|
+
404: ErrorResponse;
|
|
6084
|
+
/**
|
|
6085
|
+
* Too Many Requests - Rate limit exceeded
|
|
6086
|
+
*/
|
|
6087
|
+
429: ErrorResponse;
|
|
6088
|
+
/**
|
|
6089
|
+
* Internal Server Error - Unexpected server error
|
|
6090
|
+
*/
|
|
6091
|
+
500: ErrorResponse;
|
|
6092
|
+
/**
|
|
6093
|
+
* General Error
|
|
6094
|
+
*/
|
|
6095
|
+
default: Errors;
|
|
6096
|
+
};
|
|
6097
|
+
type GetUserProfilesMeError = GetUserProfilesMeErrors[keyof GetUserProfilesMeErrors];
|
|
6098
|
+
type GetUserProfilesMeResponses = {
|
|
6099
|
+
/**
|
|
6100
|
+
* Success
|
|
6101
|
+
*/
|
|
6102
|
+
200: {
|
|
6103
|
+
data?: UserProfile;
|
|
6104
|
+
included?: Array<unknown>;
|
|
6105
|
+
meta?: {
|
|
6106
|
+
[key: string]: unknown;
|
|
6107
|
+
};
|
|
6108
|
+
};
|
|
6109
|
+
};
|
|
6110
|
+
type GetUserProfilesMeResponse = GetUserProfilesMeResponses[keyof GetUserProfilesMeResponses];
|
|
6111
|
+
type PostInvitationsInviteData = {
|
|
6112
|
+
/**
|
|
6113
|
+
* Request body for the /invitations/invite operation on invitation resource
|
|
6114
|
+
*/
|
|
6115
|
+
body: {
|
|
6116
|
+
data: {
|
|
6117
|
+
attributes?: {
|
|
6118
|
+
email: string;
|
|
6119
|
+
inviter_id: string;
|
|
6120
|
+
role: "admin" | "member" | "editor" | "viewer";
|
|
6121
|
+
scope_id: string;
|
|
6122
|
+
scope_type: "tenant" | "workspace";
|
|
6123
|
+
};
|
|
6124
|
+
relationships?: {
|
|
6125
|
+
[key: string]: never;
|
|
6126
|
+
};
|
|
6127
|
+
type?: "invitation";
|
|
6128
|
+
};
|
|
6129
|
+
};
|
|
6130
|
+
headers: {
|
|
6131
|
+
/**
|
|
6132
|
+
* Application ID for authentication and routing
|
|
6133
|
+
*/
|
|
6134
|
+
"x-application-key": string;
|
|
6135
|
+
};
|
|
6136
|
+
path?: never;
|
|
6137
|
+
query?: {
|
|
6138
|
+
/**
|
|
6139
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
6140
|
+
*/
|
|
6141
|
+
include?: string;
|
|
6142
|
+
/**
|
|
6143
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
6144
|
+
*/
|
|
6145
|
+
fields?: {
|
|
6146
|
+
[key: string]: unknown;
|
|
6147
|
+
};
|
|
6148
|
+
};
|
|
6149
|
+
url: "/invitations/invite";
|
|
6150
|
+
};
|
|
6151
|
+
type PostInvitationsInviteErrors = {
|
|
6152
|
+
/**
|
|
6153
|
+
* Bad Request - Invalid input data or malformed request
|
|
6154
|
+
*/
|
|
6155
|
+
400: ErrorResponse;
|
|
6156
|
+
/**
|
|
6157
|
+
* Unauthorized - Missing or invalid authentication token
|
|
6158
|
+
*/
|
|
6159
|
+
401: ErrorResponse;
|
|
6160
|
+
/**
|
|
6161
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
6162
|
+
*/
|
|
6163
|
+
403: ErrorResponse;
|
|
6164
|
+
/**
|
|
6165
|
+
* Not Found - Resource does not exist
|
|
6166
|
+
*/
|
|
6167
|
+
404: ErrorResponse;
|
|
6168
|
+
/**
|
|
6169
|
+
* Too Many Requests - Rate limit exceeded
|
|
6170
|
+
*/
|
|
6171
|
+
429: ErrorResponse;
|
|
6172
|
+
/**
|
|
6173
|
+
* Internal Server Error - Unexpected server error
|
|
6174
|
+
*/
|
|
6175
|
+
500: ErrorResponse;
|
|
6176
|
+
/**
|
|
6177
|
+
* General Error
|
|
6178
|
+
*/
|
|
6179
|
+
default: Errors;
|
|
6180
|
+
};
|
|
6181
|
+
type PostInvitationsInviteError = PostInvitationsInviteErrors[keyof PostInvitationsInviteErrors];
|
|
6182
|
+
type PostInvitationsInviteResponses = {
|
|
6183
|
+
/**
|
|
6184
|
+
* Success
|
|
6185
|
+
*/
|
|
6186
|
+
201: {
|
|
6187
|
+
data?: Invitation;
|
|
6188
|
+
included?: Array<unknown>;
|
|
6189
|
+
meta?: {
|
|
6190
|
+
[key: string]: unknown;
|
|
6191
|
+
};
|
|
6192
|
+
};
|
|
6193
|
+
};
|
|
6194
|
+
type PostInvitationsInviteResponse = PostInvitationsInviteResponses[keyof PostInvitationsInviteResponses];
|
|
6195
|
+
type GetAgentVersionsData = {
|
|
6196
|
+
body?: never;
|
|
6197
|
+
headers: {
|
|
6198
|
+
/**
|
|
6199
|
+
* Application ID for authentication and routing
|
|
6200
|
+
*/
|
|
6201
|
+
"x-application-key": string;
|
|
6202
|
+
};
|
|
6203
|
+
path?: never;
|
|
6204
|
+
query?: {
|
|
6205
|
+
/**
|
|
6206
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
6207
|
+
*/
|
|
6208
|
+
filter?: {
|
|
6209
|
+
[key: string]: unknown;
|
|
6210
|
+
};
|
|
6211
|
+
/**
|
|
6212
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
6213
|
+
*/
|
|
6214
|
+
sort?: string;
|
|
6215
|
+
/**
|
|
6216
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
6217
|
+
*/
|
|
6218
|
+
include?: string;
|
|
6219
|
+
/**
|
|
6220
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
6221
|
+
*/
|
|
6222
|
+
fields?: {
|
|
6223
|
+
[key: string]: unknown;
|
|
6224
|
+
};
|
|
6225
|
+
agent_id?: string;
|
|
6226
|
+
};
|
|
6227
|
+
url: "/agent_versions";
|
|
5827
6228
|
};
|
|
5828
|
-
type
|
|
6229
|
+
type GetAgentVersionsErrors = {
|
|
5829
6230
|
/**
|
|
5830
6231
|
* Bad Request - Invalid input data or malformed request
|
|
5831
6232
|
*/
|
|
@@ -5855,37 +6256,43 @@ type GetUserProfilesMeErrors = {
|
|
|
5855
6256
|
*/
|
|
5856
6257
|
default: Errors;
|
|
5857
6258
|
};
|
|
5858
|
-
type
|
|
5859
|
-
type
|
|
6259
|
+
type GetAgentVersionsError = GetAgentVersionsErrors[keyof GetAgentVersionsErrors];
|
|
6260
|
+
type GetAgentVersionsResponses = {
|
|
5860
6261
|
/**
|
|
5861
6262
|
* Success
|
|
5862
6263
|
*/
|
|
5863
6264
|
200: {
|
|
5864
|
-
|
|
6265
|
+
/**
|
|
6266
|
+
* An array of resource objects representing a agent_version
|
|
6267
|
+
*/
|
|
6268
|
+
data?: Array<AgentVersion>;
|
|
5865
6269
|
included?: Array<unknown>;
|
|
5866
6270
|
meta?: {
|
|
5867
6271
|
[key: string]: unknown;
|
|
5868
6272
|
};
|
|
5869
6273
|
};
|
|
5870
6274
|
};
|
|
5871
|
-
type
|
|
5872
|
-
type
|
|
6275
|
+
type GetAgentVersionsResponse = GetAgentVersionsResponses[keyof GetAgentVersionsResponses];
|
|
6276
|
+
type PostAgentVersionsData = {
|
|
5873
6277
|
/**
|
|
5874
|
-
* Request body for the /
|
|
6278
|
+
* Request body for the /agent_versions operation on agent_version resource
|
|
5875
6279
|
*/
|
|
5876
6280
|
body: {
|
|
5877
6281
|
data: {
|
|
5878
6282
|
attributes?: {
|
|
5879
|
-
|
|
5880
|
-
|
|
5881
|
-
|
|
5882
|
-
|
|
5883
|
-
|
|
6283
|
+
agent_id: string;
|
|
6284
|
+
changes_summary?: string | unknown;
|
|
6285
|
+
parent_version_id?: string | unknown;
|
|
6286
|
+
prompt_template: string;
|
|
6287
|
+
schema_definition?: {
|
|
6288
|
+
[key: string]: unknown;
|
|
6289
|
+
} | unknown;
|
|
6290
|
+
version_number: string;
|
|
5884
6291
|
};
|
|
5885
6292
|
relationships?: {
|
|
5886
6293
|
[key: string]: never;
|
|
5887
6294
|
};
|
|
5888
|
-
type?: "
|
|
6295
|
+
type?: "agent_version";
|
|
5889
6296
|
};
|
|
5890
6297
|
};
|
|
5891
6298
|
headers: {
|
|
@@ -5907,9 +6314,9 @@ type PostInvitationsInviteData = {
|
|
|
5907
6314
|
[key: string]: unknown;
|
|
5908
6315
|
};
|
|
5909
6316
|
};
|
|
5910
|
-
url: "/
|
|
6317
|
+
url: "/agent_versions";
|
|
5911
6318
|
};
|
|
5912
|
-
type
|
|
6319
|
+
type PostAgentVersionsErrors = {
|
|
5913
6320
|
/**
|
|
5914
6321
|
* Bad Request - Invalid input data or malformed request
|
|
5915
6322
|
*/
|
|
@@ -5939,20 +6346,20 @@ type PostInvitationsInviteErrors = {
|
|
|
5939
6346
|
*/
|
|
5940
6347
|
default: Errors;
|
|
5941
6348
|
};
|
|
5942
|
-
type
|
|
5943
|
-
type
|
|
6349
|
+
type PostAgentVersionsError = PostAgentVersionsErrors[keyof PostAgentVersionsErrors];
|
|
6350
|
+
type PostAgentVersionsResponses = {
|
|
5944
6351
|
/**
|
|
5945
6352
|
* Success
|
|
5946
6353
|
*/
|
|
5947
6354
|
201: {
|
|
5948
|
-
data?:
|
|
6355
|
+
data?: AgentVersion;
|
|
5949
6356
|
included?: Array<unknown>;
|
|
5950
6357
|
meta?: {
|
|
5951
6358
|
[key: string]: unknown;
|
|
5952
6359
|
};
|
|
5953
6360
|
};
|
|
5954
6361
|
};
|
|
5955
|
-
type
|
|
6362
|
+
type PostAgentVersionsResponse = PostAgentVersionsResponses[keyof PostAgentVersionsResponses];
|
|
5956
6363
|
type DeleteWebhookConfigsByIdData = {
|
|
5957
6364
|
body?: never;
|
|
5958
6365
|
headers: {
|
|
@@ -6408,6 +6815,75 @@ type PostDocumentsBulkDeleteResponses = {
|
|
|
6408
6815
|
};
|
|
6409
6816
|
};
|
|
6410
6817
|
type PostDocumentsBulkDeleteResponse = PostDocumentsBulkDeleteResponses[keyof PostDocumentsBulkDeleteResponses];
|
|
6818
|
+
type GetAgentVersionsByIdData = {
|
|
6819
|
+
body?: never;
|
|
6820
|
+
headers: {
|
|
6821
|
+
/**
|
|
6822
|
+
* Application ID for authentication and routing
|
|
6823
|
+
*/
|
|
6824
|
+
"x-application-key": string;
|
|
6825
|
+
};
|
|
6826
|
+
path: {
|
|
6827
|
+
id: string;
|
|
6828
|
+
};
|
|
6829
|
+
query?: {
|
|
6830
|
+
/**
|
|
6831
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
6832
|
+
*/
|
|
6833
|
+
include?: string;
|
|
6834
|
+
/**
|
|
6835
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
6836
|
+
*/
|
|
6837
|
+
fields?: {
|
|
6838
|
+
[key: string]: unknown;
|
|
6839
|
+
};
|
|
6840
|
+
};
|
|
6841
|
+
url: "/agent_versions/{id}";
|
|
6842
|
+
};
|
|
6843
|
+
type GetAgentVersionsByIdErrors = {
|
|
6844
|
+
/**
|
|
6845
|
+
* Bad Request - Invalid input data or malformed request
|
|
6846
|
+
*/
|
|
6847
|
+
400: ErrorResponse;
|
|
6848
|
+
/**
|
|
6849
|
+
* Unauthorized - Missing or invalid authentication token
|
|
6850
|
+
*/
|
|
6851
|
+
401: ErrorResponse;
|
|
6852
|
+
/**
|
|
6853
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
6854
|
+
*/
|
|
6855
|
+
403: ErrorResponse;
|
|
6856
|
+
/**
|
|
6857
|
+
* Not Found - Resource does not exist
|
|
6858
|
+
*/
|
|
6859
|
+
404: ErrorResponse;
|
|
6860
|
+
/**
|
|
6861
|
+
* Too Many Requests - Rate limit exceeded
|
|
6862
|
+
*/
|
|
6863
|
+
429: ErrorResponse;
|
|
6864
|
+
/**
|
|
6865
|
+
* Internal Server Error - Unexpected server error
|
|
6866
|
+
*/
|
|
6867
|
+
500: ErrorResponse;
|
|
6868
|
+
/**
|
|
6869
|
+
* General Error
|
|
6870
|
+
*/
|
|
6871
|
+
default: Errors;
|
|
6872
|
+
};
|
|
6873
|
+
type GetAgentVersionsByIdError = GetAgentVersionsByIdErrors[keyof GetAgentVersionsByIdErrors];
|
|
6874
|
+
type GetAgentVersionsByIdResponses = {
|
|
6875
|
+
/**
|
|
6876
|
+
* Success
|
|
6877
|
+
*/
|
|
6878
|
+
200: {
|
|
6879
|
+
data?: AgentVersion;
|
|
6880
|
+
included?: Array<unknown>;
|
|
6881
|
+
meta?: {
|
|
6882
|
+
[key: string]: unknown;
|
|
6883
|
+
};
|
|
6884
|
+
};
|
|
6885
|
+
};
|
|
6886
|
+
type GetAgentVersionsByIdResponse = GetAgentVersionsByIdResponses[keyof GetAgentVersionsByIdResponses];
|
|
6411
6887
|
type PostAiChunksSearchData = {
|
|
6412
6888
|
/**
|
|
6413
6889
|
* Request body for the /ai/chunks/search operation on document_chunk resource
|
|
@@ -10343,21 +10819,8 @@ type GetNotificationLogsByIdResponses = {
|
|
|
10343
10819
|
};
|
|
10344
10820
|
};
|
|
10345
10821
|
type GetNotificationLogsByIdResponse = GetNotificationLogsByIdResponses[keyof GetNotificationLogsByIdResponses];
|
|
10346
|
-
type
|
|
10347
|
-
|
|
10348
|
-
* Request body for the /extraction/documents/:id/view operation on extraction_document resource
|
|
10349
|
-
*/
|
|
10350
|
-
body?: {
|
|
10351
|
-
data: {
|
|
10352
|
-
attributes?: {
|
|
10353
|
-
[key: string]: never;
|
|
10354
|
-
};
|
|
10355
|
-
relationships?: {
|
|
10356
|
-
[key: string]: never;
|
|
10357
|
-
};
|
|
10358
|
-
type?: "extraction_document";
|
|
10359
|
-
};
|
|
10360
|
-
};
|
|
10822
|
+
type GetExtractionDocumentsByIdViewData = {
|
|
10823
|
+
body?: never;
|
|
10361
10824
|
headers: {
|
|
10362
10825
|
/**
|
|
10363
10826
|
* Application ID for authentication and routing
|
|
@@ -10381,7 +10844,7 @@ type PostExtractionDocumentsByIdViewData = {
|
|
|
10381
10844
|
};
|
|
10382
10845
|
url: "/extraction/documents/{id}/view";
|
|
10383
10846
|
};
|
|
10384
|
-
type
|
|
10847
|
+
type GetExtractionDocumentsByIdViewErrors = {
|
|
10385
10848
|
/**
|
|
10386
10849
|
* Bad Request - Invalid input data or malformed request
|
|
10387
10850
|
*/
|
|
@@ -10411,12 +10874,12 @@ type PostExtractionDocumentsByIdViewErrors = {
|
|
|
10411
10874
|
*/
|
|
10412
10875
|
default: Errors;
|
|
10413
10876
|
};
|
|
10414
|
-
type
|
|
10415
|
-
type
|
|
10877
|
+
type GetExtractionDocumentsByIdViewError = GetExtractionDocumentsByIdViewErrors[keyof GetExtractionDocumentsByIdViewErrors];
|
|
10878
|
+
type GetExtractionDocumentsByIdViewResponses = {
|
|
10416
10879
|
/**
|
|
10417
10880
|
* Success
|
|
10418
10881
|
*/
|
|
10419
|
-
|
|
10882
|
+
200: {
|
|
10420
10883
|
data?: ExtractionDocument;
|
|
10421
10884
|
included?: Array<ExtractionResult>;
|
|
10422
10885
|
meta?: {
|
|
@@ -10424,7 +10887,7 @@ type PostExtractionDocumentsByIdViewResponses = {
|
|
|
10424
10887
|
};
|
|
10425
10888
|
};
|
|
10426
10889
|
};
|
|
10427
|
-
type
|
|
10890
|
+
type GetExtractionDocumentsByIdViewResponse = GetExtractionDocumentsByIdViewResponses[keyof GetExtractionDocumentsByIdViewResponses];
|
|
10428
10891
|
type GetWebhookDeliveriesByIdData = {
|
|
10429
10892
|
body?: never;
|
|
10430
10893
|
headers: {
|
|
@@ -10869,6 +11332,7 @@ type PostTrainingExamplesData = {
|
|
|
10869
11332
|
output_json: {
|
|
10870
11333
|
[key: string]: unknown;
|
|
10871
11334
|
};
|
|
11335
|
+
version_id?: string | unknown;
|
|
10872
11336
|
};
|
|
10873
11337
|
relationships?: {
|
|
10874
11338
|
[key: string]: never;
|
|
@@ -16452,9 +16916,159 @@ type GetExtractionDocumentsData = {
|
|
|
16452
16916
|
[key: string]: unknown;
|
|
16453
16917
|
};
|
|
16454
16918
|
};
|
|
16455
|
-
url: "/extraction/documents";
|
|
16919
|
+
url: "/extraction/documents";
|
|
16920
|
+
};
|
|
16921
|
+
type GetExtractionDocumentsErrors = {
|
|
16922
|
+
/**
|
|
16923
|
+
* Bad Request - Invalid input data or malformed request
|
|
16924
|
+
*/
|
|
16925
|
+
400: ErrorResponse;
|
|
16926
|
+
/**
|
|
16927
|
+
* Unauthorized - Missing or invalid authentication token
|
|
16928
|
+
*/
|
|
16929
|
+
401: ErrorResponse;
|
|
16930
|
+
/**
|
|
16931
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
16932
|
+
*/
|
|
16933
|
+
403: ErrorResponse;
|
|
16934
|
+
/**
|
|
16935
|
+
* Not Found - Resource does not exist
|
|
16936
|
+
*/
|
|
16937
|
+
404: ErrorResponse;
|
|
16938
|
+
/**
|
|
16939
|
+
* Too Many Requests - Rate limit exceeded
|
|
16940
|
+
*/
|
|
16941
|
+
429: ErrorResponse;
|
|
16942
|
+
/**
|
|
16943
|
+
* Internal Server Error - Unexpected server error
|
|
16944
|
+
*/
|
|
16945
|
+
500: ErrorResponse;
|
|
16946
|
+
/**
|
|
16947
|
+
* General Error
|
|
16948
|
+
*/
|
|
16949
|
+
default: Errors;
|
|
16950
|
+
};
|
|
16951
|
+
type GetExtractionDocumentsError = GetExtractionDocumentsErrors[keyof GetExtractionDocumentsErrors];
|
|
16952
|
+
type GetExtractionDocumentsResponses = {
|
|
16953
|
+
/**
|
|
16954
|
+
* Success
|
|
16955
|
+
*/
|
|
16956
|
+
200: {
|
|
16957
|
+
/**
|
|
16958
|
+
* An array of resource objects representing a extraction_document
|
|
16959
|
+
*/
|
|
16960
|
+
data?: Array<ExtractionDocument>;
|
|
16961
|
+
included?: Array<ExtractionResult>;
|
|
16962
|
+
meta?: {
|
|
16963
|
+
[key: string]: unknown;
|
|
16964
|
+
};
|
|
16965
|
+
};
|
|
16966
|
+
};
|
|
16967
|
+
type GetExtractionDocumentsResponse = GetExtractionDocumentsResponses[keyof GetExtractionDocumentsResponses];
|
|
16968
|
+
type DeleteTenantMembershipsByTenantIdByUserIdData = {
|
|
16969
|
+
body?: never;
|
|
16970
|
+
headers: {
|
|
16971
|
+
/**
|
|
16972
|
+
* Application ID for authentication and routing
|
|
16973
|
+
*/
|
|
16974
|
+
"x-application-key": string;
|
|
16975
|
+
};
|
|
16976
|
+
path: {
|
|
16977
|
+
user_id: string;
|
|
16978
|
+
tenant_id: string;
|
|
16979
|
+
};
|
|
16980
|
+
query?: {
|
|
16981
|
+
/**
|
|
16982
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
16983
|
+
*/
|
|
16984
|
+
include?: string;
|
|
16985
|
+
/**
|
|
16986
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
16987
|
+
*/
|
|
16988
|
+
fields?: {
|
|
16989
|
+
[key: string]: unknown;
|
|
16990
|
+
};
|
|
16991
|
+
};
|
|
16992
|
+
url: "/tenant-memberships/{tenant_id}/{user_id}";
|
|
16993
|
+
};
|
|
16994
|
+
type DeleteTenantMembershipsByTenantIdByUserIdErrors = {
|
|
16995
|
+
/**
|
|
16996
|
+
* Bad Request - Invalid input data or malformed request
|
|
16997
|
+
*/
|
|
16998
|
+
400: ErrorResponse;
|
|
16999
|
+
/**
|
|
17000
|
+
* Unauthorized - Missing or invalid authentication token
|
|
17001
|
+
*/
|
|
17002
|
+
401: ErrorResponse;
|
|
17003
|
+
/**
|
|
17004
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
17005
|
+
*/
|
|
17006
|
+
403: ErrorResponse;
|
|
17007
|
+
/**
|
|
17008
|
+
* Not Found - Resource does not exist
|
|
17009
|
+
*/
|
|
17010
|
+
404: ErrorResponse;
|
|
17011
|
+
/**
|
|
17012
|
+
* Too Many Requests - Rate limit exceeded
|
|
17013
|
+
*/
|
|
17014
|
+
429: ErrorResponse;
|
|
17015
|
+
/**
|
|
17016
|
+
* Internal Server Error - Unexpected server error
|
|
17017
|
+
*/
|
|
17018
|
+
500: ErrorResponse;
|
|
17019
|
+
/**
|
|
17020
|
+
* General Error
|
|
17021
|
+
*/
|
|
17022
|
+
default: Errors;
|
|
17023
|
+
};
|
|
17024
|
+
type DeleteTenantMembershipsByTenantIdByUserIdError = DeleteTenantMembershipsByTenantIdByUserIdErrors[keyof DeleteTenantMembershipsByTenantIdByUserIdErrors];
|
|
17025
|
+
type DeleteTenantMembershipsByTenantIdByUserIdResponses = {
|
|
17026
|
+
/**
|
|
17027
|
+
* Deleted successfully
|
|
17028
|
+
*/
|
|
17029
|
+
200: unknown;
|
|
17030
|
+
};
|
|
17031
|
+
type PatchTenantMembershipsByTenantIdByUserIdData = {
|
|
17032
|
+
/**
|
|
17033
|
+
* Request body for the /tenant-memberships/:tenant_id/:user_id operation on tenant-membership resource
|
|
17034
|
+
*/
|
|
17035
|
+
body?: {
|
|
17036
|
+
data: {
|
|
17037
|
+
attributes?: {
|
|
17038
|
+
role?: "owner" | "admin" | "member" | unknown;
|
|
17039
|
+
};
|
|
17040
|
+
id: string;
|
|
17041
|
+
relationships?: {
|
|
17042
|
+
[key: string]: never;
|
|
17043
|
+
};
|
|
17044
|
+
type?: "tenant-membership";
|
|
17045
|
+
};
|
|
17046
|
+
};
|
|
17047
|
+
headers: {
|
|
17048
|
+
/**
|
|
17049
|
+
* Application ID for authentication and routing
|
|
17050
|
+
*/
|
|
17051
|
+
"x-application-key": string;
|
|
17052
|
+
};
|
|
17053
|
+
path: {
|
|
17054
|
+
user_id: string;
|
|
17055
|
+
tenant_id: string;
|
|
17056
|
+
};
|
|
17057
|
+
query?: {
|
|
17058
|
+
/**
|
|
17059
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
17060
|
+
*/
|
|
17061
|
+
include?: string;
|
|
17062
|
+
/**
|
|
17063
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
17064
|
+
*/
|
|
17065
|
+
fields?: {
|
|
17066
|
+
[key: string]: unknown;
|
|
17067
|
+
};
|
|
17068
|
+
};
|
|
17069
|
+
url: "/tenant-memberships/{tenant_id}/{user_id}";
|
|
16456
17070
|
};
|
|
16457
|
-
type
|
|
17071
|
+
type PatchTenantMembershipsByTenantIdByUserIdErrors = {
|
|
16458
17072
|
/**
|
|
16459
17073
|
* Bad Request - Invalid input data or malformed request
|
|
16460
17074
|
*/
|
|
@@ -16484,25 +17098,36 @@ type GetExtractionDocumentsErrors = {
|
|
|
16484
17098
|
*/
|
|
16485
17099
|
default: Errors;
|
|
16486
17100
|
};
|
|
16487
|
-
type
|
|
16488
|
-
type
|
|
17101
|
+
type PatchTenantMembershipsByTenantIdByUserIdError = PatchTenantMembershipsByTenantIdByUserIdErrors[keyof PatchTenantMembershipsByTenantIdByUserIdErrors];
|
|
17102
|
+
type PatchTenantMembershipsByTenantIdByUserIdResponses = {
|
|
16489
17103
|
/**
|
|
16490
17104
|
* Success
|
|
16491
17105
|
*/
|
|
16492
17106
|
200: {
|
|
16493
|
-
|
|
16494
|
-
|
|
16495
|
-
*/
|
|
16496
|
-
data?: Array<ExtractionDocument>;
|
|
16497
|
-
included?: Array<ExtractionResult>;
|
|
17107
|
+
data?: TenantMembership;
|
|
17108
|
+
included?: Array<unknown>;
|
|
16498
17109
|
meta?: {
|
|
16499
17110
|
[key: string]: unknown;
|
|
16500
17111
|
};
|
|
16501
17112
|
};
|
|
16502
17113
|
};
|
|
16503
|
-
type
|
|
16504
|
-
type
|
|
16505
|
-
|
|
17114
|
+
type PatchTenantMembershipsByTenantIdByUserIdResponse = PatchTenantMembershipsByTenantIdByUserIdResponses[keyof PatchTenantMembershipsByTenantIdByUserIdResponses];
|
|
17115
|
+
type PatchWebhookConfigsByIdRotateSecretData = {
|
|
17116
|
+
/**
|
|
17117
|
+
* Request body for the /webhook_configs/:id/rotate_secret operation on webhook_config resource
|
|
17118
|
+
*/
|
|
17119
|
+
body?: {
|
|
17120
|
+
data: {
|
|
17121
|
+
attributes?: {
|
|
17122
|
+
[key: string]: never;
|
|
17123
|
+
};
|
|
17124
|
+
id: string;
|
|
17125
|
+
relationships?: {
|
|
17126
|
+
[key: string]: never;
|
|
17127
|
+
};
|
|
17128
|
+
type?: "webhook_config";
|
|
17129
|
+
};
|
|
17130
|
+
};
|
|
16506
17131
|
headers: {
|
|
16507
17132
|
/**
|
|
16508
17133
|
* Application ID for authentication and routing
|
|
@@ -16510,8 +17135,7 @@ type DeleteTenantMembershipsByTenantIdByUserIdData = {
|
|
|
16510
17135
|
"x-application-key": string;
|
|
16511
17136
|
};
|
|
16512
17137
|
path: {
|
|
16513
|
-
|
|
16514
|
-
tenant_id: string;
|
|
17138
|
+
id: string;
|
|
16515
17139
|
};
|
|
16516
17140
|
query?: {
|
|
16517
17141
|
/**
|
|
@@ -16525,9 +17149,9 @@ type DeleteTenantMembershipsByTenantIdByUserIdData = {
|
|
|
16525
17149
|
[key: string]: unknown;
|
|
16526
17150
|
};
|
|
16527
17151
|
};
|
|
16528
|
-
url: "/
|
|
17152
|
+
url: "/webhook_configs/{id}/rotate_secret";
|
|
16529
17153
|
};
|
|
16530
|
-
type
|
|
17154
|
+
type PatchWebhookConfigsByIdRotateSecretErrors = {
|
|
16531
17155
|
/**
|
|
16532
17156
|
* Bad Request - Invalid input data or malformed request
|
|
16533
17157
|
*/
|
|
@@ -16557,40 +17181,40 @@ type DeleteTenantMembershipsByTenantIdByUserIdErrors = {
|
|
|
16557
17181
|
*/
|
|
16558
17182
|
default: Errors;
|
|
16559
17183
|
};
|
|
16560
|
-
type
|
|
16561
|
-
type
|
|
16562
|
-
/**
|
|
16563
|
-
* Deleted successfully
|
|
16564
|
-
*/
|
|
16565
|
-
200: unknown;
|
|
16566
|
-
};
|
|
16567
|
-
type PatchTenantMembershipsByTenantIdByUserIdData = {
|
|
17184
|
+
type PatchWebhookConfigsByIdRotateSecretError = PatchWebhookConfigsByIdRotateSecretErrors[keyof PatchWebhookConfigsByIdRotateSecretErrors];
|
|
17185
|
+
type PatchWebhookConfigsByIdRotateSecretResponses = {
|
|
16568
17186
|
/**
|
|
16569
|
-
*
|
|
17187
|
+
* Success
|
|
16570
17188
|
*/
|
|
16571
|
-
|
|
16572
|
-
data
|
|
16573
|
-
|
|
16574
|
-
|
|
16575
|
-
|
|
16576
|
-
id: string;
|
|
16577
|
-
relationships?: {
|
|
16578
|
-
[key: string]: never;
|
|
16579
|
-
};
|
|
16580
|
-
type?: "tenant-membership";
|
|
17189
|
+
200: {
|
|
17190
|
+
data?: WebhookConfig;
|
|
17191
|
+
included?: Array<unknown>;
|
|
17192
|
+
meta?: {
|
|
17193
|
+
[key: string]: unknown;
|
|
16581
17194
|
};
|
|
16582
17195
|
};
|
|
17196
|
+
};
|
|
17197
|
+
type PatchWebhookConfigsByIdRotateSecretResponse = PatchWebhookConfigsByIdRotateSecretResponses[keyof PatchWebhookConfigsByIdRotateSecretResponses];
|
|
17198
|
+
type GetFieldTemplatesData = {
|
|
17199
|
+
body?: never;
|
|
16583
17200
|
headers: {
|
|
16584
17201
|
/**
|
|
16585
17202
|
* Application ID for authentication and routing
|
|
16586
17203
|
*/
|
|
16587
17204
|
"x-application-key": string;
|
|
16588
17205
|
};
|
|
16589
|
-
path
|
|
16590
|
-
user_id: string;
|
|
16591
|
-
tenant_id: string;
|
|
16592
|
-
};
|
|
17206
|
+
path?: never;
|
|
16593
17207
|
query?: {
|
|
17208
|
+
/**
|
|
17209
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
17210
|
+
*/
|
|
17211
|
+
filter?: {
|
|
17212
|
+
[key: string]: unknown;
|
|
17213
|
+
};
|
|
17214
|
+
/**
|
|
17215
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
17216
|
+
*/
|
|
17217
|
+
sort?: string;
|
|
16594
17218
|
/**
|
|
16595
17219
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
16596
17220
|
*/
|
|
@@ -16601,10 +17225,12 @@ type PatchTenantMembershipsByTenantIdByUserIdData = {
|
|
|
16601
17225
|
fields?: {
|
|
16602
17226
|
[key: string]: unknown;
|
|
16603
17227
|
};
|
|
17228
|
+
category?: string;
|
|
17229
|
+
is_system?: boolean;
|
|
16604
17230
|
};
|
|
16605
|
-
url: "/
|
|
17231
|
+
url: "/field_templates";
|
|
16606
17232
|
};
|
|
16607
|
-
type
|
|
17233
|
+
type GetFieldTemplatesErrors = {
|
|
16608
17234
|
/**
|
|
16609
17235
|
* Bad Request - Invalid input data or malformed request
|
|
16610
17236
|
*/
|
|
@@ -16634,34 +17260,44 @@ type PatchTenantMembershipsByTenantIdByUserIdErrors = {
|
|
|
16634
17260
|
*/
|
|
16635
17261
|
default: Errors;
|
|
16636
17262
|
};
|
|
16637
|
-
type
|
|
16638
|
-
type
|
|
17263
|
+
type GetFieldTemplatesError = GetFieldTemplatesErrors[keyof GetFieldTemplatesErrors];
|
|
17264
|
+
type GetFieldTemplatesResponses = {
|
|
16639
17265
|
/**
|
|
16640
17266
|
* Success
|
|
16641
17267
|
*/
|
|
16642
17268
|
200: {
|
|
16643
|
-
|
|
17269
|
+
/**
|
|
17270
|
+
* An array of resource objects representing a field_template
|
|
17271
|
+
*/
|
|
17272
|
+
data?: Array<FieldTemplate>;
|
|
16644
17273
|
included?: Array<unknown>;
|
|
16645
17274
|
meta?: {
|
|
16646
17275
|
[key: string]: unknown;
|
|
16647
17276
|
};
|
|
16648
17277
|
};
|
|
16649
17278
|
};
|
|
16650
|
-
type
|
|
16651
|
-
type
|
|
17279
|
+
type GetFieldTemplatesResponse = GetFieldTemplatesResponses[keyof GetFieldTemplatesResponses];
|
|
17280
|
+
type PostFieldTemplatesData = {
|
|
16652
17281
|
/**
|
|
16653
|
-
* Request body for the /
|
|
17282
|
+
* Request body for the /field_templates operation on field_template resource
|
|
16654
17283
|
*/
|
|
16655
|
-
body
|
|
17284
|
+
body: {
|
|
16656
17285
|
data: {
|
|
16657
17286
|
attributes?: {
|
|
16658
|
-
|
|
17287
|
+
category: string;
|
|
17288
|
+
extraction_hints?: {
|
|
17289
|
+
[key: string]: unknown;
|
|
17290
|
+
} | unknown;
|
|
17291
|
+
field_type?: string | unknown;
|
|
17292
|
+
is_system?: boolean | unknown;
|
|
17293
|
+
llm_instructions?: string | unknown;
|
|
17294
|
+
name: string;
|
|
17295
|
+
validation_pattern?: string | unknown;
|
|
16659
17296
|
};
|
|
16660
|
-
id: string;
|
|
16661
17297
|
relationships?: {
|
|
16662
17298
|
[key: string]: never;
|
|
16663
17299
|
};
|
|
16664
|
-
type?: "
|
|
17300
|
+
type?: "field_template";
|
|
16665
17301
|
};
|
|
16666
17302
|
};
|
|
16667
17303
|
headers: {
|
|
@@ -16670,9 +17306,7 @@ type PatchWebhookConfigsByIdRotateSecretData = {
|
|
|
16670
17306
|
*/
|
|
16671
17307
|
"x-application-key": string;
|
|
16672
17308
|
};
|
|
16673
|
-
path
|
|
16674
|
-
id: string;
|
|
16675
|
-
};
|
|
17309
|
+
path?: never;
|
|
16676
17310
|
query?: {
|
|
16677
17311
|
/**
|
|
16678
17312
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -16685,9 +17319,9 @@ type PatchWebhookConfigsByIdRotateSecretData = {
|
|
|
16685
17319
|
[key: string]: unknown;
|
|
16686
17320
|
};
|
|
16687
17321
|
};
|
|
16688
|
-
url: "/
|
|
17322
|
+
url: "/field_templates";
|
|
16689
17323
|
};
|
|
16690
|
-
type
|
|
17324
|
+
type PostFieldTemplatesErrors = {
|
|
16691
17325
|
/**
|
|
16692
17326
|
* Bad Request - Invalid input data or malformed request
|
|
16693
17327
|
*/
|
|
@@ -16717,20 +17351,20 @@ type PatchWebhookConfigsByIdRotateSecretErrors = {
|
|
|
16717
17351
|
*/
|
|
16718
17352
|
default: Errors;
|
|
16719
17353
|
};
|
|
16720
|
-
type
|
|
16721
|
-
type
|
|
17354
|
+
type PostFieldTemplatesError = PostFieldTemplatesErrors[keyof PostFieldTemplatesErrors];
|
|
17355
|
+
type PostFieldTemplatesResponses = {
|
|
16722
17356
|
/**
|
|
16723
17357
|
* Success
|
|
16724
17358
|
*/
|
|
16725
|
-
|
|
16726
|
-
data?:
|
|
17359
|
+
201: {
|
|
17360
|
+
data?: FieldTemplate;
|
|
16727
17361
|
included?: Array<unknown>;
|
|
16728
17362
|
meta?: {
|
|
16729
17363
|
[key: string]: unknown;
|
|
16730
17364
|
};
|
|
16731
17365
|
};
|
|
16732
17366
|
};
|
|
16733
|
-
type
|
|
17367
|
+
type PostFieldTemplatesResponse = PostFieldTemplatesResponses[keyof PostFieldTemplatesResponses];
|
|
16734
17368
|
type GetAiMessagesData = {
|
|
16735
17369
|
body?: never;
|
|
16736
17370
|
headers: {
|
|
@@ -18145,6 +18779,89 @@ type PostWebhookConfigsResponses = {
|
|
|
18145
18779
|
};
|
|
18146
18780
|
};
|
|
18147
18781
|
type PostWebhookConfigsResponse = PostWebhookConfigsResponses[keyof PostWebhookConfigsResponses];
|
|
18782
|
+
type PostAgentsByIdPublishVersionData = {
|
|
18783
|
+
/**
|
|
18784
|
+
* Request body for the /agents/:id/publish_version operation on agent resource
|
|
18785
|
+
*/
|
|
18786
|
+
body: {
|
|
18787
|
+
data: {
|
|
18788
|
+
attributes?: {
|
|
18789
|
+
changes_summary?: string | unknown;
|
|
18790
|
+
version_number: string;
|
|
18791
|
+
};
|
|
18792
|
+
relationships?: {
|
|
18793
|
+
[key: string]: never;
|
|
18794
|
+
};
|
|
18795
|
+
type?: "agent";
|
|
18796
|
+
};
|
|
18797
|
+
};
|
|
18798
|
+
headers: {
|
|
18799
|
+
/**
|
|
18800
|
+
* Application ID for authentication and routing
|
|
18801
|
+
*/
|
|
18802
|
+
"x-application-key": string;
|
|
18803
|
+
};
|
|
18804
|
+
path: {
|
|
18805
|
+
id: string;
|
|
18806
|
+
};
|
|
18807
|
+
query?: {
|
|
18808
|
+
/**
|
|
18809
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
18810
|
+
*/
|
|
18811
|
+
include?: string;
|
|
18812
|
+
/**
|
|
18813
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
18814
|
+
*/
|
|
18815
|
+
fields?: {
|
|
18816
|
+
[key: string]: unknown;
|
|
18817
|
+
};
|
|
18818
|
+
};
|
|
18819
|
+
url: "/agents/{id}/publish_version";
|
|
18820
|
+
};
|
|
18821
|
+
type PostAgentsByIdPublishVersionErrors = {
|
|
18822
|
+
/**
|
|
18823
|
+
* Bad Request - Invalid input data or malformed request
|
|
18824
|
+
*/
|
|
18825
|
+
400: ErrorResponse;
|
|
18826
|
+
/**
|
|
18827
|
+
* Unauthorized - Missing or invalid authentication token
|
|
18828
|
+
*/
|
|
18829
|
+
401: ErrorResponse;
|
|
18830
|
+
/**
|
|
18831
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
18832
|
+
*/
|
|
18833
|
+
403: ErrorResponse;
|
|
18834
|
+
/**
|
|
18835
|
+
* Not Found - Resource does not exist
|
|
18836
|
+
*/
|
|
18837
|
+
404: ErrorResponse;
|
|
18838
|
+
/**
|
|
18839
|
+
* Too Many Requests - Rate limit exceeded
|
|
18840
|
+
*/
|
|
18841
|
+
429: ErrorResponse;
|
|
18842
|
+
/**
|
|
18843
|
+
* Internal Server Error - Unexpected server error
|
|
18844
|
+
*/
|
|
18845
|
+
500: ErrorResponse;
|
|
18846
|
+
/**
|
|
18847
|
+
* General Error
|
|
18848
|
+
*/
|
|
18849
|
+
default: Errors;
|
|
18850
|
+
};
|
|
18851
|
+
type PostAgentsByIdPublishVersionError = PostAgentsByIdPublishVersionErrors[keyof PostAgentsByIdPublishVersionErrors];
|
|
18852
|
+
type PostAgentsByIdPublishVersionResponses = {
|
|
18853
|
+
/**
|
|
18854
|
+
* Success
|
|
18855
|
+
*/
|
|
18856
|
+
201: {
|
|
18857
|
+
data?: Agent;
|
|
18858
|
+
included?: Array<unknown>;
|
|
18859
|
+
meta?: {
|
|
18860
|
+
[key: string]: unknown;
|
|
18861
|
+
};
|
|
18862
|
+
};
|
|
18863
|
+
};
|
|
18864
|
+
type PostAgentsByIdPublishVersionResponse = PostAgentsByIdPublishVersionResponses[keyof PostAgentsByIdPublishVersionResponses];
|
|
18148
18865
|
type PostObjectsBulkDestroyData = {
|
|
18149
18866
|
/**
|
|
18150
18867
|
* Request body for the /objects/bulk-destroy operation on object resource
|
|
@@ -20822,6 +21539,26 @@ declare const getSearchSaved: <ThrowOnError extends boolean = false>(options: Op
|
|
|
20822
21539
|
*
|
|
20823
21540
|
*/
|
|
20824
21541
|
declare const postSearchSaved: <ThrowOnError extends boolean = false>(options: Options<PostSearchSavedData, ThrowOnError>) => RequestResult<PostSearchSavedResponses, PostSearchSavedErrors, ThrowOnError, "fields">;
|
|
21542
|
+
/**
|
|
21543
|
+
* Delete field templates
|
|
21544
|
+
*
|
|
21545
|
+
* Deletes a resource permanently. This action cannot be undone.
|
|
21546
|
+
*
|
|
21547
|
+
* **Authentication:** Required - Bearer token or API key
|
|
21548
|
+
* **Rate Limit:** 100 requests per minute
|
|
21549
|
+
*
|
|
21550
|
+
*/
|
|
21551
|
+
declare const deleteFieldTemplatesById: <ThrowOnError extends boolean = false>(options: Options<DeleteFieldTemplatesByIdData, ThrowOnError>) => RequestResult<DeleteFieldTemplatesByIdResponses, DeleteFieldTemplatesByIdErrors, ThrowOnError, "fields">;
|
|
21552
|
+
/**
|
|
21553
|
+
* Get field templates
|
|
21554
|
+
*
|
|
21555
|
+
* Retrieves a single resource by ID.
|
|
21556
|
+
*
|
|
21557
|
+
* **Authentication:** Required - Bearer token or API key
|
|
21558
|
+
* **Rate Limit:** 100 requests per minute
|
|
21559
|
+
*
|
|
21560
|
+
*/
|
|
21561
|
+
declare const getFieldTemplatesById: <ThrowOnError extends boolean = false>(options: Options<GetFieldTemplatesByIdData, ThrowOnError>) => RequestResult<GetFieldTemplatesByIdResponses, GetFieldTemplatesByIdErrors, ThrowOnError, "fields">;
|
|
20825
21562
|
/**
|
|
20826
21563
|
* List me
|
|
20827
21564
|
*
|
|
@@ -20838,6 +21575,26 @@ declare const getUserProfilesMe: <ThrowOnError extends boolean = false>(options:
|
|
|
20838
21575
|
*
|
|
20839
21576
|
*/
|
|
20840
21577
|
declare const postInvitationsInvite: <ThrowOnError extends boolean = false>(options: Options<PostInvitationsInviteData, ThrowOnError>) => RequestResult<PostInvitationsInviteResponses, PostInvitationsInviteErrors, ThrowOnError, "fields">;
|
|
21578
|
+
/**
|
|
21579
|
+
* List agent versions
|
|
21580
|
+
*
|
|
21581
|
+
* Lists resources with optional filtering, sorting, and pagination.
|
|
21582
|
+
*
|
|
21583
|
+
* **Authentication:** Required - Bearer token or API key
|
|
21584
|
+
* **Rate Limit:** 100 requests per minute
|
|
21585
|
+
*
|
|
21586
|
+
*/
|
|
21587
|
+
declare const getAgentVersions: <ThrowOnError extends boolean = false>(options: Options<GetAgentVersionsData, ThrowOnError>) => RequestResult<GetAgentVersionsResponses, GetAgentVersionsErrors, ThrowOnError, "fields">;
|
|
21588
|
+
/**
|
|
21589
|
+
* Create agent versions
|
|
21590
|
+
*
|
|
21591
|
+
* Creates a new resource. Returns the created resource with generated ID.
|
|
21592
|
+
*
|
|
21593
|
+
* **Authentication:** Required - Bearer token or API key
|
|
21594
|
+
* **Rate Limit:** 100 requests per minute
|
|
21595
|
+
*
|
|
21596
|
+
*/
|
|
21597
|
+
declare const postAgentVersions: <ThrowOnError extends boolean = false>(options: Options<PostAgentVersionsData, ThrowOnError>) => RequestResult<PostAgentVersionsResponses, PostAgentVersionsErrors, ThrowOnError, "fields">;
|
|
20841
21598
|
/**
|
|
20842
21599
|
* Delete webhook configs
|
|
20843
21600
|
*
|
|
@@ -20890,6 +21647,16 @@ declare const getExtractionBatchesByIdUploadUrls: <ThrowOnError extends boolean
|
|
|
20890
21647
|
*
|
|
20891
21648
|
*/
|
|
20892
21649
|
declare const postDocumentsBulkDelete: <ThrowOnError extends boolean = false>(options: Options<PostDocumentsBulkDeleteData, ThrowOnError>) => RequestResult<PostDocumentsBulkDeleteResponses, PostDocumentsBulkDeleteErrors, ThrowOnError, "fields">;
|
|
21650
|
+
/**
|
|
21651
|
+
* Get agent versions
|
|
21652
|
+
*
|
|
21653
|
+
* Retrieves a single resource by ID.
|
|
21654
|
+
*
|
|
21655
|
+
* **Authentication:** Required - Bearer token or API key
|
|
21656
|
+
* **Rate Limit:** 100 requests per minute
|
|
21657
|
+
*
|
|
21658
|
+
*/
|
|
21659
|
+
declare const getAgentVersionsById: <ThrowOnError extends boolean = false>(options: Options<GetAgentVersionsByIdData, ThrowOnError>) => RequestResult<GetAgentVersionsByIdResponses, GetAgentVersionsByIdErrors, ThrowOnError, "fields">;
|
|
20893
21660
|
/**
|
|
20894
21661
|
* Create search
|
|
20895
21662
|
*
|
|
@@ -21363,15 +22130,15 @@ declare const postTenantsByIdRemoveStorage: <ThrowOnError extends boolean = fals
|
|
|
21363
22130
|
*/
|
|
21364
22131
|
declare const getNotificationLogsById: <ThrowOnError extends boolean = false>(options: Options<GetNotificationLogsByIdData, ThrowOnError>) => RequestResult<GetNotificationLogsByIdResponses, GetNotificationLogsByIdErrors, ThrowOnError, "fields">;
|
|
21365
22132
|
/**
|
|
21366
|
-
*
|
|
22133
|
+
* Get view
|
|
21367
22134
|
*
|
|
21368
|
-
*
|
|
22135
|
+
* Retrieves a single resource by ID.
|
|
21369
22136
|
*
|
|
21370
22137
|
* **Authentication:** Required - Bearer token or API key
|
|
21371
22138
|
* **Rate Limit:** 100 requests per minute
|
|
21372
22139
|
*
|
|
21373
22140
|
*/
|
|
21374
|
-
declare const
|
|
22141
|
+
declare const getExtractionDocumentsByIdView: <ThrowOnError extends boolean = false>(options: Options<GetExtractionDocumentsByIdViewData, ThrowOnError>) => RequestResult<GetExtractionDocumentsByIdViewResponses, GetExtractionDocumentsByIdViewErrors, ThrowOnError, "fields">;
|
|
21375
22142
|
/**
|
|
21376
22143
|
* Get webhook deliveries
|
|
21377
22144
|
*
|
|
@@ -22116,6 +22883,26 @@ declare const patchTenantMembershipsByTenantIdByUserId: <ThrowOnError extends bo
|
|
|
22116
22883
|
*
|
|
22117
22884
|
*/
|
|
22118
22885
|
declare const patchWebhookConfigsByIdRotateSecret: <ThrowOnError extends boolean = false>(options: Options<PatchWebhookConfigsByIdRotateSecretData, ThrowOnError>) => RequestResult<PatchWebhookConfigsByIdRotateSecretResponses, PatchWebhookConfigsByIdRotateSecretErrors, ThrowOnError, "fields">;
|
|
22886
|
+
/**
|
|
22887
|
+
* List field templates
|
|
22888
|
+
*
|
|
22889
|
+
* Lists resources with optional filtering, sorting, and pagination.
|
|
22890
|
+
*
|
|
22891
|
+
* **Authentication:** Required - Bearer token or API key
|
|
22892
|
+
* **Rate Limit:** 100 requests per minute
|
|
22893
|
+
*
|
|
22894
|
+
*/
|
|
22895
|
+
declare const getFieldTemplates: <ThrowOnError extends boolean = false>(options: Options<GetFieldTemplatesData, ThrowOnError>) => RequestResult<GetFieldTemplatesResponses, GetFieldTemplatesErrors, ThrowOnError, "fields">;
|
|
22896
|
+
/**
|
|
22897
|
+
* Create field templates
|
|
22898
|
+
*
|
|
22899
|
+
* Creates a new resource. Returns the created resource with generated ID.
|
|
22900
|
+
*
|
|
22901
|
+
* **Authentication:** Required - Bearer token or API key
|
|
22902
|
+
* **Rate Limit:** 100 requests per minute
|
|
22903
|
+
*
|
|
22904
|
+
*/
|
|
22905
|
+
declare const postFieldTemplates: <ThrowOnError extends boolean = false>(options: Options<PostFieldTemplatesData, ThrowOnError>) => RequestResult<PostFieldTemplatesResponses, PostFieldTemplatesErrors, ThrowOnError, "fields">;
|
|
22119
22906
|
/**
|
|
22120
22907
|
* List messages
|
|
22121
22908
|
*
|
|
@@ -22292,6 +23079,12 @@ declare const getWebhookConfigs: <ThrowOnError extends boolean = false>(options:
|
|
|
22292
23079
|
*
|
|
22293
23080
|
*/
|
|
22294
23081
|
declare const postWebhookConfigs: <ThrowOnError extends boolean = false>(options: Options<PostWebhookConfigsData, ThrowOnError>) => RequestResult<PostWebhookConfigsResponses, PostWebhookConfigsErrors, ThrowOnError, "fields">;
|
|
23082
|
+
/**
|
|
23083
|
+
* Create publish version
|
|
23084
|
+
*
|
|
23085
|
+
* Create a new immutable version from current agent state
|
|
23086
|
+
*/
|
|
23087
|
+
declare const postAgentsByIdPublishVersion: <ThrowOnError extends boolean = false>(options: Options<PostAgentsByIdPublishVersionData, ThrowOnError>) => RequestResult<PostAgentsByIdPublishVersionResponses, PostAgentsByIdPublishVersionErrors, ThrowOnError, "fields">;
|
|
22295
23088
|
/**
|
|
22296
23089
|
* Create bulk destroy
|
|
22297
23090
|
*
|
|
@@ -22911,4 +23704,4 @@ declare function streamMessage(response: Response, options?: StreamOptions): Asy
|
|
|
22911
23704
|
*/
|
|
22912
23705
|
declare function collectStreamedMessage(stream: AsyncIterableIterator<StreamMessageChunk>): Promise<string>;
|
|
22913
23706
|
|
|
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 };
|
|
23707
|
+
export { type Account, type Agent, type AgentCreateRequest, AgentCreateSchema, type AgentVersion, 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 DeleteFieldTemplatesByIdData, type DeleteFieldTemplatesByIdError, type DeleteFieldTemplatesByIdErrors, type DeleteFieldTemplatesByIdResponses, 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 FieldTemplate, type GetAgentVersionsByIdData, type GetAgentVersionsByIdError, type GetAgentVersionsByIdErrors, type GetAgentVersionsByIdResponse, type GetAgentVersionsByIdResponses, type GetAgentVersionsData, type GetAgentVersionsError, type GetAgentVersionsErrors, type GetAgentVersionsResponse, type GetAgentVersionsResponses, 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 GetExtractionDocumentsByIdViewData, type GetExtractionDocumentsByIdViewError, type GetExtractionDocumentsByIdViewErrors, type GetExtractionDocumentsByIdViewResponse, type GetExtractionDocumentsByIdViewResponses, 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 GetFieldTemplatesByIdData, type GetFieldTemplatesByIdError, type GetFieldTemplatesByIdErrors, type GetFieldTemplatesByIdResponse, type GetFieldTemplatesByIdResponses, type GetFieldTemplatesData, type GetFieldTemplatesError, type GetFieldTemplatesErrors, type GetFieldTemplatesResponse, type GetFieldTemplatesResponses, type GetInvitationsConsumeByTokenData, type GetInvitationsConsumeByTokenError, type GetInvitationsConsumeByTokenErrors, type GetInvitationsConsumeByTokenResponse, type GetInvitationsConsumeByTokenResponses, type GetInvitationsData, type GetInvitationsError, type GetInvitationsErrors, type 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 PostAgentVersionsData, type PostAgentVersionsError, type PostAgentVersionsErrors, type PostAgentVersionsResponse, type PostAgentVersionsResponses, type PostAgentsByIdCloneData, type PostAgentsByIdCloneError, type PostAgentsByIdCloneErrors, type PostAgentsByIdCloneResponse, type PostAgentsByIdCloneResponses, type PostAgentsByIdLearnFromDocumentData, type PostAgentsByIdLearnFromDocumentError, type PostAgentsByIdLearnFromDocumentErrors, type PostAgentsByIdLearnFromDocumentResponse, type PostAgentsByIdLearnFromDocumentResponses, type PostAgentsByIdPublishVersionData, type PostAgentsByIdPublishVersionError, type PostAgentsByIdPublishVersionErrors, type PostAgentsByIdPublishVersionResponse, type PostAgentsByIdPublishVersionResponses, 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 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 PostFieldTemplatesData, type PostFieldTemplatesError, type PostFieldTemplatesErrors, type PostFieldTemplatesResponse, type PostFieldTemplatesResponses, 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, deleteFieldTemplatesById, deleteMessagesById, deleteNotificationPreferencesById, deleteObjectsById, deleteSearchSavedById, deleteTenantMembershipsByTenantIdByUserId, deleteTenantsById, deleteThreadsById, deleteTrainingExamplesById, deleteUserProfilesById, deleteWebhookConfigsById, deleteWorkspaceMembershipsByWorkspaceIdByUserId, deleteWorkspacesById, getAgentVersions, getAgentVersionsById, 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, getExtractionDocumentsByIdView, getExtractionDocumentsWorkspaceByWorkspaceId, getExtractionResultsById, getExtractionResultsDocumentByDocumentId, getExtractionSchemaFields, getExtractionSchemaFieldsById, getExtractionSchemasById, getExtractionSchemasWorkspaceByWorkspaceId, getFieldTemplates, getFieldTemplatesById, 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, postAgentVersions, postAgents, postAgentsByIdClone, postAgentsByIdLearnFromDocument, postAgentsByIdPublishVersion, postAgentsByIdTest, postAgentsByIdValidate, postAgentsCloneForWorkspace, postAgentsPredict, postAiChunksSearch, postAiConversations, postAiEmbed, postAiGraphEdges, postAiGraphNodes, postAiMessages, postAiSearch, postAiSearchAdvanced, postApiKeys, postApplications, postBuckets, postConfigs, postDocumentsBulkDelete, postDocumentsPresignedUpload, postExtractionBatches, postExtractionDocumentsBeginUpload, postExtractionDocumentsUpload, postExtractionResults, postExtractionSchemaFields, postExtractionSchemas, postFieldTemplates, 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 };
|