@flashbacktech/flashbackclient 0.0.67 → 0.0.68

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.
@@ -39,7 +39,7 @@ export interface RepoUnitInfo {
39
39
  id: string;
40
40
  folder: string;
41
41
  master: boolean;
42
- data?: StorageUnit;
42
+ unit?: StorageUnit;
43
43
  }
44
44
  export interface CreateRepoRequest {
45
45
  name: string;
@@ -77,7 +77,7 @@ export interface StorageRepo {
77
77
  name: string;
78
78
  storageType: StorageType;
79
79
  mode: ModeType;
80
- repoUnits: RepoUnitInfo[];
80
+ units: RepoUnitInfo[];
81
81
  apiKeys?: ApiKey[];
82
82
  createdAt: string;
83
83
  }
@@ -86,7 +86,7 @@ export interface ApiKey {
86
86
  name: string;
87
87
  accessType: AccessType;
88
88
  key: string;
89
- secret: string;
89
+ secret?: string;
90
90
  createdAt: string;
91
91
  }
92
92
  export interface StorageUnit {
@@ -95,7 +95,7 @@ export interface StorageUnit {
95
95
  bucket: string;
96
96
  storageType: StorageType;
97
97
  key: string;
98
- secret: string;
98
+ secret?: string;
99
99
  endpoint?: string;
100
100
  region?: string;
101
101
  status?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flashbacktech/flashbackclient",
3
- "version": "0.0.67",
3
+ "version": "0.0.68",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },