更新版本至 0.0.45,升级依赖项并新增发布应用功能

This commit is contained in:
2026-02-05 14:08:56 +08:00
parent 2d7375e32d
commit 4e36d01fb1
4 changed files with 58 additions and 18 deletions

View File

@@ -29,4 +29,21 @@ export class QueryApp extends BaseQuery {
data: data,
}, opts);
}
/**
* 发布应用
* @param data
* @param opts
* @returns
*/
publichApp(data: {
id?: string;
username?: string,
detect?: boolean,
}, opts?: DataOpts) {
return this.query.post({
path: 'app',
key: 'publish',
data: { detect: true, ...data },
}, opts);
}
}

View File

@@ -0,0 +1,2 @@
import { RemoteApp } from '@Kevisual/remote-app'