@flashbacktech/flashbackclient 0.2.12 → 0.2.13
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/api/client.js +1 -1
- package/package.json +1 -1
package/dist/api/client.js
CHANGED
|
@@ -167,7 +167,7 @@ class ApiClient {
|
|
|
167
167
|
return this.makeRequest('bucket', 'POST', data);
|
|
168
168
|
};
|
|
169
169
|
this.getStorageBuckets = async (workspaceId) => {
|
|
170
|
-
return this.makeRequest('bucket?', 'GET', null);
|
|
170
|
+
return this.makeRequest('bucket?workspaceId=' + workspaceId, 'GET', null);
|
|
171
171
|
};
|
|
172
172
|
this.validateStorageBucket = async (bucketId, data) => {
|
|
173
173
|
return this.makeRequest(`bucket/${bucketId}/validate`, 'POST', data);
|