@saritasa/renewaire-frontend-sdk 0.220.0 → 0.221.0

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/README.md CHANGED
@@ -1,5 +1,5 @@
1
- # @@saritasa/renewaire-frontend-sdk@0.220.0
1
+ # @@saritasa/renewaire-frontend-sdk@0.221.0
2
2
 
3
3
  ```bash
4
- npm install @saritasa/renewaire-frontend-sdk@0.220.0 --save
4
+ npm install @saritasa/renewaire-frontend-sdk@0.221.0 --save
5
5
  ```
@@ -1071,7 +1071,7 @@ class BombParametersApiService extends BaseService {
1071
1071
  super(basePath, configuration);
1072
1072
  this.httpClient = httpClient;
1073
1073
  }
1074
- modelParametersGet(observe = "body", reportProgress = false, options) {
1074
+ modelParametersGetAllModelOptions(observe = "body", reportProgress = false, options) {
1075
1075
  let localVarHeaders = this.defaultHeaders;
1076
1076
  // authentication (Bearer) required
1077
1077
  localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
@@ -1098,7 +1098,7 @@ class BombParametersApiService extends BaseService {
1098
1098
  responseType_ = "blob";
1099
1099
  }
1100
1100
  }
1101
- let localVarPath = `/api/bomb/model-parameters/number-parts`;
1101
+ let localVarPath = `/api/bomb/model-parameters/model-options`;
1102
1102
  const { basePath, withCredentials } = this.configuration;
1103
1103
  return this.httpClient.request("get", `${basePath}${localVarPath}`, {
1104
1104
  context: localVarHttpContext,
@@ -1149,6 +1149,45 @@ class BombParametersApiService extends BaseService {
1149
1149
  reportProgress: reportProgress,
1150
1150
  });
1151
1151
  }
1152
+ modelParametersGetNumberParts(observe = "body", reportProgress = false, options) {
1153
+ let localVarHeaders = this.defaultHeaders;
1154
+ // authentication (Bearer) required
1155
+ localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
1156
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
1157
+ this.configuration.selectHeaderAccept([
1158
+ "text/plain",
1159
+ "application/json",
1160
+ "text/json",
1161
+ ]);
1162
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
1163
+ localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
1164
+ }
1165
+ const localVarHttpContext = options?.context ?? new HttpContext();
1166
+ const localVarTransferCache = options?.transferCache ?? true;
1167
+ let responseType_ = "json";
1168
+ if (localVarHttpHeaderAcceptSelected) {
1169
+ if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
1170
+ responseType_ = "text";
1171
+ }
1172
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
1173
+ responseType_ = "json";
1174
+ }
1175
+ else {
1176
+ responseType_ = "blob";
1177
+ }
1178
+ }
1179
+ let localVarPath = `/api/bomb/model-parameters/number-parts`;
1180
+ const { basePath, withCredentials } = this.configuration;
1181
+ return this.httpClient.request("get", `${basePath}${localVarPath}`, {
1182
+ context: localVarHttpContext,
1183
+ responseType: responseType_,
1184
+ ...(withCredentials ? { withCredentials } : {}),
1185
+ headers: localVarHeaders,
1186
+ observe: observe,
1187
+ transferCache: localVarTransferCache,
1188
+ reportProgress: reportProgress,
1189
+ });
1190
+ }
1152
1191
  modelParametersValidateModelNumber(requestParameters, observe = "body", reportProgress = false, options) {
1153
1192
  const validateModelNumberCommand = requestParameters?.validateModelNumberCommand;
1154
1193
  let localVarHeaders = this.defaultHeaders;
@@ -11923,6 +11962,16 @@ var ModelNumberValidationErrorType;
11923
11962
  * Do not edit the class manually.
11924
11963
  */
11925
11964
 
11965
+ /**
11966
+ * RenewAire CORES API
11967
+ *
11968
+ * Contact: renewaire@saritasa.com
11969
+ *
11970
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11971
+ * https://openapi-generator.tech
11972
+ * Do not edit the class manually.
11973
+ */
11974
+
11926
11975
  /**
11927
11976
  * RenewAire CORES API
11928
11977
  *