@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.
Files changed (2) hide show
  1. package/dist/client.js +1 -1
  2. 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)}/download`, {
239
+ return this.request('GET', `/api/workflows/${encodeURIComponent(workflowId)}/downloads`, {
240
240
  deserialize: WorkflowDownloadResponseFromJSON,
241
241
  });
242
242
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@giveitsmaller/sdk",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Node.js SDK for the GISL (Give It Smaller) file compression and processing API",
5
5
  "license": "MIT",
6
6
  "type": "module",