@gpt-core/client 0.9.0 → 0.9.1
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.cjs +4043 -0
- package/dist/index.d.mts +2112 -1318
- package/dist/index.d.ts +2112 -1318
- package/dist/index.js +147 -74
- package/dist/index.mjs +135 -68
- package/llms.txt +28 -4
- package/package.json +11 -11
package/dist/index.d.ts
CHANGED
|
@@ -268,8 +268,22 @@ type WorkspaceSettingsInputCreateType = {
|
|
|
268
268
|
} | unknown;
|
|
269
269
|
billing?: {
|
|
270
270
|
allow_overdraft?: boolean | unknown;
|
|
271
|
+
/**
|
|
272
|
+
* Maximum overdraft credits allowed per period
|
|
273
|
+
*/
|
|
271
274
|
overdraft_limit?: number | unknown;
|
|
275
|
+
/**
|
|
276
|
+
* Period for overdraft limit reset (daily, weekly, monthly)
|
|
277
|
+
*/
|
|
272
278
|
overdraft_period?: "daily" | "weekly" | "monthly" | unknown;
|
|
279
|
+
/**
|
|
280
|
+
* When the current overdraft period began
|
|
281
|
+
*/
|
|
282
|
+
overdraft_period_started_at?: unknown;
|
|
283
|
+
/**
|
|
284
|
+
* Credits used from overdraft in current period
|
|
285
|
+
*/
|
|
286
|
+
overdraft_used?: number | unknown;
|
|
273
287
|
} | unknown;
|
|
274
288
|
review_train?: {
|
|
275
289
|
confidence_threshold?: number | unknown;
|
|
@@ -636,6 +650,36 @@ type FieldMappingConfirmation = {
|
|
|
636
650
|
};
|
|
637
651
|
type: string;
|
|
638
652
|
};
|
|
653
|
+
type ApplicationOauthInputCreateType = {
|
|
654
|
+
/**
|
|
655
|
+
* Allowed OAuth callback URLs for this application
|
|
656
|
+
*/
|
|
657
|
+
callback_urls?: Array<string> | unknown;
|
|
658
|
+
/**
|
|
659
|
+
* Default callback URL if not specified in request
|
|
660
|
+
*/
|
|
661
|
+
default_callback_url?: string | unknown;
|
|
662
|
+
/**
|
|
663
|
+
* Which OAuth providers are enabled for this app
|
|
664
|
+
*/
|
|
665
|
+
enabled_providers?: Array<"google" | "github" | "salesforce"> | unknown;
|
|
666
|
+
/**
|
|
667
|
+
* Custom GitHub OAuth client ID (optional)
|
|
668
|
+
*/
|
|
669
|
+
github_client_id?: string | unknown;
|
|
670
|
+
/**
|
|
671
|
+
* Custom GitHub OAuth client secret (optional)
|
|
672
|
+
*/
|
|
673
|
+
github_client_secret?: string | unknown;
|
|
674
|
+
/**
|
|
675
|
+
* Custom Google OAuth client ID (optional)
|
|
676
|
+
*/
|
|
677
|
+
google_client_id?: string | unknown;
|
|
678
|
+
/**
|
|
679
|
+
* Custom Google OAuth client secret (optional)
|
|
680
|
+
*/
|
|
681
|
+
google_client_secret?: string | unknown;
|
|
682
|
+
};
|
|
639
683
|
/**
|
|
640
684
|
* A "Resource object" representing a training_session
|
|
641
685
|
*/
|
|
@@ -1082,6 +1126,93 @@ type Account = {
|
|
|
1082
1126
|
};
|
|
1083
1127
|
type: string;
|
|
1084
1128
|
};
|
|
1129
|
+
type AgentVersionType = {
|
|
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
|
+
fields?: Array<{
|
|
1142
|
+
/**
|
|
1143
|
+
* Field included by default.
|
|
1144
|
+
*/
|
|
1145
|
+
ai_hints?: string | null | unknown;
|
|
1146
|
+
/**
|
|
1147
|
+
* Field included by default.
|
|
1148
|
+
*/
|
|
1149
|
+
description?: string | null | unknown;
|
|
1150
|
+
/**
|
|
1151
|
+
* Whether this field is system-generated (e.g., _ai_suggestions) vs user-defined. Field included by default.
|
|
1152
|
+
*/
|
|
1153
|
+
is_system: boolean;
|
|
1154
|
+
/**
|
|
1155
|
+
* For array fields, specifies the type of items in the array. Field included by default.
|
|
1156
|
+
*/
|
|
1157
|
+
item_type?: "text" | "date" | "datetime" | "time" | "number" | "currency" | "boolean" | "email" | "phone" | "url" | "address" | "timestamp" | "alphanumeric_code" | unknown;
|
|
1158
|
+
/**
|
|
1159
|
+
* Field included by default.
|
|
1160
|
+
*/
|
|
1161
|
+
label?: string | null | unknown;
|
|
1162
|
+
/**
|
|
1163
|
+
* Field included by default.
|
|
1164
|
+
*/
|
|
1165
|
+
name: string;
|
|
1166
|
+
/**
|
|
1167
|
+
* Field included by default.
|
|
1168
|
+
*/
|
|
1169
|
+
order: number;
|
|
1170
|
+
/**
|
|
1171
|
+
* Field included by default.
|
|
1172
|
+
*/
|
|
1173
|
+
required: boolean;
|
|
1174
|
+
/**
|
|
1175
|
+
* Field included by default.
|
|
1176
|
+
*/
|
|
1177
|
+
type: "text" | "date" | "datetime" | "time" | "number" | "currency" | "boolean" | "email" | "phone" | "url" | "array" | "address" | "object" | "timestamp" | "alphanumeric_code";
|
|
1178
|
+
}> | null | unknown;
|
|
1179
|
+
/**
|
|
1180
|
+
* Field included by default.
|
|
1181
|
+
*/
|
|
1182
|
+
has_been_used?: boolean | null | unknown;
|
|
1183
|
+
/**
|
|
1184
|
+
* Field included by default.
|
|
1185
|
+
*/
|
|
1186
|
+
id?: string | unknown;
|
|
1187
|
+
/**
|
|
1188
|
+
* Field included by default.
|
|
1189
|
+
*/
|
|
1190
|
+
is_active: boolean;
|
|
1191
|
+
/**
|
|
1192
|
+
* Field included by default.
|
|
1193
|
+
*/
|
|
1194
|
+
json_schema?: {
|
|
1195
|
+
[key: string]: unknown;
|
|
1196
|
+
} | null | unknown;
|
|
1197
|
+
/**
|
|
1198
|
+
* Field included by default.
|
|
1199
|
+
*/
|
|
1200
|
+
prompt_template: string;
|
|
1201
|
+
/**
|
|
1202
|
+
* Field included by default.
|
|
1203
|
+
*/
|
|
1204
|
+
schema_definition: {
|
|
1205
|
+
[key: string]: unknown;
|
|
1206
|
+
};
|
|
1207
|
+
/**
|
|
1208
|
+
* Field included by default.
|
|
1209
|
+
*/
|
|
1210
|
+
updated_at: unknown;
|
|
1211
|
+
/**
|
|
1212
|
+
* Field included by default.
|
|
1213
|
+
*/
|
|
1214
|
+
version_number: string;
|
|
1215
|
+
};
|
|
1085
1216
|
/**
|
|
1086
1217
|
* A "Resource object" representing a payment_method
|
|
1087
1218
|
*/
|
|
@@ -1090,7 +1221,58 @@ type PaymentMethod = {
|
|
|
1090
1221
|
* An attributes object for a payment_method
|
|
1091
1222
|
*/
|
|
1092
1223
|
attributes?: {
|
|
1093
|
-
|
|
1224
|
+
/**
|
|
1225
|
+
* Field included by default.
|
|
1226
|
+
*/
|
|
1227
|
+
brand?: string | null | unknown;
|
|
1228
|
+
/**
|
|
1229
|
+
* Field included by default.
|
|
1230
|
+
*/
|
|
1231
|
+
created_at: unknown;
|
|
1232
|
+
/**
|
|
1233
|
+
* Field included by default.
|
|
1234
|
+
*/
|
|
1235
|
+
exp_month?: number | null | unknown;
|
|
1236
|
+
/**
|
|
1237
|
+
* Field included by default.
|
|
1238
|
+
*/
|
|
1239
|
+
exp_year?: number | null | unknown;
|
|
1240
|
+
/**
|
|
1241
|
+
* Field included by default.
|
|
1242
|
+
*/
|
|
1243
|
+
holder_name?: string | null | unknown;
|
|
1244
|
+
/**
|
|
1245
|
+
* Field included by default.
|
|
1246
|
+
*/
|
|
1247
|
+
is_default?: boolean | null | unknown;
|
|
1248
|
+
/**
|
|
1249
|
+
* Field included by default.
|
|
1250
|
+
*/
|
|
1251
|
+
last4?: string | null | unknown;
|
|
1252
|
+
/**
|
|
1253
|
+
* Field included by default.
|
|
1254
|
+
*/
|
|
1255
|
+
nickname?: string | null | unknown;
|
|
1256
|
+
/**
|
|
1257
|
+
* Field included by default.
|
|
1258
|
+
*/
|
|
1259
|
+
provider: "qorpay";
|
|
1260
|
+
/**
|
|
1261
|
+
* Field included by default.
|
|
1262
|
+
*/
|
|
1263
|
+
provider_token: string;
|
|
1264
|
+
/**
|
|
1265
|
+
* Field included by default.
|
|
1266
|
+
*/
|
|
1267
|
+
type: "card" | "bank_account";
|
|
1268
|
+
/**
|
|
1269
|
+
* Field included by default.
|
|
1270
|
+
*/
|
|
1271
|
+
updated_at: unknown;
|
|
1272
|
+
/**
|
|
1273
|
+
* Field included by default.
|
|
1274
|
+
*/
|
|
1275
|
+
zip_code?: string | null | unknown;
|
|
1094
1276
|
};
|
|
1095
1277
|
id: string;
|
|
1096
1278
|
/**
|
|
@@ -1361,6 +1543,39 @@ type Application = {
|
|
|
1361
1543
|
* Field included by default.
|
|
1362
1544
|
*/
|
|
1363
1545
|
name: string;
|
|
1546
|
+
/**
|
|
1547
|
+
* OAuth configuration for this application. Field included by default.
|
|
1548
|
+
*/
|
|
1549
|
+
oauth?: {
|
|
1550
|
+
/**
|
|
1551
|
+
* Allowed OAuth callback URLs for this application. Field included by default.
|
|
1552
|
+
*/
|
|
1553
|
+
callback_urls?: Array<string> | null | unknown;
|
|
1554
|
+
/**
|
|
1555
|
+
* Default callback URL if not specified in request. Field included by default.
|
|
1556
|
+
*/
|
|
1557
|
+
default_callback_url?: string | null | unknown;
|
|
1558
|
+
/**
|
|
1559
|
+
* Which OAuth providers are enabled for this app. Field included by default.
|
|
1560
|
+
*/
|
|
1561
|
+
enabled_providers?: Array<"google" | "github" | "salesforce"> | null | unknown;
|
|
1562
|
+
/**
|
|
1563
|
+
* Custom GitHub OAuth client ID (optional). Field included by default.
|
|
1564
|
+
*/
|
|
1565
|
+
github_client_id?: string | null | unknown;
|
|
1566
|
+
/**
|
|
1567
|
+
* Custom GitHub OAuth client secret (optional). Field included by default.
|
|
1568
|
+
*/
|
|
1569
|
+
github_client_secret?: string | null | unknown;
|
|
1570
|
+
/**
|
|
1571
|
+
* Custom Google OAuth client ID (optional). Field included by default.
|
|
1572
|
+
*/
|
|
1573
|
+
google_client_id?: string | null | unknown;
|
|
1574
|
+
/**
|
|
1575
|
+
* Custom Google OAuth client secret (optional). Field included by default.
|
|
1576
|
+
*/
|
|
1577
|
+
google_client_secret?: string | null | unknown;
|
|
1578
|
+
} | null | unknown;
|
|
1364
1579
|
/**
|
|
1365
1580
|
* When true, password registration withholds JWT until email is verified. Field included by default.
|
|
1366
1581
|
*/
|
|
@@ -1493,7 +1708,7 @@ type ApiKey = {
|
|
|
1493
1708
|
*/
|
|
1494
1709
|
attributes?: {
|
|
1495
1710
|
/**
|
|
1496
|
-
* Field included by default.
|
|
1711
|
+
* Required - the application this API key belongs to. Field included by default.
|
|
1497
1712
|
*/
|
|
1498
1713
|
application_id: string;
|
|
1499
1714
|
/**
|
|
@@ -1818,8 +2033,22 @@ type WorkspaceSettingsInputUpdateType = {
|
|
|
1818
2033
|
} | unknown;
|
|
1819
2034
|
billing?: {
|
|
1820
2035
|
allow_overdraft?: boolean | unknown;
|
|
2036
|
+
/**
|
|
2037
|
+
* Maximum overdraft credits allowed per period
|
|
2038
|
+
*/
|
|
1821
2039
|
overdraft_limit?: number | unknown;
|
|
2040
|
+
/**
|
|
2041
|
+
* Period for overdraft limit reset (daily, weekly, monthly)
|
|
2042
|
+
*/
|
|
1822
2043
|
overdraft_period?: "daily" | "weekly" | "monthly" | unknown;
|
|
2044
|
+
/**
|
|
2045
|
+
* When the current overdraft period began
|
|
2046
|
+
*/
|
|
2047
|
+
overdraft_period_started_at?: unknown;
|
|
2048
|
+
/**
|
|
2049
|
+
* Credits used from overdraft in current period
|
|
2050
|
+
*/
|
|
2051
|
+
overdraft_used?: number | unknown;
|
|
1823
2052
|
} | unknown;
|
|
1824
2053
|
review_train?: {
|
|
1825
2054
|
confidence_threshold?: number | unknown;
|
|
@@ -1895,6 +2124,62 @@ type WorkspaceSettingsInputUpdateType = {
|
|
|
1895
2124
|
source_type?: "local" | "cloud" | unknown;
|
|
1896
2125
|
};
|
|
1897
2126
|
};
|
|
2127
|
+
/**
|
|
2128
|
+
* A "Resource object" representing a invoice
|
|
2129
|
+
*/
|
|
2130
|
+
type Invoice = {
|
|
2131
|
+
/**
|
|
2132
|
+
* An attributes object for a invoice
|
|
2133
|
+
*/
|
|
2134
|
+
attributes?: {
|
|
2135
|
+
/**
|
|
2136
|
+
* Field included by default.
|
|
2137
|
+
*/
|
|
2138
|
+
amount_due?: number | null | unknown;
|
|
2139
|
+
/**
|
|
2140
|
+
* Field included by default.
|
|
2141
|
+
*/
|
|
2142
|
+
amount_paid?: number | null | unknown;
|
|
2143
|
+
/**
|
|
2144
|
+
* Field included by default.
|
|
2145
|
+
*/
|
|
2146
|
+
created_at?: unknown;
|
|
2147
|
+
/**
|
|
2148
|
+
* Field included by default.
|
|
2149
|
+
*/
|
|
2150
|
+
currency?: string | null | unknown;
|
|
2151
|
+
/**
|
|
2152
|
+
* Field included by default.
|
|
2153
|
+
*/
|
|
2154
|
+
due_date?: unknown;
|
|
2155
|
+
/**
|
|
2156
|
+
* Field included by default.
|
|
2157
|
+
*/
|
|
2158
|
+
invoice_number?: string | null | unknown;
|
|
2159
|
+
/**
|
|
2160
|
+
* Field included by default.
|
|
2161
|
+
*/
|
|
2162
|
+
line_items?: Array<{
|
|
2163
|
+
[key: string]: unknown;
|
|
2164
|
+
}> | null | unknown;
|
|
2165
|
+
/**
|
|
2166
|
+
* Field included by default.
|
|
2167
|
+
*/
|
|
2168
|
+
pdf_url?: string | null | unknown;
|
|
2169
|
+
/**
|
|
2170
|
+
* Field included by default.
|
|
2171
|
+
*/
|
|
2172
|
+
status?: "draft" | "open" | "paid" | "void" | unknown;
|
|
2173
|
+
};
|
|
2174
|
+
id: string;
|
|
2175
|
+
/**
|
|
2176
|
+
* A relationships object for a invoice
|
|
2177
|
+
*/
|
|
2178
|
+
relationships?: {
|
|
2179
|
+
[key: string]: never;
|
|
2180
|
+
};
|
|
2181
|
+
type: string;
|
|
2182
|
+
};
|
|
1898
2183
|
/**
|
|
1899
2184
|
* A "Resource object" representing a training_analytics
|
|
1900
2185
|
*/
|
|
@@ -1985,7 +2270,72 @@ type Transaction = {
|
|
|
1985
2270
|
* An attributes object for a transaction
|
|
1986
2271
|
*/
|
|
1987
2272
|
attributes?: {
|
|
1988
|
-
|
|
2273
|
+
/**
|
|
2274
|
+
* The amount of the transaction. For monetary transactions, this is in cents. For credit usage, this is in credits. Field included by default.
|
|
2275
|
+
*/
|
|
2276
|
+
amount: number;
|
|
2277
|
+
/**
|
|
2278
|
+
* Field included by default.
|
|
2279
|
+
*/
|
|
2280
|
+
created_at: unknown;
|
|
2281
|
+
/**
|
|
2282
|
+
* Field included by default.
|
|
2283
|
+
*/
|
|
2284
|
+
credits_added?: number | null | unknown;
|
|
2285
|
+
/**
|
|
2286
|
+
* Field included by default.
|
|
2287
|
+
*/
|
|
2288
|
+
credits_used?: number | null | unknown;
|
|
2289
|
+
/**
|
|
2290
|
+
* Field included by default.
|
|
2291
|
+
*/
|
|
2292
|
+
currency?: string | null | unknown;
|
|
2293
|
+
/**
|
|
2294
|
+
* Field included by default.
|
|
2295
|
+
*/
|
|
2296
|
+
description?: string | null | unknown;
|
|
2297
|
+
/**
|
|
2298
|
+
* Field included by default.
|
|
2299
|
+
*/
|
|
2300
|
+
error_message?: string | null | unknown;
|
|
2301
|
+
/**
|
|
2302
|
+
* Field included by default.
|
|
2303
|
+
*/
|
|
2304
|
+
metadata?: {
|
|
2305
|
+
[key: string]: unknown;
|
|
2306
|
+
} | null | unknown;
|
|
2307
|
+
/**
|
|
2308
|
+
* Field included by default.
|
|
2309
|
+
*/
|
|
2310
|
+
operation?: "subscription" | "topup" | "extraction" | "training" | "refund" | "addon" | unknown;
|
|
2311
|
+
/**
|
|
2312
|
+
* Field included by default.
|
|
2313
|
+
*/
|
|
2314
|
+
provider_reference?: string | null | unknown;
|
|
2315
|
+
/**
|
|
2316
|
+
* Field included by default.
|
|
2317
|
+
*/
|
|
2318
|
+
service_id?: string | null | unknown;
|
|
2319
|
+
/**
|
|
2320
|
+
* Field included by default.
|
|
2321
|
+
*/
|
|
2322
|
+
status: "pending" | "success" | "failed" | "refunded" | "voided";
|
|
2323
|
+
/**
|
|
2324
|
+
* Field included by default.
|
|
2325
|
+
*/
|
|
2326
|
+
tenant_id: string;
|
|
2327
|
+
/**
|
|
2328
|
+
* Field included by default.
|
|
2329
|
+
*/
|
|
2330
|
+
transaction_type?: "credit" | "debit" | unknown;
|
|
2331
|
+
/**
|
|
2332
|
+
* Field included by default.
|
|
2333
|
+
*/
|
|
2334
|
+
type?: "sale" | "auth" | "refund" | "void" | unknown;
|
|
2335
|
+
/**
|
|
2336
|
+
* Field included by default.
|
|
2337
|
+
*/
|
|
2338
|
+
updated_at: unknown;
|
|
1989
2339
|
};
|
|
1990
2340
|
id: string;
|
|
1991
2341
|
/**
|
|
@@ -2004,38 +2354,14 @@ type ExtractionResult = {
|
|
|
2004
2354
|
* An attributes object for a extraction_result
|
|
2005
2355
|
*/
|
|
2006
2356
|
attributes?: {
|
|
2007
|
-
/**
|
|
2008
|
-
* The Agent that performed this extraction. Field included by default.
|
|
2009
|
-
*/
|
|
2010
|
-
agent_id?: string | null | unknown;
|
|
2011
|
-
/**
|
|
2012
|
-
* The specific version of the Agent that performed this extraction. Field included by default.
|
|
2013
|
-
*/
|
|
2014
|
-
agent_version_id?: string | null | unknown;
|
|
2015
|
-
/**
|
|
2016
|
-
* Average confidence across all extracted fields. Field included by default.
|
|
2017
|
-
*/
|
|
2018
|
-
avg_confidence?: number | null | unknown;
|
|
2019
2357
|
/**
|
|
2020
2358
|
* Character count of extracted text
|
|
2021
2359
|
*/
|
|
2022
2360
|
char_count?: number | null | unknown;
|
|
2023
|
-
/**
|
|
2024
|
-
* Overall classification confidence score. Field included by default.
|
|
2025
|
-
*/
|
|
2026
|
-
classification_confidence?: number | null | unknown;
|
|
2027
2361
|
/**
|
|
2028
2362
|
* Field included by default.
|
|
2029
2363
|
*/
|
|
2030
2364
|
credits_used?: string | null | unknown;
|
|
2031
|
-
/**
|
|
2032
|
-
* Specific document type (Traffic Citation, Invoice, etc.). Field included by default.
|
|
2033
|
-
*/
|
|
2034
|
-
document_type?: string | null | unknown;
|
|
2035
|
-
/**
|
|
2036
|
-
* Document domain (legal, financial, medical, etc.). Field included by default.
|
|
2037
|
-
*/
|
|
2038
|
-
domain?: string | null | unknown;
|
|
2039
2365
|
/**
|
|
2040
2366
|
* Field included by default.
|
|
2041
2367
|
*/
|
|
@@ -2058,10 +2384,6 @@ type ExtractionResult = {
|
|
|
2058
2384
|
* Line count of extracted text
|
|
2059
2385
|
*/
|
|
2060
2386
|
line_count?: number | null | unknown;
|
|
2061
|
-
/**
|
|
2062
|
-
* Municipality or agency name. Field included by default.
|
|
2063
|
-
*/
|
|
2064
|
-
municipality?: string | null | unknown;
|
|
2065
2387
|
ocr_blocks?: Array<{
|
|
2066
2388
|
[key: string]: unknown;
|
|
2067
2389
|
}> | null | unknown;
|
|
@@ -2071,17 +2393,9 @@ type ExtractionResult = {
|
|
|
2071
2393
|
processing_time_ms?: number | null | unknown;
|
|
2072
2394
|
schema_id?: string | null | unknown;
|
|
2073
2395
|
/**
|
|
2074
|
-
* The
|
|
2075
|
-
*/
|
|
2076
|
-
schema_revision?: number | null | unknown;
|
|
2077
|
-
/**
|
|
2078
|
-
* The version of the schema/agent used for this extraction (e.g., 'v2'). Field included by default.
|
|
2396
|
+
* The version of the schema/agent used for this extraction. Field included by default.
|
|
2079
2397
|
*/
|
|
2080
2398
|
schema_version?: string | null | unknown;
|
|
2081
|
-
/**
|
|
2082
|
-
* State code. Field included by default.
|
|
2083
|
-
*/
|
|
2084
|
-
state?: string | null | unknown;
|
|
2085
2399
|
/**
|
|
2086
2400
|
* Field included by default.
|
|
2087
2401
|
*/
|
|
@@ -2251,6 +2565,10 @@ type Tenant = {
|
|
|
2251
2565
|
* Field included by default.
|
|
2252
2566
|
*/
|
|
2253
2567
|
auto_top_up_enabled: boolean;
|
|
2568
|
+
/**
|
|
2569
|
+
* The credit package to purchase when auto top-up is triggered. Field included by default.
|
|
2570
|
+
*/
|
|
2571
|
+
auto_top_up_package_id?: string | null | unknown;
|
|
2254
2572
|
/**
|
|
2255
2573
|
* Credit balance threshold to trigger auto top-up. Field included by default.
|
|
2256
2574
|
*/
|
|
@@ -2492,10 +2810,6 @@ type AgentVersion = {
|
|
|
2492
2810
|
* Field included by default.
|
|
2493
2811
|
*/
|
|
2494
2812
|
created_at: unknown;
|
|
2495
|
-
/**
|
|
2496
|
-
* Combined display version like 'v2 rev 5'
|
|
2497
|
-
*/
|
|
2498
|
-
display_version?: string | null | unknown;
|
|
2499
2813
|
/**
|
|
2500
2814
|
* Field included by default.
|
|
2501
2815
|
*/
|
|
@@ -2549,10 +2863,6 @@ type AgentVersion = {
|
|
|
2549
2863
|
* Field included by default.
|
|
2550
2864
|
*/
|
|
2551
2865
|
prompt_template: string;
|
|
2552
|
-
/**
|
|
2553
|
-
* Revision number within this schema version (increments on prompt/description changes). Field included by default.
|
|
2554
|
-
*/
|
|
2555
|
-
revision: number;
|
|
2556
2866
|
/**
|
|
2557
2867
|
* Field included by default.
|
|
2558
2868
|
*/
|
|
@@ -2618,6 +2928,39 @@ type ApplicationType = {
|
|
|
2618
2928
|
* Field included by default.
|
|
2619
2929
|
*/
|
|
2620
2930
|
name: string;
|
|
2931
|
+
/**
|
|
2932
|
+
* OAuth configuration for this application. Field included by default.
|
|
2933
|
+
*/
|
|
2934
|
+
oauth?: {
|
|
2935
|
+
/**
|
|
2936
|
+
* Allowed OAuth callback URLs for this application. Field included by default.
|
|
2937
|
+
*/
|
|
2938
|
+
callback_urls?: Array<string> | null | unknown;
|
|
2939
|
+
/**
|
|
2940
|
+
* Default callback URL if not specified in request. Field included by default.
|
|
2941
|
+
*/
|
|
2942
|
+
default_callback_url?: string | null | unknown;
|
|
2943
|
+
/**
|
|
2944
|
+
* Which OAuth providers are enabled for this app. Field included by default.
|
|
2945
|
+
*/
|
|
2946
|
+
enabled_providers?: Array<"google" | "github" | "salesforce"> | null | unknown;
|
|
2947
|
+
/**
|
|
2948
|
+
* Custom GitHub OAuth client ID (optional). Field included by default.
|
|
2949
|
+
*/
|
|
2950
|
+
github_client_id?: string | null | unknown;
|
|
2951
|
+
/**
|
|
2952
|
+
* Custom GitHub OAuth client secret (optional). Field included by default.
|
|
2953
|
+
*/
|
|
2954
|
+
github_client_secret?: string | null | unknown;
|
|
2955
|
+
/**
|
|
2956
|
+
* Custom Google OAuth client ID (optional). Field included by default.
|
|
2957
|
+
*/
|
|
2958
|
+
google_client_id?: string | null | unknown;
|
|
2959
|
+
/**
|
|
2960
|
+
* Custom Google OAuth client secret (optional). Field included by default.
|
|
2961
|
+
*/
|
|
2962
|
+
google_client_secret?: string | null | unknown;
|
|
2963
|
+
} | null | unknown;
|
|
2621
2964
|
/**
|
|
2622
2965
|
* When true, password registration withholds JWT until email is verified. Field included by default.
|
|
2623
2966
|
*/
|
|
@@ -3221,54 +3564,6 @@ type PermissionMeta = {
|
|
|
3221
3564
|
};
|
|
3222
3565
|
type: string;
|
|
3223
3566
|
};
|
|
3224
|
-
/**
|
|
3225
|
-
* A "Resource object" representing a agent_version_revision
|
|
3226
|
-
*/
|
|
3227
|
-
type AgentVersionRevision = {
|
|
3228
|
-
/**
|
|
3229
|
-
* An attributes object for a agent_version_revision
|
|
3230
|
-
*/
|
|
3231
|
-
attributes?: {
|
|
3232
|
-
/**
|
|
3233
|
-
* Optional note describing what changed in this revision. Field included by default.
|
|
3234
|
-
*/
|
|
3235
|
-
change_summary?: string | null | unknown;
|
|
3236
|
-
/**
|
|
3237
|
-
* Field included by default.
|
|
3238
|
-
*/
|
|
3239
|
-
changed_at: unknown;
|
|
3240
|
-
/**
|
|
3241
|
-
* User ID who made this change. Field included by default.
|
|
3242
|
-
*/
|
|
3243
|
-
changed_by?: string | null | unknown;
|
|
3244
|
-
/**
|
|
3245
|
-
* Combined display version like 'v2 rev 5'
|
|
3246
|
-
*/
|
|
3247
|
-
display_version?: string | null | unknown;
|
|
3248
|
-
/**
|
|
3249
|
-
* Map of field_name => description at this revision. Field included by default.
|
|
3250
|
-
*/
|
|
3251
|
-
field_descriptions?: {
|
|
3252
|
-
[key: string]: unknown;
|
|
3253
|
-
} | null | unknown;
|
|
3254
|
-
/**
|
|
3255
|
-
* The prompt template at this revision. Field included by default.
|
|
3256
|
-
*/
|
|
3257
|
-
prompt_template?: string | null | unknown;
|
|
3258
|
-
/**
|
|
3259
|
-
* Revision number within this schema version (1, 2, 3, ...). Field included by default.
|
|
3260
|
-
*/
|
|
3261
|
-
revision: number;
|
|
3262
|
-
};
|
|
3263
|
-
id: string;
|
|
3264
|
-
/**
|
|
3265
|
-
* A relationships object for a agent_version_revision
|
|
3266
|
-
*/
|
|
3267
|
-
relationships?: {
|
|
3268
|
-
[key: string]: never;
|
|
3269
|
-
};
|
|
3270
|
-
type: string;
|
|
3271
|
-
};
|
|
3272
3567
|
/**
|
|
3273
3568
|
* A "Resource object" representing a llm_analytics
|
|
3274
3569
|
*/
|
|
@@ -3731,6 +4026,36 @@ type Transfer = {
|
|
|
3731
4026
|
};
|
|
3732
4027
|
type: string;
|
|
3733
4028
|
};
|
|
4029
|
+
type ApplicationOauthInputUpdateType = {
|
|
4030
|
+
/**
|
|
4031
|
+
* Allowed OAuth callback URLs for this application
|
|
4032
|
+
*/
|
|
4033
|
+
callback_urls?: Array<string> | unknown;
|
|
4034
|
+
/**
|
|
4035
|
+
* Default callback URL if not specified in request
|
|
4036
|
+
*/
|
|
4037
|
+
default_callback_url?: string | unknown;
|
|
4038
|
+
/**
|
|
4039
|
+
* Which OAuth providers are enabled for this app
|
|
4040
|
+
*/
|
|
4041
|
+
enabled_providers?: Array<"google" | "github" | "salesforce"> | unknown;
|
|
4042
|
+
/**
|
|
4043
|
+
* Custom GitHub OAuth client ID (optional)
|
|
4044
|
+
*/
|
|
4045
|
+
github_client_id?: string | unknown;
|
|
4046
|
+
/**
|
|
4047
|
+
* Custom GitHub OAuth client secret (optional)
|
|
4048
|
+
*/
|
|
4049
|
+
github_client_secret?: string | unknown;
|
|
4050
|
+
/**
|
|
4051
|
+
* Custom Google OAuth client ID (optional)
|
|
4052
|
+
*/
|
|
4053
|
+
google_client_id?: string | unknown;
|
|
4054
|
+
/**
|
|
4055
|
+
* Custom Google OAuth client secret (optional)
|
|
4056
|
+
*/
|
|
4057
|
+
google_client_secret?: string | unknown;
|
|
4058
|
+
};
|
|
3734
4059
|
/**
|
|
3735
4060
|
* A "Resource object" representing a presigned_url
|
|
3736
4061
|
*/
|
|
@@ -4100,7 +4425,14 @@ type Subscription = {
|
|
|
4100
4425
|
* An attributes object for a subscription
|
|
4101
4426
|
*/
|
|
4102
4427
|
attributes?: {
|
|
4103
|
-
|
|
4428
|
+
/**
|
|
4429
|
+
* Field included by default.
|
|
4430
|
+
*/
|
|
4431
|
+
dunning_stage: number;
|
|
4432
|
+
/**
|
|
4433
|
+
* Field included by default.
|
|
4434
|
+
*/
|
|
4435
|
+
next_retry_at?: string | null | unknown;
|
|
4104
4436
|
};
|
|
4105
4437
|
id: string;
|
|
4106
4438
|
/**
|
|
@@ -4416,9 +4748,9 @@ type Workspace = {
|
|
|
4416
4748
|
*/
|
|
4417
4749
|
app: string;
|
|
4418
4750
|
/**
|
|
4419
|
-
* Field included by default.
|
|
4751
|
+
* Required - the application this workspace belongs to. Field included by default.
|
|
4420
4752
|
*/
|
|
4421
|
-
application_id
|
|
4753
|
+
application_id: string;
|
|
4422
4754
|
/**
|
|
4423
4755
|
* Field included by default.
|
|
4424
4756
|
*/
|
|
@@ -4427,18 +4759,10 @@ type Workspace = {
|
|
|
4427
4759
|
* Field included by default.
|
|
4428
4760
|
*/
|
|
4429
4761
|
created_at: unknown;
|
|
4430
|
-
/**
|
|
4431
|
-
* When true, documents with matching file_hash are deduplicated. When false, file_hash is discarded and duplicates are allowed. Field included by default.
|
|
4432
|
-
*/
|
|
4433
|
-
deduplicate_uploads: boolean;
|
|
4434
4762
|
/**
|
|
4435
4763
|
* Field included by default.
|
|
4436
4764
|
*/
|
|
4437
4765
|
description?: string | null | unknown;
|
|
4438
|
-
/**
|
|
4439
|
-
* Count of documents without file_hash (not ready for deduplication)
|
|
4440
|
-
*/
|
|
4441
|
-
documents_missing_hash_count?: number | unknown;
|
|
4442
4766
|
/**
|
|
4443
4767
|
* Field included by default.
|
|
4444
4768
|
*/
|
|
@@ -4459,10 +4783,6 @@ type Workspace = {
|
|
|
4459
4783
|
* Field included by default.
|
|
4460
4784
|
*/
|
|
4461
4785
|
name: string;
|
|
4462
|
-
/**
|
|
4463
|
-
* True when all documents have file_hash populated (safe to enable deduplication)
|
|
4464
|
-
*/
|
|
4465
|
-
ready_for_deduplication?: boolean | null | unknown;
|
|
4466
4786
|
/**
|
|
4467
4787
|
* Field included by default.
|
|
4468
4788
|
*/
|
|
@@ -4511,13 +4831,21 @@ type Workspace = {
|
|
|
4511
4831
|
*/
|
|
4512
4832
|
allow_overdraft: boolean;
|
|
4513
4833
|
/**
|
|
4514
|
-
* Field included by default.
|
|
4834
|
+
* Maximum overdraft credits allowed per period. Field included by default.
|
|
4515
4835
|
*/
|
|
4516
4836
|
overdraft_limit?: number | null | unknown;
|
|
4517
4837
|
/**
|
|
4518
|
-
* Field included by default.
|
|
4838
|
+
* Period for overdraft limit reset (daily, weekly, monthly). Field included by default.
|
|
4519
4839
|
*/
|
|
4520
4840
|
overdraft_period?: "daily" | "weekly" | "monthly" | unknown;
|
|
4841
|
+
/**
|
|
4842
|
+
* When the current overdraft period began. Field included by default.
|
|
4843
|
+
*/
|
|
4844
|
+
overdraft_period_started_at?: unknown;
|
|
4845
|
+
/**
|
|
4846
|
+
* Credits used from overdraft in current period. Field included by default.
|
|
4847
|
+
*/
|
|
4848
|
+
overdraft_used?: number | null | unknown;
|
|
4521
4849
|
};
|
|
4522
4850
|
/**
|
|
4523
4851
|
* Field included by default.
|
|
@@ -4852,37 +5180,34 @@ type ExtractionDocument = {
|
|
|
4852
5180
|
* Overall classification confidence (0.0 to 1.0). Field included by default.
|
|
4853
5181
|
*/
|
|
4854
5182
|
classification_confidence?: number | null | unknown;
|
|
4855
|
-
/**
|
|
4856
|
-
* The specific version of the Agent that processed this document. Field included by default.
|
|
4857
|
-
*/
|
|
4858
|
-
agent_version_id?: string | null | unknown;
|
|
4859
5183
|
uploaded_at?: string | null | unknown;
|
|
4860
5184
|
/**
|
|
4861
5185
|
* Current processing stage based on storage path
|
|
4862
5186
|
*/
|
|
4863
5187
|
stage?: string | null | unknown;
|
|
4864
5188
|
/**
|
|
4865
|
-
*
|
|
5189
|
+
* Credits billed for processing this document. Field included by default.
|
|
4866
5190
|
*/
|
|
4867
|
-
|
|
4868
|
-
/**
|
|
4869
|
-
* The revision within the schema version (e.g., 5 means 'v2 rev 5'). Field included by default.
|
|
4870
|
-
*/
|
|
4871
|
-
schema_revision?: number | null | unknown;
|
|
5191
|
+
billed_credits?: number | null | unknown;
|
|
4872
5192
|
/**
|
|
4873
|
-
*
|
|
5193
|
+
* Field included by default.
|
|
4874
5194
|
*/
|
|
4875
|
-
billed_credits?: number | null | unknown;
|
|
4876
5195
|
storage_path: string;
|
|
4877
5196
|
/**
|
|
4878
|
-
* SHA256 hash of the file content for deduplication
|
|
5197
|
+
* SHA256 hash of the file content for deduplication. Field included by default.
|
|
4879
5198
|
*/
|
|
4880
5199
|
file_hash?: string | null | unknown;
|
|
5200
|
+
/**
|
|
5201
|
+
* Field included by default.
|
|
5202
|
+
*/
|
|
4881
5203
|
excluded_by?: string | null | unknown;
|
|
4882
5204
|
/**
|
|
4883
|
-
* The S3 bucket where this document is stored. Set during upload/begin_upload.
|
|
5205
|
+
* The S3 bucket where this document is stored. Set during upload/begin_upload. Field included by default.
|
|
4884
5206
|
*/
|
|
4885
5207
|
bucket_name?: string | null | unknown;
|
|
5208
|
+
/**
|
|
5209
|
+
* Field included by default.
|
|
5210
|
+
*/
|
|
4886
5211
|
deleted_at?: unknown;
|
|
4887
5212
|
/**
|
|
4888
5213
|
* Classification object containing domain, document_type, municipality, state, and confidence
|
|
@@ -4899,49 +5224,76 @@ type ExtractionDocument = {
|
|
|
4899
5224
|
* Reason why this document is in the review queue
|
|
4900
5225
|
*/
|
|
4901
5226
|
queue_reason?: string | null | unknown;
|
|
5227
|
+
/**
|
|
5228
|
+
* Field included by default.
|
|
5229
|
+
*/
|
|
4902
5230
|
status?: "queued" | "processing" | "completed" | "failed" | "cancelled" | "pending_credits" | unknown;
|
|
5231
|
+
/**
|
|
5232
|
+
* Field included by default.
|
|
5233
|
+
*/
|
|
4903
5234
|
progress?: number | null | unknown;
|
|
4904
5235
|
/**
|
|
4905
|
-
* Timestamp when document was moved to output/error bucket
|
|
5236
|
+
* Timestamp when document was moved to output/error bucket. Field included by default.
|
|
4906
5237
|
*/
|
|
4907
5238
|
moved_at?: unknown;
|
|
4908
5239
|
/**
|
|
4909
|
-
* Full path (bucket/key) where document was copied after successful extraction
|
|
5240
|
+
* Full path (bucket/key) where document was copied after successful extraction. Field included by default.
|
|
4910
5241
|
*/
|
|
4911
5242
|
output_storage_path?: string | null | unknown;
|
|
4912
5243
|
/**
|
|
4913
|
-
* Metadata about the training session for this document (trained_at, user_id, scores)
|
|
5244
|
+
* Metadata about the training session for this document (trained_at, user_id, scores). Field included by default.
|
|
4914
5245
|
*/
|
|
4915
5246
|
training_metadata?: {
|
|
4916
5247
|
[key: string]: unknown;
|
|
4917
5248
|
} | null | unknown;
|
|
4918
5249
|
upload_url?: string | null | unknown;
|
|
5250
|
+
/**
|
|
5251
|
+
* Field included by default.
|
|
5252
|
+
*/
|
|
4919
5253
|
pages?: number | null | unknown;
|
|
4920
5254
|
/**
|
|
4921
|
-
* The review/verification state of the document
|
|
5255
|
+
* The review/verification state of the document. Field included by default.
|
|
4922
5256
|
*/
|
|
4923
5257
|
verification_status?: "unverified" | "partially_verified" | "fully_verified" | unknown;
|
|
5258
|
+
/**
|
|
5259
|
+
* Field included by default.
|
|
5260
|
+
*/
|
|
4924
5261
|
processed_at?: unknown;
|
|
5262
|
+
/**
|
|
5263
|
+
* Field included by default.
|
|
5264
|
+
*/
|
|
4925
5265
|
error_message?: string | null | unknown;
|
|
5266
|
+
/**
|
|
5267
|
+
* Field included by default.
|
|
5268
|
+
*/
|
|
4926
5269
|
verified_by_user_id?: string | null | unknown;
|
|
5270
|
+
/**
|
|
5271
|
+
* Field included by default.
|
|
5272
|
+
*/
|
|
4927
5273
|
file_type: "pdf" | "docx" | "image" | "zip";
|
|
5274
|
+
/**
|
|
5275
|
+
* Field included by default.
|
|
5276
|
+
*/
|
|
4928
5277
|
file_size_bytes?: number | null | unknown;
|
|
4929
5278
|
/**
|
|
4930
|
-
* Timestamp when document processing completed (status changed to :completed)
|
|
5279
|
+
* Timestamp when document processing completed (status changed to :completed). Field included by default.
|
|
4931
5280
|
*/
|
|
4932
5281
|
completed_at?: unknown;
|
|
4933
5282
|
/**
|
|
4934
|
-
* The version of the agent/schema used to process this document
|
|
5283
|
+
* The version of the agent/schema used to process this document. Field included by default.
|
|
4935
5284
|
*/
|
|
4936
5285
|
schema_version?: string | null | unknown;
|
|
4937
5286
|
presigned_view_url?: string | null | unknown;
|
|
5287
|
+
/**
|
|
5288
|
+
* Field included by default.
|
|
5289
|
+
*/
|
|
4938
5290
|
last_verified_at?: unknown;
|
|
4939
5291
|
/**
|
|
4940
5292
|
* State or province code (2-letter). Field included by default.
|
|
4941
5293
|
*/
|
|
4942
5294
|
state?: string | null | unknown;
|
|
4943
5295
|
/**
|
|
4944
|
-
* Full path (bucket/key) where document was copied after failed extraction
|
|
5296
|
+
* Full path (bucket/key) where document was copied after failed extraction. Field included by default.
|
|
4945
5297
|
*/
|
|
4946
5298
|
error_storage_path?: string | null | unknown;
|
|
4947
5299
|
/**
|
|
@@ -4949,14 +5301,16 @@ type ExtractionDocument = {
|
|
|
4949
5301
|
*/
|
|
4950
5302
|
domain?: string | null | unknown;
|
|
4951
5303
|
/**
|
|
4952
|
-
* If true, this document is excluded from training (both creating new examples and being used in retrieval)
|
|
5304
|
+
* If true, this document is excluded from training (both creating new examples and being used in retrieval). Field included by default.
|
|
4953
5305
|
*/
|
|
4954
5306
|
excluded_from_training: boolean;
|
|
4955
5307
|
/**
|
|
4956
|
-
*
|
|
5308
|
+
* Field included by default.
|
|
4957
5309
|
*/
|
|
4958
|
-
agent_id?: string | null | unknown;
|
|
4959
5310
|
excluded_at?: unknown;
|
|
5311
|
+
/**
|
|
5312
|
+
* Field included by default.
|
|
5313
|
+
*/
|
|
4960
5314
|
filename: string;
|
|
4961
5315
|
/**
|
|
4962
5316
|
* Average confidence score across all extracted fields (0.0 to 1.0). Field included by default.
|
|
@@ -6024,7 +6378,10 @@ type PostWorkspacesData = {
|
|
|
6024
6378
|
* App type: extract, invoicing, crm, etc.
|
|
6025
6379
|
*/
|
|
6026
6380
|
app?: string | unknown;
|
|
6027
|
-
|
|
6381
|
+
/**
|
|
6382
|
+
* Required - the application this workspace belongs to
|
|
6383
|
+
*/
|
|
6384
|
+
application_id: string;
|
|
6028
6385
|
description?: string | unknown;
|
|
6029
6386
|
expires_at?: unknown;
|
|
6030
6387
|
initial_credits?: number | unknown;
|
|
@@ -6113,7 +6470,7 @@ type PostWorkspacesResponses = {
|
|
|
6113
6470
|
};
|
|
6114
6471
|
};
|
|
6115
6472
|
type PostWorkspacesResponse = PostWorkspacesResponses[keyof PostWorkspacesResponses];
|
|
6116
|
-
type
|
|
6473
|
+
type GetPaymentMethodsData = {
|
|
6117
6474
|
body?: never;
|
|
6118
6475
|
headers: {
|
|
6119
6476
|
/**
|
|
@@ -6121,16 +6478,38 @@ type GetAgentsByIdStatsData = {
|
|
|
6121
6478
|
*/
|
|
6122
6479
|
"x-application-key": string;
|
|
6123
6480
|
};
|
|
6124
|
-
path
|
|
6481
|
+
path?: never;
|
|
6482
|
+
query?: {
|
|
6125
6483
|
/**
|
|
6126
|
-
*
|
|
6484
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
6127
6485
|
*/
|
|
6128
|
-
|
|
6486
|
+
filter?: {
|
|
6487
|
+
[key: string]: unknown;
|
|
6488
|
+
};
|
|
6489
|
+
/**
|
|
6490
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
6491
|
+
*/
|
|
6492
|
+
sort?: string;
|
|
6493
|
+
/**
|
|
6494
|
+
* JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
|
|
6495
|
+
*/
|
|
6496
|
+
page?: {
|
|
6497
|
+
[key: string]: unknown;
|
|
6498
|
+
};
|
|
6499
|
+
/**
|
|
6500
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
6501
|
+
*/
|
|
6502
|
+
include?: string;
|
|
6503
|
+
/**
|
|
6504
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
6505
|
+
*/
|
|
6506
|
+
fields?: {
|
|
6507
|
+
[key: string]: unknown;
|
|
6508
|
+
};
|
|
6129
6509
|
};
|
|
6130
|
-
|
|
6131
|
-
url: "/agents/{id}/stats";
|
|
6510
|
+
url: "/payment-methods";
|
|
6132
6511
|
};
|
|
6133
|
-
type
|
|
6512
|
+
type GetPaymentMethodsErrors = {
|
|
6134
6513
|
/**
|
|
6135
6514
|
* Bad Request - Invalid input data or malformed request
|
|
6136
6515
|
*/
|
|
@@ -6160,18 +6539,47 @@ type GetAgentsByIdStatsErrors = {
|
|
|
6160
6539
|
*/
|
|
6161
6540
|
default: Errors;
|
|
6162
6541
|
};
|
|
6163
|
-
type
|
|
6164
|
-
type
|
|
6542
|
+
type GetPaymentMethodsError = GetPaymentMethodsErrors[keyof GetPaymentMethodsErrors];
|
|
6543
|
+
type GetPaymentMethodsResponses = {
|
|
6165
6544
|
/**
|
|
6166
6545
|
* Success
|
|
6167
6546
|
*/
|
|
6168
6547
|
200: {
|
|
6169
|
-
|
|
6548
|
+
/**
|
|
6549
|
+
* An array of resource objects representing a payment_method
|
|
6550
|
+
*/
|
|
6551
|
+
data?: Array<PaymentMethod>;
|
|
6552
|
+
included?: Array<unknown>;
|
|
6553
|
+
meta?: {
|
|
6554
|
+
[key: string]: unknown;
|
|
6555
|
+
};
|
|
6170
6556
|
};
|
|
6171
6557
|
};
|
|
6172
|
-
type
|
|
6173
|
-
type
|
|
6174
|
-
|
|
6558
|
+
type GetPaymentMethodsResponse = GetPaymentMethodsResponses[keyof GetPaymentMethodsResponses];
|
|
6559
|
+
type PostPaymentMethodsData = {
|
|
6560
|
+
/**
|
|
6561
|
+
* Request body for the /payment-methods operation on payment_method resource
|
|
6562
|
+
*/
|
|
6563
|
+
body: {
|
|
6564
|
+
data: {
|
|
6565
|
+
attributes?: {
|
|
6566
|
+
brand?: string | unknown;
|
|
6567
|
+
customer_id?: string | unknown;
|
|
6568
|
+
exp_month?: number | unknown;
|
|
6569
|
+
exp_year?: number | unknown;
|
|
6570
|
+
is_default?: boolean | unknown;
|
|
6571
|
+
last4?: string | unknown;
|
|
6572
|
+
nickname?: string | unknown;
|
|
6573
|
+
provider?: "qorpay" | unknown;
|
|
6574
|
+
provider_token: string;
|
|
6575
|
+
type: "card" | "bank_account";
|
|
6576
|
+
};
|
|
6577
|
+
relationships?: {
|
|
6578
|
+
[key: string]: never;
|
|
6579
|
+
};
|
|
6580
|
+
type?: "payment_method";
|
|
6581
|
+
};
|
|
6582
|
+
};
|
|
6175
6583
|
headers: {
|
|
6176
6584
|
/**
|
|
6177
6585
|
* Application ID for authentication and routing
|
|
@@ -6191,9 +6599,9 @@ type GetDocumentsStatsData = {
|
|
|
6191
6599
|
[key: string]: unknown;
|
|
6192
6600
|
};
|
|
6193
6601
|
};
|
|
6194
|
-
url: "/
|
|
6602
|
+
url: "/payment-methods";
|
|
6195
6603
|
};
|
|
6196
|
-
type
|
|
6604
|
+
type PostPaymentMethodsErrors = {
|
|
6197
6605
|
/**
|
|
6198
6606
|
* Bad Request - Invalid input data or malformed request
|
|
6199
6607
|
*/
|
|
@@ -6223,36 +6631,22 @@ type GetDocumentsStatsErrors = {
|
|
|
6223
6631
|
*/
|
|
6224
6632
|
default: Errors;
|
|
6225
6633
|
};
|
|
6226
|
-
type
|
|
6227
|
-
type
|
|
6634
|
+
type PostPaymentMethodsError = PostPaymentMethodsErrors[keyof PostPaymentMethodsErrors];
|
|
6635
|
+
type PostPaymentMethodsResponses = {
|
|
6228
6636
|
/**
|
|
6229
6637
|
* Success
|
|
6230
6638
|
*/
|
|
6231
|
-
|
|
6232
|
-
data?:
|
|
6639
|
+
201: {
|
|
6640
|
+
data?: PaymentMethod;
|
|
6233
6641
|
included?: Array<unknown>;
|
|
6234
6642
|
meta?: {
|
|
6235
6643
|
[key: string]: unknown;
|
|
6236
6644
|
};
|
|
6237
6645
|
};
|
|
6238
6646
|
};
|
|
6239
|
-
type
|
|
6240
|
-
type
|
|
6241
|
-
|
|
6242
|
-
* Request body for the /extraction/documents/:id/dismiss operation on extraction_document resource
|
|
6243
|
-
*/
|
|
6244
|
-
body?: {
|
|
6245
|
-
data: {
|
|
6246
|
-
attributes?: {
|
|
6247
|
-
[key: string]: never;
|
|
6248
|
-
};
|
|
6249
|
-
id: string;
|
|
6250
|
-
relationships?: {
|
|
6251
|
-
[key: string]: never;
|
|
6252
|
-
};
|
|
6253
|
-
type?: "extraction_document";
|
|
6254
|
-
};
|
|
6255
|
-
};
|
|
6647
|
+
type PostPaymentMethodsResponse = PostPaymentMethodsResponses[keyof PostPaymentMethodsResponses];
|
|
6648
|
+
type GetAgentsByIdStatsData = {
|
|
6649
|
+
body?: never;
|
|
6256
6650
|
headers: {
|
|
6257
6651
|
/**
|
|
6258
6652
|
* Application ID for authentication and routing
|
|
@@ -6260,23 +6654,15 @@ type PatchExtractionDocumentsByIdDismissData = {
|
|
|
6260
6654
|
"x-application-key": string;
|
|
6261
6655
|
};
|
|
6262
6656
|
path: {
|
|
6263
|
-
id: string;
|
|
6264
|
-
};
|
|
6265
|
-
query?: {
|
|
6266
|
-
/**
|
|
6267
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
6268
|
-
*/
|
|
6269
|
-
include?: string;
|
|
6270
6657
|
/**
|
|
6271
|
-
*
|
|
6658
|
+
* Agent ID (from URL path parameter)
|
|
6272
6659
|
*/
|
|
6273
|
-
|
|
6274
|
-
[key: string]: unknown;
|
|
6275
|
-
};
|
|
6660
|
+
id: string;
|
|
6276
6661
|
};
|
|
6277
|
-
|
|
6662
|
+
query?: never;
|
|
6663
|
+
url: "/agents/{id}/stats";
|
|
6278
6664
|
};
|
|
6279
|
-
type
|
|
6665
|
+
type GetAgentsByIdStatsErrors = {
|
|
6280
6666
|
/**
|
|
6281
6667
|
* Bad Request - Invalid input data or malformed request
|
|
6282
6668
|
*/
|
|
@@ -6306,38 +6692,18 @@ type PatchExtractionDocumentsByIdDismissErrors = {
|
|
|
6306
6692
|
*/
|
|
6307
6693
|
default: Errors;
|
|
6308
6694
|
};
|
|
6309
|
-
type
|
|
6310
|
-
type
|
|
6695
|
+
type GetAgentsByIdStatsError = GetAgentsByIdStatsErrors[keyof GetAgentsByIdStatsErrors];
|
|
6696
|
+
type GetAgentsByIdStatsResponses = {
|
|
6311
6697
|
/**
|
|
6312
6698
|
* Success
|
|
6313
6699
|
*/
|
|
6314
6700
|
200: {
|
|
6315
|
-
|
|
6316
|
-
included?: Array<ExtractionResult>;
|
|
6317
|
-
meta?: {
|
|
6318
|
-
[key: string]: unknown;
|
|
6319
|
-
};
|
|
6701
|
+
[key: string]: unknown;
|
|
6320
6702
|
};
|
|
6321
6703
|
};
|
|
6322
|
-
type
|
|
6323
|
-
type
|
|
6324
|
-
|
|
6325
|
-
* Request body for the /objects/register operation on object resource
|
|
6326
|
-
*/
|
|
6327
|
-
body: {
|
|
6328
|
-
data: {
|
|
6329
|
-
attributes?: {
|
|
6330
|
-
bucket_id: string;
|
|
6331
|
-
content_type: string;
|
|
6332
|
-
key: string;
|
|
6333
|
-
size_bytes: number;
|
|
6334
|
-
};
|
|
6335
|
-
relationships?: {
|
|
6336
|
-
[key: string]: never;
|
|
6337
|
-
};
|
|
6338
|
-
type?: "object";
|
|
6339
|
-
};
|
|
6340
|
-
};
|
|
6704
|
+
type GetAgentsByIdStatsResponse = GetAgentsByIdStatsResponses[keyof GetAgentsByIdStatsResponses];
|
|
6705
|
+
type GetDocumentsStatsData = {
|
|
6706
|
+
body?: never;
|
|
6341
6707
|
headers: {
|
|
6342
6708
|
/**
|
|
6343
6709
|
* Application ID for authentication and routing
|
|
@@ -6357,9 +6723,175 @@ type PostObjectsRegisterData = {
|
|
|
6357
6723
|
[key: string]: unknown;
|
|
6358
6724
|
};
|
|
6359
6725
|
};
|
|
6360
|
-
url: "/
|
|
6726
|
+
url: "/documents/stats";
|
|
6361
6727
|
};
|
|
6362
|
-
type
|
|
6728
|
+
type GetDocumentsStatsErrors = {
|
|
6729
|
+
/**
|
|
6730
|
+
* Bad Request - Invalid input data or malformed request
|
|
6731
|
+
*/
|
|
6732
|
+
400: ErrorResponse;
|
|
6733
|
+
/**
|
|
6734
|
+
* Unauthorized - Missing or invalid authentication token
|
|
6735
|
+
*/
|
|
6736
|
+
401: ErrorResponse;
|
|
6737
|
+
/**
|
|
6738
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
6739
|
+
*/
|
|
6740
|
+
403: ErrorResponse;
|
|
6741
|
+
/**
|
|
6742
|
+
* Not Found - Resource does not exist
|
|
6743
|
+
*/
|
|
6744
|
+
404: ErrorResponse;
|
|
6745
|
+
/**
|
|
6746
|
+
* Too Many Requests - Rate limit exceeded
|
|
6747
|
+
*/
|
|
6748
|
+
429: ErrorResponse;
|
|
6749
|
+
/**
|
|
6750
|
+
* Internal Server Error - Unexpected server error
|
|
6751
|
+
*/
|
|
6752
|
+
500: ErrorResponse;
|
|
6753
|
+
/**
|
|
6754
|
+
* General Error
|
|
6755
|
+
*/
|
|
6756
|
+
default: Errors;
|
|
6757
|
+
};
|
|
6758
|
+
type GetDocumentsStatsError = GetDocumentsStatsErrors[keyof GetDocumentsStatsErrors];
|
|
6759
|
+
type GetDocumentsStatsResponses = {
|
|
6760
|
+
/**
|
|
6761
|
+
* Success
|
|
6762
|
+
*/
|
|
6763
|
+
200: {
|
|
6764
|
+
data?: DocumentStats;
|
|
6765
|
+
included?: Array<unknown>;
|
|
6766
|
+
meta?: {
|
|
6767
|
+
[key: string]: unknown;
|
|
6768
|
+
};
|
|
6769
|
+
};
|
|
6770
|
+
};
|
|
6771
|
+
type GetDocumentsStatsResponse = GetDocumentsStatsResponses[keyof GetDocumentsStatsResponses];
|
|
6772
|
+
type PatchExtractionDocumentsByIdDismissData = {
|
|
6773
|
+
/**
|
|
6774
|
+
* Request body for the /extraction/documents/:id/dismiss operation on extraction_document resource
|
|
6775
|
+
*/
|
|
6776
|
+
body?: {
|
|
6777
|
+
data: {
|
|
6778
|
+
attributes?: {
|
|
6779
|
+
[key: string]: never;
|
|
6780
|
+
};
|
|
6781
|
+
id: string;
|
|
6782
|
+
relationships?: {
|
|
6783
|
+
[key: string]: never;
|
|
6784
|
+
};
|
|
6785
|
+
type?: "extraction_document";
|
|
6786
|
+
};
|
|
6787
|
+
};
|
|
6788
|
+
headers: {
|
|
6789
|
+
/**
|
|
6790
|
+
* Application ID for authentication and routing
|
|
6791
|
+
*/
|
|
6792
|
+
"x-application-key": string;
|
|
6793
|
+
};
|
|
6794
|
+
path: {
|
|
6795
|
+
id: string;
|
|
6796
|
+
};
|
|
6797
|
+
query?: {
|
|
6798
|
+
/**
|
|
6799
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
6800
|
+
*/
|
|
6801
|
+
include?: string;
|
|
6802
|
+
/**
|
|
6803
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
6804
|
+
*/
|
|
6805
|
+
fields?: {
|
|
6806
|
+
[key: string]: unknown;
|
|
6807
|
+
};
|
|
6808
|
+
};
|
|
6809
|
+
url: "/extraction/documents/{id}/dismiss";
|
|
6810
|
+
};
|
|
6811
|
+
type PatchExtractionDocumentsByIdDismissErrors = {
|
|
6812
|
+
/**
|
|
6813
|
+
* Bad Request - Invalid input data or malformed request
|
|
6814
|
+
*/
|
|
6815
|
+
400: ErrorResponse;
|
|
6816
|
+
/**
|
|
6817
|
+
* Unauthorized - Missing or invalid authentication token
|
|
6818
|
+
*/
|
|
6819
|
+
401: ErrorResponse;
|
|
6820
|
+
/**
|
|
6821
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
6822
|
+
*/
|
|
6823
|
+
403: ErrorResponse;
|
|
6824
|
+
/**
|
|
6825
|
+
* Not Found - Resource does not exist
|
|
6826
|
+
*/
|
|
6827
|
+
404: ErrorResponse;
|
|
6828
|
+
/**
|
|
6829
|
+
* Too Many Requests - Rate limit exceeded
|
|
6830
|
+
*/
|
|
6831
|
+
429: ErrorResponse;
|
|
6832
|
+
/**
|
|
6833
|
+
* Internal Server Error - Unexpected server error
|
|
6834
|
+
*/
|
|
6835
|
+
500: ErrorResponse;
|
|
6836
|
+
/**
|
|
6837
|
+
* General Error
|
|
6838
|
+
*/
|
|
6839
|
+
default: Errors;
|
|
6840
|
+
};
|
|
6841
|
+
type PatchExtractionDocumentsByIdDismissError = PatchExtractionDocumentsByIdDismissErrors[keyof PatchExtractionDocumentsByIdDismissErrors];
|
|
6842
|
+
type PatchExtractionDocumentsByIdDismissResponses = {
|
|
6843
|
+
/**
|
|
6844
|
+
* Success
|
|
6845
|
+
*/
|
|
6846
|
+
200: {
|
|
6847
|
+
data?: ExtractionDocument;
|
|
6848
|
+
included?: Array<ExtractionResult>;
|
|
6849
|
+
meta?: {
|
|
6850
|
+
[key: string]: unknown;
|
|
6851
|
+
};
|
|
6852
|
+
};
|
|
6853
|
+
};
|
|
6854
|
+
type PatchExtractionDocumentsByIdDismissResponse = PatchExtractionDocumentsByIdDismissResponses[keyof PatchExtractionDocumentsByIdDismissResponses];
|
|
6855
|
+
type PostObjectsRegisterData = {
|
|
6856
|
+
/**
|
|
6857
|
+
* Request body for the /objects/register operation on object resource
|
|
6858
|
+
*/
|
|
6859
|
+
body: {
|
|
6860
|
+
data: {
|
|
6861
|
+
attributes?: {
|
|
6862
|
+
bucket_id: string;
|
|
6863
|
+
content_type: string;
|
|
6864
|
+
key: string;
|
|
6865
|
+
size_bytes: number;
|
|
6866
|
+
};
|
|
6867
|
+
relationships?: {
|
|
6868
|
+
[key: string]: never;
|
|
6869
|
+
};
|
|
6870
|
+
type?: "object";
|
|
6871
|
+
};
|
|
6872
|
+
};
|
|
6873
|
+
headers: {
|
|
6874
|
+
/**
|
|
6875
|
+
* Application ID for authentication and routing
|
|
6876
|
+
*/
|
|
6877
|
+
"x-application-key": string;
|
|
6878
|
+
};
|
|
6879
|
+
path?: never;
|
|
6880
|
+
query?: {
|
|
6881
|
+
/**
|
|
6882
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
6883
|
+
*/
|
|
6884
|
+
include?: string;
|
|
6885
|
+
/**
|
|
6886
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
6887
|
+
*/
|
|
6888
|
+
fields?: {
|
|
6889
|
+
[key: string]: unknown;
|
|
6890
|
+
};
|
|
6891
|
+
};
|
|
6892
|
+
url: "/objects/register";
|
|
6893
|
+
};
|
|
6894
|
+
type PostObjectsRegisterErrors = {
|
|
6363
6895
|
/**
|
|
6364
6896
|
* Bad Request - Invalid input data or malformed request
|
|
6365
6897
|
*/
|
|
@@ -7697,14 +8229,6 @@ type PatchExtractionDocumentsByIdStatusData = {
|
|
|
7697
8229
|
body?: {
|
|
7698
8230
|
data: {
|
|
7699
8231
|
attributes?: {
|
|
7700
|
-
/**
|
|
7701
|
-
* The Agent that processed this document
|
|
7702
|
-
*/
|
|
7703
|
-
agent_id?: string | unknown;
|
|
7704
|
-
/**
|
|
7705
|
-
* The specific version of the Agent that processed this document
|
|
7706
|
-
*/
|
|
7707
|
-
agent_version_id?: string | unknown;
|
|
7708
8232
|
/**
|
|
7709
8233
|
* Average confidence score across all extracted fields (0.0 to 1.0)
|
|
7710
8234
|
*/
|
|
@@ -8566,28 +9090,33 @@ type PostConfigsResponses = {
|
|
|
8566
9090
|
};
|
|
8567
9091
|
};
|
|
8568
9092
|
type PostConfigsResponse = PostConfigsResponses[keyof PostConfigsResponses];
|
|
8569
|
-
type
|
|
8570
|
-
|
|
9093
|
+
type PatchWalletAutoTopUpData = {
|
|
9094
|
+
/**
|
|
9095
|
+
* Request body for the /wallet/auto-top-up operation on wallet resource
|
|
9096
|
+
*/
|
|
9097
|
+
body: {
|
|
9098
|
+
data: {
|
|
9099
|
+
attributes?: {
|
|
9100
|
+
amount?: number | unknown;
|
|
9101
|
+
enabled: boolean;
|
|
9102
|
+
package_id?: string | unknown;
|
|
9103
|
+
threshold?: number | unknown;
|
|
9104
|
+
};
|
|
9105
|
+
id: string;
|
|
9106
|
+
relationships?: {
|
|
9107
|
+
[key: string]: never;
|
|
9108
|
+
};
|
|
9109
|
+
type?: "wallet";
|
|
9110
|
+
};
|
|
9111
|
+
};
|
|
8571
9112
|
headers: {
|
|
8572
9113
|
/**
|
|
8573
9114
|
* Application ID for authentication and routing
|
|
8574
9115
|
*/
|
|
8575
9116
|
"x-application-key": string;
|
|
8576
9117
|
};
|
|
8577
|
-
path
|
|
8578
|
-
agent_version_id: string;
|
|
8579
|
-
};
|
|
9118
|
+
path?: never;
|
|
8580
9119
|
query?: {
|
|
8581
|
-
/**
|
|
8582
|
-
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
8583
|
-
*/
|
|
8584
|
-
filter?: {
|
|
8585
|
-
[key: string]: unknown;
|
|
8586
|
-
};
|
|
8587
|
-
/**
|
|
8588
|
-
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
8589
|
-
*/
|
|
8590
|
-
sort?: string;
|
|
8591
9120
|
/**
|
|
8592
9121
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
8593
9122
|
*/
|
|
@@ -8599,9 +9128,9 @@ type GetAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsData = {
|
|
|
8599
9128
|
[key: string]: unknown;
|
|
8600
9129
|
};
|
|
8601
9130
|
};
|
|
8602
|
-
url: "/
|
|
9131
|
+
url: "/wallet/auto-top-up";
|
|
8603
9132
|
};
|
|
8604
|
-
type
|
|
9133
|
+
type PatchWalletAutoTopUpErrors = {
|
|
8605
9134
|
/**
|
|
8606
9135
|
* Bad Request - Invalid input data or malformed request
|
|
8607
9136
|
*/
|
|
@@ -8631,39 +9160,36 @@ type GetAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsErrors = {
|
|
|
8631
9160
|
*/
|
|
8632
9161
|
default: Errors;
|
|
8633
9162
|
};
|
|
8634
|
-
type
|
|
8635
|
-
type
|
|
9163
|
+
type PatchWalletAutoTopUpError = PatchWalletAutoTopUpErrors[keyof PatchWalletAutoTopUpErrors];
|
|
9164
|
+
type PatchWalletAutoTopUpResponses = {
|
|
8636
9165
|
/**
|
|
8637
9166
|
* Success
|
|
8638
9167
|
*/
|
|
8639
9168
|
200: {
|
|
8640
|
-
|
|
8641
|
-
|
|
8642
|
-
*/
|
|
8643
|
-
data?: Array<AgentVersionRevision>;
|
|
8644
|
-
included?: Array<unknown>;
|
|
9169
|
+
data?: Wallet;
|
|
9170
|
+
included?: Array<Plan>;
|
|
8645
9171
|
meta?: {
|
|
8646
9172
|
[key: string]: unknown;
|
|
8647
9173
|
};
|
|
8648
9174
|
};
|
|
8649
9175
|
};
|
|
8650
|
-
type
|
|
8651
|
-
type
|
|
9176
|
+
type PatchWalletAutoTopUpResponse = PatchWalletAutoTopUpResponses[keyof PatchWalletAutoTopUpResponses];
|
|
9177
|
+
type PostTokensData = {
|
|
8652
9178
|
/**
|
|
8653
|
-
* Request body for the /
|
|
9179
|
+
* Request body for the /tokens operation on token resource
|
|
8654
9180
|
*/
|
|
8655
|
-
body
|
|
9181
|
+
body?: {
|
|
8656
9182
|
data: {
|
|
8657
9183
|
attributes?: {
|
|
8658
|
-
|
|
8659
|
-
|
|
8660
|
-
|
|
9184
|
+
card?: {
|
|
9185
|
+
[key: string]: unknown;
|
|
9186
|
+
} | unknown;
|
|
9187
|
+
type?: "card" | "bank_account" | unknown;
|
|
8661
9188
|
};
|
|
8662
|
-
id: string;
|
|
8663
9189
|
relationships?: {
|
|
8664
9190
|
[key: string]: never;
|
|
8665
9191
|
};
|
|
8666
|
-
type?: "
|
|
9192
|
+
type?: "token";
|
|
8667
9193
|
};
|
|
8668
9194
|
};
|
|
8669
9195
|
headers: {
|
|
@@ -8685,9 +9211,9 @@ type PatchWalletAutoTopUpData = {
|
|
|
8685
9211
|
[key: string]: unknown;
|
|
8686
9212
|
};
|
|
8687
9213
|
};
|
|
8688
|
-
url: "/
|
|
9214
|
+
url: "/tokens";
|
|
8689
9215
|
};
|
|
8690
|
-
type
|
|
9216
|
+
type PostTokensErrors = {
|
|
8691
9217
|
/**
|
|
8692
9218
|
* Bad Request - Invalid input data or malformed request
|
|
8693
9219
|
*/
|
|
@@ -8717,36 +9243,41 @@ type PatchWalletAutoTopUpErrors = {
|
|
|
8717
9243
|
*/
|
|
8718
9244
|
default: Errors;
|
|
8719
9245
|
};
|
|
8720
|
-
type
|
|
8721
|
-
type
|
|
9246
|
+
type PostTokensError = PostTokensErrors[keyof PostTokensErrors];
|
|
9247
|
+
type PostTokensResponses = {
|
|
8722
9248
|
/**
|
|
8723
9249
|
* Success
|
|
8724
9250
|
*/
|
|
8725
|
-
|
|
8726
|
-
data?:
|
|
8727
|
-
included?: Array<
|
|
9251
|
+
201: {
|
|
9252
|
+
data?: Token;
|
|
9253
|
+
included?: Array<unknown>;
|
|
8728
9254
|
meta?: {
|
|
8729
9255
|
[key: string]: unknown;
|
|
8730
9256
|
};
|
|
8731
9257
|
};
|
|
8732
9258
|
};
|
|
8733
|
-
type
|
|
8734
|
-
type
|
|
9259
|
+
type PostTokensResponse = PostTokensResponses[keyof PostTokensResponses];
|
|
9260
|
+
type PatchApiKeysByIdSetBudgetData = {
|
|
8735
9261
|
/**
|
|
8736
|
-
* Request body for the /
|
|
9262
|
+
* Request body for the /api_keys/:id/set_budget operation on api_key resource
|
|
8737
9263
|
*/
|
|
8738
9264
|
body?: {
|
|
8739
9265
|
data: {
|
|
8740
9266
|
attributes?: {
|
|
8741
|
-
|
|
8742
|
-
|
|
8743
|
-
|
|
8744
|
-
|
|
9267
|
+
/**
|
|
9268
|
+
* Maximum credits per period (null to remove limit)
|
|
9269
|
+
*/
|
|
9270
|
+
credit_limit?: number | unknown;
|
|
9271
|
+
/**
|
|
9272
|
+
* Budget reset period (null to remove limit)
|
|
9273
|
+
*/
|
|
9274
|
+
credit_limit_period?: "daily" | "weekly" | "monthly" | "yearly" | "lifetime" | unknown;
|
|
8745
9275
|
};
|
|
9276
|
+
id: string;
|
|
8746
9277
|
relationships?: {
|
|
8747
9278
|
[key: string]: never;
|
|
8748
9279
|
};
|
|
8749
|
-
type?: "
|
|
9280
|
+
type?: "api_key";
|
|
8750
9281
|
};
|
|
8751
9282
|
};
|
|
8752
9283
|
headers: {
|
|
@@ -8755,7 +9286,9 @@ type PostTokensData = {
|
|
|
8755
9286
|
*/
|
|
8756
9287
|
"x-application-key": string;
|
|
8757
9288
|
};
|
|
8758
|
-
path
|
|
9289
|
+
path: {
|
|
9290
|
+
id: string;
|
|
9291
|
+
};
|
|
8759
9292
|
query?: {
|
|
8760
9293
|
/**
|
|
8761
9294
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -8768,99 +9301,9 @@ type PostTokensData = {
|
|
|
8768
9301
|
[key: string]: unknown;
|
|
8769
9302
|
};
|
|
8770
9303
|
};
|
|
8771
|
-
url: "/
|
|
9304
|
+
url: "/api_keys/{id}/set_budget";
|
|
8772
9305
|
};
|
|
8773
|
-
type
|
|
8774
|
-
/**
|
|
8775
|
-
* Bad Request - Invalid input data or malformed request
|
|
8776
|
-
*/
|
|
8777
|
-
400: ErrorResponse;
|
|
8778
|
-
/**
|
|
8779
|
-
* Unauthorized - Missing or invalid authentication token
|
|
8780
|
-
*/
|
|
8781
|
-
401: ErrorResponse;
|
|
8782
|
-
/**
|
|
8783
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
8784
|
-
*/
|
|
8785
|
-
403: ErrorResponse;
|
|
8786
|
-
/**
|
|
8787
|
-
* Not Found - Resource does not exist
|
|
8788
|
-
*/
|
|
8789
|
-
404: ErrorResponse;
|
|
8790
|
-
/**
|
|
8791
|
-
* Too Many Requests - Rate limit exceeded
|
|
8792
|
-
*/
|
|
8793
|
-
429: ErrorResponse;
|
|
8794
|
-
/**
|
|
8795
|
-
* Internal Server Error - Unexpected server error
|
|
8796
|
-
*/
|
|
8797
|
-
500: ErrorResponse;
|
|
8798
|
-
/**
|
|
8799
|
-
* General Error
|
|
8800
|
-
*/
|
|
8801
|
-
default: Errors;
|
|
8802
|
-
};
|
|
8803
|
-
type PostTokensError = PostTokensErrors[keyof PostTokensErrors];
|
|
8804
|
-
type PostTokensResponses = {
|
|
8805
|
-
/**
|
|
8806
|
-
* Success
|
|
8807
|
-
*/
|
|
8808
|
-
201: {
|
|
8809
|
-
data?: Token;
|
|
8810
|
-
included?: Array<unknown>;
|
|
8811
|
-
meta?: {
|
|
8812
|
-
[key: string]: unknown;
|
|
8813
|
-
};
|
|
8814
|
-
};
|
|
8815
|
-
};
|
|
8816
|
-
type PostTokensResponse = PostTokensResponses[keyof PostTokensResponses];
|
|
8817
|
-
type PatchApiKeysByIdSetBudgetData = {
|
|
8818
|
-
/**
|
|
8819
|
-
* Request body for the /api_keys/:id/set_budget operation on api_key resource
|
|
8820
|
-
*/
|
|
8821
|
-
body?: {
|
|
8822
|
-
data: {
|
|
8823
|
-
attributes?: {
|
|
8824
|
-
/**
|
|
8825
|
-
* Maximum credits per period (null to remove limit)
|
|
8826
|
-
*/
|
|
8827
|
-
credit_limit?: number | unknown;
|
|
8828
|
-
/**
|
|
8829
|
-
* Budget reset period (null to remove limit)
|
|
8830
|
-
*/
|
|
8831
|
-
credit_limit_period?: "daily" | "weekly" | "monthly" | "yearly" | "lifetime" | unknown;
|
|
8832
|
-
};
|
|
8833
|
-
id: string;
|
|
8834
|
-
relationships?: {
|
|
8835
|
-
[key: string]: never;
|
|
8836
|
-
};
|
|
8837
|
-
type?: "api_key";
|
|
8838
|
-
};
|
|
8839
|
-
};
|
|
8840
|
-
headers: {
|
|
8841
|
-
/**
|
|
8842
|
-
* Application ID for authentication and routing
|
|
8843
|
-
*/
|
|
8844
|
-
"x-application-key": string;
|
|
8845
|
-
};
|
|
8846
|
-
path: {
|
|
8847
|
-
id: string;
|
|
8848
|
-
};
|
|
8849
|
-
query?: {
|
|
8850
|
-
/**
|
|
8851
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
8852
|
-
*/
|
|
8853
|
-
include?: string;
|
|
8854
|
-
/**
|
|
8855
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
8856
|
-
*/
|
|
8857
|
-
fields?: {
|
|
8858
|
-
[key: string]: unknown;
|
|
8859
|
-
};
|
|
8860
|
-
};
|
|
8861
|
-
url: "/api_keys/{id}/set_budget";
|
|
8862
|
-
};
|
|
8863
|
-
type PatchApiKeysByIdSetBudgetErrors = {
|
|
9306
|
+
type PatchApiKeysByIdSetBudgetErrors = {
|
|
8864
9307
|
/**
|
|
8865
9308
|
* Bad Request - Invalid input data or malformed request
|
|
8866
9309
|
*/
|
|
@@ -9964,89 +10407,6 @@ type GetAgentsUsageResponses = {
|
|
|
9964
10407
|
};
|
|
9965
10408
|
};
|
|
9966
10409
|
type GetAgentsUsageResponse = GetAgentsUsageResponses[keyof GetAgentsUsageResponses];
|
|
9967
|
-
type PatchWorkspacesByIdPopulateHashesData = {
|
|
9968
|
-
/**
|
|
9969
|
-
* Request body for the /workspaces/:id/populate-hashes operation on workspace resource
|
|
9970
|
-
*/
|
|
9971
|
-
body?: {
|
|
9972
|
-
data: {
|
|
9973
|
-
attributes?: {
|
|
9974
|
-
[key: string]: never;
|
|
9975
|
-
};
|
|
9976
|
-
id: string;
|
|
9977
|
-
relationships?: {
|
|
9978
|
-
[key: string]: never;
|
|
9979
|
-
};
|
|
9980
|
-
type?: "workspace";
|
|
9981
|
-
};
|
|
9982
|
-
};
|
|
9983
|
-
headers: {
|
|
9984
|
-
/**
|
|
9985
|
-
* Application ID for authentication and routing
|
|
9986
|
-
*/
|
|
9987
|
-
"x-application-key": string;
|
|
9988
|
-
};
|
|
9989
|
-
path: {
|
|
9990
|
-
id: string;
|
|
9991
|
-
};
|
|
9992
|
-
query?: {
|
|
9993
|
-
/**
|
|
9994
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
9995
|
-
*/
|
|
9996
|
-
include?: string;
|
|
9997
|
-
/**
|
|
9998
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
9999
|
-
*/
|
|
10000
|
-
fields?: {
|
|
10001
|
-
[key: string]: unknown;
|
|
10002
|
-
};
|
|
10003
|
-
};
|
|
10004
|
-
url: "/workspaces/{id}/populate-hashes";
|
|
10005
|
-
};
|
|
10006
|
-
type PatchWorkspacesByIdPopulateHashesErrors = {
|
|
10007
|
-
/**
|
|
10008
|
-
* Bad Request - Invalid input data or malformed request
|
|
10009
|
-
*/
|
|
10010
|
-
400: ErrorResponse;
|
|
10011
|
-
/**
|
|
10012
|
-
* Unauthorized - Missing or invalid authentication token
|
|
10013
|
-
*/
|
|
10014
|
-
401: ErrorResponse;
|
|
10015
|
-
/**
|
|
10016
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
10017
|
-
*/
|
|
10018
|
-
403: ErrorResponse;
|
|
10019
|
-
/**
|
|
10020
|
-
* Not Found - Resource does not exist
|
|
10021
|
-
*/
|
|
10022
|
-
404: ErrorResponse;
|
|
10023
|
-
/**
|
|
10024
|
-
* Too Many Requests - Rate limit exceeded
|
|
10025
|
-
*/
|
|
10026
|
-
429: ErrorResponse;
|
|
10027
|
-
/**
|
|
10028
|
-
* Internal Server Error - Unexpected server error
|
|
10029
|
-
*/
|
|
10030
|
-
500: ErrorResponse;
|
|
10031
|
-
/**
|
|
10032
|
-
* General Error
|
|
10033
|
-
*/
|
|
10034
|
-
default: Errors;
|
|
10035
|
-
};
|
|
10036
|
-
type PatchWorkspacesByIdPopulateHashesError = PatchWorkspacesByIdPopulateHashesErrors[keyof PatchWorkspacesByIdPopulateHashesErrors];
|
|
10037
|
-
type PatchWorkspacesByIdPopulateHashesResponses = {
|
|
10038
|
-
/**
|
|
10039
|
-
* Success
|
|
10040
|
-
*/
|
|
10041
|
-
200: {
|
|
10042
|
-
data?: Workspace;
|
|
10043
|
-
included?: Array<Tenant>;
|
|
10044
|
-
meta?: {
|
|
10045
|
-
[key: string]: unknown;
|
|
10046
|
-
};
|
|
10047
|
-
};
|
|
10048
|
-
};
|
|
10049
|
-
type PatchWorkspacesByIdPopulateHashesResponse = PatchWorkspacesByIdPopulateHashesResponses[keyof PatchWorkspacesByIdPopulateHashesResponses];
|
|
10050
10410
|
type PatchNotificationMethodsByIdSetPrimaryData = {
|
|
10051
10411
|
/**
|
|
10052
10412
|
* Request body for the /notification_methods/:id/set_primary operation on notification_method resource
|
|
@@ -12810,7 +13170,7 @@ type GetUsersByIdResponses = {
|
|
|
12810
13170
|
};
|
|
12811
13171
|
};
|
|
12812
13172
|
type GetUsersByIdResponse = GetUsersByIdResponses[keyof GetUsersByIdResponses];
|
|
12813
|
-
type
|
|
13173
|
+
type DeleteExtractionResultsByIdData = {
|
|
12814
13174
|
body?: never;
|
|
12815
13175
|
headers: {
|
|
12816
13176
|
/**
|
|
@@ -12835,7 +13195,7 @@ type GetExtractionResultsByIdData = {
|
|
|
12835
13195
|
};
|
|
12836
13196
|
url: "/extraction/results/{id}";
|
|
12837
13197
|
};
|
|
12838
|
-
type
|
|
13198
|
+
type DeleteExtractionResultsByIdErrors = {
|
|
12839
13199
|
/**
|
|
12840
13200
|
* Bad Request - Invalid input data or malformed request
|
|
12841
13201
|
*/
|
|
@@ -12865,21 +13225,14 @@ type GetExtractionResultsByIdErrors = {
|
|
|
12865
13225
|
*/
|
|
12866
13226
|
default: Errors;
|
|
12867
13227
|
};
|
|
12868
|
-
type
|
|
12869
|
-
type
|
|
13228
|
+
type DeleteExtractionResultsByIdError = DeleteExtractionResultsByIdErrors[keyof DeleteExtractionResultsByIdErrors];
|
|
13229
|
+
type DeleteExtractionResultsByIdResponses = {
|
|
12870
13230
|
/**
|
|
12871
|
-
*
|
|
13231
|
+
* Deleted successfully
|
|
12872
13232
|
*/
|
|
12873
|
-
200:
|
|
12874
|
-
data?: ExtractionResult;
|
|
12875
|
-
included?: Array<unknown>;
|
|
12876
|
-
meta?: {
|
|
12877
|
-
[key: string]: unknown;
|
|
12878
|
-
};
|
|
12879
|
-
};
|
|
13233
|
+
200: unknown;
|
|
12880
13234
|
};
|
|
12881
|
-
type
|
|
12882
|
-
type GetWebhookDeliveriesStatsData = {
|
|
13235
|
+
type GetExtractionResultsByIdData = {
|
|
12883
13236
|
body?: never;
|
|
12884
13237
|
headers: {
|
|
12885
13238
|
/**
|
|
@@ -12887,77 +13240,7 @@ type GetWebhookDeliveriesStatsData = {
|
|
|
12887
13240
|
*/
|
|
12888
13241
|
"x-application-key": string;
|
|
12889
13242
|
};
|
|
12890
|
-
path?: never;
|
|
12891
|
-
query?: never;
|
|
12892
|
-
url: "/webhook_deliveries/stats";
|
|
12893
|
-
};
|
|
12894
|
-
type GetWebhookDeliveriesStatsErrors = {
|
|
12895
|
-
/**
|
|
12896
|
-
* Bad Request - Invalid input data or malformed request
|
|
12897
|
-
*/
|
|
12898
|
-
400: ErrorResponse;
|
|
12899
|
-
/**
|
|
12900
|
-
* Unauthorized - Missing or invalid authentication token
|
|
12901
|
-
*/
|
|
12902
|
-
401: ErrorResponse;
|
|
12903
|
-
/**
|
|
12904
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
12905
|
-
*/
|
|
12906
|
-
403: ErrorResponse;
|
|
12907
|
-
/**
|
|
12908
|
-
* Not Found - Resource does not exist
|
|
12909
|
-
*/
|
|
12910
|
-
404: ErrorResponse;
|
|
12911
|
-
/**
|
|
12912
|
-
* Too Many Requests - Rate limit exceeded
|
|
12913
|
-
*/
|
|
12914
|
-
429: ErrorResponse;
|
|
12915
|
-
/**
|
|
12916
|
-
* Internal Server Error - Unexpected server error
|
|
12917
|
-
*/
|
|
12918
|
-
500: ErrorResponse;
|
|
12919
|
-
/**
|
|
12920
|
-
* General Error
|
|
12921
|
-
*/
|
|
12922
|
-
default: Errors;
|
|
12923
|
-
};
|
|
12924
|
-
type GetWebhookDeliveriesStatsError = GetWebhookDeliveriesStatsErrors[keyof GetWebhookDeliveriesStatsErrors];
|
|
12925
|
-
type GetWebhookDeliveriesStatsResponses = {
|
|
12926
|
-
/**
|
|
12927
|
-
* Success
|
|
12928
|
-
*/
|
|
12929
|
-
200: {
|
|
12930
|
-
[key: string]: unknown;
|
|
12931
|
-
};
|
|
12932
|
-
};
|
|
12933
|
-
type GetWebhookDeliveriesStatsResponse = GetWebhookDeliveriesStatsResponses[keyof GetWebhookDeliveriesStatsResponses];
|
|
12934
|
-
type PostAgentsByIdValidateData = {
|
|
12935
|
-
/**
|
|
12936
|
-
* Request body for the /agents/:id/validate operation on agent resource
|
|
12937
|
-
*/
|
|
12938
|
-
body: {
|
|
12939
|
-
data: {
|
|
12940
|
-
attributes?: {
|
|
12941
|
-
sample_output: {
|
|
12942
|
-
[key: string]: unknown;
|
|
12943
|
-
};
|
|
12944
|
-
};
|
|
12945
|
-
relationships?: {
|
|
12946
|
-
[key: string]: never;
|
|
12947
|
-
};
|
|
12948
|
-
type?: "agent";
|
|
12949
|
-
};
|
|
12950
|
-
};
|
|
12951
|
-
headers: {
|
|
12952
|
-
/**
|
|
12953
|
-
* Application ID for authentication and routing
|
|
12954
|
-
*/
|
|
12955
|
-
"x-application-key": string;
|
|
12956
|
-
};
|
|
12957
13243
|
path: {
|
|
12958
|
-
/**
|
|
12959
|
-
* Agent ID (from URL path parameter)
|
|
12960
|
-
*/
|
|
12961
13244
|
id: string;
|
|
12962
13245
|
};
|
|
12963
13246
|
query?: {
|
|
@@ -12972,9 +13255,236 @@ type PostAgentsByIdValidateData = {
|
|
|
12972
13255
|
[key: string]: unknown;
|
|
12973
13256
|
};
|
|
12974
13257
|
};
|
|
12975
|
-
url: "/
|
|
13258
|
+
url: "/extraction/results/{id}";
|
|
12976
13259
|
};
|
|
12977
|
-
type
|
|
13260
|
+
type GetExtractionResultsByIdErrors = {
|
|
13261
|
+
/**
|
|
13262
|
+
* Bad Request - Invalid input data or malformed request
|
|
13263
|
+
*/
|
|
13264
|
+
400: ErrorResponse;
|
|
13265
|
+
/**
|
|
13266
|
+
* Unauthorized - Missing or invalid authentication token
|
|
13267
|
+
*/
|
|
13268
|
+
401: ErrorResponse;
|
|
13269
|
+
/**
|
|
13270
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
13271
|
+
*/
|
|
13272
|
+
403: ErrorResponse;
|
|
13273
|
+
/**
|
|
13274
|
+
* Not Found - Resource does not exist
|
|
13275
|
+
*/
|
|
13276
|
+
404: ErrorResponse;
|
|
13277
|
+
/**
|
|
13278
|
+
* Too Many Requests - Rate limit exceeded
|
|
13279
|
+
*/
|
|
13280
|
+
429: ErrorResponse;
|
|
13281
|
+
/**
|
|
13282
|
+
* Internal Server Error - Unexpected server error
|
|
13283
|
+
*/
|
|
13284
|
+
500: ErrorResponse;
|
|
13285
|
+
/**
|
|
13286
|
+
* General Error
|
|
13287
|
+
*/
|
|
13288
|
+
default: Errors;
|
|
13289
|
+
};
|
|
13290
|
+
type GetExtractionResultsByIdError = GetExtractionResultsByIdErrors[keyof GetExtractionResultsByIdErrors];
|
|
13291
|
+
type GetExtractionResultsByIdResponses = {
|
|
13292
|
+
/**
|
|
13293
|
+
* Success
|
|
13294
|
+
*/
|
|
13295
|
+
200: {
|
|
13296
|
+
data?: ExtractionResult;
|
|
13297
|
+
included?: Array<unknown>;
|
|
13298
|
+
meta?: {
|
|
13299
|
+
[key: string]: unknown;
|
|
13300
|
+
};
|
|
13301
|
+
};
|
|
13302
|
+
};
|
|
13303
|
+
type GetExtractionResultsByIdResponse = GetExtractionResultsByIdResponses[keyof GetExtractionResultsByIdResponses];
|
|
13304
|
+
type PatchExtractionResultsByIdData = {
|
|
13305
|
+
/**
|
|
13306
|
+
* Request body for the /extraction/results/:id operation on extraction_result resource
|
|
13307
|
+
*/
|
|
13308
|
+
body?: {
|
|
13309
|
+
data: {
|
|
13310
|
+
attributes?: {
|
|
13311
|
+
credits_used?: string | unknown;
|
|
13312
|
+
extracted_fields?: {
|
|
13313
|
+
[key: string]: unknown;
|
|
13314
|
+
} | unknown;
|
|
13315
|
+
processing_time_ms?: number | unknown;
|
|
13316
|
+
status?: "pending" | "completed" | "failed" | unknown;
|
|
13317
|
+
};
|
|
13318
|
+
id: string;
|
|
13319
|
+
relationships?: {
|
|
13320
|
+
[key: string]: never;
|
|
13321
|
+
};
|
|
13322
|
+
type?: "extraction_result";
|
|
13323
|
+
};
|
|
13324
|
+
};
|
|
13325
|
+
headers: {
|
|
13326
|
+
/**
|
|
13327
|
+
* Application ID for authentication and routing
|
|
13328
|
+
*/
|
|
13329
|
+
"x-application-key": string;
|
|
13330
|
+
};
|
|
13331
|
+
path: {
|
|
13332
|
+
id: string;
|
|
13333
|
+
};
|
|
13334
|
+
query?: {
|
|
13335
|
+
/**
|
|
13336
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
13337
|
+
*/
|
|
13338
|
+
include?: string;
|
|
13339
|
+
/**
|
|
13340
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
13341
|
+
*/
|
|
13342
|
+
fields?: {
|
|
13343
|
+
[key: string]: unknown;
|
|
13344
|
+
};
|
|
13345
|
+
};
|
|
13346
|
+
url: "/extraction/results/{id}";
|
|
13347
|
+
};
|
|
13348
|
+
type PatchExtractionResultsByIdErrors = {
|
|
13349
|
+
/**
|
|
13350
|
+
* Bad Request - Invalid input data or malformed request
|
|
13351
|
+
*/
|
|
13352
|
+
400: ErrorResponse;
|
|
13353
|
+
/**
|
|
13354
|
+
* Unauthorized - Missing or invalid authentication token
|
|
13355
|
+
*/
|
|
13356
|
+
401: ErrorResponse;
|
|
13357
|
+
/**
|
|
13358
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
13359
|
+
*/
|
|
13360
|
+
403: ErrorResponse;
|
|
13361
|
+
/**
|
|
13362
|
+
* Not Found - Resource does not exist
|
|
13363
|
+
*/
|
|
13364
|
+
404: ErrorResponse;
|
|
13365
|
+
/**
|
|
13366
|
+
* Too Many Requests - Rate limit exceeded
|
|
13367
|
+
*/
|
|
13368
|
+
429: ErrorResponse;
|
|
13369
|
+
/**
|
|
13370
|
+
* Internal Server Error - Unexpected server error
|
|
13371
|
+
*/
|
|
13372
|
+
500: ErrorResponse;
|
|
13373
|
+
/**
|
|
13374
|
+
* General Error
|
|
13375
|
+
*/
|
|
13376
|
+
default: Errors;
|
|
13377
|
+
};
|
|
13378
|
+
type PatchExtractionResultsByIdError = PatchExtractionResultsByIdErrors[keyof PatchExtractionResultsByIdErrors];
|
|
13379
|
+
type PatchExtractionResultsByIdResponses = {
|
|
13380
|
+
/**
|
|
13381
|
+
* Success
|
|
13382
|
+
*/
|
|
13383
|
+
200: {
|
|
13384
|
+
data?: ExtractionResult;
|
|
13385
|
+
included?: Array<unknown>;
|
|
13386
|
+
meta?: {
|
|
13387
|
+
[key: string]: unknown;
|
|
13388
|
+
};
|
|
13389
|
+
};
|
|
13390
|
+
};
|
|
13391
|
+
type PatchExtractionResultsByIdResponse = PatchExtractionResultsByIdResponses[keyof PatchExtractionResultsByIdResponses];
|
|
13392
|
+
type GetWebhookDeliveriesStatsData = {
|
|
13393
|
+
body?: never;
|
|
13394
|
+
headers: {
|
|
13395
|
+
/**
|
|
13396
|
+
* Application ID for authentication and routing
|
|
13397
|
+
*/
|
|
13398
|
+
"x-application-key": string;
|
|
13399
|
+
};
|
|
13400
|
+
path?: never;
|
|
13401
|
+
query?: never;
|
|
13402
|
+
url: "/webhook_deliveries/stats";
|
|
13403
|
+
};
|
|
13404
|
+
type GetWebhookDeliveriesStatsErrors = {
|
|
13405
|
+
/**
|
|
13406
|
+
* Bad Request - Invalid input data or malformed request
|
|
13407
|
+
*/
|
|
13408
|
+
400: ErrorResponse;
|
|
13409
|
+
/**
|
|
13410
|
+
* Unauthorized - Missing or invalid authentication token
|
|
13411
|
+
*/
|
|
13412
|
+
401: ErrorResponse;
|
|
13413
|
+
/**
|
|
13414
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
13415
|
+
*/
|
|
13416
|
+
403: ErrorResponse;
|
|
13417
|
+
/**
|
|
13418
|
+
* Not Found - Resource does not exist
|
|
13419
|
+
*/
|
|
13420
|
+
404: ErrorResponse;
|
|
13421
|
+
/**
|
|
13422
|
+
* Too Many Requests - Rate limit exceeded
|
|
13423
|
+
*/
|
|
13424
|
+
429: ErrorResponse;
|
|
13425
|
+
/**
|
|
13426
|
+
* Internal Server Error - Unexpected server error
|
|
13427
|
+
*/
|
|
13428
|
+
500: ErrorResponse;
|
|
13429
|
+
/**
|
|
13430
|
+
* General Error
|
|
13431
|
+
*/
|
|
13432
|
+
default: Errors;
|
|
13433
|
+
};
|
|
13434
|
+
type GetWebhookDeliveriesStatsError = GetWebhookDeliveriesStatsErrors[keyof GetWebhookDeliveriesStatsErrors];
|
|
13435
|
+
type GetWebhookDeliveriesStatsResponses = {
|
|
13436
|
+
/**
|
|
13437
|
+
* Success
|
|
13438
|
+
*/
|
|
13439
|
+
200: {
|
|
13440
|
+
[key: string]: unknown;
|
|
13441
|
+
};
|
|
13442
|
+
};
|
|
13443
|
+
type GetWebhookDeliveriesStatsResponse = GetWebhookDeliveriesStatsResponses[keyof GetWebhookDeliveriesStatsResponses];
|
|
13444
|
+
type PostAgentsByIdValidateData = {
|
|
13445
|
+
/**
|
|
13446
|
+
* Request body for the /agents/:id/validate operation on agent resource
|
|
13447
|
+
*/
|
|
13448
|
+
body: {
|
|
13449
|
+
data: {
|
|
13450
|
+
attributes?: {
|
|
13451
|
+
sample_output: {
|
|
13452
|
+
[key: string]: unknown;
|
|
13453
|
+
};
|
|
13454
|
+
};
|
|
13455
|
+
relationships?: {
|
|
13456
|
+
[key: string]: never;
|
|
13457
|
+
};
|
|
13458
|
+
type?: "agent";
|
|
13459
|
+
};
|
|
13460
|
+
};
|
|
13461
|
+
headers: {
|
|
13462
|
+
/**
|
|
13463
|
+
* Application ID for authentication and routing
|
|
13464
|
+
*/
|
|
13465
|
+
"x-application-key": string;
|
|
13466
|
+
};
|
|
13467
|
+
path: {
|
|
13468
|
+
/**
|
|
13469
|
+
* Agent ID (from URL path parameter)
|
|
13470
|
+
*/
|
|
13471
|
+
id: string;
|
|
13472
|
+
};
|
|
13473
|
+
query?: {
|
|
13474
|
+
/**
|
|
13475
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
13476
|
+
*/
|
|
13477
|
+
include?: string;
|
|
13478
|
+
/**
|
|
13479
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
13480
|
+
*/
|
|
13481
|
+
fields?: {
|
|
13482
|
+
[key: string]: unknown;
|
|
13483
|
+
};
|
|
13484
|
+
};
|
|
13485
|
+
url: "/agents/{id}/validate";
|
|
13486
|
+
};
|
|
13487
|
+
type PostAgentsByIdValidateErrors = {
|
|
12978
13488
|
/**
|
|
12979
13489
|
* Bad Request - Invalid input data or malformed request
|
|
12980
13490
|
*/
|
|
@@ -15734,6 +16244,10 @@ type PostApplicationsData = {
|
|
|
15734
16244
|
invite_only?: boolean | unknown;
|
|
15735
16245
|
logo_url?: string | unknown;
|
|
15736
16246
|
name: string;
|
|
16247
|
+
/**
|
|
16248
|
+
* OAuth configuration for this application
|
|
16249
|
+
*/
|
|
16250
|
+
oauth?: ApplicationOauthInputCreateType | unknown;
|
|
15737
16251
|
owner_id?: string | unknown;
|
|
15738
16252
|
/**
|
|
15739
16253
|
* When true, password registration withholds JWT until email is verified
|
|
@@ -16056,7 +16570,7 @@ type PatchExtractionDocumentsByIdReprocessData = {
|
|
|
16056
16570
|
data: {
|
|
16057
16571
|
attributes?: {
|
|
16058
16572
|
/**
|
|
16059
|
-
* The version of the agent/schema used to process this document
|
|
16573
|
+
* The version of the agent/schema used to process this document
|
|
16060
16574
|
*/
|
|
16061
16575
|
schema_version?: string | unknown;
|
|
16062
16576
|
schema_version_id?: string | unknown;
|
|
@@ -17448,7 +17962,6 @@ type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueData = {
|
|
|
17448
17962
|
[key: string]: unknown;
|
|
17449
17963
|
};
|
|
17450
17964
|
limit?: number;
|
|
17451
|
-
filter_by_threshold?: boolean;
|
|
17452
17965
|
};
|
|
17453
17966
|
url: "/extraction/documents/workspace/{workspace_id}/review_queue";
|
|
17454
17967
|
};
|
|
@@ -17675,23 +18188,20 @@ type PostExtractionDocumentsUploadResponses = {
|
|
|
17675
18188
|
};
|
|
17676
18189
|
};
|
|
17677
18190
|
type PostExtractionDocumentsUploadResponse = PostExtractionDocumentsUploadResponses[keyof PostExtractionDocumentsUploadResponses];
|
|
17678
|
-
type
|
|
18191
|
+
type PatchNotificationMethodsByIdVerifyData = {
|
|
17679
18192
|
/**
|
|
17680
|
-
* Request body for the /
|
|
18193
|
+
* Request body for the /notification_methods/:id/verify operation on notification_method resource
|
|
17681
18194
|
*/
|
|
17682
|
-
body
|
|
18195
|
+
body?: {
|
|
17683
18196
|
data: {
|
|
17684
18197
|
attributes?: {
|
|
17685
|
-
|
|
17686
|
-
corrections: Array<{
|
|
17687
|
-
[key: string]: unknown;
|
|
17688
|
-
}>;
|
|
18198
|
+
[key: string]: never;
|
|
17689
18199
|
};
|
|
17690
18200
|
id: string;
|
|
17691
18201
|
relationships?: {
|
|
17692
18202
|
[key: string]: never;
|
|
17693
18203
|
};
|
|
17694
|
-
type?: "
|
|
18204
|
+
type?: "notification_method";
|
|
17695
18205
|
};
|
|
17696
18206
|
};
|
|
17697
18207
|
headers: {
|
|
@@ -17715,9 +18225,9 @@ type PatchExtractionResultsByIdCorrectionsData = {
|
|
|
17715
18225
|
[key: string]: unknown;
|
|
17716
18226
|
};
|
|
17717
18227
|
};
|
|
17718
|
-
url: "/
|
|
18228
|
+
url: "/notification_methods/{id}/verify";
|
|
17719
18229
|
};
|
|
17720
|
-
type
|
|
18230
|
+
type PatchNotificationMethodsByIdVerifyErrors = {
|
|
17721
18231
|
/**
|
|
17722
18232
|
* Bad Request - Invalid input data or malformed request
|
|
17723
18233
|
*/
|
|
@@ -17747,36 +18257,22 @@ type PatchExtractionResultsByIdCorrectionsErrors = {
|
|
|
17747
18257
|
*/
|
|
17748
18258
|
default: Errors;
|
|
17749
18259
|
};
|
|
17750
|
-
type
|
|
17751
|
-
type
|
|
18260
|
+
type PatchNotificationMethodsByIdVerifyError = PatchNotificationMethodsByIdVerifyErrors[keyof PatchNotificationMethodsByIdVerifyErrors];
|
|
18261
|
+
type PatchNotificationMethodsByIdVerifyResponses = {
|
|
17752
18262
|
/**
|
|
17753
18263
|
* Success
|
|
17754
18264
|
*/
|
|
17755
18265
|
200: {
|
|
17756
|
-
data?:
|
|
18266
|
+
data?: NotificationMethod;
|
|
17757
18267
|
included?: Array<unknown>;
|
|
17758
18268
|
meta?: {
|
|
17759
18269
|
[key: string]: unknown;
|
|
17760
18270
|
};
|
|
17761
18271
|
};
|
|
17762
18272
|
};
|
|
17763
|
-
type
|
|
17764
|
-
type
|
|
17765
|
-
|
|
17766
|
-
* Request body for the /notification_methods/:id/verify operation on notification_method resource
|
|
17767
|
-
*/
|
|
17768
|
-
body?: {
|
|
17769
|
-
data: {
|
|
17770
|
-
attributes?: {
|
|
17771
|
-
[key: string]: never;
|
|
17772
|
-
};
|
|
17773
|
-
id: string;
|
|
17774
|
-
relationships?: {
|
|
17775
|
-
[key: string]: never;
|
|
17776
|
-
};
|
|
17777
|
-
type?: "notification_method";
|
|
17778
|
-
};
|
|
17779
|
-
};
|
|
18273
|
+
type PatchNotificationMethodsByIdVerifyResponse = PatchNotificationMethodsByIdVerifyResponses[keyof PatchNotificationMethodsByIdVerifyResponses];
|
|
18274
|
+
type GetExtractionResultsDocumentByDocumentIdData = {
|
|
18275
|
+
body?: never;
|
|
17780
18276
|
headers: {
|
|
17781
18277
|
/**
|
|
17782
18278
|
* Application ID for authentication and routing
|
|
@@ -17784,7 +18280,7 @@ type PatchNotificationMethodsByIdVerifyData = {
|
|
|
17784
18280
|
"x-application-key": string;
|
|
17785
18281
|
};
|
|
17786
18282
|
path: {
|
|
17787
|
-
|
|
18283
|
+
document_id: string;
|
|
17788
18284
|
};
|
|
17789
18285
|
query?: {
|
|
17790
18286
|
/**
|
|
@@ -17798,78 +18294,9 @@ type PatchNotificationMethodsByIdVerifyData = {
|
|
|
17798
18294
|
[key: string]: unknown;
|
|
17799
18295
|
};
|
|
17800
18296
|
};
|
|
17801
|
-
url: "/
|
|
18297
|
+
url: "/extraction/results/document/{document_id}";
|
|
17802
18298
|
};
|
|
17803
|
-
type
|
|
17804
|
-
/**
|
|
17805
|
-
* Bad Request - Invalid input data or malformed request
|
|
17806
|
-
*/
|
|
17807
|
-
400: ErrorResponse;
|
|
17808
|
-
/**
|
|
17809
|
-
* Unauthorized - Missing or invalid authentication token
|
|
17810
|
-
*/
|
|
17811
|
-
401: ErrorResponse;
|
|
17812
|
-
/**
|
|
17813
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
17814
|
-
*/
|
|
17815
|
-
403: ErrorResponse;
|
|
17816
|
-
/**
|
|
17817
|
-
* Not Found - Resource does not exist
|
|
17818
|
-
*/
|
|
17819
|
-
404: ErrorResponse;
|
|
17820
|
-
/**
|
|
17821
|
-
* Too Many Requests - Rate limit exceeded
|
|
17822
|
-
*/
|
|
17823
|
-
429: ErrorResponse;
|
|
17824
|
-
/**
|
|
17825
|
-
* Internal Server Error - Unexpected server error
|
|
17826
|
-
*/
|
|
17827
|
-
500: ErrorResponse;
|
|
17828
|
-
/**
|
|
17829
|
-
* General Error
|
|
17830
|
-
*/
|
|
17831
|
-
default: Errors;
|
|
17832
|
-
};
|
|
17833
|
-
type PatchNotificationMethodsByIdVerifyError = PatchNotificationMethodsByIdVerifyErrors[keyof PatchNotificationMethodsByIdVerifyErrors];
|
|
17834
|
-
type PatchNotificationMethodsByIdVerifyResponses = {
|
|
17835
|
-
/**
|
|
17836
|
-
* Success
|
|
17837
|
-
*/
|
|
17838
|
-
200: {
|
|
17839
|
-
data?: NotificationMethod;
|
|
17840
|
-
included?: Array<unknown>;
|
|
17841
|
-
meta?: {
|
|
17842
|
-
[key: string]: unknown;
|
|
17843
|
-
};
|
|
17844
|
-
};
|
|
17845
|
-
};
|
|
17846
|
-
type PatchNotificationMethodsByIdVerifyResponse = PatchNotificationMethodsByIdVerifyResponses[keyof PatchNotificationMethodsByIdVerifyResponses];
|
|
17847
|
-
type GetExtractionResultsDocumentByDocumentIdData = {
|
|
17848
|
-
body?: never;
|
|
17849
|
-
headers: {
|
|
17850
|
-
/**
|
|
17851
|
-
* Application ID for authentication and routing
|
|
17852
|
-
*/
|
|
17853
|
-
"x-application-key": string;
|
|
17854
|
-
};
|
|
17855
|
-
path: {
|
|
17856
|
-
document_id: string;
|
|
17857
|
-
};
|
|
17858
|
-
query?: {
|
|
17859
|
-
/**
|
|
17860
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
17861
|
-
*/
|
|
17862
|
-
include?: string;
|
|
17863
|
-
/**
|
|
17864
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
17865
|
-
*/
|
|
17866
|
-
fields?: {
|
|
17867
|
-
[key: string]: unknown;
|
|
17868
|
-
};
|
|
17869
|
-
};
|
|
17870
|
-
url: "/extraction/results/document/{document_id}";
|
|
17871
|
-
};
|
|
17872
|
-
type GetExtractionResultsDocumentByDocumentIdErrors = {
|
|
18299
|
+
type GetExtractionResultsDocumentByDocumentIdErrors = {
|
|
17873
18300
|
/**
|
|
17874
18301
|
* Bad Request - Invalid input data or malformed request
|
|
17875
18302
|
*/
|
|
@@ -18135,11 +18562,10 @@ type PatchWorkspacesByIdData = {
|
|
|
18135
18562
|
body?: {
|
|
18136
18563
|
data: {
|
|
18137
18564
|
attributes?: {
|
|
18138
|
-
application_id?: string | unknown;
|
|
18139
18565
|
/**
|
|
18140
|
-
*
|
|
18566
|
+
* Required - the application this workspace belongs to
|
|
18141
18567
|
*/
|
|
18142
|
-
|
|
18568
|
+
application_id?: string | unknown;
|
|
18143
18569
|
is_default?: boolean | unknown;
|
|
18144
18570
|
low_balance_threshold?: number | unknown;
|
|
18145
18571
|
name?: string | unknown;
|
|
@@ -18493,6 +18919,22 @@ type GetWalletInvoicesData = {
|
|
|
18493
18919
|
};
|
|
18494
18920
|
path?: never;
|
|
18495
18921
|
query?: {
|
|
18922
|
+
/**
|
|
18923
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
18924
|
+
*/
|
|
18925
|
+
filter?: {
|
|
18926
|
+
[key: string]: unknown;
|
|
18927
|
+
};
|
|
18928
|
+
/**
|
|
18929
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
18930
|
+
*/
|
|
18931
|
+
sort?: string;
|
|
18932
|
+
/**
|
|
18933
|
+
* JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
|
|
18934
|
+
*/
|
|
18935
|
+
page?: {
|
|
18936
|
+
[key: string]: unknown;
|
|
18937
|
+
};
|
|
18496
18938
|
/**
|
|
18497
18939
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
18498
18940
|
*/
|
|
@@ -18542,99 +18984,35 @@ type GetWalletInvoicesResponses = {
|
|
|
18542
18984
|
* Success
|
|
18543
18985
|
*/
|
|
18544
18986
|
200: {
|
|
18545
|
-
|
|
18546
|
-
|
|
18987
|
+
/**
|
|
18988
|
+
* An array of resource objects representing a invoice
|
|
18989
|
+
*/
|
|
18990
|
+
data?: Array<Invoice>;
|
|
18991
|
+
included?: Array<unknown>;
|
|
18547
18992
|
meta?: {
|
|
18548
18993
|
[key: string]: unknown;
|
|
18549
18994
|
};
|
|
18550
18995
|
};
|
|
18551
18996
|
};
|
|
18552
18997
|
type GetWalletInvoicesResponse = GetWalletInvoicesResponses[keyof GetWalletInvoicesResponses];
|
|
18553
|
-
type
|
|
18998
|
+
type PatchExtractionResultsByIdSaveCorrectionsData = {
|
|
18554
18999
|
/**
|
|
18555
|
-
* Request body for the /
|
|
19000
|
+
* Request body for the /extraction/results/:id/save_corrections operation on extraction_result resource
|
|
18556
19001
|
*/
|
|
18557
|
-
body
|
|
19002
|
+
body: {
|
|
18558
19003
|
data: {
|
|
18559
19004
|
attributes?: {
|
|
18560
|
-
|
|
19005
|
+
corrections: Array<{
|
|
19006
|
+
[key: string]: unknown;
|
|
19007
|
+
}>;
|
|
18561
19008
|
};
|
|
18562
19009
|
id: string;
|
|
18563
19010
|
relationships?: {
|
|
18564
19011
|
[key: string]: never;
|
|
18565
19012
|
};
|
|
18566
|
-
type?: "
|
|
18567
|
-
};
|
|
18568
|
-
};
|
|
18569
|
-
headers: {
|
|
18570
|
-
/**
|
|
18571
|
-
* Application ID for authentication and routing
|
|
18572
|
-
*/
|
|
18573
|
-
"x-application-key": string;
|
|
18574
|
-
};
|
|
18575
|
-
path: {
|
|
18576
|
-
id: string;
|
|
18577
|
-
};
|
|
18578
|
-
query?: {
|
|
18579
|
-
/**
|
|
18580
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
18581
|
-
*/
|
|
18582
|
-
include?: string;
|
|
18583
|
-
/**
|
|
18584
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
18585
|
-
*/
|
|
18586
|
-
fields?: {
|
|
18587
|
-
[key: string]: unknown;
|
|
18588
|
-
};
|
|
18589
|
-
};
|
|
18590
|
-
url: "/workspaces/{id}/storage-settings";
|
|
18591
|
-
};
|
|
18592
|
-
type PatchWorkspacesByIdStorageSettingsErrors = {
|
|
18593
|
-
/**
|
|
18594
|
-
* Bad Request - Invalid input data or malformed request
|
|
18595
|
-
*/
|
|
18596
|
-
400: ErrorResponse;
|
|
18597
|
-
/**
|
|
18598
|
-
* Unauthorized - Missing or invalid authentication token
|
|
18599
|
-
*/
|
|
18600
|
-
401: ErrorResponse;
|
|
18601
|
-
/**
|
|
18602
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
18603
|
-
*/
|
|
18604
|
-
403: ErrorResponse;
|
|
18605
|
-
/**
|
|
18606
|
-
* Not Found - Resource does not exist
|
|
18607
|
-
*/
|
|
18608
|
-
404: ErrorResponse;
|
|
18609
|
-
/**
|
|
18610
|
-
* Too Many Requests - Rate limit exceeded
|
|
18611
|
-
*/
|
|
18612
|
-
429: ErrorResponse;
|
|
18613
|
-
/**
|
|
18614
|
-
* Internal Server Error - Unexpected server error
|
|
18615
|
-
*/
|
|
18616
|
-
500: ErrorResponse;
|
|
18617
|
-
/**
|
|
18618
|
-
* General Error
|
|
18619
|
-
*/
|
|
18620
|
-
default: Errors;
|
|
18621
|
-
};
|
|
18622
|
-
type PatchWorkspacesByIdStorageSettingsError = PatchWorkspacesByIdStorageSettingsErrors[keyof PatchWorkspacesByIdStorageSettingsErrors];
|
|
18623
|
-
type PatchWorkspacesByIdStorageSettingsResponses = {
|
|
18624
|
-
/**
|
|
18625
|
-
* Success
|
|
18626
|
-
*/
|
|
18627
|
-
200: {
|
|
18628
|
-
data?: Workspace;
|
|
18629
|
-
included?: Array<Tenant>;
|
|
18630
|
-
meta?: {
|
|
18631
|
-
[key: string]: unknown;
|
|
19013
|
+
type?: "extraction_result";
|
|
18632
19014
|
};
|
|
18633
19015
|
};
|
|
18634
|
-
};
|
|
18635
|
-
type PatchWorkspacesByIdStorageSettingsResponse = PatchWorkspacesByIdStorageSettingsResponses[keyof PatchWorkspacesByIdStorageSettingsResponses];
|
|
18636
|
-
type GetNotificationLogsByIdData = {
|
|
18637
|
-
body?: never;
|
|
18638
19016
|
headers: {
|
|
18639
19017
|
/**
|
|
18640
19018
|
* Application ID for authentication and routing
|
|
@@ -18656,9 +19034,9 @@ type GetNotificationLogsByIdData = {
|
|
|
18656
19034
|
[key: string]: unknown;
|
|
18657
19035
|
};
|
|
18658
19036
|
};
|
|
18659
|
-
url: "/
|
|
19037
|
+
url: "/extraction/results/{id}/save_corrections";
|
|
18660
19038
|
};
|
|
18661
|
-
type
|
|
19039
|
+
type PatchExtractionResultsByIdSaveCorrectionsErrors = {
|
|
18662
19040
|
/**
|
|
18663
19041
|
* Bad Request - Invalid input data or malformed request
|
|
18664
19042
|
*/
|
|
@@ -18688,91 +19066,243 @@ type GetNotificationLogsByIdErrors = {
|
|
|
18688
19066
|
*/
|
|
18689
19067
|
default: Errors;
|
|
18690
19068
|
};
|
|
18691
|
-
type
|
|
18692
|
-
type
|
|
19069
|
+
type PatchExtractionResultsByIdSaveCorrectionsError = PatchExtractionResultsByIdSaveCorrectionsErrors[keyof PatchExtractionResultsByIdSaveCorrectionsErrors];
|
|
19070
|
+
type PatchExtractionResultsByIdSaveCorrectionsResponses = {
|
|
18693
19071
|
/**
|
|
18694
19072
|
* Success
|
|
18695
19073
|
*/
|
|
18696
19074
|
200: {
|
|
18697
|
-
data?:
|
|
19075
|
+
data?: ExtractionResult;
|
|
18698
19076
|
included?: Array<unknown>;
|
|
18699
19077
|
meta?: {
|
|
18700
19078
|
[key: string]: unknown;
|
|
18701
19079
|
};
|
|
18702
19080
|
};
|
|
18703
19081
|
};
|
|
18704
|
-
type
|
|
18705
|
-
type
|
|
18706
|
-
body?: never;
|
|
18707
|
-
headers: {
|
|
18708
|
-
/**
|
|
18709
|
-
* Application ID for authentication and routing
|
|
18710
|
-
*/
|
|
18711
|
-
"x-application-key": string;
|
|
18712
|
-
};
|
|
18713
|
-
path: {
|
|
18714
|
-
id: string;
|
|
18715
|
-
};
|
|
18716
|
-
query?: {
|
|
18717
|
-
/**
|
|
18718
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
18719
|
-
*/
|
|
18720
|
-
include?: string;
|
|
18721
|
-
/**
|
|
18722
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
18723
|
-
*/
|
|
18724
|
-
fields?: {
|
|
18725
|
-
[key: string]: unknown;
|
|
18726
|
-
};
|
|
18727
|
-
};
|
|
18728
|
-
url: "/extraction/documents/{id}/view";
|
|
18729
|
-
};
|
|
18730
|
-
type GetExtractionDocumentsByIdViewErrors = {
|
|
18731
|
-
/**
|
|
18732
|
-
* Bad Request - Invalid input data or malformed request
|
|
18733
|
-
*/
|
|
18734
|
-
400: ErrorResponse;
|
|
18735
|
-
/**
|
|
18736
|
-
* Unauthorized - Missing or invalid authentication token
|
|
18737
|
-
*/
|
|
18738
|
-
401: ErrorResponse;
|
|
18739
|
-
/**
|
|
18740
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
18741
|
-
*/
|
|
18742
|
-
403: ErrorResponse;
|
|
18743
|
-
/**
|
|
18744
|
-
* Not Found - Resource does not exist
|
|
18745
|
-
*/
|
|
18746
|
-
404: ErrorResponse;
|
|
18747
|
-
/**
|
|
18748
|
-
* Too Many Requests - Rate limit exceeded
|
|
18749
|
-
*/
|
|
18750
|
-
429: ErrorResponse;
|
|
18751
|
-
/**
|
|
18752
|
-
* Internal Server Error - Unexpected server error
|
|
18753
|
-
*/
|
|
18754
|
-
500: ErrorResponse;
|
|
18755
|
-
/**
|
|
18756
|
-
* General Error
|
|
18757
|
-
*/
|
|
18758
|
-
default: Errors;
|
|
18759
|
-
};
|
|
18760
|
-
type GetExtractionDocumentsByIdViewError = GetExtractionDocumentsByIdViewErrors[keyof GetExtractionDocumentsByIdViewErrors];
|
|
18761
|
-
type GetExtractionDocumentsByIdViewResponses = {
|
|
19082
|
+
type PatchExtractionResultsByIdSaveCorrectionsResponse = PatchExtractionResultsByIdSaveCorrectionsResponses[keyof PatchExtractionResultsByIdSaveCorrectionsResponses];
|
|
19083
|
+
type PatchWorkspacesByIdStorageSettingsData = {
|
|
18762
19084
|
/**
|
|
18763
|
-
*
|
|
19085
|
+
* Request body for the /workspaces/:id/storage-settings operation on workspace resource
|
|
18764
19086
|
*/
|
|
18765
|
-
|
|
18766
|
-
data
|
|
18767
|
-
|
|
18768
|
-
|
|
18769
|
-
|
|
19087
|
+
body?: {
|
|
19088
|
+
data: {
|
|
19089
|
+
attributes?: {
|
|
19090
|
+
settings?: WorkspaceSettingsInputUpdateType | unknown;
|
|
19091
|
+
};
|
|
19092
|
+
id: string;
|
|
19093
|
+
relationships?: {
|
|
19094
|
+
[key: string]: never;
|
|
19095
|
+
};
|
|
19096
|
+
type?: "workspace";
|
|
18770
19097
|
};
|
|
18771
19098
|
};
|
|
18772
|
-
|
|
18773
|
-
|
|
18774
|
-
|
|
18775
|
-
|
|
19099
|
+
headers: {
|
|
19100
|
+
/**
|
|
19101
|
+
* Application ID for authentication and routing
|
|
19102
|
+
*/
|
|
19103
|
+
"x-application-key": string;
|
|
19104
|
+
};
|
|
19105
|
+
path: {
|
|
19106
|
+
id: string;
|
|
19107
|
+
};
|
|
19108
|
+
query?: {
|
|
19109
|
+
/**
|
|
19110
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
19111
|
+
*/
|
|
19112
|
+
include?: string;
|
|
19113
|
+
/**
|
|
19114
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
19115
|
+
*/
|
|
19116
|
+
fields?: {
|
|
19117
|
+
[key: string]: unknown;
|
|
19118
|
+
};
|
|
19119
|
+
};
|
|
19120
|
+
url: "/workspaces/{id}/storage-settings";
|
|
19121
|
+
};
|
|
19122
|
+
type PatchWorkspacesByIdStorageSettingsErrors = {
|
|
19123
|
+
/**
|
|
19124
|
+
* Bad Request - Invalid input data or malformed request
|
|
19125
|
+
*/
|
|
19126
|
+
400: ErrorResponse;
|
|
19127
|
+
/**
|
|
19128
|
+
* Unauthorized - Missing or invalid authentication token
|
|
19129
|
+
*/
|
|
19130
|
+
401: ErrorResponse;
|
|
19131
|
+
/**
|
|
19132
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
19133
|
+
*/
|
|
19134
|
+
403: ErrorResponse;
|
|
19135
|
+
/**
|
|
19136
|
+
* Not Found - Resource does not exist
|
|
19137
|
+
*/
|
|
19138
|
+
404: ErrorResponse;
|
|
19139
|
+
/**
|
|
19140
|
+
* Too Many Requests - Rate limit exceeded
|
|
19141
|
+
*/
|
|
19142
|
+
429: ErrorResponse;
|
|
19143
|
+
/**
|
|
19144
|
+
* Internal Server Error - Unexpected server error
|
|
19145
|
+
*/
|
|
19146
|
+
500: ErrorResponse;
|
|
19147
|
+
/**
|
|
19148
|
+
* General Error
|
|
19149
|
+
*/
|
|
19150
|
+
default: Errors;
|
|
19151
|
+
};
|
|
19152
|
+
type PatchWorkspacesByIdStorageSettingsError = PatchWorkspacesByIdStorageSettingsErrors[keyof PatchWorkspacesByIdStorageSettingsErrors];
|
|
19153
|
+
type PatchWorkspacesByIdStorageSettingsResponses = {
|
|
19154
|
+
/**
|
|
19155
|
+
* Success
|
|
19156
|
+
*/
|
|
19157
|
+
200: {
|
|
19158
|
+
data?: Workspace;
|
|
19159
|
+
included?: Array<Tenant>;
|
|
19160
|
+
meta?: {
|
|
19161
|
+
[key: string]: unknown;
|
|
19162
|
+
};
|
|
19163
|
+
};
|
|
19164
|
+
};
|
|
19165
|
+
type PatchWorkspacesByIdStorageSettingsResponse = PatchWorkspacesByIdStorageSettingsResponses[keyof PatchWorkspacesByIdStorageSettingsResponses];
|
|
19166
|
+
type GetNotificationLogsByIdData = {
|
|
19167
|
+
body?: never;
|
|
19168
|
+
headers: {
|
|
19169
|
+
/**
|
|
19170
|
+
* Application ID for authentication and routing
|
|
19171
|
+
*/
|
|
19172
|
+
"x-application-key": string;
|
|
19173
|
+
};
|
|
19174
|
+
path: {
|
|
19175
|
+
id: string;
|
|
19176
|
+
};
|
|
19177
|
+
query?: {
|
|
19178
|
+
/**
|
|
19179
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
19180
|
+
*/
|
|
19181
|
+
include?: string;
|
|
19182
|
+
/**
|
|
19183
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
19184
|
+
*/
|
|
19185
|
+
fields?: {
|
|
19186
|
+
[key: string]: unknown;
|
|
19187
|
+
};
|
|
19188
|
+
};
|
|
19189
|
+
url: "/notification_logs/{id}";
|
|
19190
|
+
};
|
|
19191
|
+
type GetNotificationLogsByIdErrors = {
|
|
19192
|
+
/**
|
|
19193
|
+
* Bad Request - Invalid input data or malformed request
|
|
19194
|
+
*/
|
|
19195
|
+
400: ErrorResponse;
|
|
19196
|
+
/**
|
|
19197
|
+
* Unauthorized - Missing or invalid authentication token
|
|
19198
|
+
*/
|
|
19199
|
+
401: ErrorResponse;
|
|
19200
|
+
/**
|
|
19201
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
19202
|
+
*/
|
|
19203
|
+
403: ErrorResponse;
|
|
19204
|
+
/**
|
|
19205
|
+
* Not Found - Resource does not exist
|
|
19206
|
+
*/
|
|
19207
|
+
404: ErrorResponse;
|
|
19208
|
+
/**
|
|
19209
|
+
* Too Many Requests - Rate limit exceeded
|
|
19210
|
+
*/
|
|
19211
|
+
429: ErrorResponse;
|
|
19212
|
+
/**
|
|
19213
|
+
* Internal Server Error - Unexpected server error
|
|
19214
|
+
*/
|
|
19215
|
+
500: ErrorResponse;
|
|
19216
|
+
/**
|
|
19217
|
+
* General Error
|
|
19218
|
+
*/
|
|
19219
|
+
default: Errors;
|
|
19220
|
+
};
|
|
19221
|
+
type GetNotificationLogsByIdError = GetNotificationLogsByIdErrors[keyof GetNotificationLogsByIdErrors];
|
|
19222
|
+
type GetNotificationLogsByIdResponses = {
|
|
19223
|
+
/**
|
|
19224
|
+
* Success
|
|
19225
|
+
*/
|
|
19226
|
+
200: {
|
|
19227
|
+
data?: NotificationLog;
|
|
19228
|
+
included?: Array<unknown>;
|
|
19229
|
+
meta?: {
|
|
19230
|
+
[key: string]: unknown;
|
|
19231
|
+
};
|
|
19232
|
+
};
|
|
19233
|
+
};
|
|
19234
|
+
type GetNotificationLogsByIdResponse = GetNotificationLogsByIdResponses[keyof GetNotificationLogsByIdResponses];
|
|
19235
|
+
type GetExtractionDocumentsByIdViewData = {
|
|
19236
|
+
body?: never;
|
|
19237
|
+
headers: {
|
|
19238
|
+
/**
|
|
19239
|
+
* Application ID for authentication and routing
|
|
19240
|
+
*/
|
|
19241
|
+
"x-application-key": string;
|
|
19242
|
+
};
|
|
19243
|
+
path: {
|
|
19244
|
+
id: string;
|
|
19245
|
+
};
|
|
19246
|
+
query?: {
|
|
19247
|
+
/**
|
|
19248
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
19249
|
+
*/
|
|
19250
|
+
include?: string;
|
|
19251
|
+
/**
|
|
19252
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
19253
|
+
*/
|
|
19254
|
+
fields?: {
|
|
19255
|
+
[key: string]: unknown;
|
|
19256
|
+
};
|
|
19257
|
+
};
|
|
19258
|
+
url: "/extraction/documents/{id}/view";
|
|
19259
|
+
};
|
|
19260
|
+
type GetExtractionDocumentsByIdViewErrors = {
|
|
19261
|
+
/**
|
|
19262
|
+
* Bad Request - Invalid input data or malformed request
|
|
19263
|
+
*/
|
|
19264
|
+
400: ErrorResponse;
|
|
19265
|
+
/**
|
|
19266
|
+
* Unauthorized - Missing or invalid authentication token
|
|
19267
|
+
*/
|
|
19268
|
+
401: ErrorResponse;
|
|
19269
|
+
/**
|
|
19270
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
19271
|
+
*/
|
|
19272
|
+
403: ErrorResponse;
|
|
19273
|
+
/**
|
|
19274
|
+
* Not Found - Resource does not exist
|
|
19275
|
+
*/
|
|
19276
|
+
404: ErrorResponse;
|
|
19277
|
+
/**
|
|
19278
|
+
* Too Many Requests - Rate limit exceeded
|
|
19279
|
+
*/
|
|
19280
|
+
429: ErrorResponse;
|
|
19281
|
+
/**
|
|
19282
|
+
* Internal Server Error - Unexpected server error
|
|
19283
|
+
*/
|
|
19284
|
+
500: ErrorResponse;
|
|
19285
|
+
/**
|
|
19286
|
+
* General Error
|
|
19287
|
+
*/
|
|
19288
|
+
default: Errors;
|
|
19289
|
+
};
|
|
19290
|
+
type GetExtractionDocumentsByIdViewError = GetExtractionDocumentsByIdViewErrors[keyof GetExtractionDocumentsByIdViewErrors];
|
|
19291
|
+
type GetExtractionDocumentsByIdViewResponses = {
|
|
19292
|
+
/**
|
|
19293
|
+
* Success
|
|
19294
|
+
*/
|
|
19295
|
+
200: {
|
|
19296
|
+
data?: ExtractionDocument;
|
|
19297
|
+
included?: Array<ExtractionResult>;
|
|
19298
|
+
meta?: {
|
|
19299
|
+
[key: string]: unknown;
|
|
19300
|
+
};
|
|
19301
|
+
};
|
|
19302
|
+
};
|
|
19303
|
+
type GetExtractionDocumentsByIdViewResponse = GetExtractionDocumentsByIdViewResponses[keyof GetExtractionDocumentsByIdViewResponses];
|
|
19304
|
+
type GetWebhookDeliveriesByIdData = {
|
|
19305
|
+
body?: never;
|
|
18776
19306
|
headers: {
|
|
18777
19307
|
/**
|
|
18778
19308
|
* Application ID for authentication and routing
|
|
@@ -19098,75 +19628,6 @@ type PostAiGraphEdgesResponses = {
|
|
|
19098
19628
|
};
|
|
19099
19629
|
};
|
|
19100
19630
|
type PostAiGraphEdgesResponse = PostAiGraphEdgesResponses[keyof PostAiGraphEdgesResponses];
|
|
19101
|
-
type GetAgentVersionRevisionsByIdData = {
|
|
19102
|
-
body?: never;
|
|
19103
|
-
headers: {
|
|
19104
|
-
/**
|
|
19105
|
-
* Application ID for authentication and routing
|
|
19106
|
-
*/
|
|
19107
|
-
"x-application-key": string;
|
|
19108
|
-
};
|
|
19109
|
-
path: {
|
|
19110
|
-
id: string;
|
|
19111
|
-
};
|
|
19112
|
-
query?: {
|
|
19113
|
-
/**
|
|
19114
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
19115
|
-
*/
|
|
19116
|
-
include?: string;
|
|
19117
|
-
/**
|
|
19118
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
19119
|
-
*/
|
|
19120
|
-
fields?: {
|
|
19121
|
-
[key: string]: unknown;
|
|
19122
|
-
};
|
|
19123
|
-
};
|
|
19124
|
-
url: "/agent_version_revisions/{id}";
|
|
19125
|
-
};
|
|
19126
|
-
type GetAgentVersionRevisionsByIdErrors = {
|
|
19127
|
-
/**
|
|
19128
|
-
* Bad Request - Invalid input data or malformed request
|
|
19129
|
-
*/
|
|
19130
|
-
400: ErrorResponse;
|
|
19131
|
-
/**
|
|
19132
|
-
* Unauthorized - Missing or invalid authentication token
|
|
19133
|
-
*/
|
|
19134
|
-
401: ErrorResponse;
|
|
19135
|
-
/**
|
|
19136
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
19137
|
-
*/
|
|
19138
|
-
403: ErrorResponse;
|
|
19139
|
-
/**
|
|
19140
|
-
* Not Found - Resource does not exist
|
|
19141
|
-
*/
|
|
19142
|
-
404: ErrorResponse;
|
|
19143
|
-
/**
|
|
19144
|
-
* Too Many Requests - Rate limit exceeded
|
|
19145
|
-
*/
|
|
19146
|
-
429: ErrorResponse;
|
|
19147
|
-
/**
|
|
19148
|
-
* Internal Server Error - Unexpected server error
|
|
19149
|
-
*/
|
|
19150
|
-
500: ErrorResponse;
|
|
19151
|
-
/**
|
|
19152
|
-
* General Error
|
|
19153
|
-
*/
|
|
19154
|
-
default: Errors;
|
|
19155
|
-
};
|
|
19156
|
-
type GetAgentVersionRevisionsByIdError = GetAgentVersionRevisionsByIdErrors[keyof GetAgentVersionRevisionsByIdErrors];
|
|
19157
|
-
type GetAgentVersionRevisionsByIdResponses = {
|
|
19158
|
-
/**
|
|
19159
|
-
* Success
|
|
19160
|
-
*/
|
|
19161
|
-
200: {
|
|
19162
|
-
data?: AgentVersionRevision;
|
|
19163
|
-
included?: Array<unknown>;
|
|
19164
|
-
meta?: {
|
|
19165
|
-
[key: string]: unknown;
|
|
19166
|
-
};
|
|
19167
|
-
};
|
|
19168
|
-
};
|
|
19169
|
-
type GetAgentVersionRevisionsByIdResponse = GetAgentVersionRevisionsByIdResponses[keyof GetAgentVersionRevisionsByIdResponses];
|
|
19170
19631
|
type GetTrainingExamplesData = {
|
|
19171
19632
|
body?: never;
|
|
19172
19633
|
headers: {
|
|
@@ -19285,6 +19746,7 @@ type PostTrainingExamplesData = {
|
|
|
19285
19746
|
* The type of document (e.g., 'Invoice', 'Receipt', 'Contract')
|
|
19286
19747
|
*/
|
|
19287
19748
|
document_type?: string | unknown;
|
|
19749
|
+
embedding?: unknown;
|
|
19288
19750
|
/**
|
|
19289
19751
|
* The field name that was corrected (e.g., 'customer_name', 'total_amount')
|
|
19290
19752
|
*/
|
|
@@ -19752,6 +20214,93 @@ type PostBucketsResponses = {
|
|
|
19752
20214
|
};
|
|
19753
20215
|
};
|
|
19754
20216
|
type PostBucketsResponse = PostBucketsResponses[keyof PostBucketsResponses];
|
|
20217
|
+
type PostPaymentMethodsTokenizeData = {
|
|
20218
|
+
/**
|
|
20219
|
+
* Request body for the /payment-methods/tokenize operation on payment_method resource
|
|
20220
|
+
*/
|
|
20221
|
+
body: {
|
|
20222
|
+
data: {
|
|
20223
|
+
attributes?: {
|
|
20224
|
+
card_number: string;
|
|
20225
|
+
customer_id?: string | unknown;
|
|
20226
|
+
cvc: string;
|
|
20227
|
+
exp_month: number;
|
|
20228
|
+
exp_year: number;
|
|
20229
|
+
holder_name: string;
|
|
20230
|
+
nickname?: string | unknown;
|
|
20231
|
+
zip_code: string;
|
|
20232
|
+
};
|
|
20233
|
+
relationships?: {
|
|
20234
|
+
[key: string]: never;
|
|
20235
|
+
};
|
|
20236
|
+
type?: "payment_method";
|
|
20237
|
+
};
|
|
20238
|
+
};
|
|
20239
|
+
headers: {
|
|
20240
|
+
/**
|
|
20241
|
+
* Application ID for authentication and routing
|
|
20242
|
+
*/
|
|
20243
|
+
"x-application-key": string;
|
|
20244
|
+
};
|
|
20245
|
+
path?: never;
|
|
20246
|
+
query?: {
|
|
20247
|
+
/**
|
|
20248
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
20249
|
+
*/
|
|
20250
|
+
include?: string;
|
|
20251
|
+
/**
|
|
20252
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
20253
|
+
*/
|
|
20254
|
+
fields?: {
|
|
20255
|
+
[key: string]: unknown;
|
|
20256
|
+
};
|
|
20257
|
+
};
|
|
20258
|
+
url: "/payment-methods/tokenize";
|
|
20259
|
+
};
|
|
20260
|
+
type PostPaymentMethodsTokenizeErrors = {
|
|
20261
|
+
/**
|
|
20262
|
+
* Bad Request - Invalid input data or malformed request
|
|
20263
|
+
*/
|
|
20264
|
+
400: ErrorResponse;
|
|
20265
|
+
/**
|
|
20266
|
+
* Unauthorized - Missing or invalid authentication token
|
|
20267
|
+
*/
|
|
20268
|
+
401: ErrorResponse;
|
|
20269
|
+
/**
|
|
20270
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
20271
|
+
*/
|
|
20272
|
+
403: ErrorResponse;
|
|
20273
|
+
/**
|
|
20274
|
+
* Not Found - Resource does not exist
|
|
20275
|
+
*/
|
|
20276
|
+
404: ErrorResponse;
|
|
20277
|
+
/**
|
|
20278
|
+
* Too Many Requests - Rate limit exceeded
|
|
20279
|
+
*/
|
|
20280
|
+
429: ErrorResponse;
|
|
20281
|
+
/**
|
|
20282
|
+
* Internal Server Error - Unexpected server error
|
|
20283
|
+
*/
|
|
20284
|
+
500: ErrorResponse;
|
|
20285
|
+
/**
|
|
20286
|
+
* General Error
|
|
20287
|
+
*/
|
|
20288
|
+
default: Errors;
|
|
20289
|
+
};
|
|
20290
|
+
type PostPaymentMethodsTokenizeError = PostPaymentMethodsTokenizeErrors[keyof PostPaymentMethodsTokenizeErrors];
|
|
20291
|
+
type PostPaymentMethodsTokenizeResponses = {
|
|
20292
|
+
/**
|
|
20293
|
+
* Success
|
|
20294
|
+
*/
|
|
20295
|
+
201: {
|
|
20296
|
+
data?: PaymentMethod;
|
|
20297
|
+
included?: Array<unknown>;
|
|
20298
|
+
meta?: {
|
|
20299
|
+
[key: string]: unknown;
|
|
20300
|
+
};
|
|
20301
|
+
};
|
|
20302
|
+
};
|
|
20303
|
+
type PostPaymentMethodsTokenizeResponse = PostPaymentMethodsTokenizeResponses[keyof PostPaymentMethodsTokenizeResponses];
|
|
19755
20304
|
type GetWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData = {
|
|
19756
20305
|
body?: never;
|
|
19757
20306
|
headers: {
|
|
@@ -20573,10 +21122,13 @@ type PostApiKeysData = {
|
|
|
20573
21122
|
/**
|
|
20574
21123
|
* Request body for the /api_keys operation on api_key resource
|
|
20575
21124
|
*/
|
|
20576
|
-
body
|
|
21125
|
+
body: {
|
|
20577
21126
|
data: {
|
|
20578
21127
|
attributes?: {
|
|
20579
|
-
|
|
21128
|
+
/**
|
|
21129
|
+
* Required - the application this API key belongs to
|
|
21130
|
+
*/
|
|
21131
|
+
application_id: string;
|
|
20580
21132
|
/**
|
|
20581
21133
|
* Maximum credits allowed per period (null = unlimited)
|
|
20582
21134
|
*/
|
|
@@ -20955,7 +21507,6 @@ type PatchAgentsByIdData = {
|
|
|
20955
21507
|
body?: {
|
|
20956
21508
|
data: {
|
|
20957
21509
|
attributes?: {
|
|
20958
|
-
change_summary?: string | unknown;
|
|
20959
21510
|
default_instructions?: string | unknown;
|
|
20960
21511
|
description?: string | unknown;
|
|
20961
21512
|
domain?: "legal" | "medical" | "financial" | "compliance" | "support" | "recruitment" | "general" | "extraction" | "municipal" | "logistics" | "utility" | unknown;
|
|
@@ -20967,6 +21518,7 @@ type PatchAgentsByIdData = {
|
|
|
20967
21518
|
[key: string]: unknown;
|
|
20968
21519
|
} | unknown;
|
|
20969
21520
|
tags?: Array<string> | unknown;
|
|
21521
|
+
version?: string | unknown;
|
|
20970
21522
|
};
|
|
20971
21523
|
id: string;
|
|
20972
21524
|
relationships?: {
|
|
@@ -22189,6 +22741,10 @@ type PatchApplicationsByIdData = {
|
|
|
22189
22741
|
invite_only?: boolean | unknown;
|
|
22190
22742
|
logo_url?: string | unknown;
|
|
22191
22743
|
name?: string | unknown;
|
|
22744
|
+
/**
|
|
22745
|
+
* OAuth configuration for this application
|
|
22746
|
+
*/
|
|
22747
|
+
oauth?: ApplicationOauthInputUpdateType | unknown;
|
|
22192
22748
|
/**
|
|
22193
22749
|
* When true, password registration withholds JWT until email is verified
|
|
22194
22750
|
*/
|
|
@@ -22364,6 +22920,10 @@ type PatchExtractionDocumentsByIdVerificationData = {
|
|
|
22364
22920
|
body?: {
|
|
22365
22921
|
data: {
|
|
22366
22922
|
attributes?: {
|
|
22923
|
+
/**
|
|
22924
|
+
* Average confidence score across all extracted fields (0.0 to 1.0)
|
|
22925
|
+
*/
|
|
22926
|
+
avg_confidence?: number | unknown;
|
|
22367
22927
|
last_verified_at?: unknown;
|
|
22368
22928
|
/**
|
|
22369
22929
|
* The review/verification state of the document
|
|
@@ -22527,93 +23087,6 @@ type PostThreadsByIdForkResponses = {
|
|
|
22527
23087
|
};
|
|
22528
23088
|
};
|
|
22529
23089
|
type PostThreadsByIdForkResponse = PostThreadsByIdForkResponses[keyof PostThreadsByIdForkResponses];
|
|
22530
|
-
type PostExtractionDocumentsFindOrBeginUploadData = {
|
|
22531
|
-
/**
|
|
22532
|
-
* Request body for the /extraction/documents/find_or_begin_upload operation on extraction_document resource
|
|
22533
|
-
*/
|
|
22534
|
-
body: {
|
|
22535
|
-
data: {
|
|
22536
|
-
attributes?: {
|
|
22537
|
-
batch_id?: string | unknown;
|
|
22538
|
-
content_type?: string | unknown;
|
|
22539
|
-
file_hash: string;
|
|
22540
|
-
file_size_bytes?: number | unknown;
|
|
22541
|
-
file_type?: string | unknown;
|
|
22542
|
-
filename: string;
|
|
22543
|
-
parent_document_id?: string | unknown;
|
|
22544
|
-
workspace_id: string;
|
|
22545
|
-
};
|
|
22546
|
-
relationships?: {
|
|
22547
|
-
[key: string]: never;
|
|
22548
|
-
};
|
|
22549
|
-
type?: "extraction_document";
|
|
22550
|
-
};
|
|
22551
|
-
};
|
|
22552
|
-
headers: {
|
|
22553
|
-
/**
|
|
22554
|
-
* Application ID for authentication and routing
|
|
22555
|
-
*/
|
|
22556
|
-
"x-application-key": string;
|
|
22557
|
-
};
|
|
22558
|
-
path?: never;
|
|
22559
|
-
query?: {
|
|
22560
|
-
/**
|
|
22561
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
22562
|
-
*/
|
|
22563
|
-
include?: string;
|
|
22564
|
-
/**
|
|
22565
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
22566
|
-
*/
|
|
22567
|
-
fields?: {
|
|
22568
|
-
[key: string]: unknown;
|
|
22569
|
-
};
|
|
22570
|
-
};
|
|
22571
|
-
url: "/extraction/documents/find_or_begin_upload";
|
|
22572
|
-
};
|
|
22573
|
-
type PostExtractionDocumentsFindOrBeginUploadErrors = {
|
|
22574
|
-
/**
|
|
22575
|
-
* Bad Request - Invalid input data or malformed request
|
|
22576
|
-
*/
|
|
22577
|
-
400: ErrorResponse;
|
|
22578
|
-
/**
|
|
22579
|
-
* Unauthorized - Missing or invalid authentication token
|
|
22580
|
-
*/
|
|
22581
|
-
401: ErrorResponse;
|
|
22582
|
-
/**
|
|
22583
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
22584
|
-
*/
|
|
22585
|
-
403: ErrorResponse;
|
|
22586
|
-
/**
|
|
22587
|
-
* Not Found - Resource does not exist
|
|
22588
|
-
*/
|
|
22589
|
-
404: ErrorResponse;
|
|
22590
|
-
/**
|
|
22591
|
-
* Too Many Requests - Rate limit exceeded
|
|
22592
|
-
*/
|
|
22593
|
-
429: ErrorResponse;
|
|
22594
|
-
/**
|
|
22595
|
-
* Internal Server Error - Unexpected server error
|
|
22596
|
-
*/
|
|
22597
|
-
500: ErrorResponse;
|
|
22598
|
-
/**
|
|
22599
|
-
* General Error
|
|
22600
|
-
*/
|
|
22601
|
-
default: Errors;
|
|
22602
|
-
};
|
|
22603
|
-
type PostExtractionDocumentsFindOrBeginUploadError = PostExtractionDocumentsFindOrBeginUploadErrors[keyof PostExtractionDocumentsFindOrBeginUploadErrors];
|
|
22604
|
-
type PostExtractionDocumentsFindOrBeginUploadResponses = {
|
|
22605
|
-
/**
|
|
22606
|
-
* Success
|
|
22607
|
-
*/
|
|
22608
|
-
201: {
|
|
22609
|
-
data?: ExtractionDocument;
|
|
22610
|
-
included?: Array<ExtractionResult>;
|
|
22611
|
-
meta?: {
|
|
22612
|
-
[key: string]: unknown;
|
|
22613
|
-
};
|
|
22614
|
-
};
|
|
22615
|
-
};
|
|
22616
|
-
type PostExtractionDocumentsFindOrBeginUploadResponse = PostExtractionDocumentsFindOrBeginUploadResponses[keyof PostExtractionDocumentsFindOrBeginUploadResponses];
|
|
22617
23090
|
type GetTransactionsData = {
|
|
22618
23091
|
body?: never;
|
|
22619
23092
|
headers: {
|
|
@@ -25870,17 +26343,137 @@ type PostTrainingExamplesBulkErrors = {
|
|
|
25870
26343
|
*/
|
|
25871
26344
|
default: Errors;
|
|
25872
26345
|
};
|
|
25873
|
-
type PostTrainingExamplesBulkError = PostTrainingExamplesBulkErrors[keyof PostTrainingExamplesBulkErrors];
|
|
25874
|
-
type PostTrainingExamplesBulkResponses = {
|
|
26346
|
+
type PostTrainingExamplesBulkError = PostTrainingExamplesBulkErrors[keyof PostTrainingExamplesBulkErrors];
|
|
26347
|
+
type PostTrainingExamplesBulkResponses = {
|
|
26348
|
+
/**
|
|
26349
|
+
* Success
|
|
26350
|
+
*/
|
|
26351
|
+
201: {
|
|
26352
|
+
[key: string]: unknown;
|
|
26353
|
+
};
|
|
26354
|
+
};
|
|
26355
|
+
type PostTrainingExamplesBulkResponse = PostTrainingExamplesBulkResponses[keyof PostTrainingExamplesBulkResponses];
|
|
26356
|
+
type PostAgentsByIdSchemaVersionsByVersionIdActivateData = {
|
|
26357
|
+
body?: never;
|
|
26358
|
+
headers: {
|
|
26359
|
+
/**
|
|
26360
|
+
* Application ID for authentication and routing
|
|
26361
|
+
*/
|
|
26362
|
+
"x-application-key": string;
|
|
26363
|
+
};
|
|
26364
|
+
path: {
|
|
26365
|
+
version_id: string;
|
|
26366
|
+
/**
|
|
26367
|
+
* Agent ID (automatically mapped from route)
|
|
26368
|
+
*/
|
|
26369
|
+
id: string;
|
|
26370
|
+
};
|
|
26371
|
+
query?: never;
|
|
26372
|
+
url: "/agents/{id}/schema_versions/{version_id}/activate";
|
|
26373
|
+
};
|
|
26374
|
+
type PostAgentsByIdSchemaVersionsByVersionIdActivateErrors = {
|
|
26375
|
+
/**
|
|
26376
|
+
* Bad Request - Invalid input data or malformed request
|
|
26377
|
+
*/
|
|
26378
|
+
400: ErrorResponse;
|
|
26379
|
+
/**
|
|
26380
|
+
* Unauthorized - Missing or invalid authentication token
|
|
26381
|
+
*/
|
|
26382
|
+
401: ErrorResponse;
|
|
26383
|
+
/**
|
|
26384
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
26385
|
+
*/
|
|
26386
|
+
403: ErrorResponse;
|
|
26387
|
+
/**
|
|
26388
|
+
* Not Found - Resource does not exist
|
|
26389
|
+
*/
|
|
26390
|
+
404: ErrorResponse;
|
|
26391
|
+
/**
|
|
26392
|
+
* Too Many Requests - Rate limit exceeded
|
|
26393
|
+
*/
|
|
26394
|
+
429: ErrorResponse;
|
|
26395
|
+
/**
|
|
26396
|
+
* Internal Server Error - Unexpected server error
|
|
26397
|
+
*/
|
|
26398
|
+
500: ErrorResponse;
|
|
26399
|
+
/**
|
|
26400
|
+
* General Error
|
|
26401
|
+
*/
|
|
26402
|
+
default: Errors;
|
|
26403
|
+
};
|
|
26404
|
+
type PostAgentsByIdSchemaVersionsByVersionIdActivateError = PostAgentsByIdSchemaVersionsByVersionIdActivateErrors[keyof PostAgentsByIdSchemaVersionsByVersionIdActivateErrors];
|
|
26405
|
+
type PostAgentsByIdSchemaVersionsByVersionIdActivateResponses = {
|
|
26406
|
+
/**
|
|
26407
|
+
* Success
|
|
26408
|
+
*/
|
|
26409
|
+
201: {
|
|
26410
|
+
[key: string]: unknown;
|
|
26411
|
+
};
|
|
26412
|
+
};
|
|
26413
|
+
type PostAgentsByIdSchemaVersionsByVersionIdActivateResponse = PostAgentsByIdSchemaVersionsByVersionIdActivateResponses[keyof PostAgentsByIdSchemaVersionsByVersionIdActivateResponses];
|
|
26414
|
+
type DeletePaymentMethodsByIdData = {
|
|
26415
|
+
body?: never;
|
|
26416
|
+
headers: {
|
|
26417
|
+
/**
|
|
26418
|
+
* Application ID for authentication and routing
|
|
26419
|
+
*/
|
|
26420
|
+
"x-application-key": string;
|
|
26421
|
+
};
|
|
26422
|
+
path: {
|
|
26423
|
+
id: string;
|
|
26424
|
+
};
|
|
26425
|
+
query?: {
|
|
26426
|
+
/**
|
|
26427
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
26428
|
+
*/
|
|
26429
|
+
include?: string;
|
|
26430
|
+
/**
|
|
26431
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
26432
|
+
*/
|
|
26433
|
+
fields?: {
|
|
26434
|
+
[key: string]: unknown;
|
|
26435
|
+
};
|
|
26436
|
+
};
|
|
26437
|
+
url: "/payment-methods/{id}";
|
|
26438
|
+
};
|
|
26439
|
+
type DeletePaymentMethodsByIdErrors = {
|
|
26440
|
+
/**
|
|
26441
|
+
* Bad Request - Invalid input data or malformed request
|
|
26442
|
+
*/
|
|
26443
|
+
400: ErrorResponse;
|
|
26444
|
+
/**
|
|
26445
|
+
* Unauthorized - Missing or invalid authentication token
|
|
26446
|
+
*/
|
|
26447
|
+
401: ErrorResponse;
|
|
26448
|
+
/**
|
|
26449
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
26450
|
+
*/
|
|
26451
|
+
403: ErrorResponse;
|
|
26452
|
+
/**
|
|
26453
|
+
* Not Found - Resource does not exist
|
|
26454
|
+
*/
|
|
26455
|
+
404: ErrorResponse;
|
|
26456
|
+
/**
|
|
26457
|
+
* Too Many Requests - Rate limit exceeded
|
|
26458
|
+
*/
|
|
26459
|
+
429: ErrorResponse;
|
|
26460
|
+
/**
|
|
26461
|
+
* Internal Server Error - Unexpected server error
|
|
26462
|
+
*/
|
|
26463
|
+
500: ErrorResponse;
|
|
26464
|
+
/**
|
|
26465
|
+
* General Error
|
|
26466
|
+
*/
|
|
26467
|
+
default: Errors;
|
|
26468
|
+
};
|
|
26469
|
+
type DeletePaymentMethodsByIdError = DeletePaymentMethodsByIdErrors[keyof DeletePaymentMethodsByIdErrors];
|
|
26470
|
+
type DeletePaymentMethodsByIdResponses = {
|
|
25875
26471
|
/**
|
|
25876
|
-
*
|
|
26472
|
+
* Deleted successfully
|
|
25877
26473
|
*/
|
|
25878
|
-
|
|
25879
|
-
[key: string]: unknown;
|
|
25880
|
-
};
|
|
26474
|
+
200: unknown;
|
|
25881
26475
|
};
|
|
25882
|
-
type
|
|
25883
|
-
type PostAgentsByIdSchemaVersionsByVersionIdActivateData = {
|
|
26476
|
+
type GetPaymentMethodsByIdData = {
|
|
25884
26477
|
body?: never;
|
|
25885
26478
|
headers: {
|
|
25886
26479
|
/**
|
|
@@ -25889,16 +26482,107 @@ type PostAgentsByIdSchemaVersionsByVersionIdActivateData = {
|
|
|
25889
26482
|
"x-application-key": string;
|
|
25890
26483
|
};
|
|
25891
26484
|
path: {
|
|
25892
|
-
|
|
26485
|
+
id: string;
|
|
26486
|
+
};
|
|
26487
|
+
query?: {
|
|
25893
26488
|
/**
|
|
25894
|
-
*
|
|
26489
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
26490
|
+
*/
|
|
26491
|
+
include?: string;
|
|
26492
|
+
/**
|
|
26493
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
26494
|
+
*/
|
|
26495
|
+
fields?: {
|
|
26496
|
+
[key: string]: unknown;
|
|
26497
|
+
};
|
|
26498
|
+
};
|
|
26499
|
+
url: "/payment-methods/{id}";
|
|
26500
|
+
};
|
|
26501
|
+
type GetPaymentMethodsByIdErrors = {
|
|
26502
|
+
/**
|
|
26503
|
+
* Bad Request - Invalid input data or malformed request
|
|
26504
|
+
*/
|
|
26505
|
+
400: ErrorResponse;
|
|
26506
|
+
/**
|
|
26507
|
+
* Unauthorized - Missing or invalid authentication token
|
|
26508
|
+
*/
|
|
26509
|
+
401: ErrorResponse;
|
|
26510
|
+
/**
|
|
26511
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
26512
|
+
*/
|
|
26513
|
+
403: ErrorResponse;
|
|
26514
|
+
/**
|
|
26515
|
+
* Not Found - Resource does not exist
|
|
26516
|
+
*/
|
|
26517
|
+
404: ErrorResponse;
|
|
26518
|
+
/**
|
|
26519
|
+
* Too Many Requests - Rate limit exceeded
|
|
26520
|
+
*/
|
|
26521
|
+
429: ErrorResponse;
|
|
26522
|
+
/**
|
|
26523
|
+
* Internal Server Error - Unexpected server error
|
|
26524
|
+
*/
|
|
26525
|
+
500: ErrorResponse;
|
|
26526
|
+
/**
|
|
26527
|
+
* General Error
|
|
26528
|
+
*/
|
|
26529
|
+
default: Errors;
|
|
26530
|
+
};
|
|
26531
|
+
type GetPaymentMethodsByIdError = GetPaymentMethodsByIdErrors[keyof GetPaymentMethodsByIdErrors];
|
|
26532
|
+
type GetPaymentMethodsByIdResponses = {
|
|
26533
|
+
/**
|
|
26534
|
+
* Success
|
|
26535
|
+
*/
|
|
26536
|
+
200: {
|
|
26537
|
+
data?: PaymentMethod;
|
|
26538
|
+
included?: Array<unknown>;
|
|
26539
|
+
meta?: {
|
|
26540
|
+
[key: string]: unknown;
|
|
26541
|
+
};
|
|
26542
|
+
};
|
|
26543
|
+
};
|
|
26544
|
+
type GetPaymentMethodsByIdResponse = GetPaymentMethodsByIdResponses[keyof GetPaymentMethodsByIdResponses];
|
|
26545
|
+
type PatchPaymentMethodsByIdData = {
|
|
26546
|
+
/**
|
|
26547
|
+
* Request body for the /payment-methods/:id operation on payment_method resource
|
|
26548
|
+
*/
|
|
26549
|
+
body?: {
|
|
26550
|
+
data: {
|
|
26551
|
+
attributes?: {
|
|
26552
|
+
is_default?: boolean | unknown;
|
|
26553
|
+
nickname?: string | unknown;
|
|
26554
|
+
};
|
|
26555
|
+
id: string;
|
|
26556
|
+
relationships?: {
|
|
26557
|
+
[key: string]: never;
|
|
26558
|
+
};
|
|
26559
|
+
type?: "payment_method";
|
|
26560
|
+
};
|
|
26561
|
+
};
|
|
26562
|
+
headers: {
|
|
26563
|
+
/**
|
|
26564
|
+
* Application ID for authentication and routing
|
|
25895
26565
|
*/
|
|
26566
|
+
"x-application-key": string;
|
|
26567
|
+
};
|
|
26568
|
+
path: {
|
|
25896
26569
|
id: string;
|
|
25897
26570
|
};
|
|
25898
|
-
query?:
|
|
25899
|
-
|
|
26571
|
+
query?: {
|
|
26572
|
+
/**
|
|
26573
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
26574
|
+
*/
|
|
26575
|
+
include?: string;
|
|
26576
|
+
/**
|
|
26577
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
26578
|
+
*/
|
|
26579
|
+
fields?: {
|
|
26580
|
+
[key: string]: unknown;
|
|
26581
|
+
};
|
|
26582
|
+
};
|
|
26583
|
+
url: "/payment-methods/{id}";
|
|
25900
26584
|
};
|
|
25901
|
-
type
|
|
26585
|
+
type PatchPaymentMethodsByIdErrors = {
|
|
25902
26586
|
/**
|
|
25903
26587
|
* Bad Request - Invalid input data or malformed request
|
|
25904
26588
|
*/
|
|
@@ -25928,16 +26612,20 @@ type PostAgentsByIdSchemaVersionsByVersionIdActivateErrors = {
|
|
|
25928
26612
|
*/
|
|
25929
26613
|
default: Errors;
|
|
25930
26614
|
};
|
|
25931
|
-
type
|
|
25932
|
-
type
|
|
26615
|
+
type PatchPaymentMethodsByIdError = PatchPaymentMethodsByIdErrors[keyof PatchPaymentMethodsByIdErrors];
|
|
26616
|
+
type PatchPaymentMethodsByIdResponses = {
|
|
25933
26617
|
/**
|
|
25934
26618
|
* Success
|
|
25935
26619
|
*/
|
|
25936
|
-
|
|
25937
|
-
|
|
26620
|
+
200: {
|
|
26621
|
+
data?: PaymentMethod;
|
|
26622
|
+
included?: Array<unknown>;
|
|
26623
|
+
meta?: {
|
|
26624
|
+
[key: string]: unknown;
|
|
26625
|
+
};
|
|
25938
26626
|
};
|
|
25939
26627
|
};
|
|
25940
|
-
type
|
|
26628
|
+
type PatchPaymentMethodsByIdResponse = PatchPaymentMethodsByIdResponses[keyof PatchPaymentMethodsByIdResponses];
|
|
25941
26629
|
type DeleteBucketsByIdData = {
|
|
25942
26630
|
body?: never;
|
|
25943
26631
|
headers: {
|
|
@@ -28532,114 +29220,182 @@ type GetNotificationMethodsErrors = {
|
|
|
28532
29220
|
*/
|
|
28533
29221
|
default: Errors;
|
|
28534
29222
|
};
|
|
28535
|
-
type GetNotificationMethodsError = GetNotificationMethodsErrors[keyof GetNotificationMethodsErrors];
|
|
28536
|
-
type GetNotificationMethodsResponses = {
|
|
29223
|
+
type GetNotificationMethodsError = GetNotificationMethodsErrors[keyof GetNotificationMethodsErrors];
|
|
29224
|
+
type GetNotificationMethodsResponses = {
|
|
29225
|
+
/**
|
|
29226
|
+
* Success
|
|
29227
|
+
*/
|
|
29228
|
+
200: {
|
|
29229
|
+
/**
|
|
29230
|
+
* An array of resource objects representing a notification_method
|
|
29231
|
+
*/
|
|
29232
|
+
data?: Array<NotificationMethod>;
|
|
29233
|
+
included?: Array<unknown>;
|
|
29234
|
+
meta?: {
|
|
29235
|
+
[key: string]: unknown;
|
|
29236
|
+
};
|
|
29237
|
+
};
|
|
29238
|
+
};
|
|
29239
|
+
type GetNotificationMethodsResponse = GetNotificationMethodsResponses[keyof GetNotificationMethodsResponses];
|
|
29240
|
+
type PostNotificationMethodsData = {
|
|
29241
|
+
/**
|
|
29242
|
+
* Request body for the /notification_methods operation on notification_method resource
|
|
29243
|
+
*/
|
|
29244
|
+
body: {
|
|
29245
|
+
data: {
|
|
29246
|
+
attributes?: {
|
|
29247
|
+
/**
|
|
29248
|
+
* Configuration for the method, e.g. %{email: 'foo@bar.com'} or %{url: '...'}
|
|
29249
|
+
*/
|
|
29250
|
+
config?: {
|
|
29251
|
+
[key: string]: unknown;
|
|
29252
|
+
} | unknown;
|
|
29253
|
+
/**
|
|
29254
|
+
* User-friendly name, e.g. 'Personal Email'
|
|
29255
|
+
*/
|
|
29256
|
+
name: string;
|
|
29257
|
+
type: "email" | "sms" | "slack_webhook" | "generic_webhook";
|
|
29258
|
+
user_id: string;
|
|
29259
|
+
};
|
|
29260
|
+
relationships?: {
|
|
29261
|
+
[key: string]: never;
|
|
29262
|
+
};
|
|
29263
|
+
type?: "notification_method";
|
|
29264
|
+
};
|
|
29265
|
+
};
|
|
29266
|
+
headers: {
|
|
29267
|
+
/**
|
|
29268
|
+
* Application ID for authentication and routing
|
|
29269
|
+
*/
|
|
29270
|
+
"x-application-key": string;
|
|
29271
|
+
};
|
|
29272
|
+
path?: never;
|
|
29273
|
+
query?: {
|
|
29274
|
+
/**
|
|
29275
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
29276
|
+
*/
|
|
29277
|
+
include?: string;
|
|
29278
|
+
/**
|
|
29279
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
29280
|
+
*/
|
|
29281
|
+
fields?: {
|
|
29282
|
+
[key: string]: unknown;
|
|
29283
|
+
};
|
|
29284
|
+
};
|
|
29285
|
+
url: "/notification_methods";
|
|
29286
|
+
};
|
|
29287
|
+
type PostNotificationMethodsErrors = {
|
|
29288
|
+
/**
|
|
29289
|
+
* Bad Request - Invalid input data or malformed request
|
|
29290
|
+
*/
|
|
29291
|
+
400: ErrorResponse;
|
|
29292
|
+
/**
|
|
29293
|
+
* Unauthorized - Missing or invalid authentication token
|
|
29294
|
+
*/
|
|
29295
|
+
401: ErrorResponse;
|
|
29296
|
+
/**
|
|
29297
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
29298
|
+
*/
|
|
29299
|
+
403: ErrorResponse;
|
|
29300
|
+
/**
|
|
29301
|
+
* Not Found - Resource does not exist
|
|
29302
|
+
*/
|
|
29303
|
+
404: ErrorResponse;
|
|
29304
|
+
/**
|
|
29305
|
+
* Too Many Requests - Rate limit exceeded
|
|
29306
|
+
*/
|
|
29307
|
+
429: ErrorResponse;
|
|
29308
|
+
/**
|
|
29309
|
+
* Internal Server Error - Unexpected server error
|
|
29310
|
+
*/
|
|
29311
|
+
500: ErrorResponse;
|
|
29312
|
+
/**
|
|
29313
|
+
* General Error
|
|
29314
|
+
*/
|
|
29315
|
+
default: Errors;
|
|
29316
|
+
};
|
|
29317
|
+
type PostNotificationMethodsError = PostNotificationMethodsErrors[keyof PostNotificationMethodsErrors];
|
|
29318
|
+
type PostNotificationMethodsResponses = {
|
|
29319
|
+
/**
|
|
29320
|
+
* Success
|
|
29321
|
+
*/
|
|
29322
|
+
201: {
|
|
29323
|
+
data?: NotificationMethod;
|
|
29324
|
+
included?: Array<unknown>;
|
|
29325
|
+
meta?: {
|
|
29326
|
+
[key: string]: unknown;
|
|
29327
|
+
};
|
|
29328
|
+
};
|
|
29329
|
+
};
|
|
29330
|
+
type PostNotificationMethodsResponse = PostNotificationMethodsResponses[keyof PostNotificationMethodsResponses];
|
|
29331
|
+
type GetWalletPlanPreviewData = {
|
|
29332
|
+
body?: never;
|
|
29333
|
+
headers: {
|
|
29334
|
+
/**
|
|
29335
|
+
* Application ID for authentication and routing
|
|
29336
|
+
*/
|
|
29337
|
+
"x-application-key": string;
|
|
29338
|
+
};
|
|
29339
|
+
path?: never;
|
|
29340
|
+
query: {
|
|
29341
|
+
/**
|
|
29342
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
29343
|
+
*/
|
|
29344
|
+
include?: string;
|
|
29345
|
+
/**
|
|
29346
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
29347
|
+
*/
|
|
29348
|
+
fields?: {
|
|
29349
|
+
[key: string]: unknown;
|
|
29350
|
+
};
|
|
29351
|
+
plan_slug: string;
|
|
29352
|
+
};
|
|
29353
|
+
url: "/wallet/plan/preview";
|
|
29354
|
+
};
|
|
29355
|
+
type GetWalletPlanPreviewErrors = {
|
|
29356
|
+
/**
|
|
29357
|
+
* Bad Request - Invalid input data or malformed request
|
|
29358
|
+
*/
|
|
29359
|
+
400: ErrorResponse;
|
|
29360
|
+
/**
|
|
29361
|
+
* Unauthorized - Missing or invalid authentication token
|
|
29362
|
+
*/
|
|
29363
|
+
401: ErrorResponse;
|
|
29364
|
+
/**
|
|
29365
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
29366
|
+
*/
|
|
29367
|
+
403: ErrorResponse;
|
|
29368
|
+
/**
|
|
29369
|
+
* Not Found - Resource does not exist
|
|
29370
|
+
*/
|
|
29371
|
+
404: ErrorResponse;
|
|
29372
|
+
/**
|
|
29373
|
+
* Too Many Requests - Rate limit exceeded
|
|
29374
|
+
*/
|
|
29375
|
+
429: ErrorResponse;
|
|
29376
|
+
/**
|
|
29377
|
+
* Internal Server Error - Unexpected server error
|
|
29378
|
+
*/
|
|
29379
|
+
500: ErrorResponse;
|
|
29380
|
+
/**
|
|
29381
|
+
* General Error
|
|
29382
|
+
*/
|
|
29383
|
+
default: Errors;
|
|
29384
|
+
};
|
|
29385
|
+
type GetWalletPlanPreviewError = GetWalletPlanPreviewErrors[keyof GetWalletPlanPreviewErrors];
|
|
29386
|
+
type GetWalletPlanPreviewResponses = {
|
|
28537
29387
|
/**
|
|
28538
29388
|
* Success
|
|
28539
29389
|
*/
|
|
28540
29390
|
200: {
|
|
28541
|
-
|
|
28542
|
-
|
|
28543
|
-
*/
|
|
28544
|
-
data?: Array<NotificationMethod>;
|
|
28545
|
-
included?: Array<unknown>;
|
|
28546
|
-
meta?: {
|
|
28547
|
-
[key: string]: unknown;
|
|
28548
|
-
};
|
|
28549
|
-
};
|
|
28550
|
-
};
|
|
28551
|
-
type GetNotificationMethodsResponse = GetNotificationMethodsResponses[keyof GetNotificationMethodsResponses];
|
|
28552
|
-
type PostNotificationMethodsData = {
|
|
28553
|
-
/**
|
|
28554
|
-
* Request body for the /notification_methods operation on notification_method resource
|
|
28555
|
-
*/
|
|
28556
|
-
body: {
|
|
28557
|
-
data: {
|
|
28558
|
-
attributes?: {
|
|
28559
|
-
/**
|
|
28560
|
-
* Configuration for the method, e.g. %{email: 'foo@bar.com'} or %{url: '...'}
|
|
28561
|
-
*/
|
|
28562
|
-
config?: {
|
|
28563
|
-
[key: string]: unknown;
|
|
28564
|
-
} | unknown;
|
|
28565
|
-
/**
|
|
28566
|
-
* User-friendly name, e.g. 'Personal Email'
|
|
28567
|
-
*/
|
|
28568
|
-
name: string;
|
|
28569
|
-
type: "email" | "sms" | "slack_webhook" | "generic_webhook";
|
|
28570
|
-
user_id: string;
|
|
28571
|
-
};
|
|
28572
|
-
relationships?: {
|
|
28573
|
-
[key: string]: never;
|
|
28574
|
-
};
|
|
28575
|
-
type?: "notification_method";
|
|
28576
|
-
};
|
|
28577
|
-
};
|
|
28578
|
-
headers: {
|
|
28579
|
-
/**
|
|
28580
|
-
* Application ID for authentication and routing
|
|
28581
|
-
*/
|
|
28582
|
-
"x-application-key": string;
|
|
28583
|
-
};
|
|
28584
|
-
path?: never;
|
|
28585
|
-
query?: {
|
|
28586
|
-
/**
|
|
28587
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
28588
|
-
*/
|
|
28589
|
-
include?: string;
|
|
28590
|
-
/**
|
|
28591
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
28592
|
-
*/
|
|
28593
|
-
fields?: {
|
|
28594
|
-
[key: string]: unknown;
|
|
28595
|
-
};
|
|
28596
|
-
};
|
|
28597
|
-
url: "/notification_methods";
|
|
28598
|
-
};
|
|
28599
|
-
type PostNotificationMethodsErrors = {
|
|
28600
|
-
/**
|
|
28601
|
-
* Bad Request - Invalid input data or malformed request
|
|
28602
|
-
*/
|
|
28603
|
-
400: ErrorResponse;
|
|
28604
|
-
/**
|
|
28605
|
-
* Unauthorized - Missing or invalid authentication token
|
|
28606
|
-
*/
|
|
28607
|
-
401: ErrorResponse;
|
|
28608
|
-
/**
|
|
28609
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
28610
|
-
*/
|
|
28611
|
-
403: ErrorResponse;
|
|
28612
|
-
/**
|
|
28613
|
-
* Not Found - Resource does not exist
|
|
28614
|
-
*/
|
|
28615
|
-
404: ErrorResponse;
|
|
28616
|
-
/**
|
|
28617
|
-
* Too Many Requests - Rate limit exceeded
|
|
28618
|
-
*/
|
|
28619
|
-
429: ErrorResponse;
|
|
28620
|
-
/**
|
|
28621
|
-
* Internal Server Error - Unexpected server error
|
|
28622
|
-
*/
|
|
28623
|
-
500: ErrorResponse;
|
|
28624
|
-
/**
|
|
28625
|
-
* General Error
|
|
28626
|
-
*/
|
|
28627
|
-
default: Errors;
|
|
28628
|
-
};
|
|
28629
|
-
type PostNotificationMethodsError = PostNotificationMethodsErrors[keyof PostNotificationMethodsErrors];
|
|
28630
|
-
type PostNotificationMethodsResponses = {
|
|
28631
|
-
/**
|
|
28632
|
-
* Success
|
|
28633
|
-
*/
|
|
28634
|
-
201: {
|
|
28635
|
-
data?: NotificationMethod;
|
|
28636
|
-
included?: Array<unknown>;
|
|
29391
|
+
data?: Wallet;
|
|
29392
|
+
included?: Array<Plan>;
|
|
28637
29393
|
meta?: {
|
|
28638
29394
|
[key: string]: unknown;
|
|
28639
29395
|
};
|
|
28640
29396
|
};
|
|
28641
29397
|
};
|
|
28642
|
-
type
|
|
29398
|
+
type GetWalletPlanPreviewResponse = GetWalletPlanPreviewResponses[keyof GetWalletPlanPreviewResponses];
|
|
28643
29399
|
type PostThreadsByIdSummarizeData = {
|
|
28644
29400
|
/**
|
|
28645
29401
|
* Request body for the /threads/:id/summarize operation on thread resource
|
|
@@ -28890,102 +29646,8 @@ type PatchApiKeysByIdRotateResponses = {
|
|
|
28890
29646
|
};
|
|
28891
29647
|
};
|
|
28892
29648
|
type PatchApiKeysByIdRotateResponse = PatchApiKeysByIdRotateResponses[keyof PatchApiKeysByIdRotateResponses];
|
|
28893
|
-
type
|
|
28894
|
-
|
|
28895
|
-
* Request body for the /extraction/results operation on extraction_result resource
|
|
28896
|
-
*/
|
|
28897
|
-
body: {
|
|
28898
|
-
data: {
|
|
28899
|
-
attributes?: {
|
|
28900
|
-
/**
|
|
28901
|
-
* The Agent that performed this extraction
|
|
28902
|
-
*/
|
|
28903
|
-
agent_id?: string | unknown;
|
|
28904
|
-
/**
|
|
28905
|
-
* The specific version of the Agent that performed this extraction
|
|
28906
|
-
*/
|
|
28907
|
-
agent_version_id?: string | unknown;
|
|
28908
|
-
/**
|
|
28909
|
-
* Average confidence across all extracted fields
|
|
28910
|
-
*/
|
|
28911
|
-
avg_confidence?: number | unknown;
|
|
28912
|
-
/**
|
|
28913
|
-
* Character count of extracted text
|
|
28914
|
-
*/
|
|
28915
|
-
char_count?: number | unknown;
|
|
28916
|
-
/**
|
|
28917
|
-
* Overall classification confidence score
|
|
28918
|
-
*/
|
|
28919
|
-
classification_confidence?: number | unknown;
|
|
28920
|
-
credits_used?: string | unknown;
|
|
28921
|
-
document_id: string;
|
|
28922
|
-
/**
|
|
28923
|
-
* Specific document type (Traffic Citation, Invoice, etc.)
|
|
28924
|
-
*/
|
|
28925
|
-
document_type?: string | unknown;
|
|
28926
|
-
/**
|
|
28927
|
-
* Document domain (legal, financial, medical, etc.)
|
|
28928
|
-
*/
|
|
28929
|
-
domain?: string | unknown;
|
|
28930
|
-
extracted_fields?: {
|
|
28931
|
-
[key: string]: unknown;
|
|
28932
|
-
} | unknown;
|
|
28933
|
-
extraction_mode?: "base" | "custom" | "hybrid" | unknown;
|
|
28934
|
-
/**
|
|
28935
|
-
* Image height in pixels (for image documents)
|
|
28936
|
-
*/
|
|
28937
|
-
image_height?: number | unknown;
|
|
28938
|
-
/**
|
|
28939
|
-
* Image width in pixels (for image documents)
|
|
28940
|
-
*/
|
|
28941
|
-
image_width?: number | unknown;
|
|
28942
|
-
/**
|
|
28943
|
-
* Line count of extracted text
|
|
28944
|
-
*/
|
|
28945
|
-
line_count?: number | unknown;
|
|
28946
|
-
/**
|
|
28947
|
-
* LLM model used for extraction
|
|
28948
|
-
*/
|
|
28949
|
-
llm_model?: string | unknown;
|
|
28950
|
-
/**
|
|
28951
|
-
* Municipality or agency name
|
|
28952
|
-
*/
|
|
28953
|
-
municipality?: string | unknown;
|
|
28954
|
-
ocr_blocks?: Array<{
|
|
28955
|
-
[key: string]: unknown;
|
|
28956
|
-
}> | unknown;
|
|
28957
|
-
/**
|
|
28958
|
-
* OCR provider used (DocTriage, LlamaParse)
|
|
28959
|
-
*/
|
|
28960
|
-
ocr_provider?: string | unknown;
|
|
28961
|
-
processing_time_ms?: number | unknown;
|
|
28962
|
-
schema_id?: string | unknown;
|
|
28963
|
-
/**
|
|
28964
|
-
* The revision within the schema version (e.g., 5 means 'v2 rev 5')
|
|
28965
|
-
*/
|
|
28966
|
-
schema_revision?: number | unknown;
|
|
28967
|
-
/**
|
|
28968
|
-
* The version of the schema/agent used for this extraction (e.g., 'v2')
|
|
28969
|
-
*/
|
|
28970
|
-
schema_version?: string | unknown;
|
|
28971
|
-
/**
|
|
28972
|
-
* State code
|
|
28973
|
-
*/
|
|
28974
|
-
state?: string | unknown;
|
|
28975
|
-
status?: "pending" | "completed" | "failed" | unknown;
|
|
28976
|
-
used_training_example_ids?: Array<string> | unknown;
|
|
28977
|
-
/**
|
|
28978
|
-
* Word count of extracted text
|
|
28979
|
-
*/
|
|
28980
|
-
word_count?: number | unknown;
|
|
28981
|
-
workspace_id: string;
|
|
28982
|
-
};
|
|
28983
|
-
relationships?: {
|
|
28984
|
-
[key: string]: never;
|
|
28985
|
-
};
|
|
28986
|
-
type?: "extraction_result";
|
|
28987
|
-
};
|
|
28988
|
-
};
|
|
29649
|
+
type GetExtractionResultsData = {
|
|
29650
|
+
body?: never;
|
|
28989
29651
|
headers: {
|
|
28990
29652
|
/**
|
|
28991
29653
|
* Application ID for authentication and routing
|
|
@@ -28994,6 +29656,16 @@ type PostExtractionResultsData = {
|
|
|
28994
29656
|
};
|
|
28995
29657
|
path?: never;
|
|
28996
29658
|
query?: {
|
|
29659
|
+
/**
|
|
29660
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
29661
|
+
*/
|
|
29662
|
+
filter?: {
|
|
29663
|
+
[key: string]: unknown;
|
|
29664
|
+
};
|
|
29665
|
+
/**
|
|
29666
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
29667
|
+
*/
|
|
29668
|
+
sort?: string;
|
|
28997
29669
|
/**
|
|
28998
29670
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
28999
29671
|
*/
|
|
@@ -29007,7 +29679,7 @@ type PostExtractionResultsData = {
|
|
|
29007
29679
|
};
|
|
29008
29680
|
url: "/extraction/results";
|
|
29009
29681
|
};
|
|
29010
|
-
type
|
|
29682
|
+
type GetExtractionResultsErrors = {
|
|
29011
29683
|
/**
|
|
29012
29684
|
* Bad Request - Invalid input data or malformed request
|
|
29013
29685
|
*/
|
|
@@ -29037,20 +29709,23 @@ type PostExtractionResultsErrors = {
|
|
|
29037
29709
|
*/
|
|
29038
29710
|
default: Errors;
|
|
29039
29711
|
};
|
|
29040
|
-
type
|
|
29041
|
-
type
|
|
29712
|
+
type GetExtractionResultsError = GetExtractionResultsErrors[keyof GetExtractionResultsErrors];
|
|
29713
|
+
type GetExtractionResultsResponses = {
|
|
29042
29714
|
/**
|
|
29043
29715
|
* Success
|
|
29044
29716
|
*/
|
|
29045
|
-
|
|
29046
|
-
|
|
29717
|
+
200: {
|
|
29718
|
+
/**
|
|
29719
|
+
* An array of resource objects representing a extraction_result
|
|
29720
|
+
*/
|
|
29721
|
+
data?: Array<ExtractionResult>;
|
|
29047
29722
|
included?: Array<unknown>;
|
|
29048
29723
|
meta?: {
|
|
29049
29724
|
[key: string]: unknown;
|
|
29050
29725
|
};
|
|
29051
29726
|
};
|
|
29052
29727
|
};
|
|
29053
|
-
type
|
|
29728
|
+
type GetExtractionResultsResponse = GetExtractionResultsResponses[keyof GetExtractionResultsResponses];
|
|
29054
29729
|
type PostAgentsByIdCloneData = {
|
|
29055
29730
|
/**
|
|
29056
29731
|
* Request body for the /agents/:id/clone operation on agent resource
|
|
@@ -30253,105 +30928,82 @@ type PostWebhookConfigsErrors = {
|
|
|
30253
30928
|
*/
|
|
30254
30929
|
default: Errors;
|
|
30255
30930
|
};
|
|
30256
|
-
type PostWebhookConfigsError = PostWebhookConfigsErrors[keyof PostWebhookConfigsErrors];
|
|
30257
|
-
type PostWebhookConfigsResponses = {
|
|
30258
|
-
/**
|
|
30259
|
-
* Success
|
|
30260
|
-
*/
|
|
30261
|
-
201: {
|
|
30262
|
-
data?: WebhookConfig;
|
|
30263
|
-
included?: Array<unknown>;
|
|
30264
|
-
meta?: {
|
|
30265
|
-
[key: string]: unknown;
|
|
30266
|
-
};
|
|
30267
|
-
};
|
|
30268
|
-
};
|
|
30269
|
-
type PostWebhookConfigsResponse = PostWebhookConfigsResponses[keyof PostWebhookConfigsResponses];
|
|
30270
|
-
type PostAgentsByIdPublishVersionData = {
|
|
30271
|
-
/**
|
|
30272
|
-
* Request body for the /agents/:id/publish_version operation on agent resource
|
|
30273
|
-
*/
|
|
30274
|
-
body: {
|
|
30275
|
-
data: {
|
|
30276
|
-
attributes?: {
|
|
30277
|
-
changes_summary?: string | unknown;
|
|
30278
|
-
version_number: string;
|
|
30279
|
-
};
|
|
30280
|
-
relationships?: {
|
|
30281
|
-
[key: string]: never;
|
|
30282
|
-
};
|
|
30283
|
-
type?: "agent";
|
|
30284
|
-
};
|
|
30285
|
-
};
|
|
30286
|
-
headers: {
|
|
30287
|
-
/**
|
|
30288
|
-
* Application ID for authentication and routing
|
|
30289
|
-
*/
|
|
30290
|
-
"x-application-key": string;
|
|
30291
|
-
};
|
|
30292
|
-
path: {
|
|
30293
|
-
/**
|
|
30294
|
-
* Agent ID (from URL path parameter)
|
|
30295
|
-
*/
|
|
30296
|
-
id: string;
|
|
30297
|
-
};
|
|
30298
|
-
query?: {
|
|
30299
|
-
/**
|
|
30300
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
30301
|
-
*/
|
|
30302
|
-
include?: string;
|
|
30303
|
-
/**
|
|
30304
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
30305
|
-
*/
|
|
30306
|
-
fields?: {
|
|
30307
|
-
[key: string]: unknown;
|
|
30308
|
-
};
|
|
30309
|
-
};
|
|
30310
|
-
url: "/agents/{id}/publish_version";
|
|
30311
|
-
};
|
|
30312
|
-
type PostAgentsByIdPublishVersionErrors = {
|
|
30313
|
-
/**
|
|
30314
|
-
* Bad Request - Invalid input data or malformed request
|
|
30315
|
-
*/
|
|
30316
|
-
400: ErrorResponse;
|
|
30317
|
-
/**
|
|
30318
|
-
* Unauthorized - Missing or invalid authentication token
|
|
30319
|
-
*/
|
|
30320
|
-
401: ErrorResponse;
|
|
30321
|
-
/**
|
|
30322
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
30323
|
-
*/
|
|
30324
|
-
403: ErrorResponse;
|
|
30325
|
-
/**
|
|
30326
|
-
* Not Found - Resource does not exist
|
|
30327
|
-
*/
|
|
30328
|
-
404: ErrorResponse;
|
|
30329
|
-
/**
|
|
30330
|
-
* Too Many Requests - Rate limit exceeded
|
|
30331
|
-
*/
|
|
30332
|
-
429: ErrorResponse;
|
|
30333
|
-
/**
|
|
30334
|
-
* Internal Server Error - Unexpected server error
|
|
30335
|
-
*/
|
|
30336
|
-
500: ErrorResponse;
|
|
30337
|
-
/**
|
|
30338
|
-
* General Error
|
|
30339
|
-
*/
|
|
30340
|
-
default: Errors;
|
|
30341
|
-
};
|
|
30342
|
-
type PostAgentsByIdPublishVersionError = PostAgentsByIdPublishVersionErrors[keyof PostAgentsByIdPublishVersionErrors];
|
|
30343
|
-
type PostAgentsByIdPublishVersionResponses = {
|
|
30931
|
+
type PostWebhookConfigsError = PostWebhookConfigsErrors[keyof PostWebhookConfigsErrors];
|
|
30932
|
+
type PostWebhookConfigsResponses = {
|
|
30344
30933
|
/**
|
|
30345
30934
|
* Success
|
|
30346
30935
|
*/
|
|
30347
30936
|
201: {
|
|
30348
|
-
data?:
|
|
30349
|
-
included?: Array<
|
|
30937
|
+
data?: WebhookConfig;
|
|
30938
|
+
included?: Array<unknown>;
|
|
30350
30939
|
meta?: {
|
|
30351
30940
|
[key: string]: unknown;
|
|
30352
30941
|
};
|
|
30353
30942
|
};
|
|
30354
30943
|
};
|
|
30944
|
+
type PostWebhookConfigsResponse = PostWebhookConfigsResponses[keyof PostWebhookConfigsResponses];
|
|
30945
|
+
type PostAgentsByIdPublishVersionData = {
|
|
30946
|
+
/**
|
|
30947
|
+
* Request body for the /agents/:id/publish_version operation on agent resource
|
|
30948
|
+
*/
|
|
30949
|
+
body: {
|
|
30950
|
+
data: {
|
|
30951
|
+
changes_summary?: string | unknown;
|
|
30952
|
+
version_number: string;
|
|
30953
|
+
};
|
|
30954
|
+
};
|
|
30955
|
+
headers: {
|
|
30956
|
+
/**
|
|
30957
|
+
* Application ID for authentication and routing
|
|
30958
|
+
*/
|
|
30959
|
+
"x-application-key": string;
|
|
30960
|
+
};
|
|
30961
|
+
path: {
|
|
30962
|
+
/**
|
|
30963
|
+
* Agent ID (from URL path parameter)
|
|
30964
|
+
*/
|
|
30965
|
+
id: string;
|
|
30966
|
+
};
|
|
30967
|
+
query?: never;
|
|
30968
|
+
url: "/agents/{id}/publish_version";
|
|
30969
|
+
};
|
|
30970
|
+
type PostAgentsByIdPublishVersionErrors = {
|
|
30971
|
+
/**
|
|
30972
|
+
* Bad Request - Invalid input data or malformed request
|
|
30973
|
+
*/
|
|
30974
|
+
400: ErrorResponse;
|
|
30975
|
+
/**
|
|
30976
|
+
* Unauthorized - Missing or invalid authentication token
|
|
30977
|
+
*/
|
|
30978
|
+
401: ErrorResponse;
|
|
30979
|
+
/**
|
|
30980
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
30981
|
+
*/
|
|
30982
|
+
403: ErrorResponse;
|
|
30983
|
+
/**
|
|
30984
|
+
* Not Found - Resource does not exist
|
|
30985
|
+
*/
|
|
30986
|
+
404: ErrorResponse;
|
|
30987
|
+
/**
|
|
30988
|
+
* Too Many Requests - Rate limit exceeded
|
|
30989
|
+
*/
|
|
30990
|
+
429: ErrorResponse;
|
|
30991
|
+
/**
|
|
30992
|
+
* Internal Server Error - Unexpected server error
|
|
30993
|
+
*/
|
|
30994
|
+
500: ErrorResponse;
|
|
30995
|
+
/**
|
|
30996
|
+
* General Error
|
|
30997
|
+
*/
|
|
30998
|
+
default: Errors;
|
|
30999
|
+
};
|
|
31000
|
+
type PostAgentsByIdPublishVersionError = PostAgentsByIdPublishVersionErrors[keyof PostAgentsByIdPublishVersionErrors];
|
|
31001
|
+
type PostAgentsByIdPublishVersionResponses = {
|
|
31002
|
+
/**
|
|
31003
|
+
* Success
|
|
31004
|
+
*/
|
|
31005
|
+
201: AgentVersionType;
|
|
31006
|
+
};
|
|
30355
31007
|
type PostAgentsByIdPublishVersionResponse = PostAgentsByIdPublishVersionResponses[keyof PostAgentsByIdPublishVersionResponses];
|
|
30356
31008
|
type PostExtractionDocumentsBulkReprocessData = {
|
|
30357
31009
|
/**
|
|
@@ -31654,15 +32306,12 @@ type PostAgentsData = {
|
|
|
31654
32306
|
schema_definition?: {
|
|
31655
32307
|
[key: string]: unknown;
|
|
31656
32308
|
} | unknown;
|
|
31657
|
-
/**
|
|
31658
|
-
* Version number of the base agent at clone time (e.g., 'v2'). Nil for base agents.
|
|
31659
|
-
*/
|
|
31660
|
-
source_version?: string | unknown;
|
|
31661
32309
|
tags?: Array<string> | unknown;
|
|
31662
32310
|
/**
|
|
31663
32311
|
* Denormalized from workspace for unique name constraint
|
|
31664
32312
|
*/
|
|
31665
32313
|
tenant_id?: string | unknown;
|
|
32314
|
+
version?: string | unknown;
|
|
31666
32315
|
workspace_id?: string | unknown;
|
|
31667
32316
|
};
|
|
31668
32317
|
relationships?: {
|
|
@@ -31972,6 +32621,89 @@ type PatchApplicationsByApplicationIdEmailTemplatesBySlugResponses = {
|
|
|
31972
32621
|
};
|
|
31973
32622
|
};
|
|
31974
32623
|
type PatchApplicationsByApplicationIdEmailTemplatesBySlugResponse = PatchApplicationsByApplicationIdEmailTemplatesBySlugResponses[keyof PatchApplicationsByApplicationIdEmailTemplatesBySlugResponses];
|
|
32624
|
+
type PatchPaymentMethodsByIdDefaultData = {
|
|
32625
|
+
/**
|
|
32626
|
+
* Request body for the /payment-methods/:id/default operation on payment_method resource
|
|
32627
|
+
*/
|
|
32628
|
+
body?: {
|
|
32629
|
+
data: {
|
|
32630
|
+
attributes?: {
|
|
32631
|
+
[key: string]: never;
|
|
32632
|
+
};
|
|
32633
|
+
id: string;
|
|
32634
|
+
relationships?: {
|
|
32635
|
+
[key: string]: never;
|
|
32636
|
+
};
|
|
32637
|
+
type?: "payment_method";
|
|
32638
|
+
};
|
|
32639
|
+
};
|
|
32640
|
+
headers: {
|
|
32641
|
+
/**
|
|
32642
|
+
* Application ID for authentication and routing
|
|
32643
|
+
*/
|
|
32644
|
+
"x-application-key": string;
|
|
32645
|
+
};
|
|
32646
|
+
path: {
|
|
32647
|
+
id: string;
|
|
32648
|
+
};
|
|
32649
|
+
query?: {
|
|
32650
|
+
/**
|
|
32651
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
32652
|
+
*/
|
|
32653
|
+
include?: string;
|
|
32654
|
+
/**
|
|
32655
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
32656
|
+
*/
|
|
32657
|
+
fields?: {
|
|
32658
|
+
[key: string]: unknown;
|
|
32659
|
+
};
|
|
32660
|
+
};
|
|
32661
|
+
url: "/payment-methods/{id}/default";
|
|
32662
|
+
};
|
|
32663
|
+
type PatchPaymentMethodsByIdDefaultErrors = {
|
|
32664
|
+
/**
|
|
32665
|
+
* Bad Request - Invalid input data or malformed request
|
|
32666
|
+
*/
|
|
32667
|
+
400: ErrorResponse;
|
|
32668
|
+
/**
|
|
32669
|
+
* Unauthorized - Missing or invalid authentication token
|
|
32670
|
+
*/
|
|
32671
|
+
401: ErrorResponse;
|
|
32672
|
+
/**
|
|
32673
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
32674
|
+
*/
|
|
32675
|
+
403: ErrorResponse;
|
|
32676
|
+
/**
|
|
32677
|
+
* Not Found - Resource does not exist
|
|
32678
|
+
*/
|
|
32679
|
+
404: ErrorResponse;
|
|
32680
|
+
/**
|
|
32681
|
+
* Too Many Requests - Rate limit exceeded
|
|
32682
|
+
*/
|
|
32683
|
+
429: ErrorResponse;
|
|
32684
|
+
/**
|
|
32685
|
+
* Internal Server Error - Unexpected server error
|
|
32686
|
+
*/
|
|
32687
|
+
500: ErrorResponse;
|
|
32688
|
+
/**
|
|
32689
|
+
* General Error
|
|
32690
|
+
*/
|
|
32691
|
+
default: Errors;
|
|
32692
|
+
};
|
|
32693
|
+
type PatchPaymentMethodsByIdDefaultError = PatchPaymentMethodsByIdDefaultErrors[keyof PatchPaymentMethodsByIdDefaultErrors];
|
|
32694
|
+
type PatchPaymentMethodsByIdDefaultResponses = {
|
|
32695
|
+
/**
|
|
32696
|
+
* Success
|
|
32697
|
+
*/
|
|
32698
|
+
200: {
|
|
32699
|
+
data?: PaymentMethod;
|
|
32700
|
+
included?: Array<unknown>;
|
|
32701
|
+
meta?: {
|
|
32702
|
+
[key: string]: unknown;
|
|
32703
|
+
};
|
|
32704
|
+
};
|
|
32705
|
+
};
|
|
32706
|
+
type PatchPaymentMethodsByIdDefaultResponse = PatchPaymentMethodsByIdDefaultResponses[keyof PatchPaymentMethodsByIdDefaultResponses];
|
|
31975
32707
|
type PostAgentsByIdExportData = {
|
|
31976
32708
|
body?: never;
|
|
31977
32709
|
headers: {
|
|
@@ -33379,6 +34111,26 @@ declare const getWorkspaces: <ThrowOnError extends boolean = false>(options: Opt
|
|
|
33379
34111
|
*
|
|
33380
34112
|
*/
|
|
33381
34113
|
declare const postWorkspaces: <ThrowOnError extends boolean = false>(options: Options<PostWorkspacesData, ThrowOnError>) => RequestResult<PostWorkspacesResponses, PostWorkspacesErrors, ThrowOnError, "fields">;
|
|
34114
|
+
/**
|
|
34115
|
+
* List payment methods
|
|
34116
|
+
*
|
|
34117
|
+
* Lists resources with optional filtering, sorting, and pagination.
|
|
34118
|
+
*
|
|
34119
|
+
* **Authentication:** Required - Bearer token or API key
|
|
34120
|
+
* **Rate Limit:** 100 requests per minute
|
|
34121
|
+
*
|
|
34122
|
+
*/
|
|
34123
|
+
declare const getPaymentMethods: <ThrowOnError extends boolean = false>(options: Options<GetPaymentMethodsData, ThrowOnError>) => RequestResult<GetPaymentMethodsResponses, GetPaymentMethodsErrors, ThrowOnError, "fields">;
|
|
34124
|
+
/**
|
|
34125
|
+
* Create payment methods
|
|
34126
|
+
*
|
|
34127
|
+
* Creates a new resource. Returns the created resource with generated ID.
|
|
34128
|
+
*
|
|
34129
|
+
* **Authentication:** Required - Bearer token or API key
|
|
34130
|
+
* **Rate Limit:** 100 requests per minute
|
|
34131
|
+
*
|
|
34132
|
+
*/
|
|
34133
|
+
declare const postPaymentMethods: <ThrowOnError extends boolean = false>(options: Options<PostPaymentMethodsData, ThrowOnError>) => RequestResult<PostPaymentMethodsResponses, PostPaymentMethodsErrors, ThrowOnError, "fields">;
|
|
33382
34134
|
/**
|
|
33383
34135
|
* Get stats
|
|
33384
34136
|
*
|
|
@@ -33653,16 +34405,6 @@ declare const getConfigs: <ThrowOnError extends boolean = false>(options: Option
|
|
|
33653
34405
|
*
|
|
33654
34406
|
*/
|
|
33655
34407
|
declare const postConfigs: <ThrowOnError extends boolean = false>(options: Options<PostConfigsData, ThrowOnError>) => RequestResult<PostConfigsResponses, PostConfigsErrors, ThrowOnError, "fields">;
|
|
33656
|
-
/**
|
|
33657
|
-
* Get revisions
|
|
33658
|
-
*
|
|
33659
|
-
* Retrieves a single resource by ID.
|
|
33660
|
-
*
|
|
33661
|
-
* **Authentication:** Required - Bearer token or API key
|
|
33662
|
-
* **Rate Limit:** 100 requests per minute
|
|
33663
|
-
*
|
|
33664
|
-
*/
|
|
33665
|
-
declare const getAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisions: <ThrowOnError extends boolean = false>(options: Options<GetAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsData, ThrowOnError>) => RequestResult<GetAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsResponses, GetAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsErrors, ThrowOnError, "fields">;
|
|
33666
34408
|
/**
|
|
33667
34409
|
* Update auto top up
|
|
33668
34410
|
*
|
|
@@ -33797,12 +34539,6 @@ declare const postApplicationsByApplicationIdEmailTemplates: <ThrowOnError exten
|
|
|
33797
34539
|
* Get workspaces that own or use all accessible agents (batch endpoint, max 500 agents)
|
|
33798
34540
|
*/
|
|
33799
34541
|
declare const getAgentsUsage: <ThrowOnError extends boolean = false>(options: Options<GetAgentsUsageData, ThrowOnError>) => RequestResult<GetAgentsUsageResponses, GetAgentsUsageErrors, ThrowOnError, "fields">;
|
|
33800
|
-
/**
|
|
33801
|
-
* Update populate hashes
|
|
33802
|
-
*
|
|
33803
|
-
* Enqueue background job to compute file_hash for documents missing it
|
|
33804
|
-
*/
|
|
33805
|
-
declare const patchWorkspacesByIdPopulateHashes: <ThrowOnError extends boolean = false>(options: Options<PatchWorkspacesByIdPopulateHashesData, ThrowOnError>) => RequestResult<PatchWorkspacesByIdPopulateHashesResponses, PatchWorkspacesByIdPopulateHashesErrors, ThrowOnError, "fields">;
|
|
33806
34542
|
/**
|
|
33807
34543
|
* Update set primary
|
|
33808
34544
|
*
|
|
@@ -34145,6 +34881,16 @@ declare const deleteUsersById: <ThrowOnError extends boolean = false>(options: O
|
|
|
34145
34881
|
*
|
|
34146
34882
|
*/
|
|
34147
34883
|
declare const getUsersById: <ThrowOnError extends boolean = false>(options: Options<GetUsersByIdData, ThrowOnError>) => RequestResult<GetUsersByIdResponses, GetUsersByIdErrors, ThrowOnError, "fields">;
|
|
34884
|
+
/**
|
|
34885
|
+
* Delete results
|
|
34886
|
+
*
|
|
34887
|
+
* Deletes a resource permanently. This action cannot be undone.
|
|
34888
|
+
*
|
|
34889
|
+
* **Authentication:** Required - Bearer token or API key
|
|
34890
|
+
* **Rate Limit:** 100 requests per minute
|
|
34891
|
+
*
|
|
34892
|
+
*/
|
|
34893
|
+
declare const deleteExtractionResultsById: <ThrowOnError extends boolean = false>(options: Options<DeleteExtractionResultsByIdData, ThrowOnError>) => RequestResult<DeleteExtractionResultsByIdResponses, DeleteExtractionResultsByIdErrors, ThrowOnError, "fields">;
|
|
34148
34894
|
/**
|
|
34149
34895
|
* Get results
|
|
34150
34896
|
*
|
|
@@ -34155,6 +34901,16 @@ declare const getUsersById: <ThrowOnError extends boolean = false>(options: Opti
|
|
|
34155
34901
|
*
|
|
34156
34902
|
*/
|
|
34157
34903
|
declare const getExtractionResultsById: <ThrowOnError extends boolean = false>(options: Options<GetExtractionResultsByIdData, ThrowOnError>) => RequestResult<GetExtractionResultsByIdResponses, GetExtractionResultsByIdErrors, ThrowOnError, "fields">;
|
|
34904
|
+
/**
|
|
34905
|
+
* Update results
|
|
34906
|
+
*
|
|
34907
|
+
* Updates specific fields of an existing resource.
|
|
34908
|
+
*
|
|
34909
|
+
* **Authentication:** Required - Bearer token or API key
|
|
34910
|
+
* **Rate Limit:** 100 requests per minute
|
|
34911
|
+
*
|
|
34912
|
+
*/
|
|
34913
|
+
declare const patchExtractionResultsById: <ThrowOnError extends boolean = false>(options: Options<PatchExtractionResultsByIdData, ThrowOnError>) => RequestResult<PatchExtractionResultsByIdResponses, PatchExtractionResultsByIdErrors, ThrowOnError, "fields">;
|
|
34158
34914
|
/**
|
|
34159
34915
|
* List stats
|
|
34160
34916
|
*
|
|
@@ -34701,16 +35457,6 @@ declare const patchInvitationsByIdDecline: <ThrowOnError extends boolean = false
|
|
|
34701
35457
|
*
|
|
34702
35458
|
*/
|
|
34703
35459
|
declare const postExtractionDocumentsUpload: <ThrowOnError extends boolean = false>(options: Options<PostExtractionDocumentsUploadData, ThrowOnError>) => RequestResult<PostExtractionDocumentsUploadResponses, PostExtractionDocumentsUploadErrors, ThrowOnError, "fields">;
|
|
34704
|
-
/**
|
|
34705
|
-
* Update corrections
|
|
34706
|
-
*
|
|
34707
|
-
* Updates specific fields of an existing resource.
|
|
34708
|
-
*
|
|
34709
|
-
* **Authentication:** Required - Bearer token or API key
|
|
34710
|
-
* **Rate Limit:** 100 requests per minute
|
|
34711
|
-
*
|
|
34712
|
-
*/
|
|
34713
|
-
declare const patchExtractionResultsByIdCorrections: <ThrowOnError extends boolean = false>(options: Options<PatchExtractionResultsByIdCorrectionsData, ThrowOnError>) => RequestResult<PatchExtractionResultsByIdCorrectionsResponses, PatchExtractionResultsByIdCorrectionsErrors, ThrowOnError, "fields">;
|
|
34714
35460
|
/**
|
|
34715
35461
|
* Update verify
|
|
34716
35462
|
*
|
|
@@ -34800,9 +35546,23 @@ declare const postTenantsByIdRemoveStorage: <ThrowOnError extends boolean = fals
|
|
|
34800
35546
|
/**
|
|
34801
35547
|
* List invoices
|
|
34802
35548
|
*
|
|
34803
|
-
*
|
|
35549
|
+
* Lists resources with optional filtering, sorting, and pagination.
|
|
35550
|
+
*
|
|
35551
|
+
* **Authentication:** Required - Bearer token or API key
|
|
35552
|
+
* **Rate Limit:** 100 requests per minute
|
|
35553
|
+
*
|
|
34804
35554
|
*/
|
|
34805
35555
|
declare const getWalletInvoices: <ThrowOnError extends boolean = false>(options: Options<GetWalletInvoicesData, ThrowOnError>) => RequestResult<GetWalletInvoicesResponses, GetWalletInvoicesErrors, ThrowOnError, "fields">;
|
|
35556
|
+
/**
|
|
35557
|
+
* Update save corrections
|
|
35558
|
+
*
|
|
35559
|
+
* Updates specific fields of an existing resource.
|
|
35560
|
+
*
|
|
35561
|
+
* **Authentication:** Required - Bearer token or API key
|
|
35562
|
+
* **Rate Limit:** 100 requests per minute
|
|
35563
|
+
*
|
|
35564
|
+
*/
|
|
35565
|
+
declare const patchExtractionResultsByIdSaveCorrections: <ThrowOnError extends boolean = false>(options: Options<PatchExtractionResultsByIdSaveCorrectionsData, ThrowOnError>) => RequestResult<PatchExtractionResultsByIdSaveCorrectionsResponses, PatchExtractionResultsByIdSaveCorrectionsErrors, ThrowOnError, "fields">;
|
|
34806
35566
|
/**
|
|
34807
35567
|
* Update storage settings
|
|
34808
35568
|
*
|
|
@@ -34869,16 +35629,6 @@ declare const getAiGraphEdges: <ThrowOnError extends boolean = false>(options: O
|
|
|
34869
35629
|
*
|
|
34870
35630
|
*/
|
|
34871
35631
|
declare const postAiGraphEdges: <ThrowOnError extends boolean = false>(options: Options<PostAiGraphEdgesData, ThrowOnError>) => RequestResult<PostAiGraphEdgesResponses, PostAiGraphEdgesErrors, ThrowOnError, "fields">;
|
|
34872
|
-
/**
|
|
34873
|
-
* Get agent version revisions
|
|
34874
|
-
*
|
|
34875
|
-
* Retrieves a single resource by ID.
|
|
34876
|
-
*
|
|
34877
|
-
* **Authentication:** Required - Bearer token or API key
|
|
34878
|
-
* **Rate Limit:** 100 requests per minute
|
|
34879
|
-
*
|
|
34880
|
-
*/
|
|
34881
|
-
declare const getAgentVersionRevisionsById: <ThrowOnError extends boolean = false>(options: Options<GetAgentVersionRevisionsByIdData, ThrowOnError>) => RequestResult<GetAgentVersionRevisionsByIdResponses, GetAgentVersionRevisionsByIdErrors, ThrowOnError, "fields">;
|
|
34882
35632
|
/**
|
|
34883
35633
|
* List training examples
|
|
34884
35634
|
*
|
|
@@ -34937,6 +35687,12 @@ declare const getBuckets: <ThrowOnError extends boolean = false>(options: Option
|
|
|
34937
35687
|
*
|
|
34938
35688
|
*/
|
|
34939
35689
|
declare const postBuckets: <ThrowOnError extends boolean = false>(options: Options<PostBucketsData, ThrowOnError>) => RequestResult<PostBucketsResponses, PostBucketsErrors, ThrowOnError, "fields">;
|
|
35690
|
+
/**
|
|
35691
|
+
* Create tokenize
|
|
35692
|
+
*
|
|
35693
|
+
* Create a payment method via direct proxy tokenization (S2S)
|
|
35694
|
+
*/
|
|
35695
|
+
declare const postPaymentMethodsTokenize: <ThrowOnError extends boolean = false>(options: Options<PostPaymentMethodsTokenizeData, ThrowOnError>) => RequestResult<PostPaymentMethodsTokenizeResponses, PostPaymentMethodsTokenizeErrors, ThrowOnError, "fields">;
|
|
34940
35696
|
/**
|
|
34941
35697
|
* Get mapping
|
|
34942
35698
|
*
|
|
@@ -35261,16 +36017,6 @@ declare const patchExtractionDocumentsByIdVerification: <ThrowOnError extends bo
|
|
|
35261
36017
|
* Fork a thread by cloning it with all its messages
|
|
35262
36018
|
*/
|
|
35263
36019
|
declare const postThreadsByIdFork: <ThrowOnError extends boolean = false>(options: Options<PostThreadsByIdForkData, ThrowOnError>) => RequestResult<PostThreadsByIdForkResponses, PostThreadsByIdForkErrors, ThrowOnError, "fields">;
|
|
35264
|
-
/**
|
|
35265
|
-
* Create find or begin upload
|
|
35266
|
-
*
|
|
35267
|
-
* Creates a new resource. Returns the created resource with generated ID.
|
|
35268
|
-
*
|
|
35269
|
-
* **Authentication:** Required - Bearer token or API key
|
|
35270
|
-
* **Rate Limit:** 100 requests per minute
|
|
35271
|
-
*
|
|
35272
|
-
*/
|
|
35273
|
-
declare const postExtractionDocumentsFindOrBeginUpload: <ThrowOnError extends boolean = false>(options: Options<PostExtractionDocumentsFindOrBeginUploadData, ThrowOnError>) => RequestResult<PostExtractionDocumentsFindOrBeginUploadResponses, PostExtractionDocumentsFindOrBeginUploadErrors, ThrowOnError, "fields">;
|
|
35274
36020
|
/**
|
|
35275
36021
|
* List transactions
|
|
35276
36022
|
*
|
|
@@ -35631,6 +36377,36 @@ declare const postTrainingExamplesBulk: <ThrowOnError extends boolean = false>(o
|
|
|
35631
36377
|
* Activate a specific schema version
|
|
35632
36378
|
*/
|
|
35633
36379
|
declare const postAgentsByIdSchemaVersionsByVersionIdActivate: <ThrowOnError extends boolean = false>(options: Options<PostAgentsByIdSchemaVersionsByVersionIdActivateData, ThrowOnError>) => RequestResult<PostAgentsByIdSchemaVersionsByVersionIdActivateResponses, PostAgentsByIdSchemaVersionsByVersionIdActivateErrors, ThrowOnError, "fields">;
|
|
36380
|
+
/**
|
|
36381
|
+
* Delete payment methods
|
|
36382
|
+
*
|
|
36383
|
+
* Deletes a resource permanently. This action cannot be undone.
|
|
36384
|
+
*
|
|
36385
|
+
* **Authentication:** Required - Bearer token or API key
|
|
36386
|
+
* **Rate Limit:** 100 requests per minute
|
|
36387
|
+
*
|
|
36388
|
+
*/
|
|
36389
|
+
declare const deletePaymentMethodsById: <ThrowOnError extends boolean = false>(options: Options<DeletePaymentMethodsByIdData, ThrowOnError>) => RequestResult<DeletePaymentMethodsByIdResponses, DeletePaymentMethodsByIdErrors, ThrowOnError, "fields">;
|
|
36390
|
+
/**
|
|
36391
|
+
* Get payment methods
|
|
36392
|
+
*
|
|
36393
|
+
* Retrieves a single resource by ID.
|
|
36394
|
+
*
|
|
36395
|
+
* **Authentication:** Required - Bearer token or API key
|
|
36396
|
+
* **Rate Limit:** 100 requests per minute
|
|
36397
|
+
*
|
|
36398
|
+
*/
|
|
36399
|
+
declare const getPaymentMethodsById: <ThrowOnError extends boolean = false>(options: Options<GetPaymentMethodsByIdData, ThrowOnError>) => RequestResult<GetPaymentMethodsByIdResponses, GetPaymentMethodsByIdErrors, ThrowOnError, "fields">;
|
|
36400
|
+
/**
|
|
36401
|
+
* Update payment methods
|
|
36402
|
+
*
|
|
36403
|
+
* Updates specific fields of an existing resource.
|
|
36404
|
+
*
|
|
36405
|
+
* **Authentication:** Required - Bearer token or API key
|
|
36406
|
+
* **Rate Limit:** 100 requests per minute
|
|
36407
|
+
*
|
|
36408
|
+
*/
|
|
36409
|
+
declare const patchPaymentMethodsById: <ThrowOnError extends boolean = false>(options: Options<PatchPaymentMethodsByIdData, ThrowOnError>) => RequestResult<PatchPaymentMethodsByIdResponses, PatchPaymentMethodsByIdErrors, ThrowOnError, "fields">;
|
|
35634
36410
|
/**
|
|
35635
36411
|
* Delete buckets
|
|
35636
36412
|
*
|
|
@@ -35943,6 +36719,12 @@ declare const getNotificationMethods: <ThrowOnError extends boolean = false>(opt
|
|
|
35943
36719
|
*
|
|
35944
36720
|
*/
|
|
35945
36721
|
declare const postNotificationMethods: <ThrowOnError extends boolean = false>(options: Options<PostNotificationMethodsData, ThrowOnError>) => RequestResult<PostNotificationMethodsResponses, PostNotificationMethodsErrors, ThrowOnError, "fields">;
|
|
36722
|
+
/**
|
|
36723
|
+
* List preview
|
|
36724
|
+
*
|
|
36725
|
+
* Preview the cost and effective date of a plan change
|
|
36726
|
+
*/
|
|
36727
|
+
declare const getWalletPlanPreview: <ThrowOnError extends boolean = false>(options: Options<GetWalletPlanPreviewData, ThrowOnError>) => RequestResult<GetWalletPlanPreviewResponses, GetWalletPlanPreviewErrors, ThrowOnError, "fields">;
|
|
35946
36728
|
/**
|
|
35947
36729
|
* Create summarize
|
|
35948
36730
|
*
|
|
@@ -35974,15 +36756,15 @@ declare const patchConfigsByKey: <ThrowOnError extends boolean = false>(options:
|
|
|
35974
36756
|
*/
|
|
35975
36757
|
declare const patchApiKeysByIdRotate: <ThrowOnError extends boolean = false>(options: Options<PatchApiKeysByIdRotateData, ThrowOnError>) => RequestResult<PatchApiKeysByIdRotateResponses, PatchApiKeysByIdRotateErrors, ThrowOnError, "fields">;
|
|
35976
36758
|
/**
|
|
35977
|
-
*
|
|
36759
|
+
* List results
|
|
35978
36760
|
*
|
|
35979
|
-
*
|
|
36761
|
+
* Lists resources with optional filtering, sorting, and pagination.
|
|
35980
36762
|
*
|
|
35981
36763
|
* **Authentication:** Required - Bearer token or API key
|
|
35982
36764
|
* **Rate Limit:** 100 requests per minute
|
|
35983
36765
|
*
|
|
35984
36766
|
*/
|
|
35985
|
-
declare const
|
|
36767
|
+
declare const getExtractionResults: <ThrowOnError extends boolean = false>(options: Options<GetExtractionResultsData, ThrowOnError>) => RequestResult<GetExtractionResultsResponses, GetExtractionResultsErrors, ThrowOnError, "fields">;
|
|
35986
36768
|
/**
|
|
35987
36769
|
* Create clone
|
|
35988
36770
|
*
|
|
@@ -36335,6 +37117,12 @@ declare const getApplicationsByApplicationIdEmailTemplatesBySlug: <ThrowOnError
|
|
|
36335
37117
|
*
|
|
36336
37118
|
*/
|
|
36337
37119
|
declare const patchApplicationsByApplicationIdEmailTemplatesBySlug: <ThrowOnError extends boolean = false>(options: Options<PatchApplicationsByApplicationIdEmailTemplatesBySlugData, ThrowOnError>) => RequestResult<PatchApplicationsByApplicationIdEmailTemplatesBySlugResponses, PatchApplicationsByApplicationIdEmailTemplatesBySlugErrors, ThrowOnError, "fields">;
|
|
37120
|
+
/**
|
|
37121
|
+
* Update default
|
|
37122
|
+
*
|
|
37123
|
+
* Set this payment method as default for the customer
|
|
37124
|
+
*/
|
|
37125
|
+
declare const patchPaymentMethodsByIdDefault: <ThrowOnError extends boolean = false>(options: Options<PatchPaymentMethodsByIdDefaultData, ThrowOnError>) => RequestResult<PatchPaymentMethodsByIdDefaultResponses, PatchPaymentMethodsByIdDefaultErrors, ThrowOnError, "fields">;
|
|
36338
37126
|
/**
|
|
36339
37127
|
* Create export
|
|
36340
37128
|
*
|
|
@@ -36799,6 +37587,8 @@ declare const gptCore: {
|
|
|
36799
37587
|
getApplicationsCurrent: <ThrowOnError extends boolean = false>(options: Options<GetApplicationsCurrentData, ThrowOnError>) => RequestResult<GetApplicationsCurrentResponses, GetApplicationsCurrentErrors, ThrowOnError, "fields">;
|
|
36800
37588
|
getWorkspaces: <ThrowOnError extends boolean = false>(options: Options<GetWorkspacesData, ThrowOnError>) => RequestResult<GetWorkspacesResponses, GetWorkspacesErrors, ThrowOnError, "fields">;
|
|
36801
37589
|
postWorkspaces: <ThrowOnError extends boolean = false>(options: Options<PostWorkspacesData, ThrowOnError>) => RequestResult<PostWorkspacesResponses, PostWorkspacesErrors, ThrowOnError, "fields">;
|
|
37590
|
+
getPaymentMethods: <ThrowOnError extends boolean = false>(options: Options<GetPaymentMethodsData, ThrowOnError>) => RequestResult<GetPaymentMethodsResponses, GetPaymentMethodsErrors, ThrowOnError, "fields">;
|
|
37591
|
+
postPaymentMethods: <ThrowOnError extends boolean = false>(options: Options<PostPaymentMethodsData, ThrowOnError>) => RequestResult<PostPaymentMethodsResponses, PostPaymentMethodsErrors, ThrowOnError, "fields">;
|
|
36802
37592
|
getAgentsByIdStats: <ThrowOnError extends boolean = false>(options: Options<GetAgentsByIdStatsData, ThrowOnError>) => RequestResult<GetAgentsByIdStatsResponses, GetAgentsByIdStatsErrors, ThrowOnError, "fields">;
|
|
36803
37593
|
getDocumentsStats: <ThrowOnError extends boolean = false>(options: Options<GetDocumentsStatsData, ThrowOnError>) => RequestResult<GetDocumentsStatsResponses, GetDocumentsStatsErrors, ThrowOnError, "fields">;
|
|
36804
37594
|
patchExtractionDocumentsByIdDismiss: <ThrowOnError extends boolean = false>(options: Options<PatchExtractionDocumentsByIdDismissData, ThrowOnError>) => RequestResult<PatchExtractionDocumentsByIdDismissResponses, PatchExtractionDocumentsByIdDismissErrors, ThrowOnError, "fields">;
|
|
@@ -36830,7 +37620,6 @@ declare const gptCore: {
|
|
|
36830
37620
|
postWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrained: <ThrowOnError extends boolean = false>(options: Options<PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedData, ThrowOnError>) => RequestResult<PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponses, PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedErrors, ThrowOnError, "fields">;
|
|
36831
37621
|
getConfigs: <ThrowOnError extends boolean = false>(options: Options<GetConfigsData, ThrowOnError>) => RequestResult<GetConfigsResponses, GetConfigsErrors, ThrowOnError, "fields">;
|
|
36832
37622
|
postConfigs: <ThrowOnError extends boolean = false>(options: Options<PostConfigsData, ThrowOnError>) => RequestResult<PostConfigsResponses, PostConfigsErrors, ThrowOnError, "fields">;
|
|
36833
|
-
getAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisions: <ThrowOnError extends boolean = false>(options: Options<GetAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsData, ThrowOnError>) => RequestResult<GetAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsResponses, GetAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsErrors, ThrowOnError, "fields">;
|
|
36834
37623
|
patchWalletAutoTopUp: <ThrowOnError extends boolean = false>(options: Options<PatchWalletAutoTopUpData, ThrowOnError>) => RequestResult<PatchWalletAutoTopUpResponses, PatchWalletAutoTopUpErrors, ThrowOnError, "fields">;
|
|
36835
37624
|
postTokens: <ThrowOnError extends boolean = false>(options: Options<PostTokensData, ThrowOnError>) => RequestResult<PostTokensResponses, PostTokensErrors, ThrowOnError, "fields">;
|
|
36836
37625
|
patchApiKeysByIdSetBudget: <ThrowOnError extends boolean = false>(options: Options<PatchApiKeysByIdSetBudgetData, ThrowOnError>) => RequestResult<PatchApiKeysByIdSetBudgetResponses, PatchApiKeysByIdSetBudgetErrors, ThrowOnError, "fields">;
|
|
@@ -36848,7 +37637,6 @@ declare const gptCore: {
|
|
|
36848
37637
|
getApplicationsByApplicationIdEmailTemplates: <ThrowOnError extends boolean = false>(options: Options<GetApplicationsByApplicationIdEmailTemplatesData, ThrowOnError>) => RequestResult<GetApplicationsByApplicationIdEmailTemplatesResponses, GetApplicationsByApplicationIdEmailTemplatesErrors, ThrowOnError, "fields">;
|
|
36849
37638
|
postApplicationsByApplicationIdEmailTemplates: <ThrowOnError extends boolean = false>(options: Options<PostApplicationsByApplicationIdEmailTemplatesData, ThrowOnError>) => RequestResult<PostApplicationsByApplicationIdEmailTemplatesResponses, PostApplicationsByApplicationIdEmailTemplatesErrors, ThrowOnError, "fields">;
|
|
36850
37639
|
getAgentsUsage: <ThrowOnError extends boolean = false>(options: Options<GetAgentsUsageData, ThrowOnError>) => RequestResult<GetAgentsUsageResponses, GetAgentsUsageErrors, ThrowOnError, "fields">;
|
|
36851
|
-
patchWorkspacesByIdPopulateHashes: <ThrowOnError extends boolean = false>(options: Options<PatchWorkspacesByIdPopulateHashesData, ThrowOnError>) => RequestResult<PatchWorkspacesByIdPopulateHashesResponses, PatchWorkspacesByIdPopulateHashesErrors, ThrowOnError, "fields">;
|
|
36852
37640
|
patchNotificationMethodsByIdSetPrimary: <ThrowOnError extends boolean = false>(options: Options<PatchNotificationMethodsByIdSetPrimaryData, ThrowOnError>) => RequestResult<PatchNotificationMethodsByIdSetPrimaryResponses, PatchNotificationMethodsByIdSetPrimaryErrors, ThrowOnError, "fields">;
|
|
36853
37641
|
getBucketsByIdObjects: <ThrowOnError extends boolean = false>(options: Options<GetBucketsByIdObjectsData, ThrowOnError>) => RequestResult<GetBucketsByIdObjectsResponses, GetBucketsByIdObjectsErrors, ThrowOnError, "fields">;
|
|
36854
37642
|
patchInvitationsByIdResend: <ThrowOnError extends boolean = false>(options: Options<PatchInvitationsByIdResendData, ThrowOnError>) => RequestResult<PatchInvitationsByIdResendResponses, PatchInvitationsByIdResendErrors, ThrowOnError, "fields">;
|
|
@@ -36886,7 +37674,9 @@ declare const gptCore: {
|
|
|
36886
37674
|
getCreditPackagesById: <ThrowOnError extends boolean = false>(options: Options<GetCreditPackagesByIdData, ThrowOnError>) => RequestResult<GetCreditPackagesByIdResponses, GetCreditPackagesByIdErrors, ThrowOnError, "fields">;
|
|
36887
37675
|
deleteUsersById: <ThrowOnError extends boolean = false>(options: Options<DeleteUsersByIdData, ThrowOnError>) => RequestResult<DeleteUsersByIdResponses, DeleteUsersByIdErrors, ThrowOnError, "fields">;
|
|
36888
37676
|
getUsersById: <ThrowOnError extends boolean = false>(options: Options<GetUsersByIdData, ThrowOnError>) => RequestResult<GetUsersByIdResponses, GetUsersByIdErrors, ThrowOnError, "fields">;
|
|
37677
|
+
deleteExtractionResultsById: <ThrowOnError extends boolean = false>(options: Options<DeleteExtractionResultsByIdData, ThrowOnError>) => RequestResult<DeleteExtractionResultsByIdResponses, DeleteExtractionResultsByIdErrors, ThrowOnError, "fields">;
|
|
36889
37678
|
getExtractionResultsById: <ThrowOnError extends boolean = false>(options: Options<GetExtractionResultsByIdData, ThrowOnError>) => RequestResult<GetExtractionResultsByIdResponses, GetExtractionResultsByIdErrors, ThrowOnError, "fields">;
|
|
37679
|
+
patchExtractionResultsById: <ThrowOnError extends boolean = false>(options: Options<PatchExtractionResultsByIdData, ThrowOnError>) => RequestResult<PatchExtractionResultsByIdResponses, PatchExtractionResultsByIdErrors, ThrowOnError, "fields">;
|
|
36890
37680
|
getWebhookDeliveriesStats: <ThrowOnError extends boolean = false>(options: Options<GetWebhookDeliveriesStatsData, ThrowOnError>) => RequestResult<GetWebhookDeliveriesStatsResponses, GetWebhookDeliveriesStatsErrors, ThrowOnError, "fields">;
|
|
36891
37681
|
postAgentsByIdValidate: <ThrowOnError extends boolean = false>(options: Options<PostAgentsByIdValidateData, ThrowOnError>) => RequestResult<PostAgentsByIdValidateResponses, PostAgentsByIdValidateErrors, ThrowOnError, "fields">;
|
|
36892
37682
|
postWebhookConfigsByIdTest: <ThrowOnError extends boolean = false>(options: Options<PostWebhookConfigsByIdTestData, ThrowOnError>) => RequestResult<PostWebhookConfigsByIdTestResponses, PostWebhookConfigsByIdTestErrors, ThrowOnError, "fields">;
|
|
@@ -36950,7 +37740,6 @@ declare const gptCore: {
|
|
|
36950
37740
|
getExtractionDocumentsWorkspaceByWorkspaceIdReviewQueue: <ThrowOnError extends boolean = false>(options: Options<GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueData, ThrowOnError>) => RequestResult<GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponses, GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueErrors, ThrowOnError, "fields">;
|
|
36951
37741
|
patchInvitationsByIdDecline: <ThrowOnError extends boolean = false>(options: Options<PatchInvitationsByIdDeclineData, ThrowOnError>) => RequestResult<PatchInvitationsByIdDeclineResponses, PatchInvitationsByIdDeclineErrors, ThrowOnError, "fields">;
|
|
36952
37742
|
postExtractionDocumentsUpload: <ThrowOnError extends boolean = false>(options: Options<PostExtractionDocumentsUploadData, ThrowOnError>) => RequestResult<PostExtractionDocumentsUploadResponses, PostExtractionDocumentsUploadErrors, ThrowOnError, "fields">;
|
|
36953
|
-
patchExtractionResultsByIdCorrections: <ThrowOnError extends boolean = false>(options: Options<PatchExtractionResultsByIdCorrectionsData, ThrowOnError>) => RequestResult<PatchExtractionResultsByIdCorrectionsResponses, PatchExtractionResultsByIdCorrectionsErrors, ThrowOnError, "fields">;
|
|
36954
37743
|
patchNotificationMethodsByIdVerify: <ThrowOnError extends boolean = false>(options: Options<PatchNotificationMethodsByIdVerifyData, ThrowOnError>) => RequestResult<PatchNotificationMethodsByIdVerifyResponses, PatchNotificationMethodsByIdVerifyErrors, ThrowOnError, "fields">;
|
|
36955
37744
|
getExtractionResultsDocumentByDocumentId: <ThrowOnError extends boolean = false>(options: Options<GetExtractionResultsDocumentByDocumentIdData, ThrowOnError>) => RequestResult<GetExtractionResultsDocumentByDocumentIdResponses, GetExtractionResultsDocumentByDocumentIdErrors, ThrowOnError, "fields">;
|
|
36956
37745
|
patchUserProfilesByIdDismissAnnouncement: <ThrowOnError extends boolean = false>(options: Options<PatchUserProfilesByIdDismissAnnouncementData, ThrowOnError>) => RequestResult<PatchUserProfilesByIdDismissAnnouncementResponses, PatchUserProfilesByIdDismissAnnouncementErrors, ThrowOnError, "fields">;
|
|
@@ -36961,6 +37750,7 @@ declare const gptCore: {
|
|
|
36961
37750
|
postTenants: <ThrowOnError extends boolean = false>(options: Options<PostTenantsData, ThrowOnError>) => RequestResult<PostTenantsResponses, PostTenantsErrors, ThrowOnError, "fields">;
|
|
36962
37751
|
postTenantsByIdRemoveStorage: <ThrowOnError extends boolean = false>(options: Options<PostTenantsByIdRemoveStorageData, ThrowOnError>) => RequestResult<PostTenantsByIdRemoveStorageResponses, PostTenantsByIdRemoveStorageErrors, ThrowOnError, "fields">;
|
|
36963
37752
|
getWalletInvoices: <ThrowOnError extends boolean = false>(options: Options<GetWalletInvoicesData, ThrowOnError>) => RequestResult<GetWalletInvoicesResponses, GetWalletInvoicesErrors, ThrowOnError, "fields">;
|
|
37753
|
+
patchExtractionResultsByIdSaveCorrections: <ThrowOnError extends boolean = false>(options: Options<PatchExtractionResultsByIdSaveCorrectionsData, ThrowOnError>) => RequestResult<PatchExtractionResultsByIdSaveCorrectionsResponses, PatchExtractionResultsByIdSaveCorrectionsErrors, ThrowOnError, "fields">;
|
|
36964
37754
|
patchWorkspacesByIdStorageSettings: <ThrowOnError extends boolean = false>(options: Options<PatchWorkspacesByIdStorageSettingsData, ThrowOnError>) => RequestResult<PatchWorkspacesByIdStorageSettingsResponses, PatchWorkspacesByIdStorageSettingsErrors, ThrowOnError, "fields">;
|
|
36965
37755
|
getNotificationLogsById: <ThrowOnError extends boolean = false>(options: Options<GetNotificationLogsByIdData, ThrowOnError>) => RequestResult<GetNotificationLogsByIdResponses, GetNotificationLogsByIdErrors, ThrowOnError, "fields">;
|
|
36966
37756
|
getExtractionDocumentsByIdView: <ThrowOnError extends boolean = false>(options: Options<GetExtractionDocumentsByIdViewData, ThrowOnError>) => RequestResult<GetExtractionDocumentsByIdViewResponses, GetExtractionDocumentsByIdViewErrors, ThrowOnError, "fields">;
|
|
@@ -36968,7 +37758,6 @@ declare const gptCore: {
|
|
|
36968
37758
|
getAuditLogs: <ThrowOnError extends boolean = false>(options: Options<GetAuditLogsData, ThrowOnError>) => RequestResult<GetAuditLogsResponses, GetAuditLogsErrors, ThrowOnError, "fields">;
|
|
36969
37759
|
getAiGraphEdges: <ThrowOnError extends boolean = false>(options: Options<GetAiGraphEdgesData, ThrowOnError>) => RequestResult<GetAiGraphEdgesResponses, GetAiGraphEdgesErrors, ThrowOnError, "fields">;
|
|
36970
37760
|
postAiGraphEdges: <ThrowOnError extends boolean = false>(options: Options<PostAiGraphEdgesData, ThrowOnError>) => RequestResult<PostAiGraphEdgesResponses, PostAiGraphEdgesErrors, ThrowOnError, "fields">;
|
|
36971
|
-
getAgentVersionRevisionsById: <ThrowOnError extends boolean = false>(options: Options<GetAgentVersionRevisionsByIdData, ThrowOnError>) => RequestResult<GetAgentVersionRevisionsByIdResponses, GetAgentVersionRevisionsByIdErrors, ThrowOnError, "fields">;
|
|
36972
37761
|
getTrainingExamples: <ThrowOnError extends boolean = false>(options: Options<GetTrainingExamplesData, ThrowOnError>) => RequestResult<GetTrainingExamplesResponses, GetTrainingExamplesErrors, ThrowOnError, "fields">;
|
|
36973
37762
|
postTrainingExamples: <ThrowOnError extends boolean = false>(options: Options<PostTrainingExamplesData, ThrowOnError>) => RequestResult<PostTrainingExamplesResponses, PostTrainingExamplesErrors, ThrowOnError, "fields">;
|
|
36974
37763
|
getWorkspacesByWorkspaceIdExtractionExportsById: <ThrowOnError extends boolean = false>(options: Options<GetWorkspacesByWorkspaceIdExtractionExportsByIdData, ThrowOnError>) => RequestResult<GetWorkspacesByWorkspaceIdExtractionExportsByIdResponses, GetWorkspacesByWorkspaceIdExtractionExportsByIdErrors, ThrowOnError, "fields">;
|
|
@@ -36976,6 +37765,7 @@ declare const gptCore: {
|
|
|
36976
37765
|
postObjectsCopy: <ThrowOnError extends boolean = false>(options: Options<PostObjectsCopyData, ThrowOnError>) => RequestResult<PostObjectsCopyResponses, PostObjectsCopyErrors, ThrowOnError, "fields">;
|
|
36977
37766
|
getBuckets: <ThrowOnError extends boolean = false>(options: Options<GetBucketsData, ThrowOnError>) => RequestResult<GetBucketsResponses, GetBucketsErrors, ThrowOnError, "fields">;
|
|
36978
37767
|
postBuckets: <ThrowOnError extends boolean = false>(options: Options<PostBucketsData, ThrowOnError>) => RequestResult<PostBucketsResponses, PostBucketsErrors, ThrowOnError, "fields">;
|
|
37768
|
+
postPaymentMethodsTokenize: <ThrowOnError extends boolean = false>(options: Options<PostPaymentMethodsTokenizeData, ThrowOnError>) => RequestResult<PostPaymentMethodsTokenizeResponses, PostPaymentMethodsTokenizeErrors, ThrowOnError, "fields">;
|
|
36979
37769
|
getWorkspacesByWorkspaceIdExtractionByDocumentIdMapping: <ThrowOnError extends boolean = false>(options: Options<GetWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, ThrowOnError>) => RequestResult<GetWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, GetWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, ThrowOnError, "fields">;
|
|
36980
37770
|
postWorkspacesByWorkspaceIdExtractionByDocumentIdMapping: <ThrowOnError extends boolean = false>(options: Options<PostWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, ThrowOnError>) => RequestResult<PostWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, PostWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, ThrowOnError, "fields">;
|
|
36981
37771
|
getUsersMeActivity: <ThrowOnError extends boolean = false>(options: Options<GetUsersMeActivityData, ThrowOnError>) => RequestResult<GetUsersMeActivityResponses, GetUsersMeActivityErrors, ThrowOnError, "fields">;
|
|
@@ -37012,7 +37802,6 @@ declare const gptCore: {
|
|
|
37012
37802
|
getSearchHealth: <ThrowOnError extends boolean = false>(options: Options<GetSearchHealthData, ThrowOnError>) => RequestResult<GetSearchHealthResponses, GetSearchHealthErrors, ThrowOnError, "fields">;
|
|
37013
37803
|
patchExtractionDocumentsByIdVerification: <ThrowOnError extends boolean = false>(options: Options<PatchExtractionDocumentsByIdVerificationData, ThrowOnError>) => RequestResult<PatchExtractionDocumentsByIdVerificationResponses, PatchExtractionDocumentsByIdVerificationErrors, ThrowOnError, "fields">;
|
|
37014
37804
|
postThreadsByIdFork: <ThrowOnError extends boolean = false>(options: Options<PostThreadsByIdForkData, ThrowOnError>) => RequestResult<PostThreadsByIdForkResponses, PostThreadsByIdForkErrors, ThrowOnError, "fields">;
|
|
37015
|
-
postExtractionDocumentsFindOrBeginUpload: <ThrowOnError extends boolean = false>(options: Options<PostExtractionDocumentsFindOrBeginUploadData, ThrowOnError>) => RequestResult<PostExtractionDocumentsFindOrBeginUploadResponses, PostExtractionDocumentsFindOrBeginUploadErrors, ThrowOnError, "fields">;
|
|
37016
37805
|
getTransactions: <ThrowOnError extends boolean = false>(options: Options<GetTransactionsData, ThrowOnError>) => RequestResult<GetTransactionsResponses, GetTransactionsErrors, ThrowOnError, "fields">;
|
|
37017
37806
|
getUserProfiles: <ThrowOnError extends boolean = false>(options: Options<GetUserProfilesData, ThrowOnError>) => RequestResult<GetUserProfilesResponses, GetUserProfilesErrors, ThrowOnError, "fields">;
|
|
37018
37807
|
postUserProfiles: <ThrowOnError extends boolean = false>(options: Options<PostUserProfilesData, ThrowOnError>) => RequestResult<PostUserProfilesResponses, PostUserProfilesErrors, ThrowOnError, "fields">;
|
|
@@ -37055,6 +37844,9 @@ declare const gptCore: {
|
|
|
37055
37844
|
postUsersAuthRegister: <ThrowOnError extends boolean = false>(options: Options<PostUsersAuthRegisterData, ThrowOnError>) => RequestResult<PostUsersAuthRegisterResponses, PostUsersAuthRegisterErrors, ThrowOnError, "fields">;
|
|
37056
37845
|
postTrainingExamplesBulk: <ThrowOnError extends boolean = false>(options: Options<PostTrainingExamplesBulkData, ThrowOnError>) => RequestResult<PostTrainingExamplesBulkResponses, PostTrainingExamplesBulkErrors, ThrowOnError, "fields">;
|
|
37057
37846
|
postAgentsByIdSchemaVersionsByVersionIdActivate: <ThrowOnError extends boolean = false>(options: Options<PostAgentsByIdSchemaVersionsByVersionIdActivateData, ThrowOnError>) => RequestResult<PostAgentsByIdSchemaVersionsByVersionIdActivateResponses, PostAgentsByIdSchemaVersionsByVersionIdActivateErrors, ThrowOnError, "fields">;
|
|
37847
|
+
deletePaymentMethodsById: <ThrowOnError extends boolean = false>(options: Options<DeletePaymentMethodsByIdData, ThrowOnError>) => RequestResult<DeletePaymentMethodsByIdResponses, DeletePaymentMethodsByIdErrors, ThrowOnError, "fields">;
|
|
37848
|
+
getPaymentMethodsById: <ThrowOnError extends boolean = false>(options: Options<GetPaymentMethodsByIdData, ThrowOnError>) => RequestResult<GetPaymentMethodsByIdResponses, GetPaymentMethodsByIdErrors, ThrowOnError, "fields">;
|
|
37849
|
+
patchPaymentMethodsById: <ThrowOnError extends boolean = false>(options: Options<PatchPaymentMethodsByIdData, ThrowOnError>) => RequestResult<PatchPaymentMethodsByIdResponses, PatchPaymentMethodsByIdErrors, ThrowOnError, "fields">;
|
|
37058
37850
|
deleteBucketsById: <ThrowOnError extends boolean = false>(options: Options<DeleteBucketsByIdData, ThrowOnError>) => RequestResult<DeleteBucketsByIdResponses, DeleteBucketsByIdErrors, ThrowOnError, "fields">;
|
|
37059
37851
|
getBucketsById: <ThrowOnError extends boolean = false>(options: Options<GetBucketsByIdData, ThrowOnError>) => RequestResult<GetBucketsByIdResponses, GetBucketsByIdErrors, ThrowOnError, "fields">;
|
|
37060
37852
|
patchBucketsById: <ThrowOnError extends boolean = false>(options: Options<PatchBucketsByIdData, ThrowOnError>) => RequestResult<PatchBucketsByIdResponses, PatchBucketsByIdErrors, ThrowOnError, "fields">;
|
|
@@ -37089,10 +37881,11 @@ declare const gptCore: {
|
|
|
37089
37881
|
postWebhookDeliveriesByIdRetry: <ThrowOnError extends boolean = false>(options: Options<PostWebhookDeliveriesByIdRetryData, ThrowOnError>) => RequestResult<PostWebhookDeliveriesByIdRetryResponses, PostWebhookDeliveriesByIdRetryErrors, ThrowOnError, "fields">;
|
|
37090
37882
|
getNotificationMethods: <ThrowOnError extends boolean = false>(options: Options<GetNotificationMethodsData, ThrowOnError>) => RequestResult<GetNotificationMethodsResponses, GetNotificationMethodsErrors, ThrowOnError, "fields">;
|
|
37091
37883
|
postNotificationMethods: <ThrowOnError extends boolean = false>(options: Options<PostNotificationMethodsData, ThrowOnError>) => RequestResult<PostNotificationMethodsResponses, PostNotificationMethodsErrors, ThrowOnError, "fields">;
|
|
37884
|
+
getWalletPlanPreview: <ThrowOnError extends boolean = false>(options: Options<GetWalletPlanPreviewData, ThrowOnError>) => RequestResult<GetWalletPlanPreviewResponses, GetWalletPlanPreviewErrors, ThrowOnError, "fields">;
|
|
37092
37885
|
postThreadsByIdSummarize: <ThrowOnError extends boolean = false>(options: Options<PostThreadsByIdSummarizeData, ThrowOnError>) => RequestResult<PostThreadsByIdSummarizeResponses, PostThreadsByIdSummarizeErrors, ThrowOnError, "fields">;
|
|
37093
37886
|
patchConfigsByKey: <ThrowOnError extends boolean = false>(options: Options<PatchConfigsByKeyData, ThrowOnError>) => RequestResult<PatchConfigsByKeyResponses, PatchConfigsByKeyErrors, ThrowOnError, "fields">;
|
|
37094
37887
|
patchApiKeysByIdRotate: <ThrowOnError extends boolean = false>(options: Options<PatchApiKeysByIdRotateData, ThrowOnError>) => RequestResult<PatchApiKeysByIdRotateResponses, PatchApiKeysByIdRotateErrors, ThrowOnError, "fields">;
|
|
37095
|
-
|
|
37888
|
+
getExtractionResults: <ThrowOnError extends boolean = false>(options: Options<GetExtractionResultsData, ThrowOnError>) => RequestResult<GetExtractionResultsResponses, GetExtractionResultsErrors, ThrowOnError, "fields">;
|
|
37096
37889
|
postAgentsByIdClone: <ThrowOnError extends boolean = false>(options: Options<PostAgentsByIdCloneData, ThrowOnError>) => RequestResult<PostAgentsByIdCloneResponses, PostAgentsByIdCloneErrors, ThrowOnError, "fields">;
|
|
37097
37890
|
deleteAiConversationsById: <ThrowOnError extends boolean = false>(options: Options<DeleteAiConversationsByIdData, ThrowOnError>) => RequestResult<DeleteAiConversationsByIdResponses, DeleteAiConversationsByIdErrors, ThrowOnError, "fields">;
|
|
37098
37891
|
getAiConversationsById: <ThrowOnError extends boolean = false>(options: Options<GetAiConversationsByIdData, ThrowOnError>) => RequestResult<GetAiConversationsByIdResponses, GetAiConversationsByIdErrors, ThrowOnError, "fields">;
|
|
@@ -37131,6 +37924,7 @@ declare const gptCore: {
|
|
|
37131
37924
|
deleteApplicationsByApplicationIdEmailTemplatesBySlug: <ThrowOnError extends boolean = false>(options: Options<DeleteApplicationsByApplicationIdEmailTemplatesBySlugData, ThrowOnError>) => RequestResult<DeleteApplicationsByApplicationIdEmailTemplatesBySlugResponses, DeleteApplicationsByApplicationIdEmailTemplatesBySlugErrors, ThrowOnError, "fields">;
|
|
37132
37925
|
getApplicationsByApplicationIdEmailTemplatesBySlug: <ThrowOnError extends boolean = false>(options: Options<GetApplicationsByApplicationIdEmailTemplatesBySlugData, ThrowOnError>) => RequestResult<GetApplicationsByApplicationIdEmailTemplatesBySlugResponses, GetApplicationsByApplicationIdEmailTemplatesBySlugErrors, ThrowOnError, "fields">;
|
|
37133
37926
|
patchApplicationsByApplicationIdEmailTemplatesBySlug: <ThrowOnError extends boolean = false>(options: Options<PatchApplicationsByApplicationIdEmailTemplatesBySlugData, ThrowOnError>) => RequestResult<PatchApplicationsByApplicationIdEmailTemplatesBySlugResponses, PatchApplicationsByApplicationIdEmailTemplatesBySlugErrors, ThrowOnError, "fields">;
|
|
37927
|
+
patchPaymentMethodsByIdDefault: <ThrowOnError extends boolean = false>(options: Options<PatchPaymentMethodsByIdDefaultData, ThrowOnError>) => RequestResult<PatchPaymentMethodsByIdDefaultResponses, PatchPaymentMethodsByIdDefaultErrors, ThrowOnError, "fields">;
|
|
37134
37928
|
postAgentsByIdExport: <ThrowOnError extends boolean = false>(options: Options<PostAgentsByIdExportData, ThrowOnError>) => RequestResult<PostAgentsByIdExportResponses, PostAgentsByIdExportErrors, ThrowOnError, "fields">;
|
|
37135
37929
|
postUsersRegisterIsv: <ThrowOnError extends boolean = false>(options: Options<PostUsersRegisterIsvData, ThrowOnError>) => RequestResult<PostUsersRegisterIsvResponses, PostUsersRegisterIsvErrors, ThrowOnError, "fields">;
|
|
37136
37930
|
deleteExtractionBatchesById: <ThrowOnError extends boolean = false>(options: Options<DeleteExtractionBatchesByIdData, ThrowOnError>) => RequestResult<DeleteExtractionBatchesByIdResponses, DeleteExtractionBatchesByIdErrors, ThrowOnError, "fields">;
|
|
@@ -37145,4 +37939,4 @@ declare const gptCore: {
|
|
|
37145
37939
|
getObjects: <ThrowOnError extends boolean = false>(options: Options<GetObjectsData, ThrowOnError>) => RequestResult<GetObjectsResponses, GetObjectsErrors, ThrowOnError, "fields">;
|
|
37146
37940
|
};
|
|
37147
37941
|
|
|
37148
|
-
export { type Account, type Agent, type AgentCreateRequest, AgentCreateSchema, type AgentTestResult, type AgentVersion, type AgentVersionComparison, type AgentVersionFieldsInputCreateType, type AgentVersionRevision, type AiConfig, type ApiKey, type ApiKeyAllocateRequest, ApiKeyAllocateSchema, type ApiKeyCreateRequest, ApiKeyCreateSchema, type Application, type ApplicationCreateRequest, ApplicationCreateSchema, type ApplicationType, type AuditLog, AuthenticationError, AuthorizationError, type Balance, type Bucket, type BucketCreateRequest, BucketCreateSchema, type BulkDismissalResult, type BulkReprocessResult, type ClientOptions$1 as ClientOptions, type Config$2 as Config, type Conversation, type CreditPackage, type Customer, DEFAULT_RETRY_CONFIG, type DeleteAgentVersionsByIdData, type DeleteAgentVersionsByIdError, type DeleteAgentVersionsByIdErrors, type DeleteAgentVersionsByIdResponses, type DeleteAgentsByIdData, type DeleteAgentsByIdError, type DeleteAgentsByIdErrors, type DeleteAgentsByIdResponses, type DeleteAiConversationsByIdData, type DeleteAiConversationsByIdError, type DeleteAiConversationsByIdErrors, type DeleteAiConversationsByIdResponses, type DeleteAiGraphEdgesByIdData, type DeleteAiGraphEdgesByIdError, type DeleteAiGraphEdgesByIdErrors, type DeleteAiGraphEdgesByIdResponses, type DeleteAiGraphNodesByIdData, type DeleteAiGraphNodesByIdError, type DeleteAiGraphNodesByIdErrors, type DeleteAiGraphNodesByIdResponses, type DeleteAiMessagesByIdData, type DeleteAiMessagesByIdError, type DeleteAiMessagesByIdErrors, type DeleteAiMessagesByIdResponses, type DeleteApiKeysByIdData, type DeleteApiKeysByIdError, type DeleteApiKeysByIdErrors, type DeleteApiKeysByIdResponses, type DeleteApplicationsByApplicationIdEmailTemplatesBySlugData, type DeleteApplicationsByApplicationIdEmailTemplatesBySlugError, type DeleteApplicationsByApplicationIdEmailTemplatesBySlugErrors, type DeleteApplicationsByApplicationIdEmailTemplatesBySlugResponses, type DeleteApplicationsByIdData, type DeleteApplicationsByIdError, type DeleteApplicationsByIdErrors, type DeleteApplicationsByIdResponses, type DeleteBucketsByIdData, type DeleteBucketsByIdError, type DeleteBucketsByIdErrors, type DeleteBucketsByIdResponses, type DeleteExtractionBatchesByIdData, type DeleteExtractionBatchesByIdError, type DeleteExtractionBatchesByIdErrors, type DeleteExtractionBatchesByIdResponses, type DeleteExtractionDocumentsByIdData, type DeleteExtractionDocumentsByIdError, type DeleteExtractionDocumentsByIdErrors, type DeleteExtractionDocumentsByIdResponses, type DeleteFieldTemplatesByIdData, type DeleteFieldTemplatesByIdError, type DeleteFieldTemplatesByIdErrors, type DeleteFieldTemplatesByIdResponses, type DeleteMessagesByIdData, type DeleteMessagesByIdError, type DeleteMessagesByIdErrors, type DeleteMessagesByIdResponses, type DeleteNotificationMethodsByIdData, type DeleteNotificationMethodsByIdError, type DeleteNotificationMethodsByIdErrors, type DeleteNotificationMethodsByIdResponses, type DeleteNotificationPreferencesByIdData, type DeleteNotificationPreferencesByIdError, type DeleteNotificationPreferencesByIdErrors, type DeleteNotificationPreferencesByIdResponses, type DeleteObjectsByIdData, type DeleteObjectsByIdError, type DeleteObjectsByIdErrors, type DeleteObjectsByIdResponses, type DeleteSearchSavedByIdData, type DeleteSearchSavedByIdError, type DeleteSearchSavedByIdErrors, type DeleteSearchSavedByIdResponses, type DeleteTenantMembershipsByTenantIdByUserIdData, type DeleteTenantMembershipsByTenantIdByUserIdError, type DeleteTenantMembershipsByTenantIdByUserIdErrors, type DeleteTenantMembershipsByTenantIdByUserIdResponses, type DeleteTenantsByIdData, type DeleteTenantsByIdError, type DeleteTenantsByIdErrors, type DeleteTenantsByIdResponses, type DeleteThreadsByIdData, type DeleteThreadsByIdError, type DeleteThreadsByIdErrors, type DeleteThreadsByIdResponses, type DeleteTrainingExamplesByIdData, type DeleteTrainingExamplesByIdError, type DeleteTrainingExamplesByIdErrors, type DeleteTrainingExamplesByIdResponses, type DeleteTrainingSessionsByIdData, type DeleteTrainingSessionsByIdError, type DeleteTrainingSessionsByIdErrors, type DeleteTrainingSessionsByIdResponses, type DeleteUserProfilesByIdData, type DeleteUserProfilesByIdError, type DeleteUserProfilesByIdErrors, type DeleteUserProfilesByIdResponses, type DeleteUsersByIdData, type DeleteUsersByIdError, type DeleteUsersByIdErrors, type DeleteUsersByIdResponses, type DeleteWebhookConfigsByIdData, type DeleteWebhookConfigsByIdError, type DeleteWebhookConfigsByIdErrors, type DeleteWebhookConfigsByIdResponses, type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdData, type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdError, type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type DeleteWorkspacesByIdData, type DeleteWorkspacesByIdError, type DeleteWorkspacesByIdErrors, type DeleteWorkspacesByIdResponses, type DocumentChunk, type DocumentStats, type DocumentUploadBase64Request, DocumentUploadBase64Schema, type EmailTemplate, type EmbedRequest, EmbedRequestSchema, type Embedding, type ErrorResponse, type Errors, type ExtractionBatch, type ExtractionDocument, type ExtractionExport, type ExtractionResult, type FieldMappingConfirmation, type FieldMappingResult, type FieldTemplate, type GetAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsData, type GetAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsError, type GetAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsErrors, type GetAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsResponse, type GetAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsResponses, type GetAgentVersionRevisionsByIdData, type GetAgentVersionRevisionsByIdError, type GetAgentVersionRevisionsByIdErrors, type GetAgentVersionRevisionsByIdResponse, type GetAgentVersionRevisionsByIdResponses, type GetAgentVersionsByIdData, type GetAgentVersionsByIdError, type GetAgentVersionsByIdErrors, type GetAgentVersionsByIdMetricsData, type GetAgentVersionsByIdMetricsError, type GetAgentVersionsByIdMetricsErrors, type GetAgentVersionsByIdMetricsResponse, type GetAgentVersionsByIdMetricsResponses, 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 GetAgentsByIdSchemaVersionsData, type GetAgentsByIdSchemaVersionsError, type GetAgentsByIdSchemaVersionsErrors, type GetAgentsByIdSchemaVersionsResponse, type GetAgentsByIdSchemaVersionsResponses, type GetAgentsByIdStatsData, type GetAgentsByIdStatsError, type GetAgentsByIdStatsErrors, type GetAgentsByIdStatsResponse, type GetAgentsByIdStatsResponses, type GetAgentsByIdTrainingStatsData, type GetAgentsByIdTrainingStatsError, type GetAgentsByIdTrainingStatsErrors, type GetAgentsByIdTrainingStatsResponse, type GetAgentsByIdTrainingStatsResponses, type GetAgentsByIdUsageData, type GetAgentsByIdUsageError, type GetAgentsByIdUsageErrors, type GetAgentsByIdUsageResponse, type GetAgentsByIdUsageResponses, type GetAgentsData, type GetAgentsError, type GetAgentsErrors, type GetAgentsResponse, type GetAgentsResponses, type GetAgentsUsageData, type GetAgentsUsageError, type GetAgentsUsageErrors, type GetAgentsUsageResponse, type GetAgentsUsageResponses, type GetAiChunksDocumentByDocumentIdData, type GetAiChunksDocumentByDocumentIdError, type GetAiChunksDocumentByDocumentIdErrors, type GetAiChunksDocumentByDocumentIdResponse, type GetAiChunksDocumentByDocumentIdResponses, type GetAiConversationsByIdData, type GetAiConversationsByIdError, type GetAiConversationsByIdErrors, type GetAiConversationsByIdResponse, type GetAiConversationsByIdResponses, type GetAiConversationsData, type GetAiConversationsError, type GetAiConversationsErrors, type GetAiConversationsResponse, type GetAiConversationsResponses, type GetAiGraphEdgesData, type GetAiGraphEdgesError, type GetAiGraphEdgesErrors, type GetAiGraphEdgesResponse, type GetAiGraphEdgesResponses, type GetAiGraphNodesBySourceNodeIdRelatedData, type GetAiGraphNodesBySourceNodeIdRelatedError, type GetAiGraphNodesBySourceNodeIdRelatedErrors, type GetAiGraphNodesBySourceNodeIdRelatedResponse, type GetAiGraphNodesBySourceNodeIdRelatedResponses, type GetAiGraphNodesData, type GetAiGraphNodesError, type GetAiGraphNodesErrors, type GetAiGraphNodesLabelByLabelData, type GetAiGraphNodesLabelByLabelError, type GetAiGraphNodesLabelByLabelErrors, type GetAiGraphNodesLabelByLabelResponse, type GetAiGraphNodesLabelByLabelResponses, type GetAiGraphNodesResponse, type GetAiGraphNodesResponses, type GetAiMessagesData, type GetAiMessagesError, type GetAiMessagesErrors, type GetAiMessagesResponse, type GetAiMessagesResponses, type GetApiKeysActiveData, type GetApiKeysActiveError, type GetApiKeysActiveErrors, type GetApiKeysActiveResponse, type GetApiKeysActiveResponses, type GetApiKeysByIdData, type GetApiKeysByIdError, type GetApiKeysByIdErrors, type GetApiKeysByIdResponse, type GetApiKeysByIdResponses, type GetApiKeysData, type GetApiKeysError, type GetApiKeysErrors, type GetApiKeysResponse, type GetApiKeysResponses, type GetApiKeysStatsData, type GetApiKeysStatsError, type GetApiKeysStatsErrors, type GetApiKeysStatsResponse, type GetApiKeysStatsResponses, type GetApplicationsByApplicationIdEmailTemplatesBySlugData, type GetApplicationsByApplicationIdEmailTemplatesBySlugError, type GetApplicationsByApplicationIdEmailTemplatesBySlugErrors, type GetApplicationsByApplicationIdEmailTemplatesBySlugResponse, type GetApplicationsByApplicationIdEmailTemplatesBySlugResponses, type GetApplicationsByApplicationIdEmailTemplatesData, type GetApplicationsByApplicationIdEmailTemplatesError, type GetApplicationsByApplicationIdEmailTemplatesErrors, type GetApplicationsByApplicationIdEmailTemplatesResponse, type GetApplicationsByApplicationIdEmailTemplatesResponses, type GetApplicationsByIdData, type GetApplicationsByIdError, type GetApplicationsByIdErrors, type GetApplicationsByIdResponse, type GetApplicationsByIdResponses, type GetApplicationsBySlugBySlugData, type GetApplicationsBySlugBySlugError, type GetApplicationsBySlugBySlugErrors, type GetApplicationsBySlugBySlugResponse, type GetApplicationsBySlugBySlugResponses, type GetApplicationsCurrentData, type GetApplicationsCurrentError, type GetApplicationsCurrentErrors, type GetApplicationsCurrentResponse, type GetApplicationsCurrentResponses, type GetApplicationsData, type GetApplicationsError, type GetApplicationsErrors, type GetApplicationsResponse, type GetApplicationsResponses, type GetAuditLogsActivityData, type GetAuditLogsActivityError, type GetAuditLogsActivityErrors, type GetAuditLogsActivityResponse, type GetAuditLogsActivityResponses, type GetAuditLogsData, type GetAuditLogsError, type GetAuditLogsErrors, type GetAuditLogsResponse, type GetAuditLogsResponses, type GetBucketsAllData, type GetBucketsAllError, type GetBucketsAllErrors, type GetBucketsAllResponse, type GetBucketsAllResponses, type GetBucketsByIdData, type GetBucketsByIdError, type GetBucketsByIdErrors, type GetBucketsByIdObjectsData, type GetBucketsByIdObjectsError, type GetBucketsByIdObjectsErrors, type GetBucketsByIdObjectsResponse, type GetBucketsByIdObjectsResponses, type GetBucketsByIdResponse, type GetBucketsByIdResponses, type GetBucketsByIdStatsData, type GetBucketsByIdStatsError, type GetBucketsByIdStatsErrors, type GetBucketsByIdStatsResponse, type GetBucketsByIdStatsResponses, type GetBucketsData, type GetBucketsError, type GetBucketsErrors, type GetBucketsResponse, type GetBucketsResponses, type GetConfigsData, type GetConfigsError, type GetConfigsErrors, type GetConfigsResponse, type GetConfigsResponses, type GetCreditPackagesByIdData, type GetCreditPackagesByIdError, type GetCreditPackagesByIdErrors, type GetCreditPackagesByIdResponse, type GetCreditPackagesByIdResponses, type GetCreditPackagesData, type GetCreditPackagesError, type GetCreditPackagesErrors, type GetCreditPackagesResponse, type GetCreditPackagesResponses, type GetCreditPackagesSlugBySlugData, type GetCreditPackagesSlugBySlugError, type GetCreditPackagesSlugBySlugErrors, type GetCreditPackagesSlugBySlugResponse, type GetCreditPackagesSlugBySlugResponses, type GetDocumentsStatsData, type GetDocumentsStatsError, type GetDocumentsStatsErrors, type GetDocumentsStatsResponse, type GetDocumentsStatsResponses, type GetExtractionBatchesByIdData, type GetExtractionBatchesByIdError, type GetExtractionBatchesByIdErrors, type GetExtractionBatchesByIdResponse, type GetExtractionBatchesByIdResponses, type GetExtractionBatchesByIdUploadUrlsData, type GetExtractionBatchesByIdUploadUrlsError, type GetExtractionBatchesByIdUploadUrlsErrors, type GetExtractionBatchesByIdUploadUrlsResponse, type GetExtractionBatchesByIdUploadUrlsResponses, type GetExtractionBatchesWorkspaceByWorkspaceIdData, type GetExtractionBatchesWorkspaceByWorkspaceIdError, type GetExtractionBatchesWorkspaceByWorkspaceIdErrors, type GetExtractionBatchesWorkspaceByWorkspaceIdResponse, type GetExtractionBatchesWorkspaceByWorkspaceIdResponses, type GetExtractionDocumentsByIdData, type GetExtractionDocumentsByIdError, type GetExtractionDocumentsByIdErrors, type GetExtractionDocumentsByIdResponse, type GetExtractionDocumentsByIdResponses, type GetExtractionDocumentsByIdStatusData, type GetExtractionDocumentsByIdStatusError, type GetExtractionDocumentsByIdStatusErrors, type GetExtractionDocumentsByIdStatusResponse, type GetExtractionDocumentsByIdStatusResponses, type GetExtractionDocumentsByIdViewData, type GetExtractionDocumentsByIdViewError, type GetExtractionDocumentsByIdViewErrors, type GetExtractionDocumentsByIdViewResponse, type GetExtractionDocumentsByIdViewResponses, type GetExtractionDocumentsData, type GetExtractionDocumentsError, type GetExtractionDocumentsErrors, type GetExtractionDocumentsResponse, type GetExtractionDocumentsResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusData, type GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusError, type GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdData, type GetExtractionDocumentsWorkspaceByWorkspaceIdError, type GetExtractionDocumentsWorkspaceByWorkspaceIdErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedData, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedError, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueData, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueError, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedData, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedError, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrashedData, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrashedError, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrashedErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrashedResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrashedResponses, type GetExtractionResultsByIdData, type GetExtractionResultsByIdError, type GetExtractionResultsByIdErrors, type GetExtractionResultsByIdResponse, type GetExtractionResultsByIdResponses, type GetExtractionResultsDocumentByDocumentIdData, type GetExtractionResultsDocumentByDocumentIdError, type GetExtractionResultsDocumentByDocumentIdErrors, type GetExtractionResultsDocumentByDocumentIdResponse, type GetExtractionResultsDocumentByDocumentIdResponses, type GetExtractionResultsWorkspaceByWorkspaceIdData, type GetExtractionResultsWorkspaceByWorkspaceIdError, type GetExtractionResultsWorkspaceByWorkspaceIdErrors, type GetExtractionResultsWorkspaceByWorkspaceIdResponse, type GetExtractionResultsWorkspaceByWorkspaceIdResponses, type GetExtractionSchemaDiscoveriesByIdData, type GetExtractionSchemaDiscoveriesByIdError, type GetExtractionSchemaDiscoveriesByIdErrors, type GetExtractionSchemaDiscoveriesByIdResponse, type GetExtractionSchemaDiscoveriesByIdResponses, type GetFieldTemplatesByIdData, type GetFieldTemplatesByIdError, type GetFieldTemplatesByIdErrors, type GetFieldTemplatesByIdResponse, type GetFieldTemplatesByIdResponses, type GetFieldTemplatesData, type GetFieldTemplatesError, type GetFieldTemplatesErrors, type GetFieldTemplatesResponse, type GetFieldTemplatesResponses, type GetInvitationsConsumeByTokenData, type GetInvitationsConsumeByTokenError, type GetInvitationsConsumeByTokenErrors, type GetInvitationsConsumeByTokenResponse, type GetInvitationsConsumeByTokenResponses, type GetInvitationsData, type GetInvitationsError, type GetInvitationsErrors, type GetInvitationsMeData, type GetInvitationsMeError, type GetInvitationsMeErrors, type GetInvitationsMeResponse, type GetInvitationsMeResponses, type GetInvitationsResponse, type GetInvitationsResponses, type GetLlmAnalyticsByIdData, type GetLlmAnalyticsByIdError, type GetLlmAnalyticsByIdErrors, type GetLlmAnalyticsByIdResponse, type GetLlmAnalyticsByIdResponses, type GetLlmAnalyticsCostsData, type GetLlmAnalyticsCostsError, type GetLlmAnalyticsCostsErrors, type GetLlmAnalyticsCostsResponse, type GetLlmAnalyticsCostsResponses, type GetLlmAnalyticsData, type GetLlmAnalyticsError, type GetLlmAnalyticsErrors, type GetLlmAnalyticsPlatformData, type GetLlmAnalyticsPlatformError, type GetLlmAnalyticsPlatformErrors, type GetLlmAnalyticsPlatformResponse, type GetLlmAnalyticsPlatformResponses, type GetLlmAnalyticsResponse, type GetLlmAnalyticsResponses, type GetLlmAnalyticsSummaryData, type GetLlmAnalyticsSummaryError, type GetLlmAnalyticsSummaryErrors, type GetLlmAnalyticsSummaryResponse, type GetLlmAnalyticsSummaryResponses, type GetLlmAnalyticsUsageData, type GetLlmAnalyticsUsageError, type GetLlmAnalyticsUsageErrors, type GetLlmAnalyticsUsageResponse, type GetLlmAnalyticsUsageResponses, type GetLlmAnalyticsWorkspaceData, type GetLlmAnalyticsWorkspaceError, type GetLlmAnalyticsWorkspaceErrors, type GetLlmAnalyticsWorkspaceResponse, type GetLlmAnalyticsWorkspaceResponses, type GetMessagesByIdData, type GetMessagesByIdError, type GetMessagesByIdErrors, type GetMessagesByIdResponse, type GetMessagesByIdResponses, type GetMessagesData, type GetMessagesError, type GetMessagesErrors, type GetMessagesResponse, type GetMessagesResponses, type GetMessagesSearchData, type GetMessagesSearchError, type GetMessagesSearchErrors, type GetMessagesSearchResponse, type GetMessagesSearchResponses, type GetMessagesSemanticSearchData, type GetMessagesSemanticSearchError, type GetMessagesSemanticSearchErrors, type GetMessagesSemanticSearchResponse, type GetMessagesSemanticSearchResponses, type GetNotificationLogsByIdData, type GetNotificationLogsByIdError, type GetNotificationLogsByIdErrors, type GetNotificationLogsByIdResponse, type GetNotificationLogsByIdResponses, type GetNotificationLogsData, type GetNotificationLogsError, type GetNotificationLogsErrors, type GetNotificationLogsResponse, type GetNotificationLogsResponses, type GetNotificationLogsStatsData, type GetNotificationLogsStatsError, type GetNotificationLogsStatsErrors, type GetNotificationLogsStatsResponse, type GetNotificationLogsStatsResponses, type GetNotificationMethodsByIdData, type GetNotificationMethodsByIdError, type GetNotificationMethodsByIdErrors, type GetNotificationMethodsByIdResponse, type GetNotificationMethodsByIdResponses, type GetNotificationMethodsData, type GetNotificationMethodsError, type GetNotificationMethodsErrors, type GetNotificationMethodsResponse, type GetNotificationMethodsResponses, type GetNotificationPreferencesByIdData, type GetNotificationPreferencesByIdError, type GetNotificationPreferencesByIdErrors, type GetNotificationPreferencesByIdResponse, type GetNotificationPreferencesByIdResponses, type GetNotificationPreferencesData, type GetNotificationPreferencesError, type GetNotificationPreferencesErrors, type GetNotificationPreferencesResponse, type GetNotificationPreferencesResponses, type GetObjectsByIdData, type GetObjectsByIdError, type GetObjectsByIdErrors, type GetObjectsByIdResponse, type GetObjectsByIdResponses, type GetObjectsData, type GetObjectsError, type GetObjectsErrors, type GetObjectsResponse, type GetObjectsResponses, type GetPermissionsByIdData, type GetPermissionsByIdError, type GetPermissionsByIdErrors, type GetPermissionsByIdResponse, type GetPermissionsByIdResponses, type GetPermissionsData, type GetPermissionsError, type GetPermissionsErrors, type GetPermissionsMetaData, type GetPermissionsMetaError, type GetPermissionsMetaErrors, type GetPermissionsMetaResponse, type GetPermissionsMetaResponses, type GetPermissionsPresetsByIdData, type GetPermissionsPresetsByIdError, type GetPermissionsPresetsByIdErrors, type GetPermissionsPresetsByIdResponse, type GetPermissionsPresetsByIdResponses, type GetPermissionsPresetsData, type GetPermissionsPresetsError, type GetPermissionsPresetsErrors, type GetPermissionsPresetsResponse, type GetPermissionsPresetsResponses, type GetPermissionsResponse, type GetPermissionsResponses, type GetPlansByIdData, type GetPlansByIdError, type GetPlansByIdErrors, type GetPlansByIdResponse, type GetPlansByIdResponses, type GetPlansData, type GetPlansError, type GetPlansErrors, type GetPlansResponse, type GetPlansResponses, type GetPlansSlugBySlugData, type GetPlansSlugBySlugError, type GetPlansSlugBySlugErrors, type GetPlansSlugBySlugResponse, type GetPlansSlugBySlugResponses, type GetSearchAnalyticsData, type GetSearchAnalyticsError, type GetSearchAnalyticsErrors, type GetSearchAnalyticsResponse, type GetSearchAnalyticsResponses, type GetSearchAnalyticsSummaryData, type GetSearchAnalyticsSummaryError, type GetSearchAnalyticsSummaryErrors, type GetSearchAnalyticsSummaryResponse, type GetSearchAnalyticsSummaryResponses, type GetSearchData, type GetSearchError, type GetSearchErrors, type GetSearchHealthData, type GetSearchHealthError, type GetSearchHealthErrors, type GetSearchHealthResponse, type GetSearchHealthResponses, type GetSearchIndexesData, type GetSearchIndexesError, type GetSearchIndexesErrors, type GetSearchIndexesResponse, type GetSearchIndexesResponses, type GetSearchResponse, type GetSearchResponses, type GetSearchSavedData, type GetSearchSavedError, type GetSearchSavedErrors, type GetSearchSavedResponse, type GetSearchSavedResponses, type GetSearchSemanticData, type GetSearchSemanticError, type GetSearchSemanticErrors, type GetSearchSemanticResponse, type GetSearchSemanticResponses, type GetSearchStatsData, type GetSearchStatsError, type GetSearchStatsErrors, type GetSearchStatsResponse, type GetSearchStatsResponses, type GetSearchStatusData, type GetSearchStatusError, type GetSearchStatusErrors, type GetSearchStatusResponse, type GetSearchStatusResponses, type GetSearchSuggestData, type GetSearchSuggestError, type GetSearchSuggestErrors, type GetSearchSuggestResponse, type GetSearchSuggestResponses, type GetStorageStatsData, type GetStorageStatsError, type GetStorageStatsErrors, type GetStorageStatsResponse, type GetStorageStatsResponses, type GetStorageStatsTenantByTenantIdData, type GetStorageStatsTenantByTenantIdError, type GetStorageStatsTenantByTenantIdErrors, type GetStorageStatsTenantByTenantIdResponse, type GetStorageStatsTenantByTenantIdResponses, type GetTenantMembershipsData, type GetTenantMembershipsError, type GetTenantMembershipsErrors, type GetTenantMembershipsResponse, type GetTenantMembershipsResponses, type GetTenantsByIdData, type GetTenantsByIdError, type GetTenantsByIdErrors, type GetTenantsByIdResponse, type GetTenantsByIdResponses, type GetTenantsByTenantIdDocumentStatsData, type GetTenantsByTenantIdDocumentStatsError, type GetTenantsByTenantIdDocumentStatsErrors, type GetTenantsByTenantIdDocumentStatsResponse, type GetTenantsByTenantIdDocumentStatsResponses, type GetTenantsByTenantIdStatsData, type GetTenantsByTenantIdStatsError, type GetTenantsByTenantIdStatsErrors, type GetTenantsByTenantIdStatsResponse, type GetTenantsByTenantIdStatsResponses, type GetTenantsByTenantIdWorkspaceStatsData, type GetTenantsByTenantIdWorkspaceStatsError, type GetTenantsByTenantIdWorkspaceStatsErrors, type GetTenantsByTenantIdWorkspaceStatsResponse, type GetTenantsByTenantIdWorkspaceStatsResponses, type GetTenantsData, type GetTenantsError, type GetTenantsErrors, type GetTenantsResponse, type GetTenantsResponses, type GetThreadsByIdData, type GetThreadsByIdError, type GetThreadsByIdErrors, type GetThreadsByIdMessagesData, type GetThreadsByIdMessagesError, type GetThreadsByIdMessagesErrors, type GetThreadsByIdMessagesResponse, type GetThreadsByIdMessagesResponses, type GetThreadsByIdResponse, type GetThreadsByIdResponses, type GetThreadsData, type GetThreadsError, type GetThreadsErrors, type GetThreadsResponse, type GetThreadsResponses, type GetThreadsSearchData, type GetThreadsSearchError, type GetThreadsSearchErrors, type GetThreadsSearchResponse, type GetThreadsSearchResponses, type GetThreadsStatsData, type GetThreadsStatsError, type GetThreadsStatsErrors, type GetThreadsStatsResponse, type GetThreadsStatsResponses, type GetThreadsWorkspaceStatsData, type GetThreadsWorkspaceStatsError, type GetThreadsWorkspaceStatsErrors, type GetThreadsWorkspaceStatsResponse, type GetThreadsWorkspaceStatsResponses, type GetTrainingExamplesByIdData, type GetTrainingExamplesByIdError, type GetTrainingExamplesByIdErrors, type GetTrainingExamplesByIdResponse, type GetTrainingExamplesByIdResponses, type GetTrainingExamplesData, type GetTrainingExamplesError, type GetTrainingExamplesErrors, type GetTrainingExamplesResponse, type GetTrainingExamplesResponses, type GetTrainingSessionsAgentsByAgentIdSessionsData, type GetTrainingSessionsAgentsByAgentIdSessionsError, type GetTrainingSessionsAgentsByAgentIdSessionsErrors, type GetTrainingSessionsAgentsByAgentIdSessionsResponse, type GetTrainingSessionsAgentsByAgentIdSessionsResponses, type GetTrainingSessionsByIdData, type GetTrainingSessionsByIdError, type GetTrainingSessionsByIdErrors, type GetTrainingSessionsByIdResponse, type GetTrainingSessionsByIdResponses, type GetTransactionsByIdData, type GetTransactionsByIdError, type GetTransactionsByIdErrors, type GetTransactionsByIdResponse, type GetTransactionsByIdResponses, type GetTransactionsData, type GetTransactionsError, type GetTransactionsErrors, type GetTransactionsResponse, type GetTransactionsResponses, type GetUserProfilesByIdData, type GetUserProfilesByIdError, type GetUserProfilesByIdErrors, type GetUserProfilesByIdResponse, type GetUserProfilesByIdResponses, type GetUserProfilesData, type GetUserProfilesError, type GetUserProfilesErrors, type GetUserProfilesMeData, type GetUserProfilesMeError, type GetUserProfilesMeErrors, type GetUserProfilesMeResponse, type GetUserProfilesMeResponses, type GetUserProfilesResponse, type GetUserProfilesResponses, type GetUsersByEmailData, type GetUsersByEmailError, type GetUsersByEmailErrors, type GetUsersByEmailResponse, type GetUsersByEmailResponses, type GetUsersByIdData, type GetUsersByIdError, type GetUsersByIdErrors, type GetUsersByIdResponse, type GetUsersByIdResponses, type GetUsersData, type GetUsersError, type GetUsersErrors, type GetUsersMeActivityData, type GetUsersMeActivityError, type GetUsersMeActivityErrors, type GetUsersMeActivityResponse, type GetUsersMeActivityResponses, type GetUsersMeDashboardData, type GetUsersMeDashboardError, type GetUsersMeDashboardErrors, type GetUsersMeDashboardResponse, type GetUsersMeDashboardResponses, type GetUsersMeData, type GetUsersMeError, type GetUsersMeErrors, type GetUsersMeResponse, type GetUsersMeResponses, type GetUsersMeStatsData, type GetUsersMeStatsError, type GetUsersMeStatsErrors, type GetUsersMeStatsResponse, type GetUsersMeStatsResponses, type GetUsersMeTenantsData, type GetUsersMeTenantsError, type GetUsersMeTenantsErrors, type GetUsersMeTenantsResponse, type GetUsersMeTenantsResponses, type GetUsersResponse, type GetUsersResponses, type GetWalletData, type GetWalletError, type GetWalletErrors, type GetWalletInvoicesData, type GetWalletInvoicesError, type GetWalletInvoicesErrors, type GetWalletInvoicesResponse, type GetWalletInvoicesResponses, type GetWalletResponse, type GetWalletResponses, type GetWatcherClaimsByIdData, type GetWatcherClaimsByIdError, type GetWatcherClaimsByIdErrors, type GetWatcherClaimsByIdResponse, type GetWatcherClaimsByIdResponses, type GetWatcherClaimsData, type GetWatcherClaimsError, type GetWatcherClaimsErrors, type GetWatcherClaimsResponse, type GetWatcherClaimsResponses, type GetWatcherClaimsStatusData, type GetWatcherClaimsStatusError, type GetWatcherClaimsStatusErrors, type GetWatcherClaimsStatusResponse, type GetWatcherClaimsStatusResponses, type GetWatcherEventsByIdData, type GetWatcherEventsByIdError, type GetWatcherEventsByIdErrors, type GetWatcherEventsByIdResponse, type GetWatcherEventsByIdResponses, type GetWatcherEventsData, type GetWatcherEventsError, type GetWatcherEventsErrors, type GetWatcherEventsResponse, type GetWatcherEventsResponses, type GetWebhookConfigsByIdData, type GetWebhookConfigsByIdError, type GetWebhookConfigsByIdErrors, type GetWebhookConfigsByIdEventsData, type GetWebhookConfigsByIdEventsError, type GetWebhookConfigsByIdEventsErrors, type GetWebhookConfigsByIdEventsResponse, type GetWebhookConfigsByIdEventsResponses, type GetWebhookConfigsByIdResponse, type GetWebhookConfigsByIdResponses, type GetWebhookConfigsData, type GetWebhookConfigsError, type GetWebhookConfigsErrors, type GetWebhookConfigsResponse, type GetWebhookConfigsResponses, type GetWebhookConfigsStatsData, type GetWebhookConfigsStatsError, type GetWebhookConfigsStatsErrors, type GetWebhookConfigsStatsResponse, type GetWebhookConfigsStatsResponses, type GetWebhookDeliveriesByIdData, type GetWebhookDeliveriesByIdError, type GetWebhookDeliveriesByIdErrors, type GetWebhookDeliveriesByIdResponse, type GetWebhookDeliveriesByIdResponses, type GetWebhookDeliveriesData, type GetWebhookDeliveriesError, type GetWebhookDeliveriesErrors, type GetWebhookDeliveriesResponse, type GetWebhookDeliveriesResponses, type GetWebhookDeliveriesStatsData, type GetWebhookDeliveriesStatsError, type GetWebhookDeliveriesStatsErrors, type GetWebhookDeliveriesStatsResponse, type GetWebhookDeliveriesStatsResponses, type GetWorkspaceMembershipsData, type GetWorkspaceMembershipsError, type GetWorkspaceMembershipsErrors, type GetWorkspaceMembershipsResponse, type GetWorkspaceMembershipsResponses, type GetWorkspacesAnalyticsBatchData, type GetWorkspacesAnalyticsBatchError, type GetWorkspacesAnalyticsBatchErrors, type GetWorkspacesAnalyticsBatchResponse, type GetWorkspacesAnalyticsBatchResponses, type GetWorkspacesByIdData, type GetWorkspacesByIdError, type GetWorkspacesByIdErrors, type GetWorkspacesByIdMembersData, type GetWorkspacesByIdMembersError, type GetWorkspacesByIdMembersErrors, type GetWorkspacesByIdMembersResponse, type GetWorkspacesByIdMembersResponses, type GetWorkspacesByIdResponse, type GetWorkspacesByIdResponses, type GetWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, type GetWorkspacesByWorkspaceIdExtractionByDocumentIdMappingError, type GetWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, type GetWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponse, type GetWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, type GetWorkspacesByWorkspaceIdExtractionExportsByIdData, type GetWorkspacesByWorkspaceIdExtractionExportsByIdError, type GetWorkspacesByWorkspaceIdExtractionExportsByIdErrors, type GetWorkspacesByWorkspaceIdExtractionExportsByIdResponse, type GetWorkspacesByWorkspaceIdExtractionExportsByIdResponses, type GetWorkspacesByWorkspaceIdExtractionExportsData, type GetWorkspacesByWorkspaceIdExtractionExportsError, type GetWorkspacesByWorkspaceIdExtractionExportsErrors, type GetWorkspacesByWorkspaceIdExtractionExportsResponse, type GetWorkspacesByWorkspaceIdExtractionExportsResponses, type GetWorkspacesByWorkspaceIdTrainingAnalyticsData, type GetWorkspacesByWorkspaceIdTrainingAnalyticsError, type GetWorkspacesByWorkspaceIdTrainingAnalyticsErrors, type GetWorkspacesByWorkspaceIdTrainingAnalyticsResponse, type GetWorkspacesByWorkspaceIdTrainingAnalyticsResponses, type GetWorkspacesData, type GetWorkspacesError, type GetWorkspacesErrors, type GetWorkspacesMineData, type GetWorkspacesMineError, type GetWorkspacesMineErrors, type GetWorkspacesMineResponse, type GetWorkspacesMineResponses, type GetWorkspacesResponse, type GetWorkspacesResponses, type GetWorkspacesSharedData, type GetWorkspacesSharedError, type GetWorkspacesSharedErrors, type GetWorkspacesSharedResponse, type GetWorkspacesSharedResponses, GptCoreError, type GraphEdge, type GraphNode, type Invitation, type InvitationCreateRequest, InvitationCreateSchema, type IsvRevenue, type IsvSettlement, type Ledger, type Link, type Links, type LlmAnalytics, type LoginRequest, LoginRequestSchema, type Message, type MessageSendRequest, MessageSendSchema, NetworkError, NotFoundError, type NotificationLog, type NotificationMethod, type NotificationPreference, type ObjectType, type OperationSuccess, type Options, type PaginatedResponse, type PaginationLinks, type PaginationOptions, type PatchAgentsByIdData, type PatchAgentsByIdError, type PatchAgentsByIdErrors, type PatchAgentsByIdResponse, type PatchAgentsByIdResponses, type PatchAgentsByIdSchemaVersionsByVersionIdData, type PatchAgentsByIdSchemaVersionsByVersionIdError, type PatchAgentsByIdSchemaVersionsByVersionIdErrors, type PatchAgentsByIdSchemaVersionsByVersionIdResponse, type PatchAgentsByIdSchemaVersionsByVersionIdResponses, type PatchAiConversationsByIdData, type PatchAiConversationsByIdError, type PatchAiConversationsByIdErrors, type PatchAiConversationsByIdResponse, type PatchAiConversationsByIdResponses, type PatchApiKeysByIdAllocateData, type PatchApiKeysByIdAllocateError, type PatchApiKeysByIdAllocateErrors, type PatchApiKeysByIdAllocateResponse, type PatchApiKeysByIdAllocateResponses, type PatchApiKeysByIdData, type PatchApiKeysByIdError, type PatchApiKeysByIdErrors, type PatchApiKeysByIdResetPeriodData, type PatchApiKeysByIdResetPeriodError, type PatchApiKeysByIdResetPeriodErrors, type PatchApiKeysByIdResetPeriodResponse, type PatchApiKeysByIdResetPeriodResponses, type PatchApiKeysByIdResponse, type PatchApiKeysByIdResponses, type PatchApiKeysByIdRevokeData, type PatchApiKeysByIdRevokeError, type PatchApiKeysByIdRevokeErrors, type PatchApiKeysByIdRevokeResponse, type PatchApiKeysByIdRevokeResponses, type PatchApiKeysByIdRotateData, type PatchApiKeysByIdRotateError, type PatchApiKeysByIdRotateErrors, type PatchApiKeysByIdRotateResponse, type PatchApiKeysByIdRotateResponses, type PatchApiKeysByIdSetBudgetData, type PatchApiKeysByIdSetBudgetError, type PatchApiKeysByIdSetBudgetErrors, type PatchApiKeysByIdSetBudgetResponse, type PatchApiKeysByIdSetBudgetResponses, type PatchApplicationsByApplicationIdEmailTemplatesBySlugData, type PatchApplicationsByApplicationIdEmailTemplatesBySlugError, type PatchApplicationsByApplicationIdEmailTemplatesBySlugErrors, type PatchApplicationsByApplicationIdEmailTemplatesBySlugResponse, type PatchApplicationsByApplicationIdEmailTemplatesBySlugResponses, type PatchApplicationsByIdAllocateCreditsData, type PatchApplicationsByIdAllocateCreditsError, type PatchApplicationsByIdAllocateCreditsErrors, type PatchApplicationsByIdAllocateCreditsResponse, type PatchApplicationsByIdAllocateCreditsResponses, type PatchApplicationsByIdData, type PatchApplicationsByIdError, type PatchApplicationsByIdErrors, type PatchApplicationsByIdGrantCreditsData, type PatchApplicationsByIdGrantCreditsError, type PatchApplicationsByIdGrantCreditsErrors, type PatchApplicationsByIdGrantCreditsResponse, type PatchApplicationsByIdGrantCreditsResponses, type PatchApplicationsByIdResponse, type PatchApplicationsByIdResponses, type PatchBucketsByIdData, type PatchBucketsByIdError, type PatchBucketsByIdErrors, type PatchBucketsByIdResponse, type PatchBucketsByIdResponses, type PatchConfigsByKeyData, type PatchConfigsByKeyError, type PatchConfigsByKeyErrors, type PatchConfigsByKeyResponse, type PatchConfigsByKeyResponses, type PatchExtractionDocumentsByIdCancelData, type PatchExtractionDocumentsByIdCancelError, type PatchExtractionDocumentsByIdCancelErrors, type PatchExtractionDocumentsByIdCancelResponse, type PatchExtractionDocumentsByIdCancelResponses, type PatchExtractionDocumentsByIdDismissData, type PatchExtractionDocumentsByIdDismissError, type PatchExtractionDocumentsByIdDismissErrors, type PatchExtractionDocumentsByIdDismissResponse, type PatchExtractionDocumentsByIdDismissResponses, type PatchExtractionDocumentsByIdDismissTrainingData, type PatchExtractionDocumentsByIdDismissTrainingError, type PatchExtractionDocumentsByIdDismissTrainingErrors, type PatchExtractionDocumentsByIdDismissTrainingResponse, type PatchExtractionDocumentsByIdDismissTrainingResponses, type PatchExtractionDocumentsByIdExcludeData, type PatchExtractionDocumentsByIdExcludeError, type PatchExtractionDocumentsByIdExcludeErrors, type PatchExtractionDocumentsByIdExcludeResponse, type PatchExtractionDocumentsByIdExcludeResponses, type PatchExtractionDocumentsByIdFinishUploadData, type PatchExtractionDocumentsByIdFinishUploadError, type PatchExtractionDocumentsByIdFinishUploadErrors, type PatchExtractionDocumentsByIdFinishUploadResponse, type PatchExtractionDocumentsByIdFinishUploadResponses, type PatchExtractionDocumentsByIdIncludeData, type PatchExtractionDocumentsByIdIncludeError, type PatchExtractionDocumentsByIdIncludeErrors, type PatchExtractionDocumentsByIdIncludeResponse, type PatchExtractionDocumentsByIdIncludeResponses, type PatchExtractionDocumentsByIdMarkTrainedData, type PatchExtractionDocumentsByIdMarkTrainedError, type PatchExtractionDocumentsByIdMarkTrainedErrors, type PatchExtractionDocumentsByIdMarkTrainedResponse, type PatchExtractionDocumentsByIdMarkTrainedResponses, type PatchExtractionDocumentsByIdReprocessData, type PatchExtractionDocumentsByIdReprocessError, type PatchExtractionDocumentsByIdReprocessErrors, type PatchExtractionDocumentsByIdReprocessResponse, type PatchExtractionDocumentsByIdReprocessResponses, type PatchExtractionDocumentsByIdRestoreData, type PatchExtractionDocumentsByIdRestoreError, type PatchExtractionDocumentsByIdRestoreErrors, type PatchExtractionDocumentsByIdRestoreResponse, type PatchExtractionDocumentsByIdRestoreResponses, type PatchExtractionDocumentsByIdStatusData, type PatchExtractionDocumentsByIdStatusError, type PatchExtractionDocumentsByIdStatusErrors, type PatchExtractionDocumentsByIdStatusResponse, type PatchExtractionDocumentsByIdStatusResponses, type PatchExtractionDocumentsByIdVerificationData, type PatchExtractionDocumentsByIdVerificationError, type PatchExtractionDocumentsByIdVerificationErrors, type PatchExtractionDocumentsByIdVerificationResponse, type PatchExtractionDocumentsByIdVerificationResponses, type PatchExtractionResultsByIdCorrectionsData, type PatchExtractionResultsByIdCorrectionsError, type PatchExtractionResultsByIdCorrectionsErrors, type PatchExtractionResultsByIdCorrectionsResponse, type PatchExtractionResultsByIdCorrectionsResponses, type PatchExtractionResultsByIdRegenerateData, type PatchExtractionResultsByIdRegenerateError, type PatchExtractionResultsByIdRegenerateErrors, type PatchExtractionResultsByIdRegenerateResponse, type PatchExtractionResultsByIdRegenerateResponses, type PatchInvitationsByIdAcceptByUserData, type PatchInvitationsByIdAcceptByUserError, type PatchInvitationsByIdAcceptByUserErrors, type PatchInvitationsByIdAcceptByUserResponse, type PatchInvitationsByIdAcceptByUserResponses, type PatchInvitationsByIdAcceptData, type PatchInvitationsByIdAcceptError, type PatchInvitationsByIdAcceptErrors, type PatchInvitationsByIdAcceptResponse, type PatchInvitationsByIdAcceptResponses, type PatchInvitationsByIdDeclineData, type PatchInvitationsByIdDeclineError, type PatchInvitationsByIdDeclineErrors, type PatchInvitationsByIdDeclineResponse, type PatchInvitationsByIdDeclineResponses, type PatchInvitationsByIdResendData, type PatchInvitationsByIdResendError, type PatchInvitationsByIdResendErrors, type PatchInvitationsByIdResendResponse, type PatchInvitationsByIdResendResponses, type PatchInvitationsByIdRevokeData, type PatchInvitationsByIdRevokeError, type PatchInvitationsByIdRevokeErrors, type PatchInvitationsByIdRevokeResponse, type PatchInvitationsByIdRevokeResponses, type PatchMessagesByIdData, type PatchMessagesByIdError, type PatchMessagesByIdErrors, type PatchMessagesByIdResponse, type PatchMessagesByIdResponses, type PatchNotificationMethodsByIdData, type PatchNotificationMethodsByIdError, type PatchNotificationMethodsByIdErrors, type PatchNotificationMethodsByIdResponse, type PatchNotificationMethodsByIdResponses, type PatchNotificationMethodsByIdSendVerificationData, type PatchNotificationMethodsByIdSendVerificationError, type PatchNotificationMethodsByIdSendVerificationErrors, type PatchNotificationMethodsByIdSendVerificationResponse, type PatchNotificationMethodsByIdSendVerificationResponses, type PatchNotificationMethodsByIdSetPrimaryData, type PatchNotificationMethodsByIdSetPrimaryError, type PatchNotificationMethodsByIdSetPrimaryErrors, type PatchNotificationMethodsByIdSetPrimaryResponse, type PatchNotificationMethodsByIdSetPrimaryResponses, type PatchNotificationMethodsByIdVerifyData, type PatchNotificationMethodsByIdVerifyError, type PatchNotificationMethodsByIdVerifyErrors, type PatchNotificationMethodsByIdVerifyResponse, type PatchNotificationMethodsByIdVerifyResponses, type PatchNotificationPreferencesByIdData, type PatchNotificationPreferencesByIdError, type PatchNotificationPreferencesByIdErrors, type PatchNotificationPreferencesByIdResponse, type PatchNotificationPreferencesByIdResponses, type PatchSearchSavedByIdData, type PatchSearchSavedByIdError, type PatchSearchSavedByIdErrors, type PatchSearchSavedByIdResponse, type PatchSearchSavedByIdResponses, type PatchTenantMembershipsByTenantIdByUserIdData, type PatchTenantMembershipsByTenantIdByUserIdError, type PatchTenantMembershipsByTenantIdByUserIdErrors, type PatchTenantMembershipsByTenantIdByUserIdResponse, type PatchTenantMembershipsByTenantIdByUserIdResponses, type PatchTenantsByIdData, type PatchTenantsByIdError, type PatchTenantsByIdErrors, type PatchTenantsByIdResponse, type PatchTenantsByIdResponses, type PatchThreadsByIdArchiveData, type PatchThreadsByIdArchiveError, type PatchThreadsByIdArchiveErrors, type PatchThreadsByIdArchiveResponse, type PatchThreadsByIdArchiveResponses, type PatchThreadsByIdData, type PatchThreadsByIdError, type PatchThreadsByIdErrors, type PatchThreadsByIdResponse, type PatchThreadsByIdResponses, type PatchThreadsByIdUnarchiveData, type PatchThreadsByIdUnarchiveError, type PatchThreadsByIdUnarchiveErrors, type PatchThreadsByIdUnarchiveResponse, type PatchThreadsByIdUnarchiveResponses, type PatchTrainingExamplesByIdData, type PatchTrainingExamplesByIdError, type PatchTrainingExamplesByIdErrors, type PatchTrainingExamplesByIdResponse, type PatchTrainingExamplesByIdResponses, type PatchUserProfilesByIdAcceptTosData, type PatchUserProfilesByIdAcceptTosError, type PatchUserProfilesByIdAcceptTosErrors, type PatchUserProfilesByIdAcceptTosResponse, type PatchUserProfilesByIdAcceptTosResponses, type PatchUserProfilesByIdData, type PatchUserProfilesByIdDismissAnnouncementData, type PatchUserProfilesByIdDismissAnnouncementError, type PatchUserProfilesByIdDismissAnnouncementErrors, type PatchUserProfilesByIdDismissAnnouncementResponse, type PatchUserProfilesByIdDismissAnnouncementResponses, type PatchUserProfilesByIdDismissWelcomeData, type PatchUserProfilesByIdDismissWelcomeError, type PatchUserProfilesByIdDismissWelcomeErrors, type PatchUserProfilesByIdDismissWelcomeResponse, type PatchUserProfilesByIdDismissWelcomeResponses, type PatchUserProfilesByIdError, type PatchUserProfilesByIdErrors, type PatchUserProfilesByIdResponse, type PatchUserProfilesByIdResponses, type PatchUsersAuthPasswordChangeData, type PatchUsersAuthPasswordChangeError, type PatchUsersAuthPasswordChangeErrors, type PatchUsersAuthPasswordChangeResponse, type PatchUsersAuthPasswordChangeResponses, type PatchUsersAuthResetPasswordData, type PatchUsersAuthResetPasswordError, type PatchUsersAuthResetPasswordErrors, type PatchUsersAuthResetPasswordResponse, type PatchUsersAuthResetPasswordResponses, type PatchUsersByIdAdminData, type PatchUsersByIdAdminEmailData, type PatchUsersByIdAdminEmailError, type PatchUsersByIdAdminEmailErrors, type PatchUsersByIdAdminEmailResponse, type PatchUsersByIdAdminEmailResponses, type PatchUsersByIdAdminError, type PatchUsersByIdAdminErrors, type PatchUsersByIdAdminResponse, type PatchUsersByIdAdminResponses, type PatchUsersByIdConfirmEmailData, type PatchUsersByIdConfirmEmailError, type PatchUsersByIdConfirmEmailErrors, type PatchUsersByIdConfirmEmailResponse, type PatchUsersByIdConfirmEmailResponses, type PatchUsersByIdResetPasswordData, type PatchUsersByIdResetPasswordError, type PatchUsersByIdResetPasswordErrors, type PatchUsersByIdResetPasswordResponse, type PatchUsersByIdResetPasswordResponses, type PatchWalletAddonsByAddonSlugCancelData, type PatchWalletAddonsByAddonSlugCancelError, type PatchWalletAddonsByAddonSlugCancelErrors, type PatchWalletAddonsByAddonSlugCancelResponse, type PatchWalletAddonsByAddonSlugCancelResponses, type PatchWalletAddonsData, type PatchWalletAddonsError, type PatchWalletAddonsErrors, type PatchWalletAddonsResponse, type PatchWalletAddonsResponses, type PatchWalletAutoTopUpData, type PatchWalletAutoTopUpError, type PatchWalletAutoTopUpErrors, type PatchWalletAutoTopUpResponse, type PatchWalletAutoTopUpResponses, type PatchWalletCreditsData, type PatchWalletCreditsError, type PatchWalletCreditsErrors, type PatchWalletCreditsResponse, type PatchWalletCreditsResponses, type PatchWalletPlanData, type PatchWalletPlanError, type PatchWalletPlanErrors, type PatchWalletPlanResponse, type PatchWalletPlanResponses, type PatchWatcherClaimsByIdData, type PatchWatcherClaimsByIdError, type PatchWatcherClaimsByIdErrors, type PatchWatcherClaimsByIdReleaseData, type PatchWatcherClaimsByIdReleaseError, type PatchWatcherClaimsByIdReleaseErrors, type PatchWatcherClaimsByIdReleaseResponse, type PatchWatcherClaimsByIdReleaseResponses, type PatchWatcherClaimsByIdResponse, type PatchWatcherClaimsByIdResponses, type PatchWatcherClaimsByIdRetryData, type PatchWatcherClaimsByIdRetryError, type PatchWatcherClaimsByIdRetryErrors, type PatchWatcherClaimsByIdRetryResponse, type PatchWatcherClaimsByIdRetryResponses, type PatchWebhookConfigsByIdData, type PatchWebhookConfigsByIdError, type PatchWebhookConfigsByIdErrors, type PatchWebhookConfigsByIdResponse, type PatchWebhookConfigsByIdResponses, type PatchWebhookConfigsByIdRotateSecretData, type PatchWebhookConfigsByIdRotateSecretError, type PatchWebhookConfigsByIdRotateSecretErrors, type PatchWebhookConfigsByIdRotateSecretResponse, type PatchWebhookConfigsByIdRotateSecretResponses, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdData, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdError, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdResponse, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type PatchWorkspacesByIdAllocateData, type PatchWorkspacesByIdAllocateError, type PatchWorkspacesByIdAllocateErrors, type PatchWorkspacesByIdAllocateResponse, type PatchWorkspacesByIdAllocateResponses, type PatchWorkspacesByIdData, type PatchWorkspacesByIdError, type PatchWorkspacesByIdErrors, type PatchWorkspacesByIdPopulateHashesData, type PatchWorkspacesByIdPopulateHashesError, type PatchWorkspacesByIdPopulateHashesErrors, type PatchWorkspacesByIdPopulateHashesResponse, type PatchWorkspacesByIdPopulateHashesResponses, type PatchWorkspacesByIdResponse, type PatchWorkspacesByIdResponses, type PatchWorkspacesByIdStorageSettingsData, type PatchWorkspacesByIdStorageSettingsError, type PatchWorkspacesByIdStorageSettingsErrors, type PatchWorkspacesByIdStorageSettingsResponse, type PatchWorkspacesByIdStorageSettingsResponses, type Payment, type PaymentMethod, type Permission, type PermissionMeta, type PermissionPreset, type Plan, type PostAgentTestResultsData, type PostAgentTestResultsError, type PostAgentTestResultsErrors, type PostAgentTestResultsResponse, type PostAgentTestResultsResponses, type PostAgentVersionComparisonsData, type PostAgentVersionComparisonsError, type PostAgentVersionComparisonsErrors, type PostAgentVersionComparisonsResponse, type PostAgentVersionComparisonsResponses, type PostAgentVersionsByIdAddSystemFieldData, type PostAgentVersionsByIdAddSystemFieldError, type PostAgentVersionsByIdAddSystemFieldErrors, type PostAgentVersionsByIdAddSystemFieldResponses, type PostAgentVersionsByIdRemoveSystemFieldData, type PostAgentVersionsByIdRemoveSystemFieldError, type PostAgentVersionsByIdRemoveSystemFieldErrors, type PostAgentVersionsByIdRemoveSystemFieldResponses, type PostAgentVersionsByIdSetSystemFieldsData, type PostAgentVersionsByIdSetSystemFieldsError, type PostAgentVersionsByIdSetSystemFieldsErrors, type PostAgentVersionsByIdSetSystemFieldsResponses, type PostAgentVersionsData, type PostAgentVersionsError, type PostAgentVersionsErrors, type PostAgentVersionsResponse, type PostAgentVersionsResponses, type PostAgentsByIdCloneData, type PostAgentsByIdCloneError, type PostAgentsByIdCloneErrors, type PostAgentsByIdCloneResponse, type PostAgentsByIdCloneResponses, type PostAgentsByIdDiscoverSchemaData, type PostAgentsByIdDiscoverSchemaError, type PostAgentsByIdDiscoverSchemaErrors, type PostAgentsByIdDiscoverSchemaResponse, type PostAgentsByIdDiscoverSchemaResponses, type PostAgentsByIdExportData, type PostAgentsByIdExportError, type PostAgentsByIdExportErrors, type PostAgentsByIdExportResponse, type PostAgentsByIdExportResponses, type PostAgentsByIdPublishVersionData, type PostAgentsByIdPublishVersionError, type PostAgentsByIdPublishVersionErrors, type PostAgentsByIdPublishVersionResponse, type PostAgentsByIdPublishVersionResponses, type PostAgentsByIdSchemaVersionsByVersionIdActivateData, type PostAgentsByIdSchemaVersionsByVersionIdActivateError, type PostAgentsByIdSchemaVersionsByVersionIdActivateErrors, type PostAgentsByIdSchemaVersionsByVersionIdActivateResponse, type PostAgentsByIdSchemaVersionsByVersionIdActivateResponses, type PostAgentsByIdSchemaVersionsData, type PostAgentsByIdSchemaVersionsError, type PostAgentsByIdSchemaVersionsErrors, type PostAgentsByIdSchemaVersionsResponse, type PostAgentsByIdSchemaVersionsResponses, type PostAgentsByIdTeachData, type PostAgentsByIdTeachError, type PostAgentsByIdTeachErrors, type PostAgentsByIdTeachResponse, type PostAgentsByIdTeachResponses, type PostAgentsByIdTestData, type PostAgentsByIdTestError, type PostAgentsByIdTestErrors, type PostAgentsByIdTestResponse, type PostAgentsByIdTestResponses, type PostAgentsByIdValidateData, type PostAgentsByIdValidateError, type PostAgentsByIdValidateErrors, type PostAgentsByIdValidateResponse, type PostAgentsByIdValidateResponses, type PostAgentsCloneForWorkspaceData, type PostAgentsCloneForWorkspaceError, type PostAgentsCloneForWorkspaceErrors, type PostAgentsCloneForWorkspaceResponse, type PostAgentsCloneForWorkspaceResponses, type PostAgentsData, type PostAgentsError, type PostAgentsErrors, type PostAgentsImportData, type PostAgentsImportError, type PostAgentsImportErrors, type PostAgentsImportResponse, type PostAgentsImportResponses, type PostAgentsPredictData, type PostAgentsPredictError, type PostAgentsPredictErrors, type PostAgentsPredictResponse, type PostAgentsPredictResponses, type PostAgentsResponse, type PostAgentsResponses, type PostAiChunksSearchData, type PostAiChunksSearchError, type PostAiChunksSearchErrors, type PostAiChunksSearchResponse, type PostAiChunksSearchResponses, type PostAiConversationsData, type PostAiConversationsError, type PostAiConversationsErrors, type PostAiConversationsResponse, type PostAiConversationsResponses, type PostAiEmbedData, type PostAiEmbedError, type PostAiEmbedErrors, type PostAiEmbedResponse, type PostAiEmbedResponses, type PostAiGraphEdgesData, type PostAiGraphEdgesError, type PostAiGraphEdgesErrors, type PostAiGraphEdgesResponse, type PostAiGraphEdgesResponses, type PostAiGraphNodesData, type PostAiGraphNodesError, type PostAiGraphNodesErrors, type PostAiGraphNodesResponse, type PostAiGraphNodesResponses, type PostAiMessagesData, type PostAiMessagesError, type PostAiMessagesErrors, type PostAiMessagesResponse, type PostAiMessagesResponses, type PostAiSearchAdvancedData, type PostAiSearchAdvancedError, type PostAiSearchAdvancedErrors, type PostAiSearchAdvancedResponse, type PostAiSearchAdvancedResponses, type PostAiSearchData, type PostAiSearchError, type PostAiSearchErrors, type PostAiSearchResponse, type PostAiSearchResponses, type PostApiKeysData, type PostApiKeysError, type PostApiKeysErrors, type PostApiKeysResponse, type PostApiKeysResponses, type PostApplicationsByApplicationIdEmailTemplatesBySlugPreviewData, type PostApplicationsByApplicationIdEmailTemplatesBySlugPreviewError, type PostApplicationsByApplicationIdEmailTemplatesBySlugPreviewErrors, type PostApplicationsByApplicationIdEmailTemplatesBySlugPreviewResponse, type PostApplicationsByApplicationIdEmailTemplatesBySlugPreviewResponses, type PostApplicationsByApplicationIdEmailTemplatesBySlugTestData, type PostApplicationsByApplicationIdEmailTemplatesBySlugTestError, type PostApplicationsByApplicationIdEmailTemplatesBySlugTestErrors, type PostApplicationsByApplicationIdEmailTemplatesBySlugTestResponse, type PostApplicationsByApplicationIdEmailTemplatesBySlugTestResponses, type PostApplicationsByApplicationIdEmailTemplatesData, type PostApplicationsByApplicationIdEmailTemplatesError, type PostApplicationsByApplicationIdEmailTemplatesErrors, type PostApplicationsByApplicationIdEmailTemplatesResponse, type PostApplicationsByApplicationIdEmailTemplatesResponses, type PostApplicationsData, type PostApplicationsError, type PostApplicationsErrors, type PostApplicationsResponse, type PostApplicationsResponses, type PostBucketsData, type PostBucketsError, type PostBucketsErrors, type PostBucketsResponse, type PostBucketsResponses, type PostConfigsData, type PostConfigsError, type PostConfigsErrors, type PostConfigsResponse, type PostConfigsResponses, type PostDocumentsBulkDeleteData, type PostDocumentsBulkDeleteError, type PostDocumentsBulkDeleteErrors, type PostDocumentsBulkDeleteResponse, type PostDocumentsBulkDeleteResponses, type PostDocumentsPresignedUploadData, type PostDocumentsPresignedUploadError, type PostDocumentsPresignedUploadErrors, type PostDocumentsPresignedUploadResponse, type PostDocumentsPresignedUploadResponses, type PostExtractionBatchesData, type PostExtractionBatchesError, type PostExtractionBatchesErrors, type PostExtractionBatchesResponse, type PostExtractionBatchesResponses, type PostExtractionDocumentsBeginUploadData, type PostExtractionDocumentsBeginUploadError, type PostExtractionDocumentsBeginUploadErrors, type PostExtractionDocumentsBeginUploadResponse, type PostExtractionDocumentsBeginUploadResponses, type PostExtractionDocumentsBulkReprocessData, type PostExtractionDocumentsBulkReprocessError, type PostExtractionDocumentsBulkReprocessErrors, type PostExtractionDocumentsBulkReprocessResponse, type PostExtractionDocumentsBulkReprocessResponses, type PostExtractionDocumentsFindOrBeginUploadData, type PostExtractionDocumentsFindOrBeginUploadError, type PostExtractionDocumentsFindOrBeginUploadErrors, type PostExtractionDocumentsFindOrBeginUploadResponse, type PostExtractionDocumentsFindOrBeginUploadResponses, type PostExtractionDocumentsUploadData, type PostExtractionDocumentsUploadError, type PostExtractionDocumentsUploadErrors, type PostExtractionDocumentsUploadResponse, type PostExtractionDocumentsUploadResponses, type PostExtractionResultsData, type PostExtractionResultsError, type PostExtractionResultsErrors, type PostExtractionResultsResponse, type PostExtractionResultsResponses, type PostExtractionSchemaDiscoveriesData, type PostExtractionSchemaDiscoveriesError, type PostExtractionSchemaDiscoveriesErrors, type PostExtractionSchemaDiscoveriesResponse, type PostExtractionSchemaDiscoveriesResponses, type PostFieldTemplatesData, type PostFieldTemplatesError, type PostFieldTemplatesErrors, type PostFieldTemplatesResponse, type PostFieldTemplatesResponses, type PostInvitationsAcceptByTokenData, type PostInvitationsAcceptByTokenError, type PostInvitationsAcceptByTokenErrors, type PostInvitationsAcceptByTokenResponse, type PostInvitationsAcceptByTokenResponses, type PostInvitationsData, type PostInvitationsError, type PostInvitationsErrors, type PostInvitationsResponse, type PostInvitationsResponses, type PostLlmAnalyticsData, type PostLlmAnalyticsError, type PostLlmAnalyticsErrors, type PostLlmAnalyticsResponse, type PostLlmAnalyticsResponses, type PostMessagesData, type PostMessagesError, type PostMessagesErrors, type PostMessagesResponse, type PostMessagesResponses, type PostNotificationMethodsData, type PostNotificationMethodsError, type PostNotificationMethodsErrors, type PostNotificationMethodsResponse, type PostNotificationMethodsResponses, type PostNotificationPreferencesData, type PostNotificationPreferencesError, type PostNotificationPreferencesErrors, type PostNotificationPreferencesResponse, type PostNotificationPreferencesResponses, type PostObjectsBulkDestroyData, type PostObjectsBulkDestroyError, type PostObjectsBulkDestroyErrors, type PostObjectsBulkDestroyResponse, type PostObjectsBulkDestroyResponses, type PostObjectsCopyData, type PostObjectsCopyError, type PostObjectsCopyErrors, type PostObjectsCopyResponse, type PostObjectsCopyResponses, type PostObjectsMoveData, type PostObjectsMoveError, type PostObjectsMoveErrors, type PostObjectsMoveResponse, type PostObjectsMoveResponses, type PostObjectsRegisterData, type PostObjectsRegisterError, type PostObjectsRegisterErrors, type PostObjectsRegisterResponse, type PostObjectsRegisterResponses, type PostPaymentsData, type PostPaymentsError, type PostPaymentsErrors, type PostPaymentsResponse, type PostPaymentsResponses, type PostSearchBatchData, type PostSearchBatchError, type PostSearchBatchErrors, type PostSearchBatchResponse, type PostSearchBatchResponses, type PostSearchReindexData, type PostSearchReindexError, type PostSearchReindexErrors, type PostSearchReindexResponse, type PostSearchReindexResponses, type PostSearchSavedByIdRunData, type PostSearchSavedByIdRunError, type PostSearchSavedByIdRunErrors, type PostSearchSavedByIdRunResponse, type PostSearchSavedByIdRunResponses, type PostSearchSavedData, type PostSearchSavedError, type PostSearchSavedErrors, type PostSearchSavedResponse, type PostSearchSavedResponses, type PostStorageSignDownloadData, type PostStorageSignDownloadError, type PostStorageSignDownloadErrors, type PostStorageSignDownloadResponse, type PostStorageSignDownloadResponses, type PostStorageSignUploadData, type PostStorageSignUploadError, type PostStorageSignUploadErrors, type PostStorageSignUploadResponse, type PostStorageSignUploadResponses, type PostTenantMembershipsData, type PostTenantMembershipsError, type PostTenantMembershipsErrors, type PostTenantMembershipsResponse, type PostTenantMembershipsResponses, type PostTenantsByIdBuyStorageData, type PostTenantsByIdBuyStorageError, type PostTenantsByIdBuyStorageErrors, type PostTenantsByIdBuyStorageResponse, type PostTenantsByIdBuyStorageResponses, type PostTenantsByIdCreditData, type PostTenantsByIdCreditError, type PostTenantsByIdCreditErrors, type PostTenantsByIdCreditResponse, type PostTenantsByIdCreditResponses, type PostTenantsByIdRemoveStorageData, type PostTenantsByIdRemoveStorageError, type PostTenantsByIdRemoveStorageErrors, type PostTenantsByIdRemoveStorageResponse, type PostTenantsByIdRemoveStorageResponses, type PostTenantsByIdSchedulePurgeData, type PostTenantsByIdSchedulePurgeError, type PostTenantsByIdSchedulePurgeErrors, type PostTenantsByIdSchedulePurgeResponse, type PostTenantsByIdSchedulePurgeResponses, type PostTenantsData, type PostTenantsError, type PostTenantsErrors, type PostTenantsIsvData, type PostTenantsIsvError, type PostTenantsIsvErrors, type PostTenantsIsvResponse, type PostTenantsIsvResponses, type PostTenantsResponse, type PostTenantsResponses, type PostThreadsActiveData, type PostThreadsActiveError, type PostThreadsActiveErrors, type PostThreadsActiveResponse, type PostThreadsActiveResponses, type PostThreadsByIdExportData, type PostThreadsByIdExportError, type PostThreadsByIdExportErrors, type PostThreadsByIdExportResponse, type PostThreadsByIdExportResponses, type PostThreadsByIdForkData, type PostThreadsByIdForkError, type PostThreadsByIdForkErrors, type PostThreadsByIdForkResponse, type PostThreadsByIdForkResponses, type PostThreadsByIdMessagesData, type PostThreadsByIdMessagesError, type PostThreadsByIdMessagesErrors, type PostThreadsByIdMessagesResponse, type PostThreadsByIdMessagesResponses, type PostThreadsByIdSummarizeData, type PostThreadsByIdSummarizeError, type PostThreadsByIdSummarizeErrors, type PostThreadsByIdSummarizeResponse, type PostThreadsByIdSummarizeResponses, type PostThreadsData, type PostThreadsError, type PostThreadsErrors, type PostThreadsResponse, type PostThreadsResponses, type PostTokensData, type PostTokensError, type PostTokensErrors, type PostTokensResponse, type PostTokensResponses, type PostTrainingExamplesBulkData, type PostTrainingExamplesBulkDeleteData, type PostTrainingExamplesBulkDeleteError, type PostTrainingExamplesBulkDeleteErrors, type PostTrainingExamplesBulkDeleteResponse, type PostTrainingExamplesBulkDeleteResponses, type PostTrainingExamplesBulkError, type PostTrainingExamplesBulkErrors, type PostTrainingExamplesBulkResponse, type PostTrainingExamplesBulkResponses, type PostTrainingExamplesData, type PostTrainingExamplesError, type PostTrainingExamplesErrors, type PostTrainingExamplesResponse, type PostTrainingExamplesResponses, type PostTrainingExamplesSearchData, type PostTrainingExamplesSearchError, type PostTrainingExamplesSearchErrors, type PostTrainingExamplesSearchResponse, type PostTrainingExamplesSearchResponses, type PostUserProfilesData, type PostUserProfilesError, type PostUserProfilesErrors, type PostUserProfilesResponse, type PostUserProfilesResponses, type PostUsersAuthConfirmData, type PostUsersAuthConfirmError, type PostUsersAuthConfirmErrors, type PostUsersAuthConfirmResponse, type PostUsersAuthConfirmResponses, type PostUsersAuthLoginData, type PostUsersAuthLoginError, type PostUsersAuthLoginErrors, type PostUsersAuthLoginResponse, type PostUsersAuthLoginResponses, type PostUsersAuthMagicLinkLoginData, type PostUsersAuthMagicLinkLoginError, type PostUsersAuthMagicLinkLoginErrors, type PostUsersAuthMagicLinkLoginResponse, type PostUsersAuthMagicLinkLoginResponses, type PostUsersAuthMagicLinkRequestData, type PostUsersAuthMagicLinkRequestError, type PostUsersAuthMagicLinkRequestErrors, type PostUsersAuthMagicLinkRequestResponse, type PostUsersAuthMagicLinkRequestResponses, type PostUsersAuthRegisterData, type PostUsersAuthRegisterError, type PostUsersAuthRegisterErrors, type PostUsersAuthRegisterResponse, type PostUsersAuthRegisterResponses, type PostUsersAuthRegisterWithOidcData, type PostUsersAuthRegisterWithOidcError, type PostUsersAuthRegisterWithOidcErrors, type PostUsersAuthRegisterWithOidcResponse, type PostUsersAuthRegisterWithOidcResponses, type PostUsersAuthResendConfirmationData, type PostUsersAuthResendConfirmationError, type PostUsersAuthResendConfirmationErrors, type PostUsersAuthResendConfirmationResponse, type PostUsersAuthResendConfirmationResponses, type PostUsersRegisterIsvData, type PostUsersRegisterIsvError, type PostUsersRegisterIsvErrors, type PostUsersRegisterIsvResponse, type PostUsersRegisterIsvResponses, type PostWatcherClaimsData, type PostWatcherClaimsError, type PostWatcherClaimsErrors, type PostWatcherClaimsResponse, type PostWatcherClaimsResponses, type PostWatcherEventsData, type PostWatcherEventsError, type PostWatcherEventsErrors, type PostWatcherEventsResponse, type PostWatcherEventsResponses, type PostWebhookConfigsBulkDisableData, type PostWebhookConfigsBulkDisableError, type PostWebhookConfigsBulkDisableErrors, type PostWebhookConfigsBulkDisableResponse, type PostWebhookConfigsBulkDisableResponses, type PostWebhookConfigsBulkEnableData, type PostWebhookConfigsBulkEnableError, type PostWebhookConfigsBulkEnableErrors, type PostWebhookConfigsBulkEnableResponse, type PostWebhookConfigsBulkEnableResponses, type PostWebhookConfigsByIdReplayData, type PostWebhookConfigsByIdReplayError, type PostWebhookConfigsByIdReplayErrors, type PostWebhookConfigsByIdReplayResponse, type PostWebhookConfigsByIdReplayResponses, type PostWebhookConfigsByIdTestData, type PostWebhookConfigsByIdTestError, type PostWebhookConfigsByIdTestErrors, type PostWebhookConfigsByIdTestResponse, type PostWebhookConfigsByIdTestResponses, type PostWebhookConfigsData, type PostWebhookConfigsError, type PostWebhookConfigsErrors, type PostWebhookConfigsResponse, type PostWebhookConfigsResponses, type PostWebhookDeliveriesBulkRetryData, type PostWebhookDeliveriesBulkRetryError, type PostWebhookDeliveriesBulkRetryErrors, type PostWebhookDeliveriesBulkRetryResponse, type PostWebhookDeliveriesBulkRetryResponses, type PostWebhookDeliveriesByIdRetryData, type PostWebhookDeliveriesByIdRetryError, type PostWebhookDeliveriesByIdRetryErrors, type PostWebhookDeliveriesByIdRetryResponse, type PostWebhookDeliveriesByIdRetryResponses, type PostWorkspaceMembershipsData, type PostWorkspaceMembershipsError, type PostWorkspaceMembershipsErrors, type PostWorkspaceMembershipsResponse, type PostWorkspaceMembershipsResponses, type PostWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, type PostWorkspacesByWorkspaceIdExtractionByDocumentIdMappingError, type PostWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, type PostWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponse, type PostWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedData, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedError, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedErrors, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponse, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponses, type PostWorkspacesByWorkspaceIdExtractionExportsData, type PostWorkspacesByWorkspaceIdExtractionExportsError, type PostWorkspacesByWorkspaceIdExtractionExportsErrors, type PostWorkspacesByWorkspaceIdExtractionExportsResponse, type PostWorkspacesByWorkspaceIdExtractionExportsResponses, type PostWorkspacesData, type PostWorkspacesError, type PostWorkspacesErrors, type PostWorkspacesResponse, type PostWorkspacesResponses, type PresignedDownloadRequest, PresignedDownloadSchema, type PresignedUploadRequest, PresignedUploadSchema, type PresignedUrl, type PricingRule, type PricingStrategy, RateLimitError, type RegisterRequest, RegisterRequestSchema, type RetryConfig, type SavedSearch, type SchemaDiscovery, type Search, type SearchAnalytics, type SearchRequest, SearchRequestSchema, type SemanticCacheEntry, ServerError, type StorageStats, type StorageStatsType, type StreamMessageChunk, type StreamOptions, type Subscription, type SystemMessage, type Tenant, type TenantDocumentStats, type TenantMembership, type TenantPricingOverride, type TenantStats, type Thread, type ThreadCreateRequest, ThreadCreateSchema, TimeoutError, type Token, type TrainingAnalytics, type TrainingExample, type TrainingSession, type Transaction, type Transfer, type User, type UserProfile, ValidationError, type Wallet, type WatcherClaim, type WatcherEvent, type WebhookConfig, type WebhookConfigCreateRequest, WebhookConfigCreateSchema, type WebhookConfigUpdateRequest, WebhookConfigUpdateSchema, type WebhookDelivery, WebhookError, type Workspace, type WorkspaceCreateRequest, WorkspaceCreateSchema, type WorkspaceDocumentStats, type WorkspaceMembership, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, calculateBackoff, client, collectStreamedMessage, gptCore as default, deleteAgentVersionsById, deleteAgentsById, deleteAiConversationsById, deleteAiGraphEdgesById, deleteAiGraphNodesById, deleteAiMessagesById, deleteApiKeysById, deleteApplicationsByApplicationIdEmailTemplatesBySlug, deleteApplicationsById, deleteBucketsById, deleteExtractionBatchesById, deleteExtractionDocumentsById, deleteFieldTemplatesById, deleteMessagesById, deleteNotificationMethodsById, deleteNotificationPreferencesById, deleteObjectsById, deleteSearchSavedById, deleteTenantMembershipsByTenantIdByUserId, deleteTenantsById, deleteThreadsById, deleteTrainingExamplesById, deleteTrainingSessionsById, deleteUserProfilesById, deleteUsersById, deleteWebhookConfigsById, deleteWorkspaceMembershipsByWorkspaceIdByUserId, deleteWorkspacesById, getAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisions, getAgentVersionRevisionsById, getAgentVersions, getAgentVersionsById, getAgentVersionsByIdMetrics, getAgents, getAgentsById, getAgentsByIdSchemaVersions, getAgentsByIdStats, getAgentsByIdTrainingStats, getAgentsByIdUsage, getAgentsUsage, getAiChunksDocumentByDocumentId, getAiConversations, getAiConversationsById, getAiGraphEdges, getAiGraphNodes, getAiGraphNodesBySourceNodeIdRelated, getAiGraphNodesLabelByLabel, getAiMessages, getApiKeys, getApiKeysActive, getApiKeysById, getApiKeysStats, getApplications, getApplicationsByApplicationIdEmailTemplates, getApplicationsByApplicationIdEmailTemplatesBySlug, getApplicationsById, getApplicationsBySlugBySlug, getApplicationsCurrent, getAuditLogs, getAuditLogsActivity, getBuckets, getBucketsAll, getBucketsById, getBucketsByIdObjects, getBucketsByIdStats, getConfigs, getCreditPackages, getCreditPackagesById, getCreditPackagesSlugBySlug, getDocumentsStats, getExtractionBatchesById, getExtractionBatchesByIdUploadUrls, getExtractionBatchesWorkspaceByWorkspaceId, getExtractionDocuments, getExtractionDocumentsById, getExtractionDocumentsByIdStatus, getExtractionDocumentsByIdView, getExtractionDocumentsWorkspaceByWorkspaceId, getExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatus, getExtractionDocumentsWorkspaceByWorkspaceIdExcluded, getExtractionDocumentsWorkspaceByWorkspaceIdReviewQueue, getExtractionDocumentsWorkspaceByWorkspaceIdTrained, getExtractionDocumentsWorkspaceByWorkspaceIdTrashed, getExtractionResultsById, getExtractionResultsDocumentByDocumentId, getExtractionResultsWorkspaceByWorkspaceId, getExtractionSchemaDiscoveriesById, getFieldTemplates, getFieldTemplatesById, getInvitations, getInvitationsConsumeByToken, getInvitationsMe, getLlmAnalytics, getLlmAnalyticsById, getLlmAnalyticsCosts, getLlmAnalyticsPlatform, getLlmAnalyticsSummary, getLlmAnalyticsUsage, getLlmAnalyticsWorkspace, getMessages, getMessagesById, getMessagesSearch, getMessagesSemanticSearch, getNotificationLogs, getNotificationLogsById, getNotificationLogsStats, getNotificationMethods, getNotificationMethodsById, getNotificationPreferences, getNotificationPreferencesById, getObjects, getObjectsById, getPermissions, getPermissionsById, getPermissionsMeta, getPermissionsPresets, getPermissionsPresetsById, getPlans, getPlansById, getPlansSlugBySlug, getSearch, getSearchAnalytics, getSearchAnalyticsSummary, getSearchHealth, getSearchIndexes, getSearchSaved, getSearchSemantic, getSearchStats, getSearchStatus, getSearchSuggest, getStorageStats, getStorageStatsTenantByTenantId, getTenantMemberships, getTenants, getTenantsById, getTenantsByTenantIdDocumentStats, getTenantsByTenantIdStats, getTenantsByTenantIdWorkspaceStats, getThreads, getThreadsById, getThreadsByIdMessages, getThreadsSearch, getThreadsStats, getThreadsWorkspaceStats, getTrainingExamples, getTrainingExamplesById, getTrainingSessionsAgentsByAgentIdSessions, getTrainingSessionsById, getTransactions, getTransactionsById, getUserProfiles, getUserProfilesById, getUserProfilesMe, getUsers, getUsersByEmail, getUsersById, getUsersMe, getUsersMeActivity, getUsersMeDashboard, getUsersMeStats, getUsersMeTenants, getWallet, getWalletInvoices, getWatcherClaims, getWatcherClaimsById, getWatcherClaimsStatus, getWatcherEvents, getWatcherEventsById, getWebhookConfigs, getWebhookConfigsById, getWebhookConfigsByIdEvents, getWebhookConfigsStats, getWebhookDeliveries, getWebhookDeliveriesById, getWebhookDeliveriesStats, getWorkspaceMemberships, getWorkspaces, getWorkspacesAnalyticsBatch, getWorkspacesById, getWorkspacesByIdMembers, getWorkspacesByWorkspaceIdExtractionByDocumentIdMapping, getWorkspacesByWorkspaceIdExtractionExports, getWorkspacesByWorkspaceIdExtractionExportsById, getWorkspacesByWorkspaceIdTrainingAnalytics, getWorkspacesMine, getWorkspacesShared, handleApiError, isRetryableError, paginateAll, paginateToArray, patchAgentsById, patchAgentsByIdSchemaVersionsByVersionId, patchAiConversationsById, patchApiKeysById, patchApiKeysByIdAllocate, patchApiKeysByIdResetPeriod, patchApiKeysByIdRevoke, patchApiKeysByIdRotate, patchApiKeysByIdSetBudget, patchApplicationsByApplicationIdEmailTemplatesBySlug, patchApplicationsById, patchApplicationsByIdAllocateCredits, patchApplicationsByIdGrantCredits, patchBucketsById, patchConfigsByKey, patchExtractionDocumentsByIdCancel, patchExtractionDocumentsByIdDismiss, patchExtractionDocumentsByIdDismissTraining, patchExtractionDocumentsByIdExclude, patchExtractionDocumentsByIdFinishUpload, patchExtractionDocumentsByIdInclude, patchExtractionDocumentsByIdMarkTrained, patchExtractionDocumentsByIdReprocess, patchExtractionDocumentsByIdRestore, patchExtractionDocumentsByIdStatus, patchExtractionDocumentsByIdVerification, patchExtractionResultsByIdCorrections, patchExtractionResultsByIdRegenerate, patchInvitationsByIdAccept, patchInvitationsByIdAcceptByUser, patchInvitationsByIdDecline, patchInvitationsByIdResend, patchInvitationsByIdRevoke, patchMessagesById, patchNotificationMethodsById, patchNotificationMethodsByIdSendVerification, patchNotificationMethodsByIdSetPrimary, patchNotificationMethodsByIdVerify, patchNotificationPreferencesById, patchSearchSavedById, patchTenantMembershipsByTenantIdByUserId, patchTenantsById, patchThreadsById, patchThreadsByIdArchive, patchThreadsByIdUnarchive, patchTrainingExamplesById, patchUserProfilesById, patchUserProfilesByIdAcceptTos, patchUserProfilesByIdDismissAnnouncement, patchUserProfilesByIdDismissWelcome, patchUsersAuthPasswordChange, patchUsersAuthResetPassword, patchUsersByIdAdmin, patchUsersByIdAdminEmail, patchUsersByIdConfirmEmail, patchUsersByIdResetPassword, patchWalletAddons, patchWalletAddonsByAddonSlugCancel, patchWalletAutoTopUp, patchWalletCredits, patchWalletPlan, patchWatcherClaimsById, patchWatcherClaimsByIdRelease, patchWatcherClaimsByIdRetry, patchWebhookConfigsById, patchWebhookConfigsByIdRotateSecret, patchWorkspaceMembershipsByWorkspaceIdByUserId, patchWorkspacesById, patchWorkspacesByIdAllocate, patchWorkspacesByIdPopulateHashes, patchWorkspacesByIdStorageSettings, postAgentTestResults, postAgentVersionComparisons, postAgentVersions, postAgentVersionsByIdAddSystemField, postAgentVersionsByIdRemoveSystemField, postAgentVersionsByIdSetSystemFields, postAgents, postAgentsByIdClone, postAgentsByIdDiscoverSchema, postAgentsByIdExport, postAgentsByIdPublishVersion, postAgentsByIdSchemaVersions, postAgentsByIdSchemaVersionsByVersionIdActivate, postAgentsByIdTeach, postAgentsByIdTest, postAgentsByIdValidate, postAgentsCloneForWorkspace, postAgentsImport, postAgentsPredict, postAiChunksSearch, postAiConversations, postAiEmbed, postAiGraphEdges, postAiGraphNodes, postAiMessages, postAiSearch, postAiSearchAdvanced, postApiKeys, postApplications, postApplicationsByApplicationIdEmailTemplates, postApplicationsByApplicationIdEmailTemplatesBySlugPreview, postApplicationsByApplicationIdEmailTemplatesBySlugTest, postBuckets, postConfigs, postDocumentsBulkDelete, postDocumentsPresignedUpload, postExtractionBatches, postExtractionDocumentsBeginUpload, postExtractionDocumentsBulkReprocess, postExtractionDocumentsFindOrBeginUpload, postExtractionDocumentsUpload, postExtractionResults, postExtractionSchemaDiscoveries, postFieldTemplates, postInvitations, postInvitationsAcceptByToken, postLlmAnalytics, postMessages, postNotificationMethods, postNotificationPreferences, postObjectsBulkDestroy, postObjectsCopy, postObjectsMove, postObjectsRegister, postPayments, postSearchBatch, postSearchReindex, postSearchSaved, postSearchSavedByIdRun, postStorageSignDownload, postStorageSignUpload, postTenantMemberships, postTenants, postTenantsByIdBuyStorage, postTenantsByIdCredit, postTenantsByIdRemoveStorage, postTenantsByIdSchedulePurge, postTenantsIsv, postThreads, postThreadsActive, postThreadsByIdExport, postThreadsByIdFork, postThreadsByIdMessages, postThreadsByIdSummarize, postTokens, postTrainingExamples, postTrainingExamplesBulk, postTrainingExamplesBulkDelete, postTrainingExamplesSearch, postUserProfiles, postUsersAuthConfirm, postUsersAuthLogin, postUsersAuthMagicLinkLogin, postUsersAuthMagicLinkRequest, postUsersAuthRegister, postUsersAuthRegisterWithOidc, postUsersAuthResendConfirmation, postUsersRegisterIsv, postWatcherClaims, postWatcherEvents, postWebhookConfigs, postWebhookConfigsBulkDisable, postWebhookConfigsBulkEnable, postWebhookConfigsByIdReplay, postWebhookConfigsByIdTest, postWebhookDeliveriesBulkRetry, postWebhookDeliveriesByIdRetry, postWorkspaceMemberships, postWorkspaces, postWorkspacesByWorkspaceIdExtractionByDocumentIdMapping, postWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrained, postWorkspacesByWorkspaceIdExtractionExports, retryWithBackoff, sleep, streamMessage, streamSSE, webhooks, withRetry };
|
|
37942
|
+
export { type Account, type Agent, type AgentCreateRequest, AgentCreateSchema, type AgentTestResult, type AgentVersion, type AgentVersionComparison, type AgentVersionFieldsInputCreateType, type AgentVersionType, type AiConfig, type ApiKey, type ApiKeyAllocateRequest, ApiKeyAllocateSchema, type ApiKeyCreateRequest, ApiKeyCreateSchema, type Application, type ApplicationCreateRequest, ApplicationCreateSchema, type ApplicationOauthInputCreateType, type ApplicationOauthInputUpdateType, type ApplicationType, type AuditLog, AuthenticationError, AuthorizationError, type Balance, type Bucket, type BucketCreateRequest, BucketCreateSchema, type BulkDismissalResult, type BulkReprocessResult, type ClientOptions$1 as ClientOptions, type Config$2 as Config, type Conversation, type CreditPackage, type Customer, DEFAULT_RETRY_CONFIG, type DeleteAgentVersionsByIdData, type DeleteAgentVersionsByIdError, type DeleteAgentVersionsByIdErrors, type DeleteAgentVersionsByIdResponses, type DeleteAgentsByIdData, type DeleteAgentsByIdError, type DeleteAgentsByIdErrors, type DeleteAgentsByIdResponses, type DeleteAiConversationsByIdData, type DeleteAiConversationsByIdError, type DeleteAiConversationsByIdErrors, type DeleteAiConversationsByIdResponses, type DeleteAiGraphEdgesByIdData, type DeleteAiGraphEdgesByIdError, type DeleteAiGraphEdgesByIdErrors, type DeleteAiGraphEdgesByIdResponses, type DeleteAiGraphNodesByIdData, type DeleteAiGraphNodesByIdError, type DeleteAiGraphNodesByIdErrors, type DeleteAiGraphNodesByIdResponses, type DeleteAiMessagesByIdData, type DeleteAiMessagesByIdError, type DeleteAiMessagesByIdErrors, type DeleteAiMessagesByIdResponses, type DeleteApiKeysByIdData, type DeleteApiKeysByIdError, type DeleteApiKeysByIdErrors, type DeleteApiKeysByIdResponses, type DeleteApplicationsByApplicationIdEmailTemplatesBySlugData, type DeleteApplicationsByApplicationIdEmailTemplatesBySlugError, type DeleteApplicationsByApplicationIdEmailTemplatesBySlugErrors, type DeleteApplicationsByApplicationIdEmailTemplatesBySlugResponses, type DeleteApplicationsByIdData, type DeleteApplicationsByIdError, type DeleteApplicationsByIdErrors, type DeleteApplicationsByIdResponses, type DeleteBucketsByIdData, type DeleteBucketsByIdError, type DeleteBucketsByIdErrors, type DeleteBucketsByIdResponses, type DeleteExtractionBatchesByIdData, type DeleteExtractionBatchesByIdError, type DeleteExtractionBatchesByIdErrors, type DeleteExtractionBatchesByIdResponses, type DeleteExtractionDocumentsByIdData, type DeleteExtractionDocumentsByIdError, type DeleteExtractionDocumentsByIdErrors, type DeleteExtractionDocumentsByIdResponses, type DeleteExtractionResultsByIdData, type DeleteExtractionResultsByIdError, type DeleteExtractionResultsByIdErrors, type DeleteExtractionResultsByIdResponses, type DeleteFieldTemplatesByIdData, type DeleteFieldTemplatesByIdError, type DeleteFieldTemplatesByIdErrors, type DeleteFieldTemplatesByIdResponses, type DeleteMessagesByIdData, type DeleteMessagesByIdError, type DeleteMessagesByIdErrors, type DeleteMessagesByIdResponses, type DeleteNotificationMethodsByIdData, type DeleteNotificationMethodsByIdError, type DeleteNotificationMethodsByIdErrors, type DeleteNotificationMethodsByIdResponses, type DeleteNotificationPreferencesByIdData, type DeleteNotificationPreferencesByIdError, type DeleteNotificationPreferencesByIdErrors, type DeleteNotificationPreferencesByIdResponses, type DeleteObjectsByIdData, type DeleteObjectsByIdError, type DeleteObjectsByIdErrors, type DeleteObjectsByIdResponses, type DeletePaymentMethodsByIdData, type DeletePaymentMethodsByIdError, type DeletePaymentMethodsByIdErrors, type DeletePaymentMethodsByIdResponses, type DeleteSearchSavedByIdData, type DeleteSearchSavedByIdError, type DeleteSearchSavedByIdErrors, type DeleteSearchSavedByIdResponses, type DeleteTenantMembershipsByTenantIdByUserIdData, type DeleteTenantMembershipsByTenantIdByUserIdError, type DeleteTenantMembershipsByTenantIdByUserIdErrors, type DeleteTenantMembershipsByTenantIdByUserIdResponses, type DeleteTenantsByIdData, type DeleteTenantsByIdError, type DeleteTenantsByIdErrors, type DeleteTenantsByIdResponses, type DeleteThreadsByIdData, type DeleteThreadsByIdError, type DeleteThreadsByIdErrors, type DeleteThreadsByIdResponses, type DeleteTrainingExamplesByIdData, type DeleteTrainingExamplesByIdError, type DeleteTrainingExamplesByIdErrors, type DeleteTrainingExamplesByIdResponses, type DeleteTrainingSessionsByIdData, type DeleteTrainingSessionsByIdError, type DeleteTrainingSessionsByIdErrors, type DeleteTrainingSessionsByIdResponses, type DeleteUserProfilesByIdData, type DeleteUserProfilesByIdError, type DeleteUserProfilesByIdErrors, type DeleteUserProfilesByIdResponses, type DeleteUsersByIdData, type DeleteUsersByIdError, type DeleteUsersByIdErrors, type DeleteUsersByIdResponses, type DeleteWebhookConfigsByIdData, type DeleteWebhookConfigsByIdError, type DeleteWebhookConfigsByIdErrors, type DeleteWebhookConfigsByIdResponses, type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdData, type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdError, type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type DeleteWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type DeleteWorkspacesByIdData, type DeleteWorkspacesByIdError, type DeleteWorkspacesByIdErrors, type DeleteWorkspacesByIdResponses, type DocumentChunk, type DocumentStats, type DocumentUploadBase64Request, DocumentUploadBase64Schema, type EmailTemplate, type EmbedRequest, EmbedRequestSchema, type Embedding, type ErrorResponse, type Errors, type ExtractionBatch, type ExtractionDocument, type ExtractionExport, type ExtractionResult, type FieldMappingConfirmation, type FieldMappingResult, type FieldTemplate, type GetAgentVersionsByIdData, type GetAgentVersionsByIdError, type GetAgentVersionsByIdErrors, type GetAgentVersionsByIdMetricsData, type GetAgentVersionsByIdMetricsError, type GetAgentVersionsByIdMetricsErrors, type GetAgentVersionsByIdMetricsResponse, type GetAgentVersionsByIdMetricsResponses, 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 GetAgentsByIdSchemaVersionsData, type GetAgentsByIdSchemaVersionsError, type GetAgentsByIdSchemaVersionsErrors, type GetAgentsByIdSchemaVersionsResponse, type GetAgentsByIdSchemaVersionsResponses, type GetAgentsByIdStatsData, type GetAgentsByIdStatsError, type GetAgentsByIdStatsErrors, type GetAgentsByIdStatsResponse, type GetAgentsByIdStatsResponses, type GetAgentsByIdTrainingStatsData, type GetAgentsByIdTrainingStatsError, type GetAgentsByIdTrainingStatsErrors, type GetAgentsByIdTrainingStatsResponse, type GetAgentsByIdTrainingStatsResponses, type GetAgentsByIdUsageData, type GetAgentsByIdUsageError, type GetAgentsByIdUsageErrors, type GetAgentsByIdUsageResponse, type GetAgentsByIdUsageResponses, type GetAgentsData, type GetAgentsError, type GetAgentsErrors, type GetAgentsResponse, type GetAgentsResponses, type GetAgentsUsageData, type GetAgentsUsageError, type GetAgentsUsageErrors, type GetAgentsUsageResponse, type GetAgentsUsageResponses, type GetAiChunksDocumentByDocumentIdData, type GetAiChunksDocumentByDocumentIdError, type GetAiChunksDocumentByDocumentIdErrors, type GetAiChunksDocumentByDocumentIdResponse, type GetAiChunksDocumentByDocumentIdResponses, type GetAiConversationsByIdData, type GetAiConversationsByIdError, type GetAiConversationsByIdErrors, type GetAiConversationsByIdResponse, type GetAiConversationsByIdResponses, type GetAiConversationsData, type GetAiConversationsError, type GetAiConversationsErrors, type GetAiConversationsResponse, type GetAiConversationsResponses, type GetAiGraphEdgesData, type GetAiGraphEdgesError, type GetAiGraphEdgesErrors, type GetAiGraphEdgesResponse, type GetAiGraphEdgesResponses, type GetAiGraphNodesBySourceNodeIdRelatedData, type GetAiGraphNodesBySourceNodeIdRelatedError, type GetAiGraphNodesBySourceNodeIdRelatedErrors, type GetAiGraphNodesBySourceNodeIdRelatedResponse, type GetAiGraphNodesBySourceNodeIdRelatedResponses, type GetAiGraphNodesData, type GetAiGraphNodesError, type GetAiGraphNodesErrors, type GetAiGraphNodesLabelByLabelData, type GetAiGraphNodesLabelByLabelError, type GetAiGraphNodesLabelByLabelErrors, type GetAiGraphNodesLabelByLabelResponse, type GetAiGraphNodesLabelByLabelResponses, type GetAiGraphNodesResponse, type GetAiGraphNodesResponses, type GetAiMessagesData, type GetAiMessagesError, type GetAiMessagesErrors, type GetAiMessagesResponse, type GetAiMessagesResponses, type GetApiKeysActiveData, type GetApiKeysActiveError, type GetApiKeysActiveErrors, type GetApiKeysActiveResponse, type GetApiKeysActiveResponses, type GetApiKeysByIdData, type GetApiKeysByIdError, type GetApiKeysByIdErrors, type GetApiKeysByIdResponse, type GetApiKeysByIdResponses, type GetApiKeysData, type GetApiKeysError, type GetApiKeysErrors, type GetApiKeysResponse, type GetApiKeysResponses, type GetApiKeysStatsData, type GetApiKeysStatsError, type GetApiKeysStatsErrors, type GetApiKeysStatsResponse, type GetApiKeysStatsResponses, type GetApplicationsByApplicationIdEmailTemplatesBySlugData, type GetApplicationsByApplicationIdEmailTemplatesBySlugError, type GetApplicationsByApplicationIdEmailTemplatesBySlugErrors, type GetApplicationsByApplicationIdEmailTemplatesBySlugResponse, type GetApplicationsByApplicationIdEmailTemplatesBySlugResponses, type GetApplicationsByApplicationIdEmailTemplatesData, type GetApplicationsByApplicationIdEmailTemplatesError, type GetApplicationsByApplicationIdEmailTemplatesErrors, type GetApplicationsByApplicationIdEmailTemplatesResponse, type GetApplicationsByApplicationIdEmailTemplatesResponses, type GetApplicationsByIdData, type GetApplicationsByIdError, type GetApplicationsByIdErrors, type GetApplicationsByIdResponse, type GetApplicationsByIdResponses, type GetApplicationsBySlugBySlugData, type GetApplicationsBySlugBySlugError, type GetApplicationsBySlugBySlugErrors, type GetApplicationsBySlugBySlugResponse, type GetApplicationsBySlugBySlugResponses, type GetApplicationsCurrentData, type GetApplicationsCurrentError, type GetApplicationsCurrentErrors, type GetApplicationsCurrentResponse, type GetApplicationsCurrentResponses, type GetApplicationsData, type GetApplicationsError, type GetApplicationsErrors, type GetApplicationsResponse, type GetApplicationsResponses, type GetAuditLogsActivityData, type GetAuditLogsActivityError, type GetAuditLogsActivityErrors, type GetAuditLogsActivityResponse, type GetAuditLogsActivityResponses, type GetAuditLogsData, type GetAuditLogsError, type GetAuditLogsErrors, type GetAuditLogsResponse, type GetAuditLogsResponses, type GetBucketsAllData, type GetBucketsAllError, type GetBucketsAllErrors, type GetBucketsAllResponse, type GetBucketsAllResponses, type GetBucketsByIdData, type GetBucketsByIdError, type GetBucketsByIdErrors, type GetBucketsByIdObjectsData, type GetBucketsByIdObjectsError, type GetBucketsByIdObjectsErrors, type GetBucketsByIdObjectsResponse, type GetBucketsByIdObjectsResponses, type GetBucketsByIdResponse, type GetBucketsByIdResponses, type GetBucketsByIdStatsData, type GetBucketsByIdStatsError, type GetBucketsByIdStatsErrors, type GetBucketsByIdStatsResponse, type GetBucketsByIdStatsResponses, type GetBucketsData, type GetBucketsError, type GetBucketsErrors, type GetBucketsResponse, type GetBucketsResponses, type GetConfigsData, type GetConfigsError, type GetConfigsErrors, type GetConfigsResponse, type GetConfigsResponses, type GetCreditPackagesByIdData, type GetCreditPackagesByIdError, type GetCreditPackagesByIdErrors, type GetCreditPackagesByIdResponse, type GetCreditPackagesByIdResponses, type GetCreditPackagesData, type GetCreditPackagesError, type GetCreditPackagesErrors, type GetCreditPackagesResponse, type GetCreditPackagesResponses, type GetCreditPackagesSlugBySlugData, type GetCreditPackagesSlugBySlugError, type GetCreditPackagesSlugBySlugErrors, type GetCreditPackagesSlugBySlugResponse, type GetCreditPackagesSlugBySlugResponses, type GetDocumentsStatsData, type GetDocumentsStatsError, type GetDocumentsStatsErrors, type GetDocumentsStatsResponse, type GetDocumentsStatsResponses, type GetExtractionBatchesByIdData, type GetExtractionBatchesByIdError, type GetExtractionBatchesByIdErrors, type GetExtractionBatchesByIdResponse, type GetExtractionBatchesByIdResponses, type GetExtractionBatchesByIdUploadUrlsData, type GetExtractionBatchesByIdUploadUrlsError, type GetExtractionBatchesByIdUploadUrlsErrors, type GetExtractionBatchesByIdUploadUrlsResponse, type GetExtractionBatchesByIdUploadUrlsResponses, type GetExtractionBatchesWorkspaceByWorkspaceIdData, type GetExtractionBatchesWorkspaceByWorkspaceIdError, type GetExtractionBatchesWorkspaceByWorkspaceIdErrors, type GetExtractionBatchesWorkspaceByWorkspaceIdResponse, type GetExtractionBatchesWorkspaceByWorkspaceIdResponses, type GetExtractionDocumentsByIdData, type GetExtractionDocumentsByIdError, type GetExtractionDocumentsByIdErrors, type GetExtractionDocumentsByIdResponse, type GetExtractionDocumentsByIdResponses, type GetExtractionDocumentsByIdStatusData, type GetExtractionDocumentsByIdStatusError, type GetExtractionDocumentsByIdStatusErrors, type GetExtractionDocumentsByIdStatusResponse, type GetExtractionDocumentsByIdStatusResponses, type GetExtractionDocumentsByIdViewData, type GetExtractionDocumentsByIdViewError, type GetExtractionDocumentsByIdViewErrors, type GetExtractionDocumentsByIdViewResponse, type GetExtractionDocumentsByIdViewResponses, type GetExtractionDocumentsData, type GetExtractionDocumentsError, type GetExtractionDocumentsErrors, type GetExtractionDocumentsResponse, type GetExtractionDocumentsResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusData, type GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusError, type GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdData, type GetExtractionDocumentsWorkspaceByWorkspaceIdError, type GetExtractionDocumentsWorkspaceByWorkspaceIdErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedData, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedError, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueData, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueError, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedData, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedError, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponses, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrashedData, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrashedError, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrashedErrors, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrashedResponse, type GetExtractionDocumentsWorkspaceByWorkspaceIdTrashedResponses, type GetExtractionResultsByIdData, type GetExtractionResultsByIdError, type GetExtractionResultsByIdErrors, type GetExtractionResultsByIdResponse, type GetExtractionResultsByIdResponses, type GetExtractionResultsData, type GetExtractionResultsDocumentByDocumentIdData, type GetExtractionResultsDocumentByDocumentIdError, type GetExtractionResultsDocumentByDocumentIdErrors, type GetExtractionResultsDocumentByDocumentIdResponse, type GetExtractionResultsDocumentByDocumentIdResponses, type GetExtractionResultsError, type GetExtractionResultsErrors, type GetExtractionResultsResponse, type GetExtractionResultsResponses, type GetExtractionResultsWorkspaceByWorkspaceIdData, type GetExtractionResultsWorkspaceByWorkspaceIdError, type GetExtractionResultsWorkspaceByWorkspaceIdErrors, type GetExtractionResultsWorkspaceByWorkspaceIdResponse, type GetExtractionResultsWorkspaceByWorkspaceIdResponses, type GetExtractionSchemaDiscoveriesByIdData, type GetExtractionSchemaDiscoveriesByIdError, type GetExtractionSchemaDiscoveriesByIdErrors, type GetExtractionSchemaDiscoveriesByIdResponse, type GetExtractionSchemaDiscoveriesByIdResponses, type GetFieldTemplatesByIdData, type GetFieldTemplatesByIdError, type GetFieldTemplatesByIdErrors, type GetFieldTemplatesByIdResponse, type GetFieldTemplatesByIdResponses, type GetFieldTemplatesData, type GetFieldTemplatesError, type GetFieldTemplatesErrors, type GetFieldTemplatesResponse, type GetFieldTemplatesResponses, type GetInvitationsConsumeByTokenData, type GetInvitationsConsumeByTokenError, type GetInvitationsConsumeByTokenErrors, type GetInvitationsConsumeByTokenResponse, type GetInvitationsConsumeByTokenResponses, type GetInvitationsData, type GetInvitationsError, type GetInvitationsErrors, type GetInvitationsMeData, type GetInvitationsMeError, type GetInvitationsMeErrors, type GetInvitationsMeResponse, type GetInvitationsMeResponses, type GetInvitationsResponse, type GetInvitationsResponses, type GetLlmAnalyticsByIdData, type GetLlmAnalyticsByIdError, type GetLlmAnalyticsByIdErrors, type GetLlmAnalyticsByIdResponse, type GetLlmAnalyticsByIdResponses, type GetLlmAnalyticsCostsData, type GetLlmAnalyticsCostsError, type GetLlmAnalyticsCostsErrors, type GetLlmAnalyticsCostsResponse, type GetLlmAnalyticsCostsResponses, type GetLlmAnalyticsData, type GetLlmAnalyticsError, type GetLlmAnalyticsErrors, type GetLlmAnalyticsPlatformData, type GetLlmAnalyticsPlatformError, type GetLlmAnalyticsPlatformErrors, type GetLlmAnalyticsPlatformResponse, type GetLlmAnalyticsPlatformResponses, type GetLlmAnalyticsResponse, type GetLlmAnalyticsResponses, type GetLlmAnalyticsSummaryData, type GetLlmAnalyticsSummaryError, type GetLlmAnalyticsSummaryErrors, type GetLlmAnalyticsSummaryResponse, type GetLlmAnalyticsSummaryResponses, type GetLlmAnalyticsUsageData, type GetLlmAnalyticsUsageError, type GetLlmAnalyticsUsageErrors, type GetLlmAnalyticsUsageResponse, type GetLlmAnalyticsUsageResponses, type GetLlmAnalyticsWorkspaceData, type GetLlmAnalyticsWorkspaceError, type GetLlmAnalyticsWorkspaceErrors, type GetLlmAnalyticsWorkspaceResponse, type GetLlmAnalyticsWorkspaceResponses, type GetMessagesByIdData, type GetMessagesByIdError, type GetMessagesByIdErrors, type GetMessagesByIdResponse, type GetMessagesByIdResponses, type GetMessagesData, type GetMessagesError, type GetMessagesErrors, type GetMessagesResponse, type GetMessagesResponses, type GetMessagesSearchData, type GetMessagesSearchError, type GetMessagesSearchErrors, type GetMessagesSearchResponse, type GetMessagesSearchResponses, type GetMessagesSemanticSearchData, type GetMessagesSemanticSearchError, type GetMessagesSemanticSearchErrors, type GetMessagesSemanticSearchResponse, type GetMessagesSemanticSearchResponses, type GetNotificationLogsByIdData, type GetNotificationLogsByIdError, type GetNotificationLogsByIdErrors, type GetNotificationLogsByIdResponse, type GetNotificationLogsByIdResponses, type GetNotificationLogsData, type GetNotificationLogsError, type GetNotificationLogsErrors, type GetNotificationLogsResponse, type GetNotificationLogsResponses, type GetNotificationLogsStatsData, type GetNotificationLogsStatsError, type GetNotificationLogsStatsErrors, type GetNotificationLogsStatsResponse, type GetNotificationLogsStatsResponses, type GetNotificationMethodsByIdData, type GetNotificationMethodsByIdError, type GetNotificationMethodsByIdErrors, type GetNotificationMethodsByIdResponse, type GetNotificationMethodsByIdResponses, type GetNotificationMethodsData, type GetNotificationMethodsError, type GetNotificationMethodsErrors, type GetNotificationMethodsResponse, type GetNotificationMethodsResponses, type GetNotificationPreferencesByIdData, type GetNotificationPreferencesByIdError, type GetNotificationPreferencesByIdErrors, type GetNotificationPreferencesByIdResponse, type GetNotificationPreferencesByIdResponses, type GetNotificationPreferencesData, type GetNotificationPreferencesError, type GetNotificationPreferencesErrors, type GetNotificationPreferencesResponse, type GetNotificationPreferencesResponses, type GetObjectsByIdData, type GetObjectsByIdError, type GetObjectsByIdErrors, type GetObjectsByIdResponse, type GetObjectsByIdResponses, type GetObjectsData, type GetObjectsError, type GetObjectsErrors, type GetObjectsResponse, type GetObjectsResponses, type GetPaymentMethodsByIdData, type GetPaymentMethodsByIdError, type GetPaymentMethodsByIdErrors, type GetPaymentMethodsByIdResponse, type GetPaymentMethodsByIdResponses, type GetPaymentMethodsData, type GetPaymentMethodsError, type GetPaymentMethodsErrors, type GetPaymentMethodsResponse, type GetPaymentMethodsResponses, type GetPermissionsByIdData, type GetPermissionsByIdError, type GetPermissionsByIdErrors, type GetPermissionsByIdResponse, type GetPermissionsByIdResponses, type GetPermissionsData, type GetPermissionsError, type GetPermissionsErrors, type GetPermissionsMetaData, type GetPermissionsMetaError, type GetPermissionsMetaErrors, type GetPermissionsMetaResponse, type GetPermissionsMetaResponses, type GetPermissionsPresetsByIdData, type GetPermissionsPresetsByIdError, type GetPermissionsPresetsByIdErrors, type GetPermissionsPresetsByIdResponse, type GetPermissionsPresetsByIdResponses, type GetPermissionsPresetsData, type GetPermissionsPresetsError, type GetPermissionsPresetsErrors, type GetPermissionsPresetsResponse, type GetPermissionsPresetsResponses, type GetPermissionsResponse, type GetPermissionsResponses, type GetPlansByIdData, type GetPlansByIdError, type GetPlansByIdErrors, type GetPlansByIdResponse, type GetPlansByIdResponses, type GetPlansData, type GetPlansError, type GetPlansErrors, type GetPlansResponse, type GetPlansResponses, type GetPlansSlugBySlugData, type GetPlansSlugBySlugError, type GetPlansSlugBySlugErrors, type GetPlansSlugBySlugResponse, type GetPlansSlugBySlugResponses, type GetSearchAnalyticsData, type GetSearchAnalyticsError, type GetSearchAnalyticsErrors, type GetSearchAnalyticsResponse, type GetSearchAnalyticsResponses, type GetSearchAnalyticsSummaryData, type GetSearchAnalyticsSummaryError, type GetSearchAnalyticsSummaryErrors, type GetSearchAnalyticsSummaryResponse, type GetSearchAnalyticsSummaryResponses, type GetSearchData, type GetSearchError, type GetSearchErrors, type GetSearchHealthData, type GetSearchHealthError, type GetSearchHealthErrors, type GetSearchHealthResponse, type GetSearchHealthResponses, type GetSearchIndexesData, type GetSearchIndexesError, type GetSearchIndexesErrors, type GetSearchIndexesResponse, type GetSearchIndexesResponses, type GetSearchResponse, type GetSearchResponses, type GetSearchSavedData, type GetSearchSavedError, type GetSearchSavedErrors, type GetSearchSavedResponse, type GetSearchSavedResponses, type GetSearchSemanticData, type GetSearchSemanticError, type GetSearchSemanticErrors, type GetSearchSemanticResponse, type GetSearchSemanticResponses, type GetSearchStatsData, type GetSearchStatsError, type GetSearchStatsErrors, type GetSearchStatsResponse, type GetSearchStatsResponses, type GetSearchStatusData, type GetSearchStatusError, type GetSearchStatusErrors, type GetSearchStatusResponse, type GetSearchStatusResponses, type GetSearchSuggestData, type GetSearchSuggestError, type GetSearchSuggestErrors, type GetSearchSuggestResponse, type GetSearchSuggestResponses, type GetStorageStatsData, type GetStorageStatsError, type GetStorageStatsErrors, type GetStorageStatsResponse, type GetStorageStatsResponses, type GetStorageStatsTenantByTenantIdData, type GetStorageStatsTenantByTenantIdError, type GetStorageStatsTenantByTenantIdErrors, type GetStorageStatsTenantByTenantIdResponse, type GetStorageStatsTenantByTenantIdResponses, type GetTenantMembershipsData, type GetTenantMembershipsError, type GetTenantMembershipsErrors, type GetTenantMembershipsResponse, type GetTenantMembershipsResponses, type GetTenantsByIdData, type GetTenantsByIdError, type GetTenantsByIdErrors, type GetTenantsByIdResponse, type GetTenantsByIdResponses, type GetTenantsByTenantIdDocumentStatsData, type GetTenantsByTenantIdDocumentStatsError, type GetTenantsByTenantIdDocumentStatsErrors, type GetTenantsByTenantIdDocumentStatsResponse, type GetTenantsByTenantIdDocumentStatsResponses, type GetTenantsByTenantIdStatsData, type GetTenantsByTenantIdStatsError, type GetTenantsByTenantIdStatsErrors, type GetTenantsByTenantIdStatsResponse, type GetTenantsByTenantIdStatsResponses, type GetTenantsByTenantIdWorkspaceStatsData, type GetTenantsByTenantIdWorkspaceStatsError, type GetTenantsByTenantIdWorkspaceStatsErrors, type GetTenantsByTenantIdWorkspaceStatsResponse, type GetTenantsByTenantIdWorkspaceStatsResponses, type GetTenantsData, type GetTenantsError, type GetTenantsErrors, type GetTenantsResponse, type GetTenantsResponses, type GetThreadsByIdData, type GetThreadsByIdError, type GetThreadsByIdErrors, type GetThreadsByIdMessagesData, type GetThreadsByIdMessagesError, type GetThreadsByIdMessagesErrors, type GetThreadsByIdMessagesResponse, type GetThreadsByIdMessagesResponses, type GetThreadsByIdResponse, type GetThreadsByIdResponses, type GetThreadsData, type GetThreadsError, type GetThreadsErrors, type GetThreadsResponse, type GetThreadsResponses, type GetThreadsSearchData, type GetThreadsSearchError, type GetThreadsSearchErrors, type GetThreadsSearchResponse, type GetThreadsSearchResponses, type GetThreadsStatsData, type GetThreadsStatsError, type GetThreadsStatsErrors, type GetThreadsStatsResponse, type GetThreadsStatsResponses, type GetThreadsWorkspaceStatsData, type GetThreadsWorkspaceStatsError, type GetThreadsWorkspaceStatsErrors, type GetThreadsWorkspaceStatsResponse, type GetThreadsWorkspaceStatsResponses, type GetTrainingExamplesByIdData, type GetTrainingExamplesByIdError, type GetTrainingExamplesByIdErrors, type GetTrainingExamplesByIdResponse, type GetTrainingExamplesByIdResponses, type GetTrainingExamplesData, type GetTrainingExamplesError, type GetTrainingExamplesErrors, type GetTrainingExamplesResponse, type GetTrainingExamplesResponses, type GetTrainingSessionsAgentsByAgentIdSessionsData, type GetTrainingSessionsAgentsByAgentIdSessionsError, type GetTrainingSessionsAgentsByAgentIdSessionsErrors, type GetTrainingSessionsAgentsByAgentIdSessionsResponse, type GetTrainingSessionsAgentsByAgentIdSessionsResponses, type GetTrainingSessionsByIdData, type GetTrainingSessionsByIdError, type GetTrainingSessionsByIdErrors, type GetTrainingSessionsByIdResponse, type GetTrainingSessionsByIdResponses, type GetTransactionsByIdData, type GetTransactionsByIdError, type GetTransactionsByIdErrors, type GetTransactionsByIdResponse, type GetTransactionsByIdResponses, type GetTransactionsData, type GetTransactionsError, type GetTransactionsErrors, type GetTransactionsResponse, type GetTransactionsResponses, type GetUserProfilesByIdData, type GetUserProfilesByIdError, type GetUserProfilesByIdErrors, type GetUserProfilesByIdResponse, type GetUserProfilesByIdResponses, type GetUserProfilesData, type GetUserProfilesError, type GetUserProfilesErrors, type GetUserProfilesMeData, type GetUserProfilesMeError, type GetUserProfilesMeErrors, type GetUserProfilesMeResponse, type GetUserProfilesMeResponses, type GetUserProfilesResponse, type GetUserProfilesResponses, type GetUsersByEmailData, type GetUsersByEmailError, type GetUsersByEmailErrors, type GetUsersByEmailResponse, type GetUsersByEmailResponses, type GetUsersByIdData, type GetUsersByIdError, type GetUsersByIdErrors, type GetUsersByIdResponse, type GetUsersByIdResponses, type GetUsersData, type GetUsersError, type GetUsersErrors, type GetUsersMeActivityData, type GetUsersMeActivityError, type GetUsersMeActivityErrors, type GetUsersMeActivityResponse, type GetUsersMeActivityResponses, type GetUsersMeDashboardData, type GetUsersMeDashboardError, type GetUsersMeDashboardErrors, type GetUsersMeDashboardResponse, type GetUsersMeDashboardResponses, type GetUsersMeData, type GetUsersMeError, type GetUsersMeErrors, type GetUsersMeResponse, type GetUsersMeResponses, type GetUsersMeStatsData, type GetUsersMeStatsError, type GetUsersMeStatsErrors, type GetUsersMeStatsResponse, type GetUsersMeStatsResponses, type GetUsersMeTenantsData, type GetUsersMeTenantsError, type GetUsersMeTenantsErrors, type GetUsersMeTenantsResponse, type GetUsersMeTenantsResponses, type GetUsersResponse, type GetUsersResponses, type GetWalletData, type GetWalletError, type GetWalletErrors, type GetWalletInvoicesData, type GetWalletInvoicesError, type GetWalletInvoicesErrors, type GetWalletInvoicesResponse, type GetWalletInvoicesResponses, type GetWalletPlanPreviewData, type GetWalletPlanPreviewError, type GetWalletPlanPreviewErrors, type GetWalletPlanPreviewResponse, type GetWalletPlanPreviewResponses, type GetWalletResponse, type GetWalletResponses, type GetWatcherClaimsByIdData, type GetWatcherClaimsByIdError, type GetWatcherClaimsByIdErrors, type GetWatcherClaimsByIdResponse, type GetWatcherClaimsByIdResponses, type GetWatcherClaimsData, type GetWatcherClaimsError, type GetWatcherClaimsErrors, type GetWatcherClaimsResponse, type GetWatcherClaimsResponses, type GetWatcherClaimsStatusData, type GetWatcherClaimsStatusError, type GetWatcherClaimsStatusErrors, type GetWatcherClaimsStatusResponse, type GetWatcherClaimsStatusResponses, type GetWatcherEventsByIdData, type GetWatcherEventsByIdError, type GetWatcherEventsByIdErrors, type GetWatcherEventsByIdResponse, type GetWatcherEventsByIdResponses, type GetWatcherEventsData, type GetWatcherEventsError, type GetWatcherEventsErrors, type GetWatcherEventsResponse, type GetWatcherEventsResponses, type GetWebhookConfigsByIdData, type GetWebhookConfigsByIdError, type GetWebhookConfigsByIdErrors, type GetWebhookConfigsByIdEventsData, type GetWebhookConfigsByIdEventsError, type GetWebhookConfigsByIdEventsErrors, type GetWebhookConfigsByIdEventsResponse, type GetWebhookConfigsByIdEventsResponses, type GetWebhookConfigsByIdResponse, type GetWebhookConfigsByIdResponses, type GetWebhookConfigsData, type GetWebhookConfigsError, type GetWebhookConfigsErrors, type GetWebhookConfigsResponse, type GetWebhookConfigsResponses, type GetWebhookConfigsStatsData, type GetWebhookConfigsStatsError, type GetWebhookConfigsStatsErrors, type GetWebhookConfigsStatsResponse, type GetWebhookConfigsStatsResponses, type GetWebhookDeliveriesByIdData, type GetWebhookDeliveriesByIdError, type GetWebhookDeliveriesByIdErrors, type GetWebhookDeliveriesByIdResponse, type GetWebhookDeliveriesByIdResponses, type GetWebhookDeliveriesData, type GetWebhookDeliveriesError, type GetWebhookDeliveriesErrors, type GetWebhookDeliveriesResponse, type GetWebhookDeliveriesResponses, type GetWebhookDeliveriesStatsData, type GetWebhookDeliveriesStatsError, type GetWebhookDeliveriesStatsErrors, type GetWebhookDeliveriesStatsResponse, type GetWebhookDeliveriesStatsResponses, type GetWorkspaceMembershipsData, type GetWorkspaceMembershipsError, type GetWorkspaceMembershipsErrors, type GetWorkspaceMembershipsResponse, type GetWorkspaceMembershipsResponses, type GetWorkspacesAnalyticsBatchData, type GetWorkspacesAnalyticsBatchError, type GetWorkspacesAnalyticsBatchErrors, type GetWorkspacesAnalyticsBatchResponse, type GetWorkspacesAnalyticsBatchResponses, type GetWorkspacesByIdData, type GetWorkspacesByIdError, type GetWorkspacesByIdErrors, type GetWorkspacesByIdMembersData, type GetWorkspacesByIdMembersError, type GetWorkspacesByIdMembersErrors, type GetWorkspacesByIdMembersResponse, type GetWorkspacesByIdMembersResponses, type GetWorkspacesByIdResponse, type GetWorkspacesByIdResponses, type GetWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, type GetWorkspacesByWorkspaceIdExtractionByDocumentIdMappingError, type GetWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, type GetWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponse, type GetWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, type GetWorkspacesByWorkspaceIdExtractionExportsByIdData, type GetWorkspacesByWorkspaceIdExtractionExportsByIdError, type GetWorkspacesByWorkspaceIdExtractionExportsByIdErrors, type GetWorkspacesByWorkspaceIdExtractionExportsByIdResponse, type GetWorkspacesByWorkspaceIdExtractionExportsByIdResponses, type GetWorkspacesByWorkspaceIdExtractionExportsData, type GetWorkspacesByWorkspaceIdExtractionExportsError, type GetWorkspacesByWorkspaceIdExtractionExportsErrors, type GetWorkspacesByWorkspaceIdExtractionExportsResponse, type GetWorkspacesByWorkspaceIdExtractionExportsResponses, type GetWorkspacesByWorkspaceIdTrainingAnalyticsData, type GetWorkspacesByWorkspaceIdTrainingAnalyticsError, type GetWorkspacesByWorkspaceIdTrainingAnalyticsErrors, type GetWorkspacesByWorkspaceIdTrainingAnalyticsResponse, type GetWorkspacesByWorkspaceIdTrainingAnalyticsResponses, type GetWorkspacesData, type GetWorkspacesError, type GetWorkspacesErrors, type GetWorkspacesMineData, type GetWorkspacesMineError, type GetWorkspacesMineErrors, type GetWorkspacesMineResponse, type GetWorkspacesMineResponses, type GetWorkspacesResponse, type GetWorkspacesResponses, type GetWorkspacesSharedData, type GetWorkspacesSharedError, type GetWorkspacesSharedErrors, type GetWorkspacesSharedResponse, type GetWorkspacesSharedResponses, GptCoreError, type GraphEdge, type GraphNode, type Invitation, type InvitationCreateRequest, InvitationCreateSchema, type Invoice, type IsvRevenue, type IsvSettlement, type Ledger, type Link, type Links, type LlmAnalytics, type LoginRequest, LoginRequestSchema, type Message, type MessageSendRequest, MessageSendSchema, NetworkError, NotFoundError, type NotificationLog, type NotificationMethod, type NotificationPreference, type ObjectType, type OperationSuccess, type Options, type PaginatedResponse, type PaginationLinks, type PaginationOptions, type PatchAgentsByIdData, type PatchAgentsByIdError, type PatchAgentsByIdErrors, type PatchAgentsByIdResponse, type PatchAgentsByIdResponses, type PatchAgentsByIdSchemaVersionsByVersionIdData, type PatchAgentsByIdSchemaVersionsByVersionIdError, type PatchAgentsByIdSchemaVersionsByVersionIdErrors, type PatchAgentsByIdSchemaVersionsByVersionIdResponse, type PatchAgentsByIdSchemaVersionsByVersionIdResponses, type PatchAiConversationsByIdData, type PatchAiConversationsByIdError, type PatchAiConversationsByIdErrors, type PatchAiConversationsByIdResponse, type PatchAiConversationsByIdResponses, type PatchApiKeysByIdAllocateData, type PatchApiKeysByIdAllocateError, type PatchApiKeysByIdAllocateErrors, type PatchApiKeysByIdAllocateResponse, type PatchApiKeysByIdAllocateResponses, type PatchApiKeysByIdData, type PatchApiKeysByIdError, type PatchApiKeysByIdErrors, type PatchApiKeysByIdResetPeriodData, type PatchApiKeysByIdResetPeriodError, type PatchApiKeysByIdResetPeriodErrors, type PatchApiKeysByIdResetPeriodResponse, type PatchApiKeysByIdResetPeriodResponses, type PatchApiKeysByIdResponse, type PatchApiKeysByIdResponses, type PatchApiKeysByIdRevokeData, type PatchApiKeysByIdRevokeError, type PatchApiKeysByIdRevokeErrors, type PatchApiKeysByIdRevokeResponse, type PatchApiKeysByIdRevokeResponses, type PatchApiKeysByIdRotateData, type PatchApiKeysByIdRotateError, type PatchApiKeysByIdRotateErrors, type PatchApiKeysByIdRotateResponse, type PatchApiKeysByIdRotateResponses, type PatchApiKeysByIdSetBudgetData, type PatchApiKeysByIdSetBudgetError, type PatchApiKeysByIdSetBudgetErrors, type PatchApiKeysByIdSetBudgetResponse, type PatchApiKeysByIdSetBudgetResponses, type PatchApplicationsByApplicationIdEmailTemplatesBySlugData, type PatchApplicationsByApplicationIdEmailTemplatesBySlugError, type PatchApplicationsByApplicationIdEmailTemplatesBySlugErrors, type PatchApplicationsByApplicationIdEmailTemplatesBySlugResponse, type PatchApplicationsByApplicationIdEmailTemplatesBySlugResponses, type PatchApplicationsByIdAllocateCreditsData, type PatchApplicationsByIdAllocateCreditsError, type PatchApplicationsByIdAllocateCreditsErrors, type PatchApplicationsByIdAllocateCreditsResponse, type PatchApplicationsByIdAllocateCreditsResponses, type PatchApplicationsByIdData, type PatchApplicationsByIdError, type PatchApplicationsByIdErrors, type PatchApplicationsByIdGrantCreditsData, type PatchApplicationsByIdGrantCreditsError, type PatchApplicationsByIdGrantCreditsErrors, type PatchApplicationsByIdGrantCreditsResponse, type PatchApplicationsByIdGrantCreditsResponses, type PatchApplicationsByIdResponse, type PatchApplicationsByIdResponses, type PatchBucketsByIdData, type PatchBucketsByIdError, type PatchBucketsByIdErrors, type PatchBucketsByIdResponse, type PatchBucketsByIdResponses, type PatchConfigsByKeyData, type PatchConfigsByKeyError, type PatchConfigsByKeyErrors, type PatchConfigsByKeyResponse, type PatchConfigsByKeyResponses, type PatchExtractionDocumentsByIdCancelData, type PatchExtractionDocumentsByIdCancelError, type PatchExtractionDocumentsByIdCancelErrors, type PatchExtractionDocumentsByIdCancelResponse, type PatchExtractionDocumentsByIdCancelResponses, type PatchExtractionDocumentsByIdDismissData, type PatchExtractionDocumentsByIdDismissError, type PatchExtractionDocumentsByIdDismissErrors, type PatchExtractionDocumentsByIdDismissResponse, type PatchExtractionDocumentsByIdDismissResponses, type PatchExtractionDocumentsByIdDismissTrainingData, type PatchExtractionDocumentsByIdDismissTrainingError, type PatchExtractionDocumentsByIdDismissTrainingErrors, type PatchExtractionDocumentsByIdDismissTrainingResponse, type PatchExtractionDocumentsByIdDismissTrainingResponses, type PatchExtractionDocumentsByIdExcludeData, type PatchExtractionDocumentsByIdExcludeError, type PatchExtractionDocumentsByIdExcludeErrors, type PatchExtractionDocumentsByIdExcludeResponse, type PatchExtractionDocumentsByIdExcludeResponses, type PatchExtractionDocumentsByIdFinishUploadData, type PatchExtractionDocumentsByIdFinishUploadError, type PatchExtractionDocumentsByIdFinishUploadErrors, type PatchExtractionDocumentsByIdFinishUploadResponse, type PatchExtractionDocumentsByIdFinishUploadResponses, type PatchExtractionDocumentsByIdIncludeData, type PatchExtractionDocumentsByIdIncludeError, type PatchExtractionDocumentsByIdIncludeErrors, type PatchExtractionDocumentsByIdIncludeResponse, type PatchExtractionDocumentsByIdIncludeResponses, type PatchExtractionDocumentsByIdMarkTrainedData, type PatchExtractionDocumentsByIdMarkTrainedError, type PatchExtractionDocumentsByIdMarkTrainedErrors, type PatchExtractionDocumentsByIdMarkTrainedResponse, type PatchExtractionDocumentsByIdMarkTrainedResponses, type PatchExtractionDocumentsByIdReprocessData, type PatchExtractionDocumentsByIdReprocessError, type PatchExtractionDocumentsByIdReprocessErrors, type PatchExtractionDocumentsByIdReprocessResponse, type PatchExtractionDocumentsByIdReprocessResponses, type PatchExtractionDocumentsByIdRestoreData, type PatchExtractionDocumentsByIdRestoreError, type PatchExtractionDocumentsByIdRestoreErrors, type PatchExtractionDocumentsByIdRestoreResponse, type PatchExtractionDocumentsByIdRestoreResponses, type PatchExtractionDocumentsByIdStatusData, type PatchExtractionDocumentsByIdStatusError, type PatchExtractionDocumentsByIdStatusErrors, type PatchExtractionDocumentsByIdStatusResponse, type PatchExtractionDocumentsByIdStatusResponses, type PatchExtractionDocumentsByIdVerificationData, type PatchExtractionDocumentsByIdVerificationError, type PatchExtractionDocumentsByIdVerificationErrors, type PatchExtractionDocumentsByIdVerificationResponse, type PatchExtractionDocumentsByIdVerificationResponses, type PatchExtractionResultsByIdData, type PatchExtractionResultsByIdError, type PatchExtractionResultsByIdErrors, type PatchExtractionResultsByIdRegenerateData, type PatchExtractionResultsByIdRegenerateError, type PatchExtractionResultsByIdRegenerateErrors, type PatchExtractionResultsByIdRegenerateResponse, type PatchExtractionResultsByIdRegenerateResponses, type PatchExtractionResultsByIdResponse, type PatchExtractionResultsByIdResponses, type PatchExtractionResultsByIdSaveCorrectionsData, type PatchExtractionResultsByIdSaveCorrectionsError, type PatchExtractionResultsByIdSaveCorrectionsErrors, type PatchExtractionResultsByIdSaveCorrectionsResponse, type PatchExtractionResultsByIdSaveCorrectionsResponses, type PatchInvitationsByIdAcceptByUserData, type PatchInvitationsByIdAcceptByUserError, type PatchInvitationsByIdAcceptByUserErrors, type PatchInvitationsByIdAcceptByUserResponse, type PatchInvitationsByIdAcceptByUserResponses, type PatchInvitationsByIdAcceptData, type PatchInvitationsByIdAcceptError, type PatchInvitationsByIdAcceptErrors, type PatchInvitationsByIdAcceptResponse, type PatchInvitationsByIdAcceptResponses, type PatchInvitationsByIdDeclineData, type PatchInvitationsByIdDeclineError, type PatchInvitationsByIdDeclineErrors, type PatchInvitationsByIdDeclineResponse, type PatchInvitationsByIdDeclineResponses, type PatchInvitationsByIdResendData, type PatchInvitationsByIdResendError, type PatchInvitationsByIdResendErrors, type PatchInvitationsByIdResendResponse, type PatchInvitationsByIdResendResponses, type PatchInvitationsByIdRevokeData, type PatchInvitationsByIdRevokeError, type PatchInvitationsByIdRevokeErrors, type PatchInvitationsByIdRevokeResponse, type PatchInvitationsByIdRevokeResponses, type PatchMessagesByIdData, type PatchMessagesByIdError, type PatchMessagesByIdErrors, type PatchMessagesByIdResponse, type PatchMessagesByIdResponses, type PatchNotificationMethodsByIdData, type PatchNotificationMethodsByIdError, type PatchNotificationMethodsByIdErrors, type PatchNotificationMethodsByIdResponse, type PatchNotificationMethodsByIdResponses, type PatchNotificationMethodsByIdSendVerificationData, type PatchNotificationMethodsByIdSendVerificationError, type PatchNotificationMethodsByIdSendVerificationErrors, type PatchNotificationMethodsByIdSendVerificationResponse, type PatchNotificationMethodsByIdSendVerificationResponses, type PatchNotificationMethodsByIdSetPrimaryData, type PatchNotificationMethodsByIdSetPrimaryError, type PatchNotificationMethodsByIdSetPrimaryErrors, type PatchNotificationMethodsByIdSetPrimaryResponse, type PatchNotificationMethodsByIdSetPrimaryResponses, type PatchNotificationMethodsByIdVerifyData, type PatchNotificationMethodsByIdVerifyError, type PatchNotificationMethodsByIdVerifyErrors, type PatchNotificationMethodsByIdVerifyResponse, type PatchNotificationMethodsByIdVerifyResponses, type PatchNotificationPreferencesByIdData, type PatchNotificationPreferencesByIdError, type PatchNotificationPreferencesByIdErrors, type PatchNotificationPreferencesByIdResponse, type PatchNotificationPreferencesByIdResponses, type PatchPaymentMethodsByIdData, type PatchPaymentMethodsByIdDefaultData, type PatchPaymentMethodsByIdDefaultError, type PatchPaymentMethodsByIdDefaultErrors, type PatchPaymentMethodsByIdDefaultResponse, type PatchPaymentMethodsByIdDefaultResponses, type PatchPaymentMethodsByIdError, type PatchPaymentMethodsByIdErrors, type PatchPaymentMethodsByIdResponse, type PatchPaymentMethodsByIdResponses, type PatchSearchSavedByIdData, type PatchSearchSavedByIdError, type PatchSearchSavedByIdErrors, type PatchSearchSavedByIdResponse, type PatchSearchSavedByIdResponses, type PatchTenantMembershipsByTenantIdByUserIdData, type PatchTenantMembershipsByTenantIdByUserIdError, type PatchTenantMembershipsByTenantIdByUserIdErrors, type PatchTenantMembershipsByTenantIdByUserIdResponse, type PatchTenantMembershipsByTenantIdByUserIdResponses, type PatchTenantsByIdData, type PatchTenantsByIdError, type PatchTenantsByIdErrors, type PatchTenantsByIdResponse, type PatchTenantsByIdResponses, type PatchThreadsByIdArchiveData, type PatchThreadsByIdArchiveError, type PatchThreadsByIdArchiveErrors, type PatchThreadsByIdArchiveResponse, type PatchThreadsByIdArchiveResponses, type PatchThreadsByIdData, type PatchThreadsByIdError, type PatchThreadsByIdErrors, type PatchThreadsByIdResponse, type PatchThreadsByIdResponses, type PatchThreadsByIdUnarchiveData, type PatchThreadsByIdUnarchiveError, type PatchThreadsByIdUnarchiveErrors, type PatchThreadsByIdUnarchiveResponse, type PatchThreadsByIdUnarchiveResponses, type PatchTrainingExamplesByIdData, type PatchTrainingExamplesByIdError, type PatchTrainingExamplesByIdErrors, type PatchTrainingExamplesByIdResponse, type PatchTrainingExamplesByIdResponses, type PatchUserProfilesByIdAcceptTosData, type PatchUserProfilesByIdAcceptTosError, type PatchUserProfilesByIdAcceptTosErrors, type PatchUserProfilesByIdAcceptTosResponse, type PatchUserProfilesByIdAcceptTosResponses, type PatchUserProfilesByIdData, type PatchUserProfilesByIdDismissAnnouncementData, type PatchUserProfilesByIdDismissAnnouncementError, type PatchUserProfilesByIdDismissAnnouncementErrors, type PatchUserProfilesByIdDismissAnnouncementResponse, type PatchUserProfilesByIdDismissAnnouncementResponses, type PatchUserProfilesByIdDismissWelcomeData, type PatchUserProfilesByIdDismissWelcomeError, type PatchUserProfilesByIdDismissWelcomeErrors, type PatchUserProfilesByIdDismissWelcomeResponse, type PatchUserProfilesByIdDismissWelcomeResponses, type PatchUserProfilesByIdError, type PatchUserProfilesByIdErrors, type PatchUserProfilesByIdResponse, type PatchUserProfilesByIdResponses, type PatchUsersAuthPasswordChangeData, type PatchUsersAuthPasswordChangeError, type PatchUsersAuthPasswordChangeErrors, type PatchUsersAuthPasswordChangeResponse, type PatchUsersAuthPasswordChangeResponses, type PatchUsersAuthResetPasswordData, type PatchUsersAuthResetPasswordError, type PatchUsersAuthResetPasswordErrors, type PatchUsersAuthResetPasswordResponse, type PatchUsersAuthResetPasswordResponses, type PatchUsersByIdAdminData, type PatchUsersByIdAdminEmailData, type PatchUsersByIdAdminEmailError, type PatchUsersByIdAdminEmailErrors, type PatchUsersByIdAdminEmailResponse, type PatchUsersByIdAdminEmailResponses, type PatchUsersByIdAdminError, type PatchUsersByIdAdminErrors, type PatchUsersByIdAdminResponse, type PatchUsersByIdAdminResponses, type PatchUsersByIdConfirmEmailData, type PatchUsersByIdConfirmEmailError, type PatchUsersByIdConfirmEmailErrors, type PatchUsersByIdConfirmEmailResponse, type PatchUsersByIdConfirmEmailResponses, type PatchUsersByIdResetPasswordData, type PatchUsersByIdResetPasswordError, type PatchUsersByIdResetPasswordErrors, type PatchUsersByIdResetPasswordResponse, type PatchUsersByIdResetPasswordResponses, type PatchWalletAddonsByAddonSlugCancelData, type PatchWalletAddonsByAddonSlugCancelError, type PatchWalletAddonsByAddonSlugCancelErrors, type PatchWalletAddonsByAddonSlugCancelResponse, type PatchWalletAddonsByAddonSlugCancelResponses, type PatchWalletAddonsData, type PatchWalletAddonsError, type PatchWalletAddonsErrors, type PatchWalletAddonsResponse, type PatchWalletAddonsResponses, type PatchWalletAutoTopUpData, type PatchWalletAutoTopUpError, type PatchWalletAutoTopUpErrors, type PatchWalletAutoTopUpResponse, type PatchWalletAutoTopUpResponses, type PatchWalletCreditsData, type PatchWalletCreditsError, type PatchWalletCreditsErrors, type PatchWalletCreditsResponse, type PatchWalletCreditsResponses, type PatchWalletPlanData, type PatchWalletPlanError, type PatchWalletPlanErrors, type PatchWalletPlanResponse, type PatchWalletPlanResponses, type PatchWatcherClaimsByIdData, type PatchWatcherClaimsByIdError, type PatchWatcherClaimsByIdErrors, type PatchWatcherClaimsByIdReleaseData, type PatchWatcherClaimsByIdReleaseError, type PatchWatcherClaimsByIdReleaseErrors, type PatchWatcherClaimsByIdReleaseResponse, type PatchWatcherClaimsByIdReleaseResponses, type PatchWatcherClaimsByIdResponse, type PatchWatcherClaimsByIdResponses, type PatchWatcherClaimsByIdRetryData, type PatchWatcherClaimsByIdRetryError, type PatchWatcherClaimsByIdRetryErrors, type PatchWatcherClaimsByIdRetryResponse, type PatchWatcherClaimsByIdRetryResponses, type PatchWebhookConfigsByIdData, type PatchWebhookConfigsByIdError, type PatchWebhookConfigsByIdErrors, type PatchWebhookConfigsByIdResponse, type PatchWebhookConfigsByIdResponses, type PatchWebhookConfigsByIdRotateSecretData, type PatchWebhookConfigsByIdRotateSecretError, type PatchWebhookConfigsByIdRotateSecretErrors, type PatchWebhookConfigsByIdRotateSecretResponse, type PatchWebhookConfigsByIdRotateSecretResponses, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdData, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdError, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdResponse, type PatchWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type PatchWorkspacesByIdAllocateData, type PatchWorkspacesByIdAllocateError, type PatchWorkspacesByIdAllocateErrors, type PatchWorkspacesByIdAllocateResponse, type PatchWorkspacesByIdAllocateResponses, type PatchWorkspacesByIdData, type PatchWorkspacesByIdError, type PatchWorkspacesByIdErrors, type PatchWorkspacesByIdResponse, type PatchWorkspacesByIdResponses, type PatchWorkspacesByIdStorageSettingsData, type PatchWorkspacesByIdStorageSettingsError, type PatchWorkspacesByIdStorageSettingsErrors, type PatchWorkspacesByIdStorageSettingsResponse, type PatchWorkspacesByIdStorageSettingsResponses, type Payment, type PaymentMethod, type Permission, type PermissionMeta, type PermissionPreset, type Plan, type PostAgentTestResultsData, type PostAgentTestResultsError, type PostAgentTestResultsErrors, type PostAgentTestResultsResponse, type PostAgentTestResultsResponses, type PostAgentVersionComparisonsData, type PostAgentVersionComparisonsError, type PostAgentVersionComparisonsErrors, type PostAgentVersionComparisonsResponse, type PostAgentVersionComparisonsResponses, type PostAgentVersionsByIdAddSystemFieldData, type PostAgentVersionsByIdAddSystemFieldError, type PostAgentVersionsByIdAddSystemFieldErrors, type PostAgentVersionsByIdAddSystemFieldResponses, type PostAgentVersionsByIdRemoveSystemFieldData, type PostAgentVersionsByIdRemoveSystemFieldError, type PostAgentVersionsByIdRemoveSystemFieldErrors, type PostAgentVersionsByIdRemoveSystemFieldResponses, type PostAgentVersionsByIdSetSystemFieldsData, type PostAgentVersionsByIdSetSystemFieldsError, type PostAgentVersionsByIdSetSystemFieldsErrors, type PostAgentVersionsByIdSetSystemFieldsResponses, type PostAgentVersionsData, type PostAgentVersionsError, type PostAgentVersionsErrors, type PostAgentVersionsResponse, type PostAgentVersionsResponses, type PostAgentsByIdCloneData, type PostAgentsByIdCloneError, type PostAgentsByIdCloneErrors, type PostAgentsByIdCloneResponse, type PostAgentsByIdCloneResponses, type PostAgentsByIdDiscoverSchemaData, type PostAgentsByIdDiscoverSchemaError, type PostAgentsByIdDiscoverSchemaErrors, type PostAgentsByIdDiscoverSchemaResponse, type PostAgentsByIdDiscoverSchemaResponses, type PostAgentsByIdExportData, type PostAgentsByIdExportError, type PostAgentsByIdExportErrors, type PostAgentsByIdExportResponse, type PostAgentsByIdExportResponses, type PostAgentsByIdPublishVersionData, type PostAgentsByIdPublishVersionError, type PostAgentsByIdPublishVersionErrors, type PostAgentsByIdPublishVersionResponse, type PostAgentsByIdPublishVersionResponses, type PostAgentsByIdSchemaVersionsByVersionIdActivateData, type PostAgentsByIdSchemaVersionsByVersionIdActivateError, type PostAgentsByIdSchemaVersionsByVersionIdActivateErrors, type PostAgentsByIdSchemaVersionsByVersionIdActivateResponse, type PostAgentsByIdSchemaVersionsByVersionIdActivateResponses, type PostAgentsByIdSchemaVersionsData, type PostAgentsByIdSchemaVersionsError, type PostAgentsByIdSchemaVersionsErrors, type PostAgentsByIdSchemaVersionsResponse, type PostAgentsByIdSchemaVersionsResponses, type PostAgentsByIdTeachData, type PostAgentsByIdTeachError, type PostAgentsByIdTeachErrors, type PostAgentsByIdTeachResponse, type PostAgentsByIdTeachResponses, type PostAgentsByIdTestData, type PostAgentsByIdTestError, type PostAgentsByIdTestErrors, type PostAgentsByIdTestResponse, type PostAgentsByIdTestResponses, type PostAgentsByIdValidateData, type PostAgentsByIdValidateError, type PostAgentsByIdValidateErrors, type PostAgentsByIdValidateResponse, type PostAgentsByIdValidateResponses, type PostAgentsCloneForWorkspaceData, type PostAgentsCloneForWorkspaceError, type PostAgentsCloneForWorkspaceErrors, type PostAgentsCloneForWorkspaceResponse, type PostAgentsCloneForWorkspaceResponses, type PostAgentsData, type PostAgentsError, type PostAgentsErrors, type PostAgentsImportData, type PostAgentsImportError, type PostAgentsImportErrors, type PostAgentsImportResponse, type PostAgentsImportResponses, type PostAgentsPredictData, type PostAgentsPredictError, type PostAgentsPredictErrors, type PostAgentsPredictResponse, type PostAgentsPredictResponses, type PostAgentsResponse, type PostAgentsResponses, type PostAiChunksSearchData, type PostAiChunksSearchError, type PostAiChunksSearchErrors, type PostAiChunksSearchResponse, type PostAiChunksSearchResponses, type PostAiConversationsData, type PostAiConversationsError, type PostAiConversationsErrors, type PostAiConversationsResponse, type PostAiConversationsResponses, type PostAiEmbedData, type PostAiEmbedError, type PostAiEmbedErrors, type PostAiEmbedResponse, type PostAiEmbedResponses, type PostAiGraphEdgesData, type PostAiGraphEdgesError, type PostAiGraphEdgesErrors, type PostAiGraphEdgesResponse, type PostAiGraphEdgesResponses, type PostAiGraphNodesData, type PostAiGraphNodesError, type PostAiGraphNodesErrors, type PostAiGraphNodesResponse, type PostAiGraphNodesResponses, type PostAiMessagesData, type PostAiMessagesError, type PostAiMessagesErrors, type PostAiMessagesResponse, type PostAiMessagesResponses, type PostAiSearchAdvancedData, type PostAiSearchAdvancedError, type PostAiSearchAdvancedErrors, type PostAiSearchAdvancedResponse, type PostAiSearchAdvancedResponses, type PostAiSearchData, type PostAiSearchError, type PostAiSearchErrors, type PostAiSearchResponse, type PostAiSearchResponses, type PostApiKeysData, type PostApiKeysError, type PostApiKeysErrors, type PostApiKeysResponse, type PostApiKeysResponses, type PostApplicationsByApplicationIdEmailTemplatesBySlugPreviewData, type PostApplicationsByApplicationIdEmailTemplatesBySlugPreviewError, type PostApplicationsByApplicationIdEmailTemplatesBySlugPreviewErrors, type PostApplicationsByApplicationIdEmailTemplatesBySlugPreviewResponse, type PostApplicationsByApplicationIdEmailTemplatesBySlugPreviewResponses, type PostApplicationsByApplicationIdEmailTemplatesBySlugTestData, type PostApplicationsByApplicationIdEmailTemplatesBySlugTestError, type PostApplicationsByApplicationIdEmailTemplatesBySlugTestErrors, type PostApplicationsByApplicationIdEmailTemplatesBySlugTestResponse, type PostApplicationsByApplicationIdEmailTemplatesBySlugTestResponses, type PostApplicationsByApplicationIdEmailTemplatesData, type PostApplicationsByApplicationIdEmailTemplatesError, type PostApplicationsByApplicationIdEmailTemplatesErrors, type PostApplicationsByApplicationIdEmailTemplatesResponse, type PostApplicationsByApplicationIdEmailTemplatesResponses, type PostApplicationsData, type PostApplicationsError, type PostApplicationsErrors, type PostApplicationsResponse, type PostApplicationsResponses, type PostBucketsData, type PostBucketsError, type PostBucketsErrors, type PostBucketsResponse, type PostBucketsResponses, type PostConfigsData, type PostConfigsError, type PostConfigsErrors, type PostConfigsResponse, type PostConfigsResponses, type PostDocumentsBulkDeleteData, type PostDocumentsBulkDeleteError, type PostDocumentsBulkDeleteErrors, type PostDocumentsBulkDeleteResponse, type PostDocumentsBulkDeleteResponses, type PostDocumentsPresignedUploadData, type PostDocumentsPresignedUploadError, type PostDocumentsPresignedUploadErrors, type PostDocumentsPresignedUploadResponse, type PostDocumentsPresignedUploadResponses, type PostExtractionBatchesData, type PostExtractionBatchesError, type PostExtractionBatchesErrors, type PostExtractionBatchesResponse, type PostExtractionBatchesResponses, type PostExtractionDocumentsBeginUploadData, type PostExtractionDocumentsBeginUploadError, type PostExtractionDocumentsBeginUploadErrors, type PostExtractionDocumentsBeginUploadResponse, type PostExtractionDocumentsBeginUploadResponses, type PostExtractionDocumentsBulkReprocessData, type PostExtractionDocumentsBulkReprocessError, type PostExtractionDocumentsBulkReprocessErrors, type PostExtractionDocumentsBulkReprocessResponse, type PostExtractionDocumentsBulkReprocessResponses, type PostExtractionDocumentsUploadData, type PostExtractionDocumentsUploadError, type PostExtractionDocumentsUploadErrors, type PostExtractionDocumentsUploadResponse, type PostExtractionDocumentsUploadResponses, type PostExtractionSchemaDiscoveriesData, type PostExtractionSchemaDiscoveriesError, type PostExtractionSchemaDiscoveriesErrors, type PostExtractionSchemaDiscoveriesResponse, type PostExtractionSchemaDiscoveriesResponses, type PostFieldTemplatesData, type PostFieldTemplatesError, type PostFieldTemplatesErrors, type PostFieldTemplatesResponse, type PostFieldTemplatesResponses, type PostInvitationsAcceptByTokenData, type PostInvitationsAcceptByTokenError, type PostInvitationsAcceptByTokenErrors, type PostInvitationsAcceptByTokenResponse, type PostInvitationsAcceptByTokenResponses, type PostInvitationsData, type PostInvitationsError, type PostInvitationsErrors, type PostInvitationsResponse, type PostInvitationsResponses, type PostLlmAnalyticsData, type PostLlmAnalyticsError, type PostLlmAnalyticsErrors, type PostLlmAnalyticsResponse, type PostLlmAnalyticsResponses, type PostMessagesData, type PostMessagesError, type PostMessagesErrors, type PostMessagesResponse, type PostMessagesResponses, type PostNotificationMethodsData, type PostNotificationMethodsError, type PostNotificationMethodsErrors, type PostNotificationMethodsResponse, type PostNotificationMethodsResponses, type PostNotificationPreferencesData, type PostNotificationPreferencesError, type PostNotificationPreferencesErrors, type PostNotificationPreferencesResponse, type PostNotificationPreferencesResponses, type PostObjectsBulkDestroyData, type PostObjectsBulkDestroyError, type PostObjectsBulkDestroyErrors, type PostObjectsBulkDestroyResponse, type PostObjectsBulkDestroyResponses, type PostObjectsCopyData, type PostObjectsCopyError, type PostObjectsCopyErrors, type PostObjectsCopyResponse, type PostObjectsCopyResponses, type PostObjectsMoveData, type PostObjectsMoveError, type PostObjectsMoveErrors, type PostObjectsMoveResponse, type PostObjectsMoveResponses, type PostObjectsRegisterData, type PostObjectsRegisterError, type PostObjectsRegisterErrors, type PostObjectsRegisterResponse, type PostObjectsRegisterResponses, type PostPaymentMethodsData, type PostPaymentMethodsError, type PostPaymentMethodsErrors, type PostPaymentMethodsResponse, type PostPaymentMethodsResponses, type PostPaymentMethodsTokenizeData, type PostPaymentMethodsTokenizeError, type PostPaymentMethodsTokenizeErrors, type PostPaymentMethodsTokenizeResponse, type PostPaymentMethodsTokenizeResponses, type PostPaymentsData, type PostPaymentsError, type PostPaymentsErrors, type PostPaymentsResponse, type PostPaymentsResponses, type PostSearchBatchData, type PostSearchBatchError, type PostSearchBatchErrors, type PostSearchBatchResponse, type PostSearchBatchResponses, type PostSearchReindexData, type PostSearchReindexError, type PostSearchReindexErrors, type PostSearchReindexResponse, type PostSearchReindexResponses, type PostSearchSavedByIdRunData, type PostSearchSavedByIdRunError, type PostSearchSavedByIdRunErrors, type PostSearchSavedByIdRunResponse, type PostSearchSavedByIdRunResponses, type PostSearchSavedData, type PostSearchSavedError, type PostSearchSavedErrors, type PostSearchSavedResponse, type PostSearchSavedResponses, type PostStorageSignDownloadData, type PostStorageSignDownloadError, type PostStorageSignDownloadErrors, type PostStorageSignDownloadResponse, type PostStorageSignDownloadResponses, type PostStorageSignUploadData, type PostStorageSignUploadError, type PostStorageSignUploadErrors, type PostStorageSignUploadResponse, type PostStorageSignUploadResponses, type PostTenantMembershipsData, type PostTenantMembershipsError, type PostTenantMembershipsErrors, type PostTenantMembershipsResponse, type PostTenantMembershipsResponses, type PostTenantsByIdBuyStorageData, type PostTenantsByIdBuyStorageError, type PostTenantsByIdBuyStorageErrors, type PostTenantsByIdBuyStorageResponse, type PostTenantsByIdBuyStorageResponses, type PostTenantsByIdCreditData, type PostTenantsByIdCreditError, type PostTenantsByIdCreditErrors, type PostTenantsByIdCreditResponse, type PostTenantsByIdCreditResponses, type PostTenantsByIdRemoveStorageData, type PostTenantsByIdRemoveStorageError, type PostTenantsByIdRemoveStorageErrors, type PostTenantsByIdRemoveStorageResponse, type PostTenantsByIdRemoveStorageResponses, type PostTenantsByIdSchedulePurgeData, type PostTenantsByIdSchedulePurgeError, type PostTenantsByIdSchedulePurgeErrors, type PostTenantsByIdSchedulePurgeResponse, type PostTenantsByIdSchedulePurgeResponses, type PostTenantsData, type PostTenantsError, type PostTenantsErrors, type PostTenantsIsvData, type PostTenantsIsvError, type PostTenantsIsvErrors, type PostTenantsIsvResponse, type PostTenantsIsvResponses, type PostTenantsResponse, type PostTenantsResponses, type PostThreadsActiveData, type PostThreadsActiveError, type PostThreadsActiveErrors, type PostThreadsActiveResponse, type PostThreadsActiveResponses, type PostThreadsByIdExportData, type PostThreadsByIdExportError, type PostThreadsByIdExportErrors, type PostThreadsByIdExportResponse, type PostThreadsByIdExportResponses, type PostThreadsByIdForkData, type PostThreadsByIdForkError, type PostThreadsByIdForkErrors, type PostThreadsByIdForkResponse, type PostThreadsByIdForkResponses, type PostThreadsByIdMessagesData, type PostThreadsByIdMessagesError, type PostThreadsByIdMessagesErrors, type PostThreadsByIdMessagesResponse, type PostThreadsByIdMessagesResponses, type PostThreadsByIdSummarizeData, type PostThreadsByIdSummarizeError, type PostThreadsByIdSummarizeErrors, type PostThreadsByIdSummarizeResponse, type PostThreadsByIdSummarizeResponses, type PostThreadsData, type PostThreadsError, type PostThreadsErrors, type PostThreadsResponse, type PostThreadsResponses, type PostTokensData, type PostTokensError, type PostTokensErrors, type PostTokensResponse, type PostTokensResponses, type PostTrainingExamplesBulkData, type PostTrainingExamplesBulkDeleteData, type PostTrainingExamplesBulkDeleteError, type PostTrainingExamplesBulkDeleteErrors, type PostTrainingExamplesBulkDeleteResponse, type PostTrainingExamplesBulkDeleteResponses, type PostTrainingExamplesBulkError, type PostTrainingExamplesBulkErrors, type PostTrainingExamplesBulkResponse, type PostTrainingExamplesBulkResponses, type PostTrainingExamplesData, type PostTrainingExamplesError, type PostTrainingExamplesErrors, type PostTrainingExamplesResponse, type PostTrainingExamplesResponses, type PostTrainingExamplesSearchData, type PostTrainingExamplesSearchError, type PostTrainingExamplesSearchErrors, type PostTrainingExamplesSearchResponse, type PostTrainingExamplesSearchResponses, type PostUserProfilesData, type PostUserProfilesError, type PostUserProfilesErrors, type PostUserProfilesResponse, type PostUserProfilesResponses, type PostUsersAuthConfirmData, type PostUsersAuthConfirmError, type PostUsersAuthConfirmErrors, type PostUsersAuthConfirmResponse, type PostUsersAuthConfirmResponses, type PostUsersAuthLoginData, type PostUsersAuthLoginError, type PostUsersAuthLoginErrors, type PostUsersAuthLoginResponse, type PostUsersAuthLoginResponses, type PostUsersAuthMagicLinkLoginData, type PostUsersAuthMagicLinkLoginError, type PostUsersAuthMagicLinkLoginErrors, type PostUsersAuthMagicLinkLoginResponse, type PostUsersAuthMagicLinkLoginResponses, type PostUsersAuthMagicLinkRequestData, type PostUsersAuthMagicLinkRequestError, type PostUsersAuthMagicLinkRequestErrors, type PostUsersAuthMagicLinkRequestResponse, type PostUsersAuthMagicLinkRequestResponses, type PostUsersAuthRegisterData, type PostUsersAuthRegisterError, type PostUsersAuthRegisterErrors, type PostUsersAuthRegisterResponse, type PostUsersAuthRegisterResponses, type PostUsersAuthRegisterWithOidcData, type PostUsersAuthRegisterWithOidcError, type PostUsersAuthRegisterWithOidcErrors, type PostUsersAuthRegisterWithOidcResponse, type PostUsersAuthRegisterWithOidcResponses, type PostUsersAuthResendConfirmationData, type PostUsersAuthResendConfirmationError, type PostUsersAuthResendConfirmationErrors, type PostUsersAuthResendConfirmationResponse, type PostUsersAuthResendConfirmationResponses, type PostUsersRegisterIsvData, type PostUsersRegisterIsvError, type PostUsersRegisterIsvErrors, type PostUsersRegisterIsvResponse, type PostUsersRegisterIsvResponses, type PostWatcherClaimsData, type PostWatcherClaimsError, type PostWatcherClaimsErrors, type PostWatcherClaimsResponse, type PostWatcherClaimsResponses, type PostWatcherEventsData, type PostWatcherEventsError, type PostWatcherEventsErrors, type PostWatcherEventsResponse, type PostWatcherEventsResponses, type PostWebhookConfigsBulkDisableData, type PostWebhookConfigsBulkDisableError, type PostWebhookConfigsBulkDisableErrors, type PostWebhookConfigsBulkDisableResponse, type PostWebhookConfigsBulkDisableResponses, type PostWebhookConfigsBulkEnableData, type PostWebhookConfigsBulkEnableError, type PostWebhookConfigsBulkEnableErrors, type PostWebhookConfigsBulkEnableResponse, type PostWebhookConfigsBulkEnableResponses, type PostWebhookConfigsByIdReplayData, type PostWebhookConfigsByIdReplayError, type PostWebhookConfigsByIdReplayErrors, type PostWebhookConfigsByIdReplayResponse, type PostWebhookConfigsByIdReplayResponses, type PostWebhookConfigsByIdTestData, type PostWebhookConfigsByIdTestError, type PostWebhookConfigsByIdTestErrors, type PostWebhookConfigsByIdTestResponse, type PostWebhookConfigsByIdTestResponses, type PostWebhookConfigsData, type PostWebhookConfigsError, type PostWebhookConfigsErrors, type PostWebhookConfigsResponse, type PostWebhookConfigsResponses, type PostWebhookDeliveriesBulkRetryData, type PostWebhookDeliveriesBulkRetryError, type PostWebhookDeliveriesBulkRetryErrors, type PostWebhookDeliveriesBulkRetryResponse, type PostWebhookDeliveriesBulkRetryResponses, type PostWebhookDeliveriesByIdRetryData, type PostWebhookDeliveriesByIdRetryError, type PostWebhookDeliveriesByIdRetryErrors, type PostWebhookDeliveriesByIdRetryResponse, type PostWebhookDeliveriesByIdRetryResponses, type PostWorkspaceMembershipsData, type PostWorkspaceMembershipsError, type PostWorkspaceMembershipsErrors, type PostWorkspaceMembershipsResponse, type PostWorkspaceMembershipsResponses, type PostWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, type PostWorkspacesByWorkspaceIdExtractionByDocumentIdMappingError, type PostWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, type PostWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponse, type PostWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedData, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedError, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedErrors, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponse, type PostWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponses, type PostWorkspacesByWorkspaceIdExtractionExportsData, type PostWorkspacesByWorkspaceIdExtractionExportsError, type PostWorkspacesByWorkspaceIdExtractionExportsErrors, type PostWorkspacesByWorkspaceIdExtractionExportsResponse, type PostWorkspacesByWorkspaceIdExtractionExportsResponses, type PostWorkspacesData, type PostWorkspacesError, type PostWorkspacesErrors, type PostWorkspacesResponse, type PostWorkspacesResponses, type PresignedDownloadRequest, PresignedDownloadSchema, type PresignedUploadRequest, PresignedUploadSchema, type PresignedUrl, type PricingRule, type PricingStrategy, RateLimitError, type RegisterRequest, RegisterRequestSchema, type RetryConfig, type SavedSearch, type SchemaDiscovery, type Search, type SearchAnalytics, type SearchRequest, SearchRequestSchema, type SemanticCacheEntry, ServerError, type StorageStats, type StorageStatsType, type StreamMessageChunk, type StreamOptions, type Subscription, type SystemMessage, type Tenant, type TenantDocumentStats, type TenantMembership, type TenantPricingOverride, type TenantStats, type Thread, type ThreadCreateRequest, ThreadCreateSchema, TimeoutError, type Token, type TrainingAnalytics, type TrainingExample, type TrainingSession, type Transaction, type Transfer, type User, type UserProfile, ValidationError, type Wallet, type WatcherClaim, type WatcherEvent, type WebhookConfig, type WebhookConfigCreateRequest, WebhookConfigCreateSchema, type WebhookConfigUpdateRequest, WebhookConfigUpdateSchema, type WebhookDelivery, WebhookError, type Workspace, type WorkspaceCreateRequest, WorkspaceCreateSchema, type WorkspaceDocumentStats, type WorkspaceMembership, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, calculateBackoff, client, collectStreamedMessage, gptCore as default, deleteAgentVersionsById, deleteAgentsById, deleteAiConversationsById, deleteAiGraphEdgesById, deleteAiGraphNodesById, deleteAiMessagesById, deleteApiKeysById, deleteApplicationsByApplicationIdEmailTemplatesBySlug, deleteApplicationsById, deleteBucketsById, deleteExtractionBatchesById, deleteExtractionDocumentsById, deleteExtractionResultsById, deleteFieldTemplatesById, deleteMessagesById, deleteNotificationMethodsById, deleteNotificationPreferencesById, deleteObjectsById, deletePaymentMethodsById, deleteSearchSavedById, deleteTenantMembershipsByTenantIdByUserId, deleteTenantsById, deleteThreadsById, deleteTrainingExamplesById, deleteTrainingSessionsById, deleteUserProfilesById, deleteUsersById, deleteWebhookConfigsById, deleteWorkspaceMembershipsByWorkspaceIdByUserId, deleteWorkspacesById, getAgentVersions, getAgentVersionsById, getAgentVersionsByIdMetrics, getAgents, getAgentsById, getAgentsByIdSchemaVersions, getAgentsByIdStats, getAgentsByIdTrainingStats, getAgentsByIdUsage, getAgentsUsage, getAiChunksDocumentByDocumentId, getAiConversations, getAiConversationsById, getAiGraphEdges, getAiGraphNodes, getAiGraphNodesBySourceNodeIdRelated, getAiGraphNodesLabelByLabel, getAiMessages, getApiKeys, getApiKeysActive, getApiKeysById, getApiKeysStats, getApplications, getApplicationsByApplicationIdEmailTemplates, getApplicationsByApplicationIdEmailTemplatesBySlug, getApplicationsById, getApplicationsBySlugBySlug, getApplicationsCurrent, getAuditLogs, getAuditLogsActivity, getBuckets, getBucketsAll, getBucketsById, getBucketsByIdObjects, getBucketsByIdStats, getConfigs, getCreditPackages, getCreditPackagesById, getCreditPackagesSlugBySlug, getDocumentsStats, getExtractionBatchesById, getExtractionBatchesByIdUploadUrls, getExtractionBatchesWorkspaceByWorkspaceId, getExtractionDocuments, getExtractionDocumentsById, getExtractionDocumentsByIdStatus, getExtractionDocumentsByIdView, getExtractionDocumentsWorkspaceByWorkspaceId, getExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatus, getExtractionDocumentsWorkspaceByWorkspaceIdExcluded, getExtractionDocumentsWorkspaceByWorkspaceIdReviewQueue, getExtractionDocumentsWorkspaceByWorkspaceIdTrained, getExtractionDocumentsWorkspaceByWorkspaceIdTrashed, getExtractionResults, getExtractionResultsById, getExtractionResultsDocumentByDocumentId, getExtractionResultsWorkspaceByWorkspaceId, getExtractionSchemaDiscoveriesById, getFieldTemplates, getFieldTemplatesById, getInvitations, getInvitationsConsumeByToken, getInvitationsMe, getLlmAnalytics, getLlmAnalyticsById, getLlmAnalyticsCosts, getLlmAnalyticsPlatform, getLlmAnalyticsSummary, getLlmAnalyticsUsage, getLlmAnalyticsWorkspace, getMessages, getMessagesById, getMessagesSearch, getMessagesSemanticSearch, getNotificationLogs, getNotificationLogsById, getNotificationLogsStats, getNotificationMethods, getNotificationMethodsById, getNotificationPreferences, getNotificationPreferencesById, getObjects, getObjectsById, getPaymentMethods, getPaymentMethodsById, getPermissions, getPermissionsById, getPermissionsMeta, getPermissionsPresets, getPermissionsPresetsById, getPlans, getPlansById, getPlansSlugBySlug, getSearch, getSearchAnalytics, getSearchAnalyticsSummary, getSearchHealth, getSearchIndexes, getSearchSaved, getSearchSemantic, getSearchStats, getSearchStatus, getSearchSuggest, getStorageStats, getStorageStatsTenantByTenantId, getTenantMemberships, getTenants, getTenantsById, getTenantsByTenantIdDocumentStats, getTenantsByTenantIdStats, getTenantsByTenantIdWorkspaceStats, getThreads, getThreadsById, getThreadsByIdMessages, getThreadsSearch, getThreadsStats, getThreadsWorkspaceStats, getTrainingExamples, getTrainingExamplesById, getTrainingSessionsAgentsByAgentIdSessions, getTrainingSessionsById, getTransactions, getTransactionsById, getUserProfiles, getUserProfilesById, getUserProfilesMe, getUsers, getUsersByEmail, getUsersById, getUsersMe, getUsersMeActivity, getUsersMeDashboard, getUsersMeStats, getUsersMeTenants, getWallet, getWalletInvoices, getWalletPlanPreview, getWatcherClaims, getWatcherClaimsById, getWatcherClaimsStatus, getWatcherEvents, getWatcherEventsById, getWebhookConfigs, getWebhookConfigsById, getWebhookConfigsByIdEvents, getWebhookConfigsStats, getWebhookDeliveries, getWebhookDeliveriesById, getWebhookDeliveriesStats, getWorkspaceMemberships, getWorkspaces, getWorkspacesAnalyticsBatch, getWorkspacesById, getWorkspacesByIdMembers, getWorkspacesByWorkspaceIdExtractionByDocumentIdMapping, getWorkspacesByWorkspaceIdExtractionExports, getWorkspacesByWorkspaceIdExtractionExportsById, getWorkspacesByWorkspaceIdTrainingAnalytics, getWorkspacesMine, getWorkspacesShared, handleApiError, isRetryableError, paginateAll, paginateToArray, patchAgentsById, patchAgentsByIdSchemaVersionsByVersionId, patchAiConversationsById, patchApiKeysById, patchApiKeysByIdAllocate, patchApiKeysByIdResetPeriod, patchApiKeysByIdRevoke, patchApiKeysByIdRotate, patchApiKeysByIdSetBudget, patchApplicationsByApplicationIdEmailTemplatesBySlug, patchApplicationsById, patchApplicationsByIdAllocateCredits, patchApplicationsByIdGrantCredits, patchBucketsById, patchConfigsByKey, patchExtractionDocumentsByIdCancel, patchExtractionDocumentsByIdDismiss, patchExtractionDocumentsByIdDismissTraining, patchExtractionDocumentsByIdExclude, patchExtractionDocumentsByIdFinishUpload, patchExtractionDocumentsByIdInclude, patchExtractionDocumentsByIdMarkTrained, patchExtractionDocumentsByIdReprocess, patchExtractionDocumentsByIdRestore, patchExtractionDocumentsByIdStatus, patchExtractionDocumentsByIdVerification, patchExtractionResultsById, patchExtractionResultsByIdRegenerate, patchExtractionResultsByIdSaveCorrections, patchInvitationsByIdAccept, patchInvitationsByIdAcceptByUser, patchInvitationsByIdDecline, patchInvitationsByIdResend, patchInvitationsByIdRevoke, patchMessagesById, patchNotificationMethodsById, patchNotificationMethodsByIdSendVerification, patchNotificationMethodsByIdSetPrimary, patchNotificationMethodsByIdVerify, patchNotificationPreferencesById, patchPaymentMethodsById, patchPaymentMethodsByIdDefault, patchSearchSavedById, patchTenantMembershipsByTenantIdByUserId, patchTenantsById, patchThreadsById, patchThreadsByIdArchive, patchThreadsByIdUnarchive, patchTrainingExamplesById, patchUserProfilesById, patchUserProfilesByIdAcceptTos, patchUserProfilesByIdDismissAnnouncement, patchUserProfilesByIdDismissWelcome, patchUsersAuthPasswordChange, patchUsersAuthResetPassword, patchUsersByIdAdmin, patchUsersByIdAdminEmail, patchUsersByIdConfirmEmail, patchUsersByIdResetPassword, patchWalletAddons, patchWalletAddonsByAddonSlugCancel, patchWalletAutoTopUp, patchWalletCredits, patchWalletPlan, patchWatcherClaimsById, patchWatcherClaimsByIdRelease, patchWatcherClaimsByIdRetry, patchWebhookConfigsById, patchWebhookConfigsByIdRotateSecret, patchWorkspaceMembershipsByWorkspaceIdByUserId, patchWorkspacesById, patchWorkspacesByIdAllocate, patchWorkspacesByIdStorageSettings, postAgentTestResults, postAgentVersionComparisons, postAgentVersions, postAgentVersionsByIdAddSystemField, postAgentVersionsByIdRemoveSystemField, postAgentVersionsByIdSetSystemFields, postAgents, postAgentsByIdClone, postAgentsByIdDiscoverSchema, postAgentsByIdExport, postAgentsByIdPublishVersion, postAgentsByIdSchemaVersions, postAgentsByIdSchemaVersionsByVersionIdActivate, postAgentsByIdTeach, postAgentsByIdTest, postAgentsByIdValidate, postAgentsCloneForWorkspace, postAgentsImport, postAgentsPredict, postAiChunksSearch, postAiConversations, postAiEmbed, postAiGraphEdges, postAiGraphNodes, postAiMessages, postAiSearch, postAiSearchAdvanced, postApiKeys, postApplications, postApplicationsByApplicationIdEmailTemplates, postApplicationsByApplicationIdEmailTemplatesBySlugPreview, postApplicationsByApplicationIdEmailTemplatesBySlugTest, postBuckets, postConfigs, postDocumentsBulkDelete, postDocumentsPresignedUpload, postExtractionBatches, postExtractionDocumentsBeginUpload, postExtractionDocumentsBulkReprocess, postExtractionDocumentsUpload, postExtractionSchemaDiscoveries, postFieldTemplates, postInvitations, postInvitationsAcceptByToken, postLlmAnalytics, postMessages, postNotificationMethods, postNotificationPreferences, postObjectsBulkDestroy, postObjectsCopy, postObjectsMove, postObjectsRegister, postPaymentMethods, postPaymentMethodsTokenize, postPayments, postSearchBatch, postSearchReindex, postSearchSaved, postSearchSavedByIdRun, postStorageSignDownload, postStorageSignUpload, postTenantMemberships, postTenants, postTenantsByIdBuyStorage, postTenantsByIdCredit, postTenantsByIdRemoveStorage, postTenantsByIdSchedulePurge, postTenantsIsv, postThreads, postThreadsActive, postThreadsByIdExport, postThreadsByIdFork, postThreadsByIdMessages, postThreadsByIdSummarize, postTokens, postTrainingExamples, postTrainingExamplesBulk, postTrainingExamplesBulkDelete, postTrainingExamplesSearch, postUserProfiles, postUsersAuthConfirm, postUsersAuthLogin, postUsersAuthMagicLinkLogin, postUsersAuthMagicLinkRequest, postUsersAuthRegister, postUsersAuthRegisterWithOidc, postUsersAuthResendConfirmation, postUsersRegisterIsv, postWatcherClaims, postWatcherEvents, postWebhookConfigs, postWebhookConfigsBulkDisable, postWebhookConfigsBulkEnable, postWebhookConfigsByIdReplay, postWebhookConfigsByIdTest, postWebhookDeliveriesBulkRetry, postWebhookDeliveriesByIdRetry, postWorkspaceMemberships, postWorkspaces, postWorkspacesByWorkspaceIdExtractionByDocumentIdMapping, postWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrained, postWorkspacesByWorkspaceIdExtractionExports, retryWithBackoff, sleep, streamMessage, streamSSE, webhooks, withRetry };
|