@stvor/sdk 2.1.0 → 2.2.1
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/facade/app.d.ts +2 -0
- package/dist/facade/app.js +6 -1
- package/package.json +5 -5
package/dist/facade/app.d.ts
CHANGED
|
@@ -21,7 +21,9 @@ export declare class StvorApp {
|
|
|
21
21
|
disconnect(userId?: UserId): Promise<void>;
|
|
22
22
|
}
|
|
23
23
|
export declare function init(config: StvorAppConfig): Promise<StvorApp>;
|
|
24
|
+
export declare const createApp: typeof init;
|
|
24
25
|
export declare const Stvor: {
|
|
25
26
|
init: typeof init;
|
|
27
|
+
createApp: typeof init;
|
|
26
28
|
};
|
|
27
29
|
export {};
|
package/dist/facade/app.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stvor/sdk",
|
|
3
|
-
"version": "2.1
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"description": "Stvor DX Facade - Simple E2EE SDK for client-side encryption",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"test": "echo \"No tests yet\" && exit 0"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"ws": "^8.13.0"
|
|
46
|
+
"ws": "^8.13.0",
|
|
47
|
+
"libsodium-wrappers": "^0.7.13",
|
|
48
|
+
"prom-client": "^14.0.0"
|
|
47
49
|
},
|
|
48
|
-
"peerDependencies": {
|
|
49
|
-
"libsodium-wrappers": "^0.7.13"
|
|
50
|
-
}
|
|
50
|
+
"peerDependencies": {}
|
|
51
51
|
}
|