@cirrobio/api-client 0.1.9 → 0.1.10

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.9 --save
39
+ npm install @cirrobio/api-client@0.1.10 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -17,7 +17,8 @@
17
17
  export declare enum Executor {
18
18
  Ingest = "INGEST",
19
19
  Nextflow = "NEXTFLOW",
20
- Cromwell = "CROMWELL"
20
+ Cromwell = "CROMWELL",
21
+ OmicsReady2Run = "OMICS_READY2RUN"
21
22
  }
22
23
  export declare function ExecutorFromJSON(json: any): Executor;
23
24
  export declare function ExecutorFromJSONTyped(json: any, ignoreDiscriminator: boolean): Executor;
@@ -24,6 +24,7 @@ var Executor;
24
24
  Executor["Ingest"] = "INGEST";
25
25
  Executor["Nextflow"] = "NEXTFLOW";
26
26
  Executor["Cromwell"] = "CROMWELL";
27
+ Executor["OmicsReady2Run"] = "OMICS_READY2RUN";
27
28
  })(Executor = exports.Executor || (exports.Executor = {}));
28
29
  function ExecutorFromJSON(json) {
29
30
  return ExecutorFromJSONTyped(json, false);
package/dist/runtime.js CHANGED
@@ -76,7 +76,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
76
76
  };
77
77
  Object.defineProperty(exports, "__esModule", { value: true });
78
78
  exports.TextApiResponse = exports.BlobApiResponse = exports.VoidApiResponse = exports.JSONApiResponse = exports.canConsumeForm = exports.mapValues = exports.querystring = exports.exists = exports.COLLECTION_FORMATS = exports.RequiredError = exports.FetchError = exports.ResponseError = exports.BaseAPI = exports.DefaultConfig = exports.Configuration = exports.BASE_PATH = void 0;
79
- exports.BASE_PATH = "https://app.cirro.bio/api".replace(/\/+$/, "");
79
+ exports.BASE_PATH = "https://dev.cirro.bio/api".replace(/\/+$/, "");
80
80
  var Configuration = /** @class */ (function () {
81
81
  function Configuration(configuration) {
82
82
  if (configuration === void 0) { configuration = {}; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cirrobio/api-client",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "API client for Cirro",
5
5
  "author": "CirroBio",
6
6
  "repository": {
@@ -20,7 +20,8 @@
20
20
  export enum Executor {
21
21
  Ingest = 'INGEST',
22
22
  Nextflow = 'NEXTFLOW',
23
- Cromwell = 'CROMWELL'
23
+ Cromwell = 'CROMWELL',
24
+ OmicsReady2Run = 'OMICS_READY2RUN'
24
25
  }
25
26
 
26
27
 
package/src/runtime.ts CHANGED
@@ -13,7 +13,7 @@
13
13
  */
14
14
 
15
15
 
16
- export const BASE_PATH = "https://app.cirro.bio/api".replace(/\/+$/, "");
16
+ export const BASE_PATH = "https://dev.cirro.bio/api".replace(/\/+$/, "");
17
17
 
18
18
  export interface ConfigurationParameters {
19
19
  basePath?: string; // override base path