@flashbacktech/flashbackclient 0.0.35 → 0.0.37

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.
@@ -76,6 +76,7 @@ class ApiClient {
76
76
  method: 'GET',
77
77
  headers: this.headers,
78
78
  });
79
+ console.log('Response status:', response.status, response.ok, response.body);
79
80
  if (!response.ok) {
80
81
  throw new Error(`HTTP error! status: ${response.status}`);
81
82
  }
@@ -15,7 +15,6 @@ export declare enum ModeType {
15
15
  export interface CreateUnitRequest {
16
16
  name: string;
17
17
  bucket: string;
18
- storageTypeId: string;
19
18
  storageType: StorageType;
20
19
  key: string;
21
20
  secret: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flashbacktech/flashbackclient",
3
- "version": "0.0.35",
3
+ "version": "0.0.37",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },