cojson 0.9.13 → 0.9.18

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,12 +1,12 @@
1
1
 
2
- > cojson@0.9.13 build /home/runner/work/jazz/jazz/packages/cojson
2
+ > cojson@0.9.18 build /home/runner/work/jazz/jazz/packages/cojson
3
3
  > rm -rf ./dist && pnpm run build:native && pnpm run build:web
4
4
 
5
5
 
6
- > cojson@0.9.13 build:native /home/runner/work/jazz/jazz/packages/cojson
6
+ > cojson@0.9.18 build:native /home/runner/work/jazz/jazz/packages/cojson
7
7
  > tsc --sourceMap --outDir dist/native -p tsconfig.native.json
8
8
 
9
9
 
10
- > cojson@0.9.13 build:web /home/runner/work/jazz/jazz/packages/cojson
10
+ > cojson@0.9.18 build:web /home/runner/work/jazz/jazz/packages/cojson
11
11
  > tsc --sourceMap --outDir dist/web -p tsconfig.web.json
12
12
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # cojson
2
2
 
3
+ ## 0.9.18
4
+
5
+ ### Patch Changes
6
+
7
+ - 8898b10: Export AccountRole type
8
+
3
9
  ## 0.9.13
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -24,7 +24,7 @@
24
24
  },
25
25
  "type": "module",
26
26
  "license": "MIT",
27
- "version": "0.9.13",
27
+ "version": "0.9.18",
28
28
  "devDependencies": {
29
29
  "@opentelemetry/sdk-metrics": "^1.29.0",
30
30
  "@types/jest": "^29.5.3",
package/src/exports.ts CHANGED
@@ -38,7 +38,7 @@ import {
38
38
  } from "./ids.js";
39
39
  import { Stringified, parseJSON, stableStringify } from "./jsonStringify.js";
40
40
  import { LocalNode } from "./localNode.js";
41
- import type { Role } from "./permissions.js";
41
+ import type { AccountRole, Role } from "./permissions.js";
42
42
  import { Channel, connectedPeers } from "./streamUtils.js";
43
43
  import { accountOrAgentIDfromSessionID } from "./typeUtils/accountOrAgentIDfromSessionID.js";
44
44
  import { expectGroup } from "./typeUtils/expectGroup.js";
@@ -158,6 +158,7 @@ export type {
158
158
  Stringified,
159
159
  CoStreamItem,
160
160
  OpID,
161
+ AccountRole,
161
162
  };
162
163
 
163
164
  // eslint-disable-next-line @typescript-eslint/no-namespace