@gpt-core/admin 0.4.9 → 0.5.0
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 +306 -1385
- package/dist/index.d.ts +306 -1385
- 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;
|
|
@@ -1494,17 +1415,6 @@ type ExtractionExportFilterFileSizeBytes = {
|
|
|
1494
1415
|
less_than_or_equal?: number;
|
|
1495
1416
|
not_eq?: number;
|
|
1496
1417
|
};
|
|
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
1418
|
type UserFilterCurrentWorkspaceId = {
|
|
1509
1419
|
eq?: string;
|
|
1510
1420
|
greater_than?: string;
|
|
@@ -2111,6 +2021,16 @@ type PricingStrategyFilter = unknown;
|
|
|
2111
2021
|
* Filters the query to results matching the given filter object
|
|
2112
2022
|
*/
|
|
2113
2023
|
type UserProfileFilter = unknown;
|
|
2024
|
+
type PresignedUrlFilterExpiresIn = {
|
|
2025
|
+
eq?: number;
|
|
2026
|
+
greater_than?: number;
|
|
2027
|
+
greater_than_or_equal?: number;
|
|
2028
|
+
in?: Array<number>;
|
|
2029
|
+
is_nil?: boolean;
|
|
2030
|
+
less_than?: number;
|
|
2031
|
+
less_than_or_equal?: number;
|
|
2032
|
+
not_eq?: number;
|
|
2033
|
+
};
|
|
2114
2034
|
type CreditPackageFilterPrice = {
|
|
2115
2035
|
eq?: {
|
|
2116
2036
|
amount: string;
|
|
@@ -2265,31 +2185,32 @@ type WorkspaceSettingsInputUpdateType = {
|
|
|
2265
2185
|
overdraft_limit?: number | unknown;
|
|
2266
2186
|
overdraft_period?: "daily" | "weekly" | "monthly" | unknown;
|
|
2267
2187
|
} | 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
2188
|
scheduling?: {
|
|
2287
2189
|
enabled?: boolean | unknown;
|
|
2288
2190
|
interval_minutes?: number | unknown;
|
|
2289
2191
|
} | unknown;
|
|
2290
|
-
storage?: {
|
|
2291
|
-
|
|
2292
|
-
|
|
2192
|
+
storage?: unknown | {
|
|
2193
|
+
errors?: {
|
|
2194
|
+
bucket_id?: string | unknown;
|
|
2195
|
+
destination?: "local" | "storage" | unknown;
|
|
2196
|
+
local_path?: string | unknown;
|
|
2197
|
+
} | unknown;
|
|
2198
|
+
input?: {
|
|
2199
|
+
bucket_id?: string | unknown;
|
|
2200
|
+
local_path?: string | unknown;
|
|
2201
|
+
source?: "local" | "storage" | unknown;
|
|
2202
|
+
} | unknown;
|
|
2203
|
+
output?: {
|
|
2204
|
+
bucket_id?: string | unknown;
|
|
2205
|
+
destination?: "local" | "storage" | unknown;
|
|
2206
|
+
local_path?: string | unknown;
|
|
2207
|
+
retention_minutes?: number | unknown;
|
|
2208
|
+
} | unknown;
|
|
2209
|
+
} | {
|
|
2210
|
+
errors?: unknown;
|
|
2211
|
+
input?: unknown;
|
|
2212
|
+
output?: unknown;
|
|
2213
|
+
};
|
|
2293
2214
|
};
|
|
2294
2215
|
type TransactionFilterErrorMessage = {
|
|
2295
2216
|
contains?: string;
|
|
@@ -2348,15 +2269,16 @@ type PresignedUrlFilterId = {
|
|
|
2348
2269
|
less_than_or_equal?: string;
|
|
2349
2270
|
not_eq?: string;
|
|
2350
2271
|
};
|
|
2351
|
-
type
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
2272
|
+
type PresignedUrlFilterUploadUrl = {
|
|
2273
|
+
contains?: string;
|
|
2274
|
+
eq?: string;
|
|
2275
|
+
greater_than?: string;
|
|
2276
|
+
greater_than_or_equal?: string;
|
|
2277
|
+
in?: Array<string>;
|
|
2356
2278
|
is_nil?: boolean;
|
|
2357
|
-
less_than?:
|
|
2358
|
-
less_than_or_equal?:
|
|
2359
|
-
not_eq?:
|
|
2279
|
+
less_than?: string;
|
|
2280
|
+
less_than_or_equal?: string;
|
|
2281
|
+
not_eq?: string;
|
|
2360
2282
|
};
|
|
2361
2283
|
/**
|
|
2362
2284
|
* A link MUST be represented as either: a string containing the link's URL or a link object.
|
|
@@ -2580,17 +2502,6 @@ type WorkspaceFilterArchivedAt = {
|
|
|
2580
2502
|
less_than_or_equal?: unknown;
|
|
2581
2503
|
not_eq?: unknown;
|
|
2582
2504
|
};
|
|
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
2505
|
type ExtractionDocumentFilterStoragePath = {
|
|
2595
2506
|
contains?: string;
|
|
2596
2507
|
eq?: string;
|
|
@@ -2686,10 +2597,6 @@ type EmbeddingFilterId = {
|
|
|
2686
2597
|
less_than_or_equal?: string;
|
|
2687
2598
|
not_eq?: string;
|
|
2688
2599
|
};
|
|
2689
|
-
/**
|
|
2690
|
-
* Filters the query to results matching the given filter object
|
|
2691
|
-
*/
|
|
2692
|
-
type ExtractionFolderFilter = unknown;
|
|
2693
2600
|
type WalletFilterId = {
|
|
2694
2601
|
eq?: string;
|
|
2695
2602
|
greater_than?: string;
|
|
@@ -2784,16 +2691,6 @@ type PlanFilterId = {
|
|
|
2784
2691
|
less_than_or_equal?: string;
|
|
2785
2692
|
not_eq?: string;
|
|
2786
2693
|
};
|
|
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
2694
|
/**
|
|
2798
2695
|
* Filters the query to results matching the given filter object
|
|
2799
2696
|
*/
|
|
@@ -2884,28 +2781,6 @@ type TransactionFilterAmount = {
|
|
|
2884
2781
|
less_than_or_equal?: number;
|
|
2885
2782
|
not_eq?: number;
|
|
2886
2783
|
};
|
|
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
2784
|
type ApiKeyFilterTenantId = {
|
|
2910
2785
|
eq?: string;
|
|
2911
2786
|
greater_than?: string;
|
|
@@ -3145,50 +3020,7 @@ type WebhookDelivery = {
|
|
|
3145
3020
|
* An attributes object for a webhook_delivery
|
|
3146
3021
|
*/
|
|
3147
3022
|
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;
|
|
3023
|
+
[key: string]: never;
|
|
3192
3024
|
};
|
|
3193
3025
|
id: string;
|
|
3194
3026
|
/**
|
|
@@ -3199,16 +3031,6 @@ type WebhookDelivery = {
|
|
|
3199
3031
|
};
|
|
3200
3032
|
type: string;
|
|
3201
3033
|
};
|
|
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
3034
|
/**
|
|
3213
3035
|
* A "Resource object" representing a embedding
|
|
3214
3036
|
*/
|
|
@@ -3428,10 +3250,6 @@ type PlanFilterCreatedAt = {
|
|
|
3428
3250
|
less_than_or_equal?: unknown;
|
|
3429
3251
|
not_eq?: unknown;
|
|
3430
3252
|
};
|
|
3431
|
-
/**
|
|
3432
|
-
* Filters the query to results matching the given filter object
|
|
3433
|
-
*/
|
|
3434
|
-
type WebhookEventFilter = unknown;
|
|
3435
3253
|
type WorkspaceFilterApplicationId = {
|
|
3436
3254
|
eq?: string;
|
|
3437
3255
|
greater_than?: string;
|
|
@@ -3442,17 +3260,6 @@ type WorkspaceFilterApplicationId = {
|
|
|
3442
3260
|
less_than_or_equal?: string;
|
|
3443
3261
|
not_eq?: string;
|
|
3444
3262
|
};
|
|
3445
|
-
type WebhookEventFilterId = {
|
|
3446
|
-
contains?: string;
|
|
3447
|
-
eq?: string;
|
|
3448
|
-
greater_than?: string;
|
|
3449
|
-
greater_than_or_equal?: string;
|
|
3450
|
-
in?: Array<string>;
|
|
3451
|
-
is_nil?: boolean;
|
|
3452
|
-
less_than?: string;
|
|
3453
|
-
less_than_or_equal?: string;
|
|
3454
|
-
not_eq?: string;
|
|
3455
|
-
};
|
|
3456
3263
|
/**
|
|
3457
3264
|
* Filters the query to results matching the given filter object
|
|
3458
3265
|
*/
|
|
@@ -3511,45 +3318,11 @@ type CreditPackageFilterUpdatedAt = {
|
|
|
3511
3318
|
less_than_or_equal?: unknown;
|
|
3512
3319
|
not_eq?: unknown;
|
|
3513
3320
|
};
|
|
3514
|
-
type
|
|
3515
|
-
eq?:
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
|
|
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
|
-
type TokenFilterId = {
|
|
3549
|
-
eq?: string;
|
|
3550
|
-
greater_than?: string;
|
|
3551
|
-
greater_than_or_equal?: string;
|
|
3552
|
-
in?: Array<string>;
|
|
3321
|
+
type TokenFilterId = {
|
|
3322
|
+
eq?: string;
|
|
3323
|
+
greater_than?: string;
|
|
3324
|
+
greater_than_or_equal?: string;
|
|
3325
|
+
in?: Array<string>;
|
|
3553
3326
|
is_nil?: boolean;
|
|
3554
3327
|
less_than?: string;
|
|
3555
3328
|
less_than_or_equal?: string;
|
|
@@ -3586,30 +3359,6 @@ type PresignedUrlFilterMethod = {
|
|
|
3586
3359
|
less_than_or_equal?: string;
|
|
3587
3360
|
not_eq?: string;
|
|
3588
3361
|
};
|
|
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
3362
|
/**
|
|
3614
3363
|
* A "Resource object" representing a pricing_rule
|
|
3615
3364
|
*/
|
|
@@ -3748,19 +3497,6 @@ type ExtractionDocumentFilterMunicipality = {
|
|
|
3748
3497
|
like?: string;
|
|
3749
3498
|
not_eq?: string;
|
|
3750
3499
|
};
|
|
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
3500
|
type ExtractionResultFilterExtractedFields = {
|
|
3765
3501
|
eq?: {
|
|
3766
3502
|
[key: string]: unknown;
|
|
@@ -3785,19 +3521,6 @@ type ExtractionResultFilterExtractedFields = {
|
|
|
3785
3521
|
[key: string]: unknown;
|
|
3786
3522
|
};
|
|
3787
3523
|
};
|
|
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
3524
|
type ConfigFilterDescription = {
|
|
3802
3525
|
contains?: string;
|
|
3803
3526
|
eq?: string;
|
|
@@ -4425,17 +4148,15 @@ type PresignedUrl = {
|
|
|
4425
4148
|
/**
|
|
4426
4149
|
* Field included by default.
|
|
4427
4150
|
*/
|
|
4428
|
-
|
|
4429
|
-
[key: string]: unknown;
|
|
4430
|
-
} | null | unknown;
|
|
4151
|
+
expires_in: number;
|
|
4431
4152
|
/**
|
|
4432
4153
|
* Field included by default.
|
|
4433
4154
|
*/
|
|
4434
|
-
|
|
4155
|
+
storage_path: string;
|
|
4435
4156
|
/**
|
|
4436
4157
|
* Field included by default.
|
|
4437
4158
|
*/
|
|
4438
|
-
|
|
4159
|
+
upload_url: string;
|
|
4439
4160
|
};
|
|
4440
4161
|
id: string;
|
|
4441
4162
|
/**
|
|
@@ -5200,36 +4921,6 @@ type TenantFilterKind = {
|
|
|
5200
4921
|
less_than_or_equal?: "platform" | "admin" | "tenant";
|
|
5201
4922
|
not_eq?: "platform" | "admin" | "tenant";
|
|
5202
4923
|
};
|
|
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
4924
|
/**
|
|
5234
4925
|
* A "Resource object" representing a agent
|
|
5235
4926
|
*/
|
|
@@ -5440,16 +5131,6 @@ type ExtractionDocumentFilterProcessedAt = {
|
|
|
5440
5131
|
less_than_or_equal?: unknown;
|
|
5441
5132
|
not_eq?: unknown;
|
|
5442
5133
|
};
|
|
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
5134
|
type ObjectFilterKey = {
|
|
5454
5135
|
contains?: string;
|
|
5455
5136
|
eq?: string;
|
|
@@ -5568,120 +5249,76 @@ type Workspace = {
|
|
|
5568
5249
|
/**
|
|
5569
5250
|
* Field included by default.
|
|
5570
5251
|
*/
|
|
5571
|
-
|
|
5252
|
+
scheduling: {
|
|
5572
5253
|
/**
|
|
5573
5254
|
* Field included by default.
|
|
5574
5255
|
*/
|
|
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;
|
|
5256
|
+
enabled: boolean;
|
|
5257
|
+
/**
|
|
5258
|
+
* Field included by default.
|
|
5259
|
+
*/
|
|
5260
|
+
interval_minutes: number;
|
|
5261
|
+
};
|
|
5262
|
+
/**
|
|
5263
|
+
* Field included by default.
|
|
5264
|
+
*/
|
|
5265
|
+
storage: {
|
|
5266
|
+
/**
|
|
5267
|
+
* Field included by default.
|
|
5268
|
+
*/
|
|
5269
|
+
errors: {
|
|
5604
5270
|
/**
|
|
5605
5271
|
* Field included by default.
|
|
5606
5272
|
*/
|
|
5607
|
-
|
|
5273
|
+
bucket_id?: string | null | unknown;
|
|
5608
5274
|
/**
|
|
5609
5275
|
* Field included by default.
|
|
5610
5276
|
*/
|
|
5611
|
-
|
|
5277
|
+
destination: "local" | "storage";
|
|
5612
5278
|
/**
|
|
5613
5279
|
* Field included by default.
|
|
5614
5280
|
*/
|
|
5615
|
-
|
|
5281
|
+
local_path?: string | null | unknown;
|
|
5616
5282
|
};
|
|
5617
5283
|
/**
|
|
5618
5284
|
* Field included by default.
|
|
5619
5285
|
*/
|
|
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;
|
|
5286
|
+
input: {
|
|
5633
5287
|
/**
|
|
5634
5288
|
* Field included by default.
|
|
5635
5289
|
*/
|
|
5636
|
-
|
|
5290
|
+
bucket_id?: string | null | unknown;
|
|
5637
5291
|
/**
|
|
5638
5292
|
* Field included by default.
|
|
5639
5293
|
*/
|
|
5640
|
-
|
|
5294
|
+
local_path?: string | null | unknown;
|
|
5641
5295
|
/**
|
|
5642
5296
|
* Field included by default.
|
|
5643
5297
|
*/
|
|
5644
|
-
|
|
5298
|
+
source: "local" | "storage";
|
|
5299
|
+
};
|
|
5300
|
+
/**
|
|
5301
|
+
* Field included by default.
|
|
5302
|
+
*/
|
|
5303
|
+
output: {
|
|
5645
5304
|
/**
|
|
5646
5305
|
* Field included by default.
|
|
5647
5306
|
*/
|
|
5648
|
-
|
|
5307
|
+
bucket_id?: string | null | unknown;
|
|
5649
5308
|
/**
|
|
5650
5309
|
* Field included by default.
|
|
5651
5310
|
*/
|
|
5652
|
-
|
|
5311
|
+
destination: "local" | "storage";
|
|
5653
5312
|
/**
|
|
5654
5313
|
* Field included by default.
|
|
5655
5314
|
*/
|
|
5656
|
-
|
|
5315
|
+
local_path?: string | null | unknown;
|
|
5657
5316
|
/**
|
|
5658
5317
|
* Field included by default.
|
|
5659
5318
|
*/
|
|
5660
|
-
|
|
5319
|
+
retention_minutes?: number | null | unknown;
|
|
5661
5320
|
};
|
|
5662
5321
|
};
|
|
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
5322
|
};
|
|
5686
5323
|
/**
|
|
5687
5324
|
* Field included by default.
|
|
@@ -5730,19 +5367,6 @@ type ExtractionSchemaFieldFilterType = {
|
|
|
5730
5367
|
less_than_or_equal?: "text" | "date" | "currency" | "number" | "boolean";
|
|
5731
5368
|
not_eq?: "text" | "date" | "currency" | "number" | "boolean";
|
|
5732
5369
|
};
|
|
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
5370
|
/**
|
|
5747
5371
|
* A "Resource object" representing a invitation
|
|
5748
5372
|
*/
|
|
@@ -5832,17 +5456,6 @@ type WalletFilterCreditsPaid = {
|
|
|
5832
5456
|
less_than_or_equal?: number;
|
|
5833
5457
|
not_eq?: number;
|
|
5834
5458
|
};
|
|
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
5459
|
/**
|
|
5847
5460
|
* Filters the query to results matching the given filter object
|
|
5848
5461
|
*/
|
|
@@ -5857,16 +5470,6 @@ type UserProfileFilterId = {
|
|
|
5857
5470
|
less_than_or_equal?: string;
|
|
5858
5471
|
not_eq?: string;
|
|
5859
5472
|
};
|
|
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
5473
|
type DocumentStatsFilterCompleted = {
|
|
5871
5474
|
eq?: number;
|
|
5872
5475
|
greater_than?: number;
|
|
@@ -5946,10 +5549,6 @@ type ExtractionDocument = {
|
|
|
5946
5549
|
* Field included by default.
|
|
5947
5550
|
*/
|
|
5948
5551
|
filename: string;
|
|
5949
|
-
/**
|
|
5950
|
-
* Field included by default.
|
|
5951
|
-
*/
|
|
5952
|
-
folder_id?: string | null | unknown;
|
|
5953
5552
|
/**
|
|
5954
5553
|
* Municipality/agency name extracted from document content. Field included by default.
|
|
5955
5554
|
*/
|
|
@@ -5999,18 +5598,6 @@ type ExtractionDocument = {
|
|
|
5999
5598
|
type: string;
|
|
6000
5599
|
} | null;
|
|
6001
5600
|
};
|
|
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
5601
|
};
|
|
6015
5602
|
type: string;
|
|
6016
5603
|
};
|
|
@@ -8765,16 +8352,6 @@ type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdData = {
|
|
|
8765
8352
|
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
8766
8353
|
*/
|
|
8767
8354
|
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
8355
|
/**
|
|
8779
8356
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
8780
8357
|
*/
|
|
@@ -9953,8 +9530,25 @@ type PatchAdminWalletAddonsByAddonSlugCancelResponses = {
|
|
|
9953
9530
|
};
|
|
9954
9531
|
};
|
|
9955
9532
|
type PatchAdminWalletAddonsByAddonSlugCancelResponse = PatchAdminWalletAddonsByAddonSlugCancelResponses[keyof PatchAdminWalletAddonsByAddonSlugCancelResponses];
|
|
9956
|
-
type
|
|
9957
|
-
|
|
9533
|
+
type PostAdminInvitationsInviteData = {
|
|
9534
|
+
/**
|
|
9535
|
+
* Request body for the /invitations/invite operation on invitation resource
|
|
9536
|
+
*/
|
|
9537
|
+
body: {
|
|
9538
|
+
data: {
|
|
9539
|
+
attributes?: {
|
|
9540
|
+
email: string;
|
|
9541
|
+
inviter_id: string;
|
|
9542
|
+
role: "admin" | "member" | "editor" | "viewer";
|
|
9543
|
+
scope_id: string;
|
|
9544
|
+
scope_type: "tenant" | "workspace";
|
|
9545
|
+
};
|
|
9546
|
+
relationships?: {
|
|
9547
|
+
[key: string]: never;
|
|
9548
|
+
};
|
|
9549
|
+
type?: "invitation";
|
|
9550
|
+
};
|
|
9551
|
+
};
|
|
9958
9552
|
headers: {
|
|
9959
9553
|
/**
|
|
9960
9554
|
* Application ID for authentication and routing
|
|
@@ -9963,14 +9557,6 @@ type GetAdminWebhookEventsData = {
|
|
|
9963
9557
|
};
|
|
9964
9558
|
path?: never;
|
|
9965
9559
|
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
9560
|
/**
|
|
9975
9561
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
9976
9562
|
*/
|
|
@@ -9980,15 +9566,15 @@ type GetAdminWebhookEventsData = {
|
|
|
9980
9566
|
*/
|
|
9981
9567
|
fields?: {
|
|
9982
9568
|
/**
|
|
9983
|
-
* Comma separated field names for
|
|
9569
|
+
* Comma separated field names for invitation
|
|
9984
9570
|
*/
|
|
9985
|
-
|
|
9571
|
+
invitation?: string;
|
|
9986
9572
|
[key: string]: unknown | string | undefined;
|
|
9987
9573
|
};
|
|
9988
9574
|
};
|
|
9989
|
-
url: "/admin/
|
|
9575
|
+
url: "/admin/invitations/invite";
|
|
9990
9576
|
};
|
|
9991
|
-
type
|
|
9577
|
+
type PostAdminInvitationsInviteErrors = {
|
|
9992
9578
|
/**
|
|
9993
9579
|
* Bad Request - Invalid input data or malformed request
|
|
9994
9580
|
*/
|
|
@@ -10018,40 +9604,36 @@ type GetAdminWebhookEventsErrors = {
|
|
|
10018
9604
|
*/
|
|
10019
9605
|
default: Errors;
|
|
10020
9606
|
};
|
|
10021
|
-
type
|
|
10022
|
-
type
|
|
9607
|
+
type PostAdminInvitationsInviteError = PostAdminInvitationsInviteErrors[keyof PostAdminInvitationsInviteErrors];
|
|
9608
|
+
type PostAdminInvitationsInviteResponses = {
|
|
10023
9609
|
/**
|
|
10024
9610
|
* Success
|
|
10025
9611
|
*/
|
|
10026
|
-
|
|
10027
|
-
|
|
10028
|
-
* An array of resource objects representing a webhook_event
|
|
10029
|
-
*/
|
|
10030
|
-
data?: Array<WebhookEvent>;
|
|
9612
|
+
201: {
|
|
9613
|
+
data?: Invitation;
|
|
10031
9614
|
included?: Array<unknown>;
|
|
10032
9615
|
meta?: {
|
|
10033
9616
|
[key: string]: unknown;
|
|
10034
9617
|
};
|
|
10035
9618
|
};
|
|
10036
9619
|
};
|
|
10037
|
-
type
|
|
10038
|
-
type
|
|
9620
|
+
type PostAdminInvitationsInviteResponse = PostAdminInvitationsInviteResponses[keyof PostAdminInvitationsInviteResponses];
|
|
9621
|
+
type PostAdminDocumentsPresignedUploadData = {
|
|
10039
9622
|
/**
|
|
10040
|
-
* Request body for the /
|
|
9623
|
+
* Request body for the /documents/presigned_upload operation on presigned_url resource
|
|
10041
9624
|
*/
|
|
10042
9625
|
body: {
|
|
10043
9626
|
data: {
|
|
10044
9627
|
attributes?: {
|
|
10045
|
-
|
|
10046
|
-
|
|
10047
|
-
|
|
10048
|
-
|
|
10049
|
-
scope_type: "tenant" | "workspace";
|
|
9628
|
+
filename: string;
|
|
9629
|
+
mime_type: string;
|
|
9630
|
+
size_bytes: number;
|
|
9631
|
+
workspace_id: string;
|
|
10050
9632
|
};
|
|
10051
9633
|
relationships?: {
|
|
10052
9634
|
[key: string]: never;
|
|
10053
9635
|
};
|
|
10054
|
-
type?: "
|
|
9636
|
+
type?: "presigned_url";
|
|
10055
9637
|
};
|
|
10056
9638
|
};
|
|
10057
9639
|
headers: {
|
|
@@ -10071,15 +9653,15 @@ type PostAdminInvitationsInviteData = {
|
|
|
10071
9653
|
*/
|
|
10072
9654
|
fields?: {
|
|
10073
9655
|
/**
|
|
10074
|
-
* Comma separated field names for
|
|
9656
|
+
* Comma separated field names for presigned_url
|
|
10075
9657
|
*/
|
|
10076
|
-
|
|
9658
|
+
presigned_url?: string;
|
|
10077
9659
|
[key: string]: unknown | string | undefined;
|
|
10078
9660
|
};
|
|
10079
9661
|
};
|
|
10080
|
-
url: "/admin/
|
|
9662
|
+
url: "/admin/documents/presigned_upload";
|
|
10081
9663
|
};
|
|
10082
|
-
type
|
|
9664
|
+
type PostAdminDocumentsPresignedUploadErrors = {
|
|
10083
9665
|
/**
|
|
10084
9666
|
* Bad Request - Invalid input data or malformed request
|
|
10085
9667
|
*/
|
|
@@ -10109,20 +9691,20 @@ type PostAdminInvitationsInviteErrors = {
|
|
|
10109
9691
|
*/
|
|
10110
9692
|
default: Errors;
|
|
10111
9693
|
};
|
|
10112
|
-
type
|
|
10113
|
-
type
|
|
9694
|
+
type PostAdminDocumentsPresignedUploadError = PostAdminDocumentsPresignedUploadErrors[keyof PostAdminDocumentsPresignedUploadErrors];
|
|
9695
|
+
type PostAdminDocumentsPresignedUploadResponses = {
|
|
10114
9696
|
/**
|
|
10115
9697
|
* Success
|
|
10116
9698
|
*/
|
|
10117
9699
|
201: {
|
|
10118
|
-
data?:
|
|
9700
|
+
data?: PresignedUrl;
|
|
10119
9701
|
included?: Array<unknown>;
|
|
10120
9702
|
meta?: {
|
|
10121
9703
|
[key: string]: unknown;
|
|
10122
9704
|
};
|
|
10123
9705
|
};
|
|
10124
9706
|
};
|
|
10125
|
-
type
|
|
9707
|
+
type PostAdminDocumentsPresignedUploadResponse = PostAdminDocumentsPresignedUploadResponses[keyof PostAdminDocumentsPresignedUploadResponses];
|
|
10126
9708
|
type GetAdminThreadsSearchData = {
|
|
10127
9709
|
body?: never;
|
|
10128
9710
|
headers: {
|
|
@@ -10195,90 +9777,6 @@ type GetAdminThreadsSearchResponses = {
|
|
|
10195
9777
|
};
|
|
10196
9778
|
};
|
|
10197
9779
|
type GetAdminThreadsSearchResponse = GetAdminThreadsSearchResponses[keyof GetAdminThreadsSearchResponses];
|
|
10198
|
-
type GetAdminExtractionFoldersWorkspaceByWorkspaceIdData = {
|
|
10199
|
-
body?: never;
|
|
10200
|
-
headers: {
|
|
10201
|
-
/**
|
|
10202
|
-
* Application ID for authentication and routing
|
|
10203
|
-
*/
|
|
10204
|
-
"x-application-key": string;
|
|
10205
|
-
};
|
|
10206
|
-
path: {
|
|
10207
|
-
workspace_id: string;
|
|
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;
|
|
10218
|
-
/**
|
|
10219
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
10220
|
-
*/
|
|
10221
|
-
include?: string;
|
|
10222
|
-
/**
|
|
10223
|
-
* Sparse fieldsets - return only specified fields for each resource type. Use `fields[type]=field1,field2` format.
|
|
10224
|
-
*/
|
|
10225
|
-
fields?: {
|
|
10226
|
-
/**
|
|
10227
|
-
* Comma separated field names for extraction_folder
|
|
10228
|
-
*/
|
|
10229
|
-
extraction_folder?: string;
|
|
10230
|
-
[key: string]: unknown | string | undefined;
|
|
10231
|
-
};
|
|
10232
|
-
};
|
|
10233
|
-
url: "/admin/extraction/folders/workspace/{workspace_id}";
|
|
10234
|
-
};
|
|
10235
|
-
type GetAdminExtractionFoldersWorkspaceByWorkspaceIdErrors = {
|
|
10236
|
-
/**
|
|
10237
|
-
* Bad Request - Invalid input data or malformed request
|
|
10238
|
-
*/
|
|
10239
|
-
400: ErrorResponse;
|
|
10240
|
-
/**
|
|
10241
|
-
* Unauthorized - Missing or invalid authentication token
|
|
10242
|
-
*/
|
|
10243
|
-
401: ErrorResponse;
|
|
10244
|
-
/**
|
|
10245
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
10246
|
-
*/
|
|
10247
|
-
403: ErrorResponse;
|
|
10248
|
-
/**
|
|
10249
|
-
* Not Found - Resource does not exist
|
|
10250
|
-
*/
|
|
10251
|
-
404: ErrorResponse;
|
|
10252
|
-
/**
|
|
10253
|
-
* Too Many Requests - Rate limit exceeded
|
|
10254
|
-
*/
|
|
10255
|
-
429: ErrorResponse;
|
|
10256
|
-
/**
|
|
10257
|
-
* Internal Server Error - Unexpected server error
|
|
10258
|
-
*/
|
|
10259
|
-
500: ErrorResponse;
|
|
10260
|
-
/**
|
|
10261
|
-
* General Error
|
|
10262
|
-
*/
|
|
10263
|
-
default: Errors;
|
|
10264
|
-
};
|
|
10265
|
-
type GetAdminExtractionFoldersWorkspaceByWorkspaceIdError = GetAdminExtractionFoldersWorkspaceByWorkspaceIdErrors[keyof GetAdminExtractionFoldersWorkspaceByWorkspaceIdErrors];
|
|
10266
|
-
type GetAdminExtractionFoldersWorkspaceByWorkspaceIdResponses = {
|
|
10267
|
-
/**
|
|
10268
|
-
* Success
|
|
10269
|
-
*/
|
|
10270
|
-
200: {
|
|
10271
|
-
/**
|
|
10272
|
-
* An array of resource objects representing a extraction_folder
|
|
10273
|
-
*/
|
|
10274
|
-
data?: Array<ExtractionFolder>;
|
|
10275
|
-
included?: Array<unknown>;
|
|
10276
|
-
meta?: {
|
|
10277
|
-
[key: string]: unknown;
|
|
10278
|
-
};
|
|
10279
|
-
};
|
|
10280
|
-
};
|
|
10281
|
-
type GetAdminExtractionFoldersWorkspaceByWorkspaceIdResponse = GetAdminExtractionFoldersWorkspaceByWorkspaceIdResponses[keyof GetAdminExtractionFoldersWorkspaceByWorkspaceIdResponses];
|
|
10282
9780
|
type PostAdminTrainingExamplesBulkData = {
|
|
10283
9781
|
/**
|
|
10284
9782
|
* Request body for the /training_examples/bulk operation on training_example resource
|
|
@@ -16680,8 +16178,24 @@ type PatchAdminApiKeysByIdAllocateResponses = {
|
|
|
16680
16178
|
};
|
|
16681
16179
|
};
|
|
16682
16180
|
type PatchAdminApiKeysByIdAllocateResponse = PatchAdminApiKeysByIdAllocateResponses[keyof PatchAdminApiKeysByIdAllocateResponses];
|
|
16683
|
-
type
|
|
16684
|
-
|
|
16181
|
+
type PostAdminStorageSignUploadData = {
|
|
16182
|
+
/**
|
|
16183
|
+
* Request body for the /storage/sign_upload operation on presigned_url resource
|
|
16184
|
+
*/
|
|
16185
|
+
body: {
|
|
16186
|
+
data: {
|
|
16187
|
+
attributes?: {
|
|
16188
|
+
bucket_id: string;
|
|
16189
|
+
content_type?: string | unknown;
|
|
16190
|
+
filename: string;
|
|
16191
|
+
size_bytes: number;
|
|
16192
|
+
};
|
|
16193
|
+
relationships?: {
|
|
16194
|
+
[key: string]: never;
|
|
16195
|
+
};
|
|
16196
|
+
type?: "presigned_url";
|
|
16197
|
+
};
|
|
16198
|
+
};
|
|
16685
16199
|
headers: {
|
|
16686
16200
|
/**
|
|
16687
16201
|
* Application ID for authentication and routing
|
|
@@ -16690,24 +16204,6 @@ type GetAdminExtractionFoldersData = {
|
|
|
16690
16204
|
};
|
|
16691
16205
|
path?: never;
|
|
16692
16206
|
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
16207
|
/**
|
|
16712
16208
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
16713
16209
|
*/
|
|
@@ -16717,15 +16213,15 @@ type GetAdminExtractionFoldersData = {
|
|
|
16717
16213
|
*/
|
|
16718
16214
|
fields?: {
|
|
16719
16215
|
/**
|
|
16720
|
-
* Comma separated field names for
|
|
16216
|
+
* Comma separated field names for presigned_url
|
|
16721
16217
|
*/
|
|
16722
|
-
|
|
16218
|
+
presigned_url?: string;
|
|
16723
16219
|
[key: string]: unknown | string | undefined;
|
|
16724
16220
|
};
|
|
16725
16221
|
};
|
|
16726
|
-
url: "/admin/
|
|
16222
|
+
url: "/admin/storage/sign_upload";
|
|
16727
16223
|
};
|
|
16728
|
-
type
|
|
16224
|
+
type PostAdminStorageSignUploadErrors = {
|
|
16729
16225
|
/**
|
|
16730
16226
|
* Bad Request - Invalid input data or malformed request
|
|
16731
16227
|
*/
|
|
@@ -16755,38 +16251,34 @@ type GetAdminExtractionFoldersErrors = {
|
|
|
16755
16251
|
*/
|
|
16756
16252
|
default: Errors;
|
|
16757
16253
|
};
|
|
16758
|
-
type
|
|
16759
|
-
type
|
|
16254
|
+
type PostAdminStorageSignUploadError = PostAdminStorageSignUploadErrors[keyof PostAdminStorageSignUploadErrors];
|
|
16255
|
+
type PostAdminStorageSignUploadResponses = {
|
|
16760
16256
|
/**
|
|
16761
16257
|
* Success
|
|
16762
16258
|
*/
|
|
16763
|
-
|
|
16764
|
-
|
|
16765
|
-
* An array of resource objects representing a extraction_folder
|
|
16766
|
-
*/
|
|
16767
|
-
data?: Array<ExtractionFolder>;
|
|
16259
|
+
201: {
|
|
16260
|
+
data?: PresignedUrl;
|
|
16768
16261
|
included?: Array<unknown>;
|
|
16769
16262
|
meta?: {
|
|
16770
16263
|
[key: string]: unknown;
|
|
16771
16264
|
};
|
|
16772
16265
|
};
|
|
16773
16266
|
};
|
|
16774
|
-
type
|
|
16775
|
-
type
|
|
16267
|
+
type PostAdminStorageSignUploadResponse = PostAdminStorageSignUploadResponses[keyof PostAdminStorageSignUploadResponses];
|
|
16268
|
+
type PostAdminExtractionSchemasData = {
|
|
16776
16269
|
/**
|
|
16777
|
-
* Request body for the /extraction/
|
|
16270
|
+
* Request body for the /extraction/schemas operation on extraction_schema resource
|
|
16778
16271
|
*/
|
|
16779
16272
|
body: {
|
|
16780
16273
|
data: {
|
|
16781
16274
|
attributes?: {
|
|
16782
|
-
|
|
16783
|
-
parent_id?: string | unknown;
|
|
16275
|
+
version?: number | unknown;
|
|
16784
16276
|
workspace_id: string;
|
|
16785
16277
|
};
|
|
16786
16278
|
relationships?: {
|
|
16787
16279
|
[key: string]: never;
|
|
16788
16280
|
};
|
|
16789
|
-
type?: "
|
|
16281
|
+
type?: "extraction_schema";
|
|
16790
16282
|
};
|
|
16791
16283
|
};
|
|
16792
16284
|
headers: {
|
|
@@ -16806,15 +16298,15 @@ type PostAdminExtractionFoldersData = {
|
|
|
16806
16298
|
*/
|
|
16807
16299
|
fields?: {
|
|
16808
16300
|
/**
|
|
16809
|
-
* Comma separated field names for
|
|
16301
|
+
* Comma separated field names for extraction_schema
|
|
16810
16302
|
*/
|
|
16811
|
-
|
|
16303
|
+
extraction_schema?: string;
|
|
16812
16304
|
[key: string]: unknown | string | undefined;
|
|
16813
16305
|
};
|
|
16814
16306
|
};
|
|
16815
|
-
url: "/admin/extraction/
|
|
16307
|
+
url: "/admin/extraction/schemas";
|
|
16816
16308
|
};
|
|
16817
|
-
type
|
|
16309
|
+
type PostAdminExtractionSchemasErrors = {
|
|
16818
16310
|
/**
|
|
16819
16311
|
* Bad Request - Invalid input data or malformed request
|
|
16820
16312
|
*/
|
|
@@ -16844,38 +16336,22 @@ type PostAdminExtractionFoldersErrors = {
|
|
|
16844
16336
|
*/
|
|
16845
16337
|
default: Errors;
|
|
16846
16338
|
};
|
|
16847
|
-
type
|
|
16848
|
-
type
|
|
16339
|
+
type PostAdminExtractionSchemasError = PostAdminExtractionSchemasErrors[keyof PostAdminExtractionSchemasErrors];
|
|
16340
|
+
type PostAdminExtractionSchemasResponses = {
|
|
16849
16341
|
/**
|
|
16850
16342
|
* Success
|
|
16851
16343
|
*/
|
|
16852
16344
|
201: {
|
|
16853
|
-
data?:
|
|
16345
|
+
data?: ExtractionSchema;
|
|
16854
16346
|
included?: Array<unknown>;
|
|
16855
16347
|
meta?: {
|
|
16856
16348
|
[key: string]: unknown;
|
|
16857
16349
|
};
|
|
16858
16350
|
};
|
|
16859
16351
|
};
|
|
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
|
-
};
|
|
16352
|
+
type PostAdminExtractionSchemasResponse = PostAdminExtractionSchemasResponses[keyof PostAdminExtractionSchemasResponses];
|
|
16353
|
+
type GetAdminLlmAnalyticsUsageData = {
|
|
16354
|
+
body?: never;
|
|
16879
16355
|
headers: {
|
|
16880
16356
|
/**
|
|
16881
16357
|
* Application ID for authentication and routing
|
|
@@ -16893,15 +16369,15 @@ type PostAdminStorageSignUploadData = {
|
|
|
16893
16369
|
*/
|
|
16894
16370
|
fields?: {
|
|
16895
16371
|
/**
|
|
16896
|
-
* Comma separated field names for
|
|
16372
|
+
* Comma separated field names for llm_analytics
|
|
16897
16373
|
*/
|
|
16898
|
-
|
|
16374
|
+
llm_analytics?: string;
|
|
16899
16375
|
[key: string]: unknown | string | undefined;
|
|
16900
16376
|
};
|
|
16901
16377
|
};
|
|
16902
|
-
url: "/admin/
|
|
16378
|
+
url: "/admin/llm_analytics/usage";
|
|
16903
16379
|
};
|
|
16904
|
-
type
|
|
16380
|
+
type GetAdminLlmAnalyticsUsageErrors = {
|
|
16905
16381
|
/**
|
|
16906
16382
|
* Bad Request - Invalid input data or malformed request
|
|
16907
16383
|
*/
|
|
@@ -16931,43 +16407,31 @@ type PostAdminStorageSignUploadErrors = {
|
|
|
16931
16407
|
*/
|
|
16932
16408
|
default: Errors;
|
|
16933
16409
|
};
|
|
16934
|
-
type
|
|
16935
|
-
type
|
|
16410
|
+
type GetAdminLlmAnalyticsUsageError = GetAdminLlmAnalyticsUsageErrors[keyof GetAdminLlmAnalyticsUsageErrors];
|
|
16411
|
+
type GetAdminLlmAnalyticsUsageResponses = {
|
|
16936
16412
|
/**
|
|
16937
16413
|
* Success
|
|
16938
16414
|
*/
|
|
16939
|
-
|
|
16940
|
-
data?:
|
|
16415
|
+
200: {
|
|
16416
|
+
data?: LlmAnalytics;
|
|
16941
16417
|
included?: Array<unknown>;
|
|
16942
16418
|
meta?: {
|
|
16943
16419
|
[key: string]: unknown;
|
|
16944
16420
|
};
|
|
16945
16421
|
};
|
|
16946
16422
|
};
|
|
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
|
-
};
|
|
16423
|
+
type GetAdminLlmAnalyticsUsageResponse = GetAdminLlmAnalyticsUsageResponses[keyof GetAdminLlmAnalyticsUsageResponses];
|
|
16424
|
+
type DeleteAdminNotificationPreferencesByIdData = {
|
|
16425
|
+
body?: never;
|
|
16964
16426
|
headers: {
|
|
16965
16427
|
/**
|
|
16966
16428
|
* Application ID for authentication and routing
|
|
16967
16429
|
*/
|
|
16968
16430
|
"x-application-key": string;
|
|
16969
16431
|
};
|
|
16970
|
-
path
|
|
16432
|
+
path: {
|
|
16433
|
+
id: string;
|
|
16434
|
+
};
|
|
16971
16435
|
query?: {
|
|
16972
16436
|
/**
|
|
16973
16437
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -16978,15 +16442,15 @@ type PostAdminExtractionSchemasData = {
|
|
|
16978
16442
|
*/
|
|
16979
16443
|
fields?: {
|
|
16980
16444
|
/**
|
|
16981
|
-
* Comma separated field names for
|
|
16445
|
+
* Comma separated field names for notification_preference
|
|
16982
16446
|
*/
|
|
16983
|
-
|
|
16447
|
+
notification_preference?: string;
|
|
16984
16448
|
[key: string]: unknown | string | undefined;
|
|
16985
16449
|
};
|
|
16986
16450
|
};
|
|
16987
|
-
url: "/admin/
|
|
16451
|
+
url: "/admin/notification_preferences/{id}";
|
|
16988
16452
|
};
|
|
16989
|
-
type
|
|
16453
|
+
type DeleteAdminNotificationPreferencesByIdErrors = {
|
|
16990
16454
|
/**
|
|
16991
16455
|
* Bad Request - Invalid input data or malformed request
|
|
16992
16456
|
*/
|
|
@@ -17016,158 +16480,14 @@ type PostAdminExtractionSchemasErrors = {
|
|
|
17016
16480
|
*/
|
|
17017
16481
|
default: Errors;
|
|
17018
16482
|
};
|
|
17019
|
-
type
|
|
17020
|
-
type
|
|
16483
|
+
type DeleteAdminNotificationPreferencesByIdError = DeleteAdminNotificationPreferencesByIdErrors[keyof DeleteAdminNotificationPreferencesByIdErrors];
|
|
16484
|
+
type DeleteAdminNotificationPreferencesByIdResponses = {
|
|
17021
16485
|
/**
|
|
17022
|
-
*
|
|
16486
|
+
* Deleted successfully
|
|
17023
16487
|
*/
|
|
17024
|
-
|
|
17025
|
-
data?: ExtractionSchema;
|
|
17026
|
-
included?: Array<unknown>;
|
|
17027
|
-
meta?: {
|
|
17028
|
-
[key: string]: unknown;
|
|
17029
|
-
};
|
|
17030
|
-
};
|
|
16488
|
+
200: unknown;
|
|
17031
16489
|
};
|
|
17032
|
-
type
|
|
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
|
|
17167
|
-
*/
|
|
17168
|
-
200: unknown;
|
|
17169
|
-
};
|
|
17170
|
-
type GetAdminNotificationPreferencesByIdData = {
|
|
16490
|
+
type GetAdminNotificationPreferencesByIdData = {
|
|
17171
16491
|
body?: never;
|
|
17172
16492
|
headers: {
|
|
17173
16493
|
/**
|
|
@@ -18746,16 +18066,6 @@ type GetAdminExtractionDocumentsData = {
|
|
|
18746
18066
|
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
18747
18067
|
*/
|
|
18748
18068
|
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
18069
|
/**
|
|
18760
18070
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
18761
18071
|
*/
|
|
@@ -19649,273 +18959,40 @@ type PostAdminIsvRevenueData = {
|
|
|
19649
18959
|
[key: string]: unknown;
|
|
19650
18960
|
} | unknown;
|
|
19651
18961
|
/**
|
|
19652
|
-
* Hard cost from provider (for usage_cost type)
|
|
19653
|
-
*/
|
|
19654
|
-
pass_through_cost?: {
|
|
19655
|
-
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;
|
|
18962
|
+
* Hard cost from provider (for usage_cost type)
|
|
18963
|
+
*/
|
|
18964
|
+
pass_through_cost?: {
|
|
18965
|
+
amount: string;
|
|
18966
|
+
currency: string;
|
|
18967
|
+
} | unknown;
|
|
18968
|
+
/**
|
|
18969
|
+
* Platform's 20% markup on pass_through_cost
|
|
18970
|
+
*/
|
|
18971
|
+
platform_markup?: {
|
|
18972
|
+
amount: string;
|
|
18973
|
+
currency: string;
|
|
18974
|
+
} | unknown;
|
|
18975
|
+
/**
|
|
18976
|
+
* QorPay/ACH transaction ID for settlements
|
|
18977
|
+
*/
|
|
18978
|
+
qorpay_transaction_id?: string | unknown;
|
|
18979
|
+
subscription_id?: string | unknown;
|
|
18980
|
+
tenant_id?: string | unknown;
|
|
18981
|
+
type: "subscription_revenue" | "package_revenue" | "usage_cost" | "storage_cost" | "payment_processing_cost" | "platform_fee" | "settlement" | "reinvestment";
|
|
18982
|
+
};
|
|
18983
|
+
relationships?: {
|
|
18984
|
+
[key: string]: never;
|
|
18985
|
+
};
|
|
18986
|
+
type?: "isv_revenue";
|
|
19904
18987
|
};
|
|
19905
18988
|
};
|
|
19906
|
-
};
|
|
19907
|
-
type GetAdminTransactionsByIdResponse = GetAdminTransactionsByIdResponses[keyof GetAdminTransactionsByIdResponses];
|
|
19908
|
-
type DeleteAdminExtractionFoldersByIdData = {
|
|
19909
|
-
body?: never;
|
|
19910
18989
|
headers: {
|
|
19911
18990
|
/**
|
|
19912
18991
|
* Application ID for authentication and routing
|
|
19913
18992
|
*/
|
|
19914
18993
|
"x-application-key": string;
|
|
19915
18994
|
};
|
|
19916
|
-
path
|
|
19917
|
-
id: string;
|
|
19918
|
-
};
|
|
18995
|
+
path?: never;
|
|
19919
18996
|
query?: {
|
|
19920
18997
|
/**
|
|
19921
18998
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -19926,15 +19003,15 @@ type DeleteAdminExtractionFoldersByIdData = {
|
|
|
19926
19003
|
*/
|
|
19927
19004
|
fields?: {
|
|
19928
19005
|
/**
|
|
19929
|
-
* Comma separated field names for
|
|
19006
|
+
* Comma separated field names for isv_revenue
|
|
19930
19007
|
*/
|
|
19931
|
-
|
|
19008
|
+
isv_revenue?: string;
|
|
19932
19009
|
[key: string]: unknown | string | undefined;
|
|
19933
19010
|
};
|
|
19934
19011
|
};
|
|
19935
|
-
url: "/admin/
|
|
19012
|
+
url: "/admin/isv_revenue";
|
|
19936
19013
|
};
|
|
19937
|
-
type
|
|
19014
|
+
type PostAdminIsvRevenueErrors = {
|
|
19938
19015
|
/**
|
|
19939
19016
|
* Bad Request - Invalid input data or malformed request
|
|
19940
19017
|
*/
|
|
@@ -19964,15 +19041,36 @@ type DeleteAdminExtractionFoldersByIdErrors = {
|
|
|
19964
19041
|
*/
|
|
19965
19042
|
default: Errors;
|
|
19966
19043
|
};
|
|
19967
|
-
type
|
|
19968
|
-
type
|
|
19044
|
+
type PostAdminIsvRevenueError = PostAdminIsvRevenueErrors[keyof PostAdminIsvRevenueErrors];
|
|
19045
|
+
type PostAdminIsvRevenueResponses = {
|
|
19969
19046
|
/**
|
|
19970
|
-
*
|
|
19047
|
+
* Success
|
|
19971
19048
|
*/
|
|
19972
|
-
|
|
19049
|
+
201: {
|
|
19050
|
+
data?: IsvRevenue;
|
|
19051
|
+
included?: Array<unknown>;
|
|
19052
|
+
meta?: {
|
|
19053
|
+
[key: string]: unknown;
|
|
19054
|
+
};
|
|
19055
|
+
};
|
|
19973
19056
|
};
|
|
19974
|
-
type
|
|
19975
|
-
|
|
19057
|
+
type PostAdminIsvRevenueResponse = PostAdminIsvRevenueResponses[keyof PostAdminIsvRevenueResponses];
|
|
19058
|
+
type PatchAdminInvitationsByIdResendData = {
|
|
19059
|
+
/**
|
|
19060
|
+
* Request body for the /invitations/:id/resend operation on invitation resource
|
|
19061
|
+
*/
|
|
19062
|
+
body?: {
|
|
19063
|
+
data: {
|
|
19064
|
+
attributes?: {
|
|
19065
|
+
[key: string]: never;
|
|
19066
|
+
};
|
|
19067
|
+
id: string;
|
|
19068
|
+
relationships?: {
|
|
19069
|
+
[key: string]: never;
|
|
19070
|
+
};
|
|
19071
|
+
type?: "invitation";
|
|
19072
|
+
};
|
|
19073
|
+
};
|
|
19976
19074
|
headers: {
|
|
19977
19075
|
/**
|
|
19978
19076
|
* Application ID for authentication and routing
|
|
@@ -19992,15 +19090,15 @@ type GetAdminExtractionFoldersByIdData = {
|
|
|
19992
19090
|
*/
|
|
19993
19091
|
fields?: {
|
|
19994
19092
|
/**
|
|
19995
|
-
* Comma separated field names for
|
|
19093
|
+
* Comma separated field names for invitation
|
|
19996
19094
|
*/
|
|
19997
|
-
|
|
19095
|
+
invitation?: string;
|
|
19998
19096
|
[key: string]: unknown | string | undefined;
|
|
19999
19097
|
};
|
|
20000
19098
|
};
|
|
20001
|
-
url: "/admin/
|
|
19099
|
+
url: "/admin/invitations/{id}/resend";
|
|
20002
19100
|
};
|
|
20003
|
-
type
|
|
19101
|
+
type PatchAdminInvitationsByIdResendErrors = {
|
|
20004
19102
|
/**
|
|
20005
19103
|
* Bad Request - Invalid input data or malformed request
|
|
20006
19104
|
*/
|
|
@@ -20030,36 +19128,22 @@ type GetAdminExtractionFoldersByIdErrors = {
|
|
|
20030
19128
|
*/
|
|
20031
19129
|
default: Errors;
|
|
20032
19130
|
};
|
|
20033
|
-
type
|
|
20034
|
-
type
|
|
19131
|
+
type PatchAdminInvitationsByIdResendError = PatchAdminInvitationsByIdResendErrors[keyof PatchAdminInvitationsByIdResendErrors];
|
|
19132
|
+
type PatchAdminInvitationsByIdResendResponses = {
|
|
20035
19133
|
/**
|
|
20036
19134
|
* Success
|
|
20037
19135
|
*/
|
|
20038
19136
|
200: {
|
|
20039
|
-
data?:
|
|
19137
|
+
data?: Invitation;
|
|
20040
19138
|
included?: Array<unknown>;
|
|
20041
19139
|
meta?: {
|
|
20042
19140
|
[key: string]: unknown;
|
|
20043
19141
|
};
|
|
20044
19142
|
};
|
|
20045
19143
|
};
|
|
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
|
-
};
|
|
19144
|
+
type PatchAdminInvitationsByIdResendResponse = PatchAdminInvitationsByIdResendResponses[keyof PatchAdminInvitationsByIdResendResponses];
|
|
19145
|
+
type GetAdminTransactionsByIdData = {
|
|
19146
|
+
body?: never;
|
|
20063
19147
|
headers: {
|
|
20064
19148
|
/**
|
|
20065
19149
|
* Application ID for authentication and routing
|
|
@@ -20079,15 +19163,15 @@ type PatchAdminExtractionFoldersByIdData = {
|
|
|
20079
19163
|
*/
|
|
20080
19164
|
fields?: {
|
|
20081
19165
|
/**
|
|
20082
|
-
* Comma separated field names for
|
|
19166
|
+
* Comma separated field names for transaction
|
|
20083
19167
|
*/
|
|
20084
|
-
|
|
19168
|
+
transaction?: string;
|
|
20085
19169
|
[key: string]: unknown | string | undefined;
|
|
20086
19170
|
};
|
|
20087
19171
|
};
|
|
20088
|
-
url: "/admin/
|
|
19172
|
+
url: "/admin/transactions/{id}";
|
|
20089
19173
|
};
|
|
20090
|
-
type
|
|
19174
|
+
type GetAdminTransactionsByIdErrors = {
|
|
20091
19175
|
/**
|
|
20092
19176
|
* Bad Request - Invalid input data or malformed request
|
|
20093
19177
|
*/
|
|
@@ -20117,20 +19201,20 @@ type PatchAdminExtractionFoldersByIdErrors = {
|
|
|
20117
19201
|
*/
|
|
20118
19202
|
default: Errors;
|
|
20119
19203
|
};
|
|
20120
|
-
type
|
|
20121
|
-
type
|
|
19204
|
+
type GetAdminTransactionsByIdError = GetAdminTransactionsByIdErrors[keyof GetAdminTransactionsByIdErrors];
|
|
19205
|
+
type GetAdminTransactionsByIdResponses = {
|
|
20122
19206
|
/**
|
|
20123
19207
|
* Success
|
|
20124
19208
|
*/
|
|
20125
19209
|
200: {
|
|
20126
|
-
data?:
|
|
19210
|
+
data?: Transaction;
|
|
20127
19211
|
included?: Array<unknown>;
|
|
20128
19212
|
meta?: {
|
|
20129
19213
|
[key: string]: unknown;
|
|
20130
19214
|
};
|
|
20131
19215
|
};
|
|
20132
19216
|
};
|
|
20133
|
-
type
|
|
19217
|
+
type GetAdminTransactionsByIdResponse = GetAdminTransactionsByIdResponses[keyof GetAdminTransactionsByIdResponses];
|
|
20134
19218
|
type PostAdminStorageSignDownloadData = {
|
|
20135
19219
|
/**
|
|
20136
19220
|
* Request body for the /storage/sign_download operation on presigned_url resource
|
|
@@ -20276,100 +19360,6 @@ type PostAdminTrainingExamplesBulkDeleteResponses = {
|
|
|
20276
19360
|
};
|
|
20277
19361
|
};
|
|
20278
19362
|
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
19363
|
type DeleteAdminAiConversationsByIdData = {
|
|
20374
19364
|
body?: never;
|
|
20375
19365
|
headers: {
|
|
@@ -21129,9 +20119,12 @@ type GetAdminWorkspacesByWorkspaceIdExtractionExportsData = {
|
|
|
21129
20119
|
"x-application-key": string;
|
|
21130
20120
|
};
|
|
21131
20121
|
path: {
|
|
20122
|
+
/**
|
|
20123
|
+
* The workspace to list exports for
|
|
20124
|
+
*/
|
|
21132
20125
|
workspace_id: string;
|
|
21133
20126
|
};
|
|
21134
|
-
query
|
|
20127
|
+
query: {
|
|
21135
20128
|
/**
|
|
21136
20129
|
* Filter results using JSON:API filter syntax. Use field comparisons like `field[eq]=value`, `field[in][]=val1&field[in][]=val2`, etc.
|
|
21137
20130
|
*/
|
|
@@ -21144,8 +20137,6 @@ type GetAdminWorkspacesByWorkspaceIdExtractionExportsData = {
|
|
|
21144
20137
|
* Pagination parameters using JSON:API page-based strategy. Use `page[limit]` and `page[offset]` for pagination.
|
|
21145
20138
|
*/
|
|
21146
20139
|
page?: {
|
|
21147
|
-
after?: string;
|
|
21148
|
-
before?: string;
|
|
21149
20140
|
count?: boolean;
|
|
21150
20141
|
limit?: number;
|
|
21151
20142
|
offset?: number;
|
|
@@ -21164,6 +20155,10 @@ type GetAdminWorkspacesByWorkspaceIdExtractionExportsData = {
|
|
|
21164
20155
|
extraction_export?: string;
|
|
21165
20156
|
[key: string]: unknown | string | undefined;
|
|
21166
20157
|
};
|
|
20158
|
+
/**
|
|
20159
|
+
* Export statuses to filter by
|
|
20160
|
+
*/
|
|
20161
|
+
status: Array<"pending" | "processing" | "completed" | "failed">;
|
|
21167
20162
|
};
|
|
21168
20163
|
url: "/admin/workspaces/{workspace_id}/extraction/exports";
|
|
21169
20164
|
};
|
|
@@ -23772,79 +22767,6 @@ type GetAdminSearchHealthResponses = {
|
|
|
23772
22767
|
};
|
|
23773
22768
|
};
|
|
23774
22769
|
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
22770
|
type DeleteAdminAiGraphNodesByIdData = {
|
|
23849
22771
|
body?: never;
|
|
23850
22772
|
headers: {
|
|
@@ -26715,7 +25637,6 @@ type PostAdminExtractionDocumentsBeginUploadData = {
|
|
|
26715
25637
|
file_size_bytes?: number | unknown;
|
|
26716
25638
|
file_type: "pdf" | "docx" | "image" | "zip";
|
|
26717
25639
|
filename: string;
|
|
26718
|
-
folder_id?: string | unknown;
|
|
26719
25640
|
parent_document_id?: string | unknown;
|
|
26720
25641
|
workspace_id: string;
|
|
26721
25642
|
};
|
|
@@ -28128,4 +27049,4 @@ type ApiKeyAllocateRequest = z.infer<typeof ApiKeyAllocateSchema>;
|
|
|
28128
27049
|
type DocumentBulkDeleteRequest = z.infer<typeof DocumentBulkDeleteSchema>;
|
|
28129
27050
|
type DocumentBulkReprocessRequest = z.infer<typeof DocumentBulkReprocessSchema>;
|
|
28130
27051
|
|
|
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 };
|
|
27052
|
+
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 ExtractionDocumentFilterBilledCredits, type ExtractionDocumentFilterClassification, type ExtractionDocumentFilterClassificationConfidence, 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 };
|