@giveitsmaller/sdk 0.2.0 → 0.2.1
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/dist/client.js +1 -1
- package/package.json +1 -1
package/dist/client.js
CHANGED
|
@@ -236,7 +236,7 @@ export class GislClient {
|
|
|
236
236
|
* Get download URLs for a completed workflow.
|
|
237
237
|
*/
|
|
238
238
|
async getWorkflowDownloads(workflowId) {
|
|
239
|
-
return this.request('GET', `/api/workflows/${encodeURIComponent(workflowId)}/
|
|
239
|
+
return this.request('GET', `/api/workflows/${encodeURIComponent(workflowId)}/downloads`, {
|
|
240
240
|
deserialize: WorkflowDownloadResponseFromJSON,
|
|
241
241
|
});
|
|
242
242
|
}
|