jazz-react-native 0.8.3 → 0.8.6
Sign up to get free protection for your applications and to get access to all the features.
- package/.turbo/turbo-build.log +8 -0
- package/CHANGELOG.md +18 -0
- package/dist/index.d.ts +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,23 @@
|
|
1
1
|
# jazz-browser
|
2
2
|
|
3
|
+
## 0.8.6
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- Updated dependencies [5542fdb]
|
8
|
+
- cojson-transport-ws@0.8.6
|
9
|
+
|
10
|
+
## 0.8.5
|
11
|
+
|
12
|
+
### Patch Changes
|
13
|
+
|
14
|
+
- c3f4e6b: Fix order of exports fields in package.json
|
15
|
+
- Updated dependencies [c3f4e6b]
|
16
|
+
- Updated dependencies [d9152ed]
|
17
|
+
- jazz-tools@0.8.5
|
18
|
+
- cojson@0.8.5
|
19
|
+
- cojson-transport-ws@0.8.5
|
20
|
+
|
3
21
|
## 0.8.3
|
4
22
|
|
5
23
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
@@ -31,7 +31,7 @@ export declare function createJazzRNContext<Acc extends Account>(options: Browse
|
|
31
31
|
/** @category Auth Providers */
|
32
32
|
export type SessionProvider = (accountID: ID<Account> | AgentID) => Promise<SessionID>;
|
33
33
|
export declare function provideLockSession(accountID: ID<Account> | AgentID, crypto: CryptoProvider): Promise<{
|
34
|
-
sessionID:
|
34
|
+
sessionID: `sealer_z${string}/signer_z${string}_session_z${string}` | `${RawAccountID}_session_z${string}`;
|
35
35
|
sessionDone: () => void;
|
36
36
|
}>;
|
37
37
|
/** @category Invite Links */
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "jazz-react-native",
|
3
|
-
"version": "0.8.
|
3
|
+
"version": "0.8.6",
|
4
4
|
"type": "module",
|
5
5
|
"main": "./dist/index.js",
|
6
6
|
"module": "./dist/index.js",
|
@@ -9,17 +9,17 @@
|
|
9
9
|
"exports": {
|
10
10
|
".": {
|
11
11
|
"react-native": "./dist/index.js",
|
12
|
-
"
|
13
|
-
"
|
12
|
+
"types": "./dist/index.d.ts",
|
13
|
+
"default": "./dist/index.js"
|
14
14
|
}
|
15
15
|
},
|
16
16
|
"license": "MIT",
|
17
17
|
"dependencies": {
|
18
18
|
"@scure/bip39": "^1.3.0",
|
19
19
|
"typescript": "^5.3.3",
|
20
|
-
"cojson": "0.8.
|
21
|
-
"
|
22
|
-
"
|
20
|
+
"cojson": "0.8.5",
|
21
|
+
"jazz-tools": "0.8.5",
|
22
|
+
"cojson-transport-ws": "0.8.6"
|
23
23
|
},
|
24
24
|
"peerDependencies": {
|
25
25
|
"@react-native-community/netinfo": "^11.4.1",
|