@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
|
@@ -3448,9 +3448,9 @@ class ProjectsApiService extends BaseService {
|
|
|
3448
3448
|
});
|
|
3449
3449
|
}
|
|
3450
3450
|
projectsGetProject(requestParameters, observe = "body", reportProgress = false, options) {
|
|
3451
|
-
const
|
|
3452
|
-
if (
|
|
3453
|
-
throw new Error("Required parameter
|
|
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: "
|
|
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,
|