@gpt-core/admin 0.9.0 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1606 -0
- package/dist/index.d.mts +1346 -1080
- package/dist/index.d.ts +1346 -1080
- 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
|
*/
|
|
@@ -857,6 +901,93 @@ type Account = {
|
|
|
857
901
|
};
|
|
858
902
|
type: string;
|
|
859
903
|
};
|
|
904
|
+
type AgentVersionType = {
|
|
905
|
+
/**
|
|
906
|
+
* Field included by default.
|
|
907
|
+
*/
|
|
908
|
+
changes_summary?: string | null | unknown;
|
|
909
|
+
/**
|
|
910
|
+
* Field included by default.
|
|
911
|
+
*/
|
|
912
|
+
created_at: unknown;
|
|
913
|
+
/**
|
|
914
|
+
* Field included by default.
|
|
915
|
+
*/
|
|
916
|
+
fields?: Array<{
|
|
917
|
+
/**
|
|
918
|
+
* Field included by default.
|
|
919
|
+
*/
|
|
920
|
+
ai_hints?: string | null | unknown;
|
|
921
|
+
/**
|
|
922
|
+
* Field included by default.
|
|
923
|
+
*/
|
|
924
|
+
description?: string | null | unknown;
|
|
925
|
+
/**
|
|
926
|
+
* Whether this field is system-generated (e.g., _ai_suggestions) vs user-defined. Field included by default.
|
|
927
|
+
*/
|
|
928
|
+
is_system: boolean;
|
|
929
|
+
/**
|
|
930
|
+
* For array fields, specifies the type of items in the array. Field included by default.
|
|
931
|
+
*/
|
|
932
|
+
item_type?: "text" | "date" | "datetime" | "time" | "number" | "currency" | "boolean" | "email" | "phone" | "url" | "address" | "timestamp" | "alphanumeric_code" | unknown;
|
|
933
|
+
/**
|
|
934
|
+
* Field included by default.
|
|
935
|
+
*/
|
|
936
|
+
label?: string | null | unknown;
|
|
937
|
+
/**
|
|
938
|
+
* Field included by default.
|
|
939
|
+
*/
|
|
940
|
+
name: string;
|
|
941
|
+
/**
|
|
942
|
+
* Field included by default.
|
|
943
|
+
*/
|
|
944
|
+
order: number;
|
|
945
|
+
/**
|
|
946
|
+
* Field included by default.
|
|
947
|
+
*/
|
|
948
|
+
required: boolean;
|
|
949
|
+
/**
|
|
950
|
+
* Field included by default.
|
|
951
|
+
*/
|
|
952
|
+
type: "text" | "date" | "datetime" | "time" | "number" | "currency" | "boolean" | "email" | "phone" | "url" | "array" | "address" | "object" | "timestamp" | "alphanumeric_code";
|
|
953
|
+
}> | null | unknown;
|
|
954
|
+
/**
|
|
955
|
+
* Field included by default.
|
|
956
|
+
*/
|
|
957
|
+
has_been_used?: boolean | null | unknown;
|
|
958
|
+
/**
|
|
959
|
+
* Field included by default.
|
|
960
|
+
*/
|
|
961
|
+
id?: string | unknown;
|
|
962
|
+
/**
|
|
963
|
+
* Field included by default.
|
|
964
|
+
*/
|
|
965
|
+
is_active: boolean;
|
|
966
|
+
/**
|
|
967
|
+
* Field included by default.
|
|
968
|
+
*/
|
|
969
|
+
json_schema?: {
|
|
970
|
+
[key: string]: unknown;
|
|
971
|
+
} | null | unknown;
|
|
972
|
+
/**
|
|
973
|
+
* Field included by default.
|
|
974
|
+
*/
|
|
975
|
+
prompt_template: string;
|
|
976
|
+
/**
|
|
977
|
+
* Field included by default.
|
|
978
|
+
*/
|
|
979
|
+
schema_definition: {
|
|
980
|
+
[key: string]: unknown;
|
|
981
|
+
};
|
|
982
|
+
/**
|
|
983
|
+
* Field included by default.
|
|
984
|
+
*/
|
|
985
|
+
updated_at: unknown;
|
|
986
|
+
/**
|
|
987
|
+
* Field included by default.
|
|
988
|
+
*/
|
|
989
|
+
version_number: string;
|
|
990
|
+
};
|
|
860
991
|
/**
|
|
861
992
|
* A "Resource object" representing a payment_method
|
|
862
993
|
*/
|
|
@@ -865,7 +996,58 @@ type PaymentMethod = {
|
|
|
865
996
|
* An attributes object for a payment_method
|
|
866
997
|
*/
|
|
867
998
|
attributes?: {
|
|
868
|
-
|
|
999
|
+
/**
|
|
1000
|
+
* Field included by default.
|
|
1001
|
+
*/
|
|
1002
|
+
brand?: string | null | unknown;
|
|
1003
|
+
/**
|
|
1004
|
+
* Field included by default.
|
|
1005
|
+
*/
|
|
1006
|
+
created_at: unknown;
|
|
1007
|
+
/**
|
|
1008
|
+
* Field included by default.
|
|
1009
|
+
*/
|
|
1010
|
+
exp_month?: number | null | unknown;
|
|
1011
|
+
/**
|
|
1012
|
+
* Field included by default.
|
|
1013
|
+
*/
|
|
1014
|
+
exp_year?: number | null | unknown;
|
|
1015
|
+
/**
|
|
1016
|
+
* Field included by default.
|
|
1017
|
+
*/
|
|
1018
|
+
holder_name?: string | null | unknown;
|
|
1019
|
+
/**
|
|
1020
|
+
* Field included by default.
|
|
1021
|
+
*/
|
|
1022
|
+
is_default?: boolean | null | unknown;
|
|
1023
|
+
/**
|
|
1024
|
+
* Field included by default.
|
|
1025
|
+
*/
|
|
1026
|
+
last4?: string | null | unknown;
|
|
1027
|
+
/**
|
|
1028
|
+
* Field included by default.
|
|
1029
|
+
*/
|
|
1030
|
+
nickname?: string | null | unknown;
|
|
1031
|
+
/**
|
|
1032
|
+
* Field included by default.
|
|
1033
|
+
*/
|
|
1034
|
+
provider: "qorpay";
|
|
1035
|
+
/**
|
|
1036
|
+
* Field included by default.
|
|
1037
|
+
*/
|
|
1038
|
+
provider_token: string;
|
|
1039
|
+
/**
|
|
1040
|
+
* Field included by default.
|
|
1041
|
+
*/
|
|
1042
|
+
type: "card" | "bank_account";
|
|
1043
|
+
/**
|
|
1044
|
+
* Field included by default.
|
|
1045
|
+
*/
|
|
1046
|
+
updated_at: unknown;
|
|
1047
|
+
/**
|
|
1048
|
+
* Field included by default.
|
|
1049
|
+
*/
|
|
1050
|
+
zip_code?: string | null | unknown;
|
|
869
1051
|
};
|
|
870
1052
|
id: string;
|
|
871
1053
|
/**
|
|
@@ -1136,6 +1318,39 @@ type Application = {
|
|
|
1136
1318
|
* Field included by default.
|
|
1137
1319
|
*/
|
|
1138
1320
|
name: string;
|
|
1321
|
+
/**
|
|
1322
|
+
* OAuth configuration for this application. Field included by default.
|
|
1323
|
+
*/
|
|
1324
|
+
oauth?: {
|
|
1325
|
+
/**
|
|
1326
|
+
* Allowed OAuth callback URLs for this application. Field included by default.
|
|
1327
|
+
*/
|
|
1328
|
+
callback_urls?: Array<string> | null | unknown;
|
|
1329
|
+
/**
|
|
1330
|
+
* Default callback URL if not specified in request. Field included by default.
|
|
1331
|
+
*/
|
|
1332
|
+
default_callback_url?: string | null | unknown;
|
|
1333
|
+
/**
|
|
1334
|
+
* Which OAuth providers are enabled for this app. Field included by default.
|
|
1335
|
+
*/
|
|
1336
|
+
enabled_providers?: Array<"google" | "github" | "salesforce"> | null | unknown;
|
|
1337
|
+
/**
|
|
1338
|
+
* Custom GitHub OAuth client ID (optional). Field included by default.
|
|
1339
|
+
*/
|
|
1340
|
+
github_client_id?: string | null | unknown;
|
|
1341
|
+
/**
|
|
1342
|
+
* Custom GitHub OAuth client secret (optional). Field included by default.
|
|
1343
|
+
*/
|
|
1344
|
+
github_client_secret?: string | null | unknown;
|
|
1345
|
+
/**
|
|
1346
|
+
* Custom Google OAuth client ID (optional). Field included by default.
|
|
1347
|
+
*/
|
|
1348
|
+
google_client_id?: string | null | unknown;
|
|
1349
|
+
/**
|
|
1350
|
+
* Custom Google OAuth client secret (optional). Field included by default.
|
|
1351
|
+
*/
|
|
1352
|
+
google_client_secret?: string | null | unknown;
|
|
1353
|
+
} | null | unknown;
|
|
1139
1354
|
/**
|
|
1140
1355
|
* When true, password registration withholds JWT until email is verified. Field included by default.
|
|
1141
1356
|
*/
|
|
@@ -1268,7 +1483,7 @@ type ApiKey = {
|
|
|
1268
1483
|
*/
|
|
1269
1484
|
attributes?: {
|
|
1270
1485
|
/**
|
|
1271
|
-
* Field included by default.
|
|
1486
|
+
* Required - the application this API key belongs to. Field included by default.
|
|
1272
1487
|
*/
|
|
1273
1488
|
application_id: string;
|
|
1274
1489
|
/**
|
|
@@ -1593,8 +1808,22 @@ type WorkspaceSettingsInputUpdateType = {
|
|
|
1593
1808
|
} | unknown;
|
|
1594
1809
|
billing?: {
|
|
1595
1810
|
allow_overdraft?: boolean | unknown;
|
|
1811
|
+
/**
|
|
1812
|
+
* Maximum overdraft credits allowed per period
|
|
1813
|
+
*/
|
|
1596
1814
|
overdraft_limit?: number | unknown;
|
|
1815
|
+
/**
|
|
1816
|
+
* Period for overdraft limit reset (daily, weekly, monthly)
|
|
1817
|
+
*/
|
|
1597
1818
|
overdraft_period?: "daily" | "weekly" | "monthly" | unknown;
|
|
1819
|
+
/**
|
|
1820
|
+
* When the current overdraft period began
|
|
1821
|
+
*/
|
|
1822
|
+
overdraft_period_started_at?: unknown;
|
|
1823
|
+
/**
|
|
1824
|
+
* Credits used from overdraft in current period
|
|
1825
|
+
*/
|
|
1826
|
+
overdraft_used?: number | unknown;
|
|
1598
1827
|
} | unknown;
|
|
1599
1828
|
review_train?: {
|
|
1600
1829
|
confidence_threshold?: number | unknown;
|
|
@@ -1670,6 +1899,62 @@ type WorkspaceSettingsInputUpdateType = {
|
|
|
1670
1899
|
source_type?: "local" | "cloud" | unknown;
|
|
1671
1900
|
};
|
|
1672
1901
|
};
|
|
1902
|
+
/**
|
|
1903
|
+
* A "Resource object" representing a invoice
|
|
1904
|
+
*/
|
|
1905
|
+
type Invoice = {
|
|
1906
|
+
/**
|
|
1907
|
+
* An attributes object for a invoice
|
|
1908
|
+
*/
|
|
1909
|
+
attributes?: {
|
|
1910
|
+
/**
|
|
1911
|
+
* Field included by default.
|
|
1912
|
+
*/
|
|
1913
|
+
amount_due?: number | null | unknown;
|
|
1914
|
+
/**
|
|
1915
|
+
* Field included by default.
|
|
1916
|
+
*/
|
|
1917
|
+
amount_paid?: number | null | unknown;
|
|
1918
|
+
/**
|
|
1919
|
+
* Field included by default.
|
|
1920
|
+
*/
|
|
1921
|
+
created_at?: unknown;
|
|
1922
|
+
/**
|
|
1923
|
+
* Field included by default.
|
|
1924
|
+
*/
|
|
1925
|
+
currency?: string | null | unknown;
|
|
1926
|
+
/**
|
|
1927
|
+
* Field included by default.
|
|
1928
|
+
*/
|
|
1929
|
+
due_date?: unknown;
|
|
1930
|
+
/**
|
|
1931
|
+
* Field included by default.
|
|
1932
|
+
*/
|
|
1933
|
+
invoice_number?: string | null | unknown;
|
|
1934
|
+
/**
|
|
1935
|
+
* Field included by default.
|
|
1936
|
+
*/
|
|
1937
|
+
line_items?: Array<{
|
|
1938
|
+
[key: string]: unknown;
|
|
1939
|
+
}> | null | unknown;
|
|
1940
|
+
/**
|
|
1941
|
+
* Field included by default.
|
|
1942
|
+
*/
|
|
1943
|
+
pdf_url?: string | null | unknown;
|
|
1944
|
+
/**
|
|
1945
|
+
* Field included by default.
|
|
1946
|
+
*/
|
|
1947
|
+
status?: "draft" | "open" | "paid" | "void" | unknown;
|
|
1948
|
+
};
|
|
1949
|
+
id: string;
|
|
1950
|
+
/**
|
|
1951
|
+
* A relationships object for a invoice
|
|
1952
|
+
*/
|
|
1953
|
+
relationships?: {
|
|
1954
|
+
[key: string]: never;
|
|
1955
|
+
};
|
|
1956
|
+
type: string;
|
|
1957
|
+
};
|
|
1673
1958
|
/**
|
|
1674
1959
|
* A "Resource object" representing a training_analytics
|
|
1675
1960
|
*/
|
|
@@ -1760,7 +2045,72 @@ type Transaction = {
|
|
|
1760
2045
|
* An attributes object for a transaction
|
|
1761
2046
|
*/
|
|
1762
2047
|
attributes?: {
|
|
1763
|
-
|
|
2048
|
+
/**
|
|
2049
|
+
* The amount of the transaction. For monetary transactions, this is in cents. For credit usage, this is in credits. Field included by default.
|
|
2050
|
+
*/
|
|
2051
|
+
amount: number;
|
|
2052
|
+
/**
|
|
2053
|
+
* Field included by default.
|
|
2054
|
+
*/
|
|
2055
|
+
created_at: unknown;
|
|
2056
|
+
/**
|
|
2057
|
+
* Field included by default.
|
|
2058
|
+
*/
|
|
2059
|
+
credits_added?: number | null | unknown;
|
|
2060
|
+
/**
|
|
2061
|
+
* Field included by default.
|
|
2062
|
+
*/
|
|
2063
|
+
credits_used?: number | null | unknown;
|
|
2064
|
+
/**
|
|
2065
|
+
* Field included by default.
|
|
2066
|
+
*/
|
|
2067
|
+
currency?: string | null | unknown;
|
|
2068
|
+
/**
|
|
2069
|
+
* Field included by default.
|
|
2070
|
+
*/
|
|
2071
|
+
description?: string | null | unknown;
|
|
2072
|
+
/**
|
|
2073
|
+
* Field included by default.
|
|
2074
|
+
*/
|
|
2075
|
+
error_message?: string | null | unknown;
|
|
2076
|
+
/**
|
|
2077
|
+
* Field included by default.
|
|
2078
|
+
*/
|
|
2079
|
+
metadata?: {
|
|
2080
|
+
[key: string]: unknown;
|
|
2081
|
+
} | null | unknown;
|
|
2082
|
+
/**
|
|
2083
|
+
* Field included by default.
|
|
2084
|
+
*/
|
|
2085
|
+
operation?: "subscription" | "topup" | "extraction" | "training" | "refund" | "addon" | unknown;
|
|
2086
|
+
/**
|
|
2087
|
+
* Field included by default.
|
|
2088
|
+
*/
|
|
2089
|
+
provider_reference?: string | null | unknown;
|
|
2090
|
+
/**
|
|
2091
|
+
* Field included by default.
|
|
2092
|
+
*/
|
|
2093
|
+
service_id?: string | null | unknown;
|
|
2094
|
+
/**
|
|
2095
|
+
* Field included by default.
|
|
2096
|
+
*/
|
|
2097
|
+
status: "pending" | "success" | "failed" | "refunded" | "voided";
|
|
2098
|
+
/**
|
|
2099
|
+
* Field included by default.
|
|
2100
|
+
*/
|
|
2101
|
+
tenant_id: string;
|
|
2102
|
+
/**
|
|
2103
|
+
* Field included by default.
|
|
2104
|
+
*/
|
|
2105
|
+
transaction_type?: "credit" | "debit" | unknown;
|
|
2106
|
+
/**
|
|
2107
|
+
* Field included by default.
|
|
2108
|
+
*/
|
|
2109
|
+
type?: "sale" | "auth" | "refund" | "void" | unknown;
|
|
2110
|
+
/**
|
|
2111
|
+
* Field included by default.
|
|
2112
|
+
*/
|
|
2113
|
+
updated_at: unknown;
|
|
1764
2114
|
};
|
|
1765
2115
|
id: string;
|
|
1766
2116
|
/**
|
|
@@ -1779,38 +2129,14 @@ type ExtractionResult = {
|
|
|
1779
2129
|
* An attributes object for a extraction_result
|
|
1780
2130
|
*/
|
|
1781
2131
|
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
2132
|
/**
|
|
1795
2133
|
* Character count of extracted text
|
|
1796
2134
|
*/
|
|
1797
2135
|
char_count?: number | null | unknown;
|
|
1798
|
-
/**
|
|
1799
|
-
* Overall classification confidence score. Field included by default.
|
|
1800
|
-
*/
|
|
1801
|
-
classification_confidence?: number | null | unknown;
|
|
1802
2136
|
/**
|
|
1803
2137
|
* Field included by default.
|
|
1804
2138
|
*/
|
|
1805
2139
|
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
2140
|
/**
|
|
1815
2141
|
* Field included by default.
|
|
1816
2142
|
*/
|
|
@@ -1833,10 +2159,6 @@ type ExtractionResult = {
|
|
|
1833
2159
|
* Line count of extracted text
|
|
1834
2160
|
*/
|
|
1835
2161
|
line_count?: number | null | unknown;
|
|
1836
|
-
/**
|
|
1837
|
-
* Municipality or agency name. Field included by default.
|
|
1838
|
-
*/
|
|
1839
|
-
municipality?: string | null | unknown;
|
|
1840
2162
|
ocr_blocks?: Array<{
|
|
1841
2163
|
[key: string]: unknown;
|
|
1842
2164
|
}> | null | unknown;
|
|
@@ -1846,17 +2168,9 @@ type ExtractionResult = {
|
|
|
1846
2168
|
processing_time_ms?: number | null | unknown;
|
|
1847
2169
|
schema_id?: string | null | unknown;
|
|
1848
2170
|
/**
|
|
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.
|
|
2171
|
+
* The version of the schema/agent used for this extraction. Field included by default.
|
|
1854
2172
|
*/
|
|
1855
2173
|
schema_version?: string | null | unknown;
|
|
1856
|
-
/**
|
|
1857
|
-
* State code. Field included by default.
|
|
1858
|
-
*/
|
|
1859
|
-
state?: string | null | unknown;
|
|
1860
2174
|
/**
|
|
1861
2175
|
* Field included by default.
|
|
1862
2176
|
*/
|
|
@@ -2026,6 +2340,10 @@ type Tenant = {
|
|
|
2026
2340
|
* Field included by default.
|
|
2027
2341
|
*/
|
|
2028
2342
|
auto_top_up_enabled: boolean;
|
|
2343
|
+
/**
|
|
2344
|
+
* The credit package to purchase when auto top-up is triggered. Field included by default.
|
|
2345
|
+
*/
|
|
2346
|
+
auto_top_up_package_id?: string | null | unknown;
|
|
2029
2347
|
/**
|
|
2030
2348
|
* Credit balance threshold to trigger auto top-up. Field included by default.
|
|
2031
2349
|
*/
|
|
@@ -2267,10 +2585,6 @@ type AgentVersion = {
|
|
|
2267
2585
|
* Field included by default.
|
|
2268
2586
|
*/
|
|
2269
2587
|
created_at: unknown;
|
|
2270
|
-
/**
|
|
2271
|
-
* Combined display version like 'v2 rev 5'
|
|
2272
|
-
*/
|
|
2273
|
-
display_version?: string | null | unknown;
|
|
2274
2588
|
/**
|
|
2275
2589
|
* Field included by default.
|
|
2276
2590
|
*/
|
|
@@ -2324,10 +2638,6 @@ type AgentVersion = {
|
|
|
2324
2638
|
* Field included by default.
|
|
2325
2639
|
*/
|
|
2326
2640
|
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
2641
|
/**
|
|
2332
2642
|
* Field included by default.
|
|
2333
2643
|
*/
|
|
@@ -2393,6 +2703,39 @@ type ApplicationType = {
|
|
|
2393
2703
|
* Field included by default.
|
|
2394
2704
|
*/
|
|
2395
2705
|
name: string;
|
|
2706
|
+
/**
|
|
2707
|
+
* OAuth configuration for this application. Field included by default.
|
|
2708
|
+
*/
|
|
2709
|
+
oauth?: {
|
|
2710
|
+
/**
|
|
2711
|
+
* Allowed OAuth callback URLs for this application. Field included by default.
|
|
2712
|
+
*/
|
|
2713
|
+
callback_urls?: Array<string> | null | unknown;
|
|
2714
|
+
/**
|
|
2715
|
+
* Default callback URL if not specified in request. Field included by default.
|
|
2716
|
+
*/
|
|
2717
|
+
default_callback_url?: string | null | unknown;
|
|
2718
|
+
/**
|
|
2719
|
+
* Which OAuth providers are enabled for this app. Field included by default.
|
|
2720
|
+
*/
|
|
2721
|
+
enabled_providers?: Array<"google" | "github" | "salesforce"> | null | unknown;
|
|
2722
|
+
/**
|
|
2723
|
+
* Custom GitHub OAuth client ID (optional). Field included by default.
|
|
2724
|
+
*/
|
|
2725
|
+
github_client_id?: string | null | unknown;
|
|
2726
|
+
/**
|
|
2727
|
+
* Custom GitHub OAuth client secret (optional). Field included by default.
|
|
2728
|
+
*/
|
|
2729
|
+
github_client_secret?: string | null | unknown;
|
|
2730
|
+
/**
|
|
2731
|
+
* Custom Google OAuth client ID (optional). Field included by default.
|
|
2732
|
+
*/
|
|
2733
|
+
google_client_id?: string | null | unknown;
|
|
2734
|
+
/**
|
|
2735
|
+
* Custom Google OAuth client secret (optional). Field included by default.
|
|
2736
|
+
*/
|
|
2737
|
+
google_client_secret?: string | null | unknown;
|
|
2738
|
+
} | null | unknown;
|
|
2396
2739
|
/**
|
|
2397
2740
|
* When true, password registration withholds JWT until email is verified. Field included by default.
|
|
2398
2741
|
*/
|
|
@@ -2996,54 +3339,6 @@ type PermissionMeta = {
|
|
|
2996
3339
|
};
|
|
2997
3340
|
type: string;
|
|
2998
3341
|
};
|
|
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
3342
|
/**
|
|
3048
3343
|
* A "Resource object" representing a llm_analytics
|
|
3049
3344
|
*/
|
|
@@ -3506,6 +3801,36 @@ type Transfer = {
|
|
|
3506
3801
|
};
|
|
3507
3802
|
type: string;
|
|
3508
3803
|
};
|
|
3804
|
+
type ApplicationOauthInputUpdateType = {
|
|
3805
|
+
/**
|
|
3806
|
+
* Allowed OAuth callback URLs for this application
|
|
3807
|
+
*/
|
|
3808
|
+
callback_urls?: Array<string> | unknown;
|
|
3809
|
+
/**
|
|
3810
|
+
* Default callback URL if not specified in request
|
|
3811
|
+
*/
|
|
3812
|
+
default_callback_url?: string | unknown;
|
|
3813
|
+
/**
|
|
3814
|
+
* Which OAuth providers are enabled for this app
|
|
3815
|
+
*/
|
|
3816
|
+
enabled_providers?: Array<"google" | "github" | "salesforce"> | unknown;
|
|
3817
|
+
/**
|
|
3818
|
+
* Custom GitHub OAuth client ID (optional)
|
|
3819
|
+
*/
|
|
3820
|
+
github_client_id?: string | unknown;
|
|
3821
|
+
/**
|
|
3822
|
+
* Custom GitHub OAuth client secret (optional)
|
|
3823
|
+
*/
|
|
3824
|
+
github_client_secret?: string | unknown;
|
|
3825
|
+
/**
|
|
3826
|
+
* Custom Google OAuth client ID (optional)
|
|
3827
|
+
*/
|
|
3828
|
+
google_client_id?: string | unknown;
|
|
3829
|
+
/**
|
|
3830
|
+
* Custom Google OAuth client secret (optional)
|
|
3831
|
+
*/
|
|
3832
|
+
google_client_secret?: string | unknown;
|
|
3833
|
+
};
|
|
3509
3834
|
/**
|
|
3510
3835
|
* A "Resource object" representing a presigned_url
|
|
3511
3836
|
*/
|
|
@@ -3875,7 +4200,14 @@ type Subscription = {
|
|
|
3875
4200
|
* An attributes object for a subscription
|
|
3876
4201
|
*/
|
|
3877
4202
|
attributes?: {
|
|
3878
|
-
|
|
4203
|
+
/**
|
|
4204
|
+
* Field included by default.
|
|
4205
|
+
*/
|
|
4206
|
+
dunning_stage: number;
|
|
4207
|
+
/**
|
|
4208
|
+
* Field included by default.
|
|
4209
|
+
*/
|
|
4210
|
+
next_retry_at?: string | null | unknown;
|
|
3879
4211
|
};
|
|
3880
4212
|
id: string;
|
|
3881
4213
|
/**
|
|
@@ -4191,9 +4523,9 @@ type Workspace = {
|
|
|
4191
4523
|
*/
|
|
4192
4524
|
app: string;
|
|
4193
4525
|
/**
|
|
4194
|
-
* Field included by default.
|
|
4526
|
+
* Required - the application this workspace belongs to. Field included by default.
|
|
4195
4527
|
*/
|
|
4196
|
-
application_id
|
|
4528
|
+
application_id: string;
|
|
4197
4529
|
/**
|
|
4198
4530
|
* Field included by default.
|
|
4199
4531
|
*/
|
|
@@ -4202,18 +4534,10 @@ type Workspace = {
|
|
|
4202
4534
|
* Field included by default.
|
|
4203
4535
|
*/
|
|
4204
4536
|
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
4537
|
/**
|
|
4210
4538
|
* Field included by default.
|
|
4211
4539
|
*/
|
|
4212
4540
|
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
4541
|
/**
|
|
4218
4542
|
* Field included by default.
|
|
4219
4543
|
*/
|
|
@@ -4234,10 +4558,6 @@ type Workspace = {
|
|
|
4234
4558
|
* Field included by default.
|
|
4235
4559
|
*/
|
|
4236
4560
|
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
4561
|
/**
|
|
4242
4562
|
* Field included by default.
|
|
4243
4563
|
*/
|
|
@@ -4286,13 +4606,21 @@ type Workspace = {
|
|
|
4286
4606
|
*/
|
|
4287
4607
|
allow_overdraft: boolean;
|
|
4288
4608
|
/**
|
|
4289
|
-
* Field included by default.
|
|
4609
|
+
* Maximum overdraft credits allowed per period. Field included by default.
|
|
4290
4610
|
*/
|
|
4291
4611
|
overdraft_limit?: number | null | unknown;
|
|
4292
4612
|
/**
|
|
4293
|
-
* Field included by default.
|
|
4613
|
+
* Period for overdraft limit reset (daily, weekly, monthly). Field included by default.
|
|
4294
4614
|
*/
|
|
4295
4615
|
overdraft_period?: "daily" | "weekly" | "monthly" | unknown;
|
|
4616
|
+
/**
|
|
4617
|
+
* When the current overdraft period began. Field included by default.
|
|
4618
|
+
*/
|
|
4619
|
+
overdraft_period_started_at?: unknown;
|
|
4620
|
+
/**
|
|
4621
|
+
* Credits used from overdraft in current period. Field included by default.
|
|
4622
|
+
*/
|
|
4623
|
+
overdraft_used?: number | null | unknown;
|
|
4296
4624
|
};
|
|
4297
4625
|
/**
|
|
4298
4626
|
* Field included by default.
|
|
@@ -4627,37 +4955,34 @@ type ExtractionDocument = {
|
|
|
4627
4955
|
* Overall classification confidence (0.0 to 1.0). Field included by default.
|
|
4628
4956
|
*/
|
|
4629
4957
|
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
4958
|
uploaded_at?: string | null | unknown;
|
|
4635
4959
|
/**
|
|
4636
4960
|
* Current processing stage based on storage path
|
|
4637
4961
|
*/
|
|
4638
4962
|
stage?: string | null | unknown;
|
|
4639
4963
|
/**
|
|
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.
|
|
4964
|
+
* Credits billed for processing this document. Field included by default.
|
|
4645
4965
|
*/
|
|
4646
|
-
|
|
4966
|
+
billed_credits?: number | null | unknown;
|
|
4647
4967
|
/**
|
|
4648
|
-
*
|
|
4968
|
+
* Field included by default.
|
|
4649
4969
|
*/
|
|
4650
|
-
billed_credits?: number | null | unknown;
|
|
4651
4970
|
storage_path: string;
|
|
4652
4971
|
/**
|
|
4653
|
-
* SHA256 hash of the file content for deduplication
|
|
4972
|
+
* SHA256 hash of the file content for deduplication. Field included by default.
|
|
4654
4973
|
*/
|
|
4655
4974
|
file_hash?: string | null | unknown;
|
|
4975
|
+
/**
|
|
4976
|
+
* Field included by default.
|
|
4977
|
+
*/
|
|
4656
4978
|
excluded_by?: string | null | unknown;
|
|
4657
4979
|
/**
|
|
4658
|
-
* The S3 bucket where this document is stored. Set during upload/begin_upload.
|
|
4980
|
+
* The S3 bucket where this document is stored. Set during upload/begin_upload. Field included by default.
|
|
4659
4981
|
*/
|
|
4660
4982
|
bucket_name?: string | null | unknown;
|
|
4983
|
+
/**
|
|
4984
|
+
* Field included by default.
|
|
4985
|
+
*/
|
|
4661
4986
|
deleted_at?: unknown;
|
|
4662
4987
|
/**
|
|
4663
4988
|
* Classification object containing domain, document_type, municipality, state, and confidence
|
|
@@ -4674,49 +4999,76 @@ type ExtractionDocument = {
|
|
|
4674
4999
|
* Reason why this document is in the review queue
|
|
4675
5000
|
*/
|
|
4676
5001
|
queue_reason?: string | null | unknown;
|
|
5002
|
+
/**
|
|
5003
|
+
* Field included by default.
|
|
5004
|
+
*/
|
|
4677
5005
|
status?: "queued" | "processing" | "completed" | "failed" | "cancelled" | "pending_credits" | unknown;
|
|
5006
|
+
/**
|
|
5007
|
+
* Field included by default.
|
|
5008
|
+
*/
|
|
4678
5009
|
progress?: number | null | unknown;
|
|
4679
5010
|
/**
|
|
4680
|
-
* Timestamp when document was moved to output/error bucket
|
|
5011
|
+
* Timestamp when document was moved to output/error bucket. Field included by default.
|
|
4681
5012
|
*/
|
|
4682
5013
|
moved_at?: unknown;
|
|
4683
5014
|
/**
|
|
4684
|
-
* Full path (bucket/key) where document was copied after successful extraction
|
|
5015
|
+
* Full path (bucket/key) where document was copied after successful extraction. Field included by default.
|
|
4685
5016
|
*/
|
|
4686
5017
|
output_storage_path?: string | null | unknown;
|
|
4687
5018
|
/**
|
|
4688
|
-
* Metadata about the training session for this document (trained_at, user_id, scores)
|
|
5019
|
+
* Metadata about the training session for this document (trained_at, user_id, scores). Field included by default.
|
|
4689
5020
|
*/
|
|
4690
5021
|
training_metadata?: {
|
|
4691
5022
|
[key: string]: unknown;
|
|
4692
5023
|
} | null | unknown;
|
|
4693
5024
|
upload_url?: string | null | unknown;
|
|
5025
|
+
/**
|
|
5026
|
+
* Field included by default.
|
|
5027
|
+
*/
|
|
4694
5028
|
pages?: number | null | unknown;
|
|
4695
5029
|
/**
|
|
4696
|
-
* The review/verification state of the document
|
|
5030
|
+
* The review/verification state of the document. Field included by default.
|
|
4697
5031
|
*/
|
|
4698
5032
|
verification_status?: "unverified" | "partially_verified" | "fully_verified" | unknown;
|
|
5033
|
+
/**
|
|
5034
|
+
* Field included by default.
|
|
5035
|
+
*/
|
|
4699
5036
|
processed_at?: unknown;
|
|
5037
|
+
/**
|
|
5038
|
+
* Field included by default.
|
|
5039
|
+
*/
|
|
4700
5040
|
error_message?: string | null | unknown;
|
|
5041
|
+
/**
|
|
5042
|
+
* Field included by default.
|
|
5043
|
+
*/
|
|
4701
5044
|
verified_by_user_id?: string | null | unknown;
|
|
5045
|
+
/**
|
|
5046
|
+
* Field included by default.
|
|
5047
|
+
*/
|
|
4702
5048
|
file_type: "pdf" | "docx" | "image" | "zip";
|
|
5049
|
+
/**
|
|
5050
|
+
* Field included by default.
|
|
5051
|
+
*/
|
|
4703
5052
|
file_size_bytes?: number | null | unknown;
|
|
4704
5053
|
/**
|
|
4705
|
-
* Timestamp when document processing completed (status changed to :completed)
|
|
5054
|
+
* Timestamp when document processing completed (status changed to :completed). Field included by default.
|
|
4706
5055
|
*/
|
|
4707
5056
|
completed_at?: unknown;
|
|
4708
5057
|
/**
|
|
4709
|
-
* The version of the agent/schema used to process this document
|
|
5058
|
+
* The version of the agent/schema used to process this document. Field included by default.
|
|
4710
5059
|
*/
|
|
4711
5060
|
schema_version?: string | null | unknown;
|
|
4712
5061
|
presigned_view_url?: string | null | unknown;
|
|
5062
|
+
/**
|
|
5063
|
+
* Field included by default.
|
|
5064
|
+
*/
|
|
4713
5065
|
last_verified_at?: unknown;
|
|
4714
5066
|
/**
|
|
4715
5067
|
* State or province code (2-letter). Field included by default.
|
|
4716
5068
|
*/
|
|
4717
5069
|
state?: string | null | unknown;
|
|
4718
5070
|
/**
|
|
4719
|
-
* Full path (bucket/key) where document was copied after failed extraction
|
|
5071
|
+
* Full path (bucket/key) where document was copied after failed extraction. Field included by default.
|
|
4720
5072
|
*/
|
|
4721
5073
|
error_storage_path?: string | null | unknown;
|
|
4722
5074
|
/**
|
|
@@ -4724,14 +5076,16 @@ type ExtractionDocument = {
|
|
|
4724
5076
|
*/
|
|
4725
5077
|
domain?: string | null | unknown;
|
|
4726
5078
|
/**
|
|
4727
|
-
* If true, this document is excluded from training (both creating new examples and being used in retrieval)
|
|
5079
|
+
* If true, this document is excluded from training (both creating new examples and being used in retrieval). Field included by default.
|
|
4728
5080
|
*/
|
|
4729
5081
|
excluded_from_training: boolean;
|
|
4730
5082
|
/**
|
|
4731
|
-
*
|
|
5083
|
+
* Field included by default.
|
|
4732
5084
|
*/
|
|
4733
|
-
agent_id?: string | null | unknown;
|
|
4734
5085
|
excluded_at?: unknown;
|
|
5086
|
+
/**
|
|
5087
|
+
* Field included by default.
|
|
5088
|
+
*/
|
|
4735
5089
|
filename: string;
|
|
4736
5090
|
/**
|
|
4737
5091
|
* Average confidence score across all extracted fields (0.0 to 1.0). Field included by default.
|
|
@@ -4858,7 +5212,10 @@ type PostAdminWorkspacesData = {
|
|
|
4858
5212
|
* App type: extract, invoicing, crm, etc.
|
|
4859
5213
|
*/
|
|
4860
5214
|
app?: string | unknown;
|
|
4861
|
-
|
|
5215
|
+
/**
|
|
5216
|
+
* Required - the application this workspace belongs to
|
|
5217
|
+
*/
|
|
5218
|
+
application_id: string;
|
|
4862
5219
|
description?: string | unknown;
|
|
4863
5220
|
expires_at?: unknown;
|
|
4864
5221
|
initial_credits?: number | unknown;
|
|
@@ -5341,6 +5698,10 @@ type PostAdminApplicationsData = {
|
|
|
5341
5698
|
invite_only?: boolean | unknown;
|
|
5342
5699
|
logo_url?: string | unknown;
|
|
5343
5700
|
name: string;
|
|
5701
|
+
/**
|
|
5702
|
+
* OAuth configuration for this application
|
|
5703
|
+
*/
|
|
5704
|
+
oauth?: ApplicationOauthInputCreateType | unknown;
|
|
5344
5705
|
owner_id?: string | unknown;
|
|
5345
5706
|
/**
|
|
5346
5707
|
* When true, password registration withholds JWT until email is verified
|
|
@@ -5739,93 +6100,6 @@ type PostAdminMessagesResponses = {
|
|
|
5739
6100
|
};
|
|
5740
6101
|
};
|
|
5741
6102
|
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
6103
|
type GetAdminAgentsData = {
|
|
5830
6104
|
body?: never;
|
|
5831
6105
|
headers: {
|
|
@@ -6726,11 +7000,10 @@ type PatchAdminWorkspacesByIdData = {
|
|
|
6726
7000
|
body?: {
|
|
6727
7001
|
data: {
|
|
6728
7002
|
attributes?: {
|
|
6729
|
-
application_id?: string | unknown;
|
|
6730
7003
|
/**
|
|
6731
|
-
*
|
|
7004
|
+
* Required - the application this workspace belongs to
|
|
6732
7005
|
*/
|
|
6733
|
-
|
|
7006
|
+
application_id?: string | unknown;
|
|
6734
7007
|
is_default?: boolean | unknown;
|
|
6735
7008
|
low_balance_threshold?: number | unknown;
|
|
6736
7009
|
name?: string | unknown;
|
|
@@ -7994,200 +8267,285 @@ type GetAdminWebhookConfigsErrors = {
|
|
|
7994
8267
|
*/
|
|
7995
8268
|
default: Errors;
|
|
7996
8269
|
};
|
|
7997
|
-
type GetAdminWebhookConfigsError = GetAdminWebhookConfigsErrors[keyof GetAdminWebhookConfigsErrors];
|
|
7998
|
-
type GetAdminWebhookConfigsResponses = {
|
|
8270
|
+
type GetAdminWebhookConfigsError = GetAdminWebhookConfigsErrors[keyof GetAdminWebhookConfigsErrors];
|
|
8271
|
+
type GetAdminWebhookConfigsResponses = {
|
|
8272
|
+
/**
|
|
8273
|
+
* Success
|
|
8274
|
+
*/
|
|
8275
|
+
200: {
|
|
8276
|
+
/**
|
|
8277
|
+
* An array of resource objects representing a webhook_config
|
|
8278
|
+
*/
|
|
8279
|
+
data?: Array<WebhookConfig>;
|
|
8280
|
+
included?: Array<unknown>;
|
|
8281
|
+
meta?: {
|
|
8282
|
+
[key: string]: unknown;
|
|
8283
|
+
};
|
|
8284
|
+
};
|
|
8285
|
+
};
|
|
8286
|
+
type GetAdminWebhookConfigsResponse = GetAdminWebhookConfigsResponses[keyof GetAdminWebhookConfigsResponses];
|
|
8287
|
+
type PostAdminWebhookConfigsData = {
|
|
8288
|
+
/**
|
|
8289
|
+
* Request body for the /webhook_configs operation on webhook_config resource
|
|
8290
|
+
*/
|
|
8291
|
+
body: {
|
|
8292
|
+
data: {
|
|
8293
|
+
attributes?: {
|
|
8294
|
+
application_id?: string | unknown;
|
|
8295
|
+
enabled?: boolean | unknown;
|
|
8296
|
+
events?: Array<string> | unknown;
|
|
8297
|
+
name: string;
|
|
8298
|
+
/**
|
|
8299
|
+
* HMAC secret for webhook signature verification
|
|
8300
|
+
*/
|
|
8301
|
+
secret?: string | unknown;
|
|
8302
|
+
tenant_id?: string | unknown;
|
|
8303
|
+
/**
|
|
8304
|
+
* ISV filter: specific tenant UUIDs to receive events from (null = all)
|
|
8305
|
+
*/
|
|
8306
|
+
tenant_ids?: Array<string> | unknown;
|
|
8307
|
+
url: string;
|
|
8308
|
+
/**
|
|
8309
|
+
* Tenant filter: specific workspace UUIDs to receive events from (null = all)
|
|
8310
|
+
*/
|
|
8311
|
+
workspace_ids?: Array<string> | unknown;
|
|
8312
|
+
};
|
|
8313
|
+
relationships?: {
|
|
8314
|
+
[key: string]: never;
|
|
8315
|
+
};
|
|
8316
|
+
type?: "webhook_config";
|
|
8317
|
+
};
|
|
8318
|
+
};
|
|
8319
|
+
headers: {
|
|
8320
|
+
/**
|
|
8321
|
+
* Application ID for authentication and routing
|
|
8322
|
+
*/
|
|
8323
|
+
"x-application-key": string;
|
|
8324
|
+
};
|
|
8325
|
+
path?: never;
|
|
8326
|
+
query?: {
|
|
8327
|
+
/**
|
|
8328
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
8329
|
+
*/
|
|
8330
|
+
include?: string;
|
|
8331
|
+
/**
|
|
8332
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
8333
|
+
*/
|
|
8334
|
+
fields?: {
|
|
8335
|
+
[key: string]: unknown;
|
|
8336
|
+
};
|
|
8337
|
+
};
|
|
8338
|
+
url: "/admin/webhook_configs";
|
|
8339
|
+
};
|
|
8340
|
+
type PostAdminWebhookConfigsErrors = {
|
|
8341
|
+
/**
|
|
8342
|
+
* Bad Request - Invalid input data or malformed request
|
|
8343
|
+
*/
|
|
8344
|
+
400: ErrorResponse;
|
|
8345
|
+
/**
|
|
8346
|
+
* Unauthorized - Missing or invalid authentication token
|
|
8347
|
+
*/
|
|
8348
|
+
401: ErrorResponse;
|
|
8349
|
+
/**
|
|
8350
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
8351
|
+
*/
|
|
8352
|
+
403: ErrorResponse;
|
|
8353
|
+
/**
|
|
8354
|
+
* Not Found - Resource does not exist
|
|
8355
|
+
*/
|
|
8356
|
+
404: ErrorResponse;
|
|
8357
|
+
/**
|
|
8358
|
+
* Too Many Requests - Rate limit exceeded
|
|
8359
|
+
*/
|
|
8360
|
+
429: ErrorResponse;
|
|
8361
|
+
/**
|
|
8362
|
+
* Internal Server Error - Unexpected server error
|
|
8363
|
+
*/
|
|
8364
|
+
500: ErrorResponse;
|
|
8365
|
+
/**
|
|
8366
|
+
* General Error
|
|
8367
|
+
*/
|
|
8368
|
+
default: Errors;
|
|
8369
|
+
};
|
|
8370
|
+
type PostAdminWebhookConfigsError = PostAdminWebhookConfigsErrors[keyof PostAdminWebhookConfigsErrors];
|
|
8371
|
+
type PostAdminWebhookConfigsResponses = {
|
|
8372
|
+
/**
|
|
8373
|
+
* Success
|
|
8374
|
+
*/
|
|
8375
|
+
201: {
|
|
8376
|
+
data?: WebhookConfig;
|
|
8377
|
+
included?: Array<unknown>;
|
|
8378
|
+
meta?: {
|
|
8379
|
+
[key: string]: unknown;
|
|
8380
|
+
};
|
|
8381
|
+
};
|
|
8382
|
+
};
|
|
8383
|
+
type PostAdminWebhookConfigsResponse = PostAdminWebhookConfigsResponses[keyof PostAdminWebhookConfigsResponses];
|
|
8384
|
+
type GetAdminWorkspacesSharedData = {
|
|
8385
|
+
body?: never;
|
|
8386
|
+
headers: {
|
|
8387
|
+
/**
|
|
8388
|
+
* Application ID for authentication and routing
|
|
8389
|
+
*/
|
|
8390
|
+
"x-application-key": string;
|
|
8391
|
+
};
|
|
8392
|
+
path?: never;
|
|
8393
|
+
query?: {
|
|
8394
|
+
/**
|
|
8395
|
+
* JSON:API filter parameters (use flat query string format: filter[field][operator]=value)
|
|
8396
|
+
*/
|
|
8397
|
+
filter?: {
|
|
8398
|
+
[key: string]: unknown;
|
|
8399
|
+
};
|
|
8400
|
+
/**
|
|
8401
|
+
* Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
|
|
8402
|
+
*/
|
|
8403
|
+
sort?: string;
|
|
8404
|
+
/**
|
|
8405
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
8406
|
+
*/
|
|
8407
|
+
include?: string;
|
|
8408
|
+
/**
|
|
8409
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
8410
|
+
*/
|
|
8411
|
+
fields?: {
|
|
8412
|
+
[key: string]: unknown;
|
|
8413
|
+
};
|
|
8414
|
+
};
|
|
8415
|
+
url: "/admin/workspaces/shared";
|
|
8416
|
+
};
|
|
8417
|
+
type GetAdminWorkspacesSharedErrors = {
|
|
8418
|
+
/**
|
|
8419
|
+
* Bad Request - Invalid input data or malformed request
|
|
8420
|
+
*/
|
|
8421
|
+
400: ErrorResponse;
|
|
8422
|
+
/**
|
|
8423
|
+
* Unauthorized - Missing or invalid authentication token
|
|
8424
|
+
*/
|
|
8425
|
+
401: ErrorResponse;
|
|
8426
|
+
/**
|
|
8427
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
8428
|
+
*/
|
|
8429
|
+
403: ErrorResponse;
|
|
8430
|
+
/**
|
|
8431
|
+
* Not Found - Resource does not exist
|
|
8432
|
+
*/
|
|
8433
|
+
404: ErrorResponse;
|
|
8434
|
+
/**
|
|
8435
|
+
* Too Many Requests - Rate limit exceeded
|
|
8436
|
+
*/
|
|
8437
|
+
429: ErrorResponse;
|
|
8438
|
+
/**
|
|
8439
|
+
* Internal Server Error - Unexpected server error
|
|
8440
|
+
*/
|
|
8441
|
+
500: ErrorResponse;
|
|
8442
|
+
/**
|
|
8443
|
+
* General Error
|
|
8444
|
+
*/
|
|
8445
|
+
default: Errors;
|
|
8446
|
+
};
|
|
8447
|
+
type GetAdminWorkspacesSharedError = GetAdminWorkspacesSharedErrors[keyof GetAdminWorkspacesSharedErrors];
|
|
8448
|
+
type GetAdminWorkspacesSharedResponses = {
|
|
8449
|
+
/**
|
|
8450
|
+
* Success
|
|
8451
|
+
*/
|
|
8452
|
+
200: {
|
|
8453
|
+
/**
|
|
8454
|
+
* An array of resource objects representing a workspace
|
|
8455
|
+
*/
|
|
8456
|
+
data?: Array<Workspace>;
|
|
8457
|
+
included?: Array<Tenant>;
|
|
8458
|
+
meta?: {
|
|
8459
|
+
[key: string]: unknown;
|
|
8460
|
+
};
|
|
8461
|
+
};
|
|
8462
|
+
};
|
|
8463
|
+
type GetAdminWorkspacesSharedResponse = GetAdminWorkspacesSharedResponses[keyof GetAdminWorkspacesSharedResponses];
|
|
8464
|
+
type PatchAdminExtractionResultsByIdSaveCorrectionsData = {
|
|
8465
|
+
/**
|
|
8466
|
+
* Request body for the /extraction/results/:id/save_corrections operation on extraction_result resource
|
|
8467
|
+
*/
|
|
8468
|
+
body: {
|
|
8469
|
+
data: {
|
|
8470
|
+
attributes?: {
|
|
8471
|
+
corrections: Array<{
|
|
8472
|
+
[key: string]: unknown;
|
|
8473
|
+
}>;
|
|
8474
|
+
};
|
|
8475
|
+
id: string;
|
|
8476
|
+
relationships?: {
|
|
8477
|
+
[key: string]: never;
|
|
8478
|
+
};
|
|
8479
|
+
type?: "extraction_result";
|
|
8480
|
+
};
|
|
8481
|
+
};
|
|
8482
|
+
headers: {
|
|
8483
|
+
/**
|
|
8484
|
+
* Application ID for authentication and routing
|
|
8485
|
+
*/
|
|
8486
|
+
"x-application-key": string;
|
|
8487
|
+
};
|
|
8488
|
+
path: {
|
|
8489
|
+
id: string;
|
|
8490
|
+
};
|
|
8491
|
+
query?: {
|
|
8492
|
+
/**
|
|
8493
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
8494
|
+
*/
|
|
8495
|
+
include?: string;
|
|
8496
|
+
/**
|
|
8497
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
8498
|
+
*/
|
|
8499
|
+
fields?: {
|
|
8500
|
+
[key: string]: unknown;
|
|
8501
|
+
};
|
|
8502
|
+
};
|
|
8503
|
+
url: "/admin/extraction/results/{id}/save_corrections";
|
|
8504
|
+
};
|
|
8505
|
+
type PatchAdminExtractionResultsByIdSaveCorrectionsErrors = {
|
|
8506
|
+
/**
|
|
8507
|
+
* Bad Request - Invalid input data or malformed request
|
|
8508
|
+
*/
|
|
8509
|
+
400: ErrorResponse;
|
|
8510
|
+
/**
|
|
8511
|
+
* Unauthorized - Missing or invalid authentication token
|
|
8512
|
+
*/
|
|
8513
|
+
401: ErrorResponse;
|
|
8514
|
+
/**
|
|
8515
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
8516
|
+
*/
|
|
8517
|
+
403: ErrorResponse;
|
|
8518
|
+
/**
|
|
8519
|
+
* Not Found - Resource does not exist
|
|
8520
|
+
*/
|
|
8521
|
+
404: ErrorResponse;
|
|
8522
|
+
/**
|
|
8523
|
+
* Too Many Requests - Rate limit exceeded
|
|
8524
|
+
*/
|
|
8525
|
+
429: ErrorResponse;
|
|
8526
|
+
/**
|
|
8527
|
+
* Internal Server Error - Unexpected server error
|
|
8528
|
+
*/
|
|
8529
|
+
500: ErrorResponse;
|
|
8530
|
+
/**
|
|
8531
|
+
* General Error
|
|
8532
|
+
*/
|
|
8533
|
+
default: Errors;
|
|
8534
|
+
};
|
|
8535
|
+
type PatchAdminExtractionResultsByIdSaveCorrectionsError = PatchAdminExtractionResultsByIdSaveCorrectionsErrors[keyof PatchAdminExtractionResultsByIdSaveCorrectionsErrors];
|
|
8536
|
+
type PatchAdminExtractionResultsByIdSaveCorrectionsResponses = {
|
|
7999
8537
|
/**
|
|
8000
8538
|
* Success
|
|
8001
8539
|
*/
|
|
8002
8540
|
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;
|
|
8541
|
+
data?: ExtractionResult;
|
|
8104
8542
|
included?: Array<unknown>;
|
|
8105
8543
|
meta?: {
|
|
8106
8544
|
[key: string]: unknown;
|
|
8107
8545
|
};
|
|
8108
8546
|
};
|
|
8109
8547
|
};
|
|
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];
|
|
8548
|
+
type PatchAdminExtractionResultsByIdSaveCorrectionsResponse = PatchAdminExtractionResultsByIdSaveCorrectionsResponses[keyof PatchAdminExtractionResultsByIdSaveCorrectionsResponses];
|
|
8191
8549
|
type GetAdminNotificationLogsStatsData = {
|
|
8192
8550
|
body?: never;
|
|
8193
8551
|
headers: {
|
|
@@ -9641,7 +9999,7 @@ type PatchAdminExtractionDocumentsByIdReprocessData = {
|
|
|
9641
9999
|
data: {
|
|
9642
10000
|
attributes?: {
|
|
9643
10001
|
/**
|
|
9644
|
-
* The version of the agent/schema used to process this document
|
|
10002
|
+
* The version of the agent/schema used to process this document
|
|
9645
10003
|
*/
|
|
9646
10004
|
schema_version?: string | unknown;
|
|
9647
10005
|
schema_version_id?: string | unknown;
|
|
@@ -9831,88 +10189,6 @@ type PostAdminAgentsByIdExportResponses = {
|
|
|
9831
10189
|
};
|
|
9832
10190
|
};
|
|
9833
10191
|
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
10192
|
type GetAdminWorkspaceMembershipsData = {
|
|
9917
10193
|
body?: never;
|
|
9918
10194
|
headers: {
|
|
@@ -12582,6 +12858,68 @@ type PostAdminTenantsResponses = {
|
|
|
12582
12858
|
};
|
|
12583
12859
|
};
|
|
12584
12860
|
type PostAdminTenantsResponse = PostAdminTenantsResponses[keyof PostAdminTenantsResponses];
|
|
12861
|
+
type DeleteAdminExtractionResultsByIdData = {
|
|
12862
|
+
body?: never;
|
|
12863
|
+
headers: {
|
|
12864
|
+
/**
|
|
12865
|
+
* Application ID for authentication and routing
|
|
12866
|
+
*/
|
|
12867
|
+
"x-application-key": string;
|
|
12868
|
+
};
|
|
12869
|
+
path: {
|
|
12870
|
+
id: string;
|
|
12871
|
+
};
|
|
12872
|
+
query?: {
|
|
12873
|
+
/**
|
|
12874
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
12875
|
+
*/
|
|
12876
|
+
include?: string;
|
|
12877
|
+
/**
|
|
12878
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
12879
|
+
*/
|
|
12880
|
+
fields?: {
|
|
12881
|
+
[key: string]: unknown;
|
|
12882
|
+
};
|
|
12883
|
+
};
|
|
12884
|
+
url: "/admin/extraction/results/{id}";
|
|
12885
|
+
};
|
|
12886
|
+
type DeleteAdminExtractionResultsByIdErrors = {
|
|
12887
|
+
/**
|
|
12888
|
+
* Bad Request - Invalid input data or malformed request
|
|
12889
|
+
*/
|
|
12890
|
+
400: ErrorResponse;
|
|
12891
|
+
/**
|
|
12892
|
+
* Unauthorized - Missing or invalid authentication token
|
|
12893
|
+
*/
|
|
12894
|
+
401: ErrorResponse;
|
|
12895
|
+
/**
|
|
12896
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
12897
|
+
*/
|
|
12898
|
+
403: ErrorResponse;
|
|
12899
|
+
/**
|
|
12900
|
+
* Not Found - Resource does not exist
|
|
12901
|
+
*/
|
|
12902
|
+
404: ErrorResponse;
|
|
12903
|
+
/**
|
|
12904
|
+
* Too Many Requests - Rate limit exceeded
|
|
12905
|
+
*/
|
|
12906
|
+
429: ErrorResponse;
|
|
12907
|
+
/**
|
|
12908
|
+
* Internal Server Error - Unexpected server error
|
|
12909
|
+
*/
|
|
12910
|
+
500: ErrorResponse;
|
|
12911
|
+
/**
|
|
12912
|
+
* General Error
|
|
12913
|
+
*/
|
|
12914
|
+
default: Errors;
|
|
12915
|
+
};
|
|
12916
|
+
type DeleteAdminExtractionResultsByIdError = DeleteAdminExtractionResultsByIdErrors[keyof DeleteAdminExtractionResultsByIdErrors];
|
|
12917
|
+
type DeleteAdminExtractionResultsByIdResponses = {
|
|
12918
|
+
/**
|
|
12919
|
+
* Deleted successfully
|
|
12920
|
+
*/
|
|
12921
|
+
200: unknown;
|
|
12922
|
+
};
|
|
12585
12923
|
type GetAdminExtractionResultsByIdData = {
|
|
12586
12924
|
body?: never;
|
|
12587
12925
|
headers: {
|
|
@@ -12651,6 +12989,94 @@ type GetAdminExtractionResultsByIdResponses = {
|
|
|
12651
12989
|
};
|
|
12652
12990
|
};
|
|
12653
12991
|
type GetAdminExtractionResultsByIdResponse = GetAdminExtractionResultsByIdResponses[keyof GetAdminExtractionResultsByIdResponses];
|
|
12992
|
+
type PatchAdminExtractionResultsByIdData = {
|
|
12993
|
+
/**
|
|
12994
|
+
* Request body for the /extraction/results/:id operation on extraction_result resource
|
|
12995
|
+
*/
|
|
12996
|
+
body?: {
|
|
12997
|
+
data: {
|
|
12998
|
+
attributes?: {
|
|
12999
|
+
credits_used?: string | unknown;
|
|
13000
|
+
extracted_fields?: {
|
|
13001
|
+
[key: string]: unknown;
|
|
13002
|
+
} | unknown;
|
|
13003
|
+
processing_time_ms?: number | unknown;
|
|
13004
|
+
status?: "pending" | "completed" | "failed" | unknown;
|
|
13005
|
+
};
|
|
13006
|
+
id: string;
|
|
13007
|
+
relationships?: {
|
|
13008
|
+
[key: string]: never;
|
|
13009
|
+
};
|
|
13010
|
+
type?: "extraction_result";
|
|
13011
|
+
};
|
|
13012
|
+
};
|
|
13013
|
+
headers: {
|
|
13014
|
+
/**
|
|
13015
|
+
* Application ID for authentication and routing
|
|
13016
|
+
*/
|
|
13017
|
+
"x-application-key": string;
|
|
13018
|
+
};
|
|
13019
|
+
path: {
|
|
13020
|
+
id: string;
|
|
13021
|
+
};
|
|
13022
|
+
query?: {
|
|
13023
|
+
/**
|
|
13024
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
13025
|
+
*/
|
|
13026
|
+
include?: string;
|
|
13027
|
+
/**
|
|
13028
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
13029
|
+
*/
|
|
13030
|
+
fields?: {
|
|
13031
|
+
[key: string]: unknown;
|
|
13032
|
+
};
|
|
13033
|
+
};
|
|
13034
|
+
url: "/admin/extraction/results/{id}";
|
|
13035
|
+
};
|
|
13036
|
+
type PatchAdminExtractionResultsByIdErrors = {
|
|
13037
|
+
/**
|
|
13038
|
+
* Bad Request - Invalid input data or malformed request
|
|
13039
|
+
*/
|
|
13040
|
+
400: ErrorResponse;
|
|
13041
|
+
/**
|
|
13042
|
+
* Unauthorized - Missing or invalid authentication token
|
|
13043
|
+
*/
|
|
13044
|
+
401: ErrorResponse;
|
|
13045
|
+
/**
|
|
13046
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
13047
|
+
*/
|
|
13048
|
+
403: ErrorResponse;
|
|
13049
|
+
/**
|
|
13050
|
+
* Not Found - Resource does not exist
|
|
13051
|
+
*/
|
|
13052
|
+
404: ErrorResponse;
|
|
13053
|
+
/**
|
|
13054
|
+
* Too Many Requests - Rate limit exceeded
|
|
13055
|
+
*/
|
|
13056
|
+
429: ErrorResponse;
|
|
13057
|
+
/**
|
|
13058
|
+
* Internal Server Error - Unexpected server error
|
|
13059
|
+
*/
|
|
13060
|
+
500: ErrorResponse;
|
|
13061
|
+
/**
|
|
13062
|
+
* General Error
|
|
13063
|
+
*/
|
|
13064
|
+
default: Errors;
|
|
13065
|
+
};
|
|
13066
|
+
type PatchAdminExtractionResultsByIdError = PatchAdminExtractionResultsByIdErrors[keyof PatchAdminExtractionResultsByIdErrors];
|
|
13067
|
+
type PatchAdminExtractionResultsByIdResponses = {
|
|
13068
|
+
/**
|
|
13069
|
+
* Success
|
|
13070
|
+
*/
|
|
13071
|
+
200: {
|
|
13072
|
+
data?: ExtractionResult;
|
|
13073
|
+
included?: Array<unknown>;
|
|
13074
|
+
meta?: {
|
|
13075
|
+
[key: string]: unknown;
|
|
13076
|
+
};
|
|
13077
|
+
};
|
|
13078
|
+
};
|
|
13079
|
+
type PatchAdminExtractionResultsByIdResponse = PatchAdminExtractionResultsByIdResponses[keyof PatchAdminExtractionResultsByIdResponses];
|
|
12654
13080
|
type PostAdminUsersAuthConfirmData = {
|
|
12655
13081
|
/**
|
|
12656
13082
|
* Request body for the /users/auth/confirm operation on user resource
|
|
@@ -12796,14 +13222,8 @@ type PostAdminAgentsByIdPublishVersionData = {
|
|
|
12796
13222
|
*/
|
|
12797
13223
|
body: {
|
|
12798
13224
|
data: {
|
|
12799
|
-
|
|
12800
|
-
|
|
12801
|
-
version_number: string;
|
|
12802
|
-
};
|
|
12803
|
-
relationships?: {
|
|
12804
|
-
[key: string]: never;
|
|
12805
|
-
};
|
|
12806
|
-
type?: "agent";
|
|
13225
|
+
changes_summary?: string | unknown;
|
|
13226
|
+
version_number: string;
|
|
12807
13227
|
};
|
|
12808
13228
|
};
|
|
12809
13229
|
headers: {
|
|
@@ -12818,18 +13238,7 @@ type PostAdminAgentsByIdPublishVersionData = {
|
|
|
12818
13238
|
*/
|
|
12819
13239
|
id: string;
|
|
12820
13240
|
};
|
|
12821
|
-
query?:
|
|
12822
|
-
/**
|
|
12823
|
-
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
12824
|
-
*/
|
|
12825
|
-
include?: string;
|
|
12826
|
-
/**
|
|
12827
|
-
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
12828
|
-
*/
|
|
12829
|
-
fields?: {
|
|
12830
|
-
[key: string]: unknown;
|
|
12831
|
-
};
|
|
12832
|
-
};
|
|
13241
|
+
query?: never;
|
|
12833
13242
|
url: "/admin/agents/{id}/publish_version";
|
|
12834
13243
|
};
|
|
12835
13244
|
type PostAdminAgentsByIdPublishVersionErrors = {
|
|
@@ -12867,13 +13276,7 @@ type PostAdminAgentsByIdPublishVersionResponses = {
|
|
|
12867
13276
|
/**
|
|
12868
13277
|
* Success
|
|
12869
13278
|
*/
|
|
12870
|
-
201:
|
|
12871
|
-
data?: Agent;
|
|
12872
|
-
included?: Array<AgentVersion>;
|
|
12873
|
-
meta?: {
|
|
12874
|
-
[key: string]: unknown;
|
|
12875
|
-
};
|
|
12876
|
-
};
|
|
13279
|
+
201: AgentVersionType;
|
|
12877
13280
|
};
|
|
12878
13281
|
type PostAdminAgentsByIdPublishVersionResponse = PostAdminAgentsByIdPublishVersionResponses[keyof PostAdminAgentsByIdPublishVersionResponses];
|
|
12879
13282
|
type GetAdminUserProfilesData = {
|
|
@@ -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
|
+
};
|
|
24127
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
|
+
};
|
|
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: {
|
|
@@ -25087,10 +25432,13 @@ type PostAdminApiKeysData = {
|
|
|
25087
25432
|
/**
|
|
25088
25433
|
* Request body for the /api_keys operation on api_key resource
|
|
25089
25434
|
*/
|
|
25090
|
-
body
|
|
25435
|
+
body: {
|
|
25091
25436
|
data: {
|
|
25092
25437
|
attributes?: {
|
|
25093
|
-
|
|
25438
|
+
/**
|
|
25439
|
+
* Required - the application this API key belongs to
|
|
25440
|
+
*/
|
|
25441
|
+
application_id: string;
|
|
25094
25442
|
/**
|
|
25095
25443
|
* Maximum credits allowed per period (null = unlimited)
|
|
25096
25444
|
*/
|
|
@@ -26243,11 +26591,12 @@ type PostAdminPaymentMethodsData = {
|
|
|
26243
26591
|
data: {
|
|
26244
26592
|
attributes?: {
|
|
26245
26593
|
brand?: string | unknown;
|
|
26246
|
-
customer_id
|
|
26594
|
+
customer_id?: string | unknown;
|
|
26247
26595
|
exp_month?: number | unknown;
|
|
26248
26596
|
exp_year?: number | unknown;
|
|
26249
26597
|
is_default?: boolean | unknown;
|
|
26250
26598
|
last4?: string | unknown;
|
|
26599
|
+
nickname?: string | unknown;
|
|
26251
26600
|
provider?: "qorpay" | unknown;
|
|
26252
26601
|
provider_token: string;
|
|
26253
26602
|
type: "card" | "bank_account";
|
|
@@ -27407,192 +27756,103 @@ type GetAdminTenantsByTenantIdWorkspaceStatsErrors = {
|
|
|
27407
27756
|
*/
|
|
27408
27757
|
default: Errors;
|
|
27409
27758
|
};
|
|
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 = {
|
|
27759
|
+
type GetAdminTenantsByTenantIdWorkspaceStatsError = GetAdminTenantsByTenantIdWorkspaceStatsErrors[keyof GetAdminTenantsByTenantIdWorkspaceStatsErrors];
|
|
27760
|
+
type GetAdminTenantsByTenantIdWorkspaceStatsResponses = {
|
|
27567
27761
|
/**
|
|
27568
27762
|
* Success
|
|
27569
27763
|
*/
|
|
27570
|
-
|
|
27571
|
-
|
|
27572
|
-
|
|
27764
|
+
200: {
|
|
27765
|
+
/**
|
|
27766
|
+
* An array of resource objects representing a workspace_document_stats
|
|
27767
|
+
*/
|
|
27768
|
+
data?: Array<WorkspaceDocumentStats>;
|
|
27769
|
+
included?: Array<unknown>;
|
|
27573
27770
|
meta?: {
|
|
27574
27771
|
[key: string]: unknown;
|
|
27575
27772
|
};
|
|
27576
27773
|
};
|
|
27577
27774
|
};
|
|
27578
|
-
type
|
|
27579
|
-
type
|
|
27775
|
+
type GetAdminTenantsByTenantIdWorkspaceStatsResponse = GetAdminTenantsByTenantIdWorkspaceStatsResponses[keyof GetAdminTenantsByTenantIdWorkspaceStatsResponses];
|
|
27776
|
+
type PostAdminAgentsByIdDiscoverSchemaData = {
|
|
27777
|
+
/**
|
|
27778
|
+
* Request body for the /agents/:id/discover_schema operation on agent resource
|
|
27779
|
+
*/
|
|
27780
|
+
body: {
|
|
27781
|
+
data: {
|
|
27782
|
+
/**
|
|
27783
|
+
* ID of document to analyze
|
|
27784
|
+
*/
|
|
27785
|
+
document_id: string;
|
|
27786
|
+
};
|
|
27787
|
+
};
|
|
27788
|
+
headers: {
|
|
27789
|
+
/**
|
|
27790
|
+
* Application ID for authentication and routing
|
|
27791
|
+
*/
|
|
27792
|
+
"x-application-key": string;
|
|
27793
|
+
};
|
|
27794
|
+
path: {
|
|
27795
|
+
/**
|
|
27796
|
+
* Agent ID (automatically mapped from route)
|
|
27797
|
+
*/
|
|
27798
|
+
id: string;
|
|
27799
|
+
};
|
|
27800
|
+
query?: never;
|
|
27801
|
+
url: "/admin/agents/{id}/discover_schema";
|
|
27802
|
+
};
|
|
27803
|
+
type PostAdminAgentsByIdDiscoverSchemaErrors = {
|
|
27804
|
+
/**
|
|
27805
|
+
* Bad Request - Invalid input data or malformed request
|
|
27806
|
+
*/
|
|
27807
|
+
400: ErrorResponse;
|
|
27808
|
+
/**
|
|
27809
|
+
* Unauthorized - Missing or invalid authentication token
|
|
27810
|
+
*/
|
|
27811
|
+
401: ErrorResponse;
|
|
27812
|
+
/**
|
|
27813
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
27814
|
+
*/
|
|
27815
|
+
403: ErrorResponse;
|
|
27816
|
+
/**
|
|
27817
|
+
* Not Found - Resource does not exist
|
|
27818
|
+
*/
|
|
27819
|
+
404: ErrorResponse;
|
|
27820
|
+
/**
|
|
27821
|
+
* Too Many Requests - Rate limit exceeded
|
|
27822
|
+
*/
|
|
27823
|
+
429: ErrorResponse;
|
|
27824
|
+
/**
|
|
27825
|
+
* Internal Server Error - Unexpected server error
|
|
27826
|
+
*/
|
|
27827
|
+
500: ErrorResponse;
|
|
27580
27828
|
/**
|
|
27581
|
-
*
|
|
27829
|
+
* General Error
|
|
27830
|
+
*/
|
|
27831
|
+
default: Errors;
|
|
27832
|
+
};
|
|
27833
|
+
type PostAdminAgentsByIdDiscoverSchemaError = PostAdminAgentsByIdDiscoverSchemaErrors[keyof PostAdminAgentsByIdDiscoverSchemaErrors];
|
|
27834
|
+
type PostAdminAgentsByIdDiscoverSchemaResponses = {
|
|
27835
|
+
/**
|
|
27836
|
+
* Success
|
|
27837
|
+
*/
|
|
27838
|
+
201: {
|
|
27839
|
+
[key: string]: unknown;
|
|
27840
|
+
};
|
|
27841
|
+
};
|
|
27842
|
+
type PostAdminAgentsByIdDiscoverSchemaResponse = PostAdminAgentsByIdDiscoverSchemaResponses[keyof PostAdminAgentsByIdDiscoverSchemaResponses];
|
|
27843
|
+
type PostAdminAgentsByIdTestData = {
|
|
27844
|
+
/**
|
|
27845
|
+
* Request body for the /agents/:id/test operation on agent resource
|
|
27582
27846
|
*/
|
|
27583
27847
|
body: {
|
|
27584
27848
|
data: {
|
|
27585
27849
|
attributes?: {
|
|
27586
|
-
|
|
27587
|
-
corrections: Array<{
|
|
27588
|
-
[key: string]: unknown;
|
|
27589
|
-
}>;
|
|
27850
|
+
sample_input: string;
|
|
27590
27851
|
};
|
|
27591
|
-
id: string;
|
|
27592
27852
|
relationships?: {
|
|
27593
27853
|
[key: string]: never;
|
|
27594
27854
|
};
|
|
27595
|
-
type?: "
|
|
27855
|
+
type?: "agent";
|
|
27596
27856
|
};
|
|
27597
27857
|
};
|
|
27598
27858
|
headers: {
|
|
@@ -27602,6 +27862,9 @@ type PatchAdminExtractionResultsByIdCorrectionsData = {
|
|
|
27602
27862
|
"x-application-key": string;
|
|
27603
27863
|
};
|
|
27604
27864
|
path: {
|
|
27865
|
+
/**
|
|
27866
|
+
* Agent ID (from URL path parameter)
|
|
27867
|
+
*/
|
|
27605
27868
|
id: string;
|
|
27606
27869
|
};
|
|
27607
27870
|
query?: {
|
|
@@ -27616,9 +27879,9 @@ type PatchAdminExtractionResultsByIdCorrectionsData = {
|
|
|
27616
27879
|
[key: string]: unknown;
|
|
27617
27880
|
};
|
|
27618
27881
|
};
|
|
27619
|
-
url: "/admin/
|
|
27882
|
+
url: "/admin/agents/{id}/test";
|
|
27620
27883
|
};
|
|
27621
|
-
type
|
|
27884
|
+
type PostAdminAgentsByIdTestErrors = {
|
|
27622
27885
|
/**
|
|
27623
27886
|
* Bad Request - Invalid input data or malformed request
|
|
27624
27887
|
*/
|
|
@@ -27648,20 +27911,20 @@ type PatchAdminExtractionResultsByIdCorrectionsErrors = {
|
|
|
27648
27911
|
*/
|
|
27649
27912
|
default: Errors;
|
|
27650
27913
|
};
|
|
27651
|
-
type
|
|
27652
|
-
type
|
|
27914
|
+
type PostAdminAgentsByIdTestError = PostAdminAgentsByIdTestErrors[keyof PostAdminAgentsByIdTestErrors];
|
|
27915
|
+
type PostAdminAgentsByIdTestResponses = {
|
|
27653
27916
|
/**
|
|
27654
27917
|
* Success
|
|
27655
27918
|
*/
|
|
27656
|
-
|
|
27657
|
-
data?:
|
|
27658
|
-
included?: Array<
|
|
27919
|
+
201: {
|
|
27920
|
+
data?: Agent;
|
|
27921
|
+
included?: Array<AgentVersion>;
|
|
27659
27922
|
meta?: {
|
|
27660
27923
|
[key: string]: unknown;
|
|
27661
27924
|
};
|
|
27662
27925
|
};
|
|
27663
27926
|
};
|
|
27664
|
-
type
|
|
27927
|
+
type PostAdminAgentsByIdTestResponse = PostAdminAgentsByIdTestResponses[keyof PostAdminAgentsByIdTestResponses];
|
|
27665
27928
|
type DeleteAdminApiKeysByIdData = {
|
|
27666
27929
|
body?: never;
|
|
27667
27930
|
headers: {
|
|
@@ -30077,14 +30340,6 @@ type PatchAdminExtractionDocumentsByIdStatusData = {
|
|
|
30077
30340
|
body?: {
|
|
30078
30341
|
data: {
|
|
30079
30342
|
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
30343
|
/**
|
|
30089
30344
|
* Average confidence score across all extracted fields (0.0 to 1.0)
|
|
30090
30345
|
*/
|
|
@@ -35365,15 +35620,22 @@ type PostAdminPaymentsData = {
|
|
|
35365
35620
|
data: {
|
|
35366
35621
|
attributes?: {
|
|
35367
35622
|
amount: number;
|
|
35623
|
+
credits_added?: number | unknown;
|
|
35624
|
+
credits_used?: number | unknown;
|
|
35368
35625
|
currency?: string | unknown;
|
|
35369
35626
|
customer_id?: string | unknown;
|
|
35370
35627
|
description?: string | unknown;
|
|
35371
35628
|
error_message?: string | unknown;
|
|
35629
|
+
metadata?: {
|
|
35630
|
+
[key: string]: unknown;
|
|
35631
|
+
} | unknown;
|
|
35632
|
+
operation?: "subscription" | "topup" | "extraction" | "training" | "refund" | "addon" | unknown;
|
|
35372
35633
|
provider_reference?: string | unknown;
|
|
35373
35634
|
service_id?: string | unknown;
|
|
35374
35635
|
source: string;
|
|
35375
35636
|
status?: "pending" | "success" | "failed" | "refunded" | "voided" | unknown;
|
|
35376
35637
|
tenant_id?: string | unknown;
|
|
35638
|
+
transaction_type?: "credit" | "debit" | unknown;
|
|
35377
35639
|
type?: "sale" | "auth" | "refund" | "void" | unknown;
|
|
35378
35640
|
};
|
|
35379
35641
|
relationships?: {
|
|
@@ -35845,89 +36107,6 @@ type PostAdminCreditPackagesResponses = {
|
|
|
35845
36107
|
};
|
|
35846
36108
|
};
|
|
35847
36109
|
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
36110
|
type DeleteAdminFieldTemplatesByIdData = {
|
|
35932
36111
|
body?: never;
|
|
35933
36112
|
headers: {
|
|
@@ -36429,6 +36608,10 @@ type PatchAdminApplicationsByIdData = {
|
|
|
36429
36608
|
invite_only?: boolean | unknown;
|
|
36430
36609
|
logo_url?: string | unknown;
|
|
36431
36610
|
name?: string | unknown;
|
|
36611
|
+
/**
|
|
36612
|
+
* OAuth configuration for this application
|
|
36613
|
+
*/
|
|
36614
|
+
oauth?: ApplicationOauthInputUpdateType | unknown;
|
|
36432
36615
|
/**
|
|
36433
36616
|
* When true, password registration withholds JWT until email is verified
|
|
36434
36617
|
*/
|
|
@@ -36672,6 +36855,89 @@ type PatchAdminAgentsByIdSchemaVersionsByVersionIdResponses = {
|
|
|
36672
36855
|
};
|
|
36673
36856
|
};
|
|
36674
36857
|
type PatchAdminAgentsByIdSchemaVersionsByVersionIdResponse = PatchAdminAgentsByIdSchemaVersionsByVersionIdResponses[keyof PatchAdminAgentsByIdSchemaVersionsByVersionIdResponses];
|
|
36858
|
+
type PatchAdminPaymentMethodsByIdDefaultData = {
|
|
36859
|
+
/**
|
|
36860
|
+
* Request body for the /payment-methods/:id/default operation on payment_method resource
|
|
36861
|
+
*/
|
|
36862
|
+
body?: {
|
|
36863
|
+
data: {
|
|
36864
|
+
attributes?: {
|
|
36865
|
+
[key: string]: never;
|
|
36866
|
+
};
|
|
36867
|
+
id: string;
|
|
36868
|
+
relationships?: {
|
|
36869
|
+
[key: string]: never;
|
|
36870
|
+
};
|
|
36871
|
+
type?: "payment_method";
|
|
36872
|
+
};
|
|
36873
|
+
};
|
|
36874
|
+
headers: {
|
|
36875
|
+
/**
|
|
36876
|
+
* Application ID for authentication and routing
|
|
36877
|
+
*/
|
|
36878
|
+
"x-application-key": string;
|
|
36879
|
+
};
|
|
36880
|
+
path: {
|
|
36881
|
+
id: string;
|
|
36882
|
+
};
|
|
36883
|
+
query?: {
|
|
36884
|
+
/**
|
|
36885
|
+
* Include related resources in the response. Comma-separated list of relationship names to eager-load.
|
|
36886
|
+
*/
|
|
36887
|
+
include?: string;
|
|
36888
|
+
/**
|
|
36889
|
+
* JSON:API sparse fieldsets (use flat query string format: fields[type]=field1,field2)
|
|
36890
|
+
*/
|
|
36891
|
+
fields?: {
|
|
36892
|
+
[key: string]: unknown;
|
|
36893
|
+
};
|
|
36894
|
+
};
|
|
36895
|
+
url: "/admin/payment-methods/{id}/default";
|
|
36896
|
+
};
|
|
36897
|
+
type PatchAdminPaymentMethodsByIdDefaultErrors = {
|
|
36898
|
+
/**
|
|
36899
|
+
* Bad Request - Invalid input data or malformed request
|
|
36900
|
+
*/
|
|
36901
|
+
400: ErrorResponse;
|
|
36902
|
+
/**
|
|
36903
|
+
* Unauthorized - Missing or invalid authentication token
|
|
36904
|
+
*/
|
|
36905
|
+
401: ErrorResponse;
|
|
36906
|
+
/**
|
|
36907
|
+
* Forbidden - Authenticated but not authorized for this resource
|
|
36908
|
+
*/
|
|
36909
|
+
403: ErrorResponse;
|
|
36910
|
+
/**
|
|
36911
|
+
* Not Found - Resource does not exist
|
|
36912
|
+
*/
|
|
36913
|
+
404: ErrorResponse;
|
|
36914
|
+
/**
|
|
36915
|
+
* Too Many Requests - Rate limit exceeded
|
|
36916
|
+
*/
|
|
36917
|
+
429: ErrorResponse;
|
|
36918
|
+
/**
|
|
36919
|
+
* Internal Server Error - Unexpected server error
|
|
36920
|
+
*/
|
|
36921
|
+
500: ErrorResponse;
|
|
36922
|
+
/**
|
|
36923
|
+
* General Error
|
|
36924
|
+
*/
|
|
36925
|
+
default: Errors;
|
|
36926
|
+
};
|
|
36927
|
+
type PatchAdminPaymentMethodsByIdDefaultError = PatchAdminPaymentMethodsByIdDefaultErrors[keyof PatchAdminPaymentMethodsByIdDefaultErrors];
|
|
36928
|
+
type PatchAdminPaymentMethodsByIdDefaultResponses = {
|
|
36929
|
+
/**
|
|
36930
|
+
* Success
|
|
36931
|
+
*/
|
|
36932
|
+
200: {
|
|
36933
|
+
data?: PaymentMethod;
|
|
36934
|
+
included?: Array<unknown>;
|
|
36935
|
+
meta?: {
|
|
36936
|
+
[key: string]: unknown;
|
|
36937
|
+
};
|
|
36938
|
+
};
|
|
36939
|
+
};
|
|
36940
|
+
type PatchAdminPaymentMethodsByIdDefaultResponse = PatchAdminPaymentMethodsByIdDefaultResponses[keyof PatchAdminPaymentMethodsByIdDefaultResponses];
|
|
36675
36941
|
type GetAdminExtractionBatchesByIdUploadUrlsData = {
|
|
36676
36942
|
body?: never;
|
|
36677
36943
|
headers: {
|
|
@@ -37401,4 +37667,4 @@ type ApiKeyAllocateRequest = z.infer<typeof ApiKeyAllocateSchema>;
|
|
|
37401
37667
|
type DocumentBulkDeleteRequest = z.infer<typeof DocumentBulkDeleteSchema>;
|
|
37402
37668
|
type DocumentBulkReprocessRequest = z.infer<typeof DocumentBulkReprocessSchema>;
|
|
37403
37669
|
|
|
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 };
|
|
37670
|
+
export { type Account, type AccountCreditRequest, AccountCreditSchema, type AccountDebitRequest, AccountDebitSchema, type Agent, type AgentAdminCreateRequest, AgentAdminCreateSchema, type AgentTestResult, type AgentVersion, type AgentVersionComparison, type AgentVersionFieldsInputCreateType, type AgentVersionType, 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 };
|