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