fusio-sdk 6.4.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 +475 -375
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5533 -5333
- package/dist/index.d.ts +5533 -5333
- package/dist/index.js +470 -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}
|
|
@@ -1190,10 +1191,102 @@ var BackendConfigTag = class extends import_sdkgen_client18.TagAbstract {
|
|
|
1190
1191
|
}
|
|
1191
1192
|
};
|
|
1192
1193
|
|
|
1193
|
-
// src/
|
|
1194
|
+
// src/BackendConnectionAgentTag.ts
|
|
1194
1195
|
var import_sdkgen_client20 = require("sdkgen-client");
|
|
1195
1196
|
var import_sdkgen_client21 = require("sdkgen-client");
|
|
1196
|
-
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 {
|
|
1197
1290
|
/**
|
|
1198
1291
|
* Creates a new row at a table on a database
|
|
1199
1292
|
*
|
|
@@ -1223,7 +1316,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client20.TagAbstr
|
|
|
1223
1316
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1224
1317
|
throw new CommonMessageException(await response.json());
|
|
1225
1318
|
}
|
|
1226
|
-
throw new
|
|
1319
|
+
throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1227
1320
|
}
|
|
1228
1321
|
/**
|
|
1229
1322
|
* Creates a new table on a database
|
|
@@ -1253,7 +1346,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client20.TagAbstr
|
|
|
1253
1346
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1254
1347
|
throw new CommonMessageException(await response.json());
|
|
1255
1348
|
}
|
|
1256
|
-
throw new
|
|
1349
|
+
throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1257
1350
|
}
|
|
1258
1351
|
/**
|
|
1259
1352
|
* Deletes an existing row at a table on a database
|
|
@@ -1282,7 +1375,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client20.TagAbstr
|
|
|
1282
1375
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1283
1376
|
throw new CommonMessageException(await response.json());
|
|
1284
1377
|
}
|
|
1285
|
-
throw new
|
|
1378
|
+
throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1286
1379
|
}
|
|
1287
1380
|
/**
|
|
1288
1381
|
* Deletes an existing table on a database
|
|
@@ -1310,7 +1403,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client20.TagAbstr
|
|
|
1310
1403
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1311
1404
|
throw new CommonMessageException(await response.json());
|
|
1312
1405
|
}
|
|
1313
|
-
throw new
|
|
1406
|
+
throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1314
1407
|
}
|
|
1315
1408
|
/**
|
|
1316
1409
|
* Returns a specific row at a table on a database
|
|
@@ -1339,7 +1432,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client20.TagAbstr
|
|
|
1339
1432
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1340
1433
|
throw new CommonMessageException(await response.json());
|
|
1341
1434
|
}
|
|
1342
|
-
throw new
|
|
1435
|
+
throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1343
1436
|
}
|
|
1344
1437
|
/**
|
|
1345
1438
|
* Returns paginated rows at a table on a database
|
|
@@ -1376,7 +1469,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client20.TagAbstr
|
|
|
1376
1469
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1377
1470
|
throw new CommonMessageException(await response.json());
|
|
1378
1471
|
}
|
|
1379
|
-
throw new
|
|
1472
|
+
throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1380
1473
|
}
|
|
1381
1474
|
/**
|
|
1382
1475
|
* Returns the schema of a specific table on a database
|
|
@@ -1404,7 +1497,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client20.TagAbstr
|
|
|
1404
1497
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1405
1498
|
throw new CommonMessageException(await response.json());
|
|
1406
1499
|
}
|
|
1407
|
-
throw new
|
|
1500
|
+
throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1408
1501
|
}
|
|
1409
1502
|
/**
|
|
1410
1503
|
* Returns all available tables on a database
|
|
@@ -1434,7 +1527,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client20.TagAbstr
|
|
|
1434
1527
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1435
1528
|
throw new CommonMessageException(await response.json());
|
|
1436
1529
|
}
|
|
1437
|
-
throw new
|
|
1530
|
+
throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1438
1531
|
}
|
|
1439
1532
|
/**
|
|
1440
1533
|
* Updates an existing row at a table on a database
|
|
@@ -1466,7 +1559,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client20.TagAbstr
|
|
|
1466
1559
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1467
1560
|
throw new CommonMessageException(await response.json());
|
|
1468
1561
|
}
|
|
1469
|
-
throw new
|
|
1562
|
+
throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1470
1563
|
}
|
|
1471
1564
|
/**
|
|
1472
1565
|
* Updates an existing table on a database
|
|
@@ -1497,14 +1590,14 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client20.TagAbstr
|
|
|
1497
1590
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1498
1591
|
throw new CommonMessageException(await response.json());
|
|
1499
1592
|
}
|
|
1500
|
-
throw new
|
|
1593
|
+
throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1501
1594
|
}
|
|
1502
1595
|
};
|
|
1503
1596
|
|
|
1504
1597
|
// src/BackendConnectionFilesystemTag.ts
|
|
1505
|
-
var
|
|
1506
|
-
var
|
|
1507
|
-
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 {
|
|
1508
1601
|
/**
|
|
1509
1602
|
* Uploads one or more files on the filesystem connection
|
|
1510
1603
|
*
|
|
@@ -1531,7 +1624,7 @@ var BackendConnectionFilesystemTag = class extends import_sdkgen_client22.TagAbs
|
|
|
1531
1624
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1532
1625
|
throw new CommonMessageException(await response.json());
|
|
1533
1626
|
}
|
|
1534
|
-
throw new
|
|
1627
|
+
throw new import_sdkgen_client25.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1535
1628
|
}
|
|
1536
1629
|
/**
|
|
1537
1630
|
* Deletes an existing file on the filesystem connection
|
|
@@ -1559,7 +1652,7 @@ var BackendConnectionFilesystemTag = class extends import_sdkgen_client22.TagAbs
|
|
|
1559
1652
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1560
1653
|
throw new CommonMessageException(await response.json());
|
|
1561
1654
|
}
|
|
1562
|
-
throw new
|
|
1655
|
+
throw new import_sdkgen_client25.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1563
1656
|
}
|
|
1564
1657
|
/**
|
|
1565
1658
|
* Returns the content of the provided file id on the filesystem connection
|
|
@@ -1589,7 +1682,7 @@ var BackendConnectionFilesystemTag = class extends import_sdkgen_client22.TagAbs
|
|
|
1589
1682
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1590
1683
|
throw new CommonMessageException(await response.json());
|
|
1591
1684
|
}
|
|
1592
|
-
throw new
|
|
1685
|
+
throw new import_sdkgen_client25.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1593
1686
|
}
|
|
1594
1687
|
/**
|
|
1595
1688
|
* Returns all available files on the filesystem connection
|
|
@@ -1619,7 +1712,7 @@ var BackendConnectionFilesystemTag = class extends import_sdkgen_client22.TagAbs
|
|
|
1619
1712
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1620
1713
|
throw new CommonMessageException(await response.json());
|
|
1621
1714
|
}
|
|
1622
|
-
throw new
|
|
1715
|
+
throw new import_sdkgen_client25.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1623
1716
|
}
|
|
1624
1717
|
/**
|
|
1625
1718
|
* Updates an existing file on the filesystem connection
|
|
@@ -1648,14 +1741,14 @@ var BackendConnectionFilesystemTag = class extends import_sdkgen_client22.TagAbs
|
|
|
1648
1741
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1649
1742
|
throw new CommonMessageException(await response.json());
|
|
1650
1743
|
}
|
|
1651
|
-
throw new
|
|
1744
|
+
throw new import_sdkgen_client25.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1652
1745
|
}
|
|
1653
1746
|
};
|
|
1654
1747
|
|
|
1655
1748
|
// src/BackendConnectionHttpTag.ts
|
|
1656
|
-
var
|
|
1657
|
-
var
|
|
1658
|
-
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 {
|
|
1659
1752
|
/**
|
|
1660
1753
|
* Sends an arbitrary HTTP request to the connection
|
|
1661
1754
|
*
|
|
@@ -1684,14 +1777,14 @@ var BackendConnectionHttpTag = class extends import_sdkgen_client24.TagAbstract
|
|
|
1684
1777
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1685
1778
|
throw new CommonMessageException(await response.json());
|
|
1686
1779
|
}
|
|
1687
|
-
throw new
|
|
1780
|
+
throw new import_sdkgen_client27.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1688
1781
|
}
|
|
1689
1782
|
};
|
|
1690
1783
|
|
|
1691
1784
|
// src/BackendConnectionSdkTag.ts
|
|
1692
|
-
var
|
|
1693
|
-
var
|
|
1694
|
-
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 {
|
|
1695
1788
|
/**
|
|
1696
1789
|
* Returns the SDK specification
|
|
1697
1790
|
*
|
|
@@ -1717,14 +1810,20 @@ var BackendConnectionSdkTag = class extends import_sdkgen_client26.TagAbstract {
|
|
|
1717
1810
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1718
1811
|
throw new CommonMessageException(await response.json());
|
|
1719
1812
|
}
|
|
1720
|
-
throw new
|
|
1813
|
+
throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1721
1814
|
}
|
|
1722
1815
|
};
|
|
1723
1816
|
|
|
1724
1817
|
// src/BackendConnectionTag.ts
|
|
1725
|
-
var
|
|
1726
|
-
var
|
|
1727
|
-
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
|
+
}
|
|
1728
1827
|
database() {
|
|
1729
1828
|
return new BackendConnectionDatabaseTag(
|
|
1730
1829
|
this.httpClient,
|
|
@@ -1775,7 +1874,7 @@ var BackendConnectionTag = class extends import_sdkgen_client28.TagAbstract {
|
|
|
1775
1874
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1776
1875
|
throw new CommonMessageException(await response.json());
|
|
1777
1876
|
}
|
|
1778
|
-
throw new
|
|
1877
|
+
throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1779
1878
|
}
|
|
1780
1879
|
/**
|
|
1781
1880
|
* Deletes an existing connection
|
|
@@ -1802,7 +1901,7 @@ var BackendConnectionTag = class extends import_sdkgen_client28.TagAbstract {
|
|
|
1802
1901
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1803
1902
|
throw new CommonMessageException(await response.json());
|
|
1804
1903
|
}
|
|
1805
|
-
throw new
|
|
1904
|
+
throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1806
1905
|
}
|
|
1807
1906
|
/**
|
|
1808
1907
|
* Returns a specific connection
|
|
@@ -1829,7 +1928,7 @@ var BackendConnectionTag = class extends import_sdkgen_client28.TagAbstract {
|
|
|
1829
1928
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1830
1929
|
throw new CommonMessageException(await response.json());
|
|
1831
1930
|
}
|
|
1832
|
-
throw new
|
|
1931
|
+
throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1833
1932
|
}
|
|
1834
1933
|
/**
|
|
1835
1934
|
* Returns a paginated list of connections
|
|
@@ -1859,7 +1958,7 @@ var BackendConnectionTag = class extends import_sdkgen_client28.TagAbstract {
|
|
|
1859
1958
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1860
1959
|
throw new CommonMessageException(await response.json());
|
|
1861
1960
|
}
|
|
1862
|
-
throw new
|
|
1961
|
+
throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1863
1962
|
}
|
|
1864
1963
|
/**
|
|
1865
1964
|
* Returns all available connection classes
|
|
@@ -1884,7 +1983,7 @@ var BackendConnectionTag = class extends import_sdkgen_client28.TagAbstract {
|
|
|
1884
1983
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1885
1984
|
throw new CommonMessageException(await response.json());
|
|
1886
1985
|
}
|
|
1887
|
-
throw new
|
|
1986
|
+
throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1888
1987
|
}
|
|
1889
1988
|
/**
|
|
1890
1989
|
* Returns the connection config form
|
|
@@ -1911,7 +2010,7 @@ var BackendConnectionTag = class extends import_sdkgen_client28.TagAbstract {
|
|
|
1911
2010
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1912
2011
|
throw new CommonMessageException(await response.json());
|
|
1913
2012
|
}
|
|
1914
|
-
throw new
|
|
2013
|
+
throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1915
2014
|
}
|
|
1916
2015
|
/**
|
|
1917
2016
|
* Returns a redirect url to start the OAuth2 authorization flow for the given connection
|
|
@@ -1938,7 +2037,7 @@ var BackendConnectionTag = class extends import_sdkgen_client28.TagAbstract {
|
|
|
1938
2037
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1939
2038
|
throw new CommonMessageException(await response.json());
|
|
1940
2039
|
}
|
|
1941
|
-
throw new
|
|
2040
|
+
throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1942
2041
|
}
|
|
1943
2042
|
/**
|
|
1944
2043
|
* Updates an existing connection
|
|
@@ -1968,14 +2067,14 @@ var BackendConnectionTag = class extends import_sdkgen_client28.TagAbstract {
|
|
|
1968
2067
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1969
2068
|
throw new CommonMessageException(await response.json());
|
|
1970
2069
|
}
|
|
1971
|
-
throw new
|
|
2070
|
+
throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1972
2071
|
}
|
|
1973
2072
|
};
|
|
1974
2073
|
|
|
1975
2074
|
// src/BackendCronjobTag.ts
|
|
1976
|
-
var
|
|
1977
|
-
var
|
|
1978
|
-
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 {
|
|
1979
2078
|
/**
|
|
1980
2079
|
* Creates a new cronjob
|
|
1981
2080
|
*
|
|
@@ -2002,7 +2101,7 @@ var BackendCronjobTag = class extends import_sdkgen_client30.TagAbstract {
|
|
|
2002
2101
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2003
2102
|
throw new CommonMessageException(await response.json());
|
|
2004
2103
|
}
|
|
2005
|
-
throw new
|
|
2104
|
+
throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2006
2105
|
}
|
|
2007
2106
|
/**
|
|
2008
2107
|
* Deletes an existing cronjob
|
|
@@ -2029,7 +2128,7 @@ var BackendCronjobTag = class extends import_sdkgen_client30.TagAbstract {
|
|
|
2029
2128
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2030
2129
|
throw new CommonMessageException(await response.json());
|
|
2031
2130
|
}
|
|
2032
|
-
throw new
|
|
2131
|
+
throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2033
2132
|
}
|
|
2034
2133
|
/**
|
|
2035
2134
|
* Returns a specific cronjob
|
|
@@ -2056,7 +2155,7 @@ var BackendCronjobTag = class extends import_sdkgen_client30.TagAbstract {
|
|
|
2056
2155
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2057
2156
|
throw new CommonMessageException(await response.json());
|
|
2058
2157
|
}
|
|
2059
|
-
throw new
|
|
2158
|
+
throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2060
2159
|
}
|
|
2061
2160
|
/**
|
|
2062
2161
|
* Returns a paginated list of cronjobs
|
|
@@ -2085,7 +2184,7 @@ var BackendCronjobTag = class extends import_sdkgen_client30.TagAbstract {
|
|
|
2085
2184
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2086
2185
|
throw new CommonMessageException(await response.json());
|
|
2087
2186
|
}
|
|
2088
|
-
throw new
|
|
2187
|
+
throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2089
2188
|
}
|
|
2090
2189
|
/**
|
|
2091
2190
|
* Updates an existing cronjob
|
|
@@ -2115,14 +2214,14 @@ var BackendCronjobTag = class extends import_sdkgen_client30.TagAbstract {
|
|
|
2115
2214
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2116
2215
|
throw new CommonMessageException(await response.json());
|
|
2117
2216
|
}
|
|
2118
|
-
throw new
|
|
2217
|
+
throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2119
2218
|
}
|
|
2120
2219
|
};
|
|
2121
2220
|
|
|
2122
2221
|
// src/BackendDashboardTag.ts
|
|
2123
|
-
var
|
|
2124
|
-
var
|
|
2125
|
-
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 {
|
|
2126
2225
|
/**
|
|
2127
2226
|
* Returns all available dashboard widgets
|
|
2128
2227
|
*
|
|
@@ -2146,14 +2245,14 @@ var BackendDashboardTag = class extends import_sdkgen_client32.TagAbstract {
|
|
|
2146
2245
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2147
2246
|
throw new CommonMessageException(await response.json());
|
|
2148
2247
|
}
|
|
2149
|
-
throw new
|
|
2248
|
+
throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2150
2249
|
}
|
|
2151
2250
|
};
|
|
2152
2251
|
|
|
2153
2252
|
// src/BackendEventTag.ts
|
|
2154
|
-
var
|
|
2155
|
-
var
|
|
2156
|
-
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 {
|
|
2157
2256
|
/**
|
|
2158
2257
|
* Creates a new event
|
|
2159
2258
|
*
|
|
@@ -2180,7 +2279,7 @@ var BackendEventTag = class extends import_sdkgen_client34.TagAbstract {
|
|
|
2180
2279
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2181
2280
|
throw new CommonMessageException(await response.json());
|
|
2182
2281
|
}
|
|
2183
|
-
throw new
|
|
2282
|
+
throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2184
2283
|
}
|
|
2185
2284
|
/**
|
|
2186
2285
|
* Deletes an existing event
|
|
@@ -2207,7 +2306,7 @@ var BackendEventTag = class extends import_sdkgen_client34.TagAbstract {
|
|
|
2207
2306
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2208
2307
|
throw new CommonMessageException(await response.json());
|
|
2209
2308
|
}
|
|
2210
|
-
throw new
|
|
2309
|
+
throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2211
2310
|
}
|
|
2212
2311
|
/**
|
|
2213
2312
|
* Returns a specific event
|
|
@@ -2234,7 +2333,7 @@ var BackendEventTag = class extends import_sdkgen_client34.TagAbstract {
|
|
|
2234
2333
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2235
2334
|
throw new CommonMessageException(await response.json());
|
|
2236
2335
|
}
|
|
2237
|
-
throw new
|
|
2336
|
+
throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2238
2337
|
}
|
|
2239
2338
|
/**
|
|
2240
2339
|
* Returns a paginated list of events
|
|
@@ -2263,7 +2362,7 @@ var BackendEventTag = class extends import_sdkgen_client34.TagAbstract {
|
|
|
2263
2362
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2264
2363
|
throw new CommonMessageException(await response.json());
|
|
2265
2364
|
}
|
|
2266
|
-
throw new
|
|
2365
|
+
throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2267
2366
|
}
|
|
2268
2367
|
/**
|
|
2269
2368
|
* Updates an existing event
|
|
@@ -2293,14 +2392,14 @@ var BackendEventTag = class extends import_sdkgen_client34.TagAbstract {
|
|
|
2293
2392
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2294
2393
|
throw new CommonMessageException(await response.json());
|
|
2295
2394
|
}
|
|
2296
|
-
throw new
|
|
2395
|
+
throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2297
2396
|
}
|
|
2298
2397
|
};
|
|
2299
2398
|
|
|
2300
2399
|
// src/BackendFirewallTag.ts
|
|
2301
|
-
var
|
|
2302
|
-
var
|
|
2303
|
-
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 {
|
|
2304
2403
|
/**
|
|
2305
2404
|
* Creates a new firewall rule
|
|
2306
2405
|
*
|
|
@@ -2327,7 +2426,7 @@ var BackendFirewallTag = class extends import_sdkgen_client36.TagAbstract {
|
|
|
2327
2426
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2328
2427
|
throw new CommonMessageException(await response.json());
|
|
2329
2428
|
}
|
|
2330
|
-
throw new
|
|
2429
|
+
throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2331
2430
|
}
|
|
2332
2431
|
/**
|
|
2333
2432
|
* Deletes an existing firewall rule
|
|
@@ -2354,7 +2453,7 @@ var BackendFirewallTag = class extends import_sdkgen_client36.TagAbstract {
|
|
|
2354
2453
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2355
2454
|
throw new CommonMessageException(await response.json());
|
|
2356
2455
|
}
|
|
2357
|
-
throw new
|
|
2456
|
+
throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2358
2457
|
}
|
|
2359
2458
|
/**
|
|
2360
2459
|
* Returns a specific firewall rule
|
|
@@ -2381,7 +2480,7 @@ var BackendFirewallTag = class extends import_sdkgen_client36.TagAbstract {
|
|
|
2381
2480
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2382
2481
|
throw new CommonMessageException(await response.json());
|
|
2383
2482
|
}
|
|
2384
|
-
throw new
|
|
2483
|
+
throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2385
2484
|
}
|
|
2386
2485
|
/**
|
|
2387
2486
|
* Returns a paginated list of firewall rules
|
|
@@ -2410,7 +2509,7 @@ var BackendFirewallTag = class extends import_sdkgen_client36.TagAbstract {
|
|
|
2410
2509
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2411
2510
|
throw new CommonMessageException(await response.json());
|
|
2412
2511
|
}
|
|
2413
|
-
throw new
|
|
2512
|
+
throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2414
2513
|
}
|
|
2415
2514
|
/**
|
|
2416
2515
|
* Updates an existing firewall rule
|
|
@@ -2440,14 +2539,14 @@ var BackendFirewallTag = class extends import_sdkgen_client36.TagAbstract {
|
|
|
2440
2539
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2441
2540
|
throw new CommonMessageException(await response.json());
|
|
2442
2541
|
}
|
|
2443
|
-
throw new
|
|
2542
|
+
throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2444
2543
|
}
|
|
2445
2544
|
};
|
|
2446
2545
|
|
|
2447
2546
|
// src/BackendFormTag.ts
|
|
2448
|
-
var
|
|
2449
|
-
var
|
|
2450
|
-
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 {
|
|
2451
2550
|
/**
|
|
2452
2551
|
* Creates a new form
|
|
2453
2552
|
*
|
|
@@ -2474,7 +2573,7 @@ var BackendFormTag = class extends import_sdkgen_client38.TagAbstract {
|
|
|
2474
2573
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2475
2574
|
throw new CommonMessageException(await response.json());
|
|
2476
2575
|
}
|
|
2477
|
-
throw new
|
|
2576
|
+
throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2478
2577
|
}
|
|
2479
2578
|
/**
|
|
2480
2579
|
* Deletes an existing form
|
|
@@ -2501,7 +2600,7 @@ var BackendFormTag = class extends import_sdkgen_client38.TagAbstract {
|
|
|
2501
2600
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2502
2601
|
throw new CommonMessageException(await response.json());
|
|
2503
2602
|
}
|
|
2504
|
-
throw new
|
|
2603
|
+
throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2505
2604
|
}
|
|
2506
2605
|
/**
|
|
2507
2606
|
* Returns a specific form
|
|
@@ -2528,7 +2627,7 @@ var BackendFormTag = class extends import_sdkgen_client38.TagAbstract {
|
|
|
2528
2627
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2529
2628
|
throw new CommonMessageException(await response.json());
|
|
2530
2629
|
}
|
|
2531
|
-
throw new
|
|
2630
|
+
throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2532
2631
|
}
|
|
2533
2632
|
/**
|
|
2534
2633
|
* Returns a paginated list of forms
|
|
@@ -2557,7 +2656,7 @@ var BackendFormTag = class extends import_sdkgen_client38.TagAbstract {
|
|
|
2557
2656
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2558
2657
|
throw new CommonMessageException(await response.json());
|
|
2559
2658
|
}
|
|
2560
|
-
throw new
|
|
2659
|
+
throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2561
2660
|
}
|
|
2562
2661
|
/**
|
|
2563
2662
|
* Updates an existing form
|
|
@@ -2587,14 +2686,14 @@ var BackendFormTag = class extends import_sdkgen_client38.TagAbstract {
|
|
|
2587
2686
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2588
2687
|
throw new CommonMessageException(await response.json());
|
|
2589
2688
|
}
|
|
2590
|
-
throw new
|
|
2689
|
+
throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2591
2690
|
}
|
|
2592
2691
|
};
|
|
2593
2692
|
|
|
2594
2693
|
// src/BackendGeneratorTag.ts
|
|
2595
|
-
var
|
|
2596
|
-
var
|
|
2597
|
-
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 {
|
|
2598
2697
|
/**
|
|
2599
2698
|
* Executes a generator with the provided config
|
|
2600
2699
|
*
|
|
@@ -2623,7 +2722,7 @@ var BackendGeneratorTag = class extends import_sdkgen_client40.TagAbstract {
|
|
|
2623
2722
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2624
2723
|
throw new CommonMessageException(await response.json());
|
|
2625
2724
|
}
|
|
2626
|
-
throw new
|
|
2725
|
+
throw new import_sdkgen_client43.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2627
2726
|
}
|
|
2628
2727
|
/**
|
|
2629
2728
|
* Generates a changelog of all potential changes if you execute this generator with the provided config
|
|
@@ -2653,7 +2752,7 @@ var BackendGeneratorTag = class extends import_sdkgen_client40.TagAbstract {
|
|
|
2653
2752
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2654
2753
|
throw new CommonMessageException(await response.json());
|
|
2655
2754
|
}
|
|
2656
|
-
throw new
|
|
2755
|
+
throw new import_sdkgen_client43.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2657
2756
|
}
|
|
2658
2757
|
/**
|
|
2659
2758
|
* Returns all available generator classes
|
|
@@ -2678,7 +2777,7 @@ var BackendGeneratorTag = class extends import_sdkgen_client40.TagAbstract {
|
|
|
2678
2777
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2679
2778
|
throw new CommonMessageException(await response.json());
|
|
2680
2779
|
}
|
|
2681
|
-
throw new
|
|
2780
|
+
throw new import_sdkgen_client43.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2682
2781
|
}
|
|
2683
2782
|
/**
|
|
2684
2783
|
* Returns the generator config form
|
|
@@ -2705,14 +2804,14 @@ var BackendGeneratorTag = class extends import_sdkgen_client40.TagAbstract {
|
|
|
2705
2804
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2706
2805
|
throw new CommonMessageException(await response.json());
|
|
2707
2806
|
}
|
|
2708
|
-
throw new
|
|
2807
|
+
throw new import_sdkgen_client43.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2709
2808
|
}
|
|
2710
2809
|
};
|
|
2711
2810
|
|
|
2712
2811
|
// src/BackendIdentityTag.ts
|
|
2713
|
-
var
|
|
2714
|
-
var
|
|
2715
|
-
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 {
|
|
2716
2815
|
/**
|
|
2717
2816
|
* Creates a new identity
|
|
2718
2817
|
*
|
|
@@ -2739,7 +2838,7 @@ var BackendIdentityTag = class extends import_sdkgen_client42.TagAbstract {
|
|
|
2739
2838
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2740
2839
|
throw new CommonMessageException(await response.json());
|
|
2741
2840
|
}
|
|
2742
|
-
throw new
|
|
2841
|
+
throw new import_sdkgen_client45.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2743
2842
|
}
|
|
2744
2843
|
/**
|
|
2745
2844
|
* Deletes an existing identity
|
|
@@ -2766,7 +2865,7 @@ var BackendIdentityTag = class extends import_sdkgen_client42.TagAbstract {
|
|
|
2766
2865
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2767
2866
|
throw new CommonMessageException(await response.json());
|
|
2768
2867
|
}
|
|
2769
|
-
throw new
|
|
2868
|
+
throw new import_sdkgen_client45.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2770
2869
|
}
|
|
2771
2870
|
/**
|
|
2772
2871
|
* Returns a specific identity
|
|
@@ -2793,7 +2892,7 @@ var BackendIdentityTag = class extends import_sdkgen_client42.TagAbstract {
|
|
|
2793
2892
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2794
2893
|
throw new CommonMessageException(await response.json());
|
|
2795
2894
|
}
|
|
2796
|
-
throw new
|
|
2895
|
+
throw new import_sdkgen_client45.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2797
2896
|
}
|
|
2798
2897
|
/**
|
|
2799
2898
|
* Returns a paginated list of identities
|
|
@@ -2822,7 +2921,7 @@ var BackendIdentityTag = class extends import_sdkgen_client42.TagAbstract {
|
|
|
2822
2921
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2823
2922
|
throw new CommonMessageException(await response.json());
|
|
2824
2923
|
}
|
|
2825
|
-
throw new
|
|
2924
|
+
throw new import_sdkgen_client45.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2826
2925
|
}
|
|
2827
2926
|
/**
|
|
2828
2927
|
* Returns all available identity classes
|
|
@@ -2847,7 +2946,7 @@ var BackendIdentityTag = class extends import_sdkgen_client42.TagAbstract {
|
|
|
2847
2946
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2848
2947
|
throw new CommonMessageException(await response.json());
|
|
2849
2948
|
}
|
|
2850
|
-
throw new
|
|
2949
|
+
throw new import_sdkgen_client45.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2851
2950
|
}
|
|
2852
2951
|
/**
|
|
2853
2952
|
* Returns the identity config form
|
|
@@ -2874,7 +2973,7 @@ var BackendIdentityTag = class extends import_sdkgen_client42.TagAbstract {
|
|
|
2874
2973
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2875
2974
|
throw new CommonMessageException(await response.json());
|
|
2876
2975
|
}
|
|
2877
|
-
throw new
|
|
2976
|
+
throw new import_sdkgen_client45.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2878
2977
|
}
|
|
2879
2978
|
/**
|
|
2880
2979
|
* Updates an existing identity
|
|
@@ -2904,14 +3003,14 @@ var BackendIdentityTag = class extends import_sdkgen_client42.TagAbstract {
|
|
|
2904
3003
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2905
3004
|
throw new CommonMessageException(await response.json());
|
|
2906
3005
|
}
|
|
2907
|
-
throw new
|
|
3006
|
+
throw new import_sdkgen_client45.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2908
3007
|
}
|
|
2909
3008
|
};
|
|
2910
3009
|
|
|
2911
3010
|
// src/BackendLogTag.ts
|
|
2912
|
-
var
|
|
2913
|
-
var
|
|
2914
|
-
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 {
|
|
2915
3014
|
/**
|
|
2916
3015
|
* Returns a specific log
|
|
2917
3016
|
*
|
|
@@ -2937,7 +3036,7 @@ var BackendLogTag = class extends import_sdkgen_client44.TagAbstract {
|
|
|
2937
3036
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2938
3037
|
throw new CommonMessageException(await response.json());
|
|
2939
3038
|
}
|
|
2940
|
-
throw new
|
|
3039
|
+
throw new import_sdkgen_client47.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2941
3040
|
}
|
|
2942
3041
|
/**
|
|
2943
3042
|
* Returns a paginated list of logs
|
|
@@ -2977,7 +3076,7 @@ var BackendLogTag = class extends import_sdkgen_client44.TagAbstract {
|
|
|
2977
3076
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2978
3077
|
throw new CommonMessageException(await response.json());
|
|
2979
3078
|
}
|
|
2980
|
-
throw new
|
|
3079
|
+
throw new import_sdkgen_client47.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2981
3080
|
}
|
|
2982
3081
|
/**
|
|
2983
3082
|
* Returns a paginated list of log errors
|
|
@@ -3006,7 +3105,7 @@ var BackendLogTag = class extends import_sdkgen_client44.TagAbstract {
|
|
|
3006
3105
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3007
3106
|
throw new CommonMessageException(await response.json());
|
|
3008
3107
|
}
|
|
3009
|
-
throw new
|
|
3108
|
+
throw new import_sdkgen_client47.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3010
3109
|
}
|
|
3011
3110
|
/**
|
|
3012
3111
|
* Returns a specific error
|
|
@@ -3033,14 +3132,14 @@ var BackendLogTag = class extends import_sdkgen_client44.TagAbstract {
|
|
|
3033
3132
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3034
3133
|
throw new CommonMessageException(await response.json());
|
|
3035
3134
|
}
|
|
3036
|
-
throw new
|
|
3135
|
+
throw new import_sdkgen_client47.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3037
3136
|
}
|
|
3038
3137
|
};
|
|
3039
3138
|
|
|
3040
3139
|
// src/BackendMarketplaceActionTag.ts
|
|
3041
|
-
var
|
|
3042
|
-
var
|
|
3043
|
-
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 {
|
|
3044
3143
|
/**
|
|
3045
3144
|
* Returns a specific marketplace action
|
|
3046
3145
|
*
|
|
@@ -3067,7 +3166,7 @@ var BackendMarketplaceActionTag = class extends import_sdkgen_client46.TagAbstra
|
|
|
3067
3166
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3068
3167
|
throw new CommonMessageException(await response.json());
|
|
3069
3168
|
}
|
|
3070
|
-
throw new
|
|
3169
|
+
throw new import_sdkgen_client49.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3071
3170
|
}
|
|
3072
3171
|
/**
|
|
3073
3172
|
* Returns a paginated list of marketplace actions
|
|
@@ -3095,7 +3194,7 @@ var BackendMarketplaceActionTag = class extends import_sdkgen_client46.TagAbstra
|
|
|
3095
3194
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3096
3195
|
throw new CommonMessageException(await response.json());
|
|
3097
3196
|
}
|
|
3098
|
-
throw new
|
|
3197
|
+
throw new import_sdkgen_client49.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3099
3198
|
}
|
|
3100
3199
|
/**
|
|
3101
3200
|
* Installs an action from the marketplace
|
|
@@ -3123,7 +3222,7 @@ var BackendMarketplaceActionTag = class extends import_sdkgen_client46.TagAbstra
|
|
|
3123
3222
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3124
3223
|
throw new CommonMessageException(await response.json());
|
|
3125
3224
|
}
|
|
3126
|
-
throw new
|
|
3225
|
+
throw new import_sdkgen_client49.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3127
3226
|
}
|
|
3128
3227
|
/**
|
|
3129
3228
|
* Upgrades an action from the marketplace
|
|
@@ -3151,14 +3250,14 @@ var BackendMarketplaceActionTag = class extends import_sdkgen_client46.TagAbstra
|
|
|
3151
3250
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3152
3251
|
throw new CommonMessageException(await response.json());
|
|
3153
3252
|
}
|
|
3154
|
-
throw new
|
|
3253
|
+
throw new import_sdkgen_client49.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3155
3254
|
}
|
|
3156
3255
|
};
|
|
3157
3256
|
|
|
3158
3257
|
// src/BackendMarketplaceAppTag.ts
|
|
3159
|
-
var
|
|
3160
|
-
var
|
|
3161
|
-
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 {
|
|
3162
3261
|
/**
|
|
3163
3262
|
* Returns a specific marketplace app
|
|
3164
3263
|
*
|
|
@@ -3185,7 +3284,7 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client48.TagAbstract
|
|
|
3185
3284
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3186
3285
|
throw new CommonMessageException(await response.json());
|
|
3187
3286
|
}
|
|
3188
|
-
throw new
|
|
3287
|
+
throw new import_sdkgen_client51.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3189
3288
|
}
|
|
3190
3289
|
/**
|
|
3191
3290
|
* Returns a paginated list of marketplace apps
|
|
@@ -3213,7 +3312,7 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client48.TagAbstract
|
|
|
3213
3312
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3214
3313
|
throw new CommonMessageException(await response.json());
|
|
3215
3314
|
}
|
|
3216
|
-
throw new
|
|
3315
|
+
throw new import_sdkgen_client51.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3217
3316
|
}
|
|
3218
3317
|
/**
|
|
3219
3318
|
* Installs an app from the marketplace
|
|
@@ -3241,7 +3340,7 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client48.TagAbstract
|
|
|
3241
3340
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3242
3341
|
throw new CommonMessageException(await response.json());
|
|
3243
3342
|
}
|
|
3244
|
-
throw new
|
|
3343
|
+
throw new import_sdkgen_client51.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3245
3344
|
}
|
|
3246
3345
|
/**
|
|
3247
3346
|
* Upgrades an app from the marketplace
|
|
@@ -3269,14 +3368,14 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client48.TagAbstract
|
|
|
3269
3368
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3270
3369
|
throw new CommonMessageException(await response.json());
|
|
3271
3370
|
}
|
|
3272
|
-
throw new
|
|
3371
|
+
throw new import_sdkgen_client51.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3273
3372
|
}
|
|
3274
3373
|
};
|
|
3275
3374
|
|
|
3276
3375
|
// src/BackendMarketplaceBundleTag.ts
|
|
3277
|
-
var
|
|
3278
|
-
var
|
|
3279
|
-
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 {
|
|
3280
3379
|
/**
|
|
3281
3380
|
* Returns a specific marketplace bundle
|
|
3282
3381
|
*
|
|
@@ -3303,7 +3402,7 @@ var BackendMarketplaceBundleTag = class extends import_sdkgen_client50.TagAbstra
|
|
|
3303
3402
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3304
3403
|
throw new CommonMessageException(await response.json());
|
|
3305
3404
|
}
|
|
3306
|
-
throw new
|
|
3405
|
+
throw new import_sdkgen_client53.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3307
3406
|
}
|
|
3308
3407
|
/**
|
|
3309
3408
|
* Returns a paginated list of marketplace bundles
|
|
@@ -3331,7 +3430,7 @@ var BackendMarketplaceBundleTag = class extends import_sdkgen_client50.TagAbstra
|
|
|
3331
3430
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3332
3431
|
throw new CommonMessageException(await response.json());
|
|
3333
3432
|
}
|
|
3334
|
-
throw new
|
|
3433
|
+
throw new import_sdkgen_client53.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3335
3434
|
}
|
|
3336
3435
|
/**
|
|
3337
3436
|
* Installs an bundle from the marketplace
|
|
@@ -3359,7 +3458,7 @@ var BackendMarketplaceBundleTag = class extends import_sdkgen_client50.TagAbstra
|
|
|
3359
3458
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3360
3459
|
throw new CommonMessageException(await response.json());
|
|
3361
3460
|
}
|
|
3362
|
-
throw new
|
|
3461
|
+
throw new import_sdkgen_client53.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3363
3462
|
}
|
|
3364
3463
|
/**
|
|
3365
3464
|
* Upgrades an bundle from the marketplace
|
|
@@ -3387,13 +3486,13 @@ var BackendMarketplaceBundleTag = class extends import_sdkgen_client50.TagAbstra
|
|
|
3387
3486
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3388
3487
|
throw new CommonMessageException(await response.json());
|
|
3389
3488
|
}
|
|
3390
|
-
throw new
|
|
3489
|
+
throw new import_sdkgen_client53.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3391
3490
|
}
|
|
3392
3491
|
};
|
|
3393
3492
|
|
|
3394
3493
|
// src/BackendMarketplaceTag.ts
|
|
3395
|
-
var
|
|
3396
|
-
var BackendMarketplaceTag = class extends
|
|
3494
|
+
var import_sdkgen_client54 = require("sdkgen-client");
|
|
3495
|
+
var BackendMarketplaceTag = class extends import_sdkgen_client54.TagAbstract {
|
|
3397
3496
|
action() {
|
|
3398
3497
|
return new BackendMarketplaceActionTag(
|
|
3399
3498
|
this.httpClient,
|
|
@@ -3415,9 +3514,9 @@ var BackendMarketplaceTag = class extends import_sdkgen_client52.TagAbstract {
|
|
|
3415
3514
|
};
|
|
3416
3515
|
|
|
3417
3516
|
// src/BackendOperationTag.ts
|
|
3418
|
-
var
|
|
3419
|
-
var
|
|
3420
|
-
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 {
|
|
3421
3520
|
/**
|
|
3422
3521
|
* Creates a new operation
|
|
3423
3522
|
*
|
|
@@ -3444,7 +3543,7 @@ var BackendOperationTag = class extends import_sdkgen_client53.TagAbstract {
|
|
|
3444
3543
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3445
3544
|
throw new CommonMessageException(await response.json());
|
|
3446
3545
|
}
|
|
3447
|
-
throw new
|
|
3546
|
+
throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3448
3547
|
}
|
|
3449
3548
|
/**
|
|
3450
3549
|
* Deletes an existing operation
|
|
@@ -3471,7 +3570,7 @@ var BackendOperationTag = class extends import_sdkgen_client53.TagAbstract {
|
|
|
3471
3570
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3472
3571
|
throw new CommonMessageException(await response.json());
|
|
3473
3572
|
}
|
|
3474
|
-
throw new
|
|
3573
|
+
throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3475
3574
|
}
|
|
3476
3575
|
/**
|
|
3477
3576
|
* Returns a specific operation
|
|
@@ -3498,7 +3597,7 @@ var BackendOperationTag = class extends import_sdkgen_client53.TagAbstract {
|
|
|
3498
3597
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3499
3598
|
throw new CommonMessageException(await response.json());
|
|
3500
3599
|
}
|
|
3501
|
-
throw new
|
|
3600
|
+
throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3502
3601
|
}
|
|
3503
3602
|
/**
|
|
3504
3603
|
* Returns a paginated list of operations
|
|
@@ -3527,7 +3626,7 @@ var BackendOperationTag = class extends import_sdkgen_client53.TagAbstract {
|
|
|
3527
3626
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3528
3627
|
throw new CommonMessageException(await response.json());
|
|
3529
3628
|
}
|
|
3530
|
-
throw new
|
|
3629
|
+
throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3531
3630
|
}
|
|
3532
3631
|
/**
|
|
3533
3632
|
* Updates an existing operation
|
|
@@ -3557,14 +3656,14 @@ var BackendOperationTag = class extends import_sdkgen_client53.TagAbstract {
|
|
|
3557
3656
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3558
3657
|
throw new CommonMessageException(await response.json());
|
|
3559
3658
|
}
|
|
3560
|
-
throw new
|
|
3659
|
+
throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3561
3660
|
}
|
|
3562
3661
|
};
|
|
3563
3662
|
|
|
3564
3663
|
// src/BackendPageTag.ts
|
|
3565
|
-
var
|
|
3566
|
-
var
|
|
3567
|
-
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 {
|
|
3568
3667
|
/**
|
|
3569
3668
|
* Creates a new page
|
|
3570
3669
|
*
|
|
@@ -3591,7 +3690,7 @@ var BackendPageTag = class extends import_sdkgen_client55.TagAbstract {
|
|
|
3591
3690
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3592
3691
|
throw new CommonMessageException(await response.json());
|
|
3593
3692
|
}
|
|
3594
|
-
throw new
|
|
3693
|
+
throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3595
3694
|
}
|
|
3596
3695
|
/**
|
|
3597
3696
|
* Deletes an existing page
|
|
@@ -3618,7 +3717,7 @@ var BackendPageTag = class extends import_sdkgen_client55.TagAbstract {
|
|
|
3618
3717
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3619
3718
|
throw new CommonMessageException(await response.json());
|
|
3620
3719
|
}
|
|
3621
|
-
throw new
|
|
3720
|
+
throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3622
3721
|
}
|
|
3623
3722
|
/**
|
|
3624
3723
|
* Returns a specific page
|
|
@@ -3645,7 +3744,7 @@ var BackendPageTag = class extends import_sdkgen_client55.TagAbstract {
|
|
|
3645
3744
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3646
3745
|
throw new CommonMessageException(await response.json());
|
|
3647
3746
|
}
|
|
3648
|
-
throw new
|
|
3747
|
+
throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3649
3748
|
}
|
|
3650
3749
|
/**
|
|
3651
3750
|
* Returns a paginated list of pages
|
|
@@ -3674,7 +3773,7 @@ var BackendPageTag = class extends import_sdkgen_client55.TagAbstract {
|
|
|
3674
3773
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3675
3774
|
throw new CommonMessageException(await response.json());
|
|
3676
3775
|
}
|
|
3677
|
-
throw new
|
|
3776
|
+
throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3678
3777
|
}
|
|
3679
3778
|
/**
|
|
3680
3779
|
* Updates an existing page
|
|
@@ -3704,14 +3803,14 @@ var BackendPageTag = class extends import_sdkgen_client55.TagAbstract {
|
|
|
3704
3803
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3705
3804
|
throw new CommonMessageException(await response.json());
|
|
3706
3805
|
}
|
|
3707
|
-
throw new
|
|
3806
|
+
throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3708
3807
|
}
|
|
3709
3808
|
};
|
|
3710
3809
|
|
|
3711
3810
|
// src/BackendPlanTag.ts
|
|
3712
|
-
var
|
|
3713
|
-
var
|
|
3714
|
-
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 {
|
|
3715
3814
|
/**
|
|
3716
3815
|
* Creates a new plan
|
|
3717
3816
|
*
|
|
@@ -3738,7 +3837,7 @@ var BackendPlanTag = class extends import_sdkgen_client57.TagAbstract {
|
|
|
3738
3837
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3739
3838
|
throw new CommonMessageException(await response.json());
|
|
3740
3839
|
}
|
|
3741
|
-
throw new
|
|
3840
|
+
throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3742
3841
|
}
|
|
3743
3842
|
/**
|
|
3744
3843
|
* Deletes an existing plan
|
|
@@ -3765,7 +3864,7 @@ var BackendPlanTag = class extends import_sdkgen_client57.TagAbstract {
|
|
|
3765
3864
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3766
3865
|
throw new CommonMessageException(await response.json());
|
|
3767
3866
|
}
|
|
3768
|
-
throw new
|
|
3867
|
+
throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3769
3868
|
}
|
|
3770
3869
|
/**
|
|
3771
3870
|
* Returns a specific plan
|
|
@@ -3792,7 +3891,7 @@ var BackendPlanTag = class extends import_sdkgen_client57.TagAbstract {
|
|
|
3792
3891
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3793
3892
|
throw new CommonMessageException(await response.json());
|
|
3794
3893
|
}
|
|
3795
|
-
throw new
|
|
3894
|
+
throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3796
3895
|
}
|
|
3797
3896
|
/**
|
|
3798
3897
|
* Returns a paginated list of plans
|
|
@@ -3821,7 +3920,7 @@ var BackendPlanTag = class extends import_sdkgen_client57.TagAbstract {
|
|
|
3821
3920
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3822
3921
|
throw new CommonMessageException(await response.json());
|
|
3823
3922
|
}
|
|
3824
|
-
throw new
|
|
3923
|
+
throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3825
3924
|
}
|
|
3826
3925
|
/**
|
|
3827
3926
|
* Updates an existing plan
|
|
@@ -3851,14 +3950,14 @@ var BackendPlanTag = class extends import_sdkgen_client57.TagAbstract {
|
|
|
3851
3950
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3852
3951
|
throw new CommonMessageException(await response.json());
|
|
3853
3952
|
}
|
|
3854
|
-
throw new
|
|
3953
|
+
throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3855
3954
|
}
|
|
3856
3955
|
};
|
|
3857
3956
|
|
|
3858
3957
|
// src/BackendRateTag.ts
|
|
3859
|
-
var
|
|
3860
|
-
var
|
|
3861
|
-
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 {
|
|
3862
3961
|
/**
|
|
3863
3962
|
* Creates a new rate limitation
|
|
3864
3963
|
*
|
|
@@ -3885,7 +3984,7 @@ var BackendRateTag = class extends import_sdkgen_client59.TagAbstract {
|
|
|
3885
3984
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3886
3985
|
throw new CommonMessageException(await response.json());
|
|
3887
3986
|
}
|
|
3888
|
-
throw new
|
|
3987
|
+
throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3889
3988
|
}
|
|
3890
3989
|
/**
|
|
3891
3990
|
* Deletes an existing rate
|
|
@@ -3912,7 +4011,7 @@ var BackendRateTag = class extends import_sdkgen_client59.TagAbstract {
|
|
|
3912
4011
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3913
4012
|
throw new CommonMessageException(await response.json());
|
|
3914
4013
|
}
|
|
3915
|
-
throw new
|
|
4014
|
+
throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3916
4015
|
}
|
|
3917
4016
|
/**
|
|
3918
4017
|
* Returns a specific rate
|
|
@@ -3939,7 +4038,7 @@ var BackendRateTag = class extends import_sdkgen_client59.TagAbstract {
|
|
|
3939
4038
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3940
4039
|
throw new CommonMessageException(await response.json());
|
|
3941
4040
|
}
|
|
3942
|
-
throw new
|
|
4041
|
+
throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3943
4042
|
}
|
|
3944
4043
|
/**
|
|
3945
4044
|
* Returns a paginated list of rate limitations
|
|
@@ -3968,7 +4067,7 @@ var BackendRateTag = class extends import_sdkgen_client59.TagAbstract {
|
|
|
3968
4067
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3969
4068
|
throw new CommonMessageException(await response.json());
|
|
3970
4069
|
}
|
|
3971
|
-
throw new
|
|
4070
|
+
throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3972
4071
|
}
|
|
3973
4072
|
/**
|
|
3974
4073
|
* Updates an existing rate
|
|
@@ -3998,14 +4097,14 @@ var BackendRateTag = class extends import_sdkgen_client59.TagAbstract {
|
|
|
3998
4097
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3999
4098
|
throw new CommonMessageException(await response.json());
|
|
4000
4099
|
}
|
|
4001
|
-
throw new
|
|
4100
|
+
throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4002
4101
|
}
|
|
4003
4102
|
};
|
|
4004
4103
|
|
|
4005
4104
|
// src/BackendRoleTag.ts
|
|
4006
|
-
var
|
|
4007
|
-
var
|
|
4008
|
-
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 {
|
|
4009
4108
|
/**
|
|
4010
4109
|
* Creates a new role
|
|
4011
4110
|
*
|
|
@@ -4032,7 +4131,7 @@ var BackendRoleTag = class extends import_sdkgen_client61.TagAbstract {
|
|
|
4032
4131
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4033
4132
|
throw new CommonMessageException(await response.json());
|
|
4034
4133
|
}
|
|
4035
|
-
throw new
|
|
4134
|
+
throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4036
4135
|
}
|
|
4037
4136
|
/**
|
|
4038
4137
|
* Deletes an existing role
|
|
@@ -4059,7 +4158,7 @@ var BackendRoleTag = class extends import_sdkgen_client61.TagAbstract {
|
|
|
4059
4158
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4060
4159
|
throw new CommonMessageException(await response.json());
|
|
4061
4160
|
}
|
|
4062
|
-
throw new
|
|
4161
|
+
throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4063
4162
|
}
|
|
4064
4163
|
/**
|
|
4065
4164
|
* Returns a specific role
|
|
@@ -4086,7 +4185,7 @@ var BackendRoleTag = class extends import_sdkgen_client61.TagAbstract {
|
|
|
4086
4185
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4087
4186
|
throw new CommonMessageException(await response.json());
|
|
4088
4187
|
}
|
|
4089
|
-
throw new
|
|
4188
|
+
throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4090
4189
|
}
|
|
4091
4190
|
/**
|
|
4092
4191
|
* Returns a paginated list of roles
|
|
@@ -4115,7 +4214,7 @@ var BackendRoleTag = class extends import_sdkgen_client61.TagAbstract {
|
|
|
4115
4214
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4116
4215
|
throw new CommonMessageException(await response.json());
|
|
4117
4216
|
}
|
|
4118
|
-
throw new
|
|
4217
|
+
throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4119
4218
|
}
|
|
4120
4219
|
/**
|
|
4121
4220
|
* Updates an existing role
|
|
@@ -4145,14 +4244,14 @@ var BackendRoleTag = class extends import_sdkgen_client61.TagAbstract {
|
|
|
4145
4244
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4146
4245
|
throw new CommonMessageException(await response.json());
|
|
4147
4246
|
}
|
|
4148
|
-
throw new
|
|
4247
|
+
throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4149
4248
|
}
|
|
4150
4249
|
};
|
|
4151
4250
|
|
|
4152
4251
|
// src/BackendSchemaTag.ts
|
|
4153
|
-
var
|
|
4154
|
-
var
|
|
4155
|
-
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 {
|
|
4156
4255
|
/**
|
|
4157
4256
|
* Creates a new schema
|
|
4158
4257
|
*
|
|
@@ -4179,7 +4278,7 @@ var BackendSchemaTag = class extends import_sdkgen_client63.TagAbstract {
|
|
|
4179
4278
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4180
4279
|
throw new CommonMessageException(await response.json());
|
|
4181
4280
|
}
|
|
4182
|
-
throw new
|
|
4281
|
+
throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4183
4282
|
}
|
|
4184
4283
|
/**
|
|
4185
4284
|
* Deletes an existing schema
|
|
@@ -4206,7 +4305,7 @@ var BackendSchemaTag = class extends import_sdkgen_client63.TagAbstract {
|
|
|
4206
4305
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4207
4306
|
throw new CommonMessageException(await response.json());
|
|
4208
4307
|
}
|
|
4209
|
-
throw new
|
|
4308
|
+
throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4210
4309
|
}
|
|
4211
4310
|
/**
|
|
4212
4311
|
* Returns a specific schema
|
|
@@ -4233,7 +4332,7 @@ var BackendSchemaTag = class extends import_sdkgen_client63.TagAbstract {
|
|
|
4233
4332
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4234
4333
|
throw new CommonMessageException(await response.json());
|
|
4235
4334
|
}
|
|
4236
|
-
throw new
|
|
4335
|
+
throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4237
4336
|
}
|
|
4238
4337
|
/**
|
|
4239
4338
|
* Returns a paginated list of schemas
|
|
@@ -4262,7 +4361,7 @@ var BackendSchemaTag = class extends import_sdkgen_client63.TagAbstract {
|
|
|
4262
4361
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4263
4362
|
throw new CommonMessageException(await response.json());
|
|
4264
4363
|
}
|
|
4265
|
-
throw new
|
|
4364
|
+
throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4266
4365
|
}
|
|
4267
4366
|
/**
|
|
4268
4367
|
* Returns a HTML preview of the provided schema
|
|
@@ -4289,7 +4388,7 @@ var BackendSchemaTag = class extends import_sdkgen_client63.TagAbstract {
|
|
|
4289
4388
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4290
4389
|
throw new CommonMessageException(await response.json());
|
|
4291
4390
|
}
|
|
4292
|
-
throw new
|
|
4391
|
+
throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4293
4392
|
}
|
|
4294
4393
|
/**
|
|
4295
4394
|
* Updates an existing schema
|
|
@@ -4319,14 +4418,14 @@ var BackendSchemaTag = class extends import_sdkgen_client63.TagAbstract {
|
|
|
4319
4418
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4320
4419
|
throw new CommonMessageException(await response.json());
|
|
4321
4420
|
}
|
|
4322
|
-
throw new
|
|
4421
|
+
throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4323
4422
|
}
|
|
4324
4423
|
};
|
|
4325
4424
|
|
|
4326
4425
|
// src/BackendScopeTag.ts
|
|
4327
|
-
var
|
|
4328
|
-
var
|
|
4329
|
-
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 {
|
|
4330
4429
|
/**
|
|
4331
4430
|
* Creates a new scope
|
|
4332
4431
|
*
|
|
@@ -4353,7 +4452,7 @@ var BackendScopeTag = class extends import_sdkgen_client65.TagAbstract {
|
|
|
4353
4452
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4354
4453
|
throw new CommonMessageException(await response.json());
|
|
4355
4454
|
}
|
|
4356
|
-
throw new
|
|
4455
|
+
throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4357
4456
|
}
|
|
4358
4457
|
/**
|
|
4359
4458
|
* Deletes an existing scope
|
|
@@ -4380,7 +4479,7 @@ var BackendScopeTag = class extends import_sdkgen_client65.TagAbstract {
|
|
|
4380
4479
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4381
4480
|
throw new CommonMessageException(await response.json());
|
|
4382
4481
|
}
|
|
4383
|
-
throw new
|
|
4482
|
+
throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4384
4483
|
}
|
|
4385
4484
|
/**
|
|
4386
4485
|
* Returns a specific scope
|
|
@@ -4407,7 +4506,7 @@ var BackendScopeTag = class extends import_sdkgen_client65.TagAbstract {
|
|
|
4407
4506
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4408
4507
|
throw new CommonMessageException(await response.json());
|
|
4409
4508
|
}
|
|
4410
|
-
throw new
|
|
4509
|
+
throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4411
4510
|
}
|
|
4412
4511
|
/**
|
|
4413
4512
|
* Returns a paginated list of scopes
|
|
@@ -4436,7 +4535,7 @@ var BackendScopeTag = class extends import_sdkgen_client65.TagAbstract {
|
|
|
4436
4535
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4437
4536
|
throw new CommonMessageException(await response.json());
|
|
4438
4537
|
}
|
|
4439
|
-
throw new
|
|
4538
|
+
throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4440
4539
|
}
|
|
4441
4540
|
/**
|
|
4442
4541
|
* Returns all available scopes grouped by category
|
|
@@ -4461,7 +4560,7 @@ var BackendScopeTag = class extends import_sdkgen_client65.TagAbstract {
|
|
|
4461
4560
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4462
4561
|
throw new CommonMessageException(await response.json());
|
|
4463
4562
|
}
|
|
4464
|
-
throw new
|
|
4563
|
+
throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4465
4564
|
}
|
|
4466
4565
|
/**
|
|
4467
4566
|
* Updates an existing scope
|
|
@@ -4491,14 +4590,14 @@ var BackendScopeTag = class extends import_sdkgen_client65.TagAbstract {
|
|
|
4491
4590
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4492
4591
|
throw new CommonMessageException(await response.json());
|
|
4493
4592
|
}
|
|
4494
|
-
throw new
|
|
4593
|
+
throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4495
4594
|
}
|
|
4496
4595
|
};
|
|
4497
4596
|
|
|
4498
4597
|
// src/BackendSdkTag.ts
|
|
4499
|
-
var
|
|
4500
|
-
var
|
|
4501
|
-
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 {
|
|
4502
4601
|
/**
|
|
4503
4602
|
* Generates a specific SDK
|
|
4504
4603
|
*
|
|
@@ -4525,7 +4624,7 @@ var BackendSdkTag = class extends import_sdkgen_client67.TagAbstract {
|
|
|
4525
4624
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4526
4625
|
throw new CommonMessageException(await response.json());
|
|
4527
4626
|
}
|
|
4528
|
-
throw new
|
|
4627
|
+
throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4529
4628
|
}
|
|
4530
4629
|
/**
|
|
4531
4630
|
* Returns a paginated list of SDKs
|
|
@@ -4550,14 +4649,14 @@ var BackendSdkTag = class extends import_sdkgen_client67.TagAbstract {
|
|
|
4550
4649
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4551
4650
|
throw new CommonMessageException(await response.json());
|
|
4552
4651
|
}
|
|
4553
|
-
throw new
|
|
4652
|
+
throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4554
4653
|
}
|
|
4555
4654
|
};
|
|
4556
4655
|
|
|
4557
4656
|
// src/BackendStatisticTag.ts
|
|
4558
|
-
var
|
|
4559
|
-
var
|
|
4560
|
-
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 {
|
|
4561
4660
|
/**
|
|
4562
4661
|
* Returns a statistic containing the activities per user
|
|
4563
4662
|
*
|
|
@@ -4596,7 +4695,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4596
4695
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4597
4696
|
throw new CommonMessageException(await response.json());
|
|
4598
4697
|
}
|
|
4599
|
-
throw new
|
|
4698
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4600
4699
|
}
|
|
4601
4700
|
/**
|
|
4602
4701
|
* Returns a statistic containing the request count
|
|
@@ -4636,7 +4735,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4636
4735
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4637
4736
|
throw new CommonMessageException(await response.json());
|
|
4638
4737
|
}
|
|
4639
|
-
throw new
|
|
4738
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4640
4739
|
}
|
|
4641
4740
|
/**
|
|
4642
4741
|
* Returns a statistic containing the errors per operation
|
|
@@ -4676,7 +4775,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4676
4775
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4677
4776
|
throw new CommonMessageException(await response.json());
|
|
4678
4777
|
}
|
|
4679
|
-
throw new
|
|
4778
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4680
4779
|
}
|
|
4681
4780
|
/**
|
|
4682
4781
|
* Returns a statistic containing the incoming requests
|
|
@@ -4716,7 +4815,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4716
4815
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4717
4816
|
throw new CommonMessageException(await response.json());
|
|
4718
4817
|
}
|
|
4719
|
-
throw new
|
|
4818
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4720
4819
|
}
|
|
4721
4820
|
/**
|
|
4722
4821
|
* Returns a statistic containing the incoming transactions
|
|
@@ -4756,7 +4855,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4756
4855
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4757
4856
|
throw new CommonMessageException(await response.json());
|
|
4758
4857
|
}
|
|
4759
|
-
throw new
|
|
4858
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4760
4859
|
}
|
|
4761
4860
|
/**
|
|
4762
4861
|
* Returns a statistic containing the issues tokens
|
|
@@ -4796,7 +4895,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4796
4895
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4797
4896
|
throw new CommonMessageException(await response.json());
|
|
4798
4897
|
}
|
|
4799
|
-
throw new
|
|
4898
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4800
4899
|
}
|
|
4801
4900
|
/**
|
|
4802
4901
|
* Returns a statistic containing the most used activities
|
|
@@ -4836,7 +4935,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4836
4935
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4837
4936
|
throw new CommonMessageException(await response.json());
|
|
4838
4937
|
}
|
|
4839
|
-
throw new
|
|
4938
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4840
4939
|
}
|
|
4841
4940
|
/**
|
|
4842
4941
|
* Returns a statistic containing the most used apps
|
|
@@ -4876,7 +4975,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4876
4975
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4877
4976
|
throw new CommonMessageException(await response.json());
|
|
4878
4977
|
}
|
|
4879
|
-
throw new
|
|
4978
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4880
4979
|
}
|
|
4881
4980
|
/**
|
|
4882
4981
|
* Returns a statistic containing the most used operations
|
|
@@ -4916,7 +5015,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4916
5015
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4917
5016
|
throw new CommonMessageException(await response.json());
|
|
4918
5017
|
}
|
|
4919
|
-
throw new
|
|
5018
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4920
5019
|
}
|
|
4921
5020
|
/**
|
|
4922
5021
|
* Returns a statistic containing the requests per ip
|
|
@@ -4956,7 +5055,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4956
5055
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4957
5056
|
throw new CommonMessageException(await response.json());
|
|
4958
5057
|
}
|
|
4959
|
-
throw new
|
|
5058
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4960
5059
|
}
|
|
4961
5060
|
/**
|
|
4962
5061
|
* Returns a statistic containing the requests per operation
|
|
@@ -4996,7 +5095,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4996
5095
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4997
5096
|
throw new CommonMessageException(await response.json());
|
|
4998
5097
|
}
|
|
4999
|
-
throw new
|
|
5098
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5000
5099
|
}
|
|
5001
5100
|
/**
|
|
5002
5101
|
* Returns a statistic containing the requests per user
|
|
@@ -5036,7 +5135,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
5036
5135
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5037
5136
|
throw new CommonMessageException(await response.json());
|
|
5038
5137
|
}
|
|
5039
|
-
throw new
|
|
5138
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5040
5139
|
}
|
|
5041
5140
|
/**
|
|
5042
5141
|
* Returns a statistic containing the test coverage
|
|
@@ -5061,7 +5160,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
5061
5160
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5062
5161
|
throw new CommonMessageException(await response.json());
|
|
5063
5162
|
}
|
|
5064
|
-
throw new
|
|
5163
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5065
5164
|
}
|
|
5066
5165
|
/**
|
|
5067
5166
|
* Returns a statistic containing the time average
|
|
@@ -5101,7 +5200,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
5101
5200
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5102
5201
|
throw new CommonMessageException(await response.json());
|
|
5103
5202
|
}
|
|
5104
|
-
throw new
|
|
5203
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5105
5204
|
}
|
|
5106
5205
|
/**
|
|
5107
5206
|
* Returns a statistic containing the time per operation
|
|
@@ -5141,7 +5240,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
5141
5240
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5142
5241
|
throw new CommonMessageException(await response.json());
|
|
5143
5242
|
}
|
|
5144
|
-
throw new
|
|
5243
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5145
5244
|
}
|
|
5146
5245
|
/**
|
|
5147
5246
|
* Returns a statistic containing the used points
|
|
@@ -5181,7 +5280,7 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
5181
5280
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5182
5281
|
throw new CommonMessageException(await response.json());
|
|
5183
5282
|
}
|
|
5184
|
-
throw new
|
|
5283
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5185
5284
|
}
|
|
5186
5285
|
/**
|
|
5187
5286
|
* Returns a statistic containing the user registrations
|
|
@@ -5221,17 +5320,17 @@ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
5221
5320
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5222
5321
|
throw new CommonMessageException(await response.json());
|
|
5223
5322
|
}
|
|
5224
|
-
throw new
|
|
5323
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5225
5324
|
}
|
|
5226
5325
|
};
|
|
5227
5326
|
|
|
5228
5327
|
// src/BackendTag.ts
|
|
5229
|
-
var
|
|
5328
|
+
var import_sdkgen_client89 = require("sdkgen-client");
|
|
5230
5329
|
|
|
5231
5330
|
// src/BackendTenantTag.ts
|
|
5232
|
-
var
|
|
5233
|
-
var
|
|
5234
|
-
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 {
|
|
5235
5334
|
/**
|
|
5236
5335
|
* Removes an existing tenant
|
|
5237
5336
|
*
|
|
@@ -5257,7 +5356,7 @@ var BackendTenantTag = class extends import_sdkgen_client71.TagAbstract {
|
|
|
5257
5356
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5258
5357
|
throw new CommonMessageException(await response.json());
|
|
5259
5358
|
}
|
|
5260
|
-
throw new
|
|
5359
|
+
throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5261
5360
|
}
|
|
5262
5361
|
/**
|
|
5263
5362
|
* Setup a new tenant
|
|
@@ -5284,14 +5383,14 @@ var BackendTenantTag = class extends import_sdkgen_client71.TagAbstract {
|
|
|
5284
5383
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5285
5384
|
throw new CommonMessageException(await response.json());
|
|
5286
5385
|
}
|
|
5287
|
-
throw new
|
|
5386
|
+
throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5288
5387
|
}
|
|
5289
5388
|
};
|
|
5290
5389
|
|
|
5291
5390
|
// src/BackendTestTag.ts
|
|
5292
|
-
var
|
|
5293
|
-
var
|
|
5294
|
-
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 {
|
|
5295
5394
|
/**
|
|
5296
5395
|
* Returns a specific test
|
|
5297
5396
|
*
|
|
@@ -5317,7 +5416,7 @@ var BackendTestTag = class extends import_sdkgen_client73.TagAbstract {
|
|
|
5317
5416
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5318
5417
|
throw new CommonMessageException(await response.json());
|
|
5319
5418
|
}
|
|
5320
|
-
throw new
|
|
5419
|
+
throw new import_sdkgen_client76.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5321
5420
|
}
|
|
5322
5421
|
/**
|
|
5323
5422
|
* Returns a paginated list of tests
|
|
@@ -5346,7 +5445,7 @@ var BackendTestTag = class extends import_sdkgen_client73.TagAbstract {
|
|
|
5346
5445
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5347
5446
|
throw new CommonMessageException(await response.json());
|
|
5348
5447
|
}
|
|
5349
|
-
throw new
|
|
5448
|
+
throw new import_sdkgen_client76.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5350
5449
|
}
|
|
5351
5450
|
/**
|
|
5352
5451
|
* Refresh all tests
|
|
@@ -5371,7 +5470,7 @@ var BackendTestTag = class extends import_sdkgen_client73.TagAbstract {
|
|
|
5371
5470
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5372
5471
|
throw new CommonMessageException(await response.json());
|
|
5373
5472
|
}
|
|
5374
|
-
throw new
|
|
5473
|
+
throw new import_sdkgen_client76.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5375
5474
|
}
|
|
5376
5475
|
/**
|
|
5377
5476
|
* Run all tests
|
|
@@ -5396,7 +5495,7 @@ var BackendTestTag = class extends import_sdkgen_client73.TagAbstract {
|
|
|
5396
5495
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5397
5496
|
throw new CommonMessageException(await response.json());
|
|
5398
5497
|
}
|
|
5399
|
-
throw new
|
|
5498
|
+
throw new import_sdkgen_client76.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5400
5499
|
}
|
|
5401
5500
|
/**
|
|
5402
5501
|
* Updates an existing test
|
|
@@ -5426,14 +5525,14 @@ var BackendTestTag = class extends import_sdkgen_client73.TagAbstract {
|
|
|
5426
5525
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5427
5526
|
throw new CommonMessageException(await response.json());
|
|
5428
5527
|
}
|
|
5429
|
-
throw new
|
|
5528
|
+
throw new import_sdkgen_client76.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5430
5529
|
}
|
|
5431
5530
|
};
|
|
5432
5531
|
|
|
5433
5532
|
// src/BackendTokenTag.ts
|
|
5434
|
-
var
|
|
5435
|
-
var
|
|
5436
|
-
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 {
|
|
5437
5536
|
/**
|
|
5438
5537
|
* Returns a specific token
|
|
5439
5538
|
*
|
|
@@ -5459,7 +5558,7 @@ var BackendTokenTag = class extends import_sdkgen_client75.TagAbstract {
|
|
|
5459
5558
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5460
5559
|
throw new CommonMessageException(await response.json());
|
|
5461
5560
|
}
|
|
5462
|
-
throw new
|
|
5561
|
+
throw new import_sdkgen_client78.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5463
5562
|
}
|
|
5464
5563
|
/**
|
|
5465
5564
|
* Returns a paginated list of tokens
|
|
@@ -5495,14 +5594,14 @@ var BackendTokenTag = class extends import_sdkgen_client75.TagAbstract {
|
|
|
5495
5594
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5496
5595
|
throw new CommonMessageException(await response.json());
|
|
5497
5596
|
}
|
|
5498
|
-
throw new
|
|
5597
|
+
throw new import_sdkgen_client78.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5499
5598
|
}
|
|
5500
5599
|
};
|
|
5501
5600
|
|
|
5502
5601
|
// src/BackendTransactionTag.ts
|
|
5503
|
-
var
|
|
5504
|
-
var
|
|
5505
|
-
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 {
|
|
5506
5605
|
/**
|
|
5507
5606
|
* Returns a specific transaction
|
|
5508
5607
|
*
|
|
@@ -5528,7 +5627,7 @@ var BackendTransactionTag = class extends import_sdkgen_client77.TagAbstract {
|
|
|
5528
5627
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5529
5628
|
throw new CommonMessageException(await response.json());
|
|
5530
5629
|
}
|
|
5531
|
-
throw new
|
|
5630
|
+
throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5532
5631
|
}
|
|
5533
5632
|
/**
|
|
5534
5633
|
* Returns a paginated list of transactions
|
|
@@ -5564,14 +5663,14 @@ var BackendTransactionTag = class extends import_sdkgen_client77.TagAbstract {
|
|
|
5564
5663
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5565
5664
|
throw new CommonMessageException(await response.json());
|
|
5566
5665
|
}
|
|
5567
|
-
throw new
|
|
5666
|
+
throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5568
5667
|
}
|
|
5569
5668
|
};
|
|
5570
5669
|
|
|
5571
5670
|
// src/BackendTrashTag.ts
|
|
5572
|
-
var
|
|
5573
|
-
var
|
|
5574
|
-
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 {
|
|
5575
5674
|
/**
|
|
5576
5675
|
* Returns all deleted records by trash type
|
|
5577
5676
|
*
|
|
@@ -5601,7 +5700,7 @@ var BackendTrashTag = class extends import_sdkgen_client79.TagAbstract {
|
|
|
5601
5700
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5602
5701
|
throw new CommonMessageException(await response.json());
|
|
5603
5702
|
}
|
|
5604
|
-
throw new
|
|
5703
|
+
throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5605
5704
|
}
|
|
5606
5705
|
/**
|
|
5607
5706
|
* Returns all trash types
|
|
@@ -5626,7 +5725,7 @@ var BackendTrashTag = class extends import_sdkgen_client79.TagAbstract {
|
|
|
5626
5725
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5627
5726
|
throw new CommonMessageException(await response.json());
|
|
5628
5727
|
}
|
|
5629
|
-
throw new
|
|
5728
|
+
throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5630
5729
|
}
|
|
5631
5730
|
/**
|
|
5632
5731
|
* Restores a previously deleted record
|
|
@@ -5656,14 +5755,14 @@ var BackendTrashTag = class extends import_sdkgen_client79.TagAbstract {
|
|
|
5656
5755
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5657
5756
|
throw new CommonMessageException(await response.json());
|
|
5658
5757
|
}
|
|
5659
|
-
throw new
|
|
5758
|
+
throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5660
5759
|
}
|
|
5661
5760
|
};
|
|
5662
5761
|
|
|
5663
5762
|
// src/BackendTriggerTag.ts
|
|
5664
|
-
var
|
|
5665
|
-
var
|
|
5666
|
-
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 {
|
|
5667
5766
|
/**
|
|
5668
5767
|
* Creates a new trigger
|
|
5669
5768
|
*
|
|
@@ -5690,7 +5789,7 @@ var BackendTriggerTag = class extends import_sdkgen_client81.TagAbstract {
|
|
|
5690
5789
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5691
5790
|
throw new CommonMessageException(await response.json());
|
|
5692
5791
|
}
|
|
5693
|
-
throw new
|
|
5792
|
+
throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5694
5793
|
}
|
|
5695
5794
|
/**
|
|
5696
5795
|
* Deletes an existing trigger
|
|
@@ -5717,7 +5816,7 @@ var BackendTriggerTag = class extends import_sdkgen_client81.TagAbstract {
|
|
|
5717
5816
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5718
5817
|
throw new CommonMessageException(await response.json());
|
|
5719
5818
|
}
|
|
5720
|
-
throw new
|
|
5819
|
+
throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5721
5820
|
}
|
|
5722
5821
|
/**
|
|
5723
5822
|
* Returns a specific trigger
|
|
@@ -5744,7 +5843,7 @@ var BackendTriggerTag = class extends import_sdkgen_client81.TagAbstract {
|
|
|
5744
5843
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5745
5844
|
throw new CommonMessageException(await response.json());
|
|
5746
5845
|
}
|
|
5747
|
-
throw new
|
|
5846
|
+
throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5748
5847
|
}
|
|
5749
5848
|
/**
|
|
5750
5849
|
* Returns a paginated list of triggers
|
|
@@ -5773,7 +5872,7 @@ var BackendTriggerTag = class extends import_sdkgen_client81.TagAbstract {
|
|
|
5773
5872
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5774
5873
|
throw new CommonMessageException(await response.json());
|
|
5775
5874
|
}
|
|
5776
|
-
throw new
|
|
5875
|
+
throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5777
5876
|
}
|
|
5778
5877
|
/**
|
|
5779
5878
|
* Updates an existing trigger
|
|
@@ -5803,14 +5902,14 @@ var BackendTriggerTag = class extends import_sdkgen_client81.TagAbstract {
|
|
|
5803
5902
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5804
5903
|
throw new CommonMessageException(await response.json());
|
|
5805
5904
|
}
|
|
5806
|
-
throw new
|
|
5905
|
+
throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5807
5906
|
}
|
|
5808
5907
|
};
|
|
5809
5908
|
|
|
5810
5909
|
// src/BackendUserTag.ts
|
|
5811
|
-
var
|
|
5812
|
-
var
|
|
5813
|
-
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 {
|
|
5814
5913
|
/**
|
|
5815
5914
|
* Creates a new user
|
|
5816
5915
|
*
|
|
@@ -5837,7 +5936,7 @@ var BackendUserTag = class extends import_sdkgen_client83.TagAbstract {
|
|
|
5837
5936
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5838
5937
|
throw new CommonMessageException(await response.json());
|
|
5839
5938
|
}
|
|
5840
|
-
throw new
|
|
5939
|
+
throw new import_sdkgen_client86.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5841
5940
|
}
|
|
5842
5941
|
/**
|
|
5843
5942
|
* Deletes an existing user
|
|
@@ -5864,7 +5963,7 @@ var BackendUserTag = class extends import_sdkgen_client83.TagAbstract {
|
|
|
5864
5963
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5865
5964
|
throw new CommonMessageException(await response.json());
|
|
5866
5965
|
}
|
|
5867
|
-
throw new
|
|
5966
|
+
throw new import_sdkgen_client86.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5868
5967
|
}
|
|
5869
5968
|
/**
|
|
5870
5969
|
* Returns a specific user
|
|
@@ -5891,7 +5990,7 @@ var BackendUserTag = class extends import_sdkgen_client83.TagAbstract {
|
|
|
5891
5990
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5892
5991
|
throw new CommonMessageException(await response.json());
|
|
5893
5992
|
}
|
|
5894
|
-
throw new
|
|
5993
|
+
throw new import_sdkgen_client86.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5895
5994
|
}
|
|
5896
5995
|
/**
|
|
5897
5996
|
* Returns a paginated list of users
|
|
@@ -5920,7 +6019,7 @@ var BackendUserTag = class extends import_sdkgen_client83.TagAbstract {
|
|
|
5920
6019
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5921
6020
|
throw new CommonMessageException(await response.json());
|
|
5922
6021
|
}
|
|
5923
|
-
throw new
|
|
6022
|
+
throw new import_sdkgen_client86.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5924
6023
|
}
|
|
5925
6024
|
/**
|
|
5926
6025
|
* Resend the activation mail to the provided user
|
|
@@ -5950,7 +6049,7 @@ var BackendUserTag = class extends import_sdkgen_client83.TagAbstract {
|
|
|
5950
6049
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5951
6050
|
throw new CommonMessageException(await response.json());
|
|
5952
6051
|
}
|
|
5953
|
-
throw new
|
|
6052
|
+
throw new import_sdkgen_client86.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5954
6053
|
}
|
|
5955
6054
|
/**
|
|
5956
6055
|
* Updates an existing user
|
|
@@ -5980,14 +6079,14 @@ var BackendUserTag = class extends import_sdkgen_client83.TagAbstract {
|
|
|
5980
6079
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5981
6080
|
throw new CommonMessageException(await response.json());
|
|
5982
6081
|
}
|
|
5983
|
-
throw new
|
|
6082
|
+
throw new import_sdkgen_client86.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5984
6083
|
}
|
|
5985
6084
|
};
|
|
5986
6085
|
|
|
5987
6086
|
// src/BackendWebhookTag.ts
|
|
5988
|
-
var
|
|
5989
|
-
var
|
|
5990
|
-
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 {
|
|
5991
6090
|
/**
|
|
5992
6091
|
* Creates a new webhook
|
|
5993
6092
|
*
|
|
@@ -6014,7 +6113,7 @@ var BackendWebhookTag = class extends import_sdkgen_client85.TagAbstract {
|
|
|
6014
6113
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6015
6114
|
throw new CommonMessageException(await response.json());
|
|
6016
6115
|
}
|
|
6017
|
-
throw new
|
|
6116
|
+
throw new import_sdkgen_client88.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6018
6117
|
}
|
|
6019
6118
|
/**
|
|
6020
6119
|
* Deletes an existing webhook
|
|
@@ -6041,7 +6140,7 @@ var BackendWebhookTag = class extends import_sdkgen_client85.TagAbstract {
|
|
|
6041
6140
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6042
6141
|
throw new CommonMessageException(await response.json());
|
|
6043
6142
|
}
|
|
6044
|
-
throw new
|
|
6143
|
+
throw new import_sdkgen_client88.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6045
6144
|
}
|
|
6046
6145
|
/**
|
|
6047
6146
|
* Returns a specific webhook
|
|
@@ -6068,7 +6167,7 @@ var BackendWebhookTag = class extends import_sdkgen_client85.TagAbstract {
|
|
|
6068
6167
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6069
6168
|
throw new CommonMessageException(await response.json());
|
|
6070
6169
|
}
|
|
6071
|
-
throw new
|
|
6170
|
+
throw new import_sdkgen_client88.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6072
6171
|
}
|
|
6073
6172
|
/**
|
|
6074
6173
|
* Returns a paginated list of webhooks
|
|
@@ -6097,7 +6196,7 @@ var BackendWebhookTag = class extends import_sdkgen_client85.TagAbstract {
|
|
|
6097
6196
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6098
6197
|
throw new CommonMessageException(await response.json());
|
|
6099
6198
|
}
|
|
6100
|
-
throw new
|
|
6199
|
+
throw new import_sdkgen_client88.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6101
6200
|
}
|
|
6102
6201
|
/**
|
|
6103
6202
|
* Updates an existing webhook
|
|
@@ -6127,12 +6226,12 @@ var BackendWebhookTag = class extends import_sdkgen_client85.TagAbstract {
|
|
|
6127
6226
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6128
6227
|
throw new CommonMessageException(await response.json());
|
|
6129
6228
|
}
|
|
6130
|
-
throw new
|
|
6229
|
+
throw new import_sdkgen_client88.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6131
6230
|
}
|
|
6132
6231
|
};
|
|
6133
6232
|
|
|
6134
6233
|
// src/BackendTag.ts
|
|
6135
|
-
var BackendTag = class extends
|
|
6234
|
+
var BackendTag = class extends import_sdkgen_client89.TagAbstract {
|
|
6136
6235
|
account() {
|
|
6137
6236
|
return new BackendAccountTag(
|
|
6138
6237
|
this.httpClient,
|
|
@@ -6346,16 +6445,16 @@ var BackendTag = class extends import_sdkgen_client87.TagAbstract {
|
|
|
6346
6445
|
};
|
|
6347
6446
|
|
|
6348
6447
|
// src/Client.ts
|
|
6349
|
-
var
|
|
6350
|
-
var
|
|
6448
|
+
var import_sdkgen_client126 = require("sdkgen-client");
|
|
6449
|
+
var import_sdkgen_client127 = require("sdkgen-client");
|
|
6351
6450
|
|
|
6352
6451
|
// src/ConsumerTag.ts
|
|
6353
|
-
var
|
|
6452
|
+
var import_sdkgen_client118 = require("sdkgen-client");
|
|
6354
6453
|
|
|
6355
6454
|
// src/ConsumerAccountTag.ts
|
|
6356
|
-
var
|
|
6357
|
-
var
|
|
6358
|
-
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 {
|
|
6359
6458
|
/**
|
|
6360
6459
|
* Activates an previously registered account through a token which was provided to the user via email
|
|
6361
6460
|
*
|
|
@@ -6382,7 +6481,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client88.TagAbstract {
|
|
|
6382
6481
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6383
6482
|
throw new CommonMessageException(await response.json());
|
|
6384
6483
|
}
|
|
6385
|
-
throw new
|
|
6484
|
+
throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6386
6485
|
}
|
|
6387
6486
|
/**
|
|
6388
6487
|
* Authorizes the access of a specific app for the authenticated user
|
|
@@ -6410,7 +6509,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client88.TagAbstract {
|
|
|
6410
6509
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6411
6510
|
throw new CommonMessageException(await response.json());
|
|
6412
6511
|
}
|
|
6413
|
-
throw new
|
|
6512
|
+
throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6414
6513
|
}
|
|
6415
6514
|
/**
|
|
6416
6515
|
* Change the password for the authenticated user
|
|
@@ -6438,7 +6537,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client88.TagAbstract {
|
|
|
6438
6537
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6439
6538
|
throw new CommonMessageException(await response.json());
|
|
6440
6539
|
}
|
|
6441
|
-
throw new
|
|
6540
|
+
throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6442
6541
|
}
|
|
6443
6542
|
/**
|
|
6444
6543
|
* Change the password after the password reset flow was started
|
|
@@ -6466,7 +6565,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client88.TagAbstract {
|
|
|
6466
6565
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6467
6566
|
throw new CommonMessageException(await response.json());
|
|
6468
6567
|
}
|
|
6469
|
-
throw new
|
|
6568
|
+
throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6470
6569
|
}
|
|
6471
6570
|
/**
|
|
6472
6571
|
* Returns a user data for the authenticated user
|
|
@@ -6491,7 +6590,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client88.TagAbstract {
|
|
|
6491
6590
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6492
6591
|
throw new CommonMessageException(await response.json());
|
|
6493
6592
|
}
|
|
6494
|
-
throw new
|
|
6593
|
+
throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6495
6594
|
}
|
|
6496
6595
|
/**
|
|
6497
6596
|
* Returns information about a specific app to start the OAuth2 authorization code flow
|
|
@@ -6519,7 +6618,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client88.TagAbstract {
|
|
|
6519
6618
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6520
6619
|
throw new CommonMessageException(await response.json());
|
|
6521
6620
|
}
|
|
6522
|
-
throw new
|
|
6621
|
+
throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6523
6622
|
}
|
|
6524
6623
|
/**
|
|
6525
6624
|
* User login by providing a username and password
|
|
@@ -6547,7 +6646,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client88.TagAbstract {
|
|
|
6547
6646
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6548
6647
|
throw new CommonMessageException(await response.json());
|
|
6549
6648
|
}
|
|
6550
|
-
throw new
|
|
6649
|
+
throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6551
6650
|
}
|
|
6552
6651
|
/**
|
|
6553
6652
|
* Refresh a previously obtained access token
|
|
@@ -6575,7 +6674,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client88.TagAbstract {
|
|
|
6575
6674
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6576
6675
|
throw new CommonMessageException(await response.json());
|
|
6577
6676
|
}
|
|
6578
|
-
throw new
|
|
6677
|
+
throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6579
6678
|
}
|
|
6580
6679
|
/**
|
|
6581
6680
|
* Register a new user account
|
|
@@ -6603,7 +6702,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client88.TagAbstract {
|
|
|
6603
6702
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6604
6703
|
throw new CommonMessageException(await response.json());
|
|
6605
6704
|
}
|
|
6606
|
-
throw new
|
|
6705
|
+
throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6607
6706
|
}
|
|
6608
6707
|
/**
|
|
6609
6708
|
* Start the password reset flow
|
|
@@ -6631,7 +6730,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client88.TagAbstract {
|
|
|
6631
6730
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6632
6731
|
throw new CommonMessageException(await response.json());
|
|
6633
6732
|
}
|
|
6634
|
-
throw new
|
|
6733
|
+
throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6635
6734
|
}
|
|
6636
6735
|
/**
|
|
6637
6736
|
* Updates user data for the authenticated user
|
|
@@ -6659,14 +6758,14 @@ var ConsumerAccountTag = class extends import_sdkgen_client88.TagAbstract {
|
|
|
6659
6758
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6660
6759
|
throw new CommonMessageException(await response.json());
|
|
6661
6760
|
}
|
|
6662
|
-
throw new
|
|
6761
|
+
throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6663
6762
|
}
|
|
6664
6763
|
};
|
|
6665
6764
|
|
|
6666
6765
|
// src/ConsumerAppTag.ts
|
|
6667
|
-
var
|
|
6668
|
-
var
|
|
6669
|
-
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 {
|
|
6670
6769
|
/**
|
|
6671
6770
|
* Creates a new app for the authenticated user
|
|
6672
6771
|
*
|
|
@@ -6693,7 +6792,7 @@ var ConsumerAppTag = class extends import_sdkgen_client90.TagAbstract {
|
|
|
6693
6792
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6694
6793
|
throw new CommonMessageException(await response.json());
|
|
6695
6794
|
}
|
|
6696
|
-
throw new
|
|
6795
|
+
throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6697
6796
|
}
|
|
6698
6797
|
/**
|
|
6699
6798
|
* Deletes an existing app for the authenticated user
|
|
@@ -6720,7 +6819,7 @@ var ConsumerAppTag = class extends import_sdkgen_client90.TagAbstract {
|
|
|
6720
6819
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6721
6820
|
throw new CommonMessageException(await response.json());
|
|
6722
6821
|
}
|
|
6723
|
-
throw new
|
|
6822
|
+
throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6724
6823
|
}
|
|
6725
6824
|
/**
|
|
6726
6825
|
* Returns a specific app for the authenticated user
|
|
@@ -6747,7 +6846,7 @@ var ConsumerAppTag = class extends import_sdkgen_client90.TagAbstract {
|
|
|
6747
6846
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6748
6847
|
throw new CommonMessageException(await response.json());
|
|
6749
6848
|
}
|
|
6750
|
-
throw new
|
|
6849
|
+
throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6751
6850
|
}
|
|
6752
6851
|
/**
|
|
6753
6852
|
* Returns a paginated list of apps which are assigned to the authenticated user
|
|
@@ -6776,7 +6875,7 @@ var ConsumerAppTag = class extends import_sdkgen_client90.TagAbstract {
|
|
|
6776
6875
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6777
6876
|
throw new CommonMessageException(await response.json());
|
|
6778
6877
|
}
|
|
6779
|
-
throw new
|
|
6878
|
+
throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6780
6879
|
}
|
|
6781
6880
|
/**
|
|
6782
6881
|
* Updates an existing app for the authenticated user
|
|
@@ -6806,14 +6905,14 @@ var ConsumerAppTag = class extends import_sdkgen_client90.TagAbstract {
|
|
|
6806
6905
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6807
6906
|
throw new CommonMessageException(await response.json());
|
|
6808
6907
|
}
|
|
6809
|
-
throw new
|
|
6908
|
+
throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6810
6909
|
}
|
|
6811
6910
|
};
|
|
6812
6911
|
|
|
6813
6912
|
// src/ConsumerEventTag.ts
|
|
6814
|
-
var
|
|
6815
|
-
var
|
|
6816
|
-
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 {
|
|
6817
6916
|
/**
|
|
6818
6917
|
* Returns a specific event for the authenticated user
|
|
6819
6918
|
*
|
|
@@ -6839,7 +6938,7 @@ var ConsumerEventTag = class extends import_sdkgen_client92.TagAbstract {
|
|
|
6839
6938
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6840
6939
|
throw new CommonMessageException(await response.json());
|
|
6841
6940
|
}
|
|
6842
|
-
throw new
|
|
6941
|
+
throw new import_sdkgen_client95.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6843
6942
|
}
|
|
6844
6943
|
/**
|
|
6845
6944
|
* Returns a paginated list of apps which are assigned to the authenticated user
|
|
@@ -6868,14 +6967,14 @@ var ConsumerEventTag = class extends import_sdkgen_client92.TagAbstract {
|
|
|
6868
6967
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6869
6968
|
throw new CommonMessageException(await response.json());
|
|
6870
6969
|
}
|
|
6871
|
-
throw new
|
|
6970
|
+
throw new import_sdkgen_client95.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6872
6971
|
}
|
|
6873
6972
|
};
|
|
6874
6973
|
|
|
6875
6974
|
// src/ConsumerFormTag.ts
|
|
6876
|
-
var
|
|
6877
|
-
var
|
|
6878
|
-
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 {
|
|
6879
6978
|
/**
|
|
6880
6979
|
* Returns a specific form for the authenticated user
|
|
6881
6980
|
*
|
|
@@ -6901,7 +7000,7 @@ var ConsumerFormTag = class extends import_sdkgen_client94.TagAbstract {
|
|
|
6901
7000
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6902
7001
|
throw new CommonMessageException(await response.json());
|
|
6903
7002
|
}
|
|
6904
|
-
throw new
|
|
7003
|
+
throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6905
7004
|
}
|
|
6906
7005
|
/**
|
|
6907
7006
|
* Returns a paginated list of forms which are relevant to the authenticated user
|
|
@@ -6930,14 +7029,14 @@ var ConsumerFormTag = class extends import_sdkgen_client94.TagAbstract {
|
|
|
6930
7029
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6931
7030
|
throw new CommonMessageException(await response.json());
|
|
6932
7031
|
}
|
|
6933
|
-
throw new
|
|
7032
|
+
throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6934
7033
|
}
|
|
6935
7034
|
};
|
|
6936
7035
|
|
|
6937
7036
|
// src/ConsumerGrantTag.ts
|
|
6938
|
-
var
|
|
6939
|
-
var
|
|
6940
|
-
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 {
|
|
6941
7040
|
/**
|
|
6942
7041
|
* Deletes an existing grant for an app which was created by the authenticated user
|
|
6943
7042
|
*
|
|
@@ -6963,7 +7062,7 @@ var ConsumerGrantTag = class extends import_sdkgen_client96.TagAbstract {
|
|
|
6963
7062
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6964
7063
|
throw new CommonMessageException(await response.json());
|
|
6965
7064
|
}
|
|
6966
|
-
throw new
|
|
7065
|
+
throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6967
7066
|
}
|
|
6968
7067
|
/**
|
|
6969
7068
|
* Returns a paginated list of grants which are assigned to the authenticated user
|
|
@@ -6992,14 +7091,14 @@ var ConsumerGrantTag = class extends import_sdkgen_client96.TagAbstract {
|
|
|
6992
7091
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6993
7092
|
throw new CommonMessageException(await response.json());
|
|
6994
7093
|
}
|
|
6995
|
-
throw new
|
|
7094
|
+
throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6996
7095
|
}
|
|
6997
7096
|
};
|
|
6998
7097
|
|
|
6999
7098
|
// src/ConsumerIdentityTag.ts
|
|
7000
|
-
var
|
|
7001
|
-
var
|
|
7002
|
-
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 {
|
|
7003
7102
|
/**
|
|
7004
7103
|
* Identity callback endpoint to exchange an access token
|
|
7005
7104
|
*
|
|
@@ -7025,7 +7124,7 @@ var ConsumerIdentityTag = class extends import_sdkgen_client98.TagAbstract {
|
|
|
7025
7124
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7026
7125
|
throw new CommonMessageException(await response.json());
|
|
7027
7126
|
}
|
|
7028
|
-
throw new
|
|
7127
|
+
throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7029
7128
|
}
|
|
7030
7129
|
/**
|
|
7031
7130
|
* Returns a paginated list of identities which are relevant to the authenticated user
|
|
@@ -7053,7 +7152,7 @@ var ConsumerIdentityTag = class extends import_sdkgen_client98.TagAbstract {
|
|
|
7053
7152
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7054
7153
|
throw new CommonMessageException(await response.json());
|
|
7055
7154
|
}
|
|
7056
|
-
throw new
|
|
7155
|
+
throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7057
7156
|
}
|
|
7058
7157
|
/**
|
|
7059
7158
|
* Redirect the user to the configured identity provider
|
|
@@ -7080,14 +7179,14 @@ var ConsumerIdentityTag = class extends import_sdkgen_client98.TagAbstract {
|
|
|
7080
7179
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7081
7180
|
throw new CommonMessageException(await response.json());
|
|
7082
7181
|
}
|
|
7083
|
-
throw new
|
|
7182
|
+
throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7084
7183
|
}
|
|
7085
7184
|
};
|
|
7086
7185
|
|
|
7087
7186
|
// src/ConsumerLogTag.ts
|
|
7088
|
-
var
|
|
7089
|
-
var
|
|
7090
|
-
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 {
|
|
7091
7190
|
/**
|
|
7092
7191
|
* Returns a specific log for the authenticated user
|
|
7093
7192
|
*
|
|
@@ -7113,7 +7212,7 @@ var ConsumerLogTag = class extends import_sdkgen_client100.TagAbstract {
|
|
|
7113
7212
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7114
7213
|
throw new CommonMessageException(await response.json());
|
|
7115
7214
|
}
|
|
7116
|
-
throw new
|
|
7215
|
+
throw new import_sdkgen_client103.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7117
7216
|
}
|
|
7118
7217
|
/**
|
|
7119
7218
|
* Returns a paginated list of logs which are assigned to the authenticated user
|
|
@@ -7142,14 +7241,14 @@ var ConsumerLogTag = class extends import_sdkgen_client100.TagAbstract {
|
|
|
7142
7241
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7143
7242
|
throw new CommonMessageException(await response.json());
|
|
7144
7243
|
}
|
|
7145
|
-
throw new
|
|
7244
|
+
throw new import_sdkgen_client103.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7146
7245
|
}
|
|
7147
7246
|
};
|
|
7148
7247
|
|
|
7149
7248
|
// src/ConsumerPageTag.ts
|
|
7150
|
-
var
|
|
7151
|
-
var
|
|
7152
|
-
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 {
|
|
7153
7252
|
/**
|
|
7154
7253
|
* Returns a specific page for the authenticated user
|
|
7155
7254
|
*
|
|
@@ -7175,7 +7274,7 @@ var ConsumerPageTag = class extends import_sdkgen_client102.TagAbstract {
|
|
|
7175
7274
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7176
7275
|
throw new CommonMessageException(await response.json());
|
|
7177
7276
|
}
|
|
7178
|
-
throw new
|
|
7277
|
+
throw new import_sdkgen_client105.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7179
7278
|
}
|
|
7180
7279
|
/**
|
|
7181
7280
|
* Returns a paginated list of pages which are relevant to the authenticated user
|
|
@@ -7204,14 +7303,14 @@ var ConsumerPageTag = class extends import_sdkgen_client102.TagAbstract {
|
|
|
7204
7303
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7205
7304
|
throw new CommonMessageException(await response.json());
|
|
7206
7305
|
}
|
|
7207
|
-
throw new
|
|
7306
|
+
throw new import_sdkgen_client105.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7208
7307
|
}
|
|
7209
7308
|
};
|
|
7210
7309
|
|
|
7211
7310
|
// src/ConsumerPaymentTag.ts
|
|
7212
|
-
var
|
|
7213
|
-
var
|
|
7214
|
-
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 {
|
|
7215
7314
|
/**
|
|
7216
7315
|
* Start the checkout process for a specific plan
|
|
7217
7316
|
*
|
|
@@ -7240,7 +7339,7 @@ var ConsumerPaymentTag = class extends import_sdkgen_client104.TagAbstract {
|
|
|
7240
7339
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7241
7340
|
throw new CommonMessageException(await response.json());
|
|
7242
7341
|
}
|
|
7243
|
-
throw new
|
|
7342
|
+
throw new import_sdkgen_client107.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7244
7343
|
}
|
|
7245
7344
|
/**
|
|
7246
7345
|
* Generates a payment portal link for the authenticated user
|
|
@@ -7270,14 +7369,14 @@ var ConsumerPaymentTag = class extends import_sdkgen_client104.TagAbstract {
|
|
|
7270
7369
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7271
7370
|
throw new CommonMessageException(await response.json());
|
|
7272
7371
|
}
|
|
7273
|
-
throw new
|
|
7372
|
+
throw new import_sdkgen_client107.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7274
7373
|
}
|
|
7275
7374
|
};
|
|
7276
7375
|
|
|
7277
7376
|
// src/ConsumerPlanTag.ts
|
|
7278
|
-
var
|
|
7279
|
-
var
|
|
7280
|
-
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 {
|
|
7281
7380
|
/**
|
|
7282
7381
|
* Returns a specific plan for the authenticated user
|
|
7283
7382
|
*
|
|
@@ -7303,7 +7402,7 @@ var ConsumerPlanTag = class extends import_sdkgen_client106.TagAbstract {
|
|
|
7303
7402
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7304
7403
|
throw new CommonMessageException(await response.json());
|
|
7305
7404
|
}
|
|
7306
|
-
throw new
|
|
7405
|
+
throw new import_sdkgen_client109.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7307
7406
|
}
|
|
7308
7407
|
/**
|
|
7309
7408
|
* Returns a paginated list of plans which are relevant to the authenticated user
|
|
@@ -7332,14 +7431,14 @@ var ConsumerPlanTag = class extends import_sdkgen_client106.TagAbstract {
|
|
|
7332
7431
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7333
7432
|
throw new CommonMessageException(await response.json());
|
|
7334
7433
|
}
|
|
7335
|
-
throw new
|
|
7434
|
+
throw new import_sdkgen_client109.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7336
7435
|
}
|
|
7337
7436
|
};
|
|
7338
7437
|
|
|
7339
7438
|
// src/ConsumerScopeTag.ts
|
|
7340
|
-
var
|
|
7341
|
-
var
|
|
7342
|
-
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 {
|
|
7343
7442
|
/**
|
|
7344
7443
|
* Returns a paginated list of scopes which are assigned to the authenticated user
|
|
7345
7444
|
*
|
|
@@ -7367,7 +7466,7 @@ var ConsumerScopeTag = class extends import_sdkgen_client108.TagAbstract {
|
|
|
7367
7466
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7368
7467
|
throw new CommonMessageException(await response.json());
|
|
7369
7468
|
}
|
|
7370
|
-
throw new
|
|
7469
|
+
throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7371
7470
|
}
|
|
7372
7471
|
/**
|
|
7373
7472
|
* Returns all scopes by category
|
|
@@ -7392,14 +7491,14 @@ var ConsumerScopeTag = class extends import_sdkgen_client108.TagAbstract {
|
|
|
7392
7491
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7393
7492
|
throw new CommonMessageException(await response.json());
|
|
7394
7493
|
}
|
|
7395
|
-
throw new
|
|
7494
|
+
throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7396
7495
|
}
|
|
7397
7496
|
};
|
|
7398
7497
|
|
|
7399
7498
|
// src/ConsumerTokenTag.ts
|
|
7400
|
-
var
|
|
7401
|
-
var
|
|
7402
|
-
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 {
|
|
7403
7502
|
/**
|
|
7404
7503
|
* Creates a new token for the authenticated user
|
|
7405
7504
|
*
|
|
@@ -7426,7 +7525,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client110.TagAbstract {
|
|
|
7426
7525
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7427
7526
|
throw new CommonMessageException(await response.json());
|
|
7428
7527
|
}
|
|
7429
|
-
throw new
|
|
7528
|
+
throw new import_sdkgen_client113.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7430
7529
|
}
|
|
7431
7530
|
/**
|
|
7432
7531
|
* Deletes an existing token for the authenticated user
|
|
@@ -7453,7 +7552,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client110.TagAbstract {
|
|
|
7453
7552
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7454
7553
|
throw new CommonMessageException(await response.json());
|
|
7455
7554
|
}
|
|
7456
|
-
throw new
|
|
7555
|
+
throw new import_sdkgen_client113.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7457
7556
|
}
|
|
7458
7557
|
/**
|
|
7459
7558
|
* Returns a specific token for the authenticated user
|
|
@@ -7480,7 +7579,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client110.TagAbstract {
|
|
|
7480
7579
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7481
7580
|
throw new CommonMessageException(await response.json());
|
|
7482
7581
|
}
|
|
7483
|
-
throw new
|
|
7582
|
+
throw new import_sdkgen_client113.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7484
7583
|
}
|
|
7485
7584
|
/**
|
|
7486
7585
|
* Returns a paginated list of tokens which are assigned to the authenticated user
|
|
@@ -7509,7 +7608,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client110.TagAbstract {
|
|
|
7509
7608
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7510
7609
|
throw new CommonMessageException(await response.json());
|
|
7511
7610
|
}
|
|
7512
|
-
throw new
|
|
7611
|
+
throw new import_sdkgen_client113.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7513
7612
|
}
|
|
7514
7613
|
/**
|
|
7515
7614
|
* Updates an existing token for the authenticated user
|
|
@@ -7539,14 +7638,14 @@ var ConsumerTokenTag = class extends import_sdkgen_client110.TagAbstract {
|
|
|
7539
7638
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7540
7639
|
throw new CommonMessageException(await response.json());
|
|
7541
7640
|
}
|
|
7542
|
-
throw new
|
|
7641
|
+
throw new import_sdkgen_client113.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7543
7642
|
}
|
|
7544
7643
|
};
|
|
7545
7644
|
|
|
7546
7645
|
// src/ConsumerTransactionTag.ts
|
|
7547
|
-
var
|
|
7548
|
-
var
|
|
7549
|
-
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 {
|
|
7550
7649
|
/**
|
|
7551
7650
|
* Returns a specific transaction for the authenticated user
|
|
7552
7651
|
*
|
|
@@ -7572,7 +7671,7 @@ var ConsumerTransactionTag = class extends import_sdkgen_client112.TagAbstract {
|
|
|
7572
7671
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7573
7672
|
throw new CommonMessageException(await response.json());
|
|
7574
7673
|
}
|
|
7575
|
-
throw new
|
|
7674
|
+
throw new import_sdkgen_client115.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7576
7675
|
}
|
|
7577
7676
|
/**
|
|
7578
7677
|
* Returns a paginated list of transactions which are assigned to the authenticated user
|
|
@@ -7601,14 +7700,14 @@ var ConsumerTransactionTag = class extends import_sdkgen_client112.TagAbstract {
|
|
|
7601
7700
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7602
7701
|
throw new CommonMessageException(await response.json());
|
|
7603
7702
|
}
|
|
7604
|
-
throw new
|
|
7703
|
+
throw new import_sdkgen_client115.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7605
7704
|
}
|
|
7606
7705
|
};
|
|
7607
7706
|
|
|
7608
7707
|
// src/ConsumerWebhookTag.ts
|
|
7609
|
-
var
|
|
7610
|
-
var
|
|
7611
|
-
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 {
|
|
7612
7711
|
/**
|
|
7613
7712
|
* Creates a new webhook for the authenticated user
|
|
7614
7713
|
*
|
|
@@ -7635,7 +7734,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client114.TagAbstract {
|
|
|
7635
7734
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7636
7735
|
throw new CommonMessageException(await response.json());
|
|
7637
7736
|
}
|
|
7638
|
-
throw new
|
|
7737
|
+
throw new import_sdkgen_client117.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7639
7738
|
}
|
|
7640
7739
|
/**
|
|
7641
7740
|
* Deletes an existing webhook for the authenticated user
|
|
@@ -7662,7 +7761,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client114.TagAbstract {
|
|
|
7662
7761
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7663
7762
|
throw new CommonMessageException(await response.json());
|
|
7664
7763
|
}
|
|
7665
|
-
throw new
|
|
7764
|
+
throw new import_sdkgen_client117.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7666
7765
|
}
|
|
7667
7766
|
/**
|
|
7668
7767
|
* Returns a specific webhook for the authenticated user
|
|
@@ -7689,7 +7788,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client114.TagAbstract {
|
|
|
7689
7788
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7690
7789
|
throw new CommonMessageException(await response.json());
|
|
7691
7790
|
}
|
|
7692
|
-
throw new
|
|
7791
|
+
throw new import_sdkgen_client117.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7693
7792
|
}
|
|
7694
7793
|
/**
|
|
7695
7794
|
* Returns a paginated list of webhooks which are assigned to the authenticated user
|
|
@@ -7718,7 +7817,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client114.TagAbstract {
|
|
|
7718
7817
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7719
7818
|
throw new CommonMessageException(await response.json());
|
|
7720
7819
|
}
|
|
7721
|
-
throw new
|
|
7820
|
+
throw new import_sdkgen_client117.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7722
7821
|
}
|
|
7723
7822
|
/**
|
|
7724
7823
|
* Updates an existing webhook for the authenticated user
|
|
@@ -7748,12 +7847,12 @@ var ConsumerWebhookTag = class extends import_sdkgen_client114.TagAbstract {
|
|
|
7748
7847
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7749
7848
|
throw new CommonMessageException(await response.json());
|
|
7750
7849
|
}
|
|
7751
|
-
throw new
|
|
7850
|
+
throw new import_sdkgen_client117.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7752
7851
|
}
|
|
7753
7852
|
};
|
|
7754
7853
|
|
|
7755
7854
|
// src/ConsumerTag.ts
|
|
7756
|
-
var ConsumerTag = class extends
|
|
7855
|
+
var ConsumerTag = class extends import_sdkgen_client118.TagAbstract {
|
|
7757
7856
|
account() {
|
|
7758
7857
|
return new ConsumerAccountTag(
|
|
7759
7858
|
this.httpClient,
|
|
@@ -7841,12 +7940,12 @@ var ConsumerTag = class extends import_sdkgen_client116.TagAbstract {
|
|
|
7841
7940
|
};
|
|
7842
7941
|
|
|
7843
7942
|
// src/SystemTag.ts
|
|
7844
|
-
var
|
|
7943
|
+
var import_sdkgen_client125 = require("sdkgen-client");
|
|
7845
7944
|
|
|
7846
7945
|
// src/SystemConnectionTag.ts
|
|
7847
|
-
var
|
|
7848
|
-
var
|
|
7849
|
-
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 {
|
|
7850
7949
|
/**
|
|
7851
7950
|
* Connection OAuth2 callback to authorize a connection
|
|
7852
7951
|
*
|
|
@@ -7872,14 +7971,14 @@ var SystemConnectionTag = class extends import_sdkgen_client117.TagAbstract {
|
|
|
7872
7971
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7873
7972
|
throw new CommonMessageException(await response.json());
|
|
7874
7973
|
}
|
|
7875
|
-
throw new
|
|
7974
|
+
throw new import_sdkgen_client120.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7876
7975
|
}
|
|
7877
7976
|
};
|
|
7878
7977
|
|
|
7879
7978
|
// src/SystemMetaTag.ts
|
|
7880
|
-
var
|
|
7881
|
-
var
|
|
7882
|
-
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 {
|
|
7883
7982
|
/**
|
|
7884
7983
|
* Returns meta information and links about the current installed Fusio version
|
|
7885
7984
|
*
|
|
@@ -7903,7 +8002,7 @@ var SystemMetaTag = class extends import_sdkgen_client119.TagAbstract {
|
|
|
7903
8002
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7904
8003
|
throw new CommonMessageException(await response.json());
|
|
7905
8004
|
}
|
|
7906
|
-
throw new
|
|
8005
|
+
throw new import_sdkgen_client122.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7907
8006
|
}
|
|
7908
8007
|
/**
|
|
7909
8008
|
* Debug endpoint which returns the provided data
|
|
@@ -7931,7 +8030,7 @@ var SystemMetaTag = class extends import_sdkgen_client119.TagAbstract {
|
|
|
7931
8030
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7932
8031
|
throw new CommonMessageException(await response.json());
|
|
7933
8032
|
}
|
|
7934
|
-
throw new
|
|
8033
|
+
throw new import_sdkgen_client122.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7935
8034
|
}
|
|
7936
8035
|
/**
|
|
7937
8036
|
* Health check endpoint which returns information about the health status of the system
|
|
@@ -7956,7 +8055,7 @@ var SystemMetaTag = class extends import_sdkgen_client119.TagAbstract {
|
|
|
7956
8055
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7957
8056
|
throw new CommonMessageException(await response.json());
|
|
7958
8057
|
}
|
|
7959
|
-
throw new
|
|
8058
|
+
throw new import_sdkgen_client122.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7960
8059
|
}
|
|
7961
8060
|
/**
|
|
7962
8061
|
* Returns all available routes
|
|
@@ -7981,7 +8080,7 @@ var SystemMetaTag = class extends import_sdkgen_client119.TagAbstract {
|
|
|
7981
8080
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7982
8081
|
throw new CommonMessageException(await response.json());
|
|
7983
8082
|
}
|
|
7984
|
-
throw new
|
|
8083
|
+
throw new import_sdkgen_client122.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
7985
8084
|
}
|
|
7986
8085
|
/**
|
|
7987
8086
|
* Returns details of a specific schema
|
|
@@ -8008,14 +8107,14 @@ var SystemMetaTag = class extends import_sdkgen_client119.TagAbstract {
|
|
|
8008
8107
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
8009
8108
|
throw new CommonMessageException(await response.json());
|
|
8010
8109
|
}
|
|
8011
|
-
throw new
|
|
8110
|
+
throw new import_sdkgen_client122.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
8012
8111
|
}
|
|
8013
8112
|
};
|
|
8014
8113
|
|
|
8015
8114
|
// src/SystemPaymentTag.ts
|
|
8016
|
-
var
|
|
8017
|
-
var
|
|
8018
|
-
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 {
|
|
8019
8118
|
/**
|
|
8020
8119
|
* Payment webhook endpoint after successful purchase of a plan
|
|
8021
8120
|
*
|
|
@@ -8041,12 +8140,12 @@ var SystemPaymentTag = class extends import_sdkgen_client121.TagAbstract {
|
|
|
8041
8140
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
8042
8141
|
throw new CommonMessageException(await response.json());
|
|
8043
8142
|
}
|
|
8044
|
-
throw new
|
|
8143
|
+
throw new import_sdkgen_client124.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
8045
8144
|
}
|
|
8046
8145
|
};
|
|
8047
8146
|
|
|
8048
8147
|
// src/SystemTag.ts
|
|
8049
|
-
var SystemTag = class extends
|
|
8148
|
+
var SystemTag = class extends import_sdkgen_client125.TagAbstract {
|
|
8050
8149
|
connection() {
|
|
8051
8150
|
return new SystemConnectionTag(
|
|
8052
8151
|
this.httpClient,
|
|
@@ -8068,7 +8167,7 @@ var SystemTag = class extends import_sdkgen_client123.TagAbstract {
|
|
|
8068
8167
|
};
|
|
8069
8168
|
|
|
8070
8169
|
// src/Client.ts
|
|
8071
|
-
var Client = class _Client extends
|
|
8170
|
+
var Client = class _Client extends import_sdkgen_client126.ClientAbstract {
|
|
8072
8171
|
authorization() {
|
|
8073
8172
|
return new AuthorizationTag(
|
|
8074
8173
|
this.httpClient,
|
|
@@ -8094,7 +8193,7 @@ var Client = class _Client extends import_sdkgen_client124.ClientAbstract {
|
|
|
8094
8193
|
);
|
|
8095
8194
|
}
|
|
8096
8195
|
static buildAnonymous(baseUrl) {
|
|
8097
|
-
return new _Client(baseUrl, new
|
|
8196
|
+
return new _Client(baseUrl, new import_sdkgen_client127.Anonymous());
|
|
8098
8197
|
}
|
|
8099
8198
|
};
|
|
8100
8199
|
// Annotate the CommonJS export names for ESM import in node:
|
|
@@ -8108,6 +8207,7 @@ var Client = class _Client extends import_sdkgen_client124.ClientAbstract {
|
|
|
8108
8207
|
BackendBundleTag,
|
|
8109
8208
|
BackendCategoryTag,
|
|
8110
8209
|
BackendConfigTag,
|
|
8210
|
+
BackendConnectionAgentTag,
|
|
8111
8211
|
BackendConnectionDatabaseTag,
|
|
8112
8212
|
BackendConnectionFilesystemTag,
|
|
8113
8213
|
BackendConnectionHttpTag,
|