@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
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @cirrobio/api-client@0.9.2 --save
39
+ npm install @cirrobio/api-client@0.9.3 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -48,6 +48,7 @@ export interface GetRequirementsRequest {
48
48
  }
49
49
  export interface GetRequirementsByProjectRequest {
50
50
  projectId: string;
51
+ username?: string;
51
52
  }
52
53
  export interface UpdateClassificationRequest {
53
54
  classificationId: string;
@@ -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;
@@ -48,6 +48,7 @@ export interface GetRequirementsRequest {
48
48
  }
49
49
  export interface GetRequirementsByProjectRequest {
50
50
  projectId: string;
51
+ username?: string;
51
52
  }
52
53
  export interface UpdateClassificationRequest {
53
54
  classificationId: string;
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cirrobio/api-client",
3
- "version": "0.9.2",
3
+ "version": "0.9.3",
4
4
  "description": "API client for Cirro",
5
5
  "author": "CirroBio",
6
6
  "repository": {