fusio-sdk 6.3.0 → 6.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -21
- package/README.md +6 -6
- package/dist/index.cjs +502 -375
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5533 -5325
- package/dist/index.d.ts +5533 -5325
- package/dist/index.js +497 -371
- package/dist/index.js.map +1 -1
- package/package.json +43 -43
package/dist/index.js
CHANGED
|
@@ -215,7 +215,7 @@ var BackendActionTag = class extends TagAbstract3 {
|
|
|
215
215
|
throw new UnknownStatusCodeException3("The server returned an unknown status code: " + statusCode);
|
|
216
216
|
}
|
|
217
217
|
/**
|
|
218
|
-
* Executes a specific action
|
|
218
|
+
* Executes a specific action. This method should be used to test an action configuration
|
|
219
219
|
*
|
|
220
220
|
* @returns {Promise<BackendActionExecuteResponse>}
|
|
221
221
|
* @throws {CommonMessageException}
|
|
@@ -802,6 +802,33 @@ var BackendBundleTag = class extends TagAbstract7 {
|
|
|
802
802
|
}
|
|
803
803
|
throw new UnknownStatusCodeException7("The server returned an unknown status code: " + statusCode);
|
|
804
804
|
}
|
|
805
|
+
/**
|
|
806
|
+
* Publish an existing bundle to the marketplace
|
|
807
|
+
*
|
|
808
|
+
* @returns {Promise<CommonMessage>}
|
|
809
|
+
* @throws {CommonMessageException}
|
|
810
|
+
* @throws {ClientException}
|
|
811
|
+
*/
|
|
812
|
+
async publish(bundleId) {
|
|
813
|
+
const url = this.parser.url("/backend/bundle/$bundle_id<[0-9]+|^~>/publish", {
|
|
814
|
+
"bundle_id": bundleId
|
|
815
|
+
});
|
|
816
|
+
let request = {
|
|
817
|
+
url,
|
|
818
|
+
method: "POST",
|
|
819
|
+
headers: {},
|
|
820
|
+
params: this.parser.query({}, [])
|
|
821
|
+
};
|
|
822
|
+
const response = await this.httpClient.request(request);
|
|
823
|
+
if (response.ok) {
|
|
824
|
+
return await response.json();
|
|
825
|
+
}
|
|
826
|
+
const statusCode = response.status;
|
|
827
|
+
if (statusCode >= 0 && statusCode <= 999) {
|
|
828
|
+
throw new CommonMessageException(await response.json());
|
|
829
|
+
}
|
|
830
|
+
throw new UnknownStatusCodeException7("The server returned an unknown status code: " + statusCode);
|
|
831
|
+
}
|
|
805
832
|
/**
|
|
806
833
|
* Updates an existing bundle
|
|
807
834
|
*
|
|
@@ -1073,10 +1100,102 @@ var BackendConfigTag = class extends TagAbstract9 {
|
|
|
1073
1100
|
}
|
|
1074
1101
|
};
|
|
1075
1102
|
|
|
1076
|
-
// src/
|
|
1103
|
+
// src/BackendConnectionAgentTag.ts
|
|
1077
1104
|
import { TagAbstract as TagAbstract10 } from "sdkgen-client";
|
|
1078
1105
|
import { UnknownStatusCodeException as UnknownStatusCodeException10 } from "sdkgen-client";
|
|
1079
|
-
var
|
|
1106
|
+
var BackendConnectionAgentTag = class extends TagAbstract10 {
|
|
1107
|
+
/**
|
|
1108
|
+
* Returns all previous sent messages
|
|
1109
|
+
*
|
|
1110
|
+
* @returns {Promise<BackendAgentCollection>}
|
|
1111
|
+
* @throws {CommonMessageException}
|
|
1112
|
+
* @throws {ClientException}
|
|
1113
|
+
*/
|
|
1114
|
+
async get(connectionId, intent) {
|
|
1115
|
+
const url = this.parser.url("/backend/connection/:connection_id/agent", {
|
|
1116
|
+
"connection_id": connectionId
|
|
1117
|
+
});
|
|
1118
|
+
let request = {
|
|
1119
|
+
url,
|
|
1120
|
+
method: "GET",
|
|
1121
|
+
headers: {},
|
|
1122
|
+
params: this.parser.query({
|
|
1123
|
+
"intent": intent
|
|
1124
|
+
}, [])
|
|
1125
|
+
};
|
|
1126
|
+
const response = await this.httpClient.request(request);
|
|
1127
|
+
if (response.ok) {
|
|
1128
|
+
return await response.json();
|
|
1129
|
+
}
|
|
1130
|
+
const statusCode = response.status;
|
|
1131
|
+
if (statusCode >= 0 && statusCode <= 999) {
|
|
1132
|
+
throw new CommonMessageException(await response.json());
|
|
1133
|
+
}
|
|
1134
|
+
throw new UnknownStatusCodeException10("The server returned an unknown status code: " + statusCode);
|
|
1135
|
+
}
|
|
1136
|
+
/**
|
|
1137
|
+
* Resets all agent messages
|
|
1138
|
+
*
|
|
1139
|
+
* @returns {Promise<CommonMessage>}
|
|
1140
|
+
* @throws {CommonMessageException}
|
|
1141
|
+
* @throws {ClientException}
|
|
1142
|
+
*/
|
|
1143
|
+
async reset(connectionId) {
|
|
1144
|
+
const url = this.parser.url("/backend/connection/:connection_id/agent", {
|
|
1145
|
+
"connection_id": connectionId
|
|
1146
|
+
});
|
|
1147
|
+
let request = {
|
|
1148
|
+
url,
|
|
1149
|
+
method: "DELETE",
|
|
1150
|
+
headers: {},
|
|
1151
|
+
params: this.parser.query({}, [])
|
|
1152
|
+
};
|
|
1153
|
+
const response = await this.httpClient.request(request);
|
|
1154
|
+
if (response.ok) {
|
|
1155
|
+
return await response.json();
|
|
1156
|
+
}
|
|
1157
|
+
const statusCode = response.status;
|
|
1158
|
+
if (statusCode >= 0 && statusCode <= 999) {
|
|
1159
|
+
throw new CommonMessageException(await response.json());
|
|
1160
|
+
}
|
|
1161
|
+
throw new UnknownStatusCodeException10("The server returned an unknown status code: " + statusCode);
|
|
1162
|
+
}
|
|
1163
|
+
/**
|
|
1164
|
+
* Sends a message to an agent
|
|
1165
|
+
*
|
|
1166
|
+
* @returns {Promise<BackendAgentResponse>}
|
|
1167
|
+
* @throws {CommonMessageException}
|
|
1168
|
+
* @throws {ClientException}
|
|
1169
|
+
*/
|
|
1170
|
+
async send(connectionId, payload) {
|
|
1171
|
+
const url = this.parser.url("/backend/connection/:connection_id/agent", {
|
|
1172
|
+
"connection_id": connectionId
|
|
1173
|
+
});
|
|
1174
|
+
let request = {
|
|
1175
|
+
url,
|
|
1176
|
+
method: "POST",
|
|
1177
|
+
headers: {
|
|
1178
|
+
"Content-Type": "application/json"
|
|
1179
|
+
},
|
|
1180
|
+
params: this.parser.query({}, []),
|
|
1181
|
+
data: payload
|
|
1182
|
+
};
|
|
1183
|
+
const response = await this.httpClient.request(request);
|
|
1184
|
+
if (response.ok) {
|
|
1185
|
+
return await response.json();
|
|
1186
|
+
}
|
|
1187
|
+
const statusCode = response.status;
|
|
1188
|
+
if (statusCode >= 0 && statusCode <= 999) {
|
|
1189
|
+
throw new CommonMessageException(await response.json());
|
|
1190
|
+
}
|
|
1191
|
+
throw new UnknownStatusCodeException10("The server returned an unknown status code: " + statusCode);
|
|
1192
|
+
}
|
|
1193
|
+
};
|
|
1194
|
+
|
|
1195
|
+
// src/BackendConnectionDatabaseTag.ts
|
|
1196
|
+
import { TagAbstract as TagAbstract11 } from "sdkgen-client";
|
|
1197
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException11 } from "sdkgen-client";
|
|
1198
|
+
var BackendConnectionDatabaseTag = class extends TagAbstract11 {
|
|
1080
1199
|
/**
|
|
1081
1200
|
* Creates a new row at a table on a database
|
|
1082
1201
|
*
|
|
@@ -1106,7 +1225,7 @@ var BackendConnectionDatabaseTag = class extends TagAbstract10 {
|
|
|
1106
1225
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1107
1226
|
throw new CommonMessageException(await response.json());
|
|
1108
1227
|
}
|
|
1109
|
-
throw new
|
|
1228
|
+
throw new UnknownStatusCodeException11("The server returned an unknown status code: " + statusCode);
|
|
1110
1229
|
}
|
|
1111
1230
|
/**
|
|
1112
1231
|
* Creates a new table on a database
|
|
@@ -1136,7 +1255,7 @@ var BackendConnectionDatabaseTag = class extends TagAbstract10 {
|
|
|
1136
1255
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1137
1256
|
throw new CommonMessageException(await response.json());
|
|
1138
1257
|
}
|
|
1139
|
-
throw new
|
|
1258
|
+
throw new UnknownStatusCodeException11("The server returned an unknown status code: " + statusCode);
|
|
1140
1259
|
}
|
|
1141
1260
|
/**
|
|
1142
1261
|
* Deletes an existing row at a table on a database
|
|
@@ -1165,7 +1284,7 @@ var BackendConnectionDatabaseTag = class extends TagAbstract10 {
|
|
|
1165
1284
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1166
1285
|
throw new CommonMessageException(await response.json());
|
|
1167
1286
|
}
|
|
1168
|
-
throw new
|
|
1287
|
+
throw new UnknownStatusCodeException11("The server returned an unknown status code: " + statusCode);
|
|
1169
1288
|
}
|
|
1170
1289
|
/**
|
|
1171
1290
|
* Deletes an existing table on a database
|
|
@@ -1193,7 +1312,7 @@ var BackendConnectionDatabaseTag = class extends TagAbstract10 {
|
|
|
1193
1312
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1194
1313
|
throw new CommonMessageException(await response.json());
|
|
1195
1314
|
}
|
|
1196
|
-
throw new
|
|
1315
|
+
throw new UnknownStatusCodeException11("The server returned an unknown status code: " + statusCode);
|
|
1197
1316
|
}
|
|
1198
1317
|
/**
|
|
1199
1318
|
* Returns a specific row at a table on a database
|
|
@@ -1222,7 +1341,7 @@ var BackendConnectionDatabaseTag = class extends TagAbstract10 {
|
|
|
1222
1341
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1223
1342
|
throw new CommonMessageException(await response.json());
|
|
1224
1343
|
}
|
|
1225
|
-
throw new
|
|
1344
|
+
throw new UnknownStatusCodeException11("The server returned an unknown status code: " + statusCode);
|
|
1226
1345
|
}
|
|
1227
1346
|
/**
|
|
1228
1347
|
* Returns paginated rows at a table on a database
|
|
@@ -1259,7 +1378,7 @@ var BackendConnectionDatabaseTag = class extends TagAbstract10 {
|
|
|
1259
1378
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1260
1379
|
throw new CommonMessageException(await response.json());
|
|
1261
1380
|
}
|
|
1262
|
-
throw new
|
|
1381
|
+
throw new UnknownStatusCodeException11("The server returned an unknown status code: " + statusCode);
|
|
1263
1382
|
}
|
|
1264
1383
|
/**
|
|
1265
1384
|
* Returns the schema of a specific table on a database
|
|
@@ -1287,7 +1406,7 @@ var BackendConnectionDatabaseTag = class extends TagAbstract10 {
|
|
|
1287
1406
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1288
1407
|
throw new CommonMessageException(await response.json());
|
|
1289
1408
|
}
|
|
1290
|
-
throw new
|
|
1409
|
+
throw new UnknownStatusCodeException11("The server returned an unknown status code: " + statusCode);
|
|
1291
1410
|
}
|
|
1292
1411
|
/**
|
|
1293
1412
|
* Returns all available tables on a database
|
|
@@ -1317,7 +1436,7 @@ var BackendConnectionDatabaseTag = class extends TagAbstract10 {
|
|
|
1317
1436
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1318
1437
|
throw new CommonMessageException(await response.json());
|
|
1319
1438
|
}
|
|
1320
|
-
throw new
|
|
1439
|
+
throw new UnknownStatusCodeException11("The server returned an unknown status code: " + statusCode);
|
|
1321
1440
|
}
|
|
1322
1441
|
/**
|
|
1323
1442
|
* Updates an existing row at a table on a database
|
|
@@ -1349,7 +1468,7 @@ var BackendConnectionDatabaseTag = class extends TagAbstract10 {
|
|
|
1349
1468
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1350
1469
|
throw new CommonMessageException(await response.json());
|
|
1351
1470
|
}
|
|
1352
|
-
throw new
|
|
1471
|
+
throw new UnknownStatusCodeException11("The server returned an unknown status code: " + statusCode);
|
|
1353
1472
|
}
|
|
1354
1473
|
/**
|
|
1355
1474
|
* Updates an existing table on a database
|
|
@@ -1380,14 +1499,14 @@ var BackendConnectionDatabaseTag = class extends TagAbstract10 {
|
|
|
1380
1499
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1381
1500
|
throw new CommonMessageException(await response.json());
|
|
1382
1501
|
}
|
|
1383
|
-
throw new
|
|
1502
|
+
throw new UnknownStatusCodeException11("The server returned an unknown status code: " + statusCode);
|
|
1384
1503
|
}
|
|
1385
1504
|
};
|
|
1386
1505
|
|
|
1387
1506
|
// src/BackendConnectionFilesystemTag.ts
|
|
1388
|
-
import { TagAbstract as
|
|
1389
|
-
import { UnknownStatusCodeException as
|
|
1390
|
-
var BackendConnectionFilesystemTag = class extends
|
|
1507
|
+
import { TagAbstract as TagAbstract12 } from "sdkgen-client";
|
|
1508
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException12 } from "sdkgen-client";
|
|
1509
|
+
var BackendConnectionFilesystemTag = class extends TagAbstract12 {
|
|
1391
1510
|
/**
|
|
1392
1511
|
* Uploads one or more files on the filesystem connection
|
|
1393
1512
|
*
|
|
@@ -1414,7 +1533,7 @@ var BackendConnectionFilesystemTag = class extends TagAbstract11 {
|
|
|
1414
1533
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1415
1534
|
throw new CommonMessageException(await response.json());
|
|
1416
1535
|
}
|
|
1417
|
-
throw new
|
|
1536
|
+
throw new UnknownStatusCodeException12("The server returned an unknown status code: " + statusCode);
|
|
1418
1537
|
}
|
|
1419
1538
|
/**
|
|
1420
1539
|
* Deletes an existing file on the filesystem connection
|
|
@@ -1442,7 +1561,7 @@ var BackendConnectionFilesystemTag = class extends TagAbstract11 {
|
|
|
1442
1561
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1443
1562
|
throw new CommonMessageException(await response.json());
|
|
1444
1563
|
}
|
|
1445
|
-
throw new
|
|
1564
|
+
throw new UnknownStatusCodeException12("The server returned an unknown status code: " + statusCode);
|
|
1446
1565
|
}
|
|
1447
1566
|
/**
|
|
1448
1567
|
* Returns the content of the provided file id on the filesystem connection
|
|
@@ -1472,7 +1591,7 @@ var BackendConnectionFilesystemTag = class extends TagAbstract11 {
|
|
|
1472
1591
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1473
1592
|
throw new CommonMessageException(await response.json());
|
|
1474
1593
|
}
|
|
1475
|
-
throw new
|
|
1594
|
+
throw new UnknownStatusCodeException12("The server returned an unknown status code: " + statusCode);
|
|
1476
1595
|
}
|
|
1477
1596
|
/**
|
|
1478
1597
|
* Returns all available files on the filesystem connection
|
|
@@ -1502,7 +1621,7 @@ var BackendConnectionFilesystemTag = class extends TagAbstract11 {
|
|
|
1502
1621
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1503
1622
|
throw new CommonMessageException(await response.json());
|
|
1504
1623
|
}
|
|
1505
|
-
throw new
|
|
1624
|
+
throw new UnknownStatusCodeException12("The server returned an unknown status code: " + statusCode);
|
|
1506
1625
|
}
|
|
1507
1626
|
/**
|
|
1508
1627
|
* Updates an existing file on the filesystem connection
|
|
@@ -1531,14 +1650,14 @@ var BackendConnectionFilesystemTag = class extends TagAbstract11 {
|
|
|
1531
1650
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1532
1651
|
throw new CommonMessageException(await response.json());
|
|
1533
1652
|
}
|
|
1534
|
-
throw new
|
|
1653
|
+
throw new UnknownStatusCodeException12("The server returned an unknown status code: " + statusCode);
|
|
1535
1654
|
}
|
|
1536
1655
|
};
|
|
1537
1656
|
|
|
1538
1657
|
// src/BackendConnectionHttpTag.ts
|
|
1539
|
-
import { TagAbstract as
|
|
1540
|
-
import { UnknownStatusCodeException as
|
|
1541
|
-
var BackendConnectionHttpTag = class extends
|
|
1658
|
+
import { TagAbstract as TagAbstract13 } from "sdkgen-client";
|
|
1659
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException13 } from "sdkgen-client";
|
|
1660
|
+
var BackendConnectionHttpTag = class extends TagAbstract13 {
|
|
1542
1661
|
/**
|
|
1543
1662
|
* Sends an arbitrary HTTP request to the connection
|
|
1544
1663
|
*
|
|
@@ -1567,14 +1686,14 @@ var BackendConnectionHttpTag = class extends TagAbstract12 {
|
|
|
1567
1686
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1568
1687
|
throw new CommonMessageException(await response.json());
|
|
1569
1688
|
}
|
|
1570
|
-
throw new
|
|
1689
|
+
throw new UnknownStatusCodeException13("The server returned an unknown status code: " + statusCode);
|
|
1571
1690
|
}
|
|
1572
1691
|
};
|
|
1573
1692
|
|
|
1574
1693
|
// src/BackendConnectionSdkTag.ts
|
|
1575
|
-
import { TagAbstract as
|
|
1576
|
-
import { UnknownStatusCodeException as
|
|
1577
|
-
var BackendConnectionSdkTag = class extends
|
|
1694
|
+
import { TagAbstract as TagAbstract14 } from "sdkgen-client";
|
|
1695
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException14 } from "sdkgen-client";
|
|
1696
|
+
var BackendConnectionSdkTag = class extends TagAbstract14 {
|
|
1578
1697
|
/**
|
|
1579
1698
|
* Returns the SDK specification
|
|
1580
1699
|
*
|
|
@@ -1600,14 +1719,20 @@ var BackendConnectionSdkTag = class extends TagAbstract13 {
|
|
|
1600
1719
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1601
1720
|
throw new CommonMessageException(await response.json());
|
|
1602
1721
|
}
|
|
1603
|
-
throw new
|
|
1722
|
+
throw new UnknownStatusCodeException14("The server returned an unknown status code: " + statusCode);
|
|
1604
1723
|
}
|
|
1605
1724
|
};
|
|
1606
1725
|
|
|
1607
1726
|
// src/BackendConnectionTag.ts
|
|
1608
|
-
import { TagAbstract as
|
|
1609
|
-
import { UnknownStatusCodeException as
|
|
1610
|
-
var BackendConnectionTag = class extends
|
|
1727
|
+
import { TagAbstract as TagAbstract15 } from "sdkgen-client";
|
|
1728
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException15 } from "sdkgen-client";
|
|
1729
|
+
var BackendConnectionTag = class extends TagAbstract15 {
|
|
1730
|
+
agent() {
|
|
1731
|
+
return new BackendConnectionAgentTag(
|
|
1732
|
+
this.httpClient,
|
|
1733
|
+
this.parser
|
|
1734
|
+
);
|
|
1735
|
+
}
|
|
1611
1736
|
database() {
|
|
1612
1737
|
return new BackendConnectionDatabaseTag(
|
|
1613
1738
|
this.httpClient,
|
|
@@ -1658,7 +1783,7 @@ var BackendConnectionTag = class extends TagAbstract14 {
|
|
|
1658
1783
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1659
1784
|
throw new CommonMessageException(await response.json());
|
|
1660
1785
|
}
|
|
1661
|
-
throw new
|
|
1786
|
+
throw new UnknownStatusCodeException15("The server returned an unknown status code: " + statusCode);
|
|
1662
1787
|
}
|
|
1663
1788
|
/**
|
|
1664
1789
|
* Deletes an existing connection
|
|
@@ -1685,7 +1810,7 @@ var BackendConnectionTag = class extends TagAbstract14 {
|
|
|
1685
1810
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1686
1811
|
throw new CommonMessageException(await response.json());
|
|
1687
1812
|
}
|
|
1688
|
-
throw new
|
|
1813
|
+
throw new UnknownStatusCodeException15("The server returned an unknown status code: " + statusCode);
|
|
1689
1814
|
}
|
|
1690
1815
|
/**
|
|
1691
1816
|
* Returns a specific connection
|
|
@@ -1712,7 +1837,7 @@ var BackendConnectionTag = class extends TagAbstract14 {
|
|
|
1712
1837
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1713
1838
|
throw new CommonMessageException(await response.json());
|
|
1714
1839
|
}
|
|
1715
|
-
throw new
|
|
1840
|
+
throw new UnknownStatusCodeException15("The server returned an unknown status code: " + statusCode);
|
|
1716
1841
|
}
|
|
1717
1842
|
/**
|
|
1718
1843
|
* Returns a paginated list of connections
|
|
@@ -1742,7 +1867,7 @@ var BackendConnectionTag = class extends TagAbstract14 {
|
|
|
1742
1867
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1743
1868
|
throw new CommonMessageException(await response.json());
|
|
1744
1869
|
}
|
|
1745
|
-
throw new
|
|
1870
|
+
throw new UnknownStatusCodeException15("The server returned an unknown status code: " + statusCode);
|
|
1746
1871
|
}
|
|
1747
1872
|
/**
|
|
1748
1873
|
* Returns all available connection classes
|
|
@@ -1767,7 +1892,7 @@ var BackendConnectionTag = class extends TagAbstract14 {
|
|
|
1767
1892
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1768
1893
|
throw new CommonMessageException(await response.json());
|
|
1769
1894
|
}
|
|
1770
|
-
throw new
|
|
1895
|
+
throw new UnknownStatusCodeException15("The server returned an unknown status code: " + statusCode);
|
|
1771
1896
|
}
|
|
1772
1897
|
/**
|
|
1773
1898
|
* Returns the connection config form
|
|
@@ -1794,7 +1919,7 @@ var BackendConnectionTag = class extends TagAbstract14 {
|
|
|
1794
1919
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1795
1920
|
throw new CommonMessageException(await response.json());
|
|
1796
1921
|
}
|
|
1797
|
-
throw new
|
|
1922
|
+
throw new UnknownStatusCodeException15("The server returned an unknown status code: " + statusCode);
|
|
1798
1923
|
}
|
|
1799
1924
|
/**
|
|
1800
1925
|
* Returns a redirect url to start the OAuth2 authorization flow for the given connection
|
|
@@ -1821,7 +1946,7 @@ var BackendConnectionTag = class extends TagAbstract14 {
|
|
|
1821
1946
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1822
1947
|
throw new CommonMessageException(await response.json());
|
|
1823
1948
|
}
|
|
1824
|
-
throw new
|
|
1949
|
+
throw new UnknownStatusCodeException15("The server returned an unknown status code: " + statusCode);
|
|
1825
1950
|
}
|
|
1826
1951
|
/**
|
|
1827
1952
|
* Updates an existing connection
|
|
@@ -1851,14 +1976,14 @@ var BackendConnectionTag = class extends TagAbstract14 {
|
|
|
1851
1976
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1852
1977
|
throw new CommonMessageException(await response.json());
|
|
1853
1978
|
}
|
|
1854
|
-
throw new
|
|
1979
|
+
throw new UnknownStatusCodeException15("The server returned an unknown status code: " + statusCode);
|
|
1855
1980
|
}
|
|
1856
1981
|
};
|
|
1857
1982
|
|
|
1858
1983
|
// src/BackendCronjobTag.ts
|
|
1859
|
-
import { TagAbstract as
|
|
1860
|
-
import { UnknownStatusCodeException as
|
|
1861
|
-
var BackendCronjobTag = class extends
|
|
1984
|
+
import { TagAbstract as TagAbstract16 } from "sdkgen-client";
|
|
1985
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException16 } from "sdkgen-client";
|
|
1986
|
+
var BackendCronjobTag = class extends TagAbstract16 {
|
|
1862
1987
|
/**
|
|
1863
1988
|
* Creates a new cronjob
|
|
1864
1989
|
*
|
|
@@ -1885,7 +2010,7 @@ var BackendCronjobTag = class extends TagAbstract15 {
|
|
|
1885
2010
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1886
2011
|
throw new CommonMessageException(await response.json());
|
|
1887
2012
|
}
|
|
1888
|
-
throw new
|
|
2013
|
+
throw new UnknownStatusCodeException16("The server returned an unknown status code: " + statusCode);
|
|
1889
2014
|
}
|
|
1890
2015
|
/**
|
|
1891
2016
|
* Deletes an existing cronjob
|
|
@@ -1912,7 +2037,7 @@ var BackendCronjobTag = class extends TagAbstract15 {
|
|
|
1912
2037
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1913
2038
|
throw new CommonMessageException(await response.json());
|
|
1914
2039
|
}
|
|
1915
|
-
throw new
|
|
2040
|
+
throw new UnknownStatusCodeException16("The server returned an unknown status code: " + statusCode);
|
|
1916
2041
|
}
|
|
1917
2042
|
/**
|
|
1918
2043
|
* Returns a specific cronjob
|
|
@@ -1939,7 +2064,7 @@ var BackendCronjobTag = class extends TagAbstract15 {
|
|
|
1939
2064
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1940
2065
|
throw new CommonMessageException(await response.json());
|
|
1941
2066
|
}
|
|
1942
|
-
throw new
|
|
2067
|
+
throw new UnknownStatusCodeException16("The server returned an unknown status code: " + statusCode);
|
|
1943
2068
|
}
|
|
1944
2069
|
/**
|
|
1945
2070
|
* Returns a paginated list of cronjobs
|
|
@@ -1968,7 +2093,7 @@ var BackendCronjobTag = class extends TagAbstract15 {
|
|
|
1968
2093
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1969
2094
|
throw new CommonMessageException(await response.json());
|
|
1970
2095
|
}
|
|
1971
|
-
throw new
|
|
2096
|
+
throw new UnknownStatusCodeException16("The server returned an unknown status code: " + statusCode);
|
|
1972
2097
|
}
|
|
1973
2098
|
/**
|
|
1974
2099
|
* Updates an existing cronjob
|
|
@@ -1998,14 +2123,14 @@ var BackendCronjobTag = class extends TagAbstract15 {
|
|
|
1998
2123
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1999
2124
|
throw new CommonMessageException(await response.json());
|
|
2000
2125
|
}
|
|
2001
|
-
throw new
|
|
2126
|
+
throw new UnknownStatusCodeException16("The server returned an unknown status code: " + statusCode);
|
|
2002
2127
|
}
|
|
2003
2128
|
};
|
|
2004
2129
|
|
|
2005
2130
|
// src/BackendDashboardTag.ts
|
|
2006
|
-
import { TagAbstract as
|
|
2007
|
-
import { UnknownStatusCodeException as
|
|
2008
|
-
var BackendDashboardTag = class extends
|
|
2131
|
+
import { TagAbstract as TagAbstract17 } from "sdkgen-client";
|
|
2132
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException17 } from "sdkgen-client";
|
|
2133
|
+
var BackendDashboardTag = class extends TagAbstract17 {
|
|
2009
2134
|
/**
|
|
2010
2135
|
* Returns all available dashboard widgets
|
|
2011
2136
|
*
|
|
@@ -2029,14 +2154,14 @@ var BackendDashboardTag = class extends TagAbstract16 {
|
|
|
2029
2154
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2030
2155
|
throw new CommonMessageException(await response.json());
|
|
2031
2156
|
}
|
|
2032
|
-
throw new
|
|
2157
|
+
throw new UnknownStatusCodeException17("The server returned an unknown status code: " + statusCode);
|
|
2033
2158
|
}
|
|
2034
2159
|
};
|
|
2035
2160
|
|
|
2036
2161
|
// src/BackendEventTag.ts
|
|
2037
|
-
import { TagAbstract as
|
|
2038
|
-
import { UnknownStatusCodeException as
|
|
2039
|
-
var BackendEventTag = class extends
|
|
2162
|
+
import { TagAbstract as TagAbstract18 } from "sdkgen-client";
|
|
2163
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException18 } from "sdkgen-client";
|
|
2164
|
+
var BackendEventTag = class extends TagAbstract18 {
|
|
2040
2165
|
/**
|
|
2041
2166
|
* Creates a new event
|
|
2042
2167
|
*
|
|
@@ -2063,7 +2188,7 @@ var BackendEventTag = class extends TagAbstract17 {
|
|
|
2063
2188
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2064
2189
|
throw new CommonMessageException(await response.json());
|
|
2065
2190
|
}
|
|
2066
|
-
throw new
|
|
2191
|
+
throw new UnknownStatusCodeException18("The server returned an unknown status code: " + statusCode);
|
|
2067
2192
|
}
|
|
2068
2193
|
/**
|
|
2069
2194
|
* Deletes an existing event
|
|
@@ -2090,7 +2215,7 @@ var BackendEventTag = class extends TagAbstract17 {
|
|
|
2090
2215
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2091
2216
|
throw new CommonMessageException(await response.json());
|
|
2092
2217
|
}
|
|
2093
|
-
throw new
|
|
2218
|
+
throw new UnknownStatusCodeException18("The server returned an unknown status code: " + statusCode);
|
|
2094
2219
|
}
|
|
2095
2220
|
/**
|
|
2096
2221
|
* Returns a specific event
|
|
@@ -2117,7 +2242,7 @@ var BackendEventTag = class extends TagAbstract17 {
|
|
|
2117
2242
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2118
2243
|
throw new CommonMessageException(await response.json());
|
|
2119
2244
|
}
|
|
2120
|
-
throw new
|
|
2245
|
+
throw new UnknownStatusCodeException18("The server returned an unknown status code: " + statusCode);
|
|
2121
2246
|
}
|
|
2122
2247
|
/**
|
|
2123
2248
|
* Returns a paginated list of events
|
|
@@ -2146,7 +2271,7 @@ var BackendEventTag = class extends TagAbstract17 {
|
|
|
2146
2271
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2147
2272
|
throw new CommonMessageException(await response.json());
|
|
2148
2273
|
}
|
|
2149
|
-
throw new
|
|
2274
|
+
throw new UnknownStatusCodeException18("The server returned an unknown status code: " + statusCode);
|
|
2150
2275
|
}
|
|
2151
2276
|
/**
|
|
2152
2277
|
* Updates an existing event
|
|
@@ -2176,14 +2301,14 @@ var BackendEventTag = class extends TagAbstract17 {
|
|
|
2176
2301
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2177
2302
|
throw new CommonMessageException(await response.json());
|
|
2178
2303
|
}
|
|
2179
|
-
throw new
|
|
2304
|
+
throw new UnknownStatusCodeException18("The server returned an unknown status code: " + statusCode);
|
|
2180
2305
|
}
|
|
2181
2306
|
};
|
|
2182
2307
|
|
|
2183
2308
|
// src/BackendFirewallTag.ts
|
|
2184
|
-
import { TagAbstract as
|
|
2185
|
-
import { UnknownStatusCodeException as
|
|
2186
|
-
var BackendFirewallTag = class extends
|
|
2309
|
+
import { TagAbstract as TagAbstract19 } from "sdkgen-client";
|
|
2310
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException19 } from "sdkgen-client";
|
|
2311
|
+
var BackendFirewallTag = class extends TagAbstract19 {
|
|
2187
2312
|
/**
|
|
2188
2313
|
* Creates a new firewall rule
|
|
2189
2314
|
*
|
|
@@ -2210,7 +2335,7 @@ var BackendFirewallTag = class extends TagAbstract18 {
|
|
|
2210
2335
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2211
2336
|
throw new CommonMessageException(await response.json());
|
|
2212
2337
|
}
|
|
2213
|
-
throw new
|
|
2338
|
+
throw new UnknownStatusCodeException19("The server returned an unknown status code: " + statusCode);
|
|
2214
2339
|
}
|
|
2215
2340
|
/**
|
|
2216
2341
|
* Deletes an existing firewall rule
|
|
@@ -2237,7 +2362,7 @@ var BackendFirewallTag = class extends TagAbstract18 {
|
|
|
2237
2362
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2238
2363
|
throw new CommonMessageException(await response.json());
|
|
2239
2364
|
}
|
|
2240
|
-
throw new
|
|
2365
|
+
throw new UnknownStatusCodeException19("The server returned an unknown status code: " + statusCode);
|
|
2241
2366
|
}
|
|
2242
2367
|
/**
|
|
2243
2368
|
* Returns a specific firewall rule
|
|
@@ -2264,7 +2389,7 @@ var BackendFirewallTag = class extends TagAbstract18 {
|
|
|
2264
2389
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2265
2390
|
throw new CommonMessageException(await response.json());
|
|
2266
2391
|
}
|
|
2267
|
-
throw new
|
|
2392
|
+
throw new UnknownStatusCodeException19("The server returned an unknown status code: " + statusCode);
|
|
2268
2393
|
}
|
|
2269
2394
|
/**
|
|
2270
2395
|
* Returns a paginated list of firewall rules
|
|
@@ -2293,7 +2418,7 @@ var BackendFirewallTag = class extends TagAbstract18 {
|
|
|
2293
2418
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2294
2419
|
throw new CommonMessageException(await response.json());
|
|
2295
2420
|
}
|
|
2296
|
-
throw new
|
|
2421
|
+
throw new UnknownStatusCodeException19("The server returned an unknown status code: " + statusCode);
|
|
2297
2422
|
}
|
|
2298
2423
|
/**
|
|
2299
2424
|
* Updates an existing firewall rule
|
|
@@ -2323,14 +2448,14 @@ var BackendFirewallTag = class extends TagAbstract18 {
|
|
|
2323
2448
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2324
2449
|
throw new CommonMessageException(await response.json());
|
|
2325
2450
|
}
|
|
2326
|
-
throw new
|
|
2451
|
+
throw new UnknownStatusCodeException19("The server returned an unknown status code: " + statusCode);
|
|
2327
2452
|
}
|
|
2328
2453
|
};
|
|
2329
2454
|
|
|
2330
2455
|
// src/BackendFormTag.ts
|
|
2331
|
-
import { TagAbstract as
|
|
2332
|
-
import { UnknownStatusCodeException as
|
|
2333
|
-
var BackendFormTag = class extends
|
|
2456
|
+
import { TagAbstract as TagAbstract20 } from "sdkgen-client";
|
|
2457
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException20 } from "sdkgen-client";
|
|
2458
|
+
var BackendFormTag = class extends TagAbstract20 {
|
|
2334
2459
|
/**
|
|
2335
2460
|
* Creates a new form
|
|
2336
2461
|
*
|
|
@@ -2357,7 +2482,7 @@ var BackendFormTag = class extends TagAbstract19 {
|
|
|
2357
2482
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2358
2483
|
throw new CommonMessageException(await response.json());
|
|
2359
2484
|
}
|
|
2360
|
-
throw new
|
|
2485
|
+
throw new UnknownStatusCodeException20("The server returned an unknown status code: " + statusCode);
|
|
2361
2486
|
}
|
|
2362
2487
|
/**
|
|
2363
2488
|
* Deletes an existing form
|
|
@@ -2384,7 +2509,7 @@ var BackendFormTag = class extends TagAbstract19 {
|
|
|
2384
2509
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2385
2510
|
throw new CommonMessageException(await response.json());
|
|
2386
2511
|
}
|
|
2387
|
-
throw new
|
|
2512
|
+
throw new UnknownStatusCodeException20("The server returned an unknown status code: " + statusCode);
|
|
2388
2513
|
}
|
|
2389
2514
|
/**
|
|
2390
2515
|
* Returns a specific form
|
|
@@ -2411,7 +2536,7 @@ var BackendFormTag = class extends TagAbstract19 {
|
|
|
2411
2536
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2412
2537
|
throw new CommonMessageException(await response.json());
|
|
2413
2538
|
}
|
|
2414
|
-
throw new
|
|
2539
|
+
throw new UnknownStatusCodeException20("The server returned an unknown status code: " + statusCode);
|
|
2415
2540
|
}
|
|
2416
2541
|
/**
|
|
2417
2542
|
* Returns a paginated list of forms
|
|
@@ -2440,7 +2565,7 @@ var BackendFormTag = class extends TagAbstract19 {
|
|
|
2440
2565
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2441
2566
|
throw new CommonMessageException(await response.json());
|
|
2442
2567
|
}
|
|
2443
|
-
throw new
|
|
2568
|
+
throw new UnknownStatusCodeException20("The server returned an unknown status code: " + statusCode);
|
|
2444
2569
|
}
|
|
2445
2570
|
/**
|
|
2446
2571
|
* Updates an existing form
|
|
@@ -2470,14 +2595,14 @@ var BackendFormTag = class extends TagAbstract19 {
|
|
|
2470
2595
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2471
2596
|
throw new CommonMessageException(await response.json());
|
|
2472
2597
|
}
|
|
2473
|
-
throw new
|
|
2598
|
+
throw new UnknownStatusCodeException20("The server returned an unknown status code: " + statusCode);
|
|
2474
2599
|
}
|
|
2475
2600
|
};
|
|
2476
2601
|
|
|
2477
2602
|
// src/BackendGeneratorTag.ts
|
|
2478
|
-
import { TagAbstract as
|
|
2479
|
-
import { UnknownStatusCodeException as
|
|
2480
|
-
var BackendGeneratorTag = class extends
|
|
2603
|
+
import { TagAbstract as TagAbstract21 } from "sdkgen-client";
|
|
2604
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException21 } from "sdkgen-client";
|
|
2605
|
+
var BackendGeneratorTag = class extends TagAbstract21 {
|
|
2481
2606
|
/**
|
|
2482
2607
|
* Executes a generator with the provided config
|
|
2483
2608
|
*
|
|
@@ -2506,7 +2631,7 @@ var BackendGeneratorTag = class extends TagAbstract20 {
|
|
|
2506
2631
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2507
2632
|
throw new CommonMessageException(await response.json());
|
|
2508
2633
|
}
|
|
2509
|
-
throw new
|
|
2634
|
+
throw new UnknownStatusCodeException21("The server returned an unknown status code: " + statusCode);
|
|
2510
2635
|
}
|
|
2511
2636
|
/**
|
|
2512
2637
|
* Generates a changelog of all potential changes if you execute this generator with the provided config
|
|
@@ -2536,7 +2661,7 @@ var BackendGeneratorTag = class extends TagAbstract20 {
|
|
|
2536
2661
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2537
2662
|
throw new CommonMessageException(await response.json());
|
|
2538
2663
|
}
|
|
2539
|
-
throw new
|
|
2664
|
+
throw new UnknownStatusCodeException21("The server returned an unknown status code: " + statusCode);
|
|
2540
2665
|
}
|
|
2541
2666
|
/**
|
|
2542
2667
|
* Returns all available generator classes
|
|
@@ -2561,7 +2686,7 @@ var BackendGeneratorTag = class extends TagAbstract20 {
|
|
|
2561
2686
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2562
2687
|
throw new CommonMessageException(await response.json());
|
|
2563
2688
|
}
|
|
2564
|
-
throw new
|
|
2689
|
+
throw new UnknownStatusCodeException21("The server returned an unknown status code: " + statusCode);
|
|
2565
2690
|
}
|
|
2566
2691
|
/**
|
|
2567
2692
|
* Returns the generator config form
|
|
@@ -2588,14 +2713,14 @@ var BackendGeneratorTag = class extends TagAbstract20 {
|
|
|
2588
2713
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2589
2714
|
throw new CommonMessageException(await response.json());
|
|
2590
2715
|
}
|
|
2591
|
-
throw new
|
|
2716
|
+
throw new UnknownStatusCodeException21("The server returned an unknown status code: " + statusCode);
|
|
2592
2717
|
}
|
|
2593
2718
|
};
|
|
2594
2719
|
|
|
2595
2720
|
// src/BackendIdentityTag.ts
|
|
2596
|
-
import { TagAbstract as
|
|
2597
|
-
import { UnknownStatusCodeException as
|
|
2598
|
-
var BackendIdentityTag = class extends
|
|
2721
|
+
import { TagAbstract as TagAbstract22 } from "sdkgen-client";
|
|
2722
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException22 } from "sdkgen-client";
|
|
2723
|
+
var BackendIdentityTag = class extends TagAbstract22 {
|
|
2599
2724
|
/**
|
|
2600
2725
|
* Creates a new identity
|
|
2601
2726
|
*
|
|
@@ -2622,7 +2747,7 @@ var BackendIdentityTag = class extends TagAbstract21 {
|
|
|
2622
2747
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2623
2748
|
throw new CommonMessageException(await response.json());
|
|
2624
2749
|
}
|
|
2625
|
-
throw new
|
|
2750
|
+
throw new UnknownStatusCodeException22("The server returned an unknown status code: " + statusCode);
|
|
2626
2751
|
}
|
|
2627
2752
|
/**
|
|
2628
2753
|
* Deletes an existing identity
|
|
@@ -2649,7 +2774,7 @@ var BackendIdentityTag = class extends TagAbstract21 {
|
|
|
2649
2774
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2650
2775
|
throw new CommonMessageException(await response.json());
|
|
2651
2776
|
}
|
|
2652
|
-
throw new
|
|
2777
|
+
throw new UnknownStatusCodeException22("The server returned an unknown status code: " + statusCode);
|
|
2653
2778
|
}
|
|
2654
2779
|
/**
|
|
2655
2780
|
* Returns a specific identity
|
|
@@ -2676,7 +2801,7 @@ var BackendIdentityTag = class extends TagAbstract21 {
|
|
|
2676
2801
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2677
2802
|
throw new CommonMessageException(await response.json());
|
|
2678
2803
|
}
|
|
2679
|
-
throw new
|
|
2804
|
+
throw new UnknownStatusCodeException22("The server returned an unknown status code: " + statusCode);
|
|
2680
2805
|
}
|
|
2681
2806
|
/**
|
|
2682
2807
|
* Returns a paginated list of identities
|
|
@@ -2705,7 +2830,7 @@ var BackendIdentityTag = class extends TagAbstract21 {
|
|
|
2705
2830
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2706
2831
|
throw new CommonMessageException(await response.json());
|
|
2707
2832
|
}
|
|
2708
|
-
throw new
|
|
2833
|
+
throw new UnknownStatusCodeException22("The server returned an unknown status code: " + statusCode);
|
|
2709
2834
|
}
|
|
2710
2835
|
/**
|
|
2711
2836
|
* Returns all available identity classes
|
|
@@ -2730,7 +2855,7 @@ var BackendIdentityTag = class extends TagAbstract21 {
|
|
|
2730
2855
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2731
2856
|
throw new CommonMessageException(await response.json());
|
|
2732
2857
|
}
|
|
2733
|
-
throw new
|
|
2858
|
+
throw new UnknownStatusCodeException22("The server returned an unknown status code: " + statusCode);
|
|
2734
2859
|
}
|
|
2735
2860
|
/**
|
|
2736
2861
|
* Returns the identity config form
|
|
@@ -2757,7 +2882,7 @@ var BackendIdentityTag = class extends TagAbstract21 {
|
|
|
2757
2882
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2758
2883
|
throw new CommonMessageException(await response.json());
|
|
2759
2884
|
}
|
|
2760
|
-
throw new
|
|
2885
|
+
throw new UnknownStatusCodeException22("The server returned an unknown status code: " + statusCode);
|
|
2761
2886
|
}
|
|
2762
2887
|
/**
|
|
2763
2888
|
* Updates an existing identity
|
|
@@ -2787,14 +2912,14 @@ var BackendIdentityTag = class extends TagAbstract21 {
|
|
|
2787
2912
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2788
2913
|
throw new CommonMessageException(await response.json());
|
|
2789
2914
|
}
|
|
2790
|
-
throw new
|
|
2915
|
+
throw new UnknownStatusCodeException22("The server returned an unknown status code: " + statusCode);
|
|
2791
2916
|
}
|
|
2792
2917
|
};
|
|
2793
2918
|
|
|
2794
2919
|
// src/BackendLogTag.ts
|
|
2795
|
-
import { TagAbstract as
|
|
2796
|
-
import { UnknownStatusCodeException as
|
|
2797
|
-
var BackendLogTag = class extends
|
|
2920
|
+
import { TagAbstract as TagAbstract23 } from "sdkgen-client";
|
|
2921
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException23 } from "sdkgen-client";
|
|
2922
|
+
var BackendLogTag = class extends TagAbstract23 {
|
|
2798
2923
|
/**
|
|
2799
2924
|
* Returns a specific log
|
|
2800
2925
|
*
|
|
@@ -2820,7 +2945,7 @@ var BackendLogTag = class extends TagAbstract22 {
|
|
|
2820
2945
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2821
2946
|
throw new CommonMessageException(await response.json());
|
|
2822
2947
|
}
|
|
2823
|
-
throw new
|
|
2948
|
+
throw new UnknownStatusCodeException23("The server returned an unknown status code: " + statusCode);
|
|
2824
2949
|
}
|
|
2825
2950
|
/**
|
|
2826
2951
|
* Returns a paginated list of logs
|
|
@@ -2860,7 +2985,7 @@ var BackendLogTag = class extends TagAbstract22 {
|
|
|
2860
2985
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2861
2986
|
throw new CommonMessageException(await response.json());
|
|
2862
2987
|
}
|
|
2863
|
-
throw new
|
|
2988
|
+
throw new UnknownStatusCodeException23("The server returned an unknown status code: " + statusCode);
|
|
2864
2989
|
}
|
|
2865
2990
|
/**
|
|
2866
2991
|
* Returns a paginated list of log errors
|
|
@@ -2889,7 +3014,7 @@ var BackendLogTag = class extends TagAbstract22 {
|
|
|
2889
3014
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2890
3015
|
throw new CommonMessageException(await response.json());
|
|
2891
3016
|
}
|
|
2892
|
-
throw new
|
|
3017
|
+
throw new UnknownStatusCodeException23("The server returned an unknown status code: " + statusCode);
|
|
2893
3018
|
}
|
|
2894
3019
|
/**
|
|
2895
3020
|
* Returns a specific error
|
|
@@ -2916,14 +3041,14 @@ var BackendLogTag = class extends TagAbstract22 {
|
|
|
2916
3041
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2917
3042
|
throw new CommonMessageException(await response.json());
|
|
2918
3043
|
}
|
|
2919
|
-
throw new
|
|
3044
|
+
throw new UnknownStatusCodeException23("The server returned an unknown status code: " + statusCode);
|
|
2920
3045
|
}
|
|
2921
3046
|
};
|
|
2922
3047
|
|
|
2923
3048
|
// src/BackendMarketplaceActionTag.ts
|
|
2924
|
-
import { TagAbstract as
|
|
2925
|
-
import { UnknownStatusCodeException as
|
|
2926
|
-
var BackendMarketplaceActionTag = class extends
|
|
3049
|
+
import { TagAbstract as TagAbstract24 } from "sdkgen-client";
|
|
3050
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException24 } from "sdkgen-client";
|
|
3051
|
+
var BackendMarketplaceActionTag = class extends TagAbstract24 {
|
|
2927
3052
|
/**
|
|
2928
3053
|
* Returns a specific marketplace action
|
|
2929
3054
|
*
|
|
@@ -2950,7 +3075,7 @@ var BackendMarketplaceActionTag = class extends TagAbstract23 {
|
|
|
2950
3075
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2951
3076
|
throw new CommonMessageException(await response.json());
|
|
2952
3077
|
}
|
|
2953
|
-
throw new
|
|
3078
|
+
throw new UnknownStatusCodeException24("The server returned an unknown status code: " + statusCode);
|
|
2954
3079
|
}
|
|
2955
3080
|
/**
|
|
2956
3081
|
* Returns a paginated list of marketplace actions
|
|
@@ -2978,7 +3103,7 @@ var BackendMarketplaceActionTag = class extends TagAbstract23 {
|
|
|
2978
3103
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2979
3104
|
throw new CommonMessageException(await response.json());
|
|
2980
3105
|
}
|
|
2981
|
-
throw new
|
|
3106
|
+
throw new UnknownStatusCodeException24("The server returned an unknown status code: " + statusCode);
|
|
2982
3107
|
}
|
|
2983
3108
|
/**
|
|
2984
3109
|
* Installs an action from the marketplace
|
|
@@ -3006,7 +3131,7 @@ var BackendMarketplaceActionTag = class extends TagAbstract23 {
|
|
|
3006
3131
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3007
3132
|
throw new CommonMessageException(await response.json());
|
|
3008
3133
|
}
|
|
3009
|
-
throw new
|
|
3134
|
+
throw new UnknownStatusCodeException24("The server returned an unknown status code: " + statusCode);
|
|
3010
3135
|
}
|
|
3011
3136
|
/**
|
|
3012
3137
|
* Upgrades an action from the marketplace
|
|
@@ -3034,14 +3159,14 @@ var BackendMarketplaceActionTag = class extends TagAbstract23 {
|
|
|
3034
3159
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3035
3160
|
throw new CommonMessageException(await response.json());
|
|
3036
3161
|
}
|
|
3037
|
-
throw new
|
|
3162
|
+
throw new UnknownStatusCodeException24("The server returned an unknown status code: " + statusCode);
|
|
3038
3163
|
}
|
|
3039
3164
|
};
|
|
3040
3165
|
|
|
3041
3166
|
// src/BackendMarketplaceAppTag.ts
|
|
3042
|
-
import { TagAbstract as
|
|
3043
|
-
import { UnknownStatusCodeException as
|
|
3044
|
-
var BackendMarketplaceAppTag = class extends
|
|
3167
|
+
import { TagAbstract as TagAbstract25 } from "sdkgen-client";
|
|
3168
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException25 } from "sdkgen-client";
|
|
3169
|
+
var BackendMarketplaceAppTag = class extends TagAbstract25 {
|
|
3045
3170
|
/**
|
|
3046
3171
|
* Returns a specific marketplace app
|
|
3047
3172
|
*
|
|
@@ -3068,7 +3193,7 @@ var BackendMarketplaceAppTag = class extends TagAbstract24 {
|
|
|
3068
3193
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3069
3194
|
throw new CommonMessageException(await response.json());
|
|
3070
3195
|
}
|
|
3071
|
-
throw new
|
|
3196
|
+
throw new UnknownStatusCodeException25("The server returned an unknown status code: " + statusCode);
|
|
3072
3197
|
}
|
|
3073
3198
|
/**
|
|
3074
3199
|
* Returns a paginated list of marketplace apps
|
|
@@ -3096,7 +3221,7 @@ var BackendMarketplaceAppTag = class extends TagAbstract24 {
|
|
|
3096
3221
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3097
3222
|
throw new CommonMessageException(await response.json());
|
|
3098
3223
|
}
|
|
3099
|
-
throw new
|
|
3224
|
+
throw new UnknownStatusCodeException25("The server returned an unknown status code: " + statusCode);
|
|
3100
3225
|
}
|
|
3101
3226
|
/**
|
|
3102
3227
|
* Installs an app from the marketplace
|
|
@@ -3124,7 +3249,7 @@ var BackendMarketplaceAppTag = class extends TagAbstract24 {
|
|
|
3124
3249
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3125
3250
|
throw new CommonMessageException(await response.json());
|
|
3126
3251
|
}
|
|
3127
|
-
throw new
|
|
3252
|
+
throw new UnknownStatusCodeException25("The server returned an unknown status code: " + statusCode);
|
|
3128
3253
|
}
|
|
3129
3254
|
/**
|
|
3130
3255
|
* Upgrades an app from the marketplace
|
|
@@ -3152,14 +3277,14 @@ var BackendMarketplaceAppTag = class extends TagAbstract24 {
|
|
|
3152
3277
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3153
3278
|
throw new CommonMessageException(await response.json());
|
|
3154
3279
|
}
|
|
3155
|
-
throw new
|
|
3280
|
+
throw new UnknownStatusCodeException25("The server returned an unknown status code: " + statusCode);
|
|
3156
3281
|
}
|
|
3157
3282
|
};
|
|
3158
3283
|
|
|
3159
3284
|
// src/BackendMarketplaceBundleTag.ts
|
|
3160
|
-
import { TagAbstract as
|
|
3161
|
-
import { UnknownStatusCodeException as
|
|
3162
|
-
var BackendMarketplaceBundleTag = class extends
|
|
3285
|
+
import { TagAbstract as TagAbstract26 } from "sdkgen-client";
|
|
3286
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException26 } from "sdkgen-client";
|
|
3287
|
+
var BackendMarketplaceBundleTag = class extends TagAbstract26 {
|
|
3163
3288
|
/**
|
|
3164
3289
|
* Returns a specific marketplace bundle
|
|
3165
3290
|
*
|
|
@@ -3186,7 +3311,7 @@ var BackendMarketplaceBundleTag = class extends TagAbstract25 {
|
|
|
3186
3311
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3187
3312
|
throw new CommonMessageException(await response.json());
|
|
3188
3313
|
}
|
|
3189
|
-
throw new
|
|
3314
|
+
throw new UnknownStatusCodeException26("The server returned an unknown status code: " + statusCode);
|
|
3190
3315
|
}
|
|
3191
3316
|
/**
|
|
3192
3317
|
* Returns a paginated list of marketplace bundles
|
|
@@ -3214,7 +3339,7 @@ var BackendMarketplaceBundleTag = class extends TagAbstract25 {
|
|
|
3214
3339
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3215
3340
|
throw new CommonMessageException(await response.json());
|
|
3216
3341
|
}
|
|
3217
|
-
throw new
|
|
3342
|
+
throw new UnknownStatusCodeException26("The server returned an unknown status code: " + statusCode);
|
|
3218
3343
|
}
|
|
3219
3344
|
/**
|
|
3220
3345
|
* Installs an bundle from the marketplace
|
|
@@ -3242,7 +3367,7 @@ var BackendMarketplaceBundleTag = class extends TagAbstract25 {
|
|
|
3242
3367
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3243
3368
|
throw new CommonMessageException(await response.json());
|
|
3244
3369
|
}
|
|
3245
|
-
throw new
|
|
3370
|
+
throw new UnknownStatusCodeException26("The server returned an unknown status code: " + statusCode);
|
|
3246
3371
|
}
|
|
3247
3372
|
/**
|
|
3248
3373
|
* Upgrades an bundle from the marketplace
|
|
@@ -3270,13 +3395,13 @@ var BackendMarketplaceBundleTag = class extends TagAbstract25 {
|
|
|
3270
3395
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3271
3396
|
throw new CommonMessageException(await response.json());
|
|
3272
3397
|
}
|
|
3273
|
-
throw new
|
|
3398
|
+
throw new UnknownStatusCodeException26("The server returned an unknown status code: " + statusCode);
|
|
3274
3399
|
}
|
|
3275
3400
|
};
|
|
3276
3401
|
|
|
3277
3402
|
// src/BackendMarketplaceTag.ts
|
|
3278
|
-
import { TagAbstract as
|
|
3279
|
-
var BackendMarketplaceTag = class extends
|
|
3403
|
+
import { TagAbstract as TagAbstract27 } from "sdkgen-client";
|
|
3404
|
+
var BackendMarketplaceTag = class extends TagAbstract27 {
|
|
3280
3405
|
action() {
|
|
3281
3406
|
return new BackendMarketplaceActionTag(
|
|
3282
3407
|
this.httpClient,
|
|
@@ -3298,9 +3423,9 @@ var BackendMarketplaceTag = class extends TagAbstract26 {
|
|
|
3298
3423
|
};
|
|
3299
3424
|
|
|
3300
3425
|
// src/BackendOperationTag.ts
|
|
3301
|
-
import { TagAbstract as
|
|
3302
|
-
import { UnknownStatusCodeException as
|
|
3303
|
-
var BackendOperationTag = class extends
|
|
3426
|
+
import { TagAbstract as TagAbstract28 } from "sdkgen-client";
|
|
3427
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException27 } from "sdkgen-client";
|
|
3428
|
+
var BackendOperationTag = class extends TagAbstract28 {
|
|
3304
3429
|
/**
|
|
3305
3430
|
* Creates a new operation
|
|
3306
3431
|
*
|
|
@@ -3327,7 +3452,7 @@ var BackendOperationTag = class extends TagAbstract27 {
|
|
|
3327
3452
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3328
3453
|
throw new CommonMessageException(await response.json());
|
|
3329
3454
|
}
|
|
3330
|
-
throw new
|
|
3455
|
+
throw new UnknownStatusCodeException27("The server returned an unknown status code: " + statusCode);
|
|
3331
3456
|
}
|
|
3332
3457
|
/**
|
|
3333
3458
|
* Deletes an existing operation
|
|
@@ -3354,7 +3479,7 @@ var BackendOperationTag = class extends TagAbstract27 {
|
|
|
3354
3479
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3355
3480
|
throw new CommonMessageException(await response.json());
|
|
3356
3481
|
}
|
|
3357
|
-
throw new
|
|
3482
|
+
throw new UnknownStatusCodeException27("The server returned an unknown status code: " + statusCode);
|
|
3358
3483
|
}
|
|
3359
3484
|
/**
|
|
3360
3485
|
* Returns a specific operation
|
|
@@ -3381,7 +3506,7 @@ var BackendOperationTag = class extends TagAbstract27 {
|
|
|
3381
3506
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3382
3507
|
throw new CommonMessageException(await response.json());
|
|
3383
3508
|
}
|
|
3384
|
-
throw new
|
|
3509
|
+
throw new UnknownStatusCodeException27("The server returned an unknown status code: " + statusCode);
|
|
3385
3510
|
}
|
|
3386
3511
|
/**
|
|
3387
3512
|
* Returns a paginated list of operations
|
|
@@ -3410,7 +3535,7 @@ var BackendOperationTag = class extends TagAbstract27 {
|
|
|
3410
3535
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3411
3536
|
throw new CommonMessageException(await response.json());
|
|
3412
3537
|
}
|
|
3413
|
-
throw new
|
|
3538
|
+
throw new UnknownStatusCodeException27("The server returned an unknown status code: " + statusCode);
|
|
3414
3539
|
}
|
|
3415
3540
|
/**
|
|
3416
3541
|
* Updates an existing operation
|
|
@@ -3440,14 +3565,14 @@ var BackendOperationTag = class extends TagAbstract27 {
|
|
|
3440
3565
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3441
3566
|
throw new CommonMessageException(await response.json());
|
|
3442
3567
|
}
|
|
3443
|
-
throw new
|
|
3568
|
+
throw new UnknownStatusCodeException27("The server returned an unknown status code: " + statusCode);
|
|
3444
3569
|
}
|
|
3445
3570
|
};
|
|
3446
3571
|
|
|
3447
3572
|
// src/BackendPageTag.ts
|
|
3448
|
-
import { TagAbstract as
|
|
3449
|
-
import { UnknownStatusCodeException as
|
|
3450
|
-
var BackendPageTag = class extends
|
|
3573
|
+
import { TagAbstract as TagAbstract29 } from "sdkgen-client";
|
|
3574
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException28 } from "sdkgen-client";
|
|
3575
|
+
var BackendPageTag = class extends TagAbstract29 {
|
|
3451
3576
|
/**
|
|
3452
3577
|
* Creates a new page
|
|
3453
3578
|
*
|
|
@@ -3474,7 +3599,7 @@ var BackendPageTag = class extends TagAbstract28 {
|
|
|
3474
3599
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3475
3600
|
throw new CommonMessageException(await response.json());
|
|
3476
3601
|
}
|
|
3477
|
-
throw new
|
|
3602
|
+
throw new UnknownStatusCodeException28("The server returned an unknown status code: " + statusCode);
|
|
3478
3603
|
}
|
|
3479
3604
|
/**
|
|
3480
3605
|
* Deletes an existing page
|
|
@@ -3501,7 +3626,7 @@ var BackendPageTag = class extends TagAbstract28 {
|
|
|
3501
3626
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3502
3627
|
throw new CommonMessageException(await response.json());
|
|
3503
3628
|
}
|
|
3504
|
-
throw new
|
|
3629
|
+
throw new UnknownStatusCodeException28("The server returned an unknown status code: " + statusCode);
|
|
3505
3630
|
}
|
|
3506
3631
|
/**
|
|
3507
3632
|
* Returns a specific page
|
|
@@ -3528,7 +3653,7 @@ var BackendPageTag = class extends TagAbstract28 {
|
|
|
3528
3653
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3529
3654
|
throw new CommonMessageException(await response.json());
|
|
3530
3655
|
}
|
|
3531
|
-
throw new
|
|
3656
|
+
throw new UnknownStatusCodeException28("The server returned an unknown status code: " + statusCode);
|
|
3532
3657
|
}
|
|
3533
3658
|
/**
|
|
3534
3659
|
* Returns a paginated list of pages
|
|
@@ -3557,7 +3682,7 @@ var BackendPageTag = class extends TagAbstract28 {
|
|
|
3557
3682
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3558
3683
|
throw new CommonMessageException(await response.json());
|
|
3559
3684
|
}
|
|
3560
|
-
throw new
|
|
3685
|
+
throw new UnknownStatusCodeException28("The server returned an unknown status code: " + statusCode);
|
|
3561
3686
|
}
|
|
3562
3687
|
/**
|
|
3563
3688
|
* Updates an existing page
|
|
@@ -3587,14 +3712,14 @@ var BackendPageTag = class extends TagAbstract28 {
|
|
|
3587
3712
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3588
3713
|
throw new CommonMessageException(await response.json());
|
|
3589
3714
|
}
|
|
3590
|
-
throw new
|
|
3715
|
+
throw new UnknownStatusCodeException28("The server returned an unknown status code: " + statusCode);
|
|
3591
3716
|
}
|
|
3592
3717
|
};
|
|
3593
3718
|
|
|
3594
3719
|
// src/BackendPlanTag.ts
|
|
3595
|
-
import { TagAbstract as
|
|
3596
|
-
import { UnknownStatusCodeException as
|
|
3597
|
-
var BackendPlanTag = class extends
|
|
3720
|
+
import { TagAbstract as TagAbstract30 } from "sdkgen-client";
|
|
3721
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException29 } from "sdkgen-client";
|
|
3722
|
+
var BackendPlanTag = class extends TagAbstract30 {
|
|
3598
3723
|
/**
|
|
3599
3724
|
* Creates a new plan
|
|
3600
3725
|
*
|
|
@@ -3621,7 +3746,7 @@ var BackendPlanTag = class extends TagAbstract29 {
|
|
|
3621
3746
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3622
3747
|
throw new CommonMessageException(await response.json());
|
|
3623
3748
|
}
|
|
3624
|
-
throw new
|
|
3749
|
+
throw new UnknownStatusCodeException29("The server returned an unknown status code: " + statusCode);
|
|
3625
3750
|
}
|
|
3626
3751
|
/**
|
|
3627
3752
|
* Deletes an existing plan
|
|
@@ -3648,7 +3773,7 @@ var BackendPlanTag = class extends TagAbstract29 {
|
|
|
3648
3773
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3649
3774
|
throw new CommonMessageException(await response.json());
|
|
3650
3775
|
}
|
|
3651
|
-
throw new
|
|
3776
|
+
throw new UnknownStatusCodeException29("The server returned an unknown status code: " + statusCode);
|
|
3652
3777
|
}
|
|
3653
3778
|
/**
|
|
3654
3779
|
* Returns a specific plan
|
|
@@ -3675,7 +3800,7 @@ var BackendPlanTag = class extends TagAbstract29 {
|
|
|
3675
3800
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3676
3801
|
throw new CommonMessageException(await response.json());
|
|
3677
3802
|
}
|
|
3678
|
-
throw new
|
|
3803
|
+
throw new UnknownStatusCodeException29("The server returned an unknown status code: " + statusCode);
|
|
3679
3804
|
}
|
|
3680
3805
|
/**
|
|
3681
3806
|
* Returns a paginated list of plans
|
|
@@ -3704,7 +3829,7 @@ var BackendPlanTag = class extends TagAbstract29 {
|
|
|
3704
3829
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3705
3830
|
throw new CommonMessageException(await response.json());
|
|
3706
3831
|
}
|
|
3707
|
-
throw new
|
|
3832
|
+
throw new UnknownStatusCodeException29("The server returned an unknown status code: " + statusCode);
|
|
3708
3833
|
}
|
|
3709
3834
|
/**
|
|
3710
3835
|
* Updates an existing plan
|
|
@@ -3734,14 +3859,14 @@ var BackendPlanTag = class extends TagAbstract29 {
|
|
|
3734
3859
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3735
3860
|
throw new CommonMessageException(await response.json());
|
|
3736
3861
|
}
|
|
3737
|
-
throw new
|
|
3862
|
+
throw new UnknownStatusCodeException29("The server returned an unknown status code: " + statusCode);
|
|
3738
3863
|
}
|
|
3739
3864
|
};
|
|
3740
3865
|
|
|
3741
3866
|
// src/BackendRateTag.ts
|
|
3742
|
-
import { TagAbstract as
|
|
3743
|
-
import { UnknownStatusCodeException as
|
|
3744
|
-
var BackendRateTag = class extends
|
|
3867
|
+
import { TagAbstract as TagAbstract31 } from "sdkgen-client";
|
|
3868
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException30 } from "sdkgen-client";
|
|
3869
|
+
var BackendRateTag = class extends TagAbstract31 {
|
|
3745
3870
|
/**
|
|
3746
3871
|
* Creates a new rate limitation
|
|
3747
3872
|
*
|
|
@@ -3768,7 +3893,7 @@ var BackendRateTag = class extends TagAbstract30 {
|
|
|
3768
3893
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3769
3894
|
throw new CommonMessageException(await response.json());
|
|
3770
3895
|
}
|
|
3771
|
-
throw new
|
|
3896
|
+
throw new UnknownStatusCodeException30("The server returned an unknown status code: " + statusCode);
|
|
3772
3897
|
}
|
|
3773
3898
|
/**
|
|
3774
3899
|
* Deletes an existing rate
|
|
@@ -3795,7 +3920,7 @@ var BackendRateTag = class extends TagAbstract30 {
|
|
|
3795
3920
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3796
3921
|
throw new CommonMessageException(await response.json());
|
|
3797
3922
|
}
|
|
3798
|
-
throw new
|
|
3923
|
+
throw new UnknownStatusCodeException30("The server returned an unknown status code: " + statusCode);
|
|
3799
3924
|
}
|
|
3800
3925
|
/**
|
|
3801
3926
|
* Returns a specific rate
|
|
@@ -3822,7 +3947,7 @@ var BackendRateTag = class extends TagAbstract30 {
|
|
|
3822
3947
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3823
3948
|
throw new CommonMessageException(await response.json());
|
|
3824
3949
|
}
|
|
3825
|
-
throw new
|
|
3950
|
+
throw new UnknownStatusCodeException30("The server returned an unknown status code: " + statusCode);
|
|
3826
3951
|
}
|
|
3827
3952
|
/**
|
|
3828
3953
|
* Returns a paginated list of rate limitations
|
|
@@ -3851,7 +3976,7 @@ var BackendRateTag = class extends TagAbstract30 {
|
|
|
3851
3976
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3852
3977
|
throw new CommonMessageException(await response.json());
|
|
3853
3978
|
}
|
|
3854
|
-
throw new
|
|
3979
|
+
throw new UnknownStatusCodeException30("The server returned an unknown status code: " + statusCode);
|
|
3855
3980
|
}
|
|
3856
3981
|
/**
|
|
3857
3982
|
* Updates an existing rate
|
|
@@ -3881,14 +4006,14 @@ var BackendRateTag = class extends TagAbstract30 {
|
|
|
3881
4006
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3882
4007
|
throw new CommonMessageException(await response.json());
|
|
3883
4008
|
}
|
|
3884
|
-
throw new
|
|
4009
|
+
throw new UnknownStatusCodeException30("The server returned an unknown status code: " + statusCode);
|
|
3885
4010
|
}
|
|
3886
4011
|
};
|
|
3887
4012
|
|
|
3888
4013
|
// src/BackendRoleTag.ts
|
|
3889
|
-
import { TagAbstract as
|
|
3890
|
-
import { UnknownStatusCodeException as
|
|
3891
|
-
var BackendRoleTag = class extends
|
|
4014
|
+
import { TagAbstract as TagAbstract32 } from "sdkgen-client";
|
|
4015
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException31 } from "sdkgen-client";
|
|
4016
|
+
var BackendRoleTag = class extends TagAbstract32 {
|
|
3892
4017
|
/**
|
|
3893
4018
|
* Creates a new role
|
|
3894
4019
|
*
|
|
@@ -3915,7 +4040,7 @@ var BackendRoleTag = class extends TagAbstract31 {
|
|
|
3915
4040
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3916
4041
|
throw new CommonMessageException(await response.json());
|
|
3917
4042
|
}
|
|
3918
|
-
throw new
|
|
4043
|
+
throw new UnknownStatusCodeException31("The server returned an unknown status code: " + statusCode);
|
|
3919
4044
|
}
|
|
3920
4045
|
/**
|
|
3921
4046
|
* Deletes an existing role
|
|
@@ -3942,7 +4067,7 @@ var BackendRoleTag = class extends TagAbstract31 {
|
|
|
3942
4067
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3943
4068
|
throw new CommonMessageException(await response.json());
|
|
3944
4069
|
}
|
|
3945
|
-
throw new
|
|
4070
|
+
throw new UnknownStatusCodeException31("The server returned an unknown status code: " + statusCode);
|
|
3946
4071
|
}
|
|
3947
4072
|
/**
|
|
3948
4073
|
* Returns a specific role
|
|
@@ -3969,7 +4094,7 @@ var BackendRoleTag = class extends TagAbstract31 {
|
|
|
3969
4094
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3970
4095
|
throw new CommonMessageException(await response.json());
|
|
3971
4096
|
}
|
|
3972
|
-
throw new
|
|
4097
|
+
throw new UnknownStatusCodeException31("The server returned an unknown status code: " + statusCode);
|
|
3973
4098
|
}
|
|
3974
4099
|
/**
|
|
3975
4100
|
* Returns a paginated list of roles
|
|
@@ -3998,7 +4123,7 @@ var BackendRoleTag = class extends TagAbstract31 {
|
|
|
3998
4123
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3999
4124
|
throw new CommonMessageException(await response.json());
|
|
4000
4125
|
}
|
|
4001
|
-
throw new
|
|
4126
|
+
throw new UnknownStatusCodeException31("The server returned an unknown status code: " + statusCode);
|
|
4002
4127
|
}
|
|
4003
4128
|
/**
|
|
4004
4129
|
* Updates an existing role
|
|
@@ -4028,14 +4153,14 @@ var BackendRoleTag = class extends TagAbstract31 {
|
|
|
4028
4153
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4029
4154
|
throw new CommonMessageException(await response.json());
|
|
4030
4155
|
}
|
|
4031
|
-
throw new
|
|
4156
|
+
throw new UnknownStatusCodeException31("The server returned an unknown status code: " + statusCode);
|
|
4032
4157
|
}
|
|
4033
4158
|
};
|
|
4034
4159
|
|
|
4035
4160
|
// src/BackendSchemaTag.ts
|
|
4036
|
-
import { TagAbstract as
|
|
4037
|
-
import { UnknownStatusCodeException as
|
|
4038
|
-
var BackendSchemaTag = class extends
|
|
4161
|
+
import { TagAbstract as TagAbstract33 } from "sdkgen-client";
|
|
4162
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException32 } from "sdkgen-client";
|
|
4163
|
+
var BackendSchemaTag = class extends TagAbstract33 {
|
|
4039
4164
|
/**
|
|
4040
4165
|
* Creates a new schema
|
|
4041
4166
|
*
|
|
@@ -4062,7 +4187,7 @@ var BackendSchemaTag = class extends TagAbstract32 {
|
|
|
4062
4187
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4063
4188
|
throw new CommonMessageException(await response.json());
|
|
4064
4189
|
}
|
|
4065
|
-
throw new
|
|
4190
|
+
throw new UnknownStatusCodeException32("The server returned an unknown status code: " + statusCode);
|
|
4066
4191
|
}
|
|
4067
4192
|
/**
|
|
4068
4193
|
* Deletes an existing schema
|
|
@@ -4089,7 +4214,7 @@ var BackendSchemaTag = class extends TagAbstract32 {
|
|
|
4089
4214
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4090
4215
|
throw new CommonMessageException(await response.json());
|
|
4091
4216
|
}
|
|
4092
|
-
throw new
|
|
4217
|
+
throw new UnknownStatusCodeException32("The server returned an unknown status code: " + statusCode);
|
|
4093
4218
|
}
|
|
4094
4219
|
/**
|
|
4095
4220
|
* Returns a specific schema
|
|
@@ -4116,7 +4241,7 @@ var BackendSchemaTag = class extends TagAbstract32 {
|
|
|
4116
4241
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4117
4242
|
throw new CommonMessageException(await response.json());
|
|
4118
4243
|
}
|
|
4119
|
-
throw new
|
|
4244
|
+
throw new UnknownStatusCodeException32("The server returned an unknown status code: " + statusCode);
|
|
4120
4245
|
}
|
|
4121
4246
|
/**
|
|
4122
4247
|
* Returns a paginated list of schemas
|
|
@@ -4145,7 +4270,7 @@ var BackendSchemaTag = class extends TagAbstract32 {
|
|
|
4145
4270
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4146
4271
|
throw new CommonMessageException(await response.json());
|
|
4147
4272
|
}
|
|
4148
|
-
throw new
|
|
4273
|
+
throw new UnknownStatusCodeException32("The server returned an unknown status code: " + statusCode);
|
|
4149
4274
|
}
|
|
4150
4275
|
/**
|
|
4151
4276
|
* Returns a HTML preview of the provided schema
|
|
@@ -4172,7 +4297,7 @@ var BackendSchemaTag = class extends TagAbstract32 {
|
|
|
4172
4297
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4173
4298
|
throw new CommonMessageException(await response.json());
|
|
4174
4299
|
}
|
|
4175
|
-
throw new
|
|
4300
|
+
throw new UnknownStatusCodeException32("The server returned an unknown status code: " + statusCode);
|
|
4176
4301
|
}
|
|
4177
4302
|
/**
|
|
4178
4303
|
* Updates an existing schema
|
|
@@ -4202,14 +4327,14 @@ var BackendSchemaTag = class extends TagAbstract32 {
|
|
|
4202
4327
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4203
4328
|
throw new CommonMessageException(await response.json());
|
|
4204
4329
|
}
|
|
4205
|
-
throw new
|
|
4330
|
+
throw new UnknownStatusCodeException32("The server returned an unknown status code: " + statusCode);
|
|
4206
4331
|
}
|
|
4207
4332
|
};
|
|
4208
4333
|
|
|
4209
4334
|
// src/BackendScopeTag.ts
|
|
4210
|
-
import { TagAbstract as
|
|
4211
|
-
import { UnknownStatusCodeException as
|
|
4212
|
-
var BackendScopeTag = class extends
|
|
4335
|
+
import { TagAbstract as TagAbstract34 } from "sdkgen-client";
|
|
4336
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException33 } from "sdkgen-client";
|
|
4337
|
+
var BackendScopeTag = class extends TagAbstract34 {
|
|
4213
4338
|
/**
|
|
4214
4339
|
* Creates a new scope
|
|
4215
4340
|
*
|
|
@@ -4236,7 +4361,7 @@ var BackendScopeTag = class extends TagAbstract33 {
|
|
|
4236
4361
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4237
4362
|
throw new CommonMessageException(await response.json());
|
|
4238
4363
|
}
|
|
4239
|
-
throw new
|
|
4364
|
+
throw new UnknownStatusCodeException33("The server returned an unknown status code: " + statusCode);
|
|
4240
4365
|
}
|
|
4241
4366
|
/**
|
|
4242
4367
|
* Deletes an existing scope
|
|
@@ -4263,7 +4388,7 @@ var BackendScopeTag = class extends TagAbstract33 {
|
|
|
4263
4388
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4264
4389
|
throw new CommonMessageException(await response.json());
|
|
4265
4390
|
}
|
|
4266
|
-
throw new
|
|
4391
|
+
throw new UnknownStatusCodeException33("The server returned an unknown status code: " + statusCode);
|
|
4267
4392
|
}
|
|
4268
4393
|
/**
|
|
4269
4394
|
* Returns a specific scope
|
|
@@ -4290,7 +4415,7 @@ var BackendScopeTag = class extends TagAbstract33 {
|
|
|
4290
4415
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4291
4416
|
throw new CommonMessageException(await response.json());
|
|
4292
4417
|
}
|
|
4293
|
-
throw new
|
|
4418
|
+
throw new UnknownStatusCodeException33("The server returned an unknown status code: " + statusCode);
|
|
4294
4419
|
}
|
|
4295
4420
|
/**
|
|
4296
4421
|
* Returns a paginated list of scopes
|
|
@@ -4319,7 +4444,7 @@ var BackendScopeTag = class extends TagAbstract33 {
|
|
|
4319
4444
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4320
4445
|
throw new CommonMessageException(await response.json());
|
|
4321
4446
|
}
|
|
4322
|
-
throw new
|
|
4447
|
+
throw new UnknownStatusCodeException33("The server returned an unknown status code: " + statusCode);
|
|
4323
4448
|
}
|
|
4324
4449
|
/**
|
|
4325
4450
|
* Returns all available scopes grouped by category
|
|
@@ -4344,7 +4469,7 @@ var BackendScopeTag = class extends TagAbstract33 {
|
|
|
4344
4469
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4345
4470
|
throw new CommonMessageException(await response.json());
|
|
4346
4471
|
}
|
|
4347
|
-
throw new
|
|
4472
|
+
throw new UnknownStatusCodeException33("The server returned an unknown status code: " + statusCode);
|
|
4348
4473
|
}
|
|
4349
4474
|
/**
|
|
4350
4475
|
* Updates an existing scope
|
|
@@ -4374,14 +4499,14 @@ var BackendScopeTag = class extends TagAbstract33 {
|
|
|
4374
4499
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4375
4500
|
throw new CommonMessageException(await response.json());
|
|
4376
4501
|
}
|
|
4377
|
-
throw new
|
|
4502
|
+
throw new UnknownStatusCodeException33("The server returned an unknown status code: " + statusCode);
|
|
4378
4503
|
}
|
|
4379
4504
|
};
|
|
4380
4505
|
|
|
4381
4506
|
// src/BackendSdkTag.ts
|
|
4382
|
-
import { TagAbstract as
|
|
4383
|
-
import { UnknownStatusCodeException as
|
|
4384
|
-
var BackendSdkTag = class extends
|
|
4507
|
+
import { TagAbstract as TagAbstract35 } from "sdkgen-client";
|
|
4508
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException34 } from "sdkgen-client";
|
|
4509
|
+
var BackendSdkTag = class extends TagAbstract35 {
|
|
4385
4510
|
/**
|
|
4386
4511
|
* Generates a specific SDK
|
|
4387
4512
|
*
|
|
@@ -4408,7 +4533,7 @@ var BackendSdkTag = class extends TagAbstract34 {
|
|
|
4408
4533
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4409
4534
|
throw new CommonMessageException(await response.json());
|
|
4410
4535
|
}
|
|
4411
|
-
throw new
|
|
4536
|
+
throw new UnknownStatusCodeException34("The server returned an unknown status code: " + statusCode);
|
|
4412
4537
|
}
|
|
4413
4538
|
/**
|
|
4414
4539
|
* Returns a paginated list of SDKs
|
|
@@ -4433,14 +4558,14 @@ var BackendSdkTag = class extends TagAbstract34 {
|
|
|
4433
4558
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4434
4559
|
throw new CommonMessageException(await response.json());
|
|
4435
4560
|
}
|
|
4436
|
-
throw new
|
|
4561
|
+
throw new UnknownStatusCodeException34("The server returned an unknown status code: " + statusCode);
|
|
4437
4562
|
}
|
|
4438
4563
|
};
|
|
4439
4564
|
|
|
4440
4565
|
// src/BackendStatisticTag.ts
|
|
4441
|
-
import { TagAbstract as
|
|
4442
|
-
import { UnknownStatusCodeException as
|
|
4443
|
-
var BackendStatisticTag = class extends
|
|
4566
|
+
import { TagAbstract as TagAbstract36 } from "sdkgen-client";
|
|
4567
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException35 } from "sdkgen-client";
|
|
4568
|
+
var BackendStatisticTag = class extends TagAbstract36 {
|
|
4444
4569
|
/**
|
|
4445
4570
|
* Returns a statistic containing the activities per user
|
|
4446
4571
|
*
|
|
@@ -4479,7 +4604,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4479
4604
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4480
4605
|
throw new CommonMessageException(await response.json());
|
|
4481
4606
|
}
|
|
4482
|
-
throw new
|
|
4607
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4483
4608
|
}
|
|
4484
4609
|
/**
|
|
4485
4610
|
* Returns a statistic containing the request count
|
|
@@ -4519,7 +4644,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4519
4644
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4520
4645
|
throw new CommonMessageException(await response.json());
|
|
4521
4646
|
}
|
|
4522
|
-
throw new
|
|
4647
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4523
4648
|
}
|
|
4524
4649
|
/**
|
|
4525
4650
|
* Returns a statistic containing the errors per operation
|
|
@@ -4559,7 +4684,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4559
4684
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4560
4685
|
throw new CommonMessageException(await response.json());
|
|
4561
4686
|
}
|
|
4562
|
-
throw new
|
|
4687
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4563
4688
|
}
|
|
4564
4689
|
/**
|
|
4565
4690
|
* Returns a statistic containing the incoming requests
|
|
@@ -4599,7 +4724,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4599
4724
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4600
4725
|
throw new CommonMessageException(await response.json());
|
|
4601
4726
|
}
|
|
4602
|
-
throw new
|
|
4727
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4603
4728
|
}
|
|
4604
4729
|
/**
|
|
4605
4730
|
* Returns a statistic containing the incoming transactions
|
|
@@ -4639,7 +4764,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4639
4764
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4640
4765
|
throw new CommonMessageException(await response.json());
|
|
4641
4766
|
}
|
|
4642
|
-
throw new
|
|
4767
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4643
4768
|
}
|
|
4644
4769
|
/**
|
|
4645
4770
|
* Returns a statistic containing the issues tokens
|
|
@@ -4679,7 +4804,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4679
4804
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4680
4805
|
throw new CommonMessageException(await response.json());
|
|
4681
4806
|
}
|
|
4682
|
-
throw new
|
|
4807
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4683
4808
|
}
|
|
4684
4809
|
/**
|
|
4685
4810
|
* Returns a statistic containing the most used activities
|
|
@@ -4719,7 +4844,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4719
4844
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4720
4845
|
throw new CommonMessageException(await response.json());
|
|
4721
4846
|
}
|
|
4722
|
-
throw new
|
|
4847
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4723
4848
|
}
|
|
4724
4849
|
/**
|
|
4725
4850
|
* Returns a statistic containing the most used apps
|
|
@@ -4759,7 +4884,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4759
4884
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4760
4885
|
throw new CommonMessageException(await response.json());
|
|
4761
4886
|
}
|
|
4762
|
-
throw new
|
|
4887
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4763
4888
|
}
|
|
4764
4889
|
/**
|
|
4765
4890
|
* Returns a statistic containing the most used operations
|
|
@@ -4799,7 +4924,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4799
4924
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4800
4925
|
throw new CommonMessageException(await response.json());
|
|
4801
4926
|
}
|
|
4802
|
-
throw new
|
|
4927
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4803
4928
|
}
|
|
4804
4929
|
/**
|
|
4805
4930
|
* Returns a statistic containing the requests per ip
|
|
@@ -4839,7 +4964,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4839
4964
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4840
4965
|
throw new CommonMessageException(await response.json());
|
|
4841
4966
|
}
|
|
4842
|
-
throw new
|
|
4967
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4843
4968
|
}
|
|
4844
4969
|
/**
|
|
4845
4970
|
* Returns a statistic containing the requests per operation
|
|
@@ -4879,7 +5004,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4879
5004
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4880
5005
|
throw new CommonMessageException(await response.json());
|
|
4881
5006
|
}
|
|
4882
|
-
throw new
|
|
5007
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4883
5008
|
}
|
|
4884
5009
|
/**
|
|
4885
5010
|
* Returns a statistic containing the requests per user
|
|
@@ -4919,7 +5044,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4919
5044
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4920
5045
|
throw new CommonMessageException(await response.json());
|
|
4921
5046
|
}
|
|
4922
|
-
throw new
|
|
5047
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4923
5048
|
}
|
|
4924
5049
|
/**
|
|
4925
5050
|
* Returns a statistic containing the test coverage
|
|
@@ -4944,7 +5069,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4944
5069
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4945
5070
|
throw new CommonMessageException(await response.json());
|
|
4946
5071
|
}
|
|
4947
|
-
throw new
|
|
5072
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4948
5073
|
}
|
|
4949
5074
|
/**
|
|
4950
5075
|
* Returns a statistic containing the time average
|
|
@@ -4984,7 +5109,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4984
5109
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4985
5110
|
throw new CommonMessageException(await response.json());
|
|
4986
5111
|
}
|
|
4987
|
-
throw new
|
|
5112
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4988
5113
|
}
|
|
4989
5114
|
/**
|
|
4990
5115
|
* Returns a statistic containing the time per operation
|
|
@@ -5024,7 +5149,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
5024
5149
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5025
5150
|
throw new CommonMessageException(await response.json());
|
|
5026
5151
|
}
|
|
5027
|
-
throw new
|
|
5152
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
5028
5153
|
}
|
|
5029
5154
|
/**
|
|
5030
5155
|
* Returns a statistic containing the used points
|
|
@@ -5064,7 +5189,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
5064
5189
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5065
5190
|
throw new CommonMessageException(await response.json());
|
|
5066
5191
|
}
|
|
5067
|
-
throw new
|
|
5192
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
5068
5193
|
}
|
|
5069
5194
|
/**
|
|
5070
5195
|
* Returns a statistic containing the user registrations
|
|
@@ -5104,17 +5229,17 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
5104
5229
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5105
5230
|
throw new CommonMessageException(await response.json());
|
|
5106
5231
|
}
|
|
5107
|
-
throw new
|
|
5232
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
5108
5233
|
}
|
|
5109
5234
|
};
|
|
5110
5235
|
|
|
5111
5236
|
// src/BackendTag.ts
|
|
5112
|
-
import { TagAbstract as
|
|
5237
|
+
import { TagAbstract as TagAbstract45 } from "sdkgen-client";
|
|
5113
5238
|
|
|
5114
5239
|
// src/BackendTenantTag.ts
|
|
5115
|
-
import { TagAbstract as
|
|
5116
|
-
import { UnknownStatusCodeException as
|
|
5117
|
-
var BackendTenantTag = class extends
|
|
5240
|
+
import { TagAbstract as TagAbstract37 } from "sdkgen-client";
|
|
5241
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException36 } from "sdkgen-client";
|
|
5242
|
+
var BackendTenantTag = class extends TagAbstract37 {
|
|
5118
5243
|
/**
|
|
5119
5244
|
* Removes an existing tenant
|
|
5120
5245
|
*
|
|
@@ -5140,7 +5265,7 @@ var BackendTenantTag = class extends TagAbstract36 {
|
|
|
5140
5265
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5141
5266
|
throw new CommonMessageException(await response.json());
|
|
5142
5267
|
}
|
|
5143
|
-
throw new
|
|
5268
|
+
throw new UnknownStatusCodeException36("The server returned an unknown status code: " + statusCode);
|
|
5144
5269
|
}
|
|
5145
5270
|
/**
|
|
5146
5271
|
* Setup a new tenant
|
|
@@ -5167,14 +5292,14 @@ var BackendTenantTag = class extends TagAbstract36 {
|
|
|
5167
5292
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5168
5293
|
throw new CommonMessageException(await response.json());
|
|
5169
5294
|
}
|
|
5170
|
-
throw new
|
|
5295
|
+
throw new UnknownStatusCodeException36("The server returned an unknown status code: " + statusCode);
|
|
5171
5296
|
}
|
|
5172
5297
|
};
|
|
5173
5298
|
|
|
5174
5299
|
// src/BackendTestTag.ts
|
|
5175
|
-
import { TagAbstract as
|
|
5176
|
-
import { UnknownStatusCodeException as
|
|
5177
|
-
var BackendTestTag = class extends
|
|
5300
|
+
import { TagAbstract as TagAbstract38 } from "sdkgen-client";
|
|
5301
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException37 } from "sdkgen-client";
|
|
5302
|
+
var BackendTestTag = class extends TagAbstract38 {
|
|
5178
5303
|
/**
|
|
5179
5304
|
* Returns a specific test
|
|
5180
5305
|
*
|
|
@@ -5200,7 +5325,7 @@ var BackendTestTag = class extends TagAbstract37 {
|
|
|
5200
5325
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5201
5326
|
throw new CommonMessageException(await response.json());
|
|
5202
5327
|
}
|
|
5203
|
-
throw new
|
|
5328
|
+
throw new UnknownStatusCodeException37("The server returned an unknown status code: " + statusCode);
|
|
5204
5329
|
}
|
|
5205
5330
|
/**
|
|
5206
5331
|
* Returns a paginated list of tests
|
|
@@ -5229,7 +5354,7 @@ var BackendTestTag = class extends TagAbstract37 {
|
|
|
5229
5354
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5230
5355
|
throw new CommonMessageException(await response.json());
|
|
5231
5356
|
}
|
|
5232
|
-
throw new
|
|
5357
|
+
throw new UnknownStatusCodeException37("The server returned an unknown status code: " + statusCode);
|
|
5233
5358
|
}
|
|
5234
5359
|
/**
|
|
5235
5360
|
* Refresh all tests
|
|
@@ -5254,7 +5379,7 @@ var BackendTestTag = class extends TagAbstract37 {
|
|
|
5254
5379
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5255
5380
|
throw new CommonMessageException(await response.json());
|
|
5256
5381
|
}
|
|
5257
|
-
throw new
|
|
5382
|
+
throw new UnknownStatusCodeException37("The server returned an unknown status code: " + statusCode);
|
|
5258
5383
|
}
|
|
5259
5384
|
/**
|
|
5260
5385
|
* Run all tests
|
|
@@ -5279,7 +5404,7 @@ var BackendTestTag = class extends TagAbstract37 {
|
|
|
5279
5404
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5280
5405
|
throw new CommonMessageException(await response.json());
|
|
5281
5406
|
}
|
|
5282
|
-
throw new
|
|
5407
|
+
throw new UnknownStatusCodeException37("The server returned an unknown status code: " + statusCode);
|
|
5283
5408
|
}
|
|
5284
5409
|
/**
|
|
5285
5410
|
* Updates an existing test
|
|
@@ -5309,14 +5434,14 @@ var BackendTestTag = class extends TagAbstract37 {
|
|
|
5309
5434
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5310
5435
|
throw new CommonMessageException(await response.json());
|
|
5311
5436
|
}
|
|
5312
|
-
throw new
|
|
5437
|
+
throw new UnknownStatusCodeException37("The server returned an unknown status code: " + statusCode);
|
|
5313
5438
|
}
|
|
5314
5439
|
};
|
|
5315
5440
|
|
|
5316
5441
|
// src/BackendTokenTag.ts
|
|
5317
|
-
import { TagAbstract as
|
|
5318
|
-
import { UnknownStatusCodeException as
|
|
5319
|
-
var BackendTokenTag = class extends
|
|
5442
|
+
import { TagAbstract as TagAbstract39 } from "sdkgen-client";
|
|
5443
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException38 } from "sdkgen-client";
|
|
5444
|
+
var BackendTokenTag = class extends TagAbstract39 {
|
|
5320
5445
|
/**
|
|
5321
5446
|
* Returns a specific token
|
|
5322
5447
|
*
|
|
@@ -5342,7 +5467,7 @@ var BackendTokenTag = class extends TagAbstract38 {
|
|
|
5342
5467
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5343
5468
|
throw new CommonMessageException(await response.json());
|
|
5344
5469
|
}
|
|
5345
|
-
throw new
|
|
5470
|
+
throw new UnknownStatusCodeException38("The server returned an unknown status code: " + statusCode);
|
|
5346
5471
|
}
|
|
5347
5472
|
/**
|
|
5348
5473
|
* Returns a paginated list of tokens
|
|
@@ -5378,14 +5503,14 @@ var BackendTokenTag = class extends TagAbstract38 {
|
|
|
5378
5503
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5379
5504
|
throw new CommonMessageException(await response.json());
|
|
5380
5505
|
}
|
|
5381
|
-
throw new
|
|
5506
|
+
throw new UnknownStatusCodeException38("The server returned an unknown status code: " + statusCode);
|
|
5382
5507
|
}
|
|
5383
5508
|
};
|
|
5384
5509
|
|
|
5385
5510
|
// src/BackendTransactionTag.ts
|
|
5386
|
-
import { TagAbstract as
|
|
5387
|
-
import { UnknownStatusCodeException as
|
|
5388
|
-
var BackendTransactionTag = class extends
|
|
5511
|
+
import { TagAbstract as TagAbstract40 } from "sdkgen-client";
|
|
5512
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException39 } from "sdkgen-client";
|
|
5513
|
+
var BackendTransactionTag = class extends TagAbstract40 {
|
|
5389
5514
|
/**
|
|
5390
5515
|
* Returns a specific transaction
|
|
5391
5516
|
*
|
|
@@ -5411,7 +5536,7 @@ var BackendTransactionTag = class extends TagAbstract39 {
|
|
|
5411
5536
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5412
5537
|
throw new CommonMessageException(await response.json());
|
|
5413
5538
|
}
|
|
5414
|
-
throw new
|
|
5539
|
+
throw new UnknownStatusCodeException39("The server returned an unknown status code: " + statusCode);
|
|
5415
5540
|
}
|
|
5416
5541
|
/**
|
|
5417
5542
|
* Returns a paginated list of transactions
|
|
@@ -5447,14 +5572,14 @@ var BackendTransactionTag = class extends TagAbstract39 {
|
|
|
5447
5572
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5448
5573
|
throw new CommonMessageException(await response.json());
|
|
5449
5574
|
}
|
|
5450
|
-
throw new
|
|
5575
|
+
throw new UnknownStatusCodeException39("The server returned an unknown status code: " + statusCode);
|
|
5451
5576
|
}
|
|
5452
5577
|
};
|
|
5453
5578
|
|
|
5454
5579
|
// src/BackendTrashTag.ts
|
|
5455
|
-
import { TagAbstract as
|
|
5456
|
-
import { UnknownStatusCodeException as
|
|
5457
|
-
var BackendTrashTag = class extends
|
|
5580
|
+
import { TagAbstract as TagAbstract41 } from "sdkgen-client";
|
|
5581
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException40 } from "sdkgen-client";
|
|
5582
|
+
var BackendTrashTag = class extends TagAbstract41 {
|
|
5458
5583
|
/**
|
|
5459
5584
|
* Returns all deleted records by trash type
|
|
5460
5585
|
*
|
|
@@ -5484,7 +5609,7 @@ var BackendTrashTag = class extends TagAbstract40 {
|
|
|
5484
5609
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5485
5610
|
throw new CommonMessageException(await response.json());
|
|
5486
5611
|
}
|
|
5487
|
-
throw new
|
|
5612
|
+
throw new UnknownStatusCodeException40("The server returned an unknown status code: " + statusCode);
|
|
5488
5613
|
}
|
|
5489
5614
|
/**
|
|
5490
5615
|
* Returns all trash types
|
|
@@ -5509,7 +5634,7 @@ var BackendTrashTag = class extends TagAbstract40 {
|
|
|
5509
5634
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5510
5635
|
throw new CommonMessageException(await response.json());
|
|
5511
5636
|
}
|
|
5512
|
-
throw new
|
|
5637
|
+
throw new UnknownStatusCodeException40("The server returned an unknown status code: " + statusCode);
|
|
5513
5638
|
}
|
|
5514
5639
|
/**
|
|
5515
5640
|
* Restores a previously deleted record
|
|
@@ -5539,14 +5664,14 @@ var BackendTrashTag = class extends TagAbstract40 {
|
|
|
5539
5664
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5540
5665
|
throw new CommonMessageException(await response.json());
|
|
5541
5666
|
}
|
|
5542
|
-
throw new
|
|
5667
|
+
throw new UnknownStatusCodeException40("The server returned an unknown status code: " + statusCode);
|
|
5543
5668
|
}
|
|
5544
5669
|
};
|
|
5545
5670
|
|
|
5546
5671
|
// src/BackendTriggerTag.ts
|
|
5547
|
-
import { TagAbstract as
|
|
5548
|
-
import { UnknownStatusCodeException as
|
|
5549
|
-
var BackendTriggerTag = class extends
|
|
5672
|
+
import { TagAbstract as TagAbstract42 } from "sdkgen-client";
|
|
5673
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException41 } from "sdkgen-client";
|
|
5674
|
+
var BackendTriggerTag = class extends TagAbstract42 {
|
|
5550
5675
|
/**
|
|
5551
5676
|
* Creates a new trigger
|
|
5552
5677
|
*
|
|
@@ -5573,7 +5698,7 @@ var BackendTriggerTag = class extends TagAbstract41 {
|
|
|
5573
5698
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5574
5699
|
throw new CommonMessageException(await response.json());
|
|
5575
5700
|
}
|
|
5576
|
-
throw new
|
|
5701
|
+
throw new UnknownStatusCodeException41("The server returned an unknown status code: " + statusCode);
|
|
5577
5702
|
}
|
|
5578
5703
|
/**
|
|
5579
5704
|
* Deletes an existing trigger
|
|
@@ -5600,7 +5725,7 @@ var BackendTriggerTag = class extends TagAbstract41 {
|
|
|
5600
5725
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5601
5726
|
throw new CommonMessageException(await response.json());
|
|
5602
5727
|
}
|
|
5603
|
-
throw new
|
|
5728
|
+
throw new UnknownStatusCodeException41("The server returned an unknown status code: " + statusCode);
|
|
5604
5729
|
}
|
|
5605
5730
|
/**
|
|
5606
5731
|
* Returns a specific trigger
|
|
@@ -5627,7 +5752,7 @@ var BackendTriggerTag = class extends TagAbstract41 {
|
|
|
5627
5752
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5628
5753
|
throw new CommonMessageException(await response.json());
|
|
5629
5754
|
}
|
|
5630
|
-
throw new
|
|
5755
|
+
throw new UnknownStatusCodeException41("The server returned an unknown status code: " + statusCode);
|
|
5631
5756
|
}
|
|
5632
5757
|
/**
|
|
5633
5758
|
* Returns a paginated list of triggers
|
|
@@ -5656,7 +5781,7 @@ var BackendTriggerTag = class extends TagAbstract41 {
|
|
|
5656
5781
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5657
5782
|
throw new CommonMessageException(await response.json());
|
|
5658
5783
|
}
|
|
5659
|
-
throw new
|
|
5784
|
+
throw new UnknownStatusCodeException41("The server returned an unknown status code: " + statusCode);
|
|
5660
5785
|
}
|
|
5661
5786
|
/**
|
|
5662
5787
|
* Updates an existing trigger
|
|
@@ -5686,14 +5811,14 @@ var BackendTriggerTag = class extends TagAbstract41 {
|
|
|
5686
5811
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5687
5812
|
throw new CommonMessageException(await response.json());
|
|
5688
5813
|
}
|
|
5689
|
-
throw new
|
|
5814
|
+
throw new UnknownStatusCodeException41("The server returned an unknown status code: " + statusCode);
|
|
5690
5815
|
}
|
|
5691
5816
|
};
|
|
5692
5817
|
|
|
5693
5818
|
// src/BackendUserTag.ts
|
|
5694
|
-
import { TagAbstract as
|
|
5695
|
-
import { UnknownStatusCodeException as
|
|
5696
|
-
var BackendUserTag = class extends
|
|
5819
|
+
import { TagAbstract as TagAbstract43 } from "sdkgen-client";
|
|
5820
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException42 } from "sdkgen-client";
|
|
5821
|
+
var BackendUserTag = class extends TagAbstract43 {
|
|
5697
5822
|
/**
|
|
5698
5823
|
* Creates a new user
|
|
5699
5824
|
*
|
|
@@ -5720,7 +5845,7 @@ var BackendUserTag = class extends TagAbstract42 {
|
|
|
5720
5845
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5721
5846
|
throw new CommonMessageException(await response.json());
|
|
5722
5847
|
}
|
|
5723
|
-
throw new
|
|
5848
|
+
throw new UnknownStatusCodeException42("The server returned an unknown status code: " + statusCode);
|
|
5724
5849
|
}
|
|
5725
5850
|
/**
|
|
5726
5851
|
* Deletes an existing user
|
|
@@ -5747,7 +5872,7 @@ var BackendUserTag = class extends TagAbstract42 {
|
|
|
5747
5872
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5748
5873
|
throw new CommonMessageException(await response.json());
|
|
5749
5874
|
}
|
|
5750
|
-
throw new
|
|
5875
|
+
throw new UnknownStatusCodeException42("The server returned an unknown status code: " + statusCode);
|
|
5751
5876
|
}
|
|
5752
5877
|
/**
|
|
5753
5878
|
* Returns a specific user
|
|
@@ -5774,7 +5899,7 @@ var BackendUserTag = class extends TagAbstract42 {
|
|
|
5774
5899
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5775
5900
|
throw new CommonMessageException(await response.json());
|
|
5776
5901
|
}
|
|
5777
|
-
throw new
|
|
5902
|
+
throw new UnknownStatusCodeException42("The server returned an unknown status code: " + statusCode);
|
|
5778
5903
|
}
|
|
5779
5904
|
/**
|
|
5780
5905
|
* Returns a paginated list of users
|
|
@@ -5803,7 +5928,7 @@ var BackendUserTag = class extends TagAbstract42 {
|
|
|
5803
5928
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5804
5929
|
throw new CommonMessageException(await response.json());
|
|
5805
5930
|
}
|
|
5806
|
-
throw new
|
|
5931
|
+
throw new UnknownStatusCodeException42("The server returned an unknown status code: " + statusCode);
|
|
5807
5932
|
}
|
|
5808
5933
|
/**
|
|
5809
5934
|
* Resend the activation mail to the provided user
|
|
@@ -5833,7 +5958,7 @@ var BackendUserTag = class extends TagAbstract42 {
|
|
|
5833
5958
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5834
5959
|
throw new CommonMessageException(await response.json());
|
|
5835
5960
|
}
|
|
5836
|
-
throw new
|
|
5961
|
+
throw new UnknownStatusCodeException42("The server returned an unknown status code: " + statusCode);
|
|
5837
5962
|
}
|
|
5838
5963
|
/**
|
|
5839
5964
|
* Updates an existing user
|
|
@@ -5863,14 +5988,14 @@ var BackendUserTag = class extends TagAbstract42 {
|
|
|
5863
5988
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5864
5989
|
throw new CommonMessageException(await response.json());
|
|
5865
5990
|
}
|
|
5866
|
-
throw new
|
|
5991
|
+
throw new UnknownStatusCodeException42("The server returned an unknown status code: " + statusCode);
|
|
5867
5992
|
}
|
|
5868
5993
|
};
|
|
5869
5994
|
|
|
5870
5995
|
// src/BackendWebhookTag.ts
|
|
5871
|
-
import { TagAbstract as
|
|
5872
|
-
import { UnknownStatusCodeException as
|
|
5873
|
-
var BackendWebhookTag = class extends
|
|
5996
|
+
import { TagAbstract as TagAbstract44 } from "sdkgen-client";
|
|
5997
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException43 } from "sdkgen-client";
|
|
5998
|
+
var BackendWebhookTag = class extends TagAbstract44 {
|
|
5874
5999
|
/**
|
|
5875
6000
|
* Creates a new webhook
|
|
5876
6001
|
*
|
|
@@ -5897,7 +6022,7 @@ var BackendWebhookTag = class extends TagAbstract43 {
|
|
|
5897
6022
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5898
6023
|
throw new CommonMessageException(await response.json());
|
|
5899
6024
|
}
|
|
5900
|
-
throw new
|
|
6025
|
+
throw new UnknownStatusCodeException43("The server returned an unknown status code: " + statusCode);
|
|
5901
6026
|
}
|
|
5902
6027
|
/**
|
|
5903
6028
|
* Deletes an existing webhook
|
|
@@ -5924,7 +6049,7 @@ var BackendWebhookTag = class extends TagAbstract43 {
|
|
|
5924
6049
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5925
6050
|
throw new CommonMessageException(await response.json());
|
|
5926
6051
|
}
|
|
5927
|
-
throw new
|
|
6052
|
+
throw new UnknownStatusCodeException43("The server returned an unknown status code: " + statusCode);
|
|
5928
6053
|
}
|
|
5929
6054
|
/**
|
|
5930
6055
|
* Returns a specific webhook
|
|
@@ -5951,7 +6076,7 @@ var BackendWebhookTag = class extends TagAbstract43 {
|
|
|
5951
6076
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5952
6077
|
throw new CommonMessageException(await response.json());
|
|
5953
6078
|
}
|
|
5954
|
-
throw new
|
|
6079
|
+
throw new UnknownStatusCodeException43("The server returned an unknown status code: " + statusCode);
|
|
5955
6080
|
}
|
|
5956
6081
|
/**
|
|
5957
6082
|
* Returns a paginated list of webhooks
|
|
@@ -5980,7 +6105,7 @@ var BackendWebhookTag = class extends TagAbstract43 {
|
|
|
5980
6105
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5981
6106
|
throw new CommonMessageException(await response.json());
|
|
5982
6107
|
}
|
|
5983
|
-
throw new
|
|
6108
|
+
throw new UnknownStatusCodeException43("The server returned an unknown status code: " + statusCode);
|
|
5984
6109
|
}
|
|
5985
6110
|
/**
|
|
5986
6111
|
* Updates an existing webhook
|
|
@@ -6010,12 +6135,12 @@ var BackendWebhookTag = class extends TagAbstract43 {
|
|
|
6010
6135
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6011
6136
|
throw new CommonMessageException(await response.json());
|
|
6012
6137
|
}
|
|
6013
|
-
throw new
|
|
6138
|
+
throw new UnknownStatusCodeException43("The server returned an unknown status code: " + statusCode);
|
|
6014
6139
|
}
|
|
6015
6140
|
};
|
|
6016
6141
|
|
|
6017
6142
|
// src/BackendTag.ts
|
|
6018
|
-
var BackendTag = class extends
|
|
6143
|
+
var BackendTag = class extends TagAbstract45 {
|
|
6019
6144
|
account() {
|
|
6020
6145
|
return new BackendAccountTag(
|
|
6021
6146
|
this.httpClient,
|
|
@@ -6233,12 +6358,12 @@ import { ClientAbstract } from "sdkgen-client";
|
|
|
6233
6358
|
import { Anonymous } from "sdkgen-client";
|
|
6234
6359
|
|
|
6235
6360
|
// src/ConsumerTag.ts
|
|
6236
|
-
import { TagAbstract as
|
|
6361
|
+
import { TagAbstract as TagAbstract60 } from "sdkgen-client";
|
|
6237
6362
|
|
|
6238
6363
|
// src/ConsumerAccountTag.ts
|
|
6239
|
-
import { TagAbstract as
|
|
6240
|
-
import { UnknownStatusCodeException as
|
|
6241
|
-
var ConsumerAccountTag = class extends
|
|
6364
|
+
import { TagAbstract as TagAbstract46 } from "sdkgen-client";
|
|
6365
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException44 } from "sdkgen-client";
|
|
6366
|
+
var ConsumerAccountTag = class extends TagAbstract46 {
|
|
6242
6367
|
/**
|
|
6243
6368
|
* Activates an previously registered account through a token which was provided to the user via email
|
|
6244
6369
|
*
|
|
@@ -6265,7 +6390,7 @@ var ConsumerAccountTag = class extends TagAbstract45 {
|
|
|
6265
6390
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6266
6391
|
throw new CommonMessageException(await response.json());
|
|
6267
6392
|
}
|
|
6268
|
-
throw new
|
|
6393
|
+
throw new UnknownStatusCodeException44("The server returned an unknown status code: " + statusCode);
|
|
6269
6394
|
}
|
|
6270
6395
|
/**
|
|
6271
6396
|
* Authorizes the access of a specific app for the authenticated user
|
|
@@ -6293,7 +6418,7 @@ var ConsumerAccountTag = class extends TagAbstract45 {
|
|
|
6293
6418
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6294
6419
|
throw new CommonMessageException(await response.json());
|
|
6295
6420
|
}
|
|
6296
|
-
throw new
|
|
6421
|
+
throw new UnknownStatusCodeException44("The server returned an unknown status code: " + statusCode);
|
|
6297
6422
|
}
|
|
6298
6423
|
/**
|
|
6299
6424
|
* Change the password for the authenticated user
|
|
@@ -6321,7 +6446,7 @@ var ConsumerAccountTag = class extends TagAbstract45 {
|
|
|
6321
6446
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6322
6447
|
throw new CommonMessageException(await response.json());
|
|
6323
6448
|
}
|
|
6324
|
-
throw new
|
|
6449
|
+
throw new UnknownStatusCodeException44("The server returned an unknown status code: " + statusCode);
|
|
6325
6450
|
}
|
|
6326
6451
|
/**
|
|
6327
6452
|
* Change the password after the password reset flow was started
|
|
@@ -6349,7 +6474,7 @@ var ConsumerAccountTag = class extends TagAbstract45 {
|
|
|
6349
6474
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6350
6475
|
throw new CommonMessageException(await response.json());
|
|
6351
6476
|
}
|
|
6352
|
-
throw new
|
|
6477
|
+
throw new UnknownStatusCodeException44("The server returned an unknown status code: " + statusCode);
|
|
6353
6478
|
}
|
|
6354
6479
|
/**
|
|
6355
6480
|
* Returns a user data for the authenticated user
|
|
@@ -6374,7 +6499,7 @@ var ConsumerAccountTag = class extends TagAbstract45 {
|
|
|
6374
6499
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6375
6500
|
throw new CommonMessageException(await response.json());
|
|
6376
6501
|
}
|
|
6377
|
-
throw new
|
|
6502
|
+
throw new UnknownStatusCodeException44("The server returned an unknown status code: " + statusCode);
|
|
6378
6503
|
}
|
|
6379
6504
|
/**
|
|
6380
6505
|
* Returns information about a specific app to start the OAuth2 authorization code flow
|
|
@@ -6402,7 +6527,7 @@ var ConsumerAccountTag = class extends TagAbstract45 {
|
|
|
6402
6527
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6403
6528
|
throw new CommonMessageException(await response.json());
|
|
6404
6529
|
}
|
|
6405
|
-
throw new
|
|
6530
|
+
throw new UnknownStatusCodeException44("The server returned an unknown status code: " + statusCode);
|
|
6406
6531
|
}
|
|
6407
6532
|
/**
|
|
6408
6533
|
* User login by providing a username and password
|
|
@@ -6430,7 +6555,7 @@ var ConsumerAccountTag = class extends TagAbstract45 {
|
|
|
6430
6555
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6431
6556
|
throw new CommonMessageException(await response.json());
|
|
6432
6557
|
}
|
|
6433
|
-
throw new
|
|
6558
|
+
throw new UnknownStatusCodeException44("The server returned an unknown status code: " + statusCode);
|
|
6434
6559
|
}
|
|
6435
6560
|
/**
|
|
6436
6561
|
* Refresh a previously obtained access token
|
|
@@ -6458,7 +6583,7 @@ var ConsumerAccountTag = class extends TagAbstract45 {
|
|
|
6458
6583
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6459
6584
|
throw new CommonMessageException(await response.json());
|
|
6460
6585
|
}
|
|
6461
|
-
throw new
|
|
6586
|
+
throw new UnknownStatusCodeException44("The server returned an unknown status code: " + statusCode);
|
|
6462
6587
|
}
|
|
6463
6588
|
/**
|
|
6464
6589
|
* Register a new user account
|
|
@@ -6486,7 +6611,7 @@ var ConsumerAccountTag = class extends TagAbstract45 {
|
|
|
6486
6611
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6487
6612
|
throw new CommonMessageException(await response.json());
|
|
6488
6613
|
}
|
|
6489
|
-
throw new
|
|
6614
|
+
throw new UnknownStatusCodeException44("The server returned an unknown status code: " + statusCode);
|
|
6490
6615
|
}
|
|
6491
6616
|
/**
|
|
6492
6617
|
* Start the password reset flow
|
|
@@ -6514,7 +6639,7 @@ var ConsumerAccountTag = class extends TagAbstract45 {
|
|
|
6514
6639
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6515
6640
|
throw new CommonMessageException(await response.json());
|
|
6516
6641
|
}
|
|
6517
|
-
throw new
|
|
6642
|
+
throw new UnknownStatusCodeException44("The server returned an unknown status code: " + statusCode);
|
|
6518
6643
|
}
|
|
6519
6644
|
/**
|
|
6520
6645
|
* Updates user data for the authenticated user
|
|
@@ -6542,14 +6667,14 @@ var ConsumerAccountTag = class extends TagAbstract45 {
|
|
|
6542
6667
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6543
6668
|
throw new CommonMessageException(await response.json());
|
|
6544
6669
|
}
|
|
6545
|
-
throw new
|
|
6670
|
+
throw new UnknownStatusCodeException44("The server returned an unknown status code: " + statusCode);
|
|
6546
6671
|
}
|
|
6547
6672
|
};
|
|
6548
6673
|
|
|
6549
6674
|
// src/ConsumerAppTag.ts
|
|
6550
|
-
import { TagAbstract as
|
|
6551
|
-
import { UnknownStatusCodeException as
|
|
6552
|
-
var ConsumerAppTag = class extends
|
|
6675
|
+
import { TagAbstract as TagAbstract47 } from "sdkgen-client";
|
|
6676
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException45 } from "sdkgen-client";
|
|
6677
|
+
var ConsumerAppTag = class extends TagAbstract47 {
|
|
6553
6678
|
/**
|
|
6554
6679
|
* Creates a new app for the authenticated user
|
|
6555
6680
|
*
|
|
@@ -6576,7 +6701,7 @@ var ConsumerAppTag = class extends TagAbstract46 {
|
|
|
6576
6701
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6577
6702
|
throw new CommonMessageException(await response.json());
|
|
6578
6703
|
}
|
|
6579
|
-
throw new
|
|
6704
|
+
throw new UnknownStatusCodeException45("The server returned an unknown status code: " + statusCode);
|
|
6580
6705
|
}
|
|
6581
6706
|
/**
|
|
6582
6707
|
* Deletes an existing app for the authenticated user
|
|
@@ -6603,7 +6728,7 @@ var ConsumerAppTag = class extends TagAbstract46 {
|
|
|
6603
6728
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6604
6729
|
throw new CommonMessageException(await response.json());
|
|
6605
6730
|
}
|
|
6606
|
-
throw new
|
|
6731
|
+
throw new UnknownStatusCodeException45("The server returned an unknown status code: " + statusCode);
|
|
6607
6732
|
}
|
|
6608
6733
|
/**
|
|
6609
6734
|
* Returns a specific app for the authenticated user
|
|
@@ -6630,7 +6755,7 @@ var ConsumerAppTag = class extends TagAbstract46 {
|
|
|
6630
6755
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6631
6756
|
throw new CommonMessageException(await response.json());
|
|
6632
6757
|
}
|
|
6633
|
-
throw new
|
|
6758
|
+
throw new UnknownStatusCodeException45("The server returned an unknown status code: " + statusCode);
|
|
6634
6759
|
}
|
|
6635
6760
|
/**
|
|
6636
6761
|
* Returns a paginated list of apps which are assigned to the authenticated user
|
|
@@ -6659,7 +6784,7 @@ var ConsumerAppTag = class extends TagAbstract46 {
|
|
|
6659
6784
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6660
6785
|
throw new CommonMessageException(await response.json());
|
|
6661
6786
|
}
|
|
6662
|
-
throw new
|
|
6787
|
+
throw new UnknownStatusCodeException45("The server returned an unknown status code: " + statusCode);
|
|
6663
6788
|
}
|
|
6664
6789
|
/**
|
|
6665
6790
|
* Updates an existing app for the authenticated user
|
|
@@ -6689,14 +6814,14 @@ var ConsumerAppTag = class extends TagAbstract46 {
|
|
|
6689
6814
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6690
6815
|
throw new CommonMessageException(await response.json());
|
|
6691
6816
|
}
|
|
6692
|
-
throw new
|
|
6817
|
+
throw new UnknownStatusCodeException45("The server returned an unknown status code: " + statusCode);
|
|
6693
6818
|
}
|
|
6694
6819
|
};
|
|
6695
6820
|
|
|
6696
6821
|
// src/ConsumerEventTag.ts
|
|
6697
|
-
import { TagAbstract as
|
|
6698
|
-
import { UnknownStatusCodeException as
|
|
6699
|
-
var ConsumerEventTag = class extends
|
|
6822
|
+
import { TagAbstract as TagAbstract48 } from "sdkgen-client";
|
|
6823
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException46 } from "sdkgen-client";
|
|
6824
|
+
var ConsumerEventTag = class extends TagAbstract48 {
|
|
6700
6825
|
/**
|
|
6701
6826
|
* Returns a specific event for the authenticated user
|
|
6702
6827
|
*
|
|
@@ -6722,7 +6847,7 @@ var ConsumerEventTag = class extends TagAbstract47 {
|
|
|
6722
6847
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6723
6848
|
throw new CommonMessageException(await response.json());
|
|
6724
6849
|
}
|
|
6725
|
-
throw new
|
|
6850
|
+
throw new UnknownStatusCodeException46("The server returned an unknown status code: " + statusCode);
|
|
6726
6851
|
}
|
|
6727
6852
|
/**
|
|
6728
6853
|
* Returns a paginated list of apps which are assigned to the authenticated user
|
|
@@ -6751,14 +6876,14 @@ var ConsumerEventTag = class extends TagAbstract47 {
|
|
|
6751
6876
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6752
6877
|
throw new CommonMessageException(await response.json());
|
|
6753
6878
|
}
|
|
6754
|
-
throw new
|
|
6879
|
+
throw new UnknownStatusCodeException46("The server returned an unknown status code: " + statusCode);
|
|
6755
6880
|
}
|
|
6756
6881
|
};
|
|
6757
6882
|
|
|
6758
6883
|
// src/ConsumerFormTag.ts
|
|
6759
|
-
import { TagAbstract as
|
|
6760
|
-
import { UnknownStatusCodeException as
|
|
6761
|
-
var ConsumerFormTag = class extends
|
|
6884
|
+
import { TagAbstract as TagAbstract49 } from "sdkgen-client";
|
|
6885
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException47 } from "sdkgen-client";
|
|
6886
|
+
var ConsumerFormTag = class extends TagAbstract49 {
|
|
6762
6887
|
/**
|
|
6763
6888
|
* Returns a specific form for the authenticated user
|
|
6764
6889
|
*
|
|
@@ -6784,7 +6909,7 @@ var ConsumerFormTag = class extends TagAbstract48 {
|
|
|
6784
6909
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6785
6910
|
throw new CommonMessageException(await response.json());
|
|
6786
6911
|
}
|
|
6787
|
-
throw new
|
|
6912
|
+
throw new UnknownStatusCodeException47("The server returned an unknown status code: " + statusCode);
|
|
6788
6913
|
}
|
|
6789
6914
|
/**
|
|
6790
6915
|
* Returns a paginated list of forms which are relevant to the authenticated user
|
|
@@ -6813,14 +6938,14 @@ var ConsumerFormTag = class extends TagAbstract48 {
|
|
|
6813
6938
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6814
6939
|
throw new CommonMessageException(await response.json());
|
|
6815
6940
|
}
|
|
6816
|
-
throw new
|
|
6941
|
+
throw new UnknownStatusCodeException47("The server returned an unknown status code: " + statusCode);
|
|
6817
6942
|
}
|
|
6818
6943
|
};
|
|
6819
6944
|
|
|
6820
6945
|
// src/ConsumerGrantTag.ts
|
|
6821
|
-
import { TagAbstract as
|
|
6822
|
-
import { UnknownStatusCodeException as
|
|
6823
|
-
var ConsumerGrantTag = class extends
|
|
6946
|
+
import { TagAbstract as TagAbstract50 } from "sdkgen-client";
|
|
6947
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException48 } from "sdkgen-client";
|
|
6948
|
+
var ConsumerGrantTag = class extends TagAbstract50 {
|
|
6824
6949
|
/**
|
|
6825
6950
|
* Deletes an existing grant for an app which was created by the authenticated user
|
|
6826
6951
|
*
|
|
@@ -6846,7 +6971,7 @@ var ConsumerGrantTag = class extends TagAbstract49 {
|
|
|
6846
6971
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6847
6972
|
throw new CommonMessageException(await response.json());
|
|
6848
6973
|
}
|
|
6849
|
-
throw new
|
|
6974
|
+
throw new UnknownStatusCodeException48("The server returned an unknown status code: " + statusCode);
|
|
6850
6975
|
}
|
|
6851
6976
|
/**
|
|
6852
6977
|
* Returns a paginated list of grants which are assigned to the authenticated user
|
|
@@ -6875,14 +7000,14 @@ var ConsumerGrantTag = class extends TagAbstract49 {
|
|
|
6875
7000
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6876
7001
|
throw new CommonMessageException(await response.json());
|
|
6877
7002
|
}
|
|
6878
|
-
throw new
|
|
7003
|
+
throw new UnknownStatusCodeException48("The server returned an unknown status code: " + statusCode);
|
|
6879
7004
|
}
|
|
6880
7005
|
};
|
|
6881
7006
|
|
|
6882
7007
|
// src/ConsumerIdentityTag.ts
|
|
6883
|
-
import { TagAbstract as
|
|
6884
|
-
import { UnknownStatusCodeException as
|
|
6885
|
-
var ConsumerIdentityTag = class extends
|
|
7008
|
+
import { TagAbstract as TagAbstract51 } from "sdkgen-client";
|
|
7009
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException49 } from "sdkgen-client";
|
|
7010
|
+
var ConsumerIdentityTag = class extends TagAbstract51 {
|
|
6886
7011
|
/**
|
|
6887
7012
|
* Identity callback endpoint to exchange an access token
|
|
6888
7013
|
*
|
|
@@ -6908,7 +7033,7 @@ var ConsumerIdentityTag = class extends TagAbstract50 {
|
|
|
6908
7033
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6909
7034
|
throw new CommonMessageException(await response.json());
|
|
6910
7035
|
}
|
|
6911
|
-
throw new
|
|
7036
|
+
throw new UnknownStatusCodeException49("The server returned an unknown status code: " + statusCode);
|
|
6912
7037
|
}
|
|
6913
7038
|
/**
|
|
6914
7039
|
* Returns a paginated list of identities which are relevant to the authenticated user
|
|
@@ -6936,7 +7061,7 @@ var ConsumerIdentityTag = class extends TagAbstract50 {
|
|
|
6936
7061
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6937
7062
|
throw new CommonMessageException(await response.json());
|
|
6938
7063
|
}
|
|
6939
|
-
throw new
|
|
7064
|
+
throw new UnknownStatusCodeException49("The server returned an unknown status code: " + statusCode);
|
|
6940
7065
|
}
|
|
6941
7066
|
/**
|
|
6942
7067
|
* Redirect the user to the configured identity provider
|
|
@@ -6963,14 +7088,14 @@ var ConsumerIdentityTag = class extends TagAbstract50 {
|
|
|
6963
7088
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6964
7089
|
throw new CommonMessageException(await response.json());
|
|
6965
7090
|
}
|
|
6966
|
-
throw new
|
|
7091
|
+
throw new UnknownStatusCodeException49("The server returned an unknown status code: " + statusCode);
|
|
6967
7092
|
}
|
|
6968
7093
|
};
|
|
6969
7094
|
|
|
6970
7095
|
// src/ConsumerLogTag.ts
|
|
6971
|
-
import { TagAbstract as
|
|
6972
|
-
import { UnknownStatusCodeException as
|
|
6973
|
-
var ConsumerLogTag = class extends
|
|
7096
|
+
import { TagAbstract as TagAbstract52 } from "sdkgen-client";
|
|
7097
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException50 } from "sdkgen-client";
|
|
7098
|
+
var ConsumerLogTag = class extends TagAbstract52 {
|
|
6974
7099
|
/**
|
|
6975
7100
|
* Returns a specific log for the authenticated user
|
|
6976
7101
|
*
|
|
@@ -6996,7 +7121,7 @@ var ConsumerLogTag = class extends TagAbstract51 {
|
|
|
6996
7121
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6997
7122
|
throw new CommonMessageException(await response.json());
|
|
6998
7123
|
}
|
|
6999
|
-
throw new
|
|
7124
|
+
throw new UnknownStatusCodeException50("The server returned an unknown status code: " + statusCode);
|
|
7000
7125
|
}
|
|
7001
7126
|
/**
|
|
7002
7127
|
* Returns a paginated list of logs which are assigned to the authenticated user
|
|
@@ -7025,14 +7150,14 @@ var ConsumerLogTag = class extends TagAbstract51 {
|
|
|
7025
7150
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7026
7151
|
throw new CommonMessageException(await response.json());
|
|
7027
7152
|
}
|
|
7028
|
-
throw new
|
|
7153
|
+
throw new UnknownStatusCodeException50("The server returned an unknown status code: " + statusCode);
|
|
7029
7154
|
}
|
|
7030
7155
|
};
|
|
7031
7156
|
|
|
7032
7157
|
// src/ConsumerPageTag.ts
|
|
7033
|
-
import { TagAbstract as
|
|
7034
|
-
import { UnknownStatusCodeException as
|
|
7035
|
-
var ConsumerPageTag = class extends
|
|
7158
|
+
import { TagAbstract as TagAbstract53 } from "sdkgen-client";
|
|
7159
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException51 } from "sdkgen-client";
|
|
7160
|
+
var ConsumerPageTag = class extends TagAbstract53 {
|
|
7036
7161
|
/**
|
|
7037
7162
|
* Returns a specific page for the authenticated user
|
|
7038
7163
|
*
|
|
@@ -7058,7 +7183,7 @@ var ConsumerPageTag = class extends TagAbstract52 {
|
|
|
7058
7183
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7059
7184
|
throw new CommonMessageException(await response.json());
|
|
7060
7185
|
}
|
|
7061
|
-
throw new
|
|
7186
|
+
throw new UnknownStatusCodeException51("The server returned an unknown status code: " + statusCode);
|
|
7062
7187
|
}
|
|
7063
7188
|
/**
|
|
7064
7189
|
* Returns a paginated list of pages which are relevant to the authenticated user
|
|
@@ -7087,14 +7212,14 @@ var ConsumerPageTag = class extends TagAbstract52 {
|
|
|
7087
7212
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7088
7213
|
throw new CommonMessageException(await response.json());
|
|
7089
7214
|
}
|
|
7090
|
-
throw new
|
|
7215
|
+
throw new UnknownStatusCodeException51("The server returned an unknown status code: " + statusCode);
|
|
7091
7216
|
}
|
|
7092
7217
|
};
|
|
7093
7218
|
|
|
7094
7219
|
// src/ConsumerPaymentTag.ts
|
|
7095
|
-
import { TagAbstract as
|
|
7096
|
-
import { UnknownStatusCodeException as
|
|
7097
|
-
var ConsumerPaymentTag = class extends
|
|
7220
|
+
import { TagAbstract as TagAbstract54 } from "sdkgen-client";
|
|
7221
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException52 } from "sdkgen-client";
|
|
7222
|
+
var ConsumerPaymentTag = class extends TagAbstract54 {
|
|
7098
7223
|
/**
|
|
7099
7224
|
* Start the checkout process for a specific plan
|
|
7100
7225
|
*
|
|
@@ -7123,7 +7248,7 @@ var ConsumerPaymentTag = class extends TagAbstract53 {
|
|
|
7123
7248
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7124
7249
|
throw new CommonMessageException(await response.json());
|
|
7125
7250
|
}
|
|
7126
|
-
throw new
|
|
7251
|
+
throw new UnknownStatusCodeException52("The server returned an unknown status code: " + statusCode);
|
|
7127
7252
|
}
|
|
7128
7253
|
/**
|
|
7129
7254
|
* Generates a payment portal link for the authenticated user
|
|
@@ -7153,14 +7278,14 @@ var ConsumerPaymentTag = class extends TagAbstract53 {
|
|
|
7153
7278
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7154
7279
|
throw new CommonMessageException(await response.json());
|
|
7155
7280
|
}
|
|
7156
|
-
throw new
|
|
7281
|
+
throw new UnknownStatusCodeException52("The server returned an unknown status code: " + statusCode);
|
|
7157
7282
|
}
|
|
7158
7283
|
};
|
|
7159
7284
|
|
|
7160
7285
|
// src/ConsumerPlanTag.ts
|
|
7161
|
-
import { TagAbstract as
|
|
7162
|
-
import { UnknownStatusCodeException as
|
|
7163
|
-
var ConsumerPlanTag = class extends
|
|
7286
|
+
import { TagAbstract as TagAbstract55 } from "sdkgen-client";
|
|
7287
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException53 } from "sdkgen-client";
|
|
7288
|
+
var ConsumerPlanTag = class extends TagAbstract55 {
|
|
7164
7289
|
/**
|
|
7165
7290
|
* Returns a specific plan for the authenticated user
|
|
7166
7291
|
*
|
|
@@ -7186,7 +7311,7 @@ var ConsumerPlanTag = class extends TagAbstract54 {
|
|
|
7186
7311
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7187
7312
|
throw new CommonMessageException(await response.json());
|
|
7188
7313
|
}
|
|
7189
|
-
throw new
|
|
7314
|
+
throw new UnknownStatusCodeException53("The server returned an unknown status code: " + statusCode);
|
|
7190
7315
|
}
|
|
7191
7316
|
/**
|
|
7192
7317
|
* Returns a paginated list of plans which are relevant to the authenticated user
|
|
@@ -7215,14 +7340,14 @@ var ConsumerPlanTag = class extends TagAbstract54 {
|
|
|
7215
7340
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7216
7341
|
throw new CommonMessageException(await response.json());
|
|
7217
7342
|
}
|
|
7218
|
-
throw new
|
|
7343
|
+
throw new UnknownStatusCodeException53("The server returned an unknown status code: " + statusCode);
|
|
7219
7344
|
}
|
|
7220
7345
|
};
|
|
7221
7346
|
|
|
7222
7347
|
// src/ConsumerScopeTag.ts
|
|
7223
|
-
import { TagAbstract as
|
|
7224
|
-
import { UnknownStatusCodeException as
|
|
7225
|
-
var ConsumerScopeTag = class extends
|
|
7348
|
+
import { TagAbstract as TagAbstract56 } from "sdkgen-client";
|
|
7349
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException54 } from "sdkgen-client";
|
|
7350
|
+
var ConsumerScopeTag = class extends TagAbstract56 {
|
|
7226
7351
|
/**
|
|
7227
7352
|
* Returns a paginated list of scopes which are assigned to the authenticated user
|
|
7228
7353
|
*
|
|
@@ -7250,7 +7375,7 @@ var ConsumerScopeTag = class extends TagAbstract55 {
|
|
|
7250
7375
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7251
7376
|
throw new CommonMessageException(await response.json());
|
|
7252
7377
|
}
|
|
7253
|
-
throw new
|
|
7378
|
+
throw new UnknownStatusCodeException54("The server returned an unknown status code: " + statusCode);
|
|
7254
7379
|
}
|
|
7255
7380
|
/**
|
|
7256
7381
|
* Returns all scopes by category
|
|
@@ -7275,14 +7400,14 @@ var ConsumerScopeTag = class extends TagAbstract55 {
|
|
|
7275
7400
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7276
7401
|
throw new CommonMessageException(await response.json());
|
|
7277
7402
|
}
|
|
7278
|
-
throw new
|
|
7403
|
+
throw new UnknownStatusCodeException54("The server returned an unknown status code: " + statusCode);
|
|
7279
7404
|
}
|
|
7280
7405
|
};
|
|
7281
7406
|
|
|
7282
7407
|
// src/ConsumerTokenTag.ts
|
|
7283
|
-
import { TagAbstract as
|
|
7284
|
-
import { UnknownStatusCodeException as
|
|
7285
|
-
var ConsumerTokenTag = class extends
|
|
7408
|
+
import { TagAbstract as TagAbstract57 } from "sdkgen-client";
|
|
7409
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException55 } from "sdkgen-client";
|
|
7410
|
+
var ConsumerTokenTag = class extends TagAbstract57 {
|
|
7286
7411
|
/**
|
|
7287
7412
|
* Creates a new token for the authenticated user
|
|
7288
7413
|
*
|
|
@@ -7309,7 +7434,7 @@ var ConsumerTokenTag = class extends TagAbstract56 {
|
|
|
7309
7434
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7310
7435
|
throw new CommonMessageException(await response.json());
|
|
7311
7436
|
}
|
|
7312
|
-
throw new
|
|
7437
|
+
throw new UnknownStatusCodeException55("The server returned an unknown status code: " + statusCode);
|
|
7313
7438
|
}
|
|
7314
7439
|
/**
|
|
7315
7440
|
* Deletes an existing token for the authenticated user
|
|
@@ -7336,7 +7461,7 @@ var ConsumerTokenTag = class extends TagAbstract56 {
|
|
|
7336
7461
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7337
7462
|
throw new CommonMessageException(await response.json());
|
|
7338
7463
|
}
|
|
7339
|
-
throw new
|
|
7464
|
+
throw new UnknownStatusCodeException55("The server returned an unknown status code: " + statusCode);
|
|
7340
7465
|
}
|
|
7341
7466
|
/**
|
|
7342
7467
|
* Returns a specific token for the authenticated user
|
|
@@ -7363,7 +7488,7 @@ var ConsumerTokenTag = class extends TagAbstract56 {
|
|
|
7363
7488
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7364
7489
|
throw new CommonMessageException(await response.json());
|
|
7365
7490
|
}
|
|
7366
|
-
throw new
|
|
7491
|
+
throw new UnknownStatusCodeException55("The server returned an unknown status code: " + statusCode);
|
|
7367
7492
|
}
|
|
7368
7493
|
/**
|
|
7369
7494
|
* Returns a paginated list of tokens which are assigned to the authenticated user
|
|
@@ -7392,7 +7517,7 @@ var ConsumerTokenTag = class extends TagAbstract56 {
|
|
|
7392
7517
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7393
7518
|
throw new CommonMessageException(await response.json());
|
|
7394
7519
|
}
|
|
7395
|
-
throw new
|
|
7520
|
+
throw new UnknownStatusCodeException55("The server returned an unknown status code: " + statusCode);
|
|
7396
7521
|
}
|
|
7397
7522
|
/**
|
|
7398
7523
|
* Updates an existing token for the authenticated user
|
|
@@ -7422,14 +7547,14 @@ var ConsumerTokenTag = class extends TagAbstract56 {
|
|
|
7422
7547
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7423
7548
|
throw new CommonMessageException(await response.json());
|
|
7424
7549
|
}
|
|
7425
|
-
throw new
|
|
7550
|
+
throw new UnknownStatusCodeException55("The server returned an unknown status code: " + statusCode);
|
|
7426
7551
|
}
|
|
7427
7552
|
};
|
|
7428
7553
|
|
|
7429
7554
|
// src/ConsumerTransactionTag.ts
|
|
7430
|
-
import { TagAbstract as
|
|
7431
|
-
import { UnknownStatusCodeException as
|
|
7432
|
-
var ConsumerTransactionTag = class extends
|
|
7555
|
+
import { TagAbstract as TagAbstract58 } from "sdkgen-client";
|
|
7556
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException56 } from "sdkgen-client";
|
|
7557
|
+
var ConsumerTransactionTag = class extends TagAbstract58 {
|
|
7433
7558
|
/**
|
|
7434
7559
|
* Returns a specific transaction for the authenticated user
|
|
7435
7560
|
*
|
|
@@ -7455,7 +7580,7 @@ var ConsumerTransactionTag = class extends TagAbstract57 {
|
|
|
7455
7580
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7456
7581
|
throw new CommonMessageException(await response.json());
|
|
7457
7582
|
}
|
|
7458
|
-
throw new
|
|
7583
|
+
throw new UnknownStatusCodeException56("The server returned an unknown status code: " + statusCode);
|
|
7459
7584
|
}
|
|
7460
7585
|
/**
|
|
7461
7586
|
* Returns a paginated list of transactions which are assigned to the authenticated user
|
|
@@ -7484,14 +7609,14 @@ var ConsumerTransactionTag = class extends TagAbstract57 {
|
|
|
7484
7609
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7485
7610
|
throw new CommonMessageException(await response.json());
|
|
7486
7611
|
}
|
|
7487
|
-
throw new
|
|
7612
|
+
throw new UnknownStatusCodeException56("The server returned an unknown status code: " + statusCode);
|
|
7488
7613
|
}
|
|
7489
7614
|
};
|
|
7490
7615
|
|
|
7491
7616
|
// src/ConsumerWebhookTag.ts
|
|
7492
|
-
import { TagAbstract as
|
|
7493
|
-
import { UnknownStatusCodeException as
|
|
7494
|
-
var ConsumerWebhookTag = class extends
|
|
7617
|
+
import { TagAbstract as TagAbstract59 } from "sdkgen-client";
|
|
7618
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException57 } from "sdkgen-client";
|
|
7619
|
+
var ConsumerWebhookTag = class extends TagAbstract59 {
|
|
7495
7620
|
/**
|
|
7496
7621
|
* Creates a new webhook for the authenticated user
|
|
7497
7622
|
*
|
|
@@ -7518,7 +7643,7 @@ var ConsumerWebhookTag = class extends TagAbstract58 {
|
|
|
7518
7643
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7519
7644
|
throw new CommonMessageException(await response.json());
|
|
7520
7645
|
}
|
|
7521
|
-
throw new
|
|
7646
|
+
throw new UnknownStatusCodeException57("The server returned an unknown status code: " + statusCode);
|
|
7522
7647
|
}
|
|
7523
7648
|
/**
|
|
7524
7649
|
* Deletes an existing webhook for the authenticated user
|
|
@@ -7545,7 +7670,7 @@ var ConsumerWebhookTag = class extends TagAbstract58 {
|
|
|
7545
7670
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7546
7671
|
throw new CommonMessageException(await response.json());
|
|
7547
7672
|
}
|
|
7548
|
-
throw new
|
|
7673
|
+
throw new UnknownStatusCodeException57("The server returned an unknown status code: " + statusCode);
|
|
7549
7674
|
}
|
|
7550
7675
|
/**
|
|
7551
7676
|
* Returns a specific webhook for the authenticated user
|
|
@@ -7572,7 +7697,7 @@ var ConsumerWebhookTag = class extends TagAbstract58 {
|
|
|
7572
7697
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7573
7698
|
throw new CommonMessageException(await response.json());
|
|
7574
7699
|
}
|
|
7575
|
-
throw new
|
|
7700
|
+
throw new UnknownStatusCodeException57("The server returned an unknown status code: " + statusCode);
|
|
7576
7701
|
}
|
|
7577
7702
|
/**
|
|
7578
7703
|
* Returns a paginated list of webhooks which are assigned to the authenticated user
|
|
@@ -7601,7 +7726,7 @@ var ConsumerWebhookTag = class extends TagAbstract58 {
|
|
|
7601
7726
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7602
7727
|
throw new CommonMessageException(await response.json());
|
|
7603
7728
|
}
|
|
7604
|
-
throw new
|
|
7729
|
+
throw new UnknownStatusCodeException57("The server returned an unknown status code: " + statusCode);
|
|
7605
7730
|
}
|
|
7606
7731
|
/**
|
|
7607
7732
|
* Updates an existing webhook for the authenticated user
|
|
@@ -7631,12 +7756,12 @@ var ConsumerWebhookTag = class extends TagAbstract58 {
|
|
|
7631
7756
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7632
7757
|
throw new CommonMessageException(await response.json());
|
|
7633
7758
|
}
|
|
7634
|
-
throw new
|
|
7759
|
+
throw new UnknownStatusCodeException57("The server returned an unknown status code: " + statusCode);
|
|
7635
7760
|
}
|
|
7636
7761
|
};
|
|
7637
7762
|
|
|
7638
7763
|
// src/ConsumerTag.ts
|
|
7639
|
-
var ConsumerTag = class extends
|
|
7764
|
+
var ConsumerTag = class extends TagAbstract60 {
|
|
7640
7765
|
account() {
|
|
7641
7766
|
return new ConsumerAccountTag(
|
|
7642
7767
|
this.httpClient,
|
|
@@ -7724,12 +7849,12 @@ var ConsumerTag = class extends TagAbstract59 {
|
|
|
7724
7849
|
};
|
|
7725
7850
|
|
|
7726
7851
|
// src/SystemTag.ts
|
|
7727
|
-
import { TagAbstract as
|
|
7852
|
+
import { TagAbstract as TagAbstract64 } from "sdkgen-client";
|
|
7728
7853
|
|
|
7729
7854
|
// src/SystemConnectionTag.ts
|
|
7730
|
-
import { TagAbstract as
|
|
7731
|
-
import { UnknownStatusCodeException as
|
|
7732
|
-
var SystemConnectionTag = class extends
|
|
7855
|
+
import { TagAbstract as TagAbstract61 } from "sdkgen-client";
|
|
7856
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException58 } from "sdkgen-client";
|
|
7857
|
+
var SystemConnectionTag = class extends TagAbstract61 {
|
|
7733
7858
|
/**
|
|
7734
7859
|
* Connection OAuth2 callback to authorize a connection
|
|
7735
7860
|
*
|
|
@@ -7755,14 +7880,14 @@ var SystemConnectionTag = class extends TagAbstract60 {
|
|
|
7755
7880
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7756
7881
|
throw new CommonMessageException(await response.json());
|
|
7757
7882
|
}
|
|
7758
|
-
throw new
|
|
7883
|
+
throw new UnknownStatusCodeException58("The server returned an unknown status code: " + statusCode);
|
|
7759
7884
|
}
|
|
7760
7885
|
};
|
|
7761
7886
|
|
|
7762
7887
|
// src/SystemMetaTag.ts
|
|
7763
|
-
import { TagAbstract as
|
|
7764
|
-
import { UnknownStatusCodeException as
|
|
7765
|
-
var SystemMetaTag = class extends
|
|
7888
|
+
import { TagAbstract as TagAbstract62 } from "sdkgen-client";
|
|
7889
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException59 } from "sdkgen-client";
|
|
7890
|
+
var SystemMetaTag = class extends TagAbstract62 {
|
|
7766
7891
|
/**
|
|
7767
7892
|
* Returns meta information and links about the current installed Fusio version
|
|
7768
7893
|
*
|
|
@@ -7786,7 +7911,7 @@ var SystemMetaTag = class extends TagAbstract61 {
|
|
|
7786
7911
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7787
7912
|
throw new CommonMessageException(await response.json());
|
|
7788
7913
|
}
|
|
7789
|
-
throw new
|
|
7914
|
+
throw new UnknownStatusCodeException59("The server returned an unknown status code: " + statusCode);
|
|
7790
7915
|
}
|
|
7791
7916
|
/**
|
|
7792
7917
|
* Debug endpoint which returns the provided data
|
|
@@ -7814,7 +7939,7 @@ var SystemMetaTag = class extends TagAbstract61 {
|
|
|
7814
7939
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7815
7940
|
throw new CommonMessageException(await response.json());
|
|
7816
7941
|
}
|
|
7817
|
-
throw new
|
|
7942
|
+
throw new UnknownStatusCodeException59("The server returned an unknown status code: " + statusCode);
|
|
7818
7943
|
}
|
|
7819
7944
|
/**
|
|
7820
7945
|
* Health check endpoint which returns information about the health status of the system
|
|
@@ -7839,7 +7964,7 @@ var SystemMetaTag = class extends TagAbstract61 {
|
|
|
7839
7964
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7840
7965
|
throw new CommonMessageException(await response.json());
|
|
7841
7966
|
}
|
|
7842
|
-
throw new
|
|
7967
|
+
throw new UnknownStatusCodeException59("The server returned an unknown status code: " + statusCode);
|
|
7843
7968
|
}
|
|
7844
7969
|
/**
|
|
7845
7970
|
* Returns all available routes
|
|
@@ -7864,7 +7989,7 @@ var SystemMetaTag = class extends TagAbstract61 {
|
|
|
7864
7989
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7865
7990
|
throw new CommonMessageException(await response.json());
|
|
7866
7991
|
}
|
|
7867
|
-
throw new
|
|
7992
|
+
throw new UnknownStatusCodeException59("The server returned an unknown status code: " + statusCode);
|
|
7868
7993
|
}
|
|
7869
7994
|
/**
|
|
7870
7995
|
* Returns details of a specific schema
|
|
@@ -7891,14 +8016,14 @@ var SystemMetaTag = class extends TagAbstract61 {
|
|
|
7891
8016
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7892
8017
|
throw new CommonMessageException(await response.json());
|
|
7893
8018
|
}
|
|
7894
|
-
throw new
|
|
8019
|
+
throw new UnknownStatusCodeException59("The server returned an unknown status code: " + statusCode);
|
|
7895
8020
|
}
|
|
7896
8021
|
};
|
|
7897
8022
|
|
|
7898
8023
|
// src/SystemPaymentTag.ts
|
|
7899
|
-
import { TagAbstract as
|
|
7900
|
-
import { UnknownStatusCodeException as
|
|
7901
|
-
var SystemPaymentTag = class extends
|
|
8024
|
+
import { TagAbstract as TagAbstract63 } from "sdkgen-client";
|
|
8025
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException60 } from "sdkgen-client";
|
|
8026
|
+
var SystemPaymentTag = class extends TagAbstract63 {
|
|
7902
8027
|
/**
|
|
7903
8028
|
* Payment webhook endpoint after successful purchase of a plan
|
|
7904
8029
|
*
|
|
@@ -7924,12 +8049,12 @@ var SystemPaymentTag = class extends TagAbstract62 {
|
|
|
7924
8049
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7925
8050
|
throw new CommonMessageException(await response.json());
|
|
7926
8051
|
}
|
|
7927
|
-
throw new
|
|
8052
|
+
throw new UnknownStatusCodeException60("The server returned an unknown status code: " + statusCode);
|
|
7928
8053
|
}
|
|
7929
8054
|
};
|
|
7930
8055
|
|
|
7931
8056
|
// src/SystemTag.ts
|
|
7932
|
-
var SystemTag = class extends
|
|
8057
|
+
var SystemTag = class extends TagAbstract64 {
|
|
7933
8058
|
connection() {
|
|
7934
8059
|
return new SystemConnectionTag(
|
|
7935
8060
|
this.httpClient,
|
|
@@ -7990,6 +8115,7 @@ export {
|
|
|
7990
8115
|
BackendBundleTag,
|
|
7991
8116
|
BackendCategoryTag,
|
|
7992
8117
|
BackendConfigTag,
|
|
8118
|
+
BackendConnectionAgentTag,
|
|
7993
8119
|
BackendConnectionDatabaseTag,
|
|
7994
8120
|
BackendConnectionFilesystemTag,
|
|
7995
8121
|
BackendConnectionHttpTag,
|