@cirrobio/api-client 0.1.19 → 0.1.20

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.1.19 --save
39
+ npm install @cirrobio/api-client@0.1.20 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -27,6 +27,12 @@ export interface FeatureFlags {
27
27
  * @memberof FeatureFlags
28
28
  */
29
29
  governanceEnabled: boolean;
30
+ /**
31
+ *
32
+ * @type {boolean}
33
+ * @memberof FeatureFlags
34
+ */
35
+ projectRequestsEnabled: boolean;
30
36
  }
31
37
  /**
32
38
  * Check if a given object implements the FeatureFlags interface.
@@ -21,6 +21,7 @@ function instanceOfFeatureFlags(value) {
21
21
  var isInstance = true;
22
22
  isInstance = isInstance && "sftpEnabled" in value;
23
23
  isInstance = isInstance && "governanceEnabled" in value;
24
+ isInstance = isInstance && "projectRequestsEnabled" in value;
24
25
  return isInstance;
25
26
  }
26
27
  exports.instanceOfFeatureFlags = instanceOfFeatureFlags;
@@ -35,6 +36,7 @@ function FeatureFlagsFromJSONTyped(json, ignoreDiscriminator) {
35
36
  return {
36
37
  'sftpEnabled': json['sftpEnabled'],
37
38
  'governanceEnabled': json['governanceEnabled'],
39
+ 'projectRequestsEnabled': json['projectRequestsEnabled'],
38
40
  };
39
41
  }
40
42
  exports.FeatureFlagsFromJSONTyped = FeatureFlagsFromJSONTyped;
@@ -48,6 +50,7 @@ function FeatureFlagsToJSON(value) {
48
50
  return {
49
51
  'sftpEnabled': value.sftpEnabled,
50
52
  'governanceEnabled': value.governanceEnabled,
53
+ 'projectRequestsEnabled': value.projectRequestsEnabled,
51
54
  };
52
55
  }
53
56
  exports.FeatureFlagsToJSON = FeatureFlagsToJSON;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cirrobio/api-client",
3
- "version": "0.1.19",
3
+ "version": "0.1.20",
4
4
  "description": "API client for Cirro",
5
5
  "author": "CirroBio",
6
6
  "repository": {
@@ -31,6 +31,12 @@ export interface FeatureFlags {
31
31
  * @memberof FeatureFlags
32
32
  */
33
33
  governanceEnabled: boolean;
34
+ /**
35
+ *
36
+ * @type {boolean}
37
+ * @memberof FeatureFlags
38
+ */
39
+ projectRequestsEnabled: boolean;
34
40
  }
35
41
 
36
42
  /**
@@ -40,6 +46,7 @@ export function instanceOfFeatureFlags(value: object): boolean {
40
46
  let isInstance = true;
41
47
  isInstance = isInstance && "sftpEnabled" in value;
42
48
  isInstance = isInstance && "governanceEnabled" in value;
49
+ isInstance = isInstance && "projectRequestsEnabled" in value;
43
50
 
44
51
  return isInstance;
45
52
  }
@@ -56,6 +63,7 @@ export function FeatureFlagsFromJSONTyped(json: any, ignoreDiscriminator: boolea
56
63
 
57
64
  'sftpEnabled': json['sftpEnabled'],
58
65
  'governanceEnabled': json['governanceEnabled'],
66
+ 'projectRequestsEnabled': json['projectRequestsEnabled'],
59
67
  };
60
68
  }
61
69
 
@@ -70,6 +78,7 @@ export function FeatureFlagsToJSON(value?: FeatureFlags | null): any {
70
78
 
71
79
  'sftpEnabled': value.sftpEnabled,
72
80
  'governanceEnabled': value.governanceEnabled,
81
+ 'projectRequestsEnabled': value.projectRequestsEnabled,
73
82
  };
74
83
  }
75
84