jazz-vue 0.11.0 → 0.11.2

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > jazz-vue@0.11.0 build /home/runner/_work/jazz/jazz/packages/jazz-vue
2
+ > jazz-vue@0.11.2 build /home/runner/_work/jazz/jazz/packages/jazz-vue
3
3
  > rm -rf ./dist && vite build
4
4
 
5
5
  vite v6.0.11 building for production...
@@ -12,6 +12,6 @@ computing gzip size...
12
12
  dist/testing.js  1.19 kB │ gzip: 0.52 kB │ map: 1.70 kB
13
13
  dist/provider-CkA-a4Og.js  2.32 kB │ gzip: 0.81 kB │ map: 4.54 kB
14
14
  dist/index.js 13.97 kB │ gzip: 3.54 kB │ map: 22.38 kB
15
- [vite:dts] Declaration files built in 3807ms.
15
+ [vite:dts] Declaration files built in 3660ms.
16
16
 
17
- ✓ built in 3.90s
17
+ ✓ built in 3.77s
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # jazz-react
2
2
 
3
+ ## 0.11.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [6892dc6]
8
+ - jazz-tools@0.11.2
9
+ - jazz-browser@0.11.2
10
+
3
11
  ## 0.11.0
4
12
 
5
13
  ### Patch Changes
@@ -1 +1 @@
1
- export declare function useIsAuthenticated(): any;
1
+ export declare function useIsAuthenticated(): import('vue').Ref<boolean, boolean>;
@@ -12,9 +12,9 @@ export declare function usePassphraseAuth({ wordlist, }: {
12
12
  wordlist: string[];
13
13
  }): import('vue').ComputedRef<{
14
14
  state: string;
15
- logIn: any;
16
- signUp: any;
17
- registerNewAccount: any;
18
- generateRandomPassphrase: any;
19
- passphrase: any;
15
+ logIn: (passphrase: string) => Promise<void>;
16
+ signUp: (name?: string) => Promise<string>;
17
+ registerNewAccount: (passphrase: string, name: string) => Promise<import('jazz-tools').ID<import('jazz-tools').Account>>;
18
+ generateRandomPassphrase: () => string;
19
+ passphrase: string;
20
20
  }>;