fusio-sdk 7.0.11 → 7.0.12
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/LICENSE +1 -1
- package/README.md +837 -4
- package/dist/index.cjs +60 -21
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +472 -2
- package/dist/index.d.ts +472 -2
- package/dist/index.js +55 -17
- package/dist/index.js.map +1 -1
- package/package.json +8 -13
package/dist/index.d.cts
CHANGED
|
@@ -132,6 +132,7 @@ interface CommonMetadata extends Record<string, string> {
|
|
|
132
132
|
* This object represents a token, this an access token which was requested by a user
|
|
133
133
|
*/
|
|
134
134
|
interface BackendToken {
|
|
135
|
+
kind?: string;
|
|
135
136
|
id?: number;
|
|
136
137
|
status?: number;
|
|
137
138
|
name?: string;
|
|
@@ -150,6 +151,7 @@ interface BackendToken {
|
|
|
150
151
|
* This object represents an app to access the API on-behalf of a user
|
|
151
152
|
*/
|
|
152
153
|
interface BackendApp {
|
|
154
|
+
kind?: string;
|
|
153
155
|
id?: number;
|
|
154
156
|
userId?: number;
|
|
155
157
|
status?: number;
|
|
@@ -173,6 +175,7 @@ interface BackendApp {
|
|
|
173
175
|
* This object represents a user
|
|
174
176
|
*/
|
|
175
177
|
interface BackendUser {
|
|
178
|
+
kind?: string;
|
|
176
179
|
id?: number;
|
|
177
180
|
roleId?: number;
|
|
178
181
|
planId?: number;
|
|
@@ -194,6 +197,7 @@ interface BackendUser {
|
|
|
194
197
|
* Common error message
|
|
195
198
|
*/
|
|
196
199
|
interface CommonMessage {
|
|
200
|
+
kind?: string;
|
|
197
201
|
success?: boolean;
|
|
198
202
|
message?: string;
|
|
199
203
|
id?: string;
|
|
@@ -227,6 +231,9 @@ declare class AuthorizationTag extends TagAbstract {
|
|
|
227
231
|
* BackendAccountChangePassword automatically generated by SDKgen please do not edit this file manually
|
|
228
232
|
* {@link https://sdkgen.app}
|
|
229
233
|
*/
|
|
234
|
+
/**
|
|
235
|
+
* Payload required to update the current user's password
|
|
236
|
+
*/
|
|
230
237
|
interface BackendAccountChangePassword {
|
|
231
238
|
oldPassword?: string;
|
|
232
239
|
newPassword?: string;
|
|
@@ -238,6 +245,9 @@ interface BackendAccountChangePassword {
|
|
|
238
245
|
* {@link https://sdkgen.app}
|
|
239
246
|
*/
|
|
240
247
|
|
|
248
|
+
/**
|
|
249
|
+
* Request payload to update existing user account information
|
|
250
|
+
*/
|
|
241
251
|
interface BackendUserUpdate extends BackendUser {
|
|
242
252
|
}
|
|
243
253
|
|
|
@@ -292,6 +302,7 @@ interface BackendActionConfig extends Record<string, any> {
|
|
|
292
302
|
* This object represents the business logic which can be executed either through an operation or cronjob
|
|
293
303
|
*/
|
|
294
304
|
interface BackendAction {
|
|
305
|
+
kind?: string;
|
|
295
306
|
id?: number;
|
|
296
307
|
status?: number;
|
|
297
308
|
name?: string;
|
|
@@ -309,6 +320,7 @@ interface BackendAction {
|
|
|
309
320
|
* Base collection
|
|
310
321
|
*/
|
|
311
322
|
interface CommonCollection<T> {
|
|
323
|
+
kind?: string;
|
|
312
324
|
totalResults?: number;
|
|
313
325
|
startIndex?: number;
|
|
314
326
|
itemsPerPage?: number;
|
|
@@ -335,6 +347,7 @@ interface BackendActionCollection extends CommonCollection<BackendAction> {
|
|
|
335
347
|
* An action commit which represents a change in the action configuration
|
|
336
348
|
*/
|
|
337
349
|
interface BackendActionCommit {
|
|
350
|
+
kind?: string;
|
|
338
351
|
id?: number;
|
|
339
352
|
user?: BackendUser;
|
|
340
353
|
commitHash?: string;
|
|
@@ -358,6 +371,9 @@ interface BackendActionCommitCollection extends CommonCollection<BackendActionCo
|
|
|
358
371
|
* {@link https://sdkgen.app}
|
|
359
372
|
*/
|
|
360
373
|
|
|
374
|
+
/**
|
|
375
|
+
* Payload for creating a new action entity
|
|
376
|
+
*/
|
|
361
377
|
interface BackendActionCreate extends BackendAction {
|
|
362
378
|
}
|
|
363
379
|
|
|
@@ -416,6 +432,7 @@ interface BackendActionExecuteResponseBody extends Record<string, any> {
|
|
|
416
432
|
* Represents an action execution response
|
|
417
433
|
*/
|
|
418
434
|
interface BackendActionExecuteResponse {
|
|
435
|
+
kind?: string;
|
|
419
436
|
statusCode?: number;
|
|
420
437
|
headers?: BackendActionExecuteResponseHeaders;
|
|
421
438
|
body?: BackendActionExecuteResponseBody;
|
|
@@ -442,6 +459,7 @@ interface BackendActionIndexEntry {
|
|
|
442
459
|
* Contains all possible classes which can be used at an action as class
|
|
443
460
|
*/
|
|
444
461
|
interface BackendActionIndex {
|
|
462
|
+
kind?: string;
|
|
445
463
|
actions?: Array<BackendActionIndexEntry>;
|
|
446
464
|
}
|
|
447
465
|
|
|
@@ -450,6 +468,9 @@ interface BackendActionIndex {
|
|
|
450
468
|
* {@link https://sdkgen.app}
|
|
451
469
|
*/
|
|
452
470
|
|
|
471
|
+
/**
|
|
472
|
+
* Payload for updating an existing action entity
|
|
473
|
+
*/
|
|
453
474
|
interface BackendActionUpdate extends BackendAction {
|
|
454
475
|
}
|
|
455
476
|
|
|
@@ -678,6 +699,7 @@ declare class BackendActionTag extends TagAbstract {
|
|
|
678
699
|
* This object represents an agent
|
|
679
700
|
*/
|
|
680
701
|
interface BackendAgent {
|
|
702
|
+
kind?: string;
|
|
681
703
|
id?: number;
|
|
682
704
|
connection?: number;
|
|
683
705
|
type?: number;
|
|
@@ -710,6 +732,9 @@ interface BackendAgentCollection extends CommonCollection<BackendAgent> {
|
|
|
710
732
|
* {@link https://sdkgen.app}
|
|
711
733
|
*/
|
|
712
734
|
|
|
735
|
+
/**
|
|
736
|
+
* Payload for creating a new AI agent
|
|
737
|
+
*/
|
|
713
738
|
interface BackendAgentCreate extends BackendAgent {
|
|
714
739
|
}
|
|
715
740
|
|
|
@@ -722,6 +747,7 @@ interface BackendAgentCreate extends BackendAgent {
|
|
|
722
747
|
* This object represents an agent message
|
|
723
748
|
*/
|
|
724
749
|
interface BackendAgentMessage {
|
|
750
|
+
kind?: string;
|
|
725
751
|
id?: number;
|
|
726
752
|
chatId?: string;
|
|
727
753
|
role?: string;
|
|
@@ -785,6 +811,7 @@ interface BackendAgentTool {
|
|
|
785
811
|
* Represents a collection of available tools
|
|
786
812
|
*/
|
|
787
813
|
interface BackendAgentTools {
|
|
814
|
+
kind?: string;
|
|
788
815
|
tools?: Array<BackendAgentTool>;
|
|
789
816
|
}
|
|
790
817
|
|
|
@@ -793,6 +820,9 @@ interface BackendAgentTools {
|
|
|
793
820
|
* {@link https://sdkgen.app}
|
|
794
821
|
*/
|
|
795
822
|
|
|
823
|
+
/**
|
|
824
|
+
* Payload for updating an existing AI agent
|
|
825
|
+
*/
|
|
796
826
|
interface BackendAgentUpdate extends BackendAgent {
|
|
797
827
|
}
|
|
798
828
|
|
|
@@ -869,6 +899,9 @@ interface BackendAppCollection extends CommonCollection<BackendApp> {
|
|
|
869
899
|
* {@link https://sdkgen.app}
|
|
870
900
|
*/
|
|
871
901
|
|
|
902
|
+
/**
|
|
903
|
+
* Payload for creating a new consumer application
|
|
904
|
+
*/
|
|
872
905
|
interface BackendAppCreate extends BackendApp {
|
|
873
906
|
}
|
|
874
907
|
|
|
@@ -877,6 +910,9 @@ interface BackendAppCreate extends BackendApp {
|
|
|
877
910
|
* {@link https://sdkgen.app}
|
|
878
911
|
*/
|
|
879
912
|
|
|
913
|
+
/**
|
|
914
|
+
* Payload for updating an existing consumer application
|
|
915
|
+
*/
|
|
880
916
|
interface BackendAppUpdate extends BackendApp {
|
|
881
917
|
}
|
|
882
918
|
|
|
@@ -955,6 +991,7 @@ interface BackendAuditObject extends Record<string, any> {
|
|
|
955
991
|
* This object represents an audit which is created every time something was changed at the system
|
|
956
992
|
*/
|
|
957
993
|
interface BackendAudit {
|
|
994
|
+
kind?: string;
|
|
958
995
|
id?: number;
|
|
959
996
|
app?: BackendApp;
|
|
960
997
|
user?: BackendUser;
|
|
@@ -1063,6 +1100,9 @@ declare class BackendBackupTag extends TagAbstract {
|
|
|
1063
1100
|
* BackendBundleConfig automatically generated by SDKgen please do not edit this file manually
|
|
1064
1101
|
* {@link https://sdkgen.app}
|
|
1065
1102
|
*/
|
|
1103
|
+
/**
|
|
1104
|
+
* Configuration settings and resource specs exported within the bundle
|
|
1105
|
+
*/
|
|
1066
1106
|
interface BackendBundleConfig extends Record<string, any> {
|
|
1067
1107
|
}
|
|
1068
1108
|
|
|
@@ -1075,6 +1115,7 @@ interface BackendBundleConfig extends Record<string, any> {
|
|
|
1075
1115
|
* This object represents a bundle which contains action, schema, event, cronjob and trigger configurations from you local instance
|
|
1076
1116
|
*/
|
|
1077
1117
|
interface BackendBundle {
|
|
1118
|
+
kind?: string;
|
|
1078
1119
|
id?: number;
|
|
1079
1120
|
name?: string;
|
|
1080
1121
|
version?: string;
|
|
@@ -1101,6 +1142,9 @@ interface BackendBundleCollection extends CommonCollection<BackendBundle> {
|
|
|
1101
1142
|
* {@link https://sdkgen.app}
|
|
1102
1143
|
*/
|
|
1103
1144
|
|
|
1145
|
+
/**
|
|
1146
|
+
* Payload for creating a new configuration bundle
|
|
1147
|
+
*/
|
|
1104
1148
|
interface BackendBundleCreate extends BackendBundle {
|
|
1105
1149
|
}
|
|
1106
1150
|
|
|
@@ -1109,6 +1153,9 @@ interface BackendBundleCreate extends BackendBundle {
|
|
|
1109
1153
|
* {@link https://sdkgen.app}
|
|
1110
1154
|
*/
|
|
1111
1155
|
|
|
1156
|
+
/**
|
|
1157
|
+
* Payload for updating an existing configuration bundle
|
|
1158
|
+
*/
|
|
1112
1159
|
interface BackendBundleUpdate extends BackendBundle {
|
|
1113
1160
|
}
|
|
1114
1161
|
|
|
@@ -1176,6 +1223,7 @@ declare class BackendBundleTag extends TagAbstract {
|
|
|
1176
1223
|
* This object represents a category. Every user is assigned to a category and can only view objects which are also assigned to the same category, through this it is possible to build separate areas for external developers
|
|
1177
1224
|
*/
|
|
1178
1225
|
interface BackendCategory {
|
|
1226
|
+
kind?: string;
|
|
1179
1227
|
id?: number;
|
|
1180
1228
|
name?: string;
|
|
1181
1229
|
}
|
|
@@ -1196,6 +1244,9 @@ interface BackendCategoryCollection extends CommonCollection<BackendCategory> {
|
|
|
1196
1244
|
* {@link https://sdkgen.app}
|
|
1197
1245
|
*/
|
|
1198
1246
|
|
|
1247
|
+
/**
|
|
1248
|
+
* Payload for creating a new category
|
|
1249
|
+
*/
|
|
1199
1250
|
interface BackendCategoryCreate extends BackendCategory {
|
|
1200
1251
|
}
|
|
1201
1252
|
|
|
@@ -1204,6 +1255,9 @@ interface BackendCategoryCreate extends BackendCategory {
|
|
|
1204
1255
|
* {@link https://sdkgen.app}
|
|
1205
1256
|
*/
|
|
1206
1257
|
|
|
1258
|
+
/**
|
|
1259
|
+
* Payload for updating an existing category
|
|
1260
|
+
*/
|
|
1207
1261
|
interface BackendCategoryUpdate extends BackendCategory {
|
|
1208
1262
|
}
|
|
1209
1263
|
|
|
@@ -1263,6 +1317,7 @@ declare class BackendCategoryTag extends TagAbstract {
|
|
|
1263
1317
|
* This object represents a system configuration
|
|
1264
1318
|
*/
|
|
1265
1319
|
interface BackendConfig {
|
|
1320
|
+
kind?: string;
|
|
1266
1321
|
id?: number;
|
|
1267
1322
|
type?: number;
|
|
1268
1323
|
name?: string;
|
|
@@ -1286,6 +1341,9 @@ interface BackendConfigCollection extends CommonCollection<BackendConfig> {
|
|
|
1286
1341
|
* {@link https://sdkgen.app}
|
|
1287
1342
|
*/
|
|
1288
1343
|
|
|
1344
|
+
/**
|
|
1345
|
+
* Payload for updating a system configuration entry
|
|
1346
|
+
*/
|
|
1289
1347
|
interface BackendConfigUpdate extends BackendConfig {
|
|
1290
1348
|
}
|
|
1291
1349
|
|
|
@@ -1340,6 +1398,7 @@ interface BackendConnectionConfig extends Record<string, any> {
|
|
|
1340
1398
|
* This object represents a connection to an external system like i.e. a database, message-queue or client-sdk
|
|
1341
1399
|
*/
|
|
1342
1400
|
interface BackendConnection {
|
|
1401
|
+
kind?: string;
|
|
1343
1402
|
id?: number;
|
|
1344
1403
|
name?: string;
|
|
1345
1404
|
class?: string;
|
|
@@ -1380,6 +1439,9 @@ interface BackendConnectionCollection extends CommonCollection<BackendConnection
|
|
|
1380
1439
|
* {@link https://sdkgen.app}
|
|
1381
1440
|
*/
|
|
1382
1441
|
|
|
1442
|
+
/**
|
|
1443
|
+
* Payload for creating a new connection
|
|
1444
|
+
*/
|
|
1383
1445
|
interface BackendConnectionCreate extends BackendConnection {
|
|
1384
1446
|
}
|
|
1385
1447
|
|
|
@@ -1473,6 +1535,9 @@ interface BackendDatabaseTable {
|
|
|
1473
1535
|
* {@link https://sdkgen.app}
|
|
1474
1536
|
*/
|
|
1475
1537
|
|
|
1538
|
+
/**
|
|
1539
|
+
* A paginated collection of database table objects
|
|
1540
|
+
*/
|
|
1476
1541
|
interface BackendDatabaseTableCollection extends CommonCollection<BackendDatabaseTable> {
|
|
1477
1542
|
}
|
|
1478
1543
|
|
|
@@ -1702,6 +1767,7 @@ interface BackendConnectionIndexEntry {
|
|
|
1702
1767
|
* Contains all possible classes which can be used at an connection as class
|
|
1703
1768
|
*/
|
|
1704
1769
|
interface BackendConnectionIndex {
|
|
1770
|
+
kind?: string;
|
|
1705
1771
|
connections?: Array<BackendConnectionIndexEntry>;
|
|
1706
1772
|
}
|
|
1707
1773
|
|
|
@@ -1747,6 +1813,9 @@ declare class BackendConnectionSdkTag extends TagAbstract {
|
|
|
1747
1813
|
* {@link https://sdkgen.app}
|
|
1748
1814
|
*/
|
|
1749
1815
|
|
|
1816
|
+
/**
|
|
1817
|
+
* Payload for updating an existing connection
|
|
1818
|
+
*/
|
|
1750
1819
|
interface BackendConnectionUpdate extends BackendConnection {
|
|
1751
1820
|
}
|
|
1752
1821
|
|
|
@@ -1850,6 +1919,7 @@ interface BackendCronjobError {
|
|
|
1850
1919
|
* This object represents a cronjob which can invoke an action at a specific interval
|
|
1851
1920
|
*/
|
|
1852
1921
|
interface BackendCronjob {
|
|
1922
|
+
kind?: string;
|
|
1853
1923
|
id?: number;
|
|
1854
1924
|
name?: string;
|
|
1855
1925
|
cron?: string;
|
|
@@ -1876,6 +1946,9 @@ interface BackendCronjobCollection extends CommonCollection<BackendCronjob> {
|
|
|
1876
1946
|
* {@link https://sdkgen.app}
|
|
1877
1947
|
*/
|
|
1878
1948
|
|
|
1949
|
+
/**
|
|
1950
|
+
* Payload for creating a new cronjob
|
|
1951
|
+
*/
|
|
1879
1952
|
interface BackendCronjobCreate extends BackendCronjob {
|
|
1880
1953
|
}
|
|
1881
1954
|
|
|
@@ -1884,6 +1957,9 @@ interface BackendCronjobCreate extends BackendCronjob {
|
|
|
1884
1957
|
* {@link https://sdkgen.app}
|
|
1885
1958
|
*/
|
|
1886
1959
|
|
|
1960
|
+
/**
|
|
1961
|
+
* Payload for updating an existing cronjob
|
|
1962
|
+
*/
|
|
1887
1963
|
interface BackendCronjobUpdate extends BackendCronjob {
|
|
1888
1964
|
}
|
|
1889
1965
|
|
|
@@ -1939,6 +2015,9 @@ declare class BackendCronjobTag extends TagAbstract {
|
|
|
1939
2015
|
* BackendStatisticChartSeries automatically generated by SDKgen please do not edit this file manually
|
|
1940
2016
|
* {@link https://sdkgen.app}
|
|
1941
2017
|
*/
|
|
2018
|
+
/**
|
|
2019
|
+
* A single data line or bar series for a statistic chart
|
|
2020
|
+
*/
|
|
1942
2021
|
interface BackendStatisticChartSeries {
|
|
1943
2022
|
name?: string;
|
|
1944
2023
|
data?: Array<number>;
|
|
@@ -1949,6 +2028,9 @@ interface BackendStatisticChartSeries {
|
|
|
1949
2028
|
* {@link https://sdkgen.app}
|
|
1950
2029
|
*/
|
|
1951
2030
|
|
|
2031
|
+
/**
|
|
2032
|
+
* Represents dataset structures formatted for rendering statistic charts
|
|
2033
|
+
*/
|
|
1952
2034
|
interface BackendStatisticChart {
|
|
1953
2035
|
labels?: Array<string>;
|
|
1954
2036
|
series?: Array<BackendStatisticChartSeries>;
|
|
@@ -1963,6 +2045,7 @@ interface BackendStatisticChart {
|
|
|
1963
2045
|
* Represents an object containing all widget data for the dashboard
|
|
1964
2046
|
*/
|
|
1965
2047
|
interface BackendDashboard {
|
|
2048
|
+
kind?: string;
|
|
1966
2049
|
errorsPerOperation?: BackendStatisticChart;
|
|
1967
2050
|
incomingRequests?: BackendStatisticChart;
|
|
1968
2051
|
incomingTransactions?: BackendStatisticChart;
|
|
@@ -1999,6 +2082,7 @@ declare class BackendDashboardTag extends TagAbstract {
|
|
|
1999
2082
|
* This object represents an event which can be triggered by an action
|
|
2000
2083
|
*/
|
|
2001
2084
|
interface BackendEvent {
|
|
2085
|
+
kind?: string;
|
|
2002
2086
|
id?: number;
|
|
2003
2087
|
name?: string;
|
|
2004
2088
|
description?: string;
|
|
@@ -2022,6 +2106,9 @@ interface BackendEventCollection extends CommonCollection<BackendEvent> {
|
|
|
2022
2106
|
* {@link https://sdkgen.app}
|
|
2023
2107
|
*/
|
|
2024
2108
|
|
|
2109
|
+
/**
|
|
2110
|
+
* Payload for creating a new event entity
|
|
2111
|
+
*/
|
|
2025
2112
|
interface BackendEventCreate extends BackendEvent {
|
|
2026
2113
|
}
|
|
2027
2114
|
|
|
@@ -2030,6 +2117,9 @@ interface BackendEventCreate extends BackendEvent {
|
|
|
2030
2117
|
* {@link https://sdkgen.app}
|
|
2031
2118
|
*/
|
|
2032
2119
|
|
|
2120
|
+
/**
|
|
2121
|
+
* Payload for updating an existing event entity
|
|
2122
|
+
*/
|
|
2033
2123
|
interface BackendEventUpdate extends BackendEvent {
|
|
2034
2124
|
}
|
|
2035
2125
|
|
|
@@ -2090,6 +2180,7 @@ declare class BackendEventTag extends TagAbstract {
|
|
|
2090
2180
|
* This object represents a firewall rule which blocks specific IP addresses
|
|
2091
2181
|
*/
|
|
2092
2182
|
interface BackendFirewall {
|
|
2183
|
+
kind?: string;
|
|
2093
2184
|
id?: number;
|
|
2094
2185
|
name?: string;
|
|
2095
2186
|
type?: number;
|
|
@@ -2114,6 +2205,9 @@ interface BackendFirewallCollection extends CommonCollection<BackendFirewall> {
|
|
|
2114
2205
|
* {@link https://sdkgen.app}
|
|
2115
2206
|
*/
|
|
2116
2207
|
|
|
2208
|
+
/**
|
|
2209
|
+
* Payload for creating a new firewall rule
|
|
2210
|
+
*/
|
|
2117
2211
|
interface BackendFirewallCreate extends BackendFirewall {
|
|
2118
2212
|
}
|
|
2119
2213
|
|
|
@@ -2122,6 +2216,9 @@ interface BackendFirewallCreate extends BackendFirewall {
|
|
|
2122
2216
|
* {@link https://sdkgen.app}
|
|
2123
2217
|
*/
|
|
2124
2218
|
|
|
2219
|
+
/**
|
|
2220
|
+
* Payload for updating an existing firewall rule
|
|
2221
|
+
*/
|
|
2125
2222
|
interface BackendFirewallUpdate extends BackendFirewall {
|
|
2126
2223
|
}
|
|
2127
2224
|
|
|
@@ -2182,6 +2279,7 @@ declare class BackendFirewallTag extends TagAbstract {
|
|
|
2182
2279
|
* This object represents a form which helps to dynamically generate a form at a frontend app
|
|
2183
2280
|
*/
|
|
2184
2281
|
interface BackendForm {
|
|
2282
|
+
kind?: string;
|
|
2185
2283
|
id?: number;
|
|
2186
2284
|
status?: number;
|
|
2187
2285
|
name?: string;
|
|
@@ -2206,6 +2304,9 @@ interface BackendFormCollection extends CommonCollection<BackendForm> {
|
|
|
2206
2304
|
* {@link https://sdkgen.app}
|
|
2207
2305
|
*/
|
|
2208
2306
|
|
|
2307
|
+
/**
|
|
2308
|
+
* Payload for creating a new form definition
|
|
2309
|
+
*/
|
|
2209
2310
|
interface BackendFormCreate extends BackendForm {
|
|
2210
2311
|
}
|
|
2211
2312
|
|
|
@@ -2214,6 +2315,9 @@ interface BackendFormCreate extends BackendForm {
|
|
|
2214
2315
|
* {@link https://sdkgen.app}
|
|
2215
2316
|
*/
|
|
2216
2317
|
|
|
2318
|
+
/**
|
|
2319
|
+
* Payload for updating an existing form definition
|
|
2320
|
+
*/
|
|
2217
2321
|
interface BackendFormUpdate extends BackendForm {
|
|
2218
2322
|
}
|
|
2219
2323
|
|
|
@@ -2293,6 +2397,9 @@ interface BackendGeneratorIndexProviders {
|
|
|
2293
2397
|
* BackendGeneratorProviderConfig automatically generated by SDKgen please do not edit this file manually
|
|
2294
2398
|
* {@link https://sdkgen.app}
|
|
2295
2399
|
*/
|
|
2400
|
+
/**
|
|
2401
|
+
* Arbitrary configuration map for the generator provider
|
|
2402
|
+
*/
|
|
2296
2403
|
interface BackendGeneratorProviderConfig extends Record<string, any> {
|
|
2297
2404
|
}
|
|
2298
2405
|
|
|
@@ -2301,6 +2408,9 @@ interface BackendGeneratorProviderConfig extends Record<string, any> {
|
|
|
2301
2408
|
* {@link https://sdkgen.app}
|
|
2302
2409
|
*/
|
|
2303
2410
|
|
|
2411
|
+
/**
|
|
2412
|
+
* Configuration object used to invoke a schema/operation generator
|
|
2413
|
+
*/
|
|
2304
2414
|
interface BackendGeneratorProvider {
|
|
2305
2415
|
path?: string;
|
|
2306
2416
|
scopes?: Array<string>;
|
|
@@ -2327,6 +2437,7 @@ interface BackendSchemaSource extends Record<string, any> {
|
|
|
2327
2437
|
* This object represents a schema to describe a JSON payload
|
|
2328
2438
|
*/
|
|
2329
2439
|
interface BackendSchema {
|
|
2440
|
+
kind?: string;
|
|
2330
2441
|
id?: number;
|
|
2331
2442
|
status?: number;
|
|
2332
2443
|
name?: string;
|
|
@@ -2338,6 +2449,9 @@ interface BackendSchema {
|
|
|
2338
2449
|
* BackendOperationSchema automatically generated by SDKgen please do not edit this file manually
|
|
2339
2450
|
* {@link https://sdkgen.app}
|
|
2340
2451
|
*/
|
|
2452
|
+
/**
|
|
2453
|
+
* Defines primitive type constraints for parameter schema definitions
|
|
2454
|
+
*/
|
|
2341
2455
|
interface BackendOperationSchema {
|
|
2342
2456
|
description?: string;
|
|
2343
2457
|
type?: string;
|
|
@@ -2350,6 +2464,9 @@ interface BackendOperationSchema {
|
|
|
2350
2464
|
* {@link https://sdkgen.app}
|
|
2351
2465
|
*/
|
|
2352
2466
|
|
|
2467
|
+
/**
|
|
2468
|
+
* Map of path or query parameters accepted by the operation
|
|
2469
|
+
*/
|
|
2353
2470
|
interface BackendOperationParameters extends Record<string, BackendOperationSchema> {
|
|
2354
2471
|
}
|
|
2355
2472
|
|
|
@@ -2357,6 +2474,9 @@ interface BackendOperationParameters extends Record<string, BackendOperationSche
|
|
|
2357
2474
|
* BackendOperationThrows automatically generated by SDKgen please do not edit this file manually
|
|
2358
2475
|
* {@link https://sdkgen.app}
|
|
2359
2476
|
*/
|
|
2477
|
+
/**
|
|
2478
|
+
* Map of HTTP error status codes to target schema names
|
|
2479
|
+
*/
|
|
2360
2480
|
interface BackendOperationThrows extends Record<string, string> {
|
|
2361
2481
|
}
|
|
2362
2482
|
|
|
@@ -2369,6 +2489,7 @@ interface BackendOperationThrows extends Record<string, string> {
|
|
|
2369
2489
|
* This object represents an operation, an operation invokes an action in case a specific HTTP method and path was requested. It defines also schema information about the request and response payload
|
|
2370
2490
|
*/
|
|
2371
2491
|
interface BackendOperation {
|
|
2492
|
+
kind?: string;
|
|
2372
2493
|
id?: number;
|
|
2373
2494
|
status?: number;
|
|
2374
2495
|
active?: boolean;
|
|
@@ -2394,6 +2515,9 @@ interface BackendOperation {
|
|
|
2394
2515
|
* {@link https://sdkgen.app}
|
|
2395
2516
|
*/
|
|
2396
2517
|
|
|
2518
|
+
/**
|
|
2519
|
+
* Represents a preview changelog of entities created or updated by a generator run
|
|
2520
|
+
*/
|
|
2397
2521
|
interface BackendGeneratorProviderChangelog {
|
|
2398
2522
|
schemas?: Array<BackendSchema>;
|
|
2399
2523
|
actions?: Array<BackendAction>;
|
|
@@ -2444,6 +2568,9 @@ declare class BackendGeneratorTag extends TagAbstract {
|
|
|
2444
2568
|
* BackendIdentityConfig automatically generated by SDKgen please do not edit this file manually
|
|
2445
2569
|
* {@link https://sdkgen.app}
|
|
2446
2570
|
*/
|
|
2571
|
+
/**
|
|
2572
|
+
* Identity provider configuration containing key-value parameters
|
|
2573
|
+
*/
|
|
2447
2574
|
interface BackendIdentityConfig extends Record<string, any> {
|
|
2448
2575
|
}
|
|
2449
2576
|
|
|
@@ -2456,6 +2583,7 @@ interface BackendIdentityConfig extends Record<string, any> {
|
|
|
2456
2583
|
* This object represents an identity which allows to authenticate with a remote identity provider
|
|
2457
2584
|
*/
|
|
2458
2585
|
interface BackendIdentity {
|
|
2586
|
+
kind?: string;
|
|
2459
2587
|
id?: number;
|
|
2460
2588
|
appId?: number;
|
|
2461
2589
|
roleId?: number;
|
|
@@ -2482,6 +2610,9 @@ interface BackendIdentityCollection extends CommonCollection<BackendIdentity> {
|
|
|
2482
2610
|
* {@link https://sdkgen.app}
|
|
2483
2611
|
*/
|
|
2484
2612
|
|
|
2613
|
+
/**
|
|
2614
|
+
* Payload for creating a new identity provider entity
|
|
2615
|
+
*/
|
|
2485
2616
|
interface BackendIdentityCreate extends BackendIdentity {
|
|
2486
2617
|
}
|
|
2487
2618
|
|
|
@@ -2506,6 +2637,7 @@ interface BackendIdentityIndexEntry {
|
|
|
2506
2637
|
* Contains all possible classes which can be used at an identity as class
|
|
2507
2638
|
*/
|
|
2508
2639
|
interface BackendIdentityIndex {
|
|
2640
|
+
kind?: string;
|
|
2509
2641
|
providers?: Array<BackendIdentityIndexEntry>;
|
|
2510
2642
|
}
|
|
2511
2643
|
|
|
@@ -2514,6 +2646,9 @@ interface BackendIdentityIndex {
|
|
|
2514
2646
|
* {@link https://sdkgen.app}
|
|
2515
2647
|
*/
|
|
2516
2648
|
|
|
2649
|
+
/**
|
|
2650
|
+
* Payload for updating an existing identity provider entity
|
|
2651
|
+
*/
|
|
2517
2652
|
interface BackendIdentityUpdate extends BackendIdentity {
|
|
2518
2653
|
}
|
|
2519
2654
|
|
|
@@ -2585,7 +2720,11 @@ declare class BackendIdentityTag extends TagAbstract {
|
|
|
2585
2720
|
* BackendLogError automatically generated by SDKgen please do not edit this file manually
|
|
2586
2721
|
* {@link https://sdkgen.app}
|
|
2587
2722
|
*/
|
|
2723
|
+
/**
|
|
2724
|
+
* Represents an error logged during a specific HTTP request
|
|
2725
|
+
*/
|
|
2588
2726
|
interface BackendLogError {
|
|
2727
|
+
kind?: string;
|
|
2589
2728
|
id?: number;
|
|
2590
2729
|
logId?: number;
|
|
2591
2730
|
message?: string;
|
|
@@ -2604,6 +2743,7 @@ interface BackendLogError {
|
|
|
2604
2743
|
* This object represents a log entry. Every HTTP requests to the system generates such a log entry.
|
|
2605
2744
|
*/
|
|
2606
2745
|
interface BackendLog {
|
|
2746
|
+
kind?: string;
|
|
2607
2747
|
id?: number;
|
|
2608
2748
|
ip?: string;
|
|
2609
2749
|
userAgent?: string;
|
|
@@ -3026,6 +3166,9 @@ interface BackendOperationCollection extends CommonCollection<BackendOperation>
|
|
|
3026
3166
|
* {@link https://sdkgen.app}
|
|
3027
3167
|
*/
|
|
3028
3168
|
|
|
3169
|
+
/**
|
|
3170
|
+
* Payload for creating a new operation entity
|
|
3171
|
+
*/
|
|
3029
3172
|
interface BackendOperationCreate extends BackendOperation {
|
|
3030
3173
|
}
|
|
3031
3174
|
|
|
@@ -3034,6 +3177,9 @@ interface BackendOperationCreate extends BackendOperation {
|
|
|
3034
3177
|
* {@link https://sdkgen.app}
|
|
3035
3178
|
*/
|
|
3036
3179
|
|
|
3180
|
+
/**
|
|
3181
|
+
* Payload for updating an existing operation entity
|
|
3182
|
+
*/
|
|
3037
3183
|
interface BackendOperationUpdate extends BackendOperation {
|
|
3038
3184
|
}
|
|
3039
3185
|
|
|
@@ -3094,6 +3240,7 @@ declare class BackendOperationTag extends TagAbstract {
|
|
|
3094
3240
|
* This object represents a page at the developer portal
|
|
3095
3241
|
*/
|
|
3096
3242
|
interface BackendPage {
|
|
3243
|
+
kind?: string;
|
|
3097
3244
|
id?: number;
|
|
3098
3245
|
status?: number;
|
|
3099
3246
|
title?: string;
|
|
@@ -3118,6 +3265,9 @@ interface BackendPageCollection extends CommonCollection<BackendPage> {
|
|
|
3118
3265
|
* {@link https://sdkgen.app}
|
|
3119
3266
|
*/
|
|
3120
3267
|
|
|
3268
|
+
/**
|
|
3269
|
+
* Payload for creating a new portal page
|
|
3270
|
+
*/
|
|
3121
3271
|
interface BackendPageCreate extends BackendPage {
|
|
3122
3272
|
}
|
|
3123
3273
|
|
|
@@ -3126,6 +3276,9 @@ interface BackendPageCreate extends BackendPage {
|
|
|
3126
3276
|
* {@link https://sdkgen.app}
|
|
3127
3277
|
*/
|
|
3128
3278
|
|
|
3279
|
+
/**
|
|
3280
|
+
* Payload for updating an existing portal page
|
|
3281
|
+
*/
|
|
3129
3282
|
interface BackendPageUpdate extends BackendPage {
|
|
3130
3283
|
}
|
|
3131
3284
|
|
|
@@ -3186,6 +3339,7 @@ declare class BackendPageTag extends TagAbstract {
|
|
|
3186
3339
|
* This object represents a plan, a plan allows users to obtain points or in general subscribe to your app
|
|
3187
3340
|
*/
|
|
3188
3341
|
interface BackendPlan {
|
|
3342
|
+
kind?: string;
|
|
3189
3343
|
id?: number;
|
|
3190
3344
|
name?: string;
|
|
3191
3345
|
description?: string;
|
|
@@ -3213,6 +3367,9 @@ interface BackendPlanCollection extends CommonCollection<BackendPlan> {
|
|
|
3213
3367
|
* {@link https://sdkgen.app}
|
|
3214
3368
|
*/
|
|
3215
3369
|
|
|
3370
|
+
/**
|
|
3371
|
+
* Payload for creating a new subscription or point plan
|
|
3372
|
+
*/
|
|
3216
3373
|
interface BackendPlanCreate extends BackendPlan {
|
|
3217
3374
|
}
|
|
3218
3375
|
|
|
@@ -3221,6 +3378,9 @@ interface BackendPlanCreate extends BackendPlan {
|
|
|
3221
3378
|
* {@link https://sdkgen.app}
|
|
3222
3379
|
*/
|
|
3223
3380
|
|
|
3381
|
+
/**
|
|
3382
|
+
* Payload for updating an existing plan definition
|
|
3383
|
+
*/
|
|
3224
3384
|
interface BackendPlanUpdate extends BackendPlan {
|
|
3225
3385
|
}
|
|
3226
3386
|
|
|
@@ -3297,6 +3457,7 @@ interface BackendRateAllocation {
|
|
|
3297
3457
|
* This object represents a rate limitation, which allows to limit the requests which a user can send
|
|
3298
3458
|
*/
|
|
3299
3459
|
interface BackendRate {
|
|
3460
|
+
kind?: string;
|
|
3300
3461
|
id?: number;
|
|
3301
3462
|
priority?: number;
|
|
3302
3463
|
name?: string;
|
|
@@ -3322,6 +3483,9 @@ interface BackendRateCollection extends CommonCollection<BackendRate> {
|
|
|
3322
3483
|
* {@link https://sdkgen.app}
|
|
3323
3484
|
*/
|
|
3324
3485
|
|
|
3486
|
+
/**
|
|
3487
|
+
* Payload for creating a new rate limit policy
|
|
3488
|
+
*/
|
|
3325
3489
|
interface BackendRateCreate extends BackendRate {
|
|
3326
3490
|
}
|
|
3327
3491
|
|
|
@@ -3330,6 +3494,9 @@ interface BackendRateCreate extends BackendRate {
|
|
|
3330
3494
|
* {@link https://sdkgen.app}
|
|
3331
3495
|
*/
|
|
3332
3496
|
|
|
3497
|
+
/**
|
|
3498
|
+
* Payload for updating an existing rate limit policy
|
|
3499
|
+
*/
|
|
3333
3500
|
interface BackendRateUpdate extends BackendRate {
|
|
3334
3501
|
}
|
|
3335
3502
|
|
|
@@ -3389,6 +3556,7 @@ declare class BackendRateTag extends TagAbstract {
|
|
|
3389
3556
|
* This object represents a role, every user is assigned to a role and all scopes of the role are automatically attached to the user
|
|
3390
3557
|
*/
|
|
3391
3558
|
interface BackendRole {
|
|
3559
|
+
kind?: string;
|
|
3392
3560
|
id?: number;
|
|
3393
3561
|
categoryId?: number;
|
|
3394
3562
|
name?: string;
|
|
@@ -3411,6 +3579,9 @@ interface BackendRoleCollection extends CommonCollection<BackendRole> {
|
|
|
3411
3579
|
* {@link https://sdkgen.app}
|
|
3412
3580
|
*/
|
|
3413
3581
|
|
|
3582
|
+
/**
|
|
3583
|
+
* Payload for creating a new user role entity
|
|
3584
|
+
*/
|
|
3414
3585
|
interface BackendRoleCreate extends BackendRole {
|
|
3415
3586
|
}
|
|
3416
3587
|
|
|
@@ -3419,6 +3590,9 @@ interface BackendRoleCreate extends BackendRole {
|
|
|
3419
3590
|
* {@link https://sdkgen.app}
|
|
3420
3591
|
*/
|
|
3421
3592
|
|
|
3593
|
+
/**
|
|
3594
|
+
* Payload for updating an existing user role entity
|
|
3595
|
+
*/
|
|
3422
3596
|
interface BackendRoleUpdate extends BackendRole {
|
|
3423
3597
|
}
|
|
3424
3598
|
|
|
@@ -3490,6 +3664,7 @@ interface BackendSchemaCollection extends CommonCollection<BackendSchema> {
|
|
|
3490
3664
|
* A schema commit which represents a change in the schema source
|
|
3491
3665
|
*/
|
|
3492
3666
|
interface BackendSchemaCommit {
|
|
3667
|
+
kind?: string;
|
|
3493
3668
|
id?: number;
|
|
3494
3669
|
user?: BackendUser;
|
|
3495
3670
|
commitHash?: string;
|
|
@@ -3513,6 +3688,9 @@ interface BackendSchemaCommitCollection extends CommonCollection<BackendSchemaCo
|
|
|
3513
3688
|
* {@link https://sdkgen.app}
|
|
3514
3689
|
*/
|
|
3515
3690
|
|
|
3691
|
+
/**
|
|
3692
|
+
* Payload for creating a new schema definition
|
|
3693
|
+
*/
|
|
3516
3694
|
interface BackendSchemaCreate extends BackendSchema {
|
|
3517
3695
|
}
|
|
3518
3696
|
|
|
@@ -3520,6 +3698,9 @@ interface BackendSchemaCreate extends BackendSchema {
|
|
|
3520
3698
|
* BackendSchemaPreviewResponse automatically generated by SDKgen please do not edit this file manually
|
|
3521
3699
|
* {@link https://sdkgen.app}
|
|
3522
3700
|
*/
|
|
3701
|
+
/**
|
|
3702
|
+
* Response container for a generated schema code preview
|
|
3703
|
+
*/
|
|
3523
3704
|
interface BackendSchemaPreviewResponse {
|
|
3524
3705
|
preview?: string;
|
|
3525
3706
|
}
|
|
@@ -3529,6 +3710,9 @@ interface BackendSchemaPreviewResponse {
|
|
|
3529
3710
|
* {@link https://sdkgen.app}
|
|
3530
3711
|
*/
|
|
3531
3712
|
|
|
3713
|
+
/**
|
|
3714
|
+
* Payload for updating an existing schema definition
|
|
3715
|
+
*/
|
|
3532
3716
|
interface BackendSchemaUpdate extends BackendSchema {
|
|
3533
3717
|
}
|
|
3534
3718
|
|
|
@@ -3600,6 +3784,9 @@ declare class BackendSchemaTag extends TagAbstract {
|
|
|
3600
3784
|
* BackendScopeOperation automatically generated by SDKgen please do not edit this file manually
|
|
3601
3785
|
* {@link https://sdkgen.app}
|
|
3602
3786
|
*/
|
|
3787
|
+
/**
|
|
3788
|
+
* Mapping defining access permissions for a specific operation within a scope
|
|
3789
|
+
*/
|
|
3603
3790
|
interface BackendScopeOperation {
|
|
3604
3791
|
operationId?: number;
|
|
3605
3792
|
allow?: boolean;
|
|
@@ -3614,6 +3801,7 @@ interface BackendScopeOperation {
|
|
|
3614
3801
|
* This object represents a scope. A scope is assigned to a user and is required to access operations
|
|
3615
3802
|
*/
|
|
3616
3803
|
interface BackendScope {
|
|
3804
|
+
kind?: string;
|
|
3617
3805
|
id?: number;
|
|
3618
3806
|
name?: string;
|
|
3619
3807
|
description?: string;
|
|
@@ -3625,6 +3813,9 @@ interface BackendScope {
|
|
|
3625
3813
|
* BackendScopeCategoryScope automatically generated by SDKgen please do not edit this file manually
|
|
3626
3814
|
* {@link https://sdkgen.app}
|
|
3627
3815
|
*/
|
|
3816
|
+
/**
|
|
3817
|
+
* Simplified scope representation within a category view
|
|
3818
|
+
*/
|
|
3628
3819
|
interface BackendScopeCategoryScope {
|
|
3629
3820
|
id?: number;
|
|
3630
3821
|
name?: string;
|
|
@@ -3636,6 +3827,9 @@ interface BackendScopeCategoryScope {
|
|
|
3636
3827
|
* {@link https://sdkgen.app}
|
|
3637
3828
|
*/
|
|
3638
3829
|
|
|
3830
|
+
/**
|
|
3831
|
+
* Represents a functional grouping of scopes
|
|
3832
|
+
*/
|
|
3639
3833
|
interface BackendScopeCategory {
|
|
3640
3834
|
id?: number;
|
|
3641
3835
|
name?: string;
|
|
@@ -3647,6 +3841,9 @@ interface BackendScopeCategory {
|
|
|
3647
3841
|
* {@link https://sdkgen.app}
|
|
3648
3842
|
*/
|
|
3649
3843
|
|
|
3844
|
+
/**
|
|
3845
|
+
* Container for grouping available scopes into logical categories
|
|
3846
|
+
*/
|
|
3650
3847
|
interface BackendScopeCategories {
|
|
3651
3848
|
categories?: Array<BackendScopeCategory>;
|
|
3652
3849
|
}
|
|
@@ -3667,6 +3864,9 @@ interface BackendScopeCollection extends CommonCollection<BackendScope> {
|
|
|
3667
3864
|
* {@link https://sdkgen.app}
|
|
3668
3865
|
*/
|
|
3669
3866
|
|
|
3867
|
+
/**
|
|
3868
|
+
* Payload for creating a new scope entity
|
|
3869
|
+
*/
|
|
3670
3870
|
interface BackendScopeCreate extends BackendScope {
|
|
3671
3871
|
}
|
|
3672
3872
|
|
|
@@ -3675,6 +3875,9 @@ interface BackendScopeCreate extends BackendScope {
|
|
|
3675
3875
|
* {@link https://sdkgen.app}
|
|
3676
3876
|
*/
|
|
3677
3877
|
|
|
3878
|
+
/**
|
|
3879
|
+
* Payload for updating an existing scope entity
|
|
3880
|
+
*/
|
|
3678
3881
|
interface BackendScopeUpdate extends BackendScope {
|
|
3679
3882
|
}
|
|
3680
3883
|
|
|
@@ -3738,6 +3941,9 @@ declare class BackendScopeTag extends TagAbstract {
|
|
|
3738
3941
|
* BackendSdkGenerate automatically generated by SDKgen please do not edit this file manually
|
|
3739
3942
|
* {@link https://sdkgen.app}
|
|
3740
3943
|
*/
|
|
3944
|
+
/**
|
|
3945
|
+
* Payload defining target format and configuration for triggering an SDK generation run
|
|
3946
|
+
*/
|
|
3741
3947
|
interface BackendSdkGenerate {
|
|
3742
3948
|
format?: string;
|
|
3743
3949
|
config?: string;
|
|
@@ -3747,7 +3953,11 @@ interface BackendSdkGenerate {
|
|
|
3747
3953
|
* BackendSdkMessage automatically generated by SDKgen please do not edit this file manually
|
|
3748
3954
|
* {@link https://sdkgen.app}
|
|
3749
3955
|
*/
|
|
3956
|
+
/**
|
|
3957
|
+
* Response structure detailing the outcome of an SDK generation job
|
|
3958
|
+
*/
|
|
3750
3959
|
interface BackendSdkMessage {
|
|
3960
|
+
kind?: string;
|
|
3751
3961
|
success?: boolean;
|
|
3752
3962
|
message?: string;
|
|
3753
3963
|
link?: string;
|
|
@@ -3768,7 +3978,11 @@ interface BackendSdkTypes extends Record<string, string> {
|
|
|
3768
3978
|
* {@link https://sdkgen.app}
|
|
3769
3979
|
*/
|
|
3770
3980
|
|
|
3981
|
+
/**
|
|
3982
|
+
* Container listing target SDK languages or formats available for generator execution
|
|
3983
|
+
*/
|
|
3771
3984
|
interface BackendSdkResponse {
|
|
3985
|
+
kind?: string;
|
|
3772
3986
|
types?: BackendSdkTypes;
|
|
3773
3987
|
}
|
|
3774
3988
|
|
|
@@ -3800,17 +4014,23 @@ declare class BackendSdkTag extends TagAbstract {
|
|
|
3800
4014
|
* BackendSpecificationChangelog automatically generated by SDKgen please do not edit this file manually
|
|
3801
4015
|
* {@link https://sdkgen.app}
|
|
3802
4016
|
*/
|
|
4017
|
+
/**
|
|
4018
|
+
* Represents structural changelog differences between specification versions
|
|
4019
|
+
*/
|
|
3803
4020
|
interface BackendSpecificationChangelog {
|
|
3804
4021
|
master?: any;
|
|
3805
4022
|
tag?: any;
|
|
3806
4023
|
version?: string;
|
|
3807
|
-
changelog?:
|
|
4024
|
+
changelog?: string;
|
|
3808
4025
|
}
|
|
3809
4026
|
|
|
3810
4027
|
/**
|
|
3811
4028
|
* BackendSpecificationGet automatically generated by SDKgen please do not edit this file manually
|
|
3812
4029
|
* {@link https://sdkgen.app}
|
|
3813
4030
|
*/
|
|
4031
|
+
/**
|
|
4032
|
+
* Container delivering the compiled API specification schema object
|
|
4033
|
+
*/
|
|
3814
4034
|
interface BackendSpecificationGet {
|
|
3815
4035
|
spec?: any;
|
|
3816
4036
|
}
|
|
@@ -3819,6 +4039,9 @@ interface BackendSpecificationGet {
|
|
|
3819
4039
|
* BackendSpecificationPublish automatically generated by SDKgen please do not edit this file manually
|
|
3820
4040
|
* {@link https://sdkgen.app}
|
|
3821
4041
|
*/
|
|
4042
|
+
/**
|
|
4043
|
+
* Payload defining configuration parameters for publishing an API specification export
|
|
4044
|
+
*/
|
|
3822
4045
|
interface BackendSpecificationPublish {
|
|
3823
4046
|
name?: string;
|
|
3824
4047
|
filterName?: string;
|
|
@@ -3869,6 +4092,9 @@ declare class BackendSpecificationTag extends TagAbstract {
|
|
|
3869
4092
|
* BackendStatisticCount automatically generated by SDKgen please do not edit this file manually
|
|
3870
4093
|
* {@link https://sdkgen.app}
|
|
3871
4094
|
*/
|
|
4095
|
+
/**
|
|
4096
|
+
* Represents an aggregated count metric over a specific timeframe
|
|
4097
|
+
*/
|
|
3872
4098
|
interface BackendStatisticCount {
|
|
3873
4099
|
count?: number;
|
|
3874
4100
|
from?: string;
|
|
@@ -4027,6 +4253,7 @@ declare class BackendStatisticTag extends TagAbstract {
|
|
|
4027
4253
|
* This object represents a taxonomy. A taxonomy helps to internally organize operations, actions and other entities
|
|
4028
4254
|
*/
|
|
4029
4255
|
interface BackendTaxonomy {
|
|
4256
|
+
kind?: string;
|
|
4030
4257
|
id?: number;
|
|
4031
4258
|
parentId?: number;
|
|
4032
4259
|
name?: string;
|
|
@@ -4048,6 +4275,9 @@ interface BackendTaxonomyCollection extends CommonCollection<BackendTaxonomy> {
|
|
|
4048
4275
|
* {@link https://sdkgen.app}
|
|
4049
4276
|
*/
|
|
4050
4277
|
|
|
4278
|
+
/**
|
|
4279
|
+
* Payload for creating a new taxonomy organization node
|
|
4280
|
+
*/
|
|
4051
4281
|
interface BackendTaxonomyCreate extends BackendTaxonomy {
|
|
4052
4282
|
}
|
|
4053
4283
|
|
|
@@ -4072,6 +4302,9 @@ interface BackendTaxonomyMove {
|
|
|
4072
4302
|
* {@link https://sdkgen.app}
|
|
4073
4303
|
*/
|
|
4074
4304
|
|
|
4305
|
+
/**
|
|
4306
|
+
* Payload for updating an existing taxonomy node
|
|
4307
|
+
*/
|
|
4075
4308
|
interface BackendTaxonomyUpdate extends BackendTaxonomy {
|
|
4076
4309
|
}
|
|
4077
4310
|
|
|
@@ -4160,6 +4393,9 @@ declare class BackendTenantTag extends TagAbstract {
|
|
|
4160
4393
|
* {@link https://sdkgen.app}
|
|
4161
4394
|
*/
|
|
4162
4395
|
|
|
4396
|
+
/**
|
|
4397
|
+
* Configuration parameters for executing a test run
|
|
4398
|
+
*/
|
|
4163
4399
|
interface BackendTestConfig extends BackendActionExecuteRequest {
|
|
4164
4400
|
}
|
|
4165
4401
|
|
|
@@ -4172,6 +4408,7 @@ interface BackendTestConfig extends BackendActionExecuteRequest {
|
|
|
4172
4408
|
* This object represents a test. A test helps to verify that all operations work as expected
|
|
4173
4409
|
*/
|
|
4174
4410
|
interface BackendTest {
|
|
4411
|
+
kind?: string;
|
|
4175
4412
|
id?: number;
|
|
4176
4413
|
status?: number;
|
|
4177
4414
|
operationName?: string;
|
|
@@ -4282,6 +4519,7 @@ declare class BackendTokenTag extends TagAbstract {
|
|
|
4282
4519
|
* This object represents a transaction. The system generates a transaction in case a payment was successfully executed
|
|
4283
4520
|
*/
|
|
4284
4521
|
interface BackendTransaction {
|
|
4522
|
+
kind?: string;
|
|
4285
4523
|
id?: number;
|
|
4286
4524
|
userId?: number;
|
|
4287
4525
|
planId?: number;
|
|
@@ -4332,6 +4570,9 @@ declare class BackendTransactionTag extends TagAbstract {
|
|
|
4332
4570
|
* BackendTrashData automatically generated by SDKgen please do not edit this file manually
|
|
4333
4571
|
* {@link https://sdkgen.app}
|
|
4334
4572
|
*/
|
|
4573
|
+
/**
|
|
4574
|
+
* This object represents a deleted item stored in the trash bin
|
|
4575
|
+
*/
|
|
4335
4576
|
interface BackendTrashData {
|
|
4336
4577
|
id?: number;
|
|
4337
4578
|
status?: number;
|
|
@@ -4353,6 +4594,9 @@ interface BackendTrashDataCollection extends CommonCollection<BackendTrashData>
|
|
|
4353
4594
|
* BackendTrashRestore automatically generated by SDKgen please do not edit this file manually
|
|
4354
4595
|
* {@link https://sdkgen.app}
|
|
4355
4596
|
*/
|
|
4597
|
+
/**
|
|
4598
|
+
* Request payload to restore an item from the trash bin
|
|
4599
|
+
*/
|
|
4356
4600
|
interface BackendTrashRestore {
|
|
4357
4601
|
id?: number;
|
|
4358
4602
|
}
|
|
@@ -4361,6 +4605,9 @@ interface BackendTrashRestore {
|
|
|
4361
4605
|
* BackendTrashTypes automatically generated by SDKgen please do not edit this file manually
|
|
4362
4606
|
* {@link https://sdkgen.app}
|
|
4363
4607
|
*/
|
|
4608
|
+
/**
|
|
4609
|
+
* List of available entity types that can be restored from the trash
|
|
4610
|
+
*/
|
|
4364
4611
|
interface BackendTrashTypes {
|
|
4365
4612
|
types?: Array<string>;
|
|
4366
4613
|
}
|
|
@@ -4406,6 +4653,7 @@ declare class BackendTrashTag extends TagAbstract {
|
|
|
4406
4653
|
* This object represents a trigger which can invoke an action on a custom event
|
|
4407
4654
|
*/
|
|
4408
4655
|
interface BackendTrigger {
|
|
4656
|
+
kind?: string;
|
|
4409
4657
|
id?: number;
|
|
4410
4658
|
name?: string;
|
|
4411
4659
|
event?: string;
|
|
@@ -4429,6 +4677,9 @@ interface BackendTriggerCollection extends CommonCollection<BackendTrigger> {
|
|
|
4429
4677
|
* {@link https://sdkgen.app}
|
|
4430
4678
|
*/
|
|
4431
4679
|
|
|
4680
|
+
/**
|
|
4681
|
+
* Request payload to create a new trigger
|
|
4682
|
+
*/
|
|
4432
4683
|
interface BackendTriggerCreate extends BackendTrigger {
|
|
4433
4684
|
}
|
|
4434
4685
|
|
|
@@ -4437,6 +4688,9 @@ interface BackendTriggerCreate extends BackendTrigger {
|
|
|
4437
4688
|
* {@link https://sdkgen.app}
|
|
4438
4689
|
*/
|
|
4439
4690
|
|
|
4691
|
+
/**
|
|
4692
|
+
* Request payload to update an existing trigger
|
|
4693
|
+
*/
|
|
4440
4694
|
interface BackendTriggerUpdate extends BackendTrigger {
|
|
4441
4695
|
}
|
|
4442
4696
|
|
|
@@ -4504,6 +4758,9 @@ interface BackendUserCollection extends CommonCollection<BackendUser> {
|
|
|
4504
4758
|
* {@link https://sdkgen.app}
|
|
4505
4759
|
*/
|
|
4506
4760
|
|
|
4761
|
+
/**
|
|
4762
|
+
* Request payload to register or create a new user account
|
|
4763
|
+
*/
|
|
4507
4764
|
interface BackendUserCreate extends BackendUser {
|
|
4508
4765
|
password?: string;
|
|
4509
4766
|
}
|
|
@@ -4568,6 +4825,9 @@ declare class BackendUserTag extends TagAbstract {
|
|
|
4568
4825
|
* BackendWebhookResponse automatically generated by SDKgen please do not edit this file manually
|
|
4569
4826
|
* {@link https://sdkgen.app}
|
|
4570
4827
|
*/
|
|
4828
|
+
/**
|
|
4829
|
+
* Log record representing an execution attempt and delivery response for a webhook target
|
|
4830
|
+
*/
|
|
4571
4831
|
interface BackendWebhookResponse {
|
|
4572
4832
|
id?: number;
|
|
4573
4833
|
status?: number;
|
|
@@ -4586,6 +4846,7 @@ interface BackendWebhookResponse {
|
|
|
4586
4846
|
* This object represents a webhook, a webhook is called in case a specific event was triggered
|
|
4587
4847
|
*/
|
|
4588
4848
|
interface BackendWebhook {
|
|
4849
|
+
kind?: string;
|
|
4589
4850
|
id?: number;
|
|
4590
4851
|
eventId?: number;
|
|
4591
4852
|
userId?: number;
|
|
@@ -4610,6 +4871,9 @@ interface BackendWebhookCollection extends CommonCollection<BackendWebhook> {
|
|
|
4610
4871
|
* {@link https://sdkgen.app}
|
|
4611
4872
|
*/
|
|
4612
4873
|
|
|
4874
|
+
/**
|
|
4875
|
+
* Request payload to create a new webhook subscription
|
|
4876
|
+
*/
|
|
4613
4877
|
interface BackendWebhookCreate extends BackendWebhook {
|
|
4614
4878
|
}
|
|
4615
4879
|
|
|
@@ -4618,6 +4882,9 @@ interface BackendWebhookCreate extends BackendWebhook {
|
|
|
4618
4882
|
* {@link https://sdkgen.app}
|
|
4619
4883
|
*/
|
|
4620
4884
|
|
|
4885
|
+
/**
|
|
4886
|
+
* Request payload to update an existing webhook subscription
|
|
4887
|
+
*/
|
|
4621
4888
|
interface BackendWebhookUpdate extends BackendWebhook {
|
|
4622
4889
|
}
|
|
4623
4890
|
|
|
@@ -4720,7 +4987,11 @@ declare class BackendTag extends TagAbstract {
|
|
|
4720
4987
|
* {@link https://sdkgen.app}
|
|
4721
4988
|
*/
|
|
4722
4989
|
|
|
4990
|
+
/**
|
|
4991
|
+
* Permission scope defining access rights to API endpoints
|
|
4992
|
+
*/
|
|
4723
4993
|
interface ConsumerScope {
|
|
4994
|
+
kind?: string;
|
|
4724
4995
|
id?: number;
|
|
4725
4996
|
name?: string;
|
|
4726
4997
|
description?: string;
|
|
@@ -4732,6 +5003,9 @@ interface ConsumerScope {
|
|
|
4732
5003
|
* {@link https://sdkgen.app}
|
|
4733
5004
|
*/
|
|
4734
5005
|
|
|
5006
|
+
/**
|
|
5007
|
+
* Metadata for an OAuth authorization request screen
|
|
5008
|
+
*/
|
|
4735
5009
|
interface ConsumerAuthorizeMeta {
|
|
4736
5010
|
name?: string;
|
|
4737
5011
|
url?: string;
|
|
@@ -4742,6 +5016,9 @@ interface ConsumerAuthorizeMeta {
|
|
|
4742
5016
|
* ConsumerAuthorizeRequest automatically generated by SDKgen please do not edit this file manually
|
|
4743
5017
|
* {@link https://sdkgen.app}
|
|
4744
5018
|
*/
|
|
5019
|
+
/**
|
|
5020
|
+
* Parameters sent to initiate an OAuth authorization decision
|
|
5021
|
+
*/
|
|
4745
5022
|
interface ConsumerAuthorizeRequest {
|
|
4746
5023
|
responseType?: string;
|
|
4747
5024
|
clientId?: string;
|
|
@@ -4755,6 +5032,9 @@ interface ConsumerAuthorizeRequest {
|
|
|
4755
5032
|
* ConsumerAuthorizeResponse automatically generated by SDKgen please do not edit this file manually
|
|
4756
5033
|
* {@link https://sdkgen.app}
|
|
4757
5034
|
*/
|
|
5035
|
+
/**
|
|
5036
|
+
* Result of an OAuth authorization decision
|
|
5037
|
+
*/
|
|
4758
5038
|
interface ConsumerAuthorizeResponse {
|
|
4759
5039
|
type?: string;
|
|
4760
5040
|
code?: string;
|
|
@@ -4767,6 +5047,9 @@ interface ConsumerAuthorizeResponse {
|
|
|
4767
5047
|
* ConsumerUserPlan automatically generated by SDKgen please do not edit this file manually
|
|
4768
5048
|
* {@link https://sdkgen.app}
|
|
4769
5049
|
*/
|
|
5050
|
+
/**
|
|
5051
|
+
* Active plan summary associated with a user
|
|
5052
|
+
*/
|
|
4770
5053
|
interface ConsumerUserPlan {
|
|
4771
5054
|
id?: number;
|
|
4772
5055
|
name?: string;
|
|
@@ -4780,7 +5063,11 @@ interface ConsumerUserPlan {
|
|
|
4780
5063
|
* {@link https://sdkgen.app}
|
|
4781
5064
|
*/
|
|
4782
5065
|
|
|
5066
|
+
/**
|
|
5067
|
+
* User profile and subscription status details
|
|
5068
|
+
*/
|
|
4783
5069
|
interface ConsumerUserAccount {
|
|
5070
|
+
kind?: string;
|
|
4784
5071
|
id?: number;
|
|
4785
5072
|
planId?: number;
|
|
4786
5073
|
status?: number;
|
|
@@ -4797,6 +5084,9 @@ interface ConsumerUserAccount {
|
|
|
4797
5084
|
* ConsumerUserActivate automatically generated by SDKgen please do not edit this file manually
|
|
4798
5085
|
* {@link https://sdkgen.app}
|
|
4799
5086
|
*/
|
|
5087
|
+
/**
|
|
5088
|
+
* Payload used to activate a user account via token
|
|
5089
|
+
*/
|
|
4800
5090
|
interface ConsumerUserActivate {
|
|
4801
5091
|
token?: string;
|
|
4802
5092
|
}
|
|
@@ -4805,6 +5095,9 @@ interface ConsumerUserActivate {
|
|
|
4805
5095
|
* ConsumerUserEmail automatically generated by SDKgen please do not edit this file manually
|
|
4806
5096
|
* {@link https://sdkgen.app}
|
|
4807
5097
|
*/
|
|
5098
|
+
/**
|
|
5099
|
+
* Payload used to initiate account recovery or email requests
|
|
5100
|
+
*/
|
|
4808
5101
|
interface ConsumerUserEmail {
|
|
4809
5102
|
email?: string;
|
|
4810
5103
|
captcha?: string;
|
|
@@ -4814,6 +5107,9 @@ interface ConsumerUserEmail {
|
|
|
4814
5107
|
* ConsumerUserJWT automatically generated by SDKgen please do not edit this file manually
|
|
4815
5108
|
* {@link https://sdkgen.app}
|
|
4816
5109
|
*/
|
|
5110
|
+
/**
|
|
5111
|
+
* JWT authentication response containing access credentials
|
|
5112
|
+
*/
|
|
4817
5113
|
interface ConsumerUserJWT {
|
|
4818
5114
|
token?: string;
|
|
4819
5115
|
expires_in?: number;
|
|
@@ -4825,6 +5121,9 @@ interface ConsumerUserJWT {
|
|
|
4825
5121
|
* ConsumerUserLogin automatically generated by SDKgen please do not edit this file manually
|
|
4826
5122
|
* {@link https://sdkgen.app}
|
|
4827
5123
|
*/
|
|
5124
|
+
/**
|
|
5125
|
+
* Credentials payload for user login
|
|
5126
|
+
*/
|
|
4828
5127
|
interface ConsumerUserLogin {
|
|
4829
5128
|
username?: string;
|
|
4830
5129
|
password?: string;
|
|
@@ -4835,6 +5134,9 @@ interface ConsumerUserLogin {
|
|
|
4835
5134
|
* ConsumerUserPasswordReset automatically generated by SDKgen please do not edit this file manually
|
|
4836
5135
|
* {@link https://sdkgen.app}
|
|
4837
5136
|
*/
|
|
5137
|
+
/**
|
|
5138
|
+
* Payload for completing a password reset
|
|
5139
|
+
*/
|
|
4838
5140
|
interface ConsumerUserPasswordReset {
|
|
4839
5141
|
token?: string;
|
|
4840
5142
|
newPassword?: string;
|
|
@@ -4844,6 +5146,9 @@ interface ConsumerUserPasswordReset {
|
|
|
4844
5146
|
* ConsumerUserRefresh automatically generated by SDKgen please do not edit this file manually
|
|
4845
5147
|
* {@link https://sdkgen.app}
|
|
4846
5148
|
*/
|
|
5149
|
+
/**
|
|
5150
|
+
* Payload to request a refreshed authentication token
|
|
5151
|
+
*/
|
|
4847
5152
|
interface ConsumerUserRefresh {
|
|
4848
5153
|
refresh_token?: string;
|
|
4849
5154
|
}
|
|
@@ -4852,6 +5157,9 @@ interface ConsumerUserRefresh {
|
|
|
4852
5157
|
* ConsumerUserRegister automatically generated by SDKgen please do not edit this file manually
|
|
4853
5158
|
* {@link https://sdkgen.app}
|
|
4854
5159
|
*/
|
|
5160
|
+
/**
|
|
5161
|
+
* Payload for registering a new user account
|
|
5162
|
+
*/
|
|
4855
5163
|
interface ConsumerUserRegister {
|
|
4856
5164
|
name?: string;
|
|
4857
5165
|
email?: string;
|
|
@@ -4963,6 +5271,7 @@ declare class ConsumerAccountTag extends TagAbstract {
|
|
|
4963
5271
|
* This object represents an agent
|
|
4964
5272
|
*/
|
|
4965
5273
|
interface ConsumerAgent {
|
|
5274
|
+
kind?: string;
|
|
4966
5275
|
id?: number;
|
|
4967
5276
|
name?: string;
|
|
4968
5277
|
description?: string;
|
|
@@ -4988,6 +5297,7 @@ interface ConsumerAgentCollection extends CommonCollection<ConsumerAgent> {
|
|
|
4988
5297
|
* This object represents an agent message
|
|
4989
5298
|
*/
|
|
4990
5299
|
interface ConsumerAgentMessage {
|
|
5300
|
+
kind?: string;
|
|
4991
5301
|
id?: number;
|
|
4992
5302
|
chatId?: string;
|
|
4993
5303
|
role?: string;
|
|
@@ -5060,7 +5370,11 @@ declare class ConsumerAgentTag extends TagAbstract {
|
|
|
5060
5370
|
* {@link https://sdkgen.app}
|
|
5061
5371
|
*/
|
|
5062
5372
|
|
|
5373
|
+
/**
|
|
5374
|
+
* Represents a consumer application registered by a user
|
|
5375
|
+
*/
|
|
5063
5376
|
interface ConsumerApp {
|
|
5377
|
+
kind?: string;
|
|
5064
5378
|
id?: number;
|
|
5065
5379
|
userId?: number;
|
|
5066
5380
|
status?: number;
|
|
@@ -5078,6 +5392,9 @@ interface ConsumerApp {
|
|
|
5078
5392
|
* {@link https://sdkgen.app}
|
|
5079
5393
|
*/
|
|
5080
5394
|
|
|
5395
|
+
/**
|
|
5396
|
+
* Collection of consumer applications
|
|
5397
|
+
*/
|
|
5081
5398
|
interface ConsumerAppCollection extends CommonCollection<ConsumerApp> {
|
|
5082
5399
|
}
|
|
5083
5400
|
|
|
@@ -5085,6 +5402,9 @@ interface ConsumerAppCollection extends CommonCollection<ConsumerApp> {
|
|
|
5085
5402
|
* ConsumerAppCreate automatically generated by SDKgen please do not edit this file manually
|
|
5086
5403
|
* {@link https://sdkgen.app}
|
|
5087
5404
|
*/
|
|
5405
|
+
/**
|
|
5406
|
+
* Payload for creating a new consumer application
|
|
5407
|
+
*/
|
|
5088
5408
|
interface ConsumerAppCreate {
|
|
5089
5409
|
name?: string;
|
|
5090
5410
|
url?: string;
|
|
@@ -5095,6 +5415,9 @@ interface ConsumerAppCreate {
|
|
|
5095
5415
|
* ConsumerAppUpdate automatically generated by SDKgen please do not edit this file manually
|
|
5096
5416
|
* {@link https://sdkgen.app}
|
|
5097
5417
|
*/
|
|
5418
|
+
/**
|
|
5419
|
+
* Payload for updating an existing consumer application
|
|
5420
|
+
*/
|
|
5098
5421
|
interface ConsumerAppUpdate {
|
|
5099
5422
|
name?: string;
|
|
5100
5423
|
url?: string;
|
|
@@ -5154,7 +5477,11 @@ declare class ConsumerAppTag extends TagAbstract {
|
|
|
5154
5477
|
* {@link https://sdkgen.app}
|
|
5155
5478
|
*/
|
|
5156
5479
|
|
|
5480
|
+
/**
|
|
5481
|
+
* Represents an event trigger definition within the platform
|
|
5482
|
+
*/
|
|
5157
5483
|
interface ConsumerEvent {
|
|
5484
|
+
kind?: string;
|
|
5158
5485
|
id?: number;
|
|
5159
5486
|
name?: string;
|
|
5160
5487
|
description?: string;
|
|
@@ -5166,6 +5493,9 @@ interface ConsumerEvent {
|
|
|
5166
5493
|
* {@link https://sdkgen.app}
|
|
5167
5494
|
*/
|
|
5168
5495
|
|
|
5496
|
+
/**
|
|
5497
|
+
* Collection of event definitions
|
|
5498
|
+
*/
|
|
5169
5499
|
interface ConsumerEventCollection extends CommonCollection<ConsumerEvent> {
|
|
5170
5500
|
}
|
|
5171
5501
|
|
|
@@ -5198,7 +5528,11 @@ declare class ConsumerEventTag extends TagAbstract {
|
|
|
5198
5528
|
* {@link https://sdkgen.app}
|
|
5199
5529
|
*/
|
|
5200
5530
|
|
|
5531
|
+
/**
|
|
5532
|
+
* Dynamic form configuration entity
|
|
5533
|
+
*/
|
|
5201
5534
|
interface ConsumerForm {
|
|
5535
|
+
kind?: string;
|
|
5202
5536
|
id?: number;
|
|
5203
5537
|
name?: string;
|
|
5204
5538
|
action?: string;
|
|
@@ -5213,6 +5547,9 @@ interface ConsumerForm {
|
|
|
5213
5547
|
* {@link https://sdkgen.app}
|
|
5214
5548
|
*/
|
|
5215
5549
|
|
|
5550
|
+
/**
|
|
5551
|
+
* Collection of dynamic form definitions
|
|
5552
|
+
*/
|
|
5216
5553
|
interface ConsumerFormCollection extends CommonCollection<ConsumerForm> {
|
|
5217
5554
|
}
|
|
5218
5555
|
|
|
@@ -5245,7 +5582,11 @@ declare class ConsumerFormTag extends TagAbstract {
|
|
|
5245
5582
|
* {@link https://sdkgen.app}
|
|
5246
5583
|
*/
|
|
5247
5584
|
|
|
5585
|
+
/**
|
|
5586
|
+
* Represents user authorization granted to a consumer application
|
|
5587
|
+
*/
|
|
5248
5588
|
interface ConsumerGrant {
|
|
5589
|
+
kind?: string;
|
|
5249
5590
|
id?: number;
|
|
5250
5591
|
app?: ConsumerApp;
|
|
5251
5592
|
createDate?: string;
|
|
@@ -5256,6 +5597,9 @@ interface ConsumerGrant {
|
|
|
5256
5597
|
* {@link https://sdkgen.app}
|
|
5257
5598
|
*/
|
|
5258
5599
|
|
|
5600
|
+
/**
|
|
5601
|
+
* Collection of user authorization grant records
|
|
5602
|
+
*/
|
|
5259
5603
|
interface ConsumerGrantCollection extends CommonCollection<ConsumerGrant> {
|
|
5260
5604
|
}
|
|
5261
5605
|
|
|
@@ -5287,7 +5631,11 @@ declare class ConsumerGrantTag extends TagAbstract {
|
|
|
5287
5631
|
* ConsumerIdentity automatically generated by SDKgen please do not edit this file manually
|
|
5288
5632
|
* {@link https://sdkgen.app}
|
|
5289
5633
|
*/
|
|
5634
|
+
/**
|
|
5635
|
+
* Identity provider configuration for single sign-on
|
|
5636
|
+
*/
|
|
5290
5637
|
interface ConsumerIdentity {
|
|
5638
|
+
kind?: string;
|
|
5291
5639
|
id?: number;
|
|
5292
5640
|
name?: string;
|
|
5293
5641
|
icon?: string;
|
|
@@ -5299,6 +5647,9 @@ interface ConsumerIdentity {
|
|
|
5299
5647
|
* {@link https://sdkgen.app}
|
|
5300
5648
|
*/
|
|
5301
5649
|
|
|
5650
|
+
/**
|
|
5651
|
+
* Collection of third-party identity providers
|
|
5652
|
+
*/
|
|
5302
5653
|
interface ConsumerIdentityCollection extends CommonCollection<ConsumerIdentity> {
|
|
5303
5654
|
}
|
|
5304
5655
|
|
|
@@ -5338,7 +5689,11 @@ declare class ConsumerIdentityTag extends TagAbstract {
|
|
|
5338
5689
|
* ConsumerLog automatically generated by SDKgen please do not edit this file manually
|
|
5339
5690
|
* {@link https://sdkgen.app}
|
|
5340
5691
|
*/
|
|
5692
|
+
/**
|
|
5693
|
+
* Access log entry recording an incoming HTTP request
|
|
5694
|
+
*/
|
|
5341
5695
|
interface ConsumerLog {
|
|
5696
|
+
kind?: string;
|
|
5342
5697
|
id?: number;
|
|
5343
5698
|
appId?: number;
|
|
5344
5699
|
ip?: string;
|
|
@@ -5355,6 +5710,9 @@ interface ConsumerLog {
|
|
|
5355
5710
|
* {@link https://sdkgen.app}
|
|
5356
5711
|
*/
|
|
5357
5712
|
|
|
5713
|
+
/**
|
|
5714
|
+
* Collection of access log records
|
|
5715
|
+
*/
|
|
5358
5716
|
interface ConsumerLogCollection extends CommonCollection<ConsumerLog> {
|
|
5359
5717
|
}
|
|
5360
5718
|
|
|
@@ -5387,7 +5745,11 @@ declare class ConsumerLogTag extends TagAbstract {
|
|
|
5387
5745
|
* {@link https://sdkgen.app}
|
|
5388
5746
|
*/
|
|
5389
5747
|
|
|
5748
|
+
/**
|
|
5749
|
+
* Content page definition for developer portal documentation
|
|
5750
|
+
*/
|
|
5390
5751
|
interface ConsumerPage {
|
|
5752
|
+
kind?: string;
|
|
5391
5753
|
id?: number;
|
|
5392
5754
|
title?: string;
|
|
5393
5755
|
slug?: string;
|
|
@@ -5400,6 +5762,9 @@ interface ConsumerPage {
|
|
|
5400
5762
|
* {@link https://sdkgen.app}
|
|
5401
5763
|
*/
|
|
5402
5764
|
|
|
5765
|
+
/**
|
|
5766
|
+
* Collection of content page entries
|
|
5767
|
+
*/
|
|
5403
5768
|
interface ConsumerPageCollection extends CommonCollection<ConsumerPage> {
|
|
5404
5769
|
}
|
|
5405
5770
|
|
|
@@ -5431,6 +5796,9 @@ declare class ConsumerPageTag extends TagAbstract {
|
|
|
5431
5796
|
* ConsumerPaymentCheckoutRequest automatically generated by SDKgen please do not edit this file manually
|
|
5432
5797
|
* {@link https://sdkgen.app}
|
|
5433
5798
|
*/
|
|
5799
|
+
/**
|
|
5800
|
+
* Request payload to initiate a checkout flow for a plan
|
|
5801
|
+
*/
|
|
5434
5802
|
interface ConsumerPaymentCheckoutRequest {
|
|
5435
5803
|
planId?: number;
|
|
5436
5804
|
returnUrl?: string;
|
|
@@ -5440,6 +5808,9 @@ interface ConsumerPaymentCheckoutRequest {
|
|
|
5440
5808
|
* ConsumerPaymentCheckoutResponse automatically generated by SDKgen please do not edit this file manually
|
|
5441
5809
|
* {@link https://sdkgen.app}
|
|
5442
5810
|
*/
|
|
5811
|
+
/**
|
|
5812
|
+
* Response payload containing the payment provider checkout URI
|
|
5813
|
+
*/
|
|
5443
5814
|
interface ConsumerPaymentCheckoutResponse {
|
|
5444
5815
|
approvalUrl?: string;
|
|
5445
5816
|
}
|
|
@@ -5448,6 +5819,9 @@ interface ConsumerPaymentCheckoutResponse {
|
|
|
5448
5819
|
* ConsumerPaymentPortalRequest automatically generated by SDKgen please do not edit this file manually
|
|
5449
5820
|
* {@link https://sdkgen.app}
|
|
5450
5821
|
*/
|
|
5822
|
+
/**
|
|
5823
|
+
* Request payload to launch the billing management portal
|
|
5824
|
+
*/
|
|
5451
5825
|
interface ConsumerPaymentPortalRequest {
|
|
5452
5826
|
returnUrl?: string;
|
|
5453
5827
|
}
|
|
@@ -5456,6 +5830,9 @@ interface ConsumerPaymentPortalRequest {
|
|
|
5456
5830
|
* ConsumerPaymentPortalResponse automatically generated by SDKgen please do not edit this file manually
|
|
5457
5831
|
* {@link https://sdkgen.app}
|
|
5458
5832
|
*/
|
|
5833
|
+
/**
|
|
5834
|
+
* Response payload containing the customer portal portal link
|
|
5835
|
+
*/
|
|
5459
5836
|
interface ConsumerPaymentPortalResponse {
|
|
5460
5837
|
redirectUrl?: string;
|
|
5461
5838
|
}
|
|
@@ -5489,7 +5866,11 @@ declare class ConsumerPaymentTag extends TagAbstract {
|
|
|
5489
5866
|
* {@link https://sdkgen.app}
|
|
5490
5867
|
*/
|
|
5491
5868
|
|
|
5869
|
+
/**
|
|
5870
|
+
* Subscription or monetization plan for API consumers
|
|
5871
|
+
*/
|
|
5492
5872
|
interface ConsumerPlan {
|
|
5873
|
+
kind?: string;
|
|
5493
5874
|
id?: number;
|
|
5494
5875
|
name?: string;
|
|
5495
5876
|
description?: string;
|
|
@@ -5504,6 +5885,9 @@ interface ConsumerPlan {
|
|
|
5504
5885
|
* {@link https://sdkgen.app}
|
|
5505
5886
|
*/
|
|
5506
5887
|
|
|
5888
|
+
/**
|
|
5889
|
+
* Collection of subscription plans
|
|
5890
|
+
*/
|
|
5507
5891
|
interface ConsumerPlanCollection extends CommonCollection<ConsumerPlan> {
|
|
5508
5892
|
}
|
|
5509
5893
|
|
|
@@ -5535,6 +5919,9 @@ declare class ConsumerPlanTag extends TagAbstract {
|
|
|
5535
5919
|
* ConsumerScopeCategoryScope automatically generated by SDKgen please do not edit this file manually
|
|
5536
5920
|
* {@link https://sdkgen.app}
|
|
5537
5921
|
*/
|
|
5922
|
+
/**
|
|
5923
|
+
* Scope entry within a specific category group
|
|
5924
|
+
*/
|
|
5538
5925
|
interface ConsumerScopeCategoryScope {
|
|
5539
5926
|
id?: number;
|
|
5540
5927
|
name?: string;
|
|
@@ -5546,6 +5933,9 @@ interface ConsumerScopeCategoryScope {
|
|
|
5546
5933
|
* {@link https://sdkgen.app}
|
|
5547
5934
|
*/
|
|
5548
5935
|
|
|
5936
|
+
/**
|
|
5937
|
+
* Category grouping related API scopes together
|
|
5938
|
+
*/
|
|
5549
5939
|
interface ConsumerScopeCategory {
|
|
5550
5940
|
id?: number;
|
|
5551
5941
|
name?: string;
|
|
@@ -5557,7 +5947,11 @@ interface ConsumerScopeCategory {
|
|
|
5557
5947
|
* {@link https://sdkgen.app}
|
|
5558
5948
|
*/
|
|
5559
5949
|
|
|
5950
|
+
/**
|
|
5951
|
+
* Grouped list of scope categories for user authorization forms
|
|
5952
|
+
*/
|
|
5560
5953
|
interface ConsumerScopeCategories {
|
|
5954
|
+
kind?: string;
|
|
5561
5955
|
categories?: Array<ConsumerScopeCategory>;
|
|
5562
5956
|
}
|
|
5563
5957
|
|
|
@@ -5566,6 +5960,9 @@ interface ConsumerScopeCategories {
|
|
|
5566
5960
|
* {@link https://sdkgen.app}
|
|
5567
5961
|
*/
|
|
5568
5962
|
|
|
5963
|
+
/**
|
|
5964
|
+
* Collection of API permission scopes
|
|
5965
|
+
*/
|
|
5569
5966
|
interface ConsumerScopeCollection extends CommonCollection<ConsumerScope> {
|
|
5570
5967
|
}
|
|
5571
5968
|
|
|
@@ -5597,7 +5994,11 @@ declare class ConsumerScopeTag extends TagAbstract {
|
|
|
5597
5994
|
* ConsumerToken automatically generated by SDKgen please do not edit this file manually
|
|
5598
5995
|
* {@link https://sdkgen.app}
|
|
5599
5996
|
*/
|
|
5997
|
+
/**
|
|
5998
|
+
* Personal access token entity generated for consumer access
|
|
5999
|
+
*/
|
|
5600
6000
|
interface ConsumerToken {
|
|
6001
|
+
kind?: string;
|
|
5601
6002
|
id?: number;
|
|
5602
6003
|
status?: number;
|
|
5603
6004
|
name?: string;
|
|
@@ -5611,6 +6012,9 @@ interface ConsumerToken {
|
|
|
5611
6012
|
* ConsumerTokenAccessToken automatically generated by SDKgen please do not edit this file manually
|
|
5612
6013
|
* {@link https://sdkgen.app}
|
|
5613
6014
|
*/
|
|
6015
|
+
/**
|
|
6016
|
+
* OAuth 2.0 access token response object
|
|
6017
|
+
*/
|
|
5614
6018
|
interface ConsumerTokenAccessToken {
|
|
5615
6019
|
access_token?: string;
|
|
5616
6020
|
token_type?: string;
|
|
@@ -5624,6 +6028,9 @@ interface ConsumerTokenAccessToken {
|
|
|
5624
6028
|
* {@link https://sdkgen.app}
|
|
5625
6029
|
*/
|
|
5626
6030
|
|
|
6031
|
+
/**
|
|
6032
|
+
* Collection of personal access tokens
|
|
6033
|
+
*/
|
|
5627
6034
|
interface ConsumerTokenCollection extends CommonCollection<ConsumerToken> {
|
|
5628
6035
|
}
|
|
5629
6036
|
|
|
@@ -5631,6 +6038,9 @@ interface ConsumerTokenCollection extends CommonCollection<ConsumerToken> {
|
|
|
5631
6038
|
* ConsumerTokenCreate automatically generated by SDKgen please do not edit this file manually
|
|
5632
6039
|
* {@link https://sdkgen.app}
|
|
5633
6040
|
*/
|
|
6041
|
+
/**
|
|
6042
|
+
* Payload for issuing a new personal access token
|
|
6043
|
+
*/
|
|
5634
6044
|
interface ConsumerTokenCreate {
|
|
5635
6045
|
name?: string;
|
|
5636
6046
|
scopes?: Array<string>;
|
|
@@ -5641,6 +6051,9 @@ interface ConsumerTokenCreate {
|
|
|
5641
6051
|
* ConsumerTokenUpdate automatically generated by SDKgen please do not edit this file manually
|
|
5642
6052
|
* {@link https://sdkgen.app}
|
|
5643
6053
|
*/
|
|
6054
|
+
/**
|
|
6055
|
+
* Payload for updating an existing personal access token
|
|
6056
|
+
*/
|
|
5644
6057
|
interface ConsumerTokenUpdate {
|
|
5645
6058
|
name?: string;
|
|
5646
6059
|
expire?: string;
|
|
@@ -5699,7 +6112,11 @@ declare class ConsumerTokenTag extends TagAbstract {
|
|
|
5699
6112
|
* {@link https://sdkgen.app}
|
|
5700
6113
|
*/
|
|
5701
6114
|
|
|
6115
|
+
/**
|
|
6116
|
+
* Billing transaction record for quota or subscription purchases
|
|
6117
|
+
*/
|
|
5702
6118
|
interface ConsumerTransaction {
|
|
6119
|
+
kind?: string;
|
|
5703
6120
|
id?: number;
|
|
5704
6121
|
userId?: number;
|
|
5705
6122
|
planId?: number;
|
|
@@ -5717,6 +6134,9 @@ interface ConsumerTransaction {
|
|
|
5717
6134
|
* {@link https://sdkgen.app}
|
|
5718
6135
|
*/
|
|
5719
6136
|
|
|
6137
|
+
/**
|
|
6138
|
+
* Collection of transaction records
|
|
6139
|
+
*/
|
|
5720
6140
|
interface ConsumerTransactionCollection extends CommonCollection<ConsumerTransaction> {
|
|
5721
6141
|
}
|
|
5722
6142
|
|
|
@@ -5748,6 +6168,9 @@ declare class ConsumerTransactionTag extends TagAbstract {
|
|
|
5748
6168
|
* ConsumerWebhookResponse automatically generated by SDKgen please do not edit this file manually
|
|
5749
6169
|
* {@link https://sdkgen.app}
|
|
5750
6170
|
*/
|
|
6171
|
+
/**
|
|
6172
|
+
* Recorded delivery log response for a webhook dispatch
|
|
6173
|
+
*/
|
|
5751
6174
|
interface ConsumerWebhookResponse {
|
|
5752
6175
|
status?: number;
|
|
5753
6176
|
code?: number;
|
|
@@ -5760,7 +6183,11 @@ interface ConsumerWebhookResponse {
|
|
|
5760
6183
|
* {@link https://sdkgen.app}
|
|
5761
6184
|
*/
|
|
5762
6185
|
|
|
6186
|
+
/**
|
|
6187
|
+
* Webhook endpoint subscription definition
|
|
6188
|
+
*/
|
|
5763
6189
|
interface ConsumerWebhook {
|
|
6190
|
+
kind?: string;
|
|
5764
6191
|
id?: number;
|
|
5765
6192
|
status?: number;
|
|
5766
6193
|
event?: string;
|
|
@@ -5774,6 +6201,9 @@ interface ConsumerWebhook {
|
|
|
5774
6201
|
* {@link https://sdkgen.app}
|
|
5775
6202
|
*/
|
|
5776
6203
|
|
|
6204
|
+
/**
|
|
6205
|
+
* Collection of webhook subscriptions
|
|
6206
|
+
*/
|
|
5777
6207
|
interface ConsumerWebhookCollection extends CommonCollection<ConsumerWebhook> {
|
|
5778
6208
|
}
|
|
5779
6209
|
|
|
@@ -5781,6 +6211,9 @@ interface ConsumerWebhookCollection extends CommonCollection<ConsumerWebhook> {
|
|
|
5781
6211
|
* ConsumerWebhookCreate automatically generated by SDKgen please do not edit this file manually
|
|
5782
6212
|
* {@link https://sdkgen.app}
|
|
5783
6213
|
*/
|
|
6214
|
+
/**
|
|
6215
|
+
* Payload for registering a new webhook subscription
|
|
6216
|
+
*/
|
|
5784
6217
|
interface ConsumerWebhookCreate {
|
|
5785
6218
|
event?: string;
|
|
5786
6219
|
name?: string;
|
|
@@ -5791,6 +6224,9 @@ interface ConsumerWebhookCreate {
|
|
|
5791
6224
|
* ConsumerWebhookUpdate automatically generated by SDKgen please do not edit this file manually
|
|
5792
6225
|
* {@link https://sdkgen.app}
|
|
5793
6226
|
*/
|
|
6227
|
+
/**
|
|
6228
|
+
* Payload for updating an existing webhook subscription
|
|
6229
|
+
*/
|
|
5794
6230
|
interface ConsumerWebhookUpdate {
|
|
5795
6231
|
event?: string;
|
|
5796
6232
|
name?: string;
|
|
@@ -5868,6 +6304,35 @@ declare class ConsumerTag extends TagAbstract {
|
|
|
5868
6304
|
webhook(): ConsumerWebhookTag;
|
|
5869
6305
|
}
|
|
5870
6306
|
|
|
6307
|
+
/**
|
|
6308
|
+
* SystemCaptchaChallenge automatically generated by SDKgen please do not edit this file manually
|
|
6309
|
+
* {@link https://sdkgen.app}
|
|
6310
|
+
*/
|
|
6311
|
+
interface SystemCaptchaChallenge {
|
|
6312
|
+
algorithm?: string;
|
|
6313
|
+
challenge?: string;
|
|
6314
|
+
maxnumber?: number;
|
|
6315
|
+
salt?: string;
|
|
6316
|
+
signature?: string;
|
|
6317
|
+
expires?: number;
|
|
6318
|
+
}
|
|
6319
|
+
|
|
6320
|
+
/**
|
|
6321
|
+
* SystemCaptchaTag automatically generated by SDKgen please do not edit this file manually
|
|
6322
|
+
* {@link https://sdkgen.app}
|
|
6323
|
+
*/
|
|
6324
|
+
|
|
6325
|
+
declare class SystemCaptchaTag extends TagAbstract {
|
|
6326
|
+
/**
|
|
6327
|
+
* Endpoint to generate a captcha challenge
|
|
6328
|
+
*
|
|
6329
|
+
* @returns {Promise<SystemCaptchaChallenge>}
|
|
6330
|
+
* @throws {CommonMessageException}
|
|
6331
|
+
* @throws {ClientException}
|
|
6332
|
+
*/
|
|
6333
|
+
challenge(): Promise<SystemCaptchaChallenge>;
|
|
6334
|
+
}
|
|
6335
|
+
|
|
5871
6336
|
/**
|
|
5872
6337
|
* SystemConnectionTag automatically generated by SDKgen please do not edit this file manually
|
|
5873
6338
|
* {@link https://sdkgen.app}
|
|
@@ -5906,6 +6371,7 @@ interface SystemAboutLink {
|
|
|
5906
6371
|
*/
|
|
5907
6372
|
|
|
5908
6373
|
interface SystemAbout {
|
|
6374
|
+
kind?: string;
|
|
5909
6375
|
apiVersion?: string;
|
|
5910
6376
|
title?: string;
|
|
5911
6377
|
description?: string;
|
|
@@ -5927,6 +6393,7 @@ interface SystemAbout {
|
|
|
5927
6393
|
* {@link https://sdkgen.app}
|
|
5928
6394
|
*/
|
|
5929
6395
|
interface SystemHealthCheck {
|
|
6396
|
+
kind?: string;
|
|
5930
6397
|
healthy?: boolean;
|
|
5931
6398
|
error?: string;
|
|
5932
6399
|
}
|
|
@@ -5952,6 +6419,7 @@ interface SystemRoutePath extends Record<string, SystemRouteMethod> {
|
|
|
5952
6419
|
*/
|
|
5953
6420
|
|
|
5954
6421
|
interface SystemRoute {
|
|
6422
|
+
kind?: string;
|
|
5955
6423
|
routes?: SystemRoutePath;
|
|
5956
6424
|
}
|
|
5957
6425
|
|
|
@@ -5975,6 +6443,7 @@ interface SystemSchemaForm extends Record<string, any> {
|
|
|
5975
6443
|
*/
|
|
5976
6444
|
|
|
5977
6445
|
interface SystemSchema {
|
|
6446
|
+
kind?: string;
|
|
5978
6447
|
schema?: SystemSchemaTypeSchema;
|
|
5979
6448
|
form?: SystemSchemaForm;
|
|
5980
6449
|
}
|
|
@@ -6049,6 +6518,7 @@ declare class SystemPaymentTag extends TagAbstract {
|
|
|
6049
6518
|
*/
|
|
6050
6519
|
|
|
6051
6520
|
declare class SystemTag extends TagAbstract {
|
|
6521
|
+
captcha(): SystemCaptchaTag;
|
|
6052
6522
|
connection(): SystemConnectionTag;
|
|
6053
6523
|
meta(): SystemMetaTag;
|
|
6054
6524
|
payment(): SystemPaymentTag;
|
|
@@ -6078,4 +6548,4 @@ declare class CommonMessageException extends KnownStatusCodeException {
|
|
|
6078
6548
|
getPayload(): CommonMessage;
|
|
6079
6549
|
}
|
|
6080
6550
|
|
|
6081
|
-
export { type AgentInput, type AgentItem, type AgentItemBinary, type AgentItemChoice, type AgentItemObject, type AgentItemText, type AgentItemToolCall, type AgentItemToolCallFunction, type AgentOutput, AuthorizationTag, type BackendAccountChangePassword, BackendAccountTag, type BackendAction, type BackendActionCollection, type BackendActionCommit, type BackendActionCommitCollection, type BackendActionConfig, type BackendActionCreate, type BackendActionExecuteRequest, type BackendActionExecuteRequestBody, type BackendActionExecuteResponse, type BackendActionExecuteResponseBody, type BackendActionExecuteResponseHeaders, type BackendActionIndex, type BackendActionIndexEntry, BackendActionTag, type BackendActionUpdate, type BackendAgent, type BackendAgentCollection, type BackendAgentCreate, type BackendAgentMessage, type BackendAgentMessageCollection, BackendAgentMessageTag, BackendAgentTag, type BackendAgentTool, type BackendAgentTools, type BackendAgentUpdate, type BackendApp, type BackendAppCollection, type BackendAppCreate, BackendAppTag, type BackendAppUpdate, type BackendAudit, type BackendAuditCollection, type BackendAuditObject, BackendAuditTag, type BackendBackupExport, type BackendBackupImport, type BackendBackupImportResult, BackendBackupTag, type BackendBundle, type BackendBundleCollection, type BackendBundleConfig, type BackendBundleCreate, BackendBundleTag, type BackendBundleUpdate, type BackendCategory, type BackendCategoryCollection, type BackendCategoryCreate, BackendCategoryTag, type BackendCategoryUpdate, type BackendConfig, type BackendConfigCollection, BackendConfigTag, type BackendConfigUpdate, type BackendConnection, BackendConnectionAgentTag, type BackendConnectionCollection, type BackendConnectionConfig, type BackendConnectionCreate, BackendConnectionDatabaseTag, BackendConnectionFilesystemTag, BackendConnectionHttpTag, type BackendConnectionIndex, type BackendConnectionIndexEntry, type BackendConnectionRedirectResponse, BackendConnectionSdkTag, BackendConnectionTag, type BackendConnectionUpdate, type BackendCronjob, type BackendCronjobCollection, type BackendCronjobCreate, type BackendCronjobError, BackendCronjobTag, type BackendCronjobUpdate, type BackendDashboard, BackendDashboardTag, type BackendDatabaseRow, type BackendDatabaseRowCollection, type BackendDatabaseTable, type BackendDatabaseTableCollection, type BackendDatabaseTableColumn, type BackendDatabaseTableForeignKeyConstraint, type BackendDatabaseTableIndex, type BackendEvent, type BackendEventCollection, type BackendEventCreate, BackendEventTag, type BackendEventUpdate, type BackendFile, type BackendFileCollection, type BackendFirewall, type BackendFirewallCollection, type BackendFirewallCreate, BackendFirewallTag, type BackendFirewallUpdate, type BackendForm, type BackendFormCollection, type BackendFormCreate, BackendFormTag, type BackendFormUpdate, type BackendGeneratorIndexProvider, type BackendGeneratorIndexProviders, type BackendGeneratorProvider, type BackendGeneratorProviderChangelog, type BackendGeneratorProviderConfig, BackendGeneratorTag, type BackendHttpRequest, type BackendHttpResponse, type BackendIdentity, type BackendIdentityCollection, type BackendIdentityConfig, type BackendIdentityCreate, type BackendIdentityIndex, type BackendIdentityIndexEntry, BackendIdentityTag, type BackendIdentityUpdate, type BackendLog, type BackendLogCollection, type BackendLogError, type BackendLogErrorCollection, BackendLogTag, BackendMarketplaceActionTag, BackendMarketplaceAppTag, BackendMarketplaceBundleTag, BackendMarketplaceTag, type BackendOperation, type BackendOperationCollection, type BackendOperationCreate, type BackendOperationParameters, type BackendOperationSchema, BackendOperationTag, type BackendOperationThrows, type BackendOperationUpdate, type BackendPage, type BackendPageCollection, type BackendPageCreate, BackendPageTag, type BackendPageUpdate, type BackendPlan, type BackendPlanCollection, type BackendPlanCreate, BackendPlanTag, type BackendPlanUpdate, type BackendRate, type BackendRateAllocation, type BackendRateCollection, type BackendRateCreate, BackendRateTag, type BackendRateUpdate, type BackendRole, type BackendRoleCollection, type BackendRoleCreate, BackendRoleTag, type BackendRoleUpdate, type BackendSchema, type BackendSchemaCollection, type BackendSchemaCommit, type BackendSchemaCommitCollection, type BackendSchemaCreate, type BackendSchemaPreviewResponse, type BackendSchemaSource, BackendSchemaTag, type BackendSchemaUpdate, type BackendScope, type BackendScopeCategories, type BackendScopeCategory, type BackendScopeCategoryScope, type BackendScopeCollection, type BackendScopeCreate, type BackendScopeOperation, BackendScopeTag, type BackendScopeUpdate, type BackendSdkGenerate, type BackendSdkMessage, type BackendSdkResponse, BackendSdkTag, type BackendSdkTypes, type BackendSpecificationChangelog, type BackendSpecificationGet, type BackendSpecificationPublish, BackendSpecificationTag, type BackendStatisticChart, type BackendStatisticChartSeries, type BackendStatisticCount, BackendStatisticTag, BackendTag, type BackendTaxonomy, type BackendTaxonomyCollection, type BackendTaxonomyCreate, type BackendTaxonomyMove, BackendTaxonomyTag, type BackendTaxonomyUpdate, BackendTenantTag, type BackendTest, type BackendTestCollection, type BackendTestConfig, BackendTestTag, type BackendToken, type BackendTokenCollection, BackendTokenTag, type BackendTransaction, type BackendTransactionCollection, BackendTransactionTag, type BackendTrashData, type BackendTrashDataCollection, type BackendTrashRestore, BackendTrashTag, type BackendTrashTypes, type BackendTrigger, type BackendTriggerCollection, type BackendTriggerCreate, BackendTriggerTag, type BackendTriggerUpdate, type BackendUser, type BackendUserCollection, type BackendUserCreate, BackendUserTag, type BackendUserUpdate, type BackendWebhook, type BackendWebhookCollection, type BackendWebhookCreate, type BackendWebhookResponse, BackendWebhookTag, type BackendWebhookUpdate, Client, type CommonCollection, type CommonFormContainer, type CommonFormElement, type CommonFormElementCheckbox, type CommonFormElementCollection, type CommonFormElementInput, type CommonFormElementMap, type CommonFormElementSelect, type CommonFormElementSelectOption, type CommonFormElementTextArea, type CommonFormElementTypeAPI, type CommonFormElementTypeSchema, type CommonMessage, CommonMessageException, type CommonMetadata, ConsumerAccountTag, type ConsumerAgent, type ConsumerAgentCollection, type ConsumerAgentMessage, type ConsumerAgentMessageCollection, ConsumerAgentMessageTag, ConsumerAgentTag, type ConsumerApp, type ConsumerAppCollection, type ConsumerAppCreate, ConsumerAppTag, type ConsumerAppUpdate, type ConsumerAuthorizeMeta, type ConsumerAuthorizeRequest, type ConsumerAuthorizeResponse, type ConsumerEvent, type ConsumerEventCollection, ConsumerEventTag, type ConsumerForm, type ConsumerFormCollection, ConsumerFormTag, type ConsumerGrant, type ConsumerGrantCollection, ConsumerGrantTag, type ConsumerIdentity, type ConsumerIdentityCollection, ConsumerIdentityTag, type ConsumerLog, type ConsumerLogCollection, ConsumerLogTag, type ConsumerPage, type ConsumerPageCollection, ConsumerPageTag, type ConsumerPaymentCheckoutRequest, type ConsumerPaymentCheckoutResponse, type ConsumerPaymentPortalRequest, type ConsumerPaymentPortalResponse, ConsumerPaymentTag, type ConsumerPlan, type ConsumerPlanCollection, ConsumerPlanTag, type ConsumerScope, type ConsumerScopeCategories, type ConsumerScopeCategory, type ConsumerScopeCategoryScope, type ConsumerScopeCollection, ConsumerScopeTag, ConsumerTag, type ConsumerToken, type ConsumerTokenAccessToken, type ConsumerTokenCollection, type ConsumerTokenCreate, ConsumerTokenTag, type ConsumerTokenUpdate, type ConsumerTransaction, type ConsumerTransactionCollection, ConsumerTransactionTag, type ConsumerUserAccount, type ConsumerUserActivate, type ConsumerUserEmail, type ConsumerUserJWT, type ConsumerUserLogin, type ConsumerUserPasswordReset, type ConsumerUserPlan, type ConsumerUserRefresh, type ConsumerUserRegister, type ConsumerWebhook, type ConsumerWebhookCollection, type ConsumerWebhookCreate, type ConsumerWebhookResponse, ConsumerWebhookTag, type ConsumerWebhookUpdate, type MarketplaceAction, type MarketplaceActionCollection, type MarketplaceActionConfig, type MarketplaceApp, type MarketplaceAppCollection, type MarketplaceBundle, type MarketplaceBundleAction, type MarketplaceBundleActionConfig, type MarketplaceBundleCollection, type MarketplaceBundleConfig, type MarketplaceBundleCronjob, type MarketplaceBundleEvent, type MarketplaceBundleSchema, type MarketplaceBundleSchemaSource, type MarketplaceBundleTrigger, type MarketplaceCollection, type MarketplaceInstall, type MarketplaceMessage, type MarketplaceObject, type MarketplaceUser, type Passthru, type SystemAbout, type SystemAboutApps, type SystemAboutLink, SystemConnectionTag, type SystemHealthCheck, SystemMetaTag, SystemPaymentTag, type SystemRoute, type SystemRouteMethod, type SystemRoutePath, type SystemSchema, type SystemSchemaForm, type SystemSchemaTypeSchema, SystemTag };
|
|
6551
|
+
export { type AgentInput, type AgentItem, type AgentItemBinary, type AgentItemChoice, type AgentItemObject, type AgentItemText, type AgentItemToolCall, type AgentItemToolCallFunction, type AgentOutput, AuthorizationTag, type BackendAccountChangePassword, BackendAccountTag, type BackendAction, type BackendActionCollection, type BackendActionCommit, type BackendActionCommitCollection, type BackendActionConfig, type BackendActionCreate, type BackendActionExecuteRequest, type BackendActionExecuteRequestBody, type BackendActionExecuteResponse, type BackendActionExecuteResponseBody, type BackendActionExecuteResponseHeaders, type BackendActionIndex, type BackendActionIndexEntry, BackendActionTag, type BackendActionUpdate, type BackendAgent, type BackendAgentCollection, type BackendAgentCreate, type BackendAgentMessage, type BackendAgentMessageCollection, BackendAgentMessageTag, BackendAgentTag, type BackendAgentTool, type BackendAgentTools, type BackendAgentUpdate, type BackendApp, type BackendAppCollection, type BackendAppCreate, BackendAppTag, type BackendAppUpdate, type BackendAudit, type BackendAuditCollection, type BackendAuditObject, BackendAuditTag, type BackendBackupExport, type BackendBackupImport, type BackendBackupImportResult, BackendBackupTag, type BackendBundle, type BackendBundleCollection, type BackendBundleConfig, type BackendBundleCreate, BackendBundleTag, type BackendBundleUpdate, type BackendCategory, type BackendCategoryCollection, type BackendCategoryCreate, BackendCategoryTag, type BackendCategoryUpdate, type BackendConfig, type BackendConfigCollection, BackendConfigTag, type BackendConfigUpdate, type BackendConnection, BackendConnectionAgentTag, type BackendConnectionCollection, type BackendConnectionConfig, type BackendConnectionCreate, BackendConnectionDatabaseTag, BackendConnectionFilesystemTag, BackendConnectionHttpTag, type BackendConnectionIndex, type BackendConnectionIndexEntry, type BackendConnectionRedirectResponse, BackendConnectionSdkTag, BackendConnectionTag, type BackendConnectionUpdate, type BackendCronjob, type BackendCronjobCollection, type BackendCronjobCreate, type BackendCronjobError, BackendCronjobTag, type BackendCronjobUpdate, type BackendDashboard, BackendDashboardTag, type BackendDatabaseRow, type BackendDatabaseRowCollection, type BackendDatabaseTable, type BackendDatabaseTableCollection, type BackendDatabaseTableColumn, type BackendDatabaseTableForeignKeyConstraint, type BackendDatabaseTableIndex, type BackendEvent, type BackendEventCollection, type BackendEventCreate, BackendEventTag, type BackendEventUpdate, type BackendFile, type BackendFileCollection, type BackendFirewall, type BackendFirewallCollection, type BackendFirewallCreate, BackendFirewallTag, type BackendFirewallUpdate, type BackendForm, type BackendFormCollection, type BackendFormCreate, BackendFormTag, type BackendFormUpdate, type BackendGeneratorIndexProvider, type BackendGeneratorIndexProviders, type BackendGeneratorProvider, type BackendGeneratorProviderChangelog, type BackendGeneratorProviderConfig, BackendGeneratorTag, type BackendHttpRequest, type BackendHttpResponse, type BackendIdentity, type BackendIdentityCollection, type BackendIdentityConfig, type BackendIdentityCreate, type BackendIdentityIndex, type BackendIdentityIndexEntry, BackendIdentityTag, type BackendIdentityUpdate, type BackendLog, type BackendLogCollection, type BackendLogError, type BackendLogErrorCollection, BackendLogTag, BackendMarketplaceActionTag, BackendMarketplaceAppTag, BackendMarketplaceBundleTag, BackendMarketplaceTag, type BackendOperation, type BackendOperationCollection, type BackendOperationCreate, type BackendOperationParameters, type BackendOperationSchema, BackendOperationTag, type BackendOperationThrows, type BackendOperationUpdate, type BackendPage, type BackendPageCollection, type BackendPageCreate, BackendPageTag, type BackendPageUpdate, type BackendPlan, type BackendPlanCollection, type BackendPlanCreate, BackendPlanTag, type BackendPlanUpdate, type BackendRate, type BackendRateAllocation, type BackendRateCollection, type BackendRateCreate, BackendRateTag, type BackendRateUpdate, type BackendRole, type BackendRoleCollection, type BackendRoleCreate, BackendRoleTag, type BackendRoleUpdate, type BackendSchema, type BackendSchemaCollection, type BackendSchemaCommit, type BackendSchemaCommitCollection, type BackendSchemaCreate, type BackendSchemaPreviewResponse, type BackendSchemaSource, BackendSchemaTag, type BackendSchemaUpdate, type BackendScope, type BackendScopeCategories, type BackendScopeCategory, type BackendScopeCategoryScope, type BackendScopeCollection, type BackendScopeCreate, type BackendScopeOperation, BackendScopeTag, type BackendScopeUpdate, type BackendSdkGenerate, type BackendSdkMessage, type BackendSdkResponse, BackendSdkTag, type BackendSdkTypes, type BackendSpecificationChangelog, type BackendSpecificationGet, type BackendSpecificationPublish, BackendSpecificationTag, type BackendStatisticChart, type BackendStatisticChartSeries, type BackendStatisticCount, BackendStatisticTag, BackendTag, type BackendTaxonomy, type BackendTaxonomyCollection, type BackendTaxonomyCreate, type BackendTaxonomyMove, BackendTaxonomyTag, type BackendTaxonomyUpdate, BackendTenantTag, type BackendTest, type BackendTestCollection, type BackendTestConfig, BackendTestTag, type BackendToken, type BackendTokenCollection, BackendTokenTag, type BackendTransaction, type BackendTransactionCollection, BackendTransactionTag, type BackendTrashData, type BackendTrashDataCollection, type BackendTrashRestore, BackendTrashTag, type BackendTrashTypes, type BackendTrigger, type BackendTriggerCollection, type BackendTriggerCreate, BackendTriggerTag, type BackendTriggerUpdate, type BackendUser, type BackendUserCollection, type BackendUserCreate, BackendUserTag, type BackendUserUpdate, type BackendWebhook, type BackendWebhookCollection, type BackendWebhookCreate, type BackendWebhookResponse, BackendWebhookTag, type BackendWebhookUpdate, Client, type CommonCollection, type CommonFormContainer, type CommonFormElement, type CommonFormElementCheckbox, type CommonFormElementCollection, type CommonFormElementInput, type CommonFormElementMap, type CommonFormElementSelect, type CommonFormElementSelectOption, type CommonFormElementTextArea, type CommonFormElementTypeAPI, type CommonFormElementTypeSchema, type CommonMessage, CommonMessageException, type CommonMetadata, ConsumerAccountTag, type ConsumerAgent, type ConsumerAgentCollection, type ConsumerAgentMessage, type ConsumerAgentMessageCollection, ConsumerAgentMessageTag, ConsumerAgentTag, type ConsumerApp, type ConsumerAppCollection, type ConsumerAppCreate, ConsumerAppTag, type ConsumerAppUpdate, type ConsumerAuthorizeMeta, type ConsumerAuthorizeRequest, type ConsumerAuthorizeResponse, type ConsumerEvent, type ConsumerEventCollection, ConsumerEventTag, type ConsumerForm, type ConsumerFormCollection, ConsumerFormTag, type ConsumerGrant, type ConsumerGrantCollection, ConsumerGrantTag, type ConsumerIdentity, type ConsumerIdentityCollection, ConsumerIdentityTag, type ConsumerLog, type ConsumerLogCollection, ConsumerLogTag, type ConsumerPage, type ConsumerPageCollection, ConsumerPageTag, type ConsumerPaymentCheckoutRequest, type ConsumerPaymentCheckoutResponse, type ConsumerPaymentPortalRequest, type ConsumerPaymentPortalResponse, ConsumerPaymentTag, type ConsumerPlan, type ConsumerPlanCollection, ConsumerPlanTag, type ConsumerScope, type ConsumerScopeCategories, type ConsumerScopeCategory, type ConsumerScopeCategoryScope, type ConsumerScopeCollection, ConsumerScopeTag, ConsumerTag, type ConsumerToken, type ConsumerTokenAccessToken, type ConsumerTokenCollection, type ConsumerTokenCreate, ConsumerTokenTag, type ConsumerTokenUpdate, type ConsumerTransaction, type ConsumerTransactionCollection, ConsumerTransactionTag, type ConsumerUserAccount, type ConsumerUserActivate, type ConsumerUserEmail, type ConsumerUserJWT, type ConsumerUserLogin, type ConsumerUserPasswordReset, type ConsumerUserPlan, type ConsumerUserRefresh, type ConsumerUserRegister, type ConsumerWebhook, type ConsumerWebhookCollection, type ConsumerWebhookCreate, type ConsumerWebhookResponse, ConsumerWebhookTag, type ConsumerWebhookUpdate, type MarketplaceAction, type MarketplaceActionCollection, type MarketplaceActionConfig, type MarketplaceApp, type MarketplaceAppCollection, type MarketplaceBundle, type MarketplaceBundleAction, type MarketplaceBundleActionConfig, type MarketplaceBundleCollection, type MarketplaceBundleConfig, type MarketplaceBundleCronjob, type MarketplaceBundleEvent, type MarketplaceBundleSchema, type MarketplaceBundleSchemaSource, type MarketplaceBundleTrigger, type MarketplaceCollection, type MarketplaceInstall, type MarketplaceMessage, type MarketplaceObject, type MarketplaceUser, type Passthru, type SystemAbout, type SystemAboutApps, type SystemAboutLink, type SystemCaptchaChallenge, SystemCaptchaTag, SystemConnectionTag, type SystemHealthCheck, SystemMetaTag, SystemPaymentTag, type SystemRoute, type SystemRouteMethod, type SystemRoutePath, type SystemSchema, type SystemSchemaForm, type SystemSchemaTypeSchema, SystemTag };
|