This commit is contained in:
2025-10-23 12:14:03 +08:00
parent 900a72e4c9
commit f9fdb1a6c2
49 changed files with 851 additions and 8129 deletions

View File

@@ -191,11 +191,11 @@ class StorageSDKImpl extends SDKBase implements StorageSDK {
}
async get<T = any>(key: string): Promise<APIResponse<T | null>> {
return this.wrapResponse(this.sendToSystem('storage.get', { key }))
return this.wrapResponse(this.sendToSystem('storage.getWindowForm', { key }))
}
async remove(key: string): Promise<APIResponse<boolean>> {
return this.wrapResponse(this.sendToSystem('storage.remove', { key }))
return this.wrapResponse(this.sendToSystem('storage.removeWindowForm', { key }))
}
async clear(): Promise<APIResponse<boolean>> {