@gpt-core/admin 0.4.9 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +332 -1369
- package/dist/index.d.ts +332 -1369
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -46,31 +46,32 @@ type WorkspaceSettingsInputCreateType = {
|
|
|
46
46
|
overdraft_limit?: number | unknown;
|
|
47
47
|
overdraft_period?: "daily" | "weekly" | "monthly" | unknown;
|
|
48
48
|
} | unknown;
|
|
49
|
-
extraction?: unknown | {
|
|
50
|
-
cloud?: {
|
|
51
|
-
bucket?: string | unknown;
|
|
52
|
-
daily_at?: string | unknown;
|
|
53
|
-
errors_path?: string | unknown;
|
|
54
|
-
exports_path?: string | unknown;
|
|
55
|
-
interval_minutes?: number | unknown;
|
|
56
|
-
mode?: "immediate" | "scheduled" | unknown;
|
|
57
|
-
processed_path?: string | unknown;
|
|
58
|
-
schedule_type?: "interval" | "daily" | unknown;
|
|
59
|
-
source_path?: string | unknown;
|
|
60
|
-
timezone?: string | unknown;
|
|
61
|
-
} | unknown;
|
|
62
|
-
local?: unknown;
|
|
63
|
-
} | {
|
|
64
|
-
cloud?: unknown;
|
|
65
|
-
local?: unknown;
|
|
66
|
-
};
|
|
67
49
|
scheduling?: {
|
|
68
50
|
enabled?: boolean | unknown;
|
|
69
51
|
interval_minutes?: number | unknown;
|
|
70
52
|
} | unknown;
|
|
71
|
-
storage?: {
|
|
72
|
-
|
|
73
|
-
|
|
53
|
+
storage?: unknown | {
|
|
54
|
+
errors?: {
|
|
55
|
+
bucket_id?: string | unknown;
|
|
56
|
+
destination?: "local" | "storage" | unknown;
|
|
57
|
+
local_path?: string | unknown;
|
|
58
|
+
} | unknown;
|
|
59
|
+
input?: {
|
|
60
|
+
bucket_id?: string | unknown;
|
|
61
|
+
local_path?: string | unknown;
|
|
62
|
+
source?: "local" | "storage" | unknown;
|
|
63
|
+
} | unknown;
|
|
64
|
+
output?: {
|
|
65
|
+
bucket_id?: string | unknown;
|
|
66
|
+
destination?: "local" | "storage" | unknown;
|
|
67
|
+
local_path?: string | unknown;
|
|
68
|
+
retention_minutes?: number | unknown;
|
|
69
|
+
} | unknown;
|
|
70
|
+
} | {
|
|
71
|
+
errors?: unknown;
|
|
72
|
+
input?: unknown;
|
|
73
|
+
output?: unknown;
|
|
74
|
+
};
|
|
74
75
|
};
|
|
75
76
|
/**
|
|
76
77
|
* Filters the query to results matching the given filter object
|
|
@@ -185,16 +186,6 @@ type PlanFilterMonthlyPrice = {
|
|
|
185
186
|
currency: string;
|
|
186
187
|
};
|
|
187
188
|
};
|
|
188
|
-
type ExtractionDocumentFilterFolderId = {
|
|
189
|
-
eq?: string;
|
|
190
|
-
greater_than?: string;
|
|
191
|
-
greater_than_or_equal?: string;
|
|
192
|
-
in?: Array<string>;
|
|
193
|
-
is_nil?: boolean;
|
|
194
|
-
less_than?: string;
|
|
195
|
-
less_than_or_equal?: string;
|
|
196
|
-
not_eq?: string;
|
|
197
|
-
};
|
|
198
189
|
type WorkspaceFilterExpiresAt = {
|
|
199
190
|
eq?: string;
|
|
200
191
|
greater_than?: string;
|
|
@@ -266,26 +257,7 @@ type WebhookConfig = {
|
|
|
266
257
|
* An attributes object for a webhook_config
|
|
267
258
|
*/
|
|
268
259
|
attributes?: {
|
|
269
|
-
|
|
270
|
-
* Field included by default.
|
|
271
|
-
*/
|
|
272
|
-
enabled?: boolean | null | unknown;
|
|
273
|
-
/**
|
|
274
|
-
* Field included by default.
|
|
275
|
-
*/
|
|
276
|
-
events?: Array<string> | null | unknown;
|
|
277
|
-
/**
|
|
278
|
-
* Field included by default.
|
|
279
|
-
*/
|
|
280
|
-
name: string;
|
|
281
|
-
/**
|
|
282
|
-
* Field included by default.
|
|
283
|
-
*/
|
|
284
|
-
secret?: string | null | unknown;
|
|
285
|
-
/**
|
|
286
|
-
* Field included by default.
|
|
287
|
-
*/
|
|
288
|
-
url: string;
|
|
260
|
+
[key: string]: never;
|
|
289
261
|
};
|
|
290
262
|
id: string;
|
|
291
263
|
/**
|
|
@@ -614,19 +586,6 @@ type ExtractionDocumentFilterBilledCredits = {
|
|
|
614
586
|
less_than_or_equal?: number;
|
|
615
587
|
not_eq?: number;
|
|
616
588
|
};
|
|
617
|
-
type WebhookConfigFilterName = {
|
|
618
|
-
contains?: string;
|
|
619
|
-
eq?: string;
|
|
620
|
-
greater_than?: string;
|
|
621
|
-
greater_than_or_equal?: string;
|
|
622
|
-
ilike?: string;
|
|
623
|
-
in?: Array<string>;
|
|
624
|
-
is_nil?: boolean;
|
|
625
|
-
less_than?: string;
|
|
626
|
-
less_than_or_equal?: string;
|
|
627
|
-
like?: string;
|
|
628
|
-
not_eq?: string;
|
|
629
|
-
};
|
|
630
589
|
type ExtractionSchemaFieldFilterRequired = {
|
|
631
590
|
eq?: boolean;
|
|
632
591
|
greater_than?: boolean;
|
|
@@ -807,19 +766,6 @@ type ApplicationFilterSlug = {
|
|
|
807
766
|
like?: string;
|
|
808
767
|
not_eq?: string;
|
|
809
768
|
};
|
|
810
|
-
type WebhookConfigFilterUrl = {
|
|
811
|
-
contains?: string;
|
|
812
|
-
eq?: string;
|
|
813
|
-
greater_than?: string;
|
|
814
|
-
greater_than_or_equal?: string;
|
|
815
|
-
ilike?: string;
|
|
816
|
-
in?: Array<string>;
|
|
817
|
-
is_nil?: boolean;
|
|
818
|
-
less_than?: string;
|
|
819
|
-
less_than_or_equal?: string;
|
|
820
|
-
like?: string;
|
|
821
|
-
not_eq?: string;
|
|
822
|
-
};
|
|
823
769
|
type ExtractionDocumentFilterPages = {
|
|
824
770
|
eq?: number;
|
|
825
771
|
greater_than?: number;
|
|
@@ -1040,6 +986,17 @@ type Customer = {
|
|
|
1040
986
|
};
|
|
1041
987
|
type: string;
|
|
1042
988
|
};
|
|
989
|
+
type PresignedUrlFilterStoragePath = {
|
|
990
|
+
contains?: string;
|
|
991
|
+
eq?: string;
|
|
992
|
+
greater_than?: string;
|
|
993
|
+
greater_than_or_equal?: string;
|
|
994
|
+
in?: Array<string>;
|
|
995
|
+
is_nil?: boolean;
|
|
996
|
+
less_than?: string;
|
|
997
|
+
less_than_or_equal?: string;
|
|
998
|
+
not_eq?: string;
|
|
999
|
+
};
|
|
1043
1000
|
type SavedSearchFilterName = {
|
|
1044
1001
|
contains?: string;
|
|
1045
1002
|
eq?: string;
|
|
@@ -1342,36 +1299,10 @@ type SavedSearchFilterId = {
|
|
|
1342
1299
|
less_than_or_equal?: string;
|
|
1343
1300
|
not_eq?: string;
|
|
1344
1301
|
};
|
|
1345
|
-
type WebhookDeliveryFilterUrl = {
|
|
1346
|
-
contains?: string;
|
|
1347
|
-
eq?: string;
|
|
1348
|
-
greater_than?: string;
|
|
1349
|
-
greater_than_or_equal?: string;
|
|
1350
|
-
ilike?: string;
|
|
1351
|
-
in?: Array<string>;
|
|
1352
|
-
is_nil?: boolean;
|
|
1353
|
-
less_than?: string;
|
|
1354
|
-
less_than_or_equal?: string;
|
|
1355
|
-
like?: string;
|
|
1356
|
-
not_eq?: string;
|
|
1357
|
-
};
|
|
1358
1302
|
/**
|
|
1359
1303
|
* Filters the query to results matching the given filter object
|
|
1360
1304
|
*/
|
|
1361
1305
|
type PricingRuleFilter = unknown;
|
|
1362
|
-
type WebhookDeliveryFilterResponseBody = {
|
|
1363
|
-
contains?: string;
|
|
1364
|
-
eq?: string;
|
|
1365
|
-
greater_than?: string;
|
|
1366
|
-
greater_than_or_equal?: string;
|
|
1367
|
-
ilike?: string;
|
|
1368
|
-
in?: Array<string>;
|
|
1369
|
-
is_nil?: boolean;
|
|
1370
|
-
less_than?: string;
|
|
1371
|
-
less_than_or_equal?: string;
|
|
1372
|
-
like?: string;
|
|
1373
|
-
not_eq?: string;
|
|
1374
|
-
};
|
|
1375
1306
|
type LedgerFilterId = {
|
|
1376
1307
|
eq?: string;
|
|
1377
1308
|
greater_than?: string;
|
|
@@ -1382,16 +1313,6 @@ type LedgerFilterId = {
|
|
|
1382
1313
|
less_than_or_equal?: string;
|
|
1383
1314
|
not_eq?: string;
|
|
1384
1315
|
};
|
|
1385
|
-
type WebhookDeliveryFilterWebhookConfigId = {
|
|
1386
|
-
eq?: string;
|
|
1387
|
-
greater_than?: string;
|
|
1388
|
-
greater_than_or_equal?: string;
|
|
1389
|
-
in?: Array<string>;
|
|
1390
|
-
is_nil?: boolean;
|
|
1391
|
-
less_than?: string;
|
|
1392
|
-
less_than_or_equal?: string;
|
|
1393
|
-
not_eq?: string;
|
|
1394
|
-
};
|
|
1395
1316
|
type ConfigFilterKey = {
|
|
1396
1317
|
contains?: string;
|
|
1397
1318
|
eq?: string;
|
|
@@ -1444,6 +1365,19 @@ type DocumentChunkFilterEmbedding = {
|
|
|
1444
1365
|
less_than_or_equal?: unknown;
|
|
1445
1366
|
not_eq?: unknown;
|
|
1446
1367
|
};
|
|
1368
|
+
/**
|
|
1369
|
+
* Timestamp when document processing completed (status changed to :completed)
|
|
1370
|
+
*/
|
|
1371
|
+
type ExtractionDocumentFilterCompletedAt = {
|
|
1372
|
+
eq?: unknown;
|
|
1373
|
+
greater_than?: unknown;
|
|
1374
|
+
greater_than_or_equal?: unknown;
|
|
1375
|
+
in?: Array<unknown>;
|
|
1376
|
+
is_nil?: boolean;
|
|
1377
|
+
less_than?: unknown;
|
|
1378
|
+
less_than_or_equal?: unknown;
|
|
1379
|
+
not_eq?: unknown;
|
|
1380
|
+
};
|
|
1447
1381
|
type ExtractionDocumentFilterDeletedAt = {
|
|
1448
1382
|
eq?: unknown;
|
|
1449
1383
|
greater_than?: unknown;
|
|
@@ -1494,17 +1428,6 @@ type ExtractionExportFilterFileSizeBytes = {
|
|
|
1494
1428
|
less_than_or_equal?: number;
|
|
1495
1429
|
not_eq?: number;
|
|
1496
1430
|
};
|
|
1497
|
-
type WebhookEventFilterDescription = {
|
|
1498
|
-
contains?: string;
|
|
1499
|
-
eq?: string;
|
|
1500
|
-
greater_than?: string;
|
|
1501
|
-
greater_than_or_equal?: string;
|
|
1502
|
-
in?: Array<string>;
|
|
1503
|
-
is_nil?: boolean;
|
|
1504
|
-
less_than?: string;
|
|
1505
|
-
less_than_or_equal?: string;
|
|
1506
|
-
not_eq?: string;
|
|
1507
|
-
};
|
|
1508
1431
|
type UserFilterCurrentWorkspaceId = {
|
|
1509
1432
|
eq?: string;
|
|
1510
1433
|
greater_than?: string;
|
|
@@ -2111,6 +2034,16 @@ type PricingStrategyFilter = unknown;
|
|
|
2111
2034
|
* Filters the query to results matching the given filter object
|
|
2112
2035
|
*/
|
|
2113
2036
|
type UserProfileFilter = unknown;
|
|
2037
|
+
type PresignedUrlFilterExpiresIn = {
|
|
2038
|
+
eq?: number;
|
|
2039
|
+
greater_than?: number;
|
|
2040
|
+
greater_than_or_equal?: number;
|
|
2041
|
+
in?: Array<number>;
|
|
2042
|
+
is_nil?: boolean;
|
|
2043
|
+
less_than?: number;
|
|
2044
|
+
less_than_or_equal?: number;
|
|
2045
|
+
not_eq?: number;
|
|
2046
|
+
};
|
|
2114
2047
|
type CreditPackageFilterPrice = {
|
|
2115
2048
|
eq?: {
|
|
2116
2049
|
amount: string;
|
|
@@ -2265,31 +2198,32 @@ type WorkspaceSettingsInputUpdateType = {
|
|
|
2265
2198
|
overdraft_limit?: number | unknown;
|
|
2266
2199
|
overdraft_period?: "daily" | "weekly" | "monthly" | unknown;
|
|
2267
2200
|
} | unknown;
|
|
2268
|
-
extraction?: unknown | {
|
|
2269
|
-
cloud?: {
|
|
2270
|
-
bucket?: string | unknown;
|
|
2271
|
-
daily_at?: string | unknown;
|
|
2272
|
-
errors_path?: string | unknown;
|
|
2273
|
-
exports_path?: string | unknown;
|
|
2274
|
-
interval_minutes?: number | unknown;
|
|
2275
|
-
mode?: "immediate" | "scheduled" | unknown;
|
|
2276
|
-
processed_path?: string | unknown;
|
|
2277
|
-
schedule_type?: "interval" | "daily" | unknown;
|
|
2278
|
-
source_path?: string | unknown;
|
|
2279
|
-
timezone?: string | unknown;
|
|
2280
|
-
} | unknown;
|
|
2281
|
-
local?: unknown;
|
|
2282
|
-
} | {
|
|
2283
|
-
cloud?: unknown;
|
|
2284
|
-
local?: unknown;
|
|
2285
|
-
};
|
|
2286
2201
|
scheduling?: {
|
|
2287
2202
|
enabled?: boolean | unknown;
|
|
2288
2203
|
interval_minutes?: number | unknown;
|
|
2289
2204
|
} | unknown;
|
|
2290
|
-
storage?: {
|
|
2291
|
-
|
|
2292
|
-
|
|
2205
|
+
storage?: unknown | {
|
|
2206
|
+
errors?: {
|
|
2207
|
+
bucket_id?: string | unknown;
|
|
2208
|
+
destination?: "local" | "storage" | unknown;
|
|
2209
|
+
local_path?: string | unknown;
|
|
2210
|
+
} | unknown;
|
|
2211
|
+
input?: {
|
|
2212
|
+
bucket_id?: string | unknown;
|
|
2213
|
+
local_path?: string | unknown;
|
|
2214
|
+
source?: "local" | "storage" | unknown;
|
|
2215
|
+
} | unknown;
|
|
2216
|
+
output?: {
|
|
2217
|
+
bucket_id?: string | unknown;
|
|
2218
|
+
destination?: "local" | "storage" | unknown;
|
|
2219
|
+
local_path?: string | unknown;
|
|
2220
|
+
retention_minutes?: number | unknown;
|
|
2221
|
+
} | unknown;
|
|
2222
|
+
} | {
|
|
2223
|
+
errors?: unknown;
|
|
2224
|
+
input?: unknown;
|
|
2225
|
+
output?: unknown;
|
|
2226
|
+
};
|
|
2293
2227
|
};
|
|
2294
2228
|
type TransactionFilterErrorMessage = {
|
|
2295
2229
|
contains?: string;
|
|
@@ -2348,15 +2282,16 @@ type PresignedUrlFilterId = {
|
|
|
2348
2282
|
less_than_or_equal?: string;
|
|
2349
2283
|
not_eq?: string;
|
|
2350
2284
|
};
|
|
2351
|
-
type
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
2285
|
+
type PresignedUrlFilterUploadUrl = {
|
|
2286
|
+
contains?: string;
|
|
2287
|
+
eq?: string;
|
|
2288
|
+
greater_than?: string;
|
|
2289
|
+
greater_than_or_equal?: string;
|
|
2290
|
+
in?: Array<string>;
|
|
2356
2291
|
is_nil?: boolean;
|
|
2357
|
-
less_than?:
|
|
2358
|
-
less_than_or_equal?:
|
|
2359
|
-
not_eq?:
|
|
2292
|
+
less_than?: string;
|
|
2293
|
+
less_than_or_equal?: string;
|
|
2294
|
+
not_eq?: string;
|
|
2360
2295
|
};
|
|
2361
2296
|
/**
|
|
2362
2297
|
* A link MUST be represented as either: a string containing the link's URL or a link object.
|
|
@@ -2580,17 +2515,6 @@ type WorkspaceFilterArchivedAt = {
|
|
|
2580
2515
|
less_than_or_equal?: unknown;
|
|
2581
2516
|
not_eq?: unknown;
|
|
2582
2517
|
};
|
|
2583
|
-
type WebhookEventFilterEventType = {
|
|
2584
|
-
contains?: string;
|
|
2585
|
-
eq?: string;
|
|
2586
|
-
greater_than?: string;
|
|
2587
|
-
greater_than_or_equal?: string;
|
|
2588
|
-
in?: Array<string>;
|
|
2589
|
-
is_nil?: boolean;
|
|
2590
|
-
less_than?: string;
|
|
2591
|
-
less_than_or_equal?: string;
|
|
2592
|
-
not_eq?: string;
|
|
2593
|
-
};
|
|
2594
2518
|
type ExtractionDocumentFilterStoragePath = {
|
|
2595
2519
|
contains?: string;
|
|
2596
2520
|
eq?: string;
|
|
@@ -2686,10 +2610,6 @@ type EmbeddingFilterId = {
|
|
|
2686
2610
|
less_than_or_equal?: string;
|
|
2687
2611
|
not_eq?: string;
|
|
2688
2612
|
};
|
|
2689
|
-
/**
|
|
2690
|
-
* Filters the query to results matching the given filter object
|
|
2691
|
-
*/
|
|
2692
|
-
type ExtractionFolderFilter = unknown;
|
|
2693
2613
|
type WalletFilterId = {
|
|
2694
2614
|
eq?: string;
|
|
2695
2615
|
greater_than?: string;
|
|
@@ -2784,16 +2704,6 @@ type PlanFilterId = {
|
|
|
2784
2704
|
less_than_or_equal?: string;
|
|
2785
2705
|
not_eq?: string;
|
|
2786
2706
|
};
|
|
2787
|
-
type WebhookConfigFilterEnabled = {
|
|
2788
|
-
eq?: boolean;
|
|
2789
|
-
greater_than?: boolean;
|
|
2790
|
-
greater_than_or_equal?: boolean;
|
|
2791
|
-
in?: Array<boolean>;
|
|
2792
|
-
is_nil?: boolean;
|
|
2793
|
-
less_than?: boolean;
|
|
2794
|
-
less_than_or_equal?: boolean;
|
|
2795
|
-
not_eq?: boolean;
|
|
2796
|
-
};
|
|
2797
2707
|
/**
|
|
2798
2708
|
* Filters the query to results matching the given filter object
|
|
2799
2709
|
*/
|
|
@@ -2884,28 +2794,6 @@ type TransactionFilterAmount = {
|
|
|
2884
2794
|
less_than_or_equal?: number;
|
|
2885
2795
|
not_eq?: number;
|
|
2886
2796
|
};
|
|
2887
|
-
/**
|
|
2888
|
-
* A "Resource object" representing a extraction_folder
|
|
2889
|
-
*/
|
|
2890
|
-
type ExtractionFolder = {
|
|
2891
|
-
/**
|
|
2892
|
-
* An attributes object for a extraction_folder
|
|
2893
|
-
*/
|
|
2894
|
-
attributes?: {
|
|
2895
|
-
/**
|
|
2896
|
-
* Field included by default.
|
|
2897
|
-
*/
|
|
2898
|
-
name: string;
|
|
2899
|
-
};
|
|
2900
|
-
id: string;
|
|
2901
|
-
/**
|
|
2902
|
-
* A relationships object for a extraction_folder
|
|
2903
|
-
*/
|
|
2904
|
-
relationships?: {
|
|
2905
|
-
[key: string]: never;
|
|
2906
|
-
};
|
|
2907
|
-
type: string;
|
|
2908
|
-
};
|
|
2909
2797
|
type ApiKeyFilterTenantId = {
|
|
2910
2798
|
eq?: string;
|
|
2911
2799
|
greater_than?: string;
|
|
@@ -3145,50 +3033,7 @@ type WebhookDelivery = {
|
|
|
3145
3033
|
* An attributes object for a webhook_delivery
|
|
3146
3034
|
*/
|
|
3147
3035
|
attributes?: {
|
|
3148
|
-
|
|
3149
|
-
* Field included by default.
|
|
3150
|
-
*/
|
|
3151
|
-
attempt_count?: number | null | unknown;
|
|
3152
|
-
/**
|
|
3153
|
-
* Field included by default.
|
|
3154
|
-
*/
|
|
3155
|
-
event_type?: string | null | unknown;
|
|
3156
|
-
/**
|
|
3157
|
-
* Field included by default.
|
|
3158
|
-
*/
|
|
3159
|
-
next_retry_at?: unknown;
|
|
3160
|
-
/**
|
|
3161
|
-
* Field included by default.
|
|
3162
|
-
*/
|
|
3163
|
-
payload: {
|
|
3164
|
-
[key: string]: unknown;
|
|
3165
|
-
};
|
|
3166
|
-
/**
|
|
3167
|
-
* Field included by default.
|
|
3168
|
-
*/
|
|
3169
|
-
request_headers?: {
|
|
3170
|
-
[key: string]: unknown;
|
|
3171
|
-
} | null | unknown;
|
|
3172
|
-
/**
|
|
3173
|
-
* Field included by default.
|
|
3174
|
-
*/
|
|
3175
|
-
response_body?: string | null | unknown;
|
|
3176
|
-
/**
|
|
3177
|
-
* Field included by default.
|
|
3178
|
-
*/
|
|
3179
|
-
response_status?: number | null | unknown;
|
|
3180
|
-
/**
|
|
3181
|
-
* Field included by default.
|
|
3182
|
-
*/
|
|
3183
|
-
status?: "pending" | "success" | "failed" | "retrying" | unknown;
|
|
3184
|
-
/**
|
|
3185
|
-
* Field included by default.
|
|
3186
|
-
*/
|
|
3187
|
-
url: string;
|
|
3188
|
-
/**
|
|
3189
|
-
* Field included by default.
|
|
3190
|
-
*/
|
|
3191
|
-
webhook_config_id: string;
|
|
3036
|
+
[key: string]: never;
|
|
3192
3037
|
};
|
|
3193
3038
|
id: string;
|
|
3194
3039
|
/**
|
|
@@ -3199,16 +3044,6 @@ type WebhookDelivery = {
|
|
|
3199
3044
|
};
|
|
3200
3045
|
type: string;
|
|
3201
3046
|
};
|
|
3202
|
-
type WebhookDeliveryFilterStatus = {
|
|
3203
|
-
eq?: "pending" | "success" | "failed" | "retrying";
|
|
3204
|
-
greater_than?: "pending" | "success" | "failed" | "retrying";
|
|
3205
|
-
greater_than_or_equal?: "pending" | "success" | "failed" | "retrying";
|
|
3206
|
-
in?: Array<string>;
|
|
3207
|
-
is_nil?: boolean;
|
|
3208
|
-
less_than?: "pending" | "success" | "failed" | "retrying";
|
|
3209
|
-
less_than_or_equal?: "pending" | "success" | "failed" | "retrying";
|
|
3210
|
-
not_eq?: "pending" | "success" | "failed" | "retrying";
|
|
3211
|
-
};
|
|
3212
3047
|
/**
|
|
3213
3048
|
* A "Resource object" representing a embedding
|
|
3214
3049
|
*/
|
|
@@ -3428,10 +3263,6 @@ type PlanFilterCreatedAt = {
|
|
|
3428
3263
|
less_than_or_equal?: unknown;
|
|
3429
3264
|
not_eq?: unknown;
|
|
3430
3265
|
};
|
|
3431
|
-
/**
|
|
3432
|
-
* Filters the query to results matching the given filter object
|
|
3433
|
-
*/
|
|
3434
|
-
type WebhookEventFilter = unknown;
|
|
3435
3266
|
type WorkspaceFilterApplicationId = {
|
|
3436
3267
|
eq?: string;
|
|
3437
3268
|
greater_than?: string;
|
|
@@ -3442,16 +3273,18 @@ type WorkspaceFilterApplicationId = {
|
|
|
3442
3273
|
less_than_or_equal?: string;
|
|
3443
3274
|
not_eq?: string;
|
|
3444
3275
|
};
|
|
3445
|
-
|
|
3446
|
-
|
|
3447
|
-
|
|
3448
|
-
|
|
3449
|
-
|
|
3450
|
-
|
|
3276
|
+
/**
|
|
3277
|
+
* Average confidence score across all extracted fields (0.0 to 1.0)
|
|
3278
|
+
*/
|
|
3279
|
+
type ExtractionDocumentFilterAvgConfidence = {
|
|
3280
|
+
eq?: number;
|
|
3281
|
+
greater_than?: number;
|
|
3282
|
+
greater_than_or_equal?: number;
|
|
3283
|
+
in?: Array<number>;
|
|
3451
3284
|
is_nil?: boolean;
|
|
3452
|
-
less_than?:
|
|
3453
|
-
less_than_or_equal?:
|
|
3454
|
-
not_eq?:
|
|
3285
|
+
less_than?: number;
|
|
3286
|
+
less_than_or_equal?: number;
|
|
3287
|
+
not_eq?: number;
|
|
3455
3288
|
};
|
|
3456
3289
|
/**
|
|
3457
3290
|
* Filters the query to results matching the given filter object
|
|
@@ -3511,40 +3344,6 @@ type CreditPackageFilterUpdatedAt = {
|
|
|
3511
3344
|
less_than_or_equal?: unknown;
|
|
3512
3345
|
not_eq?: unknown;
|
|
3513
3346
|
};
|
|
3514
|
-
type WebhookDeliveryFilterRequestHeaders = {
|
|
3515
|
-
eq?: {
|
|
3516
|
-
[key: string]: unknown;
|
|
3517
|
-
};
|
|
3518
|
-
greater_than?: {
|
|
3519
|
-
[key: string]: unknown;
|
|
3520
|
-
};
|
|
3521
|
-
greater_than_or_equal?: {
|
|
3522
|
-
[key: string]: unknown;
|
|
3523
|
-
};
|
|
3524
|
-
in?: Array<{
|
|
3525
|
-
[key: string]: unknown;
|
|
3526
|
-
}>;
|
|
3527
|
-
is_nil?: boolean;
|
|
3528
|
-
less_than?: {
|
|
3529
|
-
[key: string]: unknown;
|
|
3530
|
-
};
|
|
3531
|
-
less_than_or_equal?: {
|
|
3532
|
-
[key: string]: unknown;
|
|
3533
|
-
};
|
|
3534
|
-
not_eq?: {
|
|
3535
|
-
[key: string]: unknown;
|
|
3536
|
-
};
|
|
3537
|
-
};
|
|
3538
|
-
type ExtractionFolderFilterId = {
|
|
3539
|
-
eq?: string;
|
|
3540
|
-
greater_than?: string;
|
|
3541
|
-
greater_than_or_equal?: string;
|
|
3542
|
-
in?: Array<string>;
|
|
3543
|
-
is_nil?: boolean;
|
|
3544
|
-
less_than?: string;
|
|
3545
|
-
less_than_or_equal?: string;
|
|
3546
|
-
not_eq?: string;
|
|
3547
|
-
};
|
|
3548
3347
|
type TokenFilterId = {
|
|
3549
3348
|
eq?: string;
|
|
3550
3349
|
greater_than?: string;
|
|
@@ -3586,30 +3385,6 @@ type PresignedUrlFilterMethod = {
|
|
|
3586
3385
|
less_than_or_equal?: string;
|
|
3587
3386
|
not_eq?: string;
|
|
3588
3387
|
};
|
|
3589
|
-
type WebhookDeliveryFilterPayload = {
|
|
3590
|
-
eq?: {
|
|
3591
|
-
[key: string]: unknown;
|
|
3592
|
-
};
|
|
3593
|
-
greater_than?: {
|
|
3594
|
-
[key: string]: unknown;
|
|
3595
|
-
};
|
|
3596
|
-
greater_than_or_equal?: {
|
|
3597
|
-
[key: string]: unknown;
|
|
3598
|
-
};
|
|
3599
|
-
in?: Array<{
|
|
3600
|
-
[key: string]: unknown;
|
|
3601
|
-
}>;
|
|
3602
|
-
is_nil?: boolean;
|
|
3603
|
-
less_than?: {
|
|
3604
|
-
[key: string]: unknown;
|
|
3605
|
-
};
|
|
3606
|
-
less_than_or_equal?: {
|
|
3607
|
-
[key: string]: unknown;
|
|
3608
|
-
};
|
|
3609
|
-
not_eq?: {
|
|
3610
|
-
[key: string]: unknown;
|
|
3611
|
-
};
|
|
3612
|
-
};
|
|
3613
3388
|
/**
|
|
3614
3389
|
* A "Resource object" representing a pricing_rule
|
|
3615
3390
|
*/
|
|
@@ -3748,19 +3523,6 @@ type ExtractionDocumentFilterMunicipality = {
|
|
|
3748
3523
|
like?: string;
|
|
3749
3524
|
not_eq?: string;
|
|
3750
3525
|
};
|
|
3751
|
-
type WebhookConfigFilterSecret = {
|
|
3752
|
-
contains?: string;
|
|
3753
|
-
eq?: string;
|
|
3754
|
-
greater_than?: string;
|
|
3755
|
-
greater_than_or_equal?: string;
|
|
3756
|
-
ilike?: string;
|
|
3757
|
-
in?: Array<string>;
|
|
3758
|
-
is_nil?: boolean;
|
|
3759
|
-
less_than?: string;
|
|
3760
|
-
less_than_or_equal?: string;
|
|
3761
|
-
like?: string;
|
|
3762
|
-
not_eq?: string;
|
|
3763
|
-
};
|
|
3764
3526
|
type ExtractionResultFilterExtractedFields = {
|
|
3765
3527
|
eq?: {
|
|
3766
3528
|
[key: string]: unknown;
|
|
@@ -3785,19 +3547,6 @@ type ExtractionResultFilterExtractedFields = {
|
|
|
3785
3547
|
[key: string]: unknown;
|
|
3786
3548
|
};
|
|
3787
3549
|
};
|
|
3788
|
-
type WebhookDeliveryFilterEventType = {
|
|
3789
|
-
contains?: string;
|
|
3790
|
-
eq?: string;
|
|
3791
|
-
greater_than?: string;
|
|
3792
|
-
greater_than_or_equal?: string;
|
|
3793
|
-
ilike?: string;
|
|
3794
|
-
in?: Array<string>;
|
|
3795
|
-
is_nil?: boolean;
|
|
3796
|
-
less_than?: string;
|
|
3797
|
-
less_than_or_equal?: string;
|
|
3798
|
-
like?: string;
|
|
3799
|
-
not_eq?: string;
|
|
3800
|
-
};
|
|
3801
3550
|
type ConfigFilterDescription = {
|
|
3802
3551
|
contains?: string;
|
|
3803
3552
|
eq?: string;
|
|
@@ -4425,17 +4174,15 @@ type PresignedUrl = {
|
|
|
4425
4174
|
/**
|
|
4426
4175
|
* Field included by default.
|
|
4427
4176
|
*/
|
|
4428
|
-
|
|
4429
|
-
[key: string]: unknown;
|
|
4430
|
-
} | null | unknown;
|
|
4177
|
+
expires_in: number;
|
|
4431
4178
|
/**
|
|
4432
4179
|
* Field included by default.
|
|
4433
4180
|
*/
|
|
4434
|
-
|
|
4181
|
+
storage_path: string;
|
|
4435
4182
|
/**
|
|
4436
4183
|
* Field included by default.
|
|
4437
4184
|
*/
|
|
4438
|
-
|
|
4185
|
+
upload_url: string;
|
|
4439
4186
|
};
|
|
4440
4187
|
id: string;
|
|
4441
4188
|
/**
|
|
@@ -5200,36 +4947,6 @@ type TenantFilterKind = {
|
|
|
5200
4947
|
less_than_or_equal?: "platform" | "admin" | "tenant";
|
|
5201
4948
|
not_eq?: "platform" | "admin" | "tenant";
|
|
5202
4949
|
};
|
|
5203
|
-
/**
|
|
5204
|
-
* A "Resource object" representing a webhook_event
|
|
5205
|
-
*/
|
|
5206
|
-
type WebhookEvent = {
|
|
5207
|
-
/**
|
|
5208
|
-
* An attributes object for a webhook_event
|
|
5209
|
-
*/
|
|
5210
|
-
attributes?: {
|
|
5211
|
-
/**
|
|
5212
|
-
* Field included by default.
|
|
5213
|
-
*/
|
|
5214
|
-
category: string;
|
|
5215
|
-
/**
|
|
5216
|
-
* Field included by default.
|
|
5217
|
-
*/
|
|
5218
|
-
description: string;
|
|
5219
|
-
/**
|
|
5220
|
-
* Field included by default.
|
|
5221
|
-
*/
|
|
5222
|
-
event_type: string;
|
|
5223
|
-
};
|
|
5224
|
-
id: string;
|
|
5225
|
-
/**
|
|
5226
|
-
* A relationships object for a webhook_event
|
|
5227
|
-
*/
|
|
5228
|
-
relationships?: {
|
|
5229
|
-
[key: string]: never;
|
|
5230
|
-
};
|
|
5231
|
-
type: string;
|
|
5232
|
-
};
|
|
5233
4950
|
/**
|
|
5234
4951
|
* A "Resource object" representing a agent
|
|
5235
4952
|
*/
|
|
@@ -5440,16 +5157,6 @@ type ExtractionDocumentFilterProcessedAt = {
|
|
|
5440
5157
|
less_than_or_equal?: unknown;
|
|
5441
5158
|
not_eq?: unknown;
|
|
5442
5159
|
};
|
|
5443
|
-
type WebhookDeliveryFilterResponseStatus = {
|
|
5444
|
-
eq?: number;
|
|
5445
|
-
greater_than?: number;
|
|
5446
|
-
greater_than_or_equal?: number;
|
|
5447
|
-
in?: Array<number>;
|
|
5448
|
-
is_nil?: boolean;
|
|
5449
|
-
less_than?: number;
|
|
5450
|
-
less_than_or_equal?: number;
|
|
5451
|
-
not_eq?: number;
|
|
5452
|
-
};
|
|
5453
5160
|
type ObjectFilterKey = {
|
|
5454
5161
|
contains?: string;
|
|
5455
5162
|
eq?: string;
|
|
@@ -5568,120 +5275,76 @@ type Workspace = {
|
|
|
5568
5275
|
/**
|
|
5569
5276
|
* Field included by default.
|
|
5570
5277
|
*/
|
|
5571
|
-
|
|
5278
|
+
scheduling: {
|
|
5572
5279
|
/**
|
|
5573
5280
|
* Field included by default.
|
|
5574
5281
|
*/
|
|
5575
|
-
|
|
5576
|
-
|
|
5577
|
-
|
|
5578
|
-
|
|
5579
|
-
|
|
5580
|
-
|
|
5581
|
-
|
|
5582
|
-
|
|
5583
|
-
|
|
5584
|
-
|
|
5585
|
-
|
|
5586
|
-
|
|
5587
|
-
|
|
5588
|
-
|
|
5589
|
-
* Field included by default.
|
|
5590
|
-
*/
|
|
5591
|
-
exports_path?: string | null | unknown;
|
|
5592
|
-
/**
|
|
5593
|
-
* Field included by default.
|
|
5594
|
-
*/
|
|
5595
|
-
interval_minutes?: number | null | unknown;
|
|
5596
|
-
/**
|
|
5597
|
-
* Field included by default.
|
|
5598
|
-
*/
|
|
5599
|
-
mode: "immediate" | "scheduled";
|
|
5600
|
-
/**
|
|
5601
|
-
* Field included by default.
|
|
5602
|
-
*/
|
|
5603
|
-
processed_path?: string | null | unknown;
|
|
5282
|
+
enabled: boolean;
|
|
5283
|
+
/**
|
|
5284
|
+
* Field included by default.
|
|
5285
|
+
*/
|
|
5286
|
+
interval_minutes: number;
|
|
5287
|
+
};
|
|
5288
|
+
/**
|
|
5289
|
+
* Field included by default.
|
|
5290
|
+
*/
|
|
5291
|
+
storage: {
|
|
5292
|
+
/**
|
|
5293
|
+
* Field included by default.
|
|
5294
|
+
*/
|
|
5295
|
+
errors: {
|
|
5604
5296
|
/**
|
|
5605
5297
|
* Field included by default.
|
|
5606
5298
|
*/
|
|
5607
|
-
|
|
5299
|
+
bucket_id?: string | null | unknown;
|
|
5608
5300
|
/**
|
|
5609
5301
|
* Field included by default.
|
|
5610
5302
|
*/
|
|
5611
|
-
|
|
5303
|
+
destination: "local" | "storage";
|
|
5612
5304
|
/**
|
|
5613
5305
|
* Field included by default.
|
|
5614
5306
|
*/
|
|
5615
|
-
|
|
5307
|
+
local_path?: string | null | unknown;
|
|
5616
5308
|
};
|
|
5617
5309
|
/**
|
|
5618
5310
|
* Field included by default.
|
|
5619
5311
|
*/
|
|
5620
|
-
|
|
5621
|
-
/**
|
|
5622
|
-
* Field included by default.
|
|
5623
|
-
*/
|
|
5624
|
-
bucket?: string | null | unknown;
|
|
5625
|
-
/**
|
|
5626
|
-
* Field included by default.
|
|
5627
|
-
*/
|
|
5628
|
-
daily_at?: string | null | unknown;
|
|
5629
|
-
/**
|
|
5630
|
-
* Field included by default.
|
|
5631
|
-
*/
|
|
5632
|
-
errors_path?: string | null | unknown;
|
|
5312
|
+
input: {
|
|
5633
5313
|
/**
|
|
5634
5314
|
* Field included by default.
|
|
5635
5315
|
*/
|
|
5636
|
-
|
|
5316
|
+
bucket_id?: string | null | unknown;
|
|
5637
5317
|
/**
|
|
5638
5318
|
* Field included by default.
|
|
5639
5319
|
*/
|
|
5640
|
-
|
|
5320
|
+
local_path?: string | null | unknown;
|
|
5641
5321
|
/**
|
|
5642
5322
|
* Field included by default.
|
|
5643
5323
|
*/
|
|
5644
|
-
|
|
5324
|
+
source: "local" | "storage";
|
|
5325
|
+
};
|
|
5326
|
+
/**
|
|
5327
|
+
* Field included by default.
|
|
5328
|
+
*/
|
|
5329
|
+
output: {
|
|
5645
5330
|
/**
|
|
5646
5331
|
* Field included by default.
|
|
5647
5332
|
*/
|
|
5648
|
-
|
|
5333
|
+
bucket_id?: string | null | unknown;
|
|
5649
5334
|
/**
|
|
5650
5335
|
* Field included by default.
|
|
5651
5336
|
*/
|
|
5652
|
-
|
|
5337
|
+
destination: "local" | "storage";
|
|
5653
5338
|
/**
|
|
5654
5339
|
* Field included by default.
|
|
5655
5340
|
*/
|
|
5656
|
-
|
|
5341
|
+
local_path?: string | null | unknown;
|
|
5657
5342
|
/**
|
|
5658
5343
|
* Field included by default.
|
|
5659
5344
|
*/
|
|
5660
|
-
|
|
5345
|
+
retention_minutes?: number | null | unknown;
|
|
5661
5346
|
};
|
|
5662
5347
|
};
|
|
5663
|
-
/**
|
|
5664
|
-
* Field included by default.
|
|
5665
|
-
*/
|
|
5666
|
-
scheduling: {
|
|
5667
|
-
/**
|
|
5668
|
-
* Field included by default.
|
|
5669
|
-
*/
|
|
5670
|
-
enabled: boolean;
|
|
5671
|
-
/**
|
|
5672
|
-
* Field included by default.
|
|
5673
|
-
*/
|
|
5674
|
-
interval_minutes: number;
|
|
5675
|
-
};
|
|
5676
|
-
/**
|
|
5677
|
-
* Field included by default.
|
|
5678
|
-
*/
|
|
5679
|
-
storage: {
|
|
5680
|
-
/**
|
|
5681
|
-
* Field included by default.
|
|
5682
|
-
*/
|
|
5683
|
-
retention_policy: "never" | "one_day" | "seven_days" | "fourteen_days" | "thirty_days" | "always";
|
|
5684
|
-
};
|
|
5685
5348
|
};
|
|
5686
5349
|
/**
|
|
5687
5350
|
* Field included by default.
|
|
@@ -5730,19 +5393,6 @@ type ExtractionSchemaFieldFilterType = {
|
|
|
5730
5393
|
less_than_or_equal?: "text" | "date" | "currency" | "number" | "boolean";
|
|
5731
5394
|
not_eq?: "text" | "date" | "currency" | "number" | "boolean";
|
|
5732
5395
|
};
|
|
5733
|
-
type ExtractionFolderFilterName = {
|
|
5734
|
-
contains?: string;
|
|
5735
|
-
eq?: string;
|
|
5736
|
-
greater_than?: string;
|
|
5737
|
-
greater_than_or_equal?: string;
|
|
5738
|
-
ilike?: string;
|
|
5739
|
-
in?: Array<string>;
|
|
5740
|
-
is_nil?: boolean;
|
|
5741
|
-
less_than?: string;
|
|
5742
|
-
less_than_or_equal?: string;
|
|
5743
|
-
like?: string;
|
|
5744
|
-
not_eq?: string;
|
|
5745
|
-
};
|
|
5746
5396
|
/**
|
|
5747
5397
|
* A "Resource object" representing a invitation
|
|
5748
5398
|
*/
|
|
@@ -5832,17 +5482,6 @@ type WalletFilterCreditsPaid = {
|
|
|
5832
5482
|
less_than_or_equal?: number;
|
|
5833
5483
|
not_eq?: number;
|
|
5834
5484
|
};
|
|
5835
|
-
type WebhookEventFilterCategory = {
|
|
5836
|
-
contains?: string;
|
|
5837
|
-
eq?: string;
|
|
5838
|
-
greater_than?: string;
|
|
5839
|
-
greater_than_or_equal?: string;
|
|
5840
|
-
in?: Array<string>;
|
|
5841
|
-
is_nil?: boolean;
|
|
5842
|
-
less_than?: string;
|
|
5843
|
-
less_than_or_equal?: string;
|
|
5844
|
-
not_eq?: string;
|
|
5845
|
-
};
|
|
5846
5485
|
/**
|
|
5847
5486
|
* Filters the query to results matching the given filter object
|
|
5848
5487
|
*/
|
|
@@ -5857,16 +5496,6 @@ type UserProfileFilterId = {
|
|
|
5857
5496
|
less_than_or_equal?: string;
|
|
5858
5497
|
not_eq?: string;
|
|
5859
5498
|
};
|
|
5860
|
-
type WebhookDeliveryFilterNextRetryAt = {
|
|
5861
|
-
eq?: unknown;
|
|
5862
|
-
greater_than?: unknown;
|
|
5863
|
-
greater_than_or_equal?: unknown;
|
|
5864
|
-
in?: Array<unknown>;
|
|
5865
|
-
is_nil?: boolean;
|
|
5866
|
-
less_than?: unknown;
|
|
5867
|
-
less_than_or_equal?: unknown;
|
|
5868
|
-
not_eq?: unknown;
|
|
5869
|
-
};
|
|
5870
5499
|
type DocumentStatsFilterCompleted = {
|
|
5871
5500
|
eq?: number;
|
|
5872
5501
|
greater_than?: number;
|
|
@@ -5903,6 +5532,10 @@ type ExtractionDocument = {
|
|
|
5903
5532
|
* An attributes object for a extraction_document
|
|
5904
5533
|
*/
|
|
5905
5534
|
attributes?: {
|
|
5535
|
+
/**
|
|
5536
|
+
* Average confidence score across all extracted fields (0.0 to 1.0). Field included by default.
|
|
5537
|
+
*/
|
|
5538
|
+
avg_confidence?: number | null | unknown;
|
|
5906
5539
|
/**
|
|
5907
5540
|
* Credits billed for processing this document. Field included by default.
|
|
5908
5541
|
*/
|
|
@@ -5917,6 +5550,10 @@ type ExtractionDocument = {
|
|
|
5917
5550
|
* Overall classification confidence (0.0 to 1.0). Field included by default.
|
|
5918
5551
|
*/
|
|
5919
5552
|
classification_confidence?: number | null | unknown;
|
|
5553
|
+
/**
|
|
5554
|
+
* Timestamp when document processing completed (status changed to :completed). Field included by default.
|
|
5555
|
+
*/
|
|
5556
|
+
completed_at?: unknown;
|
|
5920
5557
|
content?: string | null | unknown;
|
|
5921
5558
|
/**
|
|
5922
5559
|
* Field included by default.
|
|
@@ -5946,10 +5583,6 @@ type ExtractionDocument = {
|
|
|
5946
5583
|
* Field included by default.
|
|
5947
5584
|
*/
|
|
5948
5585
|
filename: string;
|
|
5949
|
-
/**
|
|
5950
|
-
* Field included by default.
|
|
5951
|
-
*/
|
|
5952
|
-
folder_id?: string | null | unknown;
|
|
5953
5586
|
/**
|
|
5954
5587
|
* Municipality/agency name extracted from document content. Field included by default.
|
|
5955
5588
|
*/
|
|
@@ -5999,18 +5632,6 @@ type ExtractionDocument = {
|
|
|
5999
5632
|
type: string;
|
|
6000
5633
|
} | null;
|
|
6001
5634
|
};
|
|
6002
|
-
folder?: {
|
|
6003
|
-
/**
|
|
6004
|
-
* An identifier for folder
|
|
6005
|
-
*/
|
|
6006
|
-
data?: {
|
|
6007
|
-
id: string;
|
|
6008
|
-
meta?: {
|
|
6009
|
-
[key: string]: unknown;
|
|
6010
|
-
};
|
|
6011
|
-
type: string;
|
|
6012
|
-
} | null;
|
|
6013
|
-
};
|
|
6014
5635
|
};
|
|
6015
5636
|
type: string;
|
|
6016
5637
|
};
|
|
@@ -8765,16 +8386,6 @@ type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdData = {
|
|
|
8765
8386
|
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
8766
8387
|
*/
|
|
8767
8388
|
sort?: string;
|
|
8768
|
-
/**
|
|
8769
|
-
* Pagination parameters using JSON:API page-based strategy. Use `page[limit]` and `page[offset]` for pagination.
|
|
8770
|
-
*/
|
|
8771
|
-
page?: {
|
|
8772
|
-
after?: string;
|
|
8773
|
-
before?: string;
|
|
8774
|
-
count?: boolean;
|
|
8775
|
-
limit?: number;
|
|
8776
|
-
offset?: number;
|
|
8777
|
-
};
|
|
8778
8389
|
/**
|
|
8779
8390
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
8780
8391
|
*/
|
|
@@ -9953,88 +9564,6 @@ type PatchAdminWalletAddonsByAddonSlugCancelResponses = {
|
|
|
9953
9564
|
};
|
|
9954
9565
|
};
|
|
9955
9566
|
type PatchAdminWalletAddonsByAddonSlugCancelResponse = PatchAdminWalletAddonsByAddonSlugCancelResponses[keyof PatchAdminWalletAddonsByAddonSlugCancelResponses];
|
|
9956
|
-
type GetAdminWebhookEventsData = {
|
|
9957
|
-
body?: never;
|
|
9958
|
-
headers: {
|
|
9959
|
-
/**
|
|
9960
|
-
* Application ID for authentication and routing
|
|
9961
|
-
*/
|
|
9962
|
-
"x-application-key": string;
|
|
9963
|
-
};
|
|
9964
|
-
path?: never;
|
|
9965
|
-
query?: {
|
|
9966
|
-
/**
|
|
9967
|
-
* Filter results using JSON:API filter syntax. Use field comparisons like `field[eq]=value`, `field[in][]=val1&field[in][]=val2`, etc.
|
|
9968
|
-
*/
|
|
9969
|
-
filter?: WebhookEventFilter;
|
|
9970
|
-
/**
|
|
9971
|
-
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
9972
|
-
*/
|
|
9973
|
-
sort?: string;
|
|
9974
|
-
/**
|
|
9975
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
9976
|
-
*/
|
|
9977
|
-
include?: string;
|
|
9978
|
-
/**
|
|
9979
|
-
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
9980
|
-
*/
|
|
9981
|
-
fields?: {
|
|
9982
|
-
/**
|
|
9983
|
-
* Comma separated field names for webhook_event
|
|
9984
|
-
*/
|
|
9985
|
-
webhook_event?: string;
|
|
9986
|
-
[key: string]: unknown | string | undefined;
|
|
9987
|
-
};
|
|
9988
|
-
};
|
|
9989
|
-
url: "/admin/webhook_events";
|
|
9990
|
-
};
|
|
9991
|
-
type GetAdminWebhookEventsErrors = {
|
|
9992
|
-
/**
|
|
9993
|
-
* Bad Request - Invalid input data or malformed request
|
|
9994
|
-
*/
|
|
9995
|
-
400: ErrorResponse;
|
|
9996
|
-
/**
|
|
9997
|
-
* Unauthorized - Missing or invalid authentication token
|
|
9998
|
-
*/
|
|
9999
|
-
401: ErrorResponse;
|
|
10000
|
-
/**
|
|
10001
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
10002
|
-
*/
|
|
10003
|
-
403: ErrorResponse;
|
|
10004
|
-
/**
|
|
10005
|
-
* Not Found - Resource does not exist
|
|
10006
|
-
*/
|
|
10007
|
-
404: ErrorResponse;
|
|
10008
|
-
/**
|
|
10009
|
-
* Too Many Requests - Rate limit exceeded
|
|
10010
|
-
*/
|
|
10011
|
-
429: ErrorResponse;
|
|
10012
|
-
/**
|
|
10013
|
-
* Internal Server Error - Unexpected server error
|
|
10014
|
-
*/
|
|
10015
|
-
500: ErrorResponse;
|
|
10016
|
-
/**
|
|
10017
|
-
* General Error
|
|
10018
|
-
*/
|
|
10019
|
-
default: Errors;
|
|
10020
|
-
};
|
|
10021
|
-
type GetAdminWebhookEventsError = GetAdminWebhookEventsErrors[keyof GetAdminWebhookEventsErrors];
|
|
10022
|
-
type GetAdminWebhookEventsResponses = {
|
|
10023
|
-
/**
|
|
10024
|
-
* Success
|
|
10025
|
-
*/
|
|
10026
|
-
200: {
|
|
10027
|
-
/**
|
|
10028
|
-
* An array of resource objects representing a webhook_event
|
|
10029
|
-
*/
|
|
10030
|
-
data?: Array<WebhookEvent>;
|
|
10031
|
-
included?: Array<unknown>;
|
|
10032
|
-
meta?: {
|
|
10033
|
-
[key: string]: unknown;
|
|
10034
|
-
};
|
|
10035
|
-
};
|
|
10036
|
-
};
|
|
10037
|
-
type GetAdminWebhookEventsResponse = GetAdminWebhookEventsResponses[keyof GetAdminWebhookEventsResponses];
|
|
10038
9567
|
type PostAdminInvitationsInviteData = {
|
|
10039
9568
|
/**
|
|
10040
9569
|
* Request body for the /invitations/invite operation on invitation resource
|
|
@@ -10123,8 +9652,24 @@ type PostAdminInvitationsInviteResponses = {
|
|
|
10123
9652
|
};
|
|
10124
9653
|
};
|
|
10125
9654
|
type PostAdminInvitationsInviteResponse = PostAdminInvitationsInviteResponses[keyof PostAdminInvitationsInviteResponses];
|
|
10126
|
-
type
|
|
10127
|
-
|
|
9655
|
+
type PostAdminDocumentsPresignedUploadData = {
|
|
9656
|
+
/**
|
|
9657
|
+
* Request body for the /documents/presigned_upload operation on presigned_url resource
|
|
9658
|
+
*/
|
|
9659
|
+
body: {
|
|
9660
|
+
data: {
|
|
9661
|
+
attributes?: {
|
|
9662
|
+
filename: string;
|
|
9663
|
+
mime_type: string;
|
|
9664
|
+
size_bytes: number;
|
|
9665
|
+
workspace_id: string;
|
|
9666
|
+
};
|
|
9667
|
+
relationships?: {
|
|
9668
|
+
[key: string]: never;
|
|
9669
|
+
};
|
|
9670
|
+
type?: "presigned_url";
|
|
9671
|
+
};
|
|
9672
|
+
};
|
|
10128
9673
|
headers: {
|
|
10129
9674
|
/**
|
|
10130
9675
|
* Application ID for authentication and routing
|
|
@@ -10132,7 +9677,7 @@ type GetAdminThreadsSearchData = {
|
|
|
10132
9677
|
"x-application-key": string;
|
|
10133
9678
|
};
|
|
10134
9679
|
path?: never;
|
|
10135
|
-
query
|
|
9680
|
+
query?: {
|
|
10136
9681
|
/**
|
|
10137
9682
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
10138
9683
|
*/
|
|
@@ -10142,16 +9687,15 @@ type GetAdminThreadsSearchData = {
|
|
|
10142
9687
|
*/
|
|
10143
9688
|
fields?: {
|
|
10144
9689
|
/**
|
|
10145
|
-
* Comma separated field names for
|
|
9690
|
+
* Comma separated field names for presigned_url
|
|
10146
9691
|
*/
|
|
10147
|
-
|
|
9692
|
+
presigned_url?: string;
|
|
10148
9693
|
[key: string]: unknown | string | undefined;
|
|
10149
9694
|
};
|
|
10150
|
-
query: string;
|
|
10151
9695
|
};
|
|
10152
|
-
url: "/admin/
|
|
9696
|
+
url: "/admin/documents/presigned_upload";
|
|
10153
9697
|
};
|
|
10154
|
-
type
|
|
9698
|
+
type PostAdminDocumentsPresignedUploadErrors = {
|
|
10155
9699
|
/**
|
|
10156
9700
|
* Bad Request - Invalid input data or malformed request
|
|
10157
9701
|
*/
|
|
@@ -10181,21 +9725,21 @@ type GetAdminThreadsSearchErrors = {
|
|
|
10181
9725
|
*/
|
|
10182
9726
|
default: Errors;
|
|
10183
9727
|
};
|
|
10184
|
-
type
|
|
10185
|
-
type
|
|
9728
|
+
type PostAdminDocumentsPresignedUploadError = PostAdminDocumentsPresignedUploadErrors[keyof PostAdminDocumentsPresignedUploadErrors];
|
|
9729
|
+
type PostAdminDocumentsPresignedUploadResponses = {
|
|
10186
9730
|
/**
|
|
10187
9731
|
* Success
|
|
10188
9732
|
*/
|
|
10189
|
-
|
|
10190
|
-
data?:
|
|
9733
|
+
201: {
|
|
9734
|
+
data?: PresignedUrl;
|
|
10191
9735
|
included?: Array<unknown>;
|
|
10192
9736
|
meta?: {
|
|
10193
9737
|
[key: string]: unknown;
|
|
10194
9738
|
};
|
|
10195
9739
|
};
|
|
10196
9740
|
};
|
|
10197
|
-
type
|
|
10198
|
-
type
|
|
9741
|
+
type PostAdminDocumentsPresignedUploadResponse = PostAdminDocumentsPresignedUploadResponses[keyof PostAdminDocumentsPresignedUploadResponses];
|
|
9742
|
+
type GetAdminThreadsSearchData = {
|
|
10199
9743
|
body?: never;
|
|
10200
9744
|
headers: {
|
|
10201
9745
|
/**
|
|
@@ -10203,18 +9747,8 @@ type GetAdminExtractionFoldersWorkspaceByWorkspaceIdData = {
|
|
|
10203
9747
|
*/
|
|
10204
9748
|
"x-application-key": string;
|
|
10205
9749
|
};
|
|
10206
|
-
path
|
|
10207
|
-
|
|
10208
|
-
};
|
|
10209
|
-
query?: {
|
|
10210
|
-
/**
|
|
10211
|
-
* Filter results using JSON:API filter syntax. Use field comparisons like `field[eq]=value`, `field[in][]=val1&field[in][]=val2`, etc.
|
|
10212
|
-
*/
|
|
10213
|
-
filter?: ExtractionFolderFilter;
|
|
10214
|
-
/**
|
|
10215
|
-
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
10216
|
-
*/
|
|
10217
|
-
sort?: string;
|
|
9750
|
+
path?: never;
|
|
9751
|
+
query: {
|
|
10218
9752
|
/**
|
|
10219
9753
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
10220
9754
|
*/
|
|
@@ -10224,15 +9758,16 @@ type GetAdminExtractionFoldersWorkspaceByWorkspaceIdData = {
|
|
|
10224
9758
|
*/
|
|
10225
9759
|
fields?: {
|
|
10226
9760
|
/**
|
|
10227
|
-
* Comma separated field names for
|
|
9761
|
+
* Comma separated field names for thread
|
|
10228
9762
|
*/
|
|
10229
|
-
|
|
9763
|
+
thread?: string;
|
|
10230
9764
|
[key: string]: unknown | string | undefined;
|
|
10231
9765
|
};
|
|
9766
|
+
query: string;
|
|
10232
9767
|
};
|
|
10233
|
-
url: "/admin/
|
|
9768
|
+
url: "/admin/threads/search";
|
|
10234
9769
|
};
|
|
10235
|
-
type
|
|
9770
|
+
type GetAdminThreadsSearchErrors = {
|
|
10236
9771
|
/**
|
|
10237
9772
|
* Bad Request - Invalid input data or malformed request
|
|
10238
9773
|
*/
|
|
@@ -10262,23 +9797,20 @@ type GetAdminExtractionFoldersWorkspaceByWorkspaceIdErrors = {
|
|
|
10262
9797
|
*/
|
|
10263
9798
|
default: Errors;
|
|
10264
9799
|
};
|
|
10265
|
-
type
|
|
10266
|
-
type
|
|
9800
|
+
type GetAdminThreadsSearchError = GetAdminThreadsSearchErrors[keyof GetAdminThreadsSearchErrors];
|
|
9801
|
+
type GetAdminThreadsSearchResponses = {
|
|
10267
9802
|
/**
|
|
10268
9803
|
* Success
|
|
10269
9804
|
*/
|
|
10270
9805
|
200: {
|
|
10271
|
-
|
|
10272
|
-
* An array of resource objects representing a extraction_folder
|
|
10273
|
-
*/
|
|
10274
|
-
data?: Array<ExtractionFolder>;
|
|
9806
|
+
data?: Thread;
|
|
10275
9807
|
included?: Array<unknown>;
|
|
10276
9808
|
meta?: {
|
|
10277
9809
|
[key: string]: unknown;
|
|
10278
9810
|
};
|
|
10279
9811
|
};
|
|
10280
9812
|
};
|
|
10281
|
-
type
|
|
9813
|
+
type GetAdminThreadsSearchResponse = GetAdminThreadsSearchResponses[keyof GetAdminThreadsSearchResponses];
|
|
10282
9814
|
type PostAdminTrainingExamplesBulkData = {
|
|
10283
9815
|
/**
|
|
10284
9816
|
* Request body for the /training_examples/bulk operation on training_example resource
|
|
@@ -16680,8 +16212,24 @@ type PatchAdminApiKeysByIdAllocateResponses = {
|
|
|
16680
16212
|
};
|
|
16681
16213
|
};
|
|
16682
16214
|
type PatchAdminApiKeysByIdAllocateResponse = PatchAdminApiKeysByIdAllocateResponses[keyof PatchAdminApiKeysByIdAllocateResponses];
|
|
16683
|
-
type
|
|
16684
|
-
|
|
16215
|
+
type PostAdminStorageSignUploadData = {
|
|
16216
|
+
/**
|
|
16217
|
+
* Request body for the /storage/sign_upload operation on presigned_url resource
|
|
16218
|
+
*/
|
|
16219
|
+
body: {
|
|
16220
|
+
data: {
|
|
16221
|
+
attributes?: {
|
|
16222
|
+
bucket_id: string;
|
|
16223
|
+
content_type?: string | unknown;
|
|
16224
|
+
filename: string;
|
|
16225
|
+
size_bytes: number;
|
|
16226
|
+
};
|
|
16227
|
+
relationships?: {
|
|
16228
|
+
[key: string]: never;
|
|
16229
|
+
};
|
|
16230
|
+
type?: "presigned_url";
|
|
16231
|
+
};
|
|
16232
|
+
};
|
|
16685
16233
|
headers: {
|
|
16686
16234
|
/**
|
|
16687
16235
|
* Application ID for authentication and routing
|
|
@@ -16690,24 +16238,6 @@ type GetAdminExtractionFoldersData = {
|
|
|
16690
16238
|
};
|
|
16691
16239
|
path?: never;
|
|
16692
16240
|
query?: {
|
|
16693
|
-
/**
|
|
16694
|
-
* Filter results using JSON:API filter syntax. Use field comparisons like `field[eq]=value`, `field[in][]=val1&field[in][]=val2`, etc.
|
|
16695
|
-
*/
|
|
16696
|
-
filter?: ExtractionFolderFilter;
|
|
16697
|
-
/**
|
|
16698
|
-
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
16699
|
-
*/
|
|
16700
|
-
sort?: string;
|
|
16701
|
-
/**
|
|
16702
|
-
* Pagination parameters using JSON:API page-based strategy. Use `page[limit]` and `page[offset]` for pagination.
|
|
16703
|
-
*/
|
|
16704
|
-
page?: {
|
|
16705
|
-
after?: string;
|
|
16706
|
-
before?: string;
|
|
16707
|
-
count?: boolean;
|
|
16708
|
-
limit?: number;
|
|
16709
|
-
offset?: number;
|
|
16710
|
-
};
|
|
16711
16241
|
/**
|
|
16712
16242
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
16713
16243
|
*/
|
|
@@ -16717,15 +16247,15 @@ type GetAdminExtractionFoldersData = {
|
|
|
16717
16247
|
*/
|
|
16718
16248
|
fields?: {
|
|
16719
16249
|
/**
|
|
16720
|
-
* Comma separated field names for
|
|
16250
|
+
* Comma separated field names for presigned_url
|
|
16721
16251
|
*/
|
|
16722
|
-
|
|
16252
|
+
presigned_url?: string;
|
|
16723
16253
|
[key: string]: unknown | string | undefined;
|
|
16724
16254
|
};
|
|
16725
16255
|
};
|
|
16726
|
-
url: "/admin/
|
|
16256
|
+
url: "/admin/storage/sign_upload";
|
|
16727
16257
|
};
|
|
16728
|
-
type
|
|
16258
|
+
type PostAdminStorageSignUploadErrors = {
|
|
16729
16259
|
/**
|
|
16730
16260
|
* Bad Request - Invalid input data or malformed request
|
|
16731
16261
|
*/
|
|
@@ -16755,38 +16285,34 @@ type GetAdminExtractionFoldersErrors = {
|
|
|
16755
16285
|
*/
|
|
16756
16286
|
default: Errors;
|
|
16757
16287
|
};
|
|
16758
|
-
type
|
|
16759
|
-
type
|
|
16288
|
+
type PostAdminStorageSignUploadError = PostAdminStorageSignUploadErrors[keyof PostAdminStorageSignUploadErrors];
|
|
16289
|
+
type PostAdminStorageSignUploadResponses = {
|
|
16760
16290
|
/**
|
|
16761
16291
|
* Success
|
|
16762
16292
|
*/
|
|
16763
|
-
|
|
16764
|
-
|
|
16765
|
-
* An array of resource objects representing a extraction_folder
|
|
16766
|
-
*/
|
|
16767
|
-
data?: Array<ExtractionFolder>;
|
|
16293
|
+
201: {
|
|
16294
|
+
data?: PresignedUrl;
|
|
16768
16295
|
included?: Array<unknown>;
|
|
16769
16296
|
meta?: {
|
|
16770
16297
|
[key: string]: unknown;
|
|
16771
16298
|
};
|
|
16772
16299
|
};
|
|
16773
16300
|
};
|
|
16774
|
-
type
|
|
16775
|
-
type
|
|
16301
|
+
type PostAdminStorageSignUploadResponse = PostAdminStorageSignUploadResponses[keyof PostAdminStorageSignUploadResponses];
|
|
16302
|
+
type PostAdminExtractionSchemasData = {
|
|
16776
16303
|
/**
|
|
16777
|
-
* Request body for the /extraction/
|
|
16304
|
+
* Request body for the /extraction/schemas operation on extraction_schema resource
|
|
16778
16305
|
*/
|
|
16779
16306
|
body: {
|
|
16780
16307
|
data: {
|
|
16781
16308
|
attributes?: {
|
|
16782
|
-
|
|
16783
|
-
parent_id?: string | unknown;
|
|
16309
|
+
version?: number | unknown;
|
|
16784
16310
|
workspace_id: string;
|
|
16785
16311
|
};
|
|
16786
16312
|
relationships?: {
|
|
16787
16313
|
[key: string]: never;
|
|
16788
16314
|
};
|
|
16789
|
-
type?: "
|
|
16315
|
+
type?: "extraction_schema";
|
|
16790
16316
|
};
|
|
16791
16317
|
};
|
|
16792
16318
|
headers: {
|
|
@@ -16806,15 +16332,15 @@ type PostAdminExtractionFoldersData = {
|
|
|
16806
16332
|
*/
|
|
16807
16333
|
fields?: {
|
|
16808
16334
|
/**
|
|
16809
|
-
* Comma separated field names for
|
|
16335
|
+
* Comma separated field names for extraction_schema
|
|
16810
16336
|
*/
|
|
16811
|
-
|
|
16337
|
+
extraction_schema?: string;
|
|
16812
16338
|
[key: string]: unknown | string | undefined;
|
|
16813
16339
|
};
|
|
16814
16340
|
};
|
|
16815
|
-
url: "/admin/extraction/
|
|
16341
|
+
url: "/admin/extraction/schemas";
|
|
16816
16342
|
};
|
|
16817
|
-
type
|
|
16343
|
+
type PostAdminExtractionSchemasErrors = {
|
|
16818
16344
|
/**
|
|
16819
16345
|
* Bad Request - Invalid input data or malformed request
|
|
16820
16346
|
*/
|
|
@@ -16844,38 +16370,22 @@ type PostAdminExtractionFoldersErrors = {
|
|
|
16844
16370
|
*/
|
|
16845
16371
|
default: Errors;
|
|
16846
16372
|
};
|
|
16847
|
-
type
|
|
16848
|
-
type
|
|
16373
|
+
type PostAdminExtractionSchemasError = PostAdminExtractionSchemasErrors[keyof PostAdminExtractionSchemasErrors];
|
|
16374
|
+
type PostAdminExtractionSchemasResponses = {
|
|
16849
16375
|
/**
|
|
16850
16376
|
* Success
|
|
16851
16377
|
*/
|
|
16852
16378
|
201: {
|
|
16853
|
-
data?:
|
|
16379
|
+
data?: ExtractionSchema;
|
|
16854
16380
|
included?: Array<unknown>;
|
|
16855
16381
|
meta?: {
|
|
16856
16382
|
[key: string]: unknown;
|
|
16857
16383
|
};
|
|
16858
16384
|
};
|
|
16859
16385
|
};
|
|
16860
|
-
type
|
|
16861
|
-
type
|
|
16862
|
-
|
|
16863
|
-
* Request body for the /storage/sign_upload operation on presigned_url resource
|
|
16864
|
-
*/
|
|
16865
|
-
body: {
|
|
16866
|
-
data: {
|
|
16867
|
-
attributes?: {
|
|
16868
|
-
bucket_id: string;
|
|
16869
|
-
content_type?: string | unknown;
|
|
16870
|
-
filename: string;
|
|
16871
|
-
size_bytes: number;
|
|
16872
|
-
};
|
|
16873
|
-
relationships?: {
|
|
16874
|
-
[key: string]: never;
|
|
16875
|
-
};
|
|
16876
|
-
type?: "presigned_url";
|
|
16877
|
-
};
|
|
16878
|
-
};
|
|
16386
|
+
type PostAdminExtractionSchemasResponse = PostAdminExtractionSchemasResponses[keyof PostAdminExtractionSchemasResponses];
|
|
16387
|
+
type GetAdminLlmAnalyticsUsageData = {
|
|
16388
|
+
body?: never;
|
|
16879
16389
|
headers: {
|
|
16880
16390
|
/**
|
|
16881
16391
|
* Application ID for authentication and routing
|
|
@@ -16893,15 +16403,15 @@ type PostAdminStorageSignUploadData = {
|
|
|
16893
16403
|
*/
|
|
16894
16404
|
fields?: {
|
|
16895
16405
|
/**
|
|
16896
|
-
* Comma separated field names for
|
|
16406
|
+
* Comma separated field names for llm_analytics
|
|
16897
16407
|
*/
|
|
16898
|
-
|
|
16408
|
+
llm_analytics?: string;
|
|
16899
16409
|
[key: string]: unknown | string | undefined;
|
|
16900
16410
|
};
|
|
16901
16411
|
};
|
|
16902
|
-
url: "/admin/
|
|
16412
|
+
url: "/admin/llm_analytics/usage";
|
|
16903
16413
|
};
|
|
16904
|
-
type
|
|
16414
|
+
type GetAdminLlmAnalyticsUsageErrors = {
|
|
16905
16415
|
/**
|
|
16906
16416
|
* Bad Request - Invalid input data or malformed request
|
|
16907
16417
|
*/
|
|
@@ -16931,43 +16441,31 @@ type PostAdminStorageSignUploadErrors = {
|
|
|
16931
16441
|
*/
|
|
16932
16442
|
default: Errors;
|
|
16933
16443
|
};
|
|
16934
|
-
type
|
|
16935
|
-
type
|
|
16444
|
+
type GetAdminLlmAnalyticsUsageError = GetAdminLlmAnalyticsUsageErrors[keyof GetAdminLlmAnalyticsUsageErrors];
|
|
16445
|
+
type GetAdminLlmAnalyticsUsageResponses = {
|
|
16936
16446
|
/**
|
|
16937
16447
|
* Success
|
|
16938
16448
|
*/
|
|
16939
|
-
|
|
16940
|
-
data?:
|
|
16449
|
+
200: {
|
|
16450
|
+
data?: LlmAnalytics;
|
|
16941
16451
|
included?: Array<unknown>;
|
|
16942
16452
|
meta?: {
|
|
16943
16453
|
[key: string]: unknown;
|
|
16944
16454
|
};
|
|
16945
16455
|
};
|
|
16946
16456
|
};
|
|
16947
|
-
type
|
|
16948
|
-
type
|
|
16949
|
-
|
|
16950
|
-
* Request body for the /extraction/schemas operation on extraction_schema resource
|
|
16951
|
-
*/
|
|
16952
|
-
body: {
|
|
16953
|
-
data: {
|
|
16954
|
-
attributes?: {
|
|
16955
|
-
version?: number | unknown;
|
|
16956
|
-
workspace_id: string;
|
|
16957
|
-
};
|
|
16958
|
-
relationships?: {
|
|
16959
|
-
[key: string]: never;
|
|
16960
|
-
};
|
|
16961
|
-
type?: "extraction_schema";
|
|
16962
|
-
};
|
|
16963
|
-
};
|
|
16457
|
+
type GetAdminLlmAnalyticsUsageResponse = GetAdminLlmAnalyticsUsageResponses[keyof GetAdminLlmAnalyticsUsageResponses];
|
|
16458
|
+
type DeleteAdminNotificationPreferencesByIdData = {
|
|
16459
|
+
body?: never;
|
|
16964
16460
|
headers: {
|
|
16965
16461
|
/**
|
|
16966
16462
|
* Application ID for authentication and routing
|
|
16967
16463
|
*/
|
|
16968
16464
|
"x-application-key": string;
|
|
16969
16465
|
};
|
|
16970
|
-
path
|
|
16466
|
+
path: {
|
|
16467
|
+
id: string;
|
|
16468
|
+
};
|
|
16971
16469
|
query?: {
|
|
16972
16470
|
/**
|
|
16973
16471
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -16978,15 +16476,15 @@ type PostAdminExtractionSchemasData = {
|
|
|
16978
16476
|
*/
|
|
16979
16477
|
fields?: {
|
|
16980
16478
|
/**
|
|
16981
|
-
* Comma separated field names for
|
|
16479
|
+
* Comma separated field names for notification_preference
|
|
16982
16480
|
*/
|
|
16983
|
-
|
|
16481
|
+
notification_preference?: string;
|
|
16984
16482
|
[key: string]: unknown | string | undefined;
|
|
16985
16483
|
};
|
|
16986
16484
|
};
|
|
16987
|
-
url: "/admin/
|
|
16485
|
+
url: "/admin/notification_preferences/{id}";
|
|
16988
16486
|
};
|
|
16989
|
-
type
|
|
16487
|
+
type DeleteAdminNotificationPreferencesByIdErrors = {
|
|
16990
16488
|
/**
|
|
16991
16489
|
* Bad Request - Invalid input data or malformed request
|
|
16992
16490
|
*/
|
|
@@ -17016,154 +16514,10 @@ type PostAdminExtractionSchemasErrors = {
|
|
|
17016
16514
|
*/
|
|
17017
16515
|
default: Errors;
|
|
17018
16516
|
};
|
|
17019
|
-
type
|
|
17020
|
-
type
|
|
16517
|
+
type DeleteAdminNotificationPreferencesByIdError = DeleteAdminNotificationPreferencesByIdErrors[keyof DeleteAdminNotificationPreferencesByIdErrors];
|
|
16518
|
+
type DeleteAdminNotificationPreferencesByIdResponses = {
|
|
17021
16519
|
/**
|
|
17022
|
-
*
|
|
17023
|
-
*/
|
|
17024
|
-
201: {
|
|
17025
|
-
data?: ExtractionSchema;
|
|
17026
|
-
included?: Array<unknown>;
|
|
17027
|
-
meta?: {
|
|
17028
|
-
[key: string]: unknown;
|
|
17029
|
-
};
|
|
17030
|
-
};
|
|
17031
|
-
};
|
|
17032
|
-
type PostAdminExtractionSchemasResponse = PostAdminExtractionSchemasResponses[keyof PostAdminExtractionSchemasResponses];
|
|
17033
|
-
type GetAdminLlmAnalyticsUsageData = {
|
|
17034
|
-
body?: never;
|
|
17035
|
-
headers: {
|
|
17036
|
-
/**
|
|
17037
|
-
* Application ID for authentication and routing
|
|
17038
|
-
*/
|
|
17039
|
-
"x-application-key": string;
|
|
17040
|
-
};
|
|
17041
|
-
path?: never;
|
|
17042
|
-
query?: {
|
|
17043
|
-
/**
|
|
17044
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
17045
|
-
*/
|
|
17046
|
-
include?: string;
|
|
17047
|
-
/**
|
|
17048
|
-
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
17049
|
-
*/
|
|
17050
|
-
fields?: {
|
|
17051
|
-
/**
|
|
17052
|
-
* Comma separated field names for llm_analytics
|
|
17053
|
-
*/
|
|
17054
|
-
llm_analytics?: string;
|
|
17055
|
-
[key: string]: unknown | string | undefined;
|
|
17056
|
-
};
|
|
17057
|
-
};
|
|
17058
|
-
url: "/admin/llm_analytics/usage";
|
|
17059
|
-
};
|
|
17060
|
-
type GetAdminLlmAnalyticsUsageErrors = {
|
|
17061
|
-
/**
|
|
17062
|
-
* Bad Request - Invalid input data or malformed request
|
|
17063
|
-
*/
|
|
17064
|
-
400: ErrorResponse;
|
|
17065
|
-
/**
|
|
17066
|
-
* Unauthorized - Missing or invalid authentication token
|
|
17067
|
-
*/
|
|
17068
|
-
401: ErrorResponse;
|
|
17069
|
-
/**
|
|
17070
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
17071
|
-
*/
|
|
17072
|
-
403: ErrorResponse;
|
|
17073
|
-
/**
|
|
17074
|
-
* Not Found - Resource does not exist
|
|
17075
|
-
*/
|
|
17076
|
-
404: ErrorResponse;
|
|
17077
|
-
/**
|
|
17078
|
-
* Too Many Requests - Rate limit exceeded
|
|
17079
|
-
*/
|
|
17080
|
-
429: ErrorResponse;
|
|
17081
|
-
/**
|
|
17082
|
-
* Internal Server Error - Unexpected server error
|
|
17083
|
-
*/
|
|
17084
|
-
500: ErrorResponse;
|
|
17085
|
-
/**
|
|
17086
|
-
* General Error
|
|
17087
|
-
*/
|
|
17088
|
-
default: Errors;
|
|
17089
|
-
};
|
|
17090
|
-
type GetAdminLlmAnalyticsUsageError = GetAdminLlmAnalyticsUsageErrors[keyof GetAdminLlmAnalyticsUsageErrors];
|
|
17091
|
-
type GetAdminLlmAnalyticsUsageResponses = {
|
|
17092
|
-
/**
|
|
17093
|
-
* Success
|
|
17094
|
-
*/
|
|
17095
|
-
200: {
|
|
17096
|
-
data?: LlmAnalytics;
|
|
17097
|
-
included?: Array<unknown>;
|
|
17098
|
-
meta?: {
|
|
17099
|
-
[key: string]: unknown;
|
|
17100
|
-
};
|
|
17101
|
-
};
|
|
17102
|
-
};
|
|
17103
|
-
type GetAdminLlmAnalyticsUsageResponse = GetAdminLlmAnalyticsUsageResponses[keyof GetAdminLlmAnalyticsUsageResponses];
|
|
17104
|
-
type DeleteAdminNotificationPreferencesByIdData = {
|
|
17105
|
-
body?: never;
|
|
17106
|
-
headers: {
|
|
17107
|
-
/**
|
|
17108
|
-
* Application ID for authentication and routing
|
|
17109
|
-
*/
|
|
17110
|
-
"x-application-key": string;
|
|
17111
|
-
};
|
|
17112
|
-
path: {
|
|
17113
|
-
id: string;
|
|
17114
|
-
};
|
|
17115
|
-
query?: {
|
|
17116
|
-
/**
|
|
17117
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
17118
|
-
*/
|
|
17119
|
-
include?: string;
|
|
17120
|
-
/**
|
|
17121
|
-
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
17122
|
-
*/
|
|
17123
|
-
fields?: {
|
|
17124
|
-
/**
|
|
17125
|
-
* Comma separated field names for notification_preference
|
|
17126
|
-
*/
|
|
17127
|
-
notification_preference?: string;
|
|
17128
|
-
[key: string]: unknown | string | undefined;
|
|
17129
|
-
};
|
|
17130
|
-
};
|
|
17131
|
-
url: "/admin/notification_preferences/{id}";
|
|
17132
|
-
};
|
|
17133
|
-
type DeleteAdminNotificationPreferencesByIdErrors = {
|
|
17134
|
-
/**
|
|
17135
|
-
* Bad Request - Invalid input data or malformed request
|
|
17136
|
-
*/
|
|
17137
|
-
400: ErrorResponse;
|
|
17138
|
-
/**
|
|
17139
|
-
* Unauthorized - Missing or invalid authentication token
|
|
17140
|
-
*/
|
|
17141
|
-
401: ErrorResponse;
|
|
17142
|
-
/**
|
|
17143
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
17144
|
-
*/
|
|
17145
|
-
403: ErrorResponse;
|
|
17146
|
-
/**
|
|
17147
|
-
* Not Found - Resource does not exist
|
|
17148
|
-
*/
|
|
17149
|
-
404: ErrorResponse;
|
|
17150
|
-
/**
|
|
17151
|
-
* Too Many Requests - Rate limit exceeded
|
|
17152
|
-
*/
|
|
17153
|
-
429: ErrorResponse;
|
|
17154
|
-
/**
|
|
17155
|
-
* Internal Server Error - Unexpected server error
|
|
17156
|
-
*/
|
|
17157
|
-
500: ErrorResponse;
|
|
17158
|
-
/**
|
|
17159
|
-
* General Error
|
|
17160
|
-
*/
|
|
17161
|
-
default: Errors;
|
|
17162
|
-
};
|
|
17163
|
-
type DeleteAdminNotificationPreferencesByIdError = DeleteAdminNotificationPreferencesByIdErrors[keyof DeleteAdminNotificationPreferencesByIdErrors];
|
|
17164
|
-
type DeleteAdminNotificationPreferencesByIdResponses = {
|
|
17165
|
-
/**
|
|
17166
|
-
* Deleted successfully
|
|
16520
|
+
* Deleted successfully
|
|
17167
16521
|
*/
|
|
17168
16522
|
200: unknown;
|
|
17169
16523
|
};
|
|
@@ -18746,16 +18100,6 @@ type GetAdminExtractionDocumentsData = {
|
|
|
18746
18100
|
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
18747
18101
|
*/
|
|
18748
18102
|
sort?: string;
|
|
18749
|
-
/**
|
|
18750
|
-
* Pagination parameters using JSON:API page-based strategy. Use `page[limit]` and `page[offset]` for pagination.
|
|
18751
|
-
*/
|
|
18752
|
-
page?: {
|
|
18753
|
-
after?: string;
|
|
18754
|
-
before?: string;
|
|
18755
|
-
count?: boolean;
|
|
18756
|
-
limit?: number;
|
|
18757
|
-
offset?: number;
|
|
18758
|
-
};
|
|
18759
18103
|
/**
|
|
18760
18104
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
18761
18105
|
*/
|
|
@@ -19653,269 +18997,36 @@ type PostAdminIsvRevenueData = {
|
|
|
19653
18997
|
*/
|
|
19654
18998
|
pass_through_cost?: {
|
|
19655
18999
|
amount: string;
|
|
19656
|
-
currency: string;
|
|
19657
|
-
} | unknown;
|
|
19658
|
-
/**
|
|
19659
|
-
* Platform's 20% markup on pass_through_cost
|
|
19660
|
-
*/
|
|
19661
|
-
platform_markup?: {
|
|
19662
|
-
amount: string;
|
|
19663
|
-
currency: string;
|
|
19664
|
-
} | unknown;
|
|
19665
|
-
/**
|
|
19666
|
-
* QorPay/ACH transaction ID for settlements
|
|
19667
|
-
*/
|
|
19668
|
-
qorpay_transaction_id?: string | unknown;
|
|
19669
|
-
subscription_id?: string | unknown;
|
|
19670
|
-
tenant_id?: string | unknown;
|
|
19671
|
-
type: "subscription_revenue" | "package_revenue" | "usage_cost" | "storage_cost" | "payment_processing_cost" | "platform_fee" | "settlement" | "reinvestment";
|
|
19672
|
-
};
|
|
19673
|
-
relationships?: {
|
|
19674
|
-
[key: string]: never;
|
|
19675
|
-
};
|
|
19676
|
-
type?: "isv_revenue";
|
|
19677
|
-
};
|
|
19678
|
-
};
|
|
19679
|
-
headers: {
|
|
19680
|
-
/**
|
|
19681
|
-
* Application ID for authentication and routing
|
|
19682
|
-
*/
|
|
19683
|
-
"x-application-key": string;
|
|
19684
|
-
};
|
|
19685
|
-
path?: never;
|
|
19686
|
-
query?: {
|
|
19687
|
-
/**
|
|
19688
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
19689
|
-
*/
|
|
19690
|
-
include?: string;
|
|
19691
|
-
/**
|
|
19692
|
-
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
19693
|
-
*/
|
|
19694
|
-
fields?: {
|
|
19695
|
-
/**
|
|
19696
|
-
* Comma separated field names for isv_revenue
|
|
19697
|
-
*/
|
|
19698
|
-
isv_revenue?: string;
|
|
19699
|
-
[key: string]: unknown | string | undefined;
|
|
19700
|
-
};
|
|
19701
|
-
};
|
|
19702
|
-
url: "/admin/isv_revenue";
|
|
19703
|
-
};
|
|
19704
|
-
type PostAdminIsvRevenueErrors = {
|
|
19705
|
-
/**
|
|
19706
|
-
* Bad Request - Invalid input data or malformed request
|
|
19707
|
-
*/
|
|
19708
|
-
400: ErrorResponse;
|
|
19709
|
-
/**
|
|
19710
|
-
* Unauthorized - Missing or invalid authentication token
|
|
19711
|
-
*/
|
|
19712
|
-
401: ErrorResponse;
|
|
19713
|
-
/**
|
|
19714
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
19715
|
-
*/
|
|
19716
|
-
403: ErrorResponse;
|
|
19717
|
-
/**
|
|
19718
|
-
* Not Found - Resource does not exist
|
|
19719
|
-
*/
|
|
19720
|
-
404: ErrorResponse;
|
|
19721
|
-
/**
|
|
19722
|
-
* Too Many Requests - Rate limit exceeded
|
|
19723
|
-
*/
|
|
19724
|
-
429: ErrorResponse;
|
|
19725
|
-
/**
|
|
19726
|
-
* Internal Server Error - Unexpected server error
|
|
19727
|
-
*/
|
|
19728
|
-
500: ErrorResponse;
|
|
19729
|
-
/**
|
|
19730
|
-
* General Error
|
|
19731
|
-
*/
|
|
19732
|
-
default: Errors;
|
|
19733
|
-
};
|
|
19734
|
-
type PostAdminIsvRevenueError = PostAdminIsvRevenueErrors[keyof PostAdminIsvRevenueErrors];
|
|
19735
|
-
type PostAdminIsvRevenueResponses = {
|
|
19736
|
-
/**
|
|
19737
|
-
* Success
|
|
19738
|
-
*/
|
|
19739
|
-
201: {
|
|
19740
|
-
data?: IsvRevenue;
|
|
19741
|
-
included?: Array<unknown>;
|
|
19742
|
-
meta?: {
|
|
19743
|
-
[key: string]: unknown;
|
|
19744
|
-
};
|
|
19745
|
-
};
|
|
19746
|
-
};
|
|
19747
|
-
type PostAdminIsvRevenueResponse = PostAdminIsvRevenueResponses[keyof PostAdminIsvRevenueResponses];
|
|
19748
|
-
type PatchAdminInvitationsByIdResendData = {
|
|
19749
|
-
/**
|
|
19750
|
-
* Request body for the /invitations/:id/resend operation on invitation resource
|
|
19751
|
-
*/
|
|
19752
|
-
body?: {
|
|
19753
|
-
data: {
|
|
19754
|
-
attributes?: {
|
|
19755
|
-
[key: string]: never;
|
|
19756
|
-
};
|
|
19757
|
-
id: string;
|
|
19758
|
-
relationships?: {
|
|
19759
|
-
[key: string]: never;
|
|
19760
|
-
};
|
|
19761
|
-
type?: "invitation";
|
|
19762
|
-
};
|
|
19763
|
-
};
|
|
19764
|
-
headers: {
|
|
19765
|
-
/**
|
|
19766
|
-
* Application ID for authentication and routing
|
|
19767
|
-
*/
|
|
19768
|
-
"x-application-key": string;
|
|
19769
|
-
};
|
|
19770
|
-
path: {
|
|
19771
|
-
id: string;
|
|
19772
|
-
};
|
|
19773
|
-
query?: {
|
|
19774
|
-
/**
|
|
19775
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
19776
|
-
*/
|
|
19777
|
-
include?: string;
|
|
19778
|
-
/**
|
|
19779
|
-
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
19780
|
-
*/
|
|
19781
|
-
fields?: {
|
|
19782
|
-
/**
|
|
19783
|
-
* Comma separated field names for invitation
|
|
19784
|
-
*/
|
|
19785
|
-
invitation?: string;
|
|
19786
|
-
[key: string]: unknown | string | undefined;
|
|
19787
|
-
};
|
|
19788
|
-
};
|
|
19789
|
-
url: "/admin/invitations/{id}/resend";
|
|
19790
|
-
};
|
|
19791
|
-
type PatchAdminInvitationsByIdResendErrors = {
|
|
19792
|
-
/**
|
|
19793
|
-
* Bad Request - Invalid input data or malformed request
|
|
19794
|
-
*/
|
|
19795
|
-
400: ErrorResponse;
|
|
19796
|
-
/**
|
|
19797
|
-
* Unauthorized - Missing or invalid authentication token
|
|
19798
|
-
*/
|
|
19799
|
-
401: ErrorResponse;
|
|
19800
|
-
/**
|
|
19801
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
19802
|
-
*/
|
|
19803
|
-
403: ErrorResponse;
|
|
19804
|
-
/**
|
|
19805
|
-
* Not Found - Resource does not exist
|
|
19806
|
-
*/
|
|
19807
|
-
404: ErrorResponse;
|
|
19808
|
-
/**
|
|
19809
|
-
* Too Many Requests - Rate limit exceeded
|
|
19810
|
-
*/
|
|
19811
|
-
429: ErrorResponse;
|
|
19812
|
-
/**
|
|
19813
|
-
* Internal Server Error - Unexpected server error
|
|
19814
|
-
*/
|
|
19815
|
-
500: ErrorResponse;
|
|
19816
|
-
/**
|
|
19817
|
-
* General Error
|
|
19818
|
-
*/
|
|
19819
|
-
default: Errors;
|
|
19820
|
-
};
|
|
19821
|
-
type PatchAdminInvitationsByIdResendError = PatchAdminInvitationsByIdResendErrors[keyof PatchAdminInvitationsByIdResendErrors];
|
|
19822
|
-
type PatchAdminInvitationsByIdResendResponses = {
|
|
19823
|
-
/**
|
|
19824
|
-
* Success
|
|
19825
|
-
*/
|
|
19826
|
-
200: {
|
|
19827
|
-
data?: Invitation;
|
|
19828
|
-
included?: Array<unknown>;
|
|
19829
|
-
meta?: {
|
|
19830
|
-
[key: string]: unknown;
|
|
19831
|
-
};
|
|
19832
|
-
};
|
|
19833
|
-
};
|
|
19834
|
-
type PatchAdminInvitationsByIdResendResponse = PatchAdminInvitationsByIdResendResponses[keyof PatchAdminInvitationsByIdResendResponses];
|
|
19835
|
-
type GetAdminTransactionsByIdData = {
|
|
19836
|
-
body?: never;
|
|
19837
|
-
headers: {
|
|
19838
|
-
/**
|
|
19839
|
-
* Application ID for authentication and routing
|
|
19840
|
-
*/
|
|
19841
|
-
"x-application-key": string;
|
|
19842
|
-
};
|
|
19843
|
-
path: {
|
|
19844
|
-
id: string;
|
|
19845
|
-
};
|
|
19846
|
-
query?: {
|
|
19847
|
-
/**
|
|
19848
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
19849
|
-
*/
|
|
19850
|
-
include?: string;
|
|
19851
|
-
/**
|
|
19852
|
-
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
19853
|
-
*/
|
|
19854
|
-
fields?: {
|
|
19855
|
-
/**
|
|
19856
|
-
* Comma separated field names for transaction
|
|
19857
|
-
*/
|
|
19858
|
-
transaction?: string;
|
|
19859
|
-
[key: string]: unknown | string | undefined;
|
|
19860
|
-
};
|
|
19861
|
-
};
|
|
19862
|
-
url: "/admin/transactions/{id}";
|
|
19863
|
-
};
|
|
19864
|
-
type GetAdminTransactionsByIdErrors = {
|
|
19865
|
-
/**
|
|
19866
|
-
* Bad Request - Invalid input data or malformed request
|
|
19867
|
-
*/
|
|
19868
|
-
400: ErrorResponse;
|
|
19869
|
-
/**
|
|
19870
|
-
* Unauthorized - Missing or invalid authentication token
|
|
19871
|
-
*/
|
|
19872
|
-
401: ErrorResponse;
|
|
19873
|
-
/**
|
|
19874
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
19875
|
-
*/
|
|
19876
|
-
403: ErrorResponse;
|
|
19877
|
-
/**
|
|
19878
|
-
* Not Found - Resource does not exist
|
|
19879
|
-
*/
|
|
19880
|
-
404: ErrorResponse;
|
|
19881
|
-
/**
|
|
19882
|
-
* Too Many Requests - Rate limit exceeded
|
|
19883
|
-
*/
|
|
19884
|
-
429: ErrorResponse;
|
|
19885
|
-
/**
|
|
19886
|
-
* Internal Server Error - Unexpected server error
|
|
19887
|
-
*/
|
|
19888
|
-
500: ErrorResponse;
|
|
19889
|
-
/**
|
|
19890
|
-
* General Error
|
|
19891
|
-
*/
|
|
19892
|
-
default: Errors;
|
|
19893
|
-
};
|
|
19894
|
-
type GetAdminTransactionsByIdError = GetAdminTransactionsByIdErrors[keyof GetAdminTransactionsByIdErrors];
|
|
19895
|
-
type GetAdminTransactionsByIdResponses = {
|
|
19896
|
-
/**
|
|
19897
|
-
* Success
|
|
19898
|
-
*/
|
|
19899
|
-
200: {
|
|
19900
|
-
data?: Transaction;
|
|
19901
|
-
included?: Array<unknown>;
|
|
19902
|
-
meta?: {
|
|
19903
|
-
[key: string]: unknown;
|
|
19000
|
+
currency: string;
|
|
19001
|
+
} | unknown;
|
|
19002
|
+
/**
|
|
19003
|
+
* Platform's 20% markup on pass_through_cost
|
|
19004
|
+
*/
|
|
19005
|
+
platform_markup?: {
|
|
19006
|
+
amount: string;
|
|
19007
|
+
currency: string;
|
|
19008
|
+
} | unknown;
|
|
19009
|
+
/**
|
|
19010
|
+
* QorPay/ACH transaction ID for settlements
|
|
19011
|
+
*/
|
|
19012
|
+
qorpay_transaction_id?: string | unknown;
|
|
19013
|
+
subscription_id?: string | unknown;
|
|
19014
|
+
tenant_id?: string | unknown;
|
|
19015
|
+
type: "subscription_revenue" | "package_revenue" | "usage_cost" | "storage_cost" | "payment_processing_cost" | "platform_fee" | "settlement" | "reinvestment";
|
|
19016
|
+
};
|
|
19017
|
+
relationships?: {
|
|
19018
|
+
[key: string]: never;
|
|
19019
|
+
};
|
|
19020
|
+
type?: "isv_revenue";
|
|
19904
19021
|
};
|
|
19905
19022
|
};
|
|
19906
|
-
};
|
|
19907
|
-
type GetAdminTransactionsByIdResponse = GetAdminTransactionsByIdResponses[keyof GetAdminTransactionsByIdResponses];
|
|
19908
|
-
type DeleteAdminExtractionFoldersByIdData = {
|
|
19909
|
-
body?: never;
|
|
19910
19023
|
headers: {
|
|
19911
19024
|
/**
|
|
19912
19025
|
* Application ID for authentication and routing
|
|
19913
19026
|
*/
|
|
19914
19027
|
"x-application-key": string;
|
|
19915
19028
|
};
|
|
19916
|
-
path
|
|
19917
|
-
id: string;
|
|
19918
|
-
};
|
|
19029
|
+
path?: never;
|
|
19919
19030
|
query?: {
|
|
19920
19031
|
/**
|
|
19921
19032
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -19926,15 +19037,15 @@ type DeleteAdminExtractionFoldersByIdData = {
|
|
|
19926
19037
|
*/
|
|
19927
19038
|
fields?: {
|
|
19928
19039
|
/**
|
|
19929
|
-
* Comma separated field names for
|
|
19040
|
+
* Comma separated field names for isv_revenue
|
|
19930
19041
|
*/
|
|
19931
|
-
|
|
19042
|
+
isv_revenue?: string;
|
|
19932
19043
|
[key: string]: unknown | string | undefined;
|
|
19933
19044
|
};
|
|
19934
19045
|
};
|
|
19935
|
-
url: "/admin/
|
|
19046
|
+
url: "/admin/isv_revenue";
|
|
19936
19047
|
};
|
|
19937
|
-
type
|
|
19048
|
+
type PostAdminIsvRevenueErrors = {
|
|
19938
19049
|
/**
|
|
19939
19050
|
* Bad Request - Invalid input data or malformed request
|
|
19940
19051
|
*/
|
|
@@ -19964,15 +19075,36 @@ type DeleteAdminExtractionFoldersByIdErrors = {
|
|
|
19964
19075
|
*/
|
|
19965
19076
|
default: Errors;
|
|
19966
19077
|
};
|
|
19967
|
-
type
|
|
19968
|
-
type
|
|
19078
|
+
type PostAdminIsvRevenueError = PostAdminIsvRevenueErrors[keyof PostAdminIsvRevenueErrors];
|
|
19079
|
+
type PostAdminIsvRevenueResponses = {
|
|
19969
19080
|
/**
|
|
19970
|
-
*
|
|
19081
|
+
* Success
|
|
19971
19082
|
*/
|
|
19972
|
-
|
|
19083
|
+
201: {
|
|
19084
|
+
data?: IsvRevenue;
|
|
19085
|
+
included?: Array<unknown>;
|
|
19086
|
+
meta?: {
|
|
19087
|
+
[key: string]: unknown;
|
|
19088
|
+
};
|
|
19089
|
+
};
|
|
19973
19090
|
};
|
|
19974
|
-
type
|
|
19975
|
-
|
|
19091
|
+
type PostAdminIsvRevenueResponse = PostAdminIsvRevenueResponses[keyof PostAdminIsvRevenueResponses];
|
|
19092
|
+
type PatchAdminInvitationsByIdResendData = {
|
|
19093
|
+
/**
|
|
19094
|
+
* Request body for the /invitations/:id/resend operation on invitation resource
|
|
19095
|
+
*/
|
|
19096
|
+
body?: {
|
|
19097
|
+
data: {
|
|
19098
|
+
attributes?: {
|
|
19099
|
+
[key: string]: never;
|
|
19100
|
+
};
|
|
19101
|
+
id: string;
|
|
19102
|
+
relationships?: {
|
|
19103
|
+
[key: string]: never;
|
|
19104
|
+
};
|
|
19105
|
+
type?: "invitation";
|
|
19106
|
+
};
|
|
19107
|
+
};
|
|
19976
19108
|
headers: {
|
|
19977
19109
|
/**
|
|
19978
19110
|
* Application ID for authentication and routing
|
|
@@ -19992,15 +19124,15 @@ type GetAdminExtractionFoldersByIdData = {
|
|
|
19992
19124
|
*/
|
|
19993
19125
|
fields?: {
|
|
19994
19126
|
/**
|
|
19995
|
-
* Comma separated field names for
|
|
19127
|
+
* Comma separated field names for invitation
|
|
19996
19128
|
*/
|
|
19997
|
-
|
|
19129
|
+
invitation?: string;
|
|
19998
19130
|
[key: string]: unknown | string | undefined;
|
|
19999
19131
|
};
|
|
20000
19132
|
};
|
|
20001
|
-
url: "/admin/
|
|
19133
|
+
url: "/admin/invitations/{id}/resend";
|
|
20002
19134
|
};
|
|
20003
|
-
type
|
|
19135
|
+
type PatchAdminInvitationsByIdResendErrors = {
|
|
20004
19136
|
/**
|
|
20005
19137
|
* Bad Request - Invalid input data or malformed request
|
|
20006
19138
|
*/
|
|
@@ -20030,36 +19162,22 @@ type GetAdminExtractionFoldersByIdErrors = {
|
|
|
20030
19162
|
*/
|
|
20031
19163
|
default: Errors;
|
|
20032
19164
|
};
|
|
20033
|
-
type
|
|
20034
|
-
type
|
|
19165
|
+
type PatchAdminInvitationsByIdResendError = PatchAdminInvitationsByIdResendErrors[keyof PatchAdminInvitationsByIdResendErrors];
|
|
19166
|
+
type PatchAdminInvitationsByIdResendResponses = {
|
|
20035
19167
|
/**
|
|
20036
19168
|
* Success
|
|
20037
19169
|
*/
|
|
20038
19170
|
200: {
|
|
20039
|
-
data?:
|
|
19171
|
+
data?: Invitation;
|
|
20040
19172
|
included?: Array<unknown>;
|
|
20041
19173
|
meta?: {
|
|
20042
19174
|
[key: string]: unknown;
|
|
20043
19175
|
};
|
|
20044
19176
|
};
|
|
20045
19177
|
};
|
|
20046
|
-
type
|
|
20047
|
-
type
|
|
20048
|
-
|
|
20049
|
-
* Request body for the /extraction/folders/:id operation on extraction_folder resource
|
|
20050
|
-
*/
|
|
20051
|
-
body?: {
|
|
20052
|
-
data: {
|
|
20053
|
-
attributes?: {
|
|
20054
|
-
[key: string]: never;
|
|
20055
|
-
};
|
|
20056
|
-
id: string;
|
|
20057
|
-
relationships?: {
|
|
20058
|
-
[key: string]: never;
|
|
20059
|
-
};
|
|
20060
|
-
type?: "extraction_folder";
|
|
20061
|
-
};
|
|
20062
|
-
};
|
|
19178
|
+
type PatchAdminInvitationsByIdResendResponse = PatchAdminInvitationsByIdResendResponses[keyof PatchAdminInvitationsByIdResendResponses];
|
|
19179
|
+
type GetAdminTransactionsByIdData = {
|
|
19180
|
+
body?: never;
|
|
20063
19181
|
headers: {
|
|
20064
19182
|
/**
|
|
20065
19183
|
* Application ID for authentication and routing
|
|
@@ -20079,15 +19197,15 @@ type PatchAdminExtractionFoldersByIdData = {
|
|
|
20079
19197
|
*/
|
|
20080
19198
|
fields?: {
|
|
20081
19199
|
/**
|
|
20082
|
-
* Comma separated field names for
|
|
19200
|
+
* Comma separated field names for transaction
|
|
20083
19201
|
*/
|
|
20084
|
-
|
|
19202
|
+
transaction?: string;
|
|
20085
19203
|
[key: string]: unknown | string | undefined;
|
|
20086
19204
|
};
|
|
20087
19205
|
};
|
|
20088
|
-
url: "/admin/
|
|
19206
|
+
url: "/admin/transactions/{id}";
|
|
20089
19207
|
};
|
|
20090
|
-
type
|
|
19208
|
+
type GetAdminTransactionsByIdErrors = {
|
|
20091
19209
|
/**
|
|
20092
19210
|
* Bad Request - Invalid input data or malformed request
|
|
20093
19211
|
*/
|
|
@@ -20117,20 +19235,20 @@ type PatchAdminExtractionFoldersByIdErrors = {
|
|
|
20117
19235
|
*/
|
|
20118
19236
|
default: Errors;
|
|
20119
19237
|
};
|
|
20120
|
-
type
|
|
20121
|
-
type
|
|
19238
|
+
type GetAdminTransactionsByIdError = GetAdminTransactionsByIdErrors[keyof GetAdminTransactionsByIdErrors];
|
|
19239
|
+
type GetAdminTransactionsByIdResponses = {
|
|
20122
19240
|
/**
|
|
20123
19241
|
* Success
|
|
20124
19242
|
*/
|
|
20125
19243
|
200: {
|
|
20126
|
-
data?:
|
|
19244
|
+
data?: Transaction;
|
|
20127
19245
|
included?: Array<unknown>;
|
|
20128
19246
|
meta?: {
|
|
20129
19247
|
[key: string]: unknown;
|
|
20130
19248
|
};
|
|
20131
19249
|
};
|
|
20132
19250
|
};
|
|
20133
|
-
type
|
|
19251
|
+
type GetAdminTransactionsByIdResponse = GetAdminTransactionsByIdResponses[keyof GetAdminTransactionsByIdResponses];
|
|
20134
19252
|
type PostAdminStorageSignDownloadData = {
|
|
20135
19253
|
/**
|
|
20136
19254
|
* Request body for the /storage/sign_download operation on presigned_url resource
|
|
@@ -20276,100 +19394,6 @@ type PostAdminTrainingExamplesBulkDeleteResponses = {
|
|
|
20276
19394
|
};
|
|
20277
19395
|
};
|
|
20278
19396
|
type PostAdminTrainingExamplesBulkDeleteResponse = PostAdminTrainingExamplesBulkDeleteResponses[keyof PostAdminTrainingExamplesBulkDeleteResponses];
|
|
20279
|
-
type GetAdminExtractionDocumentsFolderByFolderIdData = {
|
|
20280
|
-
body?: never;
|
|
20281
|
-
headers: {
|
|
20282
|
-
/**
|
|
20283
|
-
* Application ID for authentication and routing
|
|
20284
|
-
*/
|
|
20285
|
-
"x-application-key": string;
|
|
20286
|
-
};
|
|
20287
|
-
path: {
|
|
20288
|
-
folder_id: string;
|
|
20289
|
-
};
|
|
20290
|
-
query?: {
|
|
20291
|
-
/**
|
|
20292
|
-
* Filter results using JSON:API filter syntax. Use field comparisons like `field[eq]=value`, `field[in][]=val1&field[in][]=val2`, etc.
|
|
20293
|
-
*/
|
|
20294
|
-
filter?: ExtractionDocumentFilter;
|
|
20295
|
-
/**
|
|
20296
|
-
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
20297
|
-
*/
|
|
20298
|
-
sort?: string;
|
|
20299
|
-
/**
|
|
20300
|
-
* Pagination parameters using JSON:API page-based strategy. Use `page[limit]` and `page[offset]` for pagination.
|
|
20301
|
-
*/
|
|
20302
|
-
page?: {
|
|
20303
|
-
after?: string;
|
|
20304
|
-
before?: string;
|
|
20305
|
-
count?: boolean;
|
|
20306
|
-
limit?: number;
|
|
20307
|
-
offset?: number;
|
|
20308
|
-
};
|
|
20309
|
-
/**
|
|
20310
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
20311
|
-
*/
|
|
20312
|
-
include?: string;
|
|
20313
|
-
/**
|
|
20314
|
-
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
20315
|
-
*/
|
|
20316
|
-
fields?: {
|
|
20317
|
-
/**
|
|
20318
|
-
* Comma separated field names for extraction_document
|
|
20319
|
-
*/
|
|
20320
|
-
extraction_document?: string;
|
|
20321
|
-
[key: string]: unknown | string | undefined;
|
|
20322
|
-
};
|
|
20323
|
-
};
|
|
20324
|
-
url: "/admin/extraction/documents/folder/{folder_id}";
|
|
20325
|
-
};
|
|
20326
|
-
type GetAdminExtractionDocumentsFolderByFolderIdErrors = {
|
|
20327
|
-
/**
|
|
20328
|
-
* Bad Request - Invalid input data or malformed request
|
|
20329
|
-
*/
|
|
20330
|
-
400: ErrorResponse;
|
|
20331
|
-
/**
|
|
20332
|
-
* Unauthorized - Missing or invalid authentication token
|
|
20333
|
-
*/
|
|
20334
|
-
401: ErrorResponse;
|
|
20335
|
-
/**
|
|
20336
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
20337
|
-
*/
|
|
20338
|
-
403: ErrorResponse;
|
|
20339
|
-
/**
|
|
20340
|
-
* Not Found - Resource does not exist
|
|
20341
|
-
*/
|
|
20342
|
-
404: ErrorResponse;
|
|
20343
|
-
/**
|
|
20344
|
-
* Too Many Requests - Rate limit exceeded
|
|
20345
|
-
*/
|
|
20346
|
-
429: ErrorResponse;
|
|
20347
|
-
/**
|
|
20348
|
-
* Internal Server Error - Unexpected server error
|
|
20349
|
-
*/
|
|
20350
|
-
500: ErrorResponse;
|
|
20351
|
-
/**
|
|
20352
|
-
* General Error
|
|
20353
|
-
*/
|
|
20354
|
-
default: Errors;
|
|
20355
|
-
};
|
|
20356
|
-
type GetAdminExtractionDocumentsFolderByFolderIdError = GetAdminExtractionDocumentsFolderByFolderIdErrors[keyof GetAdminExtractionDocumentsFolderByFolderIdErrors];
|
|
20357
|
-
type GetAdminExtractionDocumentsFolderByFolderIdResponses = {
|
|
20358
|
-
/**
|
|
20359
|
-
* Success
|
|
20360
|
-
*/
|
|
20361
|
-
200: {
|
|
20362
|
-
/**
|
|
20363
|
-
* An array of resource objects representing a extraction_document
|
|
20364
|
-
*/
|
|
20365
|
-
data?: Array<ExtractionDocument>;
|
|
20366
|
-
included?: Array<ExtractionResult>;
|
|
20367
|
-
meta?: {
|
|
20368
|
-
[key: string]: unknown;
|
|
20369
|
-
};
|
|
20370
|
-
};
|
|
20371
|
-
};
|
|
20372
|
-
type GetAdminExtractionDocumentsFolderByFolderIdResponse = GetAdminExtractionDocumentsFolderByFolderIdResponses[keyof GetAdminExtractionDocumentsFolderByFolderIdResponses];
|
|
20373
19397
|
type DeleteAdminAiConversationsByIdData = {
|
|
20374
19398
|
body?: never;
|
|
20375
19399
|
headers: {
|
|
@@ -21129,9 +20153,12 @@ type GetAdminWorkspacesByWorkspaceIdExtractionExportsData = {
|
|
|
21129
20153
|
"x-application-key": string;
|
|
21130
20154
|
};
|
|
21131
20155
|
path: {
|
|
20156
|
+
/**
|
|
20157
|
+
* The workspace to list exports for
|
|
20158
|
+
*/
|
|
21132
20159
|
workspace_id: string;
|
|
21133
20160
|
};
|
|
21134
|
-
query
|
|
20161
|
+
query: {
|
|
21135
20162
|
/**
|
|
21136
20163
|
* Filter results using JSON:API filter syntax. Use field comparisons like `field[eq]=value`, `field[in][]=val1&field[in][]=val2`, etc.
|
|
21137
20164
|
*/
|
|
@@ -21144,8 +20171,6 @@ type GetAdminWorkspacesByWorkspaceIdExtractionExportsData = {
|
|
|
21144
20171
|
* Pagination parameters using JSON:API page-based strategy. Use `page[limit]` and `page[offset]` for pagination.
|
|
21145
20172
|
*/
|
|
21146
20173
|
page?: {
|
|
21147
|
-
after?: string;
|
|
21148
|
-
before?: string;
|
|
21149
20174
|
count?: boolean;
|
|
21150
20175
|
limit?: number;
|
|
21151
20176
|
offset?: number;
|
|
@@ -21164,6 +20189,10 @@ type GetAdminWorkspacesByWorkspaceIdExtractionExportsData = {
|
|
|
21164
20189
|
extraction_export?: string;
|
|
21165
20190
|
[key: string]: unknown | string | undefined;
|
|
21166
20191
|
};
|
|
20192
|
+
/**
|
|
20193
|
+
* Export statuses to filter by
|
|
20194
|
+
*/
|
|
20195
|
+
status: Array<"pending" | "processing" | "completed" | "failed">;
|
|
21167
20196
|
};
|
|
21168
20197
|
url: "/admin/workspaces/{workspace_id}/extraction/exports";
|
|
21169
20198
|
};
|
|
@@ -23137,6 +22166,10 @@ type PatchAdminExtractionDocumentsByIdStatusData = {
|
|
|
23137
22166
|
body?: {
|
|
23138
22167
|
data: {
|
|
23139
22168
|
attributes?: {
|
|
22169
|
+
/**
|
|
22170
|
+
* Average confidence score across all extracted fields (0.0 to 1.0)
|
|
22171
|
+
*/
|
|
22172
|
+
avg_confidence?: number | unknown;
|
|
23140
22173
|
/**
|
|
23141
22174
|
* Credits billed for processing this document
|
|
23142
22175
|
*/
|
|
@@ -23145,6 +22178,10 @@ type PatchAdminExtractionDocumentsByIdStatusData = {
|
|
|
23145
22178
|
* Overall classification confidence (0.0 to 1.0)
|
|
23146
22179
|
*/
|
|
23147
22180
|
classification_confidence?: number | unknown;
|
|
22181
|
+
/**
|
|
22182
|
+
* Timestamp when document processing completed (status changed to :completed)
|
|
22183
|
+
*/
|
|
22184
|
+
completed_at?: unknown;
|
|
23148
22185
|
/**
|
|
23149
22186
|
* Specific document type from specialty agent (Traffic Citation, Invoice, etc.)
|
|
23150
22187
|
*/
|
|
@@ -23772,79 +22809,6 @@ type GetAdminSearchHealthResponses = {
|
|
|
23772
22809
|
};
|
|
23773
22810
|
};
|
|
23774
22811
|
type GetAdminSearchHealthResponse = GetAdminSearchHealthResponses[keyof GetAdminSearchHealthResponses];
|
|
23775
|
-
type GetAdminWebhookEventsByIdData = {
|
|
23776
|
-
body?: never;
|
|
23777
|
-
headers: {
|
|
23778
|
-
/**
|
|
23779
|
-
* Application ID for authentication and routing
|
|
23780
|
-
*/
|
|
23781
|
-
"x-application-key": string;
|
|
23782
|
-
};
|
|
23783
|
-
path: {
|
|
23784
|
-
id: string;
|
|
23785
|
-
};
|
|
23786
|
-
query?: {
|
|
23787
|
-
/**
|
|
23788
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
23789
|
-
*/
|
|
23790
|
-
include?: string;
|
|
23791
|
-
/**
|
|
23792
|
-
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
23793
|
-
*/
|
|
23794
|
-
fields?: {
|
|
23795
|
-
/**
|
|
23796
|
-
* Comma separated field names for webhook_event
|
|
23797
|
-
*/
|
|
23798
|
-
webhook_event?: string;
|
|
23799
|
-
[key: string]: unknown | string | undefined;
|
|
23800
|
-
};
|
|
23801
|
-
};
|
|
23802
|
-
url: "/admin/webhook_events/{id}";
|
|
23803
|
-
};
|
|
23804
|
-
type GetAdminWebhookEventsByIdErrors = {
|
|
23805
|
-
/**
|
|
23806
|
-
* Bad Request - Invalid input data or malformed request
|
|
23807
|
-
*/
|
|
23808
|
-
400: ErrorResponse;
|
|
23809
|
-
/**
|
|
23810
|
-
* Unauthorized - Missing or invalid authentication token
|
|
23811
|
-
*/
|
|
23812
|
-
401: ErrorResponse;
|
|
23813
|
-
/**
|
|
23814
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
23815
|
-
*/
|
|
23816
|
-
403: ErrorResponse;
|
|
23817
|
-
/**
|
|
23818
|
-
* Not Found - Resource does not exist
|
|
23819
|
-
*/
|
|
23820
|
-
404: ErrorResponse;
|
|
23821
|
-
/**
|
|
23822
|
-
* Too Many Requests - Rate limit exceeded
|
|
23823
|
-
*/
|
|
23824
|
-
429: ErrorResponse;
|
|
23825
|
-
/**
|
|
23826
|
-
* Internal Server Error - Unexpected server error
|
|
23827
|
-
*/
|
|
23828
|
-
500: ErrorResponse;
|
|
23829
|
-
/**
|
|
23830
|
-
* General Error
|
|
23831
|
-
*/
|
|
23832
|
-
default: Errors;
|
|
23833
|
-
};
|
|
23834
|
-
type GetAdminWebhookEventsByIdError = GetAdminWebhookEventsByIdErrors[keyof GetAdminWebhookEventsByIdErrors];
|
|
23835
|
-
type GetAdminWebhookEventsByIdResponses = {
|
|
23836
|
-
/**
|
|
23837
|
-
* Success
|
|
23838
|
-
*/
|
|
23839
|
-
200: {
|
|
23840
|
-
data?: WebhookEvent;
|
|
23841
|
-
included?: Array<unknown>;
|
|
23842
|
-
meta?: {
|
|
23843
|
-
[key: string]: unknown;
|
|
23844
|
-
};
|
|
23845
|
-
};
|
|
23846
|
-
};
|
|
23847
|
-
type GetAdminWebhookEventsByIdResponse = GetAdminWebhookEventsByIdResponses[keyof GetAdminWebhookEventsByIdResponses];
|
|
23848
22812
|
type DeleteAdminAiGraphNodesByIdData = {
|
|
23849
22813
|
body?: never;
|
|
23850
22814
|
headers: {
|
|
@@ -26715,7 +25679,6 @@ type PostAdminExtractionDocumentsBeginUploadData = {
|
|
|
26715
25679
|
file_size_bytes?: number | unknown;
|
|
26716
25680
|
file_type: "pdf" | "docx" | "image" | "zip";
|
|
26717
25681
|
filename: string;
|
|
26718
|
-
folder_id?: string | unknown;
|
|
26719
25682
|
parent_document_id?: string | unknown;
|
|
26720
25683
|
workspace_id: string;
|
|
26721
25684
|
};
|
|
@@ -28128,4 +27091,4 @@ type ApiKeyAllocateRequest = z.infer<typeof ApiKeyAllocateSchema>;
|
|
|
28128
27091
|
type DocumentBulkDeleteRequest = z.infer<typeof DocumentBulkDeleteSchema>;
|
|
28129
27092
|
type DocumentBulkReprocessRequest = z.infer<typeof DocumentBulkReprocessSchema>;
|
|
28130
27093
|
|
|
28131
|
-
export { type Account, type AccountCreditRequest, AccountCreditSchema, type AccountDebitRequest, AccountDebitSchema, type AccountFilter, type AccountFilterId, type Agent, type AgentAdminCreateRequest, AgentAdminCreateSchema, type AgentFilter, type AgentFilterCapabilities, type AgentFilterDescription, type AgentFilterId, type AgentFilterIsSystem, type AgentFilterName, type AgentFilterSlug, type AgentFilterVersion, type AiConfig, type AiConfigFilter, type ApiKey, type ApiKeyAllocateRequest, ApiKeyAllocateSchema, type ApiKeyFilter, type ApiKeyFilterApplicationId, type ApiKeyFilterExpiresAt, type ApiKeyFilterId, type ApiKeyFilterStatus, type ApiKeyFilterTenantId, type ApiKeyFilterUserId, type ApiKeyFilterWorkspaceId, type Application, type ApplicationFilter, type ApplicationFilterDefaultFreeCredits, type ApplicationFilterDescription, type ApplicationFilterId, type ApplicationFilterName, type ApplicationFilterSlug, type AuditLog, type AuditLogFilter, type AuditLogFilterAction, type AuditLogFilterActorId, type AuditLogFilterChanges, type AuditLogFilterId, type AuditLogFilterResourceId, type AuditLogFilterResourceType, type AuditLogFilterTenantId, type AuditLogFilterWorkspaceId, AuthenticationError, AuthorizationError, type Bucket, type BucketFilter, type BucketFilterId, type BucketFilterName, type BucketFilterRegion, type BucketFilterStorageUsed, type BucketFilterType, 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 CreditPackageFilterCreatedAt, type CreditPackageFilterCredits, type CreditPackageFilterId, type CreditPackageFilterName, type CreditPackageFilterPrice, type CreditPackageFilterSlug, type CreditPackageFilterUpdatedAt, type Customer, type CustomerFilter, type CustomerFilterId, 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 DeleteAdminApiKeysByIdData, type DeleteAdminApiKeysByIdError, type DeleteAdminApiKeysByIdErrors, type DeleteAdminApiKeysByIdResponses, type DeleteAdminApplicationsByIdData, type DeleteAdminApplicationsByIdError, type DeleteAdminApplicationsByIdErrors, type DeleteAdminApplicationsByIdResponses, type DeleteAdminBucketsByIdData, type DeleteAdminBucketsByIdError, type DeleteAdminBucketsByIdErrors, type DeleteAdminBucketsByIdResponses, type DeleteAdminCustomersByIdData, type DeleteAdminCustomersByIdError, type DeleteAdminCustomersByIdErrors, type DeleteAdminCustomersByIdResponses, type DeleteAdminExtractionDocumentsByIdData, type DeleteAdminExtractionDocumentsByIdError, type DeleteAdminExtractionDocumentsByIdErrors, type DeleteAdminExtractionDocumentsByIdResponses, type DeleteAdminExtractionFoldersByIdData, type DeleteAdminExtractionFoldersByIdError, type DeleteAdminExtractionFoldersByIdErrors, type DeleteAdminExtractionFoldersByIdResponses, type DeleteAdminExtractionSchemaFieldsByIdData, type DeleteAdminExtractionSchemaFieldsByIdError, type DeleteAdminExtractionSchemaFieldsByIdErrors, type DeleteAdminExtractionSchemaFieldsByIdResponses, type DeleteAdminMessagesByIdData, type DeleteAdminMessagesByIdError, type DeleteAdminMessagesByIdErrors, type DeleteAdminMessagesByIdResponses, 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 DeleteAdminTenantMembershipsByTenantIdByUserIdData, type DeleteAdminTenantMembershipsByTenantIdByUserIdError, type DeleteAdminTenantMembershipsByTenantIdByUserIdErrors, type DeleteAdminTenantMembershipsByTenantIdByUserIdResponses, 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 DeleteAdminUserProfilesByIdData, type DeleteAdminUserProfilesByIdError, type DeleteAdminUserProfilesByIdErrors, type DeleteAdminUserProfilesByIdResponses, 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 DocumentChunkFilterEmbedding, type DocumentChunkFilterId, type DocumentStats, type DocumentStatsFilter, type DocumentStatsFilterCompleted, type DocumentStatsFilterFailed, type DocumentStatsFilterId, type DocumentStatsFilterPending, type DocumentStatsFilterProcessing, type DocumentStatsFilterTotal, 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 ExtractionDocumentFilterBilledCredits, type ExtractionDocumentFilterClassification, type ExtractionDocumentFilterClassificationConfidence, type ExtractionDocumentFilterContent, type ExtractionDocumentFilterDeletedAt, type ExtractionDocumentFilterDocumentType, type ExtractionDocumentFilterDomain, type ExtractionDocumentFilterErrorMessage, type ExtractionDocumentFilterFileSizeBytes, type ExtractionDocumentFilterFileType, type ExtractionDocumentFilterFilename, type ExtractionDocumentFilterFolderId, type ExtractionDocumentFilterId, type ExtractionDocumentFilterMunicipality, type ExtractionDocumentFilterPages, type ExtractionDocumentFilterPresignedViewUrl, type ExtractionDocumentFilterProcessedAt, type ExtractionDocumentFilterProgress, type ExtractionDocumentFilterState, type ExtractionDocumentFilterStatus, type ExtractionDocumentFilterStoragePath, type ExtractionDocumentFilterUploadUrl, type ExtractionDocumentFilterUploadedAt, type ExtractionExport, type ExtractionExportFilter, type ExtractionExportFilterConfig, type ExtractionExportFilterErrorMessage, type ExtractionExportFilterExpiresAt, type ExtractionExportFilterFileSizeBytes, type ExtractionExportFilterFileUrl, type ExtractionExportFilterFormat, type ExtractionExportFilterId, type ExtractionExportFilterStatus, type ExtractionExportFilterWorkspaceId, type ExtractionFolder, type ExtractionFolderFilter, type ExtractionFolderFilterId, type ExtractionFolderFilterName, type ExtractionResult, type ExtractionResultFilter, type ExtractionResultFilterCreditsUsed, type ExtractionResultFilterExtractedFields, type ExtractionResultFilterExtractionMode, type ExtractionResultFilterId, type ExtractionResultFilterProcessingTimeMs, type ExtractionResultFilterStatus, type ExtractionResultFilterSummary, type ExtractionSchema, type ExtractionSchemaField, type ExtractionSchemaFieldFilter, type ExtractionSchemaFieldFilterExtractionHint, type ExtractionSchemaFieldFilterGroup, type ExtractionSchemaFieldFilterId, type ExtractionSchemaFieldFilterLabel, type ExtractionSchemaFieldFilterName, type ExtractionSchemaFieldFilterOrder, type ExtractionSchemaFieldFilterRequired, type ExtractionSchemaFieldFilterType, type ExtractionSchemaFilter, type ExtractionSchemaFilterId, type ExtractionSchemaFilterIsActive, type ExtractionSchemaFilterVersion, type GetAdminAccountsByIdData, type GetAdminAccountsByIdError, type GetAdminAccountsByIdErrors, type GetAdminAccountsByIdResponse, type GetAdminAccountsByIdResponses, type GetAdminAccountsData, type GetAdminAccountsError, type GetAdminAccountsErrors, type GetAdminAccountsResponse, type GetAdminAccountsResponses, type GetAdminAgentsByIdData, type GetAdminAgentsByIdError, type GetAdminAgentsByIdErrors, type GetAdminAgentsByIdResponse, type GetAdminAgentsByIdResponses, type GetAdminAgentsData, type GetAdminAgentsError, type GetAdminAgentsErrors, type GetAdminAgentsResponse, type GetAdminAgentsResponses, 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 GetAdminAiGraphNodesData, type GetAdminAiGraphNodesError, type GetAdminAiGraphNodesErrors, type GetAdminAiGraphNodesResponse, type GetAdminAiGraphNodesResponses, type GetAdminAiMessagesData, type GetAdminAiMessagesError, type GetAdminAiMessagesErrors, type GetAdminAiMessagesResponse, type GetAdminAiMessagesResponses, type GetAdminApiKeysByIdData, type GetAdminApiKeysByIdError, type GetAdminApiKeysByIdErrors, type GetAdminApiKeysByIdResponse, type GetAdminApiKeysByIdResponses, type GetAdminApiKeysData, type GetAdminApiKeysError, type GetAdminApiKeysErrors, type GetAdminApiKeysResponse, type GetAdminApiKeysResponses, type GetAdminApplicationsByIdData, type GetAdminApplicationsByIdError, type GetAdminApplicationsByIdErrors, type GetAdminApplicationsByIdResponse, type GetAdminApplicationsByIdResponses, type GetAdminApplicationsBySlugBySlugData, type GetAdminApplicationsBySlugBySlugError, type GetAdminApplicationsBySlugBySlugErrors, type GetAdminApplicationsBySlugBySlugResponse, type GetAdminApplicationsBySlugBySlugResponses, type GetAdminApplicationsData, type GetAdminApplicationsError, type GetAdminApplicationsErrors, type GetAdminApplicationsResponse, type GetAdminApplicationsResponses, type GetAdminAuditLogsData, type GetAdminAuditLogsError, type GetAdminAuditLogsErrors, type GetAdminAuditLogsResponse, type GetAdminAuditLogsResponses, 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 GetAdminExtractionDocumentsData, type GetAdminExtractionDocumentsError, type GetAdminExtractionDocumentsErrors, type GetAdminExtractionDocumentsFolderByFolderIdData, type GetAdminExtractionDocumentsFolderByFolderIdError, type GetAdminExtractionDocumentsFolderByFolderIdErrors, type GetAdminExtractionDocumentsFolderByFolderIdResponse, type GetAdminExtractionDocumentsFolderByFolderIdResponses, type GetAdminExtractionDocumentsResponse, type GetAdminExtractionDocumentsResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdResponses, type GetAdminExtractionFoldersByIdData, type GetAdminExtractionFoldersByIdError, type GetAdminExtractionFoldersByIdErrors, type GetAdminExtractionFoldersByIdResponse, type GetAdminExtractionFoldersByIdResponses, type GetAdminExtractionFoldersData, type GetAdminExtractionFoldersError, type GetAdminExtractionFoldersErrors, type GetAdminExtractionFoldersResponse, type GetAdminExtractionFoldersResponses, type GetAdminExtractionFoldersWorkspaceByWorkspaceIdData, type GetAdminExtractionFoldersWorkspaceByWorkspaceIdError, type GetAdminExtractionFoldersWorkspaceByWorkspaceIdErrors, type GetAdminExtractionFoldersWorkspaceByWorkspaceIdResponse, type GetAdminExtractionFoldersWorkspaceByWorkspaceIdResponses, type GetAdminExtractionResultsByIdData, type GetAdminExtractionResultsByIdError, type GetAdminExtractionResultsByIdErrors, type GetAdminExtractionResultsByIdResponse, type GetAdminExtractionResultsByIdResponses, type GetAdminExtractionResultsDocumentByDocumentIdData, type GetAdminExtractionResultsDocumentByDocumentIdError, type GetAdminExtractionResultsDocumentByDocumentIdErrors, type GetAdminExtractionResultsDocumentByDocumentIdResponse, type GetAdminExtractionResultsDocumentByDocumentIdResponses, type GetAdminExtractionSchemaFieldsByIdData, type GetAdminExtractionSchemaFieldsByIdError, type GetAdminExtractionSchemaFieldsByIdErrors, type GetAdminExtractionSchemaFieldsByIdResponse, type GetAdminExtractionSchemaFieldsByIdResponses, type GetAdminExtractionSchemaFieldsData, type GetAdminExtractionSchemaFieldsError, type GetAdminExtractionSchemaFieldsErrors, type GetAdminExtractionSchemaFieldsResponse, type GetAdminExtractionSchemaFieldsResponses, type GetAdminExtractionSchemasByIdData, type GetAdminExtractionSchemasByIdError, type GetAdminExtractionSchemasByIdErrors, type GetAdminExtractionSchemasByIdResponse, type GetAdminExtractionSchemasByIdResponses, type GetAdminExtractionSchemasWorkspaceByWorkspaceIdData, type GetAdminExtractionSchemasWorkspaceByWorkspaceIdError, type GetAdminExtractionSchemasWorkspaceByWorkspaceIdErrors, type GetAdminExtractionSchemasWorkspaceByWorkspaceIdResponse, type GetAdminExtractionSchemasWorkspaceByWorkspaceIdResponses, type GetAdminInvitationsConsumeByTokenData, type GetAdminInvitationsConsumeByTokenError, type GetAdminInvitationsConsumeByTokenErrors, type GetAdminInvitationsConsumeByTokenResponse, type GetAdminInvitationsConsumeByTokenResponses, type GetAdminInvitationsData, type GetAdminInvitationsError, type GetAdminInvitationsErrors, 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 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 GetAdminNotificationLogsByIdData, type GetAdminNotificationLogsByIdError, type GetAdminNotificationLogsByIdErrors, type GetAdminNotificationLogsByIdResponse, type GetAdminNotificationLogsByIdResponses, type GetAdminNotificationLogsData, type GetAdminNotificationLogsError, type GetAdminNotificationLogsErrors, type GetAdminNotificationLogsResponse, type GetAdminNotificationLogsResponses, 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 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 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 GetAdminStorageStatsData, type GetAdminStorageStatsError, type GetAdminStorageStatsErrors, type GetAdminStorageStatsResponse, type GetAdminStorageStatsResponses, type GetAdminSubscriptionsByIdData, type GetAdminSubscriptionsByIdError, type GetAdminSubscriptionsByIdErrors, type GetAdminSubscriptionsByIdResponse, type GetAdminSubscriptionsByIdResponses, 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 GetAdminTenantMembershipsData, type GetAdminTenantMembershipsError, type GetAdminTenantMembershipsErrors, type GetAdminTenantMembershipsResponse, type GetAdminTenantMembershipsResponses, type GetAdminTenantsByIdData, type GetAdminTenantsByIdError, type GetAdminTenantsByIdErrors, type GetAdminTenantsByIdResponse, type GetAdminTenantsByIdResponses, type GetAdminTenantsData, type GetAdminTenantsError, type GetAdminTenantsErrors, type GetAdminTenantsResponse, type GetAdminTenantsResponses, type GetAdminThreadsByIdData, type GetAdminThreadsByIdError, type GetAdminThreadsByIdErrors, 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 GetAdminTrainingExamplesByIdData, type GetAdminTrainingExamplesByIdError, type GetAdminTrainingExamplesByIdErrors, type GetAdminTrainingExamplesByIdResponse, type GetAdminTrainingExamplesByIdResponses, type GetAdminTrainingExamplesData, type GetAdminTrainingExamplesError, type GetAdminTrainingExamplesErrors, type GetAdminTrainingExamplesResponse, type GetAdminTrainingExamplesResponses, type GetAdminTransactionsByIdData, type GetAdminTransactionsByIdError, type GetAdminTransactionsByIdErrors, type GetAdminTransactionsByIdResponse, type GetAdminTransactionsByIdResponses, type GetAdminTransactionsData, type GetAdminTransactionsError, type GetAdminTransactionsErrors, type GetAdminTransactionsResponse, type GetAdminTransactionsResponses, 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 GetAdminUsersByIdData, type GetAdminUsersByIdError, type GetAdminUsersByIdErrors, type GetAdminUsersByIdResponse, type GetAdminUsersByIdResponses, type GetAdminUsersData, type GetAdminUsersError, type GetAdminUsersErrors, type GetAdminUsersMeData, type GetAdminUsersMeError, type GetAdminUsersMeErrors, type GetAdminUsersMeResponse, type GetAdminUsersMeResponses, type GetAdminUsersResponse, type GetAdminUsersResponses, type GetAdminWalletData, type GetAdminWalletError, type GetAdminWalletErrors, type GetAdminWalletResponse, type GetAdminWalletResponses, type GetAdminWebhookConfigsByIdData, type GetAdminWebhookConfigsByIdError, type GetAdminWebhookConfigsByIdErrors, type GetAdminWebhookConfigsByIdResponse, type GetAdminWebhookConfigsByIdResponses, type GetAdminWebhookConfigsData, type GetAdminWebhookConfigsError, type GetAdminWebhookConfigsErrors, type GetAdminWebhookConfigsResponse, type GetAdminWebhookConfigsResponses, type GetAdminWebhookDeliveriesByIdData, type GetAdminWebhookDeliveriesByIdError, type GetAdminWebhookDeliveriesByIdErrors, type GetAdminWebhookDeliveriesByIdResponse, type GetAdminWebhookDeliveriesByIdResponses, type GetAdminWebhookDeliveriesData, type GetAdminWebhookDeliveriesError, type GetAdminWebhookDeliveriesErrors, type GetAdminWebhookDeliveriesResponse, type GetAdminWebhookDeliveriesResponses, type GetAdminWebhookEventsByIdData, type GetAdminWebhookEventsByIdError, type GetAdminWebhookEventsByIdErrors, type GetAdminWebhookEventsByIdResponse, type GetAdminWebhookEventsByIdResponses, type GetAdminWebhookEventsData, type GetAdminWebhookEventsError, type GetAdminWebhookEventsErrors, type GetAdminWebhookEventsResponse, type GetAdminWebhookEventsResponses, type GetAdminWorkspaceMembershipsData, type GetAdminWorkspaceMembershipsError, type GetAdminWorkspaceMembershipsErrors, type GetAdminWorkspaceMembershipsResponse, type GetAdminWorkspaceMembershipsResponses, type GetAdminWorkspacesByIdData, type GetAdminWorkspacesByIdError, type GetAdminWorkspacesByIdErrors, type GetAdminWorkspacesByIdResponse, type GetAdminWorkspacesByIdResponses, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdData, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdError, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdErrors, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdResponse, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdResponses, type GetAdminWorkspacesByWorkspaceIdExtractionExportsData, type GetAdminWorkspacesByWorkspaceIdExtractionExportsError, type GetAdminWorkspacesByWorkspaceIdExtractionExportsErrors, type GetAdminWorkspacesByWorkspaceIdExtractionExportsResponse, type GetAdminWorkspacesByWorkspaceIdExtractionExportsResponses, type GetAdminWorkspacesData, type GetAdminWorkspacesError, type GetAdminWorkspacesErrors, type GetAdminWorkspacesMineData, type GetAdminWorkspacesMineError, type GetAdminWorkspacesMineErrors, type GetAdminWorkspacesMineResponse, type GetAdminWorkspacesMineResponses, type GetAdminWorkspacesResponse, type GetAdminWorkspacesResponses, GptAdmin, GptCoreError, type GraphEdge, type GraphEdgeFilter, type GraphEdgeFilterId, type GraphEdgeFilterProperties, type GraphEdgeFilterRelationship, type GraphEdgeFilterSourceId, type GraphEdgeFilterTargetId, type GraphNode, type GraphNodeFilter, type GraphNodeFilterId, type GraphNodeFilterLabel, type GraphNodeFilterProperties, type GraphNodeFilterTenantId, type Invitation, type InvitationFilter, type InvitationFilterId, type IsvRevenue, type IsvRevenueFilter, type IsvRevenueFilterId, type IsvSettlement, type IsvSettlementFilter, type IsvSettlementFilterId, type Ledger, type LedgerFilter, type LedgerFilterId, 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 NotificationPreference, type NotificationPreferenceFilter, type NotificationPreferenceFilterId, type ObjectFilter, type ObjectFilterContentType, type ObjectFilterId, type ObjectFilterKey, type ObjectFilterSizeBytes, 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 PatchAdminApiKeysByIdAllocateData, type PatchAdminApiKeysByIdAllocateError, type PatchAdminApiKeysByIdAllocateErrors, type PatchAdminApiKeysByIdAllocateResponse, type PatchAdminApiKeysByIdAllocateResponses, type PatchAdminApiKeysByIdData, type PatchAdminApiKeysByIdError, type PatchAdminApiKeysByIdErrors, 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 PatchAdminApplicationsByIdData, type PatchAdminApplicationsByIdError, type PatchAdminApplicationsByIdErrors, 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 PatchAdminCustomersByIdData, type PatchAdminCustomersByIdError, type PatchAdminCustomersByIdErrors, type PatchAdminCustomersByIdResponse, type PatchAdminCustomersByIdResponses, type PatchAdminExtractionDocumentsByIdFinishUploadData, type PatchAdminExtractionDocumentsByIdFinishUploadError, type PatchAdminExtractionDocumentsByIdFinishUploadErrors, type PatchAdminExtractionDocumentsByIdFinishUploadResponse, type PatchAdminExtractionDocumentsByIdFinishUploadResponses, type PatchAdminExtractionDocumentsByIdStatusData, type PatchAdminExtractionDocumentsByIdStatusError, type PatchAdminExtractionDocumentsByIdStatusErrors, type PatchAdminExtractionDocumentsByIdStatusResponse, type PatchAdminExtractionDocumentsByIdStatusResponses, type PatchAdminExtractionFoldersByIdData, type PatchAdminExtractionFoldersByIdError, type PatchAdminExtractionFoldersByIdErrors, type PatchAdminExtractionFoldersByIdResponse, type PatchAdminExtractionFoldersByIdResponses, type PatchAdminExtractionResultsByIdCorrectionsData, type PatchAdminExtractionResultsByIdCorrectionsError, type PatchAdminExtractionResultsByIdCorrectionsErrors, type PatchAdminExtractionResultsByIdCorrectionsResponse, type PatchAdminExtractionResultsByIdCorrectionsResponses, type PatchAdminExtractionResultsByIdRegenerateData, type PatchAdminExtractionResultsByIdRegenerateError, type PatchAdminExtractionResultsByIdRegenerateErrors, type PatchAdminExtractionResultsByIdRegenerateResponse, type PatchAdminExtractionResultsByIdRegenerateResponses, type PatchAdminExtractionSchemaFieldsByIdData, type PatchAdminExtractionSchemaFieldsByIdError, type PatchAdminExtractionSchemaFieldsByIdErrors, type PatchAdminExtractionSchemaFieldsByIdResponse, type PatchAdminExtractionSchemaFieldsByIdResponses, type PatchAdminExtractionSchemasByIdData, type PatchAdminExtractionSchemasByIdError, type PatchAdminExtractionSchemasByIdErrors, type PatchAdminExtractionSchemasByIdResponse, type PatchAdminExtractionSchemasByIdResponses, type PatchAdminInvitationsByIdAcceptData, type PatchAdminInvitationsByIdAcceptError, type PatchAdminInvitationsByIdAcceptErrors, type PatchAdminInvitationsByIdAcceptResponse, type PatchAdminInvitationsByIdAcceptResponses, 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 PatchAdminNotificationPreferencesByIdData, type PatchAdminNotificationPreferencesByIdError, type PatchAdminNotificationPreferencesByIdErrors, type PatchAdminNotificationPreferencesByIdResponse, type PatchAdminNotificationPreferencesByIdResponses, 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 PatchAdminSubscriptionsByIdData, type PatchAdminSubscriptionsByIdError, type PatchAdminSubscriptionsByIdErrors, type PatchAdminSubscriptionsByIdResponse, type PatchAdminSubscriptionsByIdResponses, type PatchAdminSysAiConfigByIdData, type PatchAdminSysAiConfigByIdError, type PatchAdminSysAiConfigByIdErrors, type PatchAdminSysAiConfigByIdResponse, type PatchAdminSysAiConfigByIdResponses, type PatchAdminTenantMembershipsByTenantIdByUserIdData, type PatchAdminTenantMembershipsByTenantIdByUserIdError, type PatchAdminTenantMembershipsByTenantIdByUserIdErrors, type PatchAdminTenantMembershipsByTenantIdByUserIdResponse, type PatchAdminTenantMembershipsByTenantIdByUserIdResponses, type PatchAdminTenantsByIdData, type PatchAdminTenantsByIdError, type PatchAdminTenantsByIdErrors, type PatchAdminTenantsByIdResponse, type PatchAdminTenantsByIdResponses, type PatchAdminThreadsByIdData, type PatchAdminThreadsByIdError, type PatchAdminThreadsByIdErrors, type PatchAdminThreadsByIdResponse, type PatchAdminThreadsByIdResponses, type PatchAdminTrainingExamplesByIdData, type PatchAdminTrainingExamplesByIdError, type PatchAdminTrainingExamplesByIdErrors, type PatchAdminTrainingExamplesByIdResponse, type PatchAdminTrainingExamplesByIdResponses, type PatchAdminUserProfilesByIdData, type PatchAdminUserProfilesByIdError, type PatchAdminUserProfilesByIdErrors, type PatchAdminUserProfilesByIdResponse, type PatchAdminUserProfilesByIdResponses, type PatchAdminUsersAuthResetPasswordData, type PatchAdminUsersAuthResetPasswordError, type PatchAdminUsersAuthResetPasswordErrors, type PatchAdminUsersAuthResetPasswordResponse, type PatchAdminUsersAuthResetPasswordResponses, type PatchAdminUsersByIdConfirmEmailData, type PatchAdminUsersByIdConfirmEmailError, type PatchAdminUsersByIdConfirmEmailErrors, type PatchAdminUsersByIdConfirmEmailResponse, type PatchAdminUsersByIdConfirmEmailResponses, type PatchAdminUsersByIdData, type PatchAdminUsersByIdError, type PatchAdminUsersByIdErrors, type PatchAdminUsersByIdResetPasswordData, type PatchAdminUsersByIdResetPasswordError, type PatchAdminUsersByIdResetPasswordErrors, type PatchAdminUsersByIdResetPasswordResponse, type PatchAdminUsersByIdResetPasswordResponses, type PatchAdminUsersByIdResponse, type PatchAdminUsersByIdResponses, type PatchAdminWalletAddonsByAddonSlugCancelData, type PatchAdminWalletAddonsByAddonSlugCancelError, type PatchAdminWalletAddonsByAddonSlugCancelErrors, type PatchAdminWalletAddonsByAddonSlugCancelResponse, type PatchAdminWalletAddonsByAddonSlugCancelResponses, type PatchAdminWalletAddonsData, type PatchAdminWalletAddonsError, type PatchAdminWalletAddonsErrors, type PatchAdminWalletAddonsResponse, type PatchAdminWalletAddonsResponses, type PatchAdminWalletPlanData, type PatchAdminWalletPlanError, type PatchAdminWalletPlanErrors, type PatchAdminWalletPlanResponse, type PatchAdminWalletPlanResponses, 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 Payment, type PaymentFilter, type PaymentFilterAmount, type PaymentFilterCreatedAt, type PaymentFilterCurrency, type PaymentFilterErrorMessage, type PaymentFilterId, type PaymentFilterProviderReference, type PaymentFilterStatus, type PaymentMethod, type PaymentMethodFilter, type PaymentMethodFilterId, type Plan, type PlanFilter, type PlanFilterCreatedAt, type PlanFilterId, type PlanFilterMonthlyCredits, type PlanFilterMonthlyPrice, type PlanFilterName, type PlanFilterSlug, type PlanFilterStorageDays, type PlanFilterType, type PlanFilterUpdatedAt, type PostAdminAgentsByIdCloneData, type PostAdminAgentsByIdCloneError, type PostAdminAgentsByIdCloneErrors, type PostAdminAgentsByIdCloneResponse, type PostAdminAgentsByIdCloneResponses, 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 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 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 PostAdminCustomersData, type PostAdminCustomersError, type PostAdminCustomersErrors, type PostAdminCustomersResponse, type PostAdminCustomersResponses, type PostAdminDocumentsBulkDeleteData, type PostAdminDocumentsBulkDeleteError, type PostAdminDocumentsBulkDeleteErrors, type PostAdminDocumentsBulkDeleteResponse, type PostAdminDocumentsBulkDeleteResponses, type PostAdminExtractionBatchesData, type PostAdminExtractionBatchesError, type PostAdminExtractionBatchesErrors, type PostAdminExtractionBatchesResponse, type PostAdminExtractionBatchesResponses, type PostAdminExtractionDocumentsBeginUploadData, type PostAdminExtractionDocumentsBeginUploadError, type PostAdminExtractionDocumentsBeginUploadErrors, type PostAdminExtractionDocumentsBeginUploadResponse, type PostAdminExtractionDocumentsBeginUploadResponses, type PostAdminExtractionDocumentsByIdViewData, type PostAdminExtractionDocumentsByIdViewError, type PostAdminExtractionDocumentsByIdViewErrors, type PostAdminExtractionDocumentsByIdViewResponse, type PostAdminExtractionDocumentsByIdViewResponses, type PostAdminExtractionDocumentsUploadData, type PostAdminExtractionDocumentsUploadError, type PostAdminExtractionDocumentsUploadErrors, type PostAdminExtractionDocumentsUploadResponse, type PostAdminExtractionDocumentsUploadResponses, type PostAdminExtractionFoldersData, type PostAdminExtractionFoldersError, type PostAdminExtractionFoldersErrors, type PostAdminExtractionFoldersResponse, type PostAdminExtractionFoldersResponses, type PostAdminExtractionResultsData, type PostAdminExtractionResultsError, type PostAdminExtractionResultsErrors, type PostAdminExtractionResultsResponse, type PostAdminExtractionResultsResponses, type PostAdminExtractionSchemaFieldsData, type PostAdminExtractionSchemaFieldsError, type PostAdminExtractionSchemaFieldsErrors, type PostAdminExtractionSchemaFieldsResponse, type PostAdminExtractionSchemaFieldsResponses, type PostAdminExtractionSchemasData, type PostAdminExtractionSchemasError, type PostAdminExtractionSchemasErrors, type PostAdminExtractionSchemasResponse, type PostAdminExtractionSchemasResponses, type PostAdminInvitationsAcceptByTokenData, type PostAdminInvitationsAcceptByTokenError, type PostAdminInvitationsAcceptByTokenErrors, type PostAdminInvitationsAcceptByTokenResponse, type PostAdminInvitationsAcceptByTokenResponses, type PostAdminInvitationsInviteData, type PostAdminInvitationsInviteError, type PostAdminInvitationsInviteErrors, type PostAdminInvitationsInviteResponse, type PostAdminInvitationsInviteResponses, 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 PostAdminNotificationPreferencesData, type PostAdminNotificationPreferencesError, type PostAdminNotificationPreferencesErrors, type PostAdminNotificationPreferencesResponse, type PostAdminNotificationPreferencesResponses, type PostAdminObjectsBulkDestroyData, type PostAdminObjectsBulkDestroyError, type PostAdminObjectsBulkDestroyErrors, type PostAdminObjectsBulkDestroyResponse, type PostAdminObjectsBulkDestroyResponses, type PostAdminObjectsRegisterData, type PostAdminObjectsRegisterError, type PostAdminObjectsRegisterErrors, type PostAdminObjectsRegisterResponse, type PostAdminObjectsRegisterResponses, type PostAdminPaymentMethodsData, type PostAdminPaymentMethodsError, type PostAdminPaymentMethodsErrors, type PostAdminPaymentMethodsResponse, type PostAdminPaymentMethodsResponses, 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 PostAdminSearchReindexData, type PostAdminSearchReindexError, type PostAdminSearchReindexErrors, type PostAdminSearchReindexResponse, type PostAdminSearchReindexResponses, 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 PostAdminTenantMembershipsData, type PostAdminTenantMembershipsError, type PostAdminTenantMembershipsErrors, type PostAdminTenantMembershipsResponse, type PostAdminTenantMembershipsResponses, type PostAdminTenantsByIdBuyStorageData, type PostAdminTenantsByIdBuyStorageError, type PostAdminTenantsByIdBuyStorageErrors, type PostAdminTenantsByIdBuyStorageResponse, type PostAdminTenantsByIdBuyStorageResponses, type PostAdminTenantsByIdRemoveStorageData, type PostAdminTenantsByIdRemoveStorageError, type PostAdminTenantsByIdRemoveStorageErrors, type PostAdminTenantsByIdRemoveStorageResponse, type PostAdminTenantsByIdRemoveStorageResponses, type PostAdminTenantsData, type PostAdminTenantsError, type PostAdminTenantsErrors, type PostAdminTenantsResponse, type PostAdminTenantsResponses, type PostAdminThreadsActiveData, type PostAdminThreadsActiveError, type PostAdminThreadsActiveErrors, type PostAdminThreadsActiveResponse, type PostAdminThreadsActiveResponses, 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 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 PostAdminUsersRegisterIsvData, type PostAdminUsersRegisterIsvError, type PostAdminUsersRegisterIsvErrors, type PostAdminUsersRegisterIsvResponse, type PostAdminUsersRegisterIsvResponses, type PostAdminWebhookConfigsByIdTestData, type PostAdminWebhookConfigsByIdTestError, type PostAdminWebhookConfigsByIdTestErrors, type PostAdminWebhookConfigsByIdTestResponse, type PostAdminWebhookConfigsByIdTestResponses, type PostAdminWebhookConfigsData, type PostAdminWebhookConfigsError, type PostAdminWebhookConfigsErrors, type PostAdminWebhookConfigsResponse, type PostAdminWebhookConfigsResponses, type PostAdminWebhookDeliveriesByIdRetryData, type PostAdminWebhookDeliveriesByIdRetryError, type PostAdminWebhookDeliveriesByIdRetryErrors, type PostAdminWebhookDeliveriesByIdRetryResponse, type PostAdminWebhookDeliveriesByIdRetryResponses, type PostAdminWorkspaceMembershipsData, type PostAdminWorkspaceMembershipsError, type PostAdminWorkspaceMembershipsErrors, type PostAdminWorkspaceMembershipsResponse, type PostAdminWorkspaceMembershipsResponses, 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 PresignedUrlFilterHeaders, type PresignedUrlFilterId, type PresignedUrlFilterMethod, type PresignedUrlFilterUrl, type PricingRule, type PricingRuleFilter, type PricingRuleFilterId, type PricingStrategy, type PricingStrategyFilter, type PricingStrategyFilterId, RateLimitError, type SavedSearch, type SavedSearchFilter, type SavedSearchFilterFilters, type SavedSearchFilterId, type SavedSearchFilterIsShared, type SavedSearchFilterName, type SavedSearchFilterQuery, type SavedSearchFilterSearchType, type Search, type SearchFilter, type SearchFilterId, type SemanticCacheEntry, type SemanticCacheEntryFilter, type SemanticCacheEntryFilterId, ServerError, type StorageStats, type StorageStatsFilter, type StorageStatsFilterId, type StorageStatsFilterTotalBuckets, type StorageStatsFilterTotalObjects, type StorageStatsFilterTotalStorageBytes, type StorageStatsRequest, StorageStatsRequestSchema, type Subscription, type SubscriptionFilter, type SubscriptionFilterId, type Tenant, type TenantFilter, type TenantFilterBadgeUrl, type TenantFilterId, type TenantFilterKind, type TenantFilterLogoUrl, type TenantFilterName, type TenantFilterSlug, type TenantMembership, type TenantMembershipFilter, type TenantMembershipFilterRole, type TenantMembershipFilterTenantId, type TenantMembershipFilterUserId, type Thread, type ThreadFilter, type ThreadFilterContextSummary, type ThreadFilterId, type ThreadFilterTitle, TimeoutError, type Token, type TokenFilter, type TokenFilterBrand, type TokenFilterExpMonth, type TokenFilterExpYear, type TokenFilterId, type TokenFilterLast4, type TokenFilterToken, type TrainingExample, type TrainingExampleFilter, type TrainingExampleFilterEmbedding, type TrainingExampleFilterId, type TrainingExampleFilterInputText, type TrainingExampleFilterOutputJson, type TrainingExampleFilterSimilarity, type Transaction, type TransactionFilter, type TransactionFilterAmount, type TransactionFilterCreatedAt, type TransactionFilterCurrency, type TransactionFilterDescription, type TransactionFilterErrorMessage, type TransactionFilterId, type TransactionFilterProviderReference, type TransactionFilterServiceId, type TransactionFilterStatus, type TransactionFilterType, type TransactionFilterUpdatedAt, 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 UserProfileFilterId, type UserProfileFilterLastName, type UserProfileFilterPreferences, type UserProfileFilterSocialLinks, type UserProfileFilterUserId, ValidationError, type Wallet, type WalletFilter, type WalletFilterApplicationId, type WalletFilterCredits, type WalletFilterCreditsFree, type WalletFilterCreditsPaid, type WalletFilterCreditsSubscription, type WalletFilterId, type WalletFilterPlan, type WalletFilterStorageBlocksPurchased, type WalletFilterStorageQuotaBytes, type WalletFilterStorageUsedBytes, type WebhookBulkDisableRequest, WebhookBulkDisableSchema, type WebhookBulkEnableRequest, WebhookBulkEnableSchema, type WebhookConfig, type WebhookConfigCreateRequest, WebhookConfigCreateSchema, type WebhookConfigFilter, type WebhookConfigFilterEnabled, type WebhookConfigFilterId, type WebhookConfigFilterName, type WebhookConfigFilterSecret, type WebhookConfigFilterUrl, type WebhookDelivery, type WebhookDeliveryBulkRetryRequest, WebhookDeliveryBulkRetrySchema, type WebhookDeliveryFilter, type WebhookDeliveryFilterAttemptCount, type WebhookDeliveryFilterEventType, type WebhookDeliveryFilterId, type WebhookDeliveryFilterNextRetryAt, type WebhookDeliveryFilterPayload, type WebhookDeliveryFilterRequestHeaders, type WebhookDeliveryFilterResponseBody, type WebhookDeliveryFilterResponseStatus, type WebhookDeliveryFilterStatus, type WebhookDeliveryFilterUrl, type WebhookDeliveryFilterWebhookConfigId, type WebhookEvent, type WebhookEventFilter, type WebhookEventFilterCategory, type WebhookEventFilterDescription, type WebhookEventFilterEventType, type WebhookEventFilterId, type Workspace, type WorkspaceFilter, type WorkspaceFilterApplicationId, type WorkspaceFilterArchivedAt, type WorkspaceFilterCreatedAt, type WorkspaceFilterDescription, type WorkspaceFilterExpiresAt, type WorkspaceFilterId, type WorkspaceFilterIsDefault, type WorkspaceFilterLowBalanceThreshold, type WorkspaceFilterName, type WorkspaceFilterRenewalParams, type WorkspaceFilterSlug, type WorkspaceFilterSpecialtyAgentId, type WorkspaceFilterTenantId, type WorkspaceFilterUpdatedAt, type WorkspaceMembership, type WorkspaceMembershipFilter, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, handleApiError };
|
|
27094
|
+
export { type Account, type AccountCreditRequest, AccountCreditSchema, type AccountDebitRequest, AccountDebitSchema, type AccountFilter, type AccountFilterId, type Agent, type AgentAdminCreateRequest, AgentAdminCreateSchema, type AgentFilter, type AgentFilterCapabilities, type AgentFilterDescription, type AgentFilterId, type AgentFilterIsSystem, type AgentFilterName, type AgentFilterSlug, type AgentFilterVersion, type AiConfig, type AiConfigFilter, type ApiKey, type ApiKeyAllocateRequest, ApiKeyAllocateSchema, type ApiKeyFilter, type ApiKeyFilterApplicationId, type ApiKeyFilterExpiresAt, type ApiKeyFilterId, type ApiKeyFilterStatus, type ApiKeyFilterTenantId, type ApiKeyFilterUserId, type ApiKeyFilterWorkspaceId, type Application, type ApplicationFilter, type ApplicationFilterDefaultFreeCredits, type ApplicationFilterDescription, type ApplicationFilterId, type ApplicationFilterName, type ApplicationFilterSlug, type AuditLog, type AuditLogFilter, type AuditLogFilterAction, type AuditLogFilterActorId, type AuditLogFilterChanges, type AuditLogFilterId, type AuditLogFilterResourceId, type AuditLogFilterResourceType, type AuditLogFilterTenantId, type AuditLogFilterWorkspaceId, AuthenticationError, AuthorizationError, type Bucket, type BucketFilter, type BucketFilterId, type BucketFilterName, type BucketFilterRegion, type BucketFilterStorageUsed, type BucketFilterType, 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 CreditPackageFilterCreatedAt, type CreditPackageFilterCredits, type CreditPackageFilterId, type CreditPackageFilterName, type CreditPackageFilterPrice, type CreditPackageFilterSlug, type CreditPackageFilterUpdatedAt, type Customer, type CustomerFilter, type CustomerFilterId, 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 DeleteAdminApiKeysByIdData, type DeleteAdminApiKeysByIdError, type DeleteAdminApiKeysByIdErrors, type DeleteAdminApiKeysByIdResponses, type DeleteAdminApplicationsByIdData, type DeleteAdminApplicationsByIdError, type DeleteAdminApplicationsByIdErrors, type DeleteAdminApplicationsByIdResponses, type DeleteAdminBucketsByIdData, type DeleteAdminBucketsByIdError, type DeleteAdminBucketsByIdErrors, type DeleteAdminBucketsByIdResponses, type DeleteAdminCustomersByIdData, type DeleteAdminCustomersByIdError, type DeleteAdminCustomersByIdErrors, type DeleteAdminCustomersByIdResponses, type DeleteAdminExtractionDocumentsByIdData, type DeleteAdminExtractionDocumentsByIdError, type DeleteAdminExtractionDocumentsByIdErrors, type DeleteAdminExtractionDocumentsByIdResponses, type DeleteAdminExtractionSchemaFieldsByIdData, type DeleteAdminExtractionSchemaFieldsByIdError, type DeleteAdminExtractionSchemaFieldsByIdErrors, type DeleteAdminExtractionSchemaFieldsByIdResponses, type DeleteAdminMessagesByIdData, type DeleteAdminMessagesByIdError, type DeleteAdminMessagesByIdErrors, type DeleteAdminMessagesByIdResponses, 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 DeleteAdminTenantMembershipsByTenantIdByUserIdData, type DeleteAdminTenantMembershipsByTenantIdByUserIdError, type DeleteAdminTenantMembershipsByTenantIdByUserIdErrors, type DeleteAdminTenantMembershipsByTenantIdByUserIdResponses, 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 DeleteAdminUserProfilesByIdData, type DeleteAdminUserProfilesByIdError, type DeleteAdminUserProfilesByIdErrors, type DeleteAdminUserProfilesByIdResponses, 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 DocumentChunkFilterEmbedding, type DocumentChunkFilterId, type DocumentStats, type DocumentStatsFilter, type DocumentStatsFilterCompleted, type DocumentStatsFilterFailed, type DocumentStatsFilterId, type DocumentStatsFilterPending, type DocumentStatsFilterProcessing, type DocumentStatsFilterTotal, 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 ExtractionDocumentFilterClassification, type ExtractionDocumentFilterClassificationConfidence, type ExtractionDocumentFilterCompletedAt, type ExtractionDocumentFilterContent, type ExtractionDocumentFilterDeletedAt, type ExtractionDocumentFilterDocumentType, type ExtractionDocumentFilterDomain, type ExtractionDocumentFilterErrorMessage, type ExtractionDocumentFilterFileSizeBytes, type ExtractionDocumentFilterFileType, type ExtractionDocumentFilterFilename, type ExtractionDocumentFilterId, type ExtractionDocumentFilterMunicipality, type ExtractionDocumentFilterPages, type ExtractionDocumentFilterPresignedViewUrl, type ExtractionDocumentFilterProcessedAt, type ExtractionDocumentFilterProgress, type ExtractionDocumentFilterState, type ExtractionDocumentFilterStatus, type ExtractionDocumentFilterStoragePath, type ExtractionDocumentFilterUploadUrl, type ExtractionDocumentFilterUploadedAt, 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 ExtractionResultFilterCreditsUsed, type ExtractionResultFilterExtractedFields, type ExtractionResultFilterExtractionMode, type ExtractionResultFilterId, type ExtractionResultFilterProcessingTimeMs, type ExtractionResultFilterStatus, type ExtractionResultFilterSummary, type ExtractionSchema, type ExtractionSchemaField, type ExtractionSchemaFieldFilter, type ExtractionSchemaFieldFilterExtractionHint, type ExtractionSchemaFieldFilterGroup, type ExtractionSchemaFieldFilterId, type ExtractionSchemaFieldFilterLabel, type ExtractionSchemaFieldFilterName, type ExtractionSchemaFieldFilterOrder, type ExtractionSchemaFieldFilterRequired, type ExtractionSchemaFieldFilterType, type ExtractionSchemaFilter, type ExtractionSchemaFilterId, type ExtractionSchemaFilterIsActive, type ExtractionSchemaFilterVersion, type GetAdminAccountsByIdData, type GetAdminAccountsByIdError, type GetAdminAccountsByIdErrors, type GetAdminAccountsByIdResponse, type GetAdminAccountsByIdResponses, type GetAdminAccountsData, type GetAdminAccountsError, type GetAdminAccountsErrors, type GetAdminAccountsResponse, type GetAdminAccountsResponses, type GetAdminAgentsByIdData, type GetAdminAgentsByIdError, type GetAdminAgentsByIdErrors, type GetAdminAgentsByIdResponse, type GetAdminAgentsByIdResponses, type GetAdminAgentsData, type GetAdminAgentsError, type GetAdminAgentsErrors, type GetAdminAgentsResponse, type GetAdminAgentsResponses, 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 GetAdminAiGraphNodesData, type GetAdminAiGraphNodesError, type GetAdminAiGraphNodesErrors, type GetAdminAiGraphNodesResponse, type GetAdminAiGraphNodesResponses, type GetAdminAiMessagesData, type GetAdminAiMessagesError, type GetAdminAiMessagesErrors, type GetAdminAiMessagesResponse, type GetAdminAiMessagesResponses, type GetAdminApiKeysByIdData, type GetAdminApiKeysByIdError, type GetAdminApiKeysByIdErrors, type GetAdminApiKeysByIdResponse, type GetAdminApiKeysByIdResponses, type GetAdminApiKeysData, type GetAdminApiKeysError, type GetAdminApiKeysErrors, type GetAdminApiKeysResponse, type GetAdminApiKeysResponses, type GetAdminApplicationsByIdData, type GetAdminApplicationsByIdError, type GetAdminApplicationsByIdErrors, type GetAdminApplicationsByIdResponse, type GetAdminApplicationsByIdResponses, type GetAdminApplicationsBySlugBySlugData, type GetAdminApplicationsBySlugBySlugError, type GetAdminApplicationsBySlugBySlugErrors, type GetAdminApplicationsBySlugBySlugResponse, type GetAdminApplicationsBySlugBySlugResponses, type GetAdminApplicationsData, type GetAdminApplicationsError, type GetAdminApplicationsErrors, type GetAdminApplicationsResponse, type GetAdminApplicationsResponses, type GetAdminAuditLogsData, type GetAdminAuditLogsError, type GetAdminAuditLogsErrors, type GetAdminAuditLogsResponse, type GetAdminAuditLogsResponses, 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 GetAdminExtractionDocumentsData, type GetAdminExtractionDocumentsError, type GetAdminExtractionDocumentsErrors, type GetAdminExtractionDocumentsResponse, type GetAdminExtractionDocumentsResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdResponses, type GetAdminExtractionResultsByIdData, type GetAdminExtractionResultsByIdError, type GetAdminExtractionResultsByIdErrors, type GetAdminExtractionResultsByIdResponse, type GetAdminExtractionResultsByIdResponses, type GetAdminExtractionResultsDocumentByDocumentIdData, type GetAdminExtractionResultsDocumentByDocumentIdError, type GetAdminExtractionResultsDocumentByDocumentIdErrors, type GetAdminExtractionResultsDocumentByDocumentIdResponse, type GetAdminExtractionResultsDocumentByDocumentIdResponses, type GetAdminExtractionSchemaFieldsByIdData, type GetAdminExtractionSchemaFieldsByIdError, type GetAdminExtractionSchemaFieldsByIdErrors, type GetAdminExtractionSchemaFieldsByIdResponse, type GetAdminExtractionSchemaFieldsByIdResponses, type GetAdminExtractionSchemaFieldsData, type GetAdminExtractionSchemaFieldsError, type GetAdminExtractionSchemaFieldsErrors, type GetAdminExtractionSchemaFieldsResponse, type GetAdminExtractionSchemaFieldsResponses, type GetAdminExtractionSchemasByIdData, type GetAdminExtractionSchemasByIdError, type GetAdminExtractionSchemasByIdErrors, type GetAdminExtractionSchemasByIdResponse, type GetAdminExtractionSchemasByIdResponses, type GetAdminExtractionSchemasWorkspaceByWorkspaceIdData, type GetAdminExtractionSchemasWorkspaceByWorkspaceIdError, type GetAdminExtractionSchemasWorkspaceByWorkspaceIdErrors, type GetAdminExtractionSchemasWorkspaceByWorkspaceIdResponse, type GetAdminExtractionSchemasWorkspaceByWorkspaceIdResponses, type GetAdminInvitationsConsumeByTokenData, type GetAdminInvitationsConsumeByTokenError, type GetAdminInvitationsConsumeByTokenErrors, type GetAdminInvitationsConsumeByTokenResponse, type GetAdminInvitationsConsumeByTokenResponses, type GetAdminInvitationsData, type GetAdminInvitationsError, type GetAdminInvitationsErrors, 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 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 GetAdminNotificationLogsByIdData, type GetAdminNotificationLogsByIdError, type GetAdminNotificationLogsByIdErrors, type GetAdminNotificationLogsByIdResponse, type GetAdminNotificationLogsByIdResponses, type GetAdminNotificationLogsData, type GetAdminNotificationLogsError, type GetAdminNotificationLogsErrors, type GetAdminNotificationLogsResponse, type GetAdminNotificationLogsResponses, 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 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 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 GetAdminStorageStatsData, type GetAdminStorageStatsError, type GetAdminStorageStatsErrors, type GetAdminStorageStatsResponse, type GetAdminStorageStatsResponses, type GetAdminSubscriptionsByIdData, type GetAdminSubscriptionsByIdError, type GetAdminSubscriptionsByIdErrors, type GetAdminSubscriptionsByIdResponse, type GetAdminSubscriptionsByIdResponses, 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 GetAdminTenantMembershipsData, type GetAdminTenantMembershipsError, type GetAdminTenantMembershipsErrors, type GetAdminTenantMembershipsResponse, type GetAdminTenantMembershipsResponses, type GetAdminTenantsByIdData, type GetAdminTenantsByIdError, type GetAdminTenantsByIdErrors, type GetAdminTenantsByIdResponse, type GetAdminTenantsByIdResponses, type GetAdminTenantsData, type GetAdminTenantsError, type GetAdminTenantsErrors, type GetAdminTenantsResponse, type GetAdminTenantsResponses, type GetAdminThreadsByIdData, type GetAdminThreadsByIdError, type GetAdminThreadsByIdErrors, 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 GetAdminTrainingExamplesByIdData, type GetAdminTrainingExamplesByIdError, type GetAdminTrainingExamplesByIdErrors, type GetAdminTrainingExamplesByIdResponse, type GetAdminTrainingExamplesByIdResponses, type GetAdminTrainingExamplesData, type GetAdminTrainingExamplesError, type GetAdminTrainingExamplesErrors, type GetAdminTrainingExamplesResponse, type GetAdminTrainingExamplesResponses, type GetAdminTransactionsByIdData, type GetAdminTransactionsByIdError, type GetAdminTransactionsByIdErrors, type GetAdminTransactionsByIdResponse, type GetAdminTransactionsByIdResponses, type GetAdminTransactionsData, type GetAdminTransactionsError, type GetAdminTransactionsErrors, type GetAdminTransactionsResponse, type GetAdminTransactionsResponses, 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 GetAdminUsersByIdData, type GetAdminUsersByIdError, type GetAdminUsersByIdErrors, type GetAdminUsersByIdResponse, type GetAdminUsersByIdResponses, type GetAdminUsersData, type GetAdminUsersError, type GetAdminUsersErrors, type GetAdminUsersMeData, type GetAdminUsersMeError, type GetAdminUsersMeErrors, type GetAdminUsersMeResponse, type GetAdminUsersMeResponses, type GetAdminUsersResponse, type GetAdminUsersResponses, type GetAdminWalletData, type GetAdminWalletError, type GetAdminWalletErrors, type GetAdminWalletResponse, type GetAdminWalletResponses, type GetAdminWebhookConfigsByIdData, type GetAdminWebhookConfigsByIdError, type GetAdminWebhookConfigsByIdErrors, type GetAdminWebhookConfigsByIdResponse, type GetAdminWebhookConfigsByIdResponses, type GetAdminWebhookConfigsData, type GetAdminWebhookConfigsError, type GetAdminWebhookConfigsErrors, type GetAdminWebhookConfigsResponse, type GetAdminWebhookConfigsResponses, type GetAdminWebhookDeliveriesByIdData, type GetAdminWebhookDeliveriesByIdError, type GetAdminWebhookDeliveriesByIdErrors, type GetAdminWebhookDeliveriesByIdResponse, type GetAdminWebhookDeliveriesByIdResponses, type GetAdminWebhookDeliveriesData, type GetAdminWebhookDeliveriesError, type GetAdminWebhookDeliveriesErrors, type GetAdminWebhookDeliveriesResponse, type GetAdminWebhookDeliveriesResponses, type GetAdminWorkspaceMembershipsData, type GetAdminWorkspaceMembershipsError, type GetAdminWorkspaceMembershipsErrors, type GetAdminWorkspaceMembershipsResponse, type GetAdminWorkspaceMembershipsResponses, type GetAdminWorkspacesByIdData, type GetAdminWorkspacesByIdError, type GetAdminWorkspacesByIdErrors, type GetAdminWorkspacesByIdResponse, type GetAdminWorkspacesByIdResponses, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdData, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdError, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdErrors, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdResponse, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdResponses, type GetAdminWorkspacesByWorkspaceIdExtractionExportsData, type GetAdminWorkspacesByWorkspaceIdExtractionExportsError, type GetAdminWorkspacesByWorkspaceIdExtractionExportsErrors, type GetAdminWorkspacesByWorkspaceIdExtractionExportsResponse, type GetAdminWorkspacesByWorkspaceIdExtractionExportsResponses, type GetAdminWorkspacesData, type GetAdminWorkspacesError, type GetAdminWorkspacesErrors, type GetAdminWorkspacesMineData, type GetAdminWorkspacesMineError, type GetAdminWorkspacesMineErrors, type GetAdminWorkspacesMineResponse, type GetAdminWorkspacesMineResponses, type GetAdminWorkspacesResponse, type GetAdminWorkspacesResponses, GptAdmin, GptCoreError, type GraphEdge, type GraphEdgeFilter, type GraphEdgeFilterId, type GraphEdgeFilterProperties, type GraphEdgeFilterRelationship, type GraphEdgeFilterSourceId, type GraphEdgeFilterTargetId, type GraphNode, type GraphNodeFilter, type GraphNodeFilterId, type GraphNodeFilterLabel, type GraphNodeFilterProperties, type GraphNodeFilterTenantId, type Invitation, type InvitationFilter, type InvitationFilterId, type IsvRevenue, type IsvRevenueFilter, type IsvRevenueFilterId, type IsvSettlement, type IsvSettlementFilter, type IsvSettlementFilterId, type Ledger, type LedgerFilter, type LedgerFilterId, 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 NotificationPreference, type NotificationPreferenceFilter, type NotificationPreferenceFilterId, type ObjectFilter, type ObjectFilterContentType, type ObjectFilterId, type ObjectFilterKey, type ObjectFilterSizeBytes, 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 PatchAdminApiKeysByIdAllocateData, type PatchAdminApiKeysByIdAllocateError, type PatchAdminApiKeysByIdAllocateErrors, type PatchAdminApiKeysByIdAllocateResponse, type PatchAdminApiKeysByIdAllocateResponses, type PatchAdminApiKeysByIdData, type PatchAdminApiKeysByIdError, type PatchAdminApiKeysByIdErrors, 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 PatchAdminApplicationsByIdData, type PatchAdminApplicationsByIdError, type PatchAdminApplicationsByIdErrors, 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 PatchAdminCustomersByIdData, type PatchAdminCustomersByIdError, type PatchAdminCustomersByIdErrors, type PatchAdminCustomersByIdResponse, type PatchAdminCustomersByIdResponses, type PatchAdminExtractionDocumentsByIdFinishUploadData, type PatchAdminExtractionDocumentsByIdFinishUploadError, type PatchAdminExtractionDocumentsByIdFinishUploadErrors, type PatchAdminExtractionDocumentsByIdFinishUploadResponse, type PatchAdminExtractionDocumentsByIdFinishUploadResponses, type PatchAdminExtractionDocumentsByIdStatusData, type PatchAdminExtractionDocumentsByIdStatusError, type PatchAdminExtractionDocumentsByIdStatusErrors, type PatchAdminExtractionDocumentsByIdStatusResponse, type PatchAdminExtractionDocumentsByIdStatusResponses, type PatchAdminExtractionResultsByIdCorrectionsData, type PatchAdminExtractionResultsByIdCorrectionsError, type PatchAdminExtractionResultsByIdCorrectionsErrors, type PatchAdminExtractionResultsByIdCorrectionsResponse, type PatchAdminExtractionResultsByIdCorrectionsResponses, type PatchAdminExtractionResultsByIdRegenerateData, type PatchAdminExtractionResultsByIdRegenerateError, type PatchAdminExtractionResultsByIdRegenerateErrors, type PatchAdminExtractionResultsByIdRegenerateResponse, type PatchAdminExtractionResultsByIdRegenerateResponses, type PatchAdminExtractionSchemaFieldsByIdData, type PatchAdminExtractionSchemaFieldsByIdError, type PatchAdminExtractionSchemaFieldsByIdErrors, type PatchAdminExtractionSchemaFieldsByIdResponse, type PatchAdminExtractionSchemaFieldsByIdResponses, type PatchAdminExtractionSchemasByIdData, type PatchAdminExtractionSchemasByIdError, type PatchAdminExtractionSchemasByIdErrors, type PatchAdminExtractionSchemasByIdResponse, type PatchAdminExtractionSchemasByIdResponses, type PatchAdminInvitationsByIdAcceptData, type PatchAdminInvitationsByIdAcceptError, type PatchAdminInvitationsByIdAcceptErrors, type PatchAdminInvitationsByIdAcceptResponse, type PatchAdminInvitationsByIdAcceptResponses, 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 PatchAdminNotificationPreferencesByIdData, type PatchAdminNotificationPreferencesByIdError, type PatchAdminNotificationPreferencesByIdErrors, type PatchAdminNotificationPreferencesByIdResponse, type PatchAdminNotificationPreferencesByIdResponses, 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 PatchAdminSubscriptionsByIdData, type PatchAdminSubscriptionsByIdError, type PatchAdminSubscriptionsByIdErrors, type PatchAdminSubscriptionsByIdResponse, type PatchAdminSubscriptionsByIdResponses, type PatchAdminSysAiConfigByIdData, type PatchAdminSysAiConfigByIdError, type PatchAdminSysAiConfigByIdErrors, type PatchAdminSysAiConfigByIdResponse, type PatchAdminSysAiConfigByIdResponses, type PatchAdminTenantMembershipsByTenantIdByUserIdData, type PatchAdminTenantMembershipsByTenantIdByUserIdError, type PatchAdminTenantMembershipsByTenantIdByUserIdErrors, type PatchAdminTenantMembershipsByTenantIdByUserIdResponse, type PatchAdminTenantMembershipsByTenantIdByUserIdResponses, type PatchAdminTenantsByIdData, type PatchAdminTenantsByIdError, type PatchAdminTenantsByIdErrors, type PatchAdminTenantsByIdResponse, type PatchAdminTenantsByIdResponses, type PatchAdminThreadsByIdData, type PatchAdminThreadsByIdError, type PatchAdminThreadsByIdErrors, type PatchAdminThreadsByIdResponse, type PatchAdminThreadsByIdResponses, type PatchAdminTrainingExamplesByIdData, type PatchAdminTrainingExamplesByIdError, type PatchAdminTrainingExamplesByIdErrors, type PatchAdminTrainingExamplesByIdResponse, type PatchAdminTrainingExamplesByIdResponses, type PatchAdminUserProfilesByIdData, type PatchAdminUserProfilesByIdError, type PatchAdminUserProfilesByIdErrors, type PatchAdminUserProfilesByIdResponse, type PatchAdminUserProfilesByIdResponses, type PatchAdminUsersAuthResetPasswordData, type PatchAdminUsersAuthResetPasswordError, type PatchAdminUsersAuthResetPasswordErrors, type PatchAdminUsersAuthResetPasswordResponse, type PatchAdminUsersAuthResetPasswordResponses, type PatchAdminUsersByIdConfirmEmailData, type PatchAdminUsersByIdConfirmEmailError, type PatchAdminUsersByIdConfirmEmailErrors, type PatchAdminUsersByIdConfirmEmailResponse, type PatchAdminUsersByIdConfirmEmailResponses, type PatchAdminUsersByIdData, type PatchAdminUsersByIdError, type PatchAdminUsersByIdErrors, type PatchAdminUsersByIdResetPasswordData, type PatchAdminUsersByIdResetPasswordError, type PatchAdminUsersByIdResetPasswordErrors, type PatchAdminUsersByIdResetPasswordResponse, type PatchAdminUsersByIdResetPasswordResponses, type PatchAdminUsersByIdResponse, type PatchAdminUsersByIdResponses, type PatchAdminWalletAddonsByAddonSlugCancelData, type PatchAdminWalletAddonsByAddonSlugCancelError, type PatchAdminWalletAddonsByAddonSlugCancelErrors, type PatchAdminWalletAddonsByAddonSlugCancelResponse, type PatchAdminWalletAddonsByAddonSlugCancelResponses, type PatchAdminWalletAddonsData, type PatchAdminWalletAddonsError, type PatchAdminWalletAddonsErrors, type PatchAdminWalletAddonsResponse, type PatchAdminWalletAddonsResponses, type PatchAdminWalletPlanData, type PatchAdminWalletPlanError, type PatchAdminWalletPlanErrors, type PatchAdminWalletPlanResponse, type PatchAdminWalletPlanResponses, 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 Payment, type PaymentFilter, type PaymentFilterAmount, type PaymentFilterCreatedAt, type PaymentFilterCurrency, type PaymentFilterErrorMessage, type PaymentFilterId, type PaymentFilterProviderReference, type PaymentFilterStatus, type PaymentMethod, type PaymentMethodFilter, type PaymentMethodFilterId, type Plan, type PlanFilter, type PlanFilterCreatedAt, type PlanFilterId, type PlanFilterMonthlyCredits, type PlanFilterMonthlyPrice, type PlanFilterName, type PlanFilterSlug, type PlanFilterStorageDays, type PlanFilterType, type PlanFilterUpdatedAt, type PostAdminAgentsByIdCloneData, type PostAdminAgentsByIdCloneError, type PostAdminAgentsByIdCloneErrors, type PostAdminAgentsByIdCloneResponse, type PostAdminAgentsByIdCloneResponses, 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 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 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 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 PostAdminExtractionDocumentsByIdViewData, type PostAdminExtractionDocumentsByIdViewError, type PostAdminExtractionDocumentsByIdViewErrors, type PostAdminExtractionDocumentsByIdViewResponse, type PostAdminExtractionDocumentsByIdViewResponses, type PostAdminExtractionDocumentsUploadData, type PostAdminExtractionDocumentsUploadError, type PostAdminExtractionDocumentsUploadErrors, type PostAdminExtractionDocumentsUploadResponse, type PostAdminExtractionDocumentsUploadResponses, type PostAdminExtractionResultsData, type PostAdminExtractionResultsError, type PostAdminExtractionResultsErrors, type PostAdminExtractionResultsResponse, type PostAdminExtractionResultsResponses, type PostAdminExtractionSchemaFieldsData, type PostAdminExtractionSchemaFieldsError, type PostAdminExtractionSchemaFieldsErrors, type PostAdminExtractionSchemaFieldsResponse, type PostAdminExtractionSchemaFieldsResponses, type PostAdminExtractionSchemasData, type PostAdminExtractionSchemasError, type PostAdminExtractionSchemasErrors, type PostAdminExtractionSchemasResponse, type PostAdminExtractionSchemasResponses, type PostAdminInvitationsAcceptByTokenData, type PostAdminInvitationsAcceptByTokenError, type PostAdminInvitationsAcceptByTokenErrors, type PostAdminInvitationsAcceptByTokenResponse, type PostAdminInvitationsAcceptByTokenResponses, type PostAdminInvitationsInviteData, type PostAdminInvitationsInviteError, type PostAdminInvitationsInviteErrors, type PostAdminInvitationsInviteResponse, type PostAdminInvitationsInviteResponses, 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 PostAdminNotificationPreferencesData, type PostAdminNotificationPreferencesError, type PostAdminNotificationPreferencesErrors, type PostAdminNotificationPreferencesResponse, type PostAdminNotificationPreferencesResponses, type PostAdminObjectsBulkDestroyData, type PostAdminObjectsBulkDestroyError, type PostAdminObjectsBulkDestroyErrors, type PostAdminObjectsBulkDestroyResponse, type PostAdminObjectsBulkDestroyResponses, type PostAdminObjectsRegisterData, type PostAdminObjectsRegisterError, type PostAdminObjectsRegisterErrors, type PostAdminObjectsRegisterResponse, type PostAdminObjectsRegisterResponses, type PostAdminPaymentMethodsData, type PostAdminPaymentMethodsError, type PostAdminPaymentMethodsErrors, type PostAdminPaymentMethodsResponse, type PostAdminPaymentMethodsResponses, 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 PostAdminSearchReindexData, type PostAdminSearchReindexError, type PostAdminSearchReindexErrors, type PostAdminSearchReindexResponse, type PostAdminSearchReindexResponses, 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 PostAdminTenantMembershipsData, type PostAdminTenantMembershipsError, type PostAdminTenantMembershipsErrors, type PostAdminTenantMembershipsResponse, type PostAdminTenantMembershipsResponses, type PostAdminTenantsByIdBuyStorageData, type PostAdminTenantsByIdBuyStorageError, type PostAdminTenantsByIdBuyStorageErrors, type PostAdminTenantsByIdBuyStorageResponse, type PostAdminTenantsByIdBuyStorageResponses, type PostAdminTenantsByIdRemoveStorageData, type PostAdminTenantsByIdRemoveStorageError, type PostAdminTenantsByIdRemoveStorageErrors, type PostAdminTenantsByIdRemoveStorageResponse, type PostAdminTenantsByIdRemoveStorageResponses, type PostAdminTenantsData, type PostAdminTenantsError, type PostAdminTenantsErrors, type PostAdminTenantsResponse, type PostAdminTenantsResponses, type PostAdminThreadsActiveData, type PostAdminThreadsActiveError, type PostAdminThreadsActiveErrors, type PostAdminThreadsActiveResponse, type PostAdminThreadsActiveResponses, 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 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 PostAdminUsersRegisterIsvData, type PostAdminUsersRegisterIsvError, type PostAdminUsersRegisterIsvErrors, type PostAdminUsersRegisterIsvResponse, type PostAdminUsersRegisterIsvResponses, type PostAdminWebhookConfigsByIdTestData, type PostAdminWebhookConfigsByIdTestError, type PostAdminWebhookConfigsByIdTestErrors, type PostAdminWebhookConfigsByIdTestResponse, type PostAdminWebhookConfigsByIdTestResponses, type PostAdminWebhookConfigsData, type PostAdminWebhookConfigsError, type PostAdminWebhookConfigsErrors, type PostAdminWebhookConfigsResponse, type PostAdminWebhookConfigsResponses, type PostAdminWebhookDeliveriesByIdRetryData, type PostAdminWebhookDeliveriesByIdRetryError, type PostAdminWebhookDeliveriesByIdRetryErrors, type PostAdminWebhookDeliveriesByIdRetryResponse, type PostAdminWebhookDeliveriesByIdRetryResponses, type PostAdminWorkspaceMembershipsData, type PostAdminWorkspaceMembershipsError, type PostAdminWorkspaceMembershipsErrors, type PostAdminWorkspaceMembershipsResponse, type PostAdminWorkspaceMembershipsResponses, 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 SavedSearchFilterFilters, type SavedSearchFilterId, type SavedSearchFilterIsShared, type SavedSearchFilterName, type SavedSearchFilterQuery, type SavedSearchFilterSearchType, type Search, type SearchFilter, type SearchFilterId, type SemanticCacheEntry, type SemanticCacheEntryFilter, type SemanticCacheEntryFilterId, ServerError, type StorageStats, type StorageStatsFilter, type StorageStatsFilterId, type StorageStatsFilterTotalBuckets, type StorageStatsFilterTotalObjects, type StorageStatsFilterTotalStorageBytes, type StorageStatsRequest, StorageStatsRequestSchema, type Subscription, type SubscriptionFilter, type SubscriptionFilterId, type Tenant, type TenantFilter, type TenantFilterBadgeUrl, type TenantFilterId, type TenantFilterKind, type TenantFilterLogoUrl, type TenantFilterName, type TenantFilterSlug, type TenantMembership, type TenantMembershipFilter, type TenantMembershipFilterRole, type TenantMembershipFilterTenantId, type TenantMembershipFilterUserId, type Thread, type ThreadFilter, type ThreadFilterContextSummary, type ThreadFilterId, type ThreadFilterTitle, TimeoutError, type Token, type TokenFilter, type TokenFilterBrand, type TokenFilterExpMonth, type TokenFilterExpYear, type TokenFilterId, type TokenFilterLast4, type TokenFilterToken, type TrainingExample, type TrainingExampleFilter, type TrainingExampleFilterEmbedding, type TrainingExampleFilterId, type TrainingExampleFilterInputText, type TrainingExampleFilterOutputJson, type TrainingExampleFilterSimilarity, type Transaction, type TransactionFilter, type TransactionFilterAmount, type TransactionFilterCreatedAt, type TransactionFilterCurrency, type TransactionFilterDescription, type TransactionFilterErrorMessage, type TransactionFilterId, type TransactionFilterProviderReference, type TransactionFilterServiceId, type TransactionFilterStatus, type TransactionFilterType, type TransactionFilterUpdatedAt, 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 UserProfileFilterId, type UserProfileFilterLastName, type UserProfileFilterPreferences, type UserProfileFilterSocialLinks, type UserProfileFilterUserId, ValidationError, type Wallet, type WalletFilter, type WalletFilterApplicationId, type WalletFilterCredits, type WalletFilterCreditsFree, type WalletFilterCreditsPaid, type WalletFilterCreditsSubscription, type WalletFilterId, type WalletFilterPlan, type WalletFilterStorageBlocksPurchased, type WalletFilterStorageQuotaBytes, type WalletFilterStorageUsedBytes, type WebhookBulkDisableRequest, WebhookBulkDisableSchema, type WebhookBulkEnableRequest, WebhookBulkEnableSchema, type WebhookConfig, type WebhookConfigCreateRequest, WebhookConfigCreateSchema, type WebhookConfigFilter, type WebhookConfigFilterId, type WebhookDelivery, type WebhookDeliveryBulkRetryRequest, WebhookDeliveryBulkRetrySchema, type WebhookDeliveryFilter, type WebhookDeliveryFilterId, type Workspace, type WorkspaceFilter, type WorkspaceFilterApplicationId, type WorkspaceFilterArchivedAt, type WorkspaceFilterCreatedAt, type WorkspaceFilterDescription, type WorkspaceFilterExpiresAt, type WorkspaceFilterId, type WorkspaceFilterIsDefault, type WorkspaceFilterLowBalanceThreshold, type WorkspaceFilterName, type WorkspaceFilterRenewalParams, type WorkspaceFilterSlug, type WorkspaceFilterSpecialtyAgentId, type WorkspaceFilterTenantId, type WorkspaceFilterUpdatedAt, type WorkspaceMembership, type WorkspaceMembershipFilter, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, handleApiError };
|