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.cjs
CHANGED
|
@@ -29,6 +29,7 @@ __export(index_exports, {
|
|
|
29
29
|
BackendBundleTag: () => BackendBundleTag,
|
|
30
30
|
BackendCategoryTag: () => BackendCategoryTag,
|
|
31
31
|
BackendConfigTag: () => BackendConfigTag,
|
|
32
|
+
BackendConnectionAgentTag: () => BackendConnectionAgentTag,
|
|
32
33
|
BackendConnectionDatabaseTag: () => BackendConnectionDatabaseTag,
|
|
33
34
|
BackendConnectionFilesystemTag: () => BackendConnectionFilesystemTag,
|
|
34
35
|
BackendConnectionHttpTag: () => BackendConnectionHttpTag,
|
|
@@ -305,7 +306,7 @@ var BackendActionTag = class extends import_sdkgen_client6.TagAbstract {
|
|
|
305
306
|
throw new import_sdkgen_client7.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
306
307
|
}
|
|
307
308
|
/**
|
|
308
|
-
* Executes a specific action
|
|
309
|
+
* Executes a specific action. This method should be used to test an action configuration
|
|
309
310
|
*
|
|
310
311
|
* @returns {Promise<BackendActionExecuteResponse>}
|
|
311
312
|
* @throws {CommonMessageException}
|
|
@@ -892,6 +893,33 @@ var BackendBundleTag = class extends import_sdkgen_client14.TagAbstract {
|
|
|
892
893
|
}
|
|
893
894
|
throw new import_sdkgen_client15.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
894
895
|
}
|
|
896
|
+
/**
|
|
897
|
+
* Publish an existing bundle to the marketplace
|
|
898
|
+
*
|
|
899
|
+
* @returns {Promise<CommonMessage>}
|
|
900
|
+
* @throws {CommonMessageException}
|
|
901
|
+
* @throws {ClientException}
|
|
902
|
+
*/
|
|
903
|
+
async publish(bundleId) {
|
|
904
|
+
const url = this.parser.url("/backend/bundle/$bundle_id<[0-9]+|^~>/publish", {
|
|
905
|
+
"bundle_id": bundleId
|
|
906
|
+
});
|
|
907
|
+
let request = {
|
|
908
|
+
url,
|
|
909
|
+
method: "POST",
|
|
910
|
+
headers: {},
|
|
911
|
+
params: this.parser.query({}, [])
|
|
912
|
+
};
|
|
913
|
+
const response = await this.httpClient.request(request);
|
|
914
|
+
if (response.ok) {
|
|
915
|
+
return await response.json();
|
|
916
|
+
}
|
|
917
|
+
const statusCode = response.status;
|
|
918
|
+
if (statusCode >= 0 && statusCode <= 999) {
|
|
919
|
+
throw new CommonMessageException(await response.json());
|
|
920
|
+
}
|
|
921
|
+
throw new import_sdkgen_client15.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
922
|
+
}
|
|
895
923
|
/**
|
|
896
924
|
* Updates an existing bundle
|
|
897
925
|
*
|
|
@@ -1163,10 +1191,102 @@ var BackendConfigTag = class extends import_sdkgen_client18.TagAbstract {
|
|
|
1163
1191
|
}
|
|
1164
1192
|
};
|
|
1165
1193
|
|
|
1166
|
-
// src/
|
|
1194
|
+
// src/BackendConnectionAgentTag.ts
|
|
1167
1195
|
var import_sdkgen_client20 = require("sdkgen-client");
|
|
1168
1196
|
var import_sdkgen_client21 = require("sdkgen-client");
|
|
1169
|
-
var
|
|
1197
|
+
var BackendConnectionAgentTag = class extends import_sdkgen_client20.TagAbstract {
|
|
1198
|
+
/**
|
|
1199
|
+
* Returns all previous sent messages
|
|
1200
|
+
*
|
|
1201
|
+
* @returns {Promise<BackendAgentCollection>}
|
|
1202
|
+
* @throws {CommonMessageException}
|
|
1203
|
+
* @throws {ClientException}
|
|
1204
|
+
*/
|
|
1205
|
+
async get(connectionId, intent) {
|
|
1206
|
+
const url = this.parser.url("/backend/connection/:connection_id/agent", {
|
|
1207
|
+
"connection_id": connectionId
|
|
1208
|
+
});
|
|
1209
|
+
let request = {
|
|
1210
|
+
url,
|
|
1211
|
+
method: "GET",
|
|
1212
|
+
headers: {},
|
|
1213
|
+
params: this.parser.query({
|
|
1214
|
+
"intent": intent
|
|
1215
|
+
}, [])
|
|
1216
|
+
};
|
|
1217
|
+
const response = await this.httpClient.request(request);
|
|
1218
|
+
if (response.ok) {
|
|
1219
|
+
return await response.json();
|
|
1220
|
+
}
|
|
1221
|
+
const statusCode = response.status;
|
|
1222
|
+
if (statusCode >= 0 && statusCode <= 999) {
|
|
1223
|
+
throw new CommonMessageException(await response.json());
|
|
1224
|
+
}
|
|
1225
|
+
throw new import_sdkgen_client21.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1226
|
+
}
|
|
1227
|
+
/**
|
|
1228
|
+
* Resets all agent messages
|
|
1229
|
+
*
|
|
1230
|
+
* @returns {Promise<CommonMessage>}
|
|
1231
|
+
* @throws {CommonMessageException}
|
|
1232
|
+
* @throws {ClientException}
|
|
1233
|
+
*/
|
|
1234
|
+
async reset(connectionId) {
|
|
1235
|
+
const url = this.parser.url("/backend/connection/:connection_id/agent", {
|
|
1236
|
+
"connection_id": connectionId
|
|
1237
|
+
});
|
|
1238
|
+
let request = {
|
|
1239
|
+
url,
|
|
1240
|
+
method: "DELETE",
|
|
1241
|
+
headers: {},
|
|
1242
|
+
params: this.parser.query({}, [])
|
|
1243
|
+
};
|
|
1244
|
+
const response = await this.httpClient.request(request);
|
|
1245
|
+
if (response.ok) {
|
|
1246
|
+
return await response.json();
|
|
1247
|
+
}
|
|
1248
|
+
const statusCode = response.status;
|
|
1249
|
+
if (statusCode >= 0 && statusCode <= 999) {
|
|
1250
|
+
throw new CommonMessageException(await response.json());
|
|
1251
|
+
}
|
|
1252
|
+
throw new import_sdkgen_client21.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1253
|
+
}
|
|
1254
|
+
/**
|
|
1255
|
+
* Sends a message to an agent
|
|
1256
|
+
*
|
|
1257
|
+
* @returns {Promise<BackendAgentResponse>}
|
|
1258
|
+
* @throws {CommonMessageException}
|
|
1259
|
+
* @throws {ClientException}
|
|
1260
|
+
*/
|
|
1261
|
+
async send(connectionId, payload) {
|
|
1262
|
+
const url = this.parser.url("/backend/connection/:connection_id/agent", {
|
|
1263
|
+
"connection_id": connectionId
|
|
1264
|
+
});
|
|
1265
|
+
let request = {
|
|
1266
|
+
url,
|
|
1267
|
+
method: "POST",
|
|
1268
|
+
headers: {
|
|
1269
|
+
"Content-Type": "application/json"
|
|
1270
|
+
},
|
|
1271
|
+
params: this.parser.query({}, []),
|
|
1272
|
+
data: payload
|
|
1273
|
+
};
|
|
1274
|
+
const response = await this.httpClient.request(request);
|
|
1275
|
+
if (response.ok) {
|
|
1276
|
+
return await response.json();
|
|
1277
|
+
}
|
|
1278
|
+
const statusCode = response.status;
|
|
1279
|
+
if (statusCode >= 0 && statusCode <= 999) {
|
|
1280
|
+
throw new CommonMessageException(await response.json());
|
|
1281
|
+
}
|
|
1282
|
+
throw new import_sdkgen_client21.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1283
|
+
}
|
|
1284
|
+
};
|
|
1285
|
+
|
|
1286
|
+
// src/BackendConnectionDatabaseTag.ts
|
|
1287
|
+
var import_sdkgen_client22 = require("sdkgen-client");
|
|
1288
|
+
var import_sdkgen_client23 = require("sdkgen-client");
|
|
1289
|
+
var BackendConnectionDatabaseTag = class extends import_sdkgen_client22.TagAbstract {
|
|
1170
1290
|
/**
|
|
1171
1291
|
* Creates a new row at a table on a database
|
|
1172
1292
|
*
|
|
@@ -1196,7 +1316,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client20.TagAbstr
|
|
|
1196
1316
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1197
1317
|
throw new CommonMessageException(await response.json());
|
|
1198
1318
|
}
|
|
1199
|
-
throw new
|
|
1319
|
+
throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1200
1320
|
}
|
|
1201
1321
|
/**
|
|
1202
1322
|
* Creates a new table on a database
|
|
@@ -1226,7 +1346,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client20.TagAbstr
|
|
|
1226
1346
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1227
1347
|
throw new CommonMessageException(await response.json());
|
|
1228
1348
|
}
|
|
1229
|
-
throw new
|
|
1349
|
+
throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1230
1350
|
}
|
|
1231
1351
|
/**
|
|
1232
1352
|
* Deletes an existing row at a table on a database
|
|
@@ -1255,7 +1375,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client20.TagAbstr
|
|
|
1255
1375
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1256
1376
|
throw new CommonMessageException(await response.json());
|
|
1257
1377
|
}
|
|
1258
|
-
throw new
|
|
1378
|
+
throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1259
1379
|
}
|
|
1260
1380
|
/**
|
|
1261
1381
|
* Deletes an existing table on a database
|
|
@@ -1283,7 +1403,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client20.TagAbstr
|
|
|
1283
1403
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1284
1404
|
throw new CommonMessageException(await response.json());
|
|
1285
1405
|
}
|
|
1286
|
-
throw new
|
|
1406
|
+
throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1287
1407
|
}
|
|
1288
1408
|
/**
|
|
1289
1409
|
* Returns a specific row at a table on a database
|
|
@@ -1312,7 +1432,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client20.TagAbstr
|
|
|
1312
1432
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1313
1433
|
throw new CommonMessageException(await response.json());
|
|
1314
1434
|
}
|
|
1315
|
-
throw new
|
|
1435
|
+
throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1316
1436
|
}
|
|
1317
1437
|
/**
|
|
1318
1438
|
* Returns paginated rows at a table on a database
|
|
@@ -1349,7 +1469,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client20.TagAbstr
|
|
|
1349
1469
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1350
1470
|
throw new CommonMessageException(await response.json());
|
|
1351
1471
|
}
|
|
1352
|
-
throw new
|
|
1472
|
+
throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1353
1473
|
}
|
|
1354
1474
|
/**
|
|
1355
1475
|
* Returns the schema of a specific table on a database
|
|
@@ -1377,7 +1497,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client20.TagAbstr
|
|
|
1377
1497
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1378
1498
|
throw new CommonMessageException(await response.json());
|
|
1379
1499
|
}
|
|
1380
|
-
throw new
|
|
1500
|
+
throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1381
1501
|
}
|
|
1382
1502
|
/**
|
|
1383
1503
|
* Returns all available tables on a database
|
|
@@ -1407,7 +1527,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client20.TagAbstr
|
|
|
1407
1527
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1408
1528
|
throw new CommonMessageException(await response.json());
|
|
1409
1529
|
}
|
|
1410
|
-
throw new
|
|
1530
|
+
throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1411
1531
|
}
|
|
1412
1532
|
/**
|
|
1413
1533
|
* Updates an existing row at a table on a database
|
|
@@ -1439,7 +1559,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client20.TagAbstr
|
|
|
1439
1559
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1440
1560
|
throw new CommonMessageException(await response.json());
|
|
1441
1561
|
}
|
|
1442
|
-
throw new
|
|
1562
|
+
throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1443
1563
|
}
|
|
1444
1564
|
/**
|
|
1445
1565
|
* Updates an existing table on a database
|
|
@@ -1470,14 +1590,14 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client20.TagAbstr
|
|
|
1470
1590
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1471
1591
|
throw new CommonMessageException(await response.json());
|
|
1472
1592
|
}
|
|
1473
|
-
throw new
|
|
1593
|
+
throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1474
1594
|
}
|
|
1475
1595
|
};
|
|
1476
1596
|
|
|
1477
1597
|
// src/BackendConnectionFilesystemTag.ts
|
|
1478
|
-
var
|
|
1479
|
-
var
|
|
1480
|
-
var BackendConnectionFilesystemTag = class extends
|
|
1598
|
+
var import_sdkgen_client24 = require("sdkgen-client");
|
|
1599
|
+
var import_sdkgen_client25 = require("sdkgen-client");
|
|
1600
|
+
var BackendConnectionFilesystemTag = class extends import_sdkgen_client24.TagAbstract {
|
|
1481
1601
|
/**
|
|
1482
1602
|
* Uploads one or more files on the filesystem connection
|
|
1483
1603
|
*
|
|
@@ -1504,7 +1624,7 @@ var BackendConnectionFilesystemTag = class extends import_sdkgen_client22.TagAbs
|
|
|
1504
1624
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1505
1625
|
throw new CommonMessageException(await response.json());
|
|
1506
1626
|
}
|
|
1507
|
-
throw new
|
|
1627
|
+
throw new import_sdkgen_client25.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1508
1628
|
}
|
|
1509
1629
|
/**
|
|
1510
1630
|
* Deletes an existing file on the filesystem connection
|
|
@@ -1532,7 +1652,7 @@ var BackendConnectionFilesystemTag = class extends import_sdkgen_client22.TagAbs
|
|
|
1532
1652
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1533
1653
|
throw new CommonMessageException(await response.json());
|
|
1534
1654
|
}
|
|
1535
|
-
throw new
|
|
1655
|
+
throw new import_sdkgen_client25.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1536
1656
|
}
|
|
1537
1657
|
/**
|
|
1538
1658
|
* Returns the content of the provided file id on the filesystem connection
|
|
@@ -1562,7 +1682,7 @@ var BackendConnectionFilesystemTag = class extends import_sdkgen_client22.TagAbs
|
|
|
1562
1682
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1563
1683
|
throw new CommonMessageException(await response.json());
|
|
1564
1684
|
}
|
|
1565
|
-
throw new
|
|
1685
|
+
throw new import_sdkgen_client25.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1566
1686
|
}
|
|
1567
1687
|
/**
|
|
1568
1688
|
* Returns all available files on the filesystem connection
|
|
@@ -1592,7 +1712,7 @@ var BackendConnectionFilesystemTag = class extends import_sdkgen_client22.TagAbs
|
|
|
1592
1712
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1593
1713
|
throw new CommonMessageException(await response.json());
|
|
1594
1714
|
}
|
|
1595
|
-
throw new
|
|
1715
|
+
throw new import_sdkgen_client25.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1596
1716
|
}
|
|
1597
1717
|
/**
|
|
1598
1718
|
* Updates an existing file on the filesystem connection
|
|
@@ -1621,14 +1741,14 @@ var BackendConnectionFilesystemTag = class extends import_sdkgen_client22.TagAbs
|
|
|
1621
1741
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1622
1742
|
throw new CommonMessageException(await response.json());
|
|
1623
1743
|
}
|
|
1624
|
-
throw new
|
|
1744
|
+
throw new import_sdkgen_client25.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1625
1745
|
}
|
|
1626
1746
|
};
|
|
1627
1747
|
|
|
1628
1748
|
// src/BackendConnectionHttpTag.ts
|
|
1629
|
-
var
|
|
1630
|
-
var
|
|
1631
|
-
var BackendConnectionHttpTag = class extends
|
|
1749
|
+
var import_sdkgen_client26 = require("sdkgen-client");
|
|
1750
|
+
var import_sdkgen_client27 = require("sdkgen-client");
|
|
1751
|
+
var BackendConnectionHttpTag = class extends import_sdkgen_client26.TagAbstract {
|
|
1632
1752
|
/**
|
|
1633
1753
|
* Sends an arbitrary HTTP request to the connection
|
|
1634
1754
|
*
|
|
@@ -1657,14 +1777,14 @@ var BackendConnectionHttpTag = class extends import_sdkgen_client24.TagAbstract
|
|
|
1657
1777
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1658
1778
|
throw new CommonMessageException(await response.json());
|
|
1659
1779
|
}
|
|
1660
|
-
throw new
|
|
1780
|
+
throw new import_sdkgen_client27.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1661
1781
|
}
|
|
1662
1782
|
};
|
|
1663
1783
|
|
|
1664
1784
|
// src/BackendConnectionSdkTag.ts
|
|
1665
|
-
var
|
|
1666
|
-
var
|
|
1667
|
-
var BackendConnectionSdkTag = class extends
|
|
1785
|
+
var import_sdkgen_client28 = require("sdkgen-client");
|
|
1786
|
+
var import_sdkgen_client29 = require("sdkgen-client");
|
|
1787
|
+
var BackendConnectionSdkTag = class extends import_sdkgen_client28.TagAbstract {
|
|
1668
1788
|
/**
|
|
1669
1789
|
* Returns the SDK specification
|
|
1670
1790
|
*
|
|
@@ -1690,14 +1810,20 @@ var BackendConnectionSdkTag = class extends import_sdkgen_client26.TagAbstract {
|
|
|
1690
1810
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1691
1811
|
throw new CommonMessageException(await response.json());
|
|
1692
1812
|
}
|
|
1693
|
-
throw new
|
|
1813
|
+
throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1694
1814
|
}
|
|
1695
1815
|
};
|
|
1696
1816
|
|
|
1697
1817
|
// src/BackendConnectionTag.ts
|
|
1698
|
-
var
|
|
1699
|
-
var
|
|
1700
|
-
var BackendConnectionTag = class extends
|
|
1818
|
+
var import_sdkgen_client30 = require("sdkgen-client");
|
|
1819
|
+
var import_sdkgen_client31 = require("sdkgen-client");
|
|
1820
|
+
var BackendConnectionTag = class extends import_sdkgen_client30.TagAbstract {
|
|
1821
|
+
agent() {
|
|
1822
|
+
return new BackendConnectionAgentTag(
|
|
1823
|
+
this.httpClient,
|
|
1824
|
+
this.parser
|
|
1825
|
+
);
|
|
1826
|
+
}
|
|
1701
1827
|
database() {
|
|
1702
1828
|
return new BackendConnectionDatabaseTag(
|
|
1703
1829
|
this.httpClient,
|
|
@@ -1748,7 +1874,7 @@ var BackendConnectionTag = class extends import_sdkgen_client28.TagAbstract {
|
|
|
1748
1874
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1749
1875
|
throw new CommonMessageException(await response.json());
|
|
1750
1876
|
}
|
|
1751
|
-
throw new
|
|
1877
|
+
throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1752
1878
|
}
|
|
1753
1879
|
/**
|
|
1754
1880
|
* Deletes an existing connection
|
|
@@ -1775,7 +1901,7 @@ var BackendConnectionTag = class extends import_sdkgen_client28.TagAbstract {
|
|
|
1775
1901
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1776
1902
|
throw new CommonMessageException(await response.json());
|
|
1777
1903
|
}
|
|
1778
|
-
throw new
|
|
1904
|
+
throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1779
1905
|
}
|
|
1780
1906
|
/**
|
|
1781
1907
|
* Returns a specific connection
|
|
@@ -1802,7 +1928,7 @@ var BackendConnectionTag = class extends import_sdkgen_client28.TagAbstract {
|
|
|
1802
1928
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1803
1929
|
throw new CommonMessageException(await response.json());
|
|
1804
1930
|
}
|
|
1805
|
-
throw new
|
|
1931
|
+
throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1806
1932
|
}
|
|
1807
1933
|
/**
|
|
1808
1934
|
* Returns a paginated list of connections
|
|
@@ -1832,7 +1958,7 @@ var BackendConnectionTag = class extends import_sdkgen_client28.TagAbstract {
|
|
|
1832
1958
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1833
1959
|
throw new CommonMessageException(await response.json());
|
|
1834
1960
|
}
|
|
1835
|
-
throw new
|
|
1961
|
+
throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1836
1962
|
}
|
|
1837
1963
|
/**
|
|
1838
1964
|
* Returns all available connection classes
|
|
@@ -1857,7 +1983,7 @@ var BackendConnectionTag = class extends import_sdkgen_client28.TagAbstract {
|
|
|
1857
1983
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1858
1984
|
throw new CommonMessageException(await response.json());
|
|
1859
1985
|
}
|
|
1860
|
-
throw new
|
|
1986
|
+
throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1861
1987
|
}
|
|
1862
1988
|
/**
|
|
1863
1989
|
* Returns the connection config form
|
|
@@ -1884,7 +2010,7 @@ var BackendConnectionTag = class extends import_sdkgen_client28.TagAbstract {
|
|
|
1884
2010
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1885
2011
|
throw new CommonMessageException(await response.json());
|
|
1886
2012
|
}
|
|
1887
|
-
throw new
|
|
2013
|
+
throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1888
2014
|
}
|
|
1889
2015
|
/**
|
|
1890
2016
|
* Returns a redirect url to start the OAuth2 authorization flow for the given connection
|
|
@@ -1911,7 +2037,7 @@ var BackendConnectionTag = class extends import_sdkgen_client28.TagAbstract {
|
|
|
1911
2037
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1912
2038
|
throw new CommonMessageException(await response.json());
|
|
1913
2039
|
}
|
|
1914
|
-
throw new
|
|
2040
|
+
throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1915
2041
|
}
|
|
1916
2042
|
/**
|
|
1917
2043
|
* Updates an existing connection
|
|
@@ -1941,14 +2067,14 @@ var BackendConnectionTag = class extends import_sdkgen_client28.TagAbstract {
|
|
|
1941
2067
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1942
2068
|
throw new CommonMessageException(await response.json());
|
|
1943
2069
|
}
|
|
1944
|
-
throw new
|
|
2070
|
+
throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1945
2071
|
}
|
|
1946
2072
|
};
|
|
1947
2073
|
|
|
1948
2074
|
// src/BackendCronjobTag.ts
|
|
1949
|
-
var
|
|
1950
|
-
var
|
|
1951
|
-
var BackendCronjobTag = class extends
|
|
2075
|
+
var import_sdkgen_client32 = require("sdkgen-client");
|
|
2076
|
+
var import_sdkgen_client33 = require("sdkgen-client");
|
|
2077
|
+
var BackendCronjobTag = class extends import_sdkgen_client32.TagAbstract {
|
|
1952
2078
|
/**
|
|
1953
2079
|
* Creates a new cronjob
|
|
1954
2080
|
*
|
|
@@ -1975,7 +2101,7 @@ var BackendCronjobTag = class extends import_sdkgen_client30.TagAbstract {
|
|
|
1975
2101
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1976
2102
|
throw new CommonMessageException(await response.json());
|
|
1977
2103
|
}
|
|
1978
|
-
throw new
|
|
2104
|
+
throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1979
2105
|
}
|
|
1980
2106
|
/**
|
|
1981
2107
|
* Deletes an existing cronjob
|
|
@@ -2002,7 +2128,7 @@ var BackendCronjobTag = class extends import_sdkgen_client30.TagAbstract {
|
|
|
2002
2128
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2003
2129
|
throw new CommonMessageException(await response.json());
|
|
2004
2130
|
}
|
|
2005
|
-
throw new
|
|
2131
|
+
throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2006
2132
|
}
|
|
2007
2133
|
/**
|
|
2008
2134
|
* Returns a specific cronjob
|
|
@@ -2029,7 +2155,7 @@ var BackendCronjobTag = class extends import_sdkgen_client30.TagAbstract {
|
|
|
2029
2155
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2030
2156
|
throw new CommonMessageException(await response.json());
|
|
2031
2157
|
}
|
|
2032
|
-
throw new
|
|
2158
|
+
throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2033
2159
|
}
|
|
2034
2160
|
/**
|
|
2035
2161
|
* Returns a paginated list of cronjobs
|
|
@@ -2058,7 +2184,7 @@ var BackendCronjobTag = class extends import_sdkgen_client30.TagAbstract {
|
|
|
2058
2184
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2059
2185
|
throw new CommonMessageException(await response.json());
|
|
2060
2186
|
}
|
|
2061
|
-
throw new
|
|
2187
|
+
throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2062
2188
|
}
|
|
2063
2189
|
/**
|
|
2064
2190
|
* Updates an existing cronjob
|
|
@@ -2088,14 +2214,14 @@ var BackendCronjobTag = class extends import_sdkgen_client30.TagAbstract {
|
|
|
2088
2214
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2089
2215
|
throw new CommonMessageException(await response.json());
|
|
2090
2216
|
}
|
|
2091
|
-
throw new
|
|
2217
|
+
throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2092
2218
|
}
|
|
2093
2219
|
};
|
|
2094
2220
|
|
|
2095
2221
|
// src/BackendDashboardTag.ts
|
|
2096
|
-
var
|
|
2097
|
-
var
|
|
2098
|
-
var BackendDashboardTag = class extends
|
|
2222
|
+
var import_sdkgen_client34 = require("sdkgen-client");
|
|
2223
|
+
var import_sdkgen_client35 = require("sdkgen-client");
|
|
2224
|
+
var BackendDashboardTag = class extends import_sdkgen_client34.TagAbstract {
|
|
2099
2225
|
/**
|
|
2100
2226
|
* Returns all available dashboard widgets
|
|
2101
2227
|
*
|
|
@@ -2119,14 +2245,14 @@ var BackendDashboardTag = class extends import_sdkgen_client32.TagAbstract {
|
|
|
2119
2245
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2120
2246
|
throw new CommonMessageException(await response.json());
|
|
2121
2247
|
}
|
|
2122
|
-
throw new
|
|
2248
|
+
throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2123
2249
|
}
|
|
2124
2250
|
};
|
|
2125
2251
|
|
|
2126
2252
|
// src/BackendEventTag.ts
|
|
2127
|
-
var
|
|
2128
|
-
var
|
|
2129
|
-
var BackendEventTag = class extends
|
|
2253
|
+
var import_sdkgen_client36 = require("sdkgen-client");
|
|
2254
|
+
var import_sdkgen_client37 = require("sdkgen-client");
|
|
2255
|
+
var BackendEventTag = class extends import_sdkgen_client36.TagAbstract {
|
|
2130
2256
|
/**
|
|
2131
2257
|
* Creates a new event
|
|
2132
2258
|
*
|
|
@@ -2153,7 +2279,7 @@ var BackendEventTag = class extends import_sdkgen_client34.TagAbstract {
|
|
|
2153
2279
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2154
2280
|
throw new CommonMessageException(await response.json());
|
|
2155
2281
|
}
|
|
2156
|
-
throw new
|
|
2282
|
+
throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2157
2283
|
}
|
|
2158
2284
|
/**
|
|
2159
2285
|
* Deletes an existing event
|
|
@@ -2180,7 +2306,7 @@ var BackendEventTag = class extends import_sdkgen_client34.TagAbstract {
|
|
|
2180
2306
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2181
2307
|
throw new CommonMessageException(await response.json());
|
|
2182
2308
|
}
|
|
2183
|
-
throw new
|
|
2309
|
+
throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2184
2310
|
}
|
|
2185
2311
|
/**
|
|
2186
2312
|
* Returns a specific event
|
|
@@ -2207,7 +2333,7 @@ var BackendEventTag = class extends import_sdkgen_client34.TagAbstract {
|
|
|
2207
2333
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2208
2334
|
throw new CommonMessageException(await response.json());
|
|
2209
2335
|
}
|
|
2210
|
-
throw new
|
|
2336
|
+
throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2211
2337
|
}
|
|
2212
2338
|
/**
|
|
2213
2339
|
* Returns a paginated list of events
|
|
@@ -2236,7 +2362,7 @@ var BackendEventTag = class extends import_sdkgen_client34.TagAbstract {
|
|
|
2236
2362
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2237
2363
|
throw new CommonMessageException(await response.json());
|
|
2238
2364
|
}
|
|
2239
|
-
throw new
|
|
2365
|
+
throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2240
2366
|
}
|
|
2241
2367
|
/**
|
|
2242
2368
|
* Updates an existing event
|
|
@@ -2266,14 +2392,14 @@ var BackendEventTag = class extends import_sdkgen_client34.TagAbstract {
|
|
|
2266
2392
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2267
2393
|
throw new CommonMessageException(await response.json());
|
|
2268
2394
|
}
|
|
2269
|
-
throw new
|
|
2395
|
+
throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2270
2396
|
}
|
|
2271
2397
|
};
|
|
2272
2398
|
|
|
2273
2399
|
// src/BackendFirewallTag.ts
|
|
2274
|
-
var
|
|
2275
|
-
var
|
|
2276
|
-
var BackendFirewallTag = class extends
|
|
2400
|
+
var import_sdkgen_client38 = require("sdkgen-client");
|
|
2401
|
+
var import_sdkgen_client39 = require("sdkgen-client");
|
|
2402
|
+
var BackendFirewallTag = class extends import_sdkgen_client38.TagAbstract {
|
|
2277
2403
|
/**
|
|
2278
2404
|
* Creates a new firewall rule
|
|
2279
2405
|
*
|
|
@@ -2300,7 +2426,7 @@ var BackendFirewallTag = class extends import_sdkgen_client36.TagAbstract {
|
|
|
2300
2426
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2301
2427
|
throw new CommonMessageException(await response.json());
|
|
2302
2428
|
}
|
|
2303
|
-
throw new
|
|
2429
|
+
throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2304
2430
|
}
|
|
2305
2431
|
/**
|
|
2306
2432
|
* Deletes an existing firewall rule
|
|
@@ -2327,7 +2453,7 @@ var BackendFirewallTag = class extends import_sdkgen_client36.TagAbstract {
|
|
|
2327
2453
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2328
2454
|
throw new CommonMessageException(await response.json());
|
|
2329
2455
|
}
|
|
2330
|
-
throw new
|
|
2456
|
+
throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2331
2457
|
}
|
|
2332
2458
|
/**
|
|
2333
2459
|
* Returns a specific firewall rule
|
|
@@ -2354,7 +2480,7 @@ var BackendFirewallTag = class extends import_sdkgen_client36.TagAbstract {
|
|
|
2354
2480
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2355
2481
|
throw new CommonMessageException(await response.json());
|
|
2356
2482
|
}
|
|
2357
|
-
throw new
|
|
2483
|
+
throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2358
2484
|
}
|
|
2359
2485
|
/**
|
|
2360
2486
|
* Returns a paginated list of firewall rules
|
|
@@ -2383,7 +2509,7 @@ var BackendFirewallTag = class extends import_sdkgen_client36.TagAbstract {
|
|
|
2383
2509
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2384
2510
|
throw new CommonMessageException(await response.json());
|
|
2385
2511
|
}
|
|
2386
|
-
throw new
|
|
2512
|
+
throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2387
2513
|
}
|
|
2388
2514
|
/**
|
|
2389
2515
|
* Updates an existing firewall rule
|
|
@@ -2413,14 +2539,14 @@ var BackendFirewallTag = class extends import_sdkgen_client36.TagAbstract {
|
|
|
2413
2539
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2414
2540
|
throw new CommonMessageException(await response.json());
|
|
2415
2541
|
}
|
|
2416
|
-
throw new
|
|
2542
|
+
throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2417
2543
|
}
|
|
2418
2544
|
};
|
|
2419
2545
|
|
|
2420
2546
|
// src/BackendFormTag.ts
|
|
2421
|
-
var
|
|
2422
|
-
var
|
|
2423
|
-
var BackendFormTag = class extends
|
|
2547
|
+
var import_sdkgen_client40 = require("sdkgen-client");
|
|
2548
|
+
var import_sdkgen_client41 = require("sdkgen-client");
|
|
2549
|
+
var BackendFormTag = class extends import_sdkgen_client40.TagAbstract {
|
|
2424
2550
|
/**
|
|
2425
2551
|
* Creates a new form
|
|
2426
2552
|
*
|
|
@@ -2447,7 +2573,7 @@ var BackendFormTag = class extends import_sdkgen_client38.TagAbstract {
|
|
|
2447
2573
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2448
2574
|
throw new CommonMessageException(await response.json());
|
|
2449
2575
|
}
|
|
2450
|
-
throw new
|
|
2576
|
+
throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2451
2577
|
}
|
|
2452
2578
|
/**
|
|
2453
2579
|
* Deletes an existing form
|
|
@@ -2474,7 +2600,7 @@ var BackendFormTag = class extends import_sdkgen_client38.TagAbstract {
|
|
|
2474
2600
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2475
2601
|
throw new CommonMessageException(await response.json());
|
|
2476
2602
|
}
|
|
2477
|
-
throw new
|
|
2603
|
+
throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2478
2604
|
}
|
|
2479
2605
|
/**
|
|
2480
2606
|
* Returns a specific form
|
|
@@ -2501,7 +2627,7 @@ var BackendFormTag = class extends import_sdkgen_client38.TagAbstract {
|
|
|
2501
2627
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2502
2628
|
throw new CommonMessageException(await response.json());
|
|
2503
2629
|
}
|
|
2504
|
-
throw new
|
|
2630
|
+
throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2505
2631
|
}
|
|
2506
2632
|
/**
|
|
2507
2633
|
* Returns a paginated list of forms
|
|
@@ -2530,7 +2656,7 @@ var BackendFormTag = class extends import_sdkgen_client38.TagAbstract {
|
|
|
2530
2656
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2531
2657
|
throw new CommonMessageException(await response.json());
|
|
2532
2658
|
}
|
|
2533
|
-
throw new
|
|
2659
|
+
throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2534
2660
|
}
|
|
2535
2661
|
/**
|
|
2536
2662
|
* Updates an existing form
|
|
@@ -2560,14 +2686,14 @@ var BackendFormTag = class extends import_sdkgen_client38.TagAbstract {
|
|
|
2560
2686
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2561
2687
|
throw new CommonMessageException(await response.json());
|
|
2562
2688
|
}
|
|
2563
|
-
throw new
|
|
2689
|
+
throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2564
2690
|
}
|
|
2565
2691
|
};
|
|
2566
2692
|
|
|
2567
2693
|
// src/BackendGeneratorTag.ts
|
|
2568
|
-
var
|
|
2569
|
-
var
|
|
2570
|
-
var BackendGeneratorTag = class extends
|
|
2694
|
+
var import_sdkgen_client42 = require("sdkgen-client");
|
|
2695
|
+
var import_sdkgen_client43 = require("sdkgen-client");
|
|
2696
|
+
var BackendGeneratorTag = class extends import_sdkgen_client42.TagAbstract {
|
|
2571
2697
|
/**
|
|
2572
2698
|
* Executes a generator with the provided config
|
|
2573
2699
|
*
|
|
@@ -2596,7 +2722,7 @@ var BackendGeneratorTag = class extends import_sdkgen_client40.TagAbstract {
|
|
|
2596
2722
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2597
2723
|
throw new CommonMessageException(await response.json());
|
|
2598
2724
|
}
|
|
2599
|
-
throw new
|
|
2725
|
+
throw new import_sdkgen_client43.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2600
2726
|
}
|
|
2601
2727
|
/**
|
|
2602
2728
|
* Generates a changelog of all potential changes if you execute this generator with the provided config
|
|
@@ -2626,7 +2752,7 @@ var BackendGeneratorTag = class extends import_sdkgen_client40.TagAbstract {
|
|
|
2626
2752
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2627
2753
|
throw new CommonMessageException(await response.json());
|
|
2628
2754
|
}
|
|
2629
|
-
throw new
|
|
2755
|
+
throw new import_sdkgen_client43.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2630
2756
|
}
|
|
2631
2757
|
/**
|
|
2632
2758
|
* Returns all available generator classes
|
|
@@ -2651,7 +2777,7 @@ var BackendGeneratorTag = class extends import_sdkgen_client40.TagAbstract {
|
|
|
2651
2777
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2652
2778
|
throw new CommonMessageException(await response.json());
|
|
2653
2779
|
}
|
|
2654
|
-
throw new
|
|
2780
|
+
throw new import_sdkgen_client43.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2655
2781
|
}
|
|
2656
2782
|
/**
|
|
2657
2783
|
* Returns the generator config form
|
|
@@ -2678,14 +2804,14 @@ var BackendGeneratorTag = class extends import_sdkgen_client40.TagAbstract {
|
|
|
2678
2804
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2679
2805
|
throw new CommonMessageException(await response.json());
|
|
2680
2806
|
}
|
|
2681
|
-
throw new
|
|
2807
|
+
throw new import_sdkgen_client43.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2682
2808
|
}
|
|
2683
2809
|
};
|
|
2684
2810
|
|
|
2685
2811
|
// src/BackendIdentityTag.ts
|
|
2686
|
-
var
|
|
2687
|
-
var
|
|
2688
|
-
var BackendIdentityTag = class extends
|
|
2812
|
+
var import_sdkgen_client44 = require("sdkgen-client");
|
|
2813
|
+
var import_sdkgen_client45 = require("sdkgen-client");
|
|
2814
|
+
var BackendIdentityTag = class extends import_sdkgen_client44.TagAbstract {
|
|
2689
2815
|
/**
|
|
2690
2816
|
* Creates a new identity
|
|
2691
2817
|
*
|
|
@@ -2712,7 +2838,7 @@ var BackendIdentityTag = class extends import_sdkgen_client42.TagAbstract {
|
|
|
2712
2838
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2713
2839
|
throw new CommonMessageException(await response.json());
|
|
2714
2840
|
}
|
|
2715
|
-
throw new
|
|
2841
|
+
throw new import_sdkgen_client45.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2716
2842
|
}
|
|
2717
2843
|
/**
|
|
2718
2844
|
* Deletes an existing identity
|
|
@@ -2739,7 +2865,7 @@ var BackendIdentityTag = class extends import_sdkgen_client42.TagAbstract {
|
|
|
2739
2865
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2740
2866
|
throw new CommonMessageException(await response.json());
|
|
2741
2867
|
}
|
|
2742
|
-
throw new
|
|
2868
|
+
throw new import_sdkgen_client45.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2743
2869
|
}
|
|
2744
2870
|
/**
|
|
2745
2871
|
* Returns a specific identity
|
|
@@ -2766,7 +2892,7 @@ var BackendIdentityTag = class extends import_sdkgen_client42.TagAbstract {
|
|
|
2766
2892
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2767
2893
|
throw new CommonMessageException(await response.json());
|
|
2768
2894
|
}
|
|
2769
|
-
throw new
|
|
2895
|
+
throw new import_sdkgen_client45.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2770
2896
|
}
|
|
2771
2897
|
/**
|
|
2772
2898
|
* Returns a paginated list of identities
|
|
@@ -2795,7 +2921,7 @@ var BackendIdentityTag = class extends import_sdkgen_client42.TagAbstract {
|
|
|
2795
2921
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2796
2922
|
throw new CommonMessageException(await response.json());
|
|
2797
2923
|
}
|
|
2798
|
-
throw new
|
|
2924
|
+
throw new import_sdkgen_client45.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2799
2925
|
}
|
|
2800
2926
|
/**
|
|
2801
2927
|
* Returns all available identity classes
|
|
@@ -2820,7 +2946,7 @@ var BackendIdentityTag = class extends import_sdkgen_client42.TagAbstract {
|
|
|
2820
2946
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2821
2947
|
throw new CommonMessageException(await response.json());
|
|
2822
2948
|
}
|
|
2823
|
-
throw new
|
|
2949
|
+
throw new import_sdkgen_client45.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2824
2950
|
}
|
|
2825
2951
|
/**
|
|
2826
2952
|
* Returns the identity config form
|
|
@@ -2847,7 +2973,7 @@ var BackendIdentityTag = class extends import_sdkgen_client42.TagAbstract {
|
|
|
2847
2973
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2848
2974
|
throw new CommonMessageException(await response.json());
|
|
2849
2975
|
}
|
|
2850
|
-
throw new
|
|
2976
|
+
throw new import_sdkgen_client45.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2851
2977
|
}
|
|
2852
2978
|
/**
|
|
2853
2979
|
* Updates an existing identity
|
|
@@ -2877,14 +3003,14 @@ var BackendIdentityTag = class extends import_sdkgen_client42.TagAbstract {
|
|
|
2877
3003
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2878
3004
|
throw new CommonMessageException(await response.json());
|
|
2879
3005
|
}
|
|
2880
|
-
throw new
|
|
3006
|
+
throw new import_sdkgen_client45.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2881
3007
|
}
|
|
2882
3008
|
};
|
|
2883
3009
|
|
|
2884
3010
|
// src/BackendLogTag.ts
|
|
2885
|
-
var
|
|
2886
|
-
var
|
|
2887
|
-
var BackendLogTag = class extends
|
|
3011
|
+
var import_sdkgen_client46 = require("sdkgen-client");
|
|
3012
|
+
var import_sdkgen_client47 = require("sdkgen-client");
|
|
3013
|
+
var BackendLogTag = class extends import_sdkgen_client46.TagAbstract {
|
|
2888
3014
|
/**
|
|
2889
3015
|
* Returns a specific log
|
|
2890
3016
|
*
|
|
@@ -2910,7 +3036,7 @@ var BackendLogTag = class extends import_sdkgen_client44.TagAbstract {
|
|
|
2910
3036
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2911
3037
|
throw new CommonMessageException(await response.json());
|
|
2912
3038
|
}
|
|
2913
|
-
throw new
|
|
3039
|
+
throw new import_sdkgen_client47.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2914
3040
|
}
|
|
2915
3041
|
/**
|
|
2916
3042
|
* Returns a paginated list of logs
|
|
@@ -2950,7 +3076,7 @@ var BackendLogTag = class extends import_sdkgen_client44.TagAbstract {
|
|
|
2950
3076
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2951
3077
|
throw new CommonMessageException(await response.json());
|
|
2952
3078
|
}
|
|
2953
|
-
throw new
|
|
3079
|
+
throw new import_sdkgen_client47.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2954
3080
|
}
|
|
2955
3081
|
/**
|
|
2956
3082
|
* Returns a paginated list of log errors
|
|
@@ -2979,7 +3105,7 @@ var BackendLogTag = class extends import_sdkgen_client44.TagAbstract {
|
|
|
2979
3105
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2980
3106
|
throw new CommonMessageException(await response.json());
|
|
2981
3107
|
}
|
|
2982
|
-
throw new
|
|
3108
|
+
throw new import_sdkgen_client47.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2983
3109
|
}
|
|
2984
3110
|
/**
|
|
2985
3111
|
* Returns a specific error
|
|
@@ -3006,14 +3132,14 @@ var BackendLogTag = class extends import_sdkgen_client44.TagAbstract {
|
|
|
3006
3132
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3007
3133
|
throw new CommonMessageException(await response.json());
|
|
3008
3134
|
}
|
|
3009
|
-
throw new
|
|
3135
|
+
throw new import_sdkgen_client47.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3010
3136
|
}
|
|
3011
3137
|
};
|
|
3012
3138
|
|
|
3013
3139
|
// src/BackendMarketplaceActionTag.ts
|
|
3014
|
-
var
|
|
3015
|
-
var
|
|
3016
|
-
var BackendMarketplaceActionTag = class extends
|
|
3140
|
+
var import_sdkgen_client48 = require("sdkgen-client");
|
|
3141
|
+
var import_sdkgen_client49 = require("sdkgen-client");
|
|
3142
|
+
var BackendMarketplaceActionTag = class extends import_sdkgen_client48.TagAbstract {
|
|
3017
3143
|
/**
|
|
3018
3144
|
* Returns a specific marketplace action
|
|
3019
3145
|
*
|
|
@@ -3040,7 +3166,7 @@ var BackendMarketplaceActionTag = class extends import_sdkgen_client46.TagAbstra
|
|
|
3040
3166
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3041
3167
|
throw new CommonMessageException(await response.json());
|
|
3042
3168
|
}
|
|
3043
|
-
throw new
|
|
3169
|
+
throw new import_sdkgen_client49.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3044
3170
|
}
|
|
3045
3171
|
/**
|
|
3046
3172
|
* Returns a paginated list of marketplace actions
|
|
@@ -3068,7 +3194,7 @@ var BackendMarketplaceActionTag = class extends import_sdkgen_client46.TagAbstra
|
|
|
3068
3194
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3069
3195
|
throw new CommonMessageException(await response.json());
|
|
3070
3196
|
}
|
|
3071
|
-
throw new
|
|
3197
|
+
throw new import_sdkgen_client49.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3072
3198
|
}
|
|
3073
3199
|
/**
|
|
3074
3200
|
* Installs an action from the marketplace
|
|
@@ -3096,7 +3222,7 @@ var BackendMarketplaceActionTag = class extends import_sdkgen_client46.TagAbstra
|
|
|
3096
3222
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3097
3223
|
throw new CommonMessageException(await response.json());
|
|
3098
3224
|
}
|
|
3099
|
-
throw new
|
|
3225
|
+
throw new import_sdkgen_client49.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3100
3226
|
}
|
|
3101
3227
|
/**
|
|
3102
3228
|
* Upgrades an action from the marketplace
|
|
@@ -3124,14 +3250,14 @@ var BackendMarketplaceActionTag = class extends import_sdkgen_client46.TagAbstra
|
|
|
3124
3250
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3125
3251
|
throw new CommonMessageException(await response.json());
|
|
3126
3252
|
}
|
|
3127
|
-
throw new
|
|
3253
|
+
throw new import_sdkgen_client49.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3128
3254
|
}
|
|
3129
3255
|
};
|
|
3130
3256
|
|
|
3131
3257
|
// src/BackendMarketplaceAppTag.ts
|
|
3132
|
-
var
|
|
3133
|
-
var
|
|
3134
|
-
var BackendMarketplaceAppTag = class extends
|
|
3258
|
+
var import_sdkgen_client50 = require("sdkgen-client");
|
|
3259
|
+
var import_sdkgen_client51 = require("sdkgen-client");
|
|
3260
|
+
var BackendMarketplaceAppTag = class extends import_sdkgen_client50.TagAbstract {
|
|
3135
3261
|
/**
|
|
3136
3262
|
* Returns a specific marketplace app
|
|
3137
3263
|
*
|
|
@@ -3158,7 +3284,7 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client48.TagAbstract
|
|
|
3158
3284
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3159
3285
|
throw new CommonMessageException(await response.json());
|
|
3160
3286
|
}
|
|
3161
|
-
throw new
|
|
3287
|
+
throw new import_sdkgen_client51.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3162
3288
|
}
|
|
3163
3289
|
/**
|
|
3164
3290
|
* Returns a paginated list of marketplace apps
|
|
@@ -3186,7 +3312,7 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client48.TagAbstract
|
|
|
3186
3312
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3187
3313
|
throw new CommonMessageException(await response.json());
|
|
3188
3314
|
}
|
|
3189
|
-
throw new
|
|
3315
|
+
throw new import_sdkgen_client51.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3190
3316
|
}
|
|
3191
3317
|
/**
|
|
3192
3318
|
* Installs an app from the marketplace
|
|
@@ -3214,7 +3340,7 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client48.TagAbstract
|
|
|
3214
3340
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3215
3341
|
throw new CommonMessageException(await response.json());
|
|
3216
3342
|
}
|
|
3217
|
-
throw new
|
|
3343
|
+
throw new import_sdkgen_client51.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3218
3344
|
}
|
|
3219
3345
|
/**
|
|
3220
3346
|
* Upgrades an app from the marketplace
|
|
@@ -3242,14 +3368,14 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client48.TagAbstract
|
|
|
3242
3368
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3243
3369
|
throw new CommonMessageException(await response.json());
|
|
3244
3370
|
}
|
|
3245
|
-
throw new
|
|
3371
|
+
throw new import_sdkgen_client51.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3246
3372
|
}
|
|
3247
3373
|
};
|
|
3248
3374
|
|
|
3249
3375
|
// src/BackendMarketplaceBundleTag.ts
|
|
3250
|
-
var
|
|
3251
|
-
var
|
|
3252
|
-
var BackendMarketplaceBundleTag = class extends
|
|
3376
|
+
var import_sdkgen_client52 = require("sdkgen-client");
|
|
3377
|
+
var import_sdkgen_client53 = require("sdkgen-client");
|
|
3378
|
+
var BackendMarketplaceBundleTag = class extends import_sdkgen_client52.TagAbstract {
|
|
3253
3379
|
/**
|
|
3254
3380
|
* Returns a specific marketplace bundle
|
|
3255
3381
|
*
|
|
@@ -3276,7 +3402,7 @@ var BackendMarketplaceBundleTag = class extends import_sdkgen_client50.TagAbstra
|
|
|
3276
3402
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3277
3403
|
throw new CommonMessageException(await response.json());
|
|
3278
3404
|
}
|
|
3279
|
-
throw new
|
|
3405
|
+
throw new import_sdkgen_client53.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3280
3406
|
}
|
|
3281
3407
|
/**
|
|
3282
3408
|
* Returns a paginated list of marketplace bundles
|
|
@@ -3304,7 +3430,7 @@ var BackendMarketplaceBundleTag = class extends import_sdkgen_client50.TagAbstra
|
|
|
3304
3430
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3305
3431
|
throw new CommonMessageException(await response.json());
|
|
3306
3432
|
}
|
|
3307
|
-
throw new
|
|
3433
|
+
throw new import_sdkgen_client53.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3308
3434
|
}
|
|
3309
3435
|
/**
|
|
3310
3436
|
* Installs an bundle from the marketplace
|
|
@@ -3332,7 +3458,7 @@ var BackendMarketplaceBundleTag = class extends import_sdkgen_client50.TagAbstra
|
|
|
3332
3458
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3333
3459
|
throw new CommonMessageException(await response.json());
|
|
3334
3460
|
}
|
|
3335
|
-
throw new
|
|
3461
|
+
throw new import_sdkgen_client53.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3336
3462
|
}
|
|
3337
3463
|
/**
|
|
3338
3464
|
* Upgrades an bundle from the marketplace
|
|
@@ -3360,13 +3486,13 @@ var BackendMarketplaceBundleTag = class extends import_sdkgen_client50.TagAbstra
|
|
|
3360
3486
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3361
3487
|
throw new CommonMessageException(await response.json());
|
|
3362
3488
|
}
|
|
3363
|
-
throw new
|
|
3489
|
+
throw new import_sdkgen_client53.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3364
3490
|
}
|
|
3365
3491
|
};
|
|
3366
3492
|
|
|
3367
3493
|
// src/BackendMarketplaceTag.ts
|
|
3368
|
-
var
|
|
3369
|
-
var BackendMarketplaceTag = class extends
|
|
3494
|
+
var import_sdkgen_client54 = require("sdkgen-client");
|
|
3495
|
+
var BackendMarketplaceTag = class extends import_sdkgen_client54.TagAbstract {
|
|
3370
3496
|
action() {
|
|
3371
3497
|
return new BackendMarketplaceActionTag(
|
|
3372
3498
|
this.httpClient,
|
|
@@ -3388,9 +3514,9 @@ var BackendMarketplaceTag = class extends import_sdkgen_client52.TagAbstract {
|
|
|
3388
3514
|
};
|
|
3389
3515
|
|
|
3390
3516
|
// src/BackendOperationTag.ts
|
|
3391
|
-
var
|
|
3392
|
-
var
|
|
3393
|
-
var BackendOperationTag = class extends
|
|
3517
|
+
var import_sdkgen_client55 = require("sdkgen-client");
|
|
3518
|
+
var import_sdkgen_client56 = require("sdkgen-client");
|
|
3519
|
+
var BackendOperationTag = class extends import_sdkgen_client55.TagAbstract {
|
|
3394
3520
|
/**
|
|
3395
3521
|
* Creates a new operation
|
|
3396
3522
|
*
|
|
@@ -3417,7 +3543,7 @@ var BackendOperationTag = class extends import_sdkgen_client53.TagAbstract {
|
|
|
3417
3543
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3418
3544
|
throw new CommonMessageException(await response.json());
|
|
3419
3545
|
}
|
|
3420
|
-
throw new
|
|
3546
|
+
throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3421
3547
|
}
|
|
3422
3548
|
/**
|
|
3423
3549
|
* Deletes an existing operation
|
|
@@ -3444,7 +3570,7 @@ var BackendOperationTag = class extends import_sdkgen_client53.TagAbstract {
|
|
|
3444
3570
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3445
3571
|
throw new CommonMessageException(await response.json());
|
|
3446
3572
|
}
|
|
3447
|
-
throw new
|
|
3573
|
+
throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3448
3574
|
}
|
|
3449
3575
|
/**
|
|
3450
3576
|
* Returns a specific operation
|
|
@@ -3471,7 +3597,7 @@ var BackendOperationTag = class extends import_sdkgen_client53.TagAbstract {
|
|
|
3471
3597
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3472
3598
|
throw new CommonMessageException(await response.json());
|
|
3473
3599
|
}
|
|
3474
|
-
throw new
|
|
3600
|
+
throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3475
3601
|
}
|
|
3476
3602
|
/**
|
|
3477
3603
|
* Returns a paginated list of operations
|
|
@@ -3500,7 +3626,7 @@ var BackendOperationTag = class extends import_sdkgen_client53.TagAbstract {
|
|
|
3500
3626
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3501
3627
|
throw new CommonMessageException(await response.json());
|
|
3502
3628
|
}
|
|
3503
|
-
throw new
|
|
3629
|
+
throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3504
3630
|
}
|
|
3505
3631
|
/**
|
|
3506
3632
|
* Updates an existing operation
|
|
@@ -3530,14 +3656,14 @@ var BackendOperationTag = class extends import_sdkgen_client53.TagAbstract {
|
|
|
3530
3656
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3531
3657
|
throw new CommonMessageException(await response.json());
|
|
3532
3658
|
}
|
|
3533
|
-
throw new
|
|
3659
|
+
throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3534
3660
|
}
|
|
3535
3661
|
};
|
|
3536
3662
|
|
|
3537
3663
|
// src/BackendPageTag.ts
|
|
3538
|
-
var
|
|
3539
|
-
var
|
|
3540
|
-
var BackendPageTag = class extends
|
|
3664
|
+
var import_sdkgen_client57 = require("sdkgen-client");
|
|
3665
|
+
var import_sdkgen_client58 = require("sdkgen-client");
|
|
3666
|
+
var BackendPageTag = class extends import_sdkgen_client57.TagAbstract {
|
|
3541
3667
|
/**
|
|
3542
3668
|
* Creates a new page
|
|
3543
3669
|
*
|
|
@@ -3564,7 +3690,7 @@ var BackendPageTag = class extends import_sdkgen_client55.TagAbstract {
|
|
|
3564
3690
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3565
3691
|
throw new CommonMessageException(await response.json());
|
|
3566
3692
|
}
|
|
3567
|
-
throw new
|
|
3693
|
+
throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3568
3694
|
}
|
|
3569
3695
|
/**
|
|
3570
3696
|
* Deletes an existing page
|
|
@@ -3591,7 +3717,7 @@ var BackendPageTag = class extends import_sdkgen_client55.TagAbstract {
|
|
|
3591
3717
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3592
3718
|
throw new CommonMessageException(await response.json());
|
|
3593
3719
|
}
|
|
3594
|
-
throw new
|
|
3720
|
+
throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3595
3721
|
}
|
|
3596
3722
|
/**
|
|
3597
3723
|
* Returns a specific page
|
|
@@ -3618,7 +3744,7 @@ var BackendPageTag = class extends import_sdkgen_client55.TagAbstract {
|
|
|
3618
3744
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3619
3745
|
throw new CommonMessageException(await response.json());
|
|
3620
3746
|
}
|
|
3621
|
-
throw new
|
|
3747
|
+
throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3622
3748
|
}
|
|
3623
3749
|
/**
|
|
3624
3750
|
* Returns a paginated list of pages
|
|
@@ -3647,7 +3773,7 @@ var BackendPageTag = class extends import_sdkgen_client55.TagAbstract {
|
|
|
3647
3773
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3648
3774
|
throw new CommonMessageException(await response.json());
|
|
3649
3775
|
}
|
|
3650
|
-
throw new
|
|
3776
|
+
throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3651
3777
|
}
|
|
3652
3778
|
/**
|
|
3653
3779
|
* Updates an existing page
|
|
@@ -3677,14 +3803,14 @@ var BackendPageTag = class extends import_sdkgen_client55.TagAbstract {
|
|
|
3677
3803
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3678
3804
|
throw new CommonMessageException(await response.json());
|
|
3679
3805
|
}
|
|
3680
|
-
throw new
|
|
3806
|
+
throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3681
3807
|
}
|
|
3682
3808
|
};
|
|
3683
3809
|
|
|
3684
3810
|
// src/BackendPlanTag.ts
|
|
3685
|
-
var
|
|
3686
|
-
var
|
|
3687
|
-
var BackendPlanTag = class extends
|
|
3811
|
+
var import_sdkgen_client59 = require("sdkgen-client");
|
|
3812
|
+
var import_sdkgen_client60 = require("sdkgen-client");
|
|
3813
|
+
var BackendPlanTag = class extends import_sdkgen_client59.TagAbstract {
|
|
3688
3814
|
/**
|
|
3689
3815
|
* Creates a new plan
|
|
3690
3816
|
*
|
|
@@ -3711,7 +3837,7 @@ var BackendPlanTag = class extends import_sdkgen_client57.TagAbstract {
|
|
|
3711
3837
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3712
3838
|
throw new CommonMessageException(await response.json());
|
|
3713
3839
|
}
|
|
3714
|
-
throw new
|
|
3840
|
+
throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3715
3841
|
}
|
|
3716
3842
|
/**
|
|
3717
3843
|
* Deletes an existing plan
|
|
@@ -3738,7 +3864,7 @@ var BackendPlanTag = class extends import_sdkgen_client57.TagAbstract {
|
|
|
3738
3864
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3739
3865
|
throw new CommonMessageException(await response.json());
|
|
3740
3866
|
}
|
|
3741
|
-
throw new
|
|
3867
|
+
throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3742
3868
|
}
|
|
3743
3869
|
/**
|
|
3744
3870
|
* Returns a specific plan
|
|
@@ -3765,7 +3891,7 @@ var BackendPlanTag = class extends import_sdkgen_client57.TagAbstract {
|
|
|
3765
3891
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3766
3892
|
throw new CommonMessageException(await response.json());
|
|
3767
3893
|
}
|
|
3768
|
-
throw new
|
|
3894
|
+
throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3769
3895
|
}
|
|
3770
3896
|
/**
|
|
3771
3897
|
* Returns a paginated list of plans
|
|
@@ -3794,7 +3920,7 @@ var BackendPlanTag = class extends import_sdkgen_client57.TagAbstract {
|
|
|
3794
3920
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3795
3921
|
throw new CommonMessageException(await response.json());
|
|
3796
3922
|
}
|
|
3797
|
-
throw new
|
|
3923
|
+
throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3798
3924
|
}
|
|
3799
3925
|
/**
|
|
3800
3926
|
* Updates an existing plan
|
|
@@ -3824,14 +3950,14 @@ var BackendPlanTag = class extends import_sdkgen_client57.TagAbstract {
|
|
|
3824
3950
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3825
3951
|
throw new CommonMessageException(await response.json());
|
|
3826
3952
|
}
|
|
3827
|
-
throw new
|
|
3953
|
+
throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3828
3954
|
}
|
|
3829
3955
|
};
|
|
3830
3956
|
|
|
3831
3957
|
// src/BackendRateTag.ts
|
|
3832
|
-
var
|
|
3833
|
-
var
|
|
3834
|
-
var BackendRateTag = class extends
|
|
3958
|
+
var import_sdkgen_client61 = require("sdkgen-client");
|
|
3959
|
+
var import_sdkgen_client62 = require("sdkgen-client");
|
|
3960
|
+
var BackendRateTag = class extends import_sdkgen_client61.TagAbstract {
|
|
3835
3961
|
/**
|
|
3836
3962
|
* Creates a new rate limitation
|
|
3837
3963
|
*
|
|
@@ -3858,7 +3984,7 @@ var BackendRateTag = class extends import_sdkgen_client59.TagAbstract {
|
|
|
3858
3984
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3859
3985
|
throw new CommonMessageException(await response.json());
|
|
3860
3986
|
}
|
|
3861
|
-
throw new
|
|
3987
|
+
throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3862
3988
|
}
|
|
3863
3989
|
/**
|
|
3864
3990
|
* Deletes an existing rate
|
|
@@ -3885,7 +4011,7 @@ var BackendRateTag = class extends import_sdkgen_client59.TagAbstract {
|
|
|
3885
4011
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3886
4012
|
throw new CommonMessageException(await response.json());
|
|
3887
4013
|
}
|
|
3888
|
-
throw new
|
|
4014
|
+
throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3889
4015
|
}
|
|
3890
4016
|
/**
|
|
3891
4017
|
* Returns a specific rate
|
|
@@ -3912,7 +4038,7 @@ var BackendRateTag = class extends import_sdkgen_client59.TagAbstract {
|
|
|
3912
4038
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3913
4039
|
throw new CommonMessageException(await response.json());
|
|
3914
4040
|
}
|
|
3915
|
-
throw new
|
|
4041
|
+
throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3916
4042
|
}
|
|
3917
4043
|
/**
|
|
3918
4044
|
* Returns a paginated list of rate limitations
|
|
@@ -3941,7 +4067,7 @@ var BackendRateTag = class extends import_sdkgen_client59.TagAbstract {
|
|
|
3941
4067
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3942
4068
|
throw new CommonMessageException(await response.json());
|
|
3943
4069
|
}
|
|
3944
|
-
throw new
|
|
4070
|
+
throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3945
4071
|
}
|
|
3946
4072
|
/**
|
|
3947
4073
|
* Updates an existing rate
|
|
@@ -3971,14 +4097,14 @@ var BackendRateTag = class extends import_sdkgen_client59.TagAbstract {
|
|
|
3971
4097
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3972
4098
|
throw new CommonMessageException(await response.json());
|
|
3973
4099
|
}
|
|
3974
|
-
throw new
|
|
4100
|
+
throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3975
4101
|
}
|
|
3976
4102
|
};
|
|
3977
4103
|
|
|
3978
4104
|
// src/BackendRoleTag.ts
|
|
3979
|
-
var
|
|
3980
|
-
var
|
|
3981
|
-
var BackendRoleTag = class extends
|
|
4105
|
+
var import_sdkgen_client63 = require("sdkgen-client");
|
|
4106
|
+
var import_sdkgen_client64 = require("sdkgen-client");
|
|
4107
|
+
var BackendRoleTag = class extends import_sdkgen_client63.TagAbstract {
|
|
3982
4108
|
/**
|
|
3983
4109
|
* Creates a new role
|
|
3984
4110
|
*
|
|
@@ -4005,7 +4131,7 @@ var BackendRoleTag = class extends import_sdkgen_client61.TagAbstract {
|
|
|
4005
4131
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4006
4132
|
throw new CommonMessageException(await response.json());
|
|
4007
4133
|
}
|
|
4008
|
-
throw new
|
|
4134
|
+
throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4009
4135
|
}
|
|
4010
4136
|
/**
|
|
4011
4137
|
* Deletes an existing role
|
|
@@ -4032,7 +4158,7 @@ var BackendRoleTag = class extends import_sdkgen_client61.TagAbstract {
|
|
|
4032
4158
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4033
4159
|
throw new CommonMessageException(await response.json());
|
|
4034
4160
|
}
|
|
4035
|
-
throw new
|
|
4161
|
+
throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4036
4162
|
}
|
|
4037
4163
|
/**
|
|
4038
4164
|
* Returns a specific role
|
|
@@ -4059,7 +4185,7 @@ var BackendRoleTag = class extends import_sdkgen_client61.TagAbstract {
|
|
|
4059
4185
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4060
4186
|
throw new CommonMessageException(await response.json());
|
|
4061
4187
|
}
|
|
4062
|
-
throw new
|
|
4188
|
+
throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4063
4189
|
}
|
|
4064
4190
|
/**
|
|
4065
4191
|
* Returns a paginated list of roles
|
|
@@ -4088,7 +4214,7 @@ var BackendRoleTag = class extends import_sdkgen_client61.TagAbstract {
|
|
|
4088
4214
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4089
4215
|
throw new CommonMessageException(await response.json());
|
|
4090
4216
|
}
|
|
4091
|
-
throw new
|
|
4217
|
+
throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4092
4218
|
}
|
|
4093
4219
|
/**
|
|
4094
4220
|
* Updates an existing role
|
|
@@ -4118,14 +4244,14 @@ var BackendRoleTag = class extends import_sdkgen_client61.TagAbstract {
|
|
|
4118
4244
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4119
4245
|
throw new CommonMessageException(await response.json());
|
|
4120
4246
|
}
|
|
4121
|
-
throw new
|
|
4247
|
+
throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4122
4248
|
}
|
|
4123
4249
|
};
|
|
4124
4250
|
|
|
4125
4251
|
// src/BackendSchemaTag.ts
|
|
4126
|
-
var
|
|
4127
|
-
var
|
|
4128
|
-
var BackendSchemaTag = class extends
|
|
4252
|
+
var import_sdkgen_client65 = require("sdkgen-client");
|
|
4253
|
+
var import_sdkgen_client66 = require("sdkgen-client");
|
|
4254
|
+
var BackendSchemaTag = class extends import_sdkgen_client65.TagAbstract {
|
|
4129
4255
|
/**
|
|
4130
4256
|
* Creates a new schema
|
|
4131
4257
|
*
|
|
@@ -4152,7 +4278,7 @@ var BackendSchemaTag = class extends import_sdkgen_client63.TagAbstract {
|
|
|
4152
4278
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4153
4279
|
throw new CommonMessageException(await response.json());
|
|
4154
4280
|
}
|
|
4155
|
-
throw new
|
|
4281
|
+
throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4156
4282
|
}
|
|
4157
4283
|
/**
|
|
4158
4284
|
* Deletes an existing schema
|
|
@@ -4179,7 +4305,7 @@ var BackendSchemaTag = class extends import_sdkgen_client63.TagAbstract {
|
|
|
4179
4305
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4180
4306
|
throw new CommonMessageException(await response.json());
|
|
4181
4307
|
}
|
|
4182
|
-
throw new
|
|
4308
|
+
throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4183
4309
|
}
|
|
4184
4310
|
/**
|
|
4185
4311
|
* Returns a specific schema
|
|
@@ -4206,7 +4332,7 @@ var BackendSchemaTag = class extends import_sdkgen_client63.TagAbstract {
|
|
|
4206
4332
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4207
4333
|
throw new CommonMessageException(await response.json());
|
|
4208
4334
|
}
|
|
4209
|
-
throw new
|
|
4335
|
+
throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4210
4336
|
}
|
|
4211
4337
|
/**
|
|
4212
4338
|
* Returns a paginated list of schemas
|
|
@@ -4235,7 +4361,7 @@ var BackendSchemaTag = class extends import_sdkgen_client63.TagAbstract {
|
|
|
4235
4361
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4236
4362
|
throw new CommonMessageException(await response.json());
|
|
4237
4363
|
}
|
|
4238
|
-
throw new
|
|
4364
|
+
throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4239
4365
|
}
|
|
4240
4366
|
/**
|
|
4241
4367
|
* Returns a HTML preview of the provided schema
|
|
@@ -4262,7 +4388,7 @@ var BackendSchemaTag = class extends import_sdkgen_client63.TagAbstract {
|
|
|
4262
4388
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4263
4389
|
throw new CommonMessageException(await response.json());
|
|
4264
4390
|
}
|
|
4265
|
-
throw new
|
|
4391
|
+
throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4266
4392
|
}
|
|
4267
4393
|
/**
|
|
4268
4394
|
* Updates an existing schema
|
|
@@ -4292,14 +4418,14 @@ var BackendSchemaTag = class extends import_sdkgen_client63.TagAbstract {
|
|
|
4292
4418
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4293
4419
|
throw new CommonMessageException(await response.json());
|
|
4294
4420
|
}
|
|
4295
|
-
throw new
|
|
4421
|
+
throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4296
4422
|
}
|
|
4297
4423
|
};
|
|
4298
4424
|
|
|
4299
4425
|
// src/BackendScopeTag.ts
|
|
4300
|
-
var
|
|
4301
|
-
var
|
|
4302
|
-
var BackendScopeTag = class extends
|
|
4426
|
+
var import_sdkgen_client67 = require("sdkgen-client");
|
|
4427
|
+
var import_sdkgen_client68 = require("sdkgen-client");
|
|
4428
|
+
var BackendScopeTag = class extends import_sdkgen_client67.TagAbstract {
|
|
4303
4429
|
/**
|
|
4304
4430
|
* Creates a new scope
|
|
4305
4431
|
*
|
|
@@ -4326,7 +4452,7 @@ var BackendScopeTag = class extends import_sdkgen_client65.TagAbstract {
|
|
|
4326
4452
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4327
4453
|
throw new CommonMessageException(await response.json());
|
|
4328
4454
|
}
|
|
4329
|
-
throw new
|
|
4455
|
+
throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4330
4456
|
}
|
|
4331
4457
|
/**
|
|
4332
4458
|
* Deletes an existing scope
|
|
@@ -4353,7 +4479,7 @@ var BackendScopeTag = class extends import_sdkgen_client65.TagAbstract {
|
|
|
4353
4479
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4354
4480
|
throw new CommonMessageException(await response.json());
|
|
4355
4481
|
}
|
|
4356
|
-
throw new
|
|
4482
|
+
throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4357
4483
|
}
|
|
4358
4484
|
/**
|
|
4359
4485
|
* Returns a specific scope
|
|
@@ -4380,7 +4506,7 @@ var BackendScopeTag = class extends import_sdkgen_client65.TagAbstract {
|
|
|
4380
4506
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4381
4507
|
throw new CommonMessageException(await response.json());
|
|
4382
4508
|
}
|
|
4383
|
-
throw new
|
|
4509
|
+
throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4384
4510
|
}
|
|
4385
4511
|
/**
|
|
4386
4512
|
* Returns a paginated list of scopes
|
|
@@ -4409,7 +4535,7 @@ var BackendScopeTag = class extends import_sdkgen_client65.TagAbstract {
|
|
|
4409
4535
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4410
4536
|
throw new CommonMessageException(await response.json());
|
|
4411
4537
|
}
|
|
4412
|
-
throw new
|
|
4538
|
+
throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4413
4539
|
}
|
|
4414
4540
|
/**
|
|
4415
4541
|
* Returns all available scopes grouped by category
|
|
@@ -4434,7 +4560,7 @@ var BackendScopeTag = class extends import_sdkgen_client65.TagAbstract {
|
|
|
4434
4560
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4435
4561
|
throw new CommonMessageException(await response.json());
|
|
4436
4562
|
}
|
|
4437
|
-
throw new
|
|
4563
|
+
throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4438
4564
|
}
|
|
4439
4565
|
/**
|
|
4440
4566
|
* Updates an existing scope
|
|
@@ -4464,14 +4590,14 @@ var BackendScopeTag = class extends import_sdkgen_client65.TagAbstract {
|
|
|
4464
4590
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4465
4591
|
throw new CommonMessageException(await response.json());
|
|
4466
4592
|
}
|
|
4467
|
-
throw new
|
|
4593
|
+
throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4468
4594
|
}
|
|
4469
4595
|
};
|
|
4470
4596
|
|
|
4471
4597
|
// src/BackendSdkTag.ts
|
|
4472
|
-
var
|
|
4473
|
-
var
|
|
4474
|
-
var BackendSdkTag = class extends
|
|
4598
|
+
var import_sdkgen_client69 = require("sdkgen-client");
|
|
4599
|
+
var import_sdkgen_client70 = require("sdkgen-client");
|
|
4600
|
+
var BackendSdkTag = class extends import_sdkgen_client69.TagAbstract {
|
|
4475
4601
|
/**
|
|
4476
4602
|
* Generates a specific SDK
|
|
4477
4603
|
*
|
|
@@ -4498,7 +4624,7 @@ var BackendSdkTag = class extends import_sdkgen_client67.TagAbstract {
|
|
|
4498
4624
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4499
4625
|
throw new CommonMessageException(await response.json());
|
|
4500
4626
|
}
|
|
4501
|
-
throw new
|
|
4627
|
+
throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4502
4628
|
}
|
|
4503
4629
|
/**
|
|
4504
4630
|
* Returns a paginated list of SDKs
|
|
@@ -4523,14 +4649,14 @@ var BackendSdkTag = class extends import_sdkgen_client67.TagAbstract {
|
|
|
4523
4649
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4524
4650
|
throw new CommonMessageException(await response.json());
|
|
4525
4651
|
}
|
|
4526
|
-
throw new
|
|
4652
|
+
throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4527
4653
|
}
|
|
4528
4654
|
};
|
|
4529
4655
|
|
|
4530
4656
|
// src/BackendStatisticTag.ts
|
|
4531
|
-
var
|
|
4532
|
-
var
|
|
4533
|
-
var BackendStatisticTag = class extends
|
|
4657
|
+
var import_sdkgen_client71 = require("sdkgen-client");
|
|
4658
|
+
var import_sdkgen_client72 = require("sdkgen-client");
|
|
4659
|
+
var BackendStatisticTag = class extends import_sdkgen_client71.TagAbstract {
|
|
4534
4660
|
/**
|
|
4535
4661
|
* Returns a statistic containing the activities per user
|
|
4536
4662
|
*
|
|
@@ -4569,7 +4695,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4569
4695
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4570
4696
|
throw new CommonMessageException(await response.json());
|
|
4571
4697
|
}
|
|
4572
|
-
throw new
|
|
4698
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4573
4699
|
}
|
|
4574
4700
|
/**
|
|
4575
4701
|
* Returns a statistic containing the request count
|
|
@@ -4609,7 +4735,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4609
4735
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4610
4736
|
throw new CommonMessageException(await response.json());
|
|
4611
4737
|
}
|
|
4612
|
-
throw new
|
|
4738
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4613
4739
|
}
|
|
4614
4740
|
/**
|
|
4615
4741
|
* Returns a statistic containing the errors per operation
|
|
@@ -4649,7 +4775,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4649
4775
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4650
4776
|
throw new CommonMessageException(await response.json());
|
|
4651
4777
|
}
|
|
4652
|
-
throw new
|
|
4778
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4653
4779
|
}
|
|
4654
4780
|
/**
|
|
4655
4781
|
* Returns a statistic containing the incoming requests
|
|
@@ -4689,7 +4815,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4689
4815
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4690
4816
|
throw new CommonMessageException(await response.json());
|
|
4691
4817
|
}
|
|
4692
|
-
throw new
|
|
4818
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4693
4819
|
}
|
|
4694
4820
|
/**
|
|
4695
4821
|
* Returns a statistic containing the incoming transactions
|
|
@@ -4729,7 +4855,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4729
4855
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4730
4856
|
throw new CommonMessageException(await response.json());
|
|
4731
4857
|
}
|
|
4732
|
-
throw new
|
|
4858
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4733
4859
|
}
|
|
4734
4860
|
/**
|
|
4735
4861
|
* Returns a statistic containing the issues tokens
|
|
@@ -4769,7 +4895,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4769
4895
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4770
4896
|
throw new CommonMessageException(await response.json());
|
|
4771
4897
|
}
|
|
4772
|
-
throw new
|
|
4898
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4773
4899
|
}
|
|
4774
4900
|
/**
|
|
4775
4901
|
* Returns a statistic containing the most used activities
|
|
@@ -4809,7 +4935,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4809
4935
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4810
4936
|
throw new CommonMessageException(await response.json());
|
|
4811
4937
|
}
|
|
4812
|
-
throw new
|
|
4938
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4813
4939
|
}
|
|
4814
4940
|
/**
|
|
4815
4941
|
* Returns a statistic containing the most used apps
|
|
@@ -4849,7 +4975,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4849
4975
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4850
4976
|
throw new CommonMessageException(await response.json());
|
|
4851
4977
|
}
|
|
4852
|
-
throw new
|
|
4978
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4853
4979
|
}
|
|
4854
4980
|
/**
|
|
4855
4981
|
* Returns a statistic containing the most used operations
|
|
@@ -4889,7 +5015,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4889
5015
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4890
5016
|
throw new CommonMessageException(await response.json());
|
|
4891
5017
|
}
|
|
4892
|
-
throw new
|
|
5018
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4893
5019
|
}
|
|
4894
5020
|
/**
|
|
4895
5021
|
* Returns a statistic containing the requests per ip
|
|
@@ -4929,7 +5055,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4929
5055
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4930
5056
|
throw new CommonMessageException(await response.json());
|
|
4931
5057
|
}
|
|
4932
|
-
throw new
|
|
5058
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4933
5059
|
}
|
|
4934
5060
|
/**
|
|
4935
5061
|
* Returns a statistic containing the requests per operation
|
|
@@ -4969,7 +5095,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4969
5095
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4970
5096
|
throw new CommonMessageException(await response.json());
|
|
4971
5097
|
}
|
|
4972
|
-
throw new
|
|
5098
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4973
5099
|
}
|
|
4974
5100
|
/**
|
|
4975
5101
|
* Returns a statistic containing the requests per user
|
|
@@ -5009,7 +5135,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
5009
5135
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5010
5136
|
throw new CommonMessageException(await response.json());
|
|
5011
5137
|
}
|
|
5012
|
-
throw new
|
|
5138
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5013
5139
|
}
|
|
5014
5140
|
/**
|
|
5015
5141
|
* Returns a statistic containing the test coverage
|
|
@@ -5034,7 +5160,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
5034
5160
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5035
5161
|
throw new CommonMessageException(await response.json());
|
|
5036
5162
|
}
|
|
5037
|
-
throw new
|
|
5163
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5038
5164
|
}
|
|
5039
5165
|
/**
|
|
5040
5166
|
* Returns a statistic containing the time average
|
|
@@ -5074,7 +5200,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
5074
5200
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5075
5201
|
throw new CommonMessageException(await response.json());
|
|
5076
5202
|
}
|
|
5077
|
-
throw new
|
|
5203
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5078
5204
|
}
|
|
5079
5205
|
/**
|
|
5080
5206
|
* Returns a statistic containing the time per operation
|
|
@@ -5114,7 +5240,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
5114
5240
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5115
5241
|
throw new CommonMessageException(await response.json());
|
|
5116
5242
|
}
|
|
5117
|
-
throw new
|
|
5243
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5118
5244
|
}
|
|
5119
5245
|
/**
|
|
5120
5246
|
* Returns a statistic containing the used points
|
|
@@ -5154,7 +5280,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
5154
5280
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5155
5281
|
throw new CommonMessageException(await response.json());
|
|
5156
5282
|
}
|
|
5157
|
-
throw new
|
|
5283
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5158
5284
|
}
|
|
5159
5285
|
/**
|
|
5160
5286
|
* Returns a statistic containing the user registrations
|
|
@@ -5194,17 +5320,17 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
5194
5320
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5195
5321
|
throw new CommonMessageException(await response.json());
|
|
5196
5322
|
}
|
|
5197
|
-
throw new
|
|
5323
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5198
5324
|
}
|
|
5199
5325
|
};
|
|
5200
5326
|
|
|
5201
5327
|
// src/BackendTag.ts
|
|
5202
|
-
var
|
|
5328
|
+
var import_sdkgen_client89 = require("sdkgen-client");
|
|
5203
5329
|
|
|
5204
5330
|
// src/BackendTenantTag.ts
|
|
5205
|
-
var
|
|
5206
|
-
var
|
|
5207
|
-
var BackendTenantTag = class extends
|
|
5331
|
+
var import_sdkgen_client73 = require("sdkgen-client");
|
|
5332
|
+
var import_sdkgen_client74 = require("sdkgen-client");
|
|
5333
|
+
var BackendTenantTag = class extends import_sdkgen_client73.TagAbstract {
|
|
5208
5334
|
/**
|
|
5209
5335
|
* Removes an existing tenant
|
|
5210
5336
|
*
|
|
@@ -5230,7 +5356,7 @@ var BackendTenantTag = class extends import_sdkgen_client71.TagAbstract {
|
|
|
5230
5356
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5231
5357
|
throw new CommonMessageException(await response.json());
|
|
5232
5358
|
}
|
|
5233
|
-
throw new
|
|
5359
|
+
throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5234
5360
|
}
|
|
5235
5361
|
/**
|
|
5236
5362
|
* Setup a new tenant
|
|
@@ -5257,14 +5383,14 @@ var BackendTenantTag = class extends import_sdkgen_client71.TagAbstract {
|
|
|
5257
5383
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5258
5384
|
throw new CommonMessageException(await response.json());
|
|
5259
5385
|
}
|
|
5260
|
-
throw new
|
|
5386
|
+
throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5261
5387
|
}
|
|
5262
5388
|
};
|
|
5263
5389
|
|
|
5264
5390
|
// src/BackendTestTag.ts
|
|
5265
|
-
var
|
|
5266
|
-
var
|
|
5267
|
-
var BackendTestTag = class extends
|
|
5391
|
+
var import_sdkgen_client75 = require("sdkgen-client");
|
|
5392
|
+
var import_sdkgen_client76 = require("sdkgen-client");
|
|
5393
|
+
var BackendTestTag = class extends import_sdkgen_client75.TagAbstract {
|
|
5268
5394
|
/**
|
|
5269
5395
|
* Returns a specific test
|
|
5270
5396
|
*
|
|
@@ -5290,7 +5416,7 @@ var BackendTestTag = class extends import_sdkgen_client73.TagAbstract {
|
|
|
5290
5416
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5291
5417
|
throw new CommonMessageException(await response.json());
|
|
5292
5418
|
}
|
|
5293
|
-
throw new
|
|
5419
|
+
throw new import_sdkgen_client76.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5294
5420
|
}
|
|
5295
5421
|
/**
|
|
5296
5422
|
* Returns a paginated list of tests
|
|
@@ -5319,7 +5445,7 @@ var BackendTestTag = class extends import_sdkgen_client73.TagAbstract {
|
|
|
5319
5445
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5320
5446
|
throw new CommonMessageException(await response.json());
|
|
5321
5447
|
}
|
|
5322
|
-
throw new
|
|
5448
|
+
throw new import_sdkgen_client76.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5323
5449
|
}
|
|
5324
5450
|
/**
|
|
5325
5451
|
* Refresh all tests
|
|
@@ -5344,7 +5470,7 @@ var BackendTestTag = class extends import_sdkgen_client73.TagAbstract {
|
|
|
5344
5470
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5345
5471
|
throw new CommonMessageException(await response.json());
|
|
5346
5472
|
}
|
|
5347
|
-
throw new
|
|
5473
|
+
throw new import_sdkgen_client76.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5348
5474
|
}
|
|
5349
5475
|
/**
|
|
5350
5476
|
* Run all tests
|
|
@@ -5369,7 +5495,7 @@ var BackendTestTag = class extends import_sdkgen_client73.TagAbstract {
|
|
|
5369
5495
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5370
5496
|
throw new CommonMessageException(await response.json());
|
|
5371
5497
|
}
|
|
5372
|
-
throw new
|
|
5498
|
+
throw new import_sdkgen_client76.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5373
5499
|
}
|
|
5374
5500
|
/**
|
|
5375
5501
|
* Updates an existing test
|
|
@@ -5399,14 +5525,14 @@ var BackendTestTag = class extends import_sdkgen_client73.TagAbstract {
|
|
|
5399
5525
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5400
5526
|
throw new CommonMessageException(await response.json());
|
|
5401
5527
|
}
|
|
5402
|
-
throw new
|
|
5528
|
+
throw new import_sdkgen_client76.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5403
5529
|
}
|
|
5404
5530
|
};
|
|
5405
5531
|
|
|
5406
5532
|
// src/BackendTokenTag.ts
|
|
5407
|
-
var
|
|
5408
|
-
var
|
|
5409
|
-
var BackendTokenTag = class extends
|
|
5533
|
+
var import_sdkgen_client77 = require("sdkgen-client");
|
|
5534
|
+
var import_sdkgen_client78 = require("sdkgen-client");
|
|
5535
|
+
var BackendTokenTag = class extends import_sdkgen_client77.TagAbstract {
|
|
5410
5536
|
/**
|
|
5411
5537
|
* Returns a specific token
|
|
5412
5538
|
*
|
|
@@ -5432,7 +5558,7 @@ var BackendTokenTag = class extends import_sdkgen_client75.TagAbstract {
|
|
|
5432
5558
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5433
5559
|
throw new CommonMessageException(await response.json());
|
|
5434
5560
|
}
|
|
5435
|
-
throw new
|
|
5561
|
+
throw new import_sdkgen_client78.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5436
5562
|
}
|
|
5437
5563
|
/**
|
|
5438
5564
|
* Returns a paginated list of tokens
|
|
@@ -5468,14 +5594,14 @@ var BackendTokenTag = class extends import_sdkgen_client75.TagAbstract {
|
|
|
5468
5594
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5469
5595
|
throw new CommonMessageException(await response.json());
|
|
5470
5596
|
}
|
|
5471
|
-
throw new
|
|
5597
|
+
throw new import_sdkgen_client78.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5472
5598
|
}
|
|
5473
5599
|
};
|
|
5474
5600
|
|
|
5475
5601
|
// src/BackendTransactionTag.ts
|
|
5476
|
-
var
|
|
5477
|
-
var
|
|
5478
|
-
var BackendTransactionTag = class extends
|
|
5602
|
+
var import_sdkgen_client79 = require("sdkgen-client");
|
|
5603
|
+
var import_sdkgen_client80 = require("sdkgen-client");
|
|
5604
|
+
var BackendTransactionTag = class extends import_sdkgen_client79.TagAbstract {
|
|
5479
5605
|
/**
|
|
5480
5606
|
* Returns a specific transaction
|
|
5481
5607
|
*
|
|
@@ -5501,7 +5627,7 @@ var BackendTransactionTag = class extends import_sdkgen_client77.TagAbstract {
|
|
|
5501
5627
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5502
5628
|
throw new CommonMessageException(await response.json());
|
|
5503
5629
|
}
|
|
5504
|
-
throw new
|
|
5630
|
+
throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5505
5631
|
}
|
|
5506
5632
|
/**
|
|
5507
5633
|
* Returns a paginated list of transactions
|
|
@@ -5537,14 +5663,14 @@ var BackendTransactionTag = class extends import_sdkgen_client77.TagAbstract {
|
|
|
5537
5663
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5538
5664
|
throw new CommonMessageException(await response.json());
|
|
5539
5665
|
}
|
|
5540
|
-
throw new
|
|
5666
|
+
throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5541
5667
|
}
|
|
5542
5668
|
};
|
|
5543
5669
|
|
|
5544
5670
|
// src/BackendTrashTag.ts
|
|
5545
|
-
var
|
|
5546
|
-
var
|
|
5547
|
-
var BackendTrashTag = class extends
|
|
5671
|
+
var import_sdkgen_client81 = require("sdkgen-client");
|
|
5672
|
+
var import_sdkgen_client82 = require("sdkgen-client");
|
|
5673
|
+
var BackendTrashTag = class extends import_sdkgen_client81.TagAbstract {
|
|
5548
5674
|
/**
|
|
5549
5675
|
* Returns all deleted records by trash type
|
|
5550
5676
|
*
|
|
@@ -5574,7 +5700,7 @@ var BackendTrashTag = class extends import_sdkgen_client79.TagAbstract {
|
|
|
5574
5700
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5575
5701
|
throw new CommonMessageException(await response.json());
|
|
5576
5702
|
}
|
|
5577
|
-
throw new
|
|
5703
|
+
throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5578
5704
|
}
|
|
5579
5705
|
/**
|
|
5580
5706
|
* Returns all trash types
|
|
@@ -5599,7 +5725,7 @@ var BackendTrashTag = class extends import_sdkgen_client79.TagAbstract {
|
|
|
5599
5725
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5600
5726
|
throw new CommonMessageException(await response.json());
|
|
5601
5727
|
}
|
|
5602
|
-
throw new
|
|
5728
|
+
throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5603
5729
|
}
|
|
5604
5730
|
/**
|
|
5605
5731
|
* Restores a previously deleted record
|
|
@@ -5629,14 +5755,14 @@ var BackendTrashTag = class extends import_sdkgen_client79.TagAbstract {
|
|
|
5629
5755
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5630
5756
|
throw new CommonMessageException(await response.json());
|
|
5631
5757
|
}
|
|
5632
|
-
throw new
|
|
5758
|
+
throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5633
5759
|
}
|
|
5634
5760
|
};
|
|
5635
5761
|
|
|
5636
5762
|
// src/BackendTriggerTag.ts
|
|
5637
|
-
var
|
|
5638
|
-
var
|
|
5639
|
-
var BackendTriggerTag = class extends
|
|
5763
|
+
var import_sdkgen_client83 = require("sdkgen-client");
|
|
5764
|
+
var import_sdkgen_client84 = require("sdkgen-client");
|
|
5765
|
+
var BackendTriggerTag = class extends import_sdkgen_client83.TagAbstract {
|
|
5640
5766
|
/**
|
|
5641
5767
|
* Creates a new trigger
|
|
5642
5768
|
*
|
|
@@ -5663,7 +5789,7 @@ var BackendTriggerTag = class extends import_sdkgen_client81.TagAbstract {
|
|
|
5663
5789
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5664
5790
|
throw new CommonMessageException(await response.json());
|
|
5665
5791
|
}
|
|
5666
|
-
throw new
|
|
5792
|
+
throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5667
5793
|
}
|
|
5668
5794
|
/**
|
|
5669
5795
|
* Deletes an existing trigger
|
|
@@ -5690,7 +5816,7 @@ var BackendTriggerTag = class extends import_sdkgen_client81.TagAbstract {
|
|
|
5690
5816
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5691
5817
|
throw new CommonMessageException(await response.json());
|
|
5692
5818
|
}
|
|
5693
|
-
throw new
|
|
5819
|
+
throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5694
5820
|
}
|
|
5695
5821
|
/**
|
|
5696
5822
|
* Returns a specific trigger
|
|
@@ -5717,7 +5843,7 @@ var BackendTriggerTag = class extends import_sdkgen_client81.TagAbstract {
|
|
|
5717
5843
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5718
5844
|
throw new CommonMessageException(await response.json());
|
|
5719
5845
|
}
|
|
5720
|
-
throw new
|
|
5846
|
+
throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5721
5847
|
}
|
|
5722
5848
|
/**
|
|
5723
5849
|
* Returns a paginated list of triggers
|
|
@@ -5746,7 +5872,7 @@ var BackendTriggerTag = class extends import_sdkgen_client81.TagAbstract {
|
|
|
5746
5872
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5747
5873
|
throw new CommonMessageException(await response.json());
|
|
5748
5874
|
}
|
|
5749
|
-
throw new
|
|
5875
|
+
throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5750
5876
|
}
|
|
5751
5877
|
/**
|
|
5752
5878
|
* Updates an existing trigger
|
|
@@ -5776,14 +5902,14 @@ var BackendTriggerTag = class extends import_sdkgen_client81.TagAbstract {
|
|
|
5776
5902
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5777
5903
|
throw new CommonMessageException(await response.json());
|
|
5778
5904
|
}
|
|
5779
|
-
throw new
|
|
5905
|
+
throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5780
5906
|
}
|
|
5781
5907
|
};
|
|
5782
5908
|
|
|
5783
5909
|
// src/BackendUserTag.ts
|
|
5784
|
-
var
|
|
5785
|
-
var
|
|
5786
|
-
var BackendUserTag = class extends
|
|
5910
|
+
var import_sdkgen_client85 = require("sdkgen-client");
|
|
5911
|
+
var import_sdkgen_client86 = require("sdkgen-client");
|
|
5912
|
+
var BackendUserTag = class extends import_sdkgen_client85.TagAbstract {
|
|
5787
5913
|
/**
|
|
5788
5914
|
* Creates a new user
|
|
5789
5915
|
*
|
|
@@ -5810,7 +5936,7 @@ var BackendUserTag = class extends import_sdkgen_client83.TagAbstract {
|
|
|
5810
5936
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5811
5937
|
throw new CommonMessageException(await response.json());
|
|
5812
5938
|
}
|
|
5813
|
-
throw new
|
|
5939
|
+
throw new import_sdkgen_client86.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5814
5940
|
}
|
|
5815
5941
|
/**
|
|
5816
5942
|
* Deletes an existing user
|
|
@@ -5837,7 +5963,7 @@ var BackendUserTag = class extends import_sdkgen_client83.TagAbstract {
|
|
|
5837
5963
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5838
5964
|
throw new CommonMessageException(await response.json());
|
|
5839
5965
|
}
|
|
5840
|
-
throw new
|
|
5966
|
+
throw new import_sdkgen_client86.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5841
5967
|
}
|
|
5842
5968
|
/**
|
|
5843
5969
|
* Returns a specific user
|
|
@@ -5864,7 +5990,7 @@ var BackendUserTag = class extends import_sdkgen_client83.TagAbstract {
|
|
|
5864
5990
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5865
5991
|
throw new CommonMessageException(await response.json());
|
|
5866
5992
|
}
|
|
5867
|
-
throw new
|
|
5993
|
+
throw new import_sdkgen_client86.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5868
5994
|
}
|
|
5869
5995
|
/**
|
|
5870
5996
|
* Returns a paginated list of users
|
|
@@ -5893,7 +6019,7 @@ var BackendUserTag = class extends import_sdkgen_client83.TagAbstract {
|
|
|
5893
6019
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5894
6020
|
throw new CommonMessageException(await response.json());
|
|
5895
6021
|
}
|
|
5896
|
-
throw new
|
|
6022
|
+
throw new import_sdkgen_client86.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5897
6023
|
}
|
|
5898
6024
|
/**
|
|
5899
6025
|
* Resend the activation mail to the provided user
|
|
@@ -5923,7 +6049,7 @@ var BackendUserTag = class extends import_sdkgen_client83.TagAbstract {
|
|
|
5923
6049
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5924
6050
|
throw new CommonMessageException(await response.json());
|
|
5925
6051
|
}
|
|
5926
|
-
throw new
|
|
6052
|
+
throw new import_sdkgen_client86.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5927
6053
|
}
|
|
5928
6054
|
/**
|
|
5929
6055
|
* Updates an existing user
|
|
@@ -5953,14 +6079,14 @@ var BackendUserTag = class extends import_sdkgen_client83.TagAbstract {
|
|
|
5953
6079
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5954
6080
|
throw new CommonMessageException(await response.json());
|
|
5955
6081
|
}
|
|
5956
|
-
throw new
|
|
6082
|
+
throw new import_sdkgen_client86.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5957
6083
|
}
|
|
5958
6084
|
};
|
|
5959
6085
|
|
|
5960
6086
|
// src/BackendWebhookTag.ts
|
|
5961
|
-
var
|
|
5962
|
-
var
|
|
5963
|
-
var BackendWebhookTag = class extends
|
|
6087
|
+
var import_sdkgen_client87 = require("sdkgen-client");
|
|
6088
|
+
var import_sdkgen_client88 = require("sdkgen-client");
|
|
6089
|
+
var BackendWebhookTag = class extends import_sdkgen_client87.TagAbstract {
|
|
5964
6090
|
/**
|
|
5965
6091
|
* Creates a new webhook
|
|
5966
6092
|
*
|
|
@@ -5987,7 +6113,7 @@ var BackendWebhookTag = class extends import_sdkgen_client85.TagAbstract {
|
|
|
5987
6113
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5988
6114
|
throw new CommonMessageException(await response.json());
|
|
5989
6115
|
}
|
|
5990
|
-
throw new
|
|
6116
|
+
throw new import_sdkgen_client88.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5991
6117
|
}
|
|
5992
6118
|
/**
|
|
5993
6119
|
* Deletes an existing webhook
|
|
@@ -6014,7 +6140,7 @@ var BackendWebhookTag = class extends import_sdkgen_client85.TagAbstract {
|
|
|
6014
6140
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6015
6141
|
throw new CommonMessageException(await response.json());
|
|
6016
6142
|
}
|
|
6017
|
-
throw new
|
|
6143
|
+
throw new import_sdkgen_client88.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6018
6144
|
}
|
|
6019
6145
|
/**
|
|
6020
6146
|
* Returns a specific webhook
|
|
@@ -6041,7 +6167,7 @@ var BackendWebhookTag = class extends import_sdkgen_client85.TagAbstract {
|
|
|
6041
6167
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6042
6168
|
throw new CommonMessageException(await response.json());
|
|
6043
6169
|
}
|
|
6044
|
-
throw new
|
|
6170
|
+
throw new import_sdkgen_client88.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6045
6171
|
}
|
|
6046
6172
|
/**
|
|
6047
6173
|
* Returns a paginated list of webhooks
|
|
@@ -6070,7 +6196,7 @@ var BackendWebhookTag = class extends import_sdkgen_client85.TagAbstract {
|
|
|
6070
6196
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6071
6197
|
throw new CommonMessageException(await response.json());
|
|
6072
6198
|
}
|
|
6073
|
-
throw new
|
|
6199
|
+
throw new import_sdkgen_client88.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6074
6200
|
}
|
|
6075
6201
|
/**
|
|
6076
6202
|
* Updates an existing webhook
|
|
@@ -6100,12 +6226,12 @@ var BackendWebhookTag = class extends import_sdkgen_client85.TagAbstract {
|
|
|
6100
6226
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6101
6227
|
throw new CommonMessageException(await response.json());
|
|
6102
6228
|
}
|
|
6103
|
-
throw new
|
|
6229
|
+
throw new import_sdkgen_client88.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6104
6230
|
}
|
|
6105
6231
|
};
|
|
6106
6232
|
|
|
6107
6233
|
// src/BackendTag.ts
|
|
6108
|
-
var BackendTag = class extends
|
|
6234
|
+
var BackendTag = class extends import_sdkgen_client89.TagAbstract {
|
|
6109
6235
|
account() {
|
|
6110
6236
|
return new BackendAccountTag(
|
|
6111
6237
|
this.httpClient,
|
|
@@ -6319,16 +6445,16 @@ var BackendTag = class extends import_sdkgen_client87.TagAbstract {
|
|
|
6319
6445
|
};
|
|
6320
6446
|
|
|
6321
6447
|
// src/Client.ts
|
|
6322
|
-
var
|
|
6323
|
-
var
|
|
6448
|
+
var import_sdkgen_client126 = require("sdkgen-client");
|
|
6449
|
+
var import_sdkgen_client127 = require("sdkgen-client");
|
|
6324
6450
|
|
|
6325
6451
|
// src/ConsumerTag.ts
|
|
6326
|
-
var
|
|
6452
|
+
var import_sdkgen_client118 = require("sdkgen-client");
|
|
6327
6453
|
|
|
6328
6454
|
// src/ConsumerAccountTag.ts
|
|
6329
|
-
var
|
|
6330
|
-
var
|
|
6331
|
-
var ConsumerAccountTag = class extends
|
|
6455
|
+
var import_sdkgen_client90 = require("sdkgen-client");
|
|
6456
|
+
var import_sdkgen_client91 = require("sdkgen-client");
|
|
6457
|
+
var ConsumerAccountTag = class extends import_sdkgen_client90.TagAbstract {
|
|
6332
6458
|
/**
|
|
6333
6459
|
* Activates an previously registered account through a token which was provided to the user via email
|
|
6334
6460
|
*
|
|
@@ -6355,7 +6481,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client88.TagAbstract {
|
|
|
6355
6481
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6356
6482
|
throw new CommonMessageException(await response.json());
|
|
6357
6483
|
}
|
|
6358
|
-
throw new
|
|
6484
|
+
throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6359
6485
|
}
|
|
6360
6486
|
/**
|
|
6361
6487
|
* Authorizes the access of a specific app for the authenticated user
|
|
@@ -6383,7 +6509,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client88.TagAbstract {
|
|
|
6383
6509
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6384
6510
|
throw new CommonMessageException(await response.json());
|
|
6385
6511
|
}
|
|
6386
|
-
throw new
|
|
6512
|
+
throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6387
6513
|
}
|
|
6388
6514
|
/**
|
|
6389
6515
|
* Change the password for the authenticated user
|
|
@@ -6411,7 +6537,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client88.TagAbstract {
|
|
|
6411
6537
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6412
6538
|
throw new CommonMessageException(await response.json());
|
|
6413
6539
|
}
|
|
6414
|
-
throw new
|
|
6540
|
+
throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6415
6541
|
}
|
|
6416
6542
|
/**
|
|
6417
6543
|
* Change the password after the password reset flow was started
|
|
@@ -6439,7 +6565,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client88.TagAbstract {
|
|
|
6439
6565
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6440
6566
|
throw new CommonMessageException(await response.json());
|
|
6441
6567
|
}
|
|
6442
|
-
throw new
|
|
6568
|
+
throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6443
6569
|
}
|
|
6444
6570
|
/**
|
|
6445
6571
|
* Returns a user data for the authenticated user
|
|
@@ -6464,7 +6590,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client88.TagAbstract {
|
|
|
6464
6590
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6465
6591
|
throw new CommonMessageException(await response.json());
|
|
6466
6592
|
}
|
|
6467
|
-
throw new
|
|
6593
|
+
throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6468
6594
|
}
|
|
6469
6595
|
/**
|
|
6470
6596
|
* Returns information about a specific app to start the OAuth2 authorization code flow
|
|
@@ -6492,7 +6618,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client88.TagAbstract {
|
|
|
6492
6618
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6493
6619
|
throw new CommonMessageException(await response.json());
|
|
6494
6620
|
}
|
|
6495
|
-
throw new
|
|
6621
|
+
throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6496
6622
|
}
|
|
6497
6623
|
/**
|
|
6498
6624
|
* User login by providing a username and password
|
|
@@ -6520,7 +6646,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client88.TagAbstract {
|
|
|
6520
6646
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6521
6647
|
throw new CommonMessageException(await response.json());
|
|
6522
6648
|
}
|
|
6523
|
-
throw new
|
|
6649
|
+
throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6524
6650
|
}
|
|
6525
6651
|
/**
|
|
6526
6652
|
* Refresh a previously obtained access token
|
|
@@ -6548,7 +6674,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client88.TagAbstract {
|
|
|
6548
6674
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6549
6675
|
throw new CommonMessageException(await response.json());
|
|
6550
6676
|
}
|
|
6551
|
-
throw new
|
|
6677
|
+
throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6552
6678
|
}
|
|
6553
6679
|
/**
|
|
6554
6680
|
* Register a new user account
|
|
@@ -6576,7 +6702,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client88.TagAbstract {
|
|
|
6576
6702
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6577
6703
|
throw new CommonMessageException(await response.json());
|
|
6578
6704
|
}
|
|
6579
|
-
throw new
|
|
6705
|
+
throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6580
6706
|
}
|
|
6581
6707
|
/**
|
|
6582
6708
|
* Start the password reset flow
|
|
@@ -6604,7 +6730,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client88.TagAbstract {
|
|
|
6604
6730
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6605
6731
|
throw new CommonMessageException(await response.json());
|
|
6606
6732
|
}
|
|
6607
|
-
throw new
|
|
6733
|
+
throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6608
6734
|
}
|
|
6609
6735
|
/**
|
|
6610
6736
|
* Updates user data for the authenticated user
|
|
@@ -6632,14 +6758,14 @@ var ConsumerAccountTag = class extends import_sdkgen_client88.TagAbstract {
|
|
|
6632
6758
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6633
6759
|
throw new CommonMessageException(await response.json());
|
|
6634
6760
|
}
|
|
6635
|
-
throw new
|
|
6761
|
+
throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6636
6762
|
}
|
|
6637
6763
|
};
|
|
6638
6764
|
|
|
6639
6765
|
// src/ConsumerAppTag.ts
|
|
6640
|
-
var
|
|
6641
|
-
var
|
|
6642
|
-
var ConsumerAppTag = class extends
|
|
6766
|
+
var import_sdkgen_client92 = require("sdkgen-client");
|
|
6767
|
+
var import_sdkgen_client93 = require("sdkgen-client");
|
|
6768
|
+
var ConsumerAppTag = class extends import_sdkgen_client92.TagAbstract {
|
|
6643
6769
|
/**
|
|
6644
6770
|
* Creates a new app for the authenticated user
|
|
6645
6771
|
*
|
|
@@ -6666,7 +6792,7 @@ var ConsumerAppTag = class extends import_sdkgen_client90.TagAbstract {
|
|
|
6666
6792
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6667
6793
|
throw new CommonMessageException(await response.json());
|
|
6668
6794
|
}
|
|
6669
|
-
throw new
|
|
6795
|
+
throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6670
6796
|
}
|
|
6671
6797
|
/**
|
|
6672
6798
|
* Deletes an existing app for the authenticated user
|
|
@@ -6693,7 +6819,7 @@ var ConsumerAppTag = class extends import_sdkgen_client90.TagAbstract {
|
|
|
6693
6819
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6694
6820
|
throw new CommonMessageException(await response.json());
|
|
6695
6821
|
}
|
|
6696
|
-
throw new
|
|
6822
|
+
throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6697
6823
|
}
|
|
6698
6824
|
/**
|
|
6699
6825
|
* Returns a specific app for the authenticated user
|
|
@@ -6720,7 +6846,7 @@ var ConsumerAppTag = class extends import_sdkgen_client90.TagAbstract {
|
|
|
6720
6846
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6721
6847
|
throw new CommonMessageException(await response.json());
|
|
6722
6848
|
}
|
|
6723
|
-
throw new
|
|
6849
|
+
throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6724
6850
|
}
|
|
6725
6851
|
/**
|
|
6726
6852
|
* Returns a paginated list of apps which are assigned to the authenticated user
|
|
@@ -6749,7 +6875,7 @@ var ConsumerAppTag = class extends import_sdkgen_client90.TagAbstract {
|
|
|
6749
6875
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6750
6876
|
throw new CommonMessageException(await response.json());
|
|
6751
6877
|
}
|
|
6752
|
-
throw new
|
|
6878
|
+
throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6753
6879
|
}
|
|
6754
6880
|
/**
|
|
6755
6881
|
* Updates an existing app for the authenticated user
|
|
@@ -6779,14 +6905,14 @@ var ConsumerAppTag = class extends import_sdkgen_client90.TagAbstract {
|
|
|
6779
6905
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6780
6906
|
throw new CommonMessageException(await response.json());
|
|
6781
6907
|
}
|
|
6782
|
-
throw new
|
|
6908
|
+
throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6783
6909
|
}
|
|
6784
6910
|
};
|
|
6785
6911
|
|
|
6786
6912
|
// src/ConsumerEventTag.ts
|
|
6787
|
-
var
|
|
6788
|
-
var
|
|
6789
|
-
var ConsumerEventTag = class extends
|
|
6913
|
+
var import_sdkgen_client94 = require("sdkgen-client");
|
|
6914
|
+
var import_sdkgen_client95 = require("sdkgen-client");
|
|
6915
|
+
var ConsumerEventTag = class extends import_sdkgen_client94.TagAbstract {
|
|
6790
6916
|
/**
|
|
6791
6917
|
* Returns a specific event for the authenticated user
|
|
6792
6918
|
*
|
|
@@ -6812,7 +6938,7 @@ var ConsumerEventTag = class extends import_sdkgen_client92.TagAbstract {
|
|
|
6812
6938
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6813
6939
|
throw new CommonMessageException(await response.json());
|
|
6814
6940
|
}
|
|
6815
|
-
throw new
|
|
6941
|
+
throw new import_sdkgen_client95.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6816
6942
|
}
|
|
6817
6943
|
/**
|
|
6818
6944
|
* Returns a paginated list of apps which are assigned to the authenticated user
|
|
@@ -6841,14 +6967,14 @@ var ConsumerEventTag = class extends import_sdkgen_client92.TagAbstract {
|
|
|
6841
6967
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6842
6968
|
throw new CommonMessageException(await response.json());
|
|
6843
6969
|
}
|
|
6844
|
-
throw new
|
|
6970
|
+
throw new import_sdkgen_client95.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6845
6971
|
}
|
|
6846
6972
|
};
|
|
6847
6973
|
|
|
6848
6974
|
// src/ConsumerFormTag.ts
|
|
6849
|
-
var
|
|
6850
|
-
var
|
|
6851
|
-
var ConsumerFormTag = class extends
|
|
6975
|
+
var import_sdkgen_client96 = require("sdkgen-client");
|
|
6976
|
+
var import_sdkgen_client97 = require("sdkgen-client");
|
|
6977
|
+
var ConsumerFormTag = class extends import_sdkgen_client96.TagAbstract {
|
|
6852
6978
|
/**
|
|
6853
6979
|
* Returns a specific form for the authenticated user
|
|
6854
6980
|
*
|
|
@@ -6874,7 +7000,7 @@ var ConsumerFormTag = class extends import_sdkgen_client94.TagAbstract {
|
|
|
6874
7000
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6875
7001
|
throw new CommonMessageException(await response.json());
|
|
6876
7002
|
}
|
|
6877
|
-
throw new
|
|
7003
|
+
throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6878
7004
|
}
|
|
6879
7005
|
/**
|
|
6880
7006
|
* Returns a paginated list of forms which are relevant to the authenticated user
|
|
@@ -6903,14 +7029,14 @@ var ConsumerFormTag = class extends import_sdkgen_client94.TagAbstract {
|
|
|
6903
7029
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6904
7030
|
throw new CommonMessageException(await response.json());
|
|
6905
7031
|
}
|
|
6906
|
-
throw new
|
|
7032
|
+
throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6907
7033
|
}
|
|
6908
7034
|
};
|
|
6909
7035
|
|
|
6910
7036
|
// src/ConsumerGrantTag.ts
|
|
6911
|
-
var
|
|
6912
|
-
var
|
|
6913
|
-
var ConsumerGrantTag = class extends
|
|
7037
|
+
var import_sdkgen_client98 = require("sdkgen-client");
|
|
7038
|
+
var import_sdkgen_client99 = require("sdkgen-client");
|
|
7039
|
+
var ConsumerGrantTag = class extends import_sdkgen_client98.TagAbstract {
|
|
6914
7040
|
/**
|
|
6915
7041
|
* Deletes an existing grant for an app which was created by the authenticated user
|
|
6916
7042
|
*
|
|
@@ -6936,7 +7062,7 @@ var ConsumerGrantTag = class extends import_sdkgen_client96.TagAbstract {
|
|
|
6936
7062
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6937
7063
|
throw new CommonMessageException(await response.json());
|
|
6938
7064
|
}
|
|
6939
|
-
throw new
|
|
7065
|
+
throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6940
7066
|
}
|
|
6941
7067
|
/**
|
|
6942
7068
|
* Returns a paginated list of grants which are assigned to the authenticated user
|
|
@@ -6965,14 +7091,14 @@ var ConsumerGrantTag = class extends import_sdkgen_client96.TagAbstract {
|
|
|
6965
7091
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6966
7092
|
throw new CommonMessageException(await response.json());
|
|
6967
7093
|
}
|
|
6968
|
-
throw new
|
|
7094
|
+
throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6969
7095
|
}
|
|
6970
7096
|
};
|
|
6971
7097
|
|
|
6972
7098
|
// src/ConsumerIdentityTag.ts
|
|
6973
|
-
var
|
|
6974
|
-
var
|
|
6975
|
-
var ConsumerIdentityTag = class extends
|
|
7099
|
+
var import_sdkgen_client100 = require("sdkgen-client");
|
|
7100
|
+
var import_sdkgen_client101 = require("sdkgen-client");
|
|
7101
|
+
var ConsumerIdentityTag = class extends import_sdkgen_client100.TagAbstract {
|
|
6976
7102
|
/**
|
|
6977
7103
|
* Identity callback endpoint to exchange an access token
|
|
6978
7104
|
*
|
|
@@ -6998,7 +7124,7 @@ var ConsumerIdentityTag = class extends import_sdkgen_client98.TagAbstract {
|
|
|
6998
7124
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6999
7125
|
throw new CommonMessageException(await response.json());
|
|
7000
7126
|
}
|
|
7001
|
-
throw new
|
|
7127
|
+
throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7002
7128
|
}
|
|
7003
7129
|
/**
|
|
7004
7130
|
* Returns a paginated list of identities which are relevant to the authenticated user
|
|
@@ -7026,7 +7152,7 @@ var ConsumerIdentityTag = class extends import_sdkgen_client98.TagAbstract {
|
|
|
7026
7152
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7027
7153
|
throw new CommonMessageException(await response.json());
|
|
7028
7154
|
}
|
|
7029
|
-
throw new
|
|
7155
|
+
throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7030
7156
|
}
|
|
7031
7157
|
/**
|
|
7032
7158
|
* Redirect the user to the configured identity provider
|
|
@@ -7053,14 +7179,14 @@ var ConsumerIdentityTag = class extends import_sdkgen_client98.TagAbstract {
|
|
|
7053
7179
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7054
7180
|
throw new CommonMessageException(await response.json());
|
|
7055
7181
|
}
|
|
7056
|
-
throw new
|
|
7182
|
+
throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7057
7183
|
}
|
|
7058
7184
|
};
|
|
7059
7185
|
|
|
7060
7186
|
// src/ConsumerLogTag.ts
|
|
7061
|
-
var
|
|
7062
|
-
var
|
|
7063
|
-
var ConsumerLogTag = class extends
|
|
7187
|
+
var import_sdkgen_client102 = require("sdkgen-client");
|
|
7188
|
+
var import_sdkgen_client103 = require("sdkgen-client");
|
|
7189
|
+
var ConsumerLogTag = class extends import_sdkgen_client102.TagAbstract {
|
|
7064
7190
|
/**
|
|
7065
7191
|
* Returns a specific log for the authenticated user
|
|
7066
7192
|
*
|
|
@@ -7086,7 +7212,7 @@ var ConsumerLogTag = class extends import_sdkgen_client100.TagAbstract {
|
|
|
7086
7212
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7087
7213
|
throw new CommonMessageException(await response.json());
|
|
7088
7214
|
}
|
|
7089
|
-
throw new
|
|
7215
|
+
throw new import_sdkgen_client103.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7090
7216
|
}
|
|
7091
7217
|
/**
|
|
7092
7218
|
* Returns a paginated list of logs which are assigned to the authenticated user
|
|
@@ -7115,14 +7241,14 @@ var ConsumerLogTag = class extends import_sdkgen_client100.TagAbstract {
|
|
|
7115
7241
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7116
7242
|
throw new CommonMessageException(await response.json());
|
|
7117
7243
|
}
|
|
7118
|
-
throw new
|
|
7244
|
+
throw new import_sdkgen_client103.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7119
7245
|
}
|
|
7120
7246
|
};
|
|
7121
7247
|
|
|
7122
7248
|
// src/ConsumerPageTag.ts
|
|
7123
|
-
var
|
|
7124
|
-
var
|
|
7125
|
-
var ConsumerPageTag = class extends
|
|
7249
|
+
var import_sdkgen_client104 = require("sdkgen-client");
|
|
7250
|
+
var import_sdkgen_client105 = require("sdkgen-client");
|
|
7251
|
+
var ConsumerPageTag = class extends import_sdkgen_client104.TagAbstract {
|
|
7126
7252
|
/**
|
|
7127
7253
|
* Returns a specific page for the authenticated user
|
|
7128
7254
|
*
|
|
@@ -7148,7 +7274,7 @@ var ConsumerPageTag = class extends import_sdkgen_client102.TagAbstract {
|
|
|
7148
7274
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7149
7275
|
throw new CommonMessageException(await response.json());
|
|
7150
7276
|
}
|
|
7151
|
-
throw new
|
|
7277
|
+
throw new import_sdkgen_client105.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7152
7278
|
}
|
|
7153
7279
|
/**
|
|
7154
7280
|
* Returns a paginated list of pages which are relevant to the authenticated user
|
|
@@ -7177,14 +7303,14 @@ var ConsumerPageTag = class extends import_sdkgen_client102.TagAbstract {
|
|
|
7177
7303
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7178
7304
|
throw new CommonMessageException(await response.json());
|
|
7179
7305
|
}
|
|
7180
|
-
throw new
|
|
7306
|
+
throw new import_sdkgen_client105.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7181
7307
|
}
|
|
7182
7308
|
};
|
|
7183
7309
|
|
|
7184
7310
|
// src/ConsumerPaymentTag.ts
|
|
7185
|
-
var
|
|
7186
|
-
var
|
|
7187
|
-
var ConsumerPaymentTag = class extends
|
|
7311
|
+
var import_sdkgen_client106 = require("sdkgen-client");
|
|
7312
|
+
var import_sdkgen_client107 = require("sdkgen-client");
|
|
7313
|
+
var ConsumerPaymentTag = class extends import_sdkgen_client106.TagAbstract {
|
|
7188
7314
|
/**
|
|
7189
7315
|
* Start the checkout process for a specific plan
|
|
7190
7316
|
*
|
|
@@ -7213,7 +7339,7 @@ var ConsumerPaymentTag = class extends import_sdkgen_client104.TagAbstract {
|
|
|
7213
7339
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7214
7340
|
throw new CommonMessageException(await response.json());
|
|
7215
7341
|
}
|
|
7216
|
-
throw new
|
|
7342
|
+
throw new import_sdkgen_client107.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7217
7343
|
}
|
|
7218
7344
|
/**
|
|
7219
7345
|
* Generates a payment portal link for the authenticated user
|
|
@@ -7243,14 +7369,14 @@ var ConsumerPaymentTag = class extends import_sdkgen_client104.TagAbstract {
|
|
|
7243
7369
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7244
7370
|
throw new CommonMessageException(await response.json());
|
|
7245
7371
|
}
|
|
7246
|
-
throw new
|
|
7372
|
+
throw new import_sdkgen_client107.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7247
7373
|
}
|
|
7248
7374
|
};
|
|
7249
7375
|
|
|
7250
7376
|
// src/ConsumerPlanTag.ts
|
|
7251
|
-
var
|
|
7252
|
-
var
|
|
7253
|
-
var ConsumerPlanTag = class extends
|
|
7377
|
+
var import_sdkgen_client108 = require("sdkgen-client");
|
|
7378
|
+
var import_sdkgen_client109 = require("sdkgen-client");
|
|
7379
|
+
var ConsumerPlanTag = class extends import_sdkgen_client108.TagAbstract {
|
|
7254
7380
|
/**
|
|
7255
7381
|
* Returns a specific plan for the authenticated user
|
|
7256
7382
|
*
|
|
@@ -7276,7 +7402,7 @@ var ConsumerPlanTag = class extends import_sdkgen_client106.TagAbstract {
|
|
|
7276
7402
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7277
7403
|
throw new CommonMessageException(await response.json());
|
|
7278
7404
|
}
|
|
7279
|
-
throw new
|
|
7405
|
+
throw new import_sdkgen_client109.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7280
7406
|
}
|
|
7281
7407
|
/**
|
|
7282
7408
|
* Returns a paginated list of plans which are relevant to the authenticated user
|
|
@@ -7305,14 +7431,14 @@ var ConsumerPlanTag = class extends import_sdkgen_client106.TagAbstract {
|
|
|
7305
7431
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7306
7432
|
throw new CommonMessageException(await response.json());
|
|
7307
7433
|
}
|
|
7308
|
-
throw new
|
|
7434
|
+
throw new import_sdkgen_client109.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7309
7435
|
}
|
|
7310
7436
|
};
|
|
7311
7437
|
|
|
7312
7438
|
// src/ConsumerScopeTag.ts
|
|
7313
|
-
var
|
|
7314
|
-
var
|
|
7315
|
-
var ConsumerScopeTag = class extends
|
|
7439
|
+
var import_sdkgen_client110 = require("sdkgen-client");
|
|
7440
|
+
var import_sdkgen_client111 = require("sdkgen-client");
|
|
7441
|
+
var ConsumerScopeTag = class extends import_sdkgen_client110.TagAbstract {
|
|
7316
7442
|
/**
|
|
7317
7443
|
* Returns a paginated list of scopes which are assigned to the authenticated user
|
|
7318
7444
|
*
|
|
@@ -7340,7 +7466,7 @@ var ConsumerScopeTag = class extends import_sdkgen_client108.TagAbstract {
|
|
|
7340
7466
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7341
7467
|
throw new CommonMessageException(await response.json());
|
|
7342
7468
|
}
|
|
7343
|
-
throw new
|
|
7469
|
+
throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7344
7470
|
}
|
|
7345
7471
|
/**
|
|
7346
7472
|
* Returns all scopes by category
|
|
@@ -7365,14 +7491,14 @@ var ConsumerScopeTag = class extends import_sdkgen_client108.TagAbstract {
|
|
|
7365
7491
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7366
7492
|
throw new CommonMessageException(await response.json());
|
|
7367
7493
|
}
|
|
7368
|
-
throw new
|
|
7494
|
+
throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7369
7495
|
}
|
|
7370
7496
|
};
|
|
7371
7497
|
|
|
7372
7498
|
// src/ConsumerTokenTag.ts
|
|
7373
|
-
var
|
|
7374
|
-
var
|
|
7375
|
-
var ConsumerTokenTag = class extends
|
|
7499
|
+
var import_sdkgen_client112 = require("sdkgen-client");
|
|
7500
|
+
var import_sdkgen_client113 = require("sdkgen-client");
|
|
7501
|
+
var ConsumerTokenTag = class extends import_sdkgen_client112.TagAbstract {
|
|
7376
7502
|
/**
|
|
7377
7503
|
* Creates a new token for the authenticated user
|
|
7378
7504
|
*
|
|
@@ -7399,7 +7525,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client110.TagAbstract {
|
|
|
7399
7525
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7400
7526
|
throw new CommonMessageException(await response.json());
|
|
7401
7527
|
}
|
|
7402
|
-
throw new
|
|
7528
|
+
throw new import_sdkgen_client113.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7403
7529
|
}
|
|
7404
7530
|
/**
|
|
7405
7531
|
* Deletes an existing token for the authenticated user
|
|
@@ -7426,7 +7552,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client110.TagAbstract {
|
|
|
7426
7552
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7427
7553
|
throw new CommonMessageException(await response.json());
|
|
7428
7554
|
}
|
|
7429
|
-
throw new
|
|
7555
|
+
throw new import_sdkgen_client113.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7430
7556
|
}
|
|
7431
7557
|
/**
|
|
7432
7558
|
* Returns a specific token for the authenticated user
|
|
@@ -7453,7 +7579,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client110.TagAbstract {
|
|
|
7453
7579
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7454
7580
|
throw new CommonMessageException(await response.json());
|
|
7455
7581
|
}
|
|
7456
|
-
throw new
|
|
7582
|
+
throw new import_sdkgen_client113.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7457
7583
|
}
|
|
7458
7584
|
/**
|
|
7459
7585
|
* Returns a paginated list of tokens which are assigned to the authenticated user
|
|
@@ -7482,7 +7608,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client110.TagAbstract {
|
|
|
7482
7608
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7483
7609
|
throw new CommonMessageException(await response.json());
|
|
7484
7610
|
}
|
|
7485
|
-
throw new
|
|
7611
|
+
throw new import_sdkgen_client113.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7486
7612
|
}
|
|
7487
7613
|
/**
|
|
7488
7614
|
* Updates an existing token for the authenticated user
|
|
@@ -7512,14 +7638,14 @@ var ConsumerTokenTag = class extends import_sdkgen_client110.TagAbstract {
|
|
|
7512
7638
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7513
7639
|
throw new CommonMessageException(await response.json());
|
|
7514
7640
|
}
|
|
7515
|
-
throw new
|
|
7641
|
+
throw new import_sdkgen_client113.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7516
7642
|
}
|
|
7517
7643
|
};
|
|
7518
7644
|
|
|
7519
7645
|
// src/ConsumerTransactionTag.ts
|
|
7520
|
-
var
|
|
7521
|
-
var
|
|
7522
|
-
var ConsumerTransactionTag = class extends
|
|
7646
|
+
var import_sdkgen_client114 = require("sdkgen-client");
|
|
7647
|
+
var import_sdkgen_client115 = require("sdkgen-client");
|
|
7648
|
+
var ConsumerTransactionTag = class extends import_sdkgen_client114.TagAbstract {
|
|
7523
7649
|
/**
|
|
7524
7650
|
* Returns a specific transaction for the authenticated user
|
|
7525
7651
|
*
|
|
@@ -7545,7 +7671,7 @@ var ConsumerTransactionTag = class extends import_sdkgen_client112.TagAbstract {
|
|
|
7545
7671
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7546
7672
|
throw new CommonMessageException(await response.json());
|
|
7547
7673
|
}
|
|
7548
|
-
throw new
|
|
7674
|
+
throw new import_sdkgen_client115.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7549
7675
|
}
|
|
7550
7676
|
/**
|
|
7551
7677
|
* Returns a paginated list of transactions which are assigned to the authenticated user
|
|
@@ -7574,14 +7700,14 @@ var ConsumerTransactionTag = class extends import_sdkgen_client112.TagAbstract {
|
|
|
7574
7700
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7575
7701
|
throw new CommonMessageException(await response.json());
|
|
7576
7702
|
}
|
|
7577
|
-
throw new
|
|
7703
|
+
throw new import_sdkgen_client115.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7578
7704
|
}
|
|
7579
7705
|
};
|
|
7580
7706
|
|
|
7581
7707
|
// src/ConsumerWebhookTag.ts
|
|
7582
|
-
var
|
|
7583
|
-
var
|
|
7584
|
-
var ConsumerWebhookTag = class extends
|
|
7708
|
+
var import_sdkgen_client116 = require("sdkgen-client");
|
|
7709
|
+
var import_sdkgen_client117 = require("sdkgen-client");
|
|
7710
|
+
var ConsumerWebhookTag = class extends import_sdkgen_client116.TagAbstract {
|
|
7585
7711
|
/**
|
|
7586
7712
|
* Creates a new webhook for the authenticated user
|
|
7587
7713
|
*
|
|
@@ -7608,7 +7734,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client114.TagAbstract {
|
|
|
7608
7734
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7609
7735
|
throw new CommonMessageException(await response.json());
|
|
7610
7736
|
}
|
|
7611
|
-
throw new
|
|
7737
|
+
throw new import_sdkgen_client117.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7612
7738
|
}
|
|
7613
7739
|
/**
|
|
7614
7740
|
* Deletes an existing webhook for the authenticated user
|
|
@@ -7635,7 +7761,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client114.TagAbstract {
|
|
|
7635
7761
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7636
7762
|
throw new CommonMessageException(await response.json());
|
|
7637
7763
|
}
|
|
7638
|
-
throw new
|
|
7764
|
+
throw new import_sdkgen_client117.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7639
7765
|
}
|
|
7640
7766
|
/**
|
|
7641
7767
|
* Returns a specific webhook for the authenticated user
|
|
@@ -7662,7 +7788,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client114.TagAbstract {
|
|
|
7662
7788
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7663
7789
|
throw new CommonMessageException(await response.json());
|
|
7664
7790
|
}
|
|
7665
|
-
throw new
|
|
7791
|
+
throw new import_sdkgen_client117.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7666
7792
|
}
|
|
7667
7793
|
/**
|
|
7668
7794
|
* Returns a paginated list of webhooks which are assigned to the authenticated user
|
|
@@ -7691,7 +7817,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client114.TagAbstract {
|
|
|
7691
7817
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7692
7818
|
throw new CommonMessageException(await response.json());
|
|
7693
7819
|
}
|
|
7694
|
-
throw new
|
|
7820
|
+
throw new import_sdkgen_client117.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7695
7821
|
}
|
|
7696
7822
|
/**
|
|
7697
7823
|
* Updates an existing webhook for the authenticated user
|
|
@@ -7721,12 +7847,12 @@ var ConsumerWebhookTag = class extends import_sdkgen_client114.TagAbstract {
|
|
|
7721
7847
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7722
7848
|
throw new CommonMessageException(await response.json());
|
|
7723
7849
|
}
|
|
7724
|
-
throw new
|
|
7850
|
+
throw new import_sdkgen_client117.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7725
7851
|
}
|
|
7726
7852
|
};
|
|
7727
7853
|
|
|
7728
7854
|
// src/ConsumerTag.ts
|
|
7729
|
-
var ConsumerTag = class extends
|
|
7855
|
+
var ConsumerTag = class extends import_sdkgen_client118.TagAbstract {
|
|
7730
7856
|
account() {
|
|
7731
7857
|
return new ConsumerAccountTag(
|
|
7732
7858
|
this.httpClient,
|
|
@@ -7814,12 +7940,12 @@ var ConsumerTag = class extends import_sdkgen_client116.TagAbstract {
|
|
|
7814
7940
|
};
|
|
7815
7941
|
|
|
7816
7942
|
// src/SystemTag.ts
|
|
7817
|
-
var
|
|
7943
|
+
var import_sdkgen_client125 = require("sdkgen-client");
|
|
7818
7944
|
|
|
7819
7945
|
// src/SystemConnectionTag.ts
|
|
7820
|
-
var
|
|
7821
|
-
var
|
|
7822
|
-
var SystemConnectionTag = class extends
|
|
7946
|
+
var import_sdkgen_client119 = require("sdkgen-client");
|
|
7947
|
+
var import_sdkgen_client120 = require("sdkgen-client");
|
|
7948
|
+
var SystemConnectionTag = class extends import_sdkgen_client119.TagAbstract {
|
|
7823
7949
|
/**
|
|
7824
7950
|
* Connection OAuth2 callback to authorize a connection
|
|
7825
7951
|
*
|
|
@@ -7845,14 +7971,14 @@ var SystemConnectionTag = class extends import_sdkgen_client117.TagAbstract {
|
|
|
7845
7971
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7846
7972
|
throw new CommonMessageException(await response.json());
|
|
7847
7973
|
}
|
|
7848
|
-
throw new
|
|
7974
|
+
throw new import_sdkgen_client120.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7849
7975
|
}
|
|
7850
7976
|
};
|
|
7851
7977
|
|
|
7852
7978
|
// src/SystemMetaTag.ts
|
|
7853
|
-
var
|
|
7854
|
-
var
|
|
7855
|
-
var SystemMetaTag = class extends
|
|
7979
|
+
var import_sdkgen_client121 = require("sdkgen-client");
|
|
7980
|
+
var import_sdkgen_client122 = require("sdkgen-client");
|
|
7981
|
+
var SystemMetaTag = class extends import_sdkgen_client121.TagAbstract {
|
|
7856
7982
|
/**
|
|
7857
7983
|
* Returns meta information and links about the current installed Fusio version
|
|
7858
7984
|
*
|
|
@@ -7876,7 +8002,7 @@ var SystemMetaTag = class extends import_sdkgen_client119.TagAbstract {
|
|
|
7876
8002
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7877
8003
|
throw new CommonMessageException(await response.json());
|
|
7878
8004
|
}
|
|
7879
|
-
throw new
|
|
8005
|
+
throw new import_sdkgen_client122.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7880
8006
|
}
|
|
7881
8007
|
/**
|
|
7882
8008
|
* Debug endpoint which returns the provided data
|
|
@@ -7904,7 +8030,7 @@ var SystemMetaTag = class extends import_sdkgen_client119.TagAbstract {
|
|
|
7904
8030
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7905
8031
|
throw new CommonMessageException(await response.json());
|
|
7906
8032
|
}
|
|
7907
|
-
throw new
|
|
8033
|
+
throw new import_sdkgen_client122.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7908
8034
|
}
|
|
7909
8035
|
/**
|
|
7910
8036
|
* Health check endpoint which returns information about the health status of the system
|
|
@@ -7929,7 +8055,7 @@ var SystemMetaTag = class extends import_sdkgen_client119.TagAbstract {
|
|
|
7929
8055
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7930
8056
|
throw new CommonMessageException(await response.json());
|
|
7931
8057
|
}
|
|
7932
|
-
throw new
|
|
8058
|
+
throw new import_sdkgen_client122.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7933
8059
|
}
|
|
7934
8060
|
/**
|
|
7935
8061
|
* Returns all available routes
|
|
@@ -7954,7 +8080,7 @@ var SystemMetaTag = class extends import_sdkgen_client119.TagAbstract {
|
|
|
7954
8080
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7955
8081
|
throw new CommonMessageException(await response.json());
|
|
7956
8082
|
}
|
|
7957
|
-
throw new
|
|
8083
|
+
throw new import_sdkgen_client122.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7958
8084
|
}
|
|
7959
8085
|
/**
|
|
7960
8086
|
* Returns details of a specific schema
|
|
@@ -7981,14 +8107,14 @@ var SystemMetaTag = class extends import_sdkgen_client119.TagAbstract {
|
|
|
7981
8107
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7982
8108
|
throw new CommonMessageException(await response.json());
|
|
7983
8109
|
}
|
|
7984
|
-
throw new
|
|
8110
|
+
throw new import_sdkgen_client122.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7985
8111
|
}
|
|
7986
8112
|
};
|
|
7987
8113
|
|
|
7988
8114
|
// src/SystemPaymentTag.ts
|
|
7989
|
-
var
|
|
7990
|
-
var
|
|
7991
|
-
var SystemPaymentTag = class extends
|
|
8115
|
+
var import_sdkgen_client123 = require("sdkgen-client");
|
|
8116
|
+
var import_sdkgen_client124 = require("sdkgen-client");
|
|
8117
|
+
var SystemPaymentTag = class extends import_sdkgen_client123.TagAbstract {
|
|
7992
8118
|
/**
|
|
7993
8119
|
* Payment webhook endpoint after successful purchase of a plan
|
|
7994
8120
|
*
|
|
@@ -8014,12 +8140,12 @@ var SystemPaymentTag = class extends import_sdkgen_client121.TagAbstract {
|
|
|
8014
8140
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
8015
8141
|
throw new CommonMessageException(await response.json());
|
|
8016
8142
|
}
|
|
8017
|
-
throw new
|
|
8143
|
+
throw new import_sdkgen_client124.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
8018
8144
|
}
|
|
8019
8145
|
};
|
|
8020
8146
|
|
|
8021
8147
|
// src/SystemTag.ts
|
|
8022
|
-
var SystemTag = class extends
|
|
8148
|
+
var SystemTag = class extends import_sdkgen_client125.TagAbstract {
|
|
8023
8149
|
connection() {
|
|
8024
8150
|
return new SystemConnectionTag(
|
|
8025
8151
|
this.httpClient,
|
|
@@ -8041,7 +8167,7 @@ var SystemTag = class extends import_sdkgen_client123.TagAbstract {
|
|
|
8041
8167
|
};
|
|
8042
8168
|
|
|
8043
8169
|
// src/Client.ts
|
|
8044
|
-
var Client = class _Client extends
|
|
8170
|
+
var Client = class _Client extends import_sdkgen_client126.ClientAbstract {
|
|
8045
8171
|
authorization() {
|
|
8046
8172
|
return new AuthorizationTag(
|
|
8047
8173
|
this.httpClient,
|
|
@@ -8067,7 +8193,7 @@ var Client = class _Client extends import_sdkgen_client124.ClientAbstract {
|
|
|
8067
8193
|
);
|
|
8068
8194
|
}
|
|
8069
8195
|
static buildAnonymous(baseUrl) {
|
|
8070
|
-
return new _Client(baseUrl, new
|
|
8196
|
+
return new _Client(baseUrl, new import_sdkgen_client127.Anonymous());
|
|
8071
8197
|
}
|
|
8072
8198
|
};
|
|
8073
8199
|
// Annotate the CommonJS export names for ESM import in node:
|
|
@@ -8081,6 +8207,7 @@ var Client = class _Client extends import_sdkgen_client124.ClientAbstract {
|
|
|
8081
8207
|
BackendBundleTag,
|
|
8082
8208
|
BackendCategoryTag,
|
|
8083
8209
|
BackendConfigTag,
|
|
8210
|
+
BackendConnectionAgentTag,
|
|
8084
8211
|
BackendConnectionDatabaseTag,
|
|
8085
8212
|
BackendConnectionFilesystemTag,
|
|
8086
8213
|
BackendConnectionHttpTag,
|