@cirrobio/api-client 0.2.4 → 0.2.5

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.4 --save
39
+ npm install @cirrobio/api-client@0.2.5 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -33,6 +33,12 @@ export interface UploadDatasetCreateResponse {
33
33
  * @memberof UploadDatasetCreateResponse
34
34
  */
35
35
  uploadPath: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof UploadDatasetCreateResponse
40
+ */
41
+ bucket: string;
36
42
  }
37
43
  /**
38
44
  * Check if a given object implements the UploadDatasetCreateResponse interface.
@@ -22,6 +22,7 @@ function instanceOfUploadDatasetCreateResponse(value) {
22
22
  isInstance = isInstance && "id" in value;
23
23
  isInstance = isInstance && "message" in value;
24
24
  isInstance = isInstance && "uploadPath" in value;
25
+ isInstance = isInstance && "bucket" in value;
25
26
  return isInstance;
26
27
  }
27
28
  exports.instanceOfUploadDatasetCreateResponse = instanceOfUploadDatasetCreateResponse;
@@ -37,6 +38,7 @@ function UploadDatasetCreateResponseFromJSONTyped(json, ignoreDiscriminator) {
37
38
  'id': json['id'],
38
39
  'message': json['message'],
39
40
  'uploadPath': json['uploadPath'],
41
+ 'bucket': json['bucket'],
40
42
  };
41
43
  }
42
44
  exports.UploadDatasetCreateResponseFromJSONTyped = UploadDatasetCreateResponseFromJSONTyped;
@@ -51,6 +53,7 @@ function UploadDatasetCreateResponseToJSON(value) {
51
53
  'id': value.id,
52
54
  'message': value.message,
53
55
  'uploadPath': value.uploadPath,
56
+ 'bucket': value.bucket,
54
57
  };
55
58
  }
56
59
  exports.UploadDatasetCreateResponseToJSON = UploadDatasetCreateResponseToJSON;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cirrobio/api-client",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "API client for Cirro",
5
5
  "author": "CirroBio",
6
6
  "repository": {
@@ -37,6 +37,12 @@ export interface UploadDatasetCreateResponse {
37
37
  * @memberof UploadDatasetCreateResponse
38
38
  */
39
39
  uploadPath: string;
40
+ /**
41
+ *
42
+ * @type {string}
43
+ * @memberof UploadDatasetCreateResponse
44
+ */
45
+ bucket: string;
40
46
  }
41
47
 
42
48
  /**
@@ -47,6 +53,7 @@ export function instanceOfUploadDatasetCreateResponse(value: object): boolean {
47
53
  isInstance = isInstance && "id" in value;
48
54
  isInstance = isInstance && "message" in value;
49
55
  isInstance = isInstance && "uploadPath" in value;
56
+ isInstance = isInstance && "bucket" in value;
50
57
 
51
58
  return isInstance;
52
59
  }
@@ -64,6 +71,7 @@ export function UploadDatasetCreateResponseFromJSONTyped(json: any, ignoreDiscri
64
71
  'id': json['id'],
65
72
  'message': json['message'],
66
73
  'uploadPath': json['uploadPath'],
74
+ 'bucket': json['bucket'],
67
75
  };
68
76
  }
69
77
 
@@ -79,6 +87,7 @@ export function UploadDatasetCreateResponseToJSON(value?: UploadDatasetCreateRes
79
87
  'id': value.id,
80
88
  'message': value.message,
81
89
  'uploadPath': value.uploadPath,
90
+ 'bucket': value.bucket,
82
91
  };
83
92
  }
84
93