web-dc-api 0.0.46 → 0.0.47
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.
- package/dist/dc.min.js +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.esm.js +1 -1
- package/lib/common/chain.ts +10 -10
- package/lib/common/service-worker.ts +18 -1
- package/lib/implements/account/manager.ts +2 -2
- package/lib/implements/comment/client.ts +53 -1
- package/lib/implements/comment/manager.ts +19 -1
- package/lib/interfaces/util-interface.ts +2 -2
- package/lib/modules/auth-module.ts +16 -11
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -27120,12 +27120,12 @@ interface IUtilOperations {
|
|
|
27120
27120
|
/**
|
|
27121
27121
|
* 设置应用信息,发布应用时调用
|
|
27122
27122
|
* @param appId string 应用ID
|
|
27123
|
-
* @param domain
|
|
27124
27123
|
* @param fid
|
|
27124
|
+
* @param domain
|
|
27125
27125
|
* @param owner
|
|
27126
27126
|
* @param rewarder
|
|
27127
27127
|
*/
|
|
27128
|
-
setAppInfo(appId: string,
|
|
27128
|
+
setAppInfo(appId: string, fid: string, domain: string, owner?: string, rewarder?: string): Promise<[boolean | null, Error | null]>;
|
|
27129
27129
|
getAppInfo(appId: string): Promise<[IAppInfo | null, Error | null]>;
|
|
27130
27130
|
}
|
|
27131
27131
|
|