@flashbacktech/flashbackclient 0.0.62 → 0.0.64

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.
@@ -38,6 +38,7 @@ export interface UpdateUnitResponse extends CreateUnitResponse {
38
38
  export interface RepoUnitInfo {
39
39
  id: string;
40
40
  folder: string;
41
+ data?: StorageUnit;
41
42
  }
42
43
  export interface CreateRepoRequest {
43
44
  name: string;
@@ -75,6 +76,7 @@ export interface StorageRepo {
75
76
  mode: ModeType;
76
77
  repoUnits: RepoUnitInfo[];
77
78
  apiKeys: ApiKey[];
79
+ createdAt: string;
78
80
  }
79
81
  export interface ApiKey {
80
82
  id: string;
@@ -96,6 +98,7 @@ export interface StorageUnit {
96
98
  status?: string;
97
99
  latency_ms?: number;
98
100
  projectId?: string;
101
+ createdAt: string;
99
102
  }
100
103
  export interface GetUnitsResponse {
101
104
  success: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flashbacktech/flashbackclient",
3
- "version": "0.0.62",
3
+ "version": "0.0.64",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },