@flashbacktech/flashbackclient 0.0.57 → 0.0.59

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.
@@ -32,6 +32,8 @@ export interface CreateUnitResponse {
32
32
  unitId: string;
33
33
  }
34
34
  export interface UpdateUnitResponse extends CreateUnitResponse {
35
+ status?: string;
36
+ latency_ms?: number;
35
37
  }
36
38
  export interface RepoUnitInfo {
37
39
  id: string;
@@ -87,7 +89,10 @@ export interface StorageUnit {
87
89
  bucket: string;
88
90
  storageType: StorageType;
89
91
  key: string;
92
+ secret: string;
90
93
  endpoint?: string;
94
+ status?: string;
95
+ latency_ms?: number;
91
96
  }
92
97
  export interface GetUnitsResponse {
93
98
  success: boolean;
@@ -110,4 +115,6 @@ export interface ValidateUnitRequest {
110
115
  export interface ValidateUnitResponse {
111
116
  success: boolean;
112
117
  message?: string;
118
+ status?: string;
119
+ latency_ms?: number;
113
120
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flashbacktech/flashbackclient",
3
- "version": "0.0.57",
3
+ "version": "0.0.59",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },