fusio-sdk 6.1.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,
@@ -43,6 +44,7 @@ __export(index_exports, {
43
44
  BackendLogTag: () => BackendLogTag,
44
45
  BackendMarketplaceActionTag: () => BackendMarketplaceActionTag,
45
46
  BackendMarketplaceAppTag: () => BackendMarketplaceAppTag,
47
+ BackendMarketplaceBundleTag: () => BackendMarketplaceBundleTag,
46
48
  BackendMarketplaceTag: () => BackendMarketplaceTag,
47
49
  BackendOperationTag: () => BackendOperationTag,
48
50
  BackendPageTag: () => BackendPageTag,
@@ -775,10 +777,157 @@ var BackendBackupTag = class extends import_sdkgen_client12.TagAbstract {
775
777
  }
776
778
  };
777
779
 
778
- // src/BackendCategoryTag.ts
780
+ // src/BackendBundleTag.ts
779
781
  var import_sdkgen_client14 = require("sdkgen-client");
780
782
  var import_sdkgen_client15 = require("sdkgen-client");
781
- 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 {
782
931
  /**
783
932
  * Creates a new category
784
933
  *
@@ -805,7 +954,7 @@ var BackendCategoryTag = class extends import_sdkgen_client14.TagAbstract {
805
954
  if (statusCode >= 0 && statusCode <= 999) {
806
955
  throw new CommonMessageException(await response.json());
807
956
  }
808
- 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);
809
958
  }
810
959
  /**
811
960
  * Deletes an existing category
@@ -832,7 +981,7 @@ var BackendCategoryTag = class extends import_sdkgen_client14.TagAbstract {
832
981
  if (statusCode >= 0 && statusCode <= 999) {
833
982
  throw new CommonMessageException(await response.json());
834
983
  }
835
- 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);
836
985
  }
837
986
  /**
838
987
  * Returns a specific category
@@ -859,7 +1008,7 @@ var BackendCategoryTag = class extends import_sdkgen_client14.TagAbstract {
859
1008
  if (statusCode >= 0 && statusCode <= 999) {
860
1009
  throw new CommonMessageException(await response.json());
861
1010
  }
862
- 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);
863
1012
  }
864
1013
  /**
865
1014
  * Returns a paginated list of categories
@@ -888,7 +1037,7 @@ var BackendCategoryTag = class extends import_sdkgen_client14.TagAbstract {
888
1037
  if (statusCode >= 0 && statusCode <= 999) {
889
1038
  throw new CommonMessageException(await response.json());
890
1039
  }
891
- 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);
892
1041
  }
893
1042
  /**
894
1043
  * Updates an existing category
@@ -918,14 +1067,14 @@ var BackendCategoryTag = class extends import_sdkgen_client14.TagAbstract {
918
1067
  if (statusCode >= 0 && statusCode <= 999) {
919
1068
  throw new CommonMessageException(await response.json());
920
1069
  }
921
- 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);
922
1071
  }
923
1072
  };
924
1073
 
925
1074
  // src/BackendConfigTag.ts
926
- var import_sdkgen_client16 = require("sdkgen-client");
927
- var import_sdkgen_client17 = require("sdkgen-client");
928
- 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 {
929
1078
  /**
930
1079
  * Returns a specific config
931
1080
  *
@@ -951,7 +1100,7 @@ var BackendConfigTag = class extends import_sdkgen_client16.TagAbstract {
951
1100
  if (statusCode >= 0 && statusCode <= 999) {
952
1101
  throw new CommonMessageException(await response.json());
953
1102
  }
954
- 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);
955
1104
  }
956
1105
  /**
957
1106
  * Returns a paginated list of configuration values
@@ -980,7 +1129,7 @@ var BackendConfigTag = class extends import_sdkgen_client16.TagAbstract {
980
1129
  if (statusCode >= 0 && statusCode <= 999) {
981
1130
  throw new CommonMessageException(await response.json());
982
1131
  }
983
- 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);
984
1133
  }
985
1134
  /**
986
1135
  * Updates an existing config value
@@ -1010,14 +1159,14 @@ var BackendConfigTag = class extends import_sdkgen_client16.TagAbstract {
1010
1159
  if (statusCode >= 0 && statusCode <= 999) {
1011
1160
  throw new CommonMessageException(await response.json());
1012
1161
  }
1013
- 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);
1014
1163
  }
1015
1164
  };
1016
1165
 
1017
1166
  // src/BackendConnectionDatabaseTag.ts
1018
- var import_sdkgen_client18 = require("sdkgen-client");
1019
- var import_sdkgen_client19 = require("sdkgen-client");
1020
- 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 {
1021
1170
  /**
1022
1171
  * Creates a new row at a table on a database
1023
1172
  *
@@ -1047,7 +1196,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client18.TagAbstr
1047
1196
  if (statusCode >= 0 && statusCode <= 999) {
1048
1197
  throw new CommonMessageException(await response.json());
1049
1198
  }
1050
- 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);
1051
1200
  }
1052
1201
  /**
1053
1202
  * Creates a new table on a database
@@ -1077,7 +1226,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client18.TagAbstr
1077
1226
  if (statusCode >= 0 && statusCode <= 999) {
1078
1227
  throw new CommonMessageException(await response.json());
1079
1228
  }
1080
- 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);
1081
1230
  }
1082
1231
  /**
1083
1232
  * Deletes an existing row at a table on a database
@@ -1106,7 +1255,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client18.TagAbstr
1106
1255
  if (statusCode >= 0 && statusCode <= 999) {
1107
1256
  throw new CommonMessageException(await response.json());
1108
1257
  }
1109
- 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);
1110
1259
  }
1111
1260
  /**
1112
1261
  * Deletes an existing table on a database
@@ -1134,7 +1283,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client18.TagAbstr
1134
1283
  if (statusCode >= 0 && statusCode <= 999) {
1135
1284
  throw new CommonMessageException(await response.json());
1136
1285
  }
1137
- 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);
1138
1287
  }
1139
1288
  /**
1140
1289
  * Returns a specific row at a table on a database
@@ -1163,7 +1312,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client18.TagAbstr
1163
1312
  if (statusCode >= 0 && statusCode <= 999) {
1164
1313
  throw new CommonMessageException(await response.json());
1165
1314
  }
1166
- 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);
1167
1316
  }
1168
1317
  /**
1169
1318
  * Returns paginated rows at a table on a database
@@ -1200,7 +1349,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client18.TagAbstr
1200
1349
  if (statusCode >= 0 && statusCode <= 999) {
1201
1350
  throw new CommonMessageException(await response.json());
1202
1351
  }
1203
- 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);
1204
1353
  }
1205
1354
  /**
1206
1355
  * Returns the schema of a specific table on a database
@@ -1228,7 +1377,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client18.TagAbstr
1228
1377
  if (statusCode >= 0 && statusCode <= 999) {
1229
1378
  throw new CommonMessageException(await response.json());
1230
1379
  }
1231
- 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);
1232
1381
  }
1233
1382
  /**
1234
1383
  * Returns all available tables on a database
@@ -1258,7 +1407,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client18.TagAbstr
1258
1407
  if (statusCode >= 0 && statusCode <= 999) {
1259
1408
  throw new CommonMessageException(await response.json());
1260
1409
  }
1261
- 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);
1262
1411
  }
1263
1412
  /**
1264
1413
  * Updates an existing row at a table on a database
@@ -1290,7 +1439,7 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client18.TagAbstr
1290
1439
  if (statusCode >= 0 && statusCode <= 999) {
1291
1440
  throw new CommonMessageException(await response.json());
1292
1441
  }
1293
- 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);
1294
1443
  }
1295
1444
  /**
1296
1445
  * Updates an existing table on a database
@@ -1321,14 +1470,14 @@ var BackendConnectionDatabaseTag = class extends import_sdkgen_client18.TagAbstr
1321
1470
  if (statusCode >= 0 && statusCode <= 999) {
1322
1471
  throw new CommonMessageException(await response.json());
1323
1472
  }
1324
- 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);
1325
1474
  }
1326
1475
  };
1327
1476
 
1328
1477
  // src/BackendConnectionFilesystemTag.ts
1329
- var import_sdkgen_client20 = require("sdkgen-client");
1330
- var import_sdkgen_client21 = require("sdkgen-client");
1331
- 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 {
1332
1481
  /**
1333
1482
  * Uploads one or more files on the filesystem connection
1334
1483
  *
@@ -1355,7 +1504,7 @@ var BackendConnectionFilesystemTag = class extends import_sdkgen_client20.TagAbs
1355
1504
  if (statusCode >= 0 && statusCode <= 999) {
1356
1505
  throw new CommonMessageException(await response.json());
1357
1506
  }
1358
- 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);
1359
1508
  }
1360
1509
  /**
1361
1510
  * Deletes an existing file on the filesystem connection
@@ -1383,7 +1532,7 @@ var BackendConnectionFilesystemTag = class extends import_sdkgen_client20.TagAbs
1383
1532
  if (statusCode >= 0 && statusCode <= 999) {
1384
1533
  throw new CommonMessageException(await response.json());
1385
1534
  }
1386
- 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);
1387
1536
  }
1388
1537
  /**
1389
1538
  * Returns the content of the provided file id on the filesystem connection
@@ -1413,7 +1562,7 @@ var BackendConnectionFilesystemTag = class extends import_sdkgen_client20.TagAbs
1413
1562
  if (statusCode >= 0 && statusCode <= 999) {
1414
1563
  throw new CommonMessageException(await response.json());
1415
1564
  }
1416
- 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);
1417
1566
  }
1418
1567
  /**
1419
1568
  * Returns all available files on the filesystem connection
@@ -1443,7 +1592,7 @@ var BackendConnectionFilesystemTag = class extends import_sdkgen_client20.TagAbs
1443
1592
  if (statusCode >= 0 && statusCode <= 999) {
1444
1593
  throw new CommonMessageException(await response.json());
1445
1594
  }
1446
- 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);
1447
1596
  }
1448
1597
  /**
1449
1598
  * Updates an existing file on the filesystem connection
@@ -1472,14 +1621,14 @@ var BackendConnectionFilesystemTag = class extends import_sdkgen_client20.TagAbs
1472
1621
  if (statusCode >= 0 && statusCode <= 999) {
1473
1622
  throw new CommonMessageException(await response.json());
1474
1623
  }
1475
- 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);
1476
1625
  }
1477
1626
  };
1478
1627
 
1479
1628
  // src/BackendConnectionHttpTag.ts
1480
- var import_sdkgen_client22 = require("sdkgen-client");
1481
- var import_sdkgen_client23 = require("sdkgen-client");
1482
- 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 {
1483
1632
  /**
1484
1633
  * Sends an arbitrary HTTP request to the connection
1485
1634
  *
@@ -1508,14 +1657,14 @@ var BackendConnectionHttpTag = class extends import_sdkgen_client22.TagAbstract
1508
1657
  if (statusCode >= 0 && statusCode <= 999) {
1509
1658
  throw new CommonMessageException(await response.json());
1510
1659
  }
1511
- 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);
1512
1661
  }
1513
1662
  };
1514
1663
 
1515
1664
  // src/BackendConnectionSdkTag.ts
1516
- var import_sdkgen_client24 = require("sdkgen-client");
1517
- var import_sdkgen_client25 = require("sdkgen-client");
1518
- 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 {
1519
1668
  /**
1520
1669
  * Returns the SDK specification
1521
1670
  *
@@ -1541,14 +1690,14 @@ var BackendConnectionSdkTag = class extends import_sdkgen_client24.TagAbstract {
1541
1690
  if (statusCode >= 0 && statusCode <= 999) {
1542
1691
  throw new CommonMessageException(await response.json());
1543
1692
  }
1544
- 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);
1545
1694
  }
1546
1695
  };
1547
1696
 
1548
1697
  // src/BackendConnectionTag.ts
1549
- var import_sdkgen_client26 = require("sdkgen-client");
1550
- var import_sdkgen_client27 = require("sdkgen-client");
1551
- 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 {
1552
1701
  database() {
1553
1702
  return new BackendConnectionDatabaseTag(
1554
1703
  this.httpClient,
@@ -1599,7 +1748,7 @@ var BackendConnectionTag = class extends import_sdkgen_client26.TagAbstract {
1599
1748
  if (statusCode >= 0 && statusCode <= 999) {
1600
1749
  throw new CommonMessageException(await response.json());
1601
1750
  }
1602
- 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);
1603
1752
  }
1604
1753
  /**
1605
1754
  * Deletes an existing connection
@@ -1626,7 +1775,7 @@ var BackendConnectionTag = class extends import_sdkgen_client26.TagAbstract {
1626
1775
  if (statusCode >= 0 && statusCode <= 999) {
1627
1776
  throw new CommonMessageException(await response.json());
1628
1777
  }
1629
- 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);
1630
1779
  }
1631
1780
  /**
1632
1781
  * Returns a specific connection
@@ -1653,7 +1802,7 @@ var BackendConnectionTag = class extends import_sdkgen_client26.TagAbstract {
1653
1802
  if (statusCode >= 0 && statusCode <= 999) {
1654
1803
  throw new CommonMessageException(await response.json());
1655
1804
  }
1656
- 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);
1657
1806
  }
1658
1807
  /**
1659
1808
  * Returns a paginated list of connections
@@ -1683,7 +1832,7 @@ var BackendConnectionTag = class extends import_sdkgen_client26.TagAbstract {
1683
1832
  if (statusCode >= 0 && statusCode <= 999) {
1684
1833
  throw new CommonMessageException(await response.json());
1685
1834
  }
1686
- 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);
1687
1836
  }
1688
1837
  /**
1689
1838
  * Returns all available connection classes
@@ -1708,7 +1857,7 @@ var BackendConnectionTag = class extends import_sdkgen_client26.TagAbstract {
1708
1857
  if (statusCode >= 0 && statusCode <= 999) {
1709
1858
  throw new CommonMessageException(await response.json());
1710
1859
  }
1711
- 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);
1712
1861
  }
1713
1862
  /**
1714
1863
  * Returns the connection config form
@@ -1735,7 +1884,7 @@ var BackendConnectionTag = class extends import_sdkgen_client26.TagAbstract {
1735
1884
  if (statusCode >= 0 && statusCode <= 999) {
1736
1885
  throw new CommonMessageException(await response.json());
1737
1886
  }
1738
- 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);
1739
1888
  }
1740
1889
  /**
1741
1890
  * Returns a redirect url to start the OAuth2 authorization flow for the given connection
@@ -1762,7 +1911,7 @@ var BackendConnectionTag = class extends import_sdkgen_client26.TagAbstract {
1762
1911
  if (statusCode >= 0 && statusCode <= 999) {
1763
1912
  throw new CommonMessageException(await response.json());
1764
1913
  }
1765
- 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);
1766
1915
  }
1767
1916
  /**
1768
1917
  * Updates an existing connection
@@ -1792,14 +1941,14 @@ var BackendConnectionTag = class extends import_sdkgen_client26.TagAbstract {
1792
1941
  if (statusCode >= 0 && statusCode <= 999) {
1793
1942
  throw new CommonMessageException(await response.json());
1794
1943
  }
1795
- 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);
1796
1945
  }
1797
1946
  };
1798
1947
 
1799
1948
  // src/BackendCronjobTag.ts
1800
- var import_sdkgen_client28 = require("sdkgen-client");
1801
- var import_sdkgen_client29 = require("sdkgen-client");
1802
- 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 {
1803
1952
  /**
1804
1953
  * Creates a new cronjob
1805
1954
  *
@@ -1826,7 +1975,7 @@ var BackendCronjobTag = class extends import_sdkgen_client28.TagAbstract {
1826
1975
  if (statusCode >= 0 && statusCode <= 999) {
1827
1976
  throw new CommonMessageException(await response.json());
1828
1977
  }
1829
- 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);
1830
1979
  }
1831
1980
  /**
1832
1981
  * Deletes an existing cronjob
@@ -1853,7 +2002,7 @@ var BackendCronjobTag = class extends import_sdkgen_client28.TagAbstract {
1853
2002
  if (statusCode >= 0 && statusCode <= 999) {
1854
2003
  throw new CommonMessageException(await response.json());
1855
2004
  }
1856
- 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);
1857
2006
  }
1858
2007
  /**
1859
2008
  * Returns a specific cronjob
@@ -1880,7 +2029,7 @@ var BackendCronjobTag = class extends import_sdkgen_client28.TagAbstract {
1880
2029
  if (statusCode >= 0 && statusCode <= 999) {
1881
2030
  throw new CommonMessageException(await response.json());
1882
2031
  }
1883
- 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);
1884
2033
  }
1885
2034
  /**
1886
2035
  * Returns a paginated list of cronjobs
@@ -1909,7 +2058,7 @@ var BackendCronjobTag = class extends import_sdkgen_client28.TagAbstract {
1909
2058
  if (statusCode >= 0 && statusCode <= 999) {
1910
2059
  throw new CommonMessageException(await response.json());
1911
2060
  }
1912
- 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);
1913
2062
  }
1914
2063
  /**
1915
2064
  * Updates an existing cronjob
@@ -1939,14 +2088,14 @@ var BackendCronjobTag = class extends import_sdkgen_client28.TagAbstract {
1939
2088
  if (statusCode >= 0 && statusCode <= 999) {
1940
2089
  throw new CommonMessageException(await response.json());
1941
2090
  }
1942
- 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);
1943
2092
  }
1944
2093
  };
1945
2094
 
1946
2095
  // src/BackendDashboardTag.ts
1947
- var import_sdkgen_client30 = require("sdkgen-client");
1948
- var import_sdkgen_client31 = require("sdkgen-client");
1949
- 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 {
1950
2099
  /**
1951
2100
  * Returns all available dashboard widgets
1952
2101
  *
@@ -1970,14 +2119,14 @@ var BackendDashboardTag = class extends import_sdkgen_client30.TagAbstract {
1970
2119
  if (statusCode >= 0 && statusCode <= 999) {
1971
2120
  throw new CommonMessageException(await response.json());
1972
2121
  }
1973
- 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);
1974
2123
  }
1975
2124
  };
1976
2125
 
1977
2126
  // src/BackendEventTag.ts
1978
- var import_sdkgen_client32 = require("sdkgen-client");
1979
- var import_sdkgen_client33 = require("sdkgen-client");
1980
- 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 {
1981
2130
  /**
1982
2131
  * Creates a new event
1983
2132
  *
@@ -2004,7 +2153,7 @@ var BackendEventTag = class extends import_sdkgen_client32.TagAbstract {
2004
2153
  if (statusCode >= 0 && statusCode <= 999) {
2005
2154
  throw new CommonMessageException(await response.json());
2006
2155
  }
2007
- 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);
2008
2157
  }
2009
2158
  /**
2010
2159
  * Deletes an existing event
@@ -2031,7 +2180,7 @@ var BackendEventTag = class extends import_sdkgen_client32.TagAbstract {
2031
2180
  if (statusCode >= 0 && statusCode <= 999) {
2032
2181
  throw new CommonMessageException(await response.json());
2033
2182
  }
2034
- 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);
2035
2184
  }
2036
2185
  /**
2037
2186
  * Returns a specific event
@@ -2058,7 +2207,7 @@ var BackendEventTag = class extends import_sdkgen_client32.TagAbstract {
2058
2207
  if (statusCode >= 0 && statusCode <= 999) {
2059
2208
  throw new CommonMessageException(await response.json());
2060
2209
  }
2061
- 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);
2062
2211
  }
2063
2212
  /**
2064
2213
  * Returns a paginated list of events
@@ -2087,7 +2236,7 @@ var BackendEventTag = class extends import_sdkgen_client32.TagAbstract {
2087
2236
  if (statusCode >= 0 && statusCode <= 999) {
2088
2237
  throw new CommonMessageException(await response.json());
2089
2238
  }
2090
- 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);
2091
2240
  }
2092
2241
  /**
2093
2242
  * Updates an existing event
@@ -2117,14 +2266,14 @@ var BackendEventTag = class extends import_sdkgen_client32.TagAbstract {
2117
2266
  if (statusCode >= 0 && statusCode <= 999) {
2118
2267
  throw new CommonMessageException(await response.json());
2119
2268
  }
2120
- 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);
2121
2270
  }
2122
2271
  };
2123
2272
 
2124
2273
  // src/BackendFirewallTag.ts
2125
- var import_sdkgen_client34 = require("sdkgen-client");
2126
- var import_sdkgen_client35 = require("sdkgen-client");
2127
- 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 {
2128
2277
  /**
2129
2278
  * Creates a new firewall rule
2130
2279
  *
@@ -2151,7 +2300,7 @@ var BackendFirewallTag = class extends import_sdkgen_client34.TagAbstract {
2151
2300
  if (statusCode >= 0 && statusCode <= 999) {
2152
2301
  throw new CommonMessageException(await response.json());
2153
2302
  }
2154
- 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);
2155
2304
  }
2156
2305
  /**
2157
2306
  * Deletes an existing firewall rule
@@ -2178,7 +2327,7 @@ var BackendFirewallTag = class extends import_sdkgen_client34.TagAbstract {
2178
2327
  if (statusCode >= 0 && statusCode <= 999) {
2179
2328
  throw new CommonMessageException(await response.json());
2180
2329
  }
2181
- 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);
2182
2331
  }
2183
2332
  /**
2184
2333
  * Returns a specific firewall rule
@@ -2205,7 +2354,7 @@ var BackendFirewallTag = class extends import_sdkgen_client34.TagAbstract {
2205
2354
  if (statusCode >= 0 && statusCode <= 999) {
2206
2355
  throw new CommonMessageException(await response.json());
2207
2356
  }
2208
- 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);
2209
2358
  }
2210
2359
  /**
2211
2360
  * Returns a paginated list of firewall rules
@@ -2234,7 +2383,7 @@ var BackendFirewallTag = class extends import_sdkgen_client34.TagAbstract {
2234
2383
  if (statusCode >= 0 && statusCode <= 999) {
2235
2384
  throw new CommonMessageException(await response.json());
2236
2385
  }
2237
- 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);
2238
2387
  }
2239
2388
  /**
2240
2389
  * Updates an existing firewall rule
@@ -2264,14 +2413,14 @@ var BackendFirewallTag = class extends import_sdkgen_client34.TagAbstract {
2264
2413
  if (statusCode >= 0 && statusCode <= 999) {
2265
2414
  throw new CommonMessageException(await response.json());
2266
2415
  }
2267
- 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);
2268
2417
  }
2269
2418
  };
2270
2419
 
2271
2420
  // src/BackendFormTag.ts
2272
- var import_sdkgen_client36 = require("sdkgen-client");
2273
- var import_sdkgen_client37 = require("sdkgen-client");
2274
- 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 {
2275
2424
  /**
2276
2425
  * Creates a new form
2277
2426
  *
@@ -2298,7 +2447,7 @@ var BackendFormTag = class extends import_sdkgen_client36.TagAbstract {
2298
2447
  if (statusCode >= 0 && statusCode <= 999) {
2299
2448
  throw new CommonMessageException(await response.json());
2300
2449
  }
2301
- 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);
2302
2451
  }
2303
2452
  /**
2304
2453
  * Deletes an existing form
@@ -2325,7 +2474,7 @@ var BackendFormTag = class extends import_sdkgen_client36.TagAbstract {
2325
2474
  if (statusCode >= 0 && statusCode <= 999) {
2326
2475
  throw new CommonMessageException(await response.json());
2327
2476
  }
2328
- 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);
2329
2478
  }
2330
2479
  /**
2331
2480
  * Returns a specific form
@@ -2352,7 +2501,7 @@ var BackendFormTag = class extends import_sdkgen_client36.TagAbstract {
2352
2501
  if (statusCode >= 0 && statusCode <= 999) {
2353
2502
  throw new CommonMessageException(await response.json());
2354
2503
  }
2355
- 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);
2356
2505
  }
2357
2506
  /**
2358
2507
  * Returns a paginated list of forms
@@ -2381,7 +2530,7 @@ var BackendFormTag = class extends import_sdkgen_client36.TagAbstract {
2381
2530
  if (statusCode >= 0 && statusCode <= 999) {
2382
2531
  throw new CommonMessageException(await response.json());
2383
2532
  }
2384
- 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);
2385
2534
  }
2386
2535
  /**
2387
2536
  * Updates an existing form
@@ -2411,14 +2560,14 @@ var BackendFormTag = class extends import_sdkgen_client36.TagAbstract {
2411
2560
  if (statusCode >= 0 && statusCode <= 999) {
2412
2561
  throw new CommonMessageException(await response.json());
2413
2562
  }
2414
- 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);
2415
2564
  }
2416
2565
  };
2417
2566
 
2418
2567
  // src/BackendGeneratorTag.ts
2419
- var import_sdkgen_client38 = require("sdkgen-client");
2420
- var import_sdkgen_client39 = require("sdkgen-client");
2421
- 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 {
2422
2571
  /**
2423
2572
  * Executes a generator with the provided config
2424
2573
  *
@@ -2447,7 +2596,7 @@ var BackendGeneratorTag = class extends import_sdkgen_client38.TagAbstract {
2447
2596
  if (statusCode >= 0 && statusCode <= 999) {
2448
2597
  throw new CommonMessageException(await response.json());
2449
2598
  }
2450
- 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);
2451
2600
  }
2452
2601
  /**
2453
2602
  * Generates a changelog of all potential changes if you execute this generator with the provided config
@@ -2477,7 +2626,7 @@ var BackendGeneratorTag = class extends import_sdkgen_client38.TagAbstract {
2477
2626
  if (statusCode >= 0 && statusCode <= 999) {
2478
2627
  throw new CommonMessageException(await response.json());
2479
2628
  }
2480
- 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);
2481
2630
  }
2482
2631
  /**
2483
2632
  * Returns all available generator classes
@@ -2502,7 +2651,7 @@ var BackendGeneratorTag = class extends import_sdkgen_client38.TagAbstract {
2502
2651
  if (statusCode >= 0 && statusCode <= 999) {
2503
2652
  throw new CommonMessageException(await response.json());
2504
2653
  }
2505
- 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);
2506
2655
  }
2507
2656
  /**
2508
2657
  * Returns the generator config form
@@ -2529,14 +2678,14 @@ var BackendGeneratorTag = class extends import_sdkgen_client38.TagAbstract {
2529
2678
  if (statusCode >= 0 && statusCode <= 999) {
2530
2679
  throw new CommonMessageException(await response.json());
2531
2680
  }
2532
- 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);
2533
2682
  }
2534
2683
  };
2535
2684
 
2536
2685
  // src/BackendIdentityTag.ts
2537
- var import_sdkgen_client40 = require("sdkgen-client");
2538
- var import_sdkgen_client41 = require("sdkgen-client");
2539
- 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 {
2540
2689
  /**
2541
2690
  * Creates a new identity
2542
2691
  *
@@ -2563,7 +2712,7 @@ var BackendIdentityTag = class extends import_sdkgen_client40.TagAbstract {
2563
2712
  if (statusCode >= 0 && statusCode <= 999) {
2564
2713
  throw new CommonMessageException(await response.json());
2565
2714
  }
2566
- 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);
2567
2716
  }
2568
2717
  /**
2569
2718
  * Deletes an existing identity
@@ -2590,7 +2739,7 @@ var BackendIdentityTag = class extends import_sdkgen_client40.TagAbstract {
2590
2739
  if (statusCode >= 0 && statusCode <= 999) {
2591
2740
  throw new CommonMessageException(await response.json());
2592
2741
  }
2593
- 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);
2594
2743
  }
2595
2744
  /**
2596
2745
  * Returns a specific identity
@@ -2617,7 +2766,7 @@ var BackendIdentityTag = class extends import_sdkgen_client40.TagAbstract {
2617
2766
  if (statusCode >= 0 && statusCode <= 999) {
2618
2767
  throw new CommonMessageException(await response.json());
2619
2768
  }
2620
- 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);
2621
2770
  }
2622
2771
  /**
2623
2772
  * Returns a paginated list of identities
@@ -2646,7 +2795,7 @@ var BackendIdentityTag = class extends import_sdkgen_client40.TagAbstract {
2646
2795
  if (statusCode >= 0 && statusCode <= 999) {
2647
2796
  throw new CommonMessageException(await response.json());
2648
2797
  }
2649
- 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);
2650
2799
  }
2651
2800
  /**
2652
2801
  * Returns all available identity classes
@@ -2671,7 +2820,7 @@ var BackendIdentityTag = class extends import_sdkgen_client40.TagAbstract {
2671
2820
  if (statusCode >= 0 && statusCode <= 999) {
2672
2821
  throw new CommonMessageException(await response.json());
2673
2822
  }
2674
- 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);
2675
2824
  }
2676
2825
  /**
2677
2826
  * Returns the identity config form
@@ -2698,7 +2847,7 @@ var BackendIdentityTag = class extends import_sdkgen_client40.TagAbstract {
2698
2847
  if (statusCode >= 0 && statusCode <= 999) {
2699
2848
  throw new CommonMessageException(await response.json());
2700
2849
  }
2701
- 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);
2702
2851
  }
2703
2852
  /**
2704
2853
  * Updates an existing identity
@@ -2728,14 +2877,14 @@ var BackendIdentityTag = class extends import_sdkgen_client40.TagAbstract {
2728
2877
  if (statusCode >= 0 && statusCode <= 999) {
2729
2878
  throw new CommonMessageException(await response.json());
2730
2879
  }
2731
- 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);
2732
2881
  }
2733
2882
  };
2734
2883
 
2735
2884
  // src/BackendLogTag.ts
2736
- var import_sdkgen_client42 = require("sdkgen-client");
2737
- var import_sdkgen_client43 = require("sdkgen-client");
2738
- 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 {
2739
2888
  /**
2740
2889
  * Returns a specific log
2741
2890
  *
@@ -2761,7 +2910,7 @@ var BackendLogTag = class extends import_sdkgen_client42.TagAbstract {
2761
2910
  if (statusCode >= 0 && statusCode <= 999) {
2762
2911
  throw new CommonMessageException(await response.json());
2763
2912
  }
2764
- 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);
2765
2914
  }
2766
2915
  /**
2767
2916
  * Returns a paginated list of logs
@@ -2801,7 +2950,7 @@ var BackendLogTag = class extends import_sdkgen_client42.TagAbstract {
2801
2950
  if (statusCode >= 0 && statusCode <= 999) {
2802
2951
  throw new CommonMessageException(await response.json());
2803
2952
  }
2804
- 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);
2805
2954
  }
2806
2955
  /**
2807
2956
  * Returns a paginated list of log errors
@@ -2830,7 +2979,7 @@ var BackendLogTag = class extends import_sdkgen_client42.TagAbstract {
2830
2979
  if (statusCode >= 0 && statusCode <= 999) {
2831
2980
  throw new CommonMessageException(await response.json());
2832
2981
  }
2833
- 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);
2834
2983
  }
2835
2984
  /**
2836
2985
  * Returns a specific error
@@ -2857,14 +3006,14 @@ var BackendLogTag = class extends import_sdkgen_client42.TagAbstract {
2857
3006
  if (statusCode >= 0 && statusCode <= 999) {
2858
3007
  throw new CommonMessageException(await response.json());
2859
3008
  }
2860
- 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);
2861
3010
  }
2862
3011
  };
2863
3012
 
2864
3013
  // src/BackendMarketplaceActionTag.ts
2865
- var import_sdkgen_client44 = require("sdkgen-client");
2866
- var import_sdkgen_client45 = require("sdkgen-client");
2867
- 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 {
2868
3017
  /**
2869
3018
  * Returns a specific marketplace action
2870
3019
  *
@@ -2891,7 +3040,7 @@ var BackendMarketplaceActionTag = class extends import_sdkgen_client44.TagAbstra
2891
3040
  if (statusCode >= 0 && statusCode <= 999) {
2892
3041
  throw new CommonMessageException(await response.json());
2893
3042
  }
2894
- 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);
2895
3044
  }
2896
3045
  /**
2897
3046
  * Returns a paginated list of marketplace actions
@@ -2919,7 +3068,7 @@ var BackendMarketplaceActionTag = class extends import_sdkgen_client44.TagAbstra
2919
3068
  if (statusCode >= 0 && statusCode <= 999) {
2920
3069
  throw new CommonMessageException(await response.json());
2921
3070
  }
2922
- 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);
2923
3072
  }
2924
3073
  /**
2925
3074
  * Installs an action from the marketplace
@@ -2947,7 +3096,7 @@ var BackendMarketplaceActionTag = class extends import_sdkgen_client44.TagAbstra
2947
3096
  if (statusCode >= 0 && statusCode <= 999) {
2948
3097
  throw new CommonMessageException(await response.json());
2949
3098
  }
2950
- 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);
2951
3100
  }
2952
3101
  /**
2953
3102
  * Upgrades an action from the marketplace
@@ -2975,23 +3124,141 @@ var BackendMarketplaceActionTag = class extends import_sdkgen_client44.TagAbstra
2975
3124
  if (statusCode >= 0 && statusCode <= 999) {
2976
3125
  throw new CommonMessageException(await response.json());
2977
3126
  }
2978
- 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);
2979
3128
  }
2980
3129
  };
2981
3130
 
2982
3131
  // src/BackendMarketplaceAppTag.ts
2983
- var import_sdkgen_client46 = require("sdkgen-client");
2984
- var import_sdkgen_client47 = require("sdkgen-client");
2985
- 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 {
3135
+ /**
3136
+ * Returns a specific marketplace app
3137
+ *
3138
+ * @returns {Promise<MarketplaceApp>}
3139
+ * @throws {CommonMessageException}
3140
+ * @throws {ClientException}
3141
+ */
3142
+ async get(user, name) {
3143
+ const url = this.parser.url("/backend/marketplace/app/:user/:name", {
3144
+ "user": user,
3145
+ "name": name
3146
+ });
3147
+ let request = {
3148
+ url,
3149
+ method: "GET",
3150
+ headers: {},
3151
+ params: this.parser.query({}, [])
3152
+ };
3153
+ const response = await this.httpClient.request(request);
3154
+ if (response.ok) {
3155
+ return await response.json();
3156
+ }
3157
+ const statusCode = response.status;
3158
+ if (statusCode >= 0 && statusCode <= 999) {
3159
+ throw new CommonMessageException(await response.json());
3160
+ }
3161
+ throw new import_sdkgen_client49.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3162
+ }
3163
+ /**
3164
+ * Returns a paginated list of marketplace apps
3165
+ *
3166
+ * @returns {Promise<MarketplaceAppCollection>}
3167
+ * @throws {CommonMessageException}
3168
+ * @throws {ClientException}
3169
+ */
3170
+ async getAll(startIndex, query) {
3171
+ const url = this.parser.url("/backend/marketplace/app", {});
3172
+ let request = {
3173
+ url,
3174
+ method: "GET",
3175
+ headers: {},
3176
+ params: this.parser.query({
3177
+ "startIndex": startIndex,
3178
+ "query": query
3179
+ }, [])
3180
+ };
3181
+ const response = await this.httpClient.request(request);
3182
+ if (response.ok) {
3183
+ return await response.json();
3184
+ }
3185
+ const statusCode = response.status;
3186
+ if (statusCode >= 0 && statusCode <= 999) {
3187
+ throw new CommonMessageException(await response.json());
3188
+ }
3189
+ throw new import_sdkgen_client49.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3190
+ }
3191
+ /**
3192
+ * Installs an app from the marketplace
3193
+ *
3194
+ * @returns {Promise<MarketplaceMessage>}
3195
+ * @throws {CommonMessageException}
3196
+ * @throws {ClientException}
3197
+ */
3198
+ async install(payload) {
3199
+ const url = this.parser.url("/backend/marketplace/app", {});
3200
+ let request = {
3201
+ url,
3202
+ method: "POST",
3203
+ headers: {
3204
+ "Content-Type": "application/json"
3205
+ },
3206
+ params: this.parser.query({}, []),
3207
+ data: payload
3208
+ };
3209
+ const response = await this.httpClient.request(request);
3210
+ if (response.ok) {
3211
+ return await response.json();
3212
+ }
3213
+ const statusCode = response.status;
3214
+ if (statusCode >= 0 && statusCode <= 999) {
3215
+ throw new CommonMessageException(await response.json());
3216
+ }
3217
+ throw new import_sdkgen_client49.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3218
+ }
3219
+ /**
3220
+ * Upgrades an app from the marketplace
3221
+ *
3222
+ * @returns {Promise<MarketplaceMessage>}
3223
+ * @throws {CommonMessageException}
3224
+ * @throws {ClientException}
3225
+ */
3226
+ async upgrade(user, name) {
3227
+ const url = this.parser.url("/backend/marketplace/app/:user/:name", {
3228
+ "user": user,
3229
+ "name": name
3230
+ });
3231
+ let request = {
3232
+ url,
3233
+ method: "PUT",
3234
+ headers: {},
3235
+ params: this.parser.query({}, [])
3236
+ };
3237
+ const response = await this.httpClient.request(request);
3238
+ if (response.ok) {
3239
+ return await response.json();
3240
+ }
3241
+ const statusCode = response.status;
3242
+ if (statusCode >= 0 && statusCode <= 999) {
3243
+ throw new CommonMessageException(await response.json());
3244
+ }
3245
+ throw new import_sdkgen_client49.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3246
+ }
3247
+ };
3248
+
3249
+ // src/BackendMarketplaceBundleTag.ts
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 {
2986
3253
  /**
2987
- * Returns a specific marketplace app
3254
+ * Returns a specific marketplace bundle
2988
3255
  *
2989
- * @returns {Promise<MarketplaceApp>}
3256
+ * @returns {Promise<MarketplaceBundle>}
2990
3257
  * @throws {CommonMessageException}
2991
3258
  * @throws {ClientException}
2992
3259
  */
2993
3260
  async get(user, name) {
2994
- const url = this.parser.url("/backend/marketplace/app/:user/:name", {
3261
+ const url = this.parser.url("/backend/marketplace/bundle/:user/:name", {
2995
3262
  "user": user,
2996
3263
  "name": name
2997
3264
  });
@@ -3009,17 +3276,17 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client46.TagAbstract
3009
3276
  if (statusCode >= 0 && statusCode <= 999) {
3010
3277
  throw new CommonMessageException(await response.json());
3011
3278
  }
3012
- throw new import_sdkgen_client47.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3279
+ throw new import_sdkgen_client51.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3013
3280
  }
3014
3281
  /**
3015
- * Returns a paginated list of marketplace apps
3282
+ * Returns a paginated list of marketplace bundles
3016
3283
  *
3017
- * @returns {Promise<MarketplaceAppCollection>}
3284
+ * @returns {Promise<MarketplaceBundleCollection>}
3018
3285
  * @throws {CommonMessageException}
3019
3286
  * @throws {ClientException}
3020
3287
  */
3021
3288
  async getAll(startIndex, query) {
3022
- const url = this.parser.url("/backend/marketplace/app", {});
3289
+ const url = this.parser.url("/backend/marketplace/bundle", {});
3023
3290
  let request = {
3024
3291
  url,
3025
3292
  method: "GET",
@@ -3037,17 +3304,17 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client46.TagAbstract
3037
3304
  if (statusCode >= 0 && statusCode <= 999) {
3038
3305
  throw new CommonMessageException(await response.json());
3039
3306
  }
3040
- throw new import_sdkgen_client47.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3307
+ throw new import_sdkgen_client51.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3041
3308
  }
3042
3309
  /**
3043
- * Installs an app from the marketplace
3310
+ * Installs an bundle from the marketplace
3044
3311
  *
3045
3312
  * @returns {Promise<MarketplaceMessage>}
3046
3313
  * @throws {CommonMessageException}
3047
3314
  * @throws {ClientException}
3048
3315
  */
3049
3316
  async install(payload) {
3050
- const url = this.parser.url("/backend/marketplace/app", {});
3317
+ const url = this.parser.url("/backend/marketplace/bundle", {});
3051
3318
  let request = {
3052
3319
  url,
3053
3320
  method: "POST",
@@ -3065,17 +3332,17 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client46.TagAbstract
3065
3332
  if (statusCode >= 0 && statusCode <= 999) {
3066
3333
  throw new CommonMessageException(await response.json());
3067
3334
  }
3068
- throw new import_sdkgen_client47.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3335
+ throw new import_sdkgen_client51.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3069
3336
  }
3070
3337
  /**
3071
- * Upgrades an app from the marketplace
3338
+ * Upgrades an bundle from the marketplace
3072
3339
  *
3073
3340
  * @returns {Promise<MarketplaceMessage>}
3074
3341
  * @throws {CommonMessageException}
3075
3342
  * @throws {ClientException}
3076
3343
  */
3077
3344
  async upgrade(user, name) {
3078
- const url = this.parser.url("/backend/marketplace/app/:user/:name", {
3345
+ const url = this.parser.url("/backend/marketplace/bundle/:user/:name", {
3079
3346
  "user": user,
3080
3347
  "name": name
3081
3348
  });
@@ -3093,13 +3360,13 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client46.TagAbstract
3093
3360
  if (statusCode >= 0 && statusCode <= 999) {
3094
3361
  throw new CommonMessageException(await response.json());
3095
3362
  }
3096
- throw new import_sdkgen_client47.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3363
+ throw new import_sdkgen_client51.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3097
3364
  }
3098
3365
  };
3099
3366
 
3100
3367
  // src/BackendMarketplaceTag.ts
3101
- var import_sdkgen_client48 = require("sdkgen-client");
3102
- var BackendMarketplaceTag = class extends import_sdkgen_client48.TagAbstract {
3368
+ var import_sdkgen_client52 = require("sdkgen-client");
3369
+ var BackendMarketplaceTag = class extends import_sdkgen_client52.TagAbstract {
3103
3370
  action() {
3104
3371
  return new BackendMarketplaceActionTag(
3105
3372
  this.httpClient,
@@ -3112,12 +3379,18 @@ var BackendMarketplaceTag = class extends import_sdkgen_client48.TagAbstract {
3112
3379
  this.parser
3113
3380
  );
3114
3381
  }
3382
+ bundle() {
3383
+ return new BackendMarketplaceBundleTag(
3384
+ this.httpClient,
3385
+ this.parser
3386
+ );
3387
+ }
3115
3388
  };
3116
3389
 
3117
3390
  // src/BackendOperationTag.ts
3118
- var import_sdkgen_client49 = require("sdkgen-client");
3119
- var import_sdkgen_client50 = require("sdkgen-client");
3120
- var BackendOperationTag = class extends import_sdkgen_client49.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 {
3121
3394
  /**
3122
3395
  * Creates a new operation
3123
3396
  *
@@ -3144,7 +3417,7 @@ var BackendOperationTag = class extends import_sdkgen_client49.TagAbstract {
3144
3417
  if (statusCode >= 0 && statusCode <= 999) {
3145
3418
  throw new CommonMessageException(await response.json());
3146
3419
  }
3147
- throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3420
+ throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3148
3421
  }
3149
3422
  /**
3150
3423
  * Deletes an existing operation
@@ -3171,7 +3444,7 @@ var BackendOperationTag = class extends import_sdkgen_client49.TagAbstract {
3171
3444
  if (statusCode >= 0 && statusCode <= 999) {
3172
3445
  throw new CommonMessageException(await response.json());
3173
3446
  }
3174
- throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3447
+ throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3175
3448
  }
3176
3449
  /**
3177
3450
  * Returns a specific operation
@@ -3198,7 +3471,7 @@ var BackendOperationTag = class extends import_sdkgen_client49.TagAbstract {
3198
3471
  if (statusCode >= 0 && statusCode <= 999) {
3199
3472
  throw new CommonMessageException(await response.json());
3200
3473
  }
3201
- throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3474
+ throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3202
3475
  }
3203
3476
  /**
3204
3477
  * Returns a paginated list of operations
@@ -3227,7 +3500,7 @@ var BackendOperationTag = class extends import_sdkgen_client49.TagAbstract {
3227
3500
  if (statusCode >= 0 && statusCode <= 999) {
3228
3501
  throw new CommonMessageException(await response.json());
3229
3502
  }
3230
- throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3503
+ throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3231
3504
  }
3232
3505
  /**
3233
3506
  * Updates an existing operation
@@ -3257,14 +3530,14 @@ var BackendOperationTag = class extends import_sdkgen_client49.TagAbstract {
3257
3530
  if (statusCode >= 0 && statusCode <= 999) {
3258
3531
  throw new CommonMessageException(await response.json());
3259
3532
  }
3260
- throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3533
+ throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3261
3534
  }
3262
3535
  };
3263
3536
 
3264
3537
  // src/BackendPageTag.ts
3265
- var import_sdkgen_client51 = require("sdkgen-client");
3266
- var import_sdkgen_client52 = require("sdkgen-client");
3267
- var BackendPageTag = class extends import_sdkgen_client51.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 {
3268
3541
  /**
3269
3542
  * Creates a new page
3270
3543
  *
@@ -3291,7 +3564,7 @@ var BackendPageTag = class extends import_sdkgen_client51.TagAbstract {
3291
3564
  if (statusCode >= 0 && statusCode <= 999) {
3292
3565
  throw new CommonMessageException(await response.json());
3293
3566
  }
3294
- throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3567
+ throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3295
3568
  }
3296
3569
  /**
3297
3570
  * Deletes an existing page
@@ -3318,7 +3591,7 @@ var BackendPageTag = class extends import_sdkgen_client51.TagAbstract {
3318
3591
  if (statusCode >= 0 && statusCode <= 999) {
3319
3592
  throw new CommonMessageException(await response.json());
3320
3593
  }
3321
- throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3594
+ throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3322
3595
  }
3323
3596
  /**
3324
3597
  * Returns a specific page
@@ -3345,7 +3618,7 @@ var BackendPageTag = class extends import_sdkgen_client51.TagAbstract {
3345
3618
  if (statusCode >= 0 && statusCode <= 999) {
3346
3619
  throw new CommonMessageException(await response.json());
3347
3620
  }
3348
- throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3621
+ throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3349
3622
  }
3350
3623
  /**
3351
3624
  * Returns a paginated list of pages
@@ -3374,7 +3647,7 @@ var BackendPageTag = class extends import_sdkgen_client51.TagAbstract {
3374
3647
  if (statusCode >= 0 && statusCode <= 999) {
3375
3648
  throw new CommonMessageException(await response.json());
3376
3649
  }
3377
- throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3650
+ throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3378
3651
  }
3379
3652
  /**
3380
3653
  * Updates an existing page
@@ -3404,14 +3677,14 @@ var BackendPageTag = class extends import_sdkgen_client51.TagAbstract {
3404
3677
  if (statusCode >= 0 && statusCode <= 999) {
3405
3678
  throw new CommonMessageException(await response.json());
3406
3679
  }
3407
- throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3680
+ throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3408
3681
  }
3409
3682
  };
3410
3683
 
3411
3684
  // src/BackendPlanTag.ts
3412
- var import_sdkgen_client53 = require("sdkgen-client");
3413
- var import_sdkgen_client54 = require("sdkgen-client");
3414
- var BackendPlanTag = class extends import_sdkgen_client53.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 {
3415
3688
  /**
3416
3689
  * Creates a new plan
3417
3690
  *
@@ -3438,7 +3711,7 @@ var BackendPlanTag = class extends import_sdkgen_client53.TagAbstract {
3438
3711
  if (statusCode >= 0 && statusCode <= 999) {
3439
3712
  throw new CommonMessageException(await response.json());
3440
3713
  }
3441
- throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3714
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3442
3715
  }
3443
3716
  /**
3444
3717
  * Deletes an existing plan
@@ -3465,7 +3738,7 @@ var BackendPlanTag = class extends import_sdkgen_client53.TagAbstract {
3465
3738
  if (statusCode >= 0 && statusCode <= 999) {
3466
3739
  throw new CommonMessageException(await response.json());
3467
3740
  }
3468
- throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3741
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3469
3742
  }
3470
3743
  /**
3471
3744
  * Returns a specific plan
@@ -3492,7 +3765,7 @@ var BackendPlanTag = class extends import_sdkgen_client53.TagAbstract {
3492
3765
  if (statusCode >= 0 && statusCode <= 999) {
3493
3766
  throw new CommonMessageException(await response.json());
3494
3767
  }
3495
- throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3768
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3496
3769
  }
3497
3770
  /**
3498
3771
  * Returns a paginated list of plans
@@ -3521,7 +3794,7 @@ var BackendPlanTag = class extends import_sdkgen_client53.TagAbstract {
3521
3794
  if (statusCode >= 0 && statusCode <= 999) {
3522
3795
  throw new CommonMessageException(await response.json());
3523
3796
  }
3524
- throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3797
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3525
3798
  }
3526
3799
  /**
3527
3800
  * Updates an existing plan
@@ -3551,14 +3824,14 @@ var BackendPlanTag = class extends import_sdkgen_client53.TagAbstract {
3551
3824
  if (statusCode >= 0 && statusCode <= 999) {
3552
3825
  throw new CommonMessageException(await response.json());
3553
3826
  }
3554
- throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3827
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3555
3828
  }
3556
3829
  };
3557
3830
 
3558
3831
  // src/BackendRateTag.ts
3559
- var import_sdkgen_client55 = require("sdkgen-client");
3560
- var import_sdkgen_client56 = require("sdkgen-client");
3561
- var BackendRateTag = class extends import_sdkgen_client55.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 {
3562
3835
  /**
3563
3836
  * Creates a new rate limitation
3564
3837
  *
@@ -3585,7 +3858,7 @@ var BackendRateTag = class extends import_sdkgen_client55.TagAbstract {
3585
3858
  if (statusCode >= 0 && statusCode <= 999) {
3586
3859
  throw new CommonMessageException(await response.json());
3587
3860
  }
3588
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3861
+ throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3589
3862
  }
3590
3863
  /**
3591
3864
  * Deletes an existing rate
@@ -3612,7 +3885,7 @@ var BackendRateTag = class extends import_sdkgen_client55.TagAbstract {
3612
3885
  if (statusCode >= 0 && statusCode <= 999) {
3613
3886
  throw new CommonMessageException(await response.json());
3614
3887
  }
3615
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3888
+ throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3616
3889
  }
3617
3890
  /**
3618
3891
  * Returns a specific rate
@@ -3639,7 +3912,7 @@ var BackendRateTag = class extends import_sdkgen_client55.TagAbstract {
3639
3912
  if (statusCode >= 0 && statusCode <= 999) {
3640
3913
  throw new CommonMessageException(await response.json());
3641
3914
  }
3642
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3915
+ throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3643
3916
  }
3644
3917
  /**
3645
3918
  * Returns a paginated list of rate limitations
@@ -3668,7 +3941,7 @@ var BackendRateTag = class extends import_sdkgen_client55.TagAbstract {
3668
3941
  if (statusCode >= 0 && statusCode <= 999) {
3669
3942
  throw new CommonMessageException(await response.json());
3670
3943
  }
3671
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3944
+ throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3672
3945
  }
3673
3946
  /**
3674
3947
  * Updates an existing rate
@@ -3698,14 +3971,14 @@ var BackendRateTag = class extends import_sdkgen_client55.TagAbstract {
3698
3971
  if (statusCode >= 0 && statusCode <= 999) {
3699
3972
  throw new CommonMessageException(await response.json());
3700
3973
  }
3701
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3974
+ throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3702
3975
  }
3703
3976
  };
3704
3977
 
3705
3978
  // src/BackendRoleTag.ts
3706
- var import_sdkgen_client57 = require("sdkgen-client");
3707
- var import_sdkgen_client58 = require("sdkgen-client");
3708
- var BackendRoleTag = class extends import_sdkgen_client57.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 {
3709
3982
  /**
3710
3983
  * Creates a new role
3711
3984
  *
@@ -3732,7 +4005,7 @@ var BackendRoleTag = class extends import_sdkgen_client57.TagAbstract {
3732
4005
  if (statusCode >= 0 && statusCode <= 999) {
3733
4006
  throw new CommonMessageException(await response.json());
3734
4007
  }
3735
- throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4008
+ throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3736
4009
  }
3737
4010
  /**
3738
4011
  * Deletes an existing role
@@ -3759,7 +4032,7 @@ var BackendRoleTag = class extends import_sdkgen_client57.TagAbstract {
3759
4032
  if (statusCode >= 0 && statusCode <= 999) {
3760
4033
  throw new CommonMessageException(await response.json());
3761
4034
  }
3762
- throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4035
+ throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3763
4036
  }
3764
4037
  /**
3765
4038
  * Returns a specific role
@@ -3786,7 +4059,7 @@ var BackendRoleTag = class extends import_sdkgen_client57.TagAbstract {
3786
4059
  if (statusCode >= 0 && statusCode <= 999) {
3787
4060
  throw new CommonMessageException(await response.json());
3788
4061
  }
3789
- throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4062
+ throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3790
4063
  }
3791
4064
  /**
3792
4065
  * Returns a paginated list of roles
@@ -3815,7 +4088,7 @@ var BackendRoleTag = class extends import_sdkgen_client57.TagAbstract {
3815
4088
  if (statusCode >= 0 && statusCode <= 999) {
3816
4089
  throw new CommonMessageException(await response.json());
3817
4090
  }
3818
- throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4091
+ throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3819
4092
  }
3820
4093
  /**
3821
4094
  * Updates an existing role
@@ -3845,14 +4118,14 @@ var BackendRoleTag = class extends import_sdkgen_client57.TagAbstract {
3845
4118
  if (statusCode >= 0 && statusCode <= 999) {
3846
4119
  throw new CommonMessageException(await response.json());
3847
4120
  }
3848
- throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4121
+ throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3849
4122
  }
3850
4123
  };
3851
4124
 
3852
4125
  // src/BackendSchemaTag.ts
3853
- var import_sdkgen_client59 = require("sdkgen-client");
3854
- var import_sdkgen_client60 = require("sdkgen-client");
3855
- var BackendSchemaTag = class extends import_sdkgen_client59.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 {
3856
4129
  /**
3857
4130
  * Creates a new schema
3858
4131
  *
@@ -3879,7 +4152,7 @@ var BackendSchemaTag = class extends import_sdkgen_client59.TagAbstract {
3879
4152
  if (statusCode >= 0 && statusCode <= 999) {
3880
4153
  throw new CommonMessageException(await response.json());
3881
4154
  }
3882
- throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4155
+ throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3883
4156
  }
3884
4157
  /**
3885
4158
  * Deletes an existing schema
@@ -3906,7 +4179,7 @@ var BackendSchemaTag = class extends import_sdkgen_client59.TagAbstract {
3906
4179
  if (statusCode >= 0 && statusCode <= 999) {
3907
4180
  throw new CommonMessageException(await response.json());
3908
4181
  }
3909
- throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4182
+ throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3910
4183
  }
3911
4184
  /**
3912
4185
  * Returns a specific schema
@@ -3933,7 +4206,7 @@ var BackendSchemaTag = class extends import_sdkgen_client59.TagAbstract {
3933
4206
  if (statusCode >= 0 && statusCode <= 999) {
3934
4207
  throw new CommonMessageException(await response.json());
3935
4208
  }
3936
- throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4209
+ throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3937
4210
  }
3938
4211
  /**
3939
4212
  * Returns a paginated list of schemas
@@ -3962,7 +4235,7 @@ var BackendSchemaTag = class extends import_sdkgen_client59.TagAbstract {
3962
4235
  if (statusCode >= 0 && statusCode <= 999) {
3963
4236
  throw new CommonMessageException(await response.json());
3964
4237
  }
3965
- throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4238
+ throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3966
4239
  }
3967
4240
  /**
3968
4241
  * Returns a HTML preview of the provided schema
@@ -3989,7 +4262,7 @@ var BackendSchemaTag = class extends import_sdkgen_client59.TagAbstract {
3989
4262
  if (statusCode >= 0 && statusCode <= 999) {
3990
4263
  throw new CommonMessageException(await response.json());
3991
4264
  }
3992
- throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4265
+ throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3993
4266
  }
3994
4267
  /**
3995
4268
  * Updates an existing schema
@@ -4019,14 +4292,14 @@ var BackendSchemaTag = class extends import_sdkgen_client59.TagAbstract {
4019
4292
  if (statusCode >= 0 && statusCode <= 999) {
4020
4293
  throw new CommonMessageException(await response.json());
4021
4294
  }
4022
- throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4295
+ throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4023
4296
  }
4024
4297
  };
4025
4298
 
4026
4299
  // src/BackendScopeTag.ts
4027
- var import_sdkgen_client61 = require("sdkgen-client");
4028
- var import_sdkgen_client62 = require("sdkgen-client");
4029
- var BackendScopeTag = class extends import_sdkgen_client61.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 {
4030
4303
  /**
4031
4304
  * Creates a new scope
4032
4305
  *
@@ -4053,7 +4326,7 @@ var BackendScopeTag = class extends import_sdkgen_client61.TagAbstract {
4053
4326
  if (statusCode >= 0 && statusCode <= 999) {
4054
4327
  throw new CommonMessageException(await response.json());
4055
4328
  }
4056
- throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4329
+ throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4057
4330
  }
4058
4331
  /**
4059
4332
  * Deletes an existing scope
@@ -4080,7 +4353,7 @@ var BackendScopeTag = class extends import_sdkgen_client61.TagAbstract {
4080
4353
  if (statusCode >= 0 && statusCode <= 999) {
4081
4354
  throw new CommonMessageException(await response.json());
4082
4355
  }
4083
- throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4356
+ throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4084
4357
  }
4085
4358
  /**
4086
4359
  * Returns a specific scope
@@ -4107,7 +4380,7 @@ var BackendScopeTag = class extends import_sdkgen_client61.TagAbstract {
4107
4380
  if (statusCode >= 0 && statusCode <= 999) {
4108
4381
  throw new CommonMessageException(await response.json());
4109
4382
  }
4110
- throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4383
+ throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4111
4384
  }
4112
4385
  /**
4113
4386
  * Returns a paginated list of scopes
@@ -4136,7 +4409,7 @@ var BackendScopeTag = class extends import_sdkgen_client61.TagAbstract {
4136
4409
  if (statusCode >= 0 && statusCode <= 999) {
4137
4410
  throw new CommonMessageException(await response.json());
4138
4411
  }
4139
- throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4412
+ throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4140
4413
  }
4141
4414
  /**
4142
4415
  * Returns all available scopes grouped by category
@@ -4161,7 +4434,7 @@ var BackendScopeTag = class extends import_sdkgen_client61.TagAbstract {
4161
4434
  if (statusCode >= 0 && statusCode <= 999) {
4162
4435
  throw new CommonMessageException(await response.json());
4163
4436
  }
4164
- throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4437
+ throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4165
4438
  }
4166
4439
  /**
4167
4440
  * Updates an existing scope
@@ -4191,14 +4464,14 @@ var BackendScopeTag = class extends import_sdkgen_client61.TagAbstract {
4191
4464
  if (statusCode >= 0 && statusCode <= 999) {
4192
4465
  throw new CommonMessageException(await response.json());
4193
4466
  }
4194
- throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4467
+ throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4195
4468
  }
4196
4469
  };
4197
4470
 
4198
4471
  // src/BackendSdkTag.ts
4199
- var import_sdkgen_client63 = require("sdkgen-client");
4200
- var import_sdkgen_client64 = require("sdkgen-client");
4201
- var BackendSdkTag = class extends import_sdkgen_client63.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 {
4202
4475
  /**
4203
4476
  * Generates a specific SDK
4204
4477
  *
@@ -4225,7 +4498,7 @@ var BackendSdkTag = class extends import_sdkgen_client63.TagAbstract {
4225
4498
  if (statusCode >= 0 && statusCode <= 999) {
4226
4499
  throw new CommonMessageException(await response.json());
4227
4500
  }
4228
- throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4501
+ throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4229
4502
  }
4230
4503
  /**
4231
4504
  * Returns a paginated list of SDKs
@@ -4250,14 +4523,14 @@ var BackendSdkTag = class extends import_sdkgen_client63.TagAbstract {
4250
4523
  if (statusCode >= 0 && statusCode <= 999) {
4251
4524
  throw new CommonMessageException(await response.json());
4252
4525
  }
4253
- throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4526
+ throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4254
4527
  }
4255
4528
  };
4256
4529
 
4257
4530
  // src/BackendStatisticTag.ts
4258
- var import_sdkgen_client65 = require("sdkgen-client");
4259
- var import_sdkgen_client66 = require("sdkgen-client");
4260
- var BackendStatisticTag = class extends import_sdkgen_client65.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 {
4261
4534
  /**
4262
4535
  * Returns a statistic containing the activities per user
4263
4536
  *
@@ -4296,7 +4569,7 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4296
4569
  if (statusCode >= 0 && statusCode <= 999) {
4297
4570
  throw new CommonMessageException(await response.json());
4298
4571
  }
4299
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4572
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4300
4573
  }
4301
4574
  /**
4302
4575
  * Returns a statistic containing the request count
@@ -4336,7 +4609,7 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4336
4609
  if (statusCode >= 0 && statusCode <= 999) {
4337
4610
  throw new CommonMessageException(await response.json());
4338
4611
  }
4339
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4612
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4340
4613
  }
4341
4614
  /**
4342
4615
  * Returns a statistic containing the errors per operation
@@ -4376,7 +4649,7 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4376
4649
  if (statusCode >= 0 && statusCode <= 999) {
4377
4650
  throw new CommonMessageException(await response.json());
4378
4651
  }
4379
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4652
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4380
4653
  }
4381
4654
  /**
4382
4655
  * Returns a statistic containing the incoming requests
@@ -4416,7 +4689,7 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4416
4689
  if (statusCode >= 0 && statusCode <= 999) {
4417
4690
  throw new CommonMessageException(await response.json());
4418
4691
  }
4419
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4692
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4420
4693
  }
4421
4694
  /**
4422
4695
  * Returns a statistic containing the incoming transactions
@@ -4456,7 +4729,7 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4456
4729
  if (statusCode >= 0 && statusCode <= 999) {
4457
4730
  throw new CommonMessageException(await response.json());
4458
4731
  }
4459
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4732
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4460
4733
  }
4461
4734
  /**
4462
4735
  * Returns a statistic containing the issues tokens
@@ -4496,7 +4769,7 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4496
4769
  if (statusCode >= 0 && statusCode <= 999) {
4497
4770
  throw new CommonMessageException(await response.json());
4498
4771
  }
4499
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4772
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4500
4773
  }
4501
4774
  /**
4502
4775
  * Returns a statistic containing the most used activities
@@ -4505,8 +4778,128 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4505
4778
  * @throws {CommonMessageException}
4506
4779
  * @throws {ClientException}
4507
4780
  */
4508
- async getMostUsedActivities(startIndex, count, search, from, to, operationId, appId, userId, ip, userAgent, method, path, header, body) {
4509
- const url = this.parser.url("/backend/statistic/most_used_activities", {});
4781
+ async getMostUsedActivities(startIndex, count, search, from, to, operationId, appId, userId, ip, userAgent, method, path, header, body) {
4782
+ const url = this.parser.url("/backend/statistic/most_used_activities", {});
4783
+ let request = {
4784
+ url,
4785
+ method: "GET",
4786
+ headers: {},
4787
+ params: this.parser.query({
4788
+ "startIndex": startIndex,
4789
+ "count": count,
4790
+ "search": search,
4791
+ "from": from,
4792
+ "to": to,
4793
+ "operationId": operationId,
4794
+ "appId": appId,
4795
+ "userId": userId,
4796
+ "ip": ip,
4797
+ "userAgent": userAgent,
4798
+ "method": method,
4799
+ "path": path,
4800
+ "header": header,
4801
+ "body": body
4802
+ }, [])
4803
+ };
4804
+ const response = await this.httpClient.request(request);
4805
+ if (response.ok) {
4806
+ return await response.json();
4807
+ }
4808
+ const statusCode = response.status;
4809
+ if (statusCode >= 0 && statusCode <= 999) {
4810
+ throw new CommonMessageException(await response.json());
4811
+ }
4812
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4813
+ }
4814
+ /**
4815
+ * Returns a statistic containing the most used apps
4816
+ *
4817
+ * @returns {Promise<BackendStatisticChart>}
4818
+ * @throws {CommonMessageException}
4819
+ * @throws {ClientException}
4820
+ */
4821
+ async getMostUsedApps(startIndex, count, search, from, to, operationId, appId, userId, ip, userAgent, method, path, header, body) {
4822
+ const url = this.parser.url("/backend/statistic/most_used_apps", {});
4823
+ let request = {
4824
+ url,
4825
+ method: "GET",
4826
+ headers: {},
4827
+ params: this.parser.query({
4828
+ "startIndex": startIndex,
4829
+ "count": count,
4830
+ "search": search,
4831
+ "from": from,
4832
+ "to": to,
4833
+ "operationId": operationId,
4834
+ "appId": appId,
4835
+ "userId": userId,
4836
+ "ip": ip,
4837
+ "userAgent": userAgent,
4838
+ "method": method,
4839
+ "path": path,
4840
+ "header": header,
4841
+ "body": body
4842
+ }, [])
4843
+ };
4844
+ const response = await this.httpClient.request(request);
4845
+ if (response.ok) {
4846
+ return await response.json();
4847
+ }
4848
+ const statusCode = response.status;
4849
+ if (statusCode >= 0 && statusCode <= 999) {
4850
+ throw new CommonMessageException(await response.json());
4851
+ }
4852
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4853
+ }
4854
+ /**
4855
+ * Returns a statistic containing the most used operations
4856
+ *
4857
+ * @returns {Promise<BackendStatisticChart>}
4858
+ * @throws {CommonMessageException}
4859
+ * @throws {ClientException}
4860
+ */
4861
+ async getMostUsedOperations(startIndex, count, search, from, to, operationId, appId, userId, ip, userAgent, method, path, header, body) {
4862
+ const url = this.parser.url("/backend/statistic/most_used_operations", {});
4863
+ let request = {
4864
+ url,
4865
+ method: "GET",
4866
+ headers: {},
4867
+ params: this.parser.query({
4868
+ "startIndex": startIndex,
4869
+ "count": count,
4870
+ "search": search,
4871
+ "from": from,
4872
+ "to": to,
4873
+ "operationId": operationId,
4874
+ "appId": appId,
4875
+ "userId": userId,
4876
+ "ip": ip,
4877
+ "userAgent": userAgent,
4878
+ "method": method,
4879
+ "path": path,
4880
+ "header": header,
4881
+ "body": body
4882
+ }, [])
4883
+ };
4884
+ const response = await this.httpClient.request(request);
4885
+ if (response.ok) {
4886
+ return await response.json();
4887
+ }
4888
+ const statusCode = response.status;
4889
+ if (statusCode >= 0 && statusCode <= 999) {
4890
+ throw new CommonMessageException(await response.json());
4891
+ }
4892
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4893
+ }
4894
+ /**
4895
+ * Returns a statistic containing the requests per ip
4896
+ *
4897
+ * @returns {Promise<BackendStatisticChart>}
4898
+ * @throws {CommonMessageException}
4899
+ * @throws {ClientException}
4900
+ */
4901
+ async getRequestsPerIP(startIndex, count, search, from, to, operationId, appId, userId, ip, userAgent, method, path, header, body) {
4902
+ const url = this.parser.url("/backend/statistic/requests_per_ip", {});
4510
4903
  let request = {
4511
4904
  url,
4512
4905
  method: "GET",
@@ -4536,17 +4929,17 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4536
4929
  if (statusCode >= 0 && statusCode <= 999) {
4537
4930
  throw new CommonMessageException(await response.json());
4538
4931
  }
4539
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4932
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4540
4933
  }
4541
4934
  /**
4542
- * Returns a statistic containing the most used apps
4935
+ * Returns a statistic containing the requests per operation
4543
4936
  *
4544
4937
  * @returns {Promise<BackendStatisticChart>}
4545
4938
  * @throws {CommonMessageException}
4546
4939
  * @throws {ClientException}
4547
4940
  */
4548
- async getMostUsedApps(startIndex, count, search, from, to, operationId, appId, userId, ip, userAgent, method, path, header, body) {
4549
- const url = this.parser.url("/backend/statistic/most_used_apps", {});
4941
+ async getRequestsPerOperation(startIndex, count, search, from, to, operationId, appId, userId, ip, userAgent, method, path, header, body) {
4942
+ const url = this.parser.url("/backend/statistic/requests_per_operation", {});
4550
4943
  let request = {
4551
4944
  url,
4552
4945
  method: "GET",
@@ -4576,17 +4969,17 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4576
4969
  if (statusCode >= 0 && statusCode <= 999) {
4577
4970
  throw new CommonMessageException(await response.json());
4578
4971
  }
4579
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4972
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4580
4973
  }
4581
4974
  /**
4582
- * Returns a statistic containing the most used operations
4975
+ * Returns a statistic containing the requests per user
4583
4976
  *
4584
4977
  * @returns {Promise<BackendStatisticChart>}
4585
4978
  * @throws {CommonMessageException}
4586
4979
  * @throws {ClientException}
4587
4980
  */
4588
- async getMostUsedOperations(startIndex, count, search, from, to, operationId, appId, userId, ip, userAgent, method, path, header, body) {
4589
- const url = this.parser.url("/backend/statistic/most_used_operations", {});
4981
+ async getRequestsPerUser(startIndex, count, search, from, to, operationId, appId, userId, ip, userAgent, method, path, header, body) {
4982
+ const url = this.parser.url("/backend/statistic/requests_per_user", {});
4590
4983
  let request = {
4591
4984
  url,
4592
4985
  method: "GET",
@@ -4616,7 +5009,7 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4616
5009
  if (statusCode >= 0 && statusCode <= 999) {
4617
5010
  throw new CommonMessageException(await response.json());
4618
5011
  }
4619
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5012
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4620
5013
  }
4621
5014
  /**
4622
5015
  * Returns a statistic containing the test coverage
@@ -4641,7 +5034,7 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4641
5034
  if (statusCode >= 0 && statusCode <= 999) {
4642
5035
  throw new CommonMessageException(await response.json());
4643
5036
  }
4644
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5037
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4645
5038
  }
4646
5039
  /**
4647
5040
  * Returns a statistic containing the time average
@@ -4681,7 +5074,7 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4681
5074
  if (statusCode >= 0 && statusCode <= 999) {
4682
5075
  throw new CommonMessageException(await response.json());
4683
5076
  }
4684
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5077
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4685
5078
  }
4686
5079
  /**
4687
5080
  * Returns a statistic containing the time per operation
@@ -4721,7 +5114,7 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4721
5114
  if (statusCode >= 0 && statusCode <= 999) {
4722
5115
  throw new CommonMessageException(await response.json());
4723
5116
  }
4724
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5117
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4725
5118
  }
4726
5119
  /**
4727
5120
  * Returns a statistic containing the used points
@@ -4761,7 +5154,7 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4761
5154
  if (statusCode >= 0 && statusCode <= 999) {
4762
5155
  throw new CommonMessageException(await response.json());
4763
5156
  }
4764
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5157
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4765
5158
  }
4766
5159
  /**
4767
5160
  * Returns a statistic containing the user registrations
@@ -4801,17 +5194,17 @@ var BackendStatisticTag = class extends import_sdkgen_client65.TagAbstract {
4801
5194
  if (statusCode >= 0 && statusCode <= 999) {
4802
5195
  throw new CommonMessageException(await response.json());
4803
5196
  }
4804
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5197
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4805
5198
  }
4806
5199
  };
4807
5200
 
4808
5201
  // src/BackendTag.ts
4809
- var import_sdkgen_client83 = require("sdkgen-client");
5202
+ var import_sdkgen_client87 = require("sdkgen-client");
4810
5203
 
4811
5204
  // src/BackendTenantTag.ts
4812
- var import_sdkgen_client67 = require("sdkgen-client");
4813
- var import_sdkgen_client68 = require("sdkgen-client");
4814
- var BackendTenantTag = class extends import_sdkgen_client67.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 {
4815
5208
  /**
4816
5209
  * Removes an existing tenant
4817
5210
  *
@@ -4837,7 +5230,7 @@ var BackendTenantTag = class extends import_sdkgen_client67.TagAbstract {
4837
5230
  if (statusCode >= 0 && statusCode <= 999) {
4838
5231
  throw new CommonMessageException(await response.json());
4839
5232
  }
4840
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5233
+ throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4841
5234
  }
4842
5235
  /**
4843
5236
  * Setup a new tenant
@@ -4864,14 +5257,14 @@ var BackendTenantTag = class extends import_sdkgen_client67.TagAbstract {
4864
5257
  if (statusCode >= 0 && statusCode <= 999) {
4865
5258
  throw new CommonMessageException(await response.json());
4866
5259
  }
4867
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5260
+ throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4868
5261
  }
4869
5262
  };
4870
5263
 
4871
5264
  // src/BackendTestTag.ts
4872
- var import_sdkgen_client69 = require("sdkgen-client");
4873
- var import_sdkgen_client70 = require("sdkgen-client");
4874
- var BackendTestTag = class extends import_sdkgen_client69.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 {
4875
5268
  /**
4876
5269
  * Returns a specific test
4877
5270
  *
@@ -4897,7 +5290,7 @@ var BackendTestTag = class extends import_sdkgen_client69.TagAbstract {
4897
5290
  if (statusCode >= 0 && statusCode <= 999) {
4898
5291
  throw new CommonMessageException(await response.json());
4899
5292
  }
4900
- throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5293
+ throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4901
5294
  }
4902
5295
  /**
4903
5296
  * Returns a paginated list of tests
@@ -4926,7 +5319,7 @@ var BackendTestTag = class extends import_sdkgen_client69.TagAbstract {
4926
5319
  if (statusCode >= 0 && statusCode <= 999) {
4927
5320
  throw new CommonMessageException(await response.json());
4928
5321
  }
4929
- throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5322
+ throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4930
5323
  }
4931
5324
  /**
4932
5325
  * Refresh all tests
@@ -4951,7 +5344,7 @@ var BackendTestTag = class extends import_sdkgen_client69.TagAbstract {
4951
5344
  if (statusCode >= 0 && statusCode <= 999) {
4952
5345
  throw new CommonMessageException(await response.json());
4953
5346
  }
4954
- throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5347
+ throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4955
5348
  }
4956
5349
  /**
4957
5350
  * Run all tests
@@ -4976,7 +5369,7 @@ var BackendTestTag = class extends import_sdkgen_client69.TagAbstract {
4976
5369
  if (statusCode >= 0 && statusCode <= 999) {
4977
5370
  throw new CommonMessageException(await response.json());
4978
5371
  }
4979
- throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5372
+ throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4980
5373
  }
4981
5374
  /**
4982
5375
  * Updates an existing test
@@ -5006,14 +5399,14 @@ var BackendTestTag = class extends import_sdkgen_client69.TagAbstract {
5006
5399
  if (statusCode >= 0 && statusCode <= 999) {
5007
5400
  throw new CommonMessageException(await response.json());
5008
5401
  }
5009
- throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5402
+ throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5010
5403
  }
5011
5404
  };
5012
5405
 
5013
5406
  // src/BackendTokenTag.ts
5014
- var import_sdkgen_client71 = require("sdkgen-client");
5015
- var import_sdkgen_client72 = require("sdkgen-client");
5016
- var BackendTokenTag = class extends import_sdkgen_client71.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 {
5017
5410
  /**
5018
5411
  * Returns a specific token
5019
5412
  *
@@ -5039,7 +5432,7 @@ var BackendTokenTag = class extends import_sdkgen_client71.TagAbstract {
5039
5432
  if (statusCode >= 0 && statusCode <= 999) {
5040
5433
  throw new CommonMessageException(await response.json());
5041
5434
  }
5042
- throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5435
+ throw new import_sdkgen_client76.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5043
5436
  }
5044
5437
  /**
5045
5438
  * Returns a paginated list of tokens
@@ -5075,14 +5468,14 @@ var BackendTokenTag = class extends import_sdkgen_client71.TagAbstract {
5075
5468
  if (statusCode >= 0 && statusCode <= 999) {
5076
5469
  throw new CommonMessageException(await response.json());
5077
5470
  }
5078
- throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5471
+ throw new import_sdkgen_client76.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5079
5472
  }
5080
5473
  };
5081
5474
 
5082
5475
  // src/BackendTransactionTag.ts
5083
- var import_sdkgen_client73 = require("sdkgen-client");
5084
- var import_sdkgen_client74 = require("sdkgen-client");
5085
- var BackendTransactionTag = class extends import_sdkgen_client73.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 {
5086
5479
  /**
5087
5480
  * Returns a specific transaction
5088
5481
  *
@@ -5108,7 +5501,7 @@ var BackendTransactionTag = class extends import_sdkgen_client73.TagAbstract {
5108
5501
  if (statusCode >= 0 && statusCode <= 999) {
5109
5502
  throw new CommonMessageException(await response.json());
5110
5503
  }
5111
- throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5504
+ throw new import_sdkgen_client78.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5112
5505
  }
5113
5506
  /**
5114
5507
  * Returns a paginated list of transactions
@@ -5144,14 +5537,14 @@ var BackendTransactionTag = class extends import_sdkgen_client73.TagAbstract {
5144
5537
  if (statusCode >= 0 && statusCode <= 999) {
5145
5538
  throw new CommonMessageException(await response.json());
5146
5539
  }
5147
- throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5540
+ throw new import_sdkgen_client78.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5148
5541
  }
5149
5542
  };
5150
5543
 
5151
5544
  // src/BackendTrashTag.ts
5152
- var import_sdkgen_client75 = require("sdkgen-client");
5153
- var import_sdkgen_client76 = require("sdkgen-client");
5154
- var BackendTrashTag = class extends import_sdkgen_client75.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 {
5155
5548
  /**
5156
5549
  * Returns all deleted records by trash type
5157
5550
  *
@@ -5181,7 +5574,7 @@ var BackendTrashTag = class extends import_sdkgen_client75.TagAbstract {
5181
5574
  if (statusCode >= 0 && statusCode <= 999) {
5182
5575
  throw new CommonMessageException(await response.json());
5183
5576
  }
5184
- throw new import_sdkgen_client76.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5577
+ throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5185
5578
  }
5186
5579
  /**
5187
5580
  * Returns all trash types
@@ -5206,7 +5599,7 @@ var BackendTrashTag = class extends import_sdkgen_client75.TagAbstract {
5206
5599
  if (statusCode >= 0 && statusCode <= 999) {
5207
5600
  throw new CommonMessageException(await response.json());
5208
5601
  }
5209
- throw new import_sdkgen_client76.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5602
+ throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5210
5603
  }
5211
5604
  /**
5212
5605
  * Restores a previously deleted record
@@ -5236,14 +5629,14 @@ var BackendTrashTag = class extends import_sdkgen_client75.TagAbstract {
5236
5629
  if (statusCode >= 0 && statusCode <= 999) {
5237
5630
  throw new CommonMessageException(await response.json());
5238
5631
  }
5239
- throw new import_sdkgen_client76.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5632
+ throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5240
5633
  }
5241
5634
  };
5242
5635
 
5243
5636
  // src/BackendTriggerTag.ts
5244
- var import_sdkgen_client77 = require("sdkgen-client");
5245
- var import_sdkgen_client78 = require("sdkgen-client");
5246
- var BackendTriggerTag = class extends import_sdkgen_client77.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 {
5247
5640
  /**
5248
5641
  * Creates a new trigger
5249
5642
  *
@@ -5270,7 +5663,7 @@ var BackendTriggerTag = class extends import_sdkgen_client77.TagAbstract {
5270
5663
  if (statusCode >= 0 && statusCode <= 999) {
5271
5664
  throw new CommonMessageException(await response.json());
5272
5665
  }
5273
- throw new import_sdkgen_client78.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5666
+ throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5274
5667
  }
5275
5668
  /**
5276
5669
  * Deletes an existing trigger
@@ -5297,7 +5690,7 @@ var BackendTriggerTag = class extends import_sdkgen_client77.TagAbstract {
5297
5690
  if (statusCode >= 0 && statusCode <= 999) {
5298
5691
  throw new CommonMessageException(await response.json());
5299
5692
  }
5300
- throw new import_sdkgen_client78.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5693
+ throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5301
5694
  }
5302
5695
  /**
5303
5696
  * Returns a specific trigger
@@ -5324,7 +5717,7 @@ var BackendTriggerTag = class extends import_sdkgen_client77.TagAbstract {
5324
5717
  if (statusCode >= 0 && statusCode <= 999) {
5325
5718
  throw new CommonMessageException(await response.json());
5326
5719
  }
5327
- throw new import_sdkgen_client78.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5720
+ throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5328
5721
  }
5329
5722
  /**
5330
5723
  * Returns a paginated list of triggers
@@ -5353,7 +5746,7 @@ var BackendTriggerTag = class extends import_sdkgen_client77.TagAbstract {
5353
5746
  if (statusCode >= 0 && statusCode <= 999) {
5354
5747
  throw new CommonMessageException(await response.json());
5355
5748
  }
5356
- throw new import_sdkgen_client78.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5749
+ throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5357
5750
  }
5358
5751
  /**
5359
5752
  * Updates an existing trigger
@@ -5383,14 +5776,14 @@ var BackendTriggerTag = class extends import_sdkgen_client77.TagAbstract {
5383
5776
  if (statusCode >= 0 && statusCode <= 999) {
5384
5777
  throw new CommonMessageException(await response.json());
5385
5778
  }
5386
- throw new import_sdkgen_client78.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5779
+ throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5387
5780
  }
5388
5781
  };
5389
5782
 
5390
5783
  // src/BackendUserTag.ts
5391
- var import_sdkgen_client79 = require("sdkgen-client");
5392
- var import_sdkgen_client80 = require("sdkgen-client");
5393
- var BackendUserTag = class extends import_sdkgen_client79.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 {
5394
5787
  /**
5395
5788
  * Creates a new user
5396
5789
  *
@@ -5417,7 +5810,7 @@ var BackendUserTag = class extends import_sdkgen_client79.TagAbstract {
5417
5810
  if (statusCode >= 0 && statusCode <= 999) {
5418
5811
  throw new CommonMessageException(await response.json());
5419
5812
  }
5420
- throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5813
+ throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5421
5814
  }
5422
5815
  /**
5423
5816
  * Deletes an existing user
@@ -5444,7 +5837,7 @@ var BackendUserTag = class extends import_sdkgen_client79.TagAbstract {
5444
5837
  if (statusCode >= 0 && statusCode <= 999) {
5445
5838
  throw new CommonMessageException(await response.json());
5446
5839
  }
5447
- throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5840
+ throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5448
5841
  }
5449
5842
  /**
5450
5843
  * Returns a specific user
@@ -5471,7 +5864,7 @@ var BackendUserTag = class extends import_sdkgen_client79.TagAbstract {
5471
5864
  if (statusCode >= 0 && statusCode <= 999) {
5472
5865
  throw new CommonMessageException(await response.json());
5473
5866
  }
5474
- throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5867
+ throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5475
5868
  }
5476
5869
  /**
5477
5870
  * Returns a paginated list of users
@@ -5500,7 +5893,7 @@ var BackendUserTag = class extends import_sdkgen_client79.TagAbstract {
5500
5893
  if (statusCode >= 0 && statusCode <= 999) {
5501
5894
  throw new CommonMessageException(await response.json());
5502
5895
  }
5503
- throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5896
+ throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5504
5897
  }
5505
5898
  /**
5506
5899
  * Resend the activation mail to the provided user
@@ -5530,7 +5923,7 @@ var BackendUserTag = class extends import_sdkgen_client79.TagAbstract {
5530
5923
  if (statusCode >= 0 && statusCode <= 999) {
5531
5924
  throw new CommonMessageException(await response.json());
5532
5925
  }
5533
- throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5926
+ throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5534
5927
  }
5535
5928
  /**
5536
5929
  * Updates an existing user
@@ -5560,14 +5953,14 @@ var BackendUserTag = class extends import_sdkgen_client79.TagAbstract {
5560
5953
  if (statusCode >= 0 && statusCode <= 999) {
5561
5954
  throw new CommonMessageException(await response.json());
5562
5955
  }
5563
- throw new import_sdkgen_client80.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5956
+ throw new import_sdkgen_client84.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5564
5957
  }
5565
5958
  };
5566
5959
 
5567
5960
  // src/BackendWebhookTag.ts
5568
- var import_sdkgen_client81 = require("sdkgen-client");
5569
- var import_sdkgen_client82 = require("sdkgen-client");
5570
- var BackendWebhookTag = class extends import_sdkgen_client81.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 {
5571
5964
  /**
5572
5965
  * Creates a new webhook
5573
5966
  *
@@ -5594,7 +5987,7 @@ var BackendWebhookTag = class extends import_sdkgen_client81.TagAbstract {
5594
5987
  if (statusCode >= 0 && statusCode <= 999) {
5595
5988
  throw new CommonMessageException(await response.json());
5596
5989
  }
5597
- throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5990
+ throw new import_sdkgen_client86.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5598
5991
  }
5599
5992
  /**
5600
5993
  * Deletes an existing webhook
@@ -5621,7 +6014,7 @@ var BackendWebhookTag = class extends import_sdkgen_client81.TagAbstract {
5621
6014
  if (statusCode >= 0 && statusCode <= 999) {
5622
6015
  throw new CommonMessageException(await response.json());
5623
6016
  }
5624
- throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6017
+ throw new import_sdkgen_client86.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5625
6018
  }
5626
6019
  /**
5627
6020
  * Returns a specific webhook
@@ -5648,7 +6041,7 @@ var BackendWebhookTag = class extends import_sdkgen_client81.TagAbstract {
5648
6041
  if (statusCode >= 0 && statusCode <= 999) {
5649
6042
  throw new CommonMessageException(await response.json());
5650
6043
  }
5651
- throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6044
+ throw new import_sdkgen_client86.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5652
6045
  }
5653
6046
  /**
5654
6047
  * Returns a paginated list of webhooks
@@ -5677,7 +6070,7 @@ var BackendWebhookTag = class extends import_sdkgen_client81.TagAbstract {
5677
6070
  if (statusCode >= 0 && statusCode <= 999) {
5678
6071
  throw new CommonMessageException(await response.json());
5679
6072
  }
5680
- throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6073
+ throw new import_sdkgen_client86.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5681
6074
  }
5682
6075
  /**
5683
6076
  * Updates an existing webhook
@@ -5707,12 +6100,12 @@ var BackendWebhookTag = class extends import_sdkgen_client81.TagAbstract {
5707
6100
  if (statusCode >= 0 && statusCode <= 999) {
5708
6101
  throw new CommonMessageException(await response.json());
5709
6102
  }
5710
- throw new import_sdkgen_client82.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6103
+ throw new import_sdkgen_client86.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5711
6104
  }
5712
6105
  };
5713
6106
 
5714
6107
  // src/BackendTag.ts
5715
- var BackendTag = class extends import_sdkgen_client83.TagAbstract {
6108
+ var BackendTag = class extends import_sdkgen_client87.TagAbstract {
5716
6109
  account() {
5717
6110
  return new BackendAccountTag(
5718
6111
  this.httpClient,
@@ -5743,6 +6136,12 @@ var BackendTag = class extends import_sdkgen_client83.TagAbstract {
5743
6136
  this.parser
5744
6137
  );
5745
6138
  }
6139
+ bundle() {
6140
+ return new BackendBundleTag(
6141
+ this.httpClient,
6142
+ this.parser
6143
+ );
6144
+ }
5746
6145
  category() {
5747
6146
  return new BackendCategoryTag(
5748
6147
  this.httpClient,
@@ -5920,16 +6319,16 @@ var BackendTag = class extends import_sdkgen_client83.TagAbstract {
5920
6319
  };
5921
6320
 
5922
6321
  // src/Client.ts
5923
- var import_sdkgen_client120 = require("sdkgen-client");
5924
- var import_sdkgen_client121 = require("sdkgen-client");
6322
+ var import_sdkgen_client124 = require("sdkgen-client");
6323
+ var import_sdkgen_client125 = require("sdkgen-client");
5925
6324
 
5926
6325
  // src/ConsumerTag.ts
5927
- var import_sdkgen_client112 = require("sdkgen-client");
6326
+ var import_sdkgen_client116 = require("sdkgen-client");
5928
6327
 
5929
6328
  // src/ConsumerAccountTag.ts
5930
- var import_sdkgen_client84 = require("sdkgen-client");
5931
- var import_sdkgen_client85 = require("sdkgen-client");
5932
- var ConsumerAccountTag = class extends import_sdkgen_client84.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 {
5933
6332
  /**
5934
6333
  * Activates an previously registered account through a token which was provided to the user via email
5935
6334
  *
@@ -5956,7 +6355,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client84.TagAbstract {
5956
6355
  if (statusCode >= 0 && statusCode <= 999) {
5957
6356
  throw new CommonMessageException(await response.json());
5958
6357
  }
5959
- throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6358
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5960
6359
  }
5961
6360
  /**
5962
6361
  * Authorizes the access of a specific app for the authenticated user
@@ -5984,7 +6383,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client84.TagAbstract {
5984
6383
  if (statusCode >= 0 && statusCode <= 999) {
5985
6384
  throw new CommonMessageException(await response.json());
5986
6385
  }
5987
- throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6386
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5988
6387
  }
5989
6388
  /**
5990
6389
  * Change the password for the authenticated user
@@ -6012,7 +6411,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client84.TagAbstract {
6012
6411
  if (statusCode >= 0 && statusCode <= 999) {
6013
6412
  throw new CommonMessageException(await response.json());
6014
6413
  }
6015
- throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6414
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6016
6415
  }
6017
6416
  /**
6018
6417
  * Change the password after the password reset flow was started
@@ -6040,7 +6439,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client84.TagAbstract {
6040
6439
  if (statusCode >= 0 && statusCode <= 999) {
6041
6440
  throw new CommonMessageException(await response.json());
6042
6441
  }
6043
- throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6442
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6044
6443
  }
6045
6444
  /**
6046
6445
  * Returns a user data for the authenticated user
@@ -6065,7 +6464,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client84.TagAbstract {
6065
6464
  if (statusCode >= 0 && statusCode <= 999) {
6066
6465
  throw new CommonMessageException(await response.json());
6067
6466
  }
6068
- throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6467
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6069
6468
  }
6070
6469
  /**
6071
6470
  * Returns information about a specific app to start the OAuth2 authorization code flow
@@ -6093,7 +6492,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client84.TagAbstract {
6093
6492
  if (statusCode >= 0 && statusCode <= 999) {
6094
6493
  throw new CommonMessageException(await response.json());
6095
6494
  }
6096
- throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6495
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6097
6496
  }
6098
6497
  /**
6099
6498
  * User login by providing a username and password
@@ -6121,7 +6520,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client84.TagAbstract {
6121
6520
  if (statusCode >= 0 && statusCode <= 999) {
6122
6521
  throw new CommonMessageException(await response.json());
6123
6522
  }
6124
- throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6523
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6125
6524
  }
6126
6525
  /**
6127
6526
  * Refresh a previously obtained access token
@@ -6149,7 +6548,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client84.TagAbstract {
6149
6548
  if (statusCode >= 0 && statusCode <= 999) {
6150
6549
  throw new CommonMessageException(await response.json());
6151
6550
  }
6152
- throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6551
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6153
6552
  }
6154
6553
  /**
6155
6554
  * Register a new user account
@@ -6177,7 +6576,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client84.TagAbstract {
6177
6576
  if (statusCode >= 0 && statusCode <= 999) {
6178
6577
  throw new CommonMessageException(await response.json());
6179
6578
  }
6180
- throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6579
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6181
6580
  }
6182
6581
  /**
6183
6582
  * Start the password reset flow
@@ -6205,7 +6604,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client84.TagAbstract {
6205
6604
  if (statusCode >= 0 && statusCode <= 999) {
6206
6605
  throw new CommonMessageException(await response.json());
6207
6606
  }
6208
- throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6607
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6209
6608
  }
6210
6609
  /**
6211
6610
  * Updates user data for the authenticated user
@@ -6233,14 +6632,14 @@ var ConsumerAccountTag = class extends import_sdkgen_client84.TagAbstract {
6233
6632
  if (statusCode >= 0 && statusCode <= 999) {
6234
6633
  throw new CommonMessageException(await response.json());
6235
6634
  }
6236
- throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6635
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6237
6636
  }
6238
6637
  };
6239
6638
 
6240
6639
  // src/ConsumerAppTag.ts
6241
- var import_sdkgen_client86 = require("sdkgen-client");
6242
- var import_sdkgen_client87 = require("sdkgen-client");
6243
- var ConsumerAppTag = class extends import_sdkgen_client86.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 {
6244
6643
  /**
6245
6644
  * Creates a new app for the authenticated user
6246
6645
  *
@@ -6267,7 +6666,7 @@ var ConsumerAppTag = class extends import_sdkgen_client86.TagAbstract {
6267
6666
  if (statusCode >= 0 && statusCode <= 999) {
6268
6667
  throw new CommonMessageException(await response.json());
6269
6668
  }
6270
- throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6669
+ throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6271
6670
  }
6272
6671
  /**
6273
6672
  * Deletes an existing app for the authenticated user
@@ -6294,7 +6693,7 @@ var ConsumerAppTag = class extends import_sdkgen_client86.TagAbstract {
6294
6693
  if (statusCode >= 0 && statusCode <= 999) {
6295
6694
  throw new CommonMessageException(await response.json());
6296
6695
  }
6297
- throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6696
+ throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6298
6697
  }
6299
6698
  /**
6300
6699
  * Returns a specific app for the authenticated user
@@ -6321,7 +6720,7 @@ var ConsumerAppTag = class extends import_sdkgen_client86.TagAbstract {
6321
6720
  if (statusCode >= 0 && statusCode <= 999) {
6322
6721
  throw new CommonMessageException(await response.json());
6323
6722
  }
6324
- throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6723
+ throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6325
6724
  }
6326
6725
  /**
6327
6726
  * Returns a paginated list of apps which are assigned to the authenticated user
@@ -6350,7 +6749,7 @@ var ConsumerAppTag = class extends import_sdkgen_client86.TagAbstract {
6350
6749
  if (statusCode >= 0 && statusCode <= 999) {
6351
6750
  throw new CommonMessageException(await response.json());
6352
6751
  }
6353
- throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6752
+ throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6354
6753
  }
6355
6754
  /**
6356
6755
  * Updates an existing app for the authenticated user
@@ -6380,14 +6779,14 @@ var ConsumerAppTag = class extends import_sdkgen_client86.TagAbstract {
6380
6779
  if (statusCode >= 0 && statusCode <= 999) {
6381
6780
  throw new CommonMessageException(await response.json());
6382
6781
  }
6383
- throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6782
+ throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6384
6783
  }
6385
6784
  };
6386
6785
 
6387
6786
  // src/ConsumerEventTag.ts
6388
- var import_sdkgen_client88 = require("sdkgen-client");
6389
- var import_sdkgen_client89 = require("sdkgen-client");
6390
- var ConsumerEventTag = class extends import_sdkgen_client88.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 {
6391
6790
  /**
6392
6791
  * Returns a specific event for the authenticated user
6393
6792
  *
@@ -6413,7 +6812,7 @@ var ConsumerEventTag = class extends import_sdkgen_client88.TagAbstract {
6413
6812
  if (statusCode >= 0 && statusCode <= 999) {
6414
6813
  throw new CommonMessageException(await response.json());
6415
6814
  }
6416
- throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6815
+ throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6417
6816
  }
6418
6817
  /**
6419
6818
  * Returns a paginated list of apps which are assigned to the authenticated user
@@ -6442,14 +6841,14 @@ var ConsumerEventTag = class extends import_sdkgen_client88.TagAbstract {
6442
6841
  if (statusCode >= 0 && statusCode <= 999) {
6443
6842
  throw new CommonMessageException(await response.json());
6444
6843
  }
6445
- throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6844
+ throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6446
6845
  }
6447
6846
  };
6448
6847
 
6449
6848
  // src/ConsumerFormTag.ts
6450
- var import_sdkgen_client90 = require("sdkgen-client");
6451
- var import_sdkgen_client91 = require("sdkgen-client");
6452
- var ConsumerFormTag = class extends import_sdkgen_client90.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 {
6453
6852
  /**
6454
6853
  * Returns a specific form for the authenticated user
6455
6854
  *
@@ -6475,7 +6874,7 @@ var ConsumerFormTag = class extends import_sdkgen_client90.TagAbstract {
6475
6874
  if (statusCode >= 0 && statusCode <= 999) {
6476
6875
  throw new CommonMessageException(await response.json());
6477
6876
  }
6478
- throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6877
+ throw new import_sdkgen_client95.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6479
6878
  }
6480
6879
  /**
6481
6880
  * Returns a paginated list of forms which are relevant to the authenticated user
@@ -6504,14 +6903,14 @@ var ConsumerFormTag = class extends import_sdkgen_client90.TagAbstract {
6504
6903
  if (statusCode >= 0 && statusCode <= 999) {
6505
6904
  throw new CommonMessageException(await response.json());
6506
6905
  }
6507
- throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6906
+ throw new import_sdkgen_client95.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6508
6907
  }
6509
6908
  };
6510
6909
 
6511
6910
  // src/ConsumerGrantTag.ts
6512
- var import_sdkgen_client92 = require("sdkgen-client");
6513
- var import_sdkgen_client93 = require("sdkgen-client");
6514
- var ConsumerGrantTag = class extends import_sdkgen_client92.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 {
6515
6914
  /**
6516
6915
  * Deletes an existing grant for an app which was created by the authenticated user
6517
6916
  *
@@ -6537,7 +6936,7 @@ var ConsumerGrantTag = class extends import_sdkgen_client92.TagAbstract {
6537
6936
  if (statusCode >= 0 && statusCode <= 999) {
6538
6937
  throw new CommonMessageException(await response.json());
6539
6938
  }
6540
- throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6939
+ throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6541
6940
  }
6542
6941
  /**
6543
6942
  * Returns a paginated list of grants which are assigned to the authenticated user
@@ -6566,14 +6965,14 @@ var ConsumerGrantTag = class extends import_sdkgen_client92.TagAbstract {
6566
6965
  if (statusCode >= 0 && statusCode <= 999) {
6567
6966
  throw new CommonMessageException(await response.json());
6568
6967
  }
6569
- throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6968
+ throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6570
6969
  }
6571
6970
  };
6572
6971
 
6573
6972
  // src/ConsumerIdentityTag.ts
6574
- var import_sdkgen_client94 = require("sdkgen-client");
6575
- var import_sdkgen_client95 = require("sdkgen-client");
6576
- var ConsumerIdentityTag = class extends import_sdkgen_client94.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 {
6577
6976
  /**
6578
6977
  * Identity callback endpoint to exchange an access token
6579
6978
  *
@@ -6599,7 +6998,7 @@ var ConsumerIdentityTag = class extends import_sdkgen_client94.TagAbstract {
6599
6998
  if (statusCode >= 0 && statusCode <= 999) {
6600
6999
  throw new CommonMessageException(await response.json());
6601
7000
  }
6602
- throw new import_sdkgen_client95.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7001
+ throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6603
7002
  }
6604
7003
  /**
6605
7004
  * Returns a paginated list of identities which are relevant to the authenticated user
@@ -6627,7 +7026,7 @@ var ConsumerIdentityTag = class extends import_sdkgen_client94.TagAbstract {
6627
7026
  if (statusCode >= 0 && statusCode <= 999) {
6628
7027
  throw new CommonMessageException(await response.json());
6629
7028
  }
6630
- throw new import_sdkgen_client95.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7029
+ throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6631
7030
  }
6632
7031
  /**
6633
7032
  * Redirect the user to the configured identity provider
@@ -6654,14 +7053,14 @@ var ConsumerIdentityTag = class extends import_sdkgen_client94.TagAbstract {
6654
7053
  if (statusCode >= 0 && statusCode <= 999) {
6655
7054
  throw new CommonMessageException(await response.json());
6656
7055
  }
6657
- throw new import_sdkgen_client95.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7056
+ throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6658
7057
  }
6659
7058
  };
6660
7059
 
6661
7060
  // src/ConsumerLogTag.ts
6662
- var import_sdkgen_client96 = require("sdkgen-client");
6663
- var import_sdkgen_client97 = require("sdkgen-client");
6664
- var ConsumerLogTag = class extends import_sdkgen_client96.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 {
6665
7064
  /**
6666
7065
  * Returns a specific log for the authenticated user
6667
7066
  *
@@ -6687,7 +7086,7 @@ var ConsumerLogTag = class extends import_sdkgen_client96.TagAbstract {
6687
7086
  if (statusCode >= 0 && statusCode <= 999) {
6688
7087
  throw new CommonMessageException(await response.json());
6689
7088
  }
6690
- throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7089
+ throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6691
7090
  }
6692
7091
  /**
6693
7092
  * Returns a paginated list of logs which are assigned to the authenticated user
@@ -6716,14 +7115,14 @@ var ConsumerLogTag = class extends import_sdkgen_client96.TagAbstract {
6716
7115
  if (statusCode >= 0 && statusCode <= 999) {
6717
7116
  throw new CommonMessageException(await response.json());
6718
7117
  }
6719
- throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7118
+ throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6720
7119
  }
6721
7120
  };
6722
7121
 
6723
7122
  // src/ConsumerPageTag.ts
6724
- var import_sdkgen_client98 = require("sdkgen-client");
6725
- var import_sdkgen_client99 = require("sdkgen-client");
6726
- var ConsumerPageTag = class extends import_sdkgen_client98.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 {
6727
7126
  /**
6728
7127
  * Returns a specific page for the authenticated user
6729
7128
  *
@@ -6749,7 +7148,7 @@ var ConsumerPageTag = class extends import_sdkgen_client98.TagAbstract {
6749
7148
  if (statusCode >= 0 && statusCode <= 999) {
6750
7149
  throw new CommonMessageException(await response.json());
6751
7150
  }
6752
- throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7151
+ throw new import_sdkgen_client103.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6753
7152
  }
6754
7153
  /**
6755
7154
  * Returns a paginated list of pages which are relevant to the authenticated user
@@ -6778,14 +7177,14 @@ var ConsumerPageTag = class extends import_sdkgen_client98.TagAbstract {
6778
7177
  if (statusCode >= 0 && statusCode <= 999) {
6779
7178
  throw new CommonMessageException(await response.json());
6780
7179
  }
6781
- throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7180
+ throw new import_sdkgen_client103.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6782
7181
  }
6783
7182
  };
6784
7183
 
6785
7184
  // src/ConsumerPaymentTag.ts
6786
- var import_sdkgen_client100 = require("sdkgen-client");
6787
- var import_sdkgen_client101 = require("sdkgen-client");
6788
- var ConsumerPaymentTag = class extends import_sdkgen_client100.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 {
6789
7188
  /**
6790
7189
  * Start the checkout process for a specific plan
6791
7190
  *
@@ -6814,7 +7213,7 @@ var ConsumerPaymentTag = class extends import_sdkgen_client100.TagAbstract {
6814
7213
  if (statusCode >= 0 && statusCode <= 999) {
6815
7214
  throw new CommonMessageException(await response.json());
6816
7215
  }
6817
- throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7216
+ throw new import_sdkgen_client105.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6818
7217
  }
6819
7218
  /**
6820
7219
  * Generates a payment portal link for the authenticated user
@@ -6844,14 +7243,14 @@ var ConsumerPaymentTag = class extends import_sdkgen_client100.TagAbstract {
6844
7243
  if (statusCode >= 0 && statusCode <= 999) {
6845
7244
  throw new CommonMessageException(await response.json());
6846
7245
  }
6847
- throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7246
+ throw new import_sdkgen_client105.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6848
7247
  }
6849
7248
  };
6850
7249
 
6851
7250
  // src/ConsumerPlanTag.ts
6852
- var import_sdkgen_client102 = require("sdkgen-client");
6853
- var import_sdkgen_client103 = require("sdkgen-client");
6854
- var ConsumerPlanTag = class extends import_sdkgen_client102.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 {
6855
7254
  /**
6856
7255
  * Returns a specific plan for the authenticated user
6857
7256
  *
@@ -6877,7 +7276,7 @@ var ConsumerPlanTag = class extends import_sdkgen_client102.TagAbstract {
6877
7276
  if (statusCode >= 0 && statusCode <= 999) {
6878
7277
  throw new CommonMessageException(await response.json());
6879
7278
  }
6880
- throw new import_sdkgen_client103.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7279
+ throw new import_sdkgen_client107.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6881
7280
  }
6882
7281
  /**
6883
7282
  * Returns a paginated list of plans which are relevant to the authenticated user
@@ -6906,14 +7305,14 @@ var ConsumerPlanTag = class extends import_sdkgen_client102.TagAbstract {
6906
7305
  if (statusCode >= 0 && statusCode <= 999) {
6907
7306
  throw new CommonMessageException(await response.json());
6908
7307
  }
6909
- throw new import_sdkgen_client103.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7308
+ throw new import_sdkgen_client107.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6910
7309
  }
6911
7310
  };
6912
7311
 
6913
7312
  // src/ConsumerScopeTag.ts
6914
- var import_sdkgen_client104 = require("sdkgen-client");
6915
- var import_sdkgen_client105 = require("sdkgen-client");
6916
- var ConsumerScopeTag = class extends import_sdkgen_client104.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 {
6917
7316
  /**
6918
7317
  * Returns a paginated list of scopes which are assigned to the authenticated user
6919
7318
  *
@@ -6941,7 +7340,7 @@ var ConsumerScopeTag = class extends import_sdkgen_client104.TagAbstract {
6941
7340
  if (statusCode >= 0 && statusCode <= 999) {
6942
7341
  throw new CommonMessageException(await response.json());
6943
7342
  }
6944
- throw new import_sdkgen_client105.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7343
+ throw new import_sdkgen_client109.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6945
7344
  }
6946
7345
  /**
6947
7346
  * Returns all scopes by category
@@ -6966,14 +7365,14 @@ var ConsumerScopeTag = class extends import_sdkgen_client104.TagAbstract {
6966
7365
  if (statusCode >= 0 && statusCode <= 999) {
6967
7366
  throw new CommonMessageException(await response.json());
6968
7367
  }
6969
- throw new import_sdkgen_client105.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7368
+ throw new import_sdkgen_client109.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6970
7369
  }
6971
7370
  };
6972
7371
 
6973
7372
  // src/ConsumerTokenTag.ts
6974
- var import_sdkgen_client106 = require("sdkgen-client");
6975
- var import_sdkgen_client107 = require("sdkgen-client");
6976
- var ConsumerTokenTag = class extends import_sdkgen_client106.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 {
6977
7376
  /**
6978
7377
  * Creates a new token for the authenticated user
6979
7378
  *
@@ -7000,7 +7399,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client106.TagAbstract {
7000
7399
  if (statusCode >= 0 && statusCode <= 999) {
7001
7400
  throw new CommonMessageException(await response.json());
7002
7401
  }
7003
- throw new import_sdkgen_client107.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7402
+ throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7004
7403
  }
7005
7404
  /**
7006
7405
  * Deletes an existing token for the authenticated user
@@ -7027,7 +7426,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client106.TagAbstract {
7027
7426
  if (statusCode >= 0 && statusCode <= 999) {
7028
7427
  throw new CommonMessageException(await response.json());
7029
7428
  }
7030
- throw new import_sdkgen_client107.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7429
+ throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7031
7430
  }
7032
7431
  /**
7033
7432
  * Returns a specific token for the authenticated user
@@ -7054,7 +7453,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client106.TagAbstract {
7054
7453
  if (statusCode >= 0 && statusCode <= 999) {
7055
7454
  throw new CommonMessageException(await response.json());
7056
7455
  }
7057
- throw new import_sdkgen_client107.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7456
+ throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7058
7457
  }
7059
7458
  /**
7060
7459
  * Returns a paginated list of tokens which are assigned to the authenticated user
@@ -7083,7 +7482,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client106.TagAbstract {
7083
7482
  if (statusCode >= 0 && statusCode <= 999) {
7084
7483
  throw new CommonMessageException(await response.json());
7085
7484
  }
7086
- throw new import_sdkgen_client107.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7485
+ throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7087
7486
  }
7088
7487
  /**
7089
7488
  * Updates an existing token for the authenticated user
@@ -7113,14 +7512,14 @@ var ConsumerTokenTag = class extends import_sdkgen_client106.TagAbstract {
7113
7512
  if (statusCode >= 0 && statusCode <= 999) {
7114
7513
  throw new CommonMessageException(await response.json());
7115
7514
  }
7116
- throw new import_sdkgen_client107.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7515
+ throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7117
7516
  }
7118
7517
  };
7119
7518
 
7120
7519
  // src/ConsumerTransactionTag.ts
7121
- var import_sdkgen_client108 = require("sdkgen-client");
7122
- var import_sdkgen_client109 = require("sdkgen-client");
7123
- var ConsumerTransactionTag = class extends import_sdkgen_client108.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 {
7124
7523
  /**
7125
7524
  * Returns a specific transaction for the authenticated user
7126
7525
  *
@@ -7146,7 +7545,7 @@ var ConsumerTransactionTag = class extends import_sdkgen_client108.TagAbstract {
7146
7545
  if (statusCode >= 0 && statusCode <= 999) {
7147
7546
  throw new CommonMessageException(await response.json());
7148
7547
  }
7149
- throw new import_sdkgen_client109.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7548
+ throw new import_sdkgen_client113.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7150
7549
  }
7151
7550
  /**
7152
7551
  * Returns a paginated list of transactions which are assigned to the authenticated user
@@ -7175,14 +7574,14 @@ var ConsumerTransactionTag = class extends import_sdkgen_client108.TagAbstract {
7175
7574
  if (statusCode >= 0 && statusCode <= 999) {
7176
7575
  throw new CommonMessageException(await response.json());
7177
7576
  }
7178
- throw new import_sdkgen_client109.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7577
+ throw new import_sdkgen_client113.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7179
7578
  }
7180
7579
  };
7181
7580
 
7182
7581
  // src/ConsumerWebhookTag.ts
7183
- var import_sdkgen_client110 = require("sdkgen-client");
7184
- var import_sdkgen_client111 = require("sdkgen-client");
7185
- var ConsumerWebhookTag = class extends import_sdkgen_client110.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 {
7186
7585
  /**
7187
7586
  * Creates a new webhook for the authenticated user
7188
7587
  *
@@ -7209,7 +7608,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client110.TagAbstract {
7209
7608
  if (statusCode >= 0 && statusCode <= 999) {
7210
7609
  throw new CommonMessageException(await response.json());
7211
7610
  }
7212
- throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7611
+ throw new import_sdkgen_client115.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7213
7612
  }
7214
7613
  /**
7215
7614
  * Deletes an existing webhook for the authenticated user
@@ -7236,7 +7635,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client110.TagAbstract {
7236
7635
  if (statusCode >= 0 && statusCode <= 999) {
7237
7636
  throw new CommonMessageException(await response.json());
7238
7637
  }
7239
- throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7638
+ throw new import_sdkgen_client115.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7240
7639
  }
7241
7640
  /**
7242
7641
  * Returns a specific webhook for the authenticated user
@@ -7263,7 +7662,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client110.TagAbstract {
7263
7662
  if (statusCode >= 0 && statusCode <= 999) {
7264
7663
  throw new CommonMessageException(await response.json());
7265
7664
  }
7266
- throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7665
+ throw new import_sdkgen_client115.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7267
7666
  }
7268
7667
  /**
7269
7668
  * Returns a paginated list of webhooks which are assigned to the authenticated user
@@ -7292,7 +7691,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client110.TagAbstract {
7292
7691
  if (statusCode >= 0 && statusCode <= 999) {
7293
7692
  throw new CommonMessageException(await response.json());
7294
7693
  }
7295
- throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7694
+ throw new import_sdkgen_client115.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7296
7695
  }
7297
7696
  /**
7298
7697
  * Updates an existing webhook for the authenticated user
@@ -7322,12 +7721,12 @@ var ConsumerWebhookTag = class extends import_sdkgen_client110.TagAbstract {
7322
7721
  if (statusCode >= 0 && statusCode <= 999) {
7323
7722
  throw new CommonMessageException(await response.json());
7324
7723
  }
7325
- throw new import_sdkgen_client111.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7724
+ throw new import_sdkgen_client115.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7326
7725
  }
7327
7726
  };
7328
7727
 
7329
7728
  // src/ConsumerTag.ts
7330
- var ConsumerTag = class extends import_sdkgen_client112.TagAbstract {
7729
+ var ConsumerTag = class extends import_sdkgen_client116.TagAbstract {
7331
7730
  account() {
7332
7731
  return new ConsumerAccountTag(
7333
7732
  this.httpClient,
@@ -7415,12 +7814,12 @@ var ConsumerTag = class extends import_sdkgen_client112.TagAbstract {
7415
7814
  };
7416
7815
 
7417
7816
  // src/SystemTag.ts
7418
- var import_sdkgen_client119 = require("sdkgen-client");
7817
+ var import_sdkgen_client123 = require("sdkgen-client");
7419
7818
 
7420
7819
  // src/SystemConnectionTag.ts
7421
- var import_sdkgen_client113 = require("sdkgen-client");
7422
- var import_sdkgen_client114 = require("sdkgen-client");
7423
- var SystemConnectionTag = class extends import_sdkgen_client113.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 {
7424
7823
  /**
7425
7824
  * Connection OAuth2 callback to authorize a connection
7426
7825
  *
@@ -7446,14 +7845,14 @@ var SystemConnectionTag = class extends import_sdkgen_client113.TagAbstract {
7446
7845
  if (statusCode >= 0 && statusCode <= 999) {
7447
7846
  throw new CommonMessageException(await response.json());
7448
7847
  }
7449
- throw new import_sdkgen_client114.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7848
+ throw new import_sdkgen_client118.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7450
7849
  }
7451
7850
  };
7452
7851
 
7453
7852
  // src/SystemMetaTag.ts
7454
- var import_sdkgen_client115 = require("sdkgen-client");
7455
- var import_sdkgen_client116 = require("sdkgen-client");
7456
- var SystemMetaTag = class extends import_sdkgen_client115.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 {
7457
7856
  /**
7458
7857
  * Returns meta information and links about the current installed Fusio version
7459
7858
  *
@@ -7477,7 +7876,7 @@ var SystemMetaTag = class extends import_sdkgen_client115.TagAbstract {
7477
7876
  if (statusCode >= 0 && statusCode <= 999) {
7478
7877
  throw new CommonMessageException(await response.json());
7479
7878
  }
7480
- throw new import_sdkgen_client116.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7879
+ throw new import_sdkgen_client120.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7481
7880
  }
7482
7881
  /**
7483
7882
  * Debug endpoint which returns the provided data
@@ -7505,7 +7904,7 @@ var SystemMetaTag = class extends import_sdkgen_client115.TagAbstract {
7505
7904
  if (statusCode >= 0 && statusCode <= 999) {
7506
7905
  throw new CommonMessageException(await response.json());
7507
7906
  }
7508
- throw new import_sdkgen_client116.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7907
+ throw new import_sdkgen_client120.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7509
7908
  }
7510
7909
  /**
7511
7910
  * Health check endpoint which returns information about the health status of the system
@@ -7530,7 +7929,7 @@ var SystemMetaTag = class extends import_sdkgen_client115.TagAbstract {
7530
7929
  if (statusCode >= 0 && statusCode <= 999) {
7531
7930
  throw new CommonMessageException(await response.json());
7532
7931
  }
7533
- throw new import_sdkgen_client116.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7932
+ throw new import_sdkgen_client120.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7534
7933
  }
7535
7934
  /**
7536
7935
  * Returns all available routes
@@ -7555,7 +7954,7 @@ var SystemMetaTag = class extends import_sdkgen_client115.TagAbstract {
7555
7954
  if (statusCode >= 0 && statusCode <= 999) {
7556
7955
  throw new CommonMessageException(await response.json());
7557
7956
  }
7558
- throw new import_sdkgen_client116.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7957
+ throw new import_sdkgen_client120.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7559
7958
  }
7560
7959
  /**
7561
7960
  * Returns details of a specific schema
@@ -7582,14 +7981,14 @@ var SystemMetaTag = class extends import_sdkgen_client115.TagAbstract {
7582
7981
  if (statusCode >= 0 && statusCode <= 999) {
7583
7982
  throw new CommonMessageException(await response.json());
7584
7983
  }
7585
- throw new import_sdkgen_client116.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7984
+ throw new import_sdkgen_client120.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7586
7985
  }
7587
7986
  };
7588
7987
 
7589
7988
  // src/SystemPaymentTag.ts
7590
- var import_sdkgen_client117 = require("sdkgen-client");
7591
- var import_sdkgen_client118 = require("sdkgen-client");
7592
- var SystemPaymentTag = class extends import_sdkgen_client117.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 {
7593
7992
  /**
7594
7993
  * Payment webhook endpoint after successful purchase of a plan
7595
7994
  *
@@ -7615,12 +8014,12 @@ var SystemPaymentTag = class extends import_sdkgen_client117.TagAbstract {
7615
8014
  if (statusCode >= 0 && statusCode <= 999) {
7616
8015
  throw new CommonMessageException(await response.json());
7617
8016
  }
7618
- throw new import_sdkgen_client118.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
8017
+ throw new import_sdkgen_client122.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
7619
8018
  }
7620
8019
  };
7621
8020
 
7622
8021
  // src/SystemTag.ts
7623
- var SystemTag = class extends import_sdkgen_client119.TagAbstract {
8022
+ var SystemTag = class extends import_sdkgen_client123.TagAbstract {
7624
8023
  connection() {
7625
8024
  return new SystemConnectionTag(
7626
8025
  this.httpClient,
@@ -7642,7 +8041,7 @@ var SystemTag = class extends import_sdkgen_client119.TagAbstract {
7642
8041
  };
7643
8042
 
7644
8043
  // src/Client.ts
7645
- var Client = class _Client extends import_sdkgen_client120.ClientAbstract {
8044
+ var Client = class _Client extends import_sdkgen_client124.ClientAbstract {
7646
8045
  authorization() {
7647
8046
  return new AuthorizationTag(
7648
8047
  this.httpClient,
@@ -7668,7 +8067,7 @@ var Client = class _Client extends import_sdkgen_client120.ClientAbstract {
7668
8067
  );
7669
8068
  }
7670
8069
  static buildAnonymous(baseUrl) {
7671
- return new _Client(baseUrl, new import_sdkgen_client121.Anonymous());
8070
+ return new _Client(baseUrl, new import_sdkgen_client125.Anonymous());
7672
8071
  }
7673
8072
  };
7674
8073
  // Annotate the CommonJS export names for ESM import in node:
@@ -7679,6 +8078,7 @@ var Client = class _Client extends import_sdkgen_client120.ClientAbstract {
7679
8078
  BackendAppTag,
7680
8079
  BackendAuditTag,
7681
8080
  BackendBackupTag,
8081
+ BackendBundleTag,
7682
8082
  BackendCategoryTag,
7683
8083
  BackendConfigTag,
7684
8084
  BackendConnectionDatabaseTag,
@@ -7696,6 +8096,7 @@ var Client = class _Client extends import_sdkgen_client120.ClientAbstract {
7696
8096
  BackendLogTag,
7697
8097
  BackendMarketplaceActionTag,
7698
8098
  BackendMarketplaceAppTag,
8099
+ BackendMarketplaceBundleTag,
7699
8100
  BackendMarketplaceTag,
7700
8101
  BackendOperationTag,
7701
8102
  BackendPageTag,