@cirrobio/api-client 0.9.2 → 0.9.3
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
|
@@ -525,6 +525,9 @@ class GovernanceApi extends runtime.BaseAPI {
|
|
|
525
525
|
throw new runtime.RequiredError('projectId', 'Required parameter requestParameters.projectId was null or undefined when calling getRequirementsByProject.');
|
|
526
526
|
}
|
|
527
527
|
const queryParameters = {};
|
|
528
|
+
if (requestParameters.username !== undefined) {
|
|
529
|
+
queryParameters['username'] = requestParameters.username;
|
|
530
|
+
}
|
|
528
531
|
const headerParameters = {};
|
|
529
532
|
if (this.configuration && this.configuration.accessToken) {
|
|
530
533
|
const token = this.configuration.accessToken;
|
|
@@ -522,6 +522,9 @@ export class GovernanceApi extends runtime.BaseAPI {
|
|
|
522
522
|
throw new runtime.RequiredError('projectId', 'Required parameter requestParameters.projectId was null or undefined when calling getRequirementsByProject.');
|
|
523
523
|
}
|
|
524
524
|
const queryParameters = {};
|
|
525
|
+
if (requestParameters.username !== undefined) {
|
|
526
|
+
queryParameters['username'] = requestParameters.username;
|
|
527
|
+
}
|
|
525
528
|
const headerParameters = {};
|
|
526
529
|
if (this.configuration && this.configuration.accessToken) {
|
|
527
530
|
const token = this.configuration.accessToken;
|