@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 +1 -1
- package/dist/apis/ExecutionApi.js +1 -1
- package/package.json +1 -1
- package/src/apis/ExecutionApi.ts +1 -1
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.
|
|
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}/
|
|
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
package/src/apis/ExecutionApi.ts
CHANGED
|
@@ -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}/
|
|
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,
|