fusio-sdk 6.2.0 → 6.2.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/dist/index.cjs CHANGED
@@ -26,6 +26,7 @@ __export(index_exports, {
26
26
  BackendAppTag: () => BackendAppTag,
27
27
  BackendAuditTag: () => BackendAuditTag,
28
28
  BackendBackupTag: () => BackendBackupTag,
29
+ BackendBundleTag: () => BackendBundleTag,
29
30
  BackendCategoryTag: () => BackendCategoryTag,
30
31
  BackendConfigTag: () => BackendConfigTag,
31
32
  BackendConnectionDatabaseTag: () => BackendConnectionDatabaseTag,
@@ -776,10 +777,157 @@ var BackendBackupTag = class extends import_sdkgen_client12.TagAbstract {
776
777
  }
777
778
  };
778
779
 
779
- // src/BackendCategoryTag.ts
780
+ // src/BackendBundleTag.ts
780
781
  var import_sdkgen_client14 = require("sdkgen-client");
781
782
  var import_sdkgen_client15 = require("sdkgen-client");
782
- var BackendCategoryTag = class extends import_sdkgen_client14.TagAbstract {
783
+ var BackendBundleTag = class extends import_sdkgen_client14.TagAbstract {
784
+ /**
785
+ * Creates a new bundle
786
+ *
787
+ * @returns {Promise<CommonMessage>}
788
+ * @throws {CommonMessageException}
789
+ * @throws {ClientException}
790
+ */
791
+ async create(payload) {
792
+ const url = this.parser.url("/backend/bundle", {});
793
+ let request = {
794
+ url,
795
+ method: "POST",
796
+ headers: {
797
+ "Content-Type": "application/json"
798
+ },
799
+ params: this.parser.query({}, []),
800
+ data: payload
801
+ };
802
+ const response = await this.httpClient.request(request);
803
+ if (response.ok) {
804
+ return await response.json();
805
+ }
806
+ const statusCode = response.status;
807
+ if (statusCode >= 0 && statusCode <= 999) {
808
+ throw new CommonMessageException(await response.json());
809
+ }
810
+ throw new import_sdkgen_client15.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
811
+ }
812
+ /**
813
+ * Deletes an existing bundle
814
+ *
815
+ * @returns {Promise<CommonMessage>}
816
+ * @throws {CommonMessageException}
817
+ * @throws {ClientException}
818
+ */
819
+ async delete(bundleId) {
820
+ const url = this.parser.url("/backend/bundle/$bundle_id<[0-9]+|^~>", {
821
+ "bundle_id": bundleId
822
+ });
823
+ let request = {
824
+ url,
825
+ method: "DELETE",
826
+ headers: {},
827
+ params: this.parser.query({}, [])
828
+ };
829
+ const response = await this.httpClient.request(request);
830
+ if (response.ok) {
831
+ return await response.json();
832
+ }
833
+ const statusCode = response.status;
834
+ if (statusCode >= 0 && statusCode <= 999) {
835
+ throw new CommonMessageException(await response.json());
836
+ }
837
+ throw new import_sdkgen_client15.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
838
+ }
839
+ /**
840
+ * Returns a specific bundle
841
+ *
842
+ * @returns {Promise<BackendEvent>}
843
+ * @throws {CommonMessageException}
844
+ * @throws {ClientException}
845
+ */
846
+ async get(bundleId) {
847
+ const url = this.parser.url("/backend/bundle/$bundle_id<[0-9]+|^~>", {
848
+ "bundle_id": bundleId
849
+ });
850
+ let request = {
851
+ url,
852
+ method: "GET",
853
+ headers: {},
854
+ params: this.parser.query({}, [])
855
+ };
856
+ const response = await this.httpClient.request(request);
857
+ if (response.ok) {
858
+ return await response.json();
859
+ }
860
+ const statusCode = response.status;
861
+ if (statusCode >= 0 && statusCode <= 999) {
862
+ throw new CommonMessageException(await response.json());
863
+ }
864
+ throw new import_sdkgen_client15.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
865
+ }
866
+ /**
867
+ * Returns a paginated list of bundles
868
+ *
869
+ * @returns {Promise<BackendBundleCollection>}
870
+ * @throws {CommonMessageException}
871
+ * @throws {ClientException}
872
+ */
873
+ async getAll(startIndex, count, search) {
874
+ const url = this.parser.url("/backend/bundle", {});
875
+ let request = {
876
+ url,
877
+ method: "GET",
878
+ headers: {},
879
+ params: this.parser.query({
880
+ "startIndex": startIndex,
881
+ "count": count,
882
+ "search": search
883
+ }, [])
884
+ };
885
+ const response = await this.httpClient.request(request);
886
+ if (response.ok) {
887
+ return await response.json();
888
+ }
889
+ const statusCode = response.status;
890
+ if (statusCode >= 0 && statusCode <= 999) {
891
+ throw new CommonMessageException(await response.json());
892
+ }
893
+ throw new import_sdkgen_client15.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
894
+ }
895
+ /**
896
+ * Updates an existing bundle
897
+ *
898
+ * @returns {Promise<CommonMessage>}
899
+ * @throws {CommonMessageException}
900
+ * @throws {ClientException}
901
+ */
902
+ async update(bundleId, payload) {
903
+ const url = this.parser.url("/backend/bundle/$bundle_id<[0-9]+|^~>", {
904
+ "bundle_id": bundleId
905
+ });
906
+ let request = {
907
+ url,
908
+ method: "PUT",
909
+ headers: {
910
+ "Content-Type": "application/json"
911
+ },
912
+ params: this.parser.query({}, []),
913
+ data: payload
914
+ };
915
+ const response = await this.httpClient.request(request);
916
+ if (response.ok) {
917
+ return await response.json();
918
+ }
919
+ const statusCode = response.status;
920
+ if (statusCode >= 0 && statusCode <= 999) {
921
+ throw new CommonMessageException(await response.json());
922
+ }
923
+ throw new import_sdkgen_client15.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
924
+ }
925
+ };
926
+
927
+ // src/BackendCategoryTag.ts
928
+ var import_sdkgen_client16 = require("sdkgen-client");
929
+ var import_sdkgen_client17 = require("sdkgen-client");
930
+ var BackendCategoryTag = class extends import_sdkgen_client16.TagAbstract {
783
931
  /**
784
932
  * Creates a new category
785
933
  *
@@ -806,7 +954,7 @@ var BackendCategoryTag = class extends import_sdkgen_client14.TagAbstract {
806
954
  if (statusCode >= 0 && statusCode <= 999) {
807
955
  throw new CommonMessageException(await response.json());
808
956
  }
809
- throw new import_sdkgen_client15.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
957
+ throw new import_sdkgen_client17.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
810
958
  }
811
959
  /**
812
960
  * Deletes an existing category
@@ -833,7 +981,7 @@ var BackendCategoryTag = class extends import_sdkgen_client14.TagAbstract {
833
981
  if (statusCode >= 0 && statusCode <= 999) {
834
982
  throw new CommonMessageException(await response.json());
835
983
  }
836
- throw new import_sdkgen_client15.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
984
+ throw new import_sdkgen_client17.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
837
985
  }
838
986
  /**
839
987
  * Returns a specific category
@@ -860,7 +1008,7 @@ var BackendCategoryTag = class extends import_sdkgen_client14.TagAbstract {
860
1008
  if (statusCode >= 0 && statusCode <= 999) {
861
1009
  throw new CommonMessageException(await response.json());
862
1010
  }
863
- throw new import_sdkgen_client15.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1011
+ throw new import_sdkgen_client17.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
864
1012
  }
865
1013
  /**
866
1014
  * Returns a paginated list of categories
@@ -889,7 +1037,7 @@ var BackendCategoryTag = class extends import_sdkgen_client14.TagAbstract {
889
1037
  if (statusCode >= 0 && statusCode <= 999) {
890
1038
  throw new CommonMessageException(await response.json());
891
1039
  }
892
- throw new import_sdkgen_client15.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1040
+ throw new import_sdkgen_client17.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
893
1041
  }
894
1042
  /**
895
1043
  * Updates an existing category
@@ -919,14 +1067,14 @@ var BackendCategoryTag = class extends import_sdkgen_client14.TagAbstract {
919
1067
  if (statusCode >= 0 && statusCode <= 999) {
920
1068
  throw new CommonMessageException(await response.json());
921
1069
  }
922
- throw new import_sdkgen_client15.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1070
+ throw new import_sdkgen_client17.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
923
1071
  }
924
1072
  };
925
1073
 
926
1074
  // src/BackendConfigTag.ts
927
- var import_sdkgen_client16 = require("sdkgen-client");
928
- var import_sdkgen_client17 = require("sdkgen-client");
929
- var BackendConfigTag = class extends import_sdkgen_client16.TagAbstract {
1075
+ var import_sdkgen_client18 = require("sdkgen-client");
1076
+ var import_sdkgen_client19 = require("sdkgen-client");
1077
+ var BackendConfigTag = class extends import_sdkgen_client18.TagAbstract {
930
1078
  /**
931
1079
  * Returns a specific config
932
1080
  *
@@ -952,7 +1100,7 @@ var BackendConfigTag = class extends import_sdkgen_client16.TagAbstract {
952
1100
  if (statusCode >= 0 && statusCode <= 999) {
953
1101
  throw new CommonMessageException(await response.json());
954
1102
  }
955
- throw new import_sdkgen_client17.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1103
+ throw new import_sdkgen_client19.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
956
1104
  }
957
1105
  /**
958
1106
  * Returns a paginated list of configuration values
@@ -981,7 +1129,7 @@ var BackendConfigTag = class extends import_sdkgen_client16.TagAbstract {
981
1129
  if (statusCode >= 0 && statusCode <= 999) {
982
1130
  throw new CommonMessageException(await response.json());
983
1131
  }
984
- throw new import_sdkgen_client17.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1132
+ throw new import_sdkgen_client19.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
985
1133
  }
986
1134
  /**
987
1135
  * Updates an existing config value
@@ -1011,14 +1159,14 @@ var BackendConfigTag = class extends import_sdkgen_client16.TagAbstract {
1011
1159
  if (statusCode >= 0 && statusCode <= 999) {
1012
1160
  throw new CommonMessageException(await response.json());
1013
1161
  }
1014
- throw new import_sdkgen_client17.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1162
+ throw new import_sdkgen_client19.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1015
1163
  }
1016
1164
  };
1017
1165
 
1018
1166
  // src/BackendConnectionDatabaseTag.ts
1019
- var import_sdkgen_client18 = require("sdkgen-client");
1020
- var import_sdkgen_client19 = require("sdkgen-client");
1021
- var BackendConnectionDatabaseTag = class extends import_sdkgen_client18.TagAbstract {
1167
+ var import_sdkgen_client20 = require("sdkgen-client");
1168
+ var import_sdkgen_client21 = require("sdkgen-client");
1169
+ var BackendConnectionDatabaseTag = class extends import_sdkgen_client20.TagAbstract {
1022
1170
  /**
1023
1171
  * Creates a new row at a table on a database
1024
1172
  *
@@ -1048,7 +1196,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client18.TagAbstr
1048
1196
  if (statusCode >= 0 && statusCode <= 999) {
1049
1197
  throw new CommonMessageException(await response.json());
1050
1198
  }
1051
- throw new import_sdkgen_client19.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1199
+ throw new import_sdkgen_client21.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1052
1200
  }
1053
1201
  /**
1054
1202
  * Creates a new table on a database
@@ -1078,7 +1226,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client18.TagAbstr
1078
1226
  if (statusCode >= 0 && statusCode <= 999) {
1079
1227
  throw new CommonMessageException(await response.json());
1080
1228
  }
1081
- throw new import_sdkgen_client19.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1229
+ throw new import_sdkgen_client21.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1082
1230
  }
1083
1231
  /**
1084
1232
  * Deletes an existing row at a table on a database
@@ -1107,7 +1255,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client18.TagAbstr
1107
1255
  if (statusCode >= 0 && statusCode <= 999) {
1108
1256
  throw new CommonMessageException(await response.json());
1109
1257
  }
1110
- throw new import_sdkgen_client19.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1258
+ throw new import_sdkgen_client21.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1111
1259
  }
1112
1260
  /**
1113
1261
  * Deletes an existing table on a database
@@ -1135,7 +1283,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client18.TagAbstr
1135
1283
  if (statusCode >= 0 && statusCode <= 999) {
1136
1284
  throw new CommonMessageException(await response.json());
1137
1285
  }
1138
- throw new import_sdkgen_client19.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1286
+ throw new import_sdkgen_client21.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1139
1287
  }
1140
1288
  /**
1141
1289
  * Returns a specific row at a table on a database
@@ -1164,7 +1312,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client18.TagAbstr
1164
1312
  if (statusCode >= 0 && statusCode <= 999) {
1165
1313
  throw new CommonMessageException(await response.json());
1166
1314
  }
1167
- throw new import_sdkgen_client19.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1315
+ throw new import_sdkgen_client21.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1168
1316
  }
1169
1317
  /**
1170
1318
  * Returns paginated rows at a table on a database
@@ -1201,7 +1349,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client18.TagAbstr
1201
1349
  if (statusCode >= 0 && statusCode <= 999) {
1202
1350
  throw new CommonMessageException(await response.json());
1203
1351
  }
1204
- throw new import_sdkgen_client19.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1352
+ throw new import_sdkgen_client21.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1205
1353
  }
1206
1354
  /**
1207
1355
  * Returns the schema of a specific table on a database
@@ -1229,7 +1377,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client18.TagAbstr
1229
1377
  if (statusCode >= 0 && statusCode <= 999) {
1230
1378
  throw new CommonMessageException(await response.json());
1231
1379
  }
1232
- throw new import_sdkgen_client19.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1380
+ throw new import_sdkgen_client21.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1233
1381
  }
1234
1382
  /**
1235
1383
  * Returns all available tables on a database
@@ -1259,7 +1407,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client18.TagAbstr
1259
1407
  if (statusCode >= 0 && statusCode <= 999) {
1260
1408
  throw new CommonMessageException(await response.json());
1261
1409
  }
1262
- throw new import_sdkgen_client19.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1410
+ throw new import_sdkgen_client21.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1263
1411
  }
1264
1412
  /**
1265
1413
  * Updates an existing row at a table on a database
@@ -1291,7 +1439,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client18.TagAbstr
1291
1439
  if (statusCode >= 0 && statusCode <= 999) {
1292
1440
  throw new CommonMessageException(await response.json());
1293
1441
  }
1294
- throw new import_sdkgen_client19.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1442
+ throw new import_sdkgen_client21.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1295
1443
  }
1296
1444
  /**
1297
1445
  * Updates an existing table on a database
@@ -1322,14 +1470,14 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client18.TagAbstr
1322
1470
  if (statusCode >= 0 && statusCode <= 999) {
1323
1471
  throw new CommonMessageException(await response.json());
1324
1472
  }
1325
- throw new import_sdkgen_client19.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1473
+ throw new import_sdkgen_client21.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1326
1474
  }
1327
1475
  };
1328
1476
 
1329
1477
  // src/BackendConnectionFilesystemTag.ts
1330
- var import_sdkgen_client20 = require("sdkgen-client");
1331
- var import_sdkgen_client21 = require("sdkgen-client");
1332
- var BackendConnectionFilesystemTag = class extends import_sdkgen_client20.TagAbstract {
1478
+ var import_sdkgen_client22 = require("sdkgen-client");
1479
+ var import_sdkgen_client23 = require("sdkgen-client");
1480
+ var BackendConnectionFilesystemTag = class extends import_sdkgen_client22.TagAbstract {
1333
1481
  /**
1334
1482
  * Uploads one or more files on the filesystem connection
1335
1483
  *
@@ -1356,7 +1504,7 @@ var BackendConnectionFilesystemTag = class extends import_sdkgen_client20.TagAbs
1356
1504
  if (statusCode >= 0 && statusCode <= 999) {
1357
1505
  throw new CommonMessageException(await response.json());
1358
1506
  }
1359
- throw new import_sdkgen_client21.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1507
+ throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1360
1508
  }
1361
1509
  /**
1362
1510
  * Deletes an existing file on the filesystem connection
@@ -1384,7 +1532,7 @@ var BackendConnectionFilesystemTag = class extends import_sdkgen_client20.TagAbs
1384
1532
  if (statusCode >= 0 && statusCode <= 999) {
1385
1533
  throw new CommonMessageException(await response.json());
1386
1534
  }
1387
- throw new import_sdkgen_client21.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1535
+ throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1388
1536
  }
1389
1537
  /**
1390
1538
  * Returns the content of the provided file id on the filesystem connection
@@ -1414,7 +1562,7 @@ var BackendConnectionFilesystemTag = class extends import_sdkgen_client20.TagAbs
1414
1562
  if (statusCode >= 0 && statusCode <= 999) {
1415
1563
  throw new CommonMessageException(await response.json());
1416
1564
  }
1417
- throw new import_sdkgen_client21.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1565
+ throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1418
1566
  }
1419
1567
  /**
1420
1568
  * Returns all available files on the filesystem connection
@@ -1444,7 +1592,7 @@ var BackendConnectionFilesystemTag = class extends import_sdkgen_client20.TagAbs
1444
1592
  if (statusCode >= 0 && statusCode <= 999) {
1445
1593
  throw new CommonMessageException(await response.json());
1446
1594
  }
1447
- throw new import_sdkgen_client21.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1595
+ throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1448
1596
  }
1449
1597
  /**
1450
1598
  * Updates an existing file on the filesystem connection
@@ -1473,14 +1621,14 @@ var BackendConnectionFilesystemTag = class extends import_sdkgen_client20.TagAbs
1473
1621
  if (statusCode >= 0 && statusCode <= 999) {
1474
1622
  throw new CommonMessageException(await response.json());
1475
1623
  }
1476
- throw new import_sdkgen_client21.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1624
+ throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1477
1625
  }
1478
1626
  };
1479
1627
 
1480
1628
  // src/BackendConnectionHttpTag.ts
1481
- var import_sdkgen_client22 = require("sdkgen-client");
1482
- var import_sdkgen_client23 = require("sdkgen-client");
1483
- var BackendConnectionHttpTag = class extends import_sdkgen_client22.TagAbstract {
1629
+ var import_sdkgen_client24 = require("sdkgen-client");
1630
+ var import_sdkgen_client25 = require("sdkgen-client");
1631
+ var BackendConnectionHttpTag = class extends import_sdkgen_client24.TagAbstract {
1484
1632
  /**
1485
1633
  * Sends an arbitrary HTTP request to the connection
1486
1634
  *
@@ -1509,14 +1657,14 @@ var BackendConnectionHttpTag = class extends import_sdkgen_client22.TagAbstract
1509
1657
  if (statusCode >= 0 && statusCode <= 999) {
1510
1658
  throw new CommonMessageException(await response.json());
1511
1659
  }
1512
- throw new import_sdkgen_client23.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1660
+ throw new import_sdkgen_client25.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1513
1661
  }
1514
1662
  };
1515
1663
 
1516
1664
  // src/BackendConnectionSdkTag.ts
1517
- var import_sdkgen_client24 = require("sdkgen-client");
1518
- var import_sdkgen_client25 = require("sdkgen-client");
1519
- var BackendConnectionSdkTag = class extends import_sdkgen_client24.TagAbstract {
1665
+ var import_sdkgen_client26 = require("sdkgen-client");
1666
+ var import_sdkgen_client27 = require("sdkgen-client");
1667
+ var BackendConnectionSdkTag = class extends import_sdkgen_client26.TagAbstract {
1520
1668
  /**
1521
1669
  * Returns the SDK specification
1522
1670
  *
@@ -1542,14 +1690,14 @@ var BackendConnectionSdkTag = class extends import_sdkgen_client24.TagAbstract {
1542
1690
  if (statusCode >= 0 && statusCode <= 999) {
1543
1691
  throw new CommonMessageException(await response.json());
1544
1692
  }
1545
- throw new import_sdkgen_client25.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1693
+ throw new import_sdkgen_client27.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1546
1694
  }
1547
1695
  };
1548
1696
 
1549
1697
  // src/BackendConnectionTag.ts
1550
- var import_sdkgen_client26 = require("sdkgen-client");
1551
- var import_sdkgen_client27 = require("sdkgen-client");
1552
- var BackendConnectionTag = class extends import_sdkgen_client26.TagAbstract {
1698
+ var import_sdkgen_client28 = require("sdkgen-client");
1699
+ var import_sdkgen_client29 = require("sdkgen-client");
1700
+ var BackendConnectionTag = class extends import_sdkgen_client28.TagAbstract {
1553
1701
  database() {
1554
1702
  return new BackendConnectionDatabaseTag(
1555
1703
  this.httpClient,
@@ -1600,7 +1748,7 @@ var BackendConnectionTag = class extends import_sdkgen_client26.TagAbstract {
1600
1748
  if (statusCode >= 0 && statusCode <= 999) {
1601
1749
  throw new CommonMessageException(await response.json());
1602
1750
  }
1603
- throw new import_sdkgen_client27.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1751
+ throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1604
1752
  }
1605
1753
  /**
1606
1754
  * Deletes an existing connection
@@ -1627,7 +1775,7 @@ var BackendConnectionTag = class extends import_sdkgen_client26.TagAbstract {
1627
1775
  if (statusCode >= 0 && statusCode <= 999) {
1628
1776
  throw new CommonMessageException(await response.json());
1629
1777
  }
1630
- throw new import_sdkgen_client27.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1778
+ throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1631
1779
  }
1632
1780
  /**
1633
1781
  * Returns a specific connection
@@ -1654,7 +1802,7 @@ var BackendConnectionTag = class extends import_sdkgen_client26.TagAbstract {
1654
1802
  if (statusCode >= 0 && statusCode <= 999) {
1655
1803
  throw new CommonMessageException(await response.json());
1656
1804
  }
1657
- throw new import_sdkgen_client27.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1805
+ throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1658
1806
  }
1659
1807
  /**
1660
1808
  * Returns a paginated list of connections
@@ -1684,7 +1832,7 @@ var BackendConnectionTag = class extends import_sdkgen_client26.TagAbstract {
1684
1832
  if (statusCode >= 0 && statusCode <= 999) {
1685
1833
  throw new CommonMessageException(await response.json());
1686
1834
  }
1687
- throw new import_sdkgen_client27.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1835
+ throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1688
1836
  }
1689
1837
  /**
1690
1838
  * Returns all available connection classes
@@ -1709,7 +1857,7 @@ var BackendConnectionTag = class extends import_sdkgen_client26.TagAbstract {
1709
1857
  if (statusCode >= 0 && statusCode <= 999) {
1710
1858
  throw new CommonMessageException(await response.json());
1711
1859
  }
1712
- throw new import_sdkgen_client27.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1860
+ throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1713
1861
  }
1714
1862
  /**
1715
1863
  * Returns the connection config form
@@ -1736,7 +1884,7 @@ var BackendConnectionTag = class extends import_sdkgen_client26.TagAbstract {
1736
1884
  if (statusCode >= 0 && statusCode <= 999) {
1737
1885
  throw new CommonMessageException(await response.json());
1738
1886
  }
1739
- throw new import_sdkgen_client27.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1887
+ throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1740
1888
  }
1741
1889
  /**
1742
1890
  * Returns a redirect url to start the OAuth2 authorization flow for the given connection
@@ -1763,7 +1911,7 @@ var BackendConnectionTag = class extends import_sdkgen_client26.TagAbstract {
1763
1911
  if (statusCode >= 0 && statusCode <= 999) {
1764
1912
  throw new CommonMessageException(await response.json());
1765
1913
  }
1766
- throw new import_sdkgen_client27.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1914
+ throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1767
1915
  }
1768
1916
  /**
1769
1917
  * Updates an existing connection
@@ -1793,14 +1941,14 @@ var BackendConnectionTag = class extends import_sdkgen_client26.TagAbstract {
1793
1941
  if (statusCode >= 0 && statusCode <= 999) {
1794
1942
  throw new CommonMessageException(await response.json());
1795
1943
  }
1796
- throw new import_sdkgen_client27.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1944
+ throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1797
1945
  }
1798
1946
  };
1799
1947
 
1800
1948
  // src/BackendCronjobTag.ts
1801
- var import_sdkgen_client28 = require("sdkgen-client");
1802
- var import_sdkgen_client29 = require("sdkgen-client");
1803
- var BackendCronjobTag = class extends import_sdkgen_client28.TagAbstract {
1949
+ var import_sdkgen_client30 = require("sdkgen-client");
1950
+ var import_sdkgen_client31 = require("sdkgen-client");
1951
+ var BackendCronjobTag = class extends import_sdkgen_client30.TagAbstract {
1804
1952
  /**
1805
1953
  * Creates a new cronjob
1806
1954
  *
@@ -1827,7 +1975,7 @@ var BackendCronjobTag = class extends import_sdkgen_client28.TagAbstract {
1827
1975
  if (statusCode >= 0 && statusCode <= 999) {
1828
1976
  throw new CommonMessageException(await response.json());
1829
1977
  }
1830
- throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1978
+ throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1831
1979
  }
1832
1980
  /**
1833
1981
  * Deletes an existing cronjob
@@ -1854,7 +2002,7 @@ var BackendCronjobTag = class extends import_sdkgen_client28.TagAbstract {
1854
2002
  if (statusCode >= 0 && statusCode <= 999) {
1855
2003
  throw new CommonMessageException(await response.json());
1856
2004
  }
1857
- throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2005
+ throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1858
2006
  }
1859
2007
  /**
1860
2008
  * Returns a specific cronjob
@@ -1881,7 +2029,7 @@ var BackendCronjobTag = class extends import_sdkgen_client28.TagAbstract {
1881
2029
  if (statusCode >= 0 && statusCode <= 999) {
1882
2030
  throw new CommonMessageException(await response.json());
1883
2031
  }
1884
- throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2032
+ throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1885
2033
  }
1886
2034
  /**
1887
2035
  * Returns a paginated list of cronjobs
@@ -1910,7 +2058,7 @@ var BackendCronjobTag = class extends import_sdkgen_client28.TagAbstract {
1910
2058
  if (statusCode >= 0 && statusCode <= 999) {
1911
2059
  throw new CommonMessageException(await response.json());
1912
2060
  }
1913
- throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2061
+ throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1914
2062
  }
1915
2063
  /**
1916
2064
  * Updates an existing cronjob
@@ -1940,14 +2088,14 @@ var BackendCronjobTag = class extends import_sdkgen_client28.TagAbstract {
1940
2088
  if (statusCode >= 0 && statusCode <= 999) {
1941
2089
  throw new CommonMessageException(await response.json());
1942
2090
  }
1943
- throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2091
+ throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1944
2092
  }
1945
2093
  };
1946
2094
 
1947
2095
  // src/BackendDashboardTag.ts
1948
- var import_sdkgen_client30 = require("sdkgen-client");
1949
- var import_sdkgen_client31 = require("sdkgen-client");
1950
- var BackendDashboardTag = class extends import_sdkgen_client30.TagAbstract {
2096
+ var import_sdkgen_client32 = require("sdkgen-client");
2097
+ var import_sdkgen_client33 = require("sdkgen-client");
2098
+ var BackendDashboardTag = class extends import_sdkgen_client32.TagAbstract {
1951
2099
  /**
1952
2100
  * Returns all available dashboard widgets
1953
2101
  *
@@ -1971,14 +2119,14 @@ var BackendDashboardTag = class extends import_sdkgen_client30.TagAbstract {
1971
2119
  if (statusCode >= 0 && statusCode <= 999) {
1972
2120
  throw new CommonMessageException(await response.json());
1973
2121
  }
1974
- throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2122
+ throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1975
2123
  }
1976
2124
  };
1977
2125
 
1978
2126
  // src/BackendEventTag.ts
1979
- var import_sdkgen_client32 = require("sdkgen-client");
1980
- var import_sdkgen_client33 = require("sdkgen-client");
1981
- var BackendEventTag = class extends import_sdkgen_client32.TagAbstract {
2127
+ var import_sdkgen_client34 = require("sdkgen-client");
2128
+ var import_sdkgen_client35 = require("sdkgen-client");
2129
+ var BackendEventTag = class extends import_sdkgen_client34.TagAbstract {
1982
2130
  /**
1983
2131
  * Creates a new event
1984
2132
  *
@@ -2005,7 +2153,7 @@ var BackendEventTag = class extends import_sdkgen_client32.TagAbstract {
2005
2153
  if (statusCode >= 0 && statusCode <= 999) {
2006
2154
  throw new CommonMessageException(await response.json());
2007
2155
  }
2008
- throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2156
+ throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2009
2157
  }
2010
2158
  /**
2011
2159
  * Deletes an existing event
@@ -2032,7 +2180,7 @@ var BackendEventTag = class extends import_sdkgen_client32.TagAbstract {
2032
2180
  if (statusCode >= 0 && statusCode <= 999) {
2033
2181
  throw new CommonMessageException(await response.json());
2034
2182
  }
2035
- throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2183
+ throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2036
2184
  }
2037
2185
  /**
2038
2186
  * Returns a specific event
@@ -2059,7 +2207,7 @@ var BackendEventTag = class extends import_sdkgen_client32.TagAbstract {
2059
2207
  if (statusCode >= 0 && statusCode <= 999) {
2060
2208
  throw new CommonMessageException(await response.json());
2061
2209
  }
2062
- throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2210
+ throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2063
2211
  }
2064
2212
  /**
2065
2213
  * Returns a paginated list of events
@@ -2088,7 +2236,7 @@ var BackendEventTag = class extends import_sdkgen_client32.TagAbstract {
2088
2236
  if (statusCode >= 0 && statusCode <= 999) {
2089
2237
  throw new CommonMessageException(await response.json());
2090
2238
  }
2091
- throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2239
+ throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2092
2240
  }
2093
2241
  /**
2094
2242
  * Updates an existing event
@@ -2118,14 +2266,14 @@ var BackendEventTag = class extends import_sdkgen_client32.TagAbstract {
2118
2266
  if (statusCode >= 0 && statusCode <= 999) {
2119
2267
  throw new CommonMessageException(await response.json());
2120
2268
  }
2121
- throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2269
+ throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2122
2270
  }
2123
2271
  };
2124
2272
 
2125
2273
  // src/BackendFirewallTag.ts
2126
- var import_sdkgen_client34 = require("sdkgen-client");
2127
- var import_sdkgen_client35 = require("sdkgen-client");
2128
- var BackendFirewallTag = class extends import_sdkgen_client34.TagAbstract {
2274
+ var import_sdkgen_client36 = require("sdkgen-client");
2275
+ var import_sdkgen_client37 = require("sdkgen-client");
2276
+ var BackendFirewallTag = class extends import_sdkgen_client36.TagAbstract {
2129
2277
  /**
2130
2278
  * Creates a new firewall rule
2131
2279
  *
@@ -2152,7 +2300,7 @@ var BackendFirewallTag = class extends import_sdkgen_client34.TagAbstract {
2152
2300
  if (statusCode >= 0 && statusCode <= 999) {
2153
2301
  throw new CommonMessageException(await response.json());
2154
2302
  }
2155
- throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2303
+ throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2156
2304
  }
2157
2305
  /**
2158
2306
  * Deletes an existing firewall rule
@@ -2179,7 +2327,7 @@ var BackendFirewallTag = class extends import_sdkgen_client34.TagAbstract {
2179
2327
  if (statusCode >= 0 && statusCode <= 999) {
2180
2328
  throw new CommonMessageException(await response.json());
2181
2329
  }
2182
- throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2330
+ throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2183
2331
  }
2184
2332
  /**
2185
2333
  * Returns a specific firewall rule
@@ -2206,7 +2354,7 @@ var BackendFirewallTag = class extends import_sdkgen_client34.TagAbstract {
2206
2354
  if (statusCode >= 0 && statusCode <= 999) {
2207
2355
  throw new CommonMessageException(await response.json());
2208
2356
  }
2209
- throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2357
+ throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2210
2358
  }
2211
2359
  /**
2212
2360
  * Returns a paginated list of firewall rules
@@ -2235,7 +2383,7 @@ var BackendFirewallTag = class extends import_sdkgen_client34.TagAbstract {
2235
2383
  if (statusCode >= 0 && statusCode <= 999) {
2236
2384
  throw new CommonMessageException(await response.json());
2237
2385
  }
2238
- throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2386
+ throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2239
2387
  }
2240
2388
  /**
2241
2389
  * Updates an existing firewall rule
@@ -2265,14 +2413,14 @@ var BackendFirewallTag = class extends import_sdkgen_client34.TagAbstract {
2265
2413
  if (statusCode >= 0 && statusCode <= 999) {
2266
2414
  throw new CommonMessageException(await response.json());
2267
2415
  }
2268
- throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2416
+ throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2269
2417
  }
2270
2418
  };
2271
2419
 
2272
2420
  // src/BackendFormTag.ts
2273
- var import_sdkgen_client36 = require("sdkgen-client");
2274
- var import_sdkgen_client37 = require("sdkgen-client");
2275
- var BackendFormTag = class extends import_sdkgen_client36.TagAbstract {
2421
+ var import_sdkgen_client38 = require("sdkgen-client");
2422
+ var import_sdkgen_client39 = require("sdkgen-client");
2423
+ var BackendFormTag = class extends import_sdkgen_client38.TagAbstract {
2276
2424
  /**
2277
2425
  * Creates a new form
2278
2426
  *
@@ -2299,7 +2447,7 @@ var BackendFormTag = class extends import_sdkgen_client36.TagAbstract {
2299
2447
  if (statusCode >= 0 && statusCode <= 999) {
2300
2448
  throw new CommonMessageException(await response.json());
2301
2449
  }
2302
- throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2450
+ throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2303
2451
  }
2304
2452
  /**
2305
2453
  * Deletes an existing form
@@ -2326,7 +2474,7 @@ var BackendFormTag = class extends import_sdkgen_client36.TagAbstract {
2326
2474
  if (statusCode >= 0 && statusCode <= 999) {
2327
2475
  throw new CommonMessageException(await response.json());
2328
2476
  }
2329
- throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2477
+ throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2330
2478
  }
2331
2479
  /**
2332
2480
  * Returns a specific form
@@ -2353,7 +2501,7 @@ var BackendFormTag = class extends import_sdkgen_client36.TagAbstract {
2353
2501
  if (statusCode >= 0 && statusCode <= 999) {
2354
2502
  throw new CommonMessageException(await response.json());
2355
2503
  }
2356
- throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2504
+ throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2357
2505
  }
2358
2506
  /**
2359
2507
  * Returns a paginated list of forms
@@ -2382,7 +2530,7 @@ var BackendFormTag = class extends import_sdkgen_client36.TagAbstract {
2382
2530
  if (statusCode >= 0 && statusCode <= 999) {
2383
2531
  throw new CommonMessageException(await response.json());
2384
2532
  }
2385
- throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2533
+ throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2386
2534
  }
2387
2535
  /**
2388
2536
  * Updates an existing form
@@ -2412,14 +2560,14 @@ var BackendFormTag = class extends import_sdkgen_client36.TagAbstract {
2412
2560
  if (statusCode >= 0 && statusCode <= 999) {
2413
2561
  throw new CommonMessageException(await response.json());
2414
2562
  }
2415
- throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2563
+ throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2416
2564
  }
2417
2565
  };
2418
2566
 
2419
2567
  // src/BackendGeneratorTag.ts
2420
- var import_sdkgen_client38 = require("sdkgen-client");
2421
- var import_sdkgen_client39 = require("sdkgen-client");
2422
- var BackendGeneratorTag = class extends import_sdkgen_client38.TagAbstract {
2568
+ var import_sdkgen_client40 = require("sdkgen-client");
2569
+ var import_sdkgen_client41 = require("sdkgen-client");
2570
+ var BackendGeneratorTag = class extends import_sdkgen_client40.TagAbstract {
2423
2571
  /**
2424
2572
  * Executes a generator with the provided config
2425
2573
  *
@@ -2448,7 +2596,7 @@ var BackendGeneratorTag = class extends import_sdkgen_client38.TagAbstract {
2448
2596
  if (statusCode >= 0 && statusCode <= 999) {
2449
2597
  throw new CommonMessageException(await response.json());
2450
2598
  }
2451
- throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2599
+ throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2452
2600
  }
2453
2601
  /**
2454
2602
  * Generates a changelog of all potential changes if you execute this generator with the provided config
@@ -2478,7 +2626,7 @@ var BackendGeneratorTag = class extends import_sdkgen_client38.TagAbstract {
2478
2626
  if (statusCode >= 0 && statusCode <= 999) {
2479
2627
  throw new CommonMessageException(await response.json());
2480
2628
  }
2481
- throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2629
+ throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2482
2630
  }
2483
2631
  /**
2484
2632
  * Returns all available generator classes
@@ -2503,7 +2651,7 @@ var BackendGeneratorTag = class extends import_sdkgen_client38.TagAbstract {
2503
2651
  if (statusCode >= 0 && statusCode <= 999) {
2504
2652
  throw new CommonMessageException(await response.json());
2505
2653
  }
2506
- throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2654
+ throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2507
2655
  }
2508
2656
  /**
2509
2657
  * Returns the generator config form
@@ -2530,14 +2678,14 @@ var BackendGeneratorTag = class extends import_sdkgen_client38.TagAbstract {
2530
2678
  if (statusCode >= 0 && statusCode <= 999) {
2531
2679
  throw new CommonMessageException(await response.json());
2532
2680
  }
2533
- throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2681
+ throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2534
2682
  }
2535
2683
  };
2536
2684
 
2537
2685
  // src/BackendIdentityTag.ts
2538
- var import_sdkgen_client40 = require("sdkgen-client");
2539
- var import_sdkgen_client41 = require("sdkgen-client");
2540
- var BackendIdentityTag = class extends import_sdkgen_client40.TagAbstract {
2686
+ var import_sdkgen_client42 = require("sdkgen-client");
2687
+ var import_sdkgen_client43 = require("sdkgen-client");
2688
+ var BackendIdentityTag = class extends import_sdkgen_client42.TagAbstract {
2541
2689
  /**
2542
2690
  * Creates a new identity
2543
2691
  *
@@ -2564,7 +2712,7 @@ var BackendIdentityTag = class extends import_sdkgen_client40.TagAbstract {
2564
2712
  if (statusCode >= 0 && statusCode <= 999) {
2565
2713
  throw new CommonMessageException(await response.json());
2566
2714
  }
2567
- throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2715
+ throw new import_sdkgen_client43.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2568
2716
  }
2569
2717
  /**
2570
2718
  * Deletes an existing identity
@@ -2591,7 +2739,7 @@ var BackendIdentityTag = class extends import_sdkgen_client40.TagAbstract {
2591
2739
  if (statusCode >= 0 && statusCode <= 999) {
2592
2740
  throw new CommonMessageException(await response.json());
2593
2741
  }
2594
- throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2742
+ throw new import_sdkgen_client43.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2595
2743
  }
2596
2744
  /**
2597
2745
  * Returns a specific identity
@@ -2618,7 +2766,7 @@ var BackendIdentityTag = class extends import_sdkgen_client40.TagAbstract {
2618
2766
  if (statusCode >= 0 && statusCode <= 999) {
2619
2767
  throw new CommonMessageException(await response.json());
2620
2768
  }
2621
- throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2769
+ throw new import_sdkgen_client43.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2622
2770
  }
2623
2771
  /**
2624
2772
  * Returns a paginated list of identities
@@ -2647,7 +2795,7 @@ var BackendIdentityTag = class extends import_sdkgen_client40.TagAbstract {
2647
2795
  if (statusCode >= 0 && statusCode <= 999) {
2648
2796
  throw new CommonMessageException(await response.json());
2649
2797
  }
2650
- throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2798
+ throw new import_sdkgen_client43.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2651
2799
  }
2652
2800
  /**
2653
2801
  * Returns all available identity classes
@@ -2672,7 +2820,7 @@ var BackendIdentityTag = class extends import_sdkgen_client40.TagAbstract {
2672
2820
  if (statusCode >= 0 && statusCode <= 999) {
2673
2821
  throw new CommonMessageException(await response.json());
2674
2822
  }
2675
- throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2823
+ throw new import_sdkgen_client43.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2676
2824
  }
2677
2825
  /**
2678
2826
  * Returns the identity config form
@@ -2699,7 +2847,7 @@ var BackendIdentityTag = class extends import_sdkgen_client40.TagAbstract {
2699
2847
  if (statusCode >= 0 && statusCode <= 999) {
2700
2848
  throw new CommonMessageException(await response.json());
2701
2849
  }
2702
- throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2850
+ throw new import_sdkgen_client43.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2703
2851
  }
2704
2852
  /**
2705
2853
  * Updates an existing identity
@@ -2729,14 +2877,14 @@ var BackendIdentityTag = class extends import_sdkgen_client40.TagAbstract {
2729
2877
  if (statusCode >= 0 && statusCode <= 999) {
2730
2878
  throw new CommonMessageException(await response.json());
2731
2879
  }
2732
- throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2880
+ throw new import_sdkgen_client43.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2733
2881
  }
2734
2882
  };
2735
2883
 
2736
2884
  // src/BackendLogTag.ts
2737
- var import_sdkgen_client42 = require("sdkgen-client");
2738
- var import_sdkgen_client43 = require("sdkgen-client");
2739
- var BackendLogTag = class extends import_sdkgen_client42.TagAbstract {
2885
+ var import_sdkgen_client44 = require("sdkgen-client");
2886
+ var import_sdkgen_client45 = require("sdkgen-client");
2887
+ var BackendLogTag = class extends import_sdkgen_client44.TagAbstract {
2740
2888
  /**
2741
2889
  * Returns a specific log
2742
2890
  *
@@ -2762,7 +2910,7 @@ var BackendLogTag = class extends import_sdkgen_client42.TagAbstract {
2762
2910
  if (statusCode >= 0 && statusCode <= 999) {
2763
2911
  throw new CommonMessageException(await response.json());
2764
2912
  }
2765
- throw new import_sdkgen_client43.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2913
+ throw new import_sdkgen_client45.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2766
2914
  }
2767
2915
  /**
2768
2916
  * Returns a paginated list of logs
@@ -2802,7 +2950,7 @@ var BackendLogTag = class extends import_sdkgen_client42.TagAbstract {
2802
2950
  if (statusCode >= 0 && statusCode <= 999) {
2803
2951
  throw new CommonMessageException(await response.json());
2804
2952
  }
2805
- throw new import_sdkgen_client43.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2953
+ throw new import_sdkgen_client45.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2806
2954
  }
2807
2955
  /**
2808
2956
  * Returns a paginated list of log errors
@@ -2831,7 +2979,7 @@ var BackendLogTag = class extends import_sdkgen_client42.TagAbstract {
2831
2979
  if (statusCode >= 0 && statusCode <= 999) {
2832
2980
  throw new CommonMessageException(await response.json());
2833
2981
  }
2834
- throw new import_sdkgen_client43.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2982
+ throw new import_sdkgen_client45.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2835
2983
  }
2836
2984
  /**
2837
2985
  * Returns a specific error
@@ -2858,14 +3006,14 @@ var BackendLogTag = class extends import_sdkgen_client42.TagAbstract {
2858
3006
  if (statusCode >= 0 && statusCode <= 999) {
2859
3007
  throw new CommonMessageException(await response.json());
2860
3008
  }
2861
- throw new import_sdkgen_client43.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3009
+ throw new import_sdkgen_client45.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2862
3010
  }
2863
3011
  };
2864
3012
 
2865
3013
  // src/BackendMarketplaceActionTag.ts
2866
- var import_sdkgen_client44 = require("sdkgen-client");
2867
- var import_sdkgen_client45 = require("sdkgen-client");
2868
- var BackendMarketplaceActionTag = class extends import_sdkgen_client44.TagAbstract {
3014
+ var import_sdkgen_client46 = require("sdkgen-client");
3015
+ var import_sdkgen_client47 = require("sdkgen-client");
3016
+ var BackendMarketplaceActionTag = class extends import_sdkgen_client46.TagAbstract {
2869
3017
  /**
2870
3018
  * Returns a specific marketplace action
2871
3019
  *
@@ -2892,7 +3040,7 @@ var BackendMarketplaceActionTag = class extends import_sdkgen_client44.TagAbstra
2892
3040
  if (statusCode >= 0 && statusCode <= 999) {
2893
3041
  throw new CommonMessageException(await response.json());
2894
3042
  }
2895
- throw new import_sdkgen_client45.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3043
+ throw new import_sdkgen_client47.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2896
3044
  }
2897
3045
  /**
2898
3046
  * Returns a paginated list of marketplace actions
@@ -2920,7 +3068,7 @@ var BackendMarketplaceActionTag = class extends import_sdkgen_client44.TagAbstra
2920
3068
  if (statusCode >= 0 && statusCode <= 999) {
2921
3069
  throw new CommonMessageException(await response.json());
2922
3070
  }
2923
- throw new import_sdkgen_client45.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3071
+ throw new import_sdkgen_client47.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2924
3072
  }
2925
3073
  /**
2926
3074
  * Installs an action from the marketplace
@@ -2948,7 +3096,7 @@ var BackendMarketplaceActionTag = class extends import_sdkgen_client44.TagAbstra
2948
3096
  if (statusCode >= 0 && statusCode <= 999) {
2949
3097
  throw new CommonMessageException(await response.json());
2950
3098
  }
2951
- throw new import_sdkgen_client45.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3099
+ throw new import_sdkgen_client47.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2952
3100
  }
2953
3101
  /**
2954
3102
  * Upgrades an action from the marketplace
@@ -2976,14 +3124,14 @@ var BackendMarketplaceActionTag = class extends import_sdkgen_client44.TagAbstra
2976
3124
  if (statusCode >= 0 && statusCode <= 999) {
2977
3125
  throw new CommonMessageException(await response.json());
2978
3126
  }
2979
- throw new import_sdkgen_client45.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3127
+ throw new import_sdkgen_client47.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2980
3128
  }
2981
3129
  };
2982
3130
 
2983
3131
  // src/BackendMarketplaceAppTag.ts
2984
- var import_sdkgen_client46 = require("sdkgen-client");
2985
- var import_sdkgen_client47 = require("sdkgen-client");
2986
- var BackendMarketplaceAppTag = class extends import_sdkgen_client46.TagAbstract {
3132
+ var import_sdkgen_client48 = require("sdkgen-client");
3133
+ var import_sdkgen_client49 = require("sdkgen-client");
3134
+ var BackendMarketplaceAppTag = class extends import_sdkgen_client48.TagAbstract {
2987
3135
  /**
2988
3136
  * Returns a specific marketplace app
2989
3137
  *
@@ -3010,7 +3158,7 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client46.TagAbstract
3010
3158
  if (statusCode >= 0 && statusCode <= 999) {
3011
3159
  throw new CommonMessageException(await response.json());
3012
3160
  }
3013
- throw new import_sdkgen_client47.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3161
+ throw new import_sdkgen_client49.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3014
3162
  }
3015
3163
  /**
3016
3164
  * Returns a paginated list of marketplace apps
@@ -3038,7 +3186,7 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client46.TagAbstract
3038
3186
  if (statusCode >= 0 && statusCode <= 999) {
3039
3187
  throw new CommonMessageException(await response.json());
3040
3188
  }
3041
- throw new import_sdkgen_client47.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3189
+ throw new import_sdkgen_client49.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3042
3190
  }
3043
3191
  /**
3044
3192
  * Installs an app from the marketplace
@@ -3066,7 +3214,7 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client46.TagAbstract
3066
3214
  if (statusCode >= 0 && statusCode <= 999) {
3067
3215
  throw new CommonMessageException(await response.json());
3068
3216
  }
3069
- throw new import_sdkgen_client47.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3217
+ throw new import_sdkgen_client49.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3070
3218
  }
3071
3219
  /**
3072
3220
  * Upgrades an app from the marketplace
@@ -3094,14 +3242,14 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client46.TagAbstract
3094
3242
  if (statusCode >= 0 && statusCode <= 999) {
3095
3243
  throw new CommonMessageException(await response.json());
3096
3244
  }
3097
- throw new import_sdkgen_client47.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3245
+ throw new import_sdkgen_client49.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3098
3246
  }
3099
3247
  };
3100
3248
 
3101
3249
  // src/BackendMarketplaceBundleTag.ts
3102
- var import_sdkgen_client48 = require("sdkgen-client");
3103
- var import_sdkgen_client49 = require("sdkgen-client");
3104
- var BackendMarketplaceBundleTag = class extends import_sdkgen_client48.TagAbstract {
3250
+ var import_sdkgen_client50 = require("sdkgen-client");
3251
+ var import_sdkgen_client51 = require("sdkgen-client");
3252
+ var BackendMarketplaceBundleTag = class extends import_sdkgen_client50.TagAbstract {
3105
3253
  /**
3106
3254
  * Returns a specific marketplace bundle
3107
3255
  *
@@ -3128,7 +3276,7 @@ var BackendMarketplaceBundleTag = class extends import_sdkgen_client48.TagAbstra
3128
3276
  if (statusCode >= 0 && statusCode <= 999) {
3129
3277
  throw new CommonMessageException(await response.json());
3130
3278
  }
3131
- throw new import_sdkgen_client49.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3279
+ throw new import_sdkgen_client51.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3132
3280
  }
3133
3281
  /**
3134
3282
  * Returns a paginated list of marketplace bundles
@@ -3156,7 +3304,7 @@ var BackendMarketplaceBundleTag = class extends import_sdkgen_client48.TagAbstra
3156
3304
  if (statusCode >= 0 && statusCode <= 999) {
3157
3305
  throw new CommonMessageException(await response.json());
3158
3306
  }
3159
- throw new import_sdkgen_client49.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3307
+ throw new import_sdkgen_client51.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3160
3308
  }
3161
3309
  /**
3162
3310
  * Installs an bundle from the marketplace
@@ -3184,7 +3332,7 @@ var BackendMarketplaceBundleTag = class extends import_sdkgen_client48.TagAbstra
3184
3332
  if (statusCode >= 0 && statusCode <= 999) {
3185
3333
  throw new CommonMessageException(await response.json());
3186
3334
  }
3187
- throw new import_sdkgen_client49.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3335
+ throw new import_sdkgen_client51.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3188
3336
  }
3189
3337
  /**
3190
3338
  * Upgrades an bundle from the marketplace
@@ -3212,13 +3360,13 @@ var BackendMarketplaceBundleTag = class extends import_sdkgen_client48.TagAbstra
3212
3360
  if (statusCode >= 0 && statusCode <= 999) {
3213
3361
  throw new CommonMessageException(await response.json());
3214
3362
  }
3215
- throw new import_sdkgen_client49.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3363
+ throw new import_sdkgen_client51.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3216
3364
  }
3217
3365
  };
3218
3366
 
3219
3367
  // src/BackendMarketplaceTag.ts
3220
- var import_sdkgen_client50 = require("sdkgen-client");
3221
- var BackendMarketplaceTag = class extends import_sdkgen_client50.TagAbstract {
3368
+ var import_sdkgen_client52 = require("sdkgen-client");
3369
+ var BackendMarketplaceTag = class extends import_sdkgen_client52.TagAbstract {
3222
3370
  action() {
3223
3371
  return new BackendMarketplaceActionTag(
3224
3372
  this.httpClient,
@@ -3240,9 +3388,9 @@ var BackendMarketplaceTag = class extends import_sdkgen_client50.TagAbstract {
3240
3388
  };
3241
3389
 
3242
3390
  // src/BackendOperationTag.ts
3243
- var import_sdkgen_client51 = require("sdkgen-client");
3244
- var import_sdkgen_client52 = require("sdkgen-client");
3245
- var BackendOperationTag = class extends import_sdkgen_client51.TagAbstract {
3391
+ var import_sdkgen_client53 = require("sdkgen-client");
3392
+ var import_sdkgen_client54 = require("sdkgen-client");
3393
+ var BackendOperationTag = class extends import_sdkgen_client53.TagAbstract {
3246
3394
  /**
3247
3395
  * Creates a new operation
3248
3396
  *
@@ -3269,7 +3417,7 @@ var BackendOperationTag = class extends import_sdkgen_client51.TagAbstract {
3269
3417
  if (statusCode >= 0 && statusCode <= 999) {
3270
3418
  throw new CommonMessageException(await response.json());
3271
3419
  }
3272
- throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3420
+ throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3273
3421
  }
3274
3422
  /**
3275
3423
  * Deletes an existing operation
@@ -3296,7 +3444,7 @@ var BackendOperationTag = class extends import_sdkgen_client51.TagAbstract {
3296
3444
  if (statusCode >= 0 && statusCode <= 999) {
3297
3445
  throw new CommonMessageException(await response.json());
3298
3446
  }
3299
- throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3447
+ throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3300
3448
  }
3301
3449
  /**
3302
3450
  * Returns a specific operation
@@ -3323,7 +3471,7 @@ var BackendOperationTag = class extends import_sdkgen_client51.TagAbstract {
3323
3471
  if (statusCode >= 0 && statusCode <= 999) {
3324
3472
  throw new CommonMessageException(await response.json());
3325
3473
  }
3326
- throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3474
+ throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3327
3475
  }
3328
3476
  /**
3329
3477
  * Returns a paginated list of operations
@@ -3352,7 +3500,7 @@ var BackendOperationTag = class extends import_sdkgen_client51.TagAbstract {
3352
3500
  if (statusCode >= 0 && statusCode <= 999) {
3353
3501
  throw new CommonMessageException(await response.json());
3354
3502
  }
3355
- throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3503
+ throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3356
3504
  }
3357
3505
  /**
3358
3506
  * Updates an existing operation
@@ -3382,14 +3530,14 @@ var BackendOperationTag = class extends import_sdkgen_client51.TagAbstract {
3382
3530
  if (statusCode >= 0 && statusCode <= 999) {
3383
3531
  throw new CommonMessageException(await response.json());
3384
3532
  }
3385
- throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3533
+ throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3386
3534
  }
3387
3535
  };
3388
3536
 
3389
3537
  // src/BackendPageTag.ts
3390
- var import_sdkgen_client53 = require("sdkgen-client");
3391
- var import_sdkgen_client54 = require("sdkgen-client");
3392
- var BackendPageTag = class extends import_sdkgen_client53.TagAbstract {
3538
+ var import_sdkgen_client55 = require("sdkgen-client");
3539
+ var import_sdkgen_client56 = require("sdkgen-client");
3540
+ var BackendPageTag = class extends import_sdkgen_client55.TagAbstract {
3393
3541
  /**
3394
3542
  * Creates a new page
3395
3543
  *
@@ -3416,7 +3564,7 @@ var BackendPageTag = class extends import_sdkgen_client53.TagAbstract {
3416
3564
  if (statusCode >= 0 && statusCode <= 999) {
3417
3565
  throw new CommonMessageException(await response.json());
3418
3566
  }
3419
- throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3567
+ throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3420
3568
  }
3421
3569
  /**
3422
3570
  * Deletes an existing page
@@ -3443,7 +3591,7 @@ var BackendPageTag = class extends import_sdkgen_client53.TagAbstract {
3443
3591
  if (statusCode >= 0 && statusCode <= 999) {
3444
3592
  throw new CommonMessageException(await response.json());
3445
3593
  }
3446
- throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3594
+ throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3447
3595
  }
3448
3596
  /**
3449
3597
  * Returns a specific page
@@ -3470,7 +3618,7 @@ var BackendPageTag = class extends import_sdkgen_client53.TagAbstract {
3470
3618
  if (statusCode >= 0 && statusCode <= 999) {
3471
3619
  throw new CommonMessageException(await response.json());
3472
3620
  }
3473
- throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3621
+ throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3474
3622
  }
3475
3623
  /**
3476
3624
  * Returns a paginated list of pages
@@ -3499,7 +3647,7 @@ var BackendPageTag = class extends import_sdkgen_client53.TagAbstract {
3499
3647
  if (statusCode >= 0 && statusCode <= 999) {
3500
3648
  throw new CommonMessageException(await response.json());
3501
3649
  }
3502
- throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3650
+ throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3503
3651
  }
3504
3652
  /**
3505
3653
  * Updates an existing page
@@ -3529,14 +3677,14 @@ var BackendPageTag = class extends import_sdkgen_client53.TagAbstract {
3529
3677
  if (statusCode >= 0 && statusCode <= 999) {
3530
3678
  throw new CommonMessageException(await response.json());
3531
3679
  }
3532
- throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3680
+ throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3533
3681
  }
3534
3682
  };
3535
3683
 
3536
3684
  // src/BackendPlanTag.ts
3537
- var import_sdkgen_client55 = require("sdkgen-client");
3538
- var import_sdkgen_client56 = require("sdkgen-client");
3539
- var BackendPlanTag = class extends import_sdkgen_client55.TagAbstract {
3685
+ var import_sdkgen_client57 = require("sdkgen-client");
3686
+ var import_sdkgen_client58 = require("sdkgen-client");
3687
+ var BackendPlanTag = class extends import_sdkgen_client57.TagAbstract {
3540
3688
  /**
3541
3689
  * Creates a new plan
3542
3690
  *
@@ -3563,7 +3711,7 @@ var BackendPlanTag = class extends import_sdkgen_client55.TagAbstract {
3563
3711
  if (statusCode >= 0 && statusCode <= 999) {
3564
3712
  throw new CommonMessageException(await response.json());
3565
3713
  }
3566
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3714
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3567
3715
  }
3568
3716
  /**
3569
3717
  * Deletes an existing plan
@@ -3590,7 +3738,7 @@ var BackendPlanTag = class extends import_sdkgen_client55.TagAbstract {
3590
3738
  if (statusCode >= 0 && statusCode <= 999) {
3591
3739
  throw new CommonMessageException(await response.json());
3592
3740
  }
3593
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3741
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3594
3742
  }
3595
3743
  /**
3596
3744
  * Returns a specific plan
@@ -3617,7 +3765,7 @@ var BackendPlanTag = class extends import_sdkgen_client55.TagAbstract {
3617
3765
  if (statusCode >= 0 && statusCode <= 999) {
3618
3766
  throw new CommonMessageException(await response.json());
3619
3767
  }
3620
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3768
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3621
3769
  }
3622
3770
  /**
3623
3771
  * Returns a paginated list of plans
@@ -3646,7 +3794,7 @@ var BackendPlanTag = class extends import_sdkgen_client55.TagAbstract {
3646
3794
  if (statusCode >= 0 && statusCode <= 999) {
3647
3795
  throw new CommonMessageException(await response.json());
3648
3796
  }
3649
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3797
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3650
3798
  }
3651
3799
  /**
3652
3800
  * Updates an existing plan
@@ -3676,14 +3824,14 @@ var BackendPlanTag = class extends import_sdkgen_client55.TagAbstract {
3676
3824
  if (statusCode >= 0 && statusCode <= 999) {
3677
3825
  throw new CommonMessageException(await response.json());
3678
3826
  }
3679
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3827
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3680
3828
  }
3681
3829
  };
3682
3830
 
3683
3831
  // src/BackendRateTag.ts
3684
- var import_sdkgen_client57 = require("sdkgen-client");
3685
- var import_sdkgen_client58 = require("sdkgen-client");
3686
- var BackendRateTag = class extends import_sdkgen_client57.TagAbstract {
3832
+ var import_sdkgen_client59 = require("sdkgen-client");
3833
+ var import_sdkgen_client60 = require("sdkgen-client");
3834
+ var BackendRateTag = class extends import_sdkgen_client59.TagAbstract {
3687
3835
  /**
3688
3836
  * Creates a new rate limitation
3689
3837
  *
@@ -3710,7 +3858,7 @@ var BackendRateTag = class extends import_sdkgen_client57.TagAbstract {
3710
3858
  if (statusCode >= 0 && statusCode <= 999) {
3711
3859
  throw new CommonMessageException(await response.json());
3712
3860
  }
3713
- throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3861
+ throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3714
3862
  }
3715
3863
  /**
3716
3864
  * Deletes an existing rate
@@ -3737,7 +3885,7 @@ var BackendRateTag = class extends import_sdkgen_client57.TagAbstract {
3737
3885
  if (statusCode >= 0 && statusCode <= 999) {
3738
3886
  throw new CommonMessageException(await response.json());
3739
3887
  }
3740
- throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3888
+ throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3741
3889
  }
3742
3890
  /**
3743
3891
  * Returns a specific rate
@@ -3764,7 +3912,7 @@ var BackendRateTag = class extends import_sdkgen_client57.TagAbstract {
3764
3912
  if (statusCode >= 0 && statusCode <= 999) {
3765
3913
  throw new CommonMessageException(await response.json());
3766
3914
  }
3767
- throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3915
+ throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3768
3916
  }
3769
3917
  /**
3770
3918
  * Returns a paginated list of rate limitations
@@ -3793,7 +3941,7 @@ var BackendRateTag = class extends import_sdkgen_client57.TagAbstract {
3793
3941
  if (statusCode >= 0 && statusCode <= 999) {
3794
3942
  throw new CommonMessageException(await response.json());
3795
3943
  }
3796
- throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3944
+ throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3797
3945
  }
3798
3946
  /**
3799
3947
  * Updates an existing rate
@@ -3823,14 +3971,14 @@ var BackendRateTag = class extends import_sdkgen_client57.TagAbstract {
3823
3971
  if (statusCode >= 0 && statusCode <= 999) {
3824
3972
  throw new CommonMessageException(await response.json());
3825
3973
  }
3826
- throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3974
+ throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3827
3975
  }
3828
3976
  };
3829
3977
 
3830
3978
  // src/BackendRoleTag.ts
3831
- var import_sdkgen_client59 = require("sdkgen-client");
3832
- var import_sdkgen_client60 = require("sdkgen-client");
3833
- var BackendRoleTag = class extends import_sdkgen_client59.TagAbstract {
3979
+ var import_sdkgen_client61 = require("sdkgen-client");
3980
+ var import_sdkgen_client62 = require("sdkgen-client");
3981
+ var BackendRoleTag = class extends import_sdkgen_client61.TagAbstract {
3834
3982
  /**
3835
3983
  * Creates a new role
3836
3984
  *
@@ -3857,7 +4005,7 @@ var BackendRoleTag = class extends import_sdkgen_client59.TagAbstract {
3857
4005
  if (statusCode >= 0 && statusCode <= 999) {
3858
4006
  throw new CommonMessageException(await response.json());
3859
4007
  }
3860
- throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4008
+ throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3861
4009
  }
3862
4010
  /**
3863
4011
  * Deletes an existing role
@@ -3884,7 +4032,7 @@ var BackendRoleTag = class extends import_sdkgen_client59.TagAbstract {
3884
4032
  if (statusCode >= 0 && statusCode <= 999) {
3885
4033
  throw new CommonMessageException(await response.json());
3886
4034
  }
3887
- throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4035
+ throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3888
4036
  }
3889
4037
  /**
3890
4038
  * Returns a specific role
@@ -3911,7 +4059,7 @@ var BackendRoleTag = class extends import_sdkgen_client59.TagAbstract {
3911
4059
  if (statusCode >= 0 && statusCode <= 999) {
3912
4060
  throw new CommonMessageException(await response.json());
3913
4061
  }
3914
- throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4062
+ throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3915
4063
  }
3916
4064
  /**
3917
4065
  * Returns a paginated list of roles
@@ -3940,7 +4088,7 @@ var BackendRoleTag = class extends import_sdkgen_client59.TagAbstract {
3940
4088
  if (statusCode >= 0 && statusCode <= 999) {
3941
4089
  throw new CommonMessageException(await response.json());
3942
4090
  }
3943
- throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4091
+ throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3944
4092
  }
3945
4093
  /**
3946
4094
  * Updates an existing role
@@ -3970,14 +4118,14 @@ var BackendRoleTag = class extends import_sdkgen_client59.TagAbstract {
3970
4118
  if (statusCode >= 0 && statusCode <= 999) {
3971
4119
  throw new CommonMessageException(await response.json());
3972
4120
  }
3973
- throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4121
+ throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3974
4122
  }
3975
4123
  };
3976
4124
 
3977
4125
  // src/BackendSchemaTag.ts
3978
- var import_sdkgen_client61 = require("sdkgen-client");
3979
- var import_sdkgen_client62 = require("sdkgen-client");
3980
- var BackendSchemaTag = class extends import_sdkgen_client61.TagAbstract {
4126
+ var import_sdkgen_client63 = require("sdkgen-client");
4127
+ var import_sdkgen_client64 = require("sdkgen-client");
4128
+ var BackendSchemaTag = class extends import_sdkgen_client63.TagAbstract {
3981
4129
  /**
3982
4130
  * Creates a new schema
3983
4131
  *
@@ -4004,7 +4152,7 @@ var BackendSchemaTag = class extends import_sdkgen_client61.TagAbstract {
4004
4152
  if (statusCode >= 0 && statusCode <= 999) {
4005
4153
  throw new CommonMessageException(await response.json());
4006
4154
  }
4007
- throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4155
+ throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4008
4156
  }
4009
4157
  /**
4010
4158
  * Deletes an existing schema
@@ -4031,7 +4179,7 @@ var BackendSchemaTag = class extends import_sdkgen_client61.TagAbstract {
4031
4179
  if (statusCode >= 0 && statusCode <= 999) {
4032
4180
  throw new CommonMessageException(await response.json());
4033
4181
  }
4034
- throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4182
+ throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4035
4183
  }
4036
4184
  /**
4037
4185
  * Returns a specific schema
@@ -4058,7 +4206,7 @@ var BackendSchemaTag = class extends import_sdkgen_client61.TagAbstract {
4058
4206
  if (statusCode >= 0 && statusCode <= 999) {
4059
4207
  throw new CommonMessageException(await response.json());
4060
4208
  }
4061
- throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4209
+ throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4062
4210
  }
4063
4211
  /**
4064
4212
  * Returns a paginated list of schemas
@@ -4087,7 +4235,7 @@ var BackendSchemaTag = class extends import_sdkgen_client61.TagAbstract {
4087
4235
  if (statusCode >= 0 && statusCode <= 999) {
4088
4236
  throw new CommonMessageException(await response.json());
4089
4237
  }
4090
- throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4238
+ throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4091
4239
  }
4092
4240
  /**
4093
4241
  * Returns a HTML preview of the provided schema
@@ -4114,7 +4262,7 @@ var BackendSchemaTag = class extends import_sdkgen_client61.TagAbstract {
4114
4262
  if (statusCode >= 0 && statusCode <= 999) {
4115
4263
  throw new CommonMessageException(await response.json());
4116
4264
  }
4117
- throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4265
+ throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4118
4266
  }
4119
4267
  /**
4120
4268
  * Updates an existing schema
@@ -4144,14 +4292,14 @@ var BackendSchemaTag = class extends import_sdkgen_client61.TagAbstract {
4144
4292
  if (statusCode >= 0 && statusCode <= 999) {
4145
4293
  throw new CommonMessageException(await response.json());
4146
4294
  }
4147
- throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4295
+ throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4148
4296
  }
4149
4297
  };
4150
4298
 
4151
4299
  // src/BackendScopeTag.ts
4152
- var import_sdkgen_client63 = require("sdkgen-client");
4153
- var import_sdkgen_client64 = require("sdkgen-client");
4154
- var BackendScopeTag = class extends import_sdkgen_client63.TagAbstract {
4300
+ var import_sdkgen_client65 = require("sdkgen-client");
4301
+ var import_sdkgen_client66 = require("sdkgen-client");
4302
+ var BackendScopeTag = class extends import_sdkgen_client65.TagAbstract {
4155
4303
  /**
4156
4304
  * Creates a new scope
4157
4305
  *
@@ -4178,7 +4326,7 @@ var BackendScopeTag = class extends import_sdkgen_client63.TagAbstract {
4178
4326
  if (statusCode >= 0 && statusCode <= 999) {
4179
4327
  throw new CommonMessageException(await response.json());
4180
4328
  }
4181
- throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4329
+ throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4182
4330
  }
4183
4331
  /**
4184
4332
  * Deletes an existing scope
@@ -4205,7 +4353,7 @@ var BackendScopeTag = class extends import_sdkgen_client63.TagAbstract {
4205
4353
  if (statusCode >= 0 && statusCode <= 999) {
4206
4354
  throw new CommonMessageException(await response.json());
4207
4355
  }
4208
- throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4356
+ throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4209
4357
  }
4210
4358
  /**
4211
4359
  * Returns a specific scope
@@ -4232,7 +4380,7 @@ var BackendScopeTag = class extends import_sdkgen_client63.TagAbstract {
4232
4380
  if (statusCode >= 0 && statusCode <= 999) {
4233
4381
  throw new CommonMessageException(await response.json());
4234
4382
  }
4235
- throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4383
+ throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4236
4384
  }
4237
4385
  /**
4238
4386
  * Returns a paginated list of scopes
@@ -4261,7 +4409,7 @@ var BackendScopeTag = class extends import_sdkgen_client63.TagAbstract {
4261
4409
  if (statusCode >= 0 && statusCode <= 999) {
4262
4410
  throw new CommonMessageException(await response.json());
4263
4411
  }
4264
- throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4412
+ throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4265
4413
  }
4266
4414
  /**
4267
4415
  * Returns all available scopes grouped by category
@@ -4286,7 +4434,7 @@ var BackendScopeTag = class extends import_sdkgen_client63.TagAbstract {
4286
4434
  if (statusCode >= 0 && statusCode <= 999) {
4287
4435
  throw new CommonMessageException(await response.json());
4288
4436
  }
4289
- throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4437
+ throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4290
4438
  }
4291
4439
  /**
4292
4440
  * Updates an existing scope
@@ -4316,14 +4464,14 @@ var BackendScopeTag = class extends import_sdkgen_client63.TagAbstract {
4316
4464
  if (statusCode >= 0 && statusCode <= 999) {
4317
4465
  throw new CommonMessageException(await response.json());
4318
4466
  }
4319
- throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4467
+ throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4320
4468
  }
4321
4469
  };
4322
4470
 
4323
4471
  // src/BackendSdkTag.ts
4324
- var import_sdkgen_client65 = require("sdkgen-client");
4325
- var import_sdkgen_client66 = require("sdkgen-client");
4326
- var BackendSdkTag = class extends import_sdkgen_client65.TagAbstract {
4472
+ var import_sdkgen_client67 = require("sdkgen-client");
4473
+ var import_sdkgen_client68 = require("sdkgen-client");
4474
+ var BackendSdkTag = class extends import_sdkgen_client67.TagAbstract {
4327
4475
  /**
4328
4476
  * Generates a specific SDK
4329
4477
  *
@@ -4350,7 +4498,7 @@ var BackendSdkTag = class extends import_sdkgen_client65.TagAbstract {
4350
4498
  if (statusCode >= 0 && statusCode <= 999) {
4351
4499
  throw new CommonMessageException(await response.json());
4352
4500
  }
4353
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4501
+ throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4354
4502
  }
4355
4503
  /**
4356
4504
  * Returns a paginated list of SDKs
@@ -4375,14 +4523,14 @@ var BackendSdkTag = class extends import_sdkgen_client65.TagAbstract {
4375
4523
  if (statusCode >= 0 && statusCode <= 999) {
4376
4524
  throw new CommonMessageException(await response.json());
4377
4525
  }
4378
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4526
+ throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4379
4527
  }
4380
4528
  };
4381
4529
 
4382
4530
  // src/BackendStatisticTag.ts
4383
- var import_sdkgen_client67 = require("sdkgen-client");
4384
- var import_sdkgen_client68 = require("sdkgen-client");
4385
- var BackendStatisticTag = class extends import_sdkgen_client67.TagAbstract {
4531
+ var import_sdkgen_client69 = require("sdkgen-client");
4532
+ var import_sdkgen_client70 = require("sdkgen-client");
4533
+ var BackendStatisticTag = class extends import_sdkgen_client69.TagAbstract {
4386
4534
  /**
4387
4535
  * Returns a statistic containing the activities per user
4388
4536
  *
@@ -4421,7 +4569,7 @@ var BackendStatisticTag = class extends import_sdkgen_client67.TagAbstract {
4421
4569
  if (statusCode >= 0 && statusCode <= 999) {
4422
4570
  throw new CommonMessageException(await response.json());
4423
4571
  }
4424
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4572
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4425
4573
  }
4426
4574
  /**
4427
4575
  * Returns a statistic containing the request count
@@ -4461,7 +4609,7 @@ var BackendStatisticTag = class extends import_sdkgen_client67.TagAbstract {
4461
4609
  if (statusCode >= 0 && statusCode <= 999) {
4462
4610
  throw new CommonMessageException(await response.json());
4463
4611
  }
4464
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4612
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4465
4613
  }
4466
4614
  /**
4467
4615
  * Returns a statistic containing the errors per operation
@@ -4501,7 +4649,7 @@ var BackendStatisticTag = class extends import_sdkgen_client67.TagAbstract {
4501
4649
  if (statusCode >= 0 && statusCode <= 999) {
4502
4650
  throw new CommonMessageException(await response.json());
4503
4651
  }
4504
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4652
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4505
4653
  }
4506
4654
  /**
4507
4655
  * Returns a statistic containing the incoming requests
@@ -4541,7 +4689,7 @@ var BackendStatisticTag = class extends import_sdkgen_client67.TagAbstract {
4541
4689
  if (statusCode >= 0 && statusCode <= 999) {
4542
4690
  throw new CommonMessageException(await response.json());
4543
4691
  }
4544
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4692
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4545
4693
  }
4546
4694
  /**
4547
4695
  * Returns a statistic containing the incoming transactions
@@ -4581,7 +4729,7 @@ var BackendStatisticTag = class extends import_sdkgen_client67.TagAbstract {
4581
4729
  if (statusCode >= 0 && statusCode <= 999) {
4582
4730
  throw new CommonMessageException(await response.json());
4583
4731
  }
4584
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4732
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4585
4733
  }
4586
4734
  /**
4587
4735
  * Returns a statistic containing the issues tokens
@@ -4621,7 +4769,7 @@ var BackendStatisticTag = class extends import_sdkgen_client67.TagAbstract {
4621
4769
  if (statusCode >= 0 && statusCode <= 999) {
4622
4770
  throw new CommonMessageException(await response.json());
4623
4771
  }
4624
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4772
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4625
4773
  }
4626
4774
  /**
4627
4775
  * Returns a statistic containing the most used activities
@@ -4661,7 +4809,7 @@ var BackendStatisticTag = class extends import_sdkgen_client67.TagAbstract {
4661
4809
  if (statusCode >= 0 && statusCode <= 999) {
4662
4810
  throw new CommonMessageException(await response.json());
4663
4811
  }
4664
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4812
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4665
4813
  }
4666
4814
  /**
4667
4815
  * Returns a statistic containing the most used apps
@@ -4701,7 +4849,7 @@ var BackendStatisticTag = class extends import_sdkgen_client67.TagAbstract {
4701
4849
  if (statusCode >= 0 && statusCode <= 999) {
4702
4850
  throw new CommonMessageException(await response.json());
4703
4851
  }
4704
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4852
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4705
4853
  }
4706
4854
  /**
4707
4855
  * Returns a statistic containing the most used operations
@@ -4741,7 +4889,7 @@ var BackendStatisticTag = class extends import_sdkgen_client67.TagAbstract {
4741
4889
  if (statusCode >= 0 && statusCode <= 999) {
4742
4890
  throw new CommonMessageException(await response.json());
4743
4891
  }
4744
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4892
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4745
4893
  }
4746
4894
  /**
4747
4895
  * Returns a statistic containing the requests per ip
@@ -4781,7 +4929,7 @@ var BackendStatisticTag = class extends import_sdkgen_client67.TagAbstract {
4781
4929
  if (statusCode >= 0 && statusCode <= 999) {
4782
4930
  throw new CommonMessageException(await response.json());
4783
4931
  }
4784
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4932
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4785
4933
  }
4786
4934
  /**
4787
4935
  * Returns a statistic containing the requests per operation
@@ -4821,7 +4969,7 @@ var BackendStatisticTag = class extends import_sdkgen_client67.TagAbstract {
4821
4969
  if (statusCode >= 0 && statusCode <= 999) {
4822
4970
  throw new CommonMessageException(await response.json());
4823
4971
  }
4824
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4972
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4825
4973
  }
4826
4974
  /**
4827
4975
  * Returns a statistic containing the requests per user
@@ -4861,7 +5009,7 @@ var BackendStatisticTag = class extends import_sdkgen_client67.TagAbstract {
4861
5009
  if (statusCode >= 0 && statusCode <= 999) {
4862
5010
  throw new CommonMessageException(await response.json());
4863
5011
  }
4864
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5012
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4865
5013
  }
4866
5014
  /**
4867
5015
  * Returns a statistic containing the test coverage
@@ -4886,7 +5034,7 @@ var BackendStatisticTag = class extends import_sdkgen_client67.TagAbstract {
4886
5034
  if (statusCode >= 0 && statusCode <= 999) {
4887
5035
  throw new CommonMessageException(await response.json());
4888
5036
  }
4889
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5037
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4890
5038
  }
4891
5039
  /**
4892
5040
  * Returns a statistic containing the time average
@@ -4926,7 +5074,7 @@ var BackendStatisticTag = class extends import_sdkgen_client67.TagAbstract {
4926
5074
  if (statusCode >= 0 && statusCode <= 999) {
4927
5075
  throw new CommonMessageException(await response.json());
4928
5076
  }
4929
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5077
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4930
5078
  }
4931
5079
  /**
4932
5080
  * Returns a statistic containing the time per operation
@@ -4966,7 +5114,7 @@ var BackendStatisticTag = class extends import_sdkgen_client67.TagAbstract {
4966
5114
  if (statusCode >= 0 && statusCode <= 999) {
4967
5115
  throw new CommonMessageException(await response.json());
4968
5116
  }
4969
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5117
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4970
5118
  }
4971
5119
  /**
4972
5120
  * Returns a statistic containing the used points
@@ -5006,7 +5154,7 @@ var BackendStatisticTag = class extends import_sdkgen_client67.TagAbstract {
5006
5154
  if (statusCode >= 0 && statusCode <= 999) {
5007
5155
  throw new CommonMessageException(await response.json());
5008
5156
  }
5009
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5157
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5010
5158
  }
5011
5159
  /**
5012
5160
  * Returns a statistic containing the user registrations
@@ -5046,17 +5194,17 @@ var BackendStatisticTag = class extends import_sdkgen_client67.TagAbstract {
5046
5194
  if (statusCode >= 0 && statusCode <= 999) {
5047
5195
  throw new CommonMessageException(await response.json());
5048
5196
  }
5049
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5197
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5050
5198
  }
5051
5199
  };
5052
5200
 
5053
5201
  // src/BackendTag.ts
5054
- var import_sdkgen_client85 = require("sdkgen-client");
5202
+ var import_sdkgen_client87 = require("sdkgen-client");
5055
5203
 
5056
5204
  // src/BackendTenantTag.ts
5057
- var import_sdkgen_client69 = require("sdkgen-client");
5058
- var import_sdkgen_client70 = require("sdkgen-client");
5059
- var BackendTenantTag = class extends import_sdkgen_client69.TagAbstract {
5205
+ var import_sdkgen_client71 = require("sdkgen-client");
5206
+ var import_sdkgen_client72 = require("sdkgen-client");
5207
+ var BackendTenantTag = class extends import_sdkgen_client71.TagAbstract {
5060
5208
  /**
5061
5209
  * Removes an existing tenant
5062
5210
  *
@@ -5082,7 +5230,7 @@ var BackendTenantTag = class extends import_sdkgen_client69.TagAbstract {
5082
5230
  if (statusCode >= 0 && statusCode <= 999) {
5083
5231
  throw new CommonMessageException(await response.json());
5084
5232
  }
5085
- throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5233
+ throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5086
5234
  }
5087
5235
  /**
5088
5236
  * Setup a new tenant
@@ -5109,14 +5257,14 @@ var BackendTenantTag = class extends import_sdkgen_client69.TagAbstract {
5109
5257
  if (statusCode >= 0 && statusCode <= 999) {
5110
5258
  throw new CommonMessageException(await response.json());
5111
5259
  }
5112
- throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5260
+ throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5113
5261
  }
5114
5262
  };
5115
5263
 
5116
5264
  // src/BackendTestTag.ts
5117
- var import_sdkgen_client71 = require("sdkgen-client");
5118
- var import_sdkgen_client72 = require("sdkgen-client");
5119
- var BackendTestTag = class extends import_sdkgen_client71.TagAbstract {
5265
+ var import_sdkgen_client73 = require("sdkgen-client");
5266
+ var import_sdkgen_client74 = require("sdkgen-client");
5267
+ var BackendTestTag = class extends import_sdkgen_client73.TagAbstract {
5120
5268
  /**
5121
5269
  * Returns a specific test
5122
5270
  *
@@ -5142,7 +5290,7 @@ var BackendTestTag = class extends import_sdkgen_client71.TagAbstract {
5142
5290
  if (statusCode >= 0 && statusCode <= 999) {
5143
5291
  throw new CommonMessageException(await response.json());
5144
5292
  }
5145
- throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5293
+ throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5146
5294
  }
5147
5295
  /**
5148
5296
  * Returns a paginated list of tests
@@ -5171,7 +5319,7 @@ var BackendTestTag = class extends import_sdkgen_client71.TagAbstract {
5171
5319
  if (statusCode >= 0 && statusCode <= 999) {
5172
5320
  throw new CommonMessageException(await response.json());
5173
5321
  }
5174
- throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5322
+ throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5175
5323
  }
5176
5324
  /**
5177
5325
  * Refresh all tests
@@ -5196,7 +5344,7 @@ var BackendTestTag = class extends import_sdkgen_client71.TagAbstract {
5196
5344
  if (statusCode >= 0 && statusCode <= 999) {
5197
5345
  throw new CommonMessageException(await response.json());
5198
5346
  }
5199
- throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5347
+ throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5200
5348
  }
5201
5349
  /**
5202
5350
  * Run all tests
@@ -5221,7 +5369,7 @@ var BackendTestTag = class extends import_sdkgen_client71.TagAbstract {
5221
5369
  if (statusCode >= 0 && statusCode <= 999) {
5222
5370
  throw new CommonMessageException(await response.json());
5223
5371
  }
5224
- throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5372
+ throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5225
5373
  }
5226
5374
  /**
5227
5375
  * Updates an existing test
@@ -5251,14 +5399,14 @@ var BackendTestTag = class extends import_sdkgen_client71.TagAbstract {
5251
5399
  if (statusCode >= 0 && statusCode <= 999) {
5252
5400
  throw new CommonMessageException(await response.json());
5253
5401
  }
5254
- throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5402
+ throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5255
5403
  }
5256
5404
  };
5257
5405
 
5258
5406
  // src/BackendTokenTag.ts
5259
- var import_sdkgen_client73 = require("sdkgen-client");
5260
- var import_sdkgen_client74 = require("sdkgen-client");
5261
- var BackendTokenTag = class extends import_sdkgen_client73.TagAbstract {
5407
+ var import_sdkgen_client75 = require("sdkgen-client");
5408
+ var import_sdkgen_client76 = require("sdkgen-client");
5409
+ var BackendTokenTag = class extends import_sdkgen_client75.TagAbstract {
5262
5410
  /**
5263
5411
  * Returns a specific token
5264
5412
  *
@@ -5284,7 +5432,7 @@ var BackendTokenTag = class extends import_sdkgen_client73.TagAbstract {
5284
5432
  if (statusCode >= 0 && statusCode <= 999) {
5285
5433
  throw new CommonMessageException(await response.json());
5286
5434
  }
5287
- throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5435
+ throw new import_sdkgen_client76.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5288
5436
  }
5289
5437
  /**
5290
5438
  * Returns a paginated list of tokens
@@ -5320,14 +5468,14 @@ var BackendTokenTag = class extends import_sdkgen_client73.TagAbstract {
5320
5468
  if (statusCode >= 0 && statusCode <= 999) {
5321
5469
  throw new CommonMessageException(await response.json());
5322
5470
  }
5323
- throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5471
+ throw new import_sdkgen_client76.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5324
5472
  }
5325
5473
  };
5326
5474
 
5327
5475
  // src/BackendTransactionTag.ts
5328
- var import_sdkgen_client75 = require("sdkgen-client");
5329
- var import_sdkgen_client76 = require("sdkgen-client");
5330
- var BackendTransactionTag = class extends import_sdkgen_client75.TagAbstract {
5476
+ var import_sdkgen_client77 = require("sdkgen-client");
5477
+ var import_sdkgen_client78 = require("sdkgen-client");
5478
+ var BackendTransactionTag = class extends import_sdkgen_client77.TagAbstract {
5331
5479
  /**
5332
5480
  * Returns a specific transaction
5333
5481
  *
@@ -5353,7 +5501,7 @@ var BackendTransactionTag = class extends import_sdkgen_client75.TagAbstract {
5353
5501
  if (statusCode >= 0 && statusCode <= 999) {
5354
5502
  throw new CommonMessageException(await response.json());
5355
5503
  }
5356
- throw new import_sdkgen_client76.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5504
+ throw new import_sdkgen_client78.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5357
5505
  }
5358
5506
  /**
5359
5507
  * Returns a paginated list of transactions
@@ -5389,14 +5537,14 @@ var BackendTransactionTag = class extends import_sdkgen_client75.TagAbstract {
5389
5537
  if (statusCode >= 0 && statusCode <= 999) {
5390
5538
  throw new CommonMessageException(await response.json());
5391
5539
  }
5392
- throw new import_sdkgen_client76.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5540
+ throw new import_sdkgen_client78.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5393
5541
  }
5394
5542
  };
5395
5543
 
5396
5544
  // src/BackendTrashTag.ts
5397
- var import_sdkgen_client77 = require("sdkgen-client");
5398
- var import_sdkgen_client78 = require("sdkgen-client");
5399
- var BackendTrashTag = class extends import_sdkgen_client77.TagAbstract {
5545
+ var import_sdkgen_client79 = require("sdkgen-client");
5546
+ var import_sdkgen_client80 = require("sdkgen-client");
5547
+ var BackendTrashTag = class extends import_sdkgen_client79.TagAbstract {
5400
5548
  /**
5401
5549
  * Returns all deleted records by trash type
5402
5550
  *
@@ -5426,7 +5574,7 @@ var BackendTrashTag = class extends import_sdkgen_client77.TagAbstract {
5426
5574
  if (statusCode >= 0 && statusCode <= 999) {
5427
5575
  throw new CommonMessageException(await response.json());
5428
5576
  }
5429
- throw new import_sdkgen_client78.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5577
+ throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5430
5578
  }
5431
5579
  /**
5432
5580
  * Returns all trash types
@@ -5451,7 +5599,7 @@ var BackendTrashTag = class extends import_sdkgen_client77.TagAbstract {
5451
5599
  if (statusCode >= 0 && statusCode <= 999) {
5452
5600
  throw new CommonMessageException(await response.json());
5453
5601
  }
5454
- throw new import_sdkgen_client78.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5602
+ throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5455
5603
  }
5456
5604
  /**
5457
5605
  * Restores a previously deleted record
@@ -5481,14 +5629,14 @@ var BackendTrashTag = class extends import_sdkgen_client77.TagAbstract {
5481
5629
  if (statusCode >= 0 && statusCode <= 999) {
5482
5630
  throw new CommonMessageException(await response.json());
5483
5631
  }
5484
- throw new import_sdkgen_client78.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5632
+ throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5485
5633
  }
5486
5634
  };
5487
5635
 
5488
5636
  // src/BackendTriggerTag.ts
5489
- var import_sdkgen_client79 = require("sdkgen-client");
5490
- var import_sdkgen_client80 = require("sdkgen-client");
5491
- var BackendTriggerTag = class extends import_sdkgen_client79.TagAbstract {
5637
+ var import_sdkgen_client81 = require("sdkgen-client");
5638
+ var import_sdkgen_client82 = require("sdkgen-client");
5639
+ var BackendTriggerTag = class extends import_sdkgen_client81.TagAbstract {
5492
5640
  /**
5493
5641
  * Creates a new trigger
5494
5642
  *
@@ -5515,7 +5663,7 @@ var BackendTriggerTag = class extends import_sdkgen_client79.TagAbstract {
5515
5663
  if (statusCode >= 0 && statusCode <= 999) {
5516
5664
  throw new CommonMessageException(await response.json());
5517
5665
  }
5518
- throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5666
+ throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5519
5667
  }
5520
5668
  /**
5521
5669
  * Deletes an existing trigger
@@ -5542,7 +5690,7 @@ var BackendTriggerTag = class extends import_sdkgen_client79.TagAbstract {
5542
5690
  if (statusCode >= 0 && statusCode <= 999) {
5543
5691
  throw new CommonMessageException(await response.json());
5544
5692
  }
5545
- throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5693
+ throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5546
5694
  }
5547
5695
  /**
5548
5696
  * Returns a specific trigger
@@ -5569,7 +5717,7 @@ var BackendTriggerTag = class extends import_sdkgen_client79.TagAbstract {
5569
5717
  if (statusCode >= 0 && statusCode <= 999) {
5570
5718
  throw new CommonMessageException(await response.json());
5571
5719
  }
5572
- throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5720
+ throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5573
5721
  }
5574
5722
  /**
5575
5723
  * Returns a paginated list of triggers
@@ -5598,7 +5746,7 @@ var BackendTriggerTag = class extends import_sdkgen_client79.TagAbstract {
5598
5746
  if (statusCode >= 0 && statusCode <= 999) {
5599
5747
  throw new CommonMessageException(await response.json());
5600
5748
  }
5601
- throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5749
+ throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5602
5750
  }
5603
5751
  /**
5604
5752
  * Updates an existing trigger
@@ -5628,14 +5776,14 @@ var BackendTriggerTag = class extends import_sdkgen_client79.TagAbstract {
5628
5776
  if (statusCode >= 0 && statusCode <= 999) {
5629
5777
  throw new CommonMessageException(await response.json());
5630
5778
  }
5631
- throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5779
+ throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5632
5780
  }
5633
5781
  };
5634
5782
 
5635
5783
  // src/BackendUserTag.ts
5636
- var import_sdkgen_client81 = require("sdkgen-client");
5637
- var import_sdkgen_client82 = require("sdkgen-client");
5638
- var BackendUserTag = class extends import_sdkgen_client81.TagAbstract {
5784
+ var import_sdkgen_client83 = require("sdkgen-client");
5785
+ var import_sdkgen_client84 = require("sdkgen-client");
5786
+ var BackendUserTag = class extends import_sdkgen_client83.TagAbstract {
5639
5787
  /**
5640
5788
  * Creates a new user
5641
5789
  *
@@ -5662,7 +5810,7 @@ var BackendUserTag = class extends import_sdkgen_client81.TagAbstract {
5662
5810
  if (statusCode >= 0 && statusCode <= 999) {
5663
5811
  throw new CommonMessageException(await response.json());
5664
5812
  }
5665
- throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5813
+ throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5666
5814
  }
5667
5815
  /**
5668
5816
  * Deletes an existing user
@@ -5689,7 +5837,7 @@ var BackendUserTag = class extends import_sdkgen_client81.TagAbstract {
5689
5837
  if (statusCode >= 0 && statusCode <= 999) {
5690
5838
  throw new CommonMessageException(await response.json());
5691
5839
  }
5692
- throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5840
+ throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5693
5841
  }
5694
5842
  /**
5695
5843
  * Returns a specific user
@@ -5716,7 +5864,7 @@ var BackendUserTag = class extends import_sdkgen_client81.TagAbstract {
5716
5864
  if (statusCode >= 0 && statusCode <= 999) {
5717
5865
  throw new CommonMessageException(await response.json());
5718
5866
  }
5719
- throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5867
+ throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5720
5868
  }
5721
5869
  /**
5722
5870
  * Returns a paginated list of users
@@ -5745,7 +5893,7 @@ var BackendUserTag = class extends import_sdkgen_client81.TagAbstract {
5745
5893
  if (statusCode >= 0 && statusCode <= 999) {
5746
5894
  throw new CommonMessageException(await response.json());
5747
5895
  }
5748
- throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5896
+ throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5749
5897
  }
5750
5898
  /**
5751
5899
  * Resend the activation mail to the provided user
@@ -5775,7 +5923,7 @@ var BackendUserTag = class extends import_sdkgen_client81.TagAbstract {
5775
5923
  if (statusCode >= 0 && statusCode <= 999) {
5776
5924
  throw new CommonMessageException(await response.json());
5777
5925
  }
5778
- throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5926
+ throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5779
5927
  }
5780
5928
  /**
5781
5929
  * Updates an existing user
@@ -5805,14 +5953,14 @@ var BackendUserTag = class extends import_sdkgen_client81.TagAbstract {
5805
5953
  if (statusCode >= 0 && statusCode <= 999) {
5806
5954
  throw new CommonMessageException(await response.json());
5807
5955
  }
5808
- throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5956
+ throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5809
5957
  }
5810
5958
  };
5811
5959
 
5812
5960
  // src/BackendWebhookTag.ts
5813
- var import_sdkgen_client83 = require("sdkgen-client");
5814
- var import_sdkgen_client84 = require("sdkgen-client");
5815
- var BackendWebhookTag = class extends import_sdkgen_client83.TagAbstract {
5961
+ var import_sdkgen_client85 = require("sdkgen-client");
5962
+ var import_sdkgen_client86 = require("sdkgen-client");
5963
+ var BackendWebhookTag = class extends import_sdkgen_client85.TagAbstract {
5816
5964
  /**
5817
5965
  * Creates a new webhook
5818
5966
  *
@@ -5839,7 +5987,7 @@ var BackendWebhookTag = class extends import_sdkgen_client83.TagAbstract {
5839
5987
  if (statusCode >= 0 && statusCode <= 999) {
5840
5988
  throw new CommonMessageException(await response.json());
5841
5989
  }
5842
- throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5990
+ throw new import_sdkgen_client86.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5843
5991
  }
5844
5992
  /**
5845
5993
  * Deletes an existing webhook
@@ -5866,7 +6014,7 @@ var BackendWebhookTag = class extends import_sdkgen_client83.TagAbstract {
5866
6014
  if (statusCode >= 0 && statusCode <= 999) {
5867
6015
  throw new CommonMessageException(await response.json());
5868
6016
  }
5869
- throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6017
+ throw new import_sdkgen_client86.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5870
6018
  }
5871
6019
  /**
5872
6020
  * Returns a specific webhook
@@ -5893,7 +6041,7 @@ var BackendWebhookTag = class extends import_sdkgen_client83.TagAbstract {
5893
6041
  if (statusCode >= 0 && statusCode <= 999) {
5894
6042
  throw new CommonMessageException(await response.json());
5895
6043
  }
5896
- throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6044
+ throw new import_sdkgen_client86.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5897
6045
  }
5898
6046
  /**
5899
6047
  * Returns a paginated list of webhooks
@@ -5922,7 +6070,7 @@ var BackendWebhookTag = class extends import_sdkgen_client83.TagAbstract {
5922
6070
  if (statusCode >= 0 && statusCode <= 999) {
5923
6071
  throw new CommonMessageException(await response.json());
5924
6072
  }
5925
- throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6073
+ throw new import_sdkgen_client86.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5926
6074
  }
5927
6075
  /**
5928
6076
  * Updates an existing webhook
@@ -5952,12 +6100,12 @@ var BackendWebhookTag = class extends import_sdkgen_client83.TagAbstract {
5952
6100
  if (statusCode >= 0 && statusCode <= 999) {
5953
6101
  throw new CommonMessageException(await response.json());
5954
6102
  }
5955
- throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6103
+ throw new import_sdkgen_client86.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5956
6104
  }
5957
6105
  };
5958
6106
 
5959
6107
  // src/BackendTag.ts
5960
- var BackendTag = class extends import_sdkgen_client85.TagAbstract {
6108
+ var BackendTag = class extends import_sdkgen_client87.TagAbstract {
5961
6109
  account() {
5962
6110
  return new BackendAccountTag(
5963
6111
  this.httpClient,
@@ -5988,6 +6136,12 @@ var BackendTag = class extends import_sdkgen_client85.TagAbstract {
5988
6136
  this.parser
5989
6137
  );
5990
6138
  }
6139
+ bundle() {
6140
+ return new BackendBundleTag(
6141
+ this.httpClient,
6142
+ this.parser
6143
+ );
6144
+ }
5991
6145
  category() {
5992
6146
  return new BackendCategoryTag(
5993
6147
  this.httpClient,
@@ -6165,16 +6319,16 @@ var BackendTag = class extends import_sdkgen_client85.TagAbstract {
6165
6319
  };
6166
6320
 
6167
6321
  // src/Client.ts
6168
- var import_sdkgen_client122 = require("sdkgen-client");
6169
- var import_sdkgen_client123 = require("sdkgen-client");
6322
+ var import_sdkgen_client124 = require("sdkgen-client");
6323
+ var import_sdkgen_client125 = require("sdkgen-client");
6170
6324
 
6171
6325
  // src/ConsumerTag.ts
6172
- var import_sdkgen_client114 = require("sdkgen-client");
6326
+ var import_sdkgen_client116 = require("sdkgen-client");
6173
6327
 
6174
6328
  // src/ConsumerAccountTag.ts
6175
- var import_sdkgen_client86 = require("sdkgen-client");
6176
- var import_sdkgen_client87 = require("sdkgen-client");
6177
- var ConsumerAccountTag = class extends import_sdkgen_client86.TagAbstract {
6329
+ var import_sdkgen_client88 = require("sdkgen-client");
6330
+ var import_sdkgen_client89 = require("sdkgen-client");
6331
+ var ConsumerAccountTag = class extends import_sdkgen_client88.TagAbstract {
6178
6332
  /**
6179
6333
  * Activates an previously registered account through a token which was provided to the user via email
6180
6334
  *
@@ -6201,7 +6355,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client86.TagAbstract {
6201
6355
  if (statusCode >= 0 && statusCode <= 999) {
6202
6356
  throw new CommonMessageException(await response.json());
6203
6357
  }
6204
- throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6358
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6205
6359
  }
6206
6360
  /**
6207
6361
  * Authorizes the access of a specific app for the authenticated user
@@ -6229,7 +6383,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client86.TagAbstract {
6229
6383
  if (statusCode >= 0 && statusCode <= 999) {
6230
6384
  throw new CommonMessageException(await response.json());
6231
6385
  }
6232
- throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6386
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6233
6387
  }
6234
6388
  /**
6235
6389
  * Change the password for the authenticated user
@@ -6257,7 +6411,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client86.TagAbstract {
6257
6411
  if (statusCode >= 0 && statusCode <= 999) {
6258
6412
  throw new CommonMessageException(await response.json());
6259
6413
  }
6260
- throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6414
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6261
6415
  }
6262
6416
  /**
6263
6417
  * Change the password after the password reset flow was started
@@ -6285,7 +6439,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client86.TagAbstract {
6285
6439
  if (statusCode >= 0 && statusCode <= 999) {
6286
6440
  throw new CommonMessageException(await response.json());
6287
6441
  }
6288
- throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6442
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6289
6443
  }
6290
6444
  /**
6291
6445
  * Returns a user data for the authenticated user
@@ -6310,7 +6464,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client86.TagAbstract {
6310
6464
  if (statusCode >= 0 && statusCode <= 999) {
6311
6465
  throw new CommonMessageException(await response.json());
6312
6466
  }
6313
- throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6467
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6314
6468
  }
6315
6469
  /**
6316
6470
  * Returns information about a specific app to start the OAuth2 authorization code flow
@@ -6338,7 +6492,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client86.TagAbstract {
6338
6492
  if (statusCode >= 0 && statusCode <= 999) {
6339
6493
  throw new CommonMessageException(await response.json());
6340
6494
  }
6341
- throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6495
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6342
6496
  }
6343
6497
  /**
6344
6498
  * User login by providing a username and password
@@ -6366,7 +6520,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client86.TagAbstract {
6366
6520
  if (statusCode >= 0 && statusCode <= 999) {
6367
6521
  throw new CommonMessageException(await response.json());
6368
6522
  }
6369
- throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6523
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6370
6524
  }
6371
6525
  /**
6372
6526
  * Refresh a previously obtained access token
@@ -6394,7 +6548,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client86.TagAbstract {
6394
6548
  if (statusCode >= 0 && statusCode <= 999) {
6395
6549
  throw new CommonMessageException(await response.json());
6396
6550
  }
6397
- throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6551
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6398
6552
  }
6399
6553
  /**
6400
6554
  * Register a new user account
@@ -6422,7 +6576,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client86.TagAbstract {
6422
6576
  if (statusCode >= 0 && statusCode <= 999) {
6423
6577
  throw new CommonMessageException(await response.json());
6424
6578
  }
6425
- throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6579
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6426
6580
  }
6427
6581
  /**
6428
6582
  * Start the password reset flow
@@ -6450,7 +6604,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client86.TagAbstract {
6450
6604
  if (statusCode >= 0 && statusCode <= 999) {
6451
6605
  throw new CommonMessageException(await response.json());
6452
6606
  }
6453
- throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6607
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6454
6608
  }
6455
6609
  /**
6456
6610
  * Updates user data for the authenticated user
@@ -6478,14 +6632,14 @@ var ConsumerAccountTag = class extends import_sdkgen_client86.TagAbstract {
6478
6632
  if (statusCode >= 0 && statusCode <= 999) {
6479
6633
  throw new CommonMessageException(await response.json());
6480
6634
  }
6481
- throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6635
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6482
6636
  }
6483
6637
  };
6484
6638
 
6485
6639
  // src/ConsumerAppTag.ts
6486
- var import_sdkgen_client88 = require("sdkgen-client");
6487
- var import_sdkgen_client89 = require("sdkgen-client");
6488
- var ConsumerAppTag = class extends import_sdkgen_client88.TagAbstract {
6640
+ var import_sdkgen_client90 = require("sdkgen-client");
6641
+ var import_sdkgen_client91 = require("sdkgen-client");
6642
+ var ConsumerAppTag = class extends import_sdkgen_client90.TagAbstract {
6489
6643
  /**
6490
6644
  * Creates a new app for the authenticated user
6491
6645
  *
@@ -6512,7 +6666,7 @@ var ConsumerAppTag = class extends import_sdkgen_client88.TagAbstract {
6512
6666
  if (statusCode >= 0 && statusCode <= 999) {
6513
6667
  throw new CommonMessageException(await response.json());
6514
6668
  }
6515
- throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6669
+ throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6516
6670
  }
6517
6671
  /**
6518
6672
  * Deletes an existing app for the authenticated user
@@ -6539,7 +6693,7 @@ var ConsumerAppTag = class extends import_sdkgen_client88.TagAbstract {
6539
6693
  if (statusCode >= 0 && statusCode <= 999) {
6540
6694
  throw new CommonMessageException(await response.json());
6541
6695
  }
6542
- throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6696
+ throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6543
6697
  }
6544
6698
  /**
6545
6699
  * Returns a specific app for the authenticated user
@@ -6566,7 +6720,7 @@ var ConsumerAppTag = class extends import_sdkgen_client88.TagAbstract {
6566
6720
  if (statusCode >= 0 && statusCode <= 999) {
6567
6721
  throw new CommonMessageException(await response.json());
6568
6722
  }
6569
- throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6723
+ throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6570
6724
  }
6571
6725
  /**
6572
6726
  * Returns a paginated list of apps which are assigned to the authenticated user
@@ -6595,7 +6749,7 @@ var ConsumerAppTag = class extends import_sdkgen_client88.TagAbstract {
6595
6749
  if (statusCode >= 0 && statusCode <= 999) {
6596
6750
  throw new CommonMessageException(await response.json());
6597
6751
  }
6598
- throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6752
+ throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6599
6753
  }
6600
6754
  /**
6601
6755
  * Updates an existing app for the authenticated user
@@ -6625,14 +6779,14 @@ var ConsumerAppTag = class extends import_sdkgen_client88.TagAbstract {
6625
6779
  if (statusCode >= 0 && statusCode <= 999) {
6626
6780
  throw new CommonMessageException(await response.json());
6627
6781
  }
6628
- throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6782
+ throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6629
6783
  }
6630
6784
  };
6631
6785
 
6632
6786
  // src/ConsumerEventTag.ts
6633
- var import_sdkgen_client90 = require("sdkgen-client");
6634
- var import_sdkgen_client91 = require("sdkgen-client");
6635
- var ConsumerEventTag = class extends import_sdkgen_client90.TagAbstract {
6787
+ var import_sdkgen_client92 = require("sdkgen-client");
6788
+ var import_sdkgen_client93 = require("sdkgen-client");
6789
+ var ConsumerEventTag = class extends import_sdkgen_client92.TagAbstract {
6636
6790
  /**
6637
6791
  * Returns a specific event for the authenticated user
6638
6792
  *
@@ -6658,7 +6812,7 @@ var ConsumerEventTag = class extends import_sdkgen_client90.TagAbstract {
6658
6812
  if (statusCode >= 0 && statusCode <= 999) {
6659
6813
  throw new CommonMessageException(await response.json());
6660
6814
  }
6661
- throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6815
+ throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6662
6816
  }
6663
6817
  /**
6664
6818
  * Returns a paginated list of apps which are assigned to the authenticated user
@@ -6687,14 +6841,14 @@ var ConsumerEventTag = class extends import_sdkgen_client90.TagAbstract {
6687
6841
  if (statusCode >= 0 && statusCode <= 999) {
6688
6842
  throw new CommonMessageException(await response.json());
6689
6843
  }
6690
- throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6844
+ throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6691
6845
  }
6692
6846
  };
6693
6847
 
6694
6848
  // src/ConsumerFormTag.ts
6695
- var import_sdkgen_client92 = require("sdkgen-client");
6696
- var import_sdkgen_client93 = require("sdkgen-client");
6697
- var ConsumerFormTag = class extends import_sdkgen_client92.TagAbstract {
6849
+ var import_sdkgen_client94 = require("sdkgen-client");
6850
+ var import_sdkgen_client95 = require("sdkgen-client");
6851
+ var ConsumerFormTag = class extends import_sdkgen_client94.TagAbstract {
6698
6852
  /**
6699
6853
  * Returns a specific form for the authenticated user
6700
6854
  *
@@ -6720,7 +6874,7 @@ var ConsumerFormTag = class extends import_sdkgen_client92.TagAbstract {
6720
6874
  if (statusCode >= 0 && statusCode <= 999) {
6721
6875
  throw new CommonMessageException(await response.json());
6722
6876
  }
6723
- throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6877
+ throw new import_sdkgen_client95.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6724
6878
  }
6725
6879
  /**
6726
6880
  * Returns a paginated list of forms which are relevant to the authenticated user
@@ -6749,14 +6903,14 @@ var ConsumerFormTag = class extends import_sdkgen_client92.TagAbstract {
6749
6903
  if (statusCode >= 0 && statusCode <= 999) {
6750
6904
  throw new CommonMessageException(await response.json());
6751
6905
  }
6752
- throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6906
+ throw new import_sdkgen_client95.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6753
6907
  }
6754
6908
  };
6755
6909
 
6756
6910
  // src/ConsumerGrantTag.ts
6757
- var import_sdkgen_client94 = require("sdkgen-client");
6758
- var import_sdkgen_client95 = require("sdkgen-client");
6759
- var ConsumerGrantTag = class extends import_sdkgen_client94.TagAbstract {
6911
+ var import_sdkgen_client96 = require("sdkgen-client");
6912
+ var import_sdkgen_client97 = require("sdkgen-client");
6913
+ var ConsumerGrantTag = class extends import_sdkgen_client96.TagAbstract {
6760
6914
  /**
6761
6915
  * Deletes an existing grant for an app which was created by the authenticated user
6762
6916
  *
@@ -6782,7 +6936,7 @@ var ConsumerGrantTag = class extends import_sdkgen_client94.TagAbstract {
6782
6936
  if (statusCode >= 0 && statusCode <= 999) {
6783
6937
  throw new CommonMessageException(await response.json());
6784
6938
  }
6785
- throw new import_sdkgen_client95.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6939
+ throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6786
6940
  }
6787
6941
  /**
6788
6942
  * Returns a paginated list of grants which are assigned to the authenticated user
@@ -6811,14 +6965,14 @@ var ConsumerGrantTag = class extends import_sdkgen_client94.TagAbstract {
6811
6965
  if (statusCode >= 0 && statusCode <= 999) {
6812
6966
  throw new CommonMessageException(await response.json());
6813
6967
  }
6814
- throw new import_sdkgen_client95.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6968
+ throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6815
6969
  }
6816
6970
  };
6817
6971
 
6818
6972
  // src/ConsumerIdentityTag.ts
6819
- var import_sdkgen_client96 = require("sdkgen-client");
6820
- var import_sdkgen_client97 = require("sdkgen-client");
6821
- var ConsumerIdentityTag = class extends import_sdkgen_client96.TagAbstract {
6973
+ var import_sdkgen_client98 = require("sdkgen-client");
6974
+ var import_sdkgen_client99 = require("sdkgen-client");
6975
+ var ConsumerIdentityTag = class extends import_sdkgen_client98.TagAbstract {
6822
6976
  /**
6823
6977
  * Identity callback endpoint to exchange an access token
6824
6978
  *
@@ -6844,7 +6998,7 @@ var ConsumerIdentityTag = class extends import_sdkgen_client96.TagAbstract {
6844
6998
  if (statusCode >= 0 && statusCode <= 999) {
6845
6999
  throw new CommonMessageException(await response.json());
6846
7000
  }
6847
- throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7001
+ throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6848
7002
  }
6849
7003
  /**
6850
7004
  * Returns a paginated list of identities which are relevant to the authenticated user
@@ -6872,7 +7026,7 @@ var ConsumerIdentityTag = class extends import_sdkgen_client96.TagAbstract {
6872
7026
  if (statusCode >= 0 && statusCode <= 999) {
6873
7027
  throw new CommonMessageException(await response.json());
6874
7028
  }
6875
- throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7029
+ throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6876
7030
  }
6877
7031
  /**
6878
7032
  * Redirect the user to the configured identity provider
@@ -6899,14 +7053,14 @@ var ConsumerIdentityTag = class extends import_sdkgen_client96.TagAbstract {
6899
7053
  if (statusCode >= 0 && statusCode <= 999) {
6900
7054
  throw new CommonMessageException(await response.json());
6901
7055
  }
6902
- throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7056
+ throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6903
7057
  }
6904
7058
  };
6905
7059
 
6906
7060
  // src/ConsumerLogTag.ts
6907
- var import_sdkgen_client98 = require("sdkgen-client");
6908
- var import_sdkgen_client99 = require("sdkgen-client");
6909
- var ConsumerLogTag = class extends import_sdkgen_client98.TagAbstract {
7061
+ var import_sdkgen_client100 = require("sdkgen-client");
7062
+ var import_sdkgen_client101 = require("sdkgen-client");
7063
+ var ConsumerLogTag = class extends import_sdkgen_client100.TagAbstract {
6910
7064
  /**
6911
7065
  * Returns a specific log for the authenticated user
6912
7066
  *
@@ -6932,7 +7086,7 @@ var ConsumerLogTag = class extends import_sdkgen_client98.TagAbstract {
6932
7086
  if (statusCode >= 0 && statusCode <= 999) {
6933
7087
  throw new CommonMessageException(await response.json());
6934
7088
  }
6935
- throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7089
+ throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6936
7090
  }
6937
7091
  /**
6938
7092
  * Returns a paginated list of logs which are assigned to the authenticated user
@@ -6961,14 +7115,14 @@ var ConsumerLogTag = class extends import_sdkgen_client98.TagAbstract {
6961
7115
  if (statusCode >= 0 && statusCode <= 999) {
6962
7116
  throw new CommonMessageException(await response.json());
6963
7117
  }
6964
- throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7118
+ throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6965
7119
  }
6966
7120
  };
6967
7121
 
6968
7122
  // src/ConsumerPageTag.ts
6969
- var import_sdkgen_client100 = require("sdkgen-client");
6970
- var import_sdkgen_client101 = require("sdkgen-client");
6971
- var ConsumerPageTag = class extends import_sdkgen_client100.TagAbstract {
7123
+ var import_sdkgen_client102 = require("sdkgen-client");
7124
+ var import_sdkgen_client103 = require("sdkgen-client");
7125
+ var ConsumerPageTag = class extends import_sdkgen_client102.TagAbstract {
6972
7126
  /**
6973
7127
  * Returns a specific page for the authenticated user
6974
7128
  *
@@ -6994,7 +7148,7 @@ var ConsumerPageTag = class extends import_sdkgen_client100.TagAbstract {
6994
7148
  if (statusCode >= 0 && statusCode <= 999) {
6995
7149
  throw new CommonMessageException(await response.json());
6996
7150
  }
6997
- throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7151
+ throw new import_sdkgen_client103.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6998
7152
  }
6999
7153
  /**
7000
7154
  * Returns a paginated list of pages which are relevant to the authenticated user
@@ -7023,14 +7177,14 @@ var ConsumerPageTag = class extends import_sdkgen_client100.TagAbstract {
7023
7177
  if (statusCode >= 0 && statusCode <= 999) {
7024
7178
  throw new CommonMessageException(await response.json());
7025
7179
  }
7026
- throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7180
+ throw new import_sdkgen_client103.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7027
7181
  }
7028
7182
  };
7029
7183
 
7030
7184
  // src/ConsumerPaymentTag.ts
7031
- var import_sdkgen_client102 = require("sdkgen-client");
7032
- var import_sdkgen_client103 = require("sdkgen-client");
7033
- var ConsumerPaymentTag = class extends import_sdkgen_client102.TagAbstract {
7185
+ var import_sdkgen_client104 = require("sdkgen-client");
7186
+ var import_sdkgen_client105 = require("sdkgen-client");
7187
+ var ConsumerPaymentTag = class extends import_sdkgen_client104.TagAbstract {
7034
7188
  /**
7035
7189
  * Start the checkout process for a specific plan
7036
7190
  *
@@ -7059,7 +7213,7 @@ var ConsumerPaymentTag = class extends import_sdkgen_client102.TagAbstract {
7059
7213
  if (statusCode >= 0 && statusCode <= 999) {
7060
7214
  throw new CommonMessageException(await response.json());
7061
7215
  }
7062
- throw new import_sdkgen_client103.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7216
+ throw new import_sdkgen_client105.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7063
7217
  }
7064
7218
  /**
7065
7219
  * Generates a payment portal link for the authenticated user
@@ -7089,14 +7243,14 @@ var ConsumerPaymentTag = class extends import_sdkgen_client102.TagAbstract {
7089
7243
  if (statusCode >= 0 && statusCode <= 999) {
7090
7244
  throw new CommonMessageException(await response.json());
7091
7245
  }
7092
- throw new import_sdkgen_client103.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7246
+ throw new import_sdkgen_client105.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7093
7247
  }
7094
7248
  };
7095
7249
 
7096
7250
  // src/ConsumerPlanTag.ts
7097
- var import_sdkgen_client104 = require("sdkgen-client");
7098
- var import_sdkgen_client105 = require("sdkgen-client");
7099
- var ConsumerPlanTag = class extends import_sdkgen_client104.TagAbstract {
7251
+ var import_sdkgen_client106 = require("sdkgen-client");
7252
+ var import_sdkgen_client107 = require("sdkgen-client");
7253
+ var ConsumerPlanTag = class extends import_sdkgen_client106.TagAbstract {
7100
7254
  /**
7101
7255
  * Returns a specific plan for the authenticated user
7102
7256
  *
@@ -7122,7 +7276,7 @@ var ConsumerPlanTag = class extends import_sdkgen_client104.TagAbstract {
7122
7276
  if (statusCode >= 0 && statusCode <= 999) {
7123
7277
  throw new CommonMessageException(await response.json());
7124
7278
  }
7125
- throw new import_sdkgen_client105.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7279
+ throw new import_sdkgen_client107.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7126
7280
  }
7127
7281
  /**
7128
7282
  * Returns a paginated list of plans which are relevant to the authenticated user
@@ -7151,14 +7305,14 @@ var ConsumerPlanTag = class extends import_sdkgen_client104.TagAbstract {
7151
7305
  if (statusCode >= 0 && statusCode <= 999) {
7152
7306
  throw new CommonMessageException(await response.json());
7153
7307
  }
7154
- throw new import_sdkgen_client105.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7308
+ throw new import_sdkgen_client107.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7155
7309
  }
7156
7310
  };
7157
7311
 
7158
7312
  // src/ConsumerScopeTag.ts
7159
- var import_sdkgen_client106 = require("sdkgen-client");
7160
- var import_sdkgen_client107 = require("sdkgen-client");
7161
- var ConsumerScopeTag = class extends import_sdkgen_client106.TagAbstract {
7313
+ var import_sdkgen_client108 = require("sdkgen-client");
7314
+ var import_sdkgen_client109 = require("sdkgen-client");
7315
+ var ConsumerScopeTag = class extends import_sdkgen_client108.TagAbstract {
7162
7316
  /**
7163
7317
  * Returns a paginated list of scopes which are assigned to the authenticated user
7164
7318
  *
@@ -7186,7 +7340,7 @@ var ConsumerScopeTag = class extends import_sdkgen_client106.TagAbstract {
7186
7340
  if (statusCode >= 0 && statusCode <= 999) {
7187
7341
  throw new CommonMessageException(await response.json());
7188
7342
  }
7189
- throw new import_sdkgen_client107.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7343
+ throw new import_sdkgen_client109.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7190
7344
  }
7191
7345
  /**
7192
7346
  * Returns all scopes by category
@@ -7211,14 +7365,14 @@ var ConsumerScopeTag = class extends import_sdkgen_client106.TagAbstract {
7211
7365
  if (statusCode >= 0 && statusCode <= 999) {
7212
7366
  throw new CommonMessageException(await response.json());
7213
7367
  }
7214
- throw new import_sdkgen_client107.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7368
+ throw new import_sdkgen_client109.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7215
7369
  }
7216
7370
  };
7217
7371
 
7218
7372
  // src/ConsumerTokenTag.ts
7219
- var import_sdkgen_client108 = require("sdkgen-client");
7220
- var import_sdkgen_client109 = require("sdkgen-client");
7221
- var ConsumerTokenTag = class extends import_sdkgen_client108.TagAbstract {
7373
+ var import_sdkgen_client110 = require("sdkgen-client");
7374
+ var import_sdkgen_client111 = require("sdkgen-client");
7375
+ var ConsumerTokenTag = class extends import_sdkgen_client110.TagAbstract {
7222
7376
  /**
7223
7377
  * Creates a new token for the authenticated user
7224
7378
  *
@@ -7245,7 +7399,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client108.TagAbstract {
7245
7399
  if (statusCode >= 0 && statusCode <= 999) {
7246
7400
  throw new CommonMessageException(await response.json());
7247
7401
  }
7248
- throw new import_sdkgen_client109.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7402
+ throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7249
7403
  }
7250
7404
  /**
7251
7405
  * Deletes an existing token for the authenticated user
@@ -7272,7 +7426,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client108.TagAbstract {
7272
7426
  if (statusCode >= 0 && statusCode <= 999) {
7273
7427
  throw new CommonMessageException(await response.json());
7274
7428
  }
7275
- throw new import_sdkgen_client109.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7429
+ throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7276
7430
  }
7277
7431
  /**
7278
7432
  * Returns a specific token for the authenticated user
@@ -7299,7 +7453,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client108.TagAbstract {
7299
7453
  if (statusCode >= 0 && statusCode <= 999) {
7300
7454
  throw new CommonMessageException(await response.json());
7301
7455
  }
7302
- throw new import_sdkgen_client109.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7456
+ throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7303
7457
  }
7304
7458
  /**
7305
7459
  * Returns a paginated list of tokens which are assigned to the authenticated user
@@ -7328,7 +7482,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client108.TagAbstract {
7328
7482
  if (statusCode >= 0 && statusCode <= 999) {
7329
7483
  throw new CommonMessageException(await response.json());
7330
7484
  }
7331
- throw new import_sdkgen_client109.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7485
+ throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7332
7486
  }
7333
7487
  /**
7334
7488
  * Updates an existing token for the authenticated user
@@ -7358,14 +7512,14 @@ var ConsumerTokenTag = class extends import_sdkgen_client108.TagAbstract {
7358
7512
  if (statusCode >= 0 && statusCode <= 999) {
7359
7513
  throw new CommonMessageException(await response.json());
7360
7514
  }
7361
- throw new import_sdkgen_client109.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7515
+ throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7362
7516
  }
7363
7517
  };
7364
7518
 
7365
7519
  // src/ConsumerTransactionTag.ts
7366
- var import_sdkgen_client110 = require("sdkgen-client");
7367
- var import_sdkgen_client111 = require("sdkgen-client");
7368
- var ConsumerTransactionTag = class extends import_sdkgen_client110.TagAbstract {
7520
+ var import_sdkgen_client112 = require("sdkgen-client");
7521
+ var import_sdkgen_client113 = require("sdkgen-client");
7522
+ var ConsumerTransactionTag = class extends import_sdkgen_client112.TagAbstract {
7369
7523
  /**
7370
7524
  * Returns a specific transaction for the authenticated user
7371
7525
  *
@@ -7391,7 +7545,7 @@ var ConsumerTransactionTag = class extends import_sdkgen_client110.TagAbstract {
7391
7545
  if (statusCode >= 0 && statusCode <= 999) {
7392
7546
  throw new CommonMessageException(await response.json());
7393
7547
  }
7394
- throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7548
+ throw new import_sdkgen_client113.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7395
7549
  }
7396
7550
  /**
7397
7551
  * Returns a paginated list of transactions which are assigned to the authenticated user
@@ -7420,14 +7574,14 @@ var ConsumerTransactionTag = class extends import_sdkgen_client110.TagAbstract {
7420
7574
  if (statusCode >= 0 && statusCode <= 999) {
7421
7575
  throw new CommonMessageException(await response.json());
7422
7576
  }
7423
- throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7577
+ throw new import_sdkgen_client113.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7424
7578
  }
7425
7579
  };
7426
7580
 
7427
7581
  // src/ConsumerWebhookTag.ts
7428
- var import_sdkgen_client112 = require("sdkgen-client");
7429
- var import_sdkgen_client113 = require("sdkgen-client");
7430
- var ConsumerWebhookTag = class extends import_sdkgen_client112.TagAbstract {
7582
+ var import_sdkgen_client114 = require("sdkgen-client");
7583
+ var import_sdkgen_client115 = require("sdkgen-client");
7584
+ var ConsumerWebhookTag = class extends import_sdkgen_client114.TagAbstract {
7431
7585
  /**
7432
7586
  * Creates a new webhook for the authenticated user
7433
7587
  *
@@ -7454,7 +7608,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client112.TagAbstract {
7454
7608
  if (statusCode >= 0 && statusCode <= 999) {
7455
7609
  throw new CommonMessageException(await response.json());
7456
7610
  }
7457
- throw new import_sdkgen_client113.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7611
+ throw new import_sdkgen_client115.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7458
7612
  }
7459
7613
  /**
7460
7614
  * Deletes an existing webhook for the authenticated user
@@ -7481,7 +7635,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client112.TagAbstract {
7481
7635
  if (statusCode >= 0 && statusCode <= 999) {
7482
7636
  throw new CommonMessageException(await response.json());
7483
7637
  }
7484
- throw new import_sdkgen_client113.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7638
+ throw new import_sdkgen_client115.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7485
7639
  }
7486
7640
  /**
7487
7641
  * Returns a specific webhook for the authenticated user
@@ -7508,7 +7662,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client112.TagAbstract {
7508
7662
  if (statusCode >= 0 && statusCode <= 999) {
7509
7663
  throw new CommonMessageException(await response.json());
7510
7664
  }
7511
- throw new import_sdkgen_client113.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7665
+ throw new import_sdkgen_client115.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7512
7666
  }
7513
7667
  /**
7514
7668
  * Returns a paginated list of webhooks which are assigned to the authenticated user
@@ -7537,7 +7691,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client112.TagAbstract {
7537
7691
  if (statusCode >= 0 && statusCode <= 999) {
7538
7692
  throw new CommonMessageException(await response.json());
7539
7693
  }
7540
- throw new import_sdkgen_client113.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7694
+ throw new import_sdkgen_client115.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7541
7695
  }
7542
7696
  /**
7543
7697
  * Updates an existing webhook for the authenticated user
@@ -7567,12 +7721,12 @@ var ConsumerWebhookTag = class extends import_sdkgen_client112.TagAbstract {
7567
7721
  if (statusCode >= 0 && statusCode <= 999) {
7568
7722
  throw new CommonMessageException(await response.json());
7569
7723
  }
7570
- throw new import_sdkgen_client113.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7724
+ throw new import_sdkgen_client115.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7571
7725
  }
7572
7726
  };
7573
7727
 
7574
7728
  // src/ConsumerTag.ts
7575
- var ConsumerTag = class extends import_sdkgen_client114.TagAbstract {
7729
+ var ConsumerTag = class extends import_sdkgen_client116.TagAbstract {
7576
7730
  account() {
7577
7731
  return new ConsumerAccountTag(
7578
7732
  this.httpClient,
@@ -7660,12 +7814,12 @@ var ConsumerTag = class extends import_sdkgen_client114.TagAbstract {
7660
7814
  };
7661
7815
 
7662
7816
  // src/SystemTag.ts
7663
- var import_sdkgen_client121 = require("sdkgen-client");
7817
+ var import_sdkgen_client123 = require("sdkgen-client");
7664
7818
 
7665
7819
  // src/SystemConnectionTag.ts
7666
- var import_sdkgen_client115 = require("sdkgen-client");
7667
- var import_sdkgen_client116 = require("sdkgen-client");
7668
- var SystemConnectionTag = class extends import_sdkgen_client115.TagAbstract {
7820
+ var import_sdkgen_client117 = require("sdkgen-client");
7821
+ var import_sdkgen_client118 = require("sdkgen-client");
7822
+ var SystemConnectionTag = class extends import_sdkgen_client117.TagAbstract {
7669
7823
  /**
7670
7824
  * Connection OAuth2 callback to authorize a connection
7671
7825
  *
@@ -7691,14 +7845,14 @@ var SystemConnectionTag = class extends import_sdkgen_client115.TagAbstract {
7691
7845
  if (statusCode >= 0 && statusCode <= 999) {
7692
7846
  throw new CommonMessageException(await response.json());
7693
7847
  }
7694
- throw new import_sdkgen_client116.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7848
+ throw new import_sdkgen_client118.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7695
7849
  }
7696
7850
  };
7697
7851
 
7698
7852
  // src/SystemMetaTag.ts
7699
- var import_sdkgen_client117 = require("sdkgen-client");
7700
- var import_sdkgen_client118 = require("sdkgen-client");
7701
- var SystemMetaTag = class extends import_sdkgen_client117.TagAbstract {
7853
+ var import_sdkgen_client119 = require("sdkgen-client");
7854
+ var import_sdkgen_client120 = require("sdkgen-client");
7855
+ var SystemMetaTag = class extends import_sdkgen_client119.TagAbstract {
7702
7856
  /**
7703
7857
  * Returns meta information and links about the current installed Fusio version
7704
7858
  *
@@ -7722,7 +7876,7 @@ var SystemMetaTag = class extends import_sdkgen_client117.TagAbstract {
7722
7876
  if (statusCode >= 0 && statusCode <= 999) {
7723
7877
  throw new CommonMessageException(await response.json());
7724
7878
  }
7725
- throw new import_sdkgen_client118.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7879
+ throw new import_sdkgen_client120.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7726
7880
  }
7727
7881
  /**
7728
7882
  * Debug endpoint which returns the provided data
@@ -7750,7 +7904,7 @@ var SystemMetaTag = class extends import_sdkgen_client117.TagAbstract {
7750
7904
  if (statusCode >= 0 && statusCode <= 999) {
7751
7905
  throw new CommonMessageException(await response.json());
7752
7906
  }
7753
- throw new import_sdkgen_client118.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7907
+ throw new import_sdkgen_client120.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7754
7908
  }
7755
7909
  /**
7756
7910
  * Health check endpoint which returns information about the health status of the system
@@ -7775,7 +7929,7 @@ var SystemMetaTag = class extends import_sdkgen_client117.TagAbstract {
7775
7929
  if (statusCode >= 0 && statusCode <= 999) {
7776
7930
  throw new CommonMessageException(await response.json());
7777
7931
  }
7778
- throw new import_sdkgen_client118.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7932
+ throw new import_sdkgen_client120.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7779
7933
  }
7780
7934
  /**
7781
7935
  * Returns all available routes
@@ -7800,7 +7954,7 @@ var SystemMetaTag = class extends import_sdkgen_client117.TagAbstract {
7800
7954
  if (statusCode >= 0 && statusCode <= 999) {
7801
7955
  throw new CommonMessageException(await response.json());
7802
7956
  }
7803
- throw new import_sdkgen_client118.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7957
+ throw new import_sdkgen_client120.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7804
7958
  }
7805
7959
  /**
7806
7960
  * Returns details of a specific schema
@@ -7827,14 +7981,14 @@ var SystemMetaTag = class extends import_sdkgen_client117.TagAbstract {
7827
7981
  if (statusCode >= 0 && statusCode <= 999) {
7828
7982
  throw new CommonMessageException(await response.json());
7829
7983
  }
7830
- throw new import_sdkgen_client118.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7984
+ throw new import_sdkgen_client120.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7831
7985
  }
7832
7986
  };
7833
7987
 
7834
7988
  // src/SystemPaymentTag.ts
7835
- var import_sdkgen_client119 = require("sdkgen-client");
7836
- var import_sdkgen_client120 = require("sdkgen-client");
7837
- var SystemPaymentTag = class extends import_sdkgen_client119.TagAbstract {
7989
+ var import_sdkgen_client121 = require("sdkgen-client");
7990
+ var import_sdkgen_client122 = require("sdkgen-client");
7991
+ var SystemPaymentTag = class extends import_sdkgen_client121.TagAbstract {
7838
7992
  /**
7839
7993
  * Payment webhook endpoint after successful purchase of a plan
7840
7994
  *
@@ -7860,12 +8014,12 @@ var SystemPaymentTag = class extends import_sdkgen_client119.TagAbstract {
7860
8014
  if (statusCode >= 0 && statusCode <= 999) {
7861
8015
  throw new CommonMessageException(await response.json());
7862
8016
  }
7863
- throw new import_sdkgen_client120.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
8017
+ throw new import_sdkgen_client122.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7864
8018
  }
7865
8019
  };
7866
8020
 
7867
8021
  // src/SystemTag.ts
7868
- var SystemTag = class extends import_sdkgen_client121.TagAbstract {
8022
+ var SystemTag = class extends import_sdkgen_client123.TagAbstract {
7869
8023
  connection() {
7870
8024
  return new SystemConnectionTag(
7871
8025
  this.httpClient,
@@ -7887,7 +8041,7 @@ var SystemTag = class extends import_sdkgen_client121.TagAbstract {
7887
8041
  };
7888
8042
 
7889
8043
  // src/Client.ts
7890
- var Client = class _Client extends import_sdkgen_client122.ClientAbstract {
8044
+ var Client = class _Client extends import_sdkgen_client124.ClientAbstract {
7891
8045
  authorization() {
7892
8046
  return new AuthorizationTag(
7893
8047
  this.httpClient,
@@ -7913,7 +8067,7 @@ var Client = class _Client extends import_sdkgen_client122.ClientAbstract {
7913
8067
  );
7914
8068
  }
7915
8069
  static buildAnonymous(baseUrl) {
7916
- return new _Client(baseUrl, new import_sdkgen_client123.Anonymous());
8070
+ return new _Client(baseUrl, new import_sdkgen_client125.Anonymous());
7917
8071
  }
7918
8072
  };
7919
8073
  // Annotate the CommonJS export names for ESM import in node:
@@ -7924,6 +8078,7 @@ var Client = class _Client extends import_sdkgen_client122.ClientAbstract {
7924
8078
  BackendAppTag,
7925
8079
  BackendAuditTag,
7926
8080
  BackendBackupTag,
8081
+ BackendBundleTag,
7927
8082
  BackendCategoryTag,
7928
8083
  BackendConfigTag,
7929
8084
  BackendConnectionDatabaseTag,