@gpt-core/admin 0.9.12 → 0.9.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +2172 -266
- package/dist/index.d.ts +2172 -266
- package/llms.txt +34 -6
- package/package.json +11 -11
package/dist/index.d.mts
CHANGED
|
@@ -202,6 +202,54 @@ type SearchFilterLatencyMs = {
|
|
|
202
202
|
less_than_or_equal?: number;
|
|
203
203
|
not_eq?: number;
|
|
204
204
|
};
|
|
205
|
+
/**
|
|
206
|
+
* A "Resource object" representing a thread_workspace_stats
|
|
207
|
+
*/
|
|
208
|
+
type ThreadWorkspaceStats = {
|
|
209
|
+
/**
|
|
210
|
+
* An attributes object for a thread_workspace_stats
|
|
211
|
+
*/
|
|
212
|
+
attributes?: {
|
|
213
|
+
/**
|
|
214
|
+
* Field included by default.
|
|
215
|
+
*/
|
|
216
|
+
active_threads_24h: number;
|
|
217
|
+
/**
|
|
218
|
+
* Field included by default.
|
|
219
|
+
*/
|
|
220
|
+
active_threads_7d: number;
|
|
221
|
+
/**
|
|
222
|
+
* Field included by default.
|
|
223
|
+
*/
|
|
224
|
+
generated_at: unknown;
|
|
225
|
+
/**
|
|
226
|
+
* Field included by default.
|
|
227
|
+
*/
|
|
228
|
+
messages_by_role: {
|
|
229
|
+
[key: string]: unknown;
|
|
230
|
+
};
|
|
231
|
+
/**
|
|
232
|
+
* Field included by default.
|
|
233
|
+
*/
|
|
234
|
+
total_messages: number;
|
|
235
|
+
/**
|
|
236
|
+
* Field included by default.
|
|
237
|
+
*/
|
|
238
|
+
total_threads: number;
|
|
239
|
+
/**
|
|
240
|
+
* Field included by default.
|
|
241
|
+
*/
|
|
242
|
+
workspace_id: string;
|
|
243
|
+
};
|
|
244
|
+
id: string;
|
|
245
|
+
/**
|
|
246
|
+
* A relationships object for a thread_workspace_stats
|
|
247
|
+
*/
|
|
248
|
+
relationships?: {
|
|
249
|
+
[key: string]: never;
|
|
250
|
+
};
|
|
251
|
+
type: string;
|
|
252
|
+
};
|
|
205
253
|
/**
|
|
206
254
|
* Filters the query to results matching the given filter object
|
|
207
255
|
*/
|
|
@@ -222,6 +270,18 @@ type PermissionFilterContext = {
|
|
|
222
270
|
* Filters the query to results matching the given filter object
|
|
223
271
|
*/
|
|
224
272
|
type ThreadFilter = unknown;
|
|
273
|
+
type AccountFilterAllowOverdraft = {
|
|
274
|
+
eq?: boolean;
|
|
275
|
+
greater_than?: boolean;
|
|
276
|
+
greater_than_or_equal?: boolean;
|
|
277
|
+
in?: Array<boolean>;
|
|
278
|
+
is_distinct_from?: string;
|
|
279
|
+
is_nil?: boolean;
|
|
280
|
+
is_not_distinct_from?: string;
|
|
281
|
+
less_than?: boolean;
|
|
282
|
+
less_than_or_equal?: boolean;
|
|
283
|
+
not_eq?: boolean;
|
|
284
|
+
};
|
|
225
285
|
type ExtractionDocumentFilterExcludedAt = {
|
|
226
286
|
eq?: unknown;
|
|
227
287
|
greater_than?: unknown;
|
|
@@ -234,6 +294,18 @@ type ExtractionDocumentFilterExcludedAt = {
|
|
|
234
294
|
less_than_or_equal?: unknown;
|
|
235
295
|
not_eq?: unknown;
|
|
236
296
|
};
|
|
297
|
+
type ThreadWorkspaceStatsFilterId = {
|
|
298
|
+
eq?: string;
|
|
299
|
+
greater_than?: string;
|
|
300
|
+
greater_than_or_equal?: string;
|
|
301
|
+
in?: Array<string>;
|
|
302
|
+
is_distinct_from?: string;
|
|
303
|
+
is_nil?: boolean;
|
|
304
|
+
is_not_distinct_from?: string;
|
|
305
|
+
less_than?: string;
|
|
306
|
+
less_than_or_equal?: string;
|
|
307
|
+
not_eq?: string;
|
|
308
|
+
};
|
|
237
309
|
type ExtractionBatchFilterUserLabel = {
|
|
238
310
|
contains?: string;
|
|
239
311
|
eq?: string;
|
|
@@ -264,6 +336,18 @@ type ExtractionResultFilterLineCount = {
|
|
|
264
336
|
less_than_or_equal?: number;
|
|
265
337
|
not_eq?: number;
|
|
266
338
|
};
|
|
339
|
+
type WholesaleAgreementFilterEffectiveDate = {
|
|
340
|
+
eq?: string;
|
|
341
|
+
greater_than?: string;
|
|
342
|
+
greater_than_or_equal?: string;
|
|
343
|
+
in?: Array<string>;
|
|
344
|
+
is_distinct_from?: string;
|
|
345
|
+
is_nil?: boolean;
|
|
346
|
+
is_not_distinct_from?: string;
|
|
347
|
+
less_than?: string;
|
|
348
|
+
less_than_or_equal?: string;
|
|
349
|
+
not_eq?: string;
|
|
350
|
+
};
|
|
267
351
|
type WebhookDeliveryFilterUpdatedAt = {
|
|
268
352
|
eq?: unknown;
|
|
269
353
|
greater_than?: unknown;
|
|
@@ -711,9 +795,9 @@ type Wallet = {
|
|
|
711
795
|
[key: string]: unknown;
|
|
712
796
|
}> | null | unknown;
|
|
713
797
|
/**
|
|
714
|
-
* Field included by default.
|
|
798
|
+
* Optional application context - wallets belong to tenants, not applications. Field included by default.
|
|
715
799
|
*/
|
|
716
|
-
application_id
|
|
800
|
+
application_id?: string | null | unknown;
|
|
717
801
|
/**
|
|
718
802
|
* Amount in credits. Field included by default.
|
|
719
803
|
*/
|
|
@@ -881,6 +965,18 @@ type TrainingSessionFilterUserName = {
|
|
|
881
965
|
* Filters the query to results matching the given filter object
|
|
882
966
|
*/
|
|
883
967
|
type LlmAnalyticsFilter = unknown;
|
|
968
|
+
type AgentUsageFilterIsSystem = {
|
|
969
|
+
eq?: boolean;
|
|
970
|
+
greater_than?: boolean;
|
|
971
|
+
greater_than_or_equal?: boolean;
|
|
972
|
+
in?: Array<boolean>;
|
|
973
|
+
is_distinct_from?: string;
|
|
974
|
+
is_nil?: boolean;
|
|
975
|
+
is_not_distinct_from?: string;
|
|
976
|
+
less_than?: boolean;
|
|
977
|
+
less_than_or_equal?: boolean;
|
|
978
|
+
not_eq?: boolean;
|
|
979
|
+
};
|
|
884
980
|
type SchemaDiscoveryFilterDocumentAssessment = {
|
|
885
981
|
eq?: {
|
|
886
982
|
[key: string]: unknown;
|
|
@@ -1085,6 +1181,21 @@ type AgentVersionComparisonFilterVersionBNumber = {
|
|
|
1085
1181
|
less_than_or_equal?: string;
|
|
1086
1182
|
not_eq?: string;
|
|
1087
1183
|
};
|
|
1184
|
+
/**
|
|
1185
|
+
* Date when funds can be released from hold
|
|
1186
|
+
*/
|
|
1187
|
+
type SettlementFilterHoldUntil = {
|
|
1188
|
+
eq?: string;
|
|
1189
|
+
greater_than?: string;
|
|
1190
|
+
greater_than_or_equal?: string;
|
|
1191
|
+
in?: Array<string>;
|
|
1192
|
+
is_distinct_from?: string;
|
|
1193
|
+
is_nil?: boolean;
|
|
1194
|
+
is_not_distinct_from?: string;
|
|
1195
|
+
less_than?: string;
|
|
1196
|
+
less_than_or_equal?: string;
|
|
1197
|
+
not_eq?: string;
|
|
1198
|
+
};
|
|
1088
1199
|
type BucketFilterId = {
|
|
1089
1200
|
eq?: string;
|
|
1090
1201
|
greater_than?: string;
|
|
@@ -1299,6 +1410,9 @@ type AgentVersionFilterVersionNumber = {
|
|
|
1299
1410
|
like?: string;
|
|
1300
1411
|
not_eq?: string;
|
|
1301
1412
|
};
|
|
1413
|
+
/**
|
|
1414
|
+
* Optional application context - wallets belong to tenants, not applications
|
|
1415
|
+
*/
|
|
1302
1416
|
type WalletFilterApplicationId = {
|
|
1303
1417
|
eq?: string;
|
|
1304
1418
|
greater_than?: string;
|
|
@@ -1326,6 +1440,18 @@ type FieldTemplateFilterFieldType = {
|
|
|
1326
1440
|
like?: string;
|
|
1327
1441
|
not_eq?: string;
|
|
1328
1442
|
};
|
|
1443
|
+
type ThreadStatsFilterTotalMessages = {
|
|
1444
|
+
eq?: number;
|
|
1445
|
+
greater_than?: number;
|
|
1446
|
+
greater_than_or_equal?: number;
|
|
1447
|
+
in?: Array<number>;
|
|
1448
|
+
is_distinct_from?: string;
|
|
1449
|
+
is_nil?: boolean;
|
|
1450
|
+
is_not_distinct_from?: string;
|
|
1451
|
+
less_than?: number;
|
|
1452
|
+
less_than_or_equal?: number;
|
|
1453
|
+
not_eq?: number;
|
|
1454
|
+
};
|
|
1329
1455
|
/**
|
|
1330
1456
|
* A "Resource object" representing a training_session
|
|
1331
1457
|
*/
|
|
@@ -1623,6 +1749,10 @@ type WalletFilterCreditsFree = {
|
|
|
1623
1749
|
less_than_or_equal?: number;
|
|
1624
1750
|
not_eq?: number;
|
|
1625
1751
|
};
|
|
1752
|
+
/**
|
|
1753
|
+
* Filters the query to results matching the given filter object
|
|
1754
|
+
*/
|
|
1755
|
+
type AgentUsageFilter = unknown;
|
|
1626
1756
|
/**
|
|
1627
1757
|
* Credits billed for processing this document
|
|
1628
1758
|
*/
|
|
@@ -1900,6 +2030,10 @@ type Ledger = {
|
|
|
1900
2030
|
* An attributes object for a ledger
|
|
1901
2031
|
*/
|
|
1902
2032
|
attributes?: {
|
|
2033
|
+
/**
|
|
2034
|
+
* Field included by default.
|
|
2035
|
+
*/
|
|
2036
|
+
application_id?: string | null | unknown;
|
|
1903
2037
|
/**
|
|
1904
2038
|
* Optional metadata including api_key_id for tracking source. Field included by default.
|
|
1905
2039
|
*/
|
|
@@ -1912,7 +2046,18 @@ type Ledger = {
|
|
|
1912
2046
|
* A relationships object for a ledger
|
|
1913
2047
|
*/
|
|
1914
2048
|
relationships?: {
|
|
1915
|
-
|
|
2049
|
+
application?: {
|
|
2050
|
+
/**
|
|
2051
|
+
* An identifier for application
|
|
2052
|
+
*/
|
|
2053
|
+
data?: {
|
|
2054
|
+
id: string;
|
|
2055
|
+
meta?: {
|
|
2056
|
+
[key: string]: unknown;
|
|
2057
|
+
};
|
|
2058
|
+
type: string;
|
|
2059
|
+
} | null;
|
|
2060
|
+
};
|
|
1916
2061
|
};
|
|
1917
2062
|
type: string;
|
|
1918
2063
|
};
|
|
@@ -2057,6 +2202,18 @@ type WorkspaceFilterUpdatedAt = {
|
|
|
2057
2202
|
less_than_or_equal?: unknown;
|
|
2058
2203
|
not_eq?: unknown;
|
|
2059
2204
|
};
|
|
2205
|
+
type ThreadWorkspaceStatsFilterTotalThreads = {
|
|
2206
|
+
eq?: number;
|
|
2207
|
+
greater_than?: number;
|
|
2208
|
+
greater_than_or_equal?: number;
|
|
2209
|
+
in?: Array<number>;
|
|
2210
|
+
is_distinct_from?: string;
|
|
2211
|
+
is_nil?: boolean;
|
|
2212
|
+
is_not_distinct_from?: string;
|
|
2213
|
+
less_than?: number;
|
|
2214
|
+
less_than_or_equal?: number;
|
|
2215
|
+
not_eq?: number;
|
|
2216
|
+
};
|
|
2060
2217
|
type TokenFilterExpYear = {
|
|
2061
2218
|
eq?: number;
|
|
2062
2219
|
greater_than?: number;
|
|
@@ -2318,6 +2475,18 @@ type NotificationLog = {
|
|
|
2318
2475
|
};
|
|
2319
2476
|
type: string;
|
|
2320
2477
|
};
|
|
2478
|
+
type ThreadWorkspaceStatsFilterWorkspaceId = {
|
|
2479
|
+
eq?: string;
|
|
2480
|
+
greater_than?: string;
|
|
2481
|
+
greater_than_or_equal?: string;
|
|
2482
|
+
in?: Array<string>;
|
|
2483
|
+
is_distinct_from?: string;
|
|
2484
|
+
is_nil?: boolean;
|
|
2485
|
+
is_not_distinct_from?: string;
|
|
2486
|
+
less_than?: string;
|
|
2487
|
+
less_than_or_equal?: string;
|
|
2488
|
+
not_eq?: string;
|
|
2489
|
+
};
|
|
2321
2490
|
/**
|
|
2322
2491
|
* A "Resource object" representing a token
|
|
2323
2492
|
*/
|
|
@@ -2418,6 +2587,18 @@ type ExtractionBatchFilterName = {
|
|
|
2418
2587
|
like?: string;
|
|
2419
2588
|
not_eq?: string;
|
|
2420
2589
|
};
|
|
2590
|
+
type AgentTrainingStatsFilterExamplesLast7Days = {
|
|
2591
|
+
eq?: number;
|
|
2592
|
+
greater_than?: number;
|
|
2593
|
+
greater_than_or_equal?: number;
|
|
2594
|
+
in?: Array<number>;
|
|
2595
|
+
is_distinct_from?: string;
|
|
2596
|
+
is_nil?: boolean;
|
|
2597
|
+
is_not_distinct_from?: string;
|
|
2598
|
+
less_than?: number;
|
|
2599
|
+
less_than_or_equal?: number;
|
|
2600
|
+
not_eq?: number;
|
|
2601
|
+
};
|
|
2421
2602
|
type AgentVersionComparisonFilterPromptDiff = {
|
|
2422
2603
|
eq?: {
|
|
2423
2604
|
[key: string]: unknown;
|
|
@@ -2639,6 +2820,19 @@ type AgentVersionFilterUpdatedAt = {
|
|
|
2639
2820
|
less_than_or_equal?: unknown;
|
|
2640
2821
|
not_eq?: unknown;
|
|
2641
2822
|
};
|
|
2823
|
+
type ThreadStatsFilterId = {
|
|
2824
|
+
contains?: string;
|
|
2825
|
+
eq?: string;
|
|
2826
|
+
greater_than?: string;
|
|
2827
|
+
greater_than_or_equal?: string;
|
|
2828
|
+
in?: Array<string>;
|
|
2829
|
+
is_distinct_from?: string;
|
|
2830
|
+
is_nil?: boolean;
|
|
2831
|
+
is_not_distinct_from?: string;
|
|
2832
|
+
less_than?: string;
|
|
2833
|
+
less_than_or_equal?: string;
|
|
2834
|
+
not_eq?: string;
|
|
2835
|
+
};
|
|
2642
2836
|
type AccountFilterExpiresAt = {
|
|
2643
2837
|
eq?: string;
|
|
2644
2838
|
greater_than?: string;
|
|
@@ -2805,6 +2999,18 @@ type ExtractionResultFilterSummary = {
|
|
|
2805
2999
|
[key: string]: unknown;
|
|
2806
3000
|
};
|
|
2807
3001
|
};
|
|
3002
|
+
type SettlementFilterStatus = {
|
|
3003
|
+
eq?: "pending" | "calculated" | "held" | "released" | "paid" | "failed";
|
|
3004
|
+
greater_than?: "pending" | "calculated" | "held" | "released" | "paid" | "failed";
|
|
3005
|
+
greater_than_or_equal?: "pending" | "calculated" | "held" | "released" | "paid" | "failed";
|
|
3006
|
+
in?: Array<string>;
|
|
3007
|
+
is_distinct_from?: string;
|
|
3008
|
+
is_nil?: boolean;
|
|
3009
|
+
is_not_distinct_from?: string;
|
|
3010
|
+
less_than?: "pending" | "calculated" | "held" | "released" | "paid" | "failed";
|
|
3011
|
+
less_than_or_equal?: "pending" | "calculated" | "held" | "released" | "paid" | "failed";
|
|
3012
|
+
not_eq?: "pending" | "calculated" | "held" | "released" | "paid" | "failed";
|
|
3013
|
+
};
|
|
2808
3014
|
type ExtractionExportFilterFormat = {
|
|
2809
3015
|
eq?: "csv" | "json" | "excel" | "markdown";
|
|
2810
3016
|
greater_than?: "csv" | "json" | "excel" | "markdown";
|
|
@@ -2829,6 +3035,24 @@ type ExtractionDocumentFilterFileSizeBytes = {
|
|
|
2829
3035
|
less_than_or_equal?: number;
|
|
2830
3036
|
not_eq?: number;
|
|
2831
3037
|
};
|
|
3038
|
+
/**
|
|
3039
|
+
* QorPay ACH transaction ID for payout
|
|
3040
|
+
*/
|
|
3041
|
+
type SettlementFilterQorpayTransactionId = {
|
|
3042
|
+
contains?: string;
|
|
3043
|
+
eq?: string;
|
|
3044
|
+
greater_than?: string;
|
|
3045
|
+
greater_than_or_equal?: string;
|
|
3046
|
+
ilike?: string;
|
|
3047
|
+
in?: Array<string>;
|
|
3048
|
+
is_distinct_from?: string;
|
|
3049
|
+
is_nil?: boolean;
|
|
3050
|
+
is_not_distinct_from?: string;
|
|
3051
|
+
less_than?: string;
|
|
3052
|
+
less_than_or_equal?: string;
|
|
3053
|
+
like?: string;
|
|
3054
|
+
not_eq?: string;
|
|
3055
|
+
};
|
|
2832
3056
|
type TenantFilterCreditBalance = {
|
|
2833
3057
|
eq?: number;
|
|
2834
3058
|
greater_than?: number;
|
|
@@ -3127,6 +3351,21 @@ type ExtractionDocumentFilterFileHash = {
|
|
|
3127
3351
|
like?: string;
|
|
3128
3352
|
not_eq?: string;
|
|
3129
3353
|
};
|
|
3354
|
+
/**
|
|
3355
|
+
* Wholesale pricing model: percentage of retail or fixed floor rates
|
|
3356
|
+
*/
|
|
3357
|
+
type WholesaleAgreementFilterModel = {
|
|
3358
|
+
eq?: "percentage" | "interchange_plus";
|
|
3359
|
+
greater_than?: "percentage" | "interchange_plus";
|
|
3360
|
+
greater_than_or_equal?: "percentage" | "interchange_plus";
|
|
3361
|
+
in?: Array<string>;
|
|
3362
|
+
is_distinct_from?: string;
|
|
3363
|
+
is_nil?: boolean;
|
|
3364
|
+
is_not_distinct_from?: string;
|
|
3365
|
+
less_than?: "percentage" | "interchange_plus";
|
|
3366
|
+
less_than_or_equal?: "percentage" | "interchange_plus";
|
|
3367
|
+
not_eq?: "percentage" | "interchange_plus";
|
|
3368
|
+
};
|
|
3130
3369
|
/**
|
|
3131
3370
|
* Filters the query to results matching the given filter object
|
|
3132
3371
|
*/
|
|
@@ -3224,6 +3463,18 @@ type SystemMessageFilterType = {
|
|
|
3224
3463
|
less_than_or_equal?: "tos" | "welcome" | "announcement";
|
|
3225
3464
|
not_eq?: "tos" | "welcome" | "announcement";
|
|
3226
3465
|
};
|
|
3466
|
+
type AgentTrainingStatsFilterId = {
|
|
3467
|
+
eq?: string;
|
|
3468
|
+
greater_than?: string;
|
|
3469
|
+
greater_than_or_equal?: string;
|
|
3470
|
+
in?: Array<string>;
|
|
3471
|
+
is_distinct_from?: string;
|
|
3472
|
+
is_nil?: boolean;
|
|
3473
|
+
is_not_distinct_from?: string;
|
|
3474
|
+
less_than?: string;
|
|
3475
|
+
less_than_or_equal?: string;
|
|
3476
|
+
not_eq?: string;
|
|
3477
|
+
};
|
|
3227
3478
|
type SavedSearchFilterId = {
|
|
3228
3479
|
eq?: string;
|
|
3229
3480
|
greater_than?: string;
|
|
@@ -3260,6 +3511,18 @@ type PaymentMethodFilterUpdatedAt = {
|
|
|
3260
3511
|
less_than_or_equal?: unknown;
|
|
3261
3512
|
not_eq?: unknown;
|
|
3262
3513
|
};
|
|
3514
|
+
type AgentTrainingStatsFilterVersion = {
|
|
3515
|
+
eq?: number;
|
|
3516
|
+
greater_than?: number;
|
|
3517
|
+
greater_than_or_equal?: number;
|
|
3518
|
+
in?: Array<number>;
|
|
3519
|
+
is_distinct_from?: string;
|
|
3520
|
+
is_nil?: boolean;
|
|
3521
|
+
is_not_distinct_from?: string;
|
|
3522
|
+
less_than?: number;
|
|
3523
|
+
less_than_or_equal?: number;
|
|
3524
|
+
not_eq?: number;
|
|
3525
|
+
};
|
|
3263
3526
|
type SearchAnalyticsFilterTotalSearches = {
|
|
3264
3527
|
eq?: number;
|
|
3265
3528
|
greater_than?: number;
|
|
@@ -3375,6 +3638,30 @@ type WebhookDeliveryFilterResponseBody = {
|
|
|
3375
3638
|
like?: string;
|
|
3376
3639
|
not_eq?: string;
|
|
3377
3640
|
};
|
|
3641
|
+
type ThreadWorkspaceStatsFilterGeneratedAt = {
|
|
3642
|
+
eq?: unknown;
|
|
3643
|
+
greater_than?: unknown;
|
|
3644
|
+
greater_than_or_equal?: unknown;
|
|
3645
|
+
in?: Array<unknown>;
|
|
3646
|
+
is_distinct_from?: string;
|
|
3647
|
+
is_nil?: boolean;
|
|
3648
|
+
is_not_distinct_from?: string;
|
|
3649
|
+
less_than?: unknown;
|
|
3650
|
+
less_than_or_equal?: unknown;
|
|
3651
|
+
not_eq?: unknown;
|
|
3652
|
+
};
|
|
3653
|
+
type AgentStatsFilterId = {
|
|
3654
|
+
eq?: string;
|
|
3655
|
+
greater_than?: string;
|
|
3656
|
+
greater_than_or_equal?: string;
|
|
3657
|
+
in?: Array<string>;
|
|
3658
|
+
is_distinct_from?: string;
|
|
3659
|
+
is_nil?: boolean;
|
|
3660
|
+
is_not_distinct_from?: string;
|
|
3661
|
+
less_than?: string;
|
|
3662
|
+
less_than_or_equal?: string;
|
|
3663
|
+
not_eq?: string;
|
|
3664
|
+
};
|
|
3378
3665
|
type LedgerFilterId = {
|
|
3379
3666
|
eq?: string;
|
|
3380
3667
|
greater_than?: string;
|
|
@@ -3387,6 +3674,18 @@ type LedgerFilterId = {
|
|
|
3387
3674
|
less_than_or_equal?: string;
|
|
3388
3675
|
not_eq?: string;
|
|
3389
3676
|
};
|
|
3677
|
+
type LedgerFilterApplicationId = {
|
|
3678
|
+
eq?: string;
|
|
3679
|
+
greater_than?: string;
|
|
3680
|
+
greater_than_or_equal?: string;
|
|
3681
|
+
in?: Array<string>;
|
|
3682
|
+
is_distinct_from?: string;
|
|
3683
|
+
is_nil?: boolean;
|
|
3684
|
+
is_not_distinct_from?: string;
|
|
3685
|
+
less_than?: string;
|
|
3686
|
+
less_than_or_equal?: string;
|
|
3687
|
+
not_eq?: string;
|
|
3688
|
+
};
|
|
3390
3689
|
type ApiKeyFilterLastUsedAt = {
|
|
3391
3690
|
eq?: unknown;
|
|
3392
3691
|
greater_than?: unknown;
|
|
@@ -3476,6 +3775,10 @@ type Account = {
|
|
|
3476
3775
|
* An attributes object for a account
|
|
3477
3776
|
*/
|
|
3478
3777
|
attributes?: {
|
|
3778
|
+
/**
|
|
3779
|
+
* Field included by default.
|
|
3780
|
+
*/
|
|
3781
|
+
allow_overdraft: boolean;
|
|
3479
3782
|
/**
|
|
3480
3783
|
* Field included by default.
|
|
3481
3784
|
*/
|
|
@@ -3726,6 +4029,33 @@ type PaymentMethod = {
|
|
|
3726
4029
|
};
|
|
3727
4030
|
type: string;
|
|
3728
4031
|
};
|
|
4032
|
+
/**
|
|
4033
|
+
* Platform take rate as percentage of retail (for percentage model)
|
|
4034
|
+
*/
|
|
4035
|
+
type WholesaleAgreementFilterTakeRatePercent = {
|
|
4036
|
+
eq?: number;
|
|
4037
|
+
greater_than?: number;
|
|
4038
|
+
greater_than_or_equal?: number;
|
|
4039
|
+
in?: Array<number>;
|
|
4040
|
+
is_distinct_from?: string;
|
|
4041
|
+
is_nil?: boolean;
|
|
4042
|
+
is_not_distinct_from?: string;
|
|
4043
|
+
less_than?: number;
|
|
4044
|
+
less_than_or_equal?: number;
|
|
4045
|
+
not_eq?: number;
|
|
4046
|
+
};
|
|
4047
|
+
type AgentUsageFilterUsingCount = {
|
|
4048
|
+
eq?: number;
|
|
4049
|
+
greater_than?: number;
|
|
4050
|
+
greater_than_or_equal?: number;
|
|
4051
|
+
in?: Array<number>;
|
|
4052
|
+
is_distinct_from?: string;
|
|
4053
|
+
is_nil?: boolean;
|
|
4054
|
+
is_not_distinct_from?: string;
|
|
4055
|
+
less_than?: number;
|
|
4056
|
+
less_than_or_equal?: number;
|
|
4057
|
+
not_eq?: number;
|
|
4058
|
+
};
|
|
3729
4059
|
/**
|
|
3730
4060
|
* Email subject line (supports {{variable}} interpolation)
|
|
3731
4061
|
*/
|
|
@@ -3870,6 +4200,18 @@ type PermissionMetaFilterVersion = {
|
|
|
3870
4200
|
less_than_or_equal?: string;
|
|
3871
4201
|
not_eq?: string;
|
|
3872
4202
|
};
|
|
4203
|
+
type AgentTrainingStatsFilterAgentId = {
|
|
4204
|
+
eq?: string;
|
|
4205
|
+
greater_than?: string;
|
|
4206
|
+
greater_than_or_equal?: string;
|
|
4207
|
+
in?: Array<string>;
|
|
4208
|
+
is_distinct_from?: string;
|
|
4209
|
+
is_nil?: boolean;
|
|
4210
|
+
is_not_distinct_from?: string;
|
|
4211
|
+
less_than?: string;
|
|
4212
|
+
less_than_or_equal?: string;
|
|
4213
|
+
not_eq?: string;
|
|
4214
|
+
};
|
|
3873
4215
|
type UserFilterCurrentWorkspaceId = {
|
|
3874
4216
|
eq?: string;
|
|
3875
4217
|
greater_than?: string;
|
|
@@ -3912,6 +4254,10 @@ type UserProfileFilterSocialLinks = {
|
|
|
3912
4254
|
[key: string]: unknown;
|
|
3913
4255
|
};
|
|
3914
4256
|
};
|
|
4257
|
+
/**
|
|
4258
|
+
* Filters the query to results matching the given filter object
|
|
4259
|
+
*/
|
|
4260
|
+
type ThreadWorkspaceStatsFilter = unknown;
|
|
3915
4261
|
type TrainingExampleFilterUpdatedAt = {
|
|
3916
4262
|
eq?: unknown;
|
|
3917
4263
|
greater_than?: unknown;
|
|
@@ -4013,6 +4359,10 @@ type AgentFilterDomain = {
|
|
|
4013
4359
|
less_than_or_equal?: "legal" | "medical" | "financial" | "compliance" | "support" | "recruitment" | "general" | "extraction" | "municipal" | "logistics" | "utility";
|
|
4014
4360
|
not_eq?: "legal" | "medical" | "financial" | "compliance" | "support" | "recruitment" | "general" | "extraction" | "municipal" | "logistics" | "utility";
|
|
4015
4361
|
};
|
|
4362
|
+
/**
|
|
4363
|
+
* Filters the query to results matching the given filter object
|
|
4364
|
+
*/
|
|
4365
|
+
type AgentStatsFilter = unknown;
|
|
4016
4366
|
type WatcherClaimFilterClaimedAt = {
|
|
4017
4367
|
eq?: unknown;
|
|
4018
4368
|
greater_than?: unknown;
|
|
@@ -4188,6 +4538,51 @@ type EmbeddingFilterBilledCredits = {
|
|
|
4188
4538
|
less_than_or_equal?: number;
|
|
4189
4539
|
not_eq?: number;
|
|
4190
4540
|
};
|
|
4541
|
+
/**
|
|
4542
|
+
* A "Resource object" representing a agent_stats
|
|
4543
|
+
*/
|
|
4544
|
+
type AgentStats = {
|
|
4545
|
+
/**
|
|
4546
|
+
* An attributes object for a agent_stats
|
|
4547
|
+
*/
|
|
4548
|
+
attributes?: {
|
|
4549
|
+
/**
|
|
4550
|
+
* Field included by default.
|
|
4551
|
+
*/
|
|
4552
|
+
agent_id: string;
|
|
4553
|
+
/**
|
|
4554
|
+
* Field included by default.
|
|
4555
|
+
*/
|
|
4556
|
+
total_calls: number;
|
|
4557
|
+
/**
|
|
4558
|
+
* Field included by default.
|
|
4559
|
+
*/
|
|
4560
|
+
total_cost: number;
|
|
4561
|
+
/**
|
|
4562
|
+
* Field included by default.
|
|
4563
|
+
*/
|
|
4564
|
+
total_tokens: number;
|
|
4565
|
+
};
|
|
4566
|
+
id: string;
|
|
4567
|
+
/**
|
|
4568
|
+
* A relationships object for a agent_stats
|
|
4569
|
+
*/
|
|
4570
|
+
relationships?: {
|
|
4571
|
+
agent?: {
|
|
4572
|
+
/**
|
|
4573
|
+
* An identifier for agent
|
|
4574
|
+
*/
|
|
4575
|
+
data?: {
|
|
4576
|
+
id: string;
|
|
4577
|
+
meta?: {
|
|
4578
|
+
[key: string]: unknown;
|
|
4579
|
+
};
|
|
4580
|
+
type: string;
|
|
4581
|
+
} | null;
|
|
4582
|
+
};
|
|
4583
|
+
};
|
|
4584
|
+
type: string;
|
|
4585
|
+
};
|
|
4191
4586
|
type ExtractionDocumentFilterFilename = {
|
|
4192
4587
|
contains?: string;
|
|
4193
4588
|
eq?: string;
|
|
@@ -4203,6 +4598,18 @@ type ExtractionDocumentFilterFilename = {
|
|
|
4203
4598
|
like?: string;
|
|
4204
4599
|
not_eq?: string;
|
|
4205
4600
|
};
|
|
4601
|
+
type AgentUsageFilterAgentId = {
|
|
4602
|
+
eq?: string;
|
|
4603
|
+
greater_than?: string;
|
|
4604
|
+
greater_than_or_equal?: string;
|
|
4605
|
+
in?: Array<string>;
|
|
4606
|
+
is_distinct_from?: string;
|
|
4607
|
+
is_nil?: boolean;
|
|
4608
|
+
is_not_distinct_from?: string;
|
|
4609
|
+
less_than?: string;
|
|
4610
|
+
less_than_or_equal?: string;
|
|
4611
|
+
not_eq?: string;
|
|
4612
|
+
};
|
|
4206
4613
|
type PermissionPresetFilterName = {
|
|
4207
4614
|
contains?: string;
|
|
4208
4615
|
eq?: string;
|
|
@@ -5023,6 +5430,18 @@ type WorkspaceMembershipFilterCreatedAt = {
|
|
|
5023
5430
|
less_than_or_equal?: unknown;
|
|
5024
5431
|
not_eq?: unknown;
|
|
5025
5432
|
};
|
|
5433
|
+
type AgentStatsFilterTotalCalls = {
|
|
5434
|
+
eq?: number;
|
|
5435
|
+
greater_than?: number;
|
|
5436
|
+
greater_than_or_equal?: number;
|
|
5437
|
+
in?: Array<number>;
|
|
5438
|
+
is_distinct_from?: string;
|
|
5439
|
+
is_nil?: boolean;
|
|
5440
|
+
is_not_distinct_from?: string;
|
|
5441
|
+
less_than?: number;
|
|
5442
|
+
less_than_or_equal?: number;
|
|
5443
|
+
not_eq?: number;
|
|
5444
|
+
};
|
|
5026
5445
|
type WatcherEventFilterCloudStoragePath = {
|
|
5027
5446
|
contains?: string;
|
|
5028
5447
|
eq?: string;
|
|
@@ -5884,6 +6303,18 @@ type TrainingAnalyticsFilterTotalFieldsConfirmed = {
|
|
|
5884
6303
|
* A link MUST be represented as either: a string containing the link's URL or a link object.
|
|
5885
6304
|
*/
|
|
5886
6305
|
type Link = string;
|
|
6306
|
+
type AgentUsageFilterId = {
|
|
6307
|
+
eq?: string;
|
|
6308
|
+
greater_than?: string;
|
|
6309
|
+
greater_than_or_equal?: string;
|
|
6310
|
+
in?: Array<string>;
|
|
6311
|
+
is_distinct_from?: string;
|
|
6312
|
+
is_nil?: boolean;
|
|
6313
|
+
is_not_distinct_from?: string;
|
|
6314
|
+
less_than?: string;
|
|
6315
|
+
less_than_or_equal?: string;
|
|
6316
|
+
not_eq?: string;
|
|
6317
|
+
};
|
|
5887
6318
|
/**
|
|
5888
6319
|
* Filters the query to results matching the given filter object
|
|
5889
6320
|
*/
|
|
@@ -6234,6 +6665,18 @@ type WorkspaceDocumentStatsFilterWorkspaceId = {
|
|
|
6234
6665
|
less_than_or_equal?: string;
|
|
6235
6666
|
not_eq?: string;
|
|
6236
6667
|
};
|
|
6668
|
+
type WholesaleAgreementFilterSettlementFrequency = {
|
|
6669
|
+
eq?: "monthly" | "weekly" | "daily";
|
|
6670
|
+
greater_than?: "monthly" | "weekly" | "daily";
|
|
6671
|
+
greater_than_or_equal?: "monthly" | "weekly" | "daily";
|
|
6672
|
+
in?: Array<string>;
|
|
6673
|
+
is_distinct_from?: string;
|
|
6674
|
+
is_nil?: boolean;
|
|
6675
|
+
is_not_distinct_from?: string;
|
|
6676
|
+
less_than?: "monthly" | "weekly" | "daily";
|
|
6677
|
+
less_than_or_equal?: "monthly" | "weekly" | "daily";
|
|
6678
|
+
not_eq?: "monthly" | "weekly" | "daily";
|
|
6679
|
+
};
|
|
6237
6680
|
type WorkspaceDocumentStatsFilterId = {
|
|
6238
6681
|
eq?: string;
|
|
6239
6682
|
greater_than?: string;
|
|
@@ -6328,6 +6771,10 @@ type EmailTemplateFilterId = {
|
|
|
6328
6771
|
less_than_or_equal?: string;
|
|
6329
6772
|
not_eq?: string;
|
|
6330
6773
|
};
|
|
6774
|
+
/**
|
|
6775
|
+
* Filters the query to results matching the given filter object
|
|
6776
|
+
*/
|
|
6777
|
+
type WholesaleAgreementFilter = unknown;
|
|
6331
6778
|
type TenantDocumentStatsFilterQueued = {
|
|
6332
6779
|
eq?: number;
|
|
6333
6780
|
greater_than?: number;
|
|
@@ -6435,6 +6882,35 @@ type ApiKeyFilterUserId = {
|
|
|
6435
6882
|
* Filters the query to results matching the given filter object
|
|
6436
6883
|
*/
|
|
6437
6884
|
type NotificationLogFilter = unknown;
|
|
6885
|
+
/**
|
|
6886
|
+
* Per-operation and per-tenant breakdown for ISV visibility
|
|
6887
|
+
*/
|
|
6888
|
+
type SettlementFilterBreakdown = {
|
|
6889
|
+
eq?: {
|
|
6890
|
+
[key: string]: unknown;
|
|
6891
|
+
};
|
|
6892
|
+
greater_than?: {
|
|
6893
|
+
[key: string]: unknown;
|
|
6894
|
+
};
|
|
6895
|
+
greater_than_or_equal?: {
|
|
6896
|
+
[key: string]: unknown;
|
|
6897
|
+
};
|
|
6898
|
+
in?: Array<{
|
|
6899
|
+
[key: string]: unknown;
|
|
6900
|
+
}>;
|
|
6901
|
+
is_distinct_from?: string;
|
|
6902
|
+
is_nil?: boolean;
|
|
6903
|
+
is_not_distinct_from?: string;
|
|
6904
|
+
less_than?: {
|
|
6905
|
+
[key: string]: unknown;
|
|
6906
|
+
};
|
|
6907
|
+
less_than_or_equal?: {
|
|
6908
|
+
[key: string]: unknown;
|
|
6909
|
+
};
|
|
6910
|
+
not_eq?: {
|
|
6911
|
+
[key: string]: unknown;
|
|
6912
|
+
};
|
|
6913
|
+
};
|
|
6438
6914
|
type PlanFilterSlug = {
|
|
6439
6915
|
contains?: string;
|
|
6440
6916
|
eq?: string;
|
|
@@ -6492,6 +6968,18 @@ type ExtractionResultFilterCharCount = {
|
|
|
6492
6968
|
less_than_or_equal?: number;
|
|
6493
6969
|
not_eq?: number;
|
|
6494
6970
|
};
|
|
6971
|
+
type AgentStatsFilterTotalTokens = {
|
|
6972
|
+
eq?: number;
|
|
6973
|
+
greater_than?: number;
|
|
6974
|
+
greater_than_or_equal?: number;
|
|
6975
|
+
in?: Array<number>;
|
|
6976
|
+
is_distinct_from?: string;
|
|
6977
|
+
is_nil?: boolean;
|
|
6978
|
+
is_not_distinct_from?: string;
|
|
6979
|
+
less_than?: number;
|
|
6980
|
+
less_than_or_equal?: number;
|
|
6981
|
+
not_eq?: number;
|
|
6982
|
+
};
|
|
6495
6983
|
type ExtractionDocumentFilterStoragePath = {
|
|
6496
6984
|
contains?: string;
|
|
6497
6985
|
eq?: string;
|
|
@@ -6738,6 +7226,24 @@ type EmailTemplate = {
|
|
|
6738
7226
|
};
|
|
6739
7227
|
type: string;
|
|
6740
7228
|
};
|
|
7229
|
+
/**
|
|
7230
|
+
* Error message if settlement failed
|
|
7231
|
+
*/
|
|
7232
|
+
type SettlementFilterErrorMessage = {
|
|
7233
|
+
contains?: string;
|
|
7234
|
+
eq?: string;
|
|
7235
|
+
greater_than?: string;
|
|
7236
|
+
greater_than_or_equal?: string;
|
|
7237
|
+
ilike?: string;
|
|
7238
|
+
in?: Array<string>;
|
|
7239
|
+
is_distinct_from?: string;
|
|
7240
|
+
is_nil?: boolean;
|
|
7241
|
+
is_not_distinct_from?: string;
|
|
7242
|
+
less_than?: string;
|
|
7243
|
+
less_than_or_equal?: string;
|
|
7244
|
+
like?: string;
|
|
7245
|
+
not_eq?: string;
|
|
7246
|
+
};
|
|
6741
7247
|
type GraphNodeFilterLabel = {
|
|
6742
7248
|
contains?: string;
|
|
6743
7249
|
eq?: string;
|
|
@@ -6963,6 +7469,32 @@ type SearchAnalytics = {
|
|
|
6963
7469
|
};
|
|
6964
7470
|
type: string;
|
|
6965
7471
|
};
|
|
7472
|
+
type AgentUsageFilterOwner = {
|
|
7473
|
+
eq?: {
|
|
7474
|
+
[key: string]: unknown;
|
|
7475
|
+
};
|
|
7476
|
+
greater_than?: {
|
|
7477
|
+
[key: string]: unknown;
|
|
7478
|
+
};
|
|
7479
|
+
greater_than_or_equal?: {
|
|
7480
|
+
[key: string]: unknown;
|
|
7481
|
+
};
|
|
7482
|
+
in?: Array<{
|
|
7483
|
+
[key: string]: unknown;
|
|
7484
|
+
}>;
|
|
7485
|
+
is_distinct_from?: string;
|
|
7486
|
+
is_nil?: boolean;
|
|
7487
|
+
is_not_distinct_from?: string;
|
|
7488
|
+
less_than?: {
|
|
7489
|
+
[key: string]: unknown;
|
|
7490
|
+
};
|
|
7491
|
+
less_than_or_equal?: {
|
|
7492
|
+
[key: string]: unknown;
|
|
7493
|
+
};
|
|
7494
|
+
not_eq?: {
|
|
7495
|
+
[key: string]: unknown;
|
|
7496
|
+
};
|
|
7497
|
+
};
|
|
6966
7498
|
type TokenFilterBrand = {
|
|
6967
7499
|
contains?: string;
|
|
6968
7500
|
eq?: string;
|
|
@@ -7098,6 +7630,10 @@ type TrainingExampleFilterCorrectedValue = {
|
|
|
7098
7630
|
like?: string;
|
|
7099
7631
|
not_eq?: string;
|
|
7100
7632
|
};
|
|
7633
|
+
/**
|
|
7634
|
+
* Filters the query to results matching the given filter object
|
|
7635
|
+
*/
|
|
7636
|
+
type ThreadStatsFilter = unknown;
|
|
7101
7637
|
type PermissionFilterCategory = {
|
|
7102
7638
|
contains?: string;
|
|
7103
7639
|
eq?: string;
|
|
@@ -7222,6 +7758,21 @@ type SearchAnalyticsFilterId = {
|
|
|
7222
7758
|
less_than_or_equal?: string;
|
|
7223
7759
|
not_eq?: string;
|
|
7224
7760
|
};
|
|
7761
|
+
type WholesaleAgreementFilterNotes = {
|
|
7762
|
+
contains?: string;
|
|
7763
|
+
eq?: string;
|
|
7764
|
+
greater_than?: string;
|
|
7765
|
+
greater_than_or_equal?: string;
|
|
7766
|
+
ilike?: string;
|
|
7767
|
+
in?: Array<string>;
|
|
7768
|
+
is_distinct_from?: string;
|
|
7769
|
+
is_nil?: boolean;
|
|
7770
|
+
is_not_distinct_from?: string;
|
|
7771
|
+
less_than?: string;
|
|
7772
|
+
less_than_or_equal?: string;
|
|
7773
|
+
like?: string;
|
|
7774
|
+
not_eq?: string;
|
|
7775
|
+
};
|
|
7225
7776
|
/**
|
|
7226
7777
|
* A "Resource object" representing a agent_version
|
|
7227
7778
|
*/
|
|
@@ -7443,6 +7994,18 @@ type EmailTemplateFilterSlug = {
|
|
|
7443
7994
|
* Filters the query to results matching the given filter object
|
|
7444
7995
|
*/
|
|
7445
7996
|
type ApplicationFilter = unknown;
|
|
7997
|
+
type ThreadStatsFilterGeneratedAt = {
|
|
7998
|
+
eq?: unknown;
|
|
7999
|
+
greater_than?: unknown;
|
|
8000
|
+
greater_than_or_equal?: unknown;
|
|
8001
|
+
in?: Array<unknown>;
|
|
8002
|
+
is_distinct_from?: string;
|
|
8003
|
+
is_nil?: boolean;
|
|
8004
|
+
is_not_distinct_from?: string;
|
|
8005
|
+
less_than?: unknown;
|
|
8006
|
+
less_than_or_equal?: unknown;
|
|
8007
|
+
not_eq?: unknown;
|
|
8008
|
+
};
|
|
7446
8009
|
type SubscriptionFilterId = {
|
|
7447
8010
|
eq?: string;
|
|
7448
8011
|
greater_than?: string;
|
|
@@ -8576,6 +9139,30 @@ type AccountFilterCredits = {
|
|
|
8576
9139
|
less_than_or_equal?: number;
|
|
8577
9140
|
not_eq?: number;
|
|
8578
9141
|
};
|
|
9142
|
+
type ThreadWorkspaceStatsFilterActiveThreads24h = {
|
|
9143
|
+
eq?: number;
|
|
9144
|
+
greater_than?: number;
|
|
9145
|
+
greater_than_or_equal?: number;
|
|
9146
|
+
in?: Array<number>;
|
|
9147
|
+
is_distinct_from?: string;
|
|
9148
|
+
is_nil?: boolean;
|
|
9149
|
+
is_not_distinct_from?: string;
|
|
9150
|
+
less_than?: number;
|
|
9151
|
+
less_than_or_equal?: number;
|
|
9152
|
+
not_eq?: number;
|
|
9153
|
+
};
|
|
9154
|
+
type ThreadWorkspaceStatsFilterActiveThreads7d = {
|
|
9155
|
+
eq?: number;
|
|
9156
|
+
greater_than?: number;
|
|
9157
|
+
greater_than_or_equal?: number;
|
|
9158
|
+
in?: Array<number>;
|
|
9159
|
+
is_distinct_from?: string;
|
|
9160
|
+
is_nil?: boolean;
|
|
9161
|
+
is_not_distinct_from?: string;
|
|
9162
|
+
less_than?: number;
|
|
9163
|
+
less_than_or_equal?: number;
|
|
9164
|
+
not_eq?: number;
|
|
9165
|
+
};
|
|
8579
9166
|
/**
|
|
8580
9167
|
* Filters the query to results matching the given filter object
|
|
8581
9168
|
*/
|
|
@@ -8763,6 +9350,10 @@ type WebhookDeliveryFilterId = {
|
|
|
8763
9350
|
less_than_or_equal?: string;
|
|
8764
9351
|
not_eq?: string;
|
|
8765
9352
|
};
|
|
9353
|
+
/**
|
|
9354
|
+
* Filters the query to results matching the given filter object
|
|
9355
|
+
*/
|
|
9356
|
+
type AgentTrainingStatsFilter = unknown;
|
|
8766
9357
|
/**
|
|
8767
9358
|
* Filters the query to results matching the given filter object
|
|
8768
9359
|
*/
|
|
@@ -9114,6 +9705,18 @@ type WebhookDeliveryFilterPayload = {
|
|
|
9114
9705
|
[key: string]: unknown;
|
|
9115
9706
|
};
|
|
9116
9707
|
};
|
|
9708
|
+
type AgentStatsFilterTotalCost = {
|
|
9709
|
+
eq?: number;
|
|
9710
|
+
greater_than?: number;
|
|
9711
|
+
greater_than_or_equal?: number;
|
|
9712
|
+
in?: Array<number>;
|
|
9713
|
+
is_distinct_from?: string;
|
|
9714
|
+
is_nil?: boolean;
|
|
9715
|
+
is_not_distinct_from?: string;
|
|
9716
|
+
less_than?: number;
|
|
9717
|
+
less_than_or_equal?: number;
|
|
9718
|
+
not_eq?: number;
|
|
9719
|
+
};
|
|
9117
9720
|
/**
|
|
9118
9721
|
* A "Resource object" representing a pricing_rule
|
|
9119
9722
|
*/
|
|
@@ -9133,6 +9736,18 @@ type PricingRule = {
|
|
|
9133
9736
|
};
|
|
9134
9737
|
type: string;
|
|
9135
9738
|
};
|
|
9739
|
+
type SettlementFilterId = {
|
|
9740
|
+
eq?: string;
|
|
9741
|
+
greater_than?: string;
|
|
9742
|
+
greater_than_or_equal?: string;
|
|
9743
|
+
in?: Array<string>;
|
|
9744
|
+
is_distinct_from?: string;
|
|
9745
|
+
is_nil?: boolean;
|
|
9746
|
+
is_not_distinct_from?: string;
|
|
9747
|
+
less_than?: string;
|
|
9748
|
+
less_than_or_equal?: string;
|
|
9749
|
+
not_eq?: string;
|
|
9750
|
+
};
|
|
9136
9751
|
type TransactionFilterCreditsUsed = {
|
|
9137
9752
|
eq?: number;
|
|
9138
9753
|
greater_than?: number;
|
|
@@ -9171,6 +9786,73 @@ type GraphNodeFilterProperties = {
|
|
|
9171
9786
|
[key: string]: unknown;
|
|
9172
9787
|
};
|
|
9173
9788
|
};
|
|
9789
|
+
/**
|
|
9790
|
+
* A "Resource object" representing a settlement
|
|
9791
|
+
*/
|
|
9792
|
+
type Settlement = {
|
|
9793
|
+
/**
|
|
9794
|
+
* An attributes object for a settlement
|
|
9795
|
+
*/
|
|
9796
|
+
attributes?: {
|
|
9797
|
+
/**
|
|
9798
|
+
* Per-operation and per-tenant breakdown for ISV visibility. Field included by default.
|
|
9799
|
+
*/
|
|
9800
|
+
breakdown?: {
|
|
9801
|
+
[key: string]: unknown;
|
|
9802
|
+
} | null | unknown;
|
|
9803
|
+
/**
|
|
9804
|
+
* Error message if settlement failed. Field included by default.
|
|
9805
|
+
*/
|
|
9806
|
+
error_message?: string | null | unknown;
|
|
9807
|
+
/**
|
|
9808
|
+
* Date when funds can be released from hold. Field included by default.
|
|
9809
|
+
*/
|
|
9810
|
+
hold_until?: string | null | unknown;
|
|
9811
|
+
/**
|
|
9812
|
+
* When settlement was paid out. Field included by default.
|
|
9813
|
+
*/
|
|
9814
|
+
paid_at?: string | null | unknown;
|
|
9815
|
+
/**
|
|
9816
|
+
* QorPay ACH transaction ID for payout. Field included by default.
|
|
9817
|
+
*/
|
|
9818
|
+
qorpay_transaction_id?: string | null | unknown;
|
|
9819
|
+
/**
|
|
9820
|
+
* Field included by default.
|
|
9821
|
+
*/
|
|
9822
|
+
status?: "pending" | "calculated" | "held" | "released" | "paid" | "failed" | unknown;
|
|
9823
|
+
};
|
|
9824
|
+
id: string;
|
|
9825
|
+
/**
|
|
9826
|
+
* A relationships object for a settlement
|
|
9827
|
+
*/
|
|
9828
|
+
relationships?: {
|
|
9829
|
+
application?: {
|
|
9830
|
+
/**
|
|
9831
|
+
* An identifier for application
|
|
9832
|
+
*/
|
|
9833
|
+
data?: {
|
|
9834
|
+
id: string;
|
|
9835
|
+
meta?: {
|
|
9836
|
+
[key: string]: unknown;
|
|
9837
|
+
};
|
|
9838
|
+
type: string;
|
|
9839
|
+
} | null;
|
|
9840
|
+
};
|
|
9841
|
+
isv?: {
|
|
9842
|
+
/**
|
|
9843
|
+
* An identifier for isv
|
|
9844
|
+
*/
|
|
9845
|
+
data?: {
|
|
9846
|
+
id: string;
|
|
9847
|
+
meta?: {
|
|
9848
|
+
[key: string]: unknown;
|
|
9849
|
+
};
|
|
9850
|
+
type: string;
|
|
9851
|
+
} | null;
|
|
9852
|
+
};
|
|
9853
|
+
};
|
|
9854
|
+
type: string;
|
|
9855
|
+
};
|
|
9174
9856
|
/**
|
|
9175
9857
|
* A "Resource object" representing a tenant-membership
|
|
9176
9858
|
*/
|
|
@@ -9340,6 +10022,21 @@ type ExtractionDocumentFilterMunicipality = {
|
|
|
9340
10022
|
like?: string;
|
|
9341
10023
|
not_eq?: string;
|
|
9342
10024
|
};
|
|
10025
|
+
/**
|
|
10026
|
+
* Days to hold funds before release
|
|
10027
|
+
*/
|
|
10028
|
+
type WholesaleAgreementFilterHoldDays = {
|
|
10029
|
+
eq?: number;
|
|
10030
|
+
greater_than?: number;
|
|
10031
|
+
greater_than_or_equal?: number;
|
|
10032
|
+
in?: Array<number>;
|
|
10033
|
+
is_distinct_from?: string;
|
|
10034
|
+
is_nil?: boolean;
|
|
10035
|
+
is_not_distinct_from?: string;
|
|
10036
|
+
less_than?: number;
|
|
10037
|
+
less_than_or_equal?: number;
|
|
10038
|
+
not_eq?: number;
|
|
10039
|
+
};
|
|
9343
10040
|
/**
|
|
9344
10041
|
* HMAC secret for webhook signature verification
|
|
9345
10042
|
*/
|
|
@@ -9735,6 +10432,18 @@ type TrainingExampleFilterCorrectionReasons = {
|
|
|
9735
10432
|
[key: string]: unknown;
|
|
9736
10433
|
};
|
|
9737
10434
|
};
|
|
10435
|
+
type AgentTrainingStatsFilterTotalExamples = {
|
|
10436
|
+
eq?: number;
|
|
10437
|
+
greater_than?: number;
|
|
10438
|
+
greater_than_or_equal?: number;
|
|
10439
|
+
in?: Array<number>;
|
|
10440
|
+
is_distinct_from?: string;
|
|
10441
|
+
is_nil?: boolean;
|
|
10442
|
+
is_not_distinct_from?: string;
|
|
10443
|
+
less_than?: number;
|
|
10444
|
+
less_than_or_equal?: number;
|
|
10445
|
+
not_eq?: number;
|
|
10446
|
+
};
|
|
9738
10447
|
type ThreadFilterContextSummary = {
|
|
9739
10448
|
contains?: string;
|
|
9740
10449
|
eq?: string;
|
|
@@ -9962,6 +10671,10 @@ type TenantMembershipFilterUserId = {
|
|
|
9962
10671
|
less_than_or_equal?: string;
|
|
9963
10672
|
not_eq?: string;
|
|
9964
10673
|
};
|
|
10674
|
+
/**
|
|
10675
|
+
* Filters the query to results matching the given filter object
|
|
10676
|
+
*/
|
|
10677
|
+
type SettlementFilter = unknown;
|
|
9965
10678
|
type TenantDocumentStatsFilterCompleted = {
|
|
9966
10679
|
eq?: number;
|
|
9967
10680
|
greater_than?: number;
|
|
@@ -10405,6 +11118,18 @@ type InvitationFilterExpiresAt = {
|
|
|
10405
11118
|
less_than_or_equal?: string;
|
|
10406
11119
|
not_eq?: string;
|
|
10407
11120
|
};
|
|
11121
|
+
type WholesaleAgreementFilterIsvTenantId = {
|
|
11122
|
+
eq?: string;
|
|
11123
|
+
greater_than?: string;
|
|
11124
|
+
greater_than_or_equal?: string;
|
|
11125
|
+
in?: Array<string>;
|
|
11126
|
+
is_distinct_from?: string;
|
|
11127
|
+
is_nil?: boolean;
|
|
11128
|
+
is_not_distinct_from?: string;
|
|
11129
|
+
less_than?: string;
|
|
11130
|
+
less_than_or_equal?: string;
|
|
11131
|
+
not_eq?: string;
|
|
11132
|
+
};
|
|
10408
11133
|
type SavedSearchFilterQuery = {
|
|
10409
11134
|
contains?: string;
|
|
10410
11135
|
eq?: string;
|
|
@@ -10461,6 +11186,18 @@ type WatcherEventFilterErrorMessage = {
|
|
|
10461
11186
|
like?: string;
|
|
10462
11187
|
not_eq?: string;
|
|
10463
11188
|
};
|
|
11189
|
+
type ThreadStatsFilterActiveThreads7d = {
|
|
11190
|
+
eq?: number;
|
|
11191
|
+
greater_than?: number;
|
|
11192
|
+
greater_than_or_equal?: number;
|
|
11193
|
+
in?: Array<number>;
|
|
11194
|
+
is_distinct_from?: string;
|
|
11195
|
+
is_nil?: boolean;
|
|
11196
|
+
is_not_distinct_from?: string;
|
|
11197
|
+
less_than?: number;
|
|
11198
|
+
less_than_or_equal?: number;
|
|
11199
|
+
not_eq?: number;
|
|
11200
|
+
};
|
|
10464
11201
|
/**
|
|
10465
11202
|
* Credits used in current period (resets based on period)
|
|
10466
11203
|
*/
|
|
@@ -10568,6 +11305,18 @@ type ExtractionDocumentFilterQueueReason = {
|
|
|
10568
11305
|
less_than_or_equal?: string;
|
|
10569
11306
|
not_eq?: string;
|
|
10570
11307
|
};
|
|
11308
|
+
type ThreadWorkspaceStatsFilterTotalMessages = {
|
|
11309
|
+
eq?: number;
|
|
11310
|
+
greater_than?: number;
|
|
11311
|
+
greater_than_or_equal?: number;
|
|
11312
|
+
in?: Array<number>;
|
|
11313
|
+
is_distinct_from?: string;
|
|
11314
|
+
is_nil?: boolean;
|
|
11315
|
+
is_not_distinct_from?: string;
|
|
11316
|
+
less_than?: number;
|
|
11317
|
+
less_than_or_equal?: number;
|
|
11318
|
+
not_eq?: number;
|
|
11319
|
+
};
|
|
10571
11320
|
type AgentTestResultFilterUsage = {
|
|
10572
11321
|
eq?: {
|
|
10573
11322
|
[key: string]: unknown;
|
|
@@ -10998,6 +11747,18 @@ type PermissionFilterAction = {
|
|
|
10998
11747
|
less_than_or_equal?: string;
|
|
10999
11748
|
not_eq?: string;
|
|
11000
11749
|
};
|
|
11750
|
+
type AgentTrainingStatsFilterLastExampleCreatedAt = {
|
|
11751
|
+
eq?: unknown;
|
|
11752
|
+
greater_than?: unknown;
|
|
11753
|
+
greater_than_or_equal?: unknown;
|
|
11754
|
+
in?: Array<unknown>;
|
|
11755
|
+
is_distinct_from?: string;
|
|
11756
|
+
is_nil?: boolean;
|
|
11757
|
+
is_not_distinct_from?: string;
|
|
11758
|
+
less_than?: unknown;
|
|
11759
|
+
less_than_or_equal?: unknown;
|
|
11760
|
+
not_eq?: unknown;
|
|
11761
|
+
};
|
|
11001
11762
|
type EmbeddingFilterEmbedding = {
|
|
11002
11763
|
eq?: unknown;
|
|
11003
11764
|
greater_than?: unknown;
|
|
@@ -11202,6 +11963,18 @@ type FieldMappingConfirmationFilterConfirmed = {
|
|
|
11202
11963
|
less_than_or_equal?: boolean;
|
|
11203
11964
|
not_eq?: boolean;
|
|
11204
11965
|
};
|
|
11966
|
+
type ThreadStatsFilterTotalThreads = {
|
|
11967
|
+
eq?: number;
|
|
11968
|
+
greater_than?: number;
|
|
11969
|
+
greater_than_or_equal?: number;
|
|
11970
|
+
in?: Array<number>;
|
|
11971
|
+
is_distinct_from?: string;
|
|
11972
|
+
is_nil?: boolean;
|
|
11973
|
+
is_not_distinct_from?: string;
|
|
11974
|
+
less_than?: number;
|
|
11975
|
+
less_than_or_equal?: number;
|
|
11976
|
+
not_eq?: number;
|
|
11977
|
+
};
|
|
11205
11978
|
/**
|
|
11206
11979
|
* When true, password registration withholds JWT until email is verified
|
|
11207
11980
|
*/
|
|
@@ -11322,6 +12095,18 @@ type PlanFilterName = {
|
|
|
11322
12095
|
like?: string;
|
|
11323
12096
|
not_eq?: string;
|
|
11324
12097
|
};
|
|
12098
|
+
type AgentUsageFilterIsShared = {
|
|
12099
|
+
eq?: boolean;
|
|
12100
|
+
greater_than?: boolean;
|
|
12101
|
+
greater_than_or_equal?: boolean;
|
|
12102
|
+
in?: Array<boolean>;
|
|
12103
|
+
is_distinct_from?: string;
|
|
12104
|
+
is_nil?: boolean;
|
|
12105
|
+
is_not_distinct_from?: string;
|
|
12106
|
+
less_than?: boolean;
|
|
12107
|
+
less_than_or_equal?: boolean;
|
|
12108
|
+
not_eq?: boolean;
|
|
12109
|
+
};
|
|
11325
12110
|
/**
|
|
11326
12111
|
* A "Resource object" representing a bulk_reprocess_result
|
|
11327
12112
|
*/
|
|
@@ -11773,6 +12558,18 @@ type UserProfileFilterBio = {
|
|
|
11773
12558
|
like?: string;
|
|
11774
12559
|
not_eq?: string;
|
|
11775
12560
|
};
|
|
12561
|
+
type AgentStatsFilterAgentId = {
|
|
12562
|
+
eq?: string;
|
|
12563
|
+
greater_than?: string;
|
|
12564
|
+
greater_than_or_equal?: string;
|
|
12565
|
+
in?: Array<string>;
|
|
12566
|
+
is_distinct_from?: string;
|
|
12567
|
+
is_nil?: boolean;
|
|
12568
|
+
is_not_distinct_from?: string;
|
|
12569
|
+
less_than?: string;
|
|
12570
|
+
less_than_or_equal?: string;
|
|
12571
|
+
not_eq?: string;
|
|
12572
|
+
};
|
|
11776
12573
|
/**
|
|
11777
12574
|
* Filters the query to results matching the given filter object
|
|
11778
12575
|
*/
|
|
@@ -11795,6 +12592,18 @@ type ExtractionDocumentFilterBucketName = {
|
|
|
11795
12592
|
like?: string;
|
|
11796
12593
|
not_eq?: string;
|
|
11797
12594
|
};
|
|
12595
|
+
type ThreadStatsFilterActiveThreads24h = {
|
|
12596
|
+
eq?: number;
|
|
12597
|
+
greater_than?: number;
|
|
12598
|
+
greater_than_or_equal?: number;
|
|
12599
|
+
in?: Array<number>;
|
|
12600
|
+
is_distinct_from?: string;
|
|
12601
|
+
is_nil?: boolean;
|
|
12602
|
+
is_not_distinct_from?: string;
|
|
12603
|
+
less_than?: number;
|
|
12604
|
+
less_than_or_equal?: number;
|
|
12605
|
+
not_eq?: number;
|
|
12606
|
+
};
|
|
11798
12607
|
type SavedSearchFilterExecutedAt = {
|
|
11799
12608
|
contains?: string;
|
|
11800
12609
|
eq?: string;
|
|
@@ -12138,6 +12947,113 @@ type BulkReprocessResultFilterId = {
|
|
|
12138
12947
|
less_than_or_equal?: string;
|
|
12139
12948
|
not_eq?: string;
|
|
12140
12949
|
};
|
|
12950
|
+
/**
|
|
12951
|
+
* A "Resource object" representing a agent_training_stats
|
|
12952
|
+
*/
|
|
12953
|
+
type AgentTrainingStats = {
|
|
12954
|
+
/**
|
|
12955
|
+
* An attributes object for a agent_training_stats
|
|
12956
|
+
*/
|
|
12957
|
+
attributes?: {
|
|
12958
|
+
/**
|
|
12959
|
+
* Field included by default.
|
|
12960
|
+
*/
|
|
12961
|
+
accuracy: number;
|
|
12962
|
+
/**
|
|
12963
|
+
* Field included by default.
|
|
12964
|
+
*/
|
|
12965
|
+
agent_id: string;
|
|
12966
|
+
/**
|
|
12967
|
+
* Field included by default.
|
|
12968
|
+
*/
|
|
12969
|
+
examples_last_7_days: number;
|
|
12970
|
+
/**
|
|
12971
|
+
* Field included by default.
|
|
12972
|
+
*/
|
|
12973
|
+
last_example_created_at?: unknown;
|
|
12974
|
+
/**
|
|
12975
|
+
* Field included by default.
|
|
12976
|
+
*/
|
|
12977
|
+
learning_active: boolean;
|
|
12978
|
+
/**
|
|
12979
|
+
* Field included by default.
|
|
12980
|
+
*/
|
|
12981
|
+
total_examples: number;
|
|
12982
|
+
/**
|
|
12983
|
+
* Field included by default.
|
|
12984
|
+
*/
|
|
12985
|
+
version: number;
|
|
12986
|
+
};
|
|
12987
|
+
id: string;
|
|
12988
|
+
/**
|
|
12989
|
+
* A relationships object for a agent_training_stats
|
|
12990
|
+
*/
|
|
12991
|
+
relationships?: {
|
|
12992
|
+
agent?: {
|
|
12993
|
+
/**
|
|
12994
|
+
* An identifier for agent
|
|
12995
|
+
*/
|
|
12996
|
+
data?: {
|
|
12997
|
+
id: string;
|
|
12998
|
+
meta?: {
|
|
12999
|
+
[key: string]: unknown;
|
|
13000
|
+
};
|
|
13001
|
+
type: string;
|
|
13002
|
+
} | null;
|
|
13003
|
+
};
|
|
13004
|
+
};
|
|
13005
|
+
type: string;
|
|
13006
|
+
};
|
|
13007
|
+
/**
|
|
13008
|
+
* A "Resource object" representing a thread_stats
|
|
13009
|
+
*/
|
|
13010
|
+
type ThreadStats = {
|
|
13011
|
+
/**
|
|
13012
|
+
* An attributes object for a thread_stats
|
|
13013
|
+
*/
|
|
13014
|
+
attributes?: {
|
|
13015
|
+
/**
|
|
13016
|
+
* Field included by default.
|
|
13017
|
+
*/
|
|
13018
|
+
active_threads_24h: number;
|
|
13019
|
+
/**
|
|
13020
|
+
* Field included by default.
|
|
13021
|
+
*/
|
|
13022
|
+
active_threads_7d: number;
|
|
13023
|
+
/**
|
|
13024
|
+
* Field included by default.
|
|
13025
|
+
*/
|
|
13026
|
+
generated_at: unknown;
|
|
13027
|
+
/**
|
|
13028
|
+
* Field included by default.
|
|
13029
|
+
*/
|
|
13030
|
+
messages_by_role: {
|
|
13031
|
+
[key: string]: unknown;
|
|
13032
|
+
};
|
|
13033
|
+
/**
|
|
13034
|
+
* Field included by default.
|
|
13035
|
+
*/
|
|
13036
|
+
top_workspaces: Array<{
|
|
13037
|
+
[key: string]: unknown;
|
|
13038
|
+
}>;
|
|
13039
|
+
/**
|
|
13040
|
+
* Field included by default.
|
|
13041
|
+
*/
|
|
13042
|
+
total_messages: number;
|
|
13043
|
+
/**
|
|
13044
|
+
* Field included by default.
|
|
13045
|
+
*/
|
|
13046
|
+
total_threads: number;
|
|
13047
|
+
};
|
|
13048
|
+
id: string;
|
|
13049
|
+
/**
|
|
13050
|
+
* A relationships object for a thread_stats
|
|
13051
|
+
*/
|
|
13052
|
+
relationships?: {
|
|
13053
|
+
[key: string]: never;
|
|
13054
|
+
};
|
|
13055
|
+
type: string;
|
|
13056
|
+
};
|
|
12141
13057
|
type EmailTemplateFilterApplicationId = {
|
|
12142
13058
|
eq?: string;
|
|
12143
13059
|
greater_than?: string;
|
|
@@ -12290,6 +13206,18 @@ type BulkDismissalResult = {
|
|
|
12290
13206
|
};
|
|
12291
13207
|
type: string;
|
|
12292
13208
|
};
|
|
13209
|
+
type AgentTrainingStatsFilterLearningActive = {
|
|
13210
|
+
eq?: boolean;
|
|
13211
|
+
greater_than?: boolean;
|
|
13212
|
+
greater_than_or_equal?: boolean;
|
|
13213
|
+
in?: Array<boolean>;
|
|
13214
|
+
is_distinct_from?: string;
|
|
13215
|
+
is_nil?: boolean;
|
|
13216
|
+
is_not_distinct_from?: string;
|
|
13217
|
+
less_than?: boolean;
|
|
13218
|
+
less_than_or_equal?: boolean;
|
|
13219
|
+
not_eq?: boolean;
|
|
13220
|
+
};
|
|
12293
13221
|
/**
|
|
12294
13222
|
* A "Resource object" representing a search
|
|
12295
13223
|
*/
|
|
@@ -12314,6 +13242,32 @@ type Search = {
|
|
|
12314
13242
|
};
|
|
12315
13243
|
type: string;
|
|
12316
13244
|
};
|
|
13245
|
+
type ThreadStatsFilterMessagesByRole = {
|
|
13246
|
+
eq?: {
|
|
13247
|
+
[key: string]: unknown;
|
|
13248
|
+
};
|
|
13249
|
+
greater_than?: {
|
|
13250
|
+
[key: string]: unknown;
|
|
13251
|
+
};
|
|
13252
|
+
greater_than_or_equal?: {
|
|
13253
|
+
[key: string]: unknown;
|
|
13254
|
+
};
|
|
13255
|
+
in?: Array<{
|
|
13256
|
+
[key: string]: unknown;
|
|
13257
|
+
}>;
|
|
13258
|
+
is_distinct_from?: string;
|
|
13259
|
+
is_nil?: boolean;
|
|
13260
|
+
is_not_distinct_from?: string;
|
|
13261
|
+
less_than?: {
|
|
13262
|
+
[key: string]: unknown;
|
|
13263
|
+
};
|
|
13264
|
+
less_than_or_equal?: {
|
|
13265
|
+
[key: string]: unknown;
|
|
13266
|
+
};
|
|
13267
|
+
not_eq?: {
|
|
13268
|
+
[key: string]: unknown;
|
|
13269
|
+
};
|
|
13270
|
+
};
|
|
12317
13271
|
type CreditPackageFilterSlug = {
|
|
12318
13272
|
contains?: string;
|
|
12319
13273
|
eq?: string;
|
|
@@ -12511,6 +13465,18 @@ type ExtractionExportFilterExpiresAt = {
|
|
|
12511
13465
|
less_than_or_equal?: unknown;
|
|
12512
13466
|
not_eq?: unknown;
|
|
12513
13467
|
};
|
|
13468
|
+
type AgentTrainingStatsFilterAccuracy = {
|
|
13469
|
+
eq?: number;
|
|
13470
|
+
greater_than?: number;
|
|
13471
|
+
greater_than_or_equal?: number;
|
|
13472
|
+
in?: Array<number>;
|
|
13473
|
+
is_distinct_from?: string;
|
|
13474
|
+
is_nil?: boolean;
|
|
13475
|
+
is_not_distinct_from?: string;
|
|
13476
|
+
less_than?: number;
|
|
13477
|
+
less_than_or_equal?: number;
|
|
13478
|
+
not_eq?: number;
|
|
13479
|
+
};
|
|
12514
13480
|
/**
|
|
12515
13481
|
* A "Resource object" representing a bucket
|
|
12516
13482
|
*/
|
|
@@ -12754,6 +13720,21 @@ type WatcherEventFilterId = {
|
|
|
12754
13720
|
less_than_or_equal?: number;
|
|
12755
13721
|
not_eq?: number;
|
|
12756
13722
|
};
|
|
13723
|
+
/**
|
|
13724
|
+
* When settlement was paid out
|
|
13725
|
+
*/
|
|
13726
|
+
type SettlementFilterPaidAt = {
|
|
13727
|
+
eq?: string;
|
|
13728
|
+
greater_than?: string;
|
|
13729
|
+
greater_than_or_equal?: string;
|
|
13730
|
+
in?: Array<string>;
|
|
13731
|
+
is_distinct_from?: string;
|
|
13732
|
+
is_nil?: boolean;
|
|
13733
|
+
is_not_distinct_from?: string;
|
|
13734
|
+
less_than?: string;
|
|
13735
|
+
less_than_or_equal?: string;
|
|
13736
|
+
not_eq?: string;
|
|
13737
|
+
};
|
|
12757
13738
|
type ExtractionBatchFilterId = {
|
|
12758
13739
|
eq?: string;
|
|
12759
13740
|
greater_than?: string;
|
|
@@ -12809,6 +13790,18 @@ type TenantFilterAutoTopUpPackageId = {
|
|
|
12809
13790
|
less_than_or_equal?: string;
|
|
12810
13791
|
not_eq?: string;
|
|
12811
13792
|
};
|
|
13793
|
+
type WholesaleAgreementFilterId = {
|
|
13794
|
+
eq?: string;
|
|
13795
|
+
greater_than?: string;
|
|
13796
|
+
greater_than_or_equal?: string;
|
|
13797
|
+
in?: Array<string>;
|
|
13798
|
+
is_distinct_from?: string;
|
|
13799
|
+
is_nil?: boolean;
|
|
13800
|
+
is_not_distinct_from?: string;
|
|
13801
|
+
less_than?: string;
|
|
13802
|
+
less_than_or_equal?: string;
|
|
13803
|
+
not_eq?: string;
|
|
13804
|
+
};
|
|
12812
13805
|
type SchemaDiscoveryFilterCreatedAt = {
|
|
12813
13806
|
eq?: unknown;
|
|
12814
13807
|
greater_than?: unknown;
|
|
@@ -13010,6 +14003,21 @@ type ExtractionExportFilterErrorMessage = {
|
|
|
13010
14003
|
like?: string;
|
|
13011
14004
|
not_eq?: string;
|
|
13012
14005
|
};
|
|
14006
|
+
/**
|
|
14007
|
+
* Minimum payout amount in cents ($25.00 default)
|
|
14008
|
+
*/
|
|
14009
|
+
type WholesaleAgreementFilterMinimumPayoutCents = {
|
|
14010
|
+
eq?: number;
|
|
14011
|
+
greater_than?: number;
|
|
14012
|
+
greater_than_or_equal?: number;
|
|
14013
|
+
in?: Array<number>;
|
|
14014
|
+
is_distinct_from?: string;
|
|
14015
|
+
is_nil?: boolean;
|
|
14016
|
+
is_not_distinct_from?: string;
|
|
14017
|
+
less_than?: number;
|
|
14018
|
+
less_than_or_equal?: number;
|
|
14019
|
+
not_eq?: number;
|
|
14020
|
+
};
|
|
13013
14021
|
type WatcherClaimFilterErrorMessage = {
|
|
13014
14022
|
contains?: string;
|
|
13015
14023
|
eq?: string;
|
|
@@ -13758,6 +14766,73 @@ type WalletFilterCreditsPaid = {
|
|
|
13758
14766
|
less_than_or_equal?: number;
|
|
13759
14767
|
not_eq?: number;
|
|
13760
14768
|
};
|
|
14769
|
+
/**
|
|
14770
|
+
* A "Resource object" representing a wholesale-agreement
|
|
14771
|
+
*/
|
|
14772
|
+
type WholesaleAgreement = {
|
|
14773
|
+
/**
|
|
14774
|
+
* An attributes object for a wholesale-agreement
|
|
14775
|
+
*/
|
|
14776
|
+
attributes?: {
|
|
14777
|
+
/**
|
|
14778
|
+
* Field included by default.
|
|
14779
|
+
*/
|
|
14780
|
+
effective_date?: string | null | unknown;
|
|
14781
|
+
/**
|
|
14782
|
+
* Days to hold funds before release. Field included by default.
|
|
14783
|
+
*/
|
|
14784
|
+
hold_days: number;
|
|
14785
|
+
/**
|
|
14786
|
+
* Field included by default.
|
|
14787
|
+
*/
|
|
14788
|
+
isv_tenant_id: string;
|
|
14789
|
+
/**
|
|
14790
|
+
* Minimum payout amount in cents ($25.00 default). Field included by default.
|
|
14791
|
+
*/
|
|
14792
|
+
minimum_payout_cents: number;
|
|
14793
|
+
/**
|
|
14794
|
+
* Wholesale pricing model: percentage of retail or fixed floor rates. Field included by default.
|
|
14795
|
+
*/
|
|
14796
|
+
model: "percentage" | "interchange_plus";
|
|
14797
|
+
/**
|
|
14798
|
+
* Field included by default.
|
|
14799
|
+
*/
|
|
14800
|
+
notes?: string | null | unknown;
|
|
14801
|
+
/**
|
|
14802
|
+
* Per-operation floor rates for interchange-plus model. Field included by default.
|
|
14803
|
+
*/
|
|
14804
|
+
rates?: Array<{
|
|
14805
|
+
[key: string]: unknown;
|
|
14806
|
+
}> | null | unknown;
|
|
14807
|
+
/**
|
|
14808
|
+
* Field included by default.
|
|
14809
|
+
*/
|
|
14810
|
+
settlement_frequency: "monthly" | "weekly" | "daily";
|
|
14811
|
+
/**
|
|
14812
|
+
* Platform take rate as percentage of retail (for percentage model). Field included by default.
|
|
14813
|
+
*/
|
|
14814
|
+
take_rate_percent: number;
|
|
14815
|
+
};
|
|
14816
|
+
id: string;
|
|
14817
|
+
/**
|
|
14818
|
+
* A relationships object for a wholesale-agreement
|
|
14819
|
+
*/
|
|
14820
|
+
relationships?: {
|
|
14821
|
+
isv_tenant?: {
|
|
14822
|
+
/**
|
|
14823
|
+
* An identifier for isv_tenant
|
|
14824
|
+
*/
|
|
14825
|
+
data?: {
|
|
14826
|
+
id: string;
|
|
14827
|
+
meta?: {
|
|
14828
|
+
[key: string]: unknown;
|
|
14829
|
+
};
|
|
14830
|
+
type: string;
|
|
14831
|
+
} | null;
|
|
14832
|
+
};
|
|
14833
|
+
};
|
|
14834
|
+
type: string;
|
|
14835
|
+
};
|
|
13761
14836
|
type ExtractionDocumentFilterOcrText = {
|
|
13762
14837
|
contains?: string;
|
|
13763
14838
|
eq?: string;
|
|
@@ -13883,6 +14958,52 @@ type AgentVersionFilterIsActive = {
|
|
|
13883
14958
|
less_than_or_equal?: boolean;
|
|
13884
14959
|
not_eq?: boolean;
|
|
13885
14960
|
};
|
|
14961
|
+
/**
|
|
14962
|
+
* A "Resource object" representing a agent_usage
|
|
14963
|
+
*/
|
|
14964
|
+
type AgentUsage = {
|
|
14965
|
+
/**
|
|
14966
|
+
* An attributes object for a agent_usage
|
|
14967
|
+
*/
|
|
14968
|
+
attributes?: {
|
|
14969
|
+
/**
|
|
14970
|
+
* Field included by default.
|
|
14971
|
+
*/
|
|
14972
|
+
agent_id?: string | null | unknown;
|
|
14973
|
+
/**
|
|
14974
|
+
* Field included by default.
|
|
14975
|
+
*/
|
|
14976
|
+
is_shared?: boolean | null | unknown;
|
|
14977
|
+
/**
|
|
14978
|
+
* Field included by default.
|
|
14979
|
+
*/
|
|
14980
|
+
is_system?: boolean | null | unknown;
|
|
14981
|
+
/**
|
|
14982
|
+
* Field included by default.
|
|
14983
|
+
*/
|
|
14984
|
+
owner?: {
|
|
14985
|
+
[key: string]: unknown;
|
|
14986
|
+
} | null | unknown;
|
|
14987
|
+
/**
|
|
14988
|
+
* Field included by default.
|
|
14989
|
+
*/
|
|
14990
|
+
using?: Array<{
|
|
14991
|
+
[key: string]: unknown;
|
|
14992
|
+
}> | null | unknown;
|
|
14993
|
+
/**
|
|
14994
|
+
* Field included by default.
|
|
14995
|
+
*/
|
|
14996
|
+
using_count?: number | null | unknown;
|
|
14997
|
+
};
|
|
14998
|
+
id: string;
|
|
14999
|
+
/**
|
|
15000
|
+
* A relationships object for a agent_usage
|
|
15001
|
+
*/
|
|
15002
|
+
relationships?: {
|
|
15003
|
+
[key: string]: never;
|
|
15004
|
+
};
|
|
15005
|
+
type: string;
|
|
15006
|
+
};
|
|
13886
15007
|
type PaymentFilterStatus = {
|
|
13887
15008
|
eq?: string;
|
|
13888
15009
|
greater_than?: string;
|
|
@@ -14130,6 +15251,32 @@ type ExtractionDocument = {
|
|
|
14130
15251
|
};
|
|
14131
15252
|
type: string;
|
|
14132
15253
|
};
|
|
15254
|
+
type ThreadWorkspaceStatsFilterMessagesByRole = {
|
|
15255
|
+
eq?: {
|
|
15256
|
+
[key: string]: unknown;
|
|
15257
|
+
};
|
|
15258
|
+
greater_than?: {
|
|
15259
|
+
[key: string]: unknown;
|
|
15260
|
+
};
|
|
15261
|
+
greater_than_or_equal?: {
|
|
15262
|
+
[key: string]: unknown;
|
|
15263
|
+
};
|
|
15264
|
+
in?: Array<{
|
|
15265
|
+
[key: string]: unknown;
|
|
15266
|
+
}>;
|
|
15267
|
+
is_distinct_from?: string;
|
|
15268
|
+
is_nil?: boolean;
|
|
15269
|
+
is_not_distinct_from?: string;
|
|
15270
|
+
less_than?: {
|
|
15271
|
+
[key: string]: unknown;
|
|
15272
|
+
};
|
|
15273
|
+
less_than_or_equal?: {
|
|
15274
|
+
[key: string]: unknown;
|
|
15275
|
+
};
|
|
15276
|
+
not_eq?: {
|
|
15277
|
+
[key: string]: unknown;
|
|
15278
|
+
};
|
|
15279
|
+
};
|
|
14133
15280
|
/**
|
|
14134
15281
|
* Application ID for authentication and routing
|
|
14135
15282
|
*/
|
|
@@ -15755,76 +16902,93 @@ type GetAdminThreadsWorkspaceStatsData = {
|
|
|
15755
16902
|
"x-application-key": string;
|
|
15756
16903
|
};
|
|
15757
16904
|
path?: never;
|
|
15758
|
-
query?:
|
|
15759
|
-
url: "/admin/threads/workspace-stats";
|
|
15760
|
-
};
|
|
15761
|
-
type GetAdminThreadsWorkspaceStatsErrors = {
|
|
15762
|
-
/**
|
|
15763
|
-
* Bad Request - Invalid input data or malformed request
|
|
15764
|
-
*/
|
|
15765
|
-
400: ErrorResponse;
|
|
15766
|
-
/**
|
|
15767
|
-
* Unauthorized - Missing or invalid authentication token
|
|
15768
|
-
*/
|
|
15769
|
-
401: ErrorResponse;
|
|
15770
|
-
/**
|
|
15771
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
15772
|
-
*/
|
|
15773
|
-
403: ErrorResponse;
|
|
15774
|
-
/**
|
|
15775
|
-
* Not Found - Resource does not exist
|
|
15776
|
-
*/
|
|
15777
|
-
404: ErrorResponse;
|
|
15778
|
-
/**
|
|
15779
|
-
* Too Many Requests - Rate limit exceeded
|
|
15780
|
-
*/
|
|
15781
|
-
429: ErrorResponse;
|
|
15782
|
-
/**
|
|
15783
|
-
* Internal Server Error - Unexpected server error
|
|
15784
|
-
*/
|
|
15785
|
-
500: ErrorResponse;
|
|
15786
|
-
/**
|
|
15787
|
-
* General Error
|
|
15788
|
-
*/
|
|
15789
|
-
default: Errors;
|
|
15790
|
-
};
|
|
15791
|
-
type GetAdminThreadsWorkspaceStatsError = GetAdminThreadsWorkspaceStatsErrors[keyof GetAdminThreadsWorkspaceStatsErrors];
|
|
15792
|
-
type GetAdminThreadsWorkspaceStatsResponses = {
|
|
15793
|
-
/**
|
|
15794
|
-
* Success
|
|
15795
|
-
*/
|
|
15796
|
-
200: {
|
|
15797
|
-
result: {
|
|
15798
|
-
[key: string]: unknown;
|
|
15799
|
-
};
|
|
15800
|
-
};
|
|
15801
|
-
};
|
|
15802
|
-
type GetAdminThreadsWorkspaceStatsResponse = GetAdminThreadsWorkspaceStatsResponses[keyof GetAdminThreadsWorkspaceStatsResponses];
|
|
15803
|
-
type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewData = {
|
|
15804
|
-
/**
|
|
15805
|
-
* Request body for the /applications/:application_id/email-templates/:slug/preview operation on email_template resource
|
|
15806
|
-
*/
|
|
15807
|
-
body?: {
|
|
15808
|
-
data: {
|
|
15809
|
-
sample_data?: {
|
|
15810
|
-
[key: string]: unknown;
|
|
15811
|
-
} | unknown;
|
|
15812
|
-
};
|
|
15813
|
-
};
|
|
15814
|
-
headers: {
|
|
16905
|
+
query?: {
|
|
15815
16906
|
/**
|
|
15816
|
-
*
|
|
16907
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
15817
16908
|
*/
|
|
15818
|
-
|
|
15819
|
-
|
|
15820
|
-
|
|
15821
|
-
|
|
15822
|
-
|
|
16909
|
+
include?: string;
|
|
16910
|
+
/**
|
|
16911
|
+
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
16912
|
+
*/
|
|
16913
|
+
fields?: {
|
|
16914
|
+
/**
|
|
16915
|
+
* Comma separated field names for thread_workspace_stats
|
|
16916
|
+
*/
|
|
16917
|
+
thread_workspace_stats?: string;
|
|
16918
|
+
[key: string]: unknown | string | undefined;
|
|
16919
|
+
};
|
|
15823
16920
|
};
|
|
15824
|
-
|
|
15825
|
-
url: "/admin/applications/{application_id}/email-templates/{slug}/preview";
|
|
16921
|
+
url: "/admin/threads/workspace-stats";
|
|
15826
16922
|
};
|
|
15827
|
-
type
|
|
16923
|
+
type GetAdminThreadsWorkspaceStatsErrors = {
|
|
16924
|
+
/**
|
|
16925
|
+
* Bad Request - Invalid input data or malformed request
|
|
16926
|
+
*/
|
|
16927
|
+
400: ErrorResponse;
|
|
16928
|
+
/**
|
|
16929
|
+
* Unauthorized - Missing or invalid authentication token
|
|
16930
|
+
*/
|
|
16931
|
+
401: ErrorResponse;
|
|
16932
|
+
/**
|
|
16933
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
16934
|
+
*/
|
|
16935
|
+
403: ErrorResponse;
|
|
16936
|
+
/**
|
|
16937
|
+
* Not Found - Resource does not exist
|
|
16938
|
+
*/
|
|
16939
|
+
404: ErrorResponse;
|
|
16940
|
+
/**
|
|
16941
|
+
* Too Many Requests - Rate limit exceeded
|
|
16942
|
+
*/
|
|
16943
|
+
429: ErrorResponse;
|
|
16944
|
+
/**
|
|
16945
|
+
* Internal Server Error - Unexpected server error
|
|
16946
|
+
*/
|
|
16947
|
+
500: ErrorResponse;
|
|
16948
|
+
/**
|
|
16949
|
+
* General Error
|
|
16950
|
+
*/
|
|
16951
|
+
default: Errors;
|
|
16952
|
+
};
|
|
16953
|
+
type GetAdminThreadsWorkspaceStatsError = GetAdminThreadsWorkspaceStatsErrors[keyof GetAdminThreadsWorkspaceStatsErrors];
|
|
16954
|
+
type GetAdminThreadsWorkspaceStatsResponses = {
|
|
16955
|
+
/**
|
|
16956
|
+
* Success
|
|
16957
|
+
*/
|
|
16958
|
+
200: {
|
|
16959
|
+
data?: ThreadWorkspaceStats;
|
|
16960
|
+
included?: Array<unknown>;
|
|
16961
|
+
meta?: {
|
|
16962
|
+
[key: string]: unknown;
|
|
16963
|
+
};
|
|
16964
|
+
};
|
|
16965
|
+
};
|
|
16966
|
+
type GetAdminThreadsWorkspaceStatsResponse = GetAdminThreadsWorkspaceStatsResponses[keyof GetAdminThreadsWorkspaceStatsResponses];
|
|
16967
|
+
type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewData = {
|
|
16968
|
+
/**
|
|
16969
|
+
* Request body for the /applications/:application_id/email-templates/:slug/preview operation on email_template resource
|
|
16970
|
+
*/
|
|
16971
|
+
body?: {
|
|
16972
|
+
data: {
|
|
16973
|
+
sample_data?: {
|
|
16974
|
+
[key: string]: unknown;
|
|
16975
|
+
} | unknown;
|
|
16976
|
+
};
|
|
16977
|
+
};
|
|
16978
|
+
headers: {
|
|
16979
|
+
/**
|
|
16980
|
+
* Application ID for authentication and routing
|
|
16981
|
+
*/
|
|
16982
|
+
"x-application-key": string;
|
|
16983
|
+
};
|
|
16984
|
+
path: {
|
|
16985
|
+
slug: string;
|
|
16986
|
+
application_id: string;
|
|
16987
|
+
};
|
|
16988
|
+
query?: never;
|
|
16989
|
+
url: "/admin/applications/{application_id}/email-templates/{slug}/preview";
|
|
16990
|
+
};
|
|
16991
|
+
type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewErrors = {
|
|
15828
16992
|
/**
|
|
15829
16993
|
* Bad Request - Invalid input data or malformed request
|
|
15830
16994
|
*/
|
|
@@ -15873,7 +17037,7 @@ type PatchAdminAccountsByIdCreditData = {
|
|
|
15873
17037
|
attributes?: {
|
|
15874
17038
|
amount: number;
|
|
15875
17039
|
description?: string | unknown;
|
|
15876
|
-
operation?: "topup" | "subscription" | "refund" | "adjustment" | unknown;
|
|
17040
|
+
operation?: "topup" | "subscription" | "refund" | "adjustment" | "promotional" | unknown;
|
|
15877
17041
|
source_account_id?: string | unknown;
|
|
15878
17042
|
};
|
|
15879
17043
|
id: string;
|
|
@@ -19152,21 +20316,124 @@ type GetAdminAgentsByIdResponses = {
|
|
|
19152
20316
|
};
|
|
19153
20317
|
};
|
|
19154
20318
|
type GetAdminAgentsByIdResponse = GetAdminAgentsByIdResponses[keyof GetAdminAgentsByIdResponses];
|
|
19155
|
-
type
|
|
20319
|
+
type GetAdminSettlementsData = {
|
|
20320
|
+
body?: never;
|
|
20321
|
+
headers: {
|
|
20322
|
+
/**
|
|
20323
|
+
* Application ID for authentication and routing
|
|
20324
|
+
*/
|
|
20325
|
+
"x-application-key": string;
|
|
20326
|
+
};
|
|
20327
|
+
path?: never;
|
|
20328
|
+
query?: {
|
|
20329
|
+
/**
|
|
20330
|
+
* Filter results using JSON:API filter syntax. Use field comparisons like `field[eq]=value`, `field[in][]=val1&field[in][]=val2`, etc.
|
|
20331
|
+
*/
|
|
20332
|
+
filter?: SettlementFilter;
|
|
20333
|
+
/**
|
|
20334
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
20335
|
+
*/
|
|
20336
|
+
sort?: string;
|
|
20337
|
+
/**
|
|
20338
|
+
* Pagination parameters using JSON:API page-based strategy. Use `page[limit]` and `page[offset]` for pagination.
|
|
20339
|
+
*/
|
|
20340
|
+
page?: {
|
|
20341
|
+
after?: string;
|
|
20342
|
+
before?: string;
|
|
20343
|
+
count?: boolean;
|
|
20344
|
+
limit?: number;
|
|
20345
|
+
offset?: number;
|
|
20346
|
+
};
|
|
20347
|
+
/**
|
|
20348
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
20349
|
+
*/
|
|
20350
|
+
include?: string;
|
|
20351
|
+
/**
|
|
20352
|
+
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
20353
|
+
*/
|
|
20354
|
+
fields?: {
|
|
20355
|
+
/**
|
|
20356
|
+
* Comma separated field names for settlement
|
|
20357
|
+
*/
|
|
20358
|
+
settlement?: string;
|
|
20359
|
+
[key: string]: unknown | string | undefined;
|
|
20360
|
+
};
|
|
20361
|
+
};
|
|
20362
|
+
url: "/admin/settlements";
|
|
20363
|
+
};
|
|
20364
|
+
type GetAdminSettlementsErrors = {
|
|
19156
20365
|
/**
|
|
19157
|
-
* Request
|
|
20366
|
+
* Bad Request - Invalid input data or malformed request
|
|
20367
|
+
*/
|
|
20368
|
+
400: ErrorResponse;
|
|
20369
|
+
/**
|
|
20370
|
+
* Unauthorized - Missing or invalid authentication token
|
|
20371
|
+
*/
|
|
20372
|
+
401: ErrorResponse;
|
|
20373
|
+
/**
|
|
20374
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
20375
|
+
*/
|
|
20376
|
+
403: ErrorResponse;
|
|
20377
|
+
/**
|
|
20378
|
+
* Not Found - Resource does not exist
|
|
20379
|
+
*/
|
|
20380
|
+
404: ErrorResponse;
|
|
20381
|
+
/**
|
|
20382
|
+
* Too Many Requests - Rate limit exceeded
|
|
20383
|
+
*/
|
|
20384
|
+
429: ErrorResponse;
|
|
20385
|
+
/**
|
|
20386
|
+
* Internal Server Error - Unexpected server error
|
|
20387
|
+
*/
|
|
20388
|
+
500: ErrorResponse;
|
|
20389
|
+
/**
|
|
20390
|
+
* General Error
|
|
20391
|
+
*/
|
|
20392
|
+
default: Errors;
|
|
20393
|
+
};
|
|
20394
|
+
type GetAdminSettlementsError = GetAdminSettlementsErrors[keyof GetAdminSettlementsErrors];
|
|
20395
|
+
type GetAdminSettlementsResponses = {
|
|
20396
|
+
/**
|
|
20397
|
+
* Success
|
|
20398
|
+
*/
|
|
20399
|
+
200: {
|
|
20400
|
+
/**
|
|
20401
|
+
* An array of resource objects representing a settlement
|
|
20402
|
+
*/
|
|
20403
|
+
data?: Array<Settlement>;
|
|
20404
|
+
included?: Array<unknown>;
|
|
20405
|
+
meta?: {
|
|
20406
|
+
[key: string]: unknown;
|
|
20407
|
+
};
|
|
20408
|
+
};
|
|
20409
|
+
};
|
|
20410
|
+
type GetAdminSettlementsResponse = GetAdminSettlementsResponses[keyof GetAdminSettlementsResponses];
|
|
20411
|
+
type PostAdminSettlementsData = {
|
|
20412
|
+
/**
|
|
20413
|
+
* Request body for the /settlements operation on settlement resource
|
|
19158
20414
|
*/
|
|
19159
20415
|
body: {
|
|
19160
20416
|
data: {
|
|
19161
20417
|
attributes?: {
|
|
19162
|
-
|
|
19163
|
-
|
|
19164
|
-
|
|
20418
|
+
application_id: string;
|
|
20419
|
+
/**
|
|
20420
|
+
* Per-operation and per-tenant breakdown for ISV visibility
|
|
20421
|
+
*/
|
|
20422
|
+
breakdown?: {
|
|
20423
|
+
[key: string]: unknown;
|
|
20424
|
+
} | unknown;
|
|
20425
|
+
isv_id: string;
|
|
20426
|
+
net_settlement_usd?: string | unknown;
|
|
20427
|
+
period_end: unknown;
|
|
20428
|
+
period_start: unknown;
|
|
20429
|
+
retail_revenue_usd?: string | unknown;
|
|
20430
|
+
status?: "pending" | "calculated" | "held" | "released" | "paid" | "failed" | unknown;
|
|
20431
|
+
wholesale_cost_usd?: string | unknown;
|
|
19165
20432
|
};
|
|
19166
20433
|
relationships?: {
|
|
19167
20434
|
[key: string]: never;
|
|
19168
20435
|
};
|
|
19169
|
-
type?: "
|
|
20436
|
+
type?: "settlement";
|
|
19170
20437
|
};
|
|
19171
20438
|
};
|
|
19172
20439
|
headers: {
|
|
@@ -19186,15 +20453,15 @@ type PostAdminExtractionBatchesData = {
|
|
|
19186
20453
|
*/
|
|
19187
20454
|
fields?: {
|
|
19188
20455
|
/**
|
|
19189
|
-
* Comma separated field names for
|
|
20456
|
+
* Comma separated field names for settlement
|
|
19190
20457
|
*/
|
|
19191
|
-
|
|
20458
|
+
settlement?: string;
|
|
19192
20459
|
[key: string]: unknown | string | undefined;
|
|
19193
20460
|
};
|
|
19194
20461
|
};
|
|
19195
|
-
url: "/admin/
|
|
20462
|
+
url: "/admin/settlements";
|
|
19196
20463
|
};
|
|
19197
|
-
type
|
|
20464
|
+
type PostAdminSettlementsErrors = {
|
|
19198
20465
|
/**
|
|
19199
20466
|
* Bad Request - Invalid input data or malformed request
|
|
19200
20467
|
*/
|
|
@@ -19224,38 +20491,35 @@ type PostAdminExtractionBatchesErrors = {
|
|
|
19224
20491
|
*/
|
|
19225
20492
|
default: Errors;
|
|
19226
20493
|
};
|
|
19227
|
-
type
|
|
19228
|
-
type
|
|
20494
|
+
type PostAdminSettlementsError = PostAdminSettlementsErrors[keyof PostAdminSettlementsErrors];
|
|
20495
|
+
type PostAdminSettlementsResponses = {
|
|
19229
20496
|
/**
|
|
19230
20497
|
* Success
|
|
19231
20498
|
*/
|
|
19232
20499
|
201: {
|
|
19233
|
-
data?:
|
|
20500
|
+
data?: Settlement;
|
|
19234
20501
|
included?: Array<unknown>;
|
|
19235
20502
|
meta?: {
|
|
19236
20503
|
[key: string]: unknown;
|
|
19237
20504
|
};
|
|
19238
20505
|
};
|
|
19239
20506
|
};
|
|
19240
|
-
type
|
|
19241
|
-
type
|
|
20507
|
+
type PostAdminSettlementsResponse = PostAdminSettlementsResponses[keyof PostAdminSettlementsResponses];
|
|
20508
|
+
type PostAdminExtractionBatchesData = {
|
|
19242
20509
|
/**
|
|
19243
|
-
* Request body for the /extraction/
|
|
20510
|
+
* Request body for the /extraction/batches operation on extraction_batch resource
|
|
19244
20511
|
*/
|
|
19245
|
-
body
|
|
20512
|
+
body: {
|
|
19246
20513
|
data: {
|
|
19247
20514
|
attributes?: {
|
|
19248
|
-
|
|
19249
|
-
|
|
19250
|
-
|
|
19251
|
-
schema_version?: string | unknown;
|
|
19252
|
-
schema_version_id?: string | unknown;
|
|
20515
|
+
name?: string | unknown;
|
|
20516
|
+
user_label?: string | unknown;
|
|
20517
|
+
workspace_id: string;
|
|
19253
20518
|
};
|
|
19254
|
-
id: string;
|
|
19255
20519
|
relationships?: {
|
|
19256
20520
|
[key: string]: never;
|
|
19257
20521
|
};
|
|
19258
|
-
type?: "
|
|
20522
|
+
type?: "extraction_batch";
|
|
19259
20523
|
};
|
|
19260
20524
|
};
|
|
19261
20525
|
headers: {
|
|
@@ -19264,9 +20528,7 @@ type PatchAdminExtractionDocumentsByIdReprocessData = {
|
|
|
19264
20528
|
*/
|
|
19265
20529
|
"x-application-key": string;
|
|
19266
20530
|
};
|
|
19267
|
-
path
|
|
19268
|
-
id: string;
|
|
19269
|
-
};
|
|
20531
|
+
path?: never;
|
|
19270
20532
|
query?: {
|
|
19271
20533
|
/**
|
|
19272
20534
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -19277,15 +20539,15 @@ type PatchAdminExtractionDocumentsByIdReprocessData = {
|
|
|
19277
20539
|
*/
|
|
19278
20540
|
fields?: {
|
|
19279
20541
|
/**
|
|
19280
|
-
* Comma separated field names for
|
|
20542
|
+
* Comma separated field names for extraction_batch
|
|
19281
20543
|
*/
|
|
19282
|
-
|
|
20544
|
+
extraction_batch?: string;
|
|
19283
20545
|
[key: string]: unknown | string | undefined;
|
|
19284
20546
|
};
|
|
19285
20547
|
};
|
|
19286
|
-
url: "/admin/extraction/
|
|
20548
|
+
url: "/admin/extraction/batches";
|
|
19287
20549
|
};
|
|
19288
|
-
type
|
|
20550
|
+
type PostAdminExtractionBatchesErrors = {
|
|
19289
20551
|
/**
|
|
19290
20552
|
* Bad Request - Invalid input data or malformed request
|
|
19291
20553
|
*/
|
|
@@ -19315,22 +20577,40 @@ type PatchAdminExtractionDocumentsByIdReprocessErrors = {
|
|
|
19315
20577
|
*/
|
|
19316
20578
|
default: Errors;
|
|
19317
20579
|
};
|
|
19318
|
-
type
|
|
19319
|
-
type
|
|
20580
|
+
type PostAdminExtractionBatchesError = PostAdminExtractionBatchesErrors[keyof PostAdminExtractionBatchesErrors];
|
|
20581
|
+
type PostAdminExtractionBatchesResponses = {
|
|
19320
20582
|
/**
|
|
19321
20583
|
* Success
|
|
19322
20584
|
*/
|
|
19323
|
-
|
|
19324
|
-
data?:
|
|
19325
|
-
included?: Array<
|
|
20585
|
+
201: {
|
|
20586
|
+
data?: ExtractionBatch;
|
|
20587
|
+
included?: Array<unknown>;
|
|
19326
20588
|
meta?: {
|
|
19327
20589
|
[key: string]: unknown;
|
|
19328
20590
|
};
|
|
19329
20591
|
};
|
|
19330
20592
|
};
|
|
19331
|
-
type
|
|
19332
|
-
type
|
|
19333
|
-
|
|
20593
|
+
type PostAdminExtractionBatchesResponse = PostAdminExtractionBatchesResponses[keyof PostAdminExtractionBatchesResponses];
|
|
20594
|
+
type PatchAdminExtractionDocumentsByIdReprocessData = {
|
|
20595
|
+
/**
|
|
20596
|
+
* Request body for the /extraction/documents/:id/reprocess operation on extraction_document resource
|
|
20597
|
+
*/
|
|
20598
|
+
body?: {
|
|
20599
|
+
data: {
|
|
20600
|
+
attributes?: {
|
|
20601
|
+
/**
|
|
20602
|
+
* The version of the agent/schema used to process this document
|
|
20603
|
+
*/
|
|
20604
|
+
schema_version?: string | unknown;
|
|
20605
|
+
schema_version_id?: string | unknown;
|
|
20606
|
+
};
|
|
20607
|
+
id: string;
|
|
20608
|
+
relationships?: {
|
|
20609
|
+
[key: string]: never;
|
|
20610
|
+
};
|
|
20611
|
+
type?: "extraction_document";
|
|
20612
|
+
};
|
|
20613
|
+
};
|
|
19334
20614
|
headers: {
|
|
19335
20615
|
/**
|
|
19336
20616
|
* Application ID for authentication and routing
|
|
@@ -19340,10 +20620,25 @@ type GetAdminWebhookConfigsByIdEventsData = {
|
|
|
19340
20620
|
path: {
|
|
19341
20621
|
id: string;
|
|
19342
20622
|
};
|
|
19343
|
-
query?:
|
|
19344
|
-
|
|
20623
|
+
query?: {
|
|
20624
|
+
/**
|
|
20625
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
20626
|
+
*/
|
|
20627
|
+
include?: string;
|
|
20628
|
+
/**
|
|
20629
|
+
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
20630
|
+
*/
|
|
20631
|
+
fields?: {
|
|
20632
|
+
/**
|
|
20633
|
+
* Comma separated field names for extraction_document
|
|
20634
|
+
*/
|
|
20635
|
+
extraction_document?: string;
|
|
20636
|
+
[key: string]: unknown | string | undefined;
|
|
20637
|
+
};
|
|
20638
|
+
};
|
|
20639
|
+
url: "/admin/extraction/documents/{id}/reprocess";
|
|
19345
20640
|
};
|
|
19346
|
-
type
|
|
20641
|
+
type PatchAdminExtractionDocumentsByIdReprocessErrors = {
|
|
19347
20642
|
/**
|
|
19348
20643
|
* Bad Request - Invalid input data or malformed request
|
|
19349
20644
|
*/
|
|
@@ -19373,19 +20668,21 @@ type GetAdminWebhookConfigsByIdEventsErrors = {
|
|
|
19373
20668
|
*/
|
|
19374
20669
|
default: Errors;
|
|
19375
20670
|
};
|
|
19376
|
-
type
|
|
19377
|
-
type
|
|
20671
|
+
type PatchAdminExtractionDocumentsByIdReprocessError = PatchAdminExtractionDocumentsByIdReprocessErrors[keyof PatchAdminExtractionDocumentsByIdReprocessErrors];
|
|
20672
|
+
type PatchAdminExtractionDocumentsByIdReprocessResponses = {
|
|
19378
20673
|
/**
|
|
19379
20674
|
* Success
|
|
19380
20675
|
*/
|
|
19381
20676
|
200: {
|
|
19382
|
-
|
|
20677
|
+
data?: ExtractionDocument;
|
|
20678
|
+
included?: Array<ExtractionResult>;
|
|
20679
|
+
meta?: {
|
|
19383
20680
|
[key: string]: unknown;
|
|
19384
20681
|
};
|
|
19385
20682
|
};
|
|
19386
20683
|
};
|
|
19387
|
-
type
|
|
19388
|
-
type
|
|
20684
|
+
type PatchAdminExtractionDocumentsByIdReprocessResponse = PatchAdminExtractionDocumentsByIdReprocessResponses[keyof PatchAdminExtractionDocumentsByIdReprocessResponses];
|
|
20685
|
+
type GetAdminWebhookConfigsByIdEventsData = {
|
|
19389
20686
|
body?: never;
|
|
19390
20687
|
headers: {
|
|
19391
20688
|
/**
|
|
@@ -19394,15 +20691,71 @@ type PostAdminAgentsByIdExportData = {
|
|
|
19394
20691
|
"x-application-key": string;
|
|
19395
20692
|
};
|
|
19396
20693
|
path: {
|
|
19397
|
-
/**
|
|
19398
|
-
* Agent ID (from URL path parameter)
|
|
19399
|
-
*/
|
|
19400
20694
|
id: string;
|
|
19401
20695
|
};
|
|
19402
20696
|
query?: never;
|
|
19403
|
-
url: "/admin/
|
|
20697
|
+
url: "/admin/webhook_configs/{id}/events";
|
|
19404
20698
|
};
|
|
19405
|
-
type
|
|
20699
|
+
type GetAdminWebhookConfigsByIdEventsErrors = {
|
|
20700
|
+
/**
|
|
20701
|
+
* Bad Request - Invalid input data or malformed request
|
|
20702
|
+
*/
|
|
20703
|
+
400: ErrorResponse;
|
|
20704
|
+
/**
|
|
20705
|
+
* Unauthorized - Missing or invalid authentication token
|
|
20706
|
+
*/
|
|
20707
|
+
401: ErrorResponse;
|
|
20708
|
+
/**
|
|
20709
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
20710
|
+
*/
|
|
20711
|
+
403: ErrorResponse;
|
|
20712
|
+
/**
|
|
20713
|
+
* Not Found - Resource does not exist
|
|
20714
|
+
*/
|
|
20715
|
+
404: ErrorResponse;
|
|
20716
|
+
/**
|
|
20717
|
+
* Too Many Requests - Rate limit exceeded
|
|
20718
|
+
*/
|
|
20719
|
+
429: ErrorResponse;
|
|
20720
|
+
/**
|
|
20721
|
+
* Internal Server Error - Unexpected server error
|
|
20722
|
+
*/
|
|
20723
|
+
500: ErrorResponse;
|
|
20724
|
+
/**
|
|
20725
|
+
* General Error
|
|
20726
|
+
*/
|
|
20727
|
+
default: Errors;
|
|
20728
|
+
};
|
|
20729
|
+
type GetAdminWebhookConfigsByIdEventsError = GetAdminWebhookConfigsByIdEventsErrors[keyof GetAdminWebhookConfigsByIdEventsErrors];
|
|
20730
|
+
type GetAdminWebhookConfigsByIdEventsResponses = {
|
|
20731
|
+
/**
|
|
20732
|
+
* Success
|
|
20733
|
+
*/
|
|
20734
|
+
200: {
|
|
20735
|
+
result: {
|
|
20736
|
+
[key: string]: unknown;
|
|
20737
|
+
};
|
|
20738
|
+
};
|
|
20739
|
+
};
|
|
20740
|
+
type GetAdminWebhookConfigsByIdEventsResponse = GetAdminWebhookConfigsByIdEventsResponses[keyof GetAdminWebhookConfigsByIdEventsResponses];
|
|
20741
|
+
type PostAdminAgentsByIdExportData = {
|
|
20742
|
+
body?: never;
|
|
20743
|
+
headers: {
|
|
20744
|
+
/**
|
|
20745
|
+
* Application ID for authentication and routing
|
|
20746
|
+
*/
|
|
20747
|
+
"x-application-key": string;
|
|
20748
|
+
};
|
|
20749
|
+
path: {
|
|
20750
|
+
/**
|
|
20751
|
+
* Agent ID (from URL path parameter)
|
|
20752
|
+
*/
|
|
20753
|
+
id: string;
|
|
20754
|
+
};
|
|
20755
|
+
query?: never;
|
|
20756
|
+
url: "/admin/agents/{id}/export";
|
|
20757
|
+
};
|
|
20758
|
+
type PostAdminAgentsByIdExportErrors = {
|
|
19406
20759
|
/**
|
|
19407
20760
|
* Bad Request - Invalid input data or malformed request
|
|
19408
20761
|
*/
|
|
@@ -20342,6 +21695,79 @@ type PatchAdminWalletAddonsByAddonSlugCancelResponses = {
|
|
|
20342
21695
|
};
|
|
20343
21696
|
};
|
|
20344
21697
|
type PatchAdminWalletAddonsByAddonSlugCancelResponse = PatchAdminWalletAddonsByAddonSlugCancelResponses[keyof PatchAdminWalletAddonsByAddonSlugCancelResponses];
|
|
21698
|
+
type GetAdminSettlementsByIdData = {
|
|
21699
|
+
body?: never;
|
|
21700
|
+
headers: {
|
|
21701
|
+
/**
|
|
21702
|
+
* Application ID for authentication and routing
|
|
21703
|
+
*/
|
|
21704
|
+
"x-application-key": string;
|
|
21705
|
+
};
|
|
21706
|
+
path: {
|
|
21707
|
+
id: string;
|
|
21708
|
+
};
|
|
21709
|
+
query?: {
|
|
21710
|
+
/**
|
|
21711
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
21712
|
+
*/
|
|
21713
|
+
include?: string;
|
|
21714
|
+
/**
|
|
21715
|
+
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
21716
|
+
*/
|
|
21717
|
+
fields?: {
|
|
21718
|
+
/**
|
|
21719
|
+
* Comma separated field names for settlement
|
|
21720
|
+
*/
|
|
21721
|
+
settlement?: string;
|
|
21722
|
+
[key: string]: unknown | string | undefined;
|
|
21723
|
+
};
|
|
21724
|
+
};
|
|
21725
|
+
url: "/admin/settlements/{id}";
|
|
21726
|
+
};
|
|
21727
|
+
type GetAdminSettlementsByIdErrors = {
|
|
21728
|
+
/**
|
|
21729
|
+
* Bad Request - Invalid input data or malformed request
|
|
21730
|
+
*/
|
|
21731
|
+
400: ErrorResponse;
|
|
21732
|
+
/**
|
|
21733
|
+
* Unauthorized - Missing or invalid authentication token
|
|
21734
|
+
*/
|
|
21735
|
+
401: ErrorResponse;
|
|
21736
|
+
/**
|
|
21737
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
21738
|
+
*/
|
|
21739
|
+
403: ErrorResponse;
|
|
21740
|
+
/**
|
|
21741
|
+
* Not Found - Resource does not exist
|
|
21742
|
+
*/
|
|
21743
|
+
404: ErrorResponse;
|
|
21744
|
+
/**
|
|
21745
|
+
* Too Many Requests - Rate limit exceeded
|
|
21746
|
+
*/
|
|
21747
|
+
429: ErrorResponse;
|
|
21748
|
+
/**
|
|
21749
|
+
* Internal Server Error - Unexpected server error
|
|
21750
|
+
*/
|
|
21751
|
+
500: ErrorResponse;
|
|
21752
|
+
/**
|
|
21753
|
+
* General Error
|
|
21754
|
+
*/
|
|
21755
|
+
default: Errors;
|
|
21756
|
+
};
|
|
21757
|
+
type GetAdminSettlementsByIdError = GetAdminSettlementsByIdErrors[keyof GetAdminSettlementsByIdErrors];
|
|
21758
|
+
type GetAdminSettlementsByIdResponses = {
|
|
21759
|
+
/**
|
|
21760
|
+
* Success
|
|
21761
|
+
*/
|
|
21762
|
+
200: {
|
|
21763
|
+
data?: Settlement;
|
|
21764
|
+
included?: Array<unknown>;
|
|
21765
|
+
meta?: {
|
|
21766
|
+
[key: string]: unknown;
|
|
21767
|
+
};
|
|
21768
|
+
};
|
|
21769
|
+
};
|
|
21770
|
+
type GetAdminSettlementsByIdResponse = GetAdminSettlementsByIdResponses[keyof GetAdminSettlementsByIdResponses];
|
|
20345
21771
|
type PostAdminDocumentsPresignedUploadData = {
|
|
20346
21772
|
/**
|
|
20347
21773
|
* Request body for the /documents/presigned_upload operation on presigned_url resource
|
|
@@ -24873,7 +26299,7 @@ type PatchAdminAccountsByIdDebitData = {
|
|
|
24873
26299
|
attributes?: {
|
|
24874
26300
|
amount: number;
|
|
24875
26301
|
description?: string | unknown;
|
|
24876
|
-
operation?: "usage" | "expiry" | "adjustment" | unknown;
|
|
26302
|
+
operation?: "usage" | "expiry" | "adjustment" | "wholesale_royalty" | "rag" | "conversational" | "training" | "field_mapping" | "extraction" | "general" | unknown;
|
|
24877
26303
|
};
|
|
24878
26304
|
id: string;
|
|
24879
26305
|
relationships?: {
|
|
@@ -26948,11 +28374,26 @@ type GetAdminAgentsByIdStatsData = {
|
|
|
26948
28374
|
};
|
|
26949
28375
|
path: {
|
|
26950
28376
|
/**
|
|
26951
|
-
* Agent ID
|
|
28377
|
+
* Agent ID from URL path
|
|
26952
28378
|
*/
|
|
26953
28379
|
id: string;
|
|
26954
28380
|
};
|
|
26955
|
-
query?:
|
|
28381
|
+
query?: {
|
|
28382
|
+
/**
|
|
28383
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
28384
|
+
*/
|
|
28385
|
+
include?: string;
|
|
28386
|
+
/**
|
|
28387
|
+
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
28388
|
+
*/
|
|
28389
|
+
fields?: {
|
|
28390
|
+
/**
|
|
28391
|
+
* Comma separated field names for agent_stats
|
|
28392
|
+
*/
|
|
28393
|
+
agent_stats?: string;
|
|
28394
|
+
[key: string]: unknown | string | undefined;
|
|
28395
|
+
};
|
|
28396
|
+
};
|
|
26956
28397
|
url: "/admin/agents/{id}/stats";
|
|
26957
28398
|
};
|
|
26958
28399
|
type GetAdminAgentsByIdStatsErrors = {
|
|
@@ -26991,7 +28432,9 @@ type GetAdminAgentsByIdStatsResponses = {
|
|
|
26991
28432
|
* Success
|
|
26992
28433
|
*/
|
|
26993
28434
|
200: {
|
|
26994
|
-
|
|
28435
|
+
data?: AgentStats;
|
|
28436
|
+
included?: Array<unknown>;
|
|
28437
|
+
meta?: {
|
|
26995
28438
|
[key: string]: unknown;
|
|
26996
28439
|
};
|
|
26997
28440
|
};
|
|
@@ -29355,11 +30798,26 @@ type GetAdminAgentsByIdUsageData = {
|
|
|
29355
30798
|
};
|
|
29356
30799
|
path: {
|
|
29357
30800
|
/**
|
|
29358
|
-
* Agent ID
|
|
30801
|
+
* Agent ID from URL path
|
|
29359
30802
|
*/
|
|
29360
30803
|
id: string;
|
|
29361
30804
|
};
|
|
29362
|
-
query?:
|
|
30805
|
+
query?: {
|
|
30806
|
+
/**
|
|
30807
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
30808
|
+
*/
|
|
30809
|
+
include?: string;
|
|
30810
|
+
/**
|
|
30811
|
+
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
30812
|
+
*/
|
|
30813
|
+
fields?: {
|
|
30814
|
+
/**
|
|
30815
|
+
* Comma separated field names for agent_usage
|
|
30816
|
+
*/
|
|
30817
|
+
agent_usage?: string;
|
|
30818
|
+
[key: string]: unknown | string | undefined;
|
|
30819
|
+
};
|
|
30820
|
+
};
|
|
29363
30821
|
url: "/admin/agents/{id}/usage";
|
|
29364
30822
|
};
|
|
29365
30823
|
type GetAdminAgentsByIdUsageErrors = {
|
|
@@ -29398,7 +30856,9 @@ type GetAdminAgentsByIdUsageResponses = {
|
|
|
29398
30856
|
* Success
|
|
29399
30857
|
*/
|
|
29400
30858
|
200: {
|
|
29401
|
-
|
|
30859
|
+
data?: AgentUsage;
|
|
30860
|
+
included?: Array<unknown>;
|
|
30861
|
+
meta?: {
|
|
29402
30862
|
[key: string]: unknown;
|
|
29403
30863
|
};
|
|
29404
30864
|
};
|
|
@@ -37377,6 +38837,190 @@ type GetAdminApiKeysActiveResponses = {
|
|
|
37377
38837
|
};
|
|
37378
38838
|
};
|
|
37379
38839
|
type GetAdminApiKeysActiveResponse = GetAdminApiKeysActiveResponses[keyof GetAdminApiKeysActiveResponses];
|
|
38840
|
+
type GetAdminWholesaleAgreementsByIdData = {
|
|
38841
|
+
body?: never;
|
|
38842
|
+
headers: {
|
|
38843
|
+
/**
|
|
38844
|
+
* Application ID for authentication and routing
|
|
38845
|
+
*/
|
|
38846
|
+
"x-application-key": string;
|
|
38847
|
+
};
|
|
38848
|
+
path: {
|
|
38849
|
+
id: string;
|
|
38850
|
+
};
|
|
38851
|
+
query?: {
|
|
38852
|
+
/**
|
|
38853
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
38854
|
+
*/
|
|
38855
|
+
include?: string;
|
|
38856
|
+
/**
|
|
38857
|
+
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
38858
|
+
*/
|
|
38859
|
+
fields?: {
|
|
38860
|
+
/**
|
|
38861
|
+
* Comma separated field names for wholesale-agreement
|
|
38862
|
+
*/
|
|
38863
|
+
"wholesale-agreement"?: string;
|
|
38864
|
+
[key: string]: unknown | string | undefined;
|
|
38865
|
+
};
|
|
38866
|
+
};
|
|
38867
|
+
url: "/admin/wholesale-agreements/{id}";
|
|
38868
|
+
};
|
|
38869
|
+
type GetAdminWholesaleAgreementsByIdErrors = {
|
|
38870
|
+
/**
|
|
38871
|
+
* Bad Request - Invalid input data or malformed request
|
|
38872
|
+
*/
|
|
38873
|
+
400: ErrorResponse;
|
|
38874
|
+
/**
|
|
38875
|
+
* Unauthorized - Missing or invalid authentication token
|
|
38876
|
+
*/
|
|
38877
|
+
401: ErrorResponse;
|
|
38878
|
+
/**
|
|
38879
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
38880
|
+
*/
|
|
38881
|
+
403: ErrorResponse;
|
|
38882
|
+
/**
|
|
38883
|
+
* Not Found - Resource does not exist
|
|
38884
|
+
*/
|
|
38885
|
+
404: ErrorResponse;
|
|
38886
|
+
/**
|
|
38887
|
+
* Too Many Requests - Rate limit exceeded
|
|
38888
|
+
*/
|
|
38889
|
+
429: ErrorResponse;
|
|
38890
|
+
/**
|
|
38891
|
+
* Internal Server Error - Unexpected server error
|
|
38892
|
+
*/
|
|
38893
|
+
500: ErrorResponse;
|
|
38894
|
+
/**
|
|
38895
|
+
* General Error
|
|
38896
|
+
*/
|
|
38897
|
+
default: Errors;
|
|
38898
|
+
};
|
|
38899
|
+
type GetAdminWholesaleAgreementsByIdError = GetAdminWholesaleAgreementsByIdErrors[keyof GetAdminWholesaleAgreementsByIdErrors];
|
|
38900
|
+
type GetAdminWholesaleAgreementsByIdResponses = {
|
|
38901
|
+
/**
|
|
38902
|
+
* Success
|
|
38903
|
+
*/
|
|
38904
|
+
200: {
|
|
38905
|
+
data?: WholesaleAgreement;
|
|
38906
|
+
included?: Array<unknown>;
|
|
38907
|
+
meta?: {
|
|
38908
|
+
[key: string]: unknown;
|
|
38909
|
+
};
|
|
38910
|
+
};
|
|
38911
|
+
};
|
|
38912
|
+
type GetAdminWholesaleAgreementsByIdResponse = GetAdminWholesaleAgreementsByIdResponses[keyof GetAdminWholesaleAgreementsByIdResponses];
|
|
38913
|
+
type PatchAdminWholesaleAgreementsByIdData = {
|
|
38914
|
+
/**
|
|
38915
|
+
* Request body for the /wholesale-agreements/:id operation on wholesale-agreement resource
|
|
38916
|
+
*/
|
|
38917
|
+
body?: {
|
|
38918
|
+
data: {
|
|
38919
|
+
attributes?: {
|
|
38920
|
+
effective_date?: string | unknown;
|
|
38921
|
+
/**
|
|
38922
|
+
* Days to hold funds before release
|
|
38923
|
+
*/
|
|
38924
|
+
hold_days?: number | unknown;
|
|
38925
|
+
/**
|
|
38926
|
+
* Minimum payout amount in cents ($25.00 default)
|
|
38927
|
+
*/
|
|
38928
|
+
minimum_payout_cents?: number | unknown;
|
|
38929
|
+
/**
|
|
38930
|
+
* Wholesale pricing model: percentage of retail or fixed floor rates
|
|
38931
|
+
*/
|
|
38932
|
+
model?: "percentage" | "interchange_plus" | unknown;
|
|
38933
|
+
notes?: string | unknown;
|
|
38934
|
+
/**
|
|
38935
|
+
* Per-operation floor rates for interchange-plus model
|
|
38936
|
+
*/
|
|
38937
|
+
rates?: Array<{
|
|
38938
|
+
[key: string]: unknown;
|
|
38939
|
+
}> | unknown;
|
|
38940
|
+
settlement_frequency?: "monthly" | "weekly" | "daily" | unknown;
|
|
38941
|
+
/**
|
|
38942
|
+
* Platform take rate as percentage of retail (for percentage model)
|
|
38943
|
+
*/
|
|
38944
|
+
take_rate_percent?: number | unknown;
|
|
38945
|
+
};
|
|
38946
|
+
id: string;
|
|
38947
|
+
relationships?: {
|
|
38948
|
+
[key: string]: never;
|
|
38949
|
+
};
|
|
38950
|
+
type?: "wholesale-agreement";
|
|
38951
|
+
};
|
|
38952
|
+
};
|
|
38953
|
+
headers: {
|
|
38954
|
+
/**
|
|
38955
|
+
* Application ID for authentication and routing
|
|
38956
|
+
*/
|
|
38957
|
+
"x-application-key": string;
|
|
38958
|
+
};
|
|
38959
|
+
path: {
|
|
38960
|
+
id: string;
|
|
38961
|
+
};
|
|
38962
|
+
query?: {
|
|
38963
|
+
/**
|
|
38964
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
38965
|
+
*/
|
|
38966
|
+
include?: string;
|
|
38967
|
+
/**
|
|
38968
|
+
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
38969
|
+
*/
|
|
38970
|
+
fields?: {
|
|
38971
|
+
/**
|
|
38972
|
+
* Comma separated field names for wholesale-agreement
|
|
38973
|
+
*/
|
|
38974
|
+
"wholesale-agreement"?: string;
|
|
38975
|
+
[key: string]: unknown | string | undefined;
|
|
38976
|
+
};
|
|
38977
|
+
};
|
|
38978
|
+
url: "/admin/wholesale-agreements/{id}";
|
|
38979
|
+
};
|
|
38980
|
+
type PatchAdminWholesaleAgreementsByIdErrors = {
|
|
38981
|
+
/**
|
|
38982
|
+
* Bad Request - Invalid input data or malformed request
|
|
38983
|
+
*/
|
|
38984
|
+
400: ErrorResponse;
|
|
38985
|
+
/**
|
|
38986
|
+
* Unauthorized - Missing or invalid authentication token
|
|
38987
|
+
*/
|
|
38988
|
+
401: ErrorResponse;
|
|
38989
|
+
/**
|
|
38990
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
38991
|
+
*/
|
|
38992
|
+
403: ErrorResponse;
|
|
38993
|
+
/**
|
|
38994
|
+
* Not Found - Resource does not exist
|
|
38995
|
+
*/
|
|
38996
|
+
404: ErrorResponse;
|
|
38997
|
+
/**
|
|
38998
|
+
* Too Many Requests - Rate limit exceeded
|
|
38999
|
+
*/
|
|
39000
|
+
429: ErrorResponse;
|
|
39001
|
+
/**
|
|
39002
|
+
* Internal Server Error - Unexpected server error
|
|
39003
|
+
*/
|
|
39004
|
+
500: ErrorResponse;
|
|
39005
|
+
/**
|
|
39006
|
+
* General Error
|
|
39007
|
+
*/
|
|
39008
|
+
default: Errors;
|
|
39009
|
+
};
|
|
39010
|
+
type PatchAdminWholesaleAgreementsByIdError = PatchAdminWholesaleAgreementsByIdErrors[keyof PatchAdminWholesaleAgreementsByIdErrors];
|
|
39011
|
+
type PatchAdminWholesaleAgreementsByIdResponses = {
|
|
39012
|
+
/**
|
|
39013
|
+
* Success
|
|
39014
|
+
*/
|
|
39015
|
+
200: {
|
|
39016
|
+
data?: WholesaleAgreement;
|
|
39017
|
+
included?: Array<unknown>;
|
|
39018
|
+
meta?: {
|
|
39019
|
+
[key: string]: unknown;
|
|
39020
|
+
};
|
|
39021
|
+
};
|
|
39022
|
+
};
|
|
39023
|
+
type PatchAdminWholesaleAgreementsByIdResponse = PatchAdminWholesaleAgreementsByIdResponses[keyof PatchAdminWholesaleAgreementsByIdResponses];
|
|
37380
39024
|
type GetAdminPricingStrategiesByIdData = {
|
|
37381
39025
|
body?: never;
|
|
37382
39026
|
headers: {
|
|
@@ -38806,6 +40450,7 @@ type PostAdminLlmAnalyticsData = {
|
|
|
38806
40450
|
tenant_id?: string | unknown;
|
|
38807
40451
|
total_tokens?: number | unknown;
|
|
38808
40452
|
user_id?: string | unknown;
|
|
40453
|
+
wholesale_cost_usd?: string | unknown;
|
|
38809
40454
|
workspace_id?: string | unknown;
|
|
38810
40455
|
};
|
|
38811
40456
|
relationships?: {
|
|
@@ -39676,7 +41321,22 @@ type GetAdminThreadsStatsData = {
|
|
|
39676
41321
|
"x-application-key": string;
|
|
39677
41322
|
};
|
|
39678
41323
|
path?: never;
|
|
39679
|
-
query?:
|
|
41324
|
+
query?: {
|
|
41325
|
+
/**
|
|
41326
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
41327
|
+
*/
|
|
41328
|
+
include?: string;
|
|
41329
|
+
/**
|
|
41330
|
+
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
41331
|
+
*/
|
|
41332
|
+
fields?: {
|
|
41333
|
+
/**
|
|
41334
|
+
* Comma separated field names for thread_stats
|
|
41335
|
+
*/
|
|
41336
|
+
thread_stats?: string;
|
|
41337
|
+
[key: string]: unknown | string | undefined;
|
|
41338
|
+
};
|
|
41339
|
+
};
|
|
39680
41340
|
url: "/admin/threads/stats";
|
|
39681
41341
|
};
|
|
39682
41342
|
type GetAdminThreadsStatsErrors = {
|
|
@@ -39715,7 +41375,9 @@ type GetAdminThreadsStatsResponses = {
|
|
|
39715
41375
|
* Success
|
|
39716
41376
|
*/
|
|
39717
41377
|
200: {
|
|
39718
|
-
|
|
41378
|
+
data?: ThreadStats;
|
|
41379
|
+
included?: Array<unknown>;
|
|
41380
|
+
meta?: {
|
|
39719
41381
|
[key: string]: unknown;
|
|
39720
41382
|
};
|
|
39721
41383
|
};
|
|
@@ -40235,11 +41897,26 @@ type GetAdminAgentsByIdTrainingStatsData = {
|
|
|
40235
41897
|
};
|
|
40236
41898
|
path: {
|
|
40237
41899
|
/**
|
|
40238
|
-
* Agent ID
|
|
41900
|
+
* Agent ID from URL path
|
|
40239
41901
|
*/
|
|
40240
41902
|
id: string;
|
|
40241
41903
|
};
|
|
40242
|
-
query?:
|
|
41904
|
+
query?: {
|
|
41905
|
+
/**
|
|
41906
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
41907
|
+
*/
|
|
41908
|
+
include?: string;
|
|
41909
|
+
/**
|
|
41910
|
+
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
41911
|
+
*/
|
|
41912
|
+
fields?: {
|
|
41913
|
+
/**
|
|
41914
|
+
* Comma separated field names for agent_training_stats
|
|
41915
|
+
*/
|
|
41916
|
+
agent_training_stats?: string;
|
|
41917
|
+
[key: string]: unknown | string | undefined;
|
|
41918
|
+
};
|
|
41919
|
+
};
|
|
40243
41920
|
url: "/admin/agents/{id}/training_stats";
|
|
40244
41921
|
};
|
|
40245
41922
|
type GetAdminAgentsByIdTrainingStatsErrors = {
|
|
@@ -40278,7 +41955,9 @@ type GetAdminAgentsByIdTrainingStatsResponses = {
|
|
|
40278
41955
|
* Success
|
|
40279
41956
|
*/
|
|
40280
41957
|
200: {
|
|
40281
|
-
|
|
41958
|
+
data?: AgentTrainingStats;
|
|
41959
|
+
included?: Array<unknown>;
|
|
41960
|
+
meta?: {
|
|
40282
41961
|
[key: string]: unknown;
|
|
40283
41962
|
};
|
|
40284
41963
|
};
|
|
@@ -40359,45 +42038,219 @@ type PatchAdminConfigsByKeyErrors = {
|
|
|
40359
42038
|
*/
|
|
40360
42039
|
default: Errors;
|
|
40361
42040
|
};
|
|
40362
|
-
type PatchAdminConfigsByKeyError = PatchAdminConfigsByKeyErrors[keyof PatchAdminConfigsByKeyErrors];
|
|
40363
|
-
type PatchAdminConfigsByKeyResponses = {
|
|
42041
|
+
type PatchAdminConfigsByKeyError = PatchAdminConfigsByKeyErrors[keyof PatchAdminConfigsByKeyErrors];
|
|
42042
|
+
type PatchAdminConfigsByKeyResponses = {
|
|
42043
|
+
/**
|
|
42044
|
+
* Success
|
|
42045
|
+
*/
|
|
42046
|
+
200: {
|
|
42047
|
+
data?: Config;
|
|
42048
|
+
included?: Array<unknown>;
|
|
42049
|
+
meta?: {
|
|
42050
|
+
[key: string]: unknown;
|
|
42051
|
+
};
|
|
42052
|
+
};
|
|
42053
|
+
};
|
|
42054
|
+
type PatchAdminConfigsByKeyResponse = PatchAdminConfigsByKeyResponses[keyof PatchAdminConfigsByKeyResponses];
|
|
42055
|
+
type PatchAdminUsersAuthResetPasswordData = {
|
|
42056
|
+
/**
|
|
42057
|
+
* Request body for the /users/auth/reset-password operation on user resource
|
|
42058
|
+
*/
|
|
42059
|
+
body: {
|
|
42060
|
+
data: {
|
|
42061
|
+
attributes?: {
|
|
42062
|
+
password: string;
|
|
42063
|
+
password_confirmation: string;
|
|
42064
|
+
token: string;
|
|
42065
|
+
};
|
|
42066
|
+
id: string;
|
|
42067
|
+
relationships?: {
|
|
42068
|
+
[key: string]: never;
|
|
42069
|
+
};
|
|
42070
|
+
type?: "user";
|
|
42071
|
+
};
|
|
42072
|
+
};
|
|
42073
|
+
headers: {
|
|
42074
|
+
/**
|
|
42075
|
+
* Application ID for authentication and routing
|
|
42076
|
+
*/
|
|
42077
|
+
"x-application-key": string;
|
|
42078
|
+
};
|
|
42079
|
+
path?: never;
|
|
42080
|
+
query?: {
|
|
42081
|
+
/**
|
|
42082
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
42083
|
+
*/
|
|
42084
|
+
include?: string;
|
|
42085
|
+
/**
|
|
42086
|
+
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
42087
|
+
*/
|
|
42088
|
+
fields?: {
|
|
42089
|
+
/**
|
|
42090
|
+
* Comma separated field names for user
|
|
42091
|
+
*/
|
|
42092
|
+
user?: string;
|
|
42093
|
+
[key: string]: unknown | string | undefined;
|
|
42094
|
+
};
|
|
42095
|
+
};
|
|
42096
|
+
url: "/admin/users/auth/reset-password";
|
|
42097
|
+
};
|
|
42098
|
+
type PatchAdminUsersAuthResetPasswordErrors = {
|
|
42099
|
+
/**
|
|
42100
|
+
* Bad Request - Invalid input data or malformed request
|
|
42101
|
+
*/
|
|
42102
|
+
400: ErrorResponse;
|
|
42103
|
+
/**
|
|
42104
|
+
* Unauthorized - Missing or invalid authentication token
|
|
42105
|
+
*/
|
|
42106
|
+
401: ErrorResponse;
|
|
42107
|
+
/**
|
|
42108
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
42109
|
+
*/
|
|
42110
|
+
403: ErrorResponse;
|
|
42111
|
+
/**
|
|
42112
|
+
* Not Found - Resource does not exist
|
|
42113
|
+
*/
|
|
42114
|
+
404: ErrorResponse;
|
|
42115
|
+
/**
|
|
42116
|
+
* Too Many Requests - Rate limit exceeded
|
|
42117
|
+
*/
|
|
42118
|
+
429: ErrorResponse;
|
|
42119
|
+
/**
|
|
42120
|
+
* Internal Server Error - Unexpected server error
|
|
42121
|
+
*/
|
|
42122
|
+
500: ErrorResponse;
|
|
42123
|
+
/**
|
|
42124
|
+
* General Error
|
|
42125
|
+
*/
|
|
42126
|
+
default: Errors;
|
|
42127
|
+
};
|
|
42128
|
+
type PatchAdminUsersAuthResetPasswordError = PatchAdminUsersAuthResetPasswordErrors[keyof PatchAdminUsersAuthResetPasswordErrors];
|
|
42129
|
+
type PatchAdminUsersAuthResetPasswordResponses = {
|
|
42130
|
+
/**
|
|
42131
|
+
* Success
|
|
42132
|
+
*/
|
|
42133
|
+
200: {
|
|
42134
|
+
data?: User;
|
|
42135
|
+
included?: Array<unknown>;
|
|
42136
|
+
meta?: {
|
|
42137
|
+
[key: string]: unknown;
|
|
42138
|
+
};
|
|
42139
|
+
};
|
|
42140
|
+
};
|
|
42141
|
+
type PatchAdminUsersAuthResetPasswordResponse = PatchAdminUsersAuthResetPasswordResponses[keyof PatchAdminUsersAuthResetPasswordResponses];
|
|
42142
|
+
type PostAdminAgentsByIdTeachData = {
|
|
42143
|
+
/**
|
|
42144
|
+
* Request body for the /agents/:id/teach operation on agent resource
|
|
42145
|
+
*/
|
|
42146
|
+
body: {
|
|
42147
|
+
data: {
|
|
42148
|
+
attributes?: {
|
|
42149
|
+
confirmed_fields?: Array<string> | unknown;
|
|
42150
|
+
correction_reasons?: {
|
|
42151
|
+
[key: string]: unknown;
|
|
42152
|
+
} | unknown;
|
|
42153
|
+
corrections: {
|
|
42154
|
+
[key: string]: unknown;
|
|
42155
|
+
};
|
|
42156
|
+
document_id: string;
|
|
42157
|
+
training_note?: string | unknown;
|
|
42158
|
+
/**
|
|
42159
|
+
* Implicitly verify untouched fields
|
|
42160
|
+
*/
|
|
42161
|
+
verify_remaining?: boolean | unknown;
|
|
42162
|
+
};
|
|
42163
|
+
relationships?: {
|
|
42164
|
+
[key: string]: never;
|
|
42165
|
+
};
|
|
42166
|
+
type?: "agent";
|
|
42167
|
+
};
|
|
42168
|
+
};
|
|
42169
|
+
headers: {
|
|
42170
|
+
/**
|
|
42171
|
+
* Application ID for authentication and routing
|
|
42172
|
+
*/
|
|
42173
|
+
"x-application-key": string;
|
|
42174
|
+
};
|
|
42175
|
+
path: {
|
|
42176
|
+
/**
|
|
42177
|
+
* Agent ID (automatically mapped from route)
|
|
42178
|
+
*/
|
|
42179
|
+
id: string;
|
|
42180
|
+
};
|
|
42181
|
+
query?: {
|
|
42182
|
+
/**
|
|
42183
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
42184
|
+
*/
|
|
42185
|
+
include?: string;
|
|
42186
|
+
/**
|
|
42187
|
+
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
42188
|
+
*/
|
|
42189
|
+
fields?: {
|
|
42190
|
+
/**
|
|
42191
|
+
* Comma separated field names for agent
|
|
42192
|
+
*/
|
|
42193
|
+
agent?: string;
|
|
42194
|
+
[key: string]: unknown | string | undefined;
|
|
42195
|
+
};
|
|
42196
|
+
};
|
|
42197
|
+
url: "/admin/agents/{id}/teach";
|
|
42198
|
+
};
|
|
42199
|
+
type PostAdminAgentsByIdTeachErrors = {
|
|
42200
|
+
/**
|
|
42201
|
+
* Bad Request - Invalid input data or malformed request
|
|
42202
|
+
*/
|
|
42203
|
+
400: ErrorResponse;
|
|
42204
|
+
/**
|
|
42205
|
+
* Unauthorized - Missing or invalid authentication token
|
|
42206
|
+
*/
|
|
42207
|
+
401: ErrorResponse;
|
|
42208
|
+
/**
|
|
42209
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
42210
|
+
*/
|
|
42211
|
+
403: ErrorResponse;
|
|
42212
|
+
/**
|
|
42213
|
+
* Not Found - Resource does not exist
|
|
42214
|
+
*/
|
|
42215
|
+
404: ErrorResponse;
|
|
42216
|
+
/**
|
|
42217
|
+
* Too Many Requests - Rate limit exceeded
|
|
42218
|
+
*/
|
|
42219
|
+
429: ErrorResponse;
|
|
42220
|
+
/**
|
|
42221
|
+
* Internal Server Error - Unexpected server error
|
|
42222
|
+
*/
|
|
42223
|
+
500: ErrorResponse;
|
|
42224
|
+
/**
|
|
42225
|
+
* General Error
|
|
42226
|
+
*/
|
|
42227
|
+
default: Errors;
|
|
42228
|
+
};
|
|
42229
|
+
type PostAdminAgentsByIdTeachError = PostAdminAgentsByIdTeachErrors[keyof PostAdminAgentsByIdTeachErrors];
|
|
42230
|
+
type PostAdminAgentsByIdTeachResponses = {
|
|
40364
42231
|
/**
|
|
40365
42232
|
* Success
|
|
40366
42233
|
*/
|
|
40367
|
-
|
|
40368
|
-
data?:
|
|
40369
|
-
included?: Array<
|
|
42234
|
+
201: {
|
|
42235
|
+
data?: Agent;
|
|
42236
|
+
included?: Array<AgentVersion>;
|
|
40370
42237
|
meta?: {
|
|
40371
42238
|
[key: string]: unknown;
|
|
40372
42239
|
};
|
|
40373
42240
|
};
|
|
40374
42241
|
};
|
|
40375
|
-
type
|
|
40376
|
-
type
|
|
40377
|
-
|
|
40378
|
-
* Request body for the /users/auth/reset-password operation on user resource
|
|
40379
|
-
*/
|
|
40380
|
-
body: {
|
|
40381
|
-
data: {
|
|
40382
|
-
attributes?: {
|
|
40383
|
-
password: string;
|
|
40384
|
-
password_confirmation: string;
|
|
40385
|
-
token: string;
|
|
40386
|
-
};
|
|
40387
|
-
id: string;
|
|
40388
|
-
relationships?: {
|
|
40389
|
-
[key: string]: never;
|
|
40390
|
-
};
|
|
40391
|
-
type?: "user";
|
|
40392
|
-
};
|
|
40393
|
-
};
|
|
42242
|
+
type PostAdminAgentsByIdTeachResponse = PostAdminAgentsByIdTeachResponses[keyof PostAdminAgentsByIdTeachResponses];
|
|
42243
|
+
type GetAdminExtractionDocumentsByIdStatusData = {
|
|
42244
|
+
body?: never;
|
|
40394
42245
|
headers: {
|
|
40395
42246
|
/**
|
|
40396
42247
|
* Application ID for authentication and routing
|
|
40397
42248
|
*/
|
|
40398
42249
|
"x-application-key": string;
|
|
40399
42250
|
};
|
|
40400
|
-
path
|
|
42251
|
+
path: {
|
|
42252
|
+
id: string;
|
|
42253
|
+
};
|
|
40401
42254
|
query?: {
|
|
40402
42255
|
/**
|
|
40403
42256
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -40408,15 +42261,15 @@ type PatchAdminUsersAuthResetPasswordData = {
|
|
|
40408
42261
|
*/
|
|
40409
42262
|
fields?: {
|
|
40410
42263
|
/**
|
|
40411
|
-
* Comma separated field names for
|
|
42264
|
+
* Comma separated field names for extraction_document
|
|
40412
42265
|
*/
|
|
40413
|
-
|
|
42266
|
+
extraction_document?: string;
|
|
40414
42267
|
[key: string]: unknown | string | undefined;
|
|
40415
42268
|
};
|
|
40416
42269
|
};
|
|
40417
|
-
url: "/admin/
|
|
42270
|
+
url: "/admin/extraction/documents/{id}/status";
|
|
40418
42271
|
};
|
|
40419
|
-
type
|
|
42272
|
+
type GetAdminExtractionDocumentsByIdStatusErrors = {
|
|
40420
42273
|
/**
|
|
40421
42274
|
* Bad Request - Invalid input data or malformed request
|
|
40422
42275
|
*/
|
|
@@ -40446,45 +42299,76 @@ type PatchAdminUsersAuthResetPasswordErrors = {
|
|
|
40446
42299
|
*/
|
|
40447
42300
|
default: Errors;
|
|
40448
42301
|
};
|
|
40449
|
-
type
|
|
40450
|
-
type
|
|
42302
|
+
type GetAdminExtractionDocumentsByIdStatusError = GetAdminExtractionDocumentsByIdStatusErrors[keyof GetAdminExtractionDocumentsByIdStatusErrors];
|
|
42303
|
+
type GetAdminExtractionDocumentsByIdStatusResponses = {
|
|
40451
42304
|
/**
|
|
40452
42305
|
* Success
|
|
40453
42306
|
*/
|
|
40454
42307
|
200: {
|
|
40455
|
-
data?:
|
|
40456
|
-
included?: Array<
|
|
42308
|
+
data?: ExtractionDocument;
|
|
42309
|
+
included?: Array<ExtractionResult>;
|
|
40457
42310
|
meta?: {
|
|
40458
42311
|
[key: string]: unknown;
|
|
40459
42312
|
};
|
|
40460
42313
|
};
|
|
40461
42314
|
};
|
|
40462
|
-
type
|
|
40463
|
-
type
|
|
42315
|
+
type GetAdminExtractionDocumentsByIdStatusResponse = GetAdminExtractionDocumentsByIdStatusResponses[keyof GetAdminExtractionDocumentsByIdStatusResponses];
|
|
42316
|
+
type PatchAdminExtractionDocumentsByIdStatusData = {
|
|
40464
42317
|
/**
|
|
40465
|
-
* Request body for the /
|
|
42318
|
+
* Request body for the /extraction/documents/:id/status operation on extraction_document resource
|
|
40466
42319
|
*/
|
|
40467
|
-
body
|
|
42320
|
+
body?: {
|
|
40468
42321
|
data: {
|
|
40469
42322
|
attributes?: {
|
|
40470
|
-
confirmed_fields?: Array<string> | unknown;
|
|
40471
|
-
correction_reasons?: {
|
|
40472
|
-
[key: string]: unknown;
|
|
40473
|
-
} | unknown;
|
|
40474
|
-
corrections: {
|
|
40475
|
-
[key: string]: unknown;
|
|
40476
|
-
};
|
|
40477
|
-
document_id: string;
|
|
40478
|
-
training_note?: string | unknown;
|
|
40479
42323
|
/**
|
|
40480
|
-
*
|
|
42324
|
+
* Average confidence score across all extracted fields (0.0 to 1.0)
|
|
40481
42325
|
*/
|
|
40482
|
-
|
|
42326
|
+
avg_confidence?: number | unknown;
|
|
42327
|
+
/**
|
|
42328
|
+
* Credits billed for processing this document
|
|
42329
|
+
*/
|
|
42330
|
+
billed_credits?: number | unknown;
|
|
42331
|
+
/**
|
|
42332
|
+
* Overall classification confidence (0.0 to 1.0)
|
|
42333
|
+
*/
|
|
42334
|
+
classification_confidence?: number | unknown;
|
|
42335
|
+
/**
|
|
42336
|
+
* Timestamp when document processing completed (status changed to :completed)
|
|
42337
|
+
*/
|
|
42338
|
+
completed_at?: unknown;
|
|
42339
|
+
/**
|
|
42340
|
+
* Specific document type from specialty agent (Traffic Citation, Invoice, etc.)
|
|
42341
|
+
*/
|
|
42342
|
+
document_type?: string | unknown;
|
|
42343
|
+
/**
|
|
42344
|
+
* Document domain from specialty agent (legal, financial, medical, etc.)
|
|
42345
|
+
*/
|
|
42346
|
+
domain?: string | unknown;
|
|
42347
|
+
error_message?: string | unknown;
|
|
42348
|
+
/**
|
|
42349
|
+
* Municipality/agency name extracted from document content
|
|
42350
|
+
*/
|
|
42351
|
+
municipality?: string | unknown;
|
|
42352
|
+
pages?: number | unknown;
|
|
42353
|
+
processed_at?: unknown;
|
|
42354
|
+
progress?: number | unknown;
|
|
42355
|
+
/**
|
|
42356
|
+
* State or province code (2-letter)
|
|
42357
|
+
*/
|
|
42358
|
+
state?: string | unknown;
|
|
42359
|
+
status?: "queued" | "processing" | "completed" | "failed" | "cancelled" | "pending_credits" | unknown;
|
|
42360
|
+
/**
|
|
42361
|
+
* Metadata about the training session for this document (trained_at, user_id, scores)
|
|
42362
|
+
*/
|
|
42363
|
+
training_metadata?: {
|
|
42364
|
+
[key: string]: unknown;
|
|
42365
|
+
} | unknown;
|
|
40483
42366
|
};
|
|
42367
|
+
id: string;
|
|
40484
42368
|
relationships?: {
|
|
40485
42369
|
[key: string]: never;
|
|
40486
42370
|
};
|
|
40487
|
-
type?: "
|
|
42371
|
+
type?: "extraction_document";
|
|
40488
42372
|
};
|
|
40489
42373
|
};
|
|
40490
42374
|
headers: {
|
|
@@ -40494,9 +42378,6 @@ type PostAdminAgentsByIdTeachData = {
|
|
|
40494
42378
|
"x-application-key": string;
|
|
40495
42379
|
};
|
|
40496
42380
|
path: {
|
|
40497
|
-
/**
|
|
40498
|
-
* Agent ID (automatically mapped from route)
|
|
40499
|
-
*/
|
|
40500
42381
|
id: string;
|
|
40501
42382
|
};
|
|
40502
42383
|
query?: {
|
|
@@ -40509,15 +42390,15 @@ type PostAdminAgentsByIdTeachData = {
|
|
|
40509
42390
|
*/
|
|
40510
42391
|
fields?: {
|
|
40511
42392
|
/**
|
|
40512
|
-
* Comma separated field names for
|
|
42393
|
+
* Comma separated field names for extraction_document
|
|
40513
42394
|
*/
|
|
40514
|
-
|
|
42395
|
+
extraction_document?: string;
|
|
40515
42396
|
[key: string]: unknown | string | undefined;
|
|
40516
42397
|
};
|
|
40517
42398
|
};
|
|
40518
|
-
url: "/admin/
|
|
42399
|
+
url: "/admin/extraction/documents/{id}/status";
|
|
40519
42400
|
};
|
|
40520
|
-
type
|
|
42401
|
+
type PatchAdminExtractionDocumentsByIdStatusErrors = {
|
|
40521
42402
|
/**
|
|
40522
42403
|
* Bad Request - Invalid input data or malformed request
|
|
40523
42404
|
*/
|
|
@@ -40547,21 +42428,21 @@ type PostAdminAgentsByIdTeachErrors = {
|
|
|
40547
42428
|
*/
|
|
40548
42429
|
default: Errors;
|
|
40549
42430
|
};
|
|
40550
|
-
type
|
|
40551
|
-
type
|
|
42431
|
+
type PatchAdminExtractionDocumentsByIdStatusError = PatchAdminExtractionDocumentsByIdStatusErrors[keyof PatchAdminExtractionDocumentsByIdStatusErrors];
|
|
42432
|
+
type PatchAdminExtractionDocumentsByIdStatusResponses = {
|
|
40552
42433
|
/**
|
|
40553
42434
|
* Success
|
|
40554
42435
|
*/
|
|
40555
|
-
|
|
40556
|
-
data?:
|
|
40557
|
-
included?: Array<
|
|
42436
|
+
200: {
|
|
42437
|
+
data?: ExtractionDocument;
|
|
42438
|
+
included?: Array<ExtractionResult>;
|
|
40558
42439
|
meta?: {
|
|
40559
42440
|
[key: string]: unknown;
|
|
40560
42441
|
};
|
|
40561
42442
|
};
|
|
40562
42443
|
};
|
|
40563
|
-
type
|
|
40564
|
-
type
|
|
42444
|
+
type PatchAdminExtractionDocumentsByIdStatusResponse = PatchAdminExtractionDocumentsByIdStatusResponses[keyof PatchAdminExtractionDocumentsByIdStatusResponses];
|
|
42445
|
+
type GetAdminWholesaleAgreementsData = {
|
|
40565
42446
|
body?: never;
|
|
40566
42447
|
headers: {
|
|
40567
42448
|
/**
|
|
@@ -40569,10 +42450,26 @@ type GetAdminExtractionDocumentsByIdStatusData = {
|
|
|
40569
42450
|
*/
|
|
40570
42451
|
"x-application-key": string;
|
|
40571
42452
|
};
|
|
40572
|
-
path
|
|
40573
|
-
id: string;
|
|
40574
|
-
};
|
|
42453
|
+
path?: never;
|
|
40575
42454
|
query?: {
|
|
42455
|
+
/**
|
|
42456
|
+
* Filter results using JSON:API filter syntax. Use field comparisons like `field[eq]=value`, `field[in][]=val1&field[in][]=val2`, etc.
|
|
42457
|
+
*/
|
|
42458
|
+
filter?: WholesaleAgreementFilter;
|
|
42459
|
+
/**
|
|
42460
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
42461
|
+
*/
|
|
42462
|
+
sort?: string;
|
|
42463
|
+
/**
|
|
42464
|
+
* Pagination parameters using JSON:API page-based strategy. Use `page[limit]` and `page[offset]` for pagination.
|
|
42465
|
+
*/
|
|
42466
|
+
page?: {
|
|
42467
|
+
after?: string;
|
|
42468
|
+
before?: string;
|
|
42469
|
+
count?: boolean;
|
|
42470
|
+
limit?: number;
|
|
42471
|
+
offset?: number;
|
|
42472
|
+
};
|
|
40576
42473
|
/**
|
|
40577
42474
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
40578
42475
|
*/
|
|
@@ -40582,15 +42479,15 @@ type GetAdminExtractionDocumentsByIdStatusData = {
|
|
|
40582
42479
|
*/
|
|
40583
42480
|
fields?: {
|
|
40584
42481
|
/**
|
|
40585
|
-
* Comma separated field names for
|
|
42482
|
+
* Comma separated field names for wholesale-agreement
|
|
40586
42483
|
*/
|
|
40587
|
-
|
|
42484
|
+
"wholesale-agreement"?: string;
|
|
40588
42485
|
[key: string]: unknown | string | undefined;
|
|
40589
42486
|
};
|
|
40590
42487
|
};
|
|
40591
|
-
url: "/admin/
|
|
42488
|
+
url: "/admin/wholesale-agreements";
|
|
40592
42489
|
};
|
|
40593
|
-
type
|
|
42490
|
+
type GetAdminWholesaleAgreementsErrors = {
|
|
40594
42491
|
/**
|
|
40595
42492
|
* Bad Request - Invalid input data or malformed request
|
|
40596
42493
|
*/
|
|
@@ -40620,76 +42517,61 @@ type GetAdminExtractionDocumentsByIdStatusErrors = {
|
|
|
40620
42517
|
*/
|
|
40621
42518
|
default: Errors;
|
|
40622
42519
|
};
|
|
40623
|
-
type
|
|
40624
|
-
type
|
|
42520
|
+
type GetAdminWholesaleAgreementsError = GetAdminWholesaleAgreementsErrors[keyof GetAdminWholesaleAgreementsErrors];
|
|
42521
|
+
type GetAdminWholesaleAgreementsResponses = {
|
|
40625
42522
|
/**
|
|
40626
42523
|
* Success
|
|
40627
42524
|
*/
|
|
40628
42525
|
200: {
|
|
40629
|
-
|
|
40630
|
-
|
|
42526
|
+
/**
|
|
42527
|
+
* An array of resource objects representing a wholesale-agreement
|
|
42528
|
+
*/
|
|
42529
|
+
data?: Array<WholesaleAgreement>;
|
|
42530
|
+
included?: Array<unknown>;
|
|
40631
42531
|
meta?: {
|
|
40632
42532
|
[key: string]: unknown;
|
|
40633
42533
|
};
|
|
40634
42534
|
};
|
|
40635
42535
|
};
|
|
40636
|
-
type
|
|
40637
|
-
type
|
|
42536
|
+
type GetAdminWholesaleAgreementsResponse = GetAdminWholesaleAgreementsResponses[keyof GetAdminWholesaleAgreementsResponses];
|
|
42537
|
+
type PostAdminWholesaleAgreementsData = {
|
|
40638
42538
|
/**
|
|
40639
|
-
* Request body for the /
|
|
42539
|
+
* Request body for the /wholesale-agreements operation on wholesale-agreement resource
|
|
40640
42540
|
*/
|
|
40641
|
-
body
|
|
42541
|
+
body: {
|
|
40642
42542
|
data: {
|
|
40643
42543
|
attributes?: {
|
|
42544
|
+
effective_date?: string | unknown;
|
|
40644
42545
|
/**
|
|
40645
|
-
*
|
|
40646
|
-
*/
|
|
40647
|
-
avg_confidence?: number | unknown;
|
|
40648
|
-
/**
|
|
40649
|
-
* Credits billed for processing this document
|
|
40650
|
-
*/
|
|
40651
|
-
billed_credits?: number | unknown;
|
|
40652
|
-
/**
|
|
40653
|
-
* Overall classification confidence (0.0 to 1.0)
|
|
40654
|
-
*/
|
|
40655
|
-
classification_confidence?: number | unknown;
|
|
40656
|
-
/**
|
|
40657
|
-
* Timestamp when document processing completed (status changed to :completed)
|
|
40658
|
-
*/
|
|
40659
|
-
completed_at?: unknown;
|
|
40660
|
-
/**
|
|
40661
|
-
* Specific document type from specialty agent (Traffic Citation, Invoice, etc.)
|
|
42546
|
+
* Days to hold funds before release
|
|
40662
42547
|
*/
|
|
40663
|
-
|
|
42548
|
+
hold_days?: number | unknown;
|
|
42549
|
+
isv_tenant_id: string;
|
|
40664
42550
|
/**
|
|
40665
|
-
*
|
|
42551
|
+
* Minimum payout amount in cents ($25.00 default)
|
|
40666
42552
|
*/
|
|
40667
|
-
|
|
40668
|
-
error_message?: string | unknown;
|
|
42553
|
+
minimum_payout_cents?: number | unknown;
|
|
40669
42554
|
/**
|
|
40670
|
-
*
|
|
42555
|
+
* Wholesale pricing model: percentage of retail or fixed floor rates
|
|
40671
42556
|
*/
|
|
40672
|
-
|
|
40673
|
-
|
|
40674
|
-
processed_at?: unknown;
|
|
40675
|
-
progress?: number | unknown;
|
|
42557
|
+
model?: "percentage" | "interchange_plus" | unknown;
|
|
42558
|
+
notes?: string | unknown;
|
|
40676
42559
|
/**
|
|
40677
|
-
*
|
|
42560
|
+
* Per-operation floor rates for interchange-plus model
|
|
40678
42561
|
*/
|
|
40679
|
-
|
|
40680
|
-
|
|
42562
|
+
rates?: Array<{
|
|
42563
|
+
[key: string]: unknown;
|
|
42564
|
+
}> | unknown;
|
|
42565
|
+
settlement_frequency?: "monthly" | "weekly" | "daily" | unknown;
|
|
40681
42566
|
/**
|
|
40682
|
-
*
|
|
42567
|
+
* Platform take rate as percentage of retail (for percentage model)
|
|
40683
42568
|
*/
|
|
40684
|
-
|
|
40685
|
-
[key: string]: unknown;
|
|
40686
|
-
} | unknown;
|
|
42569
|
+
take_rate_percent?: number | unknown;
|
|
40687
42570
|
};
|
|
40688
|
-
id: string;
|
|
40689
42571
|
relationships?: {
|
|
40690
42572
|
[key: string]: never;
|
|
40691
42573
|
};
|
|
40692
|
-
type?: "
|
|
42574
|
+
type?: "wholesale-agreement";
|
|
40693
42575
|
};
|
|
40694
42576
|
};
|
|
40695
42577
|
headers: {
|
|
@@ -40698,9 +42580,7 @@ type PatchAdminExtractionDocumentsByIdStatusData = {
|
|
|
40698
42580
|
*/
|
|
40699
42581
|
"x-application-key": string;
|
|
40700
42582
|
};
|
|
40701
|
-
path
|
|
40702
|
-
id: string;
|
|
40703
|
-
};
|
|
42583
|
+
path?: never;
|
|
40704
42584
|
query?: {
|
|
40705
42585
|
/**
|
|
40706
42586
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -40711,15 +42591,15 @@ type PatchAdminExtractionDocumentsByIdStatusData = {
|
|
|
40711
42591
|
*/
|
|
40712
42592
|
fields?: {
|
|
40713
42593
|
/**
|
|
40714
|
-
* Comma separated field names for
|
|
42594
|
+
* Comma separated field names for wholesale-agreement
|
|
40715
42595
|
*/
|
|
40716
|
-
|
|
42596
|
+
"wholesale-agreement"?: string;
|
|
40717
42597
|
[key: string]: unknown | string | undefined;
|
|
40718
42598
|
};
|
|
40719
42599
|
};
|
|
40720
|
-
url: "/admin/
|
|
42600
|
+
url: "/admin/wholesale-agreements";
|
|
40721
42601
|
};
|
|
40722
|
-
type
|
|
42602
|
+
type PostAdminWholesaleAgreementsErrors = {
|
|
40723
42603
|
/**
|
|
40724
42604
|
* Bad Request - Invalid input data or malformed request
|
|
40725
42605
|
*/
|
|
@@ -40749,20 +42629,20 @@ type PatchAdminExtractionDocumentsByIdStatusErrors = {
|
|
|
40749
42629
|
*/
|
|
40750
42630
|
default: Errors;
|
|
40751
42631
|
};
|
|
40752
|
-
type
|
|
40753
|
-
type
|
|
42632
|
+
type PostAdminWholesaleAgreementsError = PostAdminWholesaleAgreementsErrors[keyof PostAdminWholesaleAgreementsErrors];
|
|
42633
|
+
type PostAdminWholesaleAgreementsResponses = {
|
|
40754
42634
|
/**
|
|
40755
42635
|
* Success
|
|
40756
42636
|
*/
|
|
40757
|
-
|
|
40758
|
-
data?:
|
|
40759
|
-
included?: Array<
|
|
42637
|
+
201: {
|
|
42638
|
+
data?: WholesaleAgreement;
|
|
42639
|
+
included?: Array<unknown>;
|
|
40760
42640
|
meta?: {
|
|
40761
42641
|
[key: string]: unknown;
|
|
40762
42642
|
};
|
|
40763
42643
|
};
|
|
40764
42644
|
};
|
|
40765
|
-
type
|
|
42645
|
+
type PostAdminWholesaleAgreementsResponse = PostAdminWholesaleAgreementsResponses[keyof PostAdminWholesaleAgreementsResponses];
|
|
40766
42646
|
type GetAdminAiGraphNodesBySourceNodeIdRelatedData = {
|
|
40767
42647
|
body?: never;
|
|
40768
42648
|
headers: {
|
|
@@ -42125,9 +44005,7 @@ type GetAdminAgentVersionsByIdMetricsResponses = {
|
|
|
42125
44005
|
* Success
|
|
42126
44006
|
*/
|
|
42127
44007
|
200: {
|
|
42128
|
-
|
|
42129
|
-
[key: string]: unknown;
|
|
42130
|
-
};
|
|
44008
|
+
[key: string]: unknown;
|
|
42131
44009
|
};
|
|
42132
44010
|
};
|
|
42133
44011
|
type GetAdminAgentVersionsByIdMetricsResponse = GetAdminAgentVersionsByIdMetricsResponses[keyof GetAdminAgentVersionsByIdMetricsResponses];
|
|
@@ -46456,7 +48334,30 @@ type GetAdminAgentsUsageData = {
|
|
|
46456
48334
|
"x-application-key": string;
|
|
46457
48335
|
};
|
|
46458
48336
|
path?: never;
|
|
46459
|
-
query?:
|
|
48337
|
+
query?: {
|
|
48338
|
+
/**
|
|
48339
|
+
* Filter results using JSON:API filter syntax. Use field comparisons like `field[eq]=value`, `field[in][]=val1&field[in][]=val2`, etc.
|
|
48340
|
+
*/
|
|
48341
|
+
filter?: AgentUsageFilter;
|
|
48342
|
+
/**
|
|
48343
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
48344
|
+
*/
|
|
48345
|
+
sort?: string;
|
|
48346
|
+
/**
|
|
48347
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
48348
|
+
*/
|
|
48349
|
+
include?: string;
|
|
48350
|
+
/**
|
|
48351
|
+
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
48352
|
+
*/
|
|
48353
|
+
fields?: {
|
|
48354
|
+
/**
|
|
48355
|
+
* Comma separated field names for agent_usage
|
|
48356
|
+
*/
|
|
48357
|
+
agent_usage?: string;
|
|
48358
|
+
[key: string]: unknown | string | undefined;
|
|
48359
|
+
};
|
|
48360
|
+
};
|
|
46460
48361
|
url: "/admin/agents/usage";
|
|
46461
48362
|
};
|
|
46462
48363
|
type GetAdminAgentsUsageErrors = {
|
|
@@ -46495,7 +48396,12 @@ type GetAdminAgentsUsageResponses = {
|
|
|
46495
48396
|
* Success
|
|
46496
48397
|
*/
|
|
46497
48398
|
200: {
|
|
46498
|
-
|
|
48399
|
+
/**
|
|
48400
|
+
* An array of resource objects representing a agent_usage
|
|
48401
|
+
*/
|
|
48402
|
+
data?: Array<AgentUsage>;
|
|
48403
|
+
included?: Array<unknown>;
|
|
48404
|
+
meta?: {
|
|
46499
48405
|
[key: string]: unknown;
|
|
46500
48406
|
};
|
|
46501
48407
|
};
|
|
@@ -48302,4 +50208,4 @@ type ApiKeyAllocateRequest = z.infer<typeof ApiKeyAllocateSchema>;
|
|
|
48302
50208
|
type DocumentBulkDeleteRequest = z.infer<typeof DocumentBulkDeleteSchema>;
|
|
48303
50209
|
type DocumentBulkReprocessRequest = z.infer<typeof DocumentBulkReprocessSchema>;
|
|
48304
50210
|
|
|
48305
|
-
export { type Account, type AccountCreditRequest, AccountCreditSchema, type AccountDebitRequest, AccountDebitSchema, type AccountFilter, type AccountFilterCredits, type AccountFilterCurrency, type AccountFilterExpiresAt, type AccountFilterId, type AccountFilterIdentifier, type AccountFilterName, type AccountFilterType, type Agent, type AgentAdminCreateRequest, AgentAdminCreateSchema, type AgentFilter, type AgentFilterCapabilities, type AgentFilterClonedFromId, type AgentFilterDefaultInstructions, type AgentFilterDescription, type AgentFilterDomain, type AgentFilterId, type AgentFilterInstructions, type AgentFilterIsSystem, type AgentFilterName, type AgentFilterPromptTemplate, type AgentFilterSchemaDefinition, type AgentFilterSlug, type AgentFilterTenantId, type AgentFilterVersion, type AgentFilterWorkspaceId, type AgentTestResult, type AgentTestResultFilter, type AgentTestResultFilterAgentVersionId, type AgentTestResultFilterCreatedAt, type AgentTestResultFilterDocumentId, type AgentTestResultFilterErrorMessage, type AgentTestResultFilterExtractedData, type AgentTestResultFilterId, type AgentTestResultFilterStatus, type AgentTestResultFilterUsage, type AgentVersion, type AgentVersionComparison, type AgentVersionComparisonFilter, type AgentVersionComparisonFilterCreatedAt, type AgentVersionComparisonFilterId, type AgentVersionComparisonFilterPromptDiff, type AgentVersionComparisonFilterSchemaDiff, type AgentVersionComparisonFilterVersionAId, type AgentVersionComparisonFilterVersionANumber, type AgentVersionComparisonFilterVersionBId, type AgentVersionComparisonFilterVersionBNumber, type AgentVersionFieldsInputCreateType, type AgentVersionFilter, type AgentVersionFilterChangesSummary, type AgentVersionFilterCreatedAt, type AgentVersionFilterHasBeenUsed, type AgentVersionFilterId, type AgentVersionFilterIsActive, type AgentVersionFilterPromptTemplate, type AgentVersionFilterSchemaDefinition, type AgentVersionFilterUpdatedAt, type AgentVersionFilterVersionNumber, type AiConfig, type AiConfigFilter, type ApiKey, type ApiKeyAllocateRequest, ApiKeyAllocateSchema, type ApiKeyFilter, type ApiKeyFilterApplicationId, type ApiKeyFilterCreditLimit, type ApiKeyFilterCreditLimitPeriod, type ApiKeyFilterExpiresAt, type ApiKeyFilterId, type ApiKeyFilterKeyType, type ApiKeyFilterLastUsedAt, type ApiKeyFilterName, type ApiKeyFilterPeriodCreditsUsed, type ApiKeyFilterPeriodStartedAt, type ApiKeyFilterPrefix, type ApiKeyFilterRateLimitPeriodSeconds, type ApiKeyFilterRateLimitRequests, type ApiKeyFilterStatus, type ApiKeyFilterTenantId, type ApiKeyFilterTotalCreditsUsed, type ApiKeyFilterTotalRequests, type ApiKeyFilterUserId, type ApiKeyFilterWorkspaceId, type Application, type ApplicationFilter, type ApplicationFilterBadgeUrl, type ApplicationFilterBaseUrl, type ApplicationFilterDefaultFreeCredits, type ApplicationFilterDescription, type ApplicationFilterId, type ApplicationFilterInviteOnly, type ApplicationFilterLogoUrl, type ApplicationFilterName, type ApplicationFilterRequireEmailVerification, type ApplicationFilterSenderEmail, type ApplicationFilterSenderName, type ApplicationFilterSlug, type ApplicationOauthInputCreateType, type ApplicationOauthInputUpdateType, type ApplicationType, type AuditLog, type AuditLogFilter, type AuditLogFilterAction, type AuditLogFilterActorId, type AuditLogFilterAdminContext, type AuditLogFilterChanges, type AuditLogFilterId, type AuditLogFilterIpAddress, type AuditLogFilterResourceId, type AuditLogFilterResourceType, type AuditLogFilterTargetId, type AuditLogFilterTargetName, type AuditLogFilterTargetType, type AuditLogFilterTenantId, type AuditLogFilterUserAgent, type AuditLogFilterWorkspaceId, AuthenticationError, AuthorizationError, type Balance, type BalanceFilter, type BalanceFilterId, type Bucket, type BucketFilter, type BucketFilterId, type BucketFilterName, type BucketFilterRegion, type BucketFilterStorageUsed, type BucketFilterType, type BulkDismissalResult, type BulkDismissalResultFilter, type BulkDismissalResultFilterDismissedCount, type BulkDismissalResultFilterId, type BulkDismissalResultFilterSuccess, type BulkReprocessResult, type BulkReprocessResultFilter, type BulkReprocessResultFilterErrorCount, type BulkReprocessResultFilterId, type BulkReprocessResultFilterQueuedCount, type BulkReprocessResultFilterSuccess, type ClientOptions, type Config, type ConfigFilter, type ConfigFilterDescription, type ConfigFilterKey, type ConfigFilterValue, type Conversation, type ConversationFilter, type ConversationFilterContextData, type ConversationFilterId, type ConversationFilterTenantId, type ConversationFilterTitle, type CreditPackage, type CreditPackageFilter, type CreditPackageFilterApplicationId, type CreditPackageFilterCreatedAt, type CreditPackageFilterCredits, type CreditPackageFilterId, type CreditPackageFilterName, type CreditPackageFilterPrice, type CreditPackageFilterSlug, type CreditPackageFilterUpdatedAt, type Customer, type CustomerFilter, type CustomerFilterId, type DeleteAdminAgentVersionsByIdData, type DeleteAdminAgentVersionsByIdError, type DeleteAdminAgentVersionsByIdErrors, type DeleteAdminAgentVersionsByIdResponses, type DeleteAdminAiConversationsByIdData, type DeleteAdminAiConversationsByIdError, type DeleteAdminAiConversationsByIdErrors, type DeleteAdminAiConversationsByIdResponses, type DeleteAdminAiGraphEdgesByIdData, type DeleteAdminAiGraphEdgesByIdError, type DeleteAdminAiGraphEdgesByIdErrors, type DeleteAdminAiGraphEdgesByIdResponses, type DeleteAdminAiGraphNodesByIdData, type DeleteAdminAiGraphNodesByIdError, type DeleteAdminAiGraphNodesByIdErrors, type DeleteAdminAiGraphNodesByIdResponses, type DeleteAdminAiMessagesByIdData, type DeleteAdminAiMessagesByIdError, type DeleteAdminAiMessagesByIdErrors, type DeleteAdminAiMessagesByIdResponses, type DeleteAdminApiKeysByIdData, type DeleteAdminApiKeysByIdError, type DeleteAdminApiKeysByIdErrors, type DeleteAdminApiKeysByIdResponses, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugData, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugError, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses, type DeleteAdminApplicationsByIdData, type DeleteAdminApplicationsByIdError, type DeleteAdminApplicationsByIdErrors, type DeleteAdminApplicationsByIdResponses, type DeleteAdminBucketsByIdData, type DeleteAdminBucketsByIdError, type DeleteAdminBucketsByIdErrors, type DeleteAdminBucketsByIdResponses, type DeleteAdminCreditPackagesByIdData, type DeleteAdminCreditPackagesByIdError, type DeleteAdminCreditPackagesByIdErrors, type DeleteAdminCreditPackagesByIdResponses, type DeleteAdminCustomersByIdData, type DeleteAdminCustomersByIdError, type DeleteAdminCustomersByIdErrors, type DeleteAdminCustomersByIdResponses, type DeleteAdminExtractionBatchesByIdData, type DeleteAdminExtractionBatchesByIdError, type DeleteAdminExtractionBatchesByIdErrors, type DeleteAdminExtractionBatchesByIdResponses, type DeleteAdminExtractionDocumentsByIdData, type DeleteAdminExtractionDocumentsByIdError, type DeleteAdminExtractionDocumentsByIdErrors, type DeleteAdminExtractionDocumentsByIdResponses, type DeleteAdminExtractionResultsByIdData, type DeleteAdminExtractionResultsByIdError, type DeleteAdminExtractionResultsByIdErrors, type DeleteAdminExtractionResultsByIdResponses, type DeleteAdminFieldTemplatesByIdData, type DeleteAdminFieldTemplatesByIdError, type DeleteAdminFieldTemplatesByIdErrors, type DeleteAdminFieldTemplatesByIdResponses, type DeleteAdminMessagesByIdData, type DeleteAdminMessagesByIdError, type DeleteAdminMessagesByIdErrors, type DeleteAdminMessagesByIdResponses, type DeleteAdminNotificationMethodsByIdData, type DeleteAdminNotificationMethodsByIdError, type DeleteAdminNotificationMethodsByIdErrors, type DeleteAdminNotificationMethodsByIdResponses, type DeleteAdminNotificationPreferencesByIdData, type DeleteAdminNotificationPreferencesByIdError, type DeleteAdminNotificationPreferencesByIdErrors, type DeleteAdminNotificationPreferencesByIdResponses, type DeleteAdminObjectsByIdData, type DeleteAdminObjectsByIdError, type DeleteAdminObjectsByIdErrors, type DeleteAdminObjectsByIdResponses, type DeleteAdminPaymentMethodsByIdData, type DeleteAdminPaymentMethodsByIdError, type DeleteAdminPaymentMethodsByIdErrors, type DeleteAdminPaymentMethodsByIdResponses, type DeleteAdminPlansByIdData, type DeleteAdminPlansByIdError, type DeleteAdminPlansByIdErrors, type DeleteAdminPlansByIdResponses, type DeleteAdminSearchSavedByIdData, type DeleteAdminSearchSavedByIdError, type DeleteAdminSearchSavedByIdErrors, type DeleteAdminSearchSavedByIdResponses, type DeleteAdminSubscriptionsByIdData, type DeleteAdminSubscriptionsByIdError, type DeleteAdminSubscriptionsByIdErrors, type DeleteAdminSubscriptionsByIdResponses, type DeleteAdminSystemMessagesByIdData, type DeleteAdminSystemMessagesByIdError, type DeleteAdminSystemMessagesByIdErrors, type DeleteAdminSystemMessagesByIdResponses, type DeleteAdminTenantMembershipsByTenantIdByUserIdData, type DeleteAdminTenantMembershipsByTenantIdByUserIdError, type DeleteAdminTenantMembershipsByTenantIdByUserIdErrors, type DeleteAdminTenantMembershipsByTenantIdByUserIdResponses, type DeleteAdminTenantPricingOverridesByIdData, type DeleteAdminTenantPricingOverridesByIdError, type DeleteAdminTenantPricingOverridesByIdErrors, type DeleteAdminTenantPricingOverridesByIdResponses, type DeleteAdminTenantsByIdData, type DeleteAdminTenantsByIdError, type DeleteAdminTenantsByIdErrors, type DeleteAdminTenantsByIdResponses, type DeleteAdminThreadsByIdData, type DeleteAdminThreadsByIdError, type DeleteAdminThreadsByIdErrors, type DeleteAdminThreadsByIdResponses, type DeleteAdminTrainingExamplesByIdData, type DeleteAdminTrainingExamplesByIdError, type DeleteAdminTrainingExamplesByIdErrors, type DeleteAdminTrainingExamplesByIdResponses, type DeleteAdminTrainingSessionsByIdData, type DeleteAdminTrainingSessionsByIdError, type DeleteAdminTrainingSessionsByIdErrors, type DeleteAdminTrainingSessionsByIdResponses, type DeleteAdminUserProfilesByIdData, type DeleteAdminUserProfilesByIdError, type DeleteAdminUserProfilesByIdErrors, type DeleteAdminUserProfilesByIdResponses, type DeleteAdminUsersByIdData, type DeleteAdminUsersByIdError, type DeleteAdminUsersByIdErrors, type DeleteAdminUsersByIdResponses, type DeleteAdminWebhookConfigsByIdData, type DeleteAdminWebhookConfigsByIdError, type DeleteAdminWebhookConfigsByIdErrors, type DeleteAdminWebhookConfigsByIdResponses, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdData, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdError, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type DeleteAdminWorkspacesByIdData, type DeleteAdminWorkspacesByIdError, type DeleteAdminWorkspacesByIdErrors, type DeleteAdminWorkspacesByIdResponses, type DocumentBulkDeleteRequest, DocumentBulkDeleteSchema, type DocumentBulkReprocessRequest, DocumentBulkReprocessSchema, type DocumentChunk, type DocumentChunkFilter, type DocumentChunkFilterChunkIndex, type DocumentChunkFilterContent, type DocumentChunkFilterDocumentId, type DocumentChunkFilterId, type DocumentStats, type DocumentStatsFilter, type DocumentStatsFilterCompleted, type DocumentStatsFilterFailed, type DocumentStatsFilterId, type DocumentStatsFilterProcessing, type DocumentStatsFilterQueued, type DocumentStatsFilterTotal, type EmailTemplate, type EmailTemplateFilter, type EmailTemplateFilterApplicationId, type EmailTemplateFilterBodyMarkdown, type EmailTemplateFilterCategory, type EmailTemplateFilterEnabled, type EmailTemplateFilterId, type EmailTemplateFilterName, type EmailTemplateFilterPrimaryColor, type EmailTemplateFilterSlug, type EmailTemplateFilterSubject, type Embedding, type EmbeddingFilter, type EmbeddingFilterBilledCredits, type EmbeddingFilterEmbedding, type EmbeddingFilterId, type EmbeddingFilterModel, type EmbeddingFilterText, type EmbeddingFilterUsage, type ErrorResponse, type Errors, type ExtractionBatch, type ExtractionBatchFilter, type ExtractionBatchFilterId, type ExtractionBatchFilterName, type ExtractionBatchFilterStatus, type ExtractionBatchFilterUserLabel, type ExtractionDocument, type ExtractionDocumentFilter, type ExtractionDocumentFilterAvgConfidence, type ExtractionDocumentFilterBilledCredits, type ExtractionDocumentFilterBucketName, type ExtractionDocumentFilterClassification, type ExtractionDocumentFilterClassificationConfidence, type ExtractionDocumentFilterCompletedAt, type ExtractionDocumentFilterContent, type ExtractionDocumentFilterDeletedAt, type ExtractionDocumentFilterDocumentType, type ExtractionDocumentFilterDomain, type ExtractionDocumentFilterErrorMessage, type ExtractionDocumentFilterErrorStoragePath, type ExtractionDocumentFilterExcludedAt, type ExtractionDocumentFilterExcludedBy, type ExtractionDocumentFilterExcludedFromTraining, type ExtractionDocumentFilterFileHash, type ExtractionDocumentFilterFileSizeBytes, type ExtractionDocumentFilterFileType, type ExtractionDocumentFilterFilename, type ExtractionDocumentFilterId, type ExtractionDocumentFilterLastVerifiedAt, type ExtractionDocumentFilterMovedAt, type ExtractionDocumentFilterMunicipality, type ExtractionDocumentFilterOcrText, type ExtractionDocumentFilterOutputStoragePath, type ExtractionDocumentFilterPages, type ExtractionDocumentFilterPresignedViewUrl, type ExtractionDocumentFilterProcessedAt, type ExtractionDocumentFilterProgress, type ExtractionDocumentFilterQueueReason, type ExtractionDocumentFilterSchemaVersion, type ExtractionDocumentFilterStage, type ExtractionDocumentFilterState, type ExtractionDocumentFilterStatus, type ExtractionDocumentFilterStoragePath, type ExtractionDocumentFilterTrainingMetadata, type ExtractionDocumentFilterUploadUrl, type ExtractionDocumentFilterUploadedAt, type ExtractionDocumentFilterVerificationStatus, type ExtractionDocumentFilterVerifiedByUserId, type ExtractionExport, type ExtractionExportFilter, type ExtractionExportFilterConfig, type ExtractionExportFilterErrorMessage, type ExtractionExportFilterExpiresAt, type ExtractionExportFilterFileSizeBytes, type ExtractionExportFilterFileUrl, type ExtractionExportFilterFormat, type ExtractionExportFilterId, type ExtractionExportFilterStatus, type ExtractionExportFilterWorkspaceId, type ExtractionResult, type ExtractionResultFilter, type ExtractionResultFilterCharCount, type ExtractionResultFilterCreditsUsed, type ExtractionResultFilterExtractedFields, type ExtractionResultFilterExtractionMode, type ExtractionResultFilterId, type ExtractionResultFilterImageHeight, type ExtractionResultFilterImageWidth, type ExtractionResultFilterLineCount, type ExtractionResultFilterProcessingTimeMs, type ExtractionResultFilterSchemaId, type ExtractionResultFilterSchemaVersion, type ExtractionResultFilterStatus, type ExtractionResultFilterSummary, type ExtractionResultFilterWordCount, type FieldMappingConfirmation, type FieldMappingConfirmationFilter, type FieldMappingConfirmationFilterConfirmed, type FieldMappingConfirmationFilterDocumentId, type FieldMappingConfirmationFilterFieldsIgnored, type FieldMappingConfirmationFilterFieldsMapped, type FieldMappingConfirmationFilterMappingConfirmed, type FieldMappingConfirmationFilterMappingConfirmedAt, type FieldMappingConfirmationFilterSchemaUpdated, type FieldMappingConfirmationFilterSchemaVersion, type FieldMappingConfirmationFilterWorkspaceId, type FieldMappingResult, type FieldMappingResultFilter, type FieldMappingResultFilterDocumentId, type FieldMappingResultFilterId, type FieldTemplate, type FieldTemplateFilter, type FieldTemplateFilterCategory, type FieldTemplateFilterCreatedAt, type FieldTemplateFilterExtractionHints, type FieldTemplateFilterFieldType, type FieldTemplateFilterId, type FieldTemplateFilterIsSystem, type FieldTemplateFilterLlmInstructions, type FieldTemplateFilterName, type FieldTemplateFilterUpdatedAt, type FieldTemplateFilterValidationPattern, type GetAdminAccountsByIdData, type GetAdminAccountsByIdError, type GetAdminAccountsByIdErrors, type GetAdminAccountsByIdResponse, type GetAdminAccountsByIdResponses, type GetAdminAccountsByTenantByTenantIdData, type GetAdminAccountsByTenantByTenantIdError, type GetAdminAccountsByTenantByTenantIdErrors, type GetAdminAccountsByTenantByTenantIdResponse, type GetAdminAccountsByTenantByTenantIdResponses, type GetAdminAccountsData, type GetAdminAccountsError, type GetAdminAccountsErrors, type GetAdminAccountsResponse, type GetAdminAccountsResponses, type GetAdminAgentVersionsByIdData, type GetAdminAgentVersionsByIdError, type GetAdminAgentVersionsByIdErrors, type GetAdminAgentVersionsByIdMetricsData, type GetAdminAgentVersionsByIdMetricsError, type GetAdminAgentVersionsByIdMetricsErrors, type GetAdminAgentVersionsByIdMetricsResponse, type GetAdminAgentVersionsByIdMetricsResponses, type GetAdminAgentVersionsByIdResponse, type GetAdminAgentVersionsByIdResponses, type GetAdminAgentVersionsData, type GetAdminAgentVersionsError, type GetAdminAgentVersionsErrors, type GetAdminAgentVersionsResponse, type GetAdminAgentVersionsResponses, type GetAdminAgentsByIdData, type GetAdminAgentsByIdError, type GetAdminAgentsByIdErrors, type GetAdminAgentsByIdResponse, type GetAdminAgentsByIdResponses, type GetAdminAgentsByIdSchemaVersionsData, type GetAdminAgentsByIdSchemaVersionsError, type GetAdminAgentsByIdSchemaVersionsErrors, type GetAdminAgentsByIdSchemaVersionsResponse, type GetAdminAgentsByIdSchemaVersionsResponses, type GetAdminAgentsByIdStatsData, type GetAdminAgentsByIdStatsError, type GetAdminAgentsByIdStatsErrors, type GetAdminAgentsByIdStatsResponse, type GetAdminAgentsByIdStatsResponses, type GetAdminAgentsByIdTrainingStatsData, type GetAdminAgentsByIdTrainingStatsError, type GetAdminAgentsByIdTrainingStatsErrors, type GetAdminAgentsByIdTrainingStatsResponse, type GetAdminAgentsByIdTrainingStatsResponses, type GetAdminAgentsByIdUsageData, type GetAdminAgentsByIdUsageError, type GetAdminAgentsByIdUsageErrors, type GetAdminAgentsByIdUsageResponse, type GetAdminAgentsByIdUsageResponses, type GetAdminAgentsData, type GetAdminAgentsError, type GetAdminAgentsErrors, type GetAdminAgentsResponse, type GetAdminAgentsResponses, type GetAdminAgentsUsageData, type GetAdminAgentsUsageError, type GetAdminAgentsUsageErrors, type GetAdminAgentsUsageResponse, type GetAdminAgentsUsageResponses, type GetAdminAiChunksDocumentByDocumentIdData, type GetAdminAiChunksDocumentByDocumentIdError, type GetAdminAiChunksDocumentByDocumentIdErrors, type GetAdminAiChunksDocumentByDocumentIdResponse, type GetAdminAiChunksDocumentByDocumentIdResponses, type GetAdminAiConversationsByIdData, type GetAdminAiConversationsByIdError, type GetAdminAiConversationsByIdErrors, type GetAdminAiConversationsByIdResponse, type GetAdminAiConversationsByIdResponses, type GetAdminAiConversationsData, type GetAdminAiConversationsError, type GetAdminAiConversationsErrors, type GetAdminAiConversationsResponse, type GetAdminAiConversationsResponses, type GetAdminAiGraphEdgesData, type GetAdminAiGraphEdgesError, type GetAdminAiGraphEdgesErrors, type GetAdminAiGraphEdgesResponse, type GetAdminAiGraphEdgesResponses, type GetAdminAiGraphNodesBySourceNodeIdRelatedData, type GetAdminAiGraphNodesBySourceNodeIdRelatedError, type GetAdminAiGraphNodesBySourceNodeIdRelatedErrors, type GetAdminAiGraphNodesBySourceNodeIdRelatedResponse, type GetAdminAiGraphNodesBySourceNodeIdRelatedResponses, type GetAdminAiGraphNodesData, type GetAdminAiGraphNodesError, type GetAdminAiGraphNodesErrors, type GetAdminAiGraphNodesLabelByLabelData, type GetAdminAiGraphNodesLabelByLabelError, type GetAdminAiGraphNodesLabelByLabelErrors, type GetAdminAiGraphNodesLabelByLabelResponse, type GetAdminAiGraphNodesLabelByLabelResponses, type GetAdminAiGraphNodesResponse, type GetAdminAiGraphNodesResponses, type GetAdminAiMessagesData, type GetAdminAiMessagesError, type GetAdminAiMessagesErrors, type GetAdminAiMessagesResponse, type GetAdminAiMessagesResponses, type GetAdminApiKeysActiveData, type GetAdminApiKeysActiveError, type GetAdminApiKeysActiveErrors, type GetAdminApiKeysActiveResponse, type GetAdminApiKeysActiveResponses, type GetAdminApiKeysByIdData, type GetAdminApiKeysByIdError, type GetAdminApiKeysByIdErrors, type GetAdminApiKeysByIdResponse, type GetAdminApiKeysByIdResponses, type GetAdminApiKeysData, type GetAdminApiKeysError, type GetAdminApiKeysErrors, type GetAdminApiKeysResponse, type GetAdminApiKeysResponses, type GetAdminApiKeysStatsData, type GetAdminApiKeysStatsError, type GetAdminApiKeysStatsErrors, type GetAdminApiKeysStatsResponse, type GetAdminApiKeysStatsResponses, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugData, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugError, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugResponse, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses, type GetAdminApplicationsByApplicationIdEmailTemplatesData, type GetAdminApplicationsByApplicationIdEmailTemplatesError, type GetAdminApplicationsByApplicationIdEmailTemplatesErrors, type GetAdminApplicationsByApplicationIdEmailTemplatesResponse, type GetAdminApplicationsByApplicationIdEmailTemplatesResponses, type GetAdminApplicationsByIdData, type GetAdminApplicationsByIdError, type GetAdminApplicationsByIdErrors, type GetAdminApplicationsByIdResponse, type GetAdminApplicationsByIdResponses, type GetAdminApplicationsBySlugBySlugData, type GetAdminApplicationsBySlugBySlugError, type GetAdminApplicationsBySlugBySlugErrors, type GetAdminApplicationsBySlugBySlugResponse, type GetAdminApplicationsBySlugBySlugResponses, type GetAdminApplicationsCurrentData, type GetAdminApplicationsCurrentError, type GetAdminApplicationsCurrentErrors, type GetAdminApplicationsCurrentResponse, type GetAdminApplicationsCurrentResponses, type GetAdminApplicationsData, type GetAdminApplicationsError, type GetAdminApplicationsErrors, type GetAdminApplicationsResponse, type GetAdminApplicationsResponses, type GetAdminAuditLogsActivityData, type GetAdminAuditLogsActivityError, type GetAdminAuditLogsActivityErrors, type GetAdminAuditLogsActivityResponse, type GetAdminAuditLogsActivityResponses, type GetAdminAuditLogsData, type GetAdminAuditLogsError, type GetAdminAuditLogsErrors, type GetAdminAuditLogsResponse, type GetAdminAuditLogsResponses, type GetAdminBalancesByIdData, type GetAdminBalancesByIdError, type GetAdminBalancesByIdErrors, type GetAdminBalancesByIdResponse, type GetAdminBalancesByIdResponses, type GetAdminBalancesData, type GetAdminBalancesError, type GetAdminBalancesErrors, type GetAdminBalancesResponse, type GetAdminBalancesResponses, type GetAdminBucketsAllData, type GetAdminBucketsAllError, type GetAdminBucketsAllErrors, type GetAdminBucketsAllResponse, type GetAdminBucketsAllResponses, type GetAdminBucketsByIdData, type GetAdminBucketsByIdError, type GetAdminBucketsByIdErrors, type GetAdminBucketsByIdObjectsData, type GetAdminBucketsByIdObjectsError, type GetAdminBucketsByIdObjectsErrors, type GetAdminBucketsByIdObjectsResponse, type GetAdminBucketsByIdObjectsResponses, type GetAdminBucketsByIdResponse, type GetAdminBucketsByIdResponses, type GetAdminBucketsByIdStatsData, type GetAdminBucketsByIdStatsError, type GetAdminBucketsByIdStatsErrors, type GetAdminBucketsByIdStatsResponse, type GetAdminBucketsByIdStatsResponses, type GetAdminBucketsData, type GetAdminBucketsError, type GetAdminBucketsErrors, type GetAdminBucketsResponse, type GetAdminBucketsResponses, type GetAdminConfigsData, type GetAdminConfigsError, type GetAdminConfigsErrors, type GetAdminConfigsResponse, type GetAdminConfigsResponses, type GetAdminCreditPackagesByIdData, type GetAdminCreditPackagesByIdError, type GetAdminCreditPackagesByIdErrors, type GetAdminCreditPackagesByIdResponse, type GetAdminCreditPackagesByIdResponses, type GetAdminCreditPackagesData, type GetAdminCreditPackagesError, type GetAdminCreditPackagesErrors, type GetAdminCreditPackagesResponse, type GetAdminCreditPackagesResponses, type GetAdminCreditPackagesSlugBySlugData, type GetAdminCreditPackagesSlugBySlugError, type GetAdminCreditPackagesSlugBySlugErrors, type GetAdminCreditPackagesSlugBySlugResponse, type GetAdminCreditPackagesSlugBySlugResponses, type GetAdminCustomersByIdData, type GetAdminCustomersByIdError, type GetAdminCustomersByIdErrors, type GetAdminCustomersByIdResponse, type GetAdminCustomersByIdResponses, type GetAdminDocumentsStatsData, type GetAdminDocumentsStatsError, type GetAdminDocumentsStatsErrors, type GetAdminDocumentsStatsResponse, type GetAdminDocumentsStatsResponses, type GetAdminExtractionBatchesByIdData, type GetAdminExtractionBatchesByIdError, type GetAdminExtractionBatchesByIdErrors, type GetAdminExtractionBatchesByIdResponse, type GetAdminExtractionBatchesByIdResponses, type GetAdminExtractionBatchesByIdUploadUrlsData, type GetAdminExtractionBatchesByIdUploadUrlsError, type GetAdminExtractionBatchesByIdUploadUrlsErrors, type GetAdminExtractionBatchesByIdUploadUrlsResponse, type GetAdminExtractionBatchesByIdUploadUrlsResponses, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdData, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdError, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdErrors, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdResponse, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdResponses, type GetAdminExtractionDocumentsByIdData, type GetAdminExtractionDocumentsByIdError, type GetAdminExtractionDocumentsByIdErrors, type GetAdminExtractionDocumentsByIdResponse, type GetAdminExtractionDocumentsByIdResponses, type GetAdminExtractionDocumentsByIdStatusData, type GetAdminExtractionDocumentsByIdStatusError, type GetAdminExtractionDocumentsByIdStatusErrors, type GetAdminExtractionDocumentsByIdStatusResponse, type GetAdminExtractionDocumentsByIdStatusResponses, type GetAdminExtractionDocumentsByIdViewData, type GetAdminExtractionDocumentsByIdViewError, type GetAdminExtractionDocumentsByIdViewErrors, type GetAdminExtractionDocumentsByIdViewResponse, type GetAdminExtractionDocumentsByIdViewResponses, type GetAdminExtractionDocumentsData, type GetAdminExtractionDocumentsError, type GetAdminExtractionDocumentsErrors, type GetAdminExtractionDocumentsResponse, type GetAdminExtractionDocumentsResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedResponses, type GetAdminExtractionResultsByIdData, type GetAdminExtractionResultsByIdError, type GetAdminExtractionResultsByIdErrors, type GetAdminExtractionResultsByIdResponse, type GetAdminExtractionResultsByIdResponses, type GetAdminExtractionResultsData, type GetAdminExtractionResultsDocumentByDocumentIdData, type GetAdminExtractionResultsDocumentByDocumentIdError, type GetAdminExtractionResultsDocumentByDocumentIdErrors, type GetAdminExtractionResultsDocumentByDocumentIdResponse, type GetAdminExtractionResultsDocumentByDocumentIdResponses, type GetAdminExtractionResultsError, type GetAdminExtractionResultsErrors, type GetAdminExtractionResultsResponse, type GetAdminExtractionResultsResponses, type GetAdminExtractionResultsWorkspaceByWorkspaceIdData, type GetAdminExtractionResultsWorkspaceByWorkspaceIdError, type GetAdminExtractionResultsWorkspaceByWorkspaceIdErrors, type GetAdminExtractionResultsWorkspaceByWorkspaceIdResponse, type GetAdminExtractionResultsWorkspaceByWorkspaceIdResponses, type GetAdminExtractionSchemaDiscoveriesByIdData, type GetAdminExtractionSchemaDiscoveriesByIdError, type GetAdminExtractionSchemaDiscoveriesByIdErrors, type GetAdminExtractionSchemaDiscoveriesByIdResponse, type GetAdminExtractionSchemaDiscoveriesByIdResponses, type GetAdminFieldTemplatesByIdData, type GetAdminFieldTemplatesByIdError, type GetAdminFieldTemplatesByIdErrors, type GetAdminFieldTemplatesByIdResponse, type GetAdminFieldTemplatesByIdResponses, type GetAdminFieldTemplatesData, type GetAdminFieldTemplatesError, type GetAdminFieldTemplatesErrors, type GetAdminFieldTemplatesResponse, type GetAdminFieldTemplatesResponses, type GetAdminInvitationsConsumeByTokenData, type GetAdminInvitationsConsumeByTokenError, type GetAdminInvitationsConsumeByTokenErrors, type GetAdminInvitationsConsumeByTokenResponse, type GetAdminInvitationsConsumeByTokenResponses, type GetAdminInvitationsData, type GetAdminInvitationsError, type GetAdminInvitationsErrors, type GetAdminInvitationsMeData, type GetAdminInvitationsMeError, type GetAdminInvitationsMeErrors, type GetAdminInvitationsMeResponse, type GetAdminInvitationsMeResponses, type GetAdminInvitationsResponse, type GetAdminInvitationsResponses, type GetAdminIsvRevenueByIdData, type GetAdminIsvRevenueByIdError, type GetAdminIsvRevenueByIdErrors, type GetAdminIsvRevenueByIdResponse, type GetAdminIsvRevenueByIdResponses, type GetAdminIsvRevenueData, type GetAdminIsvRevenueError, type GetAdminIsvRevenueErrors, type GetAdminIsvRevenueResponse, type GetAdminIsvRevenueResponses, type GetAdminIsvSettlementsByIdData, type GetAdminIsvSettlementsByIdError, type GetAdminIsvSettlementsByIdErrors, type GetAdminIsvSettlementsByIdResponse, type GetAdminIsvSettlementsByIdResponses, type GetAdminIsvSettlementsData, type GetAdminIsvSettlementsError, type GetAdminIsvSettlementsErrors, type GetAdminIsvSettlementsResponse, type GetAdminIsvSettlementsResponses, type GetAdminLedgerByAccountByAccountIdData, type GetAdminLedgerByAccountByAccountIdError, type GetAdminLedgerByAccountByAccountIdErrors, type GetAdminLedgerByAccountByAccountIdResponse, type GetAdminLedgerByAccountByAccountIdResponses, type GetAdminLedgerByIdData, type GetAdminLedgerByIdError, type GetAdminLedgerByIdErrors, type GetAdminLedgerByIdResponse, type GetAdminLedgerByIdResponses, type GetAdminLedgerData, type GetAdminLedgerError, type GetAdminLedgerErrors, type GetAdminLedgerResponse, type GetAdminLedgerResponses, type GetAdminLlmAnalyticsByIdData, type GetAdminLlmAnalyticsByIdError, type GetAdminLlmAnalyticsByIdErrors, type GetAdminLlmAnalyticsByIdResponse, type GetAdminLlmAnalyticsByIdResponses, type GetAdminLlmAnalyticsCostsData, type GetAdminLlmAnalyticsCostsError, type GetAdminLlmAnalyticsCostsErrors, type GetAdminLlmAnalyticsCostsResponse, type GetAdminLlmAnalyticsCostsResponses, type GetAdminLlmAnalyticsData, type GetAdminLlmAnalyticsError, type GetAdminLlmAnalyticsErrors, type GetAdminLlmAnalyticsPlatformData, type GetAdminLlmAnalyticsPlatformError, type GetAdminLlmAnalyticsPlatformErrors, type GetAdminLlmAnalyticsPlatformResponse, type GetAdminLlmAnalyticsPlatformResponses, type GetAdminLlmAnalyticsResponse, type GetAdminLlmAnalyticsResponses, type GetAdminLlmAnalyticsSummaryData, type GetAdminLlmAnalyticsSummaryError, type GetAdminLlmAnalyticsSummaryErrors, type GetAdminLlmAnalyticsSummaryResponse, type GetAdminLlmAnalyticsSummaryResponses, type GetAdminLlmAnalyticsUsageData, type GetAdminLlmAnalyticsUsageError, type GetAdminLlmAnalyticsUsageErrors, type GetAdminLlmAnalyticsUsageResponse, type GetAdminLlmAnalyticsUsageResponses, type GetAdminLlmAnalyticsWorkspaceData, type GetAdminLlmAnalyticsWorkspaceError, type GetAdminLlmAnalyticsWorkspaceErrors, type GetAdminLlmAnalyticsWorkspaceResponse, type GetAdminLlmAnalyticsWorkspaceResponses, type GetAdminMessagesByIdData, type GetAdminMessagesByIdError, type GetAdminMessagesByIdErrors, type GetAdminMessagesByIdResponse, type GetAdminMessagesByIdResponses, type GetAdminMessagesData, type GetAdminMessagesError, type GetAdminMessagesErrors, type GetAdminMessagesResponse, type GetAdminMessagesResponses, type GetAdminMessagesSearchData, type GetAdminMessagesSearchError, type GetAdminMessagesSearchErrors, type GetAdminMessagesSearchResponse, type GetAdminMessagesSearchResponses, type GetAdminMessagesSemanticSearchData, type GetAdminMessagesSemanticSearchError, type GetAdminMessagesSemanticSearchErrors, type GetAdminMessagesSemanticSearchResponse, type GetAdminMessagesSemanticSearchResponses, type GetAdminNotificationLogsByIdData, type GetAdminNotificationLogsByIdError, type GetAdminNotificationLogsByIdErrors, type GetAdminNotificationLogsByIdResponse, type GetAdminNotificationLogsByIdResponses, type GetAdminNotificationLogsData, type GetAdminNotificationLogsError, type GetAdminNotificationLogsErrors, type GetAdminNotificationLogsResponse, type GetAdminNotificationLogsResponses, type GetAdminNotificationLogsStatsData, type GetAdminNotificationLogsStatsError, type GetAdminNotificationLogsStatsErrors, type GetAdminNotificationLogsStatsResponse, type GetAdminNotificationLogsStatsResponses, type GetAdminNotificationMethodsByIdData, type GetAdminNotificationMethodsByIdError, type GetAdminNotificationMethodsByIdErrors, type GetAdminNotificationMethodsByIdResponse, type GetAdminNotificationMethodsByIdResponses, type GetAdminNotificationMethodsData, type GetAdminNotificationMethodsError, type GetAdminNotificationMethodsErrors, type GetAdminNotificationMethodsResponse, type GetAdminNotificationMethodsResponses, type GetAdminNotificationPreferencesByIdData, type GetAdminNotificationPreferencesByIdError, type GetAdminNotificationPreferencesByIdErrors, type GetAdminNotificationPreferencesByIdResponse, type GetAdminNotificationPreferencesByIdResponses, type GetAdminNotificationPreferencesData, type GetAdminNotificationPreferencesError, type GetAdminNotificationPreferencesErrors, type GetAdminNotificationPreferencesResponse, type GetAdminNotificationPreferencesResponses, type GetAdminObjectsByIdData, type GetAdminObjectsByIdError, type GetAdminObjectsByIdErrors, type GetAdminObjectsByIdResponse, type GetAdminObjectsByIdResponses, type GetAdminObjectsData, type GetAdminObjectsError, type GetAdminObjectsErrors, type GetAdminObjectsResponse, type GetAdminObjectsResponses, type GetAdminPaymentMethodsByIdData, type GetAdminPaymentMethodsByIdError, type GetAdminPaymentMethodsByIdErrors, type GetAdminPaymentMethodsByIdResponse, type GetAdminPaymentMethodsByIdResponses, type GetAdminPaymentMethodsData, type GetAdminPaymentMethodsError, type GetAdminPaymentMethodsErrors, type GetAdminPaymentMethodsResponse, type GetAdminPaymentMethodsResponses, type GetAdminPermissionsData, type GetAdminPermissionsError, type GetAdminPermissionsErrors, type GetAdminPermissionsPresetsData, type GetAdminPermissionsPresetsError, type GetAdminPermissionsPresetsErrors, type GetAdminPermissionsPresetsResponse, type GetAdminPermissionsPresetsResponses, type GetAdminPermissionsResponse, type GetAdminPermissionsResponses, type GetAdminPlansByIdData, type GetAdminPlansByIdError, type GetAdminPlansByIdErrors, type GetAdminPlansByIdResponse, type GetAdminPlansByIdResponses, type GetAdminPlansData, type GetAdminPlansError, type GetAdminPlansErrors, type GetAdminPlansResponse, type GetAdminPlansResponses, type GetAdminPlansSlugBySlugData, type GetAdminPlansSlugBySlugError, type GetAdminPlansSlugBySlugErrors, type GetAdminPlansSlugBySlugResponse, type GetAdminPlansSlugBySlugResponses, type GetAdminPricingRulesByIdData, type GetAdminPricingRulesByIdError, type GetAdminPricingRulesByIdErrors, type GetAdminPricingRulesByIdResponse, type GetAdminPricingRulesByIdResponses, type GetAdminPricingRulesData, type GetAdminPricingRulesError, type GetAdminPricingRulesErrors, type GetAdminPricingRulesResolveData, type GetAdminPricingRulesResolveError, type GetAdminPricingRulesResolveErrors, type GetAdminPricingRulesResolveResponse, type GetAdminPricingRulesResolveResponses, type GetAdminPricingRulesResponse, type GetAdminPricingRulesResponses, type GetAdminPricingStrategiesByIdData, type GetAdminPricingStrategiesByIdError, type GetAdminPricingStrategiesByIdErrors, type GetAdminPricingStrategiesByIdResponse, type GetAdminPricingStrategiesByIdResponses, type GetAdminPricingStrategiesData, type GetAdminPricingStrategiesError, type GetAdminPricingStrategiesErrors, type GetAdminPricingStrategiesResponse, type GetAdminPricingStrategiesResponses, type GetAdminSearchAnalyticsData, type GetAdminSearchAnalyticsError, type GetAdminSearchAnalyticsErrors, type GetAdminSearchAnalyticsResponse, type GetAdminSearchAnalyticsResponses, type GetAdminSearchAnalyticsSummaryData, type GetAdminSearchAnalyticsSummaryError, type GetAdminSearchAnalyticsSummaryErrors, type GetAdminSearchAnalyticsSummaryResponse, type GetAdminSearchAnalyticsSummaryResponses, type GetAdminSearchData, type GetAdminSearchError, type GetAdminSearchErrors, type GetAdminSearchHealthData, type GetAdminSearchHealthError, type GetAdminSearchHealthErrors, type GetAdminSearchHealthResponse, type GetAdminSearchHealthResponses, type GetAdminSearchIndexesData, type GetAdminSearchIndexesError, type GetAdminSearchIndexesErrors, type GetAdminSearchIndexesResponse, type GetAdminSearchIndexesResponses, type GetAdminSearchResponse, type GetAdminSearchResponses, type GetAdminSearchSavedData, type GetAdminSearchSavedError, type GetAdminSearchSavedErrors, type GetAdminSearchSavedResponse, type GetAdminSearchSavedResponses, type GetAdminSearchSemanticData, type GetAdminSearchSemanticError, type GetAdminSearchSemanticErrors, type GetAdminSearchSemanticResponse, type GetAdminSearchSemanticResponses, type GetAdminSearchStatsData, type GetAdminSearchStatsError, type GetAdminSearchStatsErrors, type GetAdminSearchStatsResponse, type GetAdminSearchStatsResponses, type GetAdminSearchStatusData, type GetAdminSearchStatusError, type GetAdminSearchStatusErrors, type GetAdminSearchStatusResponse, type GetAdminSearchStatusResponses, type GetAdminSearchSuggestData, type GetAdminSearchSuggestError, type GetAdminSearchSuggestErrors, type GetAdminSearchSuggestResponse, type GetAdminSearchSuggestResponses, type GetAdminStorageStatsData, type GetAdminStorageStatsError, type GetAdminStorageStatsErrors, type GetAdminStorageStatsResponse, type GetAdminStorageStatsResponses, type GetAdminStorageStatsTenantByTenantIdData, type GetAdminStorageStatsTenantByTenantIdError, type GetAdminStorageStatsTenantByTenantIdErrors, type GetAdminStorageStatsTenantByTenantIdResponse, type GetAdminStorageStatsTenantByTenantIdResponses, type GetAdminSubscriptionsByIdData, type GetAdminSubscriptionsByIdError, type GetAdminSubscriptionsByIdErrors, type GetAdminSubscriptionsByIdResponse, type GetAdminSubscriptionsByIdResponses, type GetAdminSubscriptionsByTenantByTenantIdData, type GetAdminSubscriptionsByTenantByTenantIdError, type GetAdminSubscriptionsByTenantByTenantIdErrors, type GetAdminSubscriptionsByTenantByTenantIdResponse, type GetAdminSubscriptionsByTenantByTenantIdResponses, type GetAdminSubscriptionsData, type GetAdminSubscriptionsError, type GetAdminSubscriptionsErrors, type GetAdminSubscriptionsResponse, type GetAdminSubscriptionsResponses, type GetAdminSysAiConfigByIdData, type GetAdminSysAiConfigByIdError, type GetAdminSysAiConfigByIdErrors, type GetAdminSysAiConfigByIdResponse, type GetAdminSysAiConfigByIdResponses, type GetAdminSysAiConfigData, type GetAdminSysAiConfigError, type GetAdminSysAiConfigErrors, type GetAdminSysAiConfigResponse, type GetAdminSysAiConfigResponses, type GetAdminSysSemanticCacheByIdData, type GetAdminSysSemanticCacheByIdError, type GetAdminSysSemanticCacheByIdErrors, type GetAdminSysSemanticCacheByIdResponse, type GetAdminSysSemanticCacheByIdResponses, type GetAdminSystemMessagesByIdData, type GetAdminSystemMessagesByIdError, type GetAdminSystemMessagesByIdErrors, type GetAdminSystemMessagesByIdResponse, type GetAdminSystemMessagesByIdResponses, type GetAdminSystemMessagesData, type GetAdminSystemMessagesError, type GetAdminSystemMessagesErrors, type GetAdminSystemMessagesResponse, type GetAdminSystemMessagesResponses, type GetAdminTenantMembershipsData, type GetAdminTenantMembershipsError, type GetAdminTenantMembershipsErrors, type GetAdminTenantMembershipsResponse, type GetAdminTenantMembershipsResponses, type GetAdminTenantPricingOverridesByIdData, type GetAdminTenantPricingOverridesByIdError, type GetAdminTenantPricingOverridesByIdErrors, type GetAdminTenantPricingOverridesByIdResponse, type GetAdminTenantPricingOverridesByIdResponses, type GetAdminTenantPricingOverridesData, type GetAdminTenantPricingOverridesError, type GetAdminTenantPricingOverridesErrors, type GetAdminTenantPricingOverridesResponse, type GetAdminTenantPricingOverridesResponses, type GetAdminTenantsByIdData, type GetAdminTenantsByIdError, type GetAdminTenantsByIdErrors, type GetAdminTenantsByIdResponse, type GetAdminTenantsByIdResponses, type GetAdminTenantsByTenantIdDocumentStatsData, type GetAdminTenantsByTenantIdDocumentStatsError, type GetAdminTenantsByTenantIdDocumentStatsErrors, type GetAdminTenantsByTenantIdDocumentStatsResponse, type GetAdminTenantsByTenantIdDocumentStatsResponses, type GetAdminTenantsByTenantIdStatsData, type GetAdminTenantsByTenantIdStatsError, type GetAdminTenantsByTenantIdStatsErrors, type GetAdminTenantsByTenantIdStatsResponse, type GetAdminTenantsByTenantIdStatsResponses, type GetAdminTenantsByTenantIdWorkspaceStatsData, type GetAdminTenantsByTenantIdWorkspaceStatsError, type GetAdminTenantsByTenantIdWorkspaceStatsErrors, type GetAdminTenantsByTenantIdWorkspaceStatsResponse, type GetAdminTenantsByTenantIdWorkspaceStatsResponses, type GetAdminTenantsData, type GetAdminTenantsError, type GetAdminTenantsErrors, type GetAdminTenantsResponse, type GetAdminTenantsResponses, type GetAdminThreadsByIdData, type GetAdminThreadsByIdError, type GetAdminThreadsByIdErrors, type GetAdminThreadsByIdMessagesData, type GetAdminThreadsByIdMessagesError, type GetAdminThreadsByIdMessagesErrors, type GetAdminThreadsByIdMessagesResponse, type GetAdminThreadsByIdMessagesResponses, type GetAdminThreadsByIdResponse, type GetAdminThreadsByIdResponses, type GetAdminThreadsData, type GetAdminThreadsError, type GetAdminThreadsErrors, type GetAdminThreadsResponse, type GetAdminThreadsResponses, type GetAdminThreadsSearchData, type GetAdminThreadsSearchError, type GetAdminThreadsSearchErrors, type GetAdminThreadsSearchResponse, type GetAdminThreadsSearchResponses, type GetAdminThreadsStatsData, type GetAdminThreadsStatsError, type GetAdminThreadsStatsErrors, type GetAdminThreadsStatsResponse, type GetAdminThreadsStatsResponses, type GetAdminThreadsWorkspaceStatsData, type GetAdminThreadsWorkspaceStatsError, type GetAdminThreadsWorkspaceStatsErrors, type GetAdminThreadsWorkspaceStatsResponse, type GetAdminThreadsWorkspaceStatsResponses, type GetAdminTrainingExamplesByIdData, type GetAdminTrainingExamplesByIdError, type GetAdminTrainingExamplesByIdErrors, type GetAdminTrainingExamplesByIdResponse, type GetAdminTrainingExamplesByIdResponses, type GetAdminTrainingExamplesData, type GetAdminTrainingExamplesError, type GetAdminTrainingExamplesErrors, type GetAdminTrainingExamplesResponse, type GetAdminTrainingExamplesResponses, type GetAdminTrainingSessionsAgentsByAgentIdSessionsData, type GetAdminTrainingSessionsAgentsByAgentIdSessionsError, type GetAdminTrainingSessionsAgentsByAgentIdSessionsErrors, type GetAdminTrainingSessionsAgentsByAgentIdSessionsResponse, type GetAdminTrainingSessionsAgentsByAgentIdSessionsResponses, type GetAdminTrainingSessionsByIdData, type GetAdminTrainingSessionsByIdError, type GetAdminTrainingSessionsByIdErrors, type GetAdminTrainingSessionsByIdResponse, type GetAdminTrainingSessionsByIdResponses, type GetAdminTransactionsByIdData, type GetAdminTransactionsByIdError, type GetAdminTransactionsByIdErrors, type GetAdminTransactionsByIdResponse, type GetAdminTransactionsByIdResponses, type GetAdminTransactionsData, type GetAdminTransactionsError, type GetAdminTransactionsErrors, type GetAdminTransactionsResponse, type GetAdminTransactionsResponses, type GetAdminTransfersByIdData, type GetAdminTransfersByIdError, type GetAdminTransfersByIdErrors, type GetAdminTransfersByIdResponse, type GetAdminTransfersByIdResponses, type GetAdminTransfersData, type GetAdminTransfersError, type GetAdminTransfersErrors, type GetAdminTransfersResponse, type GetAdminTransfersResponses, type GetAdminUserProfilesByIdData, type GetAdminUserProfilesByIdError, type GetAdminUserProfilesByIdErrors, type GetAdminUserProfilesByIdResponse, type GetAdminUserProfilesByIdResponses, type GetAdminUserProfilesData, type GetAdminUserProfilesError, type GetAdminUserProfilesErrors, type GetAdminUserProfilesMeData, type GetAdminUserProfilesMeError, type GetAdminUserProfilesMeErrors, type GetAdminUserProfilesMeResponse, type GetAdminUserProfilesMeResponses, type GetAdminUserProfilesResponse, type GetAdminUserProfilesResponses, type GetAdminUsersByEmailData, type GetAdminUsersByEmailError, type GetAdminUsersByEmailErrors, type GetAdminUsersByEmailResponse, type GetAdminUsersByEmailResponses, type GetAdminUsersByIdData, type GetAdminUsersByIdError, type GetAdminUsersByIdErrors, type GetAdminUsersByIdResponse, type GetAdminUsersByIdResponses, type GetAdminUsersData, type GetAdminUsersError, type GetAdminUsersErrors, type GetAdminUsersMeActivityData, type GetAdminUsersMeActivityError, type GetAdminUsersMeActivityErrors, type GetAdminUsersMeActivityResponse, type GetAdminUsersMeActivityResponses, type GetAdminUsersMeDashboardData, type GetAdminUsersMeDashboardError, type GetAdminUsersMeDashboardErrors, type GetAdminUsersMeDashboardResponse, type GetAdminUsersMeDashboardResponses, type GetAdminUsersMeData, type GetAdminUsersMeError, type GetAdminUsersMeErrors, type GetAdminUsersMeResponse, type GetAdminUsersMeResponses, type GetAdminUsersMeStatsData, type GetAdminUsersMeStatsError, type GetAdminUsersMeStatsErrors, type GetAdminUsersMeStatsResponse, type GetAdminUsersMeStatsResponses, type GetAdminUsersMeTenantsData, type GetAdminUsersMeTenantsError, type GetAdminUsersMeTenantsErrors, type GetAdminUsersMeTenantsResponse, type GetAdminUsersMeTenantsResponses, type GetAdminUsersResponse, type GetAdminUsersResponses, type GetAdminWalletData, type GetAdminWalletError, type GetAdminWalletErrors, type GetAdminWalletResponse, type GetAdminWalletResponses, type GetAdminWalletStorageBreakdownData, type GetAdminWalletStorageBreakdownError, type GetAdminWalletStorageBreakdownErrors, type GetAdminWalletStorageBreakdownResponse, type GetAdminWalletStorageBreakdownResponses, type GetAdminWalletUsageBreakdownData, type GetAdminWalletUsageBreakdownError, type GetAdminWalletUsageBreakdownErrors, type GetAdminWalletUsageBreakdownResponse, type GetAdminWalletUsageBreakdownResponses, type GetAdminWalletUsageData, type GetAdminWalletUsageError, type GetAdminWalletUsageErrors, type GetAdminWalletUsageResponse, type GetAdminWalletUsageResponses, type GetAdminWebhookConfigsByIdData, type GetAdminWebhookConfigsByIdError, type GetAdminWebhookConfigsByIdErrors, type GetAdminWebhookConfigsByIdEventsData, type GetAdminWebhookConfigsByIdEventsError, type GetAdminWebhookConfigsByIdEventsErrors, type GetAdminWebhookConfigsByIdEventsResponse, type GetAdminWebhookConfigsByIdEventsResponses, type GetAdminWebhookConfigsByIdResponse, type GetAdminWebhookConfigsByIdResponses, type GetAdminWebhookConfigsData, type GetAdminWebhookConfigsError, type GetAdminWebhookConfigsErrors, type GetAdminWebhookConfigsResponse, type GetAdminWebhookConfigsResponses, type GetAdminWebhookConfigsStatsData, type GetAdminWebhookConfigsStatsError, type GetAdminWebhookConfigsStatsErrors, type GetAdminWebhookConfigsStatsResponse, type GetAdminWebhookConfigsStatsResponses, type GetAdminWebhookDeliveriesByIdData, type GetAdminWebhookDeliveriesByIdError, type GetAdminWebhookDeliveriesByIdErrors, type GetAdminWebhookDeliveriesByIdResponse, type GetAdminWebhookDeliveriesByIdResponses, type GetAdminWebhookDeliveriesData, type GetAdminWebhookDeliveriesError, type GetAdminWebhookDeliveriesErrors, type GetAdminWebhookDeliveriesResponse, type GetAdminWebhookDeliveriesResponses, type GetAdminWebhookDeliveriesStatsData, type GetAdminWebhookDeliveriesStatsError, type GetAdminWebhookDeliveriesStatsErrors, type GetAdminWebhookDeliveriesStatsResponse, type GetAdminWebhookDeliveriesStatsResponses, type GetAdminWorkspaceMembershipsData, type GetAdminWorkspaceMembershipsError, type GetAdminWorkspaceMembershipsErrors, type GetAdminWorkspaceMembershipsResponse, type GetAdminWorkspaceMembershipsResponses, type GetAdminWorkspacesAnalyticsBatchData, type GetAdminWorkspacesAnalyticsBatchError, type GetAdminWorkspacesAnalyticsBatchErrors, type GetAdminWorkspacesAnalyticsBatchResponse, type GetAdminWorkspacesAnalyticsBatchResponses, type GetAdminWorkspacesByIdData, type GetAdminWorkspacesByIdError, type GetAdminWorkspacesByIdErrors, type GetAdminWorkspacesByIdMembersData, type GetAdminWorkspacesByIdMembersError, type GetAdminWorkspacesByIdMembersErrors, type GetAdminWorkspacesByIdMembersResponse, type GetAdminWorkspacesByIdMembersResponses, type GetAdminWorkspacesByIdResponse, type GetAdminWorkspacesByIdResponses, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingError, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponse, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdData, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdError, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdErrors, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdResponse, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdResponses, type GetAdminWorkspacesByWorkspaceIdExtractionExportsData, type GetAdminWorkspacesByWorkspaceIdExtractionExportsError, type GetAdminWorkspacesByWorkspaceIdExtractionExportsErrors, type GetAdminWorkspacesByWorkspaceIdExtractionExportsResponse, type GetAdminWorkspacesByWorkspaceIdExtractionExportsResponses, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsData, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsError, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsErrors, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsResponse, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsResponses, type GetAdminWorkspacesData, type GetAdminWorkspacesError, type GetAdminWorkspacesErrors, type GetAdminWorkspacesMineData, type GetAdminWorkspacesMineError, type GetAdminWorkspacesMineErrors, type GetAdminWorkspacesMineResponse, type GetAdminWorkspacesMineResponses, type GetAdminWorkspacesResponse, type GetAdminWorkspacesResponses, type GetAdminWorkspacesSharedData, type GetAdminWorkspacesSharedError, type GetAdminWorkspacesSharedErrors, type GetAdminWorkspacesSharedResponse, type GetAdminWorkspacesSharedResponses, GptAdmin, GptCoreError, type GraphEdge, type GraphEdgeFilter, type GraphEdgeFilterDocumentId, type GraphEdgeFilterId, type GraphEdgeFilterProperties, type GraphEdgeFilterRelationship, type GraphEdgeFilterSourceId, type GraphEdgeFilterTargetId, type GraphNode, type GraphNodeFilter, type GraphNodeFilterDocumentId, type GraphNodeFilterId, type GraphNodeFilterLabel, type GraphNodeFilterProperties, type GraphNodeFilterTenantId, type Invitation, type InvitationFilter, type InvitationFilterCustomMessage, type InvitationFilterEmail, type InvitationFilterExpiresAt, type InvitationFilterId, type InvitationFilterInviterId, type InvitationFilterRole, type InvitationFilterScopeId, type InvitationFilterScopeType, type InvitationFilterStatus, type InvitationFilterTenantId, type Invoice, type InvoiceFilter, type InvoiceFilterAmountDue, type InvoiceFilterAmountPaid, type InvoiceFilterCreatedAt, type InvoiceFilterCurrency, type InvoiceFilterDueDate, type InvoiceFilterId, type InvoiceFilterInvoiceNumber, type InvoiceFilterPdfUrl, type InvoiceFilterStatus, type IsvRevenue, type IsvRevenueFilter, type IsvRevenueFilterId, type IsvSettlement, type IsvSettlementFilter, type IsvSettlementFilterId, type Ledger, type LedgerFilter, type LedgerFilterId, type LedgerFilterMetadata, type Link, type Links, type LlmAnalytics, type LlmAnalyticsFilter, type LlmAnalyticsFilterId, type Message, type MessageFilter, type MessageFilterContent, type MessageFilterId, type MessageFilterRole, NetworkError, NotFoundError, type NotificationLog, type NotificationLogFilter, type NotificationLogFilterId, type NotificationMethod, type NotificationMethodFilter, type NotificationMethodFilterConfig, type NotificationMethodFilterId, type NotificationMethodFilterIsPrimary, type NotificationMethodFilterName, type NotificationMethodFilterType, type NotificationMethodFilterUserId, type NotificationMethodFilterVerificationSentAt, type NotificationMethodFilterVerifiedAt, type NotificationPreference, type NotificationPreferenceFilter, type NotificationPreferenceFilterId, type ObjectFilter, type ObjectFilterContentType, type ObjectFilterId, type ObjectFilterKey, type ObjectFilterSizeBytes, type ObjectType, type OperationSuccess, type OperationSuccessFilter, type OperationSuccessFilterId, type OperationSuccessFilterMessage, type OperationSuccessFilterSuccess, type PatchAdminAccountsByIdCreditData, type PatchAdminAccountsByIdCreditError, type PatchAdminAccountsByIdCreditErrors, type PatchAdminAccountsByIdCreditResponse, type PatchAdminAccountsByIdCreditResponses, type PatchAdminAccountsByIdDebitData, type PatchAdminAccountsByIdDebitError, type PatchAdminAccountsByIdDebitErrors, type PatchAdminAccountsByIdDebitResponse, type PatchAdminAccountsByIdDebitResponses, type PatchAdminAgentsByIdSchemaVersionsByVersionIdData, type PatchAdminAgentsByIdSchemaVersionsByVersionIdError, type PatchAdminAgentsByIdSchemaVersionsByVersionIdErrors, type PatchAdminAgentsByIdSchemaVersionsByVersionIdResponse, type PatchAdminAgentsByIdSchemaVersionsByVersionIdResponses, type PatchAdminAiConversationsByIdData, type PatchAdminAiConversationsByIdError, type PatchAdminAiConversationsByIdErrors, type PatchAdminAiConversationsByIdResponse, type PatchAdminAiConversationsByIdResponses, type PatchAdminApiKeysByIdAllocateData, type PatchAdminApiKeysByIdAllocateError, type PatchAdminApiKeysByIdAllocateErrors, type PatchAdminApiKeysByIdAllocateResponse, type PatchAdminApiKeysByIdAllocateResponses, type PatchAdminApiKeysByIdData, type PatchAdminApiKeysByIdError, type PatchAdminApiKeysByIdErrors, type PatchAdminApiKeysByIdResetPeriodData, type PatchAdminApiKeysByIdResetPeriodError, type PatchAdminApiKeysByIdResetPeriodErrors, type PatchAdminApiKeysByIdResetPeriodResponse, type PatchAdminApiKeysByIdResetPeriodResponses, type PatchAdminApiKeysByIdResponse, type PatchAdminApiKeysByIdResponses, type PatchAdminApiKeysByIdRevokeData, type PatchAdminApiKeysByIdRevokeError, type PatchAdminApiKeysByIdRevokeErrors, type PatchAdminApiKeysByIdRevokeResponse, type PatchAdminApiKeysByIdRevokeResponses, type PatchAdminApiKeysByIdRotateData, type PatchAdminApiKeysByIdRotateError, type PatchAdminApiKeysByIdRotateErrors, type PatchAdminApiKeysByIdRotateResponse, type PatchAdminApiKeysByIdRotateResponses, type PatchAdminApiKeysByIdSetBudgetData, type PatchAdminApiKeysByIdSetBudgetError, type PatchAdminApiKeysByIdSetBudgetErrors, type PatchAdminApiKeysByIdSetBudgetResponse, type PatchAdminApiKeysByIdSetBudgetResponses, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugData, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugError, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugResponse, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses, type PatchAdminApplicationsByIdAllocateCreditsData, type PatchAdminApplicationsByIdAllocateCreditsError, type PatchAdminApplicationsByIdAllocateCreditsErrors, type PatchAdminApplicationsByIdAllocateCreditsResponse, type PatchAdminApplicationsByIdAllocateCreditsResponses, type PatchAdminApplicationsByIdData, type PatchAdminApplicationsByIdError, type PatchAdminApplicationsByIdErrors, type PatchAdminApplicationsByIdGrantCreditsData, type PatchAdminApplicationsByIdGrantCreditsError, type PatchAdminApplicationsByIdGrantCreditsErrors, type PatchAdminApplicationsByIdGrantCreditsResponse, type PatchAdminApplicationsByIdGrantCreditsResponses, type PatchAdminApplicationsByIdResponse, type PatchAdminApplicationsByIdResponses, type PatchAdminBucketsByIdData, type PatchAdminBucketsByIdError, type PatchAdminBucketsByIdErrors, type PatchAdminBucketsByIdResponse, type PatchAdminBucketsByIdResponses, type PatchAdminConfigsByKeyData, type PatchAdminConfigsByKeyError, type PatchAdminConfigsByKeyErrors, type PatchAdminConfigsByKeyResponse, type PatchAdminConfigsByKeyResponses, type PatchAdminCreditPackagesByIdData, type PatchAdminCreditPackagesByIdError, type PatchAdminCreditPackagesByIdErrors, type PatchAdminCreditPackagesByIdResponse, type PatchAdminCreditPackagesByIdResponses, type PatchAdminCustomersByIdData, type PatchAdminCustomersByIdError, type PatchAdminCustomersByIdErrors, type PatchAdminCustomersByIdResponse, type PatchAdminCustomersByIdResponses, type PatchAdminExtractionDocumentsByIdCancelData, type PatchAdminExtractionDocumentsByIdCancelError, type PatchAdminExtractionDocumentsByIdCancelErrors, type PatchAdminExtractionDocumentsByIdCancelResponse, type PatchAdminExtractionDocumentsByIdCancelResponses, type PatchAdminExtractionDocumentsByIdDismissData, type PatchAdminExtractionDocumentsByIdDismissError, type PatchAdminExtractionDocumentsByIdDismissErrors, type PatchAdminExtractionDocumentsByIdDismissResponse, type PatchAdminExtractionDocumentsByIdDismissResponses, type PatchAdminExtractionDocumentsByIdDismissTrainingData, type PatchAdminExtractionDocumentsByIdDismissTrainingError, type PatchAdminExtractionDocumentsByIdDismissTrainingErrors, type PatchAdminExtractionDocumentsByIdDismissTrainingResponse, type PatchAdminExtractionDocumentsByIdDismissTrainingResponses, type PatchAdminExtractionDocumentsByIdExcludeData, type PatchAdminExtractionDocumentsByIdExcludeError, type PatchAdminExtractionDocumentsByIdExcludeErrors, type PatchAdminExtractionDocumentsByIdExcludeResponse, type PatchAdminExtractionDocumentsByIdExcludeResponses, type PatchAdminExtractionDocumentsByIdFinishUploadData, type PatchAdminExtractionDocumentsByIdFinishUploadError, type PatchAdminExtractionDocumentsByIdFinishUploadErrors, type PatchAdminExtractionDocumentsByIdFinishUploadResponse, type PatchAdminExtractionDocumentsByIdFinishUploadResponses, type PatchAdminExtractionDocumentsByIdIncludeData, type PatchAdminExtractionDocumentsByIdIncludeError, type PatchAdminExtractionDocumentsByIdIncludeErrors, type PatchAdminExtractionDocumentsByIdIncludeResponse, type PatchAdminExtractionDocumentsByIdIncludeResponses, type PatchAdminExtractionDocumentsByIdMarkTrainedData, type PatchAdminExtractionDocumentsByIdMarkTrainedError, type PatchAdminExtractionDocumentsByIdMarkTrainedErrors, type PatchAdminExtractionDocumentsByIdMarkTrainedResponse, type PatchAdminExtractionDocumentsByIdMarkTrainedResponses, type PatchAdminExtractionDocumentsByIdReprocessData, type PatchAdminExtractionDocumentsByIdReprocessError, type PatchAdminExtractionDocumentsByIdReprocessErrors, type PatchAdminExtractionDocumentsByIdReprocessResponse, type PatchAdminExtractionDocumentsByIdReprocessResponses, type PatchAdminExtractionDocumentsByIdRestoreData, type PatchAdminExtractionDocumentsByIdRestoreError, type PatchAdminExtractionDocumentsByIdRestoreErrors, type PatchAdminExtractionDocumentsByIdRestoreResponse, type PatchAdminExtractionDocumentsByIdRestoreResponses, type PatchAdminExtractionDocumentsByIdStatusData, type PatchAdminExtractionDocumentsByIdStatusError, type PatchAdminExtractionDocumentsByIdStatusErrors, type PatchAdminExtractionDocumentsByIdStatusResponse, type PatchAdminExtractionDocumentsByIdStatusResponses, type PatchAdminExtractionDocumentsByIdVerificationData, type PatchAdminExtractionDocumentsByIdVerificationError, type PatchAdminExtractionDocumentsByIdVerificationErrors, type PatchAdminExtractionDocumentsByIdVerificationResponse, type PatchAdminExtractionDocumentsByIdVerificationResponses, type PatchAdminExtractionResultsByIdData, type PatchAdminExtractionResultsByIdError, type PatchAdminExtractionResultsByIdErrors, type PatchAdminExtractionResultsByIdRegenerateData, type PatchAdminExtractionResultsByIdRegenerateError, type PatchAdminExtractionResultsByIdRegenerateErrors, type PatchAdminExtractionResultsByIdRegenerateResponse, type PatchAdminExtractionResultsByIdRegenerateResponses, type PatchAdminExtractionResultsByIdResponse, type PatchAdminExtractionResultsByIdResponses, type PatchAdminExtractionResultsByIdSaveCorrectionsData, type PatchAdminExtractionResultsByIdSaveCorrectionsError, type PatchAdminExtractionResultsByIdSaveCorrectionsErrors, type PatchAdminExtractionResultsByIdSaveCorrectionsResponse, type PatchAdminExtractionResultsByIdSaveCorrectionsResponses, type PatchAdminInvitationsByIdAcceptByUserData, type PatchAdminInvitationsByIdAcceptByUserError, type PatchAdminInvitationsByIdAcceptByUserErrors, type PatchAdminInvitationsByIdAcceptByUserResponse, type PatchAdminInvitationsByIdAcceptByUserResponses, type PatchAdminInvitationsByIdAcceptData, type PatchAdminInvitationsByIdAcceptError, type PatchAdminInvitationsByIdAcceptErrors, type PatchAdminInvitationsByIdAcceptResponse, type PatchAdminInvitationsByIdAcceptResponses, type PatchAdminInvitationsByIdDeclineData, type PatchAdminInvitationsByIdDeclineError, type PatchAdminInvitationsByIdDeclineErrors, type PatchAdminInvitationsByIdDeclineResponse, type PatchAdminInvitationsByIdDeclineResponses, type PatchAdminInvitationsByIdResendData, type PatchAdminInvitationsByIdResendError, type PatchAdminInvitationsByIdResendErrors, type PatchAdminInvitationsByIdResendResponse, type PatchAdminInvitationsByIdResendResponses, type PatchAdminInvitationsByIdRevokeData, type PatchAdminInvitationsByIdRevokeError, type PatchAdminInvitationsByIdRevokeErrors, type PatchAdminInvitationsByIdRevokeResponse, type PatchAdminInvitationsByIdRevokeResponses, type PatchAdminIsvSettlementsByIdData, type PatchAdminIsvSettlementsByIdError, type PatchAdminIsvSettlementsByIdErrors, type PatchAdminIsvSettlementsByIdResponse, type PatchAdminIsvSettlementsByIdResponses, type PatchAdminMessagesByIdData, type PatchAdminMessagesByIdError, type PatchAdminMessagesByIdErrors, type PatchAdminMessagesByIdResponse, type PatchAdminMessagesByIdResponses, type PatchAdminNotificationMethodsByIdData, type PatchAdminNotificationMethodsByIdError, type PatchAdminNotificationMethodsByIdErrors, type PatchAdminNotificationMethodsByIdResponse, type PatchAdminNotificationMethodsByIdResponses, type PatchAdminNotificationMethodsByIdSendVerificationData, type PatchAdminNotificationMethodsByIdSendVerificationError, type PatchAdminNotificationMethodsByIdSendVerificationErrors, type PatchAdminNotificationMethodsByIdSendVerificationResponse, type PatchAdminNotificationMethodsByIdSendVerificationResponses, type PatchAdminNotificationMethodsByIdSetPrimaryData, type PatchAdminNotificationMethodsByIdSetPrimaryError, type PatchAdminNotificationMethodsByIdSetPrimaryErrors, type PatchAdminNotificationMethodsByIdSetPrimaryResponse, type PatchAdminNotificationMethodsByIdSetPrimaryResponses, type PatchAdminNotificationMethodsByIdVerifyData, type PatchAdminNotificationMethodsByIdVerifyError, type PatchAdminNotificationMethodsByIdVerifyErrors, type PatchAdminNotificationMethodsByIdVerifyResponse, type PatchAdminNotificationMethodsByIdVerifyResponses, type PatchAdminNotificationPreferencesByIdData, type PatchAdminNotificationPreferencesByIdError, type PatchAdminNotificationPreferencesByIdErrors, type PatchAdminNotificationPreferencesByIdResponse, type PatchAdminNotificationPreferencesByIdResponses, type PatchAdminPaymentMethodsByIdData, type PatchAdminPaymentMethodsByIdDefaultData, type PatchAdminPaymentMethodsByIdDefaultError, type PatchAdminPaymentMethodsByIdDefaultErrors, type PatchAdminPaymentMethodsByIdDefaultResponse, type PatchAdminPaymentMethodsByIdDefaultResponses, type PatchAdminPaymentMethodsByIdError, type PatchAdminPaymentMethodsByIdErrors, type PatchAdminPaymentMethodsByIdResponse, type PatchAdminPaymentMethodsByIdResponses, type PatchAdminPlansByIdData, type PatchAdminPlansByIdError, type PatchAdminPlansByIdErrors, type PatchAdminPlansByIdResponse, type PatchAdminPlansByIdResponses, type PatchAdminPricingRulesByIdData, type PatchAdminPricingRulesByIdError, type PatchAdminPricingRulesByIdErrors, type PatchAdminPricingRulesByIdResponse, type PatchAdminPricingRulesByIdResponses, type PatchAdminPricingStrategiesByIdData, type PatchAdminPricingStrategiesByIdError, type PatchAdminPricingStrategiesByIdErrors, type PatchAdminPricingStrategiesByIdResponse, type PatchAdminPricingStrategiesByIdResponses, type PatchAdminSearchSavedByIdData, type PatchAdminSearchSavedByIdError, type PatchAdminSearchSavedByIdErrors, type PatchAdminSearchSavedByIdResponse, type PatchAdminSearchSavedByIdResponses, type PatchAdminSubscriptionsByIdCancelData, type PatchAdminSubscriptionsByIdCancelError, type PatchAdminSubscriptionsByIdCancelErrors, type PatchAdminSubscriptionsByIdCancelResponse, type PatchAdminSubscriptionsByIdCancelResponses, type PatchAdminSubscriptionsByIdData, type PatchAdminSubscriptionsByIdError, type PatchAdminSubscriptionsByIdErrors, type PatchAdminSubscriptionsByIdResponse, type PatchAdminSubscriptionsByIdResponses, type PatchAdminSysAiConfigByIdData, type PatchAdminSysAiConfigByIdError, type PatchAdminSysAiConfigByIdErrors, type PatchAdminSysAiConfigByIdResponse, type PatchAdminSysAiConfigByIdResponses, type PatchAdminSystemMessagesByIdData, type PatchAdminSystemMessagesByIdError, type PatchAdminSystemMessagesByIdErrors, type PatchAdminSystemMessagesByIdPublishData, type PatchAdminSystemMessagesByIdPublishError, type PatchAdminSystemMessagesByIdPublishErrors, type PatchAdminSystemMessagesByIdPublishResponse, type PatchAdminSystemMessagesByIdPublishResponses, type PatchAdminSystemMessagesByIdResponse, type PatchAdminSystemMessagesByIdResponses, type PatchAdminSystemMessagesByIdUnpublishData, type PatchAdminSystemMessagesByIdUnpublishError, type PatchAdminSystemMessagesByIdUnpublishErrors, type PatchAdminSystemMessagesByIdUnpublishResponse, type PatchAdminSystemMessagesByIdUnpublishResponses, type PatchAdminTenantMembershipsByTenantIdByUserIdData, type PatchAdminTenantMembershipsByTenantIdByUserIdError, type PatchAdminTenantMembershipsByTenantIdByUserIdErrors, type PatchAdminTenantMembershipsByTenantIdByUserIdResponse, type PatchAdminTenantMembershipsByTenantIdByUserIdResponses, type PatchAdminTenantPricingOverridesByIdData, type PatchAdminTenantPricingOverridesByIdError, type PatchAdminTenantPricingOverridesByIdErrors, type PatchAdminTenantPricingOverridesByIdResponse, type PatchAdminTenantPricingOverridesByIdResponses, type PatchAdminTenantsByIdData, type PatchAdminTenantsByIdError, type PatchAdminTenantsByIdErrors, type PatchAdminTenantsByIdResponse, type PatchAdminTenantsByIdResponses, type PatchAdminThreadsByIdArchiveData, type PatchAdminThreadsByIdArchiveError, type PatchAdminThreadsByIdArchiveErrors, type PatchAdminThreadsByIdArchiveResponse, type PatchAdminThreadsByIdArchiveResponses, type PatchAdminThreadsByIdData, type PatchAdminThreadsByIdError, type PatchAdminThreadsByIdErrors, type PatchAdminThreadsByIdResponse, type PatchAdminThreadsByIdResponses, type PatchAdminThreadsByIdUnarchiveData, type PatchAdminThreadsByIdUnarchiveError, type PatchAdminThreadsByIdUnarchiveErrors, type PatchAdminThreadsByIdUnarchiveResponse, type PatchAdminThreadsByIdUnarchiveResponses, type PatchAdminTrainingExamplesByIdData, type PatchAdminTrainingExamplesByIdError, type PatchAdminTrainingExamplesByIdErrors, type PatchAdminTrainingExamplesByIdResponse, type PatchAdminTrainingExamplesByIdResponses, type PatchAdminUserProfilesByIdAcceptTosData, type PatchAdminUserProfilesByIdAcceptTosError, type PatchAdminUserProfilesByIdAcceptTosErrors, type PatchAdminUserProfilesByIdAcceptTosResponse, type PatchAdminUserProfilesByIdAcceptTosResponses, type PatchAdminUserProfilesByIdData, type PatchAdminUserProfilesByIdDismissAnnouncementData, type PatchAdminUserProfilesByIdDismissAnnouncementError, type PatchAdminUserProfilesByIdDismissAnnouncementErrors, type PatchAdminUserProfilesByIdDismissAnnouncementResponse, type PatchAdminUserProfilesByIdDismissAnnouncementResponses, type PatchAdminUserProfilesByIdDismissWelcomeData, type PatchAdminUserProfilesByIdDismissWelcomeError, type PatchAdminUserProfilesByIdDismissWelcomeErrors, type PatchAdminUserProfilesByIdDismissWelcomeResponse, type PatchAdminUserProfilesByIdDismissWelcomeResponses, type PatchAdminUserProfilesByIdError, type PatchAdminUserProfilesByIdErrors, type PatchAdminUserProfilesByIdResponse, type PatchAdminUserProfilesByIdResponses, type PatchAdminUsersAuthPasswordChangeData, type PatchAdminUsersAuthPasswordChangeError, type PatchAdminUsersAuthPasswordChangeErrors, type PatchAdminUsersAuthPasswordChangeResponse, type PatchAdminUsersAuthPasswordChangeResponses, type PatchAdminUsersAuthResetPasswordData, type PatchAdminUsersAuthResetPasswordError, type PatchAdminUsersAuthResetPasswordErrors, type PatchAdminUsersAuthResetPasswordResponse, type PatchAdminUsersAuthResetPasswordResponses, type PatchAdminUsersByIdAdminData, type PatchAdminUsersByIdAdminEmailData, type PatchAdminUsersByIdAdminEmailError, type PatchAdminUsersByIdAdminEmailErrors, type PatchAdminUsersByIdAdminEmailResponse, type PatchAdminUsersByIdAdminEmailResponses, type PatchAdminUsersByIdAdminError, type PatchAdminUsersByIdAdminErrors, type PatchAdminUsersByIdAdminResponse, type PatchAdminUsersByIdAdminResponses, type PatchAdminUsersByIdConfirmEmailData, type PatchAdminUsersByIdConfirmEmailError, type PatchAdminUsersByIdConfirmEmailErrors, type PatchAdminUsersByIdConfirmEmailResponse, type PatchAdminUsersByIdConfirmEmailResponses, type PatchAdminUsersByIdResetPasswordData, type PatchAdminUsersByIdResetPasswordError, type PatchAdminUsersByIdResetPasswordErrors, type PatchAdminUsersByIdResetPasswordResponse, type PatchAdminUsersByIdResetPasswordResponses, type PatchAdminWalletAddonsByAddonSlugCancelData, type PatchAdminWalletAddonsByAddonSlugCancelError, type PatchAdminWalletAddonsByAddonSlugCancelErrors, type PatchAdminWalletAddonsByAddonSlugCancelResponse, type PatchAdminWalletAddonsByAddonSlugCancelResponses, type PatchAdminWalletAddonsData, type PatchAdminWalletAddonsError, type PatchAdminWalletAddonsErrors, type PatchAdminWalletAddonsResponse, type PatchAdminWalletAddonsResponses, type PatchAdminWalletCreditsData, type PatchAdminWalletCreditsError, type PatchAdminWalletCreditsErrors, type PatchAdminWalletCreditsResponse, type PatchAdminWalletCreditsResponses, type PatchAdminWalletPlanData, type PatchAdminWalletPlanError, type PatchAdminWalletPlanErrors, type PatchAdminWalletPlanResponse, type PatchAdminWalletPlanResponses, type PatchAdminWalletStorageData, type PatchAdminWalletStorageError, type PatchAdminWalletStorageErrors, type PatchAdminWalletStorageResponse, type PatchAdminWalletStorageResponses, type PatchAdminWebhookConfigsByIdData, type PatchAdminWebhookConfigsByIdError, type PatchAdminWebhookConfigsByIdErrors, type PatchAdminWebhookConfigsByIdResponse, type PatchAdminWebhookConfigsByIdResponses, type PatchAdminWebhookConfigsByIdRotateSecretData, type PatchAdminWebhookConfigsByIdRotateSecretError, type PatchAdminWebhookConfigsByIdRotateSecretErrors, type PatchAdminWebhookConfigsByIdRotateSecretResponse, type PatchAdminWebhookConfigsByIdRotateSecretResponses, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdData, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdError, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponse, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type PatchAdminWorkspacesByIdAllocateData, type PatchAdminWorkspacesByIdAllocateError, type PatchAdminWorkspacesByIdAllocateErrors, type PatchAdminWorkspacesByIdAllocateResponse, type PatchAdminWorkspacesByIdAllocateResponses, type PatchAdminWorkspacesByIdData, type PatchAdminWorkspacesByIdError, type PatchAdminWorkspacesByIdErrors, type PatchAdminWorkspacesByIdResponse, type PatchAdminWorkspacesByIdResponses, type PatchAdminWorkspacesByIdStorageSettingsData, type PatchAdminWorkspacesByIdStorageSettingsError, type PatchAdminWorkspacesByIdStorageSettingsErrors, type PatchAdminWorkspacesByIdStorageSettingsResponse, type PatchAdminWorkspacesByIdStorageSettingsResponses, type Payment, type PaymentFilter, type PaymentFilterAmount, type PaymentFilterCreatedAt, type PaymentFilterCurrency, type PaymentFilterErrorMessage, type PaymentFilterId, type PaymentFilterProviderReference, type PaymentFilterStatus, type PaymentMethod, type PaymentMethodFilter, type PaymentMethodFilterBrand, type PaymentMethodFilterCreatedAt, type PaymentMethodFilterExpMonth, type PaymentMethodFilterExpYear, type PaymentMethodFilterHolderName, type PaymentMethodFilterId, type PaymentMethodFilterIsDefault, type PaymentMethodFilterLast4, type PaymentMethodFilterNickname, type PaymentMethodFilterProvider, type PaymentMethodFilterProviderToken, type PaymentMethodFilterType, type PaymentMethodFilterUpdatedAt, type PaymentMethodFilterZipCode, type Permission, type PermissionFilter, type PermissionFilterAction, type PermissionFilterApp, type PermissionFilterCategory, type PermissionFilterContext, type PermissionFilterDescription, type PermissionFilterId, type PermissionFilterLabel, type PermissionFilterResource, type PermissionFilterRole, type PermissionFilterScope, type PermissionMeta, type PermissionMetaFilter, type PermissionMetaFilterCacheTtl, type PermissionMetaFilterId, type PermissionMetaFilterVersion, type PermissionPreset, type PermissionPresetFilter, type PermissionPresetFilterApp, type PermissionPresetFilterContext, type PermissionPresetFilterDescription, type PermissionPresetFilterId, type PermissionPresetFilterName, type PermissionPresetFilterRole, type Plan, type PlanFilter, type PlanFilterApplicationId, type PlanFilterBillingInterval, type PlanFilterCreatedAt, type PlanFilterId, type PlanFilterInitialCredits, type PlanFilterMaxRenewals, type PlanFilterMonthlyCredits, type PlanFilterMonthlyPrice, type PlanFilterName, type PlanFilterSlug, type PlanFilterStorageBlocks, type PlanFilterStorageDays, type PlanFilterType, type PlanFilterUpdatedAt, type PostAdminAgentTestResultsData, type PostAdminAgentTestResultsError, type PostAdminAgentTestResultsErrors, type PostAdminAgentTestResultsResponse, type PostAdminAgentTestResultsResponses, type PostAdminAgentVersionComparisonsData, type PostAdminAgentVersionComparisonsError, type PostAdminAgentVersionComparisonsErrors, type PostAdminAgentVersionComparisonsResponse, type PostAdminAgentVersionComparisonsResponses, type PostAdminAgentVersionsByIdAddSystemFieldData, type PostAdminAgentVersionsByIdAddSystemFieldError, type PostAdminAgentVersionsByIdAddSystemFieldErrors, type PostAdminAgentVersionsByIdAddSystemFieldResponses, type PostAdminAgentVersionsByIdRemoveSystemFieldData, type PostAdminAgentVersionsByIdRemoveSystemFieldError, type PostAdminAgentVersionsByIdRemoveSystemFieldErrors, type PostAdminAgentVersionsByIdRemoveSystemFieldResponses, type PostAdminAgentVersionsByIdSetSystemFieldsData, type PostAdminAgentVersionsByIdSetSystemFieldsError, type PostAdminAgentVersionsByIdSetSystemFieldsErrors, type PostAdminAgentVersionsByIdSetSystemFieldsResponses, type PostAdminAgentVersionsData, type PostAdminAgentVersionsError, type PostAdminAgentVersionsErrors, type PostAdminAgentVersionsResponse, type PostAdminAgentVersionsResponses, type PostAdminAgentsByIdCloneData, type PostAdminAgentsByIdCloneError, type PostAdminAgentsByIdCloneErrors, type PostAdminAgentsByIdCloneResponse, type PostAdminAgentsByIdCloneResponses, type PostAdminAgentsByIdDiscoverSchemaData, type PostAdminAgentsByIdDiscoverSchemaError, type PostAdminAgentsByIdDiscoverSchemaErrors, type PostAdminAgentsByIdDiscoverSchemaResponse, type PostAdminAgentsByIdDiscoverSchemaResponses, type PostAdminAgentsByIdExportData, type PostAdminAgentsByIdExportError, type PostAdminAgentsByIdExportErrors, type PostAdminAgentsByIdExportResponse, type PostAdminAgentsByIdExportResponses, type PostAdminAgentsByIdPublishVersionData, type PostAdminAgentsByIdPublishVersionError, type PostAdminAgentsByIdPublishVersionErrors, type PostAdminAgentsByIdPublishVersionResponse, type PostAdminAgentsByIdPublishVersionResponses, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateData, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateError, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateErrors, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponse, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponses, type PostAdminAgentsByIdSchemaVersionsData, type PostAdminAgentsByIdSchemaVersionsError, type PostAdminAgentsByIdSchemaVersionsErrors, type PostAdminAgentsByIdSchemaVersionsResponse, type PostAdminAgentsByIdSchemaVersionsResponses, type PostAdminAgentsByIdTeachData, type PostAdminAgentsByIdTeachError, type PostAdminAgentsByIdTeachErrors, type PostAdminAgentsByIdTeachResponse, type PostAdminAgentsByIdTeachResponses, type PostAdminAgentsByIdTestData, type PostAdminAgentsByIdTestError, type PostAdminAgentsByIdTestErrors, type PostAdminAgentsByIdTestResponse, type PostAdminAgentsByIdTestResponses, type PostAdminAgentsByIdValidateData, type PostAdminAgentsByIdValidateError, type PostAdminAgentsByIdValidateErrors, type PostAdminAgentsByIdValidateResponse, type PostAdminAgentsByIdValidateResponses, type PostAdminAgentsCloneForWorkspaceData, type PostAdminAgentsCloneForWorkspaceError, type PostAdminAgentsCloneForWorkspaceErrors, type PostAdminAgentsCloneForWorkspaceResponse, type PostAdminAgentsCloneForWorkspaceResponses, type PostAdminAgentsImportData, type PostAdminAgentsImportError, type PostAdminAgentsImportErrors, type PostAdminAgentsImportResponse, type PostAdminAgentsImportResponses, type PostAdminAgentsPredictData, type PostAdminAgentsPredictError, type PostAdminAgentsPredictErrors, type PostAdminAgentsPredictResponse, type PostAdminAgentsPredictResponses, type PostAdminAiChunksSearchData, type PostAdminAiChunksSearchError, type PostAdminAiChunksSearchErrors, type PostAdminAiChunksSearchResponse, type PostAdminAiChunksSearchResponses, type PostAdminAiConversationsData, type PostAdminAiConversationsError, type PostAdminAiConversationsErrors, type PostAdminAiConversationsResponse, type PostAdminAiConversationsResponses, type PostAdminAiEmbedData, type PostAdminAiEmbedError, type PostAdminAiEmbedErrors, type PostAdminAiEmbedResponse, type PostAdminAiEmbedResponses, type PostAdminAiGraphEdgesData, type PostAdminAiGraphEdgesError, type PostAdminAiGraphEdgesErrors, type PostAdminAiGraphEdgesResponse, type PostAdminAiGraphEdgesResponses, type PostAdminAiGraphNodesData, type PostAdminAiGraphNodesError, type PostAdminAiGraphNodesErrors, type PostAdminAiGraphNodesResponse, type PostAdminAiGraphNodesResponses, type PostAdminAiMessagesData, type PostAdminAiMessagesError, type PostAdminAiMessagesErrors, type PostAdminAiMessagesResponse, type PostAdminAiMessagesResponses, type PostAdminAiSearchAdvancedData, type PostAdminAiSearchAdvancedError, type PostAdminAiSearchAdvancedErrors, type PostAdminAiSearchAdvancedResponse, type PostAdminAiSearchAdvancedResponses, type PostAdminAiSearchData, type PostAdminAiSearchError, type PostAdminAiSearchErrors, type PostAdminAiSearchResponse, type PostAdminAiSearchResponses, type PostAdminApiKeysData, type PostAdminApiKeysError, type PostAdminApiKeysErrors, type PostAdminApiKeysResponse, type PostAdminApiKeysResponses, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewData, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewError, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewErrors, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewResponse, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewResponses, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestData, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestError, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestErrors, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestResponse, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestResponses, type PostAdminApplicationsByApplicationIdEmailTemplatesData, type PostAdminApplicationsByApplicationIdEmailTemplatesError, type PostAdminApplicationsByApplicationIdEmailTemplatesErrors, type PostAdminApplicationsByApplicationIdEmailTemplatesResponse, type PostAdminApplicationsByApplicationIdEmailTemplatesResponses, type PostAdminApplicationsData, type PostAdminApplicationsError, type PostAdminApplicationsErrors, type PostAdminApplicationsResponse, type PostAdminApplicationsResponses, type PostAdminBucketsData, type PostAdminBucketsError, type PostAdminBucketsErrors, type PostAdminBucketsResponse, type PostAdminBucketsResponses, type PostAdminConfigsData, type PostAdminConfigsError, type PostAdminConfigsErrors, type PostAdminConfigsResponse, type PostAdminConfigsResponses, type PostAdminCreditPackagesData, type PostAdminCreditPackagesError, type PostAdminCreditPackagesErrors, type PostAdminCreditPackagesResponse, type PostAdminCreditPackagesResponses, type PostAdminCustomersData, type PostAdminCustomersError, type PostAdminCustomersErrors, type PostAdminCustomersResponse, type PostAdminCustomersResponses, type PostAdminDocumentsBulkDeleteData, type PostAdminDocumentsBulkDeleteError, type PostAdminDocumentsBulkDeleteErrors, type PostAdminDocumentsBulkDeleteResponse, type PostAdminDocumentsBulkDeleteResponses, type PostAdminDocumentsPresignedUploadData, type PostAdminDocumentsPresignedUploadError, type PostAdminDocumentsPresignedUploadErrors, type PostAdminDocumentsPresignedUploadResponse, type PostAdminDocumentsPresignedUploadResponses, type PostAdminExtractionBatchesData, type PostAdminExtractionBatchesError, type PostAdminExtractionBatchesErrors, type PostAdminExtractionBatchesResponse, type PostAdminExtractionBatchesResponses, type PostAdminExtractionDocumentsBeginUploadData, type PostAdminExtractionDocumentsBeginUploadError, type PostAdminExtractionDocumentsBeginUploadErrors, type PostAdminExtractionDocumentsBeginUploadResponse, type PostAdminExtractionDocumentsBeginUploadResponses, type PostAdminExtractionDocumentsBulkReprocessData, type PostAdminExtractionDocumentsBulkReprocessError, type PostAdminExtractionDocumentsBulkReprocessErrors, type PostAdminExtractionDocumentsBulkReprocessResponse, type PostAdminExtractionDocumentsBulkReprocessResponses, type PostAdminExtractionDocumentsUploadData, type PostAdminExtractionDocumentsUploadError, type PostAdminExtractionDocumentsUploadErrors, type PostAdminExtractionDocumentsUploadResponse, type PostAdminExtractionDocumentsUploadResponses, type PostAdminExtractionSchemaDiscoveriesData, type PostAdminExtractionSchemaDiscoveriesError, type PostAdminExtractionSchemaDiscoveriesErrors, type PostAdminExtractionSchemaDiscoveriesResponse, type PostAdminExtractionSchemaDiscoveriesResponses, type PostAdminFieldTemplatesData, type PostAdminFieldTemplatesError, type PostAdminFieldTemplatesErrors, type PostAdminFieldTemplatesResponse, type PostAdminFieldTemplatesResponses, type PostAdminInvitationsAcceptByTokenData, type PostAdminInvitationsAcceptByTokenError, type PostAdminInvitationsAcceptByTokenErrors, type PostAdminInvitationsAcceptByTokenResponse, type PostAdminInvitationsAcceptByTokenResponses, type PostAdminInvitationsData, type PostAdminInvitationsError, type PostAdminInvitationsErrors, type PostAdminInvitationsResponse, type PostAdminInvitationsResponses, type PostAdminIsvRevenueData, type PostAdminIsvRevenueError, type PostAdminIsvRevenueErrors, type PostAdminIsvRevenueResponse, type PostAdminIsvRevenueResponses, type PostAdminIsvSettlementsData, type PostAdminIsvSettlementsError, type PostAdminIsvSettlementsErrors, type PostAdminIsvSettlementsResponse, type PostAdminIsvSettlementsResponses, type PostAdminLlmAnalyticsData, type PostAdminLlmAnalyticsError, type PostAdminLlmAnalyticsErrors, type PostAdminLlmAnalyticsResponse, type PostAdminLlmAnalyticsResponses, type PostAdminMessagesData, type PostAdminMessagesError, type PostAdminMessagesErrors, type PostAdminMessagesResponse, type PostAdminMessagesResponses, type PostAdminNotificationMethodsData, type PostAdminNotificationMethodsError, type PostAdminNotificationMethodsErrors, type PostAdminNotificationMethodsResponse, type PostAdminNotificationMethodsResponses, type PostAdminNotificationPreferencesData, type PostAdminNotificationPreferencesError, type PostAdminNotificationPreferencesErrors, type PostAdminNotificationPreferencesResponse, type PostAdminNotificationPreferencesResponses, type PostAdminObjectsBulkDestroyData, type PostAdminObjectsBulkDestroyError, type PostAdminObjectsBulkDestroyErrors, type PostAdminObjectsBulkDestroyResponse, type PostAdminObjectsBulkDestroyResponses, type PostAdminObjectsCopyData, type PostAdminObjectsCopyError, type PostAdminObjectsCopyErrors, type PostAdminObjectsCopyResponse, type PostAdminObjectsCopyResponses, type PostAdminObjectsMoveData, type PostAdminObjectsMoveError, type PostAdminObjectsMoveErrors, type PostAdminObjectsMoveResponse, type PostAdminObjectsMoveResponses, type PostAdminObjectsRegisterData, type PostAdminObjectsRegisterError, type PostAdminObjectsRegisterErrors, type PostAdminObjectsRegisterResponse, type PostAdminObjectsRegisterResponses, type PostAdminPaymentMethodsData, type PostAdminPaymentMethodsError, type PostAdminPaymentMethodsErrors, type PostAdminPaymentMethodsResponse, type PostAdminPaymentMethodsResponses, type PostAdminPaymentMethodsTokenizeData, type PostAdminPaymentMethodsTokenizeError, type PostAdminPaymentMethodsTokenizeErrors, type PostAdminPaymentMethodsTokenizeResponse, type PostAdminPaymentMethodsTokenizeResponses, type PostAdminPaymentsData, type PostAdminPaymentsError, type PostAdminPaymentsErrors, type PostAdminPaymentsResponse, type PostAdminPaymentsResponses, type PostAdminPlansData, type PostAdminPlansError, type PostAdminPlansErrors, type PostAdminPlansResponse, type PostAdminPlansResponses, type PostAdminPricingRulesData, type PostAdminPricingRulesError, type PostAdminPricingRulesErrors, type PostAdminPricingRulesResponse, type PostAdminPricingRulesResponses, type PostAdminPricingStrategiesData, type PostAdminPricingStrategiesError, type PostAdminPricingStrategiesErrors, type PostAdminPricingStrategiesResponse, type PostAdminPricingStrategiesResponses, type PostAdminSearchBatchData, type PostAdminSearchBatchError, type PostAdminSearchBatchErrors, type PostAdminSearchBatchResponse, type PostAdminSearchBatchResponses, type PostAdminSearchReindexData, type PostAdminSearchReindexError, type PostAdminSearchReindexErrors, type PostAdminSearchReindexResponse, type PostAdminSearchReindexResponses, type PostAdminSearchSavedByIdRunData, type PostAdminSearchSavedByIdRunError, type PostAdminSearchSavedByIdRunErrors, type PostAdminSearchSavedByIdRunResponse, type PostAdminSearchSavedByIdRunResponses, type PostAdminSearchSavedData, type PostAdminSearchSavedError, type PostAdminSearchSavedErrors, type PostAdminSearchSavedResponse, type PostAdminSearchSavedResponses, type PostAdminStorageSignDownloadData, type PostAdminStorageSignDownloadError, type PostAdminStorageSignDownloadErrors, type PostAdminStorageSignDownloadResponse, type PostAdminStorageSignDownloadResponses, type PostAdminStorageSignUploadData, type PostAdminStorageSignUploadError, type PostAdminStorageSignUploadErrors, type PostAdminStorageSignUploadResponse, type PostAdminStorageSignUploadResponses, type PostAdminSubscriptionsData, type PostAdminSubscriptionsError, type PostAdminSubscriptionsErrors, type PostAdminSubscriptionsResponse, type PostAdminSubscriptionsResponses, type PostAdminSysAiConfigData, type PostAdminSysAiConfigError, type PostAdminSysAiConfigErrors, type PostAdminSysAiConfigResponse, type PostAdminSysAiConfigResponses, type PostAdminSysSemanticCacheClearData, type PostAdminSysSemanticCacheClearError, type PostAdminSysSemanticCacheClearErrors, type PostAdminSysSemanticCacheClearResponse, type PostAdminSysSemanticCacheClearResponses, type PostAdminSystemMessagesData, type PostAdminSystemMessagesError, type PostAdminSystemMessagesErrors, type PostAdminSystemMessagesResponse, type PostAdminSystemMessagesResponses, type PostAdminTenantMembershipsData, type PostAdminTenantMembershipsError, type PostAdminTenantMembershipsErrors, type PostAdminTenantMembershipsResponse, type PostAdminTenantMembershipsResponses, type PostAdminTenantPricingOverridesData, type PostAdminTenantPricingOverridesError, type PostAdminTenantPricingOverridesErrors, type PostAdminTenantPricingOverridesResponse, type PostAdminTenantPricingOverridesResponses, type PostAdminTenantsByIdBuyStorageData, type PostAdminTenantsByIdBuyStorageError, type PostAdminTenantsByIdBuyStorageErrors, type PostAdminTenantsByIdBuyStorageResponse, type PostAdminTenantsByIdBuyStorageResponses, type PostAdminTenantsByIdCreditData, type PostAdminTenantsByIdCreditError, type PostAdminTenantsByIdCreditErrors, type PostAdminTenantsByIdCreditResponse, type PostAdminTenantsByIdCreditResponses, type PostAdminTenantsByIdRemoveStorageData, type PostAdminTenantsByIdRemoveStorageError, type PostAdminTenantsByIdRemoveStorageErrors, type PostAdminTenantsByIdRemoveStorageResponse, type PostAdminTenantsByIdRemoveStorageResponses, type PostAdminTenantsByIdSchedulePurgeData, type PostAdminTenantsByIdSchedulePurgeError, type PostAdminTenantsByIdSchedulePurgeErrors, type PostAdminTenantsByIdSchedulePurgeResponse, type PostAdminTenantsByIdSchedulePurgeResponses, type PostAdminTenantsData, type PostAdminTenantsError, type PostAdminTenantsErrors, type PostAdminTenantsIsvData, type PostAdminTenantsIsvError, type PostAdminTenantsIsvErrors, type PostAdminTenantsIsvResponse, type PostAdminTenantsIsvResponses, type PostAdminTenantsResponse, type PostAdminTenantsResponses, type PostAdminThreadsActiveData, type PostAdminThreadsActiveError, type PostAdminThreadsActiveErrors, type PostAdminThreadsActiveResponse, type PostAdminThreadsActiveResponses, type PostAdminThreadsByIdExportData, type PostAdminThreadsByIdExportError, type PostAdminThreadsByIdExportErrors, type PostAdminThreadsByIdExportResponse, type PostAdminThreadsByIdExportResponses, type PostAdminThreadsByIdForkData, type PostAdminThreadsByIdForkError, type PostAdminThreadsByIdForkErrors, type PostAdminThreadsByIdForkResponse, type PostAdminThreadsByIdForkResponses, type PostAdminThreadsByIdMessagesData, type PostAdminThreadsByIdMessagesError, type PostAdminThreadsByIdMessagesErrors, type PostAdminThreadsByIdMessagesResponse, type PostAdminThreadsByIdMessagesResponses, type PostAdminThreadsByIdSummarizeData, type PostAdminThreadsByIdSummarizeError, type PostAdminThreadsByIdSummarizeErrors, type PostAdminThreadsByIdSummarizeResponse, type PostAdminThreadsByIdSummarizeResponses, type PostAdminThreadsData, type PostAdminThreadsError, type PostAdminThreadsErrors, type PostAdminThreadsResponse, type PostAdminThreadsResponses, type PostAdminTokensData, type PostAdminTokensError, type PostAdminTokensErrors, type PostAdminTokensResponse, type PostAdminTokensResponses, type PostAdminTrainingExamplesBulkData, type PostAdminTrainingExamplesBulkDeleteData, type PostAdminTrainingExamplesBulkDeleteError, type PostAdminTrainingExamplesBulkDeleteErrors, type PostAdminTrainingExamplesBulkDeleteResponse, type PostAdminTrainingExamplesBulkDeleteResponses, type PostAdminTrainingExamplesBulkError, type PostAdminTrainingExamplesBulkErrors, type PostAdminTrainingExamplesBulkResponse, type PostAdminTrainingExamplesBulkResponses, type PostAdminTrainingExamplesData, type PostAdminTrainingExamplesError, type PostAdminTrainingExamplesErrors, type PostAdminTrainingExamplesResponse, type PostAdminTrainingExamplesResponses, type PostAdminTrainingExamplesSearchData, type PostAdminTrainingExamplesSearchError, type PostAdminTrainingExamplesSearchErrors, type PostAdminTrainingExamplesSearchResponse, type PostAdminTrainingExamplesSearchResponses, type PostAdminUserProfilesData, type PostAdminUserProfilesError, type PostAdminUserProfilesErrors, type PostAdminUserProfilesResponse, type PostAdminUserProfilesResponses, type PostAdminUsersAuthConfirmData, type PostAdminUsersAuthConfirmError, type PostAdminUsersAuthConfirmErrors, type PostAdminUsersAuthConfirmResponse, type PostAdminUsersAuthConfirmResponses, type PostAdminUsersAuthLoginData, type PostAdminUsersAuthLoginError, type PostAdminUsersAuthLoginErrors, type PostAdminUsersAuthLoginResponse, type PostAdminUsersAuthLoginResponses, type PostAdminUsersAuthMagicLinkLoginData, type PostAdminUsersAuthMagicLinkLoginError, type PostAdminUsersAuthMagicLinkLoginErrors, type PostAdminUsersAuthMagicLinkLoginResponse, type PostAdminUsersAuthMagicLinkLoginResponses, type PostAdminUsersAuthMagicLinkRequestData, type PostAdminUsersAuthMagicLinkRequestError, type PostAdminUsersAuthMagicLinkRequestErrors, type PostAdminUsersAuthMagicLinkRequestResponse, type PostAdminUsersAuthMagicLinkRequestResponses, type PostAdminUsersAuthRegisterData, type PostAdminUsersAuthRegisterError, type PostAdminUsersAuthRegisterErrors, type PostAdminUsersAuthRegisterResponse, type PostAdminUsersAuthRegisterResponses, type PostAdminUsersAuthRegisterWithOidcData, type PostAdminUsersAuthRegisterWithOidcError, type PostAdminUsersAuthRegisterWithOidcErrors, type PostAdminUsersAuthRegisterWithOidcResponse, type PostAdminUsersAuthRegisterWithOidcResponses, type PostAdminUsersAuthResendConfirmationData, type PostAdminUsersAuthResendConfirmationError, type PostAdminUsersAuthResendConfirmationErrors, type PostAdminUsersAuthResendConfirmationResponse, type PostAdminUsersAuthResendConfirmationResponses, type PostAdminUsersRegisterIsvData, type PostAdminUsersRegisterIsvError, type PostAdminUsersRegisterIsvErrors, type PostAdminUsersRegisterIsvResponse, type PostAdminUsersRegisterIsvResponses, type PostAdminWebhookConfigsBulkDisableData, type PostAdminWebhookConfigsBulkDisableError, type PostAdminWebhookConfigsBulkDisableErrors, type PostAdminWebhookConfigsBulkDisableResponse, type PostAdminWebhookConfigsBulkDisableResponses, type PostAdminWebhookConfigsBulkEnableData, type PostAdminWebhookConfigsBulkEnableError, type PostAdminWebhookConfigsBulkEnableErrors, type PostAdminWebhookConfigsBulkEnableResponse, type PostAdminWebhookConfigsBulkEnableResponses, type PostAdminWebhookConfigsByIdReplayData, type PostAdminWebhookConfigsByIdReplayError, type PostAdminWebhookConfigsByIdReplayErrors, type PostAdminWebhookConfigsByIdReplayResponse, type PostAdminWebhookConfigsByIdReplayResponses, type PostAdminWebhookConfigsByIdTestData, type PostAdminWebhookConfigsByIdTestError, type PostAdminWebhookConfigsByIdTestErrors, type PostAdminWebhookConfigsByIdTestResponse, type PostAdminWebhookConfigsByIdTestResponses, type PostAdminWebhookConfigsData, type PostAdminWebhookConfigsError, type PostAdminWebhookConfigsErrors, type PostAdminWebhookConfigsResponse, type PostAdminWebhookConfigsResponses, type PostAdminWebhookDeliveriesBulkRetryData, type PostAdminWebhookDeliveriesBulkRetryError, type PostAdminWebhookDeliveriesBulkRetryErrors, type PostAdminWebhookDeliveriesBulkRetryResponse, type PostAdminWebhookDeliveriesBulkRetryResponses, type PostAdminWebhookDeliveriesByIdRetryData, type PostAdminWebhookDeliveriesByIdRetryError, type PostAdminWebhookDeliveriesByIdRetryErrors, type PostAdminWebhookDeliveriesByIdRetryResponse, type PostAdminWebhookDeliveriesByIdRetryResponses, type PostAdminWorkspaceMembershipsData, type PostAdminWorkspaceMembershipsError, type PostAdminWorkspaceMembershipsErrors, type PostAdminWorkspaceMembershipsResponse, type PostAdminWorkspaceMembershipsResponses, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingError, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponse, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedData, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedError, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedErrors, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponse, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponses, type PostAdminWorkspacesByWorkspaceIdExtractionExportsData, type PostAdminWorkspacesByWorkspaceIdExtractionExportsError, type PostAdminWorkspacesByWorkspaceIdExtractionExportsErrors, type PostAdminWorkspacesByWorkspaceIdExtractionExportsResponse, type PostAdminWorkspacesByWorkspaceIdExtractionExportsResponses, type PostAdminWorkspacesData, type PostAdminWorkspacesError, type PostAdminWorkspacesErrors, type PostAdminWorkspacesResponse, type PostAdminWorkspacesResponses, type PresignedUrl, type PresignedUrlFilter, type PresignedUrlFilterExpiresIn, type PresignedUrlFilterHeaders, type PresignedUrlFilterId, type PresignedUrlFilterMethod, type PresignedUrlFilterStoragePath, type PresignedUrlFilterUploadUrl, type PresignedUrlFilterUrl, type PricingRule, type PricingRuleFilter, type PricingRuleFilterId, type PricingStrategy, type PricingStrategyFilter, type PricingStrategyFilterId, RateLimitError, type SavedSearch, type SavedSearchFilter, type SavedSearchFilterExecutedAt, type SavedSearchFilterFilters, type SavedSearchFilterId, type SavedSearchFilterIsShared, type SavedSearchFilterName, type SavedSearchFilterQuery, type SavedSearchFilterSearchType, type SchemaDiscovery, type SchemaDiscoveryFilter, type SchemaDiscoveryFilterCreatedAt, type SchemaDiscoveryFilterDocumentAssessment, type SchemaDiscoveryFilterError, type SchemaDiscoveryFilterId, type SchemaDiscoveryFilterStatus, type SchemaDiscoveryFilterUpdatedAt, type Search, type SearchAnalytics, type SearchAnalyticsFilter, type SearchAnalyticsFilterAvgLatencyMs, type SearchAnalyticsFilterAvgResultCount, type SearchAnalyticsFilterId, type SearchAnalyticsFilterKeywordSearches, type SearchAnalyticsFilterLatencyMs, type SearchAnalyticsFilterQuery, type SearchAnalyticsFilterResultCount, type SearchAnalyticsFilterRoutedVia, type SearchAnalyticsFilterSearchType, type SearchAnalyticsFilterSemanticSearches, type SearchAnalyticsFilterTenantId, type SearchAnalyticsFilterTotalSearches, type SearchAnalyticsFilterUserId, type SearchFilter, type SearchFilterDatabaseSize, type SearchFilterError, type SearchFilterId, type SearchFilterLatencyMs, type SearchFilterResultsCount, type SearchFilterScope, type SearchFilterStatus, type SearchFilterTenantId, type SemanticCacheEntry, type SemanticCacheEntryFilter, type SemanticCacheEntryFilterId, ServerError, type StorageStats, type StorageStatsFilter, type StorageStatsFilterGeneratedAt, type StorageStatsFilterId, type StorageStatsFilterTenantId, type StorageStatsFilterTotalBuckets, type StorageStatsFilterTotalObjects, type StorageStatsFilterTotalStorageBytes, type StorageStatsRequest, StorageStatsRequestSchema, type StorageStatsType, type Subscription, type SubscriptionFilter, type SubscriptionFilterDunningStage, type SubscriptionFilterId, type SubscriptionFilterNextRetryAt, type SystemMessage, type SystemMessageFilter, type SystemMessageFilterContent, type SystemMessageFilterId, type SystemMessageFilterIsActive, type SystemMessageFilterPublishedAt, type SystemMessageFilterRequiresAcceptance, type SystemMessageFilterTitle, type SystemMessageFilterType, type SystemMessageFilterVersion, type Tenant, type TenantDocumentStats, type TenantDocumentStatsFilter, type TenantDocumentStatsFilterCompleted, type TenantDocumentStatsFilterFailed, type TenantDocumentStatsFilterId, type TenantDocumentStatsFilterProcessing, type TenantDocumentStatsFilterQueued, type TenantDocumentStatsFilterTenantId, type TenantDocumentStatsFilterTotal, type TenantFilter, type TenantFilterApplicationId, type TenantFilterAutoTopUpAmount, type TenantFilterAutoTopUpEnabled, type TenantFilterAutoTopUpPackageId, type TenantFilterAutoTopUpThreshold, type TenantFilterBadgeUrl, type TenantFilterCreditBalance, type TenantFilterId, type TenantFilterInitialCredits, type TenantFilterKind, type TenantFilterLogoUrl, type TenantFilterName, type TenantFilterSlug, type TenantFilterTrainingPriceCredits, type TenantMembership, type TenantMembershipFilter, type TenantMembershipFilterIsOwner, type TenantMembershipFilterRole, type TenantMembershipFilterTenantId, type TenantMembershipFilterUserId, type TenantPricingOverride, type TenantPricingOverrideFilter, type TenantPricingOverrideFilterId, type TenantStats, type TenantStatsFilter, type TenantStatsFilterCredits, type TenantStatsFilterDocuments, type TenantStatsFilterFailed, type TenantStatsFilterFiles, type TenantStatsFilterId, type TenantStatsFilterSuccess, type TenantStatsFilterTenantId, type Thread, type ThreadFilter, type ThreadFilterArchivedAt, type ThreadFilterContextSummary, type ThreadFilterId, type ThreadFilterTitle, TimeoutError, type Token, type TokenFilter, type TokenFilterBrand, type TokenFilterExpMonth, type TokenFilterExpYear, type TokenFilterId, type TokenFilterLast4, type TokenFilterToken, type TrainingAnalytics, type TrainingAnalyticsFilter, type TrainingAnalyticsFilterAccuracyImprovement, type TrainingAnalyticsFilterAvgConfidence, type TrainingAnalyticsFilterConfidenceThreshold, type TrainingAnalyticsFilterDocsNeedingReviewCount, type TrainingAnalyticsFilterId, type TrainingAnalyticsFilterTopCorrectedField, type TrainingAnalyticsFilterTopFieldCorrectionCount, type TrainingAnalyticsFilterTotalExamples, type TrainingAnalyticsFilterTotalFieldsConfirmed, type TrainingAnalyticsFilterTotalFieldsCorrected, type TrainingAnalyticsFilterTotalFieldsReviewed, type TrainingAnalyticsFilterTrained, type TrainingAnalyticsFilterWorkspaceId, type TrainingExample, type TrainingExampleFilter, type TrainingExampleFilterConfidenceScore, type TrainingExampleFilterCorrectedValue, type TrainingExampleFilterCorrectionReasons, type TrainingExampleFilterDocumentId, type TrainingExampleFilterDocumentType, type TrainingExampleFilterEmbedding, type TrainingExampleFilterFieldName, type TrainingExampleFilterId, type TrainingExampleFilterInputText, type TrainingExampleFilterInsertedAt, type TrainingExampleFilterIsConfirmed, type TrainingExampleFilterOriginalValue, type TrainingExampleFilterOutputJson, type TrainingExampleFilterSimilarity, type TrainingExampleFilterTrainingNote, type TrainingExampleFilterTrainingSessionId, type TrainingExampleFilterUpdatedAt, type TrainingExampleFilterVersionId, type TrainingExampleFilterWorkspaceId, type TrainingSession, type TrainingSessionFilter, type TrainingSessionFilterConfirmationsCount, type TrainingSessionFilterCorrectionsCount, type TrainingSessionFilterDocumentFilename, type TrainingSessionFilterId, type TrainingSessionFilterImpactScore, type TrainingSessionFilterInsertedAt, type TrainingSessionFilterRevertedAt, type TrainingSessionFilterStatus, type TrainingSessionFilterTrainingNote, type TrainingSessionFilterUpdatedAt, type TrainingSessionFilterUserEmail, type TrainingSessionFilterUserName, type Transaction, type TransactionFilter, type TransactionFilterAmount, type TransactionFilterCreatedAt, type TransactionFilterCreditsAdded, type TransactionFilterCreditsUsed, type TransactionFilterCurrency, type TransactionFilterDescription, type TransactionFilterErrorMessage, type TransactionFilterId, type TransactionFilterMetadata, type TransactionFilterOperation, type TransactionFilterProviderReference, type TransactionFilterServiceId, type TransactionFilterStatus, type TransactionFilterTenantId, type TransactionFilterTransactionType, type TransactionFilterType, type TransactionFilterUpdatedAt, type Transfer, type TransferFilter, type TransferFilterId, type User, type UserFilter, type UserFilterCurrentWorkspaceId, type UserFilterEmail, type UserFilterId, type UserFilterIsAppAdmin, type UserFilterIsPlatformAdmin, type UserProfile, type UserProfileFilter, type UserProfileFilterAvatarUrl, type UserProfileFilterBio, type UserProfileFilterFirstName, type UserProfileFilterFullName, type UserProfileFilterId, type UserProfileFilterLastName, type UserProfileFilterPreferences, type UserProfileFilterSocialLinks, type UserProfileFilterUserId, ValidationError, type Wallet, type WalletFilter, type WalletFilterApplicationId, type WalletFilterAutoTopUpAmount, type WalletFilterAutoTopUpEnabled, type WalletFilterAutoTopUpThreshold, type WalletFilterCredits, type WalletFilterCreditsFree, type WalletFilterCreditsPaid, type WalletFilterCreditsSubscription, type WalletFilterEffectiveDate, type WalletFilterId, type WalletFilterPlanId, type WalletFilterPlanSlug, type WalletFilterProrationAmount, type WalletFilterProrationDetails, type WalletFilterStorageBlocksPurchased, type WalletFilterStorageQuotaBytes, type WalletFilterStorageUsedBytes, type WatcherClaim, type WatcherClaimFilter, type WatcherClaimFilterClaimedAt, type WatcherClaimFilterCompletedAt, type WatcherClaimFilterDocumentId, type WatcherClaimFilterErrorMessage, type WatcherClaimFilterExpiresAt, type WatcherClaimFilterFileHash, type WatcherClaimFilterFileName, type WatcherClaimFilterFilePath, type WatcherClaimFilterFileSize, type WatcherClaimFilterId, type WatcherClaimFilterMachineId, type WatcherClaimFilterMachineName, type WatcherClaimFilterRetryCount, type WatcherClaimFilterStatus, type WatcherClaimFilterWorkspaceId, type WatcherEvent, type WatcherEventFilter, type WatcherEventFilterClaimId, type WatcherEventFilterCloudStoragePath, type WatcherEventFilterCreatedAt, type WatcherEventFilterDestinationPath, type WatcherEventFilterDocumentId, type WatcherEventFilterErrorMessage, type WatcherEventFilterEventType, type WatcherEventFilterFileHash, type WatcherEventFilterFileName, type WatcherEventFilterFilePath, type WatcherEventFilterFileSize, type WatcherEventFilterId, type WatcherEventFilterMachineId, type WatcherEventFilterMachineName, type WatcherEventFilterRetryCount, type WatcherEventFilterSkipReason, type WatcherEventFilterSource, type WatcherEventFilterWorkspaceId, type WebhookBulkDisableRequest, WebhookBulkDisableSchema, type WebhookBulkEnableRequest, WebhookBulkEnableSchema, type WebhookConfig, type WebhookConfigCreateRequest, WebhookConfigCreateSchema, type WebhookConfigFilter, type WebhookConfigFilterApplicationId, type WebhookConfigFilterEnabled, type WebhookConfigFilterId, type WebhookConfigFilterInsertedAt, type WebhookConfigFilterName, type WebhookConfigFilterSecret, type WebhookConfigFilterTenantId, type WebhookConfigFilterUpdatedAt, type WebhookConfigFilterUrl, type WebhookDelivery, type WebhookDeliveryBulkRetryRequest, WebhookDeliveryBulkRetrySchema, type WebhookDeliveryFilter, type WebhookDeliveryFilterAttemptCount, type WebhookDeliveryFilterEventType, type WebhookDeliveryFilterId, type WebhookDeliveryFilterInsertedAt, type WebhookDeliveryFilterNextRetryAt, type WebhookDeliveryFilterPayload, type WebhookDeliveryFilterRequestHeaders, type WebhookDeliveryFilterResponseBody, type WebhookDeliveryFilterResponseStatus, type WebhookDeliveryFilterStatus, type WebhookDeliveryFilterUpdatedAt, type WebhookDeliveryFilterUrl, type WebhookDeliveryFilterWebhookConfigId, type Workspace, type WorkspaceDocumentStats, type WorkspaceDocumentStatsFilter, type WorkspaceDocumentStatsFilterCompleted, type WorkspaceDocumentStatsFilterFailed, type WorkspaceDocumentStatsFilterId, type WorkspaceDocumentStatsFilterProcessing, type WorkspaceDocumentStatsFilterQueued, type WorkspaceDocumentStatsFilterTotal, type WorkspaceDocumentStatsFilterWorkspaceId, type WorkspaceDocumentStatsFilterWorkspaceName, type WorkspaceFilter, type WorkspaceFilterApp, type WorkspaceFilterApplicationId, type WorkspaceFilterArchivedAt, type WorkspaceFilterCreatedAt, type WorkspaceFilterDescription, type WorkspaceFilterExpiresAt, type WorkspaceFilterId, type WorkspaceFilterIsDefault, type WorkspaceFilterLastSweepAt, type WorkspaceFilterLowBalanceThreshold, type WorkspaceFilterName, type WorkspaceFilterRenewalParams, type WorkspaceFilterSlug, type WorkspaceFilterSpecialtyAgentId, type WorkspaceFilterTenantId, type WorkspaceFilterUpdatedAt, type WorkspaceMembership, type WorkspaceMembershipFilter, type WorkspaceMembershipFilterCreatedAt, type WorkspaceMembershipFilterLastVisitedAt, type WorkspaceMembershipFilterUpdatedAt, type WorkspaceMembershipFilterUserId, type WorkspaceMembershipFilterWorkspaceId, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, GptAdmin as default, handleApiError };
|
|
50211
|
+
export { type Account, type AccountCreditRequest, AccountCreditSchema, type AccountDebitRequest, AccountDebitSchema, type AccountFilter, type AccountFilterAllowOverdraft, type AccountFilterCredits, type AccountFilterCurrency, type AccountFilterExpiresAt, type AccountFilterId, type AccountFilterIdentifier, type AccountFilterName, type AccountFilterType, type Agent, type AgentAdminCreateRequest, AgentAdminCreateSchema, type AgentFilter, type AgentFilterCapabilities, type AgentFilterClonedFromId, type AgentFilterDefaultInstructions, type AgentFilterDescription, type AgentFilterDomain, type AgentFilterId, type AgentFilterInstructions, type AgentFilterIsSystem, type AgentFilterName, type AgentFilterPromptTemplate, type AgentFilterSchemaDefinition, type AgentFilterSlug, type AgentFilterTenantId, type AgentFilterVersion, type AgentFilterWorkspaceId, type AgentStats, type AgentStatsFilter, type AgentStatsFilterAgentId, type AgentStatsFilterId, type AgentStatsFilterTotalCalls, type AgentStatsFilterTotalCost, type AgentStatsFilterTotalTokens, type AgentTestResult, type AgentTestResultFilter, type AgentTestResultFilterAgentVersionId, type AgentTestResultFilterCreatedAt, type AgentTestResultFilterDocumentId, type AgentTestResultFilterErrorMessage, type AgentTestResultFilterExtractedData, type AgentTestResultFilterId, type AgentTestResultFilterStatus, type AgentTestResultFilterUsage, type AgentTrainingStats, type AgentTrainingStatsFilter, type AgentTrainingStatsFilterAccuracy, type AgentTrainingStatsFilterAgentId, type AgentTrainingStatsFilterExamplesLast7Days, type AgentTrainingStatsFilterId, type AgentTrainingStatsFilterLastExampleCreatedAt, type AgentTrainingStatsFilterLearningActive, type AgentTrainingStatsFilterTotalExamples, type AgentTrainingStatsFilterVersion, type AgentUsage, type AgentUsageFilter, type AgentUsageFilterAgentId, type AgentUsageFilterId, type AgentUsageFilterIsShared, type AgentUsageFilterIsSystem, type AgentUsageFilterOwner, type AgentUsageFilterUsingCount, type AgentVersion, type AgentVersionComparison, type AgentVersionComparisonFilter, type AgentVersionComparisonFilterCreatedAt, type AgentVersionComparisonFilterId, type AgentVersionComparisonFilterPromptDiff, type AgentVersionComparisonFilterSchemaDiff, type AgentVersionComparisonFilterVersionAId, type AgentVersionComparisonFilterVersionANumber, type AgentVersionComparisonFilterVersionBId, type AgentVersionComparisonFilterVersionBNumber, type AgentVersionFieldsInputCreateType, type AgentVersionFilter, type AgentVersionFilterChangesSummary, type AgentVersionFilterCreatedAt, type AgentVersionFilterHasBeenUsed, type AgentVersionFilterId, type AgentVersionFilterIsActive, type AgentVersionFilterPromptTemplate, type AgentVersionFilterSchemaDefinition, type AgentVersionFilterUpdatedAt, type AgentVersionFilterVersionNumber, type AiConfig, type AiConfigFilter, type ApiKey, type ApiKeyAllocateRequest, ApiKeyAllocateSchema, type ApiKeyFilter, type ApiKeyFilterApplicationId, type ApiKeyFilterCreditLimit, type ApiKeyFilterCreditLimitPeriod, type ApiKeyFilterExpiresAt, type ApiKeyFilterId, type ApiKeyFilterKeyType, type ApiKeyFilterLastUsedAt, type ApiKeyFilterName, type ApiKeyFilterPeriodCreditsUsed, type ApiKeyFilterPeriodStartedAt, type ApiKeyFilterPrefix, type ApiKeyFilterRateLimitPeriodSeconds, type ApiKeyFilterRateLimitRequests, type ApiKeyFilterStatus, type ApiKeyFilterTenantId, type ApiKeyFilterTotalCreditsUsed, type ApiKeyFilterTotalRequests, type ApiKeyFilterUserId, type ApiKeyFilterWorkspaceId, type Application, type ApplicationFilter, type ApplicationFilterBadgeUrl, type ApplicationFilterBaseUrl, type ApplicationFilterDefaultFreeCredits, type ApplicationFilterDescription, type ApplicationFilterId, type ApplicationFilterInviteOnly, type ApplicationFilterLogoUrl, type ApplicationFilterName, type ApplicationFilterRequireEmailVerification, type ApplicationFilterSenderEmail, type ApplicationFilterSenderName, type ApplicationFilterSlug, type ApplicationOauthInputCreateType, type ApplicationOauthInputUpdateType, type ApplicationType, type AuditLog, type AuditLogFilter, type AuditLogFilterAction, type AuditLogFilterActorId, type AuditLogFilterAdminContext, type AuditLogFilterChanges, type AuditLogFilterId, type AuditLogFilterIpAddress, type AuditLogFilterResourceId, type AuditLogFilterResourceType, type AuditLogFilterTargetId, type AuditLogFilterTargetName, type AuditLogFilterTargetType, type AuditLogFilterTenantId, type AuditLogFilterUserAgent, type AuditLogFilterWorkspaceId, AuthenticationError, AuthorizationError, type Balance, type BalanceFilter, type BalanceFilterId, type Bucket, type BucketFilter, type BucketFilterId, type BucketFilterName, type BucketFilterRegion, type BucketFilterStorageUsed, type BucketFilterType, type BulkDismissalResult, type BulkDismissalResultFilter, type BulkDismissalResultFilterDismissedCount, type BulkDismissalResultFilterId, type BulkDismissalResultFilterSuccess, type BulkReprocessResult, type BulkReprocessResultFilter, type BulkReprocessResultFilterErrorCount, type BulkReprocessResultFilterId, type BulkReprocessResultFilterQueuedCount, type BulkReprocessResultFilterSuccess, type ClientOptions, type Config, type ConfigFilter, type ConfigFilterDescription, type ConfigFilterKey, type ConfigFilterValue, type Conversation, type ConversationFilter, type ConversationFilterContextData, type ConversationFilterId, type ConversationFilterTenantId, type ConversationFilterTitle, type CreditPackage, type CreditPackageFilter, type CreditPackageFilterApplicationId, type CreditPackageFilterCreatedAt, type CreditPackageFilterCredits, type CreditPackageFilterId, type CreditPackageFilterName, type CreditPackageFilterPrice, type CreditPackageFilterSlug, type CreditPackageFilterUpdatedAt, type Customer, type CustomerFilter, type CustomerFilterId, type DeleteAdminAgentVersionsByIdData, type DeleteAdminAgentVersionsByIdError, type DeleteAdminAgentVersionsByIdErrors, type DeleteAdminAgentVersionsByIdResponses, type DeleteAdminAiConversationsByIdData, type DeleteAdminAiConversationsByIdError, type DeleteAdminAiConversationsByIdErrors, type DeleteAdminAiConversationsByIdResponses, type DeleteAdminAiGraphEdgesByIdData, type DeleteAdminAiGraphEdgesByIdError, type DeleteAdminAiGraphEdgesByIdErrors, type DeleteAdminAiGraphEdgesByIdResponses, type DeleteAdminAiGraphNodesByIdData, type DeleteAdminAiGraphNodesByIdError, type DeleteAdminAiGraphNodesByIdErrors, type DeleteAdminAiGraphNodesByIdResponses, type DeleteAdminAiMessagesByIdData, type DeleteAdminAiMessagesByIdError, type DeleteAdminAiMessagesByIdErrors, type DeleteAdminAiMessagesByIdResponses, type DeleteAdminApiKeysByIdData, type DeleteAdminApiKeysByIdError, type DeleteAdminApiKeysByIdErrors, type DeleteAdminApiKeysByIdResponses, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugData, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugError, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses, type DeleteAdminApplicationsByIdData, type DeleteAdminApplicationsByIdError, type DeleteAdminApplicationsByIdErrors, type DeleteAdminApplicationsByIdResponses, type DeleteAdminBucketsByIdData, type DeleteAdminBucketsByIdError, type DeleteAdminBucketsByIdErrors, type DeleteAdminBucketsByIdResponses, type DeleteAdminCreditPackagesByIdData, type DeleteAdminCreditPackagesByIdError, type DeleteAdminCreditPackagesByIdErrors, type DeleteAdminCreditPackagesByIdResponses, type DeleteAdminCustomersByIdData, type DeleteAdminCustomersByIdError, type DeleteAdminCustomersByIdErrors, type DeleteAdminCustomersByIdResponses, type DeleteAdminExtractionBatchesByIdData, type DeleteAdminExtractionBatchesByIdError, type DeleteAdminExtractionBatchesByIdErrors, type DeleteAdminExtractionBatchesByIdResponses, type DeleteAdminExtractionDocumentsByIdData, type DeleteAdminExtractionDocumentsByIdError, type DeleteAdminExtractionDocumentsByIdErrors, type DeleteAdminExtractionDocumentsByIdResponses, type DeleteAdminExtractionResultsByIdData, type DeleteAdminExtractionResultsByIdError, type DeleteAdminExtractionResultsByIdErrors, type DeleteAdminExtractionResultsByIdResponses, type DeleteAdminFieldTemplatesByIdData, type DeleteAdminFieldTemplatesByIdError, type DeleteAdminFieldTemplatesByIdErrors, type DeleteAdminFieldTemplatesByIdResponses, type DeleteAdminMessagesByIdData, type DeleteAdminMessagesByIdError, type DeleteAdminMessagesByIdErrors, type DeleteAdminMessagesByIdResponses, type DeleteAdminNotificationMethodsByIdData, type DeleteAdminNotificationMethodsByIdError, type DeleteAdminNotificationMethodsByIdErrors, type DeleteAdminNotificationMethodsByIdResponses, type DeleteAdminNotificationPreferencesByIdData, type DeleteAdminNotificationPreferencesByIdError, type DeleteAdminNotificationPreferencesByIdErrors, type DeleteAdminNotificationPreferencesByIdResponses, type DeleteAdminObjectsByIdData, type DeleteAdminObjectsByIdError, type DeleteAdminObjectsByIdErrors, type DeleteAdminObjectsByIdResponses, type DeleteAdminPaymentMethodsByIdData, type DeleteAdminPaymentMethodsByIdError, type DeleteAdminPaymentMethodsByIdErrors, type DeleteAdminPaymentMethodsByIdResponses, type DeleteAdminPlansByIdData, type DeleteAdminPlansByIdError, type DeleteAdminPlansByIdErrors, type DeleteAdminPlansByIdResponses, type DeleteAdminSearchSavedByIdData, type DeleteAdminSearchSavedByIdError, type DeleteAdminSearchSavedByIdErrors, type DeleteAdminSearchSavedByIdResponses, type DeleteAdminSubscriptionsByIdData, type DeleteAdminSubscriptionsByIdError, type DeleteAdminSubscriptionsByIdErrors, type DeleteAdminSubscriptionsByIdResponses, type DeleteAdminSystemMessagesByIdData, type DeleteAdminSystemMessagesByIdError, type DeleteAdminSystemMessagesByIdErrors, type DeleteAdminSystemMessagesByIdResponses, type DeleteAdminTenantMembershipsByTenantIdByUserIdData, type DeleteAdminTenantMembershipsByTenantIdByUserIdError, type DeleteAdminTenantMembershipsByTenantIdByUserIdErrors, type DeleteAdminTenantMembershipsByTenantIdByUserIdResponses, type DeleteAdminTenantPricingOverridesByIdData, type DeleteAdminTenantPricingOverridesByIdError, type DeleteAdminTenantPricingOverridesByIdErrors, type DeleteAdminTenantPricingOverridesByIdResponses, type DeleteAdminTenantsByIdData, type DeleteAdminTenantsByIdError, type DeleteAdminTenantsByIdErrors, type DeleteAdminTenantsByIdResponses, type DeleteAdminThreadsByIdData, type DeleteAdminThreadsByIdError, type DeleteAdminThreadsByIdErrors, type DeleteAdminThreadsByIdResponses, type DeleteAdminTrainingExamplesByIdData, type DeleteAdminTrainingExamplesByIdError, type DeleteAdminTrainingExamplesByIdErrors, type DeleteAdminTrainingExamplesByIdResponses, type DeleteAdminTrainingSessionsByIdData, type DeleteAdminTrainingSessionsByIdError, type DeleteAdminTrainingSessionsByIdErrors, type DeleteAdminTrainingSessionsByIdResponses, type DeleteAdminUserProfilesByIdData, type DeleteAdminUserProfilesByIdError, type DeleteAdminUserProfilesByIdErrors, type DeleteAdminUserProfilesByIdResponses, type DeleteAdminUsersByIdData, type DeleteAdminUsersByIdError, type DeleteAdminUsersByIdErrors, type DeleteAdminUsersByIdResponses, type DeleteAdminWebhookConfigsByIdData, type DeleteAdminWebhookConfigsByIdError, type DeleteAdminWebhookConfigsByIdErrors, type DeleteAdminWebhookConfigsByIdResponses, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdData, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdError, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type DeleteAdminWorkspacesByIdData, type DeleteAdminWorkspacesByIdError, type DeleteAdminWorkspacesByIdErrors, type DeleteAdminWorkspacesByIdResponses, type DocumentBulkDeleteRequest, DocumentBulkDeleteSchema, type DocumentBulkReprocessRequest, DocumentBulkReprocessSchema, type DocumentChunk, type DocumentChunkFilter, type DocumentChunkFilterChunkIndex, type DocumentChunkFilterContent, type DocumentChunkFilterDocumentId, type DocumentChunkFilterId, type DocumentStats, type DocumentStatsFilter, type DocumentStatsFilterCompleted, type DocumentStatsFilterFailed, type DocumentStatsFilterId, type DocumentStatsFilterProcessing, type DocumentStatsFilterQueued, type DocumentStatsFilterTotal, type EmailTemplate, type EmailTemplateFilter, type EmailTemplateFilterApplicationId, type EmailTemplateFilterBodyMarkdown, type EmailTemplateFilterCategory, type EmailTemplateFilterEnabled, type EmailTemplateFilterId, type EmailTemplateFilterName, type EmailTemplateFilterPrimaryColor, type EmailTemplateFilterSlug, type EmailTemplateFilterSubject, type Embedding, type EmbeddingFilter, type EmbeddingFilterBilledCredits, type EmbeddingFilterEmbedding, type EmbeddingFilterId, type EmbeddingFilterModel, type EmbeddingFilterText, type EmbeddingFilterUsage, type ErrorResponse, type Errors, type ExtractionBatch, type ExtractionBatchFilter, type ExtractionBatchFilterId, type ExtractionBatchFilterName, type ExtractionBatchFilterStatus, type ExtractionBatchFilterUserLabel, type ExtractionDocument, type ExtractionDocumentFilter, type ExtractionDocumentFilterAvgConfidence, type ExtractionDocumentFilterBilledCredits, type ExtractionDocumentFilterBucketName, type ExtractionDocumentFilterClassification, type ExtractionDocumentFilterClassificationConfidence, type ExtractionDocumentFilterCompletedAt, type ExtractionDocumentFilterContent, type ExtractionDocumentFilterDeletedAt, type ExtractionDocumentFilterDocumentType, type ExtractionDocumentFilterDomain, type ExtractionDocumentFilterErrorMessage, type ExtractionDocumentFilterErrorStoragePath, type ExtractionDocumentFilterExcludedAt, type ExtractionDocumentFilterExcludedBy, type ExtractionDocumentFilterExcludedFromTraining, type ExtractionDocumentFilterFileHash, type ExtractionDocumentFilterFileSizeBytes, type ExtractionDocumentFilterFileType, type ExtractionDocumentFilterFilename, type ExtractionDocumentFilterId, type ExtractionDocumentFilterLastVerifiedAt, type ExtractionDocumentFilterMovedAt, type ExtractionDocumentFilterMunicipality, type ExtractionDocumentFilterOcrText, type ExtractionDocumentFilterOutputStoragePath, type ExtractionDocumentFilterPages, type ExtractionDocumentFilterPresignedViewUrl, type ExtractionDocumentFilterProcessedAt, type ExtractionDocumentFilterProgress, type ExtractionDocumentFilterQueueReason, type ExtractionDocumentFilterSchemaVersion, type ExtractionDocumentFilterStage, type ExtractionDocumentFilterState, type ExtractionDocumentFilterStatus, type ExtractionDocumentFilterStoragePath, type ExtractionDocumentFilterTrainingMetadata, type ExtractionDocumentFilterUploadUrl, type ExtractionDocumentFilterUploadedAt, type ExtractionDocumentFilterVerificationStatus, type ExtractionDocumentFilterVerifiedByUserId, type ExtractionExport, type ExtractionExportFilter, type ExtractionExportFilterConfig, type ExtractionExportFilterErrorMessage, type ExtractionExportFilterExpiresAt, type ExtractionExportFilterFileSizeBytes, type ExtractionExportFilterFileUrl, type ExtractionExportFilterFormat, type ExtractionExportFilterId, type ExtractionExportFilterStatus, type ExtractionExportFilterWorkspaceId, type ExtractionResult, type ExtractionResultFilter, type ExtractionResultFilterCharCount, type ExtractionResultFilterCreditsUsed, type ExtractionResultFilterExtractedFields, type ExtractionResultFilterExtractionMode, type ExtractionResultFilterId, type ExtractionResultFilterImageHeight, type ExtractionResultFilterImageWidth, type ExtractionResultFilterLineCount, type ExtractionResultFilterProcessingTimeMs, type ExtractionResultFilterSchemaId, type ExtractionResultFilterSchemaVersion, type ExtractionResultFilterStatus, type ExtractionResultFilterSummary, type ExtractionResultFilterWordCount, type FieldMappingConfirmation, type FieldMappingConfirmationFilter, type FieldMappingConfirmationFilterConfirmed, type FieldMappingConfirmationFilterDocumentId, type FieldMappingConfirmationFilterFieldsIgnored, type FieldMappingConfirmationFilterFieldsMapped, type FieldMappingConfirmationFilterMappingConfirmed, type FieldMappingConfirmationFilterMappingConfirmedAt, type FieldMappingConfirmationFilterSchemaUpdated, type FieldMappingConfirmationFilterSchemaVersion, type FieldMappingConfirmationFilterWorkspaceId, type FieldMappingResult, type FieldMappingResultFilter, type FieldMappingResultFilterDocumentId, type FieldMappingResultFilterId, type FieldTemplate, type FieldTemplateFilter, type FieldTemplateFilterCategory, type FieldTemplateFilterCreatedAt, type FieldTemplateFilterExtractionHints, type FieldTemplateFilterFieldType, type FieldTemplateFilterId, type FieldTemplateFilterIsSystem, type FieldTemplateFilterLlmInstructions, type FieldTemplateFilterName, type FieldTemplateFilterUpdatedAt, type FieldTemplateFilterValidationPattern, type GetAdminAccountsByIdData, type GetAdminAccountsByIdError, type GetAdminAccountsByIdErrors, type GetAdminAccountsByIdResponse, type GetAdminAccountsByIdResponses, type GetAdminAccountsByTenantByTenantIdData, type GetAdminAccountsByTenantByTenantIdError, type GetAdminAccountsByTenantByTenantIdErrors, type GetAdminAccountsByTenantByTenantIdResponse, type GetAdminAccountsByTenantByTenantIdResponses, type GetAdminAccountsData, type GetAdminAccountsError, type GetAdminAccountsErrors, type GetAdminAccountsResponse, type GetAdminAccountsResponses, type GetAdminAgentVersionsByIdData, type GetAdminAgentVersionsByIdError, type GetAdminAgentVersionsByIdErrors, type GetAdminAgentVersionsByIdMetricsData, type GetAdminAgentVersionsByIdMetricsError, type GetAdminAgentVersionsByIdMetricsErrors, type GetAdminAgentVersionsByIdMetricsResponse, type GetAdminAgentVersionsByIdMetricsResponses, type GetAdminAgentVersionsByIdResponse, type GetAdminAgentVersionsByIdResponses, type GetAdminAgentVersionsData, type GetAdminAgentVersionsError, type GetAdminAgentVersionsErrors, type GetAdminAgentVersionsResponse, type GetAdminAgentVersionsResponses, type GetAdminAgentsByIdData, type GetAdminAgentsByIdError, type GetAdminAgentsByIdErrors, type GetAdminAgentsByIdResponse, type GetAdminAgentsByIdResponses, type GetAdminAgentsByIdSchemaVersionsData, type GetAdminAgentsByIdSchemaVersionsError, type GetAdminAgentsByIdSchemaVersionsErrors, type GetAdminAgentsByIdSchemaVersionsResponse, type GetAdminAgentsByIdSchemaVersionsResponses, type GetAdminAgentsByIdStatsData, type GetAdminAgentsByIdStatsError, type GetAdminAgentsByIdStatsErrors, type GetAdminAgentsByIdStatsResponse, type GetAdminAgentsByIdStatsResponses, type GetAdminAgentsByIdTrainingStatsData, type GetAdminAgentsByIdTrainingStatsError, type GetAdminAgentsByIdTrainingStatsErrors, type GetAdminAgentsByIdTrainingStatsResponse, type GetAdminAgentsByIdTrainingStatsResponses, type GetAdminAgentsByIdUsageData, type GetAdminAgentsByIdUsageError, type GetAdminAgentsByIdUsageErrors, type GetAdminAgentsByIdUsageResponse, type GetAdminAgentsByIdUsageResponses, type GetAdminAgentsData, type GetAdminAgentsError, type GetAdminAgentsErrors, type GetAdminAgentsResponse, type GetAdminAgentsResponses, type GetAdminAgentsUsageData, type GetAdminAgentsUsageError, type GetAdminAgentsUsageErrors, type GetAdminAgentsUsageResponse, type GetAdminAgentsUsageResponses, type GetAdminAiChunksDocumentByDocumentIdData, type GetAdminAiChunksDocumentByDocumentIdError, type GetAdminAiChunksDocumentByDocumentIdErrors, type GetAdminAiChunksDocumentByDocumentIdResponse, type GetAdminAiChunksDocumentByDocumentIdResponses, type GetAdminAiConversationsByIdData, type GetAdminAiConversationsByIdError, type GetAdminAiConversationsByIdErrors, type GetAdminAiConversationsByIdResponse, type GetAdminAiConversationsByIdResponses, type GetAdminAiConversationsData, type GetAdminAiConversationsError, type GetAdminAiConversationsErrors, type GetAdminAiConversationsResponse, type GetAdminAiConversationsResponses, type GetAdminAiGraphEdgesData, type GetAdminAiGraphEdgesError, type GetAdminAiGraphEdgesErrors, type GetAdminAiGraphEdgesResponse, type GetAdminAiGraphEdgesResponses, type GetAdminAiGraphNodesBySourceNodeIdRelatedData, type GetAdminAiGraphNodesBySourceNodeIdRelatedError, type GetAdminAiGraphNodesBySourceNodeIdRelatedErrors, type GetAdminAiGraphNodesBySourceNodeIdRelatedResponse, type GetAdminAiGraphNodesBySourceNodeIdRelatedResponses, type GetAdminAiGraphNodesData, type GetAdminAiGraphNodesError, type GetAdminAiGraphNodesErrors, type GetAdminAiGraphNodesLabelByLabelData, type GetAdminAiGraphNodesLabelByLabelError, type GetAdminAiGraphNodesLabelByLabelErrors, type GetAdminAiGraphNodesLabelByLabelResponse, type GetAdminAiGraphNodesLabelByLabelResponses, type GetAdminAiGraphNodesResponse, type GetAdminAiGraphNodesResponses, type GetAdminAiMessagesData, type GetAdminAiMessagesError, type GetAdminAiMessagesErrors, type GetAdminAiMessagesResponse, type GetAdminAiMessagesResponses, type GetAdminApiKeysActiveData, type GetAdminApiKeysActiveError, type GetAdminApiKeysActiveErrors, type GetAdminApiKeysActiveResponse, type GetAdminApiKeysActiveResponses, type GetAdminApiKeysByIdData, type GetAdminApiKeysByIdError, type GetAdminApiKeysByIdErrors, type GetAdminApiKeysByIdResponse, type GetAdminApiKeysByIdResponses, type GetAdminApiKeysData, type GetAdminApiKeysError, type GetAdminApiKeysErrors, type GetAdminApiKeysResponse, type GetAdminApiKeysResponses, type GetAdminApiKeysStatsData, type GetAdminApiKeysStatsError, type GetAdminApiKeysStatsErrors, type GetAdminApiKeysStatsResponse, type GetAdminApiKeysStatsResponses, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugData, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugError, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugResponse, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses, type GetAdminApplicationsByApplicationIdEmailTemplatesData, type GetAdminApplicationsByApplicationIdEmailTemplatesError, type GetAdminApplicationsByApplicationIdEmailTemplatesErrors, type GetAdminApplicationsByApplicationIdEmailTemplatesResponse, type GetAdminApplicationsByApplicationIdEmailTemplatesResponses, type GetAdminApplicationsByIdData, type GetAdminApplicationsByIdError, type GetAdminApplicationsByIdErrors, type GetAdminApplicationsByIdResponse, type GetAdminApplicationsByIdResponses, type GetAdminApplicationsBySlugBySlugData, type GetAdminApplicationsBySlugBySlugError, type GetAdminApplicationsBySlugBySlugErrors, type GetAdminApplicationsBySlugBySlugResponse, type GetAdminApplicationsBySlugBySlugResponses, type GetAdminApplicationsCurrentData, type GetAdminApplicationsCurrentError, type GetAdminApplicationsCurrentErrors, type GetAdminApplicationsCurrentResponse, type GetAdminApplicationsCurrentResponses, type GetAdminApplicationsData, type GetAdminApplicationsError, type GetAdminApplicationsErrors, type GetAdminApplicationsResponse, type GetAdminApplicationsResponses, type GetAdminAuditLogsActivityData, type GetAdminAuditLogsActivityError, type GetAdminAuditLogsActivityErrors, type GetAdminAuditLogsActivityResponse, type GetAdminAuditLogsActivityResponses, type GetAdminAuditLogsData, type GetAdminAuditLogsError, type GetAdminAuditLogsErrors, type GetAdminAuditLogsResponse, type GetAdminAuditLogsResponses, type GetAdminBalancesByIdData, type GetAdminBalancesByIdError, type GetAdminBalancesByIdErrors, type GetAdminBalancesByIdResponse, type GetAdminBalancesByIdResponses, type GetAdminBalancesData, type GetAdminBalancesError, type GetAdminBalancesErrors, type GetAdminBalancesResponse, type GetAdminBalancesResponses, type GetAdminBucketsAllData, type GetAdminBucketsAllError, type GetAdminBucketsAllErrors, type GetAdminBucketsAllResponse, type GetAdminBucketsAllResponses, type GetAdminBucketsByIdData, type GetAdminBucketsByIdError, type GetAdminBucketsByIdErrors, type GetAdminBucketsByIdObjectsData, type GetAdminBucketsByIdObjectsError, type GetAdminBucketsByIdObjectsErrors, type GetAdminBucketsByIdObjectsResponse, type GetAdminBucketsByIdObjectsResponses, type GetAdminBucketsByIdResponse, type GetAdminBucketsByIdResponses, type GetAdminBucketsByIdStatsData, type GetAdminBucketsByIdStatsError, type GetAdminBucketsByIdStatsErrors, type GetAdminBucketsByIdStatsResponse, type GetAdminBucketsByIdStatsResponses, type GetAdminBucketsData, type GetAdminBucketsError, type GetAdminBucketsErrors, type GetAdminBucketsResponse, type GetAdminBucketsResponses, type GetAdminConfigsData, type GetAdminConfigsError, type GetAdminConfigsErrors, type GetAdminConfigsResponse, type GetAdminConfigsResponses, type GetAdminCreditPackagesByIdData, type GetAdminCreditPackagesByIdError, type GetAdminCreditPackagesByIdErrors, type GetAdminCreditPackagesByIdResponse, type GetAdminCreditPackagesByIdResponses, type GetAdminCreditPackagesData, type GetAdminCreditPackagesError, type GetAdminCreditPackagesErrors, type GetAdminCreditPackagesResponse, type GetAdminCreditPackagesResponses, type GetAdminCreditPackagesSlugBySlugData, type GetAdminCreditPackagesSlugBySlugError, type GetAdminCreditPackagesSlugBySlugErrors, type GetAdminCreditPackagesSlugBySlugResponse, type GetAdminCreditPackagesSlugBySlugResponses, type GetAdminCustomersByIdData, type GetAdminCustomersByIdError, type GetAdminCustomersByIdErrors, type GetAdminCustomersByIdResponse, type GetAdminCustomersByIdResponses, type GetAdminDocumentsStatsData, type GetAdminDocumentsStatsError, type GetAdminDocumentsStatsErrors, type GetAdminDocumentsStatsResponse, type GetAdminDocumentsStatsResponses, type GetAdminExtractionBatchesByIdData, type GetAdminExtractionBatchesByIdError, type GetAdminExtractionBatchesByIdErrors, type GetAdminExtractionBatchesByIdResponse, type GetAdminExtractionBatchesByIdResponses, type GetAdminExtractionBatchesByIdUploadUrlsData, type GetAdminExtractionBatchesByIdUploadUrlsError, type GetAdminExtractionBatchesByIdUploadUrlsErrors, type GetAdminExtractionBatchesByIdUploadUrlsResponse, type GetAdminExtractionBatchesByIdUploadUrlsResponses, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdData, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdError, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdErrors, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdResponse, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdResponses, type GetAdminExtractionDocumentsByIdData, type GetAdminExtractionDocumentsByIdError, type GetAdminExtractionDocumentsByIdErrors, type GetAdminExtractionDocumentsByIdResponse, type GetAdminExtractionDocumentsByIdResponses, type GetAdminExtractionDocumentsByIdStatusData, type GetAdminExtractionDocumentsByIdStatusError, type GetAdminExtractionDocumentsByIdStatusErrors, type GetAdminExtractionDocumentsByIdStatusResponse, type GetAdminExtractionDocumentsByIdStatusResponses, type GetAdminExtractionDocumentsByIdViewData, type GetAdminExtractionDocumentsByIdViewError, type GetAdminExtractionDocumentsByIdViewErrors, type GetAdminExtractionDocumentsByIdViewResponse, type GetAdminExtractionDocumentsByIdViewResponses, type GetAdminExtractionDocumentsData, type GetAdminExtractionDocumentsError, type GetAdminExtractionDocumentsErrors, type GetAdminExtractionDocumentsResponse, type GetAdminExtractionDocumentsResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedResponses, type GetAdminExtractionResultsByIdData, type GetAdminExtractionResultsByIdError, type GetAdminExtractionResultsByIdErrors, type GetAdminExtractionResultsByIdResponse, type GetAdminExtractionResultsByIdResponses, type GetAdminExtractionResultsData, type GetAdminExtractionResultsDocumentByDocumentIdData, type GetAdminExtractionResultsDocumentByDocumentIdError, type GetAdminExtractionResultsDocumentByDocumentIdErrors, type GetAdminExtractionResultsDocumentByDocumentIdResponse, type GetAdminExtractionResultsDocumentByDocumentIdResponses, type GetAdminExtractionResultsError, type GetAdminExtractionResultsErrors, type GetAdminExtractionResultsResponse, type GetAdminExtractionResultsResponses, type GetAdminExtractionResultsWorkspaceByWorkspaceIdData, type GetAdminExtractionResultsWorkspaceByWorkspaceIdError, type GetAdminExtractionResultsWorkspaceByWorkspaceIdErrors, type GetAdminExtractionResultsWorkspaceByWorkspaceIdResponse, type GetAdminExtractionResultsWorkspaceByWorkspaceIdResponses, type GetAdminExtractionSchemaDiscoveriesByIdData, type GetAdminExtractionSchemaDiscoveriesByIdError, type GetAdminExtractionSchemaDiscoveriesByIdErrors, type GetAdminExtractionSchemaDiscoveriesByIdResponse, type GetAdminExtractionSchemaDiscoveriesByIdResponses, type GetAdminFieldTemplatesByIdData, type GetAdminFieldTemplatesByIdError, type GetAdminFieldTemplatesByIdErrors, type GetAdminFieldTemplatesByIdResponse, type GetAdminFieldTemplatesByIdResponses, type GetAdminFieldTemplatesData, type GetAdminFieldTemplatesError, type GetAdminFieldTemplatesErrors, type GetAdminFieldTemplatesResponse, type GetAdminFieldTemplatesResponses, type GetAdminInvitationsConsumeByTokenData, type GetAdminInvitationsConsumeByTokenError, type GetAdminInvitationsConsumeByTokenErrors, type GetAdminInvitationsConsumeByTokenResponse, type GetAdminInvitationsConsumeByTokenResponses, type GetAdminInvitationsData, type GetAdminInvitationsError, type GetAdminInvitationsErrors, type GetAdminInvitationsMeData, type GetAdminInvitationsMeError, type GetAdminInvitationsMeErrors, type GetAdminInvitationsMeResponse, type GetAdminInvitationsMeResponses, type GetAdminInvitationsResponse, type GetAdminInvitationsResponses, type GetAdminIsvRevenueByIdData, type GetAdminIsvRevenueByIdError, type GetAdminIsvRevenueByIdErrors, type GetAdminIsvRevenueByIdResponse, type GetAdminIsvRevenueByIdResponses, type GetAdminIsvRevenueData, type GetAdminIsvRevenueError, type GetAdminIsvRevenueErrors, type GetAdminIsvRevenueResponse, type GetAdminIsvRevenueResponses, type GetAdminIsvSettlementsByIdData, type GetAdminIsvSettlementsByIdError, type GetAdminIsvSettlementsByIdErrors, type GetAdminIsvSettlementsByIdResponse, type GetAdminIsvSettlementsByIdResponses, type GetAdminIsvSettlementsData, type GetAdminIsvSettlementsError, type GetAdminIsvSettlementsErrors, type GetAdminIsvSettlementsResponse, type GetAdminIsvSettlementsResponses, type GetAdminLedgerByAccountByAccountIdData, type GetAdminLedgerByAccountByAccountIdError, type GetAdminLedgerByAccountByAccountIdErrors, type GetAdminLedgerByAccountByAccountIdResponse, type GetAdminLedgerByAccountByAccountIdResponses, type GetAdminLedgerByIdData, type GetAdminLedgerByIdError, type GetAdminLedgerByIdErrors, type GetAdminLedgerByIdResponse, type GetAdminLedgerByIdResponses, type GetAdminLedgerData, type GetAdminLedgerError, type GetAdminLedgerErrors, type GetAdminLedgerResponse, type GetAdminLedgerResponses, type GetAdminLlmAnalyticsByIdData, type GetAdminLlmAnalyticsByIdError, type GetAdminLlmAnalyticsByIdErrors, type GetAdminLlmAnalyticsByIdResponse, type GetAdminLlmAnalyticsByIdResponses, type GetAdminLlmAnalyticsCostsData, type GetAdminLlmAnalyticsCostsError, type GetAdminLlmAnalyticsCostsErrors, type GetAdminLlmAnalyticsCostsResponse, type GetAdminLlmAnalyticsCostsResponses, type GetAdminLlmAnalyticsData, type GetAdminLlmAnalyticsError, type GetAdminLlmAnalyticsErrors, type GetAdminLlmAnalyticsPlatformData, type GetAdminLlmAnalyticsPlatformError, type GetAdminLlmAnalyticsPlatformErrors, type GetAdminLlmAnalyticsPlatformResponse, type GetAdminLlmAnalyticsPlatformResponses, type GetAdminLlmAnalyticsResponse, type GetAdminLlmAnalyticsResponses, type GetAdminLlmAnalyticsSummaryData, type GetAdminLlmAnalyticsSummaryError, type GetAdminLlmAnalyticsSummaryErrors, type GetAdminLlmAnalyticsSummaryResponse, type GetAdminLlmAnalyticsSummaryResponses, type GetAdminLlmAnalyticsUsageData, type GetAdminLlmAnalyticsUsageError, type GetAdminLlmAnalyticsUsageErrors, type GetAdminLlmAnalyticsUsageResponse, type GetAdminLlmAnalyticsUsageResponses, type GetAdminLlmAnalyticsWorkspaceData, type GetAdminLlmAnalyticsWorkspaceError, type GetAdminLlmAnalyticsWorkspaceErrors, type GetAdminLlmAnalyticsWorkspaceResponse, type GetAdminLlmAnalyticsWorkspaceResponses, type GetAdminMessagesByIdData, type GetAdminMessagesByIdError, type GetAdminMessagesByIdErrors, type GetAdminMessagesByIdResponse, type GetAdminMessagesByIdResponses, type GetAdminMessagesData, type GetAdminMessagesError, type GetAdminMessagesErrors, type GetAdminMessagesResponse, type GetAdminMessagesResponses, type GetAdminMessagesSearchData, type GetAdminMessagesSearchError, type GetAdminMessagesSearchErrors, type GetAdminMessagesSearchResponse, type GetAdminMessagesSearchResponses, type GetAdminMessagesSemanticSearchData, type GetAdminMessagesSemanticSearchError, type GetAdminMessagesSemanticSearchErrors, type GetAdminMessagesSemanticSearchResponse, type GetAdminMessagesSemanticSearchResponses, type GetAdminNotificationLogsByIdData, type GetAdminNotificationLogsByIdError, type GetAdminNotificationLogsByIdErrors, type GetAdminNotificationLogsByIdResponse, type GetAdminNotificationLogsByIdResponses, type GetAdminNotificationLogsData, type GetAdminNotificationLogsError, type GetAdminNotificationLogsErrors, type GetAdminNotificationLogsResponse, type GetAdminNotificationLogsResponses, type GetAdminNotificationLogsStatsData, type GetAdminNotificationLogsStatsError, type GetAdminNotificationLogsStatsErrors, type GetAdminNotificationLogsStatsResponse, type GetAdminNotificationLogsStatsResponses, type GetAdminNotificationMethodsByIdData, type GetAdminNotificationMethodsByIdError, type GetAdminNotificationMethodsByIdErrors, type GetAdminNotificationMethodsByIdResponse, type GetAdminNotificationMethodsByIdResponses, type GetAdminNotificationMethodsData, type GetAdminNotificationMethodsError, type GetAdminNotificationMethodsErrors, type GetAdminNotificationMethodsResponse, type GetAdminNotificationMethodsResponses, type GetAdminNotificationPreferencesByIdData, type GetAdminNotificationPreferencesByIdError, type GetAdminNotificationPreferencesByIdErrors, type GetAdminNotificationPreferencesByIdResponse, type GetAdminNotificationPreferencesByIdResponses, type GetAdminNotificationPreferencesData, type GetAdminNotificationPreferencesError, type GetAdminNotificationPreferencesErrors, type GetAdminNotificationPreferencesResponse, type GetAdminNotificationPreferencesResponses, type GetAdminObjectsByIdData, type GetAdminObjectsByIdError, type GetAdminObjectsByIdErrors, type GetAdminObjectsByIdResponse, type GetAdminObjectsByIdResponses, type GetAdminObjectsData, type GetAdminObjectsError, type GetAdminObjectsErrors, type GetAdminObjectsResponse, type GetAdminObjectsResponses, type GetAdminPaymentMethodsByIdData, type GetAdminPaymentMethodsByIdError, type GetAdminPaymentMethodsByIdErrors, type GetAdminPaymentMethodsByIdResponse, type GetAdminPaymentMethodsByIdResponses, type GetAdminPaymentMethodsData, type GetAdminPaymentMethodsError, type GetAdminPaymentMethodsErrors, type GetAdminPaymentMethodsResponse, type GetAdminPaymentMethodsResponses, type GetAdminPermissionsData, type GetAdminPermissionsError, type GetAdminPermissionsErrors, type GetAdminPermissionsPresetsData, type GetAdminPermissionsPresetsError, type GetAdminPermissionsPresetsErrors, type GetAdminPermissionsPresetsResponse, type GetAdminPermissionsPresetsResponses, type GetAdminPermissionsResponse, type GetAdminPermissionsResponses, type GetAdminPlansByIdData, type GetAdminPlansByIdError, type GetAdminPlansByIdErrors, type GetAdminPlansByIdResponse, type GetAdminPlansByIdResponses, type GetAdminPlansData, type GetAdminPlansError, type GetAdminPlansErrors, type GetAdminPlansResponse, type GetAdminPlansResponses, type GetAdminPlansSlugBySlugData, type GetAdminPlansSlugBySlugError, type GetAdminPlansSlugBySlugErrors, type GetAdminPlansSlugBySlugResponse, type GetAdminPlansSlugBySlugResponses, type GetAdminPricingRulesByIdData, type GetAdminPricingRulesByIdError, type GetAdminPricingRulesByIdErrors, type GetAdminPricingRulesByIdResponse, type GetAdminPricingRulesByIdResponses, type GetAdminPricingRulesData, type GetAdminPricingRulesError, type GetAdminPricingRulesErrors, type GetAdminPricingRulesResolveData, type GetAdminPricingRulesResolveError, type GetAdminPricingRulesResolveErrors, type GetAdminPricingRulesResolveResponse, type GetAdminPricingRulesResolveResponses, type GetAdminPricingRulesResponse, type GetAdminPricingRulesResponses, type GetAdminPricingStrategiesByIdData, type GetAdminPricingStrategiesByIdError, type GetAdminPricingStrategiesByIdErrors, type GetAdminPricingStrategiesByIdResponse, type GetAdminPricingStrategiesByIdResponses, type GetAdminPricingStrategiesData, type GetAdminPricingStrategiesError, type GetAdminPricingStrategiesErrors, type GetAdminPricingStrategiesResponse, type GetAdminPricingStrategiesResponses, type GetAdminSearchAnalyticsData, type GetAdminSearchAnalyticsError, type GetAdminSearchAnalyticsErrors, type GetAdminSearchAnalyticsResponse, type GetAdminSearchAnalyticsResponses, type GetAdminSearchAnalyticsSummaryData, type GetAdminSearchAnalyticsSummaryError, type GetAdminSearchAnalyticsSummaryErrors, type GetAdminSearchAnalyticsSummaryResponse, type GetAdminSearchAnalyticsSummaryResponses, type GetAdminSearchData, type GetAdminSearchError, type GetAdminSearchErrors, type GetAdminSearchHealthData, type GetAdminSearchHealthError, type GetAdminSearchHealthErrors, type GetAdminSearchHealthResponse, type GetAdminSearchHealthResponses, type GetAdminSearchIndexesData, type GetAdminSearchIndexesError, type GetAdminSearchIndexesErrors, type GetAdminSearchIndexesResponse, type GetAdminSearchIndexesResponses, type GetAdminSearchResponse, type GetAdminSearchResponses, type GetAdminSearchSavedData, type GetAdminSearchSavedError, type GetAdminSearchSavedErrors, type GetAdminSearchSavedResponse, type GetAdminSearchSavedResponses, type GetAdminSearchSemanticData, type GetAdminSearchSemanticError, type GetAdminSearchSemanticErrors, type GetAdminSearchSemanticResponse, type GetAdminSearchSemanticResponses, type GetAdminSearchStatsData, type GetAdminSearchStatsError, type GetAdminSearchStatsErrors, type GetAdminSearchStatsResponse, type GetAdminSearchStatsResponses, type GetAdminSearchStatusData, type GetAdminSearchStatusError, type GetAdminSearchStatusErrors, type GetAdminSearchStatusResponse, type GetAdminSearchStatusResponses, type GetAdminSearchSuggestData, type GetAdminSearchSuggestError, type GetAdminSearchSuggestErrors, type GetAdminSearchSuggestResponse, type GetAdminSearchSuggestResponses, type GetAdminSettlementsByIdData, type GetAdminSettlementsByIdError, type GetAdminSettlementsByIdErrors, type GetAdminSettlementsByIdResponse, type GetAdminSettlementsByIdResponses, type GetAdminSettlementsData, type GetAdminSettlementsError, type GetAdminSettlementsErrors, type GetAdminSettlementsResponse, type GetAdminSettlementsResponses, type GetAdminStorageStatsData, type GetAdminStorageStatsError, type GetAdminStorageStatsErrors, type GetAdminStorageStatsResponse, type GetAdminStorageStatsResponses, type GetAdminStorageStatsTenantByTenantIdData, type GetAdminStorageStatsTenantByTenantIdError, type GetAdminStorageStatsTenantByTenantIdErrors, type GetAdminStorageStatsTenantByTenantIdResponse, type GetAdminStorageStatsTenantByTenantIdResponses, type GetAdminSubscriptionsByIdData, type GetAdminSubscriptionsByIdError, type GetAdminSubscriptionsByIdErrors, type GetAdminSubscriptionsByIdResponse, type GetAdminSubscriptionsByIdResponses, type GetAdminSubscriptionsByTenantByTenantIdData, type GetAdminSubscriptionsByTenantByTenantIdError, type GetAdminSubscriptionsByTenantByTenantIdErrors, type GetAdminSubscriptionsByTenantByTenantIdResponse, type GetAdminSubscriptionsByTenantByTenantIdResponses, type GetAdminSubscriptionsData, type GetAdminSubscriptionsError, type GetAdminSubscriptionsErrors, type GetAdminSubscriptionsResponse, type GetAdminSubscriptionsResponses, type GetAdminSysAiConfigByIdData, type GetAdminSysAiConfigByIdError, type GetAdminSysAiConfigByIdErrors, type GetAdminSysAiConfigByIdResponse, type GetAdminSysAiConfigByIdResponses, type GetAdminSysAiConfigData, type GetAdminSysAiConfigError, type GetAdminSysAiConfigErrors, type GetAdminSysAiConfigResponse, type GetAdminSysAiConfigResponses, type GetAdminSysSemanticCacheByIdData, type GetAdminSysSemanticCacheByIdError, type GetAdminSysSemanticCacheByIdErrors, type GetAdminSysSemanticCacheByIdResponse, type GetAdminSysSemanticCacheByIdResponses, type GetAdminSystemMessagesByIdData, type GetAdminSystemMessagesByIdError, type GetAdminSystemMessagesByIdErrors, type GetAdminSystemMessagesByIdResponse, type GetAdminSystemMessagesByIdResponses, type GetAdminSystemMessagesData, type GetAdminSystemMessagesError, type GetAdminSystemMessagesErrors, type GetAdminSystemMessagesResponse, type GetAdminSystemMessagesResponses, type GetAdminTenantMembershipsData, type GetAdminTenantMembershipsError, type GetAdminTenantMembershipsErrors, type GetAdminTenantMembershipsResponse, type GetAdminTenantMembershipsResponses, type GetAdminTenantPricingOverridesByIdData, type GetAdminTenantPricingOverridesByIdError, type GetAdminTenantPricingOverridesByIdErrors, type GetAdminTenantPricingOverridesByIdResponse, type GetAdminTenantPricingOverridesByIdResponses, type GetAdminTenantPricingOverridesData, type GetAdminTenantPricingOverridesError, type GetAdminTenantPricingOverridesErrors, type GetAdminTenantPricingOverridesResponse, type GetAdminTenantPricingOverridesResponses, type GetAdminTenantsByIdData, type GetAdminTenantsByIdError, type GetAdminTenantsByIdErrors, type GetAdminTenantsByIdResponse, type GetAdminTenantsByIdResponses, type GetAdminTenantsByTenantIdDocumentStatsData, type GetAdminTenantsByTenantIdDocumentStatsError, type GetAdminTenantsByTenantIdDocumentStatsErrors, type GetAdminTenantsByTenantIdDocumentStatsResponse, type GetAdminTenantsByTenantIdDocumentStatsResponses, type GetAdminTenantsByTenantIdStatsData, type GetAdminTenantsByTenantIdStatsError, type GetAdminTenantsByTenantIdStatsErrors, type GetAdminTenantsByTenantIdStatsResponse, type GetAdminTenantsByTenantIdStatsResponses, type GetAdminTenantsByTenantIdWorkspaceStatsData, type GetAdminTenantsByTenantIdWorkspaceStatsError, type GetAdminTenantsByTenantIdWorkspaceStatsErrors, type GetAdminTenantsByTenantIdWorkspaceStatsResponse, type GetAdminTenantsByTenantIdWorkspaceStatsResponses, type GetAdminTenantsData, type GetAdminTenantsError, type GetAdminTenantsErrors, type GetAdminTenantsResponse, type GetAdminTenantsResponses, type GetAdminThreadsByIdData, type GetAdminThreadsByIdError, type GetAdminThreadsByIdErrors, type GetAdminThreadsByIdMessagesData, type GetAdminThreadsByIdMessagesError, type GetAdminThreadsByIdMessagesErrors, type GetAdminThreadsByIdMessagesResponse, type GetAdminThreadsByIdMessagesResponses, type GetAdminThreadsByIdResponse, type GetAdminThreadsByIdResponses, type GetAdminThreadsData, type GetAdminThreadsError, type GetAdminThreadsErrors, type GetAdminThreadsResponse, type GetAdminThreadsResponses, type GetAdminThreadsSearchData, type GetAdminThreadsSearchError, type GetAdminThreadsSearchErrors, type GetAdminThreadsSearchResponse, type GetAdminThreadsSearchResponses, type GetAdminThreadsStatsData, type GetAdminThreadsStatsError, type GetAdminThreadsStatsErrors, type GetAdminThreadsStatsResponse, type GetAdminThreadsStatsResponses, type GetAdminThreadsWorkspaceStatsData, type GetAdminThreadsWorkspaceStatsError, type GetAdminThreadsWorkspaceStatsErrors, type GetAdminThreadsWorkspaceStatsResponse, type GetAdminThreadsWorkspaceStatsResponses, type GetAdminTrainingExamplesByIdData, type GetAdminTrainingExamplesByIdError, type GetAdminTrainingExamplesByIdErrors, type GetAdminTrainingExamplesByIdResponse, type GetAdminTrainingExamplesByIdResponses, type GetAdminTrainingExamplesData, type GetAdminTrainingExamplesError, type GetAdminTrainingExamplesErrors, type GetAdminTrainingExamplesResponse, type GetAdminTrainingExamplesResponses, type GetAdminTrainingSessionsAgentsByAgentIdSessionsData, type GetAdminTrainingSessionsAgentsByAgentIdSessionsError, type GetAdminTrainingSessionsAgentsByAgentIdSessionsErrors, type GetAdminTrainingSessionsAgentsByAgentIdSessionsResponse, type GetAdminTrainingSessionsAgentsByAgentIdSessionsResponses, type GetAdminTrainingSessionsByIdData, type GetAdminTrainingSessionsByIdError, type GetAdminTrainingSessionsByIdErrors, type GetAdminTrainingSessionsByIdResponse, type GetAdminTrainingSessionsByIdResponses, type GetAdminTransactionsByIdData, type GetAdminTransactionsByIdError, type GetAdminTransactionsByIdErrors, type GetAdminTransactionsByIdResponse, type GetAdminTransactionsByIdResponses, type GetAdminTransactionsData, type GetAdminTransactionsError, type GetAdminTransactionsErrors, type GetAdminTransactionsResponse, type GetAdminTransactionsResponses, type GetAdminTransfersByIdData, type GetAdminTransfersByIdError, type GetAdminTransfersByIdErrors, type GetAdminTransfersByIdResponse, type GetAdminTransfersByIdResponses, type GetAdminTransfersData, type GetAdminTransfersError, type GetAdminTransfersErrors, type GetAdminTransfersResponse, type GetAdminTransfersResponses, type GetAdminUserProfilesByIdData, type GetAdminUserProfilesByIdError, type GetAdminUserProfilesByIdErrors, type GetAdminUserProfilesByIdResponse, type GetAdminUserProfilesByIdResponses, type GetAdminUserProfilesData, type GetAdminUserProfilesError, type GetAdminUserProfilesErrors, type GetAdminUserProfilesMeData, type GetAdminUserProfilesMeError, type GetAdminUserProfilesMeErrors, type GetAdminUserProfilesMeResponse, type GetAdminUserProfilesMeResponses, type GetAdminUserProfilesResponse, type GetAdminUserProfilesResponses, type GetAdminUsersByEmailData, type GetAdminUsersByEmailError, type GetAdminUsersByEmailErrors, type GetAdminUsersByEmailResponse, type GetAdminUsersByEmailResponses, type GetAdminUsersByIdData, type GetAdminUsersByIdError, type GetAdminUsersByIdErrors, type GetAdminUsersByIdResponse, type GetAdminUsersByIdResponses, type GetAdminUsersData, type GetAdminUsersError, type GetAdminUsersErrors, type GetAdminUsersMeActivityData, type GetAdminUsersMeActivityError, type GetAdminUsersMeActivityErrors, type GetAdminUsersMeActivityResponse, type GetAdminUsersMeActivityResponses, type GetAdminUsersMeDashboardData, type GetAdminUsersMeDashboardError, type GetAdminUsersMeDashboardErrors, type GetAdminUsersMeDashboardResponse, type GetAdminUsersMeDashboardResponses, type GetAdminUsersMeData, type GetAdminUsersMeError, type GetAdminUsersMeErrors, type GetAdminUsersMeResponse, type GetAdminUsersMeResponses, type GetAdminUsersMeStatsData, type GetAdminUsersMeStatsError, type GetAdminUsersMeStatsErrors, type GetAdminUsersMeStatsResponse, type GetAdminUsersMeStatsResponses, type GetAdminUsersMeTenantsData, type GetAdminUsersMeTenantsError, type GetAdminUsersMeTenantsErrors, type GetAdminUsersMeTenantsResponse, type GetAdminUsersMeTenantsResponses, type GetAdminUsersResponse, type GetAdminUsersResponses, type GetAdminWalletData, type GetAdminWalletError, type GetAdminWalletErrors, type GetAdminWalletResponse, type GetAdminWalletResponses, type GetAdminWalletStorageBreakdownData, type GetAdminWalletStorageBreakdownError, type GetAdminWalletStorageBreakdownErrors, type GetAdminWalletStorageBreakdownResponse, type GetAdminWalletStorageBreakdownResponses, type GetAdminWalletUsageBreakdownData, type GetAdminWalletUsageBreakdownError, type GetAdminWalletUsageBreakdownErrors, type GetAdminWalletUsageBreakdownResponse, type GetAdminWalletUsageBreakdownResponses, type GetAdminWalletUsageData, type GetAdminWalletUsageError, type GetAdminWalletUsageErrors, type GetAdminWalletUsageResponse, type GetAdminWalletUsageResponses, type GetAdminWebhookConfigsByIdData, type GetAdminWebhookConfigsByIdError, type GetAdminWebhookConfigsByIdErrors, type GetAdminWebhookConfigsByIdEventsData, type GetAdminWebhookConfigsByIdEventsError, type GetAdminWebhookConfigsByIdEventsErrors, type GetAdminWebhookConfigsByIdEventsResponse, type GetAdminWebhookConfigsByIdEventsResponses, type GetAdminWebhookConfigsByIdResponse, type GetAdminWebhookConfigsByIdResponses, type GetAdminWebhookConfigsData, type GetAdminWebhookConfigsError, type GetAdminWebhookConfigsErrors, type GetAdminWebhookConfigsResponse, type GetAdminWebhookConfigsResponses, type GetAdminWebhookConfigsStatsData, type GetAdminWebhookConfigsStatsError, type GetAdminWebhookConfigsStatsErrors, type GetAdminWebhookConfigsStatsResponse, type GetAdminWebhookConfigsStatsResponses, type GetAdminWebhookDeliveriesByIdData, type GetAdminWebhookDeliveriesByIdError, type GetAdminWebhookDeliveriesByIdErrors, type GetAdminWebhookDeliveriesByIdResponse, type GetAdminWebhookDeliveriesByIdResponses, type GetAdminWebhookDeliveriesData, type GetAdminWebhookDeliveriesError, type GetAdminWebhookDeliveriesErrors, type GetAdminWebhookDeliveriesResponse, type GetAdminWebhookDeliveriesResponses, type GetAdminWebhookDeliveriesStatsData, type GetAdminWebhookDeliveriesStatsError, type GetAdminWebhookDeliveriesStatsErrors, type GetAdminWebhookDeliveriesStatsResponse, type GetAdminWebhookDeliveriesStatsResponses, type GetAdminWholesaleAgreementsByIdData, type GetAdminWholesaleAgreementsByIdError, type GetAdminWholesaleAgreementsByIdErrors, type GetAdminWholesaleAgreementsByIdResponse, type GetAdminWholesaleAgreementsByIdResponses, type GetAdminWholesaleAgreementsData, type GetAdminWholesaleAgreementsError, type GetAdminWholesaleAgreementsErrors, type GetAdminWholesaleAgreementsResponse, type GetAdminWholesaleAgreementsResponses, type GetAdminWorkspaceMembershipsData, type GetAdminWorkspaceMembershipsError, type GetAdminWorkspaceMembershipsErrors, type GetAdminWorkspaceMembershipsResponse, type GetAdminWorkspaceMembershipsResponses, type GetAdminWorkspacesAnalyticsBatchData, type GetAdminWorkspacesAnalyticsBatchError, type GetAdminWorkspacesAnalyticsBatchErrors, type GetAdminWorkspacesAnalyticsBatchResponse, type GetAdminWorkspacesAnalyticsBatchResponses, type GetAdminWorkspacesByIdData, type GetAdminWorkspacesByIdError, type GetAdminWorkspacesByIdErrors, type GetAdminWorkspacesByIdMembersData, type GetAdminWorkspacesByIdMembersError, type GetAdminWorkspacesByIdMembersErrors, type GetAdminWorkspacesByIdMembersResponse, type GetAdminWorkspacesByIdMembersResponses, type GetAdminWorkspacesByIdResponse, type GetAdminWorkspacesByIdResponses, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingError, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponse, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdData, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdError, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdErrors, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdResponse, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdResponses, type GetAdminWorkspacesByWorkspaceIdExtractionExportsData, type GetAdminWorkspacesByWorkspaceIdExtractionExportsError, type GetAdminWorkspacesByWorkspaceIdExtractionExportsErrors, type GetAdminWorkspacesByWorkspaceIdExtractionExportsResponse, type GetAdminWorkspacesByWorkspaceIdExtractionExportsResponses, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsData, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsError, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsErrors, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsResponse, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsResponses, type GetAdminWorkspacesData, type GetAdminWorkspacesError, type GetAdminWorkspacesErrors, type GetAdminWorkspacesMineData, type GetAdminWorkspacesMineError, type GetAdminWorkspacesMineErrors, type GetAdminWorkspacesMineResponse, type GetAdminWorkspacesMineResponses, type GetAdminWorkspacesResponse, type GetAdminWorkspacesResponses, type GetAdminWorkspacesSharedData, type GetAdminWorkspacesSharedError, type GetAdminWorkspacesSharedErrors, type GetAdminWorkspacesSharedResponse, type GetAdminWorkspacesSharedResponses, GptAdmin, GptCoreError, type GraphEdge, type GraphEdgeFilter, type GraphEdgeFilterDocumentId, type GraphEdgeFilterId, type GraphEdgeFilterProperties, type GraphEdgeFilterRelationship, type GraphEdgeFilterSourceId, type GraphEdgeFilterTargetId, type GraphNode, type GraphNodeFilter, type GraphNodeFilterDocumentId, type GraphNodeFilterId, type GraphNodeFilterLabel, type GraphNodeFilterProperties, type GraphNodeFilterTenantId, type Invitation, type InvitationFilter, type InvitationFilterCustomMessage, type InvitationFilterEmail, type InvitationFilterExpiresAt, type InvitationFilterId, type InvitationFilterInviterId, type InvitationFilterRole, type InvitationFilterScopeId, type InvitationFilterScopeType, type InvitationFilterStatus, type InvitationFilterTenantId, type Invoice, type InvoiceFilter, type InvoiceFilterAmountDue, type InvoiceFilterAmountPaid, type InvoiceFilterCreatedAt, type InvoiceFilterCurrency, type InvoiceFilterDueDate, type InvoiceFilterId, type InvoiceFilterInvoiceNumber, type InvoiceFilterPdfUrl, type InvoiceFilterStatus, type IsvRevenue, type IsvRevenueFilter, type IsvRevenueFilterId, type IsvSettlement, type IsvSettlementFilter, type IsvSettlementFilterId, type Ledger, type LedgerFilter, type LedgerFilterApplicationId, type LedgerFilterId, type LedgerFilterMetadata, type Link, type Links, type LlmAnalytics, type LlmAnalyticsFilter, type LlmAnalyticsFilterId, type Message, type MessageFilter, type MessageFilterContent, type MessageFilterId, type MessageFilterRole, NetworkError, NotFoundError, type NotificationLog, type NotificationLogFilter, type NotificationLogFilterId, type NotificationMethod, type NotificationMethodFilter, type NotificationMethodFilterConfig, type NotificationMethodFilterId, type NotificationMethodFilterIsPrimary, type NotificationMethodFilterName, type NotificationMethodFilterType, type NotificationMethodFilterUserId, type NotificationMethodFilterVerificationSentAt, type NotificationMethodFilterVerifiedAt, type NotificationPreference, type NotificationPreferenceFilter, type NotificationPreferenceFilterId, type ObjectFilter, type ObjectFilterContentType, type ObjectFilterId, type ObjectFilterKey, type ObjectFilterSizeBytes, type ObjectType, type OperationSuccess, type OperationSuccessFilter, type OperationSuccessFilterId, type OperationSuccessFilterMessage, type OperationSuccessFilterSuccess, type PatchAdminAccountsByIdCreditData, type PatchAdminAccountsByIdCreditError, type PatchAdminAccountsByIdCreditErrors, type PatchAdminAccountsByIdCreditResponse, type PatchAdminAccountsByIdCreditResponses, type PatchAdminAccountsByIdDebitData, type PatchAdminAccountsByIdDebitError, type PatchAdminAccountsByIdDebitErrors, type PatchAdminAccountsByIdDebitResponse, type PatchAdminAccountsByIdDebitResponses, type PatchAdminAgentsByIdSchemaVersionsByVersionIdData, type PatchAdminAgentsByIdSchemaVersionsByVersionIdError, type PatchAdminAgentsByIdSchemaVersionsByVersionIdErrors, type PatchAdminAgentsByIdSchemaVersionsByVersionIdResponse, type PatchAdminAgentsByIdSchemaVersionsByVersionIdResponses, type PatchAdminAiConversationsByIdData, type PatchAdminAiConversationsByIdError, type PatchAdminAiConversationsByIdErrors, type PatchAdminAiConversationsByIdResponse, type PatchAdminAiConversationsByIdResponses, type PatchAdminApiKeysByIdAllocateData, type PatchAdminApiKeysByIdAllocateError, type PatchAdminApiKeysByIdAllocateErrors, type PatchAdminApiKeysByIdAllocateResponse, type PatchAdminApiKeysByIdAllocateResponses, type PatchAdminApiKeysByIdData, type PatchAdminApiKeysByIdError, type PatchAdminApiKeysByIdErrors, type PatchAdminApiKeysByIdResetPeriodData, type PatchAdminApiKeysByIdResetPeriodError, type PatchAdminApiKeysByIdResetPeriodErrors, type PatchAdminApiKeysByIdResetPeriodResponse, type PatchAdminApiKeysByIdResetPeriodResponses, type PatchAdminApiKeysByIdResponse, type PatchAdminApiKeysByIdResponses, type PatchAdminApiKeysByIdRevokeData, type PatchAdminApiKeysByIdRevokeError, type PatchAdminApiKeysByIdRevokeErrors, type PatchAdminApiKeysByIdRevokeResponse, type PatchAdminApiKeysByIdRevokeResponses, type PatchAdminApiKeysByIdRotateData, type PatchAdminApiKeysByIdRotateError, type PatchAdminApiKeysByIdRotateErrors, type PatchAdminApiKeysByIdRotateResponse, type PatchAdminApiKeysByIdRotateResponses, type PatchAdminApiKeysByIdSetBudgetData, type PatchAdminApiKeysByIdSetBudgetError, type PatchAdminApiKeysByIdSetBudgetErrors, type PatchAdminApiKeysByIdSetBudgetResponse, type PatchAdminApiKeysByIdSetBudgetResponses, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugData, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugError, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugResponse, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses, type PatchAdminApplicationsByIdAllocateCreditsData, type PatchAdminApplicationsByIdAllocateCreditsError, type PatchAdminApplicationsByIdAllocateCreditsErrors, type PatchAdminApplicationsByIdAllocateCreditsResponse, type PatchAdminApplicationsByIdAllocateCreditsResponses, type PatchAdminApplicationsByIdData, type PatchAdminApplicationsByIdError, type PatchAdminApplicationsByIdErrors, type PatchAdminApplicationsByIdGrantCreditsData, type PatchAdminApplicationsByIdGrantCreditsError, type PatchAdminApplicationsByIdGrantCreditsErrors, type PatchAdminApplicationsByIdGrantCreditsResponse, type PatchAdminApplicationsByIdGrantCreditsResponses, type PatchAdminApplicationsByIdResponse, type PatchAdminApplicationsByIdResponses, type PatchAdminBucketsByIdData, type PatchAdminBucketsByIdError, type PatchAdminBucketsByIdErrors, type PatchAdminBucketsByIdResponse, type PatchAdminBucketsByIdResponses, type PatchAdminConfigsByKeyData, type PatchAdminConfigsByKeyError, type PatchAdminConfigsByKeyErrors, type PatchAdminConfigsByKeyResponse, type PatchAdminConfigsByKeyResponses, type PatchAdminCreditPackagesByIdData, type PatchAdminCreditPackagesByIdError, type PatchAdminCreditPackagesByIdErrors, type PatchAdminCreditPackagesByIdResponse, type PatchAdminCreditPackagesByIdResponses, type PatchAdminCustomersByIdData, type PatchAdminCustomersByIdError, type PatchAdminCustomersByIdErrors, type PatchAdminCustomersByIdResponse, type PatchAdminCustomersByIdResponses, type PatchAdminExtractionDocumentsByIdCancelData, type PatchAdminExtractionDocumentsByIdCancelError, type PatchAdminExtractionDocumentsByIdCancelErrors, type PatchAdminExtractionDocumentsByIdCancelResponse, type PatchAdminExtractionDocumentsByIdCancelResponses, type PatchAdminExtractionDocumentsByIdDismissData, type PatchAdminExtractionDocumentsByIdDismissError, type PatchAdminExtractionDocumentsByIdDismissErrors, type PatchAdminExtractionDocumentsByIdDismissResponse, type PatchAdminExtractionDocumentsByIdDismissResponses, type PatchAdminExtractionDocumentsByIdDismissTrainingData, type PatchAdminExtractionDocumentsByIdDismissTrainingError, type PatchAdminExtractionDocumentsByIdDismissTrainingErrors, type PatchAdminExtractionDocumentsByIdDismissTrainingResponse, type PatchAdminExtractionDocumentsByIdDismissTrainingResponses, type PatchAdminExtractionDocumentsByIdExcludeData, type PatchAdminExtractionDocumentsByIdExcludeError, type PatchAdminExtractionDocumentsByIdExcludeErrors, type PatchAdminExtractionDocumentsByIdExcludeResponse, type PatchAdminExtractionDocumentsByIdExcludeResponses, type PatchAdminExtractionDocumentsByIdFinishUploadData, type PatchAdminExtractionDocumentsByIdFinishUploadError, type PatchAdminExtractionDocumentsByIdFinishUploadErrors, type PatchAdminExtractionDocumentsByIdFinishUploadResponse, type PatchAdminExtractionDocumentsByIdFinishUploadResponses, type PatchAdminExtractionDocumentsByIdIncludeData, type PatchAdminExtractionDocumentsByIdIncludeError, type PatchAdminExtractionDocumentsByIdIncludeErrors, type PatchAdminExtractionDocumentsByIdIncludeResponse, type PatchAdminExtractionDocumentsByIdIncludeResponses, type PatchAdminExtractionDocumentsByIdMarkTrainedData, type PatchAdminExtractionDocumentsByIdMarkTrainedError, type PatchAdminExtractionDocumentsByIdMarkTrainedErrors, type PatchAdminExtractionDocumentsByIdMarkTrainedResponse, type PatchAdminExtractionDocumentsByIdMarkTrainedResponses, type PatchAdminExtractionDocumentsByIdReprocessData, type PatchAdminExtractionDocumentsByIdReprocessError, type PatchAdminExtractionDocumentsByIdReprocessErrors, type PatchAdminExtractionDocumentsByIdReprocessResponse, type PatchAdminExtractionDocumentsByIdReprocessResponses, type PatchAdminExtractionDocumentsByIdRestoreData, type PatchAdminExtractionDocumentsByIdRestoreError, type PatchAdminExtractionDocumentsByIdRestoreErrors, type PatchAdminExtractionDocumentsByIdRestoreResponse, type PatchAdminExtractionDocumentsByIdRestoreResponses, type PatchAdminExtractionDocumentsByIdStatusData, type PatchAdminExtractionDocumentsByIdStatusError, type PatchAdminExtractionDocumentsByIdStatusErrors, type PatchAdminExtractionDocumentsByIdStatusResponse, type PatchAdminExtractionDocumentsByIdStatusResponses, type PatchAdminExtractionDocumentsByIdVerificationData, type PatchAdminExtractionDocumentsByIdVerificationError, type PatchAdminExtractionDocumentsByIdVerificationErrors, type PatchAdminExtractionDocumentsByIdVerificationResponse, type PatchAdminExtractionDocumentsByIdVerificationResponses, type PatchAdminExtractionResultsByIdData, type PatchAdminExtractionResultsByIdError, type PatchAdminExtractionResultsByIdErrors, type PatchAdminExtractionResultsByIdRegenerateData, type PatchAdminExtractionResultsByIdRegenerateError, type PatchAdminExtractionResultsByIdRegenerateErrors, type PatchAdminExtractionResultsByIdRegenerateResponse, type PatchAdminExtractionResultsByIdRegenerateResponses, type PatchAdminExtractionResultsByIdResponse, type PatchAdminExtractionResultsByIdResponses, type PatchAdminExtractionResultsByIdSaveCorrectionsData, type PatchAdminExtractionResultsByIdSaveCorrectionsError, type PatchAdminExtractionResultsByIdSaveCorrectionsErrors, type PatchAdminExtractionResultsByIdSaveCorrectionsResponse, type PatchAdminExtractionResultsByIdSaveCorrectionsResponses, type PatchAdminInvitationsByIdAcceptByUserData, type PatchAdminInvitationsByIdAcceptByUserError, type PatchAdminInvitationsByIdAcceptByUserErrors, type PatchAdminInvitationsByIdAcceptByUserResponse, type PatchAdminInvitationsByIdAcceptByUserResponses, type PatchAdminInvitationsByIdAcceptData, type PatchAdminInvitationsByIdAcceptError, type PatchAdminInvitationsByIdAcceptErrors, type PatchAdminInvitationsByIdAcceptResponse, type PatchAdminInvitationsByIdAcceptResponses, type PatchAdminInvitationsByIdDeclineData, type PatchAdminInvitationsByIdDeclineError, type PatchAdminInvitationsByIdDeclineErrors, type PatchAdminInvitationsByIdDeclineResponse, type PatchAdminInvitationsByIdDeclineResponses, type PatchAdminInvitationsByIdResendData, type PatchAdminInvitationsByIdResendError, type PatchAdminInvitationsByIdResendErrors, type PatchAdminInvitationsByIdResendResponse, type PatchAdminInvitationsByIdResendResponses, type PatchAdminInvitationsByIdRevokeData, type PatchAdminInvitationsByIdRevokeError, type PatchAdminInvitationsByIdRevokeErrors, type PatchAdminInvitationsByIdRevokeResponse, type PatchAdminInvitationsByIdRevokeResponses, type PatchAdminIsvSettlementsByIdData, type PatchAdminIsvSettlementsByIdError, type PatchAdminIsvSettlementsByIdErrors, type PatchAdminIsvSettlementsByIdResponse, type PatchAdminIsvSettlementsByIdResponses, type PatchAdminMessagesByIdData, type PatchAdminMessagesByIdError, type PatchAdminMessagesByIdErrors, type PatchAdminMessagesByIdResponse, type PatchAdminMessagesByIdResponses, type PatchAdminNotificationMethodsByIdData, type PatchAdminNotificationMethodsByIdError, type PatchAdminNotificationMethodsByIdErrors, type PatchAdminNotificationMethodsByIdResponse, type PatchAdminNotificationMethodsByIdResponses, type PatchAdminNotificationMethodsByIdSendVerificationData, type PatchAdminNotificationMethodsByIdSendVerificationError, type PatchAdminNotificationMethodsByIdSendVerificationErrors, type PatchAdminNotificationMethodsByIdSendVerificationResponse, type PatchAdminNotificationMethodsByIdSendVerificationResponses, type PatchAdminNotificationMethodsByIdSetPrimaryData, type PatchAdminNotificationMethodsByIdSetPrimaryError, type PatchAdminNotificationMethodsByIdSetPrimaryErrors, type PatchAdminNotificationMethodsByIdSetPrimaryResponse, type PatchAdminNotificationMethodsByIdSetPrimaryResponses, type PatchAdminNotificationMethodsByIdVerifyData, type PatchAdminNotificationMethodsByIdVerifyError, type PatchAdminNotificationMethodsByIdVerifyErrors, type PatchAdminNotificationMethodsByIdVerifyResponse, type PatchAdminNotificationMethodsByIdVerifyResponses, type PatchAdminNotificationPreferencesByIdData, type PatchAdminNotificationPreferencesByIdError, type PatchAdminNotificationPreferencesByIdErrors, type PatchAdminNotificationPreferencesByIdResponse, type PatchAdminNotificationPreferencesByIdResponses, type PatchAdminPaymentMethodsByIdData, type PatchAdminPaymentMethodsByIdDefaultData, type PatchAdminPaymentMethodsByIdDefaultError, type PatchAdminPaymentMethodsByIdDefaultErrors, type PatchAdminPaymentMethodsByIdDefaultResponse, type PatchAdminPaymentMethodsByIdDefaultResponses, type PatchAdminPaymentMethodsByIdError, type PatchAdminPaymentMethodsByIdErrors, type PatchAdminPaymentMethodsByIdResponse, type PatchAdminPaymentMethodsByIdResponses, type PatchAdminPlansByIdData, type PatchAdminPlansByIdError, type PatchAdminPlansByIdErrors, type PatchAdminPlansByIdResponse, type PatchAdminPlansByIdResponses, type PatchAdminPricingRulesByIdData, type PatchAdminPricingRulesByIdError, type PatchAdminPricingRulesByIdErrors, type PatchAdminPricingRulesByIdResponse, type PatchAdminPricingRulesByIdResponses, type PatchAdminPricingStrategiesByIdData, type PatchAdminPricingStrategiesByIdError, type PatchAdminPricingStrategiesByIdErrors, type PatchAdminPricingStrategiesByIdResponse, type PatchAdminPricingStrategiesByIdResponses, type PatchAdminSearchSavedByIdData, type PatchAdminSearchSavedByIdError, type PatchAdminSearchSavedByIdErrors, type PatchAdminSearchSavedByIdResponse, type PatchAdminSearchSavedByIdResponses, type PatchAdminSubscriptionsByIdCancelData, type PatchAdminSubscriptionsByIdCancelError, type PatchAdminSubscriptionsByIdCancelErrors, type PatchAdminSubscriptionsByIdCancelResponse, type PatchAdminSubscriptionsByIdCancelResponses, type PatchAdminSubscriptionsByIdData, type PatchAdminSubscriptionsByIdError, type PatchAdminSubscriptionsByIdErrors, type PatchAdminSubscriptionsByIdResponse, type PatchAdminSubscriptionsByIdResponses, type PatchAdminSysAiConfigByIdData, type PatchAdminSysAiConfigByIdError, type PatchAdminSysAiConfigByIdErrors, type PatchAdminSysAiConfigByIdResponse, type PatchAdminSysAiConfigByIdResponses, type PatchAdminSystemMessagesByIdData, type PatchAdminSystemMessagesByIdError, type PatchAdminSystemMessagesByIdErrors, type PatchAdminSystemMessagesByIdPublishData, type PatchAdminSystemMessagesByIdPublishError, type PatchAdminSystemMessagesByIdPublishErrors, type PatchAdminSystemMessagesByIdPublishResponse, type PatchAdminSystemMessagesByIdPublishResponses, type PatchAdminSystemMessagesByIdResponse, type PatchAdminSystemMessagesByIdResponses, type PatchAdminSystemMessagesByIdUnpublishData, type PatchAdminSystemMessagesByIdUnpublishError, type PatchAdminSystemMessagesByIdUnpublishErrors, type PatchAdminSystemMessagesByIdUnpublishResponse, type PatchAdminSystemMessagesByIdUnpublishResponses, type PatchAdminTenantMembershipsByTenantIdByUserIdData, type PatchAdminTenantMembershipsByTenantIdByUserIdError, type PatchAdminTenantMembershipsByTenantIdByUserIdErrors, type PatchAdminTenantMembershipsByTenantIdByUserIdResponse, type PatchAdminTenantMembershipsByTenantIdByUserIdResponses, type PatchAdminTenantPricingOverridesByIdData, type PatchAdminTenantPricingOverridesByIdError, type PatchAdminTenantPricingOverridesByIdErrors, type PatchAdminTenantPricingOverridesByIdResponse, type PatchAdminTenantPricingOverridesByIdResponses, type PatchAdminTenantsByIdData, type PatchAdminTenantsByIdError, type PatchAdminTenantsByIdErrors, type PatchAdminTenantsByIdResponse, type PatchAdminTenantsByIdResponses, type PatchAdminThreadsByIdArchiveData, type PatchAdminThreadsByIdArchiveError, type PatchAdminThreadsByIdArchiveErrors, type PatchAdminThreadsByIdArchiveResponse, type PatchAdminThreadsByIdArchiveResponses, type PatchAdminThreadsByIdData, type PatchAdminThreadsByIdError, type PatchAdminThreadsByIdErrors, type PatchAdminThreadsByIdResponse, type PatchAdminThreadsByIdResponses, type PatchAdminThreadsByIdUnarchiveData, type PatchAdminThreadsByIdUnarchiveError, type PatchAdminThreadsByIdUnarchiveErrors, type PatchAdminThreadsByIdUnarchiveResponse, type PatchAdminThreadsByIdUnarchiveResponses, type PatchAdminTrainingExamplesByIdData, type PatchAdminTrainingExamplesByIdError, type PatchAdminTrainingExamplesByIdErrors, type PatchAdminTrainingExamplesByIdResponse, type PatchAdminTrainingExamplesByIdResponses, type PatchAdminUserProfilesByIdAcceptTosData, type PatchAdminUserProfilesByIdAcceptTosError, type PatchAdminUserProfilesByIdAcceptTosErrors, type PatchAdminUserProfilesByIdAcceptTosResponse, type PatchAdminUserProfilesByIdAcceptTosResponses, type PatchAdminUserProfilesByIdData, type PatchAdminUserProfilesByIdDismissAnnouncementData, type PatchAdminUserProfilesByIdDismissAnnouncementError, type PatchAdminUserProfilesByIdDismissAnnouncementErrors, type PatchAdminUserProfilesByIdDismissAnnouncementResponse, type PatchAdminUserProfilesByIdDismissAnnouncementResponses, type PatchAdminUserProfilesByIdDismissWelcomeData, type PatchAdminUserProfilesByIdDismissWelcomeError, type PatchAdminUserProfilesByIdDismissWelcomeErrors, type PatchAdminUserProfilesByIdDismissWelcomeResponse, type PatchAdminUserProfilesByIdDismissWelcomeResponses, type PatchAdminUserProfilesByIdError, type PatchAdminUserProfilesByIdErrors, type PatchAdminUserProfilesByIdResponse, type PatchAdminUserProfilesByIdResponses, type PatchAdminUsersAuthPasswordChangeData, type PatchAdminUsersAuthPasswordChangeError, type PatchAdminUsersAuthPasswordChangeErrors, type PatchAdminUsersAuthPasswordChangeResponse, type PatchAdminUsersAuthPasswordChangeResponses, type PatchAdminUsersAuthResetPasswordData, type PatchAdminUsersAuthResetPasswordError, type PatchAdminUsersAuthResetPasswordErrors, type PatchAdminUsersAuthResetPasswordResponse, type PatchAdminUsersAuthResetPasswordResponses, type PatchAdminUsersByIdAdminData, type PatchAdminUsersByIdAdminEmailData, type PatchAdminUsersByIdAdminEmailError, type PatchAdminUsersByIdAdminEmailErrors, type PatchAdminUsersByIdAdminEmailResponse, type PatchAdminUsersByIdAdminEmailResponses, type PatchAdminUsersByIdAdminError, type PatchAdminUsersByIdAdminErrors, type PatchAdminUsersByIdAdminResponse, type PatchAdminUsersByIdAdminResponses, type PatchAdminUsersByIdConfirmEmailData, type PatchAdminUsersByIdConfirmEmailError, type PatchAdminUsersByIdConfirmEmailErrors, type PatchAdminUsersByIdConfirmEmailResponse, type PatchAdminUsersByIdConfirmEmailResponses, type PatchAdminUsersByIdResetPasswordData, type PatchAdminUsersByIdResetPasswordError, type PatchAdminUsersByIdResetPasswordErrors, type PatchAdminUsersByIdResetPasswordResponse, type PatchAdminUsersByIdResetPasswordResponses, type PatchAdminWalletAddonsByAddonSlugCancelData, type PatchAdminWalletAddonsByAddonSlugCancelError, type PatchAdminWalletAddonsByAddonSlugCancelErrors, type PatchAdminWalletAddonsByAddonSlugCancelResponse, type PatchAdminWalletAddonsByAddonSlugCancelResponses, type PatchAdminWalletAddonsData, type PatchAdminWalletAddonsError, type PatchAdminWalletAddonsErrors, type PatchAdminWalletAddonsResponse, type PatchAdminWalletAddonsResponses, type PatchAdminWalletCreditsData, type PatchAdminWalletCreditsError, type PatchAdminWalletCreditsErrors, type PatchAdminWalletCreditsResponse, type PatchAdminWalletCreditsResponses, type PatchAdminWalletPlanData, type PatchAdminWalletPlanError, type PatchAdminWalletPlanErrors, type PatchAdminWalletPlanResponse, type PatchAdminWalletPlanResponses, type PatchAdminWalletStorageData, type PatchAdminWalletStorageError, type PatchAdminWalletStorageErrors, type PatchAdminWalletStorageResponse, type PatchAdminWalletStorageResponses, type PatchAdminWebhookConfigsByIdData, type PatchAdminWebhookConfigsByIdError, type PatchAdminWebhookConfigsByIdErrors, type PatchAdminWebhookConfigsByIdResponse, type PatchAdminWebhookConfigsByIdResponses, type PatchAdminWebhookConfigsByIdRotateSecretData, type PatchAdminWebhookConfigsByIdRotateSecretError, type PatchAdminWebhookConfigsByIdRotateSecretErrors, type PatchAdminWebhookConfigsByIdRotateSecretResponse, type PatchAdminWebhookConfigsByIdRotateSecretResponses, type PatchAdminWholesaleAgreementsByIdData, type PatchAdminWholesaleAgreementsByIdError, type PatchAdminWholesaleAgreementsByIdErrors, type PatchAdminWholesaleAgreementsByIdResponse, type PatchAdminWholesaleAgreementsByIdResponses, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdData, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdError, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponse, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type PatchAdminWorkspacesByIdAllocateData, type PatchAdminWorkspacesByIdAllocateError, type PatchAdminWorkspacesByIdAllocateErrors, type PatchAdminWorkspacesByIdAllocateResponse, type PatchAdminWorkspacesByIdAllocateResponses, type PatchAdminWorkspacesByIdData, type PatchAdminWorkspacesByIdError, type PatchAdminWorkspacesByIdErrors, type PatchAdminWorkspacesByIdResponse, type PatchAdminWorkspacesByIdResponses, type PatchAdminWorkspacesByIdStorageSettingsData, type PatchAdminWorkspacesByIdStorageSettingsError, type PatchAdminWorkspacesByIdStorageSettingsErrors, type PatchAdminWorkspacesByIdStorageSettingsResponse, type PatchAdminWorkspacesByIdStorageSettingsResponses, type Payment, type PaymentFilter, type PaymentFilterAmount, type PaymentFilterCreatedAt, type PaymentFilterCurrency, type PaymentFilterErrorMessage, type PaymentFilterId, type PaymentFilterProviderReference, type PaymentFilterStatus, type PaymentMethod, type PaymentMethodFilter, type PaymentMethodFilterBrand, type PaymentMethodFilterCreatedAt, type PaymentMethodFilterExpMonth, type PaymentMethodFilterExpYear, type PaymentMethodFilterHolderName, type PaymentMethodFilterId, type PaymentMethodFilterIsDefault, type PaymentMethodFilterLast4, type PaymentMethodFilterNickname, type PaymentMethodFilterProvider, type PaymentMethodFilterProviderToken, type PaymentMethodFilterType, type PaymentMethodFilterUpdatedAt, type PaymentMethodFilterZipCode, type Permission, type PermissionFilter, type PermissionFilterAction, type PermissionFilterApp, type PermissionFilterCategory, type PermissionFilterContext, type PermissionFilterDescription, type PermissionFilterId, type PermissionFilterLabel, type PermissionFilterResource, type PermissionFilterRole, type PermissionFilterScope, type PermissionMeta, type PermissionMetaFilter, type PermissionMetaFilterCacheTtl, type PermissionMetaFilterId, type PermissionMetaFilterVersion, type PermissionPreset, type PermissionPresetFilter, type PermissionPresetFilterApp, type PermissionPresetFilterContext, type PermissionPresetFilterDescription, type PermissionPresetFilterId, type PermissionPresetFilterName, type PermissionPresetFilterRole, type Plan, type PlanFilter, type PlanFilterApplicationId, type PlanFilterBillingInterval, type PlanFilterCreatedAt, type PlanFilterId, type PlanFilterInitialCredits, type PlanFilterMaxRenewals, type PlanFilterMonthlyCredits, type PlanFilterMonthlyPrice, type PlanFilterName, type PlanFilterSlug, type PlanFilterStorageBlocks, type PlanFilterStorageDays, type PlanFilterType, type PlanFilterUpdatedAt, type PostAdminAgentTestResultsData, type PostAdminAgentTestResultsError, type PostAdminAgentTestResultsErrors, type PostAdminAgentTestResultsResponse, type PostAdminAgentTestResultsResponses, type PostAdminAgentVersionComparisonsData, type PostAdminAgentVersionComparisonsError, type PostAdminAgentVersionComparisonsErrors, type PostAdminAgentVersionComparisonsResponse, type PostAdminAgentVersionComparisonsResponses, type PostAdminAgentVersionsByIdAddSystemFieldData, type PostAdminAgentVersionsByIdAddSystemFieldError, type PostAdminAgentVersionsByIdAddSystemFieldErrors, type PostAdminAgentVersionsByIdAddSystemFieldResponses, type PostAdminAgentVersionsByIdRemoveSystemFieldData, type PostAdminAgentVersionsByIdRemoveSystemFieldError, type PostAdminAgentVersionsByIdRemoveSystemFieldErrors, type PostAdminAgentVersionsByIdRemoveSystemFieldResponses, type PostAdminAgentVersionsByIdSetSystemFieldsData, type PostAdminAgentVersionsByIdSetSystemFieldsError, type PostAdminAgentVersionsByIdSetSystemFieldsErrors, type PostAdminAgentVersionsByIdSetSystemFieldsResponses, type PostAdminAgentVersionsData, type PostAdminAgentVersionsError, type PostAdminAgentVersionsErrors, type PostAdminAgentVersionsResponse, type PostAdminAgentVersionsResponses, type PostAdminAgentsByIdCloneData, type PostAdminAgentsByIdCloneError, type PostAdminAgentsByIdCloneErrors, type PostAdminAgentsByIdCloneResponse, type PostAdminAgentsByIdCloneResponses, type PostAdminAgentsByIdDiscoverSchemaData, type PostAdminAgentsByIdDiscoverSchemaError, type PostAdminAgentsByIdDiscoverSchemaErrors, type PostAdminAgentsByIdDiscoverSchemaResponse, type PostAdminAgentsByIdDiscoverSchemaResponses, type PostAdminAgentsByIdExportData, type PostAdminAgentsByIdExportError, type PostAdminAgentsByIdExportErrors, type PostAdminAgentsByIdExportResponse, type PostAdminAgentsByIdExportResponses, type PostAdminAgentsByIdPublishVersionData, type PostAdminAgentsByIdPublishVersionError, type PostAdminAgentsByIdPublishVersionErrors, type PostAdminAgentsByIdPublishVersionResponse, type PostAdminAgentsByIdPublishVersionResponses, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateData, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateError, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateErrors, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponse, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponses, type PostAdminAgentsByIdSchemaVersionsData, type PostAdminAgentsByIdSchemaVersionsError, type PostAdminAgentsByIdSchemaVersionsErrors, type PostAdminAgentsByIdSchemaVersionsResponse, type PostAdminAgentsByIdSchemaVersionsResponses, type PostAdminAgentsByIdTeachData, type PostAdminAgentsByIdTeachError, type PostAdminAgentsByIdTeachErrors, type PostAdminAgentsByIdTeachResponse, type PostAdminAgentsByIdTeachResponses, type PostAdminAgentsByIdTestData, type PostAdminAgentsByIdTestError, type PostAdminAgentsByIdTestErrors, type PostAdminAgentsByIdTestResponse, type PostAdminAgentsByIdTestResponses, type PostAdminAgentsByIdValidateData, type PostAdminAgentsByIdValidateError, type PostAdminAgentsByIdValidateErrors, type PostAdminAgentsByIdValidateResponse, type PostAdminAgentsByIdValidateResponses, type PostAdminAgentsCloneForWorkspaceData, type PostAdminAgentsCloneForWorkspaceError, type PostAdminAgentsCloneForWorkspaceErrors, type PostAdminAgentsCloneForWorkspaceResponse, type PostAdminAgentsCloneForWorkspaceResponses, type PostAdminAgentsImportData, type PostAdminAgentsImportError, type PostAdminAgentsImportErrors, type PostAdminAgentsImportResponse, type PostAdminAgentsImportResponses, type PostAdminAgentsPredictData, type PostAdminAgentsPredictError, type PostAdminAgentsPredictErrors, type PostAdminAgentsPredictResponse, type PostAdminAgentsPredictResponses, type PostAdminAiChunksSearchData, type PostAdminAiChunksSearchError, type PostAdminAiChunksSearchErrors, type PostAdminAiChunksSearchResponse, type PostAdminAiChunksSearchResponses, type PostAdminAiConversationsData, type PostAdminAiConversationsError, type PostAdminAiConversationsErrors, type PostAdminAiConversationsResponse, type PostAdminAiConversationsResponses, type PostAdminAiEmbedData, type PostAdminAiEmbedError, type PostAdminAiEmbedErrors, type PostAdminAiEmbedResponse, type PostAdminAiEmbedResponses, type PostAdminAiGraphEdgesData, type PostAdminAiGraphEdgesError, type PostAdminAiGraphEdgesErrors, type PostAdminAiGraphEdgesResponse, type PostAdminAiGraphEdgesResponses, type PostAdminAiGraphNodesData, type PostAdminAiGraphNodesError, type PostAdminAiGraphNodesErrors, type PostAdminAiGraphNodesResponse, type PostAdminAiGraphNodesResponses, type PostAdminAiMessagesData, type PostAdminAiMessagesError, type PostAdminAiMessagesErrors, type PostAdminAiMessagesResponse, type PostAdminAiMessagesResponses, type PostAdminAiSearchAdvancedData, type PostAdminAiSearchAdvancedError, type PostAdminAiSearchAdvancedErrors, type PostAdminAiSearchAdvancedResponse, type PostAdminAiSearchAdvancedResponses, type PostAdminAiSearchData, type PostAdminAiSearchError, type PostAdminAiSearchErrors, type PostAdminAiSearchResponse, type PostAdminAiSearchResponses, type PostAdminApiKeysData, type PostAdminApiKeysError, type PostAdminApiKeysErrors, type PostAdminApiKeysResponse, type PostAdminApiKeysResponses, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewData, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewError, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewErrors, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewResponse, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewResponses, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestData, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestError, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestErrors, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestResponse, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestResponses, type PostAdminApplicationsByApplicationIdEmailTemplatesData, type PostAdminApplicationsByApplicationIdEmailTemplatesError, type PostAdminApplicationsByApplicationIdEmailTemplatesErrors, type PostAdminApplicationsByApplicationIdEmailTemplatesResponse, type PostAdminApplicationsByApplicationIdEmailTemplatesResponses, type PostAdminApplicationsData, type PostAdminApplicationsError, type PostAdminApplicationsErrors, type PostAdminApplicationsResponse, type PostAdminApplicationsResponses, type PostAdminBucketsData, type PostAdminBucketsError, type PostAdminBucketsErrors, type PostAdminBucketsResponse, type PostAdminBucketsResponses, type PostAdminConfigsData, type PostAdminConfigsError, type PostAdminConfigsErrors, type PostAdminConfigsResponse, type PostAdminConfigsResponses, type PostAdminCreditPackagesData, type PostAdminCreditPackagesError, type PostAdminCreditPackagesErrors, type PostAdminCreditPackagesResponse, type PostAdminCreditPackagesResponses, type PostAdminCustomersData, type PostAdminCustomersError, type PostAdminCustomersErrors, type PostAdminCustomersResponse, type PostAdminCustomersResponses, type PostAdminDocumentsBulkDeleteData, type PostAdminDocumentsBulkDeleteError, type PostAdminDocumentsBulkDeleteErrors, type PostAdminDocumentsBulkDeleteResponse, type PostAdminDocumentsBulkDeleteResponses, type PostAdminDocumentsPresignedUploadData, type PostAdminDocumentsPresignedUploadError, type PostAdminDocumentsPresignedUploadErrors, type PostAdminDocumentsPresignedUploadResponse, type PostAdminDocumentsPresignedUploadResponses, type PostAdminExtractionBatchesData, type PostAdminExtractionBatchesError, type PostAdminExtractionBatchesErrors, type PostAdminExtractionBatchesResponse, type PostAdminExtractionBatchesResponses, type PostAdminExtractionDocumentsBeginUploadData, type PostAdminExtractionDocumentsBeginUploadError, type PostAdminExtractionDocumentsBeginUploadErrors, type PostAdminExtractionDocumentsBeginUploadResponse, type PostAdminExtractionDocumentsBeginUploadResponses, type PostAdminExtractionDocumentsBulkReprocessData, type PostAdminExtractionDocumentsBulkReprocessError, type PostAdminExtractionDocumentsBulkReprocessErrors, type PostAdminExtractionDocumentsBulkReprocessResponse, type PostAdminExtractionDocumentsBulkReprocessResponses, type PostAdminExtractionDocumentsUploadData, type PostAdminExtractionDocumentsUploadError, type PostAdminExtractionDocumentsUploadErrors, type PostAdminExtractionDocumentsUploadResponse, type PostAdminExtractionDocumentsUploadResponses, type PostAdminExtractionSchemaDiscoveriesData, type PostAdminExtractionSchemaDiscoveriesError, type PostAdminExtractionSchemaDiscoveriesErrors, type PostAdminExtractionSchemaDiscoveriesResponse, type PostAdminExtractionSchemaDiscoveriesResponses, type PostAdminFieldTemplatesData, type PostAdminFieldTemplatesError, type PostAdminFieldTemplatesErrors, type PostAdminFieldTemplatesResponse, type PostAdminFieldTemplatesResponses, type PostAdminInvitationsAcceptByTokenData, type PostAdminInvitationsAcceptByTokenError, type PostAdminInvitationsAcceptByTokenErrors, type PostAdminInvitationsAcceptByTokenResponse, type PostAdminInvitationsAcceptByTokenResponses, type PostAdminInvitationsData, type PostAdminInvitationsError, type PostAdminInvitationsErrors, type PostAdminInvitationsResponse, type PostAdminInvitationsResponses, type PostAdminIsvRevenueData, type PostAdminIsvRevenueError, type PostAdminIsvRevenueErrors, type PostAdminIsvRevenueResponse, type PostAdminIsvRevenueResponses, type PostAdminIsvSettlementsData, type PostAdminIsvSettlementsError, type PostAdminIsvSettlementsErrors, type PostAdminIsvSettlementsResponse, type PostAdminIsvSettlementsResponses, type PostAdminLlmAnalyticsData, type PostAdminLlmAnalyticsError, type PostAdminLlmAnalyticsErrors, type PostAdminLlmAnalyticsResponse, type PostAdminLlmAnalyticsResponses, type PostAdminMessagesData, type PostAdminMessagesError, type PostAdminMessagesErrors, type PostAdminMessagesResponse, type PostAdminMessagesResponses, type PostAdminNotificationMethodsData, type PostAdminNotificationMethodsError, type PostAdminNotificationMethodsErrors, type PostAdminNotificationMethodsResponse, type PostAdminNotificationMethodsResponses, type PostAdminNotificationPreferencesData, type PostAdminNotificationPreferencesError, type PostAdminNotificationPreferencesErrors, type PostAdminNotificationPreferencesResponse, type PostAdminNotificationPreferencesResponses, type PostAdminObjectsBulkDestroyData, type PostAdminObjectsBulkDestroyError, type PostAdminObjectsBulkDestroyErrors, type PostAdminObjectsBulkDestroyResponse, type PostAdminObjectsBulkDestroyResponses, type PostAdminObjectsCopyData, type PostAdminObjectsCopyError, type PostAdminObjectsCopyErrors, type PostAdminObjectsCopyResponse, type PostAdminObjectsCopyResponses, type PostAdminObjectsMoveData, type PostAdminObjectsMoveError, type PostAdminObjectsMoveErrors, type PostAdminObjectsMoveResponse, type PostAdminObjectsMoveResponses, type PostAdminObjectsRegisterData, type PostAdminObjectsRegisterError, type PostAdminObjectsRegisterErrors, type PostAdminObjectsRegisterResponse, type PostAdminObjectsRegisterResponses, type PostAdminPaymentMethodsData, type PostAdminPaymentMethodsError, type PostAdminPaymentMethodsErrors, type PostAdminPaymentMethodsResponse, type PostAdminPaymentMethodsResponses, type PostAdminPaymentMethodsTokenizeData, type PostAdminPaymentMethodsTokenizeError, type PostAdminPaymentMethodsTokenizeErrors, type PostAdminPaymentMethodsTokenizeResponse, type PostAdminPaymentMethodsTokenizeResponses, type PostAdminPaymentsData, type PostAdminPaymentsError, type PostAdminPaymentsErrors, type PostAdminPaymentsResponse, type PostAdminPaymentsResponses, type PostAdminPlansData, type PostAdminPlansError, type PostAdminPlansErrors, type PostAdminPlansResponse, type PostAdminPlansResponses, type PostAdminPricingRulesData, type PostAdminPricingRulesError, type PostAdminPricingRulesErrors, type PostAdminPricingRulesResponse, type PostAdminPricingRulesResponses, type PostAdminPricingStrategiesData, type PostAdminPricingStrategiesError, type PostAdminPricingStrategiesErrors, type PostAdminPricingStrategiesResponse, type PostAdminPricingStrategiesResponses, type PostAdminSearchBatchData, type PostAdminSearchBatchError, type PostAdminSearchBatchErrors, type PostAdminSearchBatchResponse, type PostAdminSearchBatchResponses, type PostAdminSearchReindexData, type PostAdminSearchReindexError, type PostAdminSearchReindexErrors, type PostAdminSearchReindexResponse, type PostAdminSearchReindexResponses, type PostAdminSearchSavedByIdRunData, type PostAdminSearchSavedByIdRunError, type PostAdminSearchSavedByIdRunErrors, type PostAdminSearchSavedByIdRunResponse, type PostAdminSearchSavedByIdRunResponses, type PostAdminSearchSavedData, type PostAdminSearchSavedError, type PostAdminSearchSavedErrors, type PostAdminSearchSavedResponse, type PostAdminSearchSavedResponses, type PostAdminSettlementsData, type PostAdminSettlementsError, type PostAdminSettlementsErrors, type PostAdminSettlementsResponse, type PostAdminSettlementsResponses, type PostAdminStorageSignDownloadData, type PostAdminStorageSignDownloadError, type PostAdminStorageSignDownloadErrors, type PostAdminStorageSignDownloadResponse, type PostAdminStorageSignDownloadResponses, type PostAdminStorageSignUploadData, type PostAdminStorageSignUploadError, type PostAdminStorageSignUploadErrors, type PostAdminStorageSignUploadResponse, type PostAdminStorageSignUploadResponses, type PostAdminSubscriptionsData, type PostAdminSubscriptionsError, type PostAdminSubscriptionsErrors, type PostAdminSubscriptionsResponse, type PostAdminSubscriptionsResponses, type PostAdminSysAiConfigData, type PostAdminSysAiConfigError, type PostAdminSysAiConfigErrors, type PostAdminSysAiConfigResponse, type PostAdminSysAiConfigResponses, type PostAdminSysSemanticCacheClearData, type PostAdminSysSemanticCacheClearError, type PostAdminSysSemanticCacheClearErrors, type PostAdminSysSemanticCacheClearResponse, type PostAdminSysSemanticCacheClearResponses, type PostAdminSystemMessagesData, type PostAdminSystemMessagesError, type PostAdminSystemMessagesErrors, type PostAdminSystemMessagesResponse, type PostAdminSystemMessagesResponses, type PostAdminTenantMembershipsData, type PostAdminTenantMembershipsError, type PostAdminTenantMembershipsErrors, type PostAdminTenantMembershipsResponse, type PostAdminTenantMembershipsResponses, type PostAdminTenantPricingOverridesData, type PostAdminTenantPricingOverridesError, type PostAdminTenantPricingOverridesErrors, type PostAdminTenantPricingOverridesResponse, type PostAdminTenantPricingOverridesResponses, type PostAdminTenantsByIdBuyStorageData, type PostAdminTenantsByIdBuyStorageError, type PostAdminTenantsByIdBuyStorageErrors, type PostAdminTenantsByIdBuyStorageResponse, type PostAdminTenantsByIdBuyStorageResponses, type PostAdminTenantsByIdCreditData, type PostAdminTenantsByIdCreditError, type PostAdminTenantsByIdCreditErrors, type PostAdminTenantsByIdCreditResponse, type PostAdminTenantsByIdCreditResponses, type PostAdminTenantsByIdRemoveStorageData, type PostAdminTenantsByIdRemoveStorageError, type PostAdminTenantsByIdRemoveStorageErrors, type PostAdminTenantsByIdRemoveStorageResponse, type PostAdminTenantsByIdRemoveStorageResponses, type PostAdminTenantsByIdSchedulePurgeData, type PostAdminTenantsByIdSchedulePurgeError, type PostAdminTenantsByIdSchedulePurgeErrors, type PostAdminTenantsByIdSchedulePurgeResponse, type PostAdminTenantsByIdSchedulePurgeResponses, type PostAdminTenantsData, type PostAdminTenantsError, type PostAdminTenantsErrors, type PostAdminTenantsIsvData, type PostAdminTenantsIsvError, type PostAdminTenantsIsvErrors, type PostAdminTenantsIsvResponse, type PostAdminTenantsIsvResponses, type PostAdminTenantsResponse, type PostAdminTenantsResponses, type PostAdminThreadsActiveData, type PostAdminThreadsActiveError, type PostAdminThreadsActiveErrors, type PostAdminThreadsActiveResponse, type PostAdminThreadsActiveResponses, type PostAdminThreadsByIdExportData, type PostAdminThreadsByIdExportError, type PostAdminThreadsByIdExportErrors, type PostAdminThreadsByIdExportResponse, type PostAdminThreadsByIdExportResponses, type PostAdminThreadsByIdForkData, type PostAdminThreadsByIdForkError, type PostAdminThreadsByIdForkErrors, type PostAdminThreadsByIdForkResponse, type PostAdminThreadsByIdForkResponses, type PostAdminThreadsByIdMessagesData, type PostAdminThreadsByIdMessagesError, type PostAdminThreadsByIdMessagesErrors, type PostAdminThreadsByIdMessagesResponse, type PostAdminThreadsByIdMessagesResponses, type PostAdminThreadsByIdSummarizeData, type PostAdminThreadsByIdSummarizeError, type PostAdminThreadsByIdSummarizeErrors, type PostAdminThreadsByIdSummarizeResponse, type PostAdminThreadsByIdSummarizeResponses, type PostAdminThreadsData, type PostAdminThreadsError, type PostAdminThreadsErrors, type PostAdminThreadsResponse, type PostAdminThreadsResponses, type PostAdminTokensData, type PostAdminTokensError, type PostAdminTokensErrors, type PostAdminTokensResponse, type PostAdminTokensResponses, type PostAdminTrainingExamplesBulkData, type PostAdminTrainingExamplesBulkDeleteData, type PostAdminTrainingExamplesBulkDeleteError, type PostAdminTrainingExamplesBulkDeleteErrors, type PostAdminTrainingExamplesBulkDeleteResponse, type PostAdminTrainingExamplesBulkDeleteResponses, type PostAdminTrainingExamplesBulkError, type PostAdminTrainingExamplesBulkErrors, type PostAdminTrainingExamplesBulkResponse, type PostAdminTrainingExamplesBulkResponses, type PostAdminTrainingExamplesData, type PostAdminTrainingExamplesError, type PostAdminTrainingExamplesErrors, type PostAdminTrainingExamplesResponse, type PostAdminTrainingExamplesResponses, type PostAdminTrainingExamplesSearchData, type PostAdminTrainingExamplesSearchError, type PostAdminTrainingExamplesSearchErrors, type PostAdminTrainingExamplesSearchResponse, type PostAdminTrainingExamplesSearchResponses, type PostAdminUserProfilesData, type PostAdminUserProfilesError, type PostAdminUserProfilesErrors, type PostAdminUserProfilesResponse, type PostAdminUserProfilesResponses, type PostAdminUsersAuthConfirmData, type PostAdminUsersAuthConfirmError, type PostAdminUsersAuthConfirmErrors, type PostAdminUsersAuthConfirmResponse, type PostAdminUsersAuthConfirmResponses, type PostAdminUsersAuthLoginData, type PostAdminUsersAuthLoginError, type PostAdminUsersAuthLoginErrors, type PostAdminUsersAuthLoginResponse, type PostAdminUsersAuthLoginResponses, type PostAdminUsersAuthMagicLinkLoginData, type PostAdminUsersAuthMagicLinkLoginError, type PostAdminUsersAuthMagicLinkLoginErrors, type PostAdminUsersAuthMagicLinkLoginResponse, type PostAdminUsersAuthMagicLinkLoginResponses, type PostAdminUsersAuthMagicLinkRequestData, type PostAdminUsersAuthMagicLinkRequestError, type PostAdminUsersAuthMagicLinkRequestErrors, type PostAdminUsersAuthMagicLinkRequestResponse, type PostAdminUsersAuthMagicLinkRequestResponses, type PostAdminUsersAuthRegisterData, type PostAdminUsersAuthRegisterError, type PostAdminUsersAuthRegisterErrors, type PostAdminUsersAuthRegisterResponse, type PostAdminUsersAuthRegisterResponses, type PostAdminUsersAuthRegisterWithOidcData, type PostAdminUsersAuthRegisterWithOidcError, type PostAdminUsersAuthRegisterWithOidcErrors, type PostAdminUsersAuthRegisterWithOidcResponse, type PostAdminUsersAuthRegisterWithOidcResponses, type PostAdminUsersAuthResendConfirmationData, type PostAdminUsersAuthResendConfirmationError, type PostAdminUsersAuthResendConfirmationErrors, type PostAdminUsersAuthResendConfirmationResponse, type PostAdminUsersAuthResendConfirmationResponses, type PostAdminUsersRegisterIsvData, type PostAdminUsersRegisterIsvError, type PostAdminUsersRegisterIsvErrors, type PostAdminUsersRegisterIsvResponse, type PostAdminUsersRegisterIsvResponses, type PostAdminWebhookConfigsBulkDisableData, type PostAdminWebhookConfigsBulkDisableError, type PostAdminWebhookConfigsBulkDisableErrors, type PostAdminWebhookConfigsBulkDisableResponse, type PostAdminWebhookConfigsBulkDisableResponses, type PostAdminWebhookConfigsBulkEnableData, type PostAdminWebhookConfigsBulkEnableError, type PostAdminWebhookConfigsBulkEnableErrors, type PostAdminWebhookConfigsBulkEnableResponse, type PostAdminWebhookConfigsBulkEnableResponses, type PostAdminWebhookConfigsByIdReplayData, type PostAdminWebhookConfigsByIdReplayError, type PostAdminWebhookConfigsByIdReplayErrors, type PostAdminWebhookConfigsByIdReplayResponse, type PostAdminWebhookConfigsByIdReplayResponses, type PostAdminWebhookConfigsByIdTestData, type PostAdminWebhookConfigsByIdTestError, type PostAdminWebhookConfigsByIdTestErrors, type PostAdminWebhookConfigsByIdTestResponse, type PostAdminWebhookConfigsByIdTestResponses, type PostAdminWebhookConfigsData, type PostAdminWebhookConfigsError, type PostAdminWebhookConfigsErrors, type PostAdminWebhookConfigsResponse, type PostAdminWebhookConfigsResponses, type PostAdminWebhookDeliveriesBulkRetryData, type PostAdminWebhookDeliveriesBulkRetryError, type PostAdminWebhookDeliveriesBulkRetryErrors, type PostAdminWebhookDeliveriesBulkRetryResponse, type PostAdminWebhookDeliveriesBulkRetryResponses, type PostAdminWebhookDeliveriesByIdRetryData, type PostAdminWebhookDeliveriesByIdRetryError, type PostAdminWebhookDeliveriesByIdRetryErrors, type PostAdminWebhookDeliveriesByIdRetryResponse, type PostAdminWebhookDeliveriesByIdRetryResponses, type PostAdminWholesaleAgreementsData, type PostAdminWholesaleAgreementsError, type PostAdminWholesaleAgreementsErrors, type PostAdminWholesaleAgreementsResponse, type PostAdminWholesaleAgreementsResponses, type PostAdminWorkspaceMembershipsData, type PostAdminWorkspaceMembershipsError, type PostAdminWorkspaceMembershipsErrors, type PostAdminWorkspaceMembershipsResponse, type PostAdminWorkspaceMembershipsResponses, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingError, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponse, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedData, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedError, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedErrors, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponse, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponses, type PostAdminWorkspacesByWorkspaceIdExtractionExportsData, type PostAdminWorkspacesByWorkspaceIdExtractionExportsError, type PostAdminWorkspacesByWorkspaceIdExtractionExportsErrors, type PostAdminWorkspacesByWorkspaceIdExtractionExportsResponse, type PostAdminWorkspacesByWorkspaceIdExtractionExportsResponses, type PostAdminWorkspacesData, type PostAdminWorkspacesError, type PostAdminWorkspacesErrors, type PostAdminWorkspacesResponse, type PostAdminWorkspacesResponses, type PresignedUrl, type PresignedUrlFilter, type PresignedUrlFilterExpiresIn, type PresignedUrlFilterHeaders, type PresignedUrlFilterId, type PresignedUrlFilterMethod, type PresignedUrlFilterStoragePath, type PresignedUrlFilterUploadUrl, type PresignedUrlFilterUrl, type PricingRule, type PricingRuleFilter, type PricingRuleFilterId, type PricingStrategy, type PricingStrategyFilter, type PricingStrategyFilterId, RateLimitError, type SavedSearch, type SavedSearchFilter, type SavedSearchFilterExecutedAt, type SavedSearchFilterFilters, type SavedSearchFilterId, type SavedSearchFilterIsShared, type SavedSearchFilterName, type SavedSearchFilterQuery, type SavedSearchFilterSearchType, type SchemaDiscovery, type SchemaDiscoveryFilter, type SchemaDiscoveryFilterCreatedAt, type SchemaDiscoveryFilterDocumentAssessment, type SchemaDiscoveryFilterError, type SchemaDiscoveryFilterId, type SchemaDiscoveryFilterStatus, type SchemaDiscoveryFilterUpdatedAt, type Search, type SearchAnalytics, type SearchAnalyticsFilter, type SearchAnalyticsFilterAvgLatencyMs, type SearchAnalyticsFilterAvgResultCount, type SearchAnalyticsFilterId, type SearchAnalyticsFilterKeywordSearches, type SearchAnalyticsFilterLatencyMs, type SearchAnalyticsFilterQuery, type SearchAnalyticsFilterResultCount, type SearchAnalyticsFilterRoutedVia, type SearchAnalyticsFilterSearchType, type SearchAnalyticsFilterSemanticSearches, type SearchAnalyticsFilterTenantId, type SearchAnalyticsFilterTotalSearches, type SearchAnalyticsFilterUserId, type SearchFilter, type SearchFilterDatabaseSize, type SearchFilterError, type SearchFilterId, type SearchFilterLatencyMs, type SearchFilterResultsCount, type SearchFilterScope, type SearchFilterStatus, type SearchFilterTenantId, type SemanticCacheEntry, type SemanticCacheEntryFilter, type SemanticCacheEntryFilterId, ServerError, type Settlement, type SettlementFilter, type SettlementFilterBreakdown, type SettlementFilterErrorMessage, type SettlementFilterHoldUntil, type SettlementFilterId, type SettlementFilterPaidAt, type SettlementFilterQorpayTransactionId, type SettlementFilterStatus, type StorageStats, type StorageStatsFilter, type StorageStatsFilterGeneratedAt, type StorageStatsFilterId, type StorageStatsFilterTenantId, type StorageStatsFilterTotalBuckets, type StorageStatsFilterTotalObjects, type StorageStatsFilterTotalStorageBytes, type StorageStatsRequest, StorageStatsRequestSchema, type StorageStatsType, type Subscription, type SubscriptionFilter, type SubscriptionFilterDunningStage, type SubscriptionFilterId, type SubscriptionFilterNextRetryAt, type SystemMessage, type SystemMessageFilter, type SystemMessageFilterContent, type SystemMessageFilterId, type SystemMessageFilterIsActive, type SystemMessageFilterPublishedAt, type SystemMessageFilterRequiresAcceptance, type SystemMessageFilterTitle, type SystemMessageFilterType, type SystemMessageFilterVersion, type Tenant, type TenantDocumentStats, type TenantDocumentStatsFilter, type TenantDocumentStatsFilterCompleted, type TenantDocumentStatsFilterFailed, type TenantDocumentStatsFilterId, type TenantDocumentStatsFilterProcessing, type TenantDocumentStatsFilterQueued, type TenantDocumentStatsFilterTenantId, type TenantDocumentStatsFilterTotal, type TenantFilter, type TenantFilterApplicationId, type TenantFilterAutoTopUpAmount, type TenantFilterAutoTopUpEnabled, type TenantFilterAutoTopUpPackageId, type TenantFilterAutoTopUpThreshold, type TenantFilterBadgeUrl, type TenantFilterCreditBalance, type TenantFilterId, type TenantFilterInitialCredits, type TenantFilterKind, type TenantFilterLogoUrl, type TenantFilterName, type TenantFilterSlug, type TenantFilterTrainingPriceCredits, type TenantMembership, type TenantMembershipFilter, type TenantMembershipFilterIsOwner, type TenantMembershipFilterRole, type TenantMembershipFilterTenantId, type TenantMembershipFilterUserId, type TenantPricingOverride, type TenantPricingOverrideFilter, type TenantPricingOverrideFilterId, type TenantStats, type TenantStatsFilter, type TenantStatsFilterCredits, type TenantStatsFilterDocuments, type TenantStatsFilterFailed, type TenantStatsFilterFiles, type TenantStatsFilterId, type TenantStatsFilterSuccess, type TenantStatsFilterTenantId, type Thread, type ThreadFilter, type ThreadFilterArchivedAt, type ThreadFilterContextSummary, type ThreadFilterId, type ThreadFilterTitle, type ThreadStats, type ThreadStatsFilter, type ThreadStatsFilterActiveThreads24h, type ThreadStatsFilterActiveThreads7d, type ThreadStatsFilterGeneratedAt, type ThreadStatsFilterId, type ThreadStatsFilterMessagesByRole, type ThreadStatsFilterTotalMessages, type ThreadStatsFilterTotalThreads, type ThreadWorkspaceStats, type ThreadWorkspaceStatsFilter, type ThreadWorkspaceStatsFilterActiveThreads24h, type ThreadWorkspaceStatsFilterActiveThreads7d, type ThreadWorkspaceStatsFilterGeneratedAt, type ThreadWorkspaceStatsFilterId, type ThreadWorkspaceStatsFilterMessagesByRole, type ThreadWorkspaceStatsFilterTotalMessages, type ThreadWorkspaceStatsFilterTotalThreads, type ThreadWorkspaceStatsFilterWorkspaceId, TimeoutError, type Token, type TokenFilter, type TokenFilterBrand, type TokenFilterExpMonth, type TokenFilterExpYear, type TokenFilterId, type TokenFilterLast4, type TokenFilterToken, type TrainingAnalytics, type TrainingAnalyticsFilter, type TrainingAnalyticsFilterAccuracyImprovement, type TrainingAnalyticsFilterAvgConfidence, type TrainingAnalyticsFilterConfidenceThreshold, type TrainingAnalyticsFilterDocsNeedingReviewCount, type TrainingAnalyticsFilterId, type TrainingAnalyticsFilterTopCorrectedField, type TrainingAnalyticsFilterTopFieldCorrectionCount, type TrainingAnalyticsFilterTotalExamples, type TrainingAnalyticsFilterTotalFieldsConfirmed, type TrainingAnalyticsFilterTotalFieldsCorrected, type TrainingAnalyticsFilterTotalFieldsReviewed, type TrainingAnalyticsFilterTrained, type TrainingAnalyticsFilterWorkspaceId, type TrainingExample, type TrainingExampleFilter, type TrainingExampleFilterConfidenceScore, type TrainingExampleFilterCorrectedValue, type TrainingExampleFilterCorrectionReasons, type TrainingExampleFilterDocumentId, type TrainingExampleFilterDocumentType, type TrainingExampleFilterEmbedding, type TrainingExampleFilterFieldName, type TrainingExampleFilterId, type TrainingExampleFilterInputText, type TrainingExampleFilterInsertedAt, type TrainingExampleFilterIsConfirmed, type TrainingExampleFilterOriginalValue, type TrainingExampleFilterOutputJson, type TrainingExampleFilterSimilarity, type TrainingExampleFilterTrainingNote, type TrainingExampleFilterTrainingSessionId, type TrainingExampleFilterUpdatedAt, type TrainingExampleFilterVersionId, type TrainingExampleFilterWorkspaceId, type TrainingSession, type TrainingSessionFilter, type TrainingSessionFilterConfirmationsCount, type TrainingSessionFilterCorrectionsCount, type TrainingSessionFilterDocumentFilename, type TrainingSessionFilterId, type TrainingSessionFilterImpactScore, type TrainingSessionFilterInsertedAt, type TrainingSessionFilterRevertedAt, type TrainingSessionFilterStatus, type TrainingSessionFilterTrainingNote, type TrainingSessionFilterUpdatedAt, type TrainingSessionFilterUserEmail, type TrainingSessionFilterUserName, type Transaction, type TransactionFilter, type TransactionFilterAmount, type TransactionFilterCreatedAt, type TransactionFilterCreditsAdded, type TransactionFilterCreditsUsed, type TransactionFilterCurrency, type TransactionFilterDescription, type TransactionFilterErrorMessage, type TransactionFilterId, type TransactionFilterMetadata, type TransactionFilterOperation, type TransactionFilterProviderReference, type TransactionFilterServiceId, type TransactionFilterStatus, type TransactionFilterTenantId, type TransactionFilterTransactionType, type TransactionFilterType, type TransactionFilterUpdatedAt, type Transfer, type TransferFilter, type TransferFilterId, type User, type UserFilter, type UserFilterCurrentWorkspaceId, type UserFilterEmail, type UserFilterId, type UserFilterIsAppAdmin, type UserFilterIsPlatformAdmin, type UserProfile, type UserProfileFilter, type UserProfileFilterAvatarUrl, type UserProfileFilterBio, type UserProfileFilterFirstName, type UserProfileFilterFullName, type UserProfileFilterId, type UserProfileFilterLastName, type UserProfileFilterPreferences, type UserProfileFilterSocialLinks, type UserProfileFilterUserId, ValidationError, type Wallet, type WalletFilter, type WalletFilterApplicationId, type WalletFilterAutoTopUpAmount, type WalletFilterAutoTopUpEnabled, type WalletFilterAutoTopUpThreshold, type WalletFilterCredits, type WalletFilterCreditsFree, type WalletFilterCreditsPaid, type WalletFilterCreditsSubscription, type WalletFilterEffectiveDate, type WalletFilterId, type WalletFilterPlanId, type WalletFilterPlanSlug, type WalletFilterProrationAmount, type WalletFilterProrationDetails, type WalletFilterStorageBlocksPurchased, type WalletFilterStorageQuotaBytes, type WalletFilterStorageUsedBytes, type WatcherClaim, type WatcherClaimFilter, type WatcherClaimFilterClaimedAt, type WatcherClaimFilterCompletedAt, type WatcherClaimFilterDocumentId, type WatcherClaimFilterErrorMessage, type WatcherClaimFilterExpiresAt, type WatcherClaimFilterFileHash, type WatcherClaimFilterFileName, type WatcherClaimFilterFilePath, type WatcherClaimFilterFileSize, type WatcherClaimFilterId, type WatcherClaimFilterMachineId, type WatcherClaimFilterMachineName, type WatcherClaimFilterRetryCount, type WatcherClaimFilterStatus, type WatcherClaimFilterWorkspaceId, type WatcherEvent, type WatcherEventFilter, type WatcherEventFilterClaimId, type WatcherEventFilterCloudStoragePath, type WatcherEventFilterCreatedAt, type WatcherEventFilterDestinationPath, type WatcherEventFilterDocumentId, type WatcherEventFilterErrorMessage, type WatcherEventFilterEventType, type WatcherEventFilterFileHash, type WatcherEventFilterFileName, type WatcherEventFilterFilePath, type WatcherEventFilterFileSize, type WatcherEventFilterId, type WatcherEventFilterMachineId, type WatcherEventFilterMachineName, type WatcherEventFilterRetryCount, type WatcherEventFilterSkipReason, type WatcherEventFilterSource, type WatcherEventFilterWorkspaceId, type WebhookBulkDisableRequest, WebhookBulkDisableSchema, type WebhookBulkEnableRequest, WebhookBulkEnableSchema, type WebhookConfig, type WebhookConfigCreateRequest, WebhookConfigCreateSchema, type WebhookConfigFilter, type WebhookConfigFilterApplicationId, type WebhookConfigFilterEnabled, type WebhookConfigFilterId, type WebhookConfigFilterInsertedAt, type WebhookConfigFilterName, type WebhookConfigFilterSecret, type WebhookConfigFilterTenantId, type WebhookConfigFilterUpdatedAt, type WebhookConfigFilterUrl, type WebhookDelivery, type WebhookDeliveryBulkRetryRequest, WebhookDeliveryBulkRetrySchema, type WebhookDeliveryFilter, type WebhookDeliveryFilterAttemptCount, type WebhookDeliveryFilterEventType, type WebhookDeliveryFilterId, type WebhookDeliveryFilterInsertedAt, type WebhookDeliveryFilterNextRetryAt, type WebhookDeliveryFilterPayload, type WebhookDeliveryFilterRequestHeaders, type WebhookDeliveryFilterResponseBody, type WebhookDeliveryFilterResponseStatus, type WebhookDeliveryFilterStatus, type WebhookDeliveryFilterUpdatedAt, type WebhookDeliveryFilterUrl, type WebhookDeliveryFilterWebhookConfigId, type WholesaleAgreement, type WholesaleAgreementFilter, type WholesaleAgreementFilterEffectiveDate, type WholesaleAgreementFilterHoldDays, type WholesaleAgreementFilterId, type WholesaleAgreementFilterIsvTenantId, type WholesaleAgreementFilterMinimumPayoutCents, type WholesaleAgreementFilterModel, type WholesaleAgreementFilterNotes, type WholesaleAgreementFilterSettlementFrequency, type WholesaleAgreementFilterTakeRatePercent, type Workspace, type WorkspaceDocumentStats, type WorkspaceDocumentStatsFilter, type WorkspaceDocumentStatsFilterCompleted, type WorkspaceDocumentStatsFilterFailed, type WorkspaceDocumentStatsFilterId, type WorkspaceDocumentStatsFilterProcessing, type WorkspaceDocumentStatsFilterQueued, type WorkspaceDocumentStatsFilterTotal, type WorkspaceDocumentStatsFilterWorkspaceId, type WorkspaceDocumentStatsFilterWorkspaceName, type WorkspaceFilter, type WorkspaceFilterApp, type WorkspaceFilterApplicationId, type WorkspaceFilterArchivedAt, type WorkspaceFilterCreatedAt, type WorkspaceFilterDescription, type WorkspaceFilterExpiresAt, type WorkspaceFilterId, type WorkspaceFilterIsDefault, type WorkspaceFilterLastSweepAt, type WorkspaceFilterLowBalanceThreshold, type WorkspaceFilterName, type WorkspaceFilterRenewalParams, type WorkspaceFilterSlug, type WorkspaceFilterSpecialtyAgentId, type WorkspaceFilterTenantId, type WorkspaceFilterUpdatedAt, type WorkspaceMembership, type WorkspaceMembershipFilter, type WorkspaceMembershipFilterCreatedAt, type WorkspaceMembershipFilterLastVisitedAt, type WorkspaceMembershipFilterUpdatedAt, type WorkspaceMembershipFilterUserId, type WorkspaceMembershipFilterWorkspaceId, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, GptAdmin as default, handleApiError };
|