Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion openapitools.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"additionalProperties": {
"npmName": "@cirrobio/api-client",
"npmVersion": "0.13.25",
"npmVersion": "0.13.26",
"author": "CirroBio",
"stringEnums": true,
"supportsES6": true
Expand Down
2 changes: 1 addition & 1 deletion packages/api-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
_published:_

```
npm install @cirrobio/api-client@0.13.25 --save
npm install @cirrobio/api-client@0.13.26 --save
```

_unPublished (not recommended):_
Expand Down
2 changes: 1 addition & 1 deletion packages/api-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cirrobio/api-client",
"version": "0.13.25",
"version": "0.13.26",
"description": "API client for Cirro",
"author": "CirroBio",
"repository": {
Expand Down
17 changes: 17 additions & 0 deletions packages/api-client/src/models/RunAnalysisRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@
*/

import { mapValues } from '../runtime';
import type { EnvironmentType } from './EnvironmentType';
import {
EnvironmentTypeFromJSON,
EnvironmentTypeFromJSONTyped,
EnvironmentTypeToJSON,
EnvironmentTypeToJSONTyped,
} from './EnvironmentType';
import type { Tag } from './Tag';
import {
TagFromJSON,
Expand Down Expand Up @@ -87,6 +94,12 @@ export interface RunAnalysisRequest {
* @memberof RunAnalysisRequest
*/
computeEnvironmentId?: string | null;
/**
* The type of execution environment to run the workflow in, if not specified, the default for the pipeline is used
* @type {EnvironmentType}
* @memberof RunAnalysisRequest
*/
environmentType?: EnvironmentType | null;
/**
* List of tags to apply to the dataset
* @type {Array<Tag>}
Expand All @@ -95,6 +108,8 @@ export interface RunAnalysisRequest {
tags?: Array<Tag> | null;
}



/**
* Check if a given object implements the RunAnalysisRequest interface.
*/
Expand Down Expand Up @@ -127,6 +142,7 @@ export function RunAnalysisRequestFromJSONTyped(json: any, ignoreDiscriminator:
'params': json['params'],
'notificationEmails': json['notificationEmails'],
'computeEnvironmentId': json['computeEnvironmentId'] == null ? undefined : json['computeEnvironmentId'],
'environmentType': json['environmentType'] == null ? undefined : EnvironmentTypeFromJSON(json['environmentType']),
'tags': json['tags'] == null ? undefined : ((json['tags'] as Array<any>).map(TagFromJSON)),
};
}
Expand All @@ -152,6 +168,7 @@ export function RunAnalysisRequestToJSONTyped(value?: RunAnalysisRequest | null,
'params': value['params'],
'notificationEmails': value['notificationEmails'],
'computeEnvironmentId': value['computeEnvironmentId'],
'environmentType': EnvironmentTypeToJSON(value['environmentType']),
'tags': value['tags'] == null ? undefined : ((value['tags'] as Array<any>).map(TagToJSON)),
};
}
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cirrobio/sdk",
"version": "0.13.25",
"version": "0.13.26",
"description": "SDK for Cirro",
"author": "CirroBio",
"repository": {
Expand Down
Loading