@flashbacktech/flashbackclient 0.2.35 → 0.2.36
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.
|
@@ -28,6 +28,7 @@ export interface CreateUnitRequest {
|
|
|
28
28
|
endpoint?: string;
|
|
29
29
|
region?: string;
|
|
30
30
|
workspaceId: string;
|
|
31
|
+
walletAddress?: string;
|
|
31
32
|
}
|
|
32
33
|
export interface GetUnitNodeStatsRequest {
|
|
33
34
|
day: Date;
|
|
@@ -69,6 +70,7 @@ export interface CreateRepoRequest {
|
|
|
69
70
|
repoUnits: RepoUnitInfo[];
|
|
70
71
|
repoAiLlms?: RepoAiLlmInfo[];
|
|
71
72
|
workspaceId: string;
|
|
73
|
+
walletAddress?: string;
|
|
72
74
|
}
|
|
73
75
|
export interface CreateRepoResponse {
|
|
74
76
|
success: boolean;
|
|
@@ -108,6 +110,7 @@ export interface StorageRepo {
|
|
|
108
110
|
createdAt: string;
|
|
109
111
|
disabled?: boolean;
|
|
110
112
|
workspaceId: string;
|
|
113
|
+
walletAddress?: string;
|
|
111
114
|
}
|
|
112
115
|
export interface ApiKey {
|
|
113
116
|
id: string;
|
|
@@ -142,6 +145,7 @@ export interface StorageBucket {
|
|
|
142
145
|
projectId?: string;
|
|
143
146
|
createdAt: string;
|
|
144
147
|
workspaceId: string;
|
|
148
|
+
walletAddress?: string;
|
|
145
149
|
repos?: StorageRepoBasic[];
|
|
146
150
|
}
|
|
147
151
|
export interface GetUnitsResponse {
|
|
@@ -229,6 +233,7 @@ export interface CreateRepoWithBucketsRequest {
|
|
|
229
233
|
repoBuckets: RepoBucketInfo[];
|
|
230
234
|
repoAiLlms?: RepoAiLlmInfo[];
|
|
231
235
|
workspaceId: string;
|
|
236
|
+
walletAddress?: string;
|
|
232
237
|
}
|
|
233
238
|
export interface UpdateRepoWithBucketsRequest extends CreateRepoWithBucketsRequest {
|
|
234
239
|
}
|
|
@@ -244,6 +249,7 @@ export interface StorageRepoWithBuckets {
|
|
|
244
249
|
aiApiKeys?: RepoAiApiKeyDTO[];
|
|
245
250
|
createdAt: string;
|
|
246
251
|
disabled?: boolean;
|
|
252
|
+
walletAddress?: string;
|
|
247
253
|
}
|
|
248
254
|
export interface ValidateRepoBucketsRequest {
|
|
249
255
|
repoId: string;
|