@cirrobio/api-client 0.0.2-alpha → 0.0.3-alpha

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.0.2-alpha --save
39
+ npm install @cirrobio/api-client@0.0.3-alpha --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -228,7 +228,7 @@ var ExecutionApi = /** @class */ (function (_super) {
228
228
  }
229
229
  _a.label = 2;
230
230
  case 2: return [4 /*yield*/, this.request({
231
- path: "/projects/{projectId}/execution/{datasetId}/tasks/{taskId}/log".replace("{".concat("datasetId", "}"), encodeURIComponent(String(requestParameters.datasetId))).replace("{".concat("projectId", "}"), encodeURIComponent(String(requestParameters.projectId))).replace("{".concat("taskId", "}"), encodeURIComponent(String(requestParameters.taskId))),
231
+ path: "/projects/{projectId}/execution/{datasetId}/tasks/{taskId}/logs".replace("{".concat("datasetId", "}"), encodeURIComponent(String(requestParameters.datasetId))).replace("{".concat("projectId", "}"), encodeURIComponent(String(requestParameters.projectId))).replace("{".concat("taskId", "}"), encodeURIComponent(String(requestParameters.taskId))),
232
232
  method: 'GET',
233
233
  headers: headerParameters,
234
234
  query: queryParameters,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cirrobio/api-client",
3
- "version": "0.0.2-alpha",
3
+ "version": "0.0.3-alpha",
4
4
  "description": "API client for Cirro",
5
5
  "author": "CirroBio",
6
6
  "repository": {
@@ -188,7 +188,7 @@ export class ExecutionApi extends runtime.BaseAPI {
188
188
  }
189
189
  }
190
190
  const response = await this.request({
191
- path: `/projects/{projectId}/execution/{datasetId}/tasks/{taskId}/log`.replace(`{${"datasetId"}}`, encodeURIComponent(String(requestParameters.datasetId))).replace(`{${"projectId"}}`, encodeURIComponent(String(requestParameters.projectId))).replace(`{${"taskId"}}`, encodeURIComponent(String(requestParameters.taskId))),
191
+ path: `/projects/{projectId}/execution/{datasetId}/tasks/{taskId}/logs`.replace(`{${"datasetId"}}`, encodeURIComponent(String(requestParameters.datasetId))).replace(`{${"projectId"}}`, encodeURIComponent(String(requestParameters.projectId))).replace(`{${"taskId"}}`, encodeURIComponent(String(requestParameters.taskId))),
192
192
  method: 'GET',
193
193
  headers: headerParameters,
194
194
  query: queryParameters,