@flashbacktech/flashbackclient 0.1.84 → 0.1.86
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.
|
@@ -25,6 +25,7 @@ export interface CreateUnitRequest {
|
|
|
25
25
|
secret: string;
|
|
26
26
|
endpoint?: string;
|
|
27
27
|
region?: string;
|
|
28
|
+
workspaceId: string;
|
|
28
29
|
}
|
|
29
30
|
export interface GetUnitNodeStatsRequest {
|
|
30
31
|
day: Date;
|
|
@@ -64,6 +65,7 @@ export interface CreateRepoRequest {
|
|
|
64
65
|
storageType: StorageType;
|
|
65
66
|
mode: ModeType;
|
|
66
67
|
repoUnits: RepoUnitInfo[];
|
|
68
|
+
workspaceId: string;
|
|
67
69
|
}
|
|
68
70
|
export interface CreateRepoResponse {
|
|
69
71
|
success: boolean;
|
|
@@ -101,6 +103,7 @@ export interface StorageRepo {
|
|
|
101
103
|
apiKeys?: ApiKey[];
|
|
102
104
|
createdAt: string;
|
|
103
105
|
disabled?: boolean;
|
|
106
|
+
workspaceId: string;
|
|
104
107
|
}
|
|
105
108
|
export interface ApiKey {
|
|
106
109
|
id: string;
|
|
@@ -128,6 +131,7 @@ export interface StorageUnit {
|
|
|
128
131
|
status?: string;
|
|
129
132
|
projectId?: string;
|
|
130
133
|
createdAt: string;
|
|
134
|
+
workspaceId: string;
|
|
131
135
|
}
|
|
132
136
|
export interface GetUnitsResponse {
|
|
133
137
|
success: boolean;
|
|
@@ -212,6 +216,7 @@ export interface CreateRepoWithBucketsRequest {
|
|
|
212
216
|
storageType: StorageType;
|
|
213
217
|
mode: ModeType;
|
|
214
218
|
repoBuckets: RepoBucketInfo[];
|
|
219
|
+
workspaceId: string;
|
|
215
220
|
}
|
|
216
221
|
export interface UpdateRepoWithBucketsRequest extends CreateRepoWithBucketsRequest {
|
|
217
222
|
}
|