fusio-sdk 5.1.12 → 5.1.13

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
@@ -1030,7 +1030,7 @@ var BackendConnectionTag = class extends import_sdkgen_client18.TagAbstract {
1030
1030
  * @throws {CommonMessageException}
1031
1031
  * @throws {ClientException}
1032
1032
  */
1033
- async getAll(startIndex, count, search) {
1033
+ async getAll(startIndex, count, search, _class) {
1034
1034
  const url = this.parser.url("/backend/connection", {});
1035
1035
  let request = {
1036
1036
  url,
@@ -1039,7 +1039,8 @@ var BackendConnectionTag = class extends import_sdkgen_client18.TagAbstract {
1039
1039
  params: this.parser.query({
1040
1040
  "startIndex": startIndex,
1041
1041
  "count": count,
1042
- "search": search
1042
+ "search": search,
1043
+ "class": _class
1043
1044
  }, [])
1044
1045
  };
1045
1046
  const response = await this.httpClient.request(request);
@@ -1100,57 +1101,6 @@ var BackendConnectionTag = class extends import_sdkgen_client18.TagAbstract {
1100
1101
  }
1101
1102
  throw new import_sdkgen_client19.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1102
1103
  }
1103
- /**
1104
- * @returns {Promise<BackendConnectionIntrospectionEntities>}
1105
- * @throws {CommonMessageException}
1106
- * @throws {ClientException}
1107
- */
1108
- async getIntrospection(connectionId) {
1109
- const url = this.parser.url("/backend/connection/$connection_id<[0-9]+|^~>/introspection", {
1110
- "connection_id": connectionId
1111
- });
1112
- let request = {
1113
- url,
1114
- method: "GET",
1115
- headers: {},
1116
- params: this.parser.query({}, [])
1117
- };
1118
- const response = await this.httpClient.request(request);
1119
- if (response.ok) {
1120
- return await response.json();
1121
- }
1122
- const statusCode = response.status;
1123
- if (statusCode >= 0 && statusCode <= 999) {
1124
- throw new CommonMessageException(await response.json());
1125
- }
1126
- throw new import_sdkgen_client19.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1127
- }
1128
- /**
1129
- * @returns {Promise<BackendConnectionIntrospectionEntity>}
1130
- * @throws {CommonMessageException}
1131
- * @throws {ClientException}
1132
- */
1133
- async getIntrospectionForEntity(connectionId, entity) {
1134
- const url = this.parser.url("/backend/connection/$connection_id<[0-9]+|^~>/introspection/:entity", {
1135
- "connection_id": connectionId,
1136
- "entity": entity
1137
- });
1138
- let request = {
1139
- url,
1140
- method: "GET",
1141
- headers: {},
1142
- params: this.parser.query({}, [])
1143
- };
1144
- const response = await this.httpClient.request(request);
1145
- if (response.ok) {
1146
- return await response.json();
1147
- }
1148
- const statusCode = response.status;
1149
- if (statusCode >= 0 && statusCode <= 999) {
1150
- throw new CommonMessageException(await response.json());
1151
- }
1152
- throw new import_sdkgen_client19.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1153
- }
1154
1104
  /**
1155
1105
  * @returns {Promise<BackendConnectionRedirectResponse>}
1156
1106
  * @throws {CommonMessageException}
@@ -1486,29 +1436,6 @@ var BackendDatabaseTag = class extends import_sdkgen_client24.TagAbstract {
1486
1436
  }
1487
1437
  throw new import_sdkgen_client25.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1488
1438
  }
1489
- /**
1490
- * @returns {Promise<BackendDatabaseConnections>}
1491
- * @throws {CommonMessageException}
1492
- * @throws {ClientException}
1493
- */
1494
- async getConnections() {
1495
- const url = this.parser.url("/backend/database", {});
1496
- let request = {
1497
- url,
1498
- method: "GET",
1499
- headers: {},
1500
- params: this.parser.query({}, [])
1501
- };
1502
- const response = await this.httpClient.request(request);
1503
- if (response.ok) {
1504
- return await response.json();
1505
- }
1506
- const statusCode = response.status;
1507
- if (statusCode >= 0 && statusCode <= 999) {
1508
- throw new CommonMessageException(await response.json());
1509
- }
1510
- throw new import_sdkgen_client25.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1511
- }
1512
1439
  /**
1513
1440
  * @returns {Promise<BackendDatabaseRow>}
1514
1441
  * @throws {CommonMessageException}
@@ -1537,7 +1464,7 @@ var BackendDatabaseTag = class extends import_sdkgen_client24.TagAbstract {
1537
1464
  throw new import_sdkgen_client25.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1538
1465
  }
1539
1466
  /**
1540
- * @returns {Promise<BackendDatabaseRows>}
1467
+ * @returns {Promise<BackendDatabaseRowCollection>}
1541
1468
  * @throws {CommonMessageException}
1542
1469
  * @throws {ClientException}
1543
1470
  */
@@ -1598,7 +1525,7 @@ var BackendDatabaseTag = class extends import_sdkgen_client24.TagAbstract {
1598
1525
  throw new import_sdkgen_client25.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1599
1526
  }
1600
1527
  /**
1601
- * @returns {Promise<BackendDatabaseTables>}
1528
+ * @returns {Promise<BackendDatabaseTableCollection>}
1602
1529
  * @throws {CommonMessageException}
1603
1530
  * @throws {ClientException}
1604
1531
  */