liangzimixin 0.3.47 → 0.3.48
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/index.cjs +1 -1
- package/dist/setup-entry.cjs +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -21176,7 +21176,7 @@ async function startPlugin(accountConfig, internalOverrides) {
|
|
|
21176
21176
|
appId: accountConfig.appId,
|
|
21177
21177
|
appSecret: accountConfig.appSecret
|
|
21178
21178
|
});
|
|
21179
|
-
const tokenStorePath = (0, import_node_path3.join)((0, import_node_os.homedir)(), TOKEN_STORE_DIR, "tokens");
|
|
21179
|
+
const tokenStorePath = (0, import_node_path3.join)((0, import_node_os.homedir)(), TOKEN_STORE_DIR, "tokens", accountConfig.appId);
|
|
21180
21180
|
const tokenStore = new TokenStore(tokenStorePath, cryptoEngine);
|
|
21181
21181
|
const tokenManager = new TokenManager({
|
|
21182
21182
|
oauthClient,
|
package/dist/setup-entry.cjs
CHANGED
|
@@ -20297,7 +20297,7 @@ async function startPlugin(accountConfig, internalOverrides) {
|
|
|
20297
20297
|
appId: accountConfig.appId,
|
|
20298
20298
|
appSecret: accountConfig.appSecret
|
|
20299
20299
|
});
|
|
20300
|
-
const tokenStorePath = (0, import_node_path3.join)((0, import_node_os.homedir)(), TOKEN_STORE_DIR, "tokens");
|
|
20300
|
+
const tokenStorePath = (0, import_node_path3.join)((0, import_node_os.homedir)(), TOKEN_STORE_DIR, "tokens", accountConfig.appId);
|
|
20301
20301
|
const tokenStore = new TokenStore(tokenStorePath, cryptoEngine);
|
|
20302
20302
|
const tokenManager = new TokenManager({
|
|
20303
20303
|
oauthClient,
|