We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 042331b commit abeda9aCopy full SHA for abeda9a
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "klepper",
3
- "version": "0.0.43-alpha",
+ "version": "0.0.45-alpha",
4
"license": "MIT",
5
"main": "dist/index.js",
6
"types": "dist/index.d.ts",
src/node/sdk.ts
@@ -39,6 +39,6 @@ export const connect = (
39
}
40
41
if (!isClientConnected()) {
42
- setGlobalClientData({ privateKey: options.privateKey });
+ setGlobalClientData({ privateKey: options?.privateKey, appId: options?.appId });
43
44
};
0 commit comments