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.js
CHANGED
|
@@ -215,7 +215,7 @@ var BackendActionTag = class extends TagAbstract3 {
|
|
|
215
215
|
throw new UnknownStatusCodeException3("The server returned an unknown status code: " + statusCode);
|
|
216
216
|
}
|
|
217
217
|
/**
|
|
218
|
-
* Executes a specific action
|
|
218
|
+
* Executes a specific action. This method should be used to test an action configuration
|
|
219
219
|
*
|
|
220
220
|
* @returns {Promise<BackendActionExecuteResponse>}
|
|
221
221
|
* @throws {CommonMessageException}
|
|
@@ -1100,10 +1100,102 @@ var BackendConfigTag = class extends TagAbstract9 {
|
|
|
1100
1100
|
}
|
|
1101
1101
|
};
|
|
1102
1102
|
|
|
1103
|
-
// src/
|
|
1103
|
+
// src/BackendConnectionAgentTag.ts
|
|
1104
1104
|
import { TagAbstract as TagAbstract10 } from "sdkgen-client";
|
|
1105
1105
|
import { UnknownStatusCodeException as UnknownStatusCodeException10 } from "sdkgen-client";
|
|
1106
|
-
var
|
|
1106
|
+
var BackendConnectionAgentTag = class extends TagAbstract10 {
|
|
1107
|
+
/**
|
|
1108
|
+
* Returns all previous sent messages
|
|
1109
|
+
*
|
|
1110
|
+
* @returns {Promise<BackendAgentCollection>}
|
|
1111
|
+
* @throws {CommonMessageException}
|
|
1112
|
+
* @throws {ClientException}
|
|
1113
|
+
*/
|
|
1114
|
+
async get(connectionId, intent) {
|
|
1115
|
+
const url = this.parser.url("/backend/connection/:connection_id/agent", {
|
|
1116
|
+
"connection_id": connectionId
|
|
1117
|
+
});
|
|
1118
|
+
let request = {
|
|
1119
|
+
url,
|
|
1120
|
+
method: "GET",
|
|
1121
|
+
headers: {},
|
|
1122
|
+
params: this.parser.query({
|
|
1123
|
+
"intent": intent
|
|
1124
|
+
}, [])
|
|
1125
|
+
};
|
|
1126
|
+
const response = await this.httpClient.request(request);
|
|
1127
|
+
if (response.ok) {
|
|
1128
|
+
return await response.json();
|
|
1129
|
+
}
|
|
1130
|
+
const statusCode = response.status;
|
|
1131
|
+
if (statusCode >= 0 && statusCode <= 999) {
|
|
1132
|
+
throw new CommonMessageException(await response.json());
|
|
1133
|
+
}
|
|
1134
|
+
throw new UnknownStatusCodeException10("The server returned an unknown status code: " + statusCode);
|
|
1135
|
+
}
|
|
1136
|
+
/**
|
|
1137
|
+
* Resets all agent messages
|
|
1138
|
+
*
|
|
1139
|
+
* @returns {Promise<CommonMessage>}
|
|
1140
|
+
* @throws {CommonMessageException}
|
|
1141
|
+
* @throws {ClientException}
|
|
1142
|
+
*/
|
|
1143
|
+
async reset(connectionId) {
|
|
1144
|
+
const url = this.parser.url("/backend/connection/:connection_id/agent", {
|
|
1145
|
+
"connection_id": connectionId
|
|
1146
|
+
});
|
|
1147
|
+
let request = {
|
|
1148
|
+
url,
|
|
1149
|
+
method: "DELETE",
|
|
1150
|
+
headers: {},
|
|
1151
|
+
params: this.parser.query({}, [])
|
|
1152
|
+
};
|
|
1153
|
+
const response = await this.httpClient.request(request);
|
|
1154
|
+
if (response.ok) {
|
|
1155
|
+
return await response.json();
|
|
1156
|
+
}
|
|
1157
|
+
const statusCode = response.status;
|
|
1158
|
+
if (statusCode >= 0 && statusCode <= 999) {
|
|
1159
|
+
throw new CommonMessageException(await response.json());
|
|
1160
|
+
}
|
|
1161
|
+
throw new UnknownStatusCodeException10("The server returned an unknown status code: " + statusCode);
|
|
1162
|
+
}
|
|
1163
|
+
/**
|
|
1164
|
+
* Sends a message to an agent
|
|
1165
|
+
*
|
|
1166
|
+
* @returns {Promise<BackendAgentResponse>}
|
|
1167
|
+
* @throws {CommonMessageException}
|
|
1168
|
+
* @throws {ClientException}
|
|
1169
|
+
*/
|
|
1170
|
+
async send(connectionId, payload) {
|
|
1171
|
+
const url = this.parser.url("/backend/connection/:connection_id/agent", {
|
|
1172
|
+
"connection_id": connectionId
|
|
1173
|
+
});
|
|
1174
|
+
let request = {
|
|
1175
|
+
url,
|
|
1176
|
+
method: "POST",
|
|
1177
|
+
headers: {
|
|
1178
|
+
"Content-Type": "application/json"
|
|
1179
|
+
},
|
|
1180
|
+
params: this.parser.query({}, []),
|
|
1181
|
+
data: payload
|
|
1182
|
+
};
|
|
1183
|
+
const response = await this.httpClient.request(request);
|
|
1184
|
+
if (response.ok) {
|
|
1185
|
+
return await response.json();
|
|
1186
|
+
}
|
|
1187
|
+
const statusCode = response.status;
|
|
1188
|
+
if (statusCode >= 0 && statusCode <= 999) {
|
|
1189
|
+
throw new CommonMessageException(await response.json());
|
|
1190
|
+
}
|
|
1191
|
+
throw new UnknownStatusCodeException10("The server returned an unknown status code: " + statusCode);
|
|
1192
|
+
}
|
|
1193
|
+
};
|
|
1194
|
+
|
|
1195
|
+
// src/BackendConnectionDatabaseTag.ts
|
|
1196
|
+
import { TagAbstract as TagAbstract11 } from "sdkgen-client";
|
|
1197
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException11 } from "sdkgen-client";
|
|
1198
|
+
var BackendConnectionDatabaseTag = class extends TagAbstract11 {
|
|
1107
1199
|
/**
|
|
1108
1200
|
* Creates a new row at a table on a database
|
|
1109
1201
|
*
|
|
@@ -1133,7 +1225,7 @@ var BackendConnectionDatabaseTag = class extends TagAbstract10 {
|
|
|
1133
1225
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1134
1226
|
throw new CommonMessageException(await response.json());
|
|
1135
1227
|
}
|
|
1136
|
-
throw new
|
|
1228
|
+
throw new UnknownStatusCodeException11("The server returned an unknown status code: " + statusCode);
|
|
1137
1229
|
}
|
|
1138
1230
|
/**
|
|
1139
1231
|
* Creates a new table on a database
|
|
@@ -1163,7 +1255,7 @@ var BackendConnectionDatabaseTag = class extends TagAbstract10 {
|
|
|
1163
1255
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1164
1256
|
throw new CommonMessageException(await response.json());
|
|
1165
1257
|
}
|
|
1166
|
-
throw new
|
|
1258
|
+
throw new UnknownStatusCodeException11("The server returned an unknown status code: " + statusCode);
|
|
1167
1259
|
}
|
|
1168
1260
|
/**
|
|
1169
1261
|
* Deletes an existing row at a table on a database
|
|
@@ -1192,7 +1284,7 @@ var BackendConnectionDatabaseTag = class extends TagAbstract10 {
|
|
|
1192
1284
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1193
1285
|
throw new CommonMessageException(await response.json());
|
|
1194
1286
|
}
|
|
1195
|
-
throw new
|
|
1287
|
+
throw new UnknownStatusCodeException11("The server returned an unknown status code: " + statusCode);
|
|
1196
1288
|
}
|
|
1197
1289
|
/**
|
|
1198
1290
|
* Deletes an existing table on a database
|
|
@@ -1220,7 +1312,7 @@ var BackendConnectionDatabaseTag = class extends TagAbstract10 {
|
|
|
1220
1312
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1221
1313
|
throw new CommonMessageException(await response.json());
|
|
1222
1314
|
}
|
|
1223
|
-
throw new
|
|
1315
|
+
throw new UnknownStatusCodeException11("The server returned an unknown status code: " + statusCode);
|
|
1224
1316
|
}
|
|
1225
1317
|
/**
|
|
1226
1318
|
* Returns a specific row at a table on a database
|
|
@@ -1249,7 +1341,7 @@ var BackendConnectionDatabaseTag = class extends TagAbstract10 {
|
|
|
1249
1341
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1250
1342
|
throw new CommonMessageException(await response.json());
|
|
1251
1343
|
}
|
|
1252
|
-
throw new
|
|
1344
|
+
throw new UnknownStatusCodeException11("The server returned an unknown status code: " + statusCode);
|
|
1253
1345
|
}
|
|
1254
1346
|
/**
|
|
1255
1347
|
* Returns paginated rows at a table on a database
|
|
@@ -1286,7 +1378,7 @@ var BackendConnectionDatabaseTag = class extends TagAbstract10 {
|
|
|
1286
1378
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1287
1379
|
throw new CommonMessageException(await response.json());
|
|
1288
1380
|
}
|
|
1289
|
-
throw new
|
|
1381
|
+
throw new UnknownStatusCodeException11("The server returned an unknown status code: " + statusCode);
|
|
1290
1382
|
}
|
|
1291
1383
|
/**
|
|
1292
1384
|
* Returns the schema of a specific table on a database
|
|
@@ -1314,7 +1406,7 @@ var BackendConnectionDatabaseTag = class extends TagAbstract10 {
|
|
|
1314
1406
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1315
1407
|
throw new CommonMessageException(await response.json());
|
|
1316
1408
|
}
|
|
1317
|
-
throw new
|
|
1409
|
+
throw new UnknownStatusCodeException11("The server returned an unknown status code: " + statusCode);
|
|
1318
1410
|
}
|
|
1319
1411
|
/**
|
|
1320
1412
|
* Returns all available tables on a database
|
|
@@ -1344,7 +1436,7 @@ var BackendConnectionDatabaseTag = class extends TagAbstract10 {
|
|
|
1344
1436
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1345
1437
|
throw new CommonMessageException(await response.json());
|
|
1346
1438
|
}
|
|
1347
|
-
throw new
|
|
1439
|
+
throw new UnknownStatusCodeException11("The server returned an unknown status code: " + statusCode);
|
|
1348
1440
|
}
|
|
1349
1441
|
/**
|
|
1350
1442
|
* Updates an existing row at a table on a database
|
|
@@ -1376,7 +1468,7 @@ var BackendConnectionDatabaseTag = class extends TagAbstract10 {
|
|
|
1376
1468
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1377
1469
|
throw new CommonMessageException(await response.json());
|
|
1378
1470
|
}
|
|
1379
|
-
throw new
|
|
1471
|
+
throw new UnknownStatusCodeException11("The server returned an unknown status code: " + statusCode);
|
|
1380
1472
|
}
|
|
1381
1473
|
/**
|
|
1382
1474
|
* Updates an existing table on a database
|
|
@@ -1407,14 +1499,14 @@ var BackendConnectionDatabaseTag = class extends TagAbstract10 {
|
|
|
1407
1499
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1408
1500
|
throw new CommonMessageException(await response.json());
|
|
1409
1501
|
}
|
|
1410
|
-
throw new
|
|
1502
|
+
throw new UnknownStatusCodeException11("The server returned an unknown status code: " + statusCode);
|
|
1411
1503
|
}
|
|
1412
1504
|
};
|
|
1413
1505
|
|
|
1414
1506
|
// src/BackendConnectionFilesystemTag.ts
|
|
1415
|
-
import { TagAbstract as
|
|
1416
|
-
import { UnknownStatusCodeException as
|
|
1417
|
-
var BackendConnectionFilesystemTag = class extends
|
|
1507
|
+
import { TagAbstract as TagAbstract12 } from "sdkgen-client";
|
|
1508
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException12 } from "sdkgen-client";
|
|
1509
|
+
var BackendConnectionFilesystemTag = class extends TagAbstract12 {
|
|
1418
1510
|
/**
|
|
1419
1511
|
* Uploads one or more files on the filesystem connection
|
|
1420
1512
|
*
|
|
@@ -1441,7 +1533,7 @@ var BackendConnectionFilesystemTag = class extends TagAbstract11 {
|
|
|
1441
1533
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1442
1534
|
throw new CommonMessageException(await response.json());
|
|
1443
1535
|
}
|
|
1444
|
-
throw new
|
|
1536
|
+
throw new UnknownStatusCodeException12("The server returned an unknown status code: " + statusCode);
|
|
1445
1537
|
}
|
|
1446
1538
|
/**
|
|
1447
1539
|
* Deletes an existing file on the filesystem connection
|
|
@@ -1469,7 +1561,7 @@ var BackendConnectionFilesystemTag = class extends TagAbstract11 {
|
|
|
1469
1561
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1470
1562
|
throw new CommonMessageException(await response.json());
|
|
1471
1563
|
}
|
|
1472
|
-
throw new
|
|
1564
|
+
throw new UnknownStatusCodeException12("The server returned an unknown status code: " + statusCode);
|
|
1473
1565
|
}
|
|
1474
1566
|
/**
|
|
1475
1567
|
* Returns the content of the provided file id on the filesystem connection
|
|
@@ -1499,7 +1591,7 @@ var BackendConnectionFilesystemTag = class extends TagAbstract11 {
|
|
|
1499
1591
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1500
1592
|
throw new CommonMessageException(await response.json());
|
|
1501
1593
|
}
|
|
1502
|
-
throw new
|
|
1594
|
+
throw new UnknownStatusCodeException12("The server returned an unknown status code: " + statusCode);
|
|
1503
1595
|
}
|
|
1504
1596
|
/**
|
|
1505
1597
|
* Returns all available files on the filesystem connection
|
|
@@ -1529,7 +1621,7 @@ var BackendConnectionFilesystemTag = class extends TagAbstract11 {
|
|
|
1529
1621
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1530
1622
|
throw new CommonMessageException(await response.json());
|
|
1531
1623
|
}
|
|
1532
|
-
throw new
|
|
1624
|
+
throw new UnknownStatusCodeException12("The server returned an unknown status code: " + statusCode);
|
|
1533
1625
|
}
|
|
1534
1626
|
/**
|
|
1535
1627
|
* Updates an existing file on the filesystem connection
|
|
@@ -1558,14 +1650,14 @@ var BackendConnectionFilesystemTag = class extends TagAbstract11 {
|
|
|
1558
1650
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1559
1651
|
throw new CommonMessageException(await response.json());
|
|
1560
1652
|
}
|
|
1561
|
-
throw new
|
|
1653
|
+
throw new UnknownStatusCodeException12("The server returned an unknown status code: " + statusCode);
|
|
1562
1654
|
}
|
|
1563
1655
|
};
|
|
1564
1656
|
|
|
1565
1657
|
// src/BackendConnectionHttpTag.ts
|
|
1566
|
-
import { TagAbstract as
|
|
1567
|
-
import { UnknownStatusCodeException as
|
|
1568
|
-
var BackendConnectionHttpTag = class extends
|
|
1658
|
+
import { TagAbstract as TagAbstract13 } from "sdkgen-client";
|
|
1659
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException13 } from "sdkgen-client";
|
|
1660
|
+
var BackendConnectionHttpTag = class extends TagAbstract13 {
|
|
1569
1661
|
/**
|
|
1570
1662
|
* Sends an arbitrary HTTP request to the connection
|
|
1571
1663
|
*
|
|
@@ -1594,14 +1686,14 @@ var BackendConnectionHttpTag = class extends TagAbstract12 {
|
|
|
1594
1686
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1595
1687
|
throw new CommonMessageException(await response.json());
|
|
1596
1688
|
}
|
|
1597
|
-
throw new
|
|
1689
|
+
throw new UnknownStatusCodeException13("The server returned an unknown status code: " + statusCode);
|
|
1598
1690
|
}
|
|
1599
1691
|
};
|
|
1600
1692
|
|
|
1601
1693
|
// src/BackendConnectionSdkTag.ts
|
|
1602
|
-
import { TagAbstract as
|
|
1603
|
-
import { UnknownStatusCodeException as
|
|
1604
|
-
var BackendConnectionSdkTag = class extends
|
|
1694
|
+
import { TagAbstract as TagAbstract14 } from "sdkgen-client";
|
|
1695
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException14 } from "sdkgen-client";
|
|
1696
|
+
var BackendConnectionSdkTag = class extends TagAbstract14 {
|
|
1605
1697
|
/**
|
|
1606
1698
|
* Returns the SDK specification
|
|
1607
1699
|
*
|
|
@@ -1627,14 +1719,20 @@ var BackendConnectionSdkTag = class extends TagAbstract13 {
|
|
|
1627
1719
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1628
1720
|
throw new CommonMessageException(await response.json());
|
|
1629
1721
|
}
|
|
1630
|
-
throw new
|
|
1722
|
+
throw new UnknownStatusCodeException14("The server returned an unknown status code: " + statusCode);
|
|
1631
1723
|
}
|
|
1632
1724
|
};
|
|
1633
1725
|
|
|
1634
1726
|
// src/BackendConnectionTag.ts
|
|
1635
|
-
import { TagAbstract as
|
|
1636
|
-
import { UnknownStatusCodeException as
|
|
1637
|
-
var BackendConnectionTag = class extends
|
|
1727
|
+
import { TagAbstract as TagAbstract15 } from "sdkgen-client";
|
|
1728
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException15 } from "sdkgen-client";
|
|
1729
|
+
var BackendConnectionTag = class extends TagAbstract15 {
|
|
1730
|
+
agent() {
|
|
1731
|
+
return new BackendConnectionAgentTag(
|
|
1732
|
+
this.httpClient,
|
|
1733
|
+
this.parser
|
|
1734
|
+
);
|
|
1735
|
+
}
|
|
1638
1736
|
database() {
|
|
1639
1737
|
return new BackendConnectionDatabaseTag(
|
|
1640
1738
|
this.httpClient,
|
|
@@ -1685,7 +1783,7 @@ var BackendConnectionTag = class extends TagAbstract14 {
|
|
|
1685
1783
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1686
1784
|
throw new CommonMessageException(await response.json());
|
|
1687
1785
|
}
|
|
1688
|
-
throw new
|
|
1786
|
+
throw new UnknownStatusCodeException15("The server returned an unknown status code: " + statusCode);
|
|
1689
1787
|
}
|
|
1690
1788
|
/**
|
|
1691
1789
|
* Deletes an existing connection
|
|
@@ -1712,7 +1810,7 @@ var BackendConnectionTag = class extends TagAbstract14 {
|
|
|
1712
1810
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1713
1811
|
throw new CommonMessageException(await response.json());
|
|
1714
1812
|
}
|
|
1715
|
-
throw new
|
|
1813
|
+
throw new UnknownStatusCodeException15("The server returned an unknown status code: " + statusCode);
|
|
1716
1814
|
}
|
|
1717
1815
|
/**
|
|
1718
1816
|
* Returns a specific connection
|
|
@@ -1739,7 +1837,7 @@ var BackendConnectionTag = class extends TagAbstract14 {
|
|
|
1739
1837
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1740
1838
|
throw new CommonMessageException(await response.json());
|
|
1741
1839
|
}
|
|
1742
|
-
throw new
|
|
1840
|
+
throw new UnknownStatusCodeException15("The server returned an unknown status code: " + statusCode);
|
|
1743
1841
|
}
|
|
1744
1842
|
/**
|
|
1745
1843
|
* Returns a paginated list of connections
|
|
@@ -1769,7 +1867,7 @@ var BackendConnectionTag = class extends TagAbstract14 {
|
|
|
1769
1867
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1770
1868
|
throw new CommonMessageException(await response.json());
|
|
1771
1869
|
}
|
|
1772
|
-
throw new
|
|
1870
|
+
throw new UnknownStatusCodeException15("The server returned an unknown status code: " + statusCode);
|
|
1773
1871
|
}
|
|
1774
1872
|
/**
|
|
1775
1873
|
* Returns all available connection classes
|
|
@@ -1794,7 +1892,7 @@ var BackendConnectionTag = class extends TagAbstract14 {
|
|
|
1794
1892
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1795
1893
|
throw new CommonMessageException(await response.json());
|
|
1796
1894
|
}
|
|
1797
|
-
throw new
|
|
1895
|
+
throw new UnknownStatusCodeException15("The server returned an unknown status code: " + statusCode);
|
|
1798
1896
|
}
|
|
1799
1897
|
/**
|
|
1800
1898
|
* Returns the connection config form
|
|
@@ -1821,7 +1919,7 @@ var BackendConnectionTag = class extends TagAbstract14 {
|
|
|
1821
1919
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1822
1920
|
throw new CommonMessageException(await response.json());
|
|
1823
1921
|
}
|
|
1824
|
-
throw new
|
|
1922
|
+
throw new UnknownStatusCodeException15("The server returned an unknown status code: " + statusCode);
|
|
1825
1923
|
}
|
|
1826
1924
|
/**
|
|
1827
1925
|
* Returns a redirect url to start the OAuth2 authorization flow for the given connection
|
|
@@ -1848,7 +1946,7 @@ var BackendConnectionTag = class extends TagAbstract14 {
|
|
|
1848
1946
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1849
1947
|
throw new CommonMessageException(await response.json());
|
|
1850
1948
|
}
|
|
1851
|
-
throw new
|
|
1949
|
+
throw new UnknownStatusCodeException15("The server returned an unknown status code: " + statusCode);
|
|
1852
1950
|
}
|
|
1853
1951
|
/**
|
|
1854
1952
|
* Updates an existing connection
|
|
@@ -1878,14 +1976,14 @@ var BackendConnectionTag = class extends TagAbstract14 {
|
|
|
1878
1976
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1879
1977
|
throw new CommonMessageException(await response.json());
|
|
1880
1978
|
}
|
|
1881
|
-
throw new
|
|
1979
|
+
throw new UnknownStatusCodeException15("The server returned an unknown status code: " + statusCode);
|
|
1882
1980
|
}
|
|
1883
1981
|
};
|
|
1884
1982
|
|
|
1885
1983
|
// src/BackendCronjobTag.ts
|
|
1886
|
-
import { TagAbstract as
|
|
1887
|
-
import { UnknownStatusCodeException as
|
|
1888
|
-
var BackendCronjobTag = class extends
|
|
1984
|
+
import { TagAbstract as TagAbstract16 } from "sdkgen-client";
|
|
1985
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException16 } from "sdkgen-client";
|
|
1986
|
+
var BackendCronjobTag = class extends TagAbstract16 {
|
|
1889
1987
|
/**
|
|
1890
1988
|
* Creates a new cronjob
|
|
1891
1989
|
*
|
|
@@ -1912,7 +2010,7 @@ var BackendCronjobTag = class extends TagAbstract15 {
|
|
|
1912
2010
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1913
2011
|
throw new CommonMessageException(await response.json());
|
|
1914
2012
|
}
|
|
1915
|
-
throw new
|
|
2013
|
+
throw new UnknownStatusCodeException16("The server returned an unknown status code: " + statusCode);
|
|
1916
2014
|
}
|
|
1917
2015
|
/**
|
|
1918
2016
|
* Deletes an existing cronjob
|
|
@@ -1939,7 +2037,7 @@ var BackendCronjobTag = class extends TagAbstract15 {
|
|
|
1939
2037
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1940
2038
|
throw new CommonMessageException(await response.json());
|
|
1941
2039
|
}
|
|
1942
|
-
throw new
|
|
2040
|
+
throw new UnknownStatusCodeException16("The server returned an unknown status code: " + statusCode);
|
|
1943
2041
|
}
|
|
1944
2042
|
/**
|
|
1945
2043
|
* Returns a specific cronjob
|
|
@@ -1966,7 +2064,7 @@ var BackendCronjobTag = class extends TagAbstract15 {
|
|
|
1966
2064
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1967
2065
|
throw new CommonMessageException(await response.json());
|
|
1968
2066
|
}
|
|
1969
|
-
throw new
|
|
2067
|
+
throw new UnknownStatusCodeException16("The server returned an unknown status code: " + statusCode);
|
|
1970
2068
|
}
|
|
1971
2069
|
/**
|
|
1972
2070
|
* Returns a paginated list of cronjobs
|
|
@@ -1995,7 +2093,7 @@ var BackendCronjobTag = class extends TagAbstract15 {
|
|
|
1995
2093
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1996
2094
|
throw new CommonMessageException(await response.json());
|
|
1997
2095
|
}
|
|
1998
|
-
throw new
|
|
2096
|
+
throw new UnknownStatusCodeException16("The server returned an unknown status code: " + statusCode);
|
|
1999
2097
|
}
|
|
2000
2098
|
/**
|
|
2001
2099
|
* Updates an existing cronjob
|
|
@@ -2025,14 +2123,14 @@ var BackendCronjobTag = class extends TagAbstract15 {
|
|
|
2025
2123
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2026
2124
|
throw new CommonMessageException(await response.json());
|
|
2027
2125
|
}
|
|
2028
|
-
throw new
|
|
2126
|
+
throw new UnknownStatusCodeException16("The server returned an unknown status code: " + statusCode);
|
|
2029
2127
|
}
|
|
2030
2128
|
};
|
|
2031
2129
|
|
|
2032
2130
|
// src/BackendDashboardTag.ts
|
|
2033
|
-
import { TagAbstract as
|
|
2034
|
-
import { UnknownStatusCodeException as
|
|
2035
|
-
var BackendDashboardTag = class extends
|
|
2131
|
+
import { TagAbstract as TagAbstract17 } from "sdkgen-client";
|
|
2132
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException17 } from "sdkgen-client";
|
|
2133
|
+
var BackendDashboardTag = class extends TagAbstract17 {
|
|
2036
2134
|
/**
|
|
2037
2135
|
* Returns all available dashboard widgets
|
|
2038
2136
|
*
|
|
@@ -2056,14 +2154,14 @@ var BackendDashboardTag = class extends TagAbstract16 {
|
|
|
2056
2154
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2057
2155
|
throw new CommonMessageException(await response.json());
|
|
2058
2156
|
}
|
|
2059
|
-
throw new
|
|
2157
|
+
throw new UnknownStatusCodeException17("The server returned an unknown status code: " + statusCode);
|
|
2060
2158
|
}
|
|
2061
2159
|
};
|
|
2062
2160
|
|
|
2063
2161
|
// src/BackendEventTag.ts
|
|
2064
|
-
import { TagAbstract as
|
|
2065
|
-
import { UnknownStatusCodeException as
|
|
2066
|
-
var BackendEventTag = class extends
|
|
2162
|
+
import { TagAbstract as TagAbstract18 } from "sdkgen-client";
|
|
2163
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException18 } from "sdkgen-client";
|
|
2164
|
+
var BackendEventTag = class extends TagAbstract18 {
|
|
2067
2165
|
/**
|
|
2068
2166
|
* Creates a new event
|
|
2069
2167
|
*
|
|
@@ -2090,7 +2188,7 @@ var BackendEventTag = class extends TagAbstract17 {
|
|
|
2090
2188
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2091
2189
|
throw new CommonMessageException(await response.json());
|
|
2092
2190
|
}
|
|
2093
|
-
throw new
|
|
2191
|
+
throw new UnknownStatusCodeException18("The server returned an unknown status code: " + statusCode);
|
|
2094
2192
|
}
|
|
2095
2193
|
/**
|
|
2096
2194
|
* Deletes an existing event
|
|
@@ -2117,7 +2215,7 @@ var BackendEventTag = class extends TagAbstract17 {
|
|
|
2117
2215
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2118
2216
|
throw new CommonMessageException(await response.json());
|
|
2119
2217
|
}
|
|
2120
|
-
throw new
|
|
2218
|
+
throw new UnknownStatusCodeException18("The server returned an unknown status code: " + statusCode);
|
|
2121
2219
|
}
|
|
2122
2220
|
/**
|
|
2123
2221
|
* Returns a specific event
|
|
@@ -2144,7 +2242,7 @@ var BackendEventTag = class extends TagAbstract17 {
|
|
|
2144
2242
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2145
2243
|
throw new CommonMessageException(await response.json());
|
|
2146
2244
|
}
|
|
2147
|
-
throw new
|
|
2245
|
+
throw new UnknownStatusCodeException18("The server returned an unknown status code: " + statusCode);
|
|
2148
2246
|
}
|
|
2149
2247
|
/**
|
|
2150
2248
|
* Returns a paginated list of events
|
|
@@ -2173,7 +2271,7 @@ var BackendEventTag = class extends TagAbstract17 {
|
|
|
2173
2271
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2174
2272
|
throw new CommonMessageException(await response.json());
|
|
2175
2273
|
}
|
|
2176
|
-
throw new
|
|
2274
|
+
throw new UnknownStatusCodeException18("The server returned an unknown status code: " + statusCode);
|
|
2177
2275
|
}
|
|
2178
2276
|
/**
|
|
2179
2277
|
* Updates an existing event
|
|
@@ -2203,14 +2301,14 @@ var BackendEventTag = class extends TagAbstract17 {
|
|
|
2203
2301
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2204
2302
|
throw new CommonMessageException(await response.json());
|
|
2205
2303
|
}
|
|
2206
|
-
throw new
|
|
2304
|
+
throw new UnknownStatusCodeException18("The server returned an unknown status code: " + statusCode);
|
|
2207
2305
|
}
|
|
2208
2306
|
};
|
|
2209
2307
|
|
|
2210
2308
|
// src/BackendFirewallTag.ts
|
|
2211
|
-
import { TagAbstract as
|
|
2212
|
-
import { UnknownStatusCodeException as
|
|
2213
|
-
var BackendFirewallTag = class extends
|
|
2309
|
+
import { TagAbstract as TagAbstract19 } from "sdkgen-client";
|
|
2310
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException19 } from "sdkgen-client";
|
|
2311
|
+
var BackendFirewallTag = class extends TagAbstract19 {
|
|
2214
2312
|
/**
|
|
2215
2313
|
* Creates a new firewall rule
|
|
2216
2314
|
*
|
|
@@ -2237,7 +2335,7 @@ var BackendFirewallTag = class extends TagAbstract18 {
|
|
|
2237
2335
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2238
2336
|
throw new CommonMessageException(await response.json());
|
|
2239
2337
|
}
|
|
2240
|
-
throw new
|
|
2338
|
+
throw new UnknownStatusCodeException19("The server returned an unknown status code: " + statusCode);
|
|
2241
2339
|
}
|
|
2242
2340
|
/**
|
|
2243
2341
|
* Deletes an existing firewall rule
|
|
@@ -2264,7 +2362,7 @@ var BackendFirewallTag = class extends TagAbstract18 {
|
|
|
2264
2362
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2265
2363
|
throw new CommonMessageException(await response.json());
|
|
2266
2364
|
}
|
|
2267
|
-
throw new
|
|
2365
|
+
throw new UnknownStatusCodeException19("The server returned an unknown status code: " + statusCode);
|
|
2268
2366
|
}
|
|
2269
2367
|
/**
|
|
2270
2368
|
* Returns a specific firewall rule
|
|
@@ -2291,7 +2389,7 @@ var BackendFirewallTag = class extends TagAbstract18 {
|
|
|
2291
2389
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2292
2390
|
throw new CommonMessageException(await response.json());
|
|
2293
2391
|
}
|
|
2294
|
-
throw new
|
|
2392
|
+
throw new UnknownStatusCodeException19("The server returned an unknown status code: " + statusCode);
|
|
2295
2393
|
}
|
|
2296
2394
|
/**
|
|
2297
2395
|
* Returns a paginated list of firewall rules
|
|
@@ -2320,7 +2418,7 @@ var BackendFirewallTag = class extends TagAbstract18 {
|
|
|
2320
2418
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2321
2419
|
throw new CommonMessageException(await response.json());
|
|
2322
2420
|
}
|
|
2323
|
-
throw new
|
|
2421
|
+
throw new UnknownStatusCodeException19("The server returned an unknown status code: " + statusCode);
|
|
2324
2422
|
}
|
|
2325
2423
|
/**
|
|
2326
2424
|
* Updates an existing firewall rule
|
|
@@ -2350,14 +2448,14 @@ var BackendFirewallTag = class extends TagAbstract18 {
|
|
|
2350
2448
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2351
2449
|
throw new CommonMessageException(await response.json());
|
|
2352
2450
|
}
|
|
2353
|
-
throw new
|
|
2451
|
+
throw new UnknownStatusCodeException19("The server returned an unknown status code: " + statusCode);
|
|
2354
2452
|
}
|
|
2355
2453
|
};
|
|
2356
2454
|
|
|
2357
2455
|
// src/BackendFormTag.ts
|
|
2358
|
-
import { TagAbstract as
|
|
2359
|
-
import { UnknownStatusCodeException as
|
|
2360
|
-
var BackendFormTag = class extends
|
|
2456
|
+
import { TagAbstract as TagAbstract20 } from "sdkgen-client";
|
|
2457
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException20 } from "sdkgen-client";
|
|
2458
|
+
var BackendFormTag = class extends TagAbstract20 {
|
|
2361
2459
|
/**
|
|
2362
2460
|
* Creates a new form
|
|
2363
2461
|
*
|
|
@@ -2384,7 +2482,7 @@ var BackendFormTag = class extends TagAbstract19 {
|
|
|
2384
2482
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2385
2483
|
throw new CommonMessageException(await response.json());
|
|
2386
2484
|
}
|
|
2387
|
-
throw new
|
|
2485
|
+
throw new UnknownStatusCodeException20("The server returned an unknown status code: " + statusCode);
|
|
2388
2486
|
}
|
|
2389
2487
|
/**
|
|
2390
2488
|
* Deletes an existing form
|
|
@@ -2411,7 +2509,7 @@ var BackendFormTag = class extends TagAbstract19 {
|
|
|
2411
2509
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2412
2510
|
throw new CommonMessageException(await response.json());
|
|
2413
2511
|
}
|
|
2414
|
-
throw new
|
|
2512
|
+
throw new UnknownStatusCodeException20("The server returned an unknown status code: " + statusCode);
|
|
2415
2513
|
}
|
|
2416
2514
|
/**
|
|
2417
2515
|
* Returns a specific form
|
|
@@ -2438,7 +2536,7 @@ var BackendFormTag = class extends TagAbstract19 {
|
|
|
2438
2536
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2439
2537
|
throw new CommonMessageException(await response.json());
|
|
2440
2538
|
}
|
|
2441
|
-
throw new
|
|
2539
|
+
throw new UnknownStatusCodeException20("The server returned an unknown status code: " + statusCode);
|
|
2442
2540
|
}
|
|
2443
2541
|
/**
|
|
2444
2542
|
* Returns a paginated list of forms
|
|
@@ -2467,7 +2565,7 @@ var BackendFormTag = class extends TagAbstract19 {
|
|
|
2467
2565
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2468
2566
|
throw new CommonMessageException(await response.json());
|
|
2469
2567
|
}
|
|
2470
|
-
throw new
|
|
2568
|
+
throw new UnknownStatusCodeException20("The server returned an unknown status code: " + statusCode);
|
|
2471
2569
|
}
|
|
2472
2570
|
/**
|
|
2473
2571
|
* Updates an existing form
|
|
@@ -2497,14 +2595,14 @@ var BackendFormTag = class extends TagAbstract19 {
|
|
|
2497
2595
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2498
2596
|
throw new CommonMessageException(await response.json());
|
|
2499
2597
|
}
|
|
2500
|
-
throw new
|
|
2598
|
+
throw new UnknownStatusCodeException20("The server returned an unknown status code: " + statusCode);
|
|
2501
2599
|
}
|
|
2502
2600
|
};
|
|
2503
2601
|
|
|
2504
2602
|
// src/BackendGeneratorTag.ts
|
|
2505
|
-
import { TagAbstract as
|
|
2506
|
-
import { UnknownStatusCodeException as
|
|
2507
|
-
var BackendGeneratorTag = class extends
|
|
2603
|
+
import { TagAbstract as TagAbstract21 } from "sdkgen-client";
|
|
2604
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException21 } from "sdkgen-client";
|
|
2605
|
+
var BackendGeneratorTag = class extends TagAbstract21 {
|
|
2508
2606
|
/**
|
|
2509
2607
|
* Executes a generator with the provided config
|
|
2510
2608
|
*
|
|
@@ -2533,7 +2631,7 @@ var BackendGeneratorTag = class extends TagAbstract20 {
|
|
|
2533
2631
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2534
2632
|
throw new CommonMessageException(await response.json());
|
|
2535
2633
|
}
|
|
2536
|
-
throw new
|
|
2634
|
+
throw new UnknownStatusCodeException21("The server returned an unknown status code: " + statusCode);
|
|
2537
2635
|
}
|
|
2538
2636
|
/**
|
|
2539
2637
|
* Generates a changelog of all potential changes if you execute this generator with the provided config
|
|
@@ -2563,7 +2661,7 @@ var BackendGeneratorTag = class extends TagAbstract20 {
|
|
|
2563
2661
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2564
2662
|
throw new CommonMessageException(await response.json());
|
|
2565
2663
|
}
|
|
2566
|
-
throw new
|
|
2664
|
+
throw new UnknownStatusCodeException21("The server returned an unknown status code: " + statusCode);
|
|
2567
2665
|
}
|
|
2568
2666
|
/**
|
|
2569
2667
|
* Returns all available generator classes
|
|
@@ -2588,7 +2686,7 @@ var BackendGeneratorTag = class extends TagAbstract20 {
|
|
|
2588
2686
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2589
2687
|
throw new CommonMessageException(await response.json());
|
|
2590
2688
|
}
|
|
2591
|
-
throw new
|
|
2689
|
+
throw new UnknownStatusCodeException21("The server returned an unknown status code: " + statusCode);
|
|
2592
2690
|
}
|
|
2593
2691
|
/**
|
|
2594
2692
|
* Returns the generator config form
|
|
@@ -2615,14 +2713,14 @@ var BackendGeneratorTag = class extends TagAbstract20 {
|
|
|
2615
2713
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2616
2714
|
throw new CommonMessageException(await response.json());
|
|
2617
2715
|
}
|
|
2618
|
-
throw new
|
|
2716
|
+
throw new UnknownStatusCodeException21("The server returned an unknown status code: " + statusCode);
|
|
2619
2717
|
}
|
|
2620
2718
|
};
|
|
2621
2719
|
|
|
2622
2720
|
// src/BackendIdentityTag.ts
|
|
2623
|
-
import { TagAbstract as
|
|
2624
|
-
import { UnknownStatusCodeException as
|
|
2625
|
-
var BackendIdentityTag = class extends
|
|
2721
|
+
import { TagAbstract as TagAbstract22 } from "sdkgen-client";
|
|
2722
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException22 } from "sdkgen-client";
|
|
2723
|
+
var BackendIdentityTag = class extends TagAbstract22 {
|
|
2626
2724
|
/**
|
|
2627
2725
|
* Creates a new identity
|
|
2628
2726
|
*
|
|
@@ -2649,7 +2747,7 @@ var BackendIdentityTag = class extends TagAbstract21 {
|
|
|
2649
2747
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2650
2748
|
throw new CommonMessageException(await response.json());
|
|
2651
2749
|
}
|
|
2652
|
-
throw new
|
|
2750
|
+
throw new UnknownStatusCodeException22("The server returned an unknown status code: " + statusCode);
|
|
2653
2751
|
}
|
|
2654
2752
|
/**
|
|
2655
2753
|
* Deletes an existing identity
|
|
@@ -2676,7 +2774,7 @@ var BackendIdentityTag = class extends TagAbstract21 {
|
|
|
2676
2774
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2677
2775
|
throw new CommonMessageException(await response.json());
|
|
2678
2776
|
}
|
|
2679
|
-
throw new
|
|
2777
|
+
throw new UnknownStatusCodeException22("The server returned an unknown status code: " + statusCode);
|
|
2680
2778
|
}
|
|
2681
2779
|
/**
|
|
2682
2780
|
* Returns a specific identity
|
|
@@ -2703,7 +2801,7 @@ var BackendIdentityTag = class extends TagAbstract21 {
|
|
|
2703
2801
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2704
2802
|
throw new CommonMessageException(await response.json());
|
|
2705
2803
|
}
|
|
2706
|
-
throw new
|
|
2804
|
+
throw new UnknownStatusCodeException22("The server returned an unknown status code: " + statusCode);
|
|
2707
2805
|
}
|
|
2708
2806
|
/**
|
|
2709
2807
|
* Returns a paginated list of identities
|
|
@@ -2732,7 +2830,7 @@ var BackendIdentityTag = class extends TagAbstract21 {
|
|
|
2732
2830
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2733
2831
|
throw new CommonMessageException(await response.json());
|
|
2734
2832
|
}
|
|
2735
|
-
throw new
|
|
2833
|
+
throw new UnknownStatusCodeException22("The server returned an unknown status code: " + statusCode);
|
|
2736
2834
|
}
|
|
2737
2835
|
/**
|
|
2738
2836
|
* Returns all available identity classes
|
|
@@ -2757,7 +2855,7 @@ var BackendIdentityTag = class extends TagAbstract21 {
|
|
|
2757
2855
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2758
2856
|
throw new CommonMessageException(await response.json());
|
|
2759
2857
|
}
|
|
2760
|
-
throw new
|
|
2858
|
+
throw new UnknownStatusCodeException22("The server returned an unknown status code: " + statusCode);
|
|
2761
2859
|
}
|
|
2762
2860
|
/**
|
|
2763
2861
|
* Returns the identity config form
|
|
@@ -2784,7 +2882,7 @@ var BackendIdentityTag = class extends TagAbstract21 {
|
|
|
2784
2882
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2785
2883
|
throw new CommonMessageException(await response.json());
|
|
2786
2884
|
}
|
|
2787
|
-
throw new
|
|
2885
|
+
throw new UnknownStatusCodeException22("The server returned an unknown status code: " + statusCode);
|
|
2788
2886
|
}
|
|
2789
2887
|
/**
|
|
2790
2888
|
* Updates an existing identity
|
|
@@ -2814,14 +2912,14 @@ var BackendIdentityTag = class extends TagAbstract21 {
|
|
|
2814
2912
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2815
2913
|
throw new CommonMessageException(await response.json());
|
|
2816
2914
|
}
|
|
2817
|
-
throw new
|
|
2915
|
+
throw new UnknownStatusCodeException22("The server returned an unknown status code: " + statusCode);
|
|
2818
2916
|
}
|
|
2819
2917
|
};
|
|
2820
2918
|
|
|
2821
2919
|
// src/BackendLogTag.ts
|
|
2822
|
-
import { TagAbstract as
|
|
2823
|
-
import { UnknownStatusCodeException as
|
|
2824
|
-
var BackendLogTag = class extends
|
|
2920
|
+
import { TagAbstract as TagAbstract23 } from "sdkgen-client";
|
|
2921
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException23 } from "sdkgen-client";
|
|
2922
|
+
var BackendLogTag = class extends TagAbstract23 {
|
|
2825
2923
|
/**
|
|
2826
2924
|
* Returns a specific log
|
|
2827
2925
|
*
|
|
@@ -2847,7 +2945,7 @@ var BackendLogTag = class extends TagAbstract22 {
|
|
|
2847
2945
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2848
2946
|
throw new CommonMessageException(await response.json());
|
|
2849
2947
|
}
|
|
2850
|
-
throw new
|
|
2948
|
+
throw new UnknownStatusCodeException23("The server returned an unknown status code: " + statusCode);
|
|
2851
2949
|
}
|
|
2852
2950
|
/**
|
|
2853
2951
|
* Returns a paginated list of logs
|
|
@@ -2887,7 +2985,7 @@ var BackendLogTag = class extends TagAbstract22 {
|
|
|
2887
2985
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2888
2986
|
throw new CommonMessageException(await response.json());
|
|
2889
2987
|
}
|
|
2890
|
-
throw new
|
|
2988
|
+
throw new UnknownStatusCodeException23("The server returned an unknown status code: " + statusCode);
|
|
2891
2989
|
}
|
|
2892
2990
|
/**
|
|
2893
2991
|
* Returns a paginated list of log errors
|
|
@@ -2916,7 +3014,7 @@ var BackendLogTag = class extends TagAbstract22 {
|
|
|
2916
3014
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2917
3015
|
throw new CommonMessageException(await response.json());
|
|
2918
3016
|
}
|
|
2919
|
-
throw new
|
|
3017
|
+
throw new UnknownStatusCodeException23("The server returned an unknown status code: " + statusCode);
|
|
2920
3018
|
}
|
|
2921
3019
|
/**
|
|
2922
3020
|
* Returns a specific error
|
|
@@ -2943,14 +3041,14 @@ var BackendLogTag = class extends TagAbstract22 {
|
|
|
2943
3041
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2944
3042
|
throw new CommonMessageException(await response.json());
|
|
2945
3043
|
}
|
|
2946
|
-
throw new
|
|
3044
|
+
throw new UnknownStatusCodeException23("The server returned an unknown status code: " + statusCode);
|
|
2947
3045
|
}
|
|
2948
3046
|
};
|
|
2949
3047
|
|
|
2950
3048
|
// src/BackendMarketplaceActionTag.ts
|
|
2951
|
-
import { TagAbstract as
|
|
2952
|
-
import { UnknownStatusCodeException as
|
|
2953
|
-
var BackendMarketplaceActionTag = class extends
|
|
3049
|
+
import { TagAbstract as TagAbstract24 } from "sdkgen-client";
|
|
3050
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException24 } from "sdkgen-client";
|
|
3051
|
+
var BackendMarketplaceActionTag = class extends TagAbstract24 {
|
|
2954
3052
|
/**
|
|
2955
3053
|
* Returns a specific marketplace action
|
|
2956
3054
|
*
|
|
@@ -2977,7 +3075,7 @@ var BackendMarketplaceActionTag = class extends TagAbstract23 {
|
|
|
2977
3075
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2978
3076
|
throw new CommonMessageException(await response.json());
|
|
2979
3077
|
}
|
|
2980
|
-
throw new
|
|
3078
|
+
throw new UnknownStatusCodeException24("The server returned an unknown status code: " + statusCode);
|
|
2981
3079
|
}
|
|
2982
3080
|
/**
|
|
2983
3081
|
* Returns a paginated list of marketplace actions
|
|
@@ -3005,7 +3103,7 @@ var BackendMarketplaceActionTag = class extends TagAbstract23 {
|
|
|
3005
3103
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3006
3104
|
throw new CommonMessageException(await response.json());
|
|
3007
3105
|
}
|
|
3008
|
-
throw new
|
|
3106
|
+
throw new UnknownStatusCodeException24("The server returned an unknown status code: " + statusCode);
|
|
3009
3107
|
}
|
|
3010
3108
|
/**
|
|
3011
3109
|
* Installs an action from the marketplace
|
|
@@ -3033,7 +3131,7 @@ var BackendMarketplaceActionTag = class extends TagAbstract23 {
|
|
|
3033
3131
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3034
3132
|
throw new CommonMessageException(await response.json());
|
|
3035
3133
|
}
|
|
3036
|
-
throw new
|
|
3134
|
+
throw new UnknownStatusCodeException24("The server returned an unknown status code: " + statusCode);
|
|
3037
3135
|
}
|
|
3038
3136
|
/**
|
|
3039
3137
|
* Upgrades an action from the marketplace
|
|
@@ -3061,14 +3159,14 @@ var BackendMarketplaceActionTag = class extends TagAbstract23 {
|
|
|
3061
3159
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3062
3160
|
throw new CommonMessageException(await response.json());
|
|
3063
3161
|
}
|
|
3064
|
-
throw new
|
|
3162
|
+
throw new UnknownStatusCodeException24("The server returned an unknown status code: " + statusCode);
|
|
3065
3163
|
}
|
|
3066
3164
|
};
|
|
3067
3165
|
|
|
3068
3166
|
// src/BackendMarketplaceAppTag.ts
|
|
3069
|
-
import { TagAbstract as
|
|
3070
|
-
import { UnknownStatusCodeException as
|
|
3071
|
-
var BackendMarketplaceAppTag = class extends
|
|
3167
|
+
import { TagAbstract as TagAbstract25 } from "sdkgen-client";
|
|
3168
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException25 } from "sdkgen-client";
|
|
3169
|
+
var BackendMarketplaceAppTag = class extends TagAbstract25 {
|
|
3072
3170
|
/**
|
|
3073
3171
|
* Returns a specific marketplace app
|
|
3074
3172
|
*
|
|
@@ -3095,7 +3193,7 @@ var BackendMarketplaceAppTag = class extends TagAbstract24 {
|
|
|
3095
3193
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3096
3194
|
throw new CommonMessageException(await response.json());
|
|
3097
3195
|
}
|
|
3098
|
-
throw new
|
|
3196
|
+
throw new UnknownStatusCodeException25("The server returned an unknown status code: " + statusCode);
|
|
3099
3197
|
}
|
|
3100
3198
|
/**
|
|
3101
3199
|
* Returns a paginated list of marketplace apps
|
|
@@ -3123,7 +3221,7 @@ var BackendMarketplaceAppTag = class extends TagAbstract24 {
|
|
|
3123
3221
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3124
3222
|
throw new CommonMessageException(await response.json());
|
|
3125
3223
|
}
|
|
3126
|
-
throw new
|
|
3224
|
+
throw new UnknownStatusCodeException25("The server returned an unknown status code: " + statusCode);
|
|
3127
3225
|
}
|
|
3128
3226
|
/**
|
|
3129
3227
|
* Installs an app from the marketplace
|
|
@@ -3151,7 +3249,7 @@ var BackendMarketplaceAppTag = class extends TagAbstract24 {
|
|
|
3151
3249
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3152
3250
|
throw new CommonMessageException(await response.json());
|
|
3153
3251
|
}
|
|
3154
|
-
throw new
|
|
3252
|
+
throw new UnknownStatusCodeException25("The server returned an unknown status code: " + statusCode);
|
|
3155
3253
|
}
|
|
3156
3254
|
/**
|
|
3157
3255
|
* Upgrades an app from the marketplace
|
|
@@ -3179,14 +3277,14 @@ var BackendMarketplaceAppTag = class extends TagAbstract24 {
|
|
|
3179
3277
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3180
3278
|
throw new CommonMessageException(await response.json());
|
|
3181
3279
|
}
|
|
3182
|
-
throw new
|
|
3280
|
+
throw new UnknownStatusCodeException25("The server returned an unknown status code: " + statusCode);
|
|
3183
3281
|
}
|
|
3184
3282
|
};
|
|
3185
3283
|
|
|
3186
3284
|
// src/BackendMarketplaceBundleTag.ts
|
|
3187
|
-
import { TagAbstract as
|
|
3188
|
-
import { UnknownStatusCodeException as
|
|
3189
|
-
var BackendMarketplaceBundleTag = class extends
|
|
3285
|
+
import { TagAbstract as TagAbstract26 } from "sdkgen-client";
|
|
3286
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException26 } from "sdkgen-client";
|
|
3287
|
+
var BackendMarketplaceBundleTag = class extends TagAbstract26 {
|
|
3190
3288
|
/**
|
|
3191
3289
|
* Returns a specific marketplace bundle
|
|
3192
3290
|
*
|
|
@@ -3213,7 +3311,7 @@ var BackendMarketplaceBundleTag = class extends TagAbstract25 {
|
|
|
3213
3311
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3214
3312
|
throw new CommonMessageException(await response.json());
|
|
3215
3313
|
}
|
|
3216
|
-
throw new
|
|
3314
|
+
throw new UnknownStatusCodeException26("The server returned an unknown status code: " + statusCode);
|
|
3217
3315
|
}
|
|
3218
3316
|
/**
|
|
3219
3317
|
* Returns a paginated list of marketplace bundles
|
|
@@ -3241,7 +3339,7 @@ var BackendMarketplaceBundleTag = class extends TagAbstract25 {
|
|
|
3241
3339
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3242
3340
|
throw new CommonMessageException(await response.json());
|
|
3243
3341
|
}
|
|
3244
|
-
throw new
|
|
3342
|
+
throw new UnknownStatusCodeException26("The server returned an unknown status code: " + statusCode);
|
|
3245
3343
|
}
|
|
3246
3344
|
/**
|
|
3247
3345
|
* Installs an bundle from the marketplace
|
|
@@ -3269,7 +3367,7 @@ var BackendMarketplaceBundleTag = class extends TagAbstract25 {
|
|
|
3269
3367
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3270
3368
|
throw new CommonMessageException(await response.json());
|
|
3271
3369
|
}
|
|
3272
|
-
throw new
|
|
3370
|
+
throw new UnknownStatusCodeException26("The server returned an unknown status code: " + statusCode);
|
|
3273
3371
|
}
|
|
3274
3372
|
/**
|
|
3275
3373
|
* Upgrades an bundle from the marketplace
|
|
@@ -3297,13 +3395,13 @@ var BackendMarketplaceBundleTag = class extends TagAbstract25 {
|
|
|
3297
3395
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3298
3396
|
throw new CommonMessageException(await response.json());
|
|
3299
3397
|
}
|
|
3300
|
-
throw new
|
|
3398
|
+
throw new UnknownStatusCodeException26("The server returned an unknown status code: " + statusCode);
|
|
3301
3399
|
}
|
|
3302
3400
|
};
|
|
3303
3401
|
|
|
3304
3402
|
// src/BackendMarketplaceTag.ts
|
|
3305
|
-
import { TagAbstract as
|
|
3306
|
-
var BackendMarketplaceTag = class extends
|
|
3403
|
+
import { TagAbstract as TagAbstract27 } from "sdkgen-client";
|
|
3404
|
+
var BackendMarketplaceTag = class extends TagAbstract27 {
|
|
3307
3405
|
action() {
|
|
3308
3406
|
return new BackendMarketplaceActionTag(
|
|
3309
3407
|
this.httpClient,
|
|
@@ -3325,9 +3423,9 @@ var BackendMarketplaceTag = class extends TagAbstract26 {
|
|
|
3325
3423
|
};
|
|
3326
3424
|
|
|
3327
3425
|
// src/BackendOperationTag.ts
|
|
3328
|
-
import { TagAbstract as
|
|
3329
|
-
import { UnknownStatusCodeException as
|
|
3330
|
-
var BackendOperationTag = class extends
|
|
3426
|
+
import { TagAbstract as TagAbstract28 } from "sdkgen-client";
|
|
3427
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException27 } from "sdkgen-client";
|
|
3428
|
+
var BackendOperationTag = class extends TagAbstract28 {
|
|
3331
3429
|
/**
|
|
3332
3430
|
* Creates a new operation
|
|
3333
3431
|
*
|
|
@@ -3354,7 +3452,7 @@ var BackendOperationTag = class extends TagAbstract27 {
|
|
|
3354
3452
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3355
3453
|
throw new CommonMessageException(await response.json());
|
|
3356
3454
|
}
|
|
3357
|
-
throw new
|
|
3455
|
+
throw new UnknownStatusCodeException27("The server returned an unknown status code: " + statusCode);
|
|
3358
3456
|
}
|
|
3359
3457
|
/**
|
|
3360
3458
|
* Deletes an existing operation
|
|
@@ -3381,7 +3479,7 @@ var BackendOperationTag = class extends TagAbstract27 {
|
|
|
3381
3479
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3382
3480
|
throw new CommonMessageException(await response.json());
|
|
3383
3481
|
}
|
|
3384
|
-
throw new
|
|
3482
|
+
throw new UnknownStatusCodeException27("The server returned an unknown status code: " + statusCode);
|
|
3385
3483
|
}
|
|
3386
3484
|
/**
|
|
3387
3485
|
* Returns a specific operation
|
|
@@ -3408,7 +3506,7 @@ var BackendOperationTag = class extends TagAbstract27 {
|
|
|
3408
3506
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3409
3507
|
throw new CommonMessageException(await response.json());
|
|
3410
3508
|
}
|
|
3411
|
-
throw new
|
|
3509
|
+
throw new UnknownStatusCodeException27("The server returned an unknown status code: " + statusCode);
|
|
3412
3510
|
}
|
|
3413
3511
|
/**
|
|
3414
3512
|
* Returns a paginated list of operations
|
|
@@ -3437,7 +3535,7 @@ var BackendOperationTag = class extends TagAbstract27 {
|
|
|
3437
3535
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3438
3536
|
throw new CommonMessageException(await response.json());
|
|
3439
3537
|
}
|
|
3440
|
-
throw new
|
|
3538
|
+
throw new UnknownStatusCodeException27("The server returned an unknown status code: " + statusCode);
|
|
3441
3539
|
}
|
|
3442
3540
|
/**
|
|
3443
3541
|
* Updates an existing operation
|
|
@@ -3467,14 +3565,14 @@ var BackendOperationTag = class extends TagAbstract27 {
|
|
|
3467
3565
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3468
3566
|
throw new CommonMessageException(await response.json());
|
|
3469
3567
|
}
|
|
3470
|
-
throw new
|
|
3568
|
+
throw new UnknownStatusCodeException27("The server returned an unknown status code: " + statusCode);
|
|
3471
3569
|
}
|
|
3472
3570
|
};
|
|
3473
3571
|
|
|
3474
3572
|
// src/BackendPageTag.ts
|
|
3475
|
-
import { TagAbstract as
|
|
3476
|
-
import { UnknownStatusCodeException as
|
|
3477
|
-
var BackendPageTag = class extends
|
|
3573
|
+
import { TagAbstract as TagAbstract29 } from "sdkgen-client";
|
|
3574
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException28 } from "sdkgen-client";
|
|
3575
|
+
var BackendPageTag = class extends TagAbstract29 {
|
|
3478
3576
|
/**
|
|
3479
3577
|
* Creates a new page
|
|
3480
3578
|
*
|
|
@@ -3501,7 +3599,7 @@ var BackendPageTag = class extends TagAbstract28 {
|
|
|
3501
3599
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3502
3600
|
throw new CommonMessageException(await response.json());
|
|
3503
3601
|
}
|
|
3504
|
-
throw new
|
|
3602
|
+
throw new UnknownStatusCodeException28("The server returned an unknown status code: " + statusCode);
|
|
3505
3603
|
}
|
|
3506
3604
|
/**
|
|
3507
3605
|
* Deletes an existing page
|
|
@@ -3528,7 +3626,7 @@ var BackendPageTag = class extends TagAbstract28 {
|
|
|
3528
3626
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3529
3627
|
throw new CommonMessageException(await response.json());
|
|
3530
3628
|
}
|
|
3531
|
-
throw new
|
|
3629
|
+
throw new UnknownStatusCodeException28("The server returned an unknown status code: " + statusCode);
|
|
3532
3630
|
}
|
|
3533
3631
|
/**
|
|
3534
3632
|
* Returns a specific page
|
|
@@ -3555,7 +3653,7 @@ var BackendPageTag = class extends TagAbstract28 {
|
|
|
3555
3653
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3556
3654
|
throw new CommonMessageException(await response.json());
|
|
3557
3655
|
}
|
|
3558
|
-
throw new
|
|
3656
|
+
throw new UnknownStatusCodeException28("The server returned an unknown status code: " + statusCode);
|
|
3559
3657
|
}
|
|
3560
3658
|
/**
|
|
3561
3659
|
* Returns a paginated list of pages
|
|
@@ -3584,7 +3682,7 @@ var BackendPageTag = class extends TagAbstract28 {
|
|
|
3584
3682
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3585
3683
|
throw new CommonMessageException(await response.json());
|
|
3586
3684
|
}
|
|
3587
|
-
throw new
|
|
3685
|
+
throw new UnknownStatusCodeException28("The server returned an unknown status code: " + statusCode);
|
|
3588
3686
|
}
|
|
3589
3687
|
/**
|
|
3590
3688
|
* Updates an existing page
|
|
@@ -3614,14 +3712,14 @@ var BackendPageTag = class extends TagAbstract28 {
|
|
|
3614
3712
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3615
3713
|
throw new CommonMessageException(await response.json());
|
|
3616
3714
|
}
|
|
3617
|
-
throw new
|
|
3715
|
+
throw new UnknownStatusCodeException28("The server returned an unknown status code: " + statusCode);
|
|
3618
3716
|
}
|
|
3619
3717
|
};
|
|
3620
3718
|
|
|
3621
3719
|
// src/BackendPlanTag.ts
|
|
3622
|
-
import { TagAbstract as
|
|
3623
|
-
import { UnknownStatusCodeException as
|
|
3624
|
-
var BackendPlanTag = class extends
|
|
3720
|
+
import { TagAbstract as TagAbstract30 } from "sdkgen-client";
|
|
3721
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException29 } from "sdkgen-client";
|
|
3722
|
+
var BackendPlanTag = class extends TagAbstract30 {
|
|
3625
3723
|
/**
|
|
3626
3724
|
* Creates a new plan
|
|
3627
3725
|
*
|
|
@@ -3648,7 +3746,7 @@ var BackendPlanTag = class extends TagAbstract29 {
|
|
|
3648
3746
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3649
3747
|
throw new CommonMessageException(await response.json());
|
|
3650
3748
|
}
|
|
3651
|
-
throw new
|
|
3749
|
+
throw new UnknownStatusCodeException29("The server returned an unknown status code: " + statusCode);
|
|
3652
3750
|
}
|
|
3653
3751
|
/**
|
|
3654
3752
|
* Deletes an existing plan
|
|
@@ -3675,7 +3773,7 @@ var BackendPlanTag = class extends TagAbstract29 {
|
|
|
3675
3773
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3676
3774
|
throw new CommonMessageException(await response.json());
|
|
3677
3775
|
}
|
|
3678
|
-
throw new
|
|
3776
|
+
throw new UnknownStatusCodeException29("The server returned an unknown status code: " + statusCode);
|
|
3679
3777
|
}
|
|
3680
3778
|
/**
|
|
3681
3779
|
* Returns a specific plan
|
|
@@ -3702,7 +3800,7 @@ var BackendPlanTag = class extends TagAbstract29 {
|
|
|
3702
3800
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3703
3801
|
throw new CommonMessageException(await response.json());
|
|
3704
3802
|
}
|
|
3705
|
-
throw new
|
|
3803
|
+
throw new UnknownStatusCodeException29("The server returned an unknown status code: " + statusCode);
|
|
3706
3804
|
}
|
|
3707
3805
|
/**
|
|
3708
3806
|
* Returns a paginated list of plans
|
|
@@ -3731,7 +3829,7 @@ var BackendPlanTag = class extends TagAbstract29 {
|
|
|
3731
3829
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3732
3830
|
throw new CommonMessageException(await response.json());
|
|
3733
3831
|
}
|
|
3734
|
-
throw new
|
|
3832
|
+
throw new UnknownStatusCodeException29("The server returned an unknown status code: " + statusCode);
|
|
3735
3833
|
}
|
|
3736
3834
|
/**
|
|
3737
3835
|
* Updates an existing plan
|
|
@@ -3761,14 +3859,14 @@ var BackendPlanTag = class extends TagAbstract29 {
|
|
|
3761
3859
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3762
3860
|
throw new CommonMessageException(await response.json());
|
|
3763
3861
|
}
|
|
3764
|
-
throw new
|
|
3862
|
+
throw new UnknownStatusCodeException29("The server returned an unknown status code: " + statusCode);
|
|
3765
3863
|
}
|
|
3766
3864
|
};
|
|
3767
3865
|
|
|
3768
3866
|
// src/BackendRateTag.ts
|
|
3769
|
-
import { TagAbstract as
|
|
3770
|
-
import { UnknownStatusCodeException as
|
|
3771
|
-
var BackendRateTag = class extends
|
|
3867
|
+
import { TagAbstract as TagAbstract31 } from "sdkgen-client";
|
|
3868
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException30 } from "sdkgen-client";
|
|
3869
|
+
var BackendRateTag = class extends TagAbstract31 {
|
|
3772
3870
|
/**
|
|
3773
3871
|
* Creates a new rate limitation
|
|
3774
3872
|
*
|
|
@@ -3795,7 +3893,7 @@ var BackendRateTag = class extends TagAbstract30 {
|
|
|
3795
3893
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3796
3894
|
throw new CommonMessageException(await response.json());
|
|
3797
3895
|
}
|
|
3798
|
-
throw new
|
|
3896
|
+
throw new UnknownStatusCodeException30("The server returned an unknown status code: " + statusCode);
|
|
3799
3897
|
}
|
|
3800
3898
|
/**
|
|
3801
3899
|
* Deletes an existing rate
|
|
@@ -3822,7 +3920,7 @@ var BackendRateTag = class extends TagAbstract30 {
|
|
|
3822
3920
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3823
3921
|
throw new CommonMessageException(await response.json());
|
|
3824
3922
|
}
|
|
3825
|
-
throw new
|
|
3923
|
+
throw new UnknownStatusCodeException30("The server returned an unknown status code: " + statusCode);
|
|
3826
3924
|
}
|
|
3827
3925
|
/**
|
|
3828
3926
|
* Returns a specific rate
|
|
@@ -3849,7 +3947,7 @@ var BackendRateTag = class extends TagAbstract30 {
|
|
|
3849
3947
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3850
3948
|
throw new CommonMessageException(await response.json());
|
|
3851
3949
|
}
|
|
3852
|
-
throw new
|
|
3950
|
+
throw new UnknownStatusCodeException30("The server returned an unknown status code: " + statusCode);
|
|
3853
3951
|
}
|
|
3854
3952
|
/**
|
|
3855
3953
|
* Returns a paginated list of rate limitations
|
|
@@ -3878,7 +3976,7 @@ var BackendRateTag = class extends TagAbstract30 {
|
|
|
3878
3976
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3879
3977
|
throw new CommonMessageException(await response.json());
|
|
3880
3978
|
}
|
|
3881
|
-
throw new
|
|
3979
|
+
throw new UnknownStatusCodeException30("The server returned an unknown status code: " + statusCode);
|
|
3882
3980
|
}
|
|
3883
3981
|
/**
|
|
3884
3982
|
* Updates an existing rate
|
|
@@ -3908,14 +4006,14 @@ var BackendRateTag = class extends TagAbstract30 {
|
|
|
3908
4006
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3909
4007
|
throw new CommonMessageException(await response.json());
|
|
3910
4008
|
}
|
|
3911
|
-
throw new
|
|
4009
|
+
throw new UnknownStatusCodeException30("The server returned an unknown status code: " + statusCode);
|
|
3912
4010
|
}
|
|
3913
4011
|
};
|
|
3914
4012
|
|
|
3915
4013
|
// src/BackendRoleTag.ts
|
|
3916
|
-
import { TagAbstract as
|
|
3917
|
-
import { UnknownStatusCodeException as
|
|
3918
|
-
var BackendRoleTag = class extends
|
|
4014
|
+
import { TagAbstract as TagAbstract32 } from "sdkgen-client";
|
|
4015
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException31 } from "sdkgen-client";
|
|
4016
|
+
var BackendRoleTag = class extends TagAbstract32 {
|
|
3919
4017
|
/**
|
|
3920
4018
|
* Creates a new role
|
|
3921
4019
|
*
|
|
@@ -3942,7 +4040,7 @@ var BackendRoleTag = class extends TagAbstract31 {
|
|
|
3942
4040
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3943
4041
|
throw new CommonMessageException(await response.json());
|
|
3944
4042
|
}
|
|
3945
|
-
throw new
|
|
4043
|
+
throw new UnknownStatusCodeException31("The server returned an unknown status code: " + statusCode);
|
|
3946
4044
|
}
|
|
3947
4045
|
/**
|
|
3948
4046
|
* Deletes an existing role
|
|
@@ -3969,7 +4067,7 @@ var BackendRoleTag = class extends TagAbstract31 {
|
|
|
3969
4067
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3970
4068
|
throw new CommonMessageException(await response.json());
|
|
3971
4069
|
}
|
|
3972
|
-
throw new
|
|
4070
|
+
throw new UnknownStatusCodeException31("The server returned an unknown status code: " + statusCode);
|
|
3973
4071
|
}
|
|
3974
4072
|
/**
|
|
3975
4073
|
* Returns a specific role
|
|
@@ -3996,7 +4094,7 @@ var BackendRoleTag = class extends TagAbstract31 {
|
|
|
3996
4094
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3997
4095
|
throw new CommonMessageException(await response.json());
|
|
3998
4096
|
}
|
|
3999
|
-
throw new
|
|
4097
|
+
throw new UnknownStatusCodeException31("The server returned an unknown status code: " + statusCode);
|
|
4000
4098
|
}
|
|
4001
4099
|
/**
|
|
4002
4100
|
* Returns a paginated list of roles
|
|
@@ -4025,7 +4123,7 @@ var BackendRoleTag = class extends TagAbstract31 {
|
|
|
4025
4123
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4026
4124
|
throw new CommonMessageException(await response.json());
|
|
4027
4125
|
}
|
|
4028
|
-
throw new
|
|
4126
|
+
throw new UnknownStatusCodeException31("The server returned an unknown status code: " + statusCode);
|
|
4029
4127
|
}
|
|
4030
4128
|
/**
|
|
4031
4129
|
* Updates an existing role
|
|
@@ -4055,14 +4153,14 @@ var BackendRoleTag = class extends TagAbstract31 {
|
|
|
4055
4153
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4056
4154
|
throw new CommonMessageException(await response.json());
|
|
4057
4155
|
}
|
|
4058
|
-
throw new
|
|
4156
|
+
throw new UnknownStatusCodeException31("The server returned an unknown status code: " + statusCode);
|
|
4059
4157
|
}
|
|
4060
4158
|
};
|
|
4061
4159
|
|
|
4062
4160
|
// src/BackendSchemaTag.ts
|
|
4063
|
-
import { TagAbstract as
|
|
4064
|
-
import { UnknownStatusCodeException as
|
|
4065
|
-
var BackendSchemaTag = class extends
|
|
4161
|
+
import { TagAbstract as TagAbstract33 } from "sdkgen-client";
|
|
4162
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException32 } from "sdkgen-client";
|
|
4163
|
+
var BackendSchemaTag = class extends TagAbstract33 {
|
|
4066
4164
|
/**
|
|
4067
4165
|
* Creates a new schema
|
|
4068
4166
|
*
|
|
@@ -4089,7 +4187,7 @@ var BackendSchemaTag = class extends TagAbstract32 {
|
|
|
4089
4187
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4090
4188
|
throw new CommonMessageException(await response.json());
|
|
4091
4189
|
}
|
|
4092
|
-
throw new
|
|
4190
|
+
throw new UnknownStatusCodeException32("The server returned an unknown status code: " + statusCode);
|
|
4093
4191
|
}
|
|
4094
4192
|
/**
|
|
4095
4193
|
* Deletes an existing schema
|
|
@@ -4116,7 +4214,7 @@ var BackendSchemaTag = class extends TagAbstract32 {
|
|
|
4116
4214
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4117
4215
|
throw new CommonMessageException(await response.json());
|
|
4118
4216
|
}
|
|
4119
|
-
throw new
|
|
4217
|
+
throw new UnknownStatusCodeException32("The server returned an unknown status code: " + statusCode);
|
|
4120
4218
|
}
|
|
4121
4219
|
/**
|
|
4122
4220
|
* Returns a specific schema
|
|
@@ -4143,7 +4241,7 @@ var BackendSchemaTag = class extends TagAbstract32 {
|
|
|
4143
4241
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4144
4242
|
throw new CommonMessageException(await response.json());
|
|
4145
4243
|
}
|
|
4146
|
-
throw new
|
|
4244
|
+
throw new UnknownStatusCodeException32("The server returned an unknown status code: " + statusCode);
|
|
4147
4245
|
}
|
|
4148
4246
|
/**
|
|
4149
4247
|
* Returns a paginated list of schemas
|
|
@@ -4172,7 +4270,7 @@ var BackendSchemaTag = class extends TagAbstract32 {
|
|
|
4172
4270
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4173
4271
|
throw new CommonMessageException(await response.json());
|
|
4174
4272
|
}
|
|
4175
|
-
throw new
|
|
4273
|
+
throw new UnknownStatusCodeException32("The server returned an unknown status code: " + statusCode);
|
|
4176
4274
|
}
|
|
4177
4275
|
/**
|
|
4178
4276
|
* Returns a HTML preview of the provided schema
|
|
@@ -4199,7 +4297,7 @@ var BackendSchemaTag = class extends TagAbstract32 {
|
|
|
4199
4297
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4200
4298
|
throw new CommonMessageException(await response.json());
|
|
4201
4299
|
}
|
|
4202
|
-
throw new
|
|
4300
|
+
throw new UnknownStatusCodeException32("The server returned an unknown status code: " + statusCode);
|
|
4203
4301
|
}
|
|
4204
4302
|
/**
|
|
4205
4303
|
* Updates an existing schema
|
|
@@ -4229,14 +4327,14 @@ var BackendSchemaTag = class extends TagAbstract32 {
|
|
|
4229
4327
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4230
4328
|
throw new CommonMessageException(await response.json());
|
|
4231
4329
|
}
|
|
4232
|
-
throw new
|
|
4330
|
+
throw new UnknownStatusCodeException32("The server returned an unknown status code: " + statusCode);
|
|
4233
4331
|
}
|
|
4234
4332
|
};
|
|
4235
4333
|
|
|
4236
4334
|
// src/BackendScopeTag.ts
|
|
4237
|
-
import { TagAbstract as
|
|
4238
|
-
import { UnknownStatusCodeException as
|
|
4239
|
-
var BackendScopeTag = class extends
|
|
4335
|
+
import { TagAbstract as TagAbstract34 } from "sdkgen-client";
|
|
4336
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException33 } from "sdkgen-client";
|
|
4337
|
+
var BackendScopeTag = class extends TagAbstract34 {
|
|
4240
4338
|
/**
|
|
4241
4339
|
* Creates a new scope
|
|
4242
4340
|
*
|
|
@@ -4263,7 +4361,7 @@ var BackendScopeTag = class extends TagAbstract33 {
|
|
|
4263
4361
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4264
4362
|
throw new CommonMessageException(await response.json());
|
|
4265
4363
|
}
|
|
4266
|
-
throw new
|
|
4364
|
+
throw new UnknownStatusCodeException33("The server returned an unknown status code: " + statusCode);
|
|
4267
4365
|
}
|
|
4268
4366
|
/**
|
|
4269
4367
|
* Deletes an existing scope
|
|
@@ -4290,7 +4388,7 @@ var BackendScopeTag = class extends TagAbstract33 {
|
|
|
4290
4388
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4291
4389
|
throw new CommonMessageException(await response.json());
|
|
4292
4390
|
}
|
|
4293
|
-
throw new
|
|
4391
|
+
throw new UnknownStatusCodeException33("The server returned an unknown status code: " + statusCode);
|
|
4294
4392
|
}
|
|
4295
4393
|
/**
|
|
4296
4394
|
* Returns a specific scope
|
|
@@ -4317,7 +4415,7 @@ var BackendScopeTag = class extends TagAbstract33 {
|
|
|
4317
4415
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4318
4416
|
throw new CommonMessageException(await response.json());
|
|
4319
4417
|
}
|
|
4320
|
-
throw new
|
|
4418
|
+
throw new UnknownStatusCodeException33("The server returned an unknown status code: " + statusCode);
|
|
4321
4419
|
}
|
|
4322
4420
|
/**
|
|
4323
4421
|
* Returns a paginated list of scopes
|
|
@@ -4346,7 +4444,7 @@ var BackendScopeTag = class extends TagAbstract33 {
|
|
|
4346
4444
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4347
4445
|
throw new CommonMessageException(await response.json());
|
|
4348
4446
|
}
|
|
4349
|
-
throw new
|
|
4447
|
+
throw new UnknownStatusCodeException33("The server returned an unknown status code: " + statusCode);
|
|
4350
4448
|
}
|
|
4351
4449
|
/**
|
|
4352
4450
|
* Returns all available scopes grouped by category
|
|
@@ -4371,7 +4469,7 @@ var BackendScopeTag = class extends TagAbstract33 {
|
|
|
4371
4469
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4372
4470
|
throw new CommonMessageException(await response.json());
|
|
4373
4471
|
}
|
|
4374
|
-
throw new
|
|
4472
|
+
throw new UnknownStatusCodeException33("The server returned an unknown status code: " + statusCode);
|
|
4375
4473
|
}
|
|
4376
4474
|
/**
|
|
4377
4475
|
* Updates an existing scope
|
|
@@ -4401,14 +4499,14 @@ var BackendScopeTag = class extends TagAbstract33 {
|
|
|
4401
4499
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4402
4500
|
throw new CommonMessageException(await response.json());
|
|
4403
4501
|
}
|
|
4404
|
-
throw new
|
|
4502
|
+
throw new UnknownStatusCodeException33("The server returned an unknown status code: " + statusCode);
|
|
4405
4503
|
}
|
|
4406
4504
|
};
|
|
4407
4505
|
|
|
4408
4506
|
// src/BackendSdkTag.ts
|
|
4409
|
-
import { TagAbstract as
|
|
4410
|
-
import { UnknownStatusCodeException as
|
|
4411
|
-
var BackendSdkTag = class extends
|
|
4507
|
+
import { TagAbstract as TagAbstract35 } from "sdkgen-client";
|
|
4508
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException34 } from "sdkgen-client";
|
|
4509
|
+
var BackendSdkTag = class extends TagAbstract35 {
|
|
4412
4510
|
/**
|
|
4413
4511
|
* Generates a specific SDK
|
|
4414
4512
|
*
|
|
@@ -4435,7 +4533,7 @@ var BackendSdkTag = class extends TagAbstract34 {
|
|
|
4435
4533
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4436
4534
|
throw new CommonMessageException(await response.json());
|
|
4437
4535
|
}
|
|
4438
|
-
throw new
|
|
4536
|
+
throw new UnknownStatusCodeException34("The server returned an unknown status code: " + statusCode);
|
|
4439
4537
|
}
|
|
4440
4538
|
/**
|
|
4441
4539
|
* Returns a paginated list of SDKs
|
|
@@ -4460,14 +4558,14 @@ var BackendSdkTag = class extends TagAbstract34 {
|
|
|
4460
4558
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4461
4559
|
throw new CommonMessageException(await response.json());
|
|
4462
4560
|
}
|
|
4463
|
-
throw new
|
|
4561
|
+
throw new UnknownStatusCodeException34("The server returned an unknown status code: " + statusCode);
|
|
4464
4562
|
}
|
|
4465
4563
|
};
|
|
4466
4564
|
|
|
4467
4565
|
// src/BackendStatisticTag.ts
|
|
4468
|
-
import { TagAbstract as
|
|
4469
|
-
import { UnknownStatusCodeException as
|
|
4470
|
-
var BackendStatisticTag = class extends
|
|
4566
|
+
import { TagAbstract as TagAbstract36 } from "sdkgen-client";
|
|
4567
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException35 } from "sdkgen-client";
|
|
4568
|
+
var BackendStatisticTag = class extends TagAbstract36 {
|
|
4471
4569
|
/**
|
|
4472
4570
|
* Returns a statistic containing the activities per user
|
|
4473
4571
|
*
|
|
@@ -4506,7 +4604,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4506
4604
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4507
4605
|
throw new CommonMessageException(await response.json());
|
|
4508
4606
|
}
|
|
4509
|
-
throw new
|
|
4607
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4510
4608
|
}
|
|
4511
4609
|
/**
|
|
4512
4610
|
* Returns a statistic containing the request count
|
|
@@ -4546,7 +4644,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4546
4644
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4547
4645
|
throw new CommonMessageException(await response.json());
|
|
4548
4646
|
}
|
|
4549
|
-
throw new
|
|
4647
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4550
4648
|
}
|
|
4551
4649
|
/**
|
|
4552
4650
|
* Returns a statistic containing the errors per operation
|
|
@@ -4586,7 +4684,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4586
4684
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4587
4685
|
throw new CommonMessageException(await response.json());
|
|
4588
4686
|
}
|
|
4589
|
-
throw new
|
|
4687
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4590
4688
|
}
|
|
4591
4689
|
/**
|
|
4592
4690
|
* Returns a statistic containing the incoming requests
|
|
@@ -4626,7 +4724,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4626
4724
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4627
4725
|
throw new CommonMessageException(await response.json());
|
|
4628
4726
|
}
|
|
4629
|
-
throw new
|
|
4727
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4630
4728
|
}
|
|
4631
4729
|
/**
|
|
4632
4730
|
* Returns a statistic containing the incoming transactions
|
|
@@ -4666,7 +4764,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4666
4764
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4667
4765
|
throw new CommonMessageException(await response.json());
|
|
4668
4766
|
}
|
|
4669
|
-
throw new
|
|
4767
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4670
4768
|
}
|
|
4671
4769
|
/**
|
|
4672
4770
|
* Returns a statistic containing the issues tokens
|
|
@@ -4706,7 +4804,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4706
4804
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4707
4805
|
throw new CommonMessageException(await response.json());
|
|
4708
4806
|
}
|
|
4709
|
-
throw new
|
|
4807
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4710
4808
|
}
|
|
4711
4809
|
/**
|
|
4712
4810
|
* Returns a statistic containing the most used activities
|
|
@@ -4746,7 +4844,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4746
4844
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4747
4845
|
throw new CommonMessageException(await response.json());
|
|
4748
4846
|
}
|
|
4749
|
-
throw new
|
|
4847
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4750
4848
|
}
|
|
4751
4849
|
/**
|
|
4752
4850
|
* Returns a statistic containing the most used apps
|
|
@@ -4786,7 +4884,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4786
4884
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4787
4885
|
throw new CommonMessageException(await response.json());
|
|
4788
4886
|
}
|
|
4789
|
-
throw new
|
|
4887
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4790
4888
|
}
|
|
4791
4889
|
/**
|
|
4792
4890
|
* Returns a statistic containing the most used operations
|
|
@@ -4826,7 +4924,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4826
4924
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4827
4925
|
throw new CommonMessageException(await response.json());
|
|
4828
4926
|
}
|
|
4829
|
-
throw new
|
|
4927
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4830
4928
|
}
|
|
4831
4929
|
/**
|
|
4832
4930
|
* Returns a statistic containing the requests per ip
|
|
@@ -4866,7 +4964,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4866
4964
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4867
4965
|
throw new CommonMessageException(await response.json());
|
|
4868
4966
|
}
|
|
4869
|
-
throw new
|
|
4967
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4870
4968
|
}
|
|
4871
4969
|
/**
|
|
4872
4970
|
* Returns a statistic containing the requests per operation
|
|
@@ -4906,7 +5004,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4906
5004
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4907
5005
|
throw new CommonMessageException(await response.json());
|
|
4908
5006
|
}
|
|
4909
|
-
throw new
|
|
5007
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4910
5008
|
}
|
|
4911
5009
|
/**
|
|
4912
5010
|
* Returns a statistic containing the requests per user
|
|
@@ -4946,7 +5044,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4946
5044
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4947
5045
|
throw new CommonMessageException(await response.json());
|
|
4948
5046
|
}
|
|
4949
|
-
throw new
|
|
5047
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4950
5048
|
}
|
|
4951
5049
|
/**
|
|
4952
5050
|
* Returns a statistic containing the test coverage
|
|
@@ -4971,7 +5069,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
4971
5069
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4972
5070
|
throw new CommonMessageException(await response.json());
|
|
4973
5071
|
}
|
|
4974
|
-
throw new
|
|
5072
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
4975
5073
|
}
|
|
4976
5074
|
/**
|
|
4977
5075
|
* Returns a statistic containing the time average
|
|
@@ -5011,7 +5109,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
5011
5109
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5012
5110
|
throw new CommonMessageException(await response.json());
|
|
5013
5111
|
}
|
|
5014
|
-
throw new
|
|
5112
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
5015
5113
|
}
|
|
5016
5114
|
/**
|
|
5017
5115
|
* Returns a statistic containing the time per operation
|
|
@@ -5051,7 +5149,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
5051
5149
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5052
5150
|
throw new CommonMessageException(await response.json());
|
|
5053
5151
|
}
|
|
5054
|
-
throw new
|
|
5152
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
5055
5153
|
}
|
|
5056
5154
|
/**
|
|
5057
5155
|
* Returns a statistic containing the used points
|
|
@@ -5091,7 +5189,7 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
5091
5189
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5092
5190
|
throw new CommonMessageException(await response.json());
|
|
5093
5191
|
}
|
|
5094
|
-
throw new
|
|
5192
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
5095
5193
|
}
|
|
5096
5194
|
/**
|
|
5097
5195
|
* Returns a statistic containing the user registrations
|
|
@@ -5131,17 +5229,17 @@ var BackendStatisticTag = class extends TagAbstract35 {
|
|
|
5131
5229
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5132
5230
|
throw new CommonMessageException(await response.json());
|
|
5133
5231
|
}
|
|
5134
|
-
throw new
|
|
5232
|
+
throw new UnknownStatusCodeException35("The server returned an unknown status code: " + statusCode);
|
|
5135
5233
|
}
|
|
5136
5234
|
};
|
|
5137
5235
|
|
|
5138
5236
|
// src/BackendTag.ts
|
|
5139
|
-
import { TagAbstract as
|
|
5237
|
+
import { TagAbstract as TagAbstract45 } from "sdkgen-client";
|
|
5140
5238
|
|
|
5141
5239
|
// src/BackendTenantTag.ts
|
|
5142
|
-
import { TagAbstract as
|
|
5143
|
-
import { UnknownStatusCodeException as
|
|
5144
|
-
var BackendTenantTag = class extends
|
|
5240
|
+
import { TagAbstract as TagAbstract37 } from "sdkgen-client";
|
|
5241
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException36 } from "sdkgen-client";
|
|
5242
|
+
var BackendTenantTag = class extends TagAbstract37 {
|
|
5145
5243
|
/**
|
|
5146
5244
|
* Removes an existing tenant
|
|
5147
5245
|
*
|
|
@@ -5167,7 +5265,7 @@ var BackendTenantTag = class extends TagAbstract36 {
|
|
|
5167
5265
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5168
5266
|
throw new CommonMessageException(await response.json());
|
|
5169
5267
|
}
|
|
5170
|
-
throw new
|
|
5268
|
+
throw new UnknownStatusCodeException36("The server returned an unknown status code: " + statusCode);
|
|
5171
5269
|
}
|
|
5172
5270
|
/**
|
|
5173
5271
|
* Setup a new tenant
|
|
@@ -5194,14 +5292,14 @@ var BackendTenantTag = class extends TagAbstract36 {
|
|
|
5194
5292
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5195
5293
|
throw new CommonMessageException(await response.json());
|
|
5196
5294
|
}
|
|
5197
|
-
throw new
|
|
5295
|
+
throw new UnknownStatusCodeException36("The server returned an unknown status code: " + statusCode);
|
|
5198
5296
|
}
|
|
5199
5297
|
};
|
|
5200
5298
|
|
|
5201
5299
|
// src/BackendTestTag.ts
|
|
5202
|
-
import { TagAbstract as
|
|
5203
|
-
import { UnknownStatusCodeException as
|
|
5204
|
-
var BackendTestTag = class extends
|
|
5300
|
+
import { TagAbstract as TagAbstract38 } from "sdkgen-client";
|
|
5301
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException37 } from "sdkgen-client";
|
|
5302
|
+
var BackendTestTag = class extends TagAbstract38 {
|
|
5205
5303
|
/**
|
|
5206
5304
|
* Returns a specific test
|
|
5207
5305
|
*
|
|
@@ -5227,7 +5325,7 @@ var BackendTestTag = class extends TagAbstract37 {
|
|
|
5227
5325
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5228
5326
|
throw new CommonMessageException(await response.json());
|
|
5229
5327
|
}
|
|
5230
|
-
throw new
|
|
5328
|
+
throw new UnknownStatusCodeException37("The server returned an unknown status code: " + statusCode);
|
|
5231
5329
|
}
|
|
5232
5330
|
/**
|
|
5233
5331
|
* Returns a paginated list of tests
|
|
@@ -5256,7 +5354,7 @@ var BackendTestTag = class extends TagAbstract37 {
|
|
|
5256
5354
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5257
5355
|
throw new CommonMessageException(await response.json());
|
|
5258
5356
|
}
|
|
5259
|
-
throw new
|
|
5357
|
+
throw new UnknownStatusCodeException37("The server returned an unknown status code: " + statusCode);
|
|
5260
5358
|
}
|
|
5261
5359
|
/**
|
|
5262
5360
|
* Refresh all tests
|
|
@@ -5281,7 +5379,7 @@ var BackendTestTag = class extends TagAbstract37 {
|
|
|
5281
5379
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5282
5380
|
throw new CommonMessageException(await response.json());
|
|
5283
5381
|
}
|
|
5284
|
-
throw new
|
|
5382
|
+
throw new UnknownStatusCodeException37("The server returned an unknown status code: " + statusCode);
|
|
5285
5383
|
}
|
|
5286
5384
|
/**
|
|
5287
5385
|
* Run all tests
|
|
@@ -5306,7 +5404,7 @@ var BackendTestTag = class extends TagAbstract37 {
|
|
|
5306
5404
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5307
5405
|
throw new CommonMessageException(await response.json());
|
|
5308
5406
|
}
|
|
5309
|
-
throw new
|
|
5407
|
+
throw new UnknownStatusCodeException37("The server returned an unknown status code: " + statusCode);
|
|
5310
5408
|
}
|
|
5311
5409
|
/**
|
|
5312
5410
|
* Updates an existing test
|
|
@@ -5336,14 +5434,14 @@ var BackendTestTag = class extends TagAbstract37 {
|
|
|
5336
5434
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5337
5435
|
throw new CommonMessageException(await response.json());
|
|
5338
5436
|
}
|
|
5339
|
-
throw new
|
|
5437
|
+
throw new UnknownStatusCodeException37("The server returned an unknown status code: " + statusCode);
|
|
5340
5438
|
}
|
|
5341
5439
|
};
|
|
5342
5440
|
|
|
5343
5441
|
// src/BackendTokenTag.ts
|
|
5344
|
-
import { TagAbstract as
|
|
5345
|
-
import { UnknownStatusCodeException as
|
|
5346
|
-
var BackendTokenTag = class extends
|
|
5442
|
+
import { TagAbstract as TagAbstract39 } from "sdkgen-client";
|
|
5443
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException38 } from "sdkgen-client";
|
|
5444
|
+
var BackendTokenTag = class extends TagAbstract39 {
|
|
5347
5445
|
/**
|
|
5348
5446
|
* Returns a specific token
|
|
5349
5447
|
*
|
|
@@ -5369,7 +5467,7 @@ var BackendTokenTag = class extends TagAbstract38 {
|
|
|
5369
5467
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5370
5468
|
throw new CommonMessageException(await response.json());
|
|
5371
5469
|
}
|
|
5372
|
-
throw new
|
|
5470
|
+
throw new UnknownStatusCodeException38("The server returned an unknown status code: " + statusCode);
|
|
5373
5471
|
}
|
|
5374
5472
|
/**
|
|
5375
5473
|
* Returns a paginated list of tokens
|
|
@@ -5405,14 +5503,14 @@ var BackendTokenTag = class extends TagAbstract38 {
|
|
|
5405
5503
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5406
5504
|
throw new CommonMessageException(await response.json());
|
|
5407
5505
|
}
|
|
5408
|
-
throw new
|
|
5506
|
+
throw new UnknownStatusCodeException38("The server returned an unknown status code: " + statusCode);
|
|
5409
5507
|
}
|
|
5410
5508
|
};
|
|
5411
5509
|
|
|
5412
5510
|
// src/BackendTransactionTag.ts
|
|
5413
|
-
import { TagAbstract as
|
|
5414
|
-
import { UnknownStatusCodeException as
|
|
5415
|
-
var BackendTransactionTag = class extends
|
|
5511
|
+
import { TagAbstract as TagAbstract40 } from "sdkgen-client";
|
|
5512
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException39 } from "sdkgen-client";
|
|
5513
|
+
var BackendTransactionTag = class extends TagAbstract40 {
|
|
5416
5514
|
/**
|
|
5417
5515
|
* Returns a specific transaction
|
|
5418
5516
|
*
|
|
@@ -5438,7 +5536,7 @@ var BackendTransactionTag = class extends TagAbstract39 {
|
|
|
5438
5536
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5439
5537
|
throw new CommonMessageException(await response.json());
|
|
5440
5538
|
}
|
|
5441
|
-
throw new
|
|
5539
|
+
throw new UnknownStatusCodeException39("The server returned an unknown status code: " + statusCode);
|
|
5442
5540
|
}
|
|
5443
5541
|
/**
|
|
5444
5542
|
* Returns a paginated list of transactions
|
|
@@ -5474,14 +5572,14 @@ var BackendTransactionTag = class extends TagAbstract39 {
|
|
|
5474
5572
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5475
5573
|
throw new CommonMessageException(await response.json());
|
|
5476
5574
|
}
|
|
5477
|
-
throw new
|
|
5575
|
+
throw new UnknownStatusCodeException39("The server returned an unknown status code: " + statusCode);
|
|
5478
5576
|
}
|
|
5479
5577
|
};
|
|
5480
5578
|
|
|
5481
5579
|
// src/BackendTrashTag.ts
|
|
5482
|
-
import { TagAbstract as
|
|
5483
|
-
import { UnknownStatusCodeException as
|
|
5484
|
-
var BackendTrashTag = class extends
|
|
5580
|
+
import { TagAbstract as TagAbstract41 } from "sdkgen-client";
|
|
5581
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException40 } from "sdkgen-client";
|
|
5582
|
+
var BackendTrashTag = class extends TagAbstract41 {
|
|
5485
5583
|
/**
|
|
5486
5584
|
* Returns all deleted records by trash type
|
|
5487
5585
|
*
|
|
@@ -5511,7 +5609,7 @@ var BackendTrashTag = class extends TagAbstract40 {
|
|
|
5511
5609
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5512
5610
|
throw new CommonMessageException(await response.json());
|
|
5513
5611
|
}
|
|
5514
|
-
throw new
|
|
5612
|
+
throw new UnknownStatusCodeException40("The server returned an unknown status code: " + statusCode);
|
|
5515
5613
|
}
|
|
5516
5614
|
/**
|
|
5517
5615
|
* Returns all trash types
|
|
@@ -5536,7 +5634,7 @@ var BackendTrashTag = class extends TagAbstract40 {
|
|
|
5536
5634
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5537
5635
|
throw new CommonMessageException(await response.json());
|
|
5538
5636
|
}
|
|
5539
|
-
throw new
|
|
5637
|
+
throw new UnknownStatusCodeException40("The server returned an unknown status code: " + statusCode);
|
|
5540
5638
|
}
|
|
5541
5639
|
/**
|
|
5542
5640
|
* Restores a previously deleted record
|
|
@@ -5566,14 +5664,14 @@ var BackendTrashTag = class extends TagAbstract40 {
|
|
|
5566
5664
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5567
5665
|
throw new CommonMessageException(await response.json());
|
|
5568
5666
|
}
|
|
5569
|
-
throw new
|
|
5667
|
+
throw new UnknownStatusCodeException40("The server returned an unknown status code: " + statusCode);
|
|
5570
5668
|
}
|
|
5571
5669
|
};
|
|
5572
5670
|
|
|
5573
5671
|
// src/BackendTriggerTag.ts
|
|
5574
|
-
import { TagAbstract as
|
|
5575
|
-
import { UnknownStatusCodeException as
|
|
5576
|
-
var BackendTriggerTag = class extends
|
|
5672
|
+
import { TagAbstract as TagAbstract42 } from "sdkgen-client";
|
|
5673
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException41 } from "sdkgen-client";
|
|
5674
|
+
var BackendTriggerTag = class extends TagAbstract42 {
|
|
5577
5675
|
/**
|
|
5578
5676
|
* Creates a new trigger
|
|
5579
5677
|
*
|
|
@@ -5600,7 +5698,7 @@ var BackendTriggerTag = class extends TagAbstract41 {
|
|
|
5600
5698
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5601
5699
|
throw new CommonMessageException(await response.json());
|
|
5602
5700
|
}
|
|
5603
|
-
throw new
|
|
5701
|
+
throw new UnknownStatusCodeException41("The server returned an unknown status code: " + statusCode);
|
|
5604
5702
|
}
|
|
5605
5703
|
/**
|
|
5606
5704
|
* Deletes an existing trigger
|
|
@@ -5627,7 +5725,7 @@ var BackendTriggerTag = class extends TagAbstract41 {
|
|
|
5627
5725
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5628
5726
|
throw new CommonMessageException(await response.json());
|
|
5629
5727
|
}
|
|
5630
|
-
throw new
|
|
5728
|
+
throw new UnknownStatusCodeException41("The server returned an unknown status code: " + statusCode);
|
|
5631
5729
|
}
|
|
5632
5730
|
/**
|
|
5633
5731
|
* Returns a specific trigger
|
|
@@ -5654,7 +5752,7 @@ var BackendTriggerTag = class extends TagAbstract41 {
|
|
|
5654
5752
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5655
5753
|
throw new CommonMessageException(await response.json());
|
|
5656
5754
|
}
|
|
5657
|
-
throw new
|
|
5755
|
+
throw new UnknownStatusCodeException41("The server returned an unknown status code: " + statusCode);
|
|
5658
5756
|
}
|
|
5659
5757
|
/**
|
|
5660
5758
|
* Returns a paginated list of triggers
|
|
@@ -5683,7 +5781,7 @@ var BackendTriggerTag = class extends TagAbstract41 {
|
|
|
5683
5781
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5684
5782
|
throw new CommonMessageException(await response.json());
|
|
5685
5783
|
}
|
|
5686
|
-
throw new
|
|
5784
|
+
throw new UnknownStatusCodeException41("The server returned an unknown status code: " + statusCode);
|
|
5687
5785
|
}
|
|
5688
5786
|
/**
|
|
5689
5787
|
* Updates an existing trigger
|
|
@@ -5713,14 +5811,14 @@ var BackendTriggerTag = class extends TagAbstract41 {
|
|
|
5713
5811
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5714
5812
|
throw new CommonMessageException(await response.json());
|
|
5715
5813
|
}
|
|
5716
|
-
throw new
|
|
5814
|
+
throw new UnknownStatusCodeException41("The server returned an unknown status code: " + statusCode);
|
|
5717
5815
|
}
|
|
5718
5816
|
};
|
|
5719
5817
|
|
|
5720
5818
|
// src/BackendUserTag.ts
|
|
5721
|
-
import { TagAbstract as
|
|
5722
|
-
import { UnknownStatusCodeException as
|
|
5723
|
-
var BackendUserTag = class extends
|
|
5819
|
+
import { TagAbstract as TagAbstract43 } from "sdkgen-client";
|
|
5820
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException42 } from "sdkgen-client";
|
|
5821
|
+
var BackendUserTag = class extends TagAbstract43 {
|
|
5724
5822
|
/**
|
|
5725
5823
|
* Creates a new user
|
|
5726
5824
|
*
|
|
@@ -5747,7 +5845,7 @@ var BackendUserTag = class extends TagAbstract42 {
|
|
|
5747
5845
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5748
5846
|
throw new CommonMessageException(await response.json());
|
|
5749
5847
|
}
|
|
5750
|
-
throw new
|
|
5848
|
+
throw new UnknownStatusCodeException42("The server returned an unknown status code: " + statusCode);
|
|
5751
5849
|
}
|
|
5752
5850
|
/**
|
|
5753
5851
|
* Deletes an existing user
|
|
@@ -5774,7 +5872,7 @@ var BackendUserTag = class extends TagAbstract42 {
|
|
|
5774
5872
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5775
5873
|
throw new CommonMessageException(await response.json());
|
|
5776
5874
|
}
|
|
5777
|
-
throw new
|
|
5875
|
+
throw new UnknownStatusCodeException42("The server returned an unknown status code: " + statusCode);
|
|
5778
5876
|
}
|
|
5779
5877
|
/**
|
|
5780
5878
|
* Returns a specific user
|
|
@@ -5801,7 +5899,7 @@ var BackendUserTag = class extends TagAbstract42 {
|
|
|
5801
5899
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5802
5900
|
throw new CommonMessageException(await response.json());
|
|
5803
5901
|
}
|
|
5804
|
-
throw new
|
|
5902
|
+
throw new UnknownStatusCodeException42("The server returned an unknown status code: " + statusCode);
|
|
5805
5903
|
}
|
|
5806
5904
|
/**
|
|
5807
5905
|
* Returns a paginated list of users
|
|
@@ -5830,7 +5928,7 @@ var BackendUserTag = class extends TagAbstract42 {
|
|
|
5830
5928
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5831
5929
|
throw new CommonMessageException(await response.json());
|
|
5832
5930
|
}
|
|
5833
|
-
throw new
|
|
5931
|
+
throw new UnknownStatusCodeException42("The server returned an unknown status code: " + statusCode);
|
|
5834
5932
|
}
|
|
5835
5933
|
/**
|
|
5836
5934
|
* Resend the activation mail to the provided user
|
|
@@ -5860,7 +5958,7 @@ var BackendUserTag = class extends TagAbstract42 {
|
|
|
5860
5958
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5861
5959
|
throw new CommonMessageException(await response.json());
|
|
5862
5960
|
}
|
|
5863
|
-
throw new
|
|
5961
|
+
throw new UnknownStatusCodeException42("The server returned an unknown status code: " + statusCode);
|
|
5864
5962
|
}
|
|
5865
5963
|
/**
|
|
5866
5964
|
* Updates an existing user
|
|
@@ -5890,14 +5988,14 @@ var BackendUserTag = class extends TagAbstract42 {
|
|
|
5890
5988
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5891
5989
|
throw new CommonMessageException(await response.json());
|
|
5892
5990
|
}
|
|
5893
|
-
throw new
|
|
5991
|
+
throw new UnknownStatusCodeException42("The server returned an unknown status code: " + statusCode);
|
|
5894
5992
|
}
|
|
5895
5993
|
};
|
|
5896
5994
|
|
|
5897
5995
|
// src/BackendWebhookTag.ts
|
|
5898
|
-
import { TagAbstract as
|
|
5899
|
-
import { UnknownStatusCodeException as
|
|
5900
|
-
var BackendWebhookTag = class extends
|
|
5996
|
+
import { TagAbstract as TagAbstract44 } from "sdkgen-client";
|
|
5997
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException43 } from "sdkgen-client";
|
|
5998
|
+
var BackendWebhookTag = class extends TagAbstract44 {
|
|
5901
5999
|
/**
|
|
5902
6000
|
* Creates a new webhook
|
|
5903
6001
|
*
|
|
@@ -5924,7 +6022,7 @@ var BackendWebhookTag = class extends TagAbstract43 {
|
|
|
5924
6022
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5925
6023
|
throw new CommonMessageException(await response.json());
|
|
5926
6024
|
}
|
|
5927
|
-
throw new
|
|
6025
|
+
throw new UnknownStatusCodeException43("The server returned an unknown status code: " + statusCode);
|
|
5928
6026
|
}
|
|
5929
6027
|
/**
|
|
5930
6028
|
* Deletes an existing webhook
|
|
@@ -5951,7 +6049,7 @@ var BackendWebhookTag = class extends TagAbstract43 {
|
|
|
5951
6049
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5952
6050
|
throw new CommonMessageException(await response.json());
|
|
5953
6051
|
}
|
|
5954
|
-
throw new
|
|
6052
|
+
throw new UnknownStatusCodeException43("The server returned an unknown status code: " + statusCode);
|
|
5955
6053
|
}
|
|
5956
6054
|
/**
|
|
5957
6055
|
* Returns a specific webhook
|
|
@@ -5978,7 +6076,7 @@ var BackendWebhookTag = class extends TagAbstract43 {
|
|
|
5978
6076
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5979
6077
|
throw new CommonMessageException(await response.json());
|
|
5980
6078
|
}
|
|
5981
|
-
throw new
|
|
6079
|
+
throw new UnknownStatusCodeException43("The server returned an unknown status code: " + statusCode);
|
|
5982
6080
|
}
|
|
5983
6081
|
/**
|
|
5984
6082
|
* Returns a paginated list of webhooks
|
|
@@ -6007,7 +6105,7 @@ var BackendWebhookTag = class extends TagAbstract43 {
|
|
|
6007
6105
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6008
6106
|
throw new CommonMessageException(await response.json());
|
|
6009
6107
|
}
|
|
6010
|
-
throw new
|
|
6108
|
+
throw new UnknownStatusCodeException43("The server returned an unknown status code: " + statusCode);
|
|
6011
6109
|
}
|
|
6012
6110
|
/**
|
|
6013
6111
|
* Updates an existing webhook
|
|
@@ -6037,12 +6135,12 @@ var BackendWebhookTag = class extends TagAbstract43 {
|
|
|
6037
6135
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6038
6136
|
throw new CommonMessageException(await response.json());
|
|
6039
6137
|
}
|
|
6040
|
-
throw new
|
|
6138
|
+
throw new UnknownStatusCodeException43("The server returned an unknown status code: " + statusCode);
|
|
6041
6139
|
}
|
|
6042
6140
|
};
|
|
6043
6141
|
|
|
6044
6142
|
// src/BackendTag.ts
|
|
6045
|
-
var BackendTag = class extends
|
|
6143
|
+
var BackendTag = class extends TagAbstract45 {
|
|
6046
6144
|
account() {
|
|
6047
6145
|
return new BackendAccountTag(
|
|
6048
6146
|
this.httpClient,
|
|
@@ -6260,12 +6358,12 @@ import { ClientAbstract } from "sdkgen-client";
|
|
|
6260
6358
|
import { Anonymous } from "sdkgen-client";
|
|
6261
6359
|
|
|
6262
6360
|
// src/ConsumerTag.ts
|
|
6263
|
-
import { TagAbstract as
|
|
6361
|
+
import { TagAbstract as TagAbstract60 } from "sdkgen-client";
|
|
6264
6362
|
|
|
6265
6363
|
// src/ConsumerAccountTag.ts
|
|
6266
|
-
import { TagAbstract as
|
|
6267
|
-
import { UnknownStatusCodeException as
|
|
6268
|
-
var ConsumerAccountTag = class extends
|
|
6364
|
+
import { TagAbstract as TagAbstract46 } from "sdkgen-client";
|
|
6365
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException44 } from "sdkgen-client";
|
|
6366
|
+
var ConsumerAccountTag = class extends TagAbstract46 {
|
|
6269
6367
|
/**
|
|
6270
6368
|
* Activates an previously registered account through a token which was provided to the user via email
|
|
6271
6369
|
*
|
|
@@ -6292,7 +6390,7 @@ var ConsumerAccountTag = class extends TagAbstract45 {
|
|
|
6292
6390
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6293
6391
|
throw new CommonMessageException(await response.json());
|
|
6294
6392
|
}
|
|
6295
|
-
throw new
|
|
6393
|
+
throw new UnknownStatusCodeException44("The server returned an unknown status code: " + statusCode);
|
|
6296
6394
|
}
|
|
6297
6395
|
/**
|
|
6298
6396
|
* Authorizes the access of a specific app for the authenticated user
|
|
@@ -6320,7 +6418,7 @@ var ConsumerAccountTag = class extends TagAbstract45 {
|
|
|
6320
6418
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6321
6419
|
throw new CommonMessageException(await response.json());
|
|
6322
6420
|
}
|
|
6323
|
-
throw new
|
|
6421
|
+
throw new UnknownStatusCodeException44("The server returned an unknown status code: " + statusCode);
|
|
6324
6422
|
}
|
|
6325
6423
|
/**
|
|
6326
6424
|
* Change the password for the authenticated user
|
|
@@ -6348,7 +6446,7 @@ var ConsumerAccountTag = class extends TagAbstract45 {
|
|
|
6348
6446
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6349
6447
|
throw new CommonMessageException(await response.json());
|
|
6350
6448
|
}
|
|
6351
|
-
throw new
|
|
6449
|
+
throw new UnknownStatusCodeException44("The server returned an unknown status code: " + statusCode);
|
|
6352
6450
|
}
|
|
6353
6451
|
/**
|
|
6354
6452
|
* Change the password after the password reset flow was started
|
|
@@ -6376,7 +6474,7 @@ var ConsumerAccountTag = class extends TagAbstract45 {
|
|
|
6376
6474
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6377
6475
|
throw new CommonMessageException(await response.json());
|
|
6378
6476
|
}
|
|
6379
|
-
throw new
|
|
6477
|
+
throw new UnknownStatusCodeException44("The server returned an unknown status code: " + statusCode);
|
|
6380
6478
|
}
|
|
6381
6479
|
/**
|
|
6382
6480
|
* Returns a user data for the authenticated user
|
|
@@ -6401,7 +6499,7 @@ var ConsumerAccountTag = class extends TagAbstract45 {
|
|
|
6401
6499
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6402
6500
|
throw new CommonMessageException(await response.json());
|
|
6403
6501
|
}
|
|
6404
|
-
throw new
|
|
6502
|
+
throw new UnknownStatusCodeException44("The server returned an unknown status code: " + statusCode);
|
|
6405
6503
|
}
|
|
6406
6504
|
/**
|
|
6407
6505
|
* Returns information about a specific app to start the OAuth2 authorization code flow
|
|
@@ -6429,7 +6527,7 @@ var ConsumerAccountTag = class extends TagAbstract45 {
|
|
|
6429
6527
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6430
6528
|
throw new CommonMessageException(await response.json());
|
|
6431
6529
|
}
|
|
6432
|
-
throw new
|
|
6530
|
+
throw new UnknownStatusCodeException44("The server returned an unknown status code: " + statusCode);
|
|
6433
6531
|
}
|
|
6434
6532
|
/**
|
|
6435
6533
|
* User login by providing a username and password
|
|
@@ -6457,7 +6555,7 @@ var ConsumerAccountTag = class extends TagAbstract45 {
|
|
|
6457
6555
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6458
6556
|
throw new CommonMessageException(await response.json());
|
|
6459
6557
|
}
|
|
6460
|
-
throw new
|
|
6558
|
+
throw new UnknownStatusCodeException44("The server returned an unknown status code: " + statusCode);
|
|
6461
6559
|
}
|
|
6462
6560
|
/**
|
|
6463
6561
|
* Refresh a previously obtained access token
|
|
@@ -6485,7 +6583,7 @@ var ConsumerAccountTag = class extends TagAbstract45 {
|
|
|
6485
6583
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6486
6584
|
throw new CommonMessageException(await response.json());
|
|
6487
6585
|
}
|
|
6488
|
-
throw new
|
|
6586
|
+
throw new UnknownStatusCodeException44("The server returned an unknown status code: " + statusCode);
|
|
6489
6587
|
}
|
|
6490
6588
|
/**
|
|
6491
6589
|
* Register a new user account
|
|
@@ -6513,7 +6611,7 @@ var ConsumerAccountTag = class extends TagAbstract45 {
|
|
|
6513
6611
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6514
6612
|
throw new CommonMessageException(await response.json());
|
|
6515
6613
|
}
|
|
6516
|
-
throw new
|
|
6614
|
+
throw new UnknownStatusCodeException44("The server returned an unknown status code: " + statusCode);
|
|
6517
6615
|
}
|
|
6518
6616
|
/**
|
|
6519
6617
|
* Start the password reset flow
|
|
@@ -6541,7 +6639,7 @@ var ConsumerAccountTag = class extends TagAbstract45 {
|
|
|
6541
6639
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6542
6640
|
throw new CommonMessageException(await response.json());
|
|
6543
6641
|
}
|
|
6544
|
-
throw new
|
|
6642
|
+
throw new UnknownStatusCodeException44("The server returned an unknown status code: " + statusCode);
|
|
6545
6643
|
}
|
|
6546
6644
|
/**
|
|
6547
6645
|
* Updates user data for the authenticated user
|
|
@@ -6569,14 +6667,14 @@ var ConsumerAccountTag = class extends TagAbstract45 {
|
|
|
6569
6667
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6570
6668
|
throw new CommonMessageException(await response.json());
|
|
6571
6669
|
}
|
|
6572
|
-
throw new
|
|
6670
|
+
throw new UnknownStatusCodeException44("The server returned an unknown status code: " + statusCode);
|
|
6573
6671
|
}
|
|
6574
6672
|
};
|
|
6575
6673
|
|
|
6576
6674
|
// src/ConsumerAppTag.ts
|
|
6577
|
-
import { TagAbstract as
|
|
6578
|
-
import { UnknownStatusCodeException as
|
|
6579
|
-
var ConsumerAppTag = class extends
|
|
6675
|
+
import { TagAbstract as TagAbstract47 } from "sdkgen-client";
|
|
6676
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException45 } from "sdkgen-client";
|
|
6677
|
+
var ConsumerAppTag = class extends TagAbstract47 {
|
|
6580
6678
|
/**
|
|
6581
6679
|
* Creates a new app for the authenticated user
|
|
6582
6680
|
*
|
|
@@ -6603,7 +6701,7 @@ var ConsumerAppTag = class extends TagAbstract46 {
|
|
|
6603
6701
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6604
6702
|
throw new CommonMessageException(await response.json());
|
|
6605
6703
|
}
|
|
6606
|
-
throw new
|
|
6704
|
+
throw new UnknownStatusCodeException45("The server returned an unknown status code: " + statusCode);
|
|
6607
6705
|
}
|
|
6608
6706
|
/**
|
|
6609
6707
|
* Deletes an existing app for the authenticated user
|
|
@@ -6630,7 +6728,7 @@ var ConsumerAppTag = class extends TagAbstract46 {
|
|
|
6630
6728
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6631
6729
|
throw new CommonMessageException(await response.json());
|
|
6632
6730
|
}
|
|
6633
|
-
throw new
|
|
6731
|
+
throw new UnknownStatusCodeException45("The server returned an unknown status code: " + statusCode);
|
|
6634
6732
|
}
|
|
6635
6733
|
/**
|
|
6636
6734
|
* Returns a specific app for the authenticated user
|
|
@@ -6657,7 +6755,7 @@ var ConsumerAppTag = class extends TagAbstract46 {
|
|
|
6657
6755
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6658
6756
|
throw new CommonMessageException(await response.json());
|
|
6659
6757
|
}
|
|
6660
|
-
throw new
|
|
6758
|
+
throw new UnknownStatusCodeException45("The server returned an unknown status code: " + statusCode);
|
|
6661
6759
|
}
|
|
6662
6760
|
/**
|
|
6663
6761
|
* Returns a paginated list of apps which are assigned to the authenticated user
|
|
@@ -6686,7 +6784,7 @@ var ConsumerAppTag = class extends TagAbstract46 {
|
|
|
6686
6784
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6687
6785
|
throw new CommonMessageException(await response.json());
|
|
6688
6786
|
}
|
|
6689
|
-
throw new
|
|
6787
|
+
throw new UnknownStatusCodeException45("The server returned an unknown status code: " + statusCode);
|
|
6690
6788
|
}
|
|
6691
6789
|
/**
|
|
6692
6790
|
* Updates an existing app for the authenticated user
|
|
@@ -6716,14 +6814,14 @@ var ConsumerAppTag = class extends TagAbstract46 {
|
|
|
6716
6814
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6717
6815
|
throw new CommonMessageException(await response.json());
|
|
6718
6816
|
}
|
|
6719
|
-
throw new
|
|
6817
|
+
throw new UnknownStatusCodeException45("The server returned an unknown status code: " + statusCode);
|
|
6720
6818
|
}
|
|
6721
6819
|
};
|
|
6722
6820
|
|
|
6723
6821
|
// src/ConsumerEventTag.ts
|
|
6724
|
-
import { TagAbstract as
|
|
6725
|
-
import { UnknownStatusCodeException as
|
|
6726
|
-
var ConsumerEventTag = class extends
|
|
6822
|
+
import { TagAbstract as TagAbstract48 } from "sdkgen-client";
|
|
6823
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException46 } from "sdkgen-client";
|
|
6824
|
+
var ConsumerEventTag = class extends TagAbstract48 {
|
|
6727
6825
|
/**
|
|
6728
6826
|
* Returns a specific event for the authenticated user
|
|
6729
6827
|
*
|
|
@@ -6749,7 +6847,7 @@ var ConsumerEventTag = class extends TagAbstract47 {
|
|
|
6749
6847
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6750
6848
|
throw new CommonMessageException(await response.json());
|
|
6751
6849
|
}
|
|
6752
|
-
throw new
|
|
6850
|
+
throw new UnknownStatusCodeException46("The server returned an unknown status code: " + statusCode);
|
|
6753
6851
|
}
|
|
6754
6852
|
/**
|
|
6755
6853
|
* Returns a paginated list of apps which are assigned to the authenticated user
|
|
@@ -6778,14 +6876,14 @@ var ConsumerEventTag = class extends TagAbstract47 {
|
|
|
6778
6876
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6779
6877
|
throw new CommonMessageException(await response.json());
|
|
6780
6878
|
}
|
|
6781
|
-
throw new
|
|
6879
|
+
throw new UnknownStatusCodeException46("The server returned an unknown status code: " + statusCode);
|
|
6782
6880
|
}
|
|
6783
6881
|
};
|
|
6784
6882
|
|
|
6785
6883
|
// src/ConsumerFormTag.ts
|
|
6786
|
-
import { TagAbstract as
|
|
6787
|
-
import { UnknownStatusCodeException as
|
|
6788
|
-
var ConsumerFormTag = class extends
|
|
6884
|
+
import { TagAbstract as TagAbstract49 } from "sdkgen-client";
|
|
6885
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException47 } from "sdkgen-client";
|
|
6886
|
+
var ConsumerFormTag = class extends TagAbstract49 {
|
|
6789
6887
|
/**
|
|
6790
6888
|
* Returns a specific form for the authenticated user
|
|
6791
6889
|
*
|
|
@@ -6811,7 +6909,7 @@ var ConsumerFormTag = class extends TagAbstract48 {
|
|
|
6811
6909
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6812
6910
|
throw new CommonMessageException(await response.json());
|
|
6813
6911
|
}
|
|
6814
|
-
throw new
|
|
6912
|
+
throw new UnknownStatusCodeException47("The server returned an unknown status code: " + statusCode);
|
|
6815
6913
|
}
|
|
6816
6914
|
/**
|
|
6817
6915
|
* Returns a paginated list of forms which are relevant to the authenticated user
|
|
@@ -6840,14 +6938,14 @@ var ConsumerFormTag = class extends TagAbstract48 {
|
|
|
6840
6938
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6841
6939
|
throw new CommonMessageException(await response.json());
|
|
6842
6940
|
}
|
|
6843
|
-
throw new
|
|
6941
|
+
throw new UnknownStatusCodeException47("The server returned an unknown status code: " + statusCode);
|
|
6844
6942
|
}
|
|
6845
6943
|
};
|
|
6846
6944
|
|
|
6847
6945
|
// src/ConsumerGrantTag.ts
|
|
6848
|
-
import { TagAbstract as
|
|
6849
|
-
import { UnknownStatusCodeException as
|
|
6850
|
-
var ConsumerGrantTag = class extends
|
|
6946
|
+
import { TagAbstract as TagAbstract50 } from "sdkgen-client";
|
|
6947
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException48 } from "sdkgen-client";
|
|
6948
|
+
var ConsumerGrantTag = class extends TagAbstract50 {
|
|
6851
6949
|
/**
|
|
6852
6950
|
* Deletes an existing grant for an app which was created by the authenticated user
|
|
6853
6951
|
*
|
|
@@ -6873,7 +6971,7 @@ var ConsumerGrantTag = class extends TagAbstract49 {
|
|
|
6873
6971
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6874
6972
|
throw new CommonMessageException(await response.json());
|
|
6875
6973
|
}
|
|
6876
|
-
throw new
|
|
6974
|
+
throw new UnknownStatusCodeException48("The server returned an unknown status code: " + statusCode);
|
|
6877
6975
|
}
|
|
6878
6976
|
/**
|
|
6879
6977
|
* Returns a paginated list of grants which are assigned to the authenticated user
|
|
@@ -6902,14 +7000,14 @@ var ConsumerGrantTag = class extends TagAbstract49 {
|
|
|
6902
7000
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6903
7001
|
throw new CommonMessageException(await response.json());
|
|
6904
7002
|
}
|
|
6905
|
-
throw new
|
|
7003
|
+
throw new UnknownStatusCodeException48("The server returned an unknown status code: " + statusCode);
|
|
6906
7004
|
}
|
|
6907
7005
|
};
|
|
6908
7006
|
|
|
6909
7007
|
// src/ConsumerIdentityTag.ts
|
|
6910
|
-
import { TagAbstract as
|
|
6911
|
-
import { UnknownStatusCodeException as
|
|
6912
|
-
var ConsumerIdentityTag = class extends
|
|
7008
|
+
import { TagAbstract as TagAbstract51 } from "sdkgen-client";
|
|
7009
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException49 } from "sdkgen-client";
|
|
7010
|
+
var ConsumerIdentityTag = class extends TagAbstract51 {
|
|
6913
7011
|
/**
|
|
6914
7012
|
* Identity callback endpoint to exchange an access token
|
|
6915
7013
|
*
|
|
@@ -6935,7 +7033,7 @@ var ConsumerIdentityTag = class extends TagAbstract50 {
|
|
|
6935
7033
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6936
7034
|
throw new CommonMessageException(await response.json());
|
|
6937
7035
|
}
|
|
6938
|
-
throw new
|
|
7036
|
+
throw new UnknownStatusCodeException49("The server returned an unknown status code: " + statusCode);
|
|
6939
7037
|
}
|
|
6940
7038
|
/**
|
|
6941
7039
|
* Returns a paginated list of identities which are relevant to the authenticated user
|
|
@@ -6963,7 +7061,7 @@ var ConsumerIdentityTag = class extends TagAbstract50 {
|
|
|
6963
7061
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6964
7062
|
throw new CommonMessageException(await response.json());
|
|
6965
7063
|
}
|
|
6966
|
-
throw new
|
|
7064
|
+
throw new UnknownStatusCodeException49("The server returned an unknown status code: " + statusCode);
|
|
6967
7065
|
}
|
|
6968
7066
|
/**
|
|
6969
7067
|
* Redirect the user to the configured identity provider
|
|
@@ -6990,14 +7088,14 @@ var ConsumerIdentityTag = class extends TagAbstract50 {
|
|
|
6990
7088
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6991
7089
|
throw new CommonMessageException(await response.json());
|
|
6992
7090
|
}
|
|
6993
|
-
throw new
|
|
7091
|
+
throw new UnknownStatusCodeException49("The server returned an unknown status code: " + statusCode);
|
|
6994
7092
|
}
|
|
6995
7093
|
};
|
|
6996
7094
|
|
|
6997
7095
|
// src/ConsumerLogTag.ts
|
|
6998
|
-
import { TagAbstract as
|
|
6999
|
-
import { UnknownStatusCodeException as
|
|
7000
|
-
var ConsumerLogTag = class extends
|
|
7096
|
+
import { TagAbstract as TagAbstract52 } from "sdkgen-client";
|
|
7097
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException50 } from "sdkgen-client";
|
|
7098
|
+
var ConsumerLogTag = class extends TagAbstract52 {
|
|
7001
7099
|
/**
|
|
7002
7100
|
* Returns a specific log for the authenticated user
|
|
7003
7101
|
*
|
|
@@ -7023,7 +7121,7 @@ var ConsumerLogTag = class extends TagAbstract51 {
|
|
|
7023
7121
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7024
7122
|
throw new CommonMessageException(await response.json());
|
|
7025
7123
|
}
|
|
7026
|
-
throw new
|
|
7124
|
+
throw new UnknownStatusCodeException50("The server returned an unknown status code: " + statusCode);
|
|
7027
7125
|
}
|
|
7028
7126
|
/**
|
|
7029
7127
|
* Returns a paginated list of logs which are assigned to the authenticated user
|
|
@@ -7052,14 +7150,14 @@ var ConsumerLogTag = class extends TagAbstract51 {
|
|
|
7052
7150
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7053
7151
|
throw new CommonMessageException(await response.json());
|
|
7054
7152
|
}
|
|
7055
|
-
throw new
|
|
7153
|
+
throw new UnknownStatusCodeException50("The server returned an unknown status code: " + statusCode);
|
|
7056
7154
|
}
|
|
7057
7155
|
};
|
|
7058
7156
|
|
|
7059
7157
|
// src/ConsumerPageTag.ts
|
|
7060
|
-
import { TagAbstract as
|
|
7061
|
-
import { UnknownStatusCodeException as
|
|
7062
|
-
var ConsumerPageTag = class extends
|
|
7158
|
+
import { TagAbstract as TagAbstract53 } from "sdkgen-client";
|
|
7159
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException51 } from "sdkgen-client";
|
|
7160
|
+
var ConsumerPageTag = class extends TagAbstract53 {
|
|
7063
7161
|
/**
|
|
7064
7162
|
* Returns a specific page for the authenticated user
|
|
7065
7163
|
*
|
|
@@ -7085,7 +7183,7 @@ var ConsumerPageTag = class extends TagAbstract52 {
|
|
|
7085
7183
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7086
7184
|
throw new CommonMessageException(await response.json());
|
|
7087
7185
|
}
|
|
7088
|
-
throw new
|
|
7186
|
+
throw new UnknownStatusCodeException51("The server returned an unknown status code: " + statusCode);
|
|
7089
7187
|
}
|
|
7090
7188
|
/**
|
|
7091
7189
|
* Returns a paginated list of pages which are relevant to the authenticated user
|
|
@@ -7114,14 +7212,14 @@ var ConsumerPageTag = class extends TagAbstract52 {
|
|
|
7114
7212
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7115
7213
|
throw new CommonMessageException(await response.json());
|
|
7116
7214
|
}
|
|
7117
|
-
throw new
|
|
7215
|
+
throw new UnknownStatusCodeException51("The server returned an unknown status code: " + statusCode);
|
|
7118
7216
|
}
|
|
7119
7217
|
};
|
|
7120
7218
|
|
|
7121
7219
|
// src/ConsumerPaymentTag.ts
|
|
7122
|
-
import { TagAbstract as
|
|
7123
|
-
import { UnknownStatusCodeException as
|
|
7124
|
-
var ConsumerPaymentTag = class extends
|
|
7220
|
+
import { TagAbstract as TagAbstract54 } from "sdkgen-client";
|
|
7221
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException52 } from "sdkgen-client";
|
|
7222
|
+
var ConsumerPaymentTag = class extends TagAbstract54 {
|
|
7125
7223
|
/**
|
|
7126
7224
|
* Start the checkout process for a specific plan
|
|
7127
7225
|
*
|
|
@@ -7150,7 +7248,7 @@ var ConsumerPaymentTag = class extends TagAbstract53 {
|
|
|
7150
7248
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7151
7249
|
throw new CommonMessageException(await response.json());
|
|
7152
7250
|
}
|
|
7153
|
-
throw new
|
|
7251
|
+
throw new UnknownStatusCodeException52("The server returned an unknown status code: " + statusCode);
|
|
7154
7252
|
}
|
|
7155
7253
|
/**
|
|
7156
7254
|
* Generates a payment portal link for the authenticated user
|
|
@@ -7180,14 +7278,14 @@ var ConsumerPaymentTag = class extends TagAbstract53 {
|
|
|
7180
7278
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7181
7279
|
throw new CommonMessageException(await response.json());
|
|
7182
7280
|
}
|
|
7183
|
-
throw new
|
|
7281
|
+
throw new UnknownStatusCodeException52("The server returned an unknown status code: " + statusCode);
|
|
7184
7282
|
}
|
|
7185
7283
|
};
|
|
7186
7284
|
|
|
7187
7285
|
// src/ConsumerPlanTag.ts
|
|
7188
|
-
import { TagAbstract as
|
|
7189
|
-
import { UnknownStatusCodeException as
|
|
7190
|
-
var ConsumerPlanTag = class extends
|
|
7286
|
+
import { TagAbstract as TagAbstract55 } from "sdkgen-client";
|
|
7287
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException53 } from "sdkgen-client";
|
|
7288
|
+
var ConsumerPlanTag = class extends TagAbstract55 {
|
|
7191
7289
|
/**
|
|
7192
7290
|
* Returns a specific plan for the authenticated user
|
|
7193
7291
|
*
|
|
@@ -7213,7 +7311,7 @@ var ConsumerPlanTag = class extends TagAbstract54 {
|
|
|
7213
7311
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7214
7312
|
throw new CommonMessageException(await response.json());
|
|
7215
7313
|
}
|
|
7216
|
-
throw new
|
|
7314
|
+
throw new UnknownStatusCodeException53("The server returned an unknown status code: " + statusCode);
|
|
7217
7315
|
}
|
|
7218
7316
|
/**
|
|
7219
7317
|
* Returns a paginated list of plans which are relevant to the authenticated user
|
|
@@ -7242,14 +7340,14 @@ var ConsumerPlanTag = class extends TagAbstract54 {
|
|
|
7242
7340
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7243
7341
|
throw new CommonMessageException(await response.json());
|
|
7244
7342
|
}
|
|
7245
|
-
throw new
|
|
7343
|
+
throw new UnknownStatusCodeException53("The server returned an unknown status code: " + statusCode);
|
|
7246
7344
|
}
|
|
7247
7345
|
};
|
|
7248
7346
|
|
|
7249
7347
|
// src/ConsumerScopeTag.ts
|
|
7250
|
-
import { TagAbstract as
|
|
7251
|
-
import { UnknownStatusCodeException as
|
|
7252
|
-
var ConsumerScopeTag = class extends
|
|
7348
|
+
import { TagAbstract as TagAbstract56 } from "sdkgen-client";
|
|
7349
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException54 } from "sdkgen-client";
|
|
7350
|
+
var ConsumerScopeTag = class extends TagAbstract56 {
|
|
7253
7351
|
/**
|
|
7254
7352
|
* Returns a paginated list of scopes which are assigned to the authenticated user
|
|
7255
7353
|
*
|
|
@@ -7277,7 +7375,7 @@ var ConsumerScopeTag = class extends TagAbstract55 {
|
|
|
7277
7375
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7278
7376
|
throw new CommonMessageException(await response.json());
|
|
7279
7377
|
}
|
|
7280
|
-
throw new
|
|
7378
|
+
throw new UnknownStatusCodeException54("The server returned an unknown status code: " + statusCode);
|
|
7281
7379
|
}
|
|
7282
7380
|
/**
|
|
7283
7381
|
* Returns all scopes by category
|
|
@@ -7302,14 +7400,14 @@ var ConsumerScopeTag = class extends TagAbstract55 {
|
|
|
7302
7400
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7303
7401
|
throw new CommonMessageException(await response.json());
|
|
7304
7402
|
}
|
|
7305
|
-
throw new
|
|
7403
|
+
throw new UnknownStatusCodeException54("The server returned an unknown status code: " + statusCode);
|
|
7306
7404
|
}
|
|
7307
7405
|
};
|
|
7308
7406
|
|
|
7309
7407
|
// src/ConsumerTokenTag.ts
|
|
7310
|
-
import { TagAbstract as
|
|
7311
|
-
import { UnknownStatusCodeException as
|
|
7312
|
-
var ConsumerTokenTag = class extends
|
|
7408
|
+
import { TagAbstract as TagAbstract57 } from "sdkgen-client";
|
|
7409
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException55 } from "sdkgen-client";
|
|
7410
|
+
var ConsumerTokenTag = class extends TagAbstract57 {
|
|
7313
7411
|
/**
|
|
7314
7412
|
* Creates a new token for the authenticated user
|
|
7315
7413
|
*
|
|
@@ -7336,7 +7434,7 @@ var ConsumerTokenTag = class extends TagAbstract56 {
|
|
|
7336
7434
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7337
7435
|
throw new CommonMessageException(await response.json());
|
|
7338
7436
|
}
|
|
7339
|
-
throw new
|
|
7437
|
+
throw new UnknownStatusCodeException55("The server returned an unknown status code: " + statusCode);
|
|
7340
7438
|
}
|
|
7341
7439
|
/**
|
|
7342
7440
|
* Deletes an existing token for the authenticated user
|
|
@@ -7363,7 +7461,7 @@ var ConsumerTokenTag = class extends TagAbstract56 {
|
|
|
7363
7461
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7364
7462
|
throw new CommonMessageException(await response.json());
|
|
7365
7463
|
}
|
|
7366
|
-
throw new
|
|
7464
|
+
throw new UnknownStatusCodeException55("The server returned an unknown status code: " + statusCode);
|
|
7367
7465
|
}
|
|
7368
7466
|
/**
|
|
7369
7467
|
* Returns a specific token for the authenticated user
|
|
@@ -7390,7 +7488,7 @@ var ConsumerTokenTag = class extends TagAbstract56 {
|
|
|
7390
7488
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7391
7489
|
throw new CommonMessageException(await response.json());
|
|
7392
7490
|
}
|
|
7393
|
-
throw new
|
|
7491
|
+
throw new UnknownStatusCodeException55("The server returned an unknown status code: " + statusCode);
|
|
7394
7492
|
}
|
|
7395
7493
|
/**
|
|
7396
7494
|
* Returns a paginated list of tokens which are assigned to the authenticated user
|
|
@@ -7419,7 +7517,7 @@ var ConsumerTokenTag = class extends TagAbstract56 {
|
|
|
7419
7517
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7420
7518
|
throw new CommonMessageException(await response.json());
|
|
7421
7519
|
}
|
|
7422
|
-
throw new
|
|
7520
|
+
throw new UnknownStatusCodeException55("The server returned an unknown status code: " + statusCode);
|
|
7423
7521
|
}
|
|
7424
7522
|
/**
|
|
7425
7523
|
* Updates an existing token for the authenticated user
|
|
@@ -7449,14 +7547,14 @@ var ConsumerTokenTag = class extends TagAbstract56 {
|
|
|
7449
7547
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7450
7548
|
throw new CommonMessageException(await response.json());
|
|
7451
7549
|
}
|
|
7452
|
-
throw new
|
|
7550
|
+
throw new UnknownStatusCodeException55("The server returned an unknown status code: " + statusCode);
|
|
7453
7551
|
}
|
|
7454
7552
|
};
|
|
7455
7553
|
|
|
7456
7554
|
// src/ConsumerTransactionTag.ts
|
|
7457
|
-
import { TagAbstract as
|
|
7458
|
-
import { UnknownStatusCodeException as
|
|
7459
|
-
var ConsumerTransactionTag = class extends
|
|
7555
|
+
import { TagAbstract as TagAbstract58 } from "sdkgen-client";
|
|
7556
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException56 } from "sdkgen-client";
|
|
7557
|
+
var ConsumerTransactionTag = class extends TagAbstract58 {
|
|
7460
7558
|
/**
|
|
7461
7559
|
* Returns a specific transaction for the authenticated user
|
|
7462
7560
|
*
|
|
@@ -7482,7 +7580,7 @@ var ConsumerTransactionTag = class extends TagAbstract57 {
|
|
|
7482
7580
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7483
7581
|
throw new CommonMessageException(await response.json());
|
|
7484
7582
|
}
|
|
7485
|
-
throw new
|
|
7583
|
+
throw new UnknownStatusCodeException56("The server returned an unknown status code: " + statusCode);
|
|
7486
7584
|
}
|
|
7487
7585
|
/**
|
|
7488
7586
|
* Returns a paginated list of transactions which are assigned to the authenticated user
|
|
@@ -7511,14 +7609,14 @@ var ConsumerTransactionTag = class extends TagAbstract57 {
|
|
|
7511
7609
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7512
7610
|
throw new CommonMessageException(await response.json());
|
|
7513
7611
|
}
|
|
7514
|
-
throw new
|
|
7612
|
+
throw new UnknownStatusCodeException56("The server returned an unknown status code: " + statusCode);
|
|
7515
7613
|
}
|
|
7516
7614
|
};
|
|
7517
7615
|
|
|
7518
7616
|
// src/ConsumerWebhookTag.ts
|
|
7519
|
-
import { TagAbstract as
|
|
7520
|
-
import { UnknownStatusCodeException as
|
|
7521
|
-
var ConsumerWebhookTag = class extends
|
|
7617
|
+
import { TagAbstract as TagAbstract59 } from "sdkgen-client";
|
|
7618
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException57 } from "sdkgen-client";
|
|
7619
|
+
var ConsumerWebhookTag = class extends TagAbstract59 {
|
|
7522
7620
|
/**
|
|
7523
7621
|
* Creates a new webhook for the authenticated user
|
|
7524
7622
|
*
|
|
@@ -7545,7 +7643,7 @@ var ConsumerWebhookTag = class extends TagAbstract58 {
|
|
|
7545
7643
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7546
7644
|
throw new CommonMessageException(await response.json());
|
|
7547
7645
|
}
|
|
7548
|
-
throw new
|
|
7646
|
+
throw new UnknownStatusCodeException57("The server returned an unknown status code: " + statusCode);
|
|
7549
7647
|
}
|
|
7550
7648
|
/**
|
|
7551
7649
|
* Deletes an existing webhook for the authenticated user
|
|
@@ -7572,7 +7670,7 @@ var ConsumerWebhookTag = class extends TagAbstract58 {
|
|
|
7572
7670
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7573
7671
|
throw new CommonMessageException(await response.json());
|
|
7574
7672
|
}
|
|
7575
|
-
throw new
|
|
7673
|
+
throw new UnknownStatusCodeException57("The server returned an unknown status code: " + statusCode);
|
|
7576
7674
|
}
|
|
7577
7675
|
/**
|
|
7578
7676
|
* Returns a specific webhook for the authenticated user
|
|
@@ -7599,7 +7697,7 @@ var ConsumerWebhookTag = class extends TagAbstract58 {
|
|
|
7599
7697
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7600
7698
|
throw new CommonMessageException(await response.json());
|
|
7601
7699
|
}
|
|
7602
|
-
throw new
|
|
7700
|
+
throw new UnknownStatusCodeException57("The server returned an unknown status code: " + statusCode);
|
|
7603
7701
|
}
|
|
7604
7702
|
/**
|
|
7605
7703
|
* Returns a paginated list of webhooks which are assigned to the authenticated user
|
|
@@ -7628,7 +7726,7 @@ var ConsumerWebhookTag = class extends TagAbstract58 {
|
|
|
7628
7726
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7629
7727
|
throw new CommonMessageException(await response.json());
|
|
7630
7728
|
}
|
|
7631
|
-
throw new
|
|
7729
|
+
throw new UnknownStatusCodeException57("The server returned an unknown status code: " + statusCode);
|
|
7632
7730
|
}
|
|
7633
7731
|
/**
|
|
7634
7732
|
* Updates an existing webhook for the authenticated user
|
|
@@ -7658,12 +7756,12 @@ var ConsumerWebhookTag = class extends TagAbstract58 {
|
|
|
7658
7756
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7659
7757
|
throw new CommonMessageException(await response.json());
|
|
7660
7758
|
}
|
|
7661
|
-
throw new
|
|
7759
|
+
throw new UnknownStatusCodeException57("The server returned an unknown status code: " + statusCode);
|
|
7662
7760
|
}
|
|
7663
7761
|
};
|
|
7664
7762
|
|
|
7665
7763
|
// src/ConsumerTag.ts
|
|
7666
|
-
var ConsumerTag = class extends
|
|
7764
|
+
var ConsumerTag = class extends TagAbstract60 {
|
|
7667
7765
|
account() {
|
|
7668
7766
|
return new ConsumerAccountTag(
|
|
7669
7767
|
this.httpClient,
|
|
@@ -7751,12 +7849,12 @@ var ConsumerTag = class extends TagAbstract59 {
|
|
|
7751
7849
|
};
|
|
7752
7850
|
|
|
7753
7851
|
// src/SystemTag.ts
|
|
7754
|
-
import { TagAbstract as
|
|
7852
|
+
import { TagAbstract as TagAbstract64 } from "sdkgen-client";
|
|
7755
7853
|
|
|
7756
7854
|
// src/SystemConnectionTag.ts
|
|
7757
|
-
import { TagAbstract as
|
|
7758
|
-
import { UnknownStatusCodeException as
|
|
7759
|
-
var SystemConnectionTag = class extends
|
|
7855
|
+
import { TagAbstract as TagAbstract61 } from "sdkgen-client";
|
|
7856
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException58 } from "sdkgen-client";
|
|
7857
|
+
var SystemConnectionTag = class extends TagAbstract61 {
|
|
7760
7858
|
/**
|
|
7761
7859
|
* Connection OAuth2 callback to authorize a connection
|
|
7762
7860
|
*
|
|
@@ -7782,14 +7880,14 @@ var SystemConnectionTag = class extends TagAbstract60 {
|
|
|
7782
7880
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7783
7881
|
throw new CommonMessageException(await response.json());
|
|
7784
7882
|
}
|
|
7785
|
-
throw new
|
|
7883
|
+
throw new UnknownStatusCodeException58("The server returned an unknown status code: " + statusCode);
|
|
7786
7884
|
}
|
|
7787
7885
|
};
|
|
7788
7886
|
|
|
7789
7887
|
// src/SystemMetaTag.ts
|
|
7790
|
-
import { TagAbstract as
|
|
7791
|
-
import { UnknownStatusCodeException as
|
|
7792
|
-
var SystemMetaTag = class extends
|
|
7888
|
+
import { TagAbstract as TagAbstract62 } from "sdkgen-client";
|
|
7889
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException59 } from "sdkgen-client";
|
|
7890
|
+
var SystemMetaTag = class extends TagAbstract62 {
|
|
7793
7891
|
/**
|
|
7794
7892
|
* Returns meta information and links about the current installed Fusio version
|
|
7795
7893
|
*
|
|
@@ -7813,7 +7911,7 @@ var SystemMetaTag = class extends TagAbstract61 {
|
|
|
7813
7911
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7814
7912
|
throw new CommonMessageException(await response.json());
|
|
7815
7913
|
}
|
|
7816
|
-
throw new
|
|
7914
|
+
throw new UnknownStatusCodeException59("The server returned an unknown status code: " + statusCode);
|
|
7817
7915
|
}
|
|
7818
7916
|
/**
|
|
7819
7917
|
* Debug endpoint which returns the provided data
|
|
@@ -7841,7 +7939,7 @@ var SystemMetaTag = class extends TagAbstract61 {
|
|
|
7841
7939
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7842
7940
|
throw new CommonMessageException(await response.json());
|
|
7843
7941
|
}
|
|
7844
|
-
throw new
|
|
7942
|
+
throw new UnknownStatusCodeException59("The server returned an unknown status code: " + statusCode);
|
|
7845
7943
|
}
|
|
7846
7944
|
/**
|
|
7847
7945
|
* Health check endpoint which returns information about the health status of the system
|
|
@@ -7866,7 +7964,7 @@ var SystemMetaTag = class extends TagAbstract61 {
|
|
|
7866
7964
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7867
7965
|
throw new CommonMessageException(await response.json());
|
|
7868
7966
|
}
|
|
7869
|
-
throw new
|
|
7967
|
+
throw new UnknownStatusCodeException59("The server returned an unknown status code: " + statusCode);
|
|
7870
7968
|
}
|
|
7871
7969
|
/**
|
|
7872
7970
|
* Returns all available routes
|
|
@@ -7891,7 +7989,7 @@ var SystemMetaTag = class extends TagAbstract61 {
|
|
|
7891
7989
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7892
7990
|
throw new CommonMessageException(await response.json());
|
|
7893
7991
|
}
|
|
7894
|
-
throw new
|
|
7992
|
+
throw new UnknownStatusCodeException59("The server returned an unknown status code: " + statusCode);
|
|
7895
7993
|
}
|
|
7896
7994
|
/**
|
|
7897
7995
|
* Returns details of a specific schema
|
|
@@ -7918,14 +8016,14 @@ var SystemMetaTag = class extends TagAbstract61 {
|
|
|
7918
8016
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7919
8017
|
throw new CommonMessageException(await response.json());
|
|
7920
8018
|
}
|
|
7921
|
-
throw new
|
|
8019
|
+
throw new UnknownStatusCodeException59("The server returned an unknown status code: " + statusCode);
|
|
7922
8020
|
}
|
|
7923
8021
|
};
|
|
7924
8022
|
|
|
7925
8023
|
// src/SystemPaymentTag.ts
|
|
7926
|
-
import { TagAbstract as
|
|
7927
|
-
import { UnknownStatusCodeException as
|
|
7928
|
-
var SystemPaymentTag = class extends
|
|
8024
|
+
import { TagAbstract as TagAbstract63 } from "sdkgen-client";
|
|
8025
|
+
import { UnknownStatusCodeException as UnknownStatusCodeException60 } from "sdkgen-client";
|
|
8026
|
+
var SystemPaymentTag = class extends TagAbstract63 {
|
|
7929
8027
|
/**
|
|
7930
8028
|
* Payment webhook endpoint after successful purchase of a plan
|
|
7931
8029
|
*
|
|
@@ -7951,12 +8049,12 @@ var SystemPaymentTag = class extends TagAbstract62 {
|
|
|
7951
8049
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
7952
8050
|
throw new CommonMessageException(await response.json());
|
|
7953
8051
|
}
|
|
7954
|
-
throw new
|
|
8052
|
+
throw new UnknownStatusCodeException60("The server returned an unknown status code: " + statusCode);
|
|
7955
8053
|
}
|
|
7956
8054
|
};
|
|
7957
8055
|
|
|
7958
8056
|
// src/SystemTag.ts
|
|
7959
|
-
var SystemTag = class extends
|
|
8057
|
+
var SystemTag = class extends TagAbstract64 {
|
|
7960
8058
|
connection() {
|
|
7961
8059
|
return new SystemConnectionTag(
|
|
7962
8060
|
this.httpClient,
|
|
@@ -8017,6 +8115,7 @@ export {
|
|
|
8017
8115
|
BackendBundleTag,
|
|
8018
8116
|
BackendCategoryTag,
|
|
8019
8117
|
BackendConfigTag,
|
|
8118
|
+
BackendConnectionAgentTag,
|
|
8020
8119
|
BackendConnectionDatabaseTag,
|
|
8021
8120
|
BackendConnectionFilesystemTag,
|
|
8022
8121
|
BackendConnectionHttpTag,
|