@saritasa/renewaire-frontend-sdk 0.131.0 → 0.132.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.131.0
1
+ # @@saritasa/renewaire-frontend-sdk@0.132.0
2
2
 
3
3
  ```bash
4
- npm install @saritasa/renewaire-frontend-sdk@0.131.0 --save
4
+ npm install @saritasa/renewaire-frontend-sdk@0.132.0 --save
5
5
  ```
@@ -3448,9 +3448,9 @@ class ProjectsApiService extends BaseService {
3448
3448
  });
3449
3449
  }
3450
3450
  projectsGetProject(requestParameters, observe = "body", reportProgress = false, options) {
3451
- const projectId = requestParameters?.projectId;
3452
- if (projectId === null || projectId === undefined) {
3453
- throw new Error("Required parameter projectId was null or undefined when calling projectsGetProject.");
3451
+ const projectRevisionId = requestParameters?.projectRevisionId;
3452
+ if (projectRevisionId === null || projectRevisionId === undefined) {
3453
+ throw new Error("Required parameter projectRevisionId was null or undefined when calling projectsGetProject.");
3454
3454
  }
3455
3455
  let localVarHeaders = this.defaultHeaders;
3456
3456
  // authentication (Bearer) required
@@ -3478,7 +3478,7 @@ class ProjectsApiService extends BaseService {
3478
3478
  responseType_ = "blob";
3479
3479
  }
3480
3480
  }
3481
- let localVarPath = `/api/projects/${this.configuration.encodeParam({ name: "projectId", value: projectId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
3481
+ let localVarPath = `/api/projects/${this.configuration.encodeParam({ name: "projectRevisionId", value: projectRevisionId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
3482
3482
  const { basePath, withCredentials } = this.configuration;
3483
3483
  return this.httpClient.request("get", `${basePath}${localVarPath}`, {
3484
3484
  context: localVarHttpContext,