@cirrobio/api-client 0.2.7 → 0.2.8

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.2.5 --save
39
+ npm install @cirrobio/api-client@0.2.8 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -103,6 +103,12 @@ export interface ProcessDetail {
103
103
  * @memberof ProcessDetail
104
104
  */
105
105
  linkedProjectIds: Array<string>;
106
+ /**
107
+ * Whether the pipeline is available to all projects in the organization
108
+ * @type {boolean}
109
+ * @memberof ProcessDetail
110
+ */
111
+ isTenantWide?: boolean;
106
112
  /**
107
113
  * Whether the pipeline is allowed to have multiple dataset sources
108
114
  * @type {boolean}
@@ -57,6 +57,7 @@ function ProcessDetailFromJSONTyped(json, ignoreDiscriminator) {
57
57
  'pipelineCode': !(0, runtime_1.exists)(json, 'pipelineCode') ? undefined : (0, PipelineCode_1.PipelineCodeFromJSON)(json['pipelineCode']),
58
58
  'owner': !(0, runtime_1.exists)(json, 'owner') ? undefined : json['owner'],
59
59
  'linkedProjectIds': json['linkedProjectIds'],
60
+ 'isTenantWide': !(0, runtime_1.exists)(json, 'isTenantWide') ? undefined : json['isTenantWide'],
60
61
  'allowMultipleSources': !(0, runtime_1.exists)(json, 'allowMultipleSources') ? undefined : json['allowMultipleSources'],
61
62
  'customSettings': !(0, runtime_1.exists)(json, 'customSettings') ? undefined : (0, CustomPipelineSettings_1.CustomPipelineSettingsFromJSON)(json['customSettings']),
62
63
  'isArchived': !(0, runtime_1.exists)(json, 'isArchived') ? undefined : json['isArchived'],
@@ -86,6 +87,7 @@ function ProcessDetailToJSON(value) {
86
87
  'pipelineCode': (0, PipelineCode_1.PipelineCodeToJSON)(value.pipelineCode),
87
88
  'owner': value.owner,
88
89
  'linkedProjectIds': value.linkedProjectIds,
90
+ 'isTenantWide': value.isTenantWide,
89
91
  'allowMultipleSources': value.allowMultipleSources,
90
92
  'customSettings': (0, CustomPipelineSettings_1.CustomPipelineSettingsToJSON)(value.customSettings),
91
93
  'isArchived': value.isArchived,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cirrobio/api-client",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "description": "API client for Cirro",
5
5
  "author": "CirroBio",
6
6
  "repository": {
@@ -128,6 +128,12 @@ export interface ProcessDetail {
128
128
  * @memberof ProcessDetail
129
129
  */
130
130
  linkedProjectIds: Array<string>;
131
+ /**
132
+ * Whether the pipeline is available to all projects in the organization
133
+ * @type {boolean}
134
+ * @memberof ProcessDetail
135
+ */
136
+ isTenantWide?: boolean;
131
137
  /**
132
138
  * Whether the pipeline is allowed to have multiple dataset sources
133
139
  * @type {boolean}
@@ -194,6 +200,7 @@ export function ProcessDetailFromJSONTyped(json: any, ignoreDiscriminator: boole
194
200
  'pipelineCode': !exists(json, 'pipelineCode') ? undefined : PipelineCodeFromJSON(json['pipelineCode']),
195
201
  'owner': !exists(json, 'owner') ? undefined : json['owner'],
196
202
  'linkedProjectIds': json['linkedProjectIds'],
203
+ 'isTenantWide': !exists(json, 'isTenantWide') ? undefined : json['isTenantWide'],
197
204
  'allowMultipleSources': !exists(json, 'allowMultipleSources') ? undefined : json['allowMultipleSources'],
198
205
  'customSettings': !exists(json, 'customSettings') ? undefined : CustomPipelineSettingsFromJSON(json['customSettings']),
199
206
  'isArchived': !exists(json, 'isArchived') ? undefined : json['isArchived'],
@@ -224,6 +231,7 @@ export function ProcessDetailToJSON(value?: ProcessDetail | null): any {
224
231
  'pipelineCode': PipelineCodeToJSON(value.pipelineCode),
225
232
  'owner': value.owner,
226
233
  'linkedProjectIds': value.linkedProjectIds,
234
+ 'isTenantWide': value.isTenantWide,
227
235
  'allowMultipleSources': value.allowMultipleSources,
228
236
  'customSettings': CustomPipelineSettingsToJSON(value.customSettings),
229
237
  'isArchived': value.isArchived,