@gpt-core/admin 0.9.0 → 0.9.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1606 -0
- package/dist/index.d.mts +1315 -1052
- package/dist/index.d.ts +1315 -1052
- package/llms.txt +29 -2
- package/package.json +11 -11
package/dist/index.d.ts
CHANGED
|
@@ -43,8 +43,22 @@ type WorkspaceSettingsInputCreateType = {
|
|
|
43
43
|
} | unknown;
|
|
44
44
|
billing?: {
|
|
45
45
|
allow_overdraft?: boolean | unknown;
|
|
46
|
+
/**
|
|
47
|
+
* Maximum overdraft credits allowed per period
|
|
48
|
+
*/
|
|
46
49
|
overdraft_limit?: number | unknown;
|
|
50
|
+
/**
|
|
51
|
+
* Period for overdraft limit reset (daily, weekly, monthly)
|
|
52
|
+
*/
|
|
47
53
|
overdraft_period?: "daily" | "weekly" | "monthly" | unknown;
|
|
54
|
+
/**
|
|
55
|
+
* When the current overdraft period began
|
|
56
|
+
*/
|
|
57
|
+
overdraft_period_started_at?: unknown;
|
|
58
|
+
/**
|
|
59
|
+
* Credits used from overdraft in current period
|
|
60
|
+
*/
|
|
61
|
+
overdraft_used?: number | unknown;
|
|
48
62
|
} | unknown;
|
|
49
63
|
review_train?: {
|
|
50
64
|
confidence_threshold?: number | unknown;
|
|
@@ -411,6 +425,36 @@ type FieldMappingConfirmation = {
|
|
|
411
425
|
};
|
|
412
426
|
type: string;
|
|
413
427
|
};
|
|
428
|
+
type ApplicationOauthInputCreateType = {
|
|
429
|
+
/**
|
|
430
|
+
* Allowed OAuth callback URLs for this application
|
|
431
|
+
*/
|
|
432
|
+
callback_urls?: Array<string> | unknown;
|
|
433
|
+
/**
|
|
434
|
+
* Default callback URL if not specified in request
|
|
435
|
+
*/
|
|
436
|
+
default_callback_url?: string | unknown;
|
|
437
|
+
/**
|
|
438
|
+
* Which OAuth providers are enabled for this app
|
|
439
|
+
*/
|
|
440
|
+
enabled_providers?: Array<"google" | "github" | "salesforce"> | unknown;
|
|
441
|
+
/**
|
|
442
|
+
* Custom GitHub OAuth client ID (optional)
|
|
443
|
+
*/
|
|
444
|
+
github_client_id?: string | unknown;
|
|
445
|
+
/**
|
|
446
|
+
* Custom GitHub OAuth client secret (optional)
|
|
447
|
+
*/
|
|
448
|
+
github_client_secret?: string | unknown;
|
|
449
|
+
/**
|
|
450
|
+
* Custom Google OAuth client ID (optional)
|
|
451
|
+
*/
|
|
452
|
+
google_client_id?: string | unknown;
|
|
453
|
+
/**
|
|
454
|
+
* Custom Google OAuth client secret (optional)
|
|
455
|
+
*/
|
|
456
|
+
google_client_secret?: string | unknown;
|
|
457
|
+
};
|
|
414
458
|
/**
|
|
415
459
|
* A "Resource object" representing a training_session
|
|
416
460
|
*/
|
|
@@ -865,7 +909,58 @@ type PaymentMethod = {
|
|
|
865
909
|
* An attributes object for a payment_method
|
|
866
910
|
*/
|
|
867
911
|
attributes?: {
|
|
868
|
-
|
|
912
|
+
/**
|
|
913
|
+
* Field included by default.
|
|
914
|
+
*/
|
|
915
|
+
brand?: string | null | unknown;
|
|
916
|
+
/**
|
|
917
|
+
* Field included by default.
|
|
918
|
+
*/
|
|
919
|
+
created_at: unknown;
|
|
920
|
+
/**
|
|
921
|
+
* Field included by default.
|
|
922
|
+
*/
|
|
923
|
+
exp_month?: number | null | unknown;
|
|
924
|
+
/**
|
|
925
|
+
* Field included by default.
|
|
926
|
+
*/
|
|
927
|
+
exp_year?: number | null | unknown;
|
|
928
|
+
/**
|
|
929
|
+
* Field included by default.
|
|
930
|
+
*/
|
|
931
|
+
holder_name?: string | null | unknown;
|
|
932
|
+
/**
|
|
933
|
+
* Field included by default.
|
|
934
|
+
*/
|
|
935
|
+
is_default?: boolean | null | unknown;
|
|
936
|
+
/**
|
|
937
|
+
* Field included by default.
|
|
938
|
+
*/
|
|
939
|
+
last4?: string | null | unknown;
|
|
940
|
+
/**
|
|
941
|
+
* Field included by default.
|
|
942
|
+
*/
|
|
943
|
+
nickname?: string | null | unknown;
|
|
944
|
+
/**
|
|
945
|
+
* Field included by default.
|
|
946
|
+
*/
|
|
947
|
+
provider: "qorpay";
|
|
948
|
+
/**
|
|
949
|
+
* Field included by default.
|
|
950
|
+
*/
|
|
951
|
+
provider_token: string;
|
|
952
|
+
/**
|
|
953
|
+
* Field included by default.
|
|
954
|
+
*/
|
|
955
|
+
type: "card" | "bank_account";
|
|
956
|
+
/**
|
|
957
|
+
* Field included by default.
|
|
958
|
+
*/
|
|
959
|
+
updated_at: unknown;
|
|
960
|
+
/**
|
|
961
|
+
* Field included by default.
|
|
962
|
+
*/
|
|
963
|
+
zip_code?: string | null | unknown;
|
|
869
964
|
};
|
|
870
965
|
id: string;
|
|
871
966
|
/**
|
|
@@ -1136,6 +1231,39 @@ type Application = {
|
|
|
1136
1231
|
* Field included by default.
|
|
1137
1232
|
*/
|
|
1138
1233
|
name: string;
|
|
1234
|
+
/**
|
|
1235
|
+
* OAuth configuration for this application. Field included by default.
|
|
1236
|
+
*/
|
|
1237
|
+
oauth?: {
|
|
1238
|
+
/**
|
|
1239
|
+
* Allowed OAuth callback URLs for this application. Field included by default.
|
|
1240
|
+
*/
|
|
1241
|
+
callback_urls?: Array<string> | null | unknown;
|
|
1242
|
+
/**
|
|
1243
|
+
* Default callback URL if not specified in request. Field included by default.
|
|
1244
|
+
*/
|
|
1245
|
+
default_callback_url?: string | null | unknown;
|
|
1246
|
+
/**
|
|
1247
|
+
* Which OAuth providers are enabled for this app. Field included by default.
|
|
1248
|
+
*/
|
|
1249
|
+
enabled_providers?: Array<"google" | "github" | "salesforce"> | null | unknown;
|
|
1250
|
+
/**
|
|
1251
|
+
* Custom GitHub OAuth client ID (optional). Field included by default.
|
|
1252
|
+
*/
|
|
1253
|
+
github_client_id?: string | null | unknown;
|
|
1254
|
+
/**
|
|
1255
|
+
* Custom GitHub OAuth client secret (optional). Field included by default.
|
|
1256
|
+
*/
|
|
1257
|
+
github_client_secret?: string | null | unknown;
|
|
1258
|
+
/**
|
|
1259
|
+
* Custom Google OAuth client ID (optional). Field included by default.
|
|
1260
|
+
*/
|
|
1261
|
+
google_client_id?: string | null | unknown;
|
|
1262
|
+
/**
|
|
1263
|
+
* Custom Google OAuth client secret (optional). Field included by default.
|
|
1264
|
+
*/
|
|
1265
|
+
google_client_secret?: string | null | unknown;
|
|
1266
|
+
} | null | unknown;
|
|
1139
1267
|
/**
|
|
1140
1268
|
* When true, password registration withholds JWT until email is verified. Field included by default.
|
|
1141
1269
|
*/
|
|
@@ -1268,7 +1396,7 @@ type ApiKey = {
|
|
|
1268
1396
|
*/
|
|
1269
1397
|
attributes?: {
|
|
1270
1398
|
/**
|
|
1271
|
-
* Field included by default.
|
|
1399
|
+
* Required - the application this API key belongs to. Field included by default.
|
|
1272
1400
|
*/
|
|
1273
1401
|
application_id: string;
|
|
1274
1402
|
/**
|
|
@@ -1593,8 +1721,22 @@ type WorkspaceSettingsInputUpdateType = {
|
|
|
1593
1721
|
} | unknown;
|
|
1594
1722
|
billing?: {
|
|
1595
1723
|
allow_overdraft?: boolean | unknown;
|
|
1724
|
+
/**
|
|
1725
|
+
* Maximum overdraft credits allowed per period
|
|
1726
|
+
*/
|
|
1596
1727
|
overdraft_limit?: number | unknown;
|
|
1728
|
+
/**
|
|
1729
|
+
* Period for overdraft limit reset (daily, weekly, monthly)
|
|
1730
|
+
*/
|
|
1597
1731
|
overdraft_period?: "daily" | "weekly" | "monthly" | unknown;
|
|
1732
|
+
/**
|
|
1733
|
+
* When the current overdraft period began
|
|
1734
|
+
*/
|
|
1735
|
+
overdraft_period_started_at?: unknown;
|
|
1736
|
+
/**
|
|
1737
|
+
* Credits used from overdraft in current period
|
|
1738
|
+
*/
|
|
1739
|
+
overdraft_used?: number | unknown;
|
|
1598
1740
|
} | unknown;
|
|
1599
1741
|
review_train?: {
|
|
1600
1742
|
confidence_threshold?: number | unknown;
|
|
@@ -1670,6 +1812,62 @@ type WorkspaceSettingsInputUpdateType = {
|
|
|
1670
1812
|
source_type?: "local" | "cloud" | unknown;
|
|
1671
1813
|
};
|
|
1672
1814
|
};
|
|
1815
|
+
/**
|
|
1816
|
+
* A "Resource object" representing a invoice
|
|
1817
|
+
*/
|
|
1818
|
+
type Invoice = {
|
|
1819
|
+
/**
|
|
1820
|
+
* An attributes object for a invoice
|
|
1821
|
+
*/
|
|
1822
|
+
attributes?: {
|
|
1823
|
+
/**
|
|
1824
|
+
* Field included by default.
|
|
1825
|
+
*/
|
|
1826
|
+
amount_due?: number | null | unknown;
|
|
1827
|
+
/**
|
|
1828
|
+
* Field included by default.
|
|
1829
|
+
*/
|
|
1830
|
+
amount_paid?: number | null | unknown;
|
|
1831
|
+
/**
|
|
1832
|
+
* Field included by default.
|
|
1833
|
+
*/
|
|
1834
|
+
created_at?: unknown;
|
|
1835
|
+
/**
|
|
1836
|
+
* Field included by default.
|
|
1837
|
+
*/
|
|
1838
|
+
currency?: string | null | unknown;
|
|
1839
|
+
/**
|
|
1840
|
+
* Field included by default.
|
|
1841
|
+
*/
|
|
1842
|
+
due_date?: unknown;
|
|
1843
|
+
/**
|
|
1844
|
+
* Field included by default.
|
|
1845
|
+
*/
|
|
1846
|
+
invoice_number?: string | null | unknown;
|
|
1847
|
+
/**
|
|
1848
|
+
* Field included by default.
|
|
1849
|
+
*/
|
|
1850
|
+
line_items?: Array<{
|
|
1851
|
+
[key: string]: unknown;
|
|
1852
|
+
}> | null | unknown;
|
|
1853
|
+
/**
|
|
1854
|
+
* Field included by default.
|
|
1855
|
+
*/
|
|
1856
|
+
pdf_url?: string | null | unknown;
|
|
1857
|
+
/**
|
|
1858
|
+
* Field included by default.
|
|
1859
|
+
*/
|
|
1860
|
+
status?: "draft" | "open" | "paid" | "void" | unknown;
|
|
1861
|
+
};
|
|
1862
|
+
id: string;
|
|
1863
|
+
/**
|
|
1864
|
+
* A relationships object for a invoice
|
|
1865
|
+
*/
|
|
1866
|
+
relationships?: {
|
|
1867
|
+
[key: string]: never;
|
|
1868
|
+
};
|
|
1869
|
+
type: string;
|
|
1870
|
+
};
|
|
1673
1871
|
/**
|
|
1674
1872
|
* A "Resource object" representing a training_analytics
|
|
1675
1873
|
*/
|
|
@@ -1760,7 +1958,72 @@ type Transaction = {
|
|
|
1760
1958
|
* An attributes object for a transaction
|
|
1761
1959
|
*/
|
|
1762
1960
|
attributes?: {
|
|
1763
|
-
|
|
1961
|
+
/**
|
|
1962
|
+
* The amount of the transaction. For monetary transactions, this is in cents. For credit usage, this is in credits. Field included by default.
|
|
1963
|
+
*/
|
|
1964
|
+
amount: number;
|
|
1965
|
+
/**
|
|
1966
|
+
* Field included by default.
|
|
1967
|
+
*/
|
|
1968
|
+
created_at: unknown;
|
|
1969
|
+
/**
|
|
1970
|
+
* Field included by default.
|
|
1971
|
+
*/
|
|
1972
|
+
credits_added?: number | null | unknown;
|
|
1973
|
+
/**
|
|
1974
|
+
* Field included by default.
|
|
1975
|
+
*/
|
|
1976
|
+
credits_used?: number | null | unknown;
|
|
1977
|
+
/**
|
|
1978
|
+
* Field included by default.
|
|
1979
|
+
*/
|
|
1980
|
+
currency?: string | null | unknown;
|
|
1981
|
+
/**
|
|
1982
|
+
* Field included by default.
|
|
1983
|
+
*/
|
|
1984
|
+
description?: string | null | unknown;
|
|
1985
|
+
/**
|
|
1986
|
+
* Field included by default.
|
|
1987
|
+
*/
|
|
1988
|
+
error_message?: string | null | unknown;
|
|
1989
|
+
/**
|
|
1990
|
+
* Field included by default.
|
|
1991
|
+
*/
|
|
1992
|
+
metadata?: {
|
|
1993
|
+
[key: string]: unknown;
|
|
1994
|
+
} | null | unknown;
|
|
1995
|
+
/**
|
|
1996
|
+
* Field included by default.
|
|
1997
|
+
*/
|
|
1998
|
+
operation?: "subscription" | "topup" | "extraction" | "training" | "refund" | "addon" | unknown;
|
|
1999
|
+
/**
|
|
2000
|
+
* Field included by default.
|
|
2001
|
+
*/
|
|
2002
|
+
provider_reference?: string | null | unknown;
|
|
2003
|
+
/**
|
|
2004
|
+
* Field included by default.
|
|
2005
|
+
*/
|
|
2006
|
+
service_id?: string | null | unknown;
|
|
2007
|
+
/**
|
|
2008
|
+
* Field included by default.
|
|
2009
|
+
*/
|
|
2010
|
+
status: "pending" | "success" | "failed" | "refunded" | "voided";
|
|
2011
|
+
/**
|
|
2012
|
+
* Field included by default.
|
|
2013
|
+
*/
|
|
2014
|
+
tenant_id: string;
|
|
2015
|
+
/**
|
|
2016
|
+
* Field included by default.
|
|
2017
|
+
*/
|
|
2018
|
+
transaction_type?: "credit" | "debit" | unknown;
|
|
2019
|
+
/**
|
|
2020
|
+
* Field included by default.
|
|
2021
|
+
*/
|
|
2022
|
+
type?: "sale" | "auth" | "refund" | "void" | unknown;
|
|
2023
|
+
/**
|
|
2024
|
+
* Field included by default.
|
|
2025
|
+
*/
|
|
2026
|
+
updated_at: unknown;
|
|
1764
2027
|
};
|
|
1765
2028
|
id: string;
|
|
1766
2029
|
/**
|
|
@@ -1779,38 +2042,14 @@ type ExtractionResult = {
|
|
|
1779
2042
|
* An attributes object for a extraction_result
|
|
1780
2043
|
*/
|
|
1781
2044
|
attributes?: {
|
|
1782
|
-
/**
|
|
1783
|
-
* The Agent that performed this extraction. Field included by default.
|
|
1784
|
-
*/
|
|
1785
|
-
agent_id?: string | null | unknown;
|
|
1786
|
-
/**
|
|
1787
|
-
* The specific version of the Agent that performed this extraction. Field included by default.
|
|
1788
|
-
*/
|
|
1789
|
-
agent_version_id?: string | null | unknown;
|
|
1790
|
-
/**
|
|
1791
|
-
* Average confidence across all extracted fields. Field included by default.
|
|
1792
|
-
*/
|
|
1793
|
-
avg_confidence?: number | null | unknown;
|
|
1794
2045
|
/**
|
|
1795
2046
|
* Character count of extracted text
|
|
1796
2047
|
*/
|
|
1797
2048
|
char_count?: number | null | unknown;
|
|
1798
|
-
/**
|
|
1799
|
-
* Overall classification confidence score. Field included by default.
|
|
1800
|
-
*/
|
|
1801
|
-
classification_confidence?: number | null | unknown;
|
|
1802
2049
|
/**
|
|
1803
2050
|
* Field included by default.
|
|
1804
2051
|
*/
|
|
1805
2052
|
credits_used?: string | null | unknown;
|
|
1806
|
-
/**
|
|
1807
|
-
* Specific document type (Traffic Citation, Invoice, etc.). Field included by default.
|
|
1808
|
-
*/
|
|
1809
|
-
document_type?: string | null | unknown;
|
|
1810
|
-
/**
|
|
1811
|
-
* Document domain (legal, financial, medical, etc.). Field included by default.
|
|
1812
|
-
*/
|
|
1813
|
-
domain?: string | null | unknown;
|
|
1814
2053
|
/**
|
|
1815
2054
|
* Field included by default.
|
|
1816
2055
|
*/
|
|
@@ -1833,10 +2072,6 @@ type ExtractionResult = {
|
|
|
1833
2072
|
* Line count of extracted text
|
|
1834
2073
|
*/
|
|
1835
2074
|
line_count?: number | null | unknown;
|
|
1836
|
-
/**
|
|
1837
|
-
* Municipality or agency name. Field included by default.
|
|
1838
|
-
*/
|
|
1839
|
-
municipality?: string | null | unknown;
|
|
1840
2075
|
ocr_blocks?: Array<{
|
|
1841
2076
|
[key: string]: unknown;
|
|
1842
2077
|
}> | null | unknown;
|
|
@@ -1846,17 +2081,9 @@ type ExtractionResult = {
|
|
|
1846
2081
|
processing_time_ms?: number | null | unknown;
|
|
1847
2082
|
schema_id?: string | null | unknown;
|
|
1848
2083
|
/**
|
|
1849
|
-
* The
|
|
1850
|
-
*/
|
|
1851
|
-
schema_revision?: number | null | unknown;
|
|
1852
|
-
/**
|
|
1853
|
-
* The version of the schema/agent used for this extraction (e.g., 'v2'). Field included by default.
|
|
2084
|
+
* The version of the schema/agent used for this extraction. Field included by default.
|
|
1854
2085
|
*/
|
|
1855
2086
|
schema_version?: string | null | unknown;
|
|
1856
|
-
/**
|
|
1857
|
-
* State code. Field included by default.
|
|
1858
|
-
*/
|
|
1859
|
-
state?: string | null | unknown;
|
|
1860
2087
|
/**
|
|
1861
2088
|
* Field included by default.
|
|
1862
2089
|
*/
|
|
@@ -2026,6 +2253,10 @@ type Tenant = {
|
|
|
2026
2253
|
* Field included by default.
|
|
2027
2254
|
*/
|
|
2028
2255
|
auto_top_up_enabled: boolean;
|
|
2256
|
+
/**
|
|
2257
|
+
* The credit package to purchase when auto top-up is triggered. Field included by default.
|
|
2258
|
+
*/
|
|
2259
|
+
auto_top_up_package_id?: string | null | unknown;
|
|
2029
2260
|
/**
|
|
2030
2261
|
* Credit balance threshold to trigger auto top-up. Field included by default.
|
|
2031
2262
|
*/
|
|
@@ -2267,10 +2498,6 @@ type AgentVersion = {
|
|
|
2267
2498
|
* Field included by default.
|
|
2268
2499
|
*/
|
|
2269
2500
|
created_at: unknown;
|
|
2270
|
-
/**
|
|
2271
|
-
* Combined display version like 'v2 rev 5'
|
|
2272
|
-
*/
|
|
2273
|
-
display_version?: string | null | unknown;
|
|
2274
2501
|
/**
|
|
2275
2502
|
* Field included by default.
|
|
2276
2503
|
*/
|
|
@@ -2324,10 +2551,6 @@ type AgentVersion = {
|
|
|
2324
2551
|
* Field included by default.
|
|
2325
2552
|
*/
|
|
2326
2553
|
prompt_template: string;
|
|
2327
|
-
/**
|
|
2328
|
-
* Revision number within this schema version (increments on prompt/description changes). Field included by default.
|
|
2329
|
-
*/
|
|
2330
|
-
revision: number;
|
|
2331
2554
|
/**
|
|
2332
2555
|
* Field included by default.
|
|
2333
2556
|
*/
|
|
@@ -2393,6 +2616,39 @@ type ApplicationType = {
|
|
|
2393
2616
|
* Field included by default.
|
|
2394
2617
|
*/
|
|
2395
2618
|
name: string;
|
|
2619
|
+
/**
|
|
2620
|
+
* OAuth configuration for this application. Field included by default.
|
|
2621
|
+
*/
|
|
2622
|
+
oauth?: {
|
|
2623
|
+
/**
|
|
2624
|
+
* Allowed OAuth callback URLs for this application. Field included by default.
|
|
2625
|
+
*/
|
|
2626
|
+
callback_urls?: Array<string> | null | unknown;
|
|
2627
|
+
/**
|
|
2628
|
+
* Default callback URL if not specified in request. Field included by default.
|
|
2629
|
+
*/
|
|
2630
|
+
default_callback_url?: string | null | unknown;
|
|
2631
|
+
/**
|
|
2632
|
+
* Which OAuth providers are enabled for this app. Field included by default.
|
|
2633
|
+
*/
|
|
2634
|
+
enabled_providers?: Array<"google" | "github" | "salesforce"> | null | unknown;
|
|
2635
|
+
/**
|
|
2636
|
+
* Custom GitHub OAuth client ID (optional). Field included by default.
|
|
2637
|
+
*/
|
|
2638
|
+
github_client_id?: string | null | unknown;
|
|
2639
|
+
/**
|
|
2640
|
+
* Custom GitHub OAuth client secret (optional). Field included by default.
|
|
2641
|
+
*/
|
|
2642
|
+
github_client_secret?: string | null | unknown;
|
|
2643
|
+
/**
|
|
2644
|
+
* Custom Google OAuth client ID (optional). Field included by default.
|
|
2645
|
+
*/
|
|
2646
|
+
google_client_id?: string | null | unknown;
|
|
2647
|
+
/**
|
|
2648
|
+
* Custom Google OAuth client secret (optional). Field included by default.
|
|
2649
|
+
*/
|
|
2650
|
+
google_client_secret?: string | null | unknown;
|
|
2651
|
+
} | null | unknown;
|
|
2396
2652
|
/**
|
|
2397
2653
|
* When true, password registration withholds JWT until email is verified. Field included by default.
|
|
2398
2654
|
*/
|
|
@@ -2996,54 +3252,6 @@ type PermissionMeta = {
|
|
|
2996
3252
|
};
|
|
2997
3253
|
type: string;
|
|
2998
3254
|
};
|
|
2999
|
-
/**
|
|
3000
|
-
* A "Resource object" representing a agent_version_revision
|
|
3001
|
-
*/
|
|
3002
|
-
type AgentVersionRevision = {
|
|
3003
|
-
/**
|
|
3004
|
-
* An attributes object for a agent_version_revision
|
|
3005
|
-
*/
|
|
3006
|
-
attributes?: {
|
|
3007
|
-
/**
|
|
3008
|
-
* Optional note describing what changed in this revision. Field included by default.
|
|
3009
|
-
*/
|
|
3010
|
-
change_summary?: string | null | unknown;
|
|
3011
|
-
/**
|
|
3012
|
-
* Field included by default.
|
|
3013
|
-
*/
|
|
3014
|
-
changed_at: unknown;
|
|
3015
|
-
/**
|
|
3016
|
-
* User ID who made this change. Field included by default.
|
|
3017
|
-
*/
|
|
3018
|
-
changed_by?: string | null | unknown;
|
|
3019
|
-
/**
|
|
3020
|
-
* Combined display version like 'v2 rev 5'
|
|
3021
|
-
*/
|
|
3022
|
-
display_version?: string | null | unknown;
|
|
3023
|
-
/**
|
|
3024
|
-
* Map of field_name => description at this revision. Field included by default.
|
|
3025
|
-
*/
|
|
3026
|
-
field_descriptions?: {
|
|
3027
|
-
[key: string]: unknown;
|
|
3028
|
-
} | null | unknown;
|
|
3029
|
-
/**
|
|
3030
|
-
* The prompt template at this revision. Field included by default.
|
|
3031
|
-
*/
|
|
3032
|
-
prompt_template?: string | null | unknown;
|
|
3033
|
-
/**
|
|
3034
|
-
* Revision number within this schema version (1, 2, 3, ...). Field included by default.
|
|
3035
|
-
*/
|
|
3036
|
-
revision: number;
|
|
3037
|
-
};
|
|
3038
|
-
id: string;
|
|
3039
|
-
/**
|
|
3040
|
-
* A relationships object for a agent_version_revision
|
|
3041
|
-
*/
|
|
3042
|
-
relationships?: {
|
|
3043
|
-
[key: string]: never;
|
|
3044
|
-
};
|
|
3045
|
-
type: string;
|
|
3046
|
-
};
|
|
3047
3255
|
/**
|
|
3048
3256
|
* A "Resource object" representing a llm_analytics
|
|
3049
3257
|
*/
|
|
@@ -3506,6 +3714,36 @@ type Transfer = {
|
|
|
3506
3714
|
};
|
|
3507
3715
|
type: string;
|
|
3508
3716
|
};
|
|
3717
|
+
type ApplicationOauthInputUpdateType = {
|
|
3718
|
+
/**
|
|
3719
|
+
* Allowed OAuth callback URLs for this application
|
|
3720
|
+
*/
|
|
3721
|
+
callback_urls?: Array<string> | unknown;
|
|
3722
|
+
/**
|
|
3723
|
+
* Default callback URL if not specified in request
|
|
3724
|
+
*/
|
|
3725
|
+
default_callback_url?: string | unknown;
|
|
3726
|
+
/**
|
|
3727
|
+
* Which OAuth providers are enabled for this app
|
|
3728
|
+
*/
|
|
3729
|
+
enabled_providers?: Array<"google" | "github" | "salesforce"> | unknown;
|
|
3730
|
+
/**
|
|
3731
|
+
* Custom GitHub OAuth client ID (optional)
|
|
3732
|
+
*/
|
|
3733
|
+
github_client_id?: string | unknown;
|
|
3734
|
+
/**
|
|
3735
|
+
* Custom GitHub OAuth client secret (optional)
|
|
3736
|
+
*/
|
|
3737
|
+
github_client_secret?: string | unknown;
|
|
3738
|
+
/**
|
|
3739
|
+
* Custom Google OAuth client ID (optional)
|
|
3740
|
+
*/
|
|
3741
|
+
google_client_id?: string | unknown;
|
|
3742
|
+
/**
|
|
3743
|
+
* Custom Google OAuth client secret (optional)
|
|
3744
|
+
*/
|
|
3745
|
+
google_client_secret?: string | unknown;
|
|
3746
|
+
};
|
|
3509
3747
|
/**
|
|
3510
3748
|
* A "Resource object" representing a presigned_url
|
|
3511
3749
|
*/
|
|
@@ -3875,7 +4113,14 @@ type Subscription = {
|
|
|
3875
4113
|
* An attributes object for a subscription
|
|
3876
4114
|
*/
|
|
3877
4115
|
attributes?: {
|
|
3878
|
-
|
|
4116
|
+
/**
|
|
4117
|
+
* Field included by default.
|
|
4118
|
+
*/
|
|
4119
|
+
dunning_stage: number;
|
|
4120
|
+
/**
|
|
4121
|
+
* Field included by default.
|
|
4122
|
+
*/
|
|
4123
|
+
next_retry_at?: string | null | unknown;
|
|
3879
4124
|
};
|
|
3880
4125
|
id: string;
|
|
3881
4126
|
/**
|
|
@@ -4191,9 +4436,9 @@ type Workspace = {
|
|
|
4191
4436
|
*/
|
|
4192
4437
|
app: string;
|
|
4193
4438
|
/**
|
|
4194
|
-
* Field included by default.
|
|
4439
|
+
* Required - the application this workspace belongs to. Field included by default.
|
|
4195
4440
|
*/
|
|
4196
|
-
application_id
|
|
4441
|
+
application_id: string;
|
|
4197
4442
|
/**
|
|
4198
4443
|
* Field included by default.
|
|
4199
4444
|
*/
|
|
@@ -4202,18 +4447,10 @@ type Workspace = {
|
|
|
4202
4447
|
* Field included by default.
|
|
4203
4448
|
*/
|
|
4204
4449
|
created_at: unknown;
|
|
4205
|
-
/**
|
|
4206
|
-
* When true, documents with matching file_hash are deduplicated. When false, file_hash is discarded and duplicates are allowed. Field included by default.
|
|
4207
|
-
*/
|
|
4208
|
-
deduplicate_uploads: boolean;
|
|
4209
4450
|
/**
|
|
4210
4451
|
* Field included by default.
|
|
4211
4452
|
*/
|
|
4212
4453
|
description?: string | null | unknown;
|
|
4213
|
-
/**
|
|
4214
|
-
* Count of documents without file_hash (not ready for deduplication)
|
|
4215
|
-
*/
|
|
4216
|
-
documents_missing_hash_count?: number | unknown;
|
|
4217
4454
|
/**
|
|
4218
4455
|
* Field included by default.
|
|
4219
4456
|
*/
|
|
@@ -4234,10 +4471,6 @@ type Workspace = {
|
|
|
4234
4471
|
* Field included by default.
|
|
4235
4472
|
*/
|
|
4236
4473
|
name: string;
|
|
4237
|
-
/**
|
|
4238
|
-
* True when all documents have file_hash populated (safe to enable deduplication)
|
|
4239
|
-
*/
|
|
4240
|
-
ready_for_deduplication?: boolean | null | unknown;
|
|
4241
4474
|
/**
|
|
4242
4475
|
* Field included by default.
|
|
4243
4476
|
*/
|
|
@@ -4286,13 +4519,21 @@ type Workspace = {
|
|
|
4286
4519
|
*/
|
|
4287
4520
|
allow_overdraft: boolean;
|
|
4288
4521
|
/**
|
|
4289
|
-
* Field included by default.
|
|
4522
|
+
* Maximum overdraft credits allowed per period. Field included by default.
|
|
4290
4523
|
*/
|
|
4291
4524
|
overdraft_limit?: number | null | unknown;
|
|
4292
4525
|
/**
|
|
4293
|
-
* Field included by default.
|
|
4526
|
+
* Period for overdraft limit reset (daily, weekly, monthly). Field included by default.
|
|
4294
4527
|
*/
|
|
4295
4528
|
overdraft_period?: "daily" | "weekly" | "monthly" | unknown;
|
|
4529
|
+
/**
|
|
4530
|
+
* When the current overdraft period began. Field included by default.
|
|
4531
|
+
*/
|
|
4532
|
+
overdraft_period_started_at?: unknown;
|
|
4533
|
+
/**
|
|
4534
|
+
* Credits used from overdraft in current period. Field included by default.
|
|
4535
|
+
*/
|
|
4536
|
+
overdraft_used?: number | null | unknown;
|
|
4296
4537
|
};
|
|
4297
4538
|
/**
|
|
4298
4539
|
* Field included by default.
|
|
@@ -4627,37 +4868,34 @@ type ExtractionDocument = {
|
|
|
4627
4868
|
* Overall classification confidence (0.0 to 1.0). Field included by default.
|
|
4628
4869
|
*/
|
|
4629
4870
|
classification_confidence?: number | null | unknown;
|
|
4630
|
-
/**
|
|
4631
|
-
* The specific version of the Agent that processed this document. Field included by default.
|
|
4632
|
-
*/
|
|
4633
|
-
agent_version_id?: string | null | unknown;
|
|
4634
4871
|
uploaded_at?: string | null | unknown;
|
|
4635
4872
|
/**
|
|
4636
4873
|
* Current processing stage based on storage path
|
|
4637
4874
|
*/
|
|
4638
4875
|
stage?: string | null | unknown;
|
|
4639
4876
|
/**
|
|
4640
|
-
*
|
|
4641
|
-
*/
|
|
4642
|
-
deduplicated?: boolean | null | unknown;
|
|
4643
|
-
/**
|
|
4644
|
-
* The revision within the schema version (e.g., 5 means 'v2 rev 5'). Field included by default.
|
|
4877
|
+
* Credits billed for processing this document. Field included by default.
|
|
4645
4878
|
*/
|
|
4646
|
-
|
|
4879
|
+
billed_credits?: number | null | unknown;
|
|
4647
4880
|
/**
|
|
4648
|
-
*
|
|
4881
|
+
* Field included by default.
|
|
4649
4882
|
*/
|
|
4650
|
-
billed_credits?: number | null | unknown;
|
|
4651
4883
|
storage_path: string;
|
|
4652
4884
|
/**
|
|
4653
|
-
* SHA256 hash of the file content for deduplication
|
|
4885
|
+
* SHA256 hash of the file content for deduplication. Field included by default.
|
|
4654
4886
|
*/
|
|
4655
4887
|
file_hash?: string | null | unknown;
|
|
4888
|
+
/**
|
|
4889
|
+
* Field included by default.
|
|
4890
|
+
*/
|
|
4656
4891
|
excluded_by?: string | null | unknown;
|
|
4657
4892
|
/**
|
|
4658
|
-
* The S3 bucket where this document is stored. Set during upload/begin_upload.
|
|
4893
|
+
* The S3 bucket where this document is stored. Set during upload/begin_upload. Field included by default.
|
|
4659
4894
|
*/
|
|
4660
4895
|
bucket_name?: string | null | unknown;
|
|
4896
|
+
/**
|
|
4897
|
+
* Field included by default.
|
|
4898
|
+
*/
|
|
4661
4899
|
deleted_at?: unknown;
|
|
4662
4900
|
/**
|
|
4663
4901
|
* Classification object containing domain, document_type, municipality, state, and confidence
|
|
@@ -4674,49 +4912,76 @@ type ExtractionDocument = {
|
|
|
4674
4912
|
* Reason why this document is in the review queue
|
|
4675
4913
|
*/
|
|
4676
4914
|
queue_reason?: string | null | unknown;
|
|
4915
|
+
/**
|
|
4916
|
+
* Field included by default.
|
|
4917
|
+
*/
|
|
4677
4918
|
status?: "queued" | "processing" | "completed" | "failed" | "cancelled" | "pending_credits" | unknown;
|
|
4919
|
+
/**
|
|
4920
|
+
* Field included by default.
|
|
4921
|
+
*/
|
|
4678
4922
|
progress?: number | null | unknown;
|
|
4679
4923
|
/**
|
|
4680
|
-
* Timestamp when document was moved to output/error bucket
|
|
4924
|
+
* Timestamp when document was moved to output/error bucket. Field included by default.
|
|
4681
4925
|
*/
|
|
4682
4926
|
moved_at?: unknown;
|
|
4683
4927
|
/**
|
|
4684
|
-
* Full path (bucket/key) where document was copied after successful extraction
|
|
4928
|
+
* Full path (bucket/key) where document was copied after successful extraction. Field included by default.
|
|
4685
4929
|
*/
|
|
4686
4930
|
output_storage_path?: string | null | unknown;
|
|
4687
4931
|
/**
|
|
4688
|
-
* Metadata about the training session for this document (trained_at, user_id, scores)
|
|
4932
|
+
* Metadata about the training session for this document (trained_at, user_id, scores). Field included by default.
|
|
4689
4933
|
*/
|
|
4690
4934
|
training_metadata?: {
|
|
4691
4935
|
[key: string]: unknown;
|
|
4692
4936
|
} | null | unknown;
|
|
4693
4937
|
upload_url?: string | null | unknown;
|
|
4938
|
+
/**
|
|
4939
|
+
* Field included by default.
|
|
4940
|
+
*/
|
|
4694
4941
|
pages?: number | null | unknown;
|
|
4695
4942
|
/**
|
|
4696
|
-
* The review/verification state of the document
|
|
4943
|
+
* The review/verification state of the document. Field included by default.
|
|
4697
4944
|
*/
|
|
4698
4945
|
verification_status?: "unverified" | "partially_verified" | "fully_verified" | unknown;
|
|
4946
|
+
/**
|
|
4947
|
+
* Field included by default.
|
|
4948
|
+
*/
|
|
4699
4949
|
processed_at?: unknown;
|
|
4950
|
+
/**
|
|
4951
|
+
* Field included by default.
|
|
4952
|
+
*/
|
|
4700
4953
|
error_message?: string | null | unknown;
|
|
4954
|
+
/**
|
|
4955
|
+
* Field included by default.
|
|
4956
|
+
*/
|
|
4701
4957
|
verified_by_user_id?: string | null | unknown;
|
|
4958
|
+
/**
|
|
4959
|
+
* Field included by default.
|
|
4960
|
+
*/
|
|
4702
4961
|
file_type: "pdf" | "docx" | "image" | "zip";
|
|
4962
|
+
/**
|
|
4963
|
+
* Field included by default.
|
|
4964
|
+
*/
|
|
4703
4965
|
file_size_bytes?: number | null | unknown;
|
|
4704
4966
|
/**
|
|
4705
|
-
* Timestamp when document processing completed (status changed to :completed)
|
|
4967
|
+
* Timestamp when document processing completed (status changed to :completed). Field included by default.
|
|
4706
4968
|
*/
|
|
4707
4969
|
completed_at?: unknown;
|
|
4708
4970
|
/**
|
|
4709
|
-
* The version of the agent/schema used to process this document
|
|
4971
|
+
* The version of the agent/schema used to process this document. Field included by default.
|
|
4710
4972
|
*/
|
|
4711
4973
|
schema_version?: string | null | unknown;
|
|
4712
4974
|
presigned_view_url?: string | null | unknown;
|
|
4975
|
+
/**
|
|
4976
|
+
* Field included by default.
|
|
4977
|
+
*/
|
|
4713
4978
|
last_verified_at?: unknown;
|
|
4714
4979
|
/**
|
|
4715
4980
|
* State or province code (2-letter). Field included by default.
|
|
4716
4981
|
*/
|
|
4717
4982
|
state?: string | null | unknown;
|
|
4718
4983
|
/**
|
|
4719
|
-
* Full path (bucket/key) where document was copied after failed extraction
|
|
4984
|
+
* Full path (bucket/key) where document was copied after failed extraction. Field included by default.
|
|
4720
4985
|
*/
|
|
4721
4986
|
error_storage_path?: string | null | unknown;
|
|
4722
4987
|
/**
|
|
@@ -4724,14 +4989,16 @@ type ExtractionDocument = {
|
|
|
4724
4989
|
*/
|
|
4725
4990
|
domain?: string | null | unknown;
|
|
4726
4991
|
/**
|
|
4727
|
-
* If true, this document is excluded from training (both creating new examples and being used in retrieval)
|
|
4992
|
+
* If true, this document is excluded from training (both creating new examples and being used in retrieval). Field included by default.
|
|
4728
4993
|
*/
|
|
4729
4994
|
excluded_from_training: boolean;
|
|
4730
4995
|
/**
|
|
4731
|
-
*
|
|
4996
|
+
* Field included by default.
|
|
4732
4997
|
*/
|
|
4733
|
-
agent_id?: string | null | unknown;
|
|
4734
4998
|
excluded_at?: unknown;
|
|
4999
|
+
/**
|
|
5000
|
+
* Field included by default.
|
|
5001
|
+
*/
|
|
4735
5002
|
filename: string;
|
|
4736
5003
|
/**
|
|
4737
5004
|
* Average confidence score across all extracted fields (0.0 to 1.0). Field included by default.
|
|
@@ -4858,7 +5125,10 @@ type PostAdminWorkspacesData = {
|
|
|
4858
5125
|
* App type: extract, invoicing, crm, etc.
|
|
4859
5126
|
*/
|
|
4860
5127
|
app?: string | unknown;
|
|
4861
|
-
|
|
5128
|
+
/**
|
|
5129
|
+
* Required - the application this workspace belongs to
|
|
5130
|
+
*/
|
|
5131
|
+
application_id: string;
|
|
4862
5132
|
description?: string | unknown;
|
|
4863
5133
|
expires_at?: unknown;
|
|
4864
5134
|
initial_credits?: number | unknown;
|
|
@@ -5341,6 +5611,10 @@ type PostAdminApplicationsData = {
|
|
|
5341
5611
|
invite_only?: boolean | unknown;
|
|
5342
5612
|
logo_url?: string | unknown;
|
|
5343
5613
|
name: string;
|
|
5614
|
+
/**
|
|
5615
|
+
* OAuth configuration for this application
|
|
5616
|
+
*/
|
|
5617
|
+
oauth?: ApplicationOauthInputCreateType | unknown;
|
|
5344
5618
|
owner_id?: string | unknown;
|
|
5345
5619
|
/**
|
|
5346
5620
|
* When true, password registration withholds JWT until email is verified
|
|
@@ -5739,93 +6013,6 @@ type PostAdminMessagesResponses = {
|
|
|
5739
6013
|
};
|
|
5740
6014
|
};
|
|
5741
6015
|
type PostAdminMessagesResponse = PostAdminMessagesResponses[keyof PostAdminMessagesResponses];
|
|
5742
|
-
type PostAdminExtractionDocumentsFindOrBeginUploadData = {
|
|
5743
|
-
/**
|
|
5744
|
-
* Request body for the /extraction/documents/find_or_begin_upload operation on extraction_document resource
|
|
5745
|
-
*/
|
|
5746
|
-
body: {
|
|
5747
|
-
data: {
|
|
5748
|
-
attributes?: {
|
|
5749
|
-
batch_id?: string | unknown;
|
|
5750
|
-
content_type?: string | unknown;
|
|
5751
|
-
file_hash: string;
|
|
5752
|
-
file_size_bytes?: number | unknown;
|
|
5753
|
-
file_type?: string | unknown;
|
|
5754
|
-
filename: string;
|
|
5755
|
-
parent_document_id?: string | unknown;
|
|
5756
|
-
workspace_id: string;
|
|
5757
|
-
};
|
|
5758
|
-
relationships?: {
|
|
5759
|
-
[key: string]: never;
|
|
5760
|
-
};
|
|
5761
|
-
type?: "extraction_document";
|
|
5762
|
-
};
|
|
5763
|
-
};
|
|
5764
|
-
headers: {
|
|
5765
|
-
/**
|
|
5766
|
-
* Application ID for authentication and routing
|
|
5767
|
-
*/
|
|
5768
|
-
"x-application-key": string;
|
|
5769
|
-
};
|
|
5770
|
-
path?: never;
|
|
5771
|
-
query?: {
|
|
5772
|
-
/**
|
|
5773
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
5774
|
-
*/
|
|
5775
|
-
include?: string;
|
|
5776
|
-
/**
|
|
5777
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
5778
|
-
*/
|
|
5779
|
-
fields?: {
|
|
5780
|
-
[key: string]: unknown;
|
|
5781
|
-
};
|
|
5782
|
-
};
|
|
5783
|
-
url: "/admin/extraction/documents/find_or_begin_upload";
|
|
5784
|
-
};
|
|
5785
|
-
type PostAdminExtractionDocumentsFindOrBeginUploadErrors = {
|
|
5786
|
-
/**
|
|
5787
|
-
* Bad Request - Invalid input data or malformed request
|
|
5788
|
-
*/
|
|
5789
|
-
400: ErrorResponse;
|
|
5790
|
-
/**
|
|
5791
|
-
* Unauthorized - Missing or invalid authentication token
|
|
5792
|
-
*/
|
|
5793
|
-
401: ErrorResponse;
|
|
5794
|
-
/**
|
|
5795
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
5796
|
-
*/
|
|
5797
|
-
403: ErrorResponse;
|
|
5798
|
-
/**
|
|
5799
|
-
* Not Found - Resource does not exist
|
|
5800
|
-
*/
|
|
5801
|
-
404: ErrorResponse;
|
|
5802
|
-
/**
|
|
5803
|
-
* Too Many Requests - Rate limit exceeded
|
|
5804
|
-
*/
|
|
5805
|
-
429: ErrorResponse;
|
|
5806
|
-
/**
|
|
5807
|
-
* Internal Server Error - Unexpected server error
|
|
5808
|
-
*/
|
|
5809
|
-
500: ErrorResponse;
|
|
5810
|
-
/**
|
|
5811
|
-
* General Error
|
|
5812
|
-
*/
|
|
5813
|
-
default: Errors;
|
|
5814
|
-
};
|
|
5815
|
-
type PostAdminExtractionDocumentsFindOrBeginUploadError = PostAdminExtractionDocumentsFindOrBeginUploadErrors[keyof PostAdminExtractionDocumentsFindOrBeginUploadErrors];
|
|
5816
|
-
type PostAdminExtractionDocumentsFindOrBeginUploadResponses = {
|
|
5817
|
-
/**
|
|
5818
|
-
* Success
|
|
5819
|
-
*/
|
|
5820
|
-
201: {
|
|
5821
|
-
data?: ExtractionDocument;
|
|
5822
|
-
included?: Array<ExtractionResult>;
|
|
5823
|
-
meta?: {
|
|
5824
|
-
[key: string]: unknown;
|
|
5825
|
-
};
|
|
5826
|
-
};
|
|
5827
|
-
};
|
|
5828
|
-
type PostAdminExtractionDocumentsFindOrBeginUploadResponse = PostAdminExtractionDocumentsFindOrBeginUploadResponses[keyof PostAdminExtractionDocumentsFindOrBeginUploadResponses];
|
|
5829
6016
|
type GetAdminAgentsData = {
|
|
5830
6017
|
body?: never;
|
|
5831
6018
|
headers: {
|
|
@@ -6726,11 +6913,10 @@ type PatchAdminWorkspacesByIdData = {
|
|
|
6726
6913
|
body?: {
|
|
6727
6914
|
data: {
|
|
6728
6915
|
attributes?: {
|
|
6729
|
-
application_id?: string | unknown;
|
|
6730
6916
|
/**
|
|
6731
|
-
*
|
|
6917
|
+
* Required - the application this workspace belongs to
|
|
6732
6918
|
*/
|
|
6733
|
-
|
|
6919
|
+
application_id?: string | unknown;
|
|
6734
6920
|
is_default?: boolean | unknown;
|
|
6735
6921
|
low_balance_threshold?: number | unknown;
|
|
6736
6922
|
name?: string | unknown;
|
|
@@ -7994,200 +8180,285 @@ type GetAdminWebhookConfigsErrors = {
|
|
|
7994
8180
|
*/
|
|
7995
8181
|
default: Errors;
|
|
7996
8182
|
};
|
|
7997
|
-
type GetAdminWebhookConfigsError = GetAdminWebhookConfigsErrors[keyof GetAdminWebhookConfigsErrors];
|
|
7998
|
-
type GetAdminWebhookConfigsResponses = {
|
|
8183
|
+
type GetAdminWebhookConfigsError = GetAdminWebhookConfigsErrors[keyof GetAdminWebhookConfigsErrors];
|
|
8184
|
+
type GetAdminWebhookConfigsResponses = {
|
|
8185
|
+
/**
|
|
8186
|
+
* Success
|
|
8187
|
+
*/
|
|
8188
|
+
200: {
|
|
8189
|
+
/**
|
|
8190
|
+
* An array of resource objects representing a webhook_config
|
|
8191
|
+
*/
|
|
8192
|
+
data?: Array<WebhookConfig>;
|
|
8193
|
+
included?: Array<unknown>;
|
|
8194
|
+
meta?: {
|
|
8195
|
+
[key: string]: unknown;
|
|
8196
|
+
};
|
|
8197
|
+
};
|
|
8198
|
+
};
|
|
8199
|
+
type GetAdminWebhookConfigsResponse = GetAdminWebhookConfigsResponses[keyof GetAdminWebhookConfigsResponses];
|
|
8200
|
+
type PostAdminWebhookConfigsData = {
|
|
8201
|
+
/**
|
|
8202
|
+
* Request body for the /webhook_configs operation on webhook_config resource
|
|
8203
|
+
*/
|
|
8204
|
+
body: {
|
|
8205
|
+
data: {
|
|
8206
|
+
attributes?: {
|
|
8207
|
+
application_id?: string | unknown;
|
|
8208
|
+
enabled?: boolean | unknown;
|
|
8209
|
+
events?: Array<string> | unknown;
|
|
8210
|
+
name: string;
|
|
8211
|
+
/**
|
|
8212
|
+
* HMAC secret for webhook signature verification
|
|
8213
|
+
*/
|
|
8214
|
+
secret?: string | unknown;
|
|
8215
|
+
tenant_id?: string | unknown;
|
|
8216
|
+
/**
|
|
8217
|
+
* ISV filter: specific tenant UUIDs to receive events from (null = all)
|
|
8218
|
+
*/
|
|
8219
|
+
tenant_ids?: Array<string> | unknown;
|
|
8220
|
+
url: string;
|
|
8221
|
+
/**
|
|
8222
|
+
* Tenant filter: specific workspace UUIDs to receive events from (null = all)
|
|
8223
|
+
*/
|
|
8224
|
+
workspace_ids?: Array<string> | unknown;
|
|
8225
|
+
};
|
|
8226
|
+
relationships?: {
|
|
8227
|
+
[key: string]: never;
|
|
8228
|
+
};
|
|
8229
|
+
type?: "webhook_config";
|
|
8230
|
+
};
|
|
8231
|
+
};
|
|
8232
|
+
headers: {
|
|
8233
|
+
/**
|
|
8234
|
+
* Application ID for authentication and routing
|
|
8235
|
+
*/
|
|
8236
|
+
"x-application-key": string;
|
|
8237
|
+
};
|
|
8238
|
+
path?: never;
|
|
8239
|
+
query?: {
|
|
8240
|
+
/**
|
|
8241
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
8242
|
+
*/
|
|
8243
|
+
include?: string;
|
|
8244
|
+
/**
|
|
8245
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
8246
|
+
*/
|
|
8247
|
+
fields?: {
|
|
8248
|
+
[key: string]: unknown;
|
|
8249
|
+
};
|
|
8250
|
+
};
|
|
8251
|
+
url: "/admin/webhook_configs";
|
|
8252
|
+
};
|
|
8253
|
+
type PostAdminWebhookConfigsErrors = {
|
|
8254
|
+
/**
|
|
8255
|
+
* Bad Request - Invalid input data or malformed request
|
|
8256
|
+
*/
|
|
8257
|
+
400: ErrorResponse;
|
|
8258
|
+
/**
|
|
8259
|
+
* Unauthorized - Missing or invalid authentication token
|
|
8260
|
+
*/
|
|
8261
|
+
401: ErrorResponse;
|
|
8262
|
+
/**
|
|
8263
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
8264
|
+
*/
|
|
8265
|
+
403: ErrorResponse;
|
|
8266
|
+
/**
|
|
8267
|
+
* Not Found - Resource does not exist
|
|
8268
|
+
*/
|
|
8269
|
+
404: ErrorResponse;
|
|
8270
|
+
/**
|
|
8271
|
+
* Too Many Requests - Rate limit exceeded
|
|
8272
|
+
*/
|
|
8273
|
+
429: ErrorResponse;
|
|
8274
|
+
/**
|
|
8275
|
+
* Internal Server Error - Unexpected server error
|
|
8276
|
+
*/
|
|
8277
|
+
500: ErrorResponse;
|
|
8278
|
+
/**
|
|
8279
|
+
* General Error
|
|
8280
|
+
*/
|
|
8281
|
+
default: Errors;
|
|
8282
|
+
};
|
|
8283
|
+
type PostAdminWebhookConfigsError = PostAdminWebhookConfigsErrors[keyof PostAdminWebhookConfigsErrors];
|
|
8284
|
+
type PostAdminWebhookConfigsResponses = {
|
|
8285
|
+
/**
|
|
8286
|
+
* Success
|
|
8287
|
+
*/
|
|
8288
|
+
201: {
|
|
8289
|
+
data?: WebhookConfig;
|
|
8290
|
+
included?: Array<unknown>;
|
|
8291
|
+
meta?: {
|
|
8292
|
+
[key: string]: unknown;
|
|
8293
|
+
};
|
|
8294
|
+
};
|
|
8295
|
+
};
|
|
8296
|
+
type PostAdminWebhookConfigsResponse = PostAdminWebhookConfigsResponses[keyof PostAdminWebhookConfigsResponses];
|
|
8297
|
+
type GetAdminWorkspacesSharedData = {
|
|
8298
|
+
body?: never;
|
|
8299
|
+
headers: {
|
|
8300
|
+
/**
|
|
8301
|
+
* Application ID for authentication and routing
|
|
8302
|
+
*/
|
|
8303
|
+
"x-application-key": string;
|
|
8304
|
+
};
|
|
8305
|
+
path?: never;
|
|
8306
|
+
query?: {
|
|
8307
|
+
/**
|
|
8308
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
8309
|
+
*/
|
|
8310
|
+
filter?: {
|
|
8311
|
+
[key: string]: unknown;
|
|
8312
|
+
};
|
|
8313
|
+
/**
|
|
8314
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
8315
|
+
*/
|
|
8316
|
+
sort?: string;
|
|
8317
|
+
/**
|
|
8318
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
8319
|
+
*/
|
|
8320
|
+
include?: string;
|
|
8321
|
+
/**
|
|
8322
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
8323
|
+
*/
|
|
8324
|
+
fields?: {
|
|
8325
|
+
[key: string]: unknown;
|
|
8326
|
+
};
|
|
8327
|
+
};
|
|
8328
|
+
url: "/admin/workspaces/shared";
|
|
8329
|
+
};
|
|
8330
|
+
type GetAdminWorkspacesSharedErrors = {
|
|
8331
|
+
/**
|
|
8332
|
+
* Bad Request - Invalid input data or malformed request
|
|
8333
|
+
*/
|
|
8334
|
+
400: ErrorResponse;
|
|
8335
|
+
/**
|
|
8336
|
+
* Unauthorized - Missing or invalid authentication token
|
|
8337
|
+
*/
|
|
8338
|
+
401: ErrorResponse;
|
|
8339
|
+
/**
|
|
8340
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
8341
|
+
*/
|
|
8342
|
+
403: ErrorResponse;
|
|
8343
|
+
/**
|
|
8344
|
+
* Not Found - Resource does not exist
|
|
8345
|
+
*/
|
|
8346
|
+
404: ErrorResponse;
|
|
8347
|
+
/**
|
|
8348
|
+
* Too Many Requests - Rate limit exceeded
|
|
8349
|
+
*/
|
|
8350
|
+
429: ErrorResponse;
|
|
8351
|
+
/**
|
|
8352
|
+
* Internal Server Error - Unexpected server error
|
|
8353
|
+
*/
|
|
8354
|
+
500: ErrorResponse;
|
|
8355
|
+
/**
|
|
8356
|
+
* General Error
|
|
8357
|
+
*/
|
|
8358
|
+
default: Errors;
|
|
8359
|
+
};
|
|
8360
|
+
type GetAdminWorkspacesSharedError = GetAdminWorkspacesSharedErrors[keyof GetAdminWorkspacesSharedErrors];
|
|
8361
|
+
type GetAdminWorkspacesSharedResponses = {
|
|
8362
|
+
/**
|
|
8363
|
+
* Success
|
|
8364
|
+
*/
|
|
8365
|
+
200: {
|
|
8366
|
+
/**
|
|
8367
|
+
* An array of resource objects representing a workspace
|
|
8368
|
+
*/
|
|
8369
|
+
data?: Array<Workspace>;
|
|
8370
|
+
included?: Array<Tenant>;
|
|
8371
|
+
meta?: {
|
|
8372
|
+
[key: string]: unknown;
|
|
8373
|
+
};
|
|
8374
|
+
};
|
|
8375
|
+
};
|
|
8376
|
+
type GetAdminWorkspacesSharedResponse = GetAdminWorkspacesSharedResponses[keyof GetAdminWorkspacesSharedResponses];
|
|
8377
|
+
type PatchAdminExtractionResultsByIdSaveCorrectionsData = {
|
|
8378
|
+
/**
|
|
8379
|
+
* Request body for the /extraction/results/:id/save_corrections operation on extraction_result resource
|
|
8380
|
+
*/
|
|
8381
|
+
body: {
|
|
8382
|
+
data: {
|
|
8383
|
+
attributes?: {
|
|
8384
|
+
corrections: Array<{
|
|
8385
|
+
[key: string]: unknown;
|
|
8386
|
+
}>;
|
|
8387
|
+
};
|
|
8388
|
+
id: string;
|
|
8389
|
+
relationships?: {
|
|
8390
|
+
[key: string]: never;
|
|
8391
|
+
};
|
|
8392
|
+
type?: "extraction_result";
|
|
8393
|
+
};
|
|
8394
|
+
};
|
|
8395
|
+
headers: {
|
|
8396
|
+
/**
|
|
8397
|
+
* Application ID for authentication and routing
|
|
8398
|
+
*/
|
|
8399
|
+
"x-application-key": string;
|
|
8400
|
+
};
|
|
8401
|
+
path: {
|
|
8402
|
+
id: string;
|
|
8403
|
+
};
|
|
8404
|
+
query?: {
|
|
8405
|
+
/**
|
|
8406
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
8407
|
+
*/
|
|
8408
|
+
include?: string;
|
|
8409
|
+
/**
|
|
8410
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
8411
|
+
*/
|
|
8412
|
+
fields?: {
|
|
8413
|
+
[key: string]: unknown;
|
|
8414
|
+
};
|
|
8415
|
+
};
|
|
8416
|
+
url: "/admin/extraction/results/{id}/save_corrections";
|
|
8417
|
+
};
|
|
8418
|
+
type PatchAdminExtractionResultsByIdSaveCorrectionsErrors = {
|
|
8419
|
+
/**
|
|
8420
|
+
* Bad Request - Invalid input data or malformed request
|
|
8421
|
+
*/
|
|
8422
|
+
400: ErrorResponse;
|
|
8423
|
+
/**
|
|
8424
|
+
* Unauthorized - Missing or invalid authentication token
|
|
8425
|
+
*/
|
|
8426
|
+
401: ErrorResponse;
|
|
8427
|
+
/**
|
|
8428
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
8429
|
+
*/
|
|
8430
|
+
403: ErrorResponse;
|
|
8431
|
+
/**
|
|
8432
|
+
* Not Found - Resource does not exist
|
|
8433
|
+
*/
|
|
8434
|
+
404: ErrorResponse;
|
|
8435
|
+
/**
|
|
8436
|
+
* Too Many Requests - Rate limit exceeded
|
|
8437
|
+
*/
|
|
8438
|
+
429: ErrorResponse;
|
|
8439
|
+
/**
|
|
8440
|
+
* Internal Server Error - Unexpected server error
|
|
8441
|
+
*/
|
|
8442
|
+
500: ErrorResponse;
|
|
8443
|
+
/**
|
|
8444
|
+
* General Error
|
|
8445
|
+
*/
|
|
8446
|
+
default: Errors;
|
|
8447
|
+
};
|
|
8448
|
+
type PatchAdminExtractionResultsByIdSaveCorrectionsError = PatchAdminExtractionResultsByIdSaveCorrectionsErrors[keyof PatchAdminExtractionResultsByIdSaveCorrectionsErrors];
|
|
8449
|
+
type PatchAdminExtractionResultsByIdSaveCorrectionsResponses = {
|
|
7999
8450
|
/**
|
|
8000
8451
|
* Success
|
|
8001
8452
|
*/
|
|
8002
8453
|
200: {
|
|
8003
|
-
|
|
8004
|
-
* An array of resource objects representing a webhook_config
|
|
8005
|
-
*/
|
|
8006
|
-
data?: Array<WebhookConfig>;
|
|
8007
|
-
included?: Array<unknown>;
|
|
8008
|
-
meta?: {
|
|
8009
|
-
[key: string]: unknown;
|
|
8010
|
-
};
|
|
8011
|
-
};
|
|
8012
|
-
};
|
|
8013
|
-
type GetAdminWebhookConfigsResponse = GetAdminWebhookConfigsResponses[keyof GetAdminWebhookConfigsResponses];
|
|
8014
|
-
type PostAdminWebhookConfigsData = {
|
|
8015
|
-
/**
|
|
8016
|
-
* Request body for the /webhook_configs operation on webhook_config resource
|
|
8017
|
-
*/
|
|
8018
|
-
body: {
|
|
8019
|
-
data: {
|
|
8020
|
-
attributes?: {
|
|
8021
|
-
application_id?: string | unknown;
|
|
8022
|
-
enabled?: boolean | unknown;
|
|
8023
|
-
events?: Array<string> | unknown;
|
|
8024
|
-
name: string;
|
|
8025
|
-
/**
|
|
8026
|
-
* HMAC secret for webhook signature verification
|
|
8027
|
-
*/
|
|
8028
|
-
secret?: string | unknown;
|
|
8029
|
-
tenant_id?: string | unknown;
|
|
8030
|
-
/**
|
|
8031
|
-
* ISV filter: specific tenant UUIDs to receive events from (null = all)
|
|
8032
|
-
*/
|
|
8033
|
-
tenant_ids?: Array<string> | unknown;
|
|
8034
|
-
url: string;
|
|
8035
|
-
/**
|
|
8036
|
-
* Tenant filter: specific workspace UUIDs to receive events from (null = all)
|
|
8037
|
-
*/
|
|
8038
|
-
workspace_ids?: Array<string> | unknown;
|
|
8039
|
-
};
|
|
8040
|
-
relationships?: {
|
|
8041
|
-
[key: string]: never;
|
|
8042
|
-
};
|
|
8043
|
-
type?: "webhook_config";
|
|
8044
|
-
};
|
|
8045
|
-
};
|
|
8046
|
-
headers: {
|
|
8047
|
-
/**
|
|
8048
|
-
* Application ID for authentication and routing
|
|
8049
|
-
*/
|
|
8050
|
-
"x-application-key": string;
|
|
8051
|
-
};
|
|
8052
|
-
path?: never;
|
|
8053
|
-
query?: {
|
|
8054
|
-
/**
|
|
8055
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
8056
|
-
*/
|
|
8057
|
-
include?: string;
|
|
8058
|
-
/**
|
|
8059
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
8060
|
-
*/
|
|
8061
|
-
fields?: {
|
|
8062
|
-
[key: string]: unknown;
|
|
8063
|
-
};
|
|
8064
|
-
};
|
|
8065
|
-
url: "/admin/webhook_configs";
|
|
8066
|
-
};
|
|
8067
|
-
type PostAdminWebhookConfigsErrors = {
|
|
8068
|
-
/**
|
|
8069
|
-
* Bad Request - Invalid input data or malformed request
|
|
8070
|
-
*/
|
|
8071
|
-
400: ErrorResponse;
|
|
8072
|
-
/**
|
|
8073
|
-
* Unauthorized - Missing or invalid authentication token
|
|
8074
|
-
*/
|
|
8075
|
-
401: ErrorResponse;
|
|
8076
|
-
/**
|
|
8077
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
8078
|
-
*/
|
|
8079
|
-
403: ErrorResponse;
|
|
8080
|
-
/**
|
|
8081
|
-
* Not Found - Resource does not exist
|
|
8082
|
-
*/
|
|
8083
|
-
404: ErrorResponse;
|
|
8084
|
-
/**
|
|
8085
|
-
* Too Many Requests - Rate limit exceeded
|
|
8086
|
-
*/
|
|
8087
|
-
429: ErrorResponse;
|
|
8088
|
-
/**
|
|
8089
|
-
* Internal Server Error - Unexpected server error
|
|
8090
|
-
*/
|
|
8091
|
-
500: ErrorResponse;
|
|
8092
|
-
/**
|
|
8093
|
-
* General Error
|
|
8094
|
-
*/
|
|
8095
|
-
default: Errors;
|
|
8096
|
-
};
|
|
8097
|
-
type PostAdminWebhookConfigsError = PostAdminWebhookConfigsErrors[keyof PostAdminWebhookConfigsErrors];
|
|
8098
|
-
type PostAdminWebhookConfigsResponses = {
|
|
8099
|
-
/**
|
|
8100
|
-
* Success
|
|
8101
|
-
*/
|
|
8102
|
-
201: {
|
|
8103
|
-
data?: WebhookConfig;
|
|
8454
|
+
data?: ExtractionResult;
|
|
8104
8455
|
included?: Array<unknown>;
|
|
8105
8456
|
meta?: {
|
|
8106
8457
|
[key: string]: unknown;
|
|
8107
8458
|
};
|
|
8108
8459
|
};
|
|
8109
8460
|
};
|
|
8110
|
-
type
|
|
8111
|
-
type GetAdminWorkspacesSharedData = {
|
|
8112
|
-
body?: never;
|
|
8113
|
-
headers: {
|
|
8114
|
-
/**
|
|
8115
|
-
* Application ID for authentication and routing
|
|
8116
|
-
*/
|
|
8117
|
-
"x-application-key": string;
|
|
8118
|
-
};
|
|
8119
|
-
path?: never;
|
|
8120
|
-
query?: {
|
|
8121
|
-
/**
|
|
8122
|
-
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
8123
|
-
*/
|
|
8124
|
-
filter?: {
|
|
8125
|
-
[key: string]: unknown;
|
|
8126
|
-
};
|
|
8127
|
-
/**
|
|
8128
|
-
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
8129
|
-
*/
|
|
8130
|
-
sort?: string;
|
|
8131
|
-
/**
|
|
8132
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
8133
|
-
*/
|
|
8134
|
-
include?: string;
|
|
8135
|
-
/**
|
|
8136
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
8137
|
-
*/
|
|
8138
|
-
fields?: {
|
|
8139
|
-
[key: string]: unknown;
|
|
8140
|
-
};
|
|
8141
|
-
};
|
|
8142
|
-
url: "/admin/workspaces/shared";
|
|
8143
|
-
};
|
|
8144
|
-
type GetAdminWorkspacesSharedErrors = {
|
|
8145
|
-
/**
|
|
8146
|
-
* Bad Request - Invalid input data or malformed request
|
|
8147
|
-
*/
|
|
8148
|
-
400: ErrorResponse;
|
|
8149
|
-
/**
|
|
8150
|
-
* Unauthorized - Missing or invalid authentication token
|
|
8151
|
-
*/
|
|
8152
|
-
401: ErrorResponse;
|
|
8153
|
-
/**
|
|
8154
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
8155
|
-
*/
|
|
8156
|
-
403: ErrorResponse;
|
|
8157
|
-
/**
|
|
8158
|
-
* Not Found - Resource does not exist
|
|
8159
|
-
*/
|
|
8160
|
-
404: ErrorResponse;
|
|
8161
|
-
/**
|
|
8162
|
-
* Too Many Requests - Rate limit exceeded
|
|
8163
|
-
*/
|
|
8164
|
-
429: ErrorResponse;
|
|
8165
|
-
/**
|
|
8166
|
-
* Internal Server Error - Unexpected server error
|
|
8167
|
-
*/
|
|
8168
|
-
500: ErrorResponse;
|
|
8169
|
-
/**
|
|
8170
|
-
* General Error
|
|
8171
|
-
*/
|
|
8172
|
-
default: Errors;
|
|
8173
|
-
};
|
|
8174
|
-
type GetAdminWorkspacesSharedError = GetAdminWorkspacesSharedErrors[keyof GetAdminWorkspacesSharedErrors];
|
|
8175
|
-
type GetAdminWorkspacesSharedResponses = {
|
|
8176
|
-
/**
|
|
8177
|
-
* Success
|
|
8178
|
-
*/
|
|
8179
|
-
200: {
|
|
8180
|
-
/**
|
|
8181
|
-
* An array of resource objects representing a workspace
|
|
8182
|
-
*/
|
|
8183
|
-
data?: Array<Workspace>;
|
|
8184
|
-
included?: Array<Tenant>;
|
|
8185
|
-
meta?: {
|
|
8186
|
-
[key: string]: unknown;
|
|
8187
|
-
};
|
|
8188
|
-
};
|
|
8189
|
-
};
|
|
8190
|
-
type GetAdminWorkspacesSharedResponse = GetAdminWorkspacesSharedResponses[keyof GetAdminWorkspacesSharedResponses];
|
|
8461
|
+
type PatchAdminExtractionResultsByIdSaveCorrectionsResponse = PatchAdminExtractionResultsByIdSaveCorrectionsResponses[keyof PatchAdminExtractionResultsByIdSaveCorrectionsResponses];
|
|
8191
8462
|
type GetAdminNotificationLogsStatsData = {
|
|
8192
8463
|
body?: never;
|
|
8193
8464
|
headers: {
|
|
@@ -9641,7 +9912,7 @@ type PatchAdminExtractionDocumentsByIdReprocessData = {
|
|
|
9641
9912
|
data: {
|
|
9642
9913
|
attributes?: {
|
|
9643
9914
|
/**
|
|
9644
|
-
* The version of the agent/schema used to process this document
|
|
9915
|
+
* The version of the agent/schema used to process this document
|
|
9645
9916
|
*/
|
|
9646
9917
|
schema_version?: string | unknown;
|
|
9647
9918
|
schema_version_id?: string | unknown;
|
|
@@ -9831,88 +10102,6 @@ type PostAdminAgentsByIdExportResponses = {
|
|
|
9831
10102
|
};
|
|
9832
10103
|
};
|
|
9833
10104
|
type PostAdminAgentsByIdExportResponse = PostAdminAgentsByIdExportResponses[keyof PostAdminAgentsByIdExportResponses];
|
|
9834
|
-
type GetAdminAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsData = {
|
|
9835
|
-
body?: never;
|
|
9836
|
-
headers: {
|
|
9837
|
-
/**
|
|
9838
|
-
* Application ID for authentication and routing
|
|
9839
|
-
*/
|
|
9840
|
-
"x-application-key": string;
|
|
9841
|
-
};
|
|
9842
|
-
path: {
|
|
9843
|
-
agent_version_id: string;
|
|
9844
|
-
};
|
|
9845
|
-
query?: {
|
|
9846
|
-
/**
|
|
9847
|
-
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
9848
|
-
*/
|
|
9849
|
-
filter?: {
|
|
9850
|
-
[key: string]: unknown;
|
|
9851
|
-
};
|
|
9852
|
-
/**
|
|
9853
|
-
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
9854
|
-
*/
|
|
9855
|
-
sort?: string;
|
|
9856
|
-
/**
|
|
9857
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
9858
|
-
*/
|
|
9859
|
-
include?: string;
|
|
9860
|
-
/**
|
|
9861
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
9862
|
-
*/
|
|
9863
|
-
fields?: {
|
|
9864
|
-
[key: string]: unknown;
|
|
9865
|
-
};
|
|
9866
|
-
};
|
|
9867
|
-
url: "/admin/agent_version_revisions/agent_versions/{agent_version_id}/revisions";
|
|
9868
|
-
};
|
|
9869
|
-
type GetAdminAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsErrors = {
|
|
9870
|
-
/**
|
|
9871
|
-
* Bad Request - Invalid input data or malformed request
|
|
9872
|
-
*/
|
|
9873
|
-
400: ErrorResponse;
|
|
9874
|
-
/**
|
|
9875
|
-
* Unauthorized - Missing or invalid authentication token
|
|
9876
|
-
*/
|
|
9877
|
-
401: ErrorResponse;
|
|
9878
|
-
/**
|
|
9879
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
9880
|
-
*/
|
|
9881
|
-
403: ErrorResponse;
|
|
9882
|
-
/**
|
|
9883
|
-
* Not Found - Resource does not exist
|
|
9884
|
-
*/
|
|
9885
|
-
404: ErrorResponse;
|
|
9886
|
-
/**
|
|
9887
|
-
* Too Many Requests - Rate limit exceeded
|
|
9888
|
-
*/
|
|
9889
|
-
429: ErrorResponse;
|
|
9890
|
-
/**
|
|
9891
|
-
* Internal Server Error - Unexpected server error
|
|
9892
|
-
*/
|
|
9893
|
-
500: ErrorResponse;
|
|
9894
|
-
/**
|
|
9895
|
-
* General Error
|
|
9896
|
-
*/
|
|
9897
|
-
default: Errors;
|
|
9898
|
-
};
|
|
9899
|
-
type GetAdminAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsError = GetAdminAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsErrors[keyof GetAdminAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsErrors];
|
|
9900
|
-
type GetAdminAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsResponses = {
|
|
9901
|
-
/**
|
|
9902
|
-
* Success
|
|
9903
|
-
*/
|
|
9904
|
-
200: {
|
|
9905
|
-
/**
|
|
9906
|
-
* An array of resource objects representing a agent_version_revision
|
|
9907
|
-
*/
|
|
9908
|
-
data?: Array<AgentVersionRevision>;
|
|
9909
|
-
included?: Array<unknown>;
|
|
9910
|
-
meta?: {
|
|
9911
|
-
[key: string]: unknown;
|
|
9912
|
-
};
|
|
9913
|
-
};
|
|
9914
|
-
};
|
|
9915
|
-
type GetAdminAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsResponse = GetAdminAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsResponses[keyof GetAdminAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsResponses];
|
|
9916
10105
|
type GetAdminWorkspaceMembershipsData = {
|
|
9917
10106
|
body?: never;
|
|
9918
10107
|
headers: {
|
|
@@ -12582,6 +12771,68 @@ type PostAdminTenantsResponses = {
|
|
|
12582
12771
|
};
|
|
12583
12772
|
};
|
|
12584
12773
|
type PostAdminTenantsResponse = PostAdminTenantsResponses[keyof PostAdminTenantsResponses];
|
|
12774
|
+
type DeleteAdminExtractionResultsByIdData = {
|
|
12775
|
+
body?: never;
|
|
12776
|
+
headers: {
|
|
12777
|
+
/**
|
|
12778
|
+
* Application ID for authentication and routing
|
|
12779
|
+
*/
|
|
12780
|
+
"x-application-key": string;
|
|
12781
|
+
};
|
|
12782
|
+
path: {
|
|
12783
|
+
id: string;
|
|
12784
|
+
};
|
|
12785
|
+
query?: {
|
|
12786
|
+
/**
|
|
12787
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
12788
|
+
*/
|
|
12789
|
+
include?: string;
|
|
12790
|
+
/**
|
|
12791
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
12792
|
+
*/
|
|
12793
|
+
fields?: {
|
|
12794
|
+
[key: string]: unknown;
|
|
12795
|
+
};
|
|
12796
|
+
};
|
|
12797
|
+
url: "/admin/extraction/results/{id}";
|
|
12798
|
+
};
|
|
12799
|
+
type DeleteAdminExtractionResultsByIdErrors = {
|
|
12800
|
+
/**
|
|
12801
|
+
* Bad Request - Invalid input data or malformed request
|
|
12802
|
+
*/
|
|
12803
|
+
400: ErrorResponse;
|
|
12804
|
+
/**
|
|
12805
|
+
* Unauthorized - Missing or invalid authentication token
|
|
12806
|
+
*/
|
|
12807
|
+
401: ErrorResponse;
|
|
12808
|
+
/**
|
|
12809
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
12810
|
+
*/
|
|
12811
|
+
403: ErrorResponse;
|
|
12812
|
+
/**
|
|
12813
|
+
* Not Found - Resource does not exist
|
|
12814
|
+
*/
|
|
12815
|
+
404: ErrorResponse;
|
|
12816
|
+
/**
|
|
12817
|
+
* Too Many Requests - Rate limit exceeded
|
|
12818
|
+
*/
|
|
12819
|
+
429: ErrorResponse;
|
|
12820
|
+
/**
|
|
12821
|
+
* Internal Server Error - Unexpected server error
|
|
12822
|
+
*/
|
|
12823
|
+
500: ErrorResponse;
|
|
12824
|
+
/**
|
|
12825
|
+
* General Error
|
|
12826
|
+
*/
|
|
12827
|
+
default: Errors;
|
|
12828
|
+
};
|
|
12829
|
+
type DeleteAdminExtractionResultsByIdError = DeleteAdminExtractionResultsByIdErrors[keyof DeleteAdminExtractionResultsByIdErrors];
|
|
12830
|
+
type DeleteAdminExtractionResultsByIdResponses = {
|
|
12831
|
+
/**
|
|
12832
|
+
* Deleted successfully
|
|
12833
|
+
*/
|
|
12834
|
+
200: unknown;
|
|
12835
|
+
};
|
|
12585
12836
|
type GetAdminExtractionResultsByIdData = {
|
|
12586
12837
|
body?: never;
|
|
12587
12838
|
headers: {
|
|
@@ -12651,6 +12902,94 @@ type GetAdminExtractionResultsByIdResponses = {
|
|
|
12651
12902
|
};
|
|
12652
12903
|
};
|
|
12653
12904
|
type GetAdminExtractionResultsByIdResponse = GetAdminExtractionResultsByIdResponses[keyof GetAdminExtractionResultsByIdResponses];
|
|
12905
|
+
type PatchAdminExtractionResultsByIdData = {
|
|
12906
|
+
/**
|
|
12907
|
+
* Request body for the /extraction/results/:id operation on extraction_result resource
|
|
12908
|
+
*/
|
|
12909
|
+
body?: {
|
|
12910
|
+
data: {
|
|
12911
|
+
attributes?: {
|
|
12912
|
+
credits_used?: string | unknown;
|
|
12913
|
+
extracted_fields?: {
|
|
12914
|
+
[key: string]: unknown;
|
|
12915
|
+
} | unknown;
|
|
12916
|
+
processing_time_ms?: number | unknown;
|
|
12917
|
+
status?: "pending" | "completed" | "failed" | unknown;
|
|
12918
|
+
};
|
|
12919
|
+
id: string;
|
|
12920
|
+
relationships?: {
|
|
12921
|
+
[key: string]: never;
|
|
12922
|
+
};
|
|
12923
|
+
type?: "extraction_result";
|
|
12924
|
+
};
|
|
12925
|
+
};
|
|
12926
|
+
headers: {
|
|
12927
|
+
/**
|
|
12928
|
+
* Application ID for authentication and routing
|
|
12929
|
+
*/
|
|
12930
|
+
"x-application-key": string;
|
|
12931
|
+
};
|
|
12932
|
+
path: {
|
|
12933
|
+
id: string;
|
|
12934
|
+
};
|
|
12935
|
+
query?: {
|
|
12936
|
+
/**
|
|
12937
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
12938
|
+
*/
|
|
12939
|
+
include?: string;
|
|
12940
|
+
/**
|
|
12941
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
12942
|
+
*/
|
|
12943
|
+
fields?: {
|
|
12944
|
+
[key: string]: unknown;
|
|
12945
|
+
};
|
|
12946
|
+
};
|
|
12947
|
+
url: "/admin/extraction/results/{id}";
|
|
12948
|
+
};
|
|
12949
|
+
type PatchAdminExtractionResultsByIdErrors = {
|
|
12950
|
+
/**
|
|
12951
|
+
* Bad Request - Invalid input data or malformed request
|
|
12952
|
+
*/
|
|
12953
|
+
400: ErrorResponse;
|
|
12954
|
+
/**
|
|
12955
|
+
* Unauthorized - Missing or invalid authentication token
|
|
12956
|
+
*/
|
|
12957
|
+
401: ErrorResponse;
|
|
12958
|
+
/**
|
|
12959
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
12960
|
+
*/
|
|
12961
|
+
403: ErrorResponse;
|
|
12962
|
+
/**
|
|
12963
|
+
* Not Found - Resource does not exist
|
|
12964
|
+
*/
|
|
12965
|
+
404: ErrorResponse;
|
|
12966
|
+
/**
|
|
12967
|
+
* Too Many Requests - Rate limit exceeded
|
|
12968
|
+
*/
|
|
12969
|
+
429: ErrorResponse;
|
|
12970
|
+
/**
|
|
12971
|
+
* Internal Server Error - Unexpected server error
|
|
12972
|
+
*/
|
|
12973
|
+
500: ErrorResponse;
|
|
12974
|
+
/**
|
|
12975
|
+
* General Error
|
|
12976
|
+
*/
|
|
12977
|
+
default: Errors;
|
|
12978
|
+
};
|
|
12979
|
+
type PatchAdminExtractionResultsByIdError = PatchAdminExtractionResultsByIdErrors[keyof PatchAdminExtractionResultsByIdErrors];
|
|
12980
|
+
type PatchAdminExtractionResultsByIdResponses = {
|
|
12981
|
+
/**
|
|
12982
|
+
* Success
|
|
12983
|
+
*/
|
|
12984
|
+
200: {
|
|
12985
|
+
data?: ExtractionResult;
|
|
12986
|
+
included?: Array<unknown>;
|
|
12987
|
+
meta?: {
|
|
12988
|
+
[key: string]: unknown;
|
|
12989
|
+
};
|
|
12990
|
+
};
|
|
12991
|
+
};
|
|
12992
|
+
type PatchAdminExtractionResultsByIdResponse = PatchAdminExtractionResultsByIdResponses[keyof PatchAdminExtractionResultsByIdResponses];
|
|
12654
12993
|
type PostAdminUsersAuthConfirmData = {
|
|
12655
12994
|
/**
|
|
12656
12995
|
* Request body for the /users/auth/confirm operation on user resource
|
|
@@ -12868,7 +13207,71 @@ type PostAdminAgentsByIdPublishVersionResponses = {
|
|
|
12868
13207
|
* Success
|
|
12869
13208
|
*/
|
|
12870
13209
|
201: {
|
|
12871
|
-
|
|
13210
|
+
/**
|
|
13211
|
+
* A "Resource object" representing a agent
|
|
13212
|
+
*/
|
|
13213
|
+
data?: {
|
|
13214
|
+
/**
|
|
13215
|
+
* An attributes object for a agent
|
|
13216
|
+
*/
|
|
13217
|
+
attributes?: {
|
|
13218
|
+
cloned_from_id?: string | null | unknown;
|
|
13219
|
+
default_instructions?: string | null | unknown;
|
|
13220
|
+
description?: string | null | unknown;
|
|
13221
|
+
domain: "legal" | "medical" | "financial" | "compliance" | "support" | "recruitment" | "general" | "extraction" | "municipal" | "logistics" | "utility";
|
|
13222
|
+
instructions?: string | null | unknown;
|
|
13223
|
+
is_system: boolean;
|
|
13224
|
+
name: string;
|
|
13225
|
+
prompt_template: string;
|
|
13226
|
+
schema_definition: {
|
|
13227
|
+
[key: string]: unknown;
|
|
13228
|
+
};
|
|
13229
|
+
tags: Array<string>;
|
|
13230
|
+
/**
|
|
13231
|
+
* Denormalized from workspace for unique name constraint
|
|
13232
|
+
*/
|
|
13233
|
+
tenant_id?: string | null | unknown;
|
|
13234
|
+
test_result?: {
|
|
13235
|
+
[key: string]: unknown;
|
|
13236
|
+
} | null | unknown;
|
|
13237
|
+
validation_result?: {
|
|
13238
|
+
[key: string]: unknown;
|
|
13239
|
+
} | null | unknown;
|
|
13240
|
+
version: string;
|
|
13241
|
+
workspace_id?: string | null | unknown;
|
|
13242
|
+
};
|
|
13243
|
+
id: string;
|
|
13244
|
+
/**
|
|
13245
|
+
* A relationships object for a agent
|
|
13246
|
+
*/
|
|
13247
|
+
relationships?: {
|
|
13248
|
+
versions?: {
|
|
13249
|
+
/**
|
|
13250
|
+
* Relationship data for versions
|
|
13251
|
+
*/
|
|
13252
|
+
data?: Array<{
|
|
13253
|
+
id: string;
|
|
13254
|
+
meta?: {
|
|
13255
|
+
[key: string]: unknown;
|
|
13256
|
+
};
|
|
13257
|
+
type: string;
|
|
13258
|
+
}>;
|
|
13259
|
+
};
|
|
13260
|
+
workspace?: {
|
|
13261
|
+
/**
|
|
13262
|
+
* An identifier for workspace
|
|
13263
|
+
*/
|
|
13264
|
+
data?: {
|
|
13265
|
+
id: string;
|
|
13266
|
+
meta?: {
|
|
13267
|
+
[key: string]: unknown;
|
|
13268
|
+
};
|
|
13269
|
+
type: string;
|
|
13270
|
+
} | null;
|
|
13271
|
+
};
|
|
13272
|
+
};
|
|
13273
|
+
type: string;
|
|
13274
|
+
};
|
|
12872
13275
|
included?: Array<AgentVersion>;
|
|
12873
13276
|
meta?: {
|
|
12874
13277
|
[key: string]: unknown;
|
|
@@ -15101,6 +15504,7 @@ type PatchAdminPaymentMethodsByIdData = {
|
|
|
15101
15504
|
data: {
|
|
15102
15505
|
attributes?: {
|
|
15103
15506
|
is_default?: boolean | unknown;
|
|
15507
|
+
nickname?: string | unknown;
|
|
15104
15508
|
};
|
|
15105
15509
|
id: string;
|
|
15106
15510
|
relationships?: {
|
|
@@ -15733,7 +16137,6 @@ type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueData = {
|
|
|
15733
16137
|
[key: string]: unknown;
|
|
15734
16138
|
};
|
|
15735
16139
|
limit?: number;
|
|
15736
|
-
filter_by_threshold?: boolean;
|
|
15737
16140
|
};
|
|
15738
16141
|
url: "/admin/extraction/documents/workspace/{workspace_id}/review_queue";
|
|
15739
16142
|
};
|
|
@@ -17265,6 +17668,10 @@ type PatchAdminExtractionDocumentsByIdVerificationData = {
|
|
|
17265
17668
|
body?: {
|
|
17266
17669
|
data: {
|
|
17267
17670
|
attributes?: {
|
|
17671
|
+
/**
|
|
17672
|
+
* Average confidence score across all extracted fields (0.0 to 1.0)
|
|
17673
|
+
*/
|
|
17674
|
+
avg_confidence?: number | unknown;
|
|
17268
17675
|
last_verified_at?: unknown;
|
|
17269
17676
|
/**
|
|
17270
17677
|
* The review/verification state of the document
|
|
@@ -18129,38 +18536,125 @@ type GetAdminAiMessagesErrors = {
|
|
|
18129
18536
|
*/
|
|
18130
18537
|
default: Errors;
|
|
18131
18538
|
};
|
|
18132
|
-
type GetAdminAiMessagesError = GetAdminAiMessagesErrors[keyof GetAdminAiMessagesErrors];
|
|
18133
|
-
type GetAdminAiMessagesResponses = {
|
|
18539
|
+
type GetAdminAiMessagesError = GetAdminAiMessagesErrors[keyof GetAdminAiMessagesErrors];
|
|
18540
|
+
type GetAdminAiMessagesResponses = {
|
|
18541
|
+
/**
|
|
18542
|
+
* Success
|
|
18543
|
+
*/
|
|
18544
|
+
200: {
|
|
18545
|
+
/**
|
|
18546
|
+
* An array of resource objects representing a message
|
|
18547
|
+
*/
|
|
18548
|
+
data?: Array<Message>;
|
|
18549
|
+
included?: Array<unknown>;
|
|
18550
|
+
meta?: {
|
|
18551
|
+
[key: string]: unknown;
|
|
18552
|
+
};
|
|
18553
|
+
};
|
|
18554
|
+
};
|
|
18555
|
+
type GetAdminAiMessagesResponse = GetAdminAiMessagesResponses[keyof GetAdminAiMessagesResponses];
|
|
18556
|
+
type PostAdminAiMessagesData = {
|
|
18557
|
+
/**
|
|
18558
|
+
* Request body for the /ai/messages operation on message resource
|
|
18559
|
+
*/
|
|
18560
|
+
body: {
|
|
18561
|
+
data: {
|
|
18562
|
+
attributes?: {
|
|
18563
|
+
content: string;
|
|
18564
|
+
conversation_id: string;
|
|
18565
|
+
role: "system" | "user" | "assistant";
|
|
18566
|
+
};
|
|
18567
|
+
relationships?: {
|
|
18568
|
+
[key: string]: never;
|
|
18569
|
+
};
|
|
18570
|
+
type?: "message";
|
|
18571
|
+
};
|
|
18572
|
+
};
|
|
18573
|
+
headers: {
|
|
18574
|
+
/**
|
|
18575
|
+
* Application ID for authentication and routing
|
|
18576
|
+
*/
|
|
18577
|
+
"x-application-key": string;
|
|
18578
|
+
};
|
|
18579
|
+
path?: never;
|
|
18580
|
+
query?: {
|
|
18581
|
+
/**
|
|
18582
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
18583
|
+
*/
|
|
18584
|
+
include?: string;
|
|
18585
|
+
/**
|
|
18586
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
18587
|
+
*/
|
|
18588
|
+
fields?: {
|
|
18589
|
+
[key: string]: unknown;
|
|
18590
|
+
};
|
|
18591
|
+
};
|
|
18592
|
+
url: "/admin/ai/messages";
|
|
18593
|
+
};
|
|
18594
|
+
type PostAdminAiMessagesErrors = {
|
|
18595
|
+
/**
|
|
18596
|
+
* Bad Request - Invalid input data or malformed request
|
|
18597
|
+
*/
|
|
18598
|
+
400: ErrorResponse;
|
|
18599
|
+
/**
|
|
18600
|
+
* Unauthorized - Missing or invalid authentication token
|
|
18601
|
+
*/
|
|
18602
|
+
401: ErrorResponse;
|
|
18603
|
+
/**
|
|
18604
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
18605
|
+
*/
|
|
18606
|
+
403: ErrorResponse;
|
|
18607
|
+
/**
|
|
18608
|
+
* Not Found - Resource does not exist
|
|
18609
|
+
*/
|
|
18610
|
+
404: ErrorResponse;
|
|
18611
|
+
/**
|
|
18612
|
+
* Too Many Requests - Rate limit exceeded
|
|
18613
|
+
*/
|
|
18614
|
+
429: ErrorResponse;
|
|
18615
|
+
/**
|
|
18616
|
+
* Internal Server Error - Unexpected server error
|
|
18617
|
+
*/
|
|
18618
|
+
500: ErrorResponse;
|
|
18619
|
+
/**
|
|
18620
|
+
* General Error
|
|
18621
|
+
*/
|
|
18622
|
+
default: Errors;
|
|
18623
|
+
};
|
|
18624
|
+
type PostAdminAiMessagesError = PostAdminAiMessagesErrors[keyof PostAdminAiMessagesErrors];
|
|
18625
|
+
type PostAdminAiMessagesResponses = {
|
|
18134
18626
|
/**
|
|
18135
18627
|
* Success
|
|
18136
18628
|
*/
|
|
18137
|
-
|
|
18138
|
-
|
|
18139
|
-
* An array of resource objects representing a message
|
|
18140
|
-
*/
|
|
18141
|
-
data?: Array<Message>;
|
|
18629
|
+
201: {
|
|
18630
|
+
data?: Message;
|
|
18142
18631
|
included?: Array<unknown>;
|
|
18143
18632
|
meta?: {
|
|
18144
18633
|
[key: string]: unknown;
|
|
18145
18634
|
};
|
|
18146
18635
|
};
|
|
18147
18636
|
};
|
|
18148
|
-
type
|
|
18149
|
-
type
|
|
18637
|
+
type PostAdminAiMessagesResponse = PostAdminAiMessagesResponses[keyof PostAdminAiMessagesResponses];
|
|
18638
|
+
type PostAdminPaymentMethodsTokenizeData = {
|
|
18150
18639
|
/**
|
|
18151
|
-
* Request body for the /
|
|
18640
|
+
* Request body for the /payment-methods/tokenize operation on payment_method resource
|
|
18152
18641
|
*/
|
|
18153
18642
|
body: {
|
|
18154
18643
|
data: {
|
|
18155
18644
|
attributes?: {
|
|
18156
|
-
|
|
18157
|
-
|
|
18158
|
-
|
|
18645
|
+
card_number: string;
|
|
18646
|
+
customer_id?: string | unknown;
|
|
18647
|
+
cvc: string;
|
|
18648
|
+
exp_month: number;
|
|
18649
|
+
exp_year: number;
|
|
18650
|
+
holder_name: string;
|
|
18651
|
+
nickname?: string | unknown;
|
|
18652
|
+
zip_code: string;
|
|
18159
18653
|
};
|
|
18160
18654
|
relationships?: {
|
|
18161
18655
|
[key: string]: never;
|
|
18162
18656
|
};
|
|
18163
|
-
type?: "
|
|
18657
|
+
type?: "payment_method";
|
|
18164
18658
|
};
|
|
18165
18659
|
};
|
|
18166
18660
|
headers: {
|
|
@@ -18182,9 +18676,9 @@ type PostAdminAiMessagesData = {
|
|
|
18182
18676
|
[key: string]: unknown;
|
|
18183
18677
|
};
|
|
18184
18678
|
};
|
|
18185
|
-
url: "/admin/
|
|
18679
|
+
url: "/admin/payment-methods/tokenize";
|
|
18186
18680
|
};
|
|
18187
|
-
type
|
|
18681
|
+
type PostAdminPaymentMethodsTokenizeErrors = {
|
|
18188
18682
|
/**
|
|
18189
18683
|
* Bad Request - Invalid input data or malformed request
|
|
18190
18684
|
*/
|
|
@@ -18214,20 +18708,20 @@ type PostAdminAiMessagesErrors = {
|
|
|
18214
18708
|
*/
|
|
18215
18709
|
default: Errors;
|
|
18216
18710
|
};
|
|
18217
|
-
type
|
|
18218
|
-
type
|
|
18711
|
+
type PostAdminPaymentMethodsTokenizeError = PostAdminPaymentMethodsTokenizeErrors[keyof PostAdminPaymentMethodsTokenizeErrors];
|
|
18712
|
+
type PostAdminPaymentMethodsTokenizeResponses = {
|
|
18219
18713
|
/**
|
|
18220
18714
|
* Success
|
|
18221
18715
|
*/
|
|
18222
18716
|
201: {
|
|
18223
|
-
data?:
|
|
18717
|
+
data?: PaymentMethod;
|
|
18224
18718
|
included?: Array<unknown>;
|
|
18225
18719
|
meta?: {
|
|
18226
18720
|
[key: string]: unknown;
|
|
18227
18721
|
};
|
|
18228
18722
|
};
|
|
18229
18723
|
};
|
|
18230
|
-
type
|
|
18724
|
+
type PostAdminPaymentMethodsTokenizeResponse = PostAdminPaymentMethodsTokenizeResponses[keyof PostAdminPaymentMethodsTokenizeResponses];
|
|
18231
18725
|
type GetAdminAuditLogsActivityData = {
|
|
18232
18726
|
body?: never;
|
|
18233
18727
|
headers: {
|
|
@@ -22572,102 +23066,8 @@ type PostAdminAgentsImportResponses = {
|
|
|
22572
23066
|
};
|
|
22573
23067
|
};
|
|
22574
23068
|
type PostAdminAgentsImportResponse = PostAdminAgentsImportResponses[keyof PostAdminAgentsImportResponses];
|
|
22575
|
-
type
|
|
22576
|
-
|
|
22577
|
-
* Request body for the /extraction/results operation on extraction_result resource
|
|
22578
|
-
*/
|
|
22579
|
-
body: {
|
|
22580
|
-
data: {
|
|
22581
|
-
attributes?: {
|
|
22582
|
-
/**
|
|
22583
|
-
* The Agent that performed this extraction
|
|
22584
|
-
*/
|
|
22585
|
-
agent_id?: string | unknown;
|
|
22586
|
-
/**
|
|
22587
|
-
* The specific version of the Agent that performed this extraction
|
|
22588
|
-
*/
|
|
22589
|
-
agent_version_id?: string | unknown;
|
|
22590
|
-
/**
|
|
22591
|
-
* Average confidence across all extracted fields
|
|
22592
|
-
*/
|
|
22593
|
-
avg_confidence?: number | unknown;
|
|
22594
|
-
/**
|
|
22595
|
-
* Character count of extracted text
|
|
22596
|
-
*/
|
|
22597
|
-
char_count?: number | unknown;
|
|
22598
|
-
/**
|
|
22599
|
-
* Overall classification confidence score
|
|
22600
|
-
*/
|
|
22601
|
-
classification_confidence?: number | unknown;
|
|
22602
|
-
credits_used?: string | unknown;
|
|
22603
|
-
document_id: string;
|
|
22604
|
-
/**
|
|
22605
|
-
* Specific document type (Traffic Citation, Invoice, etc.)
|
|
22606
|
-
*/
|
|
22607
|
-
document_type?: string | unknown;
|
|
22608
|
-
/**
|
|
22609
|
-
* Document domain (legal, financial, medical, etc.)
|
|
22610
|
-
*/
|
|
22611
|
-
domain?: string | unknown;
|
|
22612
|
-
extracted_fields?: {
|
|
22613
|
-
[key: string]: unknown;
|
|
22614
|
-
} | unknown;
|
|
22615
|
-
extraction_mode?: "base" | "custom" | "hybrid" | unknown;
|
|
22616
|
-
/**
|
|
22617
|
-
* Image height in pixels (for image documents)
|
|
22618
|
-
*/
|
|
22619
|
-
image_height?: number | unknown;
|
|
22620
|
-
/**
|
|
22621
|
-
* Image width in pixels (for image documents)
|
|
22622
|
-
*/
|
|
22623
|
-
image_width?: number | unknown;
|
|
22624
|
-
/**
|
|
22625
|
-
* Line count of extracted text
|
|
22626
|
-
*/
|
|
22627
|
-
line_count?: number | unknown;
|
|
22628
|
-
/**
|
|
22629
|
-
* LLM model used for extraction
|
|
22630
|
-
*/
|
|
22631
|
-
llm_model?: string | unknown;
|
|
22632
|
-
/**
|
|
22633
|
-
* Municipality or agency name
|
|
22634
|
-
*/
|
|
22635
|
-
municipality?: string | unknown;
|
|
22636
|
-
ocr_blocks?: Array<{
|
|
22637
|
-
[key: string]: unknown;
|
|
22638
|
-
}> | unknown;
|
|
22639
|
-
/**
|
|
22640
|
-
* OCR provider used (DocTriage, LlamaParse)
|
|
22641
|
-
*/
|
|
22642
|
-
ocr_provider?: string | unknown;
|
|
22643
|
-
processing_time_ms?: number | unknown;
|
|
22644
|
-
schema_id?: string | unknown;
|
|
22645
|
-
/**
|
|
22646
|
-
* The revision within the schema version (e.g., 5 means 'v2 rev 5')
|
|
22647
|
-
*/
|
|
22648
|
-
schema_revision?: number | unknown;
|
|
22649
|
-
/**
|
|
22650
|
-
* The version of the schema/agent used for this extraction (e.g., 'v2')
|
|
22651
|
-
*/
|
|
22652
|
-
schema_version?: string | unknown;
|
|
22653
|
-
/**
|
|
22654
|
-
* State code
|
|
22655
|
-
*/
|
|
22656
|
-
state?: string | unknown;
|
|
22657
|
-
status?: "pending" | "completed" | "failed" | unknown;
|
|
22658
|
-
used_training_example_ids?: Array<string> | unknown;
|
|
22659
|
-
/**
|
|
22660
|
-
* Word count of extracted text
|
|
22661
|
-
*/
|
|
22662
|
-
word_count?: number | unknown;
|
|
22663
|
-
workspace_id: string;
|
|
22664
|
-
};
|
|
22665
|
-
relationships?: {
|
|
22666
|
-
[key: string]: never;
|
|
22667
|
-
};
|
|
22668
|
-
type?: "extraction_result";
|
|
22669
|
-
};
|
|
22670
|
-
};
|
|
23069
|
+
type GetAdminExtractionResultsData = {
|
|
23070
|
+
body?: never;
|
|
22671
23071
|
headers: {
|
|
22672
23072
|
/**
|
|
22673
23073
|
* Application ID for authentication and routing
|
|
@@ -22676,6 +23076,16 @@ type PostAdminExtractionResultsData = {
|
|
|
22676
23076
|
};
|
|
22677
23077
|
path?: never;
|
|
22678
23078
|
query?: {
|
|
23079
|
+
/**
|
|
23080
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
23081
|
+
*/
|
|
23082
|
+
filter?: {
|
|
23083
|
+
[key: string]: unknown;
|
|
23084
|
+
};
|
|
23085
|
+
/**
|
|
23086
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
23087
|
+
*/
|
|
23088
|
+
sort?: string;
|
|
22679
23089
|
/**
|
|
22680
23090
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
22681
23091
|
*/
|
|
@@ -22689,7 +23099,7 @@ type PostAdminExtractionResultsData = {
|
|
|
22689
23099
|
};
|
|
22690
23100
|
url: "/admin/extraction/results";
|
|
22691
23101
|
};
|
|
22692
|
-
type
|
|
23102
|
+
type GetAdminExtractionResultsErrors = {
|
|
22693
23103
|
/**
|
|
22694
23104
|
* Bad Request - Invalid input data or malformed request
|
|
22695
23105
|
*/
|
|
@@ -22719,20 +23129,23 @@ type PostAdminExtractionResultsErrors = {
|
|
|
22719
23129
|
*/
|
|
22720
23130
|
default: Errors;
|
|
22721
23131
|
};
|
|
22722
|
-
type
|
|
22723
|
-
type
|
|
23132
|
+
type GetAdminExtractionResultsError = GetAdminExtractionResultsErrors[keyof GetAdminExtractionResultsErrors];
|
|
23133
|
+
type GetAdminExtractionResultsResponses = {
|
|
22724
23134
|
/**
|
|
22725
23135
|
* Success
|
|
22726
23136
|
*/
|
|
22727
|
-
|
|
22728
|
-
|
|
23137
|
+
200: {
|
|
23138
|
+
/**
|
|
23139
|
+
* An array of resource objects representing a extraction_result
|
|
23140
|
+
*/
|
|
23141
|
+
data?: Array<ExtractionResult>;
|
|
22729
23142
|
included?: Array<unknown>;
|
|
22730
23143
|
meta?: {
|
|
22731
23144
|
[key: string]: unknown;
|
|
22732
23145
|
};
|
|
22733
23146
|
};
|
|
22734
23147
|
};
|
|
22735
|
-
type
|
|
23148
|
+
type GetAdminExtractionResultsResponse = GetAdminExtractionResultsResponses[keyof GetAdminExtractionResultsResponses];
|
|
22736
23149
|
type GetAdminWebhookDeliveriesByIdData = {
|
|
22737
23150
|
body?: never;
|
|
22738
23151
|
headers: {
|
|
@@ -22989,6 +23402,7 @@ type PostAdminTrainingExamplesData = {
|
|
|
22989
23402
|
* The type of document (e.g., 'Invoice', 'Receipt', 'Contract')
|
|
22990
23403
|
*/
|
|
22991
23404
|
document_type?: string | unknown;
|
|
23405
|
+
embedding?: unknown;
|
|
22992
23406
|
/**
|
|
22993
23407
|
* The field name that was corrected (e.g., 'customer_name', 'total_amount')
|
|
22994
23408
|
*/
|
|
@@ -23952,169 +24366,21 @@ type GetAdminDocumentsStatsErrors = {
|
|
|
23952
24366
|
*/
|
|
23953
24367
|
default: Errors;
|
|
23954
24368
|
};
|
|
23955
|
-
type GetAdminDocumentsStatsError = GetAdminDocumentsStatsErrors[keyof GetAdminDocumentsStatsErrors];
|
|
23956
|
-
type GetAdminDocumentsStatsResponses = {
|
|
23957
|
-
/**
|
|
23958
|
-
* Success
|
|
23959
|
-
*/
|
|
23960
|
-
200: {
|
|
23961
|
-
data?: DocumentStats;
|
|
23962
|
-
included?: Array<unknown>;
|
|
23963
|
-
meta?: {
|
|
23964
|
-
[key: string]: unknown;
|
|
23965
|
-
};
|
|
23966
|
-
};
|
|
23967
|
-
};
|
|
23968
|
-
type GetAdminDocumentsStatsResponse = GetAdminDocumentsStatsResponses[keyof GetAdminDocumentsStatsResponses];
|
|
23969
|
-
type GetAdminExtractionDocumentsData = {
|
|
23970
|
-
body?: never;
|
|
23971
|
-
headers: {
|
|
23972
|
-
/**
|
|
23973
|
-
* Application ID for authentication and routing
|
|
23974
|
-
*/
|
|
23975
|
-
"x-application-key": string;
|
|
23976
|
-
};
|
|
23977
|
-
path?: never;
|
|
23978
|
-
query?: {
|
|
23979
|
-
/**
|
|
23980
|
-
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
23981
|
-
*/
|
|
23982
|
-
filter?: {
|
|
23983
|
-
[key: string]: unknown;
|
|
23984
|
-
};
|
|
23985
|
-
/**
|
|
23986
|
-
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
23987
|
-
*/
|
|
23988
|
-
sort?: string;
|
|
23989
|
-
/**
|
|
23990
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
23991
|
-
*/
|
|
23992
|
-
include?: string;
|
|
23993
|
-
/**
|
|
23994
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
23995
|
-
*/
|
|
23996
|
-
fields?: {
|
|
23997
|
-
[key: string]: unknown;
|
|
23998
|
-
};
|
|
23999
|
-
};
|
|
24000
|
-
url: "/admin/extraction/documents";
|
|
24001
|
-
};
|
|
24002
|
-
type GetAdminExtractionDocumentsErrors = {
|
|
24003
|
-
/**
|
|
24004
|
-
* Bad Request - Invalid input data or malformed request
|
|
24005
|
-
*/
|
|
24006
|
-
400: ErrorResponse;
|
|
24007
|
-
/**
|
|
24008
|
-
* Unauthorized - Missing or invalid authentication token
|
|
24009
|
-
*/
|
|
24010
|
-
401: ErrorResponse;
|
|
24011
|
-
/**
|
|
24012
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
24013
|
-
*/
|
|
24014
|
-
403: ErrorResponse;
|
|
24015
|
-
/**
|
|
24016
|
-
* Not Found - Resource does not exist
|
|
24017
|
-
*/
|
|
24018
|
-
404: ErrorResponse;
|
|
24019
|
-
/**
|
|
24020
|
-
* Too Many Requests - Rate limit exceeded
|
|
24021
|
-
*/
|
|
24022
|
-
429: ErrorResponse;
|
|
24023
|
-
/**
|
|
24024
|
-
* Internal Server Error - Unexpected server error
|
|
24025
|
-
*/
|
|
24026
|
-
500: ErrorResponse;
|
|
24027
|
-
/**
|
|
24028
|
-
* General Error
|
|
24029
|
-
*/
|
|
24030
|
-
default: Errors;
|
|
24031
|
-
};
|
|
24032
|
-
type GetAdminExtractionDocumentsError = GetAdminExtractionDocumentsErrors[keyof GetAdminExtractionDocumentsErrors];
|
|
24033
|
-
type GetAdminExtractionDocumentsResponses = {
|
|
24034
|
-
/**
|
|
24035
|
-
* Success
|
|
24036
|
-
*/
|
|
24037
|
-
200: {
|
|
24038
|
-
/**
|
|
24039
|
-
* An array of resource objects representing a extraction_document
|
|
24040
|
-
*/
|
|
24041
|
-
data?: Array<ExtractionDocument>;
|
|
24042
|
-
included?: Array<ExtractionResult>;
|
|
24043
|
-
meta?: {
|
|
24044
|
-
[key: string]: unknown;
|
|
24045
|
-
};
|
|
24046
|
-
};
|
|
24047
|
-
};
|
|
24048
|
-
type GetAdminExtractionDocumentsResponse = GetAdminExtractionDocumentsResponses[keyof GetAdminExtractionDocumentsResponses];
|
|
24049
|
-
type GetAdminWalletUsageBreakdownData = {
|
|
24050
|
-
body?: never;
|
|
24051
|
-
headers: {
|
|
24052
|
-
/**
|
|
24053
|
-
* Application ID for authentication and routing
|
|
24054
|
-
*/
|
|
24055
|
-
"x-application-key": string;
|
|
24056
|
-
};
|
|
24057
|
-
path?: never;
|
|
24058
|
-
query?: {
|
|
24059
|
-
/**
|
|
24060
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
24061
|
-
*/
|
|
24062
|
-
include?: string;
|
|
24063
|
-
/**
|
|
24064
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
24065
|
-
*/
|
|
24066
|
-
fields?: {
|
|
24067
|
-
[key: string]: unknown;
|
|
24068
|
-
};
|
|
24069
|
-
tenant_id?: string;
|
|
24070
|
-
};
|
|
24071
|
-
url: "/admin/wallet/usage_breakdown";
|
|
24072
|
-
};
|
|
24073
|
-
type GetAdminWalletUsageBreakdownErrors = {
|
|
24074
|
-
/**
|
|
24075
|
-
* Bad Request - Invalid input data or malformed request
|
|
24076
|
-
*/
|
|
24077
|
-
400: ErrorResponse;
|
|
24078
|
-
/**
|
|
24079
|
-
* Unauthorized - Missing or invalid authentication token
|
|
24080
|
-
*/
|
|
24081
|
-
401: ErrorResponse;
|
|
24082
|
-
/**
|
|
24083
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
24084
|
-
*/
|
|
24085
|
-
403: ErrorResponse;
|
|
24086
|
-
/**
|
|
24087
|
-
* Not Found - Resource does not exist
|
|
24088
|
-
*/
|
|
24089
|
-
404: ErrorResponse;
|
|
24090
|
-
/**
|
|
24091
|
-
* Too Many Requests - Rate limit exceeded
|
|
24092
|
-
*/
|
|
24093
|
-
429: ErrorResponse;
|
|
24094
|
-
/**
|
|
24095
|
-
* Internal Server Error - Unexpected server error
|
|
24096
|
-
*/
|
|
24097
|
-
500: ErrorResponse;
|
|
24098
|
-
/**
|
|
24099
|
-
* General Error
|
|
24100
|
-
*/
|
|
24101
|
-
default: Errors;
|
|
24102
|
-
};
|
|
24103
|
-
type GetAdminWalletUsageBreakdownError = GetAdminWalletUsageBreakdownErrors[keyof GetAdminWalletUsageBreakdownErrors];
|
|
24104
|
-
type GetAdminWalletUsageBreakdownResponses = {
|
|
24369
|
+
type GetAdminDocumentsStatsError = GetAdminDocumentsStatsErrors[keyof GetAdminDocumentsStatsErrors];
|
|
24370
|
+
type GetAdminDocumentsStatsResponses = {
|
|
24105
24371
|
/**
|
|
24106
24372
|
* Success
|
|
24107
24373
|
*/
|
|
24108
24374
|
200: {
|
|
24109
|
-
data?:
|
|
24110
|
-
included?: Array<
|
|
24375
|
+
data?: DocumentStats;
|
|
24376
|
+
included?: Array<unknown>;
|
|
24111
24377
|
meta?: {
|
|
24112
24378
|
[key: string]: unknown;
|
|
24113
24379
|
};
|
|
24114
24380
|
};
|
|
24115
24381
|
};
|
|
24116
|
-
type
|
|
24117
|
-
type
|
|
24382
|
+
type GetAdminDocumentsStatsResponse = GetAdminDocumentsStatsResponses[keyof GetAdminDocumentsStatsResponses];
|
|
24383
|
+
type GetAdminExtractionDocumentsData = {
|
|
24118
24384
|
body?: never;
|
|
24119
24385
|
headers: {
|
|
24120
24386
|
/**
|
|
@@ -24122,9 +24388,87 @@ type GetAdminAgentVersionRevisionsByIdData = {
|
|
|
24122
24388
|
*/
|
|
24123
24389
|
"x-application-key": string;
|
|
24124
24390
|
};
|
|
24125
|
-
path
|
|
24126
|
-
|
|
24391
|
+
path?: never;
|
|
24392
|
+
query?: {
|
|
24393
|
+
/**
|
|
24394
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
24395
|
+
*/
|
|
24396
|
+
filter?: {
|
|
24397
|
+
[key: string]: unknown;
|
|
24398
|
+
};
|
|
24399
|
+
/**
|
|
24400
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
24401
|
+
*/
|
|
24402
|
+
sort?: string;
|
|
24403
|
+
/**
|
|
24404
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
24405
|
+
*/
|
|
24406
|
+
include?: string;
|
|
24407
|
+
/**
|
|
24408
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
24409
|
+
*/
|
|
24410
|
+
fields?: {
|
|
24411
|
+
[key: string]: unknown;
|
|
24412
|
+
};
|
|
24413
|
+
};
|
|
24414
|
+
url: "/admin/extraction/documents";
|
|
24415
|
+
};
|
|
24416
|
+
type GetAdminExtractionDocumentsErrors = {
|
|
24417
|
+
/**
|
|
24418
|
+
* Bad Request - Invalid input data or malformed request
|
|
24419
|
+
*/
|
|
24420
|
+
400: ErrorResponse;
|
|
24421
|
+
/**
|
|
24422
|
+
* Unauthorized - Missing or invalid authentication token
|
|
24423
|
+
*/
|
|
24424
|
+
401: ErrorResponse;
|
|
24425
|
+
/**
|
|
24426
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
24427
|
+
*/
|
|
24428
|
+
403: ErrorResponse;
|
|
24429
|
+
/**
|
|
24430
|
+
* Not Found - Resource does not exist
|
|
24431
|
+
*/
|
|
24432
|
+
404: ErrorResponse;
|
|
24433
|
+
/**
|
|
24434
|
+
* Too Many Requests - Rate limit exceeded
|
|
24435
|
+
*/
|
|
24436
|
+
429: ErrorResponse;
|
|
24437
|
+
/**
|
|
24438
|
+
* Internal Server Error - Unexpected server error
|
|
24439
|
+
*/
|
|
24440
|
+
500: ErrorResponse;
|
|
24441
|
+
/**
|
|
24442
|
+
* General Error
|
|
24443
|
+
*/
|
|
24444
|
+
default: Errors;
|
|
24445
|
+
};
|
|
24446
|
+
type GetAdminExtractionDocumentsError = GetAdminExtractionDocumentsErrors[keyof GetAdminExtractionDocumentsErrors];
|
|
24447
|
+
type GetAdminExtractionDocumentsResponses = {
|
|
24448
|
+
/**
|
|
24449
|
+
* Success
|
|
24450
|
+
*/
|
|
24451
|
+
200: {
|
|
24452
|
+
/**
|
|
24453
|
+
* An array of resource objects representing a extraction_document
|
|
24454
|
+
*/
|
|
24455
|
+
data?: Array<ExtractionDocument>;
|
|
24456
|
+
included?: Array<ExtractionResult>;
|
|
24457
|
+
meta?: {
|
|
24458
|
+
[key: string]: unknown;
|
|
24459
|
+
};
|
|
24127
24460
|
};
|
|
24461
|
+
};
|
|
24462
|
+
type GetAdminExtractionDocumentsResponse = GetAdminExtractionDocumentsResponses[keyof GetAdminExtractionDocumentsResponses];
|
|
24463
|
+
type GetAdminWalletUsageBreakdownData = {
|
|
24464
|
+
body?: never;
|
|
24465
|
+
headers: {
|
|
24466
|
+
/**
|
|
24467
|
+
* Application ID for authentication and routing
|
|
24468
|
+
*/
|
|
24469
|
+
"x-application-key": string;
|
|
24470
|
+
};
|
|
24471
|
+
path?: never;
|
|
24128
24472
|
query?: {
|
|
24129
24473
|
/**
|
|
24130
24474
|
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
@@ -24136,10 +24480,11 @@ type GetAdminAgentVersionRevisionsByIdData = {
|
|
|
24136
24480
|
fields?: {
|
|
24137
24481
|
[key: string]: unknown;
|
|
24138
24482
|
};
|
|
24483
|
+
tenant_id?: string;
|
|
24139
24484
|
};
|
|
24140
|
-
url: "/admin/
|
|
24485
|
+
url: "/admin/wallet/usage_breakdown";
|
|
24141
24486
|
};
|
|
24142
|
-
type
|
|
24487
|
+
type GetAdminWalletUsageBreakdownErrors = {
|
|
24143
24488
|
/**
|
|
24144
24489
|
* Bad Request - Invalid input data or malformed request
|
|
24145
24490
|
*/
|
|
@@ -24169,20 +24514,20 @@ type GetAdminAgentVersionRevisionsByIdErrors = {
|
|
|
24169
24514
|
*/
|
|
24170
24515
|
default: Errors;
|
|
24171
24516
|
};
|
|
24172
|
-
type
|
|
24173
|
-
type
|
|
24517
|
+
type GetAdminWalletUsageBreakdownError = GetAdminWalletUsageBreakdownErrors[keyof GetAdminWalletUsageBreakdownErrors];
|
|
24518
|
+
type GetAdminWalletUsageBreakdownResponses = {
|
|
24174
24519
|
/**
|
|
24175
24520
|
* Success
|
|
24176
24521
|
*/
|
|
24177
24522
|
200: {
|
|
24178
|
-
data?:
|
|
24179
|
-
included?: Array<
|
|
24523
|
+
data?: Wallet;
|
|
24524
|
+
included?: Array<Plan>;
|
|
24180
24525
|
meta?: {
|
|
24181
24526
|
[key: string]: unknown;
|
|
24182
24527
|
};
|
|
24183
24528
|
};
|
|
24184
24529
|
};
|
|
24185
|
-
type
|
|
24530
|
+
type GetAdminWalletUsageBreakdownResponse = GetAdminWalletUsageBreakdownResponses[keyof GetAdminWalletUsageBreakdownResponses];
|
|
24186
24531
|
type GetAdminApplicationsByApplicationIdEmailTemplatesData = {
|
|
24187
24532
|
body?: never;
|
|
24188
24533
|
headers: {
|
|
@@ -26243,11 +26588,12 @@ type PostAdminPaymentMethodsData = {
|
|
|
26243
26588
|
data: {
|
|
26244
26589
|
attributes?: {
|
|
26245
26590
|
brand?: string | unknown;
|
|
26246
|
-
customer_id
|
|
26591
|
+
customer_id?: string | unknown;
|
|
26247
26592
|
exp_month?: number | unknown;
|
|
26248
26593
|
exp_year?: number | unknown;
|
|
26249
26594
|
is_default?: boolean | unknown;
|
|
26250
26595
|
last4?: string | unknown;
|
|
26596
|
+
nickname?: string | unknown;
|
|
26251
26597
|
provider?: "qorpay" | unknown;
|
|
26252
26598
|
provider_token: string;
|
|
26253
26599
|
type: "card" | "bank_account";
|
|
@@ -27407,192 +27753,103 @@ type GetAdminTenantsByTenantIdWorkspaceStatsErrors = {
|
|
|
27407
27753
|
*/
|
|
27408
27754
|
default: Errors;
|
|
27409
27755
|
};
|
|
27410
|
-
type GetAdminTenantsByTenantIdWorkspaceStatsError = GetAdminTenantsByTenantIdWorkspaceStatsErrors[keyof GetAdminTenantsByTenantIdWorkspaceStatsErrors];
|
|
27411
|
-
type GetAdminTenantsByTenantIdWorkspaceStatsResponses = {
|
|
27412
|
-
/**
|
|
27413
|
-
* Success
|
|
27414
|
-
*/
|
|
27415
|
-
200: {
|
|
27416
|
-
/**
|
|
27417
|
-
* An array of resource objects representing a workspace_document_stats
|
|
27418
|
-
*/
|
|
27419
|
-
data?: Array<WorkspaceDocumentStats>;
|
|
27420
|
-
included?: Array<unknown>;
|
|
27421
|
-
meta?: {
|
|
27422
|
-
[key: string]: unknown;
|
|
27423
|
-
};
|
|
27424
|
-
};
|
|
27425
|
-
};
|
|
27426
|
-
type GetAdminTenantsByTenantIdWorkspaceStatsResponse = GetAdminTenantsByTenantIdWorkspaceStatsResponses[keyof GetAdminTenantsByTenantIdWorkspaceStatsResponses];
|
|
27427
|
-
type PostAdminAgentsByIdDiscoverSchemaData = {
|
|
27428
|
-
/**
|
|
27429
|
-
* Request body for the /agents/:id/discover_schema operation on agent resource
|
|
27430
|
-
*/
|
|
27431
|
-
body: {
|
|
27432
|
-
data: {
|
|
27433
|
-
/**
|
|
27434
|
-
* ID of document to analyze
|
|
27435
|
-
*/
|
|
27436
|
-
document_id: string;
|
|
27437
|
-
};
|
|
27438
|
-
};
|
|
27439
|
-
headers: {
|
|
27440
|
-
/**
|
|
27441
|
-
* Application ID for authentication and routing
|
|
27442
|
-
*/
|
|
27443
|
-
"x-application-key": string;
|
|
27444
|
-
};
|
|
27445
|
-
path: {
|
|
27446
|
-
/**
|
|
27447
|
-
* Agent ID (automatically mapped from route)
|
|
27448
|
-
*/
|
|
27449
|
-
id: string;
|
|
27450
|
-
};
|
|
27451
|
-
query?: never;
|
|
27452
|
-
url: "/admin/agents/{id}/discover_schema";
|
|
27453
|
-
};
|
|
27454
|
-
type PostAdminAgentsByIdDiscoverSchemaErrors = {
|
|
27455
|
-
/**
|
|
27456
|
-
* Bad Request - Invalid input data or malformed request
|
|
27457
|
-
*/
|
|
27458
|
-
400: ErrorResponse;
|
|
27459
|
-
/**
|
|
27460
|
-
* Unauthorized - Missing or invalid authentication token
|
|
27461
|
-
*/
|
|
27462
|
-
401: ErrorResponse;
|
|
27463
|
-
/**
|
|
27464
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
27465
|
-
*/
|
|
27466
|
-
403: ErrorResponse;
|
|
27467
|
-
/**
|
|
27468
|
-
* Not Found - Resource does not exist
|
|
27469
|
-
*/
|
|
27470
|
-
404: ErrorResponse;
|
|
27471
|
-
/**
|
|
27472
|
-
* Too Many Requests - Rate limit exceeded
|
|
27473
|
-
*/
|
|
27474
|
-
429: ErrorResponse;
|
|
27475
|
-
/**
|
|
27476
|
-
* Internal Server Error - Unexpected server error
|
|
27477
|
-
*/
|
|
27478
|
-
500: ErrorResponse;
|
|
27479
|
-
/**
|
|
27480
|
-
* General Error
|
|
27481
|
-
*/
|
|
27482
|
-
default: Errors;
|
|
27483
|
-
};
|
|
27484
|
-
type PostAdminAgentsByIdDiscoverSchemaError = PostAdminAgentsByIdDiscoverSchemaErrors[keyof PostAdminAgentsByIdDiscoverSchemaErrors];
|
|
27485
|
-
type PostAdminAgentsByIdDiscoverSchemaResponses = {
|
|
27486
|
-
/**
|
|
27487
|
-
* Success
|
|
27488
|
-
*/
|
|
27489
|
-
201: {
|
|
27490
|
-
[key: string]: unknown;
|
|
27491
|
-
};
|
|
27492
|
-
};
|
|
27493
|
-
type PostAdminAgentsByIdDiscoverSchemaResponse = PostAdminAgentsByIdDiscoverSchemaResponses[keyof PostAdminAgentsByIdDiscoverSchemaResponses];
|
|
27494
|
-
type PostAdminAgentsByIdTestData = {
|
|
27495
|
-
/**
|
|
27496
|
-
* Request body for the /agents/:id/test operation on agent resource
|
|
27497
|
-
*/
|
|
27498
|
-
body: {
|
|
27499
|
-
data: {
|
|
27500
|
-
attributes?: {
|
|
27501
|
-
sample_input: string;
|
|
27502
|
-
};
|
|
27503
|
-
relationships?: {
|
|
27504
|
-
[key: string]: never;
|
|
27505
|
-
};
|
|
27506
|
-
type?: "agent";
|
|
27507
|
-
};
|
|
27508
|
-
};
|
|
27509
|
-
headers: {
|
|
27510
|
-
/**
|
|
27511
|
-
* Application ID for authentication and routing
|
|
27512
|
-
*/
|
|
27513
|
-
"x-application-key": string;
|
|
27514
|
-
};
|
|
27515
|
-
path: {
|
|
27516
|
-
/**
|
|
27517
|
-
* Agent ID (from URL path parameter)
|
|
27518
|
-
*/
|
|
27519
|
-
id: string;
|
|
27520
|
-
};
|
|
27521
|
-
query?: {
|
|
27522
|
-
/**
|
|
27523
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
27524
|
-
*/
|
|
27525
|
-
include?: string;
|
|
27526
|
-
/**
|
|
27527
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
27528
|
-
*/
|
|
27529
|
-
fields?: {
|
|
27530
|
-
[key: string]: unknown;
|
|
27531
|
-
};
|
|
27532
|
-
};
|
|
27533
|
-
url: "/admin/agents/{id}/test";
|
|
27534
|
-
};
|
|
27535
|
-
type PostAdminAgentsByIdTestErrors = {
|
|
27536
|
-
/**
|
|
27537
|
-
* Bad Request - Invalid input data or malformed request
|
|
27538
|
-
*/
|
|
27539
|
-
400: ErrorResponse;
|
|
27540
|
-
/**
|
|
27541
|
-
* Unauthorized - Missing or invalid authentication token
|
|
27542
|
-
*/
|
|
27543
|
-
401: ErrorResponse;
|
|
27544
|
-
/**
|
|
27545
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
27546
|
-
*/
|
|
27547
|
-
403: ErrorResponse;
|
|
27548
|
-
/**
|
|
27549
|
-
* Not Found - Resource does not exist
|
|
27550
|
-
*/
|
|
27551
|
-
404: ErrorResponse;
|
|
27552
|
-
/**
|
|
27553
|
-
* Too Many Requests - Rate limit exceeded
|
|
27554
|
-
*/
|
|
27555
|
-
429: ErrorResponse;
|
|
27556
|
-
/**
|
|
27557
|
-
* Internal Server Error - Unexpected server error
|
|
27558
|
-
*/
|
|
27559
|
-
500: ErrorResponse;
|
|
27560
|
-
/**
|
|
27561
|
-
* General Error
|
|
27562
|
-
*/
|
|
27563
|
-
default: Errors;
|
|
27564
|
-
};
|
|
27565
|
-
type PostAdminAgentsByIdTestError = PostAdminAgentsByIdTestErrors[keyof PostAdminAgentsByIdTestErrors];
|
|
27566
|
-
type PostAdminAgentsByIdTestResponses = {
|
|
27756
|
+
type GetAdminTenantsByTenantIdWorkspaceStatsError = GetAdminTenantsByTenantIdWorkspaceStatsErrors[keyof GetAdminTenantsByTenantIdWorkspaceStatsErrors];
|
|
27757
|
+
type GetAdminTenantsByTenantIdWorkspaceStatsResponses = {
|
|
27567
27758
|
/**
|
|
27568
27759
|
* Success
|
|
27569
27760
|
*/
|
|
27570
|
-
|
|
27571
|
-
|
|
27572
|
-
|
|
27761
|
+
200: {
|
|
27762
|
+
/**
|
|
27763
|
+
* An array of resource objects representing a workspace_document_stats
|
|
27764
|
+
*/
|
|
27765
|
+
data?: Array<WorkspaceDocumentStats>;
|
|
27766
|
+
included?: Array<unknown>;
|
|
27573
27767
|
meta?: {
|
|
27574
27768
|
[key: string]: unknown;
|
|
27575
27769
|
};
|
|
27576
27770
|
};
|
|
27577
27771
|
};
|
|
27578
|
-
type
|
|
27579
|
-
type
|
|
27772
|
+
type GetAdminTenantsByTenantIdWorkspaceStatsResponse = GetAdminTenantsByTenantIdWorkspaceStatsResponses[keyof GetAdminTenantsByTenantIdWorkspaceStatsResponses];
|
|
27773
|
+
type PostAdminAgentsByIdDiscoverSchemaData = {
|
|
27774
|
+
/**
|
|
27775
|
+
* Request body for the /agents/:id/discover_schema operation on agent resource
|
|
27776
|
+
*/
|
|
27777
|
+
body: {
|
|
27778
|
+
data: {
|
|
27779
|
+
/**
|
|
27780
|
+
* ID of document to analyze
|
|
27781
|
+
*/
|
|
27782
|
+
document_id: string;
|
|
27783
|
+
};
|
|
27784
|
+
};
|
|
27785
|
+
headers: {
|
|
27786
|
+
/**
|
|
27787
|
+
* Application ID for authentication and routing
|
|
27788
|
+
*/
|
|
27789
|
+
"x-application-key": string;
|
|
27790
|
+
};
|
|
27791
|
+
path: {
|
|
27792
|
+
/**
|
|
27793
|
+
* Agent ID (automatically mapped from route)
|
|
27794
|
+
*/
|
|
27795
|
+
id: string;
|
|
27796
|
+
};
|
|
27797
|
+
query?: never;
|
|
27798
|
+
url: "/admin/agents/{id}/discover_schema";
|
|
27799
|
+
};
|
|
27800
|
+
type PostAdminAgentsByIdDiscoverSchemaErrors = {
|
|
27801
|
+
/**
|
|
27802
|
+
* Bad Request - Invalid input data or malformed request
|
|
27803
|
+
*/
|
|
27804
|
+
400: ErrorResponse;
|
|
27805
|
+
/**
|
|
27806
|
+
* Unauthorized - Missing or invalid authentication token
|
|
27807
|
+
*/
|
|
27808
|
+
401: ErrorResponse;
|
|
27809
|
+
/**
|
|
27810
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
27811
|
+
*/
|
|
27812
|
+
403: ErrorResponse;
|
|
27813
|
+
/**
|
|
27814
|
+
* Not Found - Resource does not exist
|
|
27815
|
+
*/
|
|
27816
|
+
404: ErrorResponse;
|
|
27817
|
+
/**
|
|
27818
|
+
* Too Many Requests - Rate limit exceeded
|
|
27819
|
+
*/
|
|
27820
|
+
429: ErrorResponse;
|
|
27821
|
+
/**
|
|
27822
|
+
* Internal Server Error - Unexpected server error
|
|
27823
|
+
*/
|
|
27824
|
+
500: ErrorResponse;
|
|
27580
27825
|
/**
|
|
27581
|
-
*
|
|
27826
|
+
* General Error
|
|
27827
|
+
*/
|
|
27828
|
+
default: Errors;
|
|
27829
|
+
};
|
|
27830
|
+
type PostAdminAgentsByIdDiscoverSchemaError = PostAdminAgentsByIdDiscoverSchemaErrors[keyof PostAdminAgentsByIdDiscoverSchemaErrors];
|
|
27831
|
+
type PostAdminAgentsByIdDiscoverSchemaResponses = {
|
|
27832
|
+
/**
|
|
27833
|
+
* Success
|
|
27834
|
+
*/
|
|
27835
|
+
201: {
|
|
27836
|
+
[key: string]: unknown;
|
|
27837
|
+
};
|
|
27838
|
+
};
|
|
27839
|
+
type PostAdminAgentsByIdDiscoverSchemaResponse = PostAdminAgentsByIdDiscoverSchemaResponses[keyof PostAdminAgentsByIdDiscoverSchemaResponses];
|
|
27840
|
+
type PostAdminAgentsByIdTestData = {
|
|
27841
|
+
/**
|
|
27842
|
+
* Request body for the /agents/:id/test operation on agent resource
|
|
27582
27843
|
*/
|
|
27583
27844
|
body: {
|
|
27584
27845
|
data: {
|
|
27585
27846
|
attributes?: {
|
|
27586
|
-
|
|
27587
|
-
corrections: Array<{
|
|
27588
|
-
[key: string]: unknown;
|
|
27589
|
-
}>;
|
|
27847
|
+
sample_input: string;
|
|
27590
27848
|
};
|
|
27591
|
-
id: string;
|
|
27592
27849
|
relationships?: {
|
|
27593
27850
|
[key: string]: never;
|
|
27594
27851
|
};
|
|
27595
|
-
type?: "
|
|
27852
|
+
type?: "agent";
|
|
27596
27853
|
};
|
|
27597
27854
|
};
|
|
27598
27855
|
headers: {
|
|
@@ -27602,6 +27859,9 @@ type PatchAdminExtractionResultsByIdCorrectionsData = {
|
|
|
27602
27859
|
"x-application-key": string;
|
|
27603
27860
|
};
|
|
27604
27861
|
path: {
|
|
27862
|
+
/**
|
|
27863
|
+
* Agent ID (from URL path parameter)
|
|
27864
|
+
*/
|
|
27605
27865
|
id: string;
|
|
27606
27866
|
};
|
|
27607
27867
|
query?: {
|
|
@@ -27616,9 +27876,9 @@ type PatchAdminExtractionResultsByIdCorrectionsData = {
|
|
|
27616
27876
|
[key: string]: unknown;
|
|
27617
27877
|
};
|
|
27618
27878
|
};
|
|
27619
|
-
url: "/admin/
|
|
27879
|
+
url: "/admin/agents/{id}/test";
|
|
27620
27880
|
};
|
|
27621
|
-
type
|
|
27881
|
+
type PostAdminAgentsByIdTestErrors = {
|
|
27622
27882
|
/**
|
|
27623
27883
|
* Bad Request - Invalid input data or malformed request
|
|
27624
27884
|
*/
|
|
@@ -27648,20 +27908,20 @@ type PatchAdminExtractionResultsByIdCorrectionsErrors = {
|
|
|
27648
27908
|
*/
|
|
27649
27909
|
default: Errors;
|
|
27650
27910
|
};
|
|
27651
|
-
type
|
|
27652
|
-
type
|
|
27911
|
+
type PostAdminAgentsByIdTestError = PostAdminAgentsByIdTestErrors[keyof PostAdminAgentsByIdTestErrors];
|
|
27912
|
+
type PostAdminAgentsByIdTestResponses = {
|
|
27653
27913
|
/**
|
|
27654
27914
|
* Success
|
|
27655
27915
|
*/
|
|
27656
|
-
|
|
27657
|
-
data?:
|
|
27658
|
-
included?: Array<
|
|
27916
|
+
201: {
|
|
27917
|
+
data?: Agent;
|
|
27918
|
+
included?: Array<AgentVersion>;
|
|
27659
27919
|
meta?: {
|
|
27660
27920
|
[key: string]: unknown;
|
|
27661
27921
|
};
|
|
27662
27922
|
};
|
|
27663
27923
|
};
|
|
27664
|
-
type
|
|
27924
|
+
type PostAdminAgentsByIdTestResponse = PostAdminAgentsByIdTestResponses[keyof PostAdminAgentsByIdTestResponses];
|
|
27665
27925
|
type DeleteAdminApiKeysByIdData = {
|
|
27666
27926
|
body?: never;
|
|
27667
27927
|
headers: {
|
|
@@ -30077,14 +30337,6 @@ type PatchAdminExtractionDocumentsByIdStatusData = {
|
|
|
30077
30337
|
body?: {
|
|
30078
30338
|
data: {
|
|
30079
30339
|
attributes?: {
|
|
30080
|
-
/**
|
|
30081
|
-
* The Agent that processed this document
|
|
30082
|
-
*/
|
|
30083
|
-
agent_id?: string | unknown;
|
|
30084
|
-
/**
|
|
30085
|
-
* The specific version of the Agent that processed this document
|
|
30086
|
-
*/
|
|
30087
|
-
agent_version_id?: string | unknown;
|
|
30088
30340
|
/**
|
|
30089
30341
|
* Average confidence score across all extracted fields (0.0 to 1.0)
|
|
30090
30342
|
*/
|
|
@@ -35365,15 +35617,22 @@ type PostAdminPaymentsData = {
|
|
|
35365
35617
|
data: {
|
|
35366
35618
|
attributes?: {
|
|
35367
35619
|
amount: number;
|
|
35620
|
+
credits_added?: number | unknown;
|
|
35621
|
+
credits_used?: number | unknown;
|
|
35368
35622
|
currency?: string | unknown;
|
|
35369
35623
|
customer_id?: string | unknown;
|
|
35370
35624
|
description?: string | unknown;
|
|
35371
35625
|
error_message?: string | unknown;
|
|
35626
|
+
metadata?: {
|
|
35627
|
+
[key: string]: unknown;
|
|
35628
|
+
} | unknown;
|
|
35629
|
+
operation?: "subscription" | "topup" | "extraction" | "training" | "refund" | "addon" | unknown;
|
|
35372
35630
|
provider_reference?: string | unknown;
|
|
35373
35631
|
service_id?: string | unknown;
|
|
35374
35632
|
source: string;
|
|
35375
35633
|
status?: "pending" | "success" | "failed" | "refunded" | "voided" | unknown;
|
|
35376
35634
|
tenant_id?: string | unknown;
|
|
35635
|
+
transaction_type?: "credit" | "debit" | unknown;
|
|
35377
35636
|
type?: "sale" | "auth" | "refund" | "void" | unknown;
|
|
35378
35637
|
};
|
|
35379
35638
|
relationships?: {
|
|
@@ -35845,89 +36104,6 @@ type PostAdminCreditPackagesResponses = {
|
|
|
35845
36104
|
};
|
|
35846
36105
|
};
|
|
35847
36106
|
type PostAdminCreditPackagesResponse = PostAdminCreditPackagesResponses[keyof PostAdminCreditPackagesResponses];
|
|
35848
|
-
type PatchAdminWorkspacesByIdPopulateHashesData = {
|
|
35849
|
-
/**
|
|
35850
|
-
* Request body for the /workspaces/:id/populate-hashes operation on workspace resource
|
|
35851
|
-
*/
|
|
35852
|
-
body?: {
|
|
35853
|
-
data: {
|
|
35854
|
-
attributes?: {
|
|
35855
|
-
[key: string]: never;
|
|
35856
|
-
};
|
|
35857
|
-
id: string;
|
|
35858
|
-
relationships?: {
|
|
35859
|
-
[key: string]: never;
|
|
35860
|
-
};
|
|
35861
|
-
type?: "workspace";
|
|
35862
|
-
};
|
|
35863
|
-
};
|
|
35864
|
-
headers: {
|
|
35865
|
-
/**
|
|
35866
|
-
* Application ID for authentication and routing
|
|
35867
|
-
*/
|
|
35868
|
-
"x-application-key": string;
|
|
35869
|
-
};
|
|
35870
|
-
path: {
|
|
35871
|
-
id: string;
|
|
35872
|
-
};
|
|
35873
|
-
query?: {
|
|
35874
|
-
/**
|
|
35875
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
35876
|
-
*/
|
|
35877
|
-
include?: string;
|
|
35878
|
-
/**
|
|
35879
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
35880
|
-
*/
|
|
35881
|
-
fields?: {
|
|
35882
|
-
[key: string]: unknown;
|
|
35883
|
-
};
|
|
35884
|
-
};
|
|
35885
|
-
url: "/admin/workspaces/{id}/populate-hashes";
|
|
35886
|
-
};
|
|
35887
|
-
type PatchAdminWorkspacesByIdPopulateHashesErrors = {
|
|
35888
|
-
/**
|
|
35889
|
-
* Bad Request - Invalid input data or malformed request
|
|
35890
|
-
*/
|
|
35891
|
-
400: ErrorResponse;
|
|
35892
|
-
/**
|
|
35893
|
-
* Unauthorized - Missing or invalid authentication token
|
|
35894
|
-
*/
|
|
35895
|
-
401: ErrorResponse;
|
|
35896
|
-
/**
|
|
35897
|
-
* Forbidden - Authenticated but not authorized for this resource
|
|
35898
|
-
*/
|
|
35899
|
-
403: ErrorResponse;
|
|
35900
|
-
/**
|
|
35901
|
-
* Not Found - Resource does not exist
|
|
35902
|
-
*/
|
|
35903
|
-
404: ErrorResponse;
|
|
35904
|
-
/**
|
|
35905
|
-
* Too Many Requests - Rate limit exceeded
|
|
35906
|
-
*/
|
|
35907
|
-
429: ErrorResponse;
|
|
35908
|
-
/**
|
|
35909
|
-
* Internal Server Error - Unexpected server error
|
|
35910
|
-
*/
|
|
35911
|
-
500: ErrorResponse;
|
|
35912
|
-
/**
|
|
35913
|
-
* General Error
|
|
35914
|
-
*/
|
|
35915
|
-
default: Errors;
|
|
35916
|
-
};
|
|
35917
|
-
type PatchAdminWorkspacesByIdPopulateHashesError = PatchAdminWorkspacesByIdPopulateHashesErrors[keyof PatchAdminWorkspacesByIdPopulateHashesErrors];
|
|
35918
|
-
type PatchAdminWorkspacesByIdPopulateHashesResponses = {
|
|
35919
|
-
/**
|
|
35920
|
-
* Success
|
|
35921
|
-
*/
|
|
35922
|
-
200: {
|
|
35923
|
-
data?: Workspace;
|
|
35924
|
-
included?: Array<Tenant>;
|
|
35925
|
-
meta?: {
|
|
35926
|
-
[key: string]: unknown;
|
|
35927
|
-
};
|
|
35928
|
-
};
|
|
35929
|
-
};
|
|
35930
|
-
type PatchAdminWorkspacesByIdPopulateHashesResponse = PatchAdminWorkspacesByIdPopulateHashesResponses[keyof PatchAdminWorkspacesByIdPopulateHashesResponses];
|
|
35931
36107
|
type DeleteAdminFieldTemplatesByIdData = {
|
|
35932
36108
|
body?: never;
|
|
35933
36109
|
headers: {
|
|
@@ -36429,6 +36605,10 @@ type PatchAdminApplicationsByIdData = {
|
|
|
36429
36605
|
invite_only?: boolean | unknown;
|
|
36430
36606
|
logo_url?: string | unknown;
|
|
36431
36607
|
name?: string | unknown;
|
|
36608
|
+
/**
|
|
36609
|
+
* OAuth configuration for this application
|
|
36610
|
+
*/
|
|
36611
|
+
oauth?: ApplicationOauthInputUpdateType | unknown;
|
|
36432
36612
|
/**
|
|
36433
36613
|
* When true, password registration withholds JWT until email is verified
|
|
36434
36614
|
*/
|
|
@@ -36672,6 +36852,89 @@ type PatchAdminAgentsByIdSchemaVersionsByVersionIdResponses = {
|
|
|
36672
36852
|
};
|
|
36673
36853
|
};
|
|
36674
36854
|
type PatchAdminAgentsByIdSchemaVersionsByVersionIdResponse = PatchAdminAgentsByIdSchemaVersionsByVersionIdResponses[keyof PatchAdminAgentsByIdSchemaVersionsByVersionIdResponses];
|
|
36855
|
+
type PatchAdminPaymentMethodsByIdDefaultData = {
|
|
36856
|
+
/**
|
|
36857
|
+
* Request body for the /payment-methods/:id/default operation on payment_method resource
|
|
36858
|
+
*/
|
|
36859
|
+
body?: {
|
|
36860
|
+
data: {
|
|
36861
|
+
attributes?: {
|
|
36862
|
+
[key: string]: never;
|
|
36863
|
+
};
|
|
36864
|
+
id: string;
|
|
36865
|
+
relationships?: {
|
|
36866
|
+
[key: string]: never;
|
|
36867
|
+
};
|
|
36868
|
+
type?: "payment_method";
|
|
36869
|
+
};
|
|
36870
|
+
};
|
|
36871
|
+
headers: {
|
|
36872
|
+
/**
|
|
36873
|
+
* Application ID for authentication and routing
|
|
36874
|
+
*/
|
|
36875
|
+
"x-application-key": string;
|
|
36876
|
+
};
|
|
36877
|
+
path: {
|
|
36878
|
+
id: string;
|
|
36879
|
+
};
|
|
36880
|
+
query?: {
|
|
36881
|
+
/**
|
|
36882
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
36883
|
+
*/
|
|
36884
|
+
include?: string;
|
|
36885
|
+
/**
|
|
36886
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
36887
|
+
*/
|
|
36888
|
+
fields?: {
|
|
36889
|
+
[key: string]: unknown;
|
|
36890
|
+
};
|
|
36891
|
+
};
|
|
36892
|
+
url: "/admin/payment-methods/{id}/default";
|
|
36893
|
+
};
|
|
36894
|
+
type PatchAdminPaymentMethodsByIdDefaultErrors = {
|
|
36895
|
+
/**
|
|
36896
|
+
* Bad Request - Invalid input data or malformed request
|
|
36897
|
+
*/
|
|
36898
|
+
400: ErrorResponse;
|
|
36899
|
+
/**
|
|
36900
|
+
* Unauthorized - Missing or invalid authentication token
|
|
36901
|
+
*/
|
|
36902
|
+
401: ErrorResponse;
|
|
36903
|
+
/**
|
|
36904
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
36905
|
+
*/
|
|
36906
|
+
403: ErrorResponse;
|
|
36907
|
+
/**
|
|
36908
|
+
* Not Found - Resource does not exist
|
|
36909
|
+
*/
|
|
36910
|
+
404: ErrorResponse;
|
|
36911
|
+
/**
|
|
36912
|
+
* Too Many Requests - Rate limit exceeded
|
|
36913
|
+
*/
|
|
36914
|
+
429: ErrorResponse;
|
|
36915
|
+
/**
|
|
36916
|
+
* Internal Server Error - Unexpected server error
|
|
36917
|
+
*/
|
|
36918
|
+
500: ErrorResponse;
|
|
36919
|
+
/**
|
|
36920
|
+
* General Error
|
|
36921
|
+
*/
|
|
36922
|
+
default: Errors;
|
|
36923
|
+
};
|
|
36924
|
+
type PatchAdminPaymentMethodsByIdDefaultError = PatchAdminPaymentMethodsByIdDefaultErrors[keyof PatchAdminPaymentMethodsByIdDefaultErrors];
|
|
36925
|
+
type PatchAdminPaymentMethodsByIdDefaultResponses = {
|
|
36926
|
+
/**
|
|
36927
|
+
* Success
|
|
36928
|
+
*/
|
|
36929
|
+
200: {
|
|
36930
|
+
data?: PaymentMethod;
|
|
36931
|
+
included?: Array<unknown>;
|
|
36932
|
+
meta?: {
|
|
36933
|
+
[key: string]: unknown;
|
|
36934
|
+
};
|
|
36935
|
+
};
|
|
36936
|
+
};
|
|
36937
|
+
type PatchAdminPaymentMethodsByIdDefaultResponse = PatchAdminPaymentMethodsByIdDefaultResponses[keyof PatchAdminPaymentMethodsByIdDefaultResponses];
|
|
36675
36938
|
type GetAdminExtractionBatchesByIdUploadUrlsData = {
|
|
36676
36939
|
body?: never;
|
|
36677
36940
|
headers: {
|
|
@@ -37401,4 +37664,4 @@ type ApiKeyAllocateRequest = z.infer<typeof ApiKeyAllocateSchema>;
|
|
|
37401
37664
|
type DocumentBulkDeleteRequest = z.infer<typeof DocumentBulkDeleteSchema>;
|
|
37402
37665
|
type DocumentBulkReprocessRequest = z.infer<typeof DocumentBulkReprocessSchema>;
|
|
37403
37666
|
|
|
37404
|
-
export { type Account, type AccountCreditRequest, AccountCreditSchema, type AccountDebitRequest, AccountDebitSchema, type Agent, type AgentAdminCreateRequest, AgentAdminCreateSchema, type AgentTestResult, type AgentVersion, type AgentVersionComparison, type AgentVersionFieldsInputCreateType, type AgentVersionRevision, type AiConfig, type ApiKey, type ApiKeyAllocateRequest, ApiKeyAllocateSchema, type Application, type ApplicationType, type AuditLog, AuthenticationError, AuthorizationError, type Balance, type Bucket, type BulkDismissalResult, type BulkReprocessResult, type ClientOptions, type Config, type Conversation, type CreditPackage, type Customer, type DeleteAdminAgentVersionsByIdData, type DeleteAdminAgentVersionsByIdError, type DeleteAdminAgentVersionsByIdErrors, type DeleteAdminAgentVersionsByIdResponses, type DeleteAdminAiConversationsByIdData, type DeleteAdminAiConversationsByIdError, type DeleteAdminAiConversationsByIdErrors, type DeleteAdminAiConversationsByIdResponses, type DeleteAdminAiGraphEdgesByIdData, type DeleteAdminAiGraphEdgesByIdError, type DeleteAdminAiGraphEdgesByIdErrors, type DeleteAdminAiGraphEdgesByIdResponses, type DeleteAdminAiGraphNodesByIdData, type DeleteAdminAiGraphNodesByIdError, type DeleteAdminAiGraphNodesByIdErrors, type DeleteAdminAiGraphNodesByIdResponses, type DeleteAdminAiMessagesByIdData, type DeleteAdminAiMessagesByIdError, type DeleteAdminAiMessagesByIdErrors, type DeleteAdminAiMessagesByIdResponses, type DeleteAdminApiKeysByIdData, type DeleteAdminApiKeysByIdError, type DeleteAdminApiKeysByIdErrors, type DeleteAdminApiKeysByIdResponses, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugData, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugError, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses, type DeleteAdminApplicationsByIdData, type DeleteAdminApplicationsByIdError, type DeleteAdminApplicationsByIdErrors, type DeleteAdminApplicationsByIdResponses, type DeleteAdminBucketsByIdData, type DeleteAdminBucketsByIdError, type DeleteAdminBucketsByIdErrors, type DeleteAdminBucketsByIdResponses, type DeleteAdminCreditPackagesByIdData, type DeleteAdminCreditPackagesByIdError, type DeleteAdminCreditPackagesByIdErrors, type DeleteAdminCreditPackagesByIdResponses, type DeleteAdminCustomersByIdData, type DeleteAdminCustomersByIdError, type DeleteAdminCustomersByIdErrors, type DeleteAdminCustomersByIdResponses, type DeleteAdminExtractionBatchesByIdData, type DeleteAdminExtractionBatchesByIdError, type DeleteAdminExtractionBatchesByIdErrors, type DeleteAdminExtractionBatchesByIdResponses, type DeleteAdminExtractionDocumentsByIdData, type DeleteAdminExtractionDocumentsByIdError, type DeleteAdminExtractionDocumentsByIdErrors, type DeleteAdminExtractionDocumentsByIdResponses, type DeleteAdminFieldTemplatesByIdData, type DeleteAdminFieldTemplatesByIdError, type DeleteAdminFieldTemplatesByIdErrors, type DeleteAdminFieldTemplatesByIdResponses, type DeleteAdminMessagesByIdData, type DeleteAdminMessagesByIdError, type DeleteAdminMessagesByIdErrors, type DeleteAdminMessagesByIdResponses, type DeleteAdminNotificationMethodsByIdData, type DeleteAdminNotificationMethodsByIdError, type DeleteAdminNotificationMethodsByIdErrors, type DeleteAdminNotificationMethodsByIdResponses, type DeleteAdminNotificationPreferencesByIdData, type DeleteAdminNotificationPreferencesByIdError, type DeleteAdminNotificationPreferencesByIdErrors, type DeleteAdminNotificationPreferencesByIdResponses, type DeleteAdminObjectsByIdData, type DeleteAdminObjectsByIdError, type DeleteAdminObjectsByIdErrors, type DeleteAdminObjectsByIdResponses, type DeleteAdminPaymentMethodsByIdData, type DeleteAdminPaymentMethodsByIdError, type DeleteAdminPaymentMethodsByIdErrors, type DeleteAdminPaymentMethodsByIdResponses, type DeleteAdminPlansByIdData, type DeleteAdminPlansByIdError, type DeleteAdminPlansByIdErrors, type DeleteAdminPlansByIdResponses, type DeleteAdminSearchSavedByIdData, type DeleteAdminSearchSavedByIdError, type DeleteAdminSearchSavedByIdErrors, type DeleteAdminSearchSavedByIdResponses, type DeleteAdminSubscriptionsByIdData, type DeleteAdminSubscriptionsByIdError, type DeleteAdminSubscriptionsByIdErrors, type DeleteAdminSubscriptionsByIdResponses, type DeleteAdminSystemMessagesByIdData, type DeleteAdminSystemMessagesByIdError, type DeleteAdminSystemMessagesByIdErrors, type DeleteAdminSystemMessagesByIdResponses, type DeleteAdminTenantMembershipsByTenantIdByUserIdData, type DeleteAdminTenantMembershipsByTenantIdByUserIdError, type DeleteAdminTenantMembershipsByTenantIdByUserIdErrors, type DeleteAdminTenantMembershipsByTenantIdByUserIdResponses, type DeleteAdminTenantPricingOverridesByIdData, type DeleteAdminTenantPricingOverridesByIdError, type DeleteAdminTenantPricingOverridesByIdErrors, type DeleteAdminTenantPricingOverridesByIdResponses, type DeleteAdminTenantsByIdData, type DeleteAdminTenantsByIdError, type DeleteAdminTenantsByIdErrors, type DeleteAdminTenantsByIdResponses, type DeleteAdminThreadsByIdData, type DeleteAdminThreadsByIdError, type DeleteAdminThreadsByIdErrors, type DeleteAdminThreadsByIdResponses, type DeleteAdminTrainingExamplesByIdData, type DeleteAdminTrainingExamplesByIdError, type DeleteAdminTrainingExamplesByIdErrors, type DeleteAdminTrainingExamplesByIdResponses, type DeleteAdminTrainingSessionsByIdData, type DeleteAdminTrainingSessionsByIdError, type DeleteAdminTrainingSessionsByIdErrors, type DeleteAdminTrainingSessionsByIdResponses, type DeleteAdminUserProfilesByIdData, type DeleteAdminUserProfilesByIdError, type DeleteAdminUserProfilesByIdErrors, type DeleteAdminUserProfilesByIdResponses, type DeleteAdminUsersByIdData, type DeleteAdminUsersByIdError, type DeleteAdminUsersByIdErrors, type DeleteAdminUsersByIdResponses, type DeleteAdminWebhookConfigsByIdData, type DeleteAdminWebhookConfigsByIdError, type DeleteAdminWebhookConfigsByIdErrors, type DeleteAdminWebhookConfigsByIdResponses, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdData, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdError, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type DeleteAdminWorkspacesByIdData, type DeleteAdminWorkspacesByIdError, type DeleteAdminWorkspacesByIdErrors, type DeleteAdminWorkspacesByIdResponses, type DocumentBulkDeleteRequest, DocumentBulkDeleteSchema, type DocumentBulkReprocessRequest, DocumentBulkReprocessSchema, type DocumentChunk, type DocumentStats, type EmailTemplate, type Embedding, type ErrorResponse, type Errors, type ExtractionBatch, type ExtractionDocument, type ExtractionExport, type ExtractionResult, type FieldMappingConfirmation, type FieldMappingResult, type FieldTemplate, type GetAdminAccountsByIdData, type GetAdminAccountsByIdError, type GetAdminAccountsByIdErrors, type GetAdminAccountsByIdResponse, type GetAdminAccountsByIdResponses, type GetAdminAccountsByTenantByTenantIdData, type GetAdminAccountsByTenantByTenantIdError, type GetAdminAccountsByTenantByTenantIdErrors, type GetAdminAccountsByTenantByTenantIdResponse, type GetAdminAccountsByTenantByTenantIdResponses, type GetAdminAccountsData, type GetAdminAccountsError, type GetAdminAccountsErrors, type GetAdminAccountsResponse, type GetAdminAccountsResponses, type GetAdminAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsData, type GetAdminAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsError, type GetAdminAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsErrors, type GetAdminAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsResponse, type GetAdminAgentVersionRevisionsAgentVersionsByAgentVersionIdRevisionsResponses, type GetAdminAgentVersionRevisionsByIdData, type GetAdminAgentVersionRevisionsByIdError, type GetAdminAgentVersionRevisionsByIdErrors, type GetAdminAgentVersionRevisionsByIdResponse, type GetAdminAgentVersionRevisionsByIdResponses, type GetAdminAgentVersionsByIdData, type GetAdminAgentVersionsByIdError, type GetAdminAgentVersionsByIdErrors, type GetAdminAgentVersionsByIdMetricsData, type GetAdminAgentVersionsByIdMetricsError, type GetAdminAgentVersionsByIdMetricsErrors, type GetAdminAgentVersionsByIdMetricsResponse, type GetAdminAgentVersionsByIdMetricsResponses, type GetAdminAgentVersionsByIdResponse, type GetAdminAgentVersionsByIdResponses, type GetAdminAgentVersionsData, type GetAdminAgentVersionsError, type GetAdminAgentVersionsErrors, type GetAdminAgentVersionsResponse, type GetAdminAgentVersionsResponses, type GetAdminAgentsByIdData, type GetAdminAgentsByIdError, type GetAdminAgentsByIdErrors, type GetAdminAgentsByIdResponse, type GetAdminAgentsByIdResponses, type GetAdminAgentsByIdSchemaVersionsData, type GetAdminAgentsByIdSchemaVersionsError, type GetAdminAgentsByIdSchemaVersionsErrors, type GetAdminAgentsByIdSchemaVersionsResponse, type GetAdminAgentsByIdSchemaVersionsResponses, type GetAdminAgentsByIdStatsData, type GetAdminAgentsByIdStatsError, type GetAdminAgentsByIdStatsErrors, type GetAdminAgentsByIdStatsResponse, type GetAdminAgentsByIdStatsResponses, type GetAdminAgentsByIdTrainingStatsData, type GetAdminAgentsByIdTrainingStatsError, type GetAdminAgentsByIdTrainingStatsErrors, type GetAdminAgentsByIdTrainingStatsResponse, type GetAdminAgentsByIdTrainingStatsResponses, type GetAdminAgentsByIdUsageData, type GetAdminAgentsByIdUsageError, type GetAdminAgentsByIdUsageErrors, type GetAdminAgentsByIdUsageResponse, type GetAdminAgentsByIdUsageResponses, type GetAdminAgentsData, type GetAdminAgentsError, type GetAdminAgentsErrors, type GetAdminAgentsResponse, type GetAdminAgentsResponses, type GetAdminAgentsUsageData, type GetAdminAgentsUsageError, type GetAdminAgentsUsageErrors, type GetAdminAgentsUsageResponse, type GetAdminAgentsUsageResponses, type GetAdminAiChunksDocumentByDocumentIdData, type GetAdminAiChunksDocumentByDocumentIdError, type GetAdminAiChunksDocumentByDocumentIdErrors, type GetAdminAiChunksDocumentByDocumentIdResponse, type GetAdminAiChunksDocumentByDocumentIdResponses, type GetAdminAiConversationsByIdData, type GetAdminAiConversationsByIdError, type GetAdminAiConversationsByIdErrors, type GetAdminAiConversationsByIdResponse, type GetAdminAiConversationsByIdResponses, type GetAdminAiConversationsData, type GetAdminAiConversationsError, type GetAdminAiConversationsErrors, type GetAdminAiConversationsResponse, type GetAdminAiConversationsResponses, type GetAdminAiGraphEdgesData, type GetAdminAiGraphEdgesError, type GetAdminAiGraphEdgesErrors, type GetAdminAiGraphEdgesResponse, type GetAdminAiGraphEdgesResponses, type GetAdminAiGraphNodesBySourceNodeIdRelatedData, type GetAdminAiGraphNodesBySourceNodeIdRelatedError, type GetAdminAiGraphNodesBySourceNodeIdRelatedErrors, type GetAdminAiGraphNodesBySourceNodeIdRelatedResponse, type GetAdminAiGraphNodesBySourceNodeIdRelatedResponses, type GetAdminAiGraphNodesData, type GetAdminAiGraphNodesError, type GetAdminAiGraphNodesErrors, type GetAdminAiGraphNodesLabelByLabelData, type GetAdminAiGraphNodesLabelByLabelError, type GetAdminAiGraphNodesLabelByLabelErrors, type GetAdminAiGraphNodesLabelByLabelResponse, type GetAdminAiGraphNodesLabelByLabelResponses, type GetAdminAiGraphNodesResponse, type GetAdminAiGraphNodesResponses, type GetAdminAiMessagesData, type GetAdminAiMessagesError, type GetAdminAiMessagesErrors, type GetAdminAiMessagesResponse, type GetAdminAiMessagesResponses, type GetAdminApiKeysActiveData, type GetAdminApiKeysActiveError, type GetAdminApiKeysActiveErrors, type GetAdminApiKeysActiveResponse, type GetAdminApiKeysActiveResponses, type GetAdminApiKeysByIdData, type GetAdminApiKeysByIdError, type GetAdminApiKeysByIdErrors, type GetAdminApiKeysByIdResponse, type GetAdminApiKeysByIdResponses, type GetAdminApiKeysData, type GetAdminApiKeysError, type GetAdminApiKeysErrors, type GetAdminApiKeysResponse, type GetAdminApiKeysResponses, type GetAdminApiKeysStatsData, type GetAdminApiKeysStatsError, type GetAdminApiKeysStatsErrors, type GetAdminApiKeysStatsResponse, type GetAdminApiKeysStatsResponses, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugData, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugError, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugResponse, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses, type GetAdminApplicationsByApplicationIdEmailTemplatesData, type GetAdminApplicationsByApplicationIdEmailTemplatesError, type GetAdminApplicationsByApplicationIdEmailTemplatesErrors, type GetAdminApplicationsByApplicationIdEmailTemplatesResponse, type GetAdminApplicationsByApplicationIdEmailTemplatesResponses, type GetAdminApplicationsByIdData, type GetAdminApplicationsByIdError, type GetAdminApplicationsByIdErrors, type GetAdminApplicationsByIdResponse, type GetAdminApplicationsByIdResponses, type GetAdminApplicationsBySlugBySlugData, type GetAdminApplicationsBySlugBySlugError, type GetAdminApplicationsBySlugBySlugErrors, type GetAdminApplicationsBySlugBySlugResponse, type GetAdminApplicationsBySlugBySlugResponses, type GetAdminApplicationsCurrentData, type GetAdminApplicationsCurrentError, type GetAdminApplicationsCurrentErrors, type GetAdminApplicationsCurrentResponse, type GetAdminApplicationsCurrentResponses, type GetAdminApplicationsData, type GetAdminApplicationsError, type GetAdminApplicationsErrors, type GetAdminApplicationsResponse, type GetAdminApplicationsResponses, type GetAdminAuditLogsActivityData, type GetAdminAuditLogsActivityError, type GetAdminAuditLogsActivityErrors, type GetAdminAuditLogsActivityResponse, type GetAdminAuditLogsActivityResponses, type GetAdminAuditLogsData, type GetAdminAuditLogsError, type GetAdminAuditLogsErrors, type GetAdminAuditLogsResponse, type GetAdminAuditLogsResponses, type GetAdminBalancesByIdData, type GetAdminBalancesByIdError, type GetAdminBalancesByIdErrors, type GetAdminBalancesByIdResponse, type GetAdminBalancesByIdResponses, type GetAdminBalancesData, type GetAdminBalancesError, type GetAdminBalancesErrors, type GetAdminBalancesResponse, type GetAdminBalancesResponses, type GetAdminBucketsAllData, type GetAdminBucketsAllError, type GetAdminBucketsAllErrors, type GetAdminBucketsAllResponse, type GetAdminBucketsAllResponses, type GetAdminBucketsByIdData, type GetAdminBucketsByIdError, type GetAdminBucketsByIdErrors, type GetAdminBucketsByIdObjectsData, type GetAdminBucketsByIdObjectsError, type GetAdminBucketsByIdObjectsErrors, type GetAdminBucketsByIdObjectsResponse, type GetAdminBucketsByIdObjectsResponses, type GetAdminBucketsByIdResponse, type GetAdminBucketsByIdResponses, type GetAdminBucketsByIdStatsData, type GetAdminBucketsByIdStatsError, type GetAdminBucketsByIdStatsErrors, type GetAdminBucketsByIdStatsResponse, type GetAdminBucketsByIdStatsResponses, type GetAdminBucketsData, type GetAdminBucketsError, type GetAdminBucketsErrors, type GetAdminBucketsResponse, type GetAdminBucketsResponses, type GetAdminConfigsData, type GetAdminConfigsError, type GetAdminConfigsErrors, type GetAdminConfigsResponse, type GetAdminConfigsResponses, type GetAdminCreditPackagesByIdData, type GetAdminCreditPackagesByIdError, type GetAdminCreditPackagesByIdErrors, type GetAdminCreditPackagesByIdResponse, type GetAdminCreditPackagesByIdResponses, type GetAdminCreditPackagesData, type GetAdminCreditPackagesError, type GetAdminCreditPackagesErrors, type GetAdminCreditPackagesResponse, type GetAdminCreditPackagesResponses, type GetAdminCreditPackagesSlugBySlugData, type GetAdminCreditPackagesSlugBySlugError, type GetAdminCreditPackagesSlugBySlugErrors, type GetAdminCreditPackagesSlugBySlugResponse, type GetAdminCreditPackagesSlugBySlugResponses, type GetAdminCustomersByIdData, type GetAdminCustomersByIdError, type GetAdminCustomersByIdErrors, type GetAdminCustomersByIdResponse, type GetAdminCustomersByIdResponses, type GetAdminDocumentsStatsData, type GetAdminDocumentsStatsError, type GetAdminDocumentsStatsErrors, type GetAdminDocumentsStatsResponse, type GetAdminDocumentsStatsResponses, type GetAdminExtractionBatchesByIdData, type GetAdminExtractionBatchesByIdError, type GetAdminExtractionBatchesByIdErrors, type GetAdminExtractionBatchesByIdResponse, type GetAdminExtractionBatchesByIdResponses, type GetAdminExtractionBatchesByIdUploadUrlsData, type GetAdminExtractionBatchesByIdUploadUrlsError, type GetAdminExtractionBatchesByIdUploadUrlsErrors, type GetAdminExtractionBatchesByIdUploadUrlsResponse, type GetAdminExtractionBatchesByIdUploadUrlsResponses, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdData, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdError, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdErrors, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdResponse, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdResponses, type GetAdminExtractionDocumentsByIdData, type GetAdminExtractionDocumentsByIdError, type GetAdminExtractionDocumentsByIdErrors, type GetAdminExtractionDocumentsByIdResponse, type GetAdminExtractionDocumentsByIdResponses, type GetAdminExtractionDocumentsByIdStatusData, type GetAdminExtractionDocumentsByIdStatusError, type GetAdminExtractionDocumentsByIdStatusErrors, type GetAdminExtractionDocumentsByIdStatusResponse, type GetAdminExtractionDocumentsByIdStatusResponses, type GetAdminExtractionDocumentsByIdViewData, type GetAdminExtractionDocumentsByIdViewError, type GetAdminExtractionDocumentsByIdViewErrors, type GetAdminExtractionDocumentsByIdViewResponse, type GetAdminExtractionDocumentsByIdViewResponses, type GetAdminExtractionDocumentsData, type GetAdminExtractionDocumentsError, type GetAdminExtractionDocumentsErrors, type GetAdminExtractionDocumentsResponse, type GetAdminExtractionDocumentsResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedResponses, type GetAdminExtractionResultsByIdData, type GetAdminExtractionResultsByIdError, type GetAdminExtractionResultsByIdErrors, type GetAdminExtractionResultsByIdResponse, type GetAdminExtractionResultsByIdResponses, type GetAdminExtractionResultsDocumentByDocumentIdData, type GetAdminExtractionResultsDocumentByDocumentIdError, type GetAdminExtractionResultsDocumentByDocumentIdErrors, type GetAdminExtractionResultsDocumentByDocumentIdResponse, type GetAdminExtractionResultsDocumentByDocumentIdResponses, type GetAdminExtractionResultsWorkspaceByWorkspaceIdData, type GetAdminExtractionResultsWorkspaceByWorkspaceIdError, type GetAdminExtractionResultsWorkspaceByWorkspaceIdErrors, type GetAdminExtractionResultsWorkspaceByWorkspaceIdResponse, type GetAdminExtractionResultsWorkspaceByWorkspaceIdResponses, type GetAdminExtractionSchemaDiscoveriesByIdData, type GetAdminExtractionSchemaDiscoveriesByIdError, type GetAdminExtractionSchemaDiscoveriesByIdErrors, type GetAdminExtractionSchemaDiscoveriesByIdResponse, type GetAdminExtractionSchemaDiscoveriesByIdResponses, type GetAdminFieldTemplatesByIdData, type GetAdminFieldTemplatesByIdError, type GetAdminFieldTemplatesByIdErrors, type GetAdminFieldTemplatesByIdResponse, type GetAdminFieldTemplatesByIdResponses, type GetAdminFieldTemplatesData, type GetAdminFieldTemplatesError, type GetAdminFieldTemplatesErrors, type GetAdminFieldTemplatesResponse, type GetAdminFieldTemplatesResponses, type GetAdminInvitationsConsumeByTokenData, type GetAdminInvitationsConsumeByTokenError, type GetAdminInvitationsConsumeByTokenErrors, type GetAdminInvitationsConsumeByTokenResponse, type GetAdminInvitationsConsumeByTokenResponses, type GetAdminInvitationsData, type GetAdminInvitationsError, type GetAdminInvitationsErrors, type GetAdminInvitationsMeData, type GetAdminInvitationsMeError, type GetAdminInvitationsMeErrors, type GetAdminInvitationsMeResponse, type GetAdminInvitationsMeResponses, type GetAdminInvitationsResponse, type GetAdminInvitationsResponses, type GetAdminIsvRevenueByIdData, type GetAdminIsvRevenueByIdError, type GetAdminIsvRevenueByIdErrors, type GetAdminIsvRevenueByIdResponse, type GetAdminIsvRevenueByIdResponses, type GetAdminIsvRevenueData, type GetAdminIsvRevenueError, type GetAdminIsvRevenueErrors, type GetAdminIsvRevenueResponse, type GetAdminIsvRevenueResponses, type GetAdminIsvSettlementsByIdData, type GetAdminIsvSettlementsByIdError, type GetAdminIsvSettlementsByIdErrors, type GetAdminIsvSettlementsByIdResponse, type GetAdminIsvSettlementsByIdResponses, type GetAdminIsvSettlementsData, type GetAdminIsvSettlementsError, type GetAdminIsvSettlementsErrors, type GetAdminIsvSettlementsResponse, type GetAdminIsvSettlementsResponses, type GetAdminLedgerByAccountByAccountIdData, type GetAdminLedgerByAccountByAccountIdError, type GetAdminLedgerByAccountByAccountIdErrors, type GetAdminLedgerByAccountByAccountIdResponse, type GetAdminLedgerByAccountByAccountIdResponses, type GetAdminLedgerByIdData, type GetAdminLedgerByIdError, type GetAdminLedgerByIdErrors, type GetAdminLedgerByIdResponse, type GetAdminLedgerByIdResponses, type GetAdminLedgerData, type GetAdminLedgerError, type GetAdminLedgerErrors, type GetAdminLedgerResponse, type GetAdminLedgerResponses, type GetAdminLlmAnalyticsByIdData, type GetAdminLlmAnalyticsByIdError, type GetAdminLlmAnalyticsByIdErrors, type GetAdminLlmAnalyticsByIdResponse, type GetAdminLlmAnalyticsByIdResponses, type GetAdminLlmAnalyticsCostsData, type GetAdminLlmAnalyticsCostsError, type GetAdminLlmAnalyticsCostsErrors, type GetAdminLlmAnalyticsCostsResponse, type GetAdminLlmAnalyticsCostsResponses, type GetAdminLlmAnalyticsData, type GetAdminLlmAnalyticsError, type GetAdminLlmAnalyticsErrors, type GetAdminLlmAnalyticsPlatformData, type GetAdminLlmAnalyticsPlatformError, type GetAdminLlmAnalyticsPlatformErrors, type GetAdminLlmAnalyticsPlatformResponse, type GetAdminLlmAnalyticsPlatformResponses, type GetAdminLlmAnalyticsResponse, type GetAdminLlmAnalyticsResponses, type GetAdminLlmAnalyticsSummaryData, type GetAdminLlmAnalyticsSummaryError, type GetAdminLlmAnalyticsSummaryErrors, type GetAdminLlmAnalyticsSummaryResponse, type GetAdminLlmAnalyticsSummaryResponses, type GetAdminLlmAnalyticsUsageData, type GetAdminLlmAnalyticsUsageError, type GetAdminLlmAnalyticsUsageErrors, type GetAdminLlmAnalyticsUsageResponse, type GetAdminLlmAnalyticsUsageResponses, type GetAdminLlmAnalyticsWorkspaceData, type GetAdminLlmAnalyticsWorkspaceError, type GetAdminLlmAnalyticsWorkspaceErrors, type GetAdminLlmAnalyticsWorkspaceResponse, type GetAdminLlmAnalyticsWorkspaceResponses, type GetAdminMessagesByIdData, type GetAdminMessagesByIdError, type GetAdminMessagesByIdErrors, type GetAdminMessagesByIdResponse, type GetAdminMessagesByIdResponses, type GetAdminMessagesData, type GetAdminMessagesError, type GetAdminMessagesErrors, type GetAdminMessagesResponse, type GetAdminMessagesResponses, type GetAdminMessagesSearchData, type GetAdminMessagesSearchError, type GetAdminMessagesSearchErrors, type GetAdminMessagesSearchResponse, type GetAdminMessagesSearchResponses, type GetAdminMessagesSemanticSearchData, type GetAdminMessagesSemanticSearchError, type GetAdminMessagesSemanticSearchErrors, type GetAdminMessagesSemanticSearchResponse, type GetAdminMessagesSemanticSearchResponses, type GetAdminNotificationLogsByIdData, type GetAdminNotificationLogsByIdError, type GetAdminNotificationLogsByIdErrors, type GetAdminNotificationLogsByIdResponse, type GetAdminNotificationLogsByIdResponses, type GetAdminNotificationLogsData, type GetAdminNotificationLogsError, type GetAdminNotificationLogsErrors, type GetAdminNotificationLogsResponse, type GetAdminNotificationLogsResponses, type GetAdminNotificationLogsStatsData, type GetAdminNotificationLogsStatsError, type GetAdminNotificationLogsStatsErrors, type GetAdminNotificationLogsStatsResponse, type GetAdminNotificationLogsStatsResponses, type GetAdminNotificationMethodsByIdData, type GetAdminNotificationMethodsByIdError, type GetAdminNotificationMethodsByIdErrors, type GetAdminNotificationMethodsByIdResponse, type GetAdminNotificationMethodsByIdResponses, type GetAdminNotificationMethodsData, type GetAdminNotificationMethodsError, type GetAdminNotificationMethodsErrors, type GetAdminNotificationMethodsResponse, type GetAdminNotificationMethodsResponses, type GetAdminNotificationPreferencesByIdData, type GetAdminNotificationPreferencesByIdError, type GetAdminNotificationPreferencesByIdErrors, type GetAdminNotificationPreferencesByIdResponse, type GetAdminNotificationPreferencesByIdResponses, type GetAdminNotificationPreferencesData, type GetAdminNotificationPreferencesError, type GetAdminNotificationPreferencesErrors, type GetAdminNotificationPreferencesResponse, type GetAdminNotificationPreferencesResponses, type GetAdminObjectsByIdData, type GetAdminObjectsByIdError, type GetAdminObjectsByIdErrors, type GetAdminObjectsByIdResponse, type GetAdminObjectsByIdResponses, type GetAdminObjectsData, type GetAdminObjectsError, type GetAdminObjectsErrors, type GetAdminObjectsResponse, type GetAdminObjectsResponses, type GetAdminPaymentMethodsByIdData, type GetAdminPaymentMethodsByIdError, type GetAdminPaymentMethodsByIdErrors, type GetAdminPaymentMethodsByIdResponse, type GetAdminPaymentMethodsByIdResponses, type GetAdminPaymentMethodsData, type GetAdminPaymentMethodsError, type GetAdminPaymentMethodsErrors, type GetAdminPaymentMethodsResponse, type GetAdminPaymentMethodsResponses, type GetAdminPermissionsData, type GetAdminPermissionsError, type GetAdminPermissionsErrors, type GetAdminPermissionsPresetsData, type GetAdminPermissionsPresetsError, type GetAdminPermissionsPresetsErrors, type GetAdminPermissionsPresetsResponse, type GetAdminPermissionsPresetsResponses, type GetAdminPermissionsResponse, type GetAdminPermissionsResponses, type GetAdminPlansByIdData, type GetAdminPlansByIdError, type GetAdminPlansByIdErrors, type GetAdminPlansByIdResponse, type GetAdminPlansByIdResponses, type GetAdminPlansData, type GetAdminPlansError, type GetAdminPlansErrors, type GetAdminPlansResponse, type GetAdminPlansResponses, type GetAdminPlansSlugBySlugData, type GetAdminPlansSlugBySlugError, type GetAdminPlansSlugBySlugErrors, type GetAdminPlansSlugBySlugResponse, type GetAdminPlansSlugBySlugResponses, type GetAdminPricingRulesByIdData, type GetAdminPricingRulesByIdError, type GetAdminPricingRulesByIdErrors, type GetAdminPricingRulesByIdResponse, type GetAdminPricingRulesByIdResponses, type GetAdminPricingRulesData, type GetAdminPricingRulesError, type GetAdminPricingRulesErrors, type GetAdminPricingRulesResolveData, type GetAdminPricingRulesResolveError, type GetAdminPricingRulesResolveErrors, type GetAdminPricingRulesResolveResponse, type GetAdminPricingRulesResolveResponses, type GetAdminPricingRulesResponse, type GetAdminPricingRulesResponses, type GetAdminPricingStrategiesByIdData, type GetAdminPricingStrategiesByIdError, type GetAdminPricingStrategiesByIdErrors, type GetAdminPricingStrategiesByIdResponse, type GetAdminPricingStrategiesByIdResponses, type GetAdminPricingStrategiesData, type GetAdminPricingStrategiesError, type GetAdminPricingStrategiesErrors, type GetAdminPricingStrategiesResponse, type GetAdminPricingStrategiesResponses, type GetAdminSearchAnalyticsData, type GetAdminSearchAnalyticsError, type GetAdminSearchAnalyticsErrors, type GetAdminSearchAnalyticsResponse, type GetAdminSearchAnalyticsResponses, type GetAdminSearchAnalyticsSummaryData, type GetAdminSearchAnalyticsSummaryError, type GetAdminSearchAnalyticsSummaryErrors, type GetAdminSearchAnalyticsSummaryResponse, type GetAdminSearchAnalyticsSummaryResponses, type GetAdminSearchData, type GetAdminSearchError, type GetAdminSearchErrors, type GetAdminSearchHealthData, type GetAdminSearchHealthError, type GetAdminSearchHealthErrors, type GetAdminSearchHealthResponse, type GetAdminSearchHealthResponses, type GetAdminSearchIndexesData, type GetAdminSearchIndexesError, type GetAdminSearchIndexesErrors, type GetAdminSearchIndexesResponse, type GetAdminSearchIndexesResponses, type GetAdminSearchResponse, type GetAdminSearchResponses, type GetAdminSearchSavedData, type GetAdminSearchSavedError, type GetAdminSearchSavedErrors, type GetAdminSearchSavedResponse, type GetAdminSearchSavedResponses, type GetAdminSearchSemanticData, type GetAdminSearchSemanticError, type GetAdminSearchSemanticErrors, type GetAdminSearchSemanticResponse, type GetAdminSearchSemanticResponses, type GetAdminSearchStatsData, type GetAdminSearchStatsError, type GetAdminSearchStatsErrors, type GetAdminSearchStatsResponse, type GetAdminSearchStatsResponses, type GetAdminSearchStatusData, type GetAdminSearchStatusError, type GetAdminSearchStatusErrors, type GetAdminSearchStatusResponse, type GetAdminSearchStatusResponses, type GetAdminSearchSuggestData, type GetAdminSearchSuggestError, type GetAdminSearchSuggestErrors, type GetAdminSearchSuggestResponse, type GetAdminSearchSuggestResponses, type GetAdminStorageStatsData, type GetAdminStorageStatsError, type GetAdminStorageStatsErrors, type GetAdminStorageStatsResponse, type GetAdminStorageStatsResponses, type GetAdminStorageStatsTenantByTenantIdData, type GetAdminStorageStatsTenantByTenantIdError, type GetAdminStorageStatsTenantByTenantIdErrors, type GetAdminStorageStatsTenantByTenantIdResponse, type GetAdminStorageStatsTenantByTenantIdResponses, type GetAdminSubscriptionsByIdData, type GetAdminSubscriptionsByIdError, type GetAdminSubscriptionsByIdErrors, type GetAdminSubscriptionsByIdResponse, type GetAdminSubscriptionsByIdResponses, type GetAdminSubscriptionsByTenantByTenantIdData, type GetAdminSubscriptionsByTenantByTenantIdError, type GetAdminSubscriptionsByTenantByTenantIdErrors, type GetAdminSubscriptionsByTenantByTenantIdResponse, type GetAdminSubscriptionsByTenantByTenantIdResponses, type GetAdminSubscriptionsData, type GetAdminSubscriptionsError, type GetAdminSubscriptionsErrors, type GetAdminSubscriptionsResponse, type GetAdminSubscriptionsResponses, type GetAdminSysAiConfigByIdData, type GetAdminSysAiConfigByIdError, type GetAdminSysAiConfigByIdErrors, type GetAdminSysAiConfigByIdResponse, type GetAdminSysAiConfigByIdResponses, type GetAdminSysAiConfigData, type GetAdminSysAiConfigError, type GetAdminSysAiConfigErrors, type GetAdminSysAiConfigResponse, type GetAdminSysAiConfigResponses, type GetAdminSysSemanticCacheByIdData, type GetAdminSysSemanticCacheByIdError, type GetAdminSysSemanticCacheByIdErrors, type GetAdminSysSemanticCacheByIdResponse, type GetAdminSysSemanticCacheByIdResponses, type GetAdminSystemMessagesByIdData, type GetAdminSystemMessagesByIdError, type GetAdminSystemMessagesByIdErrors, type GetAdminSystemMessagesByIdResponse, type GetAdminSystemMessagesByIdResponses, type GetAdminSystemMessagesData, type GetAdminSystemMessagesError, type GetAdminSystemMessagesErrors, type GetAdminSystemMessagesResponse, type GetAdminSystemMessagesResponses, type GetAdminTenantMembershipsData, type GetAdminTenantMembershipsError, type GetAdminTenantMembershipsErrors, type GetAdminTenantMembershipsResponse, type GetAdminTenantMembershipsResponses, type GetAdminTenantPricingOverridesByIdData, type GetAdminTenantPricingOverridesByIdError, type GetAdminTenantPricingOverridesByIdErrors, type GetAdminTenantPricingOverridesByIdResponse, type GetAdminTenantPricingOverridesByIdResponses, type GetAdminTenantPricingOverridesData, type GetAdminTenantPricingOverridesError, type GetAdminTenantPricingOverridesErrors, type GetAdminTenantPricingOverridesResponse, type GetAdminTenantPricingOverridesResponses, type GetAdminTenantsByIdData, type GetAdminTenantsByIdError, type GetAdminTenantsByIdErrors, type GetAdminTenantsByIdResponse, type GetAdminTenantsByIdResponses, type GetAdminTenantsByTenantIdDocumentStatsData, type GetAdminTenantsByTenantIdDocumentStatsError, type GetAdminTenantsByTenantIdDocumentStatsErrors, type GetAdminTenantsByTenantIdDocumentStatsResponse, type GetAdminTenantsByTenantIdDocumentStatsResponses, type GetAdminTenantsByTenantIdStatsData, type GetAdminTenantsByTenantIdStatsError, type GetAdminTenantsByTenantIdStatsErrors, type GetAdminTenantsByTenantIdStatsResponse, type GetAdminTenantsByTenantIdStatsResponses, type GetAdminTenantsByTenantIdWorkspaceStatsData, type GetAdminTenantsByTenantIdWorkspaceStatsError, type GetAdminTenantsByTenantIdWorkspaceStatsErrors, type GetAdminTenantsByTenantIdWorkspaceStatsResponse, type GetAdminTenantsByTenantIdWorkspaceStatsResponses, type GetAdminTenantsData, type GetAdminTenantsError, type GetAdminTenantsErrors, type GetAdminTenantsResponse, type GetAdminTenantsResponses, type GetAdminThreadsByIdData, type GetAdminThreadsByIdError, type GetAdminThreadsByIdErrors, type GetAdminThreadsByIdMessagesData, type GetAdminThreadsByIdMessagesError, type GetAdminThreadsByIdMessagesErrors, type GetAdminThreadsByIdMessagesResponse, type GetAdminThreadsByIdMessagesResponses, type GetAdminThreadsByIdResponse, type GetAdminThreadsByIdResponses, type GetAdminThreadsData, type GetAdminThreadsError, type GetAdminThreadsErrors, type GetAdminThreadsResponse, type GetAdminThreadsResponses, type GetAdminThreadsSearchData, type GetAdminThreadsSearchError, type GetAdminThreadsSearchErrors, type GetAdminThreadsSearchResponse, type GetAdminThreadsSearchResponses, type GetAdminThreadsStatsData, type GetAdminThreadsStatsError, type GetAdminThreadsStatsErrors, type GetAdminThreadsStatsResponse, type GetAdminThreadsStatsResponses, type GetAdminThreadsWorkspaceStatsData, type GetAdminThreadsWorkspaceStatsError, type GetAdminThreadsWorkspaceStatsErrors, type GetAdminThreadsWorkspaceStatsResponse, type GetAdminThreadsWorkspaceStatsResponses, type GetAdminTrainingExamplesByIdData, type GetAdminTrainingExamplesByIdError, type GetAdminTrainingExamplesByIdErrors, type GetAdminTrainingExamplesByIdResponse, type GetAdminTrainingExamplesByIdResponses, type GetAdminTrainingExamplesData, type GetAdminTrainingExamplesError, type GetAdminTrainingExamplesErrors, type GetAdminTrainingExamplesResponse, type GetAdminTrainingExamplesResponses, type GetAdminTrainingSessionsAgentsByAgentIdSessionsData, type GetAdminTrainingSessionsAgentsByAgentIdSessionsError, type GetAdminTrainingSessionsAgentsByAgentIdSessionsErrors, type GetAdminTrainingSessionsAgentsByAgentIdSessionsResponse, type GetAdminTrainingSessionsAgentsByAgentIdSessionsResponses, type GetAdminTrainingSessionsByIdData, type GetAdminTrainingSessionsByIdError, type GetAdminTrainingSessionsByIdErrors, type GetAdminTrainingSessionsByIdResponse, type GetAdminTrainingSessionsByIdResponses, type GetAdminTransactionsByIdData, type GetAdminTransactionsByIdError, type GetAdminTransactionsByIdErrors, type GetAdminTransactionsByIdResponse, type GetAdminTransactionsByIdResponses, type GetAdminTransactionsData, type GetAdminTransactionsError, type GetAdminTransactionsErrors, type GetAdminTransactionsResponse, type GetAdminTransactionsResponses, type GetAdminTransfersByIdData, type GetAdminTransfersByIdError, type GetAdminTransfersByIdErrors, type GetAdminTransfersByIdResponse, type GetAdminTransfersByIdResponses, type GetAdminTransfersData, type GetAdminTransfersError, type GetAdminTransfersErrors, type GetAdminTransfersResponse, type GetAdminTransfersResponses, type GetAdminUserProfilesByIdData, type GetAdminUserProfilesByIdError, type GetAdminUserProfilesByIdErrors, type GetAdminUserProfilesByIdResponse, type GetAdminUserProfilesByIdResponses, type GetAdminUserProfilesData, type GetAdminUserProfilesError, type GetAdminUserProfilesErrors, type GetAdminUserProfilesMeData, type GetAdminUserProfilesMeError, type GetAdminUserProfilesMeErrors, type GetAdminUserProfilesMeResponse, type GetAdminUserProfilesMeResponses, type GetAdminUserProfilesResponse, type GetAdminUserProfilesResponses, type GetAdminUsersByEmailData, type GetAdminUsersByEmailError, type GetAdminUsersByEmailErrors, type GetAdminUsersByEmailResponse, type GetAdminUsersByEmailResponses, type GetAdminUsersByIdData, type GetAdminUsersByIdError, type GetAdminUsersByIdErrors, type GetAdminUsersByIdResponse, type GetAdminUsersByIdResponses, type GetAdminUsersData, type GetAdminUsersError, type GetAdminUsersErrors, type GetAdminUsersMeActivityData, type GetAdminUsersMeActivityError, type GetAdminUsersMeActivityErrors, type GetAdminUsersMeActivityResponse, type GetAdminUsersMeActivityResponses, type GetAdminUsersMeDashboardData, type GetAdminUsersMeDashboardError, type GetAdminUsersMeDashboardErrors, type GetAdminUsersMeDashboardResponse, type GetAdminUsersMeDashboardResponses, type GetAdminUsersMeData, type GetAdminUsersMeError, type GetAdminUsersMeErrors, type GetAdminUsersMeResponse, type GetAdminUsersMeResponses, type GetAdminUsersMeStatsData, type GetAdminUsersMeStatsError, type GetAdminUsersMeStatsErrors, type GetAdminUsersMeStatsResponse, type GetAdminUsersMeStatsResponses, type GetAdminUsersMeTenantsData, type GetAdminUsersMeTenantsError, type GetAdminUsersMeTenantsErrors, type GetAdminUsersMeTenantsResponse, type GetAdminUsersMeTenantsResponses, type GetAdminUsersResponse, type GetAdminUsersResponses, type GetAdminWalletData, type GetAdminWalletError, type GetAdminWalletErrors, type GetAdminWalletResponse, type GetAdminWalletResponses, type GetAdminWalletStorageBreakdownData, type GetAdminWalletStorageBreakdownError, type GetAdminWalletStorageBreakdownErrors, type GetAdminWalletStorageBreakdownResponse, type GetAdminWalletStorageBreakdownResponses, type GetAdminWalletUsageBreakdownData, type GetAdminWalletUsageBreakdownError, type GetAdminWalletUsageBreakdownErrors, type GetAdminWalletUsageBreakdownResponse, type GetAdminWalletUsageBreakdownResponses, type GetAdminWalletUsageData, type GetAdminWalletUsageError, type GetAdminWalletUsageErrors, type GetAdminWalletUsageResponse, type GetAdminWalletUsageResponses, type GetAdminWebhookConfigsByIdData, type GetAdminWebhookConfigsByIdError, type GetAdminWebhookConfigsByIdErrors, type GetAdminWebhookConfigsByIdEventsData, type GetAdminWebhookConfigsByIdEventsError, type GetAdminWebhookConfigsByIdEventsErrors, type GetAdminWebhookConfigsByIdEventsResponse, type GetAdminWebhookConfigsByIdEventsResponses, type GetAdminWebhookConfigsByIdResponse, type GetAdminWebhookConfigsByIdResponses, type GetAdminWebhookConfigsData, type GetAdminWebhookConfigsError, type GetAdminWebhookConfigsErrors, type GetAdminWebhookConfigsResponse, type GetAdminWebhookConfigsResponses, type GetAdminWebhookConfigsStatsData, type GetAdminWebhookConfigsStatsError, type GetAdminWebhookConfigsStatsErrors, type GetAdminWebhookConfigsStatsResponse, type GetAdminWebhookConfigsStatsResponses, type GetAdminWebhookDeliveriesByIdData, type GetAdminWebhookDeliveriesByIdError, type GetAdminWebhookDeliveriesByIdErrors, type GetAdminWebhookDeliveriesByIdResponse, type GetAdminWebhookDeliveriesByIdResponses, type GetAdminWebhookDeliveriesData, type GetAdminWebhookDeliveriesError, type GetAdminWebhookDeliveriesErrors, type GetAdminWebhookDeliveriesResponse, type GetAdminWebhookDeliveriesResponses, type GetAdminWebhookDeliveriesStatsData, type GetAdminWebhookDeliveriesStatsError, type GetAdminWebhookDeliveriesStatsErrors, type GetAdminWebhookDeliveriesStatsResponse, type GetAdminWebhookDeliveriesStatsResponses, type GetAdminWorkspaceMembershipsData, type GetAdminWorkspaceMembershipsError, type GetAdminWorkspaceMembershipsErrors, type GetAdminWorkspaceMembershipsResponse, type GetAdminWorkspaceMembershipsResponses, type GetAdminWorkspacesAnalyticsBatchData, type GetAdminWorkspacesAnalyticsBatchError, type GetAdminWorkspacesAnalyticsBatchErrors, type GetAdminWorkspacesAnalyticsBatchResponse, type GetAdminWorkspacesAnalyticsBatchResponses, type GetAdminWorkspacesByIdData, type GetAdminWorkspacesByIdError, type GetAdminWorkspacesByIdErrors, type GetAdminWorkspacesByIdMembersData, type GetAdminWorkspacesByIdMembersError, type GetAdminWorkspacesByIdMembersErrors, type GetAdminWorkspacesByIdMembersResponse, type GetAdminWorkspacesByIdMembersResponses, type GetAdminWorkspacesByIdResponse, type GetAdminWorkspacesByIdResponses, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingError, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponse, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdData, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdError, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdErrors, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdResponse, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdResponses, type GetAdminWorkspacesByWorkspaceIdExtractionExportsData, type GetAdminWorkspacesByWorkspaceIdExtractionExportsError, type GetAdminWorkspacesByWorkspaceIdExtractionExportsErrors, type GetAdminWorkspacesByWorkspaceIdExtractionExportsResponse, type GetAdminWorkspacesByWorkspaceIdExtractionExportsResponses, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsData, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsError, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsErrors, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsResponse, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsResponses, type GetAdminWorkspacesData, type GetAdminWorkspacesError, type GetAdminWorkspacesErrors, type GetAdminWorkspacesMineData, type GetAdminWorkspacesMineError, type GetAdminWorkspacesMineErrors, type GetAdminWorkspacesMineResponse, type GetAdminWorkspacesMineResponses, type GetAdminWorkspacesResponse, type GetAdminWorkspacesResponses, type GetAdminWorkspacesSharedData, type GetAdminWorkspacesSharedError, type GetAdminWorkspacesSharedErrors, type GetAdminWorkspacesSharedResponse, type GetAdminWorkspacesSharedResponses, GptAdmin, GptCoreError, type GraphEdge, type GraphNode, type Invitation, type IsvRevenue, type IsvSettlement, type Ledger, type Link, type Links, type LlmAnalytics, type Message, NetworkError, NotFoundError, type NotificationLog, type NotificationMethod, type NotificationPreference, type ObjectType, type OperationSuccess, type PatchAdminAccountsByIdCreditData, type PatchAdminAccountsByIdCreditError, type PatchAdminAccountsByIdCreditErrors, type PatchAdminAccountsByIdCreditResponse, type PatchAdminAccountsByIdCreditResponses, type PatchAdminAccountsByIdDebitData, type PatchAdminAccountsByIdDebitError, type PatchAdminAccountsByIdDebitErrors, type PatchAdminAccountsByIdDebitResponse, type PatchAdminAccountsByIdDebitResponses, type PatchAdminAgentsByIdSchemaVersionsByVersionIdData, type PatchAdminAgentsByIdSchemaVersionsByVersionIdError, type PatchAdminAgentsByIdSchemaVersionsByVersionIdErrors, type PatchAdminAgentsByIdSchemaVersionsByVersionIdResponse, type PatchAdminAgentsByIdSchemaVersionsByVersionIdResponses, type PatchAdminAiConversationsByIdData, type PatchAdminAiConversationsByIdError, type PatchAdminAiConversationsByIdErrors, type PatchAdminAiConversationsByIdResponse, type PatchAdminAiConversationsByIdResponses, type PatchAdminApiKeysByIdAllocateData, type PatchAdminApiKeysByIdAllocateError, type PatchAdminApiKeysByIdAllocateErrors, type PatchAdminApiKeysByIdAllocateResponse, type PatchAdminApiKeysByIdAllocateResponses, type PatchAdminApiKeysByIdData, type PatchAdminApiKeysByIdError, type PatchAdminApiKeysByIdErrors, type PatchAdminApiKeysByIdResetPeriodData, type PatchAdminApiKeysByIdResetPeriodError, type PatchAdminApiKeysByIdResetPeriodErrors, type PatchAdminApiKeysByIdResetPeriodResponse, type PatchAdminApiKeysByIdResetPeriodResponses, type PatchAdminApiKeysByIdResponse, type PatchAdminApiKeysByIdResponses, type PatchAdminApiKeysByIdRevokeData, type PatchAdminApiKeysByIdRevokeError, type PatchAdminApiKeysByIdRevokeErrors, type PatchAdminApiKeysByIdRevokeResponse, type PatchAdminApiKeysByIdRevokeResponses, type PatchAdminApiKeysByIdRotateData, type PatchAdminApiKeysByIdRotateError, type PatchAdminApiKeysByIdRotateErrors, type PatchAdminApiKeysByIdRotateResponse, type PatchAdminApiKeysByIdRotateResponses, type PatchAdminApiKeysByIdSetBudgetData, type PatchAdminApiKeysByIdSetBudgetError, type PatchAdminApiKeysByIdSetBudgetErrors, type PatchAdminApiKeysByIdSetBudgetResponse, type PatchAdminApiKeysByIdSetBudgetResponses, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugData, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugError, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugResponse, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses, type PatchAdminApplicationsByIdAllocateCreditsData, type PatchAdminApplicationsByIdAllocateCreditsError, type PatchAdminApplicationsByIdAllocateCreditsErrors, type PatchAdminApplicationsByIdAllocateCreditsResponse, type PatchAdminApplicationsByIdAllocateCreditsResponses, type PatchAdminApplicationsByIdData, type PatchAdminApplicationsByIdError, type PatchAdminApplicationsByIdErrors, type PatchAdminApplicationsByIdGrantCreditsData, type PatchAdminApplicationsByIdGrantCreditsError, type PatchAdminApplicationsByIdGrantCreditsErrors, type PatchAdminApplicationsByIdGrantCreditsResponse, type PatchAdminApplicationsByIdGrantCreditsResponses, type PatchAdminApplicationsByIdResponse, type PatchAdminApplicationsByIdResponses, type PatchAdminBucketsByIdData, type PatchAdminBucketsByIdError, type PatchAdminBucketsByIdErrors, type PatchAdminBucketsByIdResponse, type PatchAdminBucketsByIdResponses, type PatchAdminConfigsByKeyData, type PatchAdminConfigsByKeyError, type PatchAdminConfigsByKeyErrors, type PatchAdminConfigsByKeyResponse, type PatchAdminConfigsByKeyResponses, type PatchAdminCreditPackagesByIdData, type PatchAdminCreditPackagesByIdError, type PatchAdminCreditPackagesByIdErrors, type PatchAdminCreditPackagesByIdResponse, type PatchAdminCreditPackagesByIdResponses, type PatchAdminCustomersByIdData, type PatchAdminCustomersByIdError, type PatchAdminCustomersByIdErrors, type PatchAdminCustomersByIdResponse, type PatchAdminCustomersByIdResponses, type PatchAdminExtractionDocumentsByIdCancelData, type PatchAdminExtractionDocumentsByIdCancelError, type PatchAdminExtractionDocumentsByIdCancelErrors, type PatchAdminExtractionDocumentsByIdCancelResponse, type PatchAdminExtractionDocumentsByIdCancelResponses, type PatchAdminExtractionDocumentsByIdDismissData, type PatchAdminExtractionDocumentsByIdDismissError, type PatchAdminExtractionDocumentsByIdDismissErrors, type PatchAdminExtractionDocumentsByIdDismissResponse, type PatchAdminExtractionDocumentsByIdDismissResponses, type PatchAdminExtractionDocumentsByIdDismissTrainingData, type PatchAdminExtractionDocumentsByIdDismissTrainingError, type PatchAdminExtractionDocumentsByIdDismissTrainingErrors, type PatchAdminExtractionDocumentsByIdDismissTrainingResponse, type PatchAdminExtractionDocumentsByIdDismissTrainingResponses, type PatchAdminExtractionDocumentsByIdExcludeData, type PatchAdminExtractionDocumentsByIdExcludeError, type PatchAdminExtractionDocumentsByIdExcludeErrors, type PatchAdminExtractionDocumentsByIdExcludeResponse, type PatchAdminExtractionDocumentsByIdExcludeResponses, type PatchAdminExtractionDocumentsByIdFinishUploadData, type PatchAdminExtractionDocumentsByIdFinishUploadError, type PatchAdminExtractionDocumentsByIdFinishUploadErrors, type PatchAdminExtractionDocumentsByIdFinishUploadResponse, type PatchAdminExtractionDocumentsByIdFinishUploadResponses, type PatchAdminExtractionDocumentsByIdIncludeData, type PatchAdminExtractionDocumentsByIdIncludeError, type PatchAdminExtractionDocumentsByIdIncludeErrors, type PatchAdminExtractionDocumentsByIdIncludeResponse, type PatchAdminExtractionDocumentsByIdIncludeResponses, type PatchAdminExtractionDocumentsByIdMarkTrainedData, type PatchAdminExtractionDocumentsByIdMarkTrainedError, type PatchAdminExtractionDocumentsByIdMarkTrainedErrors, type PatchAdminExtractionDocumentsByIdMarkTrainedResponse, type PatchAdminExtractionDocumentsByIdMarkTrainedResponses, type PatchAdminExtractionDocumentsByIdReprocessData, type PatchAdminExtractionDocumentsByIdReprocessError, type PatchAdminExtractionDocumentsByIdReprocessErrors, type PatchAdminExtractionDocumentsByIdReprocessResponse, type PatchAdminExtractionDocumentsByIdReprocessResponses, type PatchAdminExtractionDocumentsByIdRestoreData, type PatchAdminExtractionDocumentsByIdRestoreError, type PatchAdminExtractionDocumentsByIdRestoreErrors, type PatchAdminExtractionDocumentsByIdRestoreResponse, type PatchAdminExtractionDocumentsByIdRestoreResponses, type PatchAdminExtractionDocumentsByIdStatusData, type PatchAdminExtractionDocumentsByIdStatusError, type PatchAdminExtractionDocumentsByIdStatusErrors, type PatchAdminExtractionDocumentsByIdStatusResponse, type PatchAdminExtractionDocumentsByIdStatusResponses, type PatchAdminExtractionDocumentsByIdVerificationData, type PatchAdminExtractionDocumentsByIdVerificationError, type PatchAdminExtractionDocumentsByIdVerificationErrors, type PatchAdminExtractionDocumentsByIdVerificationResponse, type PatchAdminExtractionDocumentsByIdVerificationResponses, type PatchAdminExtractionResultsByIdCorrectionsData, type PatchAdminExtractionResultsByIdCorrectionsError, type PatchAdminExtractionResultsByIdCorrectionsErrors, type PatchAdminExtractionResultsByIdCorrectionsResponse, type PatchAdminExtractionResultsByIdCorrectionsResponses, type PatchAdminExtractionResultsByIdRegenerateData, type PatchAdminExtractionResultsByIdRegenerateError, type PatchAdminExtractionResultsByIdRegenerateErrors, type PatchAdminExtractionResultsByIdRegenerateResponse, type PatchAdminExtractionResultsByIdRegenerateResponses, type PatchAdminInvitationsByIdAcceptByUserData, type PatchAdminInvitationsByIdAcceptByUserError, type PatchAdminInvitationsByIdAcceptByUserErrors, type PatchAdminInvitationsByIdAcceptByUserResponse, type PatchAdminInvitationsByIdAcceptByUserResponses, type PatchAdminInvitationsByIdAcceptData, type PatchAdminInvitationsByIdAcceptError, type PatchAdminInvitationsByIdAcceptErrors, type PatchAdminInvitationsByIdAcceptResponse, type PatchAdminInvitationsByIdAcceptResponses, type PatchAdminInvitationsByIdDeclineData, type PatchAdminInvitationsByIdDeclineError, type PatchAdminInvitationsByIdDeclineErrors, type PatchAdminInvitationsByIdDeclineResponse, type PatchAdminInvitationsByIdDeclineResponses, type PatchAdminInvitationsByIdResendData, type PatchAdminInvitationsByIdResendError, type PatchAdminInvitationsByIdResendErrors, type PatchAdminInvitationsByIdResendResponse, type PatchAdminInvitationsByIdResendResponses, type PatchAdminInvitationsByIdRevokeData, type PatchAdminInvitationsByIdRevokeError, type PatchAdminInvitationsByIdRevokeErrors, type PatchAdminInvitationsByIdRevokeResponse, type PatchAdminInvitationsByIdRevokeResponses, type PatchAdminIsvSettlementsByIdData, type PatchAdminIsvSettlementsByIdError, type PatchAdminIsvSettlementsByIdErrors, type PatchAdminIsvSettlementsByIdResponse, type PatchAdminIsvSettlementsByIdResponses, type PatchAdminMessagesByIdData, type PatchAdminMessagesByIdError, type PatchAdminMessagesByIdErrors, type PatchAdminMessagesByIdResponse, type PatchAdminMessagesByIdResponses, type PatchAdminNotificationMethodsByIdData, type PatchAdminNotificationMethodsByIdError, type PatchAdminNotificationMethodsByIdErrors, type PatchAdminNotificationMethodsByIdResponse, type PatchAdminNotificationMethodsByIdResponses, type PatchAdminNotificationMethodsByIdSendVerificationData, type PatchAdminNotificationMethodsByIdSendVerificationError, type PatchAdminNotificationMethodsByIdSendVerificationErrors, type PatchAdminNotificationMethodsByIdSendVerificationResponse, type PatchAdminNotificationMethodsByIdSendVerificationResponses, type PatchAdminNotificationMethodsByIdSetPrimaryData, type PatchAdminNotificationMethodsByIdSetPrimaryError, type PatchAdminNotificationMethodsByIdSetPrimaryErrors, type PatchAdminNotificationMethodsByIdSetPrimaryResponse, type PatchAdminNotificationMethodsByIdSetPrimaryResponses, type PatchAdminNotificationMethodsByIdVerifyData, type PatchAdminNotificationMethodsByIdVerifyError, type PatchAdminNotificationMethodsByIdVerifyErrors, type PatchAdminNotificationMethodsByIdVerifyResponse, type PatchAdminNotificationMethodsByIdVerifyResponses, type PatchAdminNotificationPreferencesByIdData, type PatchAdminNotificationPreferencesByIdError, type PatchAdminNotificationPreferencesByIdErrors, type PatchAdminNotificationPreferencesByIdResponse, type PatchAdminNotificationPreferencesByIdResponses, type PatchAdminPaymentMethodsByIdData, type PatchAdminPaymentMethodsByIdError, type PatchAdminPaymentMethodsByIdErrors, type PatchAdminPaymentMethodsByIdResponse, type PatchAdminPaymentMethodsByIdResponses, type PatchAdminPlansByIdData, type PatchAdminPlansByIdError, type PatchAdminPlansByIdErrors, type PatchAdminPlansByIdResponse, type PatchAdminPlansByIdResponses, type PatchAdminPricingRulesByIdData, type PatchAdminPricingRulesByIdError, type PatchAdminPricingRulesByIdErrors, type PatchAdminPricingRulesByIdResponse, type PatchAdminPricingRulesByIdResponses, type PatchAdminPricingStrategiesByIdData, type PatchAdminPricingStrategiesByIdError, type PatchAdminPricingStrategiesByIdErrors, type PatchAdminPricingStrategiesByIdResponse, type PatchAdminPricingStrategiesByIdResponses, type PatchAdminSearchSavedByIdData, type PatchAdminSearchSavedByIdError, type PatchAdminSearchSavedByIdErrors, type PatchAdminSearchSavedByIdResponse, type PatchAdminSearchSavedByIdResponses, type PatchAdminSubscriptionsByIdCancelData, type PatchAdminSubscriptionsByIdCancelError, type PatchAdminSubscriptionsByIdCancelErrors, type PatchAdminSubscriptionsByIdCancelResponse, type PatchAdminSubscriptionsByIdCancelResponses, type PatchAdminSubscriptionsByIdData, type PatchAdminSubscriptionsByIdError, type PatchAdminSubscriptionsByIdErrors, type PatchAdminSubscriptionsByIdResponse, type PatchAdminSubscriptionsByIdResponses, type PatchAdminSysAiConfigByIdData, type PatchAdminSysAiConfigByIdError, type PatchAdminSysAiConfigByIdErrors, type PatchAdminSysAiConfigByIdResponse, type PatchAdminSysAiConfigByIdResponses, type PatchAdminSystemMessagesByIdData, type PatchAdminSystemMessagesByIdError, type PatchAdminSystemMessagesByIdErrors, type PatchAdminSystemMessagesByIdPublishData, type PatchAdminSystemMessagesByIdPublishError, type PatchAdminSystemMessagesByIdPublishErrors, type PatchAdminSystemMessagesByIdPublishResponse, type PatchAdminSystemMessagesByIdPublishResponses, type PatchAdminSystemMessagesByIdResponse, type PatchAdminSystemMessagesByIdResponses, type PatchAdminSystemMessagesByIdUnpublishData, type PatchAdminSystemMessagesByIdUnpublishError, type PatchAdminSystemMessagesByIdUnpublishErrors, type PatchAdminSystemMessagesByIdUnpublishResponse, type PatchAdminSystemMessagesByIdUnpublishResponses, type PatchAdminTenantMembershipsByTenantIdByUserIdData, type PatchAdminTenantMembershipsByTenantIdByUserIdError, type PatchAdminTenantMembershipsByTenantIdByUserIdErrors, type PatchAdminTenantMembershipsByTenantIdByUserIdResponse, type PatchAdminTenantMembershipsByTenantIdByUserIdResponses, type PatchAdminTenantPricingOverridesByIdData, type PatchAdminTenantPricingOverridesByIdError, type PatchAdminTenantPricingOverridesByIdErrors, type PatchAdminTenantPricingOverridesByIdResponse, type PatchAdminTenantPricingOverridesByIdResponses, type PatchAdminTenantsByIdData, type PatchAdminTenantsByIdError, type PatchAdminTenantsByIdErrors, type PatchAdminTenantsByIdResponse, type PatchAdminTenantsByIdResponses, type PatchAdminThreadsByIdArchiveData, type PatchAdminThreadsByIdArchiveError, type PatchAdminThreadsByIdArchiveErrors, type PatchAdminThreadsByIdArchiveResponse, type PatchAdminThreadsByIdArchiveResponses, type PatchAdminThreadsByIdData, type PatchAdminThreadsByIdError, type PatchAdminThreadsByIdErrors, type PatchAdminThreadsByIdResponse, type PatchAdminThreadsByIdResponses, type PatchAdminThreadsByIdUnarchiveData, type PatchAdminThreadsByIdUnarchiveError, type PatchAdminThreadsByIdUnarchiveErrors, type PatchAdminThreadsByIdUnarchiveResponse, type PatchAdminThreadsByIdUnarchiveResponses, type PatchAdminTrainingExamplesByIdData, type PatchAdminTrainingExamplesByIdError, type PatchAdminTrainingExamplesByIdErrors, type PatchAdminTrainingExamplesByIdResponse, type PatchAdminTrainingExamplesByIdResponses, type PatchAdminUserProfilesByIdAcceptTosData, type PatchAdminUserProfilesByIdAcceptTosError, type PatchAdminUserProfilesByIdAcceptTosErrors, type PatchAdminUserProfilesByIdAcceptTosResponse, type PatchAdminUserProfilesByIdAcceptTosResponses, type PatchAdminUserProfilesByIdData, type PatchAdminUserProfilesByIdDismissAnnouncementData, type PatchAdminUserProfilesByIdDismissAnnouncementError, type PatchAdminUserProfilesByIdDismissAnnouncementErrors, type PatchAdminUserProfilesByIdDismissAnnouncementResponse, type PatchAdminUserProfilesByIdDismissAnnouncementResponses, type PatchAdminUserProfilesByIdDismissWelcomeData, type PatchAdminUserProfilesByIdDismissWelcomeError, type PatchAdminUserProfilesByIdDismissWelcomeErrors, type PatchAdminUserProfilesByIdDismissWelcomeResponse, type PatchAdminUserProfilesByIdDismissWelcomeResponses, type PatchAdminUserProfilesByIdError, type PatchAdminUserProfilesByIdErrors, type PatchAdminUserProfilesByIdResponse, type PatchAdminUserProfilesByIdResponses, type PatchAdminUsersAuthPasswordChangeData, type PatchAdminUsersAuthPasswordChangeError, type PatchAdminUsersAuthPasswordChangeErrors, type PatchAdminUsersAuthPasswordChangeResponse, type PatchAdminUsersAuthPasswordChangeResponses, type PatchAdminUsersAuthResetPasswordData, type PatchAdminUsersAuthResetPasswordError, type PatchAdminUsersAuthResetPasswordErrors, type PatchAdminUsersAuthResetPasswordResponse, type PatchAdminUsersAuthResetPasswordResponses, type PatchAdminUsersByIdAdminData, type PatchAdminUsersByIdAdminEmailData, type PatchAdminUsersByIdAdminEmailError, type PatchAdminUsersByIdAdminEmailErrors, type PatchAdminUsersByIdAdminEmailResponse, type PatchAdminUsersByIdAdminEmailResponses, type PatchAdminUsersByIdAdminError, type PatchAdminUsersByIdAdminErrors, type PatchAdminUsersByIdAdminResponse, type PatchAdminUsersByIdAdminResponses, type PatchAdminUsersByIdConfirmEmailData, type PatchAdminUsersByIdConfirmEmailError, type PatchAdminUsersByIdConfirmEmailErrors, type PatchAdminUsersByIdConfirmEmailResponse, type PatchAdminUsersByIdConfirmEmailResponses, type PatchAdminUsersByIdResetPasswordData, type PatchAdminUsersByIdResetPasswordError, type PatchAdminUsersByIdResetPasswordErrors, type PatchAdminUsersByIdResetPasswordResponse, type PatchAdminUsersByIdResetPasswordResponses, type PatchAdminWalletAddonsByAddonSlugCancelData, type PatchAdminWalletAddonsByAddonSlugCancelError, type PatchAdminWalletAddonsByAddonSlugCancelErrors, type PatchAdminWalletAddonsByAddonSlugCancelResponse, type PatchAdminWalletAddonsByAddonSlugCancelResponses, type PatchAdminWalletAddonsData, type PatchAdminWalletAddonsError, type PatchAdminWalletAddonsErrors, type PatchAdminWalletAddonsResponse, type PatchAdminWalletAddonsResponses, type PatchAdminWalletCreditsData, type PatchAdminWalletCreditsError, type PatchAdminWalletCreditsErrors, type PatchAdminWalletCreditsResponse, type PatchAdminWalletCreditsResponses, type PatchAdminWalletPlanData, type PatchAdminWalletPlanError, type PatchAdminWalletPlanErrors, type PatchAdminWalletPlanResponse, type PatchAdminWalletPlanResponses, type PatchAdminWalletStorageData, type PatchAdminWalletStorageError, type PatchAdminWalletStorageErrors, type PatchAdminWalletStorageResponse, type PatchAdminWalletStorageResponses, type PatchAdminWebhookConfigsByIdData, type PatchAdminWebhookConfigsByIdError, type PatchAdminWebhookConfigsByIdErrors, type PatchAdminWebhookConfigsByIdResponse, type PatchAdminWebhookConfigsByIdResponses, type PatchAdminWebhookConfigsByIdRotateSecretData, type PatchAdminWebhookConfigsByIdRotateSecretError, type PatchAdminWebhookConfigsByIdRotateSecretErrors, type PatchAdminWebhookConfigsByIdRotateSecretResponse, type PatchAdminWebhookConfigsByIdRotateSecretResponses, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdData, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdError, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponse, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type PatchAdminWorkspacesByIdAllocateData, type PatchAdminWorkspacesByIdAllocateError, type PatchAdminWorkspacesByIdAllocateErrors, type PatchAdminWorkspacesByIdAllocateResponse, type PatchAdminWorkspacesByIdAllocateResponses, type PatchAdminWorkspacesByIdData, type PatchAdminWorkspacesByIdError, type PatchAdminWorkspacesByIdErrors, type PatchAdminWorkspacesByIdPopulateHashesData, type PatchAdminWorkspacesByIdPopulateHashesError, type PatchAdminWorkspacesByIdPopulateHashesErrors, type PatchAdminWorkspacesByIdPopulateHashesResponse, type PatchAdminWorkspacesByIdPopulateHashesResponses, type PatchAdminWorkspacesByIdResponse, type PatchAdminWorkspacesByIdResponses, type PatchAdminWorkspacesByIdStorageSettingsData, type PatchAdminWorkspacesByIdStorageSettingsError, type PatchAdminWorkspacesByIdStorageSettingsErrors, type PatchAdminWorkspacesByIdStorageSettingsResponse, type PatchAdminWorkspacesByIdStorageSettingsResponses, type Payment, type PaymentMethod, type Permission, type PermissionMeta, type PermissionPreset, type Plan, type PostAdminAgentTestResultsData, type PostAdminAgentTestResultsError, type PostAdminAgentTestResultsErrors, type PostAdminAgentTestResultsResponse, type PostAdminAgentTestResultsResponses, type PostAdminAgentVersionComparisonsData, type PostAdminAgentVersionComparisonsError, type PostAdminAgentVersionComparisonsErrors, type PostAdminAgentVersionComparisonsResponse, type PostAdminAgentVersionComparisonsResponses, type PostAdminAgentVersionsByIdAddSystemFieldData, type PostAdminAgentVersionsByIdAddSystemFieldError, type PostAdminAgentVersionsByIdAddSystemFieldErrors, type PostAdminAgentVersionsByIdAddSystemFieldResponses, type PostAdminAgentVersionsByIdRemoveSystemFieldData, type PostAdminAgentVersionsByIdRemoveSystemFieldError, type PostAdminAgentVersionsByIdRemoveSystemFieldErrors, type PostAdminAgentVersionsByIdRemoveSystemFieldResponses, type PostAdminAgentVersionsByIdSetSystemFieldsData, type PostAdminAgentVersionsByIdSetSystemFieldsError, type PostAdminAgentVersionsByIdSetSystemFieldsErrors, type PostAdminAgentVersionsByIdSetSystemFieldsResponses, type PostAdminAgentVersionsData, type PostAdminAgentVersionsError, type PostAdminAgentVersionsErrors, type PostAdminAgentVersionsResponse, type PostAdminAgentVersionsResponses, type PostAdminAgentsByIdCloneData, type PostAdminAgentsByIdCloneError, type PostAdminAgentsByIdCloneErrors, type PostAdminAgentsByIdCloneResponse, type PostAdminAgentsByIdCloneResponses, type PostAdminAgentsByIdDiscoverSchemaData, type PostAdminAgentsByIdDiscoverSchemaError, type PostAdminAgentsByIdDiscoverSchemaErrors, type PostAdminAgentsByIdDiscoverSchemaResponse, type PostAdminAgentsByIdDiscoverSchemaResponses, type PostAdminAgentsByIdExportData, type PostAdminAgentsByIdExportError, type PostAdminAgentsByIdExportErrors, type PostAdminAgentsByIdExportResponse, type PostAdminAgentsByIdExportResponses, type PostAdminAgentsByIdPublishVersionData, type PostAdminAgentsByIdPublishVersionError, type PostAdminAgentsByIdPublishVersionErrors, type PostAdminAgentsByIdPublishVersionResponse, type PostAdminAgentsByIdPublishVersionResponses, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateData, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateError, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateErrors, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponse, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponses, type PostAdminAgentsByIdSchemaVersionsData, type PostAdminAgentsByIdSchemaVersionsError, type PostAdminAgentsByIdSchemaVersionsErrors, type PostAdminAgentsByIdSchemaVersionsResponse, type PostAdminAgentsByIdSchemaVersionsResponses, type PostAdminAgentsByIdTeachData, type PostAdminAgentsByIdTeachError, type PostAdminAgentsByIdTeachErrors, type PostAdminAgentsByIdTeachResponse, type PostAdminAgentsByIdTeachResponses, type PostAdminAgentsByIdTestData, type PostAdminAgentsByIdTestError, type PostAdminAgentsByIdTestErrors, type PostAdminAgentsByIdTestResponse, type PostAdminAgentsByIdTestResponses, type PostAdminAgentsByIdValidateData, type PostAdminAgentsByIdValidateError, type PostAdminAgentsByIdValidateErrors, type PostAdminAgentsByIdValidateResponse, type PostAdminAgentsByIdValidateResponses, type PostAdminAgentsCloneForWorkspaceData, type PostAdminAgentsCloneForWorkspaceError, type PostAdminAgentsCloneForWorkspaceErrors, type PostAdminAgentsCloneForWorkspaceResponse, type PostAdminAgentsCloneForWorkspaceResponses, type PostAdminAgentsImportData, type PostAdminAgentsImportError, type PostAdminAgentsImportErrors, type PostAdminAgentsImportResponse, type PostAdminAgentsImportResponses, type PostAdminAgentsPredictData, type PostAdminAgentsPredictError, type PostAdminAgentsPredictErrors, type PostAdminAgentsPredictResponse, type PostAdminAgentsPredictResponses, type PostAdminAiChunksSearchData, type PostAdminAiChunksSearchError, type PostAdminAiChunksSearchErrors, type PostAdminAiChunksSearchResponse, type PostAdminAiChunksSearchResponses, type PostAdminAiConversationsData, type PostAdminAiConversationsError, type PostAdminAiConversationsErrors, type PostAdminAiConversationsResponse, type PostAdminAiConversationsResponses, type PostAdminAiEmbedData, type PostAdminAiEmbedError, type PostAdminAiEmbedErrors, type PostAdminAiEmbedResponse, type PostAdminAiEmbedResponses, type PostAdminAiGraphEdgesData, type PostAdminAiGraphEdgesError, type PostAdminAiGraphEdgesErrors, type PostAdminAiGraphEdgesResponse, type PostAdminAiGraphEdgesResponses, type PostAdminAiGraphNodesData, type PostAdminAiGraphNodesError, type PostAdminAiGraphNodesErrors, type PostAdminAiGraphNodesResponse, type PostAdminAiGraphNodesResponses, type PostAdminAiMessagesData, type PostAdminAiMessagesError, type PostAdminAiMessagesErrors, type PostAdminAiMessagesResponse, type PostAdminAiMessagesResponses, type PostAdminAiSearchAdvancedData, type PostAdminAiSearchAdvancedError, type PostAdminAiSearchAdvancedErrors, type PostAdminAiSearchAdvancedResponse, type PostAdminAiSearchAdvancedResponses, type PostAdminAiSearchData, type PostAdminAiSearchError, type PostAdminAiSearchErrors, type PostAdminAiSearchResponse, type PostAdminAiSearchResponses, type PostAdminApiKeysData, type PostAdminApiKeysError, type PostAdminApiKeysErrors, type PostAdminApiKeysResponse, type PostAdminApiKeysResponses, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewData, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewError, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewErrors, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewResponse, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewResponses, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestData, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestError, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestErrors, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestResponse, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestResponses, type PostAdminApplicationsByApplicationIdEmailTemplatesData, type PostAdminApplicationsByApplicationIdEmailTemplatesError, type PostAdminApplicationsByApplicationIdEmailTemplatesErrors, type PostAdminApplicationsByApplicationIdEmailTemplatesResponse, type PostAdminApplicationsByApplicationIdEmailTemplatesResponses, type PostAdminApplicationsData, type PostAdminApplicationsError, type PostAdminApplicationsErrors, type PostAdminApplicationsResponse, type PostAdminApplicationsResponses, type PostAdminBucketsData, type PostAdminBucketsError, type PostAdminBucketsErrors, type PostAdminBucketsResponse, type PostAdminBucketsResponses, type PostAdminConfigsData, type PostAdminConfigsError, type PostAdminConfigsErrors, type PostAdminConfigsResponse, type PostAdminConfigsResponses, type PostAdminCreditPackagesData, type PostAdminCreditPackagesError, type PostAdminCreditPackagesErrors, type PostAdminCreditPackagesResponse, type PostAdminCreditPackagesResponses, type PostAdminCustomersData, type PostAdminCustomersError, type PostAdminCustomersErrors, type PostAdminCustomersResponse, type PostAdminCustomersResponses, type PostAdminDocumentsBulkDeleteData, type PostAdminDocumentsBulkDeleteError, type PostAdminDocumentsBulkDeleteErrors, type PostAdminDocumentsBulkDeleteResponse, type PostAdminDocumentsBulkDeleteResponses, type PostAdminDocumentsPresignedUploadData, type PostAdminDocumentsPresignedUploadError, type PostAdminDocumentsPresignedUploadErrors, type PostAdminDocumentsPresignedUploadResponse, type PostAdminDocumentsPresignedUploadResponses, type PostAdminExtractionBatchesData, type PostAdminExtractionBatchesError, type PostAdminExtractionBatchesErrors, type PostAdminExtractionBatchesResponse, type PostAdminExtractionBatchesResponses, type PostAdminExtractionDocumentsBeginUploadData, type PostAdminExtractionDocumentsBeginUploadError, type PostAdminExtractionDocumentsBeginUploadErrors, type PostAdminExtractionDocumentsBeginUploadResponse, type PostAdminExtractionDocumentsBeginUploadResponses, type PostAdminExtractionDocumentsBulkReprocessData, type PostAdminExtractionDocumentsBulkReprocessError, type PostAdminExtractionDocumentsBulkReprocessErrors, type PostAdminExtractionDocumentsBulkReprocessResponse, type PostAdminExtractionDocumentsBulkReprocessResponses, type PostAdminExtractionDocumentsFindOrBeginUploadData, type PostAdminExtractionDocumentsFindOrBeginUploadError, type PostAdminExtractionDocumentsFindOrBeginUploadErrors, type PostAdminExtractionDocumentsFindOrBeginUploadResponse, type PostAdminExtractionDocumentsFindOrBeginUploadResponses, type PostAdminExtractionDocumentsUploadData, type PostAdminExtractionDocumentsUploadError, type PostAdminExtractionDocumentsUploadErrors, type PostAdminExtractionDocumentsUploadResponse, type PostAdminExtractionDocumentsUploadResponses, type PostAdminExtractionResultsData, type PostAdminExtractionResultsError, type PostAdminExtractionResultsErrors, type PostAdminExtractionResultsResponse, type PostAdminExtractionResultsResponses, type PostAdminExtractionSchemaDiscoveriesData, type PostAdminExtractionSchemaDiscoveriesError, type PostAdminExtractionSchemaDiscoveriesErrors, type PostAdminExtractionSchemaDiscoveriesResponse, type PostAdminExtractionSchemaDiscoveriesResponses, type PostAdminFieldTemplatesData, type PostAdminFieldTemplatesError, type PostAdminFieldTemplatesErrors, type PostAdminFieldTemplatesResponse, type PostAdminFieldTemplatesResponses, type PostAdminInvitationsAcceptByTokenData, type PostAdminInvitationsAcceptByTokenError, type PostAdminInvitationsAcceptByTokenErrors, type PostAdminInvitationsAcceptByTokenResponse, type PostAdminInvitationsAcceptByTokenResponses, type PostAdminInvitationsData, type PostAdminInvitationsError, type PostAdminInvitationsErrors, type PostAdminInvitationsResponse, type PostAdminInvitationsResponses, type PostAdminIsvRevenueData, type PostAdminIsvRevenueError, type PostAdminIsvRevenueErrors, type PostAdminIsvRevenueResponse, type PostAdminIsvRevenueResponses, type PostAdminIsvSettlementsData, type PostAdminIsvSettlementsError, type PostAdminIsvSettlementsErrors, type PostAdminIsvSettlementsResponse, type PostAdminIsvSettlementsResponses, type PostAdminLlmAnalyticsData, type PostAdminLlmAnalyticsError, type PostAdminLlmAnalyticsErrors, type PostAdminLlmAnalyticsResponse, type PostAdminLlmAnalyticsResponses, type PostAdminMessagesData, type PostAdminMessagesError, type PostAdminMessagesErrors, type PostAdminMessagesResponse, type PostAdminMessagesResponses, type PostAdminNotificationMethodsData, type PostAdminNotificationMethodsError, type PostAdminNotificationMethodsErrors, type PostAdminNotificationMethodsResponse, type PostAdminNotificationMethodsResponses, type PostAdminNotificationPreferencesData, type PostAdminNotificationPreferencesError, type PostAdminNotificationPreferencesErrors, type PostAdminNotificationPreferencesResponse, type PostAdminNotificationPreferencesResponses, type PostAdminObjectsBulkDestroyData, type PostAdminObjectsBulkDestroyError, type PostAdminObjectsBulkDestroyErrors, type PostAdminObjectsBulkDestroyResponse, type PostAdminObjectsBulkDestroyResponses, type PostAdminObjectsCopyData, type PostAdminObjectsCopyError, type PostAdminObjectsCopyErrors, type PostAdminObjectsCopyResponse, type PostAdminObjectsCopyResponses, type PostAdminObjectsMoveData, type PostAdminObjectsMoveError, type PostAdminObjectsMoveErrors, type PostAdminObjectsMoveResponse, type PostAdminObjectsMoveResponses, type PostAdminObjectsRegisterData, type PostAdminObjectsRegisterError, type PostAdminObjectsRegisterErrors, type PostAdminObjectsRegisterResponse, type PostAdminObjectsRegisterResponses, type PostAdminPaymentMethodsData, type PostAdminPaymentMethodsError, type PostAdminPaymentMethodsErrors, type PostAdminPaymentMethodsResponse, type PostAdminPaymentMethodsResponses, type PostAdminPaymentsData, type PostAdminPaymentsError, type PostAdminPaymentsErrors, type PostAdminPaymentsResponse, type PostAdminPaymentsResponses, type PostAdminPlansData, type PostAdminPlansError, type PostAdminPlansErrors, type PostAdminPlansResponse, type PostAdminPlansResponses, type PostAdminPricingRulesData, type PostAdminPricingRulesError, type PostAdminPricingRulesErrors, type PostAdminPricingRulesResponse, type PostAdminPricingRulesResponses, type PostAdminPricingStrategiesData, type PostAdminPricingStrategiesError, type PostAdminPricingStrategiesErrors, type PostAdminPricingStrategiesResponse, type PostAdminPricingStrategiesResponses, type PostAdminSearchBatchData, type PostAdminSearchBatchError, type PostAdminSearchBatchErrors, type PostAdminSearchBatchResponse, type PostAdminSearchBatchResponses, type PostAdminSearchReindexData, type PostAdminSearchReindexError, type PostAdminSearchReindexErrors, type PostAdminSearchReindexResponse, type PostAdminSearchReindexResponses, type PostAdminSearchSavedByIdRunData, type PostAdminSearchSavedByIdRunError, type PostAdminSearchSavedByIdRunErrors, type PostAdminSearchSavedByIdRunResponse, type PostAdminSearchSavedByIdRunResponses, type PostAdminSearchSavedData, type PostAdminSearchSavedError, type PostAdminSearchSavedErrors, type PostAdminSearchSavedResponse, type PostAdminSearchSavedResponses, type PostAdminStorageSignDownloadData, type PostAdminStorageSignDownloadError, type PostAdminStorageSignDownloadErrors, type PostAdminStorageSignDownloadResponse, type PostAdminStorageSignDownloadResponses, type PostAdminStorageSignUploadData, type PostAdminStorageSignUploadError, type PostAdminStorageSignUploadErrors, type PostAdminStorageSignUploadResponse, type PostAdminStorageSignUploadResponses, type PostAdminSubscriptionsData, type PostAdminSubscriptionsError, type PostAdminSubscriptionsErrors, type PostAdminSubscriptionsResponse, type PostAdminSubscriptionsResponses, type PostAdminSysAiConfigData, type PostAdminSysAiConfigError, type PostAdminSysAiConfigErrors, type PostAdminSysAiConfigResponse, type PostAdminSysAiConfigResponses, type PostAdminSysSemanticCacheClearData, type PostAdminSysSemanticCacheClearError, type PostAdminSysSemanticCacheClearErrors, type PostAdminSysSemanticCacheClearResponse, type PostAdminSysSemanticCacheClearResponses, type PostAdminSystemMessagesData, type PostAdminSystemMessagesError, type PostAdminSystemMessagesErrors, type PostAdminSystemMessagesResponse, type PostAdminSystemMessagesResponses, type PostAdminTenantMembershipsData, type PostAdminTenantMembershipsError, type PostAdminTenantMembershipsErrors, type PostAdminTenantMembershipsResponse, type PostAdminTenantMembershipsResponses, type PostAdminTenantPricingOverridesData, type PostAdminTenantPricingOverridesError, type PostAdminTenantPricingOverridesErrors, type PostAdminTenantPricingOverridesResponse, type PostAdminTenantPricingOverridesResponses, type PostAdminTenantsByIdBuyStorageData, type PostAdminTenantsByIdBuyStorageError, type PostAdminTenantsByIdBuyStorageErrors, type PostAdminTenantsByIdBuyStorageResponse, type PostAdminTenantsByIdBuyStorageResponses, type PostAdminTenantsByIdCreditData, type PostAdminTenantsByIdCreditError, type PostAdminTenantsByIdCreditErrors, type PostAdminTenantsByIdCreditResponse, type PostAdminTenantsByIdCreditResponses, type PostAdminTenantsByIdRemoveStorageData, type PostAdminTenantsByIdRemoveStorageError, type PostAdminTenantsByIdRemoveStorageErrors, type PostAdminTenantsByIdRemoveStorageResponse, type PostAdminTenantsByIdRemoveStorageResponses, type PostAdminTenantsByIdSchedulePurgeData, type PostAdminTenantsByIdSchedulePurgeError, type PostAdminTenantsByIdSchedulePurgeErrors, type PostAdminTenantsByIdSchedulePurgeResponse, type PostAdminTenantsByIdSchedulePurgeResponses, type PostAdminTenantsData, type PostAdminTenantsError, type PostAdminTenantsErrors, type PostAdminTenantsIsvData, type PostAdminTenantsIsvError, type PostAdminTenantsIsvErrors, type PostAdminTenantsIsvResponse, type PostAdminTenantsIsvResponses, type PostAdminTenantsResponse, type PostAdminTenantsResponses, type PostAdminThreadsActiveData, type PostAdminThreadsActiveError, type PostAdminThreadsActiveErrors, type PostAdminThreadsActiveResponse, type PostAdminThreadsActiveResponses, type PostAdminThreadsByIdExportData, type PostAdminThreadsByIdExportError, type PostAdminThreadsByIdExportErrors, type PostAdminThreadsByIdExportResponse, type PostAdminThreadsByIdExportResponses, type PostAdminThreadsByIdForkData, type PostAdminThreadsByIdForkError, type PostAdminThreadsByIdForkErrors, type PostAdminThreadsByIdForkResponse, type PostAdminThreadsByIdForkResponses, type PostAdminThreadsByIdMessagesData, type PostAdminThreadsByIdMessagesError, type PostAdminThreadsByIdMessagesErrors, type PostAdminThreadsByIdMessagesResponse, type PostAdminThreadsByIdMessagesResponses, type PostAdminThreadsByIdSummarizeData, type PostAdminThreadsByIdSummarizeError, type PostAdminThreadsByIdSummarizeErrors, type PostAdminThreadsByIdSummarizeResponse, type PostAdminThreadsByIdSummarizeResponses, type PostAdminThreadsData, type PostAdminThreadsError, type PostAdminThreadsErrors, type PostAdminThreadsResponse, type PostAdminThreadsResponses, type PostAdminTokensData, type PostAdminTokensError, type PostAdminTokensErrors, type PostAdminTokensResponse, type PostAdminTokensResponses, type PostAdminTrainingExamplesBulkData, type PostAdminTrainingExamplesBulkDeleteData, type PostAdminTrainingExamplesBulkDeleteError, type PostAdminTrainingExamplesBulkDeleteErrors, type PostAdminTrainingExamplesBulkDeleteResponse, type PostAdminTrainingExamplesBulkDeleteResponses, type PostAdminTrainingExamplesBulkError, type PostAdminTrainingExamplesBulkErrors, type PostAdminTrainingExamplesBulkResponse, type PostAdminTrainingExamplesBulkResponses, type PostAdminTrainingExamplesData, type PostAdminTrainingExamplesError, type PostAdminTrainingExamplesErrors, type PostAdminTrainingExamplesResponse, type PostAdminTrainingExamplesResponses, type PostAdminTrainingExamplesSearchData, type PostAdminTrainingExamplesSearchError, type PostAdminTrainingExamplesSearchErrors, type PostAdminTrainingExamplesSearchResponse, type PostAdminTrainingExamplesSearchResponses, type PostAdminUserProfilesData, type PostAdminUserProfilesError, type PostAdminUserProfilesErrors, type PostAdminUserProfilesResponse, type PostAdminUserProfilesResponses, type PostAdminUsersAuthConfirmData, type PostAdminUsersAuthConfirmError, type PostAdminUsersAuthConfirmErrors, type PostAdminUsersAuthConfirmResponse, type PostAdminUsersAuthConfirmResponses, type PostAdminUsersAuthLoginData, type PostAdminUsersAuthLoginError, type PostAdminUsersAuthLoginErrors, type PostAdminUsersAuthLoginResponse, type PostAdminUsersAuthLoginResponses, type PostAdminUsersAuthMagicLinkLoginData, type PostAdminUsersAuthMagicLinkLoginError, type PostAdminUsersAuthMagicLinkLoginErrors, type PostAdminUsersAuthMagicLinkLoginResponse, type PostAdminUsersAuthMagicLinkLoginResponses, type PostAdminUsersAuthMagicLinkRequestData, type PostAdminUsersAuthMagicLinkRequestError, type PostAdminUsersAuthMagicLinkRequestErrors, type PostAdminUsersAuthMagicLinkRequestResponse, type PostAdminUsersAuthMagicLinkRequestResponses, type PostAdminUsersAuthRegisterData, type PostAdminUsersAuthRegisterError, type PostAdminUsersAuthRegisterErrors, type PostAdminUsersAuthRegisterResponse, type PostAdminUsersAuthRegisterResponses, type PostAdminUsersAuthRegisterWithOidcData, type PostAdminUsersAuthRegisterWithOidcError, type PostAdminUsersAuthRegisterWithOidcErrors, type PostAdminUsersAuthRegisterWithOidcResponse, type PostAdminUsersAuthRegisterWithOidcResponses, type PostAdminUsersAuthResendConfirmationData, type PostAdminUsersAuthResendConfirmationError, type PostAdminUsersAuthResendConfirmationErrors, type PostAdminUsersAuthResendConfirmationResponse, type PostAdminUsersAuthResendConfirmationResponses, type PostAdminUsersRegisterIsvData, type PostAdminUsersRegisterIsvError, type PostAdminUsersRegisterIsvErrors, type PostAdminUsersRegisterIsvResponse, type PostAdminUsersRegisterIsvResponses, type PostAdminWebhookConfigsBulkDisableData, type PostAdminWebhookConfigsBulkDisableError, type PostAdminWebhookConfigsBulkDisableErrors, type PostAdminWebhookConfigsBulkDisableResponse, type PostAdminWebhookConfigsBulkDisableResponses, type PostAdminWebhookConfigsBulkEnableData, type PostAdminWebhookConfigsBulkEnableError, type PostAdminWebhookConfigsBulkEnableErrors, type PostAdminWebhookConfigsBulkEnableResponse, type PostAdminWebhookConfigsBulkEnableResponses, type PostAdminWebhookConfigsByIdReplayData, type PostAdminWebhookConfigsByIdReplayError, type PostAdminWebhookConfigsByIdReplayErrors, type PostAdminWebhookConfigsByIdReplayResponse, type PostAdminWebhookConfigsByIdReplayResponses, type PostAdminWebhookConfigsByIdTestData, type PostAdminWebhookConfigsByIdTestError, type PostAdminWebhookConfigsByIdTestErrors, type PostAdminWebhookConfigsByIdTestResponse, type PostAdminWebhookConfigsByIdTestResponses, type PostAdminWebhookConfigsData, type PostAdminWebhookConfigsError, type PostAdminWebhookConfigsErrors, type PostAdminWebhookConfigsResponse, type PostAdminWebhookConfigsResponses, type PostAdminWebhookDeliveriesBulkRetryData, type PostAdminWebhookDeliveriesBulkRetryError, type PostAdminWebhookDeliveriesBulkRetryErrors, type PostAdminWebhookDeliveriesBulkRetryResponse, type PostAdminWebhookDeliveriesBulkRetryResponses, type PostAdminWebhookDeliveriesByIdRetryData, type PostAdminWebhookDeliveriesByIdRetryError, type PostAdminWebhookDeliveriesByIdRetryErrors, type PostAdminWebhookDeliveriesByIdRetryResponse, type PostAdminWebhookDeliveriesByIdRetryResponses, type PostAdminWorkspaceMembershipsData, type PostAdminWorkspaceMembershipsError, type PostAdminWorkspaceMembershipsErrors, type PostAdminWorkspaceMembershipsResponse, type PostAdminWorkspaceMembershipsResponses, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingError, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponse, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedData, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedError, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedErrors, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponse, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponses, type PostAdminWorkspacesByWorkspaceIdExtractionExportsData, type PostAdminWorkspacesByWorkspaceIdExtractionExportsError, type PostAdminWorkspacesByWorkspaceIdExtractionExportsErrors, type PostAdminWorkspacesByWorkspaceIdExtractionExportsResponse, type PostAdminWorkspacesByWorkspaceIdExtractionExportsResponses, type PostAdminWorkspacesData, type PostAdminWorkspacesError, type PostAdminWorkspacesErrors, type PostAdminWorkspacesResponse, type PostAdminWorkspacesResponses, type PresignedUrl, type PricingRule, type PricingStrategy, RateLimitError, type SavedSearch, type SchemaDiscovery, type Search, type SearchAnalytics, type SemanticCacheEntry, ServerError, type StorageStats, type StorageStatsRequest, StorageStatsRequestSchema, type StorageStatsType, type Subscription, type SystemMessage, type Tenant, type TenantDocumentStats, type TenantMembership, type TenantPricingOverride, type TenantStats, type Thread, TimeoutError, type Token, type TrainingAnalytics, type TrainingExample, type TrainingSession, type Transaction, type Transfer, type User, type UserProfile, ValidationError, type Wallet, type WatcherClaim, type WatcherEvent, type WebhookBulkDisableRequest, WebhookBulkDisableSchema, type WebhookBulkEnableRequest, WebhookBulkEnableSchema, type WebhookConfig, type WebhookConfigCreateRequest, WebhookConfigCreateSchema, type WebhookDelivery, type WebhookDeliveryBulkRetryRequest, WebhookDeliveryBulkRetrySchema, type Workspace, type WorkspaceDocumentStats, type WorkspaceMembership, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, GptAdmin as default, handleApiError };
|
|
37667
|
+
export { type Account, type AccountCreditRequest, AccountCreditSchema, type AccountDebitRequest, AccountDebitSchema, type Agent, type AgentAdminCreateRequest, AgentAdminCreateSchema, type AgentTestResult, type AgentVersion, type AgentVersionComparison, type AgentVersionFieldsInputCreateType, type AiConfig, type ApiKey, type ApiKeyAllocateRequest, ApiKeyAllocateSchema, type Application, type ApplicationOauthInputCreateType, type ApplicationOauthInputUpdateType, type ApplicationType, type AuditLog, AuthenticationError, AuthorizationError, type Balance, type Bucket, type BulkDismissalResult, type BulkReprocessResult, type ClientOptions, type Config, type Conversation, type CreditPackage, type Customer, type DeleteAdminAgentVersionsByIdData, type DeleteAdminAgentVersionsByIdError, type DeleteAdminAgentVersionsByIdErrors, type DeleteAdminAgentVersionsByIdResponses, type DeleteAdminAiConversationsByIdData, type DeleteAdminAiConversationsByIdError, type DeleteAdminAiConversationsByIdErrors, type DeleteAdminAiConversationsByIdResponses, type DeleteAdminAiGraphEdgesByIdData, type DeleteAdminAiGraphEdgesByIdError, type DeleteAdminAiGraphEdgesByIdErrors, type DeleteAdminAiGraphEdgesByIdResponses, type DeleteAdminAiGraphNodesByIdData, type DeleteAdminAiGraphNodesByIdError, type DeleteAdminAiGraphNodesByIdErrors, type DeleteAdminAiGraphNodesByIdResponses, type DeleteAdminAiMessagesByIdData, type DeleteAdminAiMessagesByIdError, type DeleteAdminAiMessagesByIdErrors, type DeleteAdminAiMessagesByIdResponses, type DeleteAdminApiKeysByIdData, type DeleteAdminApiKeysByIdError, type DeleteAdminApiKeysByIdErrors, type DeleteAdminApiKeysByIdResponses, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugData, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugError, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors, type DeleteAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses, type DeleteAdminApplicationsByIdData, type DeleteAdminApplicationsByIdError, type DeleteAdminApplicationsByIdErrors, type DeleteAdminApplicationsByIdResponses, type DeleteAdminBucketsByIdData, type DeleteAdminBucketsByIdError, type DeleteAdminBucketsByIdErrors, type DeleteAdminBucketsByIdResponses, type DeleteAdminCreditPackagesByIdData, type DeleteAdminCreditPackagesByIdError, type DeleteAdminCreditPackagesByIdErrors, type DeleteAdminCreditPackagesByIdResponses, type DeleteAdminCustomersByIdData, type DeleteAdminCustomersByIdError, type DeleteAdminCustomersByIdErrors, type DeleteAdminCustomersByIdResponses, type DeleteAdminExtractionBatchesByIdData, type DeleteAdminExtractionBatchesByIdError, type DeleteAdminExtractionBatchesByIdErrors, type DeleteAdminExtractionBatchesByIdResponses, type DeleteAdminExtractionDocumentsByIdData, type DeleteAdminExtractionDocumentsByIdError, type DeleteAdminExtractionDocumentsByIdErrors, type DeleteAdminExtractionDocumentsByIdResponses, type DeleteAdminExtractionResultsByIdData, type DeleteAdminExtractionResultsByIdError, type DeleteAdminExtractionResultsByIdErrors, type DeleteAdminExtractionResultsByIdResponses, type DeleteAdminFieldTemplatesByIdData, type DeleteAdminFieldTemplatesByIdError, type DeleteAdminFieldTemplatesByIdErrors, type DeleteAdminFieldTemplatesByIdResponses, type DeleteAdminMessagesByIdData, type DeleteAdminMessagesByIdError, type DeleteAdminMessagesByIdErrors, type DeleteAdminMessagesByIdResponses, type DeleteAdminNotificationMethodsByIdData, type DeleteAdminNotificationMethodsByIdError, type DeleteAdminNotificationMethodsByIdErrors, type DeleteAdminNotificationMethodsByIdResponses, type DeleteAdminNotificationPreferencesByIdData, type DeleteAdminNotificationPreferencesByIdError, type DeleteAdminNotificationPreferencesByIdErrors, type DeleteAdminNotificationPreferencesByIdResponses, type DeleteAdminObjectsByIdData, type DeleteAdminObjectsByIdError, type DeleteAdminObjectsByIdErrors, type DeleteAdminObjectsByIdResponses, type DeleteAdminPaymentMethodsByIdData, type DeleteAdminPaymentMethodsByIdError, type DeleteAdminPaymentMethodsByIdErrors, type DeleteAdminPaymentMethodsByIdResponses, type DeleteAdminPlansByIdData, type DeleteAdminPlansByIdError, type DeleteAdminPlansByIdErrors, type DeleteAdminPlansByIdResponses, type DeleteAdminSearchSavedByIdData, type DeleteAdminSearchSavedByIdError, type DeleteAdminSearchSavedByIdErrors, type DeleteAdminSearchSavedByIdResponses, type DeleteAdminSubscriptionsByIdData, type DeleteAdminSubscriptionsByIdError, type DeleteAdminSubscriptionsByIdErrors, type DeleteAdminSubscriptionsByIdResponses, type DeleteAdminSystemMessagesByIdData, type DeleteAdminSystemMessagesByIdError, type DeleteAdminSystemMessagesByIdErrors, type DeleteAdminSystemMessagesByIdResponses, type DeleteAdminTenantMembershipsByTenantIdByUserIdData, type DeleteAdminTenantMembershipsByTenantIdByUserIdError, type DeleteAdminTenantMembershipsByTenantIdByUserIdErrors, type DeleteAdminTenantMembershipsByTenantIdByUserIdResponses, type DeleteAdminTenantPricingOverridesByIdData, type DeleteAdminTenantPricingOverridesByIdError, type DeleteAdminTenantPricingOverridesByIdErrors, type DeleteAdminTenantPricingOverridesByIdResponses, type DeleteAdminTenantsByIdData, type DeleteAdminTenantsByIdError, type DeleteAdminTenantsByIdErrors, type DeleteAdminTenantsByIdResponses, type DeleteAdminThreadsByIdData, type DeleteAdminThreadsByIdError, type DeleteAdminThreadsByIdErrors, type DeleteAdminThreadsByIdResponses, type DeleteAdminTrainingExamplesByIdData, type DeleteAdminTrainingExamplesByIdError, type DeleteAdminTrainingExamplesByIdErrors, type DeleteAdminTrainingExamplesByIdResponses, type DeleteAdminTrainingSessionsByIdData, type DeleteAdminTrainingSessionsByIdError, type DeleteAdminTrainingSessionsByIdErrors, type DeleteAdminTrainingSessionsByIdResponses, type DeleteAdminUserProfilesByIdData, type DeleteAdminUserProfilesByIdError, type DeleteAdminUserProfilesByIdErrors, type DeleteAdminUserProfilesByIdResponses, type DeleteAdminUsersByIdData, type DeleteAdminUsersByIdError, type DeleteAdminUsersByIdErrors, type DeleteAdminUsersByIdResponses, type DeleteAdminWebhookConfigsByIdData, type DeleteAdminWebhookConfigsByIdError, type DeleteAdminWebhookConfigsByIdErrors, type DeleteAdminWebhookConfigsByIdResponses, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdData, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdError, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type DeleteAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type DeleteAdminWorkspacesByIdData, type DeleteAdminWorkspacesByIdError, type DeleteAdminWorkspacesByIdErrors, type DeleteAdminWorkspacesByIdResponses, type DocumentBulkDeleteRequest, DocumentBulkDeleteSchema, type DocumentBulkReprocessRequest, DocumentBulkReprocessSchema, type DocumentChunk, type DocumentStats, type EmailTemplate, type Embedding, type ErrorResponse, type Errors, type ExtractionBatch, type ExtractionDocument, type ExtractionExport, type ExtractionResult, type FieldMappingConfirmation, type FieldMappingResult, type FieldTemplate, type GetAdminAccountsByIdData, type GetAdminAccountsByIdError, type GetAdminAccountsByIdErrors, type GetAdminAccountsByIdResponse, type GetAdminAccountsByIdResponses, type GetAdminAccountsByTenantByTenantIdData, type GetAdminAccountsByTenantByTenantIdError, type GetAdminAccountsByTenantByTenantIdErrors, type GetAdminAccountsByTenantByTenantIdResponse, type GetAdminAccountsByTenantByTenantIdResponses, type GetAdminAccountsData, type GetAdminAccountsError, type GetAdminAccountsErrors, type GetAdminAccountsResponse, type GetAdminAccountsResponses, type GetAdminAgentVersionsByIdData, type GetAdminAgentVersionsByIdError, type GetAdminAgentVersionsByIdErrors, type GetAdminAgentVersionsByIdMetricsData, type GetAdminAgentVersionsByIdMetricsError, type GetAdminAgentVersionsByIdMetricsErrors, type GetAdminAgentVersionsByIdMetricsResponse, type GetAdminAgentVersionsByIdMetricsResponses, type GetAdminAgentVersionsByIdResponse, type GetAdminAgentVersionsByIdResponses, type GetAdminAgentVersionsData, type GetAdminAgentVersionsError, type GetAdminAgentVersionsErrors, type GetAdminAgentVersionsResponse, type GetAdminAgentVersionsResponses, type GetAdminAgentsByIdData, type GetAdminAgentsByIdError, type GetAdminAgentsByIdErrors, type GetAdminAgentsByIdResponse, type GetAdminAgentsByIdResponses, type GetAdminAgentsByIdSchemaVersionsData, type GetAdminAgentsByIdSchemaVersionsError, type GetAdminAgentsByIdSchemaVersionsErrors, type GetAdminAgentsByIdSchemaVersionsResponse, type GetAdminAgentsByIdSchemaVersionsResponses, type GetAdminAgentsByIdStatsData, type GetAdminAgentsByIdStatsError, type GetAdminAgentsByIdStatsErrors, type GetAdminAgentsByIdStatsResponse, type GetAdminAgentsByIdStatsResponses, type GetAdminAgentsByIdTrainingStatsData, type GetAdminAgentsByIdTrainingStatsError, type GetAdminAgentsByIdTrainingStatsErrors, type GetAdminAgentsByIdTrainingStatsResponse, type GetAdminAgentsByIdTrainingStatsResponses, type GetAdminAgentsByIdUsageData, type GetAdminAgentsByIdUsageError, type GetAdminAgentsByIdUsageErrors, type GetAdminAgentsByIdUsageResponse, type GetAdminAgentsByIdUsageResponses, type GetAdminAgentsData, type GetAdminAgentsError, type GetAdminAgentsErrors, type GetAdminAgentsResponse, type GetAdminAgentsResponses, type GetAdminAgentsUsageData, type GetAdminAgentsUsageError, type GetAdminAgentsUsageErrors, type GetAdminAgentsUsageResponse, type GetAdminAgentsUsageResponses, type GetAdminAiChunksDocumentByDocumentIdData, type GetAdminAiChunksDocumentByDocumentIdError, type GetAdminAiChunksDocumentByDocumentIdErrors, type GetAdminAiChunksDocumentByDocumentIdResponse, type GetAdminAiChunksDocumentByDocumentIdResponses, type GetAdminAiConversationsByIdData, type GetAdminAiConversationsByIdError, type GetAdminAiConversationsByIdErrors, type GetAdminAiConversationsByIdResponse, type GetAdminAiConversationsByIdResponses, type GetAdminAiConversationsData, type GetAdminAiConversationsError, type GetAdminAiConversationsErrors, type GetAdminAiConversationsResponse, type GetAdminAiConversationsResponses, type GetAdminAiGraphEdgesData, type GetAdminAiGraphEdgesError, type GetAdminAiGraphEdgesErrors, type GetAdminAiGraphEdgesResponse, type GetAdminAiGraphEdgesResponses, type GetAdminAiGraphNodesBySourceNodeIdRelatedData, type GetAdminAiGraphNodesBySourceNodeIdRelatedError, type GetAdminAiGraphNodesBySourceNodeIdRelatedErrors, type GetAdminAiGraphNodesBySourceNodeIdRelatedResponse, type GetAdminAiGraphNodesBySourceNodeIdRelatedResponses, type GetAdminAiGraphNodesData, type GetAdminAiGraphNodesError, type GetAdminAiGraphNodesErrors, type GetAdminAiGraphNodesLabelByLabelData, type GetAdminAiGraphNodesLabelByLabelError, type GetAdminAiGraphNodesLabelByLabelErrors, type GetAdminAiGraphNodesLabelByLabelResponse, type GetAdminAiGraphNodesLabelByLabelResponses, type GetAdminAiGraphNodesResponse, type GetAdminAiGraphNodesResponses, type GetAdminAiMessagesData, type GetAdminAiMessagesError, type GetAdminAiMessagesErrors, type GetAdminAiMessagesResponse, type GetAdminAiMessagesResponses, type GetAdminApiKeysActiveData, type GetAdminApiKeysActiveError, type GetAdminApiKeysActiveErrors, type GetAdminApiKeysActiveResponse, type GetAdminApiKeysActiveResponses, type GetAdminApiKeysByIdData, type GetAdminApiKeysByIdError, type GetAdminApiKeysByIdErrors, type GetAdminApiKeysByIdResponse, type GetAdminApiKeysByIdResponses, type GetAdminApiKeysData, type GetAdminApiKeysError, type GetAdminApiKeysErrors, type GetAdminApiKeysResponse, type GetAdminApiKeysResponses, type GetAdminApiKeysStatsData, type GetAdminApiKeysStatsError, type GetAdminApiKeysStatsErrors, type GetAdminApiKeysStatsResponse, type GetAdminApiKeysStatsResponses, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugData, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugError, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugResponse, type GetAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses, type GetAdminApplicationsByApplicationIdEmailTemplatesData, type GetAdminApplicationsByApplicationIdEmailTemplatesError, type GetAdminApplicationsByApplicationIdEmailTemplatesErrors, type GetAdminApplicationsByApplicationIdEmailTemplatesResponse, type GetAdminApplicationsByApplicationIdEmailTemplatesResponses, type GetAdminApplicationsByIdData, type GetAdminApplicationsByIdError, type GetAdminApplicationsByIdErrors, type GetAdminApplicationsByIdResponse, type GetAdminApplicationsByIdResponses, type GetAdminApplicationsBySlugBySlugData, type GetAdminApplicationsBySlugBySlugError, type GetAdminApplicationsBySlugBySlugErrors, type GetAdminApplicationsBySlugBySlugResponse, type GetAdminApplicationsBySlugBySlugResponses, type GetAdminApplicationsCurrentData, type GetAdminApplicationsCurrentError, type GetAdminApplicationsCurrentErrors, type GetAdminApplicationsCurrentResponse, type GetAdminApplicationsCurrentResponses, type GetAdminApplicationsData, type GetAdminApplicationsError, type GetAdminApplicationsErrors, type GetAdminApplicationsResponse, type GetAdminApplicationsResponses, type GetAdminAuditLogsActivityData, type GetAdminAuditLogsActivityError, type GetAdminAuditLogsActivityErrors, type GetAdminAuditLogsActivityResponse, type GetAdminAuditLogsActivityResponses, type GetAdminAuditLogsData, type GetAdminAuditLogsError, type GetAdminAuditLogsErrors, type GetAdminAuditLogsResponse, type GetAdminAuditLogsResponses, type GetAdminBalancesByIdData, type GetAdminBalancesByIdError, type GetAdminBalancesByIdErrors, type GetAdminBalancesByIdResponse, type GetAdminBalancesByIdResponses, type GetAdminBalancesData, type GetAdminBalancesError, type GetAdminBalancesErrors, type GetAdminBalancesResponse, type GetAdminBalancesResponses, type GetAdminBucketsAllData, type GetAdminBucketsAllError, type GetAdminBucketsAllErrors, type GetAdminBucketsAllResponse, type GetAdminBucketsAllResponses, type GetAdminBucketsByIdData, type GetAdminBucketsByIdError, type GetAdminBucketsByIdErrors, type GetAdminBucketsByIdObjectsData, type GetAdminBucketsByIdObjectsError, type GetAdminBucketsByIdObjectsErrors, type GetAdminBucketsByIdObjectsResponse, type GetAdminBucketsByIdObjectsResponses, type GetAdminBucketsByIdResponse, type GetAdminBucketsByIdResponses, type GetAdminBucketsByIdStatsData, type GetAdminBucketsByIdStatsError, type GetAdminBucketsByIdStatsErrors, type GetAdminBucketsByIdStatsResponse, type GetAdminBucketsByIdStatsResponses, type GetAdminBucketsData, type GetAdminBucketsError, type GetAdminBucketsErrors, type GetAdminBucketsResponse, type GetAdminBucketsResponses, type GetAdminConfigsData, type GetAdminConfigsError, type GetAdminConfigsErrors, type GetAdminConfigsResponse, type GetAdminConfigsResponses, type GetAdminCreditPackagesByIdData, type GetAdminCreditPackagesByIdError, type GetAdminCreditPackagesByIdErrors, type GetAdminCreditPackagesByIdResponse, type GetAdminCreditPackagesByIdResponses, type GetAdminCreditPackagesData, type GetAdminCreditPackagesError, type GetAdminCreditPackagesErrors, type GetAdminCreditPackagesResponse, type GetAdminCreditPackagesResponses, type GetAdminCreditPackagesSlugBySlugData, type GetAdminCreditPackagesSlugBySlugError, type GetAdminCreditPackagesSlugBySlugErrors, type GetAdminCreditPackagesSlugBySlugResponse, type GetAdminCreditPackagesSlugBySlugResponses, type GetAdminCustomersByIdData, type GetAdminCustomersByIdError, type GetAdminCustomersByIdErrors, type GetAdminCustomersByIdResponse, type GetAdminCustomersByIdResponses, type GetAdminDocumentsStatsData, type GetAdminDocumentsStatsError, type GetAdminDocumentsStatsErrors, type GetAdminDocumentsStatsResponse, type GetAdminDocumentsStatsResponses, type GetAdminExtractionBatchesByIdData, type GetAdminExtractionBatchesByIdError, type GetAdminExtractionBatchesByIdErrors, type GetAdminExtractionBatchesByIdResponse, type GetAdminExtractionBatchesByIdResponses, type GetAdminExtractionBatchesByIdUploadUrlsData, type GetAdminExtractionBatchesByIdUploadUrlsError, type GetAdminExtractionBatchesByIdUploadUrlsErrors, type GetAdminExtractionBatchesByIdUploadUrlsResponse, type GetAdminExtractionBatchesByIdUploadUrlsResponses, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdData, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdError, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdErrors, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdResponse, type GetAdminExtractionBatchesWorkspaceByWorkspaceIdResponses, type GetAdminExtractionDocumentsByIdData, type GetAdminExtractionDocumentsByIdError, type GetAdminExtractionDocumentsByIdErrors, type GetAdminExtractionDocumentsByIdResponse, type GetAdminExtractionDocumentsByIdResponses, type GetAdminExtractionDocumentsByIdStatusData, type GetAdminExtractionDocumentsByIdStatusError, type GetAdminExtractionDocumentsByIdStatusErrors, type GetAdminExtractionDocumentsByIdStatusResponse, type GetAdminExtractionDocumentsByIdStatusResponses, type GetAdminExtractionDocumentsByIdViewData, type GetAdminExtractionDocumentsByIdViewError, type GetAdminExtractionDocumentsByIdViewErrors, type GetAdminExtractionDocumentsByIdViewResponse, type GetAdminExtractionDocumentsByIdViewResponses, type GetAdminExtractionDocumentsData, type GetAdminExtractionDocumentsError, type GetAdminExtractionDocumentsErrors, type GetAdminExtractionDocumentsResponse, type GetAdminExtractionDocumentsResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatusResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdExcludedResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdReviewQueueResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrainedResponses, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedData, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedError, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedErrors, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedResponse, type GetAdminExtractionDocumentsWorkspaceByWorkspaceIdTrashedResponses, type GetAdminExtractionResultsByIdData, type GetAdminExtractionResultsByIdError, type GetAdminExtractionResultsByIdErrors, type GetAdminExtractionResultsByIdResponse, type GetAdminExtractionResultsByIdResponses, type GetAdminExtractionResultsData, type GetAdminExtractionResultsDocumentByDocumentIdData, type GetAdminExtractionResultsDocumentByDocumentIdError, type GetAdminExtractionResultsDocumentByDocumentIdErrors, type GetAdminExtractionResultsDocumentByDocumentIdResponse, type GetAdminExtractionResultsDocumentByDocumentIdResponses, type GetAdminExtractionResultsError, type GetAdminExtractionResultsErrors, type GetAdminExtractionResultsResponse, type GetAdminExtractionResultsResponses, type GetAdminExtractionResultsWorkspaceByWorkspaceIdData, type GetAdminExtractionResultsWorkspaceByWorkspaceIdError, type GetAdminExtractionResultsWorkspaceByWorkspaceIdErrors, type GetAdminExtractionResultsWorkspaceByWorkspaceIdResponse, type GetAdminExtractionResultsWorkspaceByWorkspaceIdResponses, type GetAdminExtractionSchemaDiscoveriesByIdData, type GetAdminExtractionSchemaDiscoveriesByIdError, type GetAdminExtractionSchemaDiscoveriesByIdErrors, type GetAdminExtractionSchemaDiscoveriesByIdResponse, type GetAdminExtractionSchemaDiscoveriesByIdResponses, type GetAdminFieldTemplatesByIdData, type GetAdminFieldTemplatesByIdError, type GetAdminFieldTemplatesByIdErrors, type GetAdminFieldTemplatesByIdResponse, type GetAdminFieldTemplatesByIdResponses, type GetAdminFieldTemplatesData, type GetAdminFieldTemplatesError, type GetAdminFieldTemplatesErrors, type GetAdminFieldTemplatesResponse, type GetAdminFieldTemplatesResponses, type GetAdminInvitationsConsumeByTokenData, type GetAdminInvitationsConsumeByTokenError, type GetAdminInvitationsConsumeByTokenErrors, type GetAdminInvitationsConsumeByTokenResponse, type GetAdminInvitationsConsumeByTokenResponses, type GetAdminInvitationsData, type GetAdminInvitationsError, type GetAdminInvitationsErrors, type GetAdminInvitationsMeData, type GetAdminInvitationsMeError, type GetAdminInvitationsMeErrors, type GetAdminInvitationsMeResponse, type GetAdminInvitationsMeResponses, type GetAdminInvitationsResponse, type GetAdminInvitationsResponses, type GetAdminIsvRevenueByIdData, type GetAdminIsvRevenueByIdError, type GetAdminIsvRevenueByIdErrors, type GetAdminIsvRevenueByIdResponse, type GetAdminIsvRevenueByIdResponses, type GetAdminIsvRevenueData, type GetAdminIsvRevenueError, type GetAdminIsvRevenueErrors, type GetAdminIsvRevenueResponse, type GetAdminIsvRevenueResponses, type GetAdminIsvSettlementsByIdData, type GetAdminIsvSettlementsByIdError, type GetAdminIsvSettlementsByIdErrors, type GetAdminIsvSettlementsByIdResponse, type GetAdminIsvSettlementsByIdResponses, type GetAdminIsvSettlementsData, type GetAdminIsvSettlementsError, type GetAdminIsvSettlementsErrors, type GetAdminIsvSettlementsResponse, type GetAdminIsvSettlementsResponses, type GetAdminLedgerByAccountByAccountIdData, type GetAdminLedgerByAccountByAccountIdError, type GetAdminLedgerByAccountByAccountIdErrors, type GetAdminLedgerByAccountByAccountIdResponse, type GetAdminLedgerByAccountByAccountIdResponses, type GetAdminLedgerByIdData, type GetAdminLedgerByIdError, type GetAdminLedgerByIdErrors, type GetAdminLedgerByIdResponse, type GetAdminLedgerByIdResponses, type GetAdminLedgerData, type GetAdminLedgerError, type GetAdminLedgerErrors, type GetAdminLedgerResponse, type GetAdminLedgerResponses, type GetAdminLlmAnalyticsByIdData, type GetAdminLlmAnalyticsByIdError, type GetAdminLlmAnalyticsByIdErrors, type GetAdminLlmAnalyticsByIdResponse, type GetAdminLlmAnalyticsByIdResponses, type GetAdminLlmAnalyticsCostsData, type GetAdminLlmAnalyticsCostsError, type GetAdminLlmAnalyticsCostsErrors, type GetAdminLlmAnalyticsCostsResponse, type GetAdminLlmAnalyticsCostsResponses, type GetAdminLlmAnalyticsData, type GetAdminLlmAnalyticsError, type GetAdminLlmAnalyticsErrors, type GetAdminLlmAnalyticsPlatformData, type GetAdminLlmAnalyticsPlatformError, type GetAdminLlmAnalyticsPlatformErrors, type GetAdminLlmAnalyticsPlatformResponse, type GetAdminLlmAnalyticsPlatformResponses, type GetAdminLlmAnalyticsResponse, type GetAdminLlmAnalyticsResponses, type GetAdminLlmAnalyticsSummaryData, type GetAdminLlmAnalyticsSummaryError, type GetAdminLlmAnalyticsSummaryErrors, type GetAdminLlmAnalyticsSummaryResponse, type GetAdminLlmAnalyticsSummaryResponses, type GetAdminLlmAnalyticsUsageData, type GetAdminLlmAnalyticsUsageError, type GetAdminLlmAnalyticsUsageErrors, type GetAdminLlmAnalyticsUsageResponse, type GetAdminLlmAnalyticsUsageResponses, type GetAdminLlmAnalyticsWorkspaceData, type GetAdminLlmAnalyticsWorkspaceError, type GetAdminLlmAnalyticsWorkspaceErrors, type GetAdminLlmAnalyticsWorkspaceResponse, type GetAdminLlmAnalyticsWorkspaceResponses, type GetAdminMessagesByIdData, type GetAdminMessagesByIdError, type GetAdminMessagesByIdErrors, type GetAdminMessagesByIdResponse, type GetAdminMessagesByIdResponses, type GetAdminMessagesData, type GetAdminMessagesError, type GetAdminMessagesErrors, type GetAdminMessagesResponse, type GetAdminMessagesResponses, type GetAdminMessagesSearchData, type GetAdminMessagesSearchError, type GetAdminMessagesSearchErrors, type GetAdminMessagesSearchResponse, type GetAdminMessagesSearchResponses, type GetAdminMessagesSemanticSearchData, type GetAdminMessagesSemanticSearchError, type GetAdminMessagesSemanticSearchErrors, type GetAdminMessagesSemanticSearchResponse, type GetAdminMessagesSemanticSearchResponses, type GetAdminNotificationLogsByIdData, type GetAdminNotificationLogsByIdError, type GetAdminNotificationLogsByIdErrors, type GetAdminNotificationLogsByIdResponse, type GetAdminNotificationLogsByIdResponses, type GetAdminNotificationLogsData, type GetAdminNotificationLogsError, type GetAdminNotificationLogsErrors, type GetAdminNotificationLogsResponse, type GetAdminNotificationLogsResponses, type GetAdminNotificationLogsStatsData, type GetAdminNotificationLogsStatsError, type GetAdminNotificationLogsStatsErrors, type GetAdminNotificationLogsStatsResponse, type GetAdminNotificationLogsStatsResponses, type GetAdminNotificationMethodsByIdData, type GetAdminNotificationMethodsByIdError, type GetAdminNotificationMethodsByIdErrors, type GetAdminNotificationMethodsByIdResponse, type GetAdminNotificationMethodsByIdResponses, type GetAdminNotificationMethodsData, type GetAdminNotificationMethodsError, type GetAdminNotificationMethodsErrors, type GetAdminNotificationMethodsResponse, type GetAdminNotificationMethodsResponses, type GetAdminNotificationPreferencesByIdData, type GetAdminNotificationPreferencesByIdError, type GetAdminNotificationPreferencesByIdErrors, type GetAdminNotificationPreferencesByIdResponse, type GetAdminNotificationPreferencesByIdResponses, type GetAdminNotificationPreferencesData, type GetAdminNotificationPreferencesError, type GetAdminNotificationPreferencesErrors, type GetAdminNotificationPreferencesResponse, type GetAdminNotificationPreferencesResponses, type GetAdminObjectsByIdData, type GetAdminObjectsByIdError, type GetAdminObjectsByIdErrors, type GetAdminObjectsByIdResponse, type GetAdminObjectsByIdResponses, type GetAdminObjectsData, type GetAdminObjectsError, type GetAdminObjectsErrors, type GetAdminObjectsResponse, type GetAdminObjectsResponses, type GetAdminPaymentMethodsByIdData, type GetAdminPaymentMethodsByIdError, type GetAdminPaymentMethodsByIdErrors, type GetAdminPaymentMethodsByIdResponse, type GetAdminPaymentMethodsByIdResponses, type GetAdminPaymentMethodsData, type GetAdminPaymentMethodsError, type GetAdminPaymentMethodsErrors, type GetAdminPaymentMethodsResponse, type GetAdminPaymentMethodsResponses, type GetAdminPermissionsData, type GetAdminPermissionsError, type GetAdminPermissionsErrors, type GetAdminPermissionsPresetsData, type GetAdminPermissionsPresetsError, type GetAdminPermissionsPresetsErrors, type GetAdminPermissionsPresetsResponse, type GetAdminPermissionsPresetsResponses, type GetAdminPermissionsResponse, type GetAdminPermissionsResponses, type GetAdminPlansByIdData, type GetAdminPlansByIdError, type GetAdminPlansByIdErrors, type GetAdminPlansByIdResponse, type GetAdminPlansByIdResponses, type GetAdminPlansData, type GetAdminPlansError, type GetAdminPlansErrors, type GetAdminPlansResponse, type GetAdminPlansResponses, type GetAdminPlansSlugBySlugData, type GetAdminPlansSlugBySlugError, type GetAdminPlansSlugBySlugErrors, type GetAdminPlansSlugBySlugResponse, type GetAdminPlansSlugBySlugResponses, type GetAdminPricingRulesByIdData, type GetAdminPricingRulesByIdError, type GetAdminPricingRulesByIdErrors, type GetAdminPricingRulesByIdResponse, type GetAdminPricingRulesByIdResponses, type GetAdminPricingRulesData, type GetAdminPricingRulesError, type GetAdminPricingRulesErrors, type GetAdminPricingRulesResolveData, type GetAdminPricingRulesResolveError, type GetAdminPricingRulesResolveErrors, type GetAdminPricingRulesResolveResponse, type GetAdminPricingRulesResolveResponses, type GetAdminPricingRulesResponse, type GetAdminPricingRulesResponses, type GetAdminPricingStrategiesByIdData, type GetAdminPricingStrategiesByIdError, type GetAdminPricingStrategiesByIdErrors, type GetAdminPricingStrategiesByIdResponse, type GetAdminPricingStrategiesByIdResponses, type GetAdminPricingStrategiesData, type GetAdminPricingStrategiesError, type GetAdminPricingStrategiesErrors, type GetAdminPricingStrategiesResponse, type GetAdminPricingStrategiesResponses, type GetAdminSearchAnalyticsData, type GetAdminSearchAnalyticsError, type GetAdminSearchAnalyticsErrors, type GetAdminSearchAnalyticsResponse, type GetAdminSearchAnalyticsResponses, type GetAdminSearchAnalyticsSummaryData, type GetAdminSearchAnalyticsSummaryError, type GetAdminSearchAnalyticsSummaryErrors, type GetAdminSearchAnalyticsSummaryResponse, type GetAdminSearchAnalyticsSummaryResponses, type GetAdminSearchData, type GetAdminSearchError, type GetAdminSearchErrors, type GetAdminSearchHealthData, type GetAdminSearchHealthError, type GetAdminSearchHealthErrors, type GetAdminSearchHealthResponse, type GetAdminSearchHealthResponses, type GetAdminSearchIndexesData, type GetAdminSearchIndexesError, type GetAdminSearchIndexesErrors, type GetAdminSearchIndexesResponse, type GetAdminSearchIndexesResponses, type GetAdminSearchResponse, type GetAdminSearchResponses, type GetAdminSearchSavedData, type GetAdminSearchSavedError, type GetAdminSearchSavedErrors, type GetAdminSearchSavedResponse, type GetAdminSearchSavedResponses, type GetAdminSearchSemanticData, type GetAdminSearchSemanticError, type GetAdminSearchSemanticErrors, type GetAdminSearchSemanticResponse, type GetAdminSearchSemanticResponses, type GetAdminSearchStatsData, type GetAdminSearchStatsError, type GetAdminSearchStatsErrors, type GetAdminSearchStatsResponse, type GetAdminSearchStatsResponses, type GetAdminSearchStatusData, type GetAdminSearchStatusError, type GetAdminSearchStatusErrors, type GetAdminSearchStatusResponse, type GetAdminSearchStatusResponses, type GetAdminSearchSuggestData, type GetAdminSearchSuggestError, type GetAdminSearchSuggestErrors, type GetAdminSearchSuggestResponse, type GetAdminSearchSuggestResponses, type GetAdminStorageStatsData, type GetAdminStorageStatsError, type GetAdminStorageStatsErrors, type GetAdminStorageStatsResponse, type GetAdminStorageStatsResponses, type GetAdminStorageStatsTenantByTenantIdData, type GetAdminStorageStatsTenantByTenantIdError, type GetAdminStorageStatsTenantByTenantIdErrors, type GetAdminStorageStatsTenantByTenantIdResponse, type GetAdminStorageStatsTenantByTenantIdResponses, type GetAdminSubscriptionsByIdData, type GetAdminSubscriptionsByIdError, type GetAdminSubscriptionsByIdErrors, type GetAdminSubscriptionsByIdResponse, type GetAdminSubscriptionsByIdResponses, type GetAdminSubscriptionsByTenantByTenantIdData, type GetAdminSubscriptionsByTenantByTenantIdError, type GetAdminSubscriptionsByTenantByTenantIdErrors, type GetAdminSubscriptionsByTenantByTenantIdResponse, type GetAdminSubscriptionsByTenantByTenantIdResponses, type GetAdminSubscriptionsData, type GetAdminSubscriptionsError, type GetAdminSubscriptionsErrors, type GetAdminSubscriptionsResponse, type GetAdminSubscriptionsResponses, type GetAdminSysAiConfigByIdData, type GetAdminSysAiConfigByIdError, type GetAdminSysAiConfigByIdErrors, type GetAdminSysAiConfigByIdResponse, type GetAdminSysAiConfigByIdResponses, type GetAdminSysAiConfigData, type GetAdminSysAiConfigError, type GetAdminSysAiConfigErrors, type GetAdminSysAiConfigResponse, type GetAdminSysAiConfigResponses, type GetAdminSysSemanticCacheByIdData, type GetAdminSysSemanticCacheByIdError, type GetAdminSysSemanticCacheByIdErrors, type GetAdminSysSemanticCacheByIdResponse, type GetAdminSysSemanticCacheByIdResponses, type GetAdminSystemMessagesByIdData, type GetAdminSystemMessagesByIdError, type GetAdminSystemMessagesByIdErrors, type GetAdminSystemMessagesByIdResponse, type GetAdminSystemMessagesByIdResponses, type GetAdminSystemMessagesData, type GetAdminSystemMessagesError, type GetAdminSystemMessagesErrors, type GetAdminSystemMessagesResponse, type GetAdminSystemMessagesResponses, type GetAdminTenantMembershipsData, type GetAdminTenantMembershipsError, type GetAdminTenantMembershipsErrors, type GetAdminTenantMembershipsResponse, type GetAdminTenantMembershipsResponses, type GetAdminTenantPricingOverridesByIdData, type GetAdminTenantPricingOverridesByIdError, type GetAdminTenantPricingOverridesByIdErrors, type GetAdminTenantPricingOverridesByIdResponse, type GetAdminTenantPricingOverridesByIdResponses, type GetAdminTenantPricingOverridesData, type GetAdminTenantPricingOverridesError, type GetAdminTenantPricingOverridesErrors, type GetAdminTenantPricingOverridesResponse, type GetAdminTenantPricingOverridesResponses, type GetAdminTenantsByIdData, type GetAdminTenantsByIdError, type GetAdminTenantsByIdErrors, type GetAdminTenantsByIdResponse, type GetAdminTenantsByIdResponses, type GetAdminTenantsByTenantIdDocumentStatsData, type GetAdminTenantsByTenantIdDocumentStatsError, type GetAdminTenantsByTenantIdDocumentStatsErrors, type GetAdminTenantsByTenantIdDocumentStatsResponse, type GetAdminTenantsByTenantIdDocumentStatsResponses, type GetAdminTenantsByTenantIdStatsData, type GetAdminTenantsByTenantIdStatsError, type GetAdminTenantsByTenantIdStatsErrors, type GetAdminTenantsByTenantIdStatsResponse, type GetAdminTenantsByTenantIdStatsResponses, type GetAdminTenantsByTenantIdWorkspaceStatsData, type GetAdminTenantsByTenantIdWorkspaceStatsError, type GetAdminTenantsByTenantIdWorkspaceStatsErrors, type GetAdminTenantsByTenantIdWorkspaceStatsResponse, type GetAdminTenantsByTenantIdWorkspaceStatsResponses, type GetAdminTenantsData, type GetAdminTenantsError, type GetAdminTenantsErrors, type GetAdminTenantsResponse, type GetAdminTenantsResponses, type GetAdminThreadsByIdData, type GetAdminThreadsByIdError, type GetAdminThreadsByIdErrors, type GetAdminThreadsByIdMessagesData, type GetAdminThreadsByIdMessagesError, type GetAdminThreadsByIdMessagesErrors, type GetAdminThreadsByIdMessagesResponse, type GetAdminThreadsByIdMessagesResponses, type GetAdminThreadsByIdResponse, type GetAdminThreadsByIdResponses, type GetAdminThreadsData, type GetAdminThreadsError, type GetAdminThreadsErrors, type GetAdminThreadsResponse, type GetAdminThreadsResponses, type GetAdminThreadsSearchData, type GetAdminThreadsSearchError, type GetAdminThreadsSearchErrors, type GetAdminThreadsSearchResponse, type GetAdminThreadsSearchResponses, type GetAdminThreadsStatsData, type GetAdminThreadsStatsError, type GetAdminThreadsStatsErrors, type GetAdminThreadsStatsResponse, type GetAdminThreadsStatsResponses, type GetAdminThreadsWorkspaceStatsData, type GetAdminThreadsWorkspaceStatsError, type GetAdminThreadsWorkspaceStatsErrors, type GetAdminThreadsWorkspaceStatsResponse, type GetAdminThreadsWorkspaceStatsResponses, type GetAdminTrainingExamplesByIdData, type GetAdminTrainingExamplesByIdError, type GetAdminTrainingExamplesByIdErrors, type GetAdminTrainingExamplesByIdResponse, type GetAdminTrainingExamplesByIdResponses, type GetAdminTrainingExamplesData, type GetAdminTrainingExamplesError, type GetAdminTrainingExamplesErrors, type GetAdminTrainingExamplesResponse, type GetAdminTrainingExamplesResponses, type GetAdminTrainingSessionsAgentsByAgentIdSessionsData, type GetAdminTrainingSessionsAgentsByAgentIdSessionsError, type GetAdminTrainingSessionsAgentsByAgentIdSessionsErrors, type GetAdminTrainingSessionsAgentsByAgentIdSessionsResponse, type GetAdminTrainingSessionsAgentsByAgentIdSessionsResponses, type GetAdminTrainingSessionsByIdData, type GetAdminTrainingSessionsByIdError, type GetAdminTrainingSessionsByIdErrors, type GetAdminTrainingSessionsByIdResponse, type GetAdminTrainingSessionsByIdResponses, type GetAdminTransactionsByIdData, type GetAdminTransactionsByIdError, type GetAdminTransactionsByIdErrors, type GetAdminTransactionsByIdResponse, type GetAdminTransactionsByIdResponses, type GetAdminTransactionsData, type GetAdminTransactionsError, type GetAdminTransactionsErrors, type GetAdminTransactionsResponse, type GetAdminTransactionsResponses, type GetAdminTransfersByIdData, type GetAdminTransfersByIdError, type GetAdminTransfersByIdErrors, type GetAdminTransfersByIdResponse, type GetAdminTransfersByIdResponses, type GetAdminTransfersData, type GetAdminTransfersError, type GetAdminTransfersErrors, type GetAdminTransfersResponse, type GetAdminTransfersResponses, type GetAdminUserProfilesByIdData, type GetAdminUserProfilesByIdError, type GetAdminUserProfilesByIdErrors, type GetAdminUserProfilesByIdResponse, type GetAdminUserProfilesByIdResponses, type GetAdminUserProfilesData, type GetAdminUserProfilesError, type GetAdminUserProfilesErrors, type GetAdminUserProfilesMeData, type GetAdminUserProfilesMeError, type GetAdminUserProfilesMeErrors, type GetAdminUserProfilesMeResponse, type GetAdminUserProfilesMeResponses, type GetAdminUserProfilesResponse, type GetAdminUserProfilesResponses, type GetAdminUsersByEmailData, type GetAdminUsersByEmailError, type GetAdminUsersByEmailErrors, type GetAdminUsersByEmailResponse, type GetAdminUsersByEmailResponses, type GetAdminUsersByIdData, type GetAdminUsersByIdError, type GetAdminUsersByIdErrors, type GetAdminUsersByIdResponse, type GetAdminUsersByIdResponses, type GetAdminUsersData, type GetAdminUsersError, type GetAdminUsersErrors, type GetAdminUsersMeActivityData, type GetAdminUsersMeActivityError, type GetAdminUsersMeActivityErrors, type GetAdminUsersMeActivityResponse, type GetAdminUsersMeActivityResponses, type GetAdminUsersMeDashboardData, type GetAdminUsersMeDashboardError, type GetAdminUsersMeDashboardErrors, type GetAdminUsersMeDashboardResponse, type GetAdminUsersMeDashboardResponses, type GetAdminUsersMeData, type GetAdminUsersMeError, type GetAdminUsersMeErrors, type GetAdminUsersMeResponse, type GetAdminUsersMeResponses, type GetAdminUsersMeStatsData, type GetAdminUsersMeStatsError, type GetAdminUsersMeStatsErrors, type GetAdminUsersMeStatsResponse, type GetAdminUsersMeStatsResponses, type GetAdminUsersMeTenantsData, type GetAdminUsersMeTenantsError, type GetAdminUsersMeTenantsErrors, type GetAdminUsersMeTenantsResponse, type GetAdminUsersMeTenantsResponses, type GetAdminUsersResponse, type GetAdminUsersResponses, type GetAdminWalletData, type GetAdminWalletError, type GetAdminWalletErrors, type GetAdminWalletResponse, type GetAdminWalletResponses, type GetAdminWalletStorageBreakdownData, type GetAdminWalletStorageBreakdownError, type GetAdminWalletStorageBreakdownErrors, type GetAdminWalletStorageBreakdownResponse, type GetAdminWalletStorageBreakdownResponses, type GetAdminWalletUsageBreakdownData, type GetAdminWalletUsageBreakdownError, type GetAdminWalletUsageBreakdownErrors, type GetAdminWalletUsageBreakdownResponse, type GetAdminWalletUsageBreakdownResponses, type GetAdminWalletUsageData, type GetAdminWalletUsageError, type GetAdminWalletUsageErrors, type GetAdminWalletUsageResponse, type GetAdminWalletUsageResponses, type GetAdminWebhookConfigsByIdData, type GetAdminWebhookConfigsByIdError, type GetAdminWebhookConfigsByIdErrors, type GetAdminWebhookConfigsByIdEventsData, type GetAdminWebhookConfigsByIdEventsError, type GetAdminWebhookConfigsByIdEventsErrors, type GetAdminWebhookConfigsByIdEventsResponse, type GetAdminWebhookConfigsByIdEventsResponses, type GetAdminWebhookConfigsByIdResponse, type GetAdminWebhookConfigsByIdResponses, type GetAdminWebhookConfigsData, type GetAdminWebhookConfigsError, type GetAdminWebhookConfigsErrors, type GetAdminWebhookConfigsResponse, type GetAdminWebhookConfigsResponses, type GetAdminWebhookConfigsStatsData, type GetAdminWebhookConfigsStatsError, type GetAdminWebhookConfigsStatsErrors, type GetAdminWebhookConfigsStatsResponse, type GetAdminWebhookConfigsStatsResponses, type GetAdminWebhookDeliveriesByIdData, type GetAdminWebhookDeliveriesByIdError, type GetAdminWebhookDeliveriesByIdErrors, type GetAdminWebhookDeliveriesByIdResponse, type GetAdminWebhookDeliveriesByIdResponses, type GetAdminWebhookDeliveriesData, type GetAdminWebhookDeliveriesError, type GetAdminWebhookDeliveriesErrors, type GetAdminWebhookDeliveriesResponse, type GetAdminWebhookDeliveriesResponses, type GetAdminWebhookDeliveriesStatsData, type GetAdminWebhookDeliveriesStatsError, type GetAdminWebhookDeliveriesStatsErrors, type GetAdminWebhookDeliveriesStatsResponse, type GetAdminWebhookDeliveriesStatsResponses, type GetAdminWorkspaceMembershipsData, type GetAdminWorkspaceMembershipsError, type GetAdminWorkspaceMembershipsErrors, type GetAdminWorkspaceMembershipsResponse, type GetAdminWorkspaceMembershipsResponses, type GetAdminWorkspacesAnalyticsBatchData, type GetAdminWorkspacesAnalyticsBatchError, type GetAdminWorkspacesAnalyticsBatchErrors, type GetAdminWorkspacesAnalyticsBatchResponse, type GetAdminWorkspacesAnalyticsBatchResponses, type GetAdminWorkspacesByIdData, type GetAdminWorkspacesByIdError, type GetAdminWorkspacesByIdErrors, type GetAdminWorkspacesByIdMembersData, type GetAdminWorkspacesByIdMembersError, type GetAdminWorkspacesByIdMembersErrors, type GetAdminWorkspacesByIdMembersResponse, type GetAdminWorkspacesByIdMembersResponses, type GetAdminWorkspacesByIdResponse, type GetAdminWorkspacesByIdResponses, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingError, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponse, type GetAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdData, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdError, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdErrors, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdResponse, type GetAdminWorkspacesByWorkspaceIdExtractionExportsByIdResponses, type GetAdminWorkspacesByWorkspaceIdExtractionExportsData, type GetAdminWorkspacesByWorkspaceIdExtractionExportsError, type GetAdminWorkspacesByWorkspaceIdExtractionExportsErrors, type GetAdminWorkspacesByWorkspaceIdExtractionExportsResponse, type GetAdminWorkspacesByWorkspaceIdExtractionExportsResponses, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsData, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsError, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsErrors, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsResponse, type GetAdminWorkspacesByWorkspaceIdTrainingAnalyticsResponses, type GetAdminWorkspacesData, type GetAdminWorkspacesError, type GetAdminWorkspacesErrors, type GetAdminWorkspacesMineData, type GetAdminWorkspacesMineError, type GetAdminWorkspacesMineErrors, type GetAdminWorkspacesMineResponse, type GetAdminWorkspacesMineResponses, type GetAdminWorkspacesResponse, type GetAdminWorkspacesResponses, type GetAdminWorkspacesSharedData, type GetAdminWorkspacesSharedError, type GetAdminWorkspacesSharedErrors, type GetAdminWorkspacesSharedResponse, type GetAdminWorkspacesSharedResponses, GptAdmin, GptCoreError, type GraphEdge, type GraphNode, type Invitation, type Invoice, type IsvRevenue, type IsvSettlement, type Ledger, type Link, type Links, type LlmAnalytics, type Message, NetworkError, NotFoundError, type NotificationLog, type NotificationMethod, type NotificationPreference, type ObjectType, type OperationSuccess, type PatchAdminAccountsByIdCreditData, type PatchAdminAccountsByIdCreditError, type PatchAdminAccountsByIdCreditErrors, type PatchAdminAccountsByIdCreditResponse, type PatchAdminAccountsByIdCreditResponses, type PatchAdminAccountsByIdDebitData, type PatchAdminAccountsByIdDebitError, type PatchAdminAccountsByIdDebitErrors, type PatchAdminAccountsByIdDebitResponse, type PatchAdminAccountsByIdDebitResponses, type PatchAdminAgentsByIdSchemaVersionsByVersionIdData, type PatchAdminAgentsByIdSchemaVersionsByVersionIdError, type PatchAdminAgentsByIdSchemaVersionsByVersionIdErrors, type PatchAdminAgentsByIdSchemaVersionsByVersionIdResponse, type PatchAdminAgentsByIdSchemaVersionsByVersionIdResponses, type PatchAdminAiConversationsByIdData, type PatchAdminAiConversationsByIdError, type PatchAdminAiConversationsByIdErrors, type PatchAdminAiConversationsByIdResponse, type PatchAdminAiConversationsByIdResponses, type PatchAdminApiKeysByIdAllocateData, type PatchAdminApiKeysByIdAllocateError, type PatchAdminApiKeysByIdAllocateErrors, type PatchAdminApiKeysByIdAllocateResponse, type PatchAdminApiKeysByIdAllocateResponses, type PatchAdminApiKeysByIdData, type PatchAdminApiKeysByIdError, type PatchAdminApiKeysByIdErrors, type PatchAdminApiKeysByIdResetPeriodData, type PatchAdminApiKeysByIdResetPeriodError, type PatchAdminApiKeysByIdResetPeriodErrors, type PatchAdminApiKeysByIdResetPeriodResponse, type PatchAdminApiKeysByIdResetPeriodResponses, type PatchAdminApiKeysByIdResponse, type PatchAdminApiKeysByIdResponses, type PatchAdminApiKeysByIdRevokeData, type PatchAdminApiKeysByIdRevokeError, type PatchAdminApiKeysByIdRevokeErrors, type PatchAdminApiKeysByIdRevokeResponse, type PatchAdminApiKeysByIdRevokeResponses, type PatchAdminApiKeysByIdRotateData, type PatchAdminApiKeysByIdRotateError, type PatchAdminApiKeysByIdRotateErrors, type PatchAdminApiKeysByIdRotateResponse, type PatchAdminApiKeysByIdRotateResponses, type PatchAdminApiKeysByIdSetBudgetData, type PatchAdminApiKeysByIdSetBudgetError, type PatchAdminApiKeysByIdSetBudgetErrors, type PatchAdminApiKeysByIdSetBudgetResponse, type PatchAdminApiKeysByIdSetBudgetResponses, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugData, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugError, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugErrors, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugResponse, type PatchAdminApplicationsByApplicationIdEmailTemplatesBySlugResponses, type PatchAdminApplicationsByIdAllocateCreditsData, type PatchAdminApplicationsByIdAllocateCreditsError, type PatchAdminApplicationsByIdAllocateCreditsErrors, type PatchAdminApplicationsByIdAllocateCreditsResponse, type PatchAdminApplicationsByIdAllocateCreditsResponses, type PatchAdminApplicationsByIdData, type PatchAdminApplicationsByIdError, type PatchAdminApplicationsByIdErrors, type PatchAdminApplicationsByIdGrantCreditsData, type PatchAdminApplicationsByIdGrantCreditsError, type PatchAdminApplicationsByIdGrantCreditsErrors, type PatchAdminApplicationsByIdGrantCreditsResponse, type PatchAdminApplicationsByIdGrantCreditsResponses, type PatchAdminApplicationsByIdResponse, type PatchAdminApplicationsByIdResponses, type PatchAdminBucketsByIdData, type PatchAdminBucketsByIdError, type PatchAdminBucketsByIdErrors, type PatchAdminBucketsByIdResponse, type PatchAdminBucketsByIdResponses, type PatchAdminConfigsByKeyData, type PatchAdminConfigsByKeyError, type PatchAdminConfigsByKeyErrors, type PatchAdminConfigsByKeyResponse, type PatchAdminConfigsByKeyResponses, type PatchAdminCreditPackagesByIdData, type PatchAdminCreditPackagesByIdError, type PatchAdminCreditPackagesByIdErrors, type PatchAdminCreditPackagesByIdResponse, type PatchAdminCreditPackagesByIdResponses, type PatchAdminCustomersByIdData, type PatchAdminCustomersByIdError, type PatchAdminCustomersByIdErrors, type PatchAdminCustomersByIdResponse, type PatchAdminCustomersByIdResponses, type PatchAdminExtractionDocumentsByIdCancelData, type PatchAdminExtractionDocumentsByIdCancelError, type PatchAdminExtractionDocumentsByIdCancelErrors, type PatchAdminExtractionDocumentsByIdCancelResponse, type PatchAdminExtractionDocumentsByIdCancelResponses, type PatchAdminExtractionDocumentsByIdDismissData, type PatchAdminExtractionDocumentsByIdDismissError, type PatchAdminExtractionDocumentsByIdDismissErrors, type PatchAdminExtractionDocumentsByIdDismissResponse, type PatchAdminExtractionDocumentsByIdDismissResponses, type PatchAdminExtractionDocumentsByIdDismissTrainingData, type PatchAdminExtractionDocumentsByIdDismissTrainingError, type PatchAdminExtractionDocumentsByIdDismissTrainingErrors, type PatchAdminExtractionDocumentsByIdDismissTrainingResponse, type PatchAdminExtractionDocumentsByIdDismissTrainingResponses, type PatchAdminExtractionDocumentsByIdExcludeData, type PatchAdminExtractionDocumentsByIdExcludeError, type PatchAdminExtractionDocumentsByIdExcludeErrors, type PatchAdminExtractionDocumentsByIdExcludeResponse, type PatchAdminExtractionDocumentsByIdExcludeResponses, type PatchAdminExtractionDocumentsByIdFinishUploadData, type PatchAdminExtractionDocumentsByIdFinishUploadError, type PatchAdminExtractionDocumentsByIdFinishUploadErrors, type PatchAdminExtractionDocumentsByIdFinishUploadResponse, type PatchAdminExtractionDocumentsByIdFinishUploadResponses, type PatchAdminExtractionDocumentsByIdIncludeData, type PatchAdminExtractionDocumentsByIdIncludeError, type PatchAdminExtractionDocumentsByIdIncludeErrors, type PatchAdminExtractionDocumentsByIdIncludeResponse, type PatchAdminExtractionDocumentsByIdIncludeResponses, type PatchAdminExtractionDocumentsByIdMarkTrainedData, type PatchAdminExtractionDocumentsByIdMarkTrainedError, type PatchAdminExtractionDocumentsByIdMarkTrainedErrors, type PatchAdminExtractionDocumentsByIdMarkTrainedResponse, type PatchAdminExtractionDocumentsByIdMarkTrainedResponses, type PatchAdminExtractionDocumentsByIdReprocessData, type PatchAdminExtractionDocumentsByIdReprocessError, type PatchAdminExtractionDocumentsByIdReprocessErrors, type PatchAdminExtractionDocumentsByIdReprocessResponse, type PatchAdminExtractionDocumentsByIdReprocessResponses, type PatchAdminExtractionDocumentsByIdRestoreData, type PatchAdminExtractionDocumentsByIdRestoreError, type PatchAdminExtractionDocumentsByIdRestoreErrors, type PatchAdminExtractionDocumentsByIdRestoreResponse, type PatchAdminExtractionDocumentsByIdRestoreResponses, type PatchAdminExtractionDocumentsByIdStatusData, type PatchAdminExtractionDocumentsByIdStatusError, type PatchAdminExtractionDocumentsByIdStatusErrors, type PatchAdminExtractionDocumentsByIdStatusResponse, type PatchAdminExtractionDocumentsByIdStatusResponses, type PatchAdminExtractionDocumentsByIdVerificationData, type PatchAdminExtractionDocumentsByIdVerificationError, type PatchAdminExtractionDocumentsByIdVerificationErrors, type PatchAdminExtractionDocumentsByIdVerificationResponse, type PatchAdminExtractionDocumentsByIdVerificationResponses, type PatchAdminExtractionResultsByIdData, type PatchAdminExtractionResultsByIdError, type PatchAdminExtractionResultsByIdErrors, type PatchAdminExtractionResultsByIdRegenerateData, type PatchAdminExtractionResultsByIdRegenerateError, type PatchAdminExtractionResultsByIdRegenerateErrors, type PatchAdminExtractionResultsByIdRegenerateResponse, type PatchAdminExtractionResultsByIdRegenerateResponses, type PatchAdminExtractionResultsByIdResponse, type PatchAdminExtractionResultsByIdResponses, type PatchAdminExtractionResultsByIdSaveCorrectionsData, type PatchAdminExtractionResultsByIdSaveCorrectionsError, type PatchAdminExtractionResultsByIdSaveCorrectionsErrors, type PatchAdminExtractionResultsByIdSaveCorrectionsResponse, type PatchAdminExtractionResultsByIdSaveCorrectionsResponses, type PatchAdminInvitationsByIdAcceptByUserData, type PatchAdminInvitationsByIdAcceptByUserError, type PatchAdminInvitationsByIdAcceptByUserErrors, type PatchAdminInvitationsByIdAcceptByUserResponse, type PatchAdminInvitationsByIdAcceptByUserResponses, type PatchAdminInvitationsByIdAcceptData, type PatchAdminInvitationsByIdAcceptError, type PatchAdminInvitationsByIdAcceptErrors, type PatchAdminInvitationsByIdAcceptResponse, type PatchAdminInvitationsByIdAcceptResponses, type PatchAdminInvitationsByIdDeclineData, type PatchAdminInvitationsByIdDeclineError, type PatchAdminInvitationsByIdDeclineErrors, type PatchAdminInvitationsByIdDeclineResponse, type PatchAdminInvitationsByIdDeclineResponses, type PatchAdminInvitationsByIdResendData, type PatchAdminInvitationsByIdResendError, type PatchAdminInvitationsByIdResendErrors, type PatchAdminInvitationsByIdResendResponse, type PatchAdminInvitationsByIdResendResponses, type PatchAdminInvitationsByIdRevokeData, type PatchAdminInvitationsByIdRevokeError, type PatchAdminInvitationsByIdRevokeErrors, type PatchAdminInvitationsByIdRevokeResponse, type PatchAdminInvitationsByIdRevokeResponses, type PatchAdminIsvSettlementsByIdData, type PatchAdminIsvSettlementsByIdError, type PatchAdminIsvSettlementsByIdErrors, type PatchAdminIsvSettlementsByIdResponse, type PatchAdminIsvSettlementsByIdResponses, type PatchAdminMessagesByIdData, type PatchAdminMessagesByIdError, type PatchAdminMessagesByIdErrors, type PatchAdminMessagesByIdResponse, type PatchAdminMessagesByIdResponses, type PatchAdminNotificationMethodsByIdData, type PatchAdminNotificationMethodsByIdError, type PatchAdminNotificationMethodsByIdErrors, type PatchAdminNotificationMethodsByIdResponse, type PatchAdminNotificationMethodsByIdResponses, type PatchAdminNotificationMethodsByIdSendVerificationData, type PatchAdminNotificationMethodsByIdSendVerificationError, type PatchAdminNotificationMethodsByIdSendVerificationErrors, type PatchAdminNotificationMethodsByIdSendVerificationResponse, type PatchAdminNotificationMethodsByIdSendVerificationResponses, type PatchAdminNotificationMethodsByIdSetPrimaryData, type PatchAdminNotificationMethodsByIdSetPrimaryError, type PatchAdminNotificationMethodsByIdSetPrimaryErrors, type PatchAdminNotificationMethodsByIdSetPrimaryResponse, type PatchAdminNotificationMethodsByIdSetPrimaryResponses, type PatchAdminNotificationMethodsByIdVerifyData, type PatchAdminNotificationMethodsByIdVerifyError, type PatchAdminNotificationMethodsByIdVerifyErrors, type PatchAdminNotificationMethodsByIdVerifyResponse, type PatchAdminNotificationMethodsByIdVerifyResponses, type PatchAdminNotificationPreferencesByIdData, type PatchAdminNotificationPreferencesByIdError, type PatchAdminNotificationPreferencesByIdErrors, type PatchAdminNotificationPreferencesByIdResponse, type PatchAdminNotificationPreferencesByIdResponses, type PatchAdminPaymentMethodsByIdData, type PatchAdminPaymentMethodsByIdDefaultData, type PatchAdminPaymentMethodsByIdDefaultError, type PatchAdminPaymentMethodsByIdDefaultErrors, type PatchAdminPaymentMethodsByIdDefaultResponse, type PatchAdminPaymentMethodsByIdDefaultResponses, type PatchAdminPaymentMethodsByIdError, type PatchAdminPaymentMethodsByIdErrors, type PatchAdminPaymentMethodsByIdResponse, type PatchAdminPaymentMethodsByIdResponses, type PatchAdminPlansByIdData, type PatchAdminPlansByIdError, type PatchAdminPlansByIdErrors, type PatchAdminPlansByIdResponse, type PatchAdminPlansByIdResponses, type PatchAdminPricingRulesByIdData, type PatchAdminPricingRulesByIdError, type PatchAdminPricingRulesByIdErrors, type PatchAdminPricingRulesByIdResponse, type PatchAdminPricingRulesByIdResponses, type PatchAdminPricingStrategiesByIdData, type PatchAdminPricingStrategiesByIdError, type PatchAdminPricingStrategiesByIdErrors, type PatchAdminPricingStrategiesByIdResponse, type PatchAdminPricingStrategiesByIdResponses, type PatchAdminSearchSavedByIdData, type PatchAdminSearchSavedByIdError, type PatchAdminSearchSavedByIdErrors, type PatchAdminSearchSavedByIdResponse, type PatchAdminSearchSavedByIdResponses, type PatchAdminSubscriptionsByIdCancelData, type PatchAdminSubscriptionsByIdCancelError, type PatchAdminSubscriptionsByIdCancelErrors, type PatchAdminSubscriptionsByIdCancelResponse, type PatchAdminSubscriptionsByIdCancelResponses, type PatchAdminSubscriptionsByIdData, type PatchAdminSubscriptionsByIdError, type PatchAdminSubscriptionsByIdErrors, type PatchAdminSubscriptionsByIdResponse, type PatchAdminSubscriptionsByIdResponses, type PatchAdminSysAiConfigByIdData, type PatchAdminSysAiConfigByIdError, type PatchAdminSysAiConfigByIdErrors, type PatchAdminSysAiConfigByIdResponse, type PatchAdminSysAiConfigByIdResponses, type PatchAdminSystemMessagesByIdData, type PatchAdminSystemMessagesByIdError, type PatchAdminSystemMessagesByIdErrors, type PatchAdminSystemMessagesByIdPublishData, type PatchAdminSystemMessagesByIdPublishError, type PatchAdminSystemMessagesByIdPublishErrors, type PatchAdminSystemMessagesByIdPublishResponse, type PatchAdminSystemMessagesByIdPublishResponses, type PatchAdminSystemMessagesByIdResponse, type PatchAdminSystemMessagesByIdResponses, type PatchAdminSystemMessagesByIdUnpublishData, type PatchAdminSystemMessagesByIdUnpublishError, type PatchAdminSystemMessagesByIdUnpublishErrors, type PatchAdminSystemMessagesByIdUnpublishResponse, type PatchAdminSystemMessagesByIdUnpublishResponses, type PatchAdminTenantMembershipsByTenantIdByUserIdData, type PatchAdminTenantMembershipsByTenantIdByUserIdError, type PatchAdminTenantMembershipsByTenantIdByUserIdErrors, type PatchAdminTenantMembershipsByTenantIdByUserIdResponse, type PatchAdminTenantMembershipsByTenantIdByUserIdResponses, type PatchAdminTenantPricingOverridesByIdData, type PatchAdminTenantPricingOverridesByIdError, type PatchAdminTenantPricingOverridesByIdErrors, type PatchAdminTenantPricingOverridesByIdResponse, type PatchAdminTenantPricingOverridesByIdResponses, type PatchAdminTenantsByIdData, type PatchAdminTenantsByIdError, type PatchAdminTenantsByIdErrors, type PatchAdminTenantsByIdResponse, type PatchAdminTenantsByIdResponses, type PatchAdminThreadsByIdArchiveData, type PatchAdminThreadsByIdArchiveError, type PatchAdminThreadsByIdArchiveErrors, type PatchAdminThreadsByIdArchiveResponse, type PatchAdminThreadsByIdArchiveResponses, type PatchAdminThreadsByIdData, type PatchAdminThreadsByIdError, type PatchAdminThreadsByIdErrors, type PatchAdminThreadsByIdResponse, type PatchAdminThreadsByIdResponses, type PatchAdminThreadsByIdUnarchiveData, type PatchAdminThreadsByIdUnarchiveError, type PatchAdminThreadsByIdUnarchiveErrors, type PatchAdminThreadsByIdUnarchiveResponse, type PatchAdminThreadsByIdUnarchiveResponses, type PatchAdminTrainingExamplesByIdData, type PatchAdminTrainingExamplesByIdError, type PatchAdminTrainingExamplesByIdErrors, type PatchAdminTrainingExamplesByIdResponse, type PatchAdminTrainingExamplesByIdResponses, type PatchAdminUserProfilesByIdAcceptTosData, type PatchAdminUserProfilesByIdAcceptTosError, type PatchAdminUserProfilesByIdAcceptTosErrors, type PatchAdminUserProfilesByIdAcceptTosResponse, type PatchAdminUserProfilesByIdAcceptTosResponses, type PatchAdminUserProfilesByIdData, type PatchAdminUserProfilesByIdDismissAnnouncementData, type PatchAdminUserProfilesByIdDismissAnnouncementError, type PatchAdminUserProfilesByIdDismissAnnouncementErrors, type PatchAdminUserProfilesByIdDismissAnnouncementResponse, type PatchAdminUserProfilesByIdDismissAnnouncementResponses, type PatchAdminUserProfilesByIdDismissWelcomeData, type PatchAdminUserProfilesByIdDismissWelcomeError, type PatchAdminUserProfilesByIdDismissWelcomeErrors, type PatchAdminUserProfilesByIdDismissWelcomeResponse, type PatchAdminUserProfilesByIdDismissWelcomeResponses, type PatchAdminUserProfilesByIdError, type PatchAdminUserProfilesByIdErrors, type PatchAdminUserProfilesByIdResponse, type PatchAdminUserProfilesByIdResponses, type PatchAdminUsersAuthPasswordChangeData, type PatchAdminUsersAuthPasswordChangeError, type PatchAdminUsersAuthPasswordChangeErrors, type PatchAdminUsersAuthPasswordChangeResponse, type PatchAdminUsersAuthPasswordChangeResponses, type PatchAdminUsersAuthResetPasswordData, type PatchAdminUsersAuthResetPasswordError, type PatchAdminUsersAuthResetPasswordErrors, type PatchAdminUsersAuthResetPasswordResponse, type PatchAdminUsersAuthResetPasswordResponses, type PatchAdminUsersByIdAdminData, type PatchAdminUsersByIdAdminEmailData, type PatchAdminUsersByIdAdminEmailError, type PatchAdminUsersByIdAdminEmailErrors, type PatchAdminUsersByIdAdminEmailResponse, type PatchAdminUsersByIdAdminEmailResponses, type PatchAdminUsersByIdAdminError, type PatchAdminUsersByIdAdminErrors, type PatchAdminUsersByIdAdminResponse, type PatchAdminUsersByIdAdminResponses, type PatchAdminUsersByIdConfirmEmailData, type PatchAdminUsersByIdConfirmEmailError, type PatchAdminUsersByIdConfirmEmailErrors, type PatchAdminUsersByIdConfirmEmailResponse, type PatchAdminUsersByIdConfirmEmailResponses, type PatchAdminUsersByIdResetPasswordData, type PatchAdminUsersByIdResetPasswordError, type PatchAdminUsersByIdResetPasswordErrors, type PatchAdminUsersByIdResetPasswordResponse, type PatchAdminUsersByIdResetPasswordResponses, type PatchAdminWalletAddonsByAddonSlugCancelData, type PatchAdminWalletAddonsByAddonSlugCancelError, type PatchAdminWalletAddonsByAddonSlugCancelErrors, type PatchAdminWalletAddonsByAddonSlugCancelResponse, type PatchAdminWalletAddonsByAddonSlugCancelResponses, type PatchAdminWalletAddonsData, type PatchAdminWalletAddonsError, type PatchAdminWalletAddonsErrors, type PatchAdminWalletAddonsResponse, type PatchAdminWalletAddonsResponses, type PatchAdminWalletCreditsData, type PatchAdminWalletCreditsError, type PatchAdminWalletCreditsErrors, type PatchAdminWalletCreditsResponse, type PatchAdminWalletCreditsResponses, type PatchAdminWalletPlanData, type PatchAdminWalletPlanError, type PatchAdminWalletPlanErrors, type PatchAdminWalletPlanResponse, type PatchAdminWalletPlanResponses, type PatchAdminWalletStorageData, type PatchAdminWalletStorageError, type PatchAdminWalletStorageErrors, type PatchAdminWalletStorageResponse, type PatchAdminWalletStorageResponses, type PatchAdminWebhookConfigsByIdData, type PatchAdminWebhookConfigsByIdError, type PatchAdminWebhookConfigsByIdErrors, type PatchAdminWebhookConfigsByIdResponse, type PatchAdminWebhookConfigsByIdResponses, type PatchAdminWebhookConfigsByIdRotateSecretData, type PatchAdminWebhookConfigsByIdRotateSecretError, type PatchAdminWebhookConfigsByIdRotateSecretErrors, type PatchAdminWebhookConfigsByIdRotateSecretResponse, type PatchAdminWebhookConfigsByIdRotateSecretResponses, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdData, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdError, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdErrors, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponse, type PatchAdminWorkspaceMembershipsByWorkspaceIdByUserIdResponses, type PatchAdminWorkspacesByIdAllocateData, type PatchAdminWorkspacesByIdAllocateError, type PatchAdminWorkspacesByIdAllocateErrors, type PatchAdminWorkspacesByIdAllocateResponse, type PatchAdminWorkspacesByIdAllocateResponses, type PatchAdminWorkspacesByIdData, type PatchAdminWorkspacesByIdError, type PatchAdminWorkspacesByIdErrors, type PatchAdminWorkspacesByIdResponse, type PatchAdminWorkspacesByIdResponses, type PatchAdminWorkspacesByIdStorageSettingsData, type PatchAdminWorkspacesByIdStorageSettingsError, type PatchAdminWorkspacesByIdStorageSettingsErrors, type PatchAdminWorkspacesByIdStorageSettingsResponse, type PatchAdminWorkspacesByIdStorageSettingsResponses, type Payment, type PaymentMethod, type Permission, type PermissionMeta, type PermissionPreset, type Plan, type PostAdminAgentTestResultsData, type PostAdminAgentTestResultsError, type PostAdminAgentTestResultsErrors, type PostAdminAgentTestResultsResponse, type PostAdminAgentTestResultsResponses, type PostAdminAgentVersionComparisonsData, type PostAdminAgentVersionComparisonsError, type PostAdminAgentVersionComparisonsErrors, type PostAdminAgentVersionComparisonsResponse, type PostAdminAgentVersionComparisonsResponses, type PostAdminAgentVersionsByIdAddSystemFieldData, type PostAdminAgentVersionsByIdAddSystemFieldError, type PostAdminAgentVersionsByIdAddSystemFieldErrors, type PostAdminAgentVersionsByIdAddSystemFieldResponses, type PostAdminAgentVersionsByIdRemoveSystemFieldData, type PostAdminAgentVersionsByIdRemoveSystemFieldError, type PostAdminAgentVersionsByIdRemoveSystemFieldErrors, type PostAdminAgentVersionsByIdRemoveSystemFieldResponses, type PostAdminAgentVersionsByIdSetSystemFieldsData, type PostAdminAgentVersionsByIdSetSystemFieldsError, type PostAdminAgentVersionsByIdSetSystemFieldsErrors, type PostAdminAgentVersionsByIdSetSystemFieldsResponses, type PostAdminAgentVersionsData, type PostAdminAgentVersionsError, type PostAdminAgentVersionsErrors, type PostAdminAgentVersionsResponse, type PostAdminAgentVersionsResponses, type PostAdminAgentsByIdCloneData, type PostAdminAgentsByIdCloneError, type PostAdminAgentsByIdCloneErrors, type PostAdminAgentsByIdCloneResponse, type PostAdminAgentsByIdCloneResponses, type PostAdminAgentsByIdDiscoverSchemaData, type PostAdminAgentsByIdDiscoverSchemaError, type PostAdminAgentsByIdDiscoverSchemaErrors, type PostAdminAgentsByIdDiscoverSchemaResponse, type PostAdminAgentsByIdDiscoverSchemaResponses, type PostAdminAgentsByIdExportData, type PostAdminAgentsByIdExportError, type PostAdminAgentsByIdExportErrors, type PostAdminAgentsByIdExportResponse, type PostAdminAgentsByIdExportResponses, type PostAdminAgentsByIdPublishVersionData, type PostAdminAgentsByIdPublishVersionError, type PostAdminAgentsByIdPublishVersionErrors, type PostAdminAgentsByIdPublishVersionResponse, type PostAdminAgentsByIdPublishVersionResponses, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateData, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateError, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateErrors, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponse, type PostAdminAgentsByIdSchemaVersionsByVersionIdActivateResponses, type PostAdminAgentsByIdSchemaVersionsData, type PostAdminAgentsByIdSchemaVersionsError, type PostAdminAgentsByIdSchemaVersionsErrors, type PostAdminAgentsByIdSchemaVersionsResponse, type PostAdminAgentsByIdSchemaVersionsResponses, type PostAdminAgentsByIdTeachData, type PostAdminAgentsByIdTeachError, type PostAdminAgentsByIdTeachErrors, type PostAdminAgentsByIdTeachResponse, type PostAdminAgentsByIdTeachResponses, type PostAdminAgentsByIdTestData, type PostAdminAgentsByIdTestError, type PostAdminAgentsByIdTestErrors, type PostAdminAgentsByIdTestResponse, type PostAdminAgentsByIdTestResponses, type PostAdminAgentsByIdValidateData, type PostAdminAgentsByIdValidateError, type PostAdminAgentsByIdValidateErrors, type PostAdminAgentsByIdValidateResponse, type PostAdminAgentsByIdValidateResponses, type PostAdminAgentsCloneForWorkspaceData, type PostAdminAgentsCloneForWorkspaceError, type PostAdminAgentsCloneForWorkspaceErrors, type PostAdminAgentsCloneForWorkspaceResponse, type PostAdminAgentsCloneForWorkspaceResponses, type PostAdminAgentsImportData, type PostAdminAgentsImportError, type PostAdminAgentsImportErrors, type PostAdminAgentsImportResponse, type PostAdminAgentsImportResponses, type PostAdminAgentsPredictData, type PostAdminAgentsPredictError, type PostAdminAgentsPredictErrors, type PostAdminAgentsPredictResponse, type PostAdminAgentsPredictResponses, type PostAdminAiChunksSearchData, type PostAdminAiChunksSearchError, type PostAdminAiChunksSearchErrors, type PostAdminAiChunksSearchResponse, type PostAdminAiChunksSearchResponses, type PostAdminAiConversationsData, type PostAdminAiConversationsError, type PostAdminAiConversationsErrors, type PostAdminAiConversationsResponse, type PostAdminAiConversationsResponses, type PostAdminAiEmbedData, type PostAdminAiEmbedError, type PostAdminAiEmbedErrors, type PostAdminAiEmbedResponse, type PostAdminAiEmbedResponses, type PostAdminAiGraphEdgesData, type PostAdminAiGraphEdgesError, type PostAdminAiGraphEdgesErrors, type PostAdminAiGraphEdgesResponse, type PostAdminAiGraphEdgesResponses, type PostAdminAiGraphNodesData, type PostAdminAiGraphNodesError, type PostAdminAiGraphNodesErrors, type PostAdminAiGraphNodesResponse, type PostAdminAiGraphNodesResponses, type PostAdminAiMessagesData, type PostAdminAiMessagesError, type PostAdminAiMessagesErrors, type PostAdminAiMessagesResponse, type PostAdminAiMessagesResponses, type PostAdminAiSearchAdvancedData, type PostAdminAiSearchAdvancedError, type PostAdminAiSearchAdvancedErrors, type PostAdminAiSearchAdvancedResponse, type PostAdminAiSearchAdvancedResponses, type PostAdminAiSearchData, type PostAdminAiSearchError, type PostAdminAiSearchErrors, type PostAdminAiSearchResponse, type PostAdminAiSearchResponses, type PostAdminApiKeysData, type PostAdminApiKeysError, type PostAdminApiKeysErrors, type PostAdminApiKeysResponse, type PostAdminApiKeysResponses, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewData, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewError, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewErrors, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewResponse, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugPreviewResponses, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestData, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestError, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestErrors, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestResponse, type PostAdminApplicationsByApplicationIdEmailTemplatesBySlugTestResponses, type PostAdminApplicationsByApplicationIdEmailTemplatesData, type PostAdminApplicationsByApplicationIdEmailTemplatesError, type PostAdminApplicationsByApplicationIdEmailTemplatesErrors, type PostAdminApplicationsByApplicationIdEmailTemplatesResponse, type PostAdminApplicationsByApplicationIdEmailTemplatesResponses, type PostAdminApplicationsData, type PostAdminApplicationsError, type PostAdminApplicationsErrors, type PostAdminApplicationsResponse, type PostAdminApplicationsResponses, type PostAdminBucketsData, type PostAdminBucketsError, type PostAdminBucketsErrors, type PostAdminBucketsResponse, type PostAdminBucketsResponses, type PostAdminConfigsData, type PostAdminConfigsError, type PostAdminConfigsErrors, type PostAdminConfigsResponse, type PostAdminConfigsResponses, type PostAdminCreditPackagesData, type PostAdminCreditPackagesError, type PostAdminCreditPackagesErrors, type PostAdminCreditPackagesResponse, type PostAdminCreditPackagesResponses, type PostAdminCustomersData, type PostAdminCustomersError, type PostAdminCustomersErrors, type PostAdminCustomersResponse, type PostAdminCustomersResponses, type PostAdminDocumentsBulkDeleteData, type PostAdminDocumentsBulkDeleteError, type PostAdminDocumentsBulkDeleteErrors, type PostAdminDocumentsBulkDeleteResponse, type PostAdminDocumentsBulkDeleteResponses, type PostAdminDocumentsPresignedUploadData, type PostAdminDocumentsPresignedUploadError, type PostAdminDocumentsPresignedUploadErrors, type PostAdminDocumentsPresignedUploadResponse, type PostAdminDocumentsPresignedUploadResponses, type PostAdminExtractionBatchesData, type PostAdminExtractionBatchesError, type PostAdminExtractionBatchesErrors, type PostAdminExtractionBatchesResponse, type PostAdminExtractionBatchesResponses, type PostAdminExtractionDocumentsBeginUploadData, type PostAdminExtractionDocumentsBeginUploadError, type PostAdminExtractionDocumentsBeginUploadErrors, type PostAdminExtractionDocumentsBeginUploadResponse, type PostAdminExtractionDocumentsBeginUploadResponses, type PostAdminExtractionDocumentsBulkReprocessData, type PostAdminExtractionDocumentsBulkReprocessError, type PostAdminExtractionDocumentsBulkReprocessErrors, type PostAdminExtractionDocumentsBulkReprocessResponse, type PostAdminExtractionDocumentsBulkReprocessResponses, type PostAdminExtractionDocumentsUploadData, type PostAdminExtractionDocumentsUploadError, type PostAdminExtractionDocumentsUploadErrors, type PostAdminExtractionDocumentsUploadResponse, type PostAdminExtractionDocumentsUploadResponses, type PostAdminExtractionSchemaDiscoveriesData, type PostAdminExtractionSchemaDiscoveriesError, type PostAdminExtractionSchemaDiscoveriesErrors, type PostAdminExtractionSchemaDiscoveriesResponse, type PostAdminExtractionSchemaDiscoveriesResponses, type PostAdminFieldTemplatesData, type PostAdminFieldTemplatesError, type PostAdminFieldTemplatesErrors, type PostAdminFieldTemplatesResponse, type PostAdminFieldTemplatesResponses, type PostAdminInvitationsAcceptByTokenData, type PostAdminInvitationsAcceptByTokenError, type PostAdminInvitationsAcceptByTokenErrors, type PostAdminInvitationsAcceptByTokenResponse, type PostAdminInvitationsAcceptByTokenResponses, type PostAdminInvitationsData, type PostAdminInvitationsError, type PostAdminInvitationsErrors, type PostAdminInvitationsResponse, type PostAdminInvitationsResponses, type PostAdminIsvRevenueData, type PostAdminIsvRevenueError, type PostAdminIsvRevenueErrors, type PostAdminIsvRevenueResponse, type PostAdminIsvRevenueResponses, type PostAdminIsvSettlementsData, type PostAdminIsvSettlementsError, type PostAdminIsvSettlementsErrors, type PostAdminIsvSettlementsResponse, type PostAdminIsvSettlementsResponses, type PostAdminLlmAnalyticsData, type PostAdminLlmAnalyticsError, type PostAdminLlmAnalyticsErrors, type PostAdminLlmAnalyticsResponse, type PostAdminLlmAnalyticsResponses, type PostAdminMessagesData, type PostAdminMessagesError, type PostAdminMessagesErrors, type PostAdminMessagesResponse, type PostAdminMessagesResponses, type PostAdminNotificationMethodsData, type PostAdminNotificationMethodsError, type PostAdminNotificationMethodsErrors, type PostAdminNotificationMethodsResponse, type PostAdminNotificationMethodsResponses, type PostAdminNotificationPreferencesData, type PostAdminNotificationPreferencesError, type PostAdminNotificationPreferencesErrors, type PostAdminNotificationPreferencesResponse, type PostAdminNotificationPreferencesResponses, type PostAdminObjectsBulkDestroyData, type PostAdminObjectsBulkDestroyError, type PostAdminObjectsBulkDestroyErrors, type PostAdminObjectsBulkDestroyResponse, type PostAdminObjectsBulkDestroyResponses, type PostAdminObjectsCopyData, type PostAdminObjectsCopyError, type PostAdminObjectsCopyErrors, type PostAdminObjectsCopyResponse, type PostAdminObjectsCopyResponses, type PostAdminObjectsMoveData, type PostAdminObjectsMoveError, type PostAdminObjectsMoveErrors, type PostAdminObjectsMoveResponse, type PostAdminObjectsMoveResponses, type PostAdminObjectsRegisterData, type PostAdminObjectsRegisterError, type PostAdminObjectsRegisterErrors, type PostAdminObjectsRegisterResponse, type PostAdminObjectsRegisterResponses, type PostAdminPaymentMethodsData, type PostAdminPaymentMethodsError, type PostAdminPaymentMethodsErrors, type PostAdminPaymentMethodsResponse, type PostAdminPaymentMethodsResponses, type PostAdminPaymentMethodsTokenizeData, type PostAdminPaymentMethodsTokenizeError, type PostAdminPaymentMethodsTokenizeErrors, type PostAdminPaymentMethodsTokenizeResponse, type PostAdminPaymentMethodsTokenizeResponses, type PostAdminPaymentsData, type PostAdminPaymentsError, type PostAdminPaymentsErrors, type PostAdminPaymentsResponse, type PostAdminPaymentsResponses, type PostAdminPlansData, type PostAdminPlansError, type PostAdminPlansErrors, type PostAdminPlansResponse, type PostAdminPlansResponses, type PostAdminPricingRulesData, type PostAdminPricingRulesError, type PostAdminPricingRulesErrors, type PostAdminPricingRulesResponse, type PostAdminPricingRulesResponses, type PostAdminPricingStrategiesData, type PostAdminPricingStrategiesError, type PostAdminPricingStrategiesErrors, type PostAdminPricingStrategiesResponse, type PostAdminPricingStrategiesResponses, type PostAdminSearchBatchData, type PostAdminSearchBatchError, type PostAdminSearchBatchErrors, type PostAdminSearchBatchResponse, type PostAdminSearchBatchResponses, type PostAdminSearchReindexData, type PostAdminSearchReindexError, type PostAdminSearchReindexErrors, type PostAdminSearchReindexResponse, type PostAdminSearchReindexResponses, type PostAdminSearchSavedByIdRunData, type PostAdminSearchSavedByIdRunError, type PostAdminSearchSavedByIdRunErrors, type PostAdminSearchSavedByIdRunResponse, type PostAdminSearchSavedByIdRunResponses, type PostAdminSearchSavedData, type PostAdminSearchSavedError, type PostAdminSearchSavedErrors, type PostAdminSearchSavedResponse, type PostAdminSearchSavedResponses, type PostAdminStorageSignDownloadData, type PostAdminStorageSignDownloadError, type PostAdminStorageSignDownloadErrors, type PostAdminStorageSignDownloadResponse, type PostAdminStorageSignDownloadResponses, type PostAdminStorageSignUploadData, type PostAdminStorageSignUploadError, type PostAdminStorageSignUploadErrors, type PostAdminStorageSignUploadResponse, type PostAdminStorageSignUploadResponses, type PostAdminSubscriptionsData, type PostAdminSubscriptionsError, type PostAdminSubscriptionsErrors, type PostAdminSubscriptionsResponse, type PostAdminSubscriptionsResponses, type PostAdminSysAiConfigData, type PostAdminSysAiConfigError, type PostAdminSysAiConfigErrors, type PostAdminSysAiConfigResponse, type PostAdminSysAiConfigResponses, type PostAdminSysSemanticCacheClearData, type PostAdminSysSemanticCacheClearError, type PostAdminSysSemanticCacheClearErrors, type PostAdminSysSemanticCacheClearResponse, type PostAdminSysSemanticCacheClearResponses, type PostAdminSystemMessagesData, type PostAdminSystemMessagesError, type PostAdminSystemMessagesErrors, type PostAdminSystemMessagesResponse, type PostAdminSystemMessagesResponses, type PostAdminTenantMembershipsData, type PostAdminTenantMembershipsError, type PostAdminTenantMembershipsErrors, type PostAdminTenantMembershipsResponse, type PostAdminTenantMembershipsResponses, type PostAdminTenantPricingOverridesData, type PostAdminTenantPricingOverridesError, type PostAdminTenantPricingOverridesErrors, type PostAdminTenantPricingOverridesResponse, type PostAdminTenantPricingOverridesResponses, type PostAdminTenantsByIdBuyStorageData, type PostAdminTenantsByIdBuyStorageError, type PostAdminTenantsByIdBuyStorageErrors, type PostAdminTenantsByIdBuyStorageResponse, type PostAdminTenantsByIdBuyStorageResponses, type PostAdminTenantsByIdCreditData, type PostAdminTenantsByIdCreditError, type PostAdminTenantsByIdCreditErrors, type PostAdminTenantsByIdCreditResponse, type PostAdminTenantsByIdCreditResponses, type PostAdminTenantsByIdRemoveStorageData, type PostAdminTenantsByIdRemoveStorageError, type PostAdminTenantsByIdRemoveStorageErrors, type PostAdminTenantsByIdRemoveStorageResponse, type PostAdminTenantsByIdRemoveStorageResponses, type PostAdminTenantsByIdSchedulePurgeData, type PostAdminTenantsByIdSchedulePurgeError, type PostAdminTenantsByIdSchedulePurgeErrors, type PostAdminTenantsByIdSchedulePurgeResponse, type PostAdminTenantsByIdSchedulePurgeResponses, type PostAdminTenantsData, type PostAdminTenantsError, type PostAdminTenantsErrors, type PostAdminTenantsIsvData, type PostAdminTenantsIsvError, type PostAdminTenantsIsvErrors, type PostAdminTenantsIsvResponse, type PostAdminTenantsIsvResponses, type PostAdminTenantsResponse, type PostAdminTenantsResponses, type PostAdminThreadsActiveData, type PostAdminThreadsActiveError, type PostAdminThreadsActiveErrors, type PostAdminThreadsActiveResponse, type PostAdminThreadsActiveResponses, type PostAdminThreadsByIdExportData, type PostAdminThreadsByIdExportError, type PostAdminThreadsByIdExportErrors, type PostAdminThreadsByIdExportResponse, type PostAdminThreadsByIdExportResponses, type PostAdminThreadsByIdForkData, type PostAdminThreadsByIdForkError, type PostAdminThreadsByIdForkErrors, type PostAdminThreadsByIdForkResponse, type PostAdminThreadsByIdForkResponses, type PostAdminThreadsByIdMessagesData, type PostAdminThreadsByIdMessagesError, type PostAdminThreadsByIdMessagesErrors, type PostAdminThreadsByIdMessagesResponse, type PostAdminThreadsByIdMessagesResponses, type PostAdminThreadsByIdSummarizeData, type PostAdminThreadsByIdSummarizeError, type PostAdminThreadsByIdSummarizeErrors, type PostAdminThreadsByIdSummarizeResponse, type PostAdminThreadsByIdSummarizeResponses, type PostAdminThreadsData, type PostAdminThreadsError, type PostAdminThreadsErrors, type PostAdminThreadsResponse, type PostAdminThreadsResponses, type PostAdminTokensData, type PostAdminTokensError, type PostAdminTokensErrors, type PostAdminTokensResponse, type PostAdminTokensResponses, type PostAdminTrainingExamplesBulkData, type PostAdminTrainingExamplesBulkDeleteData, type PostAdminTrainingExamplesBulkDeleteError, type PostAdminTrainingExamplesBulkDeleteErrors, type PostAdminTrainingExamplesBulkDeleteResponse, type PostAdminTrainingExamplesBulkDeleteResponses, type PostAdminTrainingExamplesBulkError, type PostAdminTrainingExamplesBulkErrors, type PostAdminTrainingExamplesBulkResponse, type PostAdminTrainingExamplesBulkResponses, type PostAdminTrainingExamplesData, type PostAdminTrainingExamplesError, type PostAdminTrainingExamplesErrors, type PostAdminTrainingExamplesResponse, type PostAdminTrainingExamplesResponses, type PostAdminTrainingExamplesSearchData, type PostAdminTrainingExamplesSearchError, type PostAdminTrainingExamplesSearchErrors, type PostAdminTrainingExamplesSearchResponse, type PostAdminTrainingExamplesSearchResponses, type PostAdminUserProfilesData, type PostAdminUserProfilesError, type PostAdminUserProfilesErrors, type PostAdminUserProfilesResponse, type PostAdminUserProfilesResponses, type PostAdminUsersAuthConfirmData, type PostAdminUsersAuthConfirmError, type PostAdminUsersAuthConfirmErrors, type PostAdminUsersAuthConfirmResponse, type PostAdminUsersAuthConfirmResponses, type PostAdminUsersAuthLoginData, type PostAdminUsersAuthLoginError, type PostAdminUsersAuthLoginErrors, type PostAdminUsersAuthLoginResponse, type PostAdminUsersAuthLoginResponses, type PostAdminUsersAuthMagicLinkLoginData, type PostAdminUsersAuthMagicLinkLoginError, type PostAdminUsersAuthMagicLinkLoginErrors, type PostAdminUsersAuthMagicLinkLoginResponse, type PostAdminUsersAuthMagicLinkLoginResponses, type PostAdminUsersAuthMagicLinkRequestData, type PostAdminUsersAuthMagicLinkRequestError, type PostAdminUsersAuthMagicLinkRequestErrors, type PostAdminUsersAuthMagicLinkRequestResponse, type PostAdminUsersAuthMagicLinkRequestResponses, type PostAdminUsersAuthRegisterData, type PostAdminUsersAuthRegisterError, type PostAdminUsersAuthRegisterErrors, type PostAdminUsersAuthRegisterResponse, type PostAdminUsersAuthRegisterResponses, type PostAdminUsersAuthRegisterWithOidcData, type PostAdminUsersAuthRegisterWithOidcError, type PostAdminUsersAuthRegisterWithOidcErrors, type PostAdminUsersAuthRegisterWithOidcResponse, type PostAdminUsersAuthRegisterWithOidcResponses, type PostAdminUsersAuthResendConfirmationData, type PostAdminUsersAuthResendConfirmationError, type PostAdminUsersAuthResendConfirmationErrors, type PostAdminUsersAuthResendConfirmationResponse, type PostAdminUsersAuthResendConfirmationResponses, type PostAdminUsersRegisterIsvData, type PostAdminUsersRegisterIsvError, type PostAdminUsersRegisterIsvErrors, type PostAdminUsersRegisterIsvResponse, type PostAdminUsersRegisterIsvResponses, type PostAdminWebhookConfigsBulkDisableData, type PostAdminWebhookConfigsBulkDisableError, type PostAdminWebhookConfigsBulkDisableErrors, type PostAdminWebhookConfigsBulkDisableResponse, type PostAdminWebhookConfigsBulkDisableResponses, type PostAdminWebhookConfigsBulkEnableData, type PostAdminWebhookConfigsBulkEnableError, type PostAdminWebhookConfigsBulkEnableErrors, type PostAdminWebhookConfigsBulkEnableResponse, type PostAdminWebhookConfigsBulkEnableResponses, type PostAdminWebhookConfigsByIdReplayData, type PostAdminWebhookConfigsByIdReplayError, type PostAdminWebhookConfigsByIdReplayErrors, type PostAdminWebhookConfigsByIdReplayResponse, type PostAdminWebhookConfigsByIdReplayResponses, type PostAdminWebhookConfigsByIdTestData, type PostAdminWebhookConfigsByIdTestError, type PostAdminWebhookConfigsByIdTestErrors, type PostAdminWebhookConfigsByIdTestResponse, type PostAdminWebhookConfigsByIdTestResponses, type PostAdminWebhookConfigsData, type PostAdminWebhookConfigsError, type PostAdminWebhookConfigsErrors, type PostAdminWebhookConfigsResponse, type PostAdminWebhookConfigsResponses, type PostAdminWebhookDeliveriesBulkRetryData, type PostAdminWebhookDeliveriesBulkRetryError, type PostAdminWebhookDeliveriesBulkRetryErrors, type PostAdminWebhookDeliveriesBulkRetryResponse, type PostAdminWebhookDeliveriesBulkRetryResponses, type PostAdminWebhookDeliveriesByIdRetryData, type PostAdminWebhookDeliveriesByIdRetryError, type PostAdminWebhookDeliveriesByIdRetryErrors, type PostAdminWebhookDeliveriesByIdRetryResponse, type PostAdminWebhookDeliveriesByIdRetryResponses, type PostAdminWorkspaceMembershipsData, type PostAdminWorkspaceMembershipsError, type PostAdminWorkspaceMembershipsErrors, type PostAdminWorkspaceMembershipsResponse, type PostAdminWorkspaceMembershipsResponses, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingData, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingError, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingErrors, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponse, type PostAdminWorkspacesByWorkspaceIdExtractionByDocumentIdMappingResponses, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedData, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedError, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedErrors, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponse, type PostAdminWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrainedResponses, type PostAdminWorkspacesByWorkspaceIdExtractionExportsData, type PostAdminWorkspacesByWorkspaceIdExtractionExportsError, type PostAdminWorkspacesByWorkspaceIdExtractionExportsErrors, type PostAdminWorkspacesByWorkspaceIdExtractionExportsResponse, type PostAdminWorkspacesByWorkspaceIdExtractionExportsResponses, type PostAdminWorkspacesData, type PostAdminWorkspacesError, type PostAdminWorkspacesErrors, type PostAdminWorkspacesResponse, type PostAdminWorkspacesResponses, type PresignedUrl, type PricingRule, type PricingStrategy, RateLimitError, type SavedSearch, type SchemaDiscovery, type Search, type SearchAnalytics, type SemanticCacheEntry, ServerError, type StorageStats, type StorageStatsRequest, StorageStatsRequestSchema, type StorageStatsType, type Subscription, type SystemMessage, type Tenant, type TenantDocumentStats, type TenantMembership, type TenantPricingOverride, type TenantStats, type Thread, TimeoutError, type Token, type TrainingAnalytics, type TrainingExample, type TrainingSession, type Transaction, type Transfer, type User, type UserProfile, ValidationError, type Wallet, type WatcherClaim, type WatcherEvent, type WebhookBulkDisableRequest, WebhookBulkDisableSchema, type WebhookBulkEnableRequest, WebhookBulkEnableSchema, type WebhookConfig, type WebhookConfigCreateRequest, WebhookConfigCreateSchema, type WebhookDelivery, type WebhookDeliveryBulkRetryRequest, WebhookDeliveryBulkRetrySchema, type Workspace, type WorkspaceDocumentStats, type WorkspaceMembership, type WorkspaceSettingsInputCreateType, type WorkspaceSettingsInputUpdateType, type XApplicationKey, type _Error, type _Object, GptAdmin as default, handleApiError };
|