jazz-tools 0.9.15 → 0.9.16

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.
@@ -26,7 +26,7 @@ import {
26
26
  loadCoValue,
27
27
  randomSessionProvider,
28
28
  subscribeToCoValue
29
- } from "./chunk-ICWP2U63.js";
29
+ } from "./chunk-7OI3SFBS.js";
30
30
 
31
31
  // src/index.native.ts
32
32
  import {
package/dist/index.web.js CHANGED
@@ -26,7 +26,7 @@ import {
26
26
  loadCoValue,
27
27
  randomSessionProvider,
28
28
  subscribeToCoValue
29
- } from "./chunk-ICWP2U63.js";
29
+ } from "./chunk-7OI3SFBS.js";
30
30
 
31
31
  // src/index.web.ts
32
32
  import { cojsonInternals, MAX_RECOMMENDED_TX_SIZE, WasmCrypto } from "cojson";
package/dist/testing.js CHANGED
@@ -2,7 +2,7 @@ import {
2
2
  Account,
3
3
  activeAccountContext,
4
4
  createAnonymousJazzContext
5
- } from "./chunk-ICWP2U63.js";
5
+ } from "./chunk-7OI3SFBS.js";
6
6
 
7
7
  // src/testing.ts
8
8
  import { LocalNode } from "cojson";
package/package.json CHANGED
@@ -23,7 +23,7 @@
23
23
  },
24
24
  "type": "module",
25
25
  "license": "MIT",
26
- "version": "0.9.15",
26
+ "version": "0.9.16",
27
27
  "dependencies": {
28
28
  "cojson": "0.9.13"
29
29
  },
@@ -31,7 +31,11 @@ export type AuthResult =
31
31
  }
32
32
  | {
33
33
  type: "new";
34
- creationProps: { name: string; anonymous?: boolean };
34
+ creationProps: {
35
+ name: string;
36
+ anonymous?: boolean;
37
+ other?: Record<string, unknown>;
38
+ };
35
39
  initialSecret?: AgentSecret;
36
40
  saveCredentials: (credentials: Credentials) => Promise<void>;
37
41
  onSuccess: () => void;