@membox-cloud/membox 0.1.5 → 0.1.6
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/src/constants.d.ts +1 -1
- package/dist/src/constants.js +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/src/constants.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const PLUGIN_ID = "membox";
|
|
2
|
-
export declare const PLUGIN_VERSION = "0.1.
|
|
2
|
+
export declare const PLUGIN_VERSION = "0.1.6";
|
|
3
3
|
export declare const DEFAULT_SERVER_URL = "https://membox.cloud";
|
|
4
4
|
export declare const API_PREFIX = "/api/v1";
|
|
5
5
|
export declare const KEYCHAIN_SERVICE: string;
|
package/dist/src/constants.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { homedir } from "node:os";
|
|
2
2
|
import { join } from "node:path";
|
|
3
3
|
export const PLUGIN_ID = "membox";
|
|
4
|
-
export const PLUGIN_VERSION = "0.1.
|
|
4
|
+
export const PLUGIN_VERSION = "0.1.6";
|
|
5
5
|
export const DEFAULT_SERVER_URL = "https://membox.cloud";
|
|
6
6
|
export const API_PREFIX = "/api/v1";
|
|
7
7
|
export const KEYCHAIN_SERVICE = process.env.MEMBOX_KEYCHAIN_SERVICE || "membox.cloud";
|
package/openclaw.plugin.json
CHANGED