@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.
@@ -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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flashbacktech/flashbackclient",
3
- "version": "0.2.12",
3
+ "version": "0.2.13",
4
4
  "type": "commonjs",
5
5
  "publishConfig": {
6
6
  "access": "public"