@percayso/identity-contracts 0.1.0 → 0.2.0

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.
package/dist/assertion.js CHANGED
@@ -65,6 +65,10 @@ export const ASSERTION_OPERATIONS = Object.freeze([
65
65
  "cancel-purchase",
66
66
  "provision-citizenship",
67
67
  "read-own-citizenship",
68
+ // Added by `@cayso/contracts@0.9.0`. Present because this list MIRRORS the
69
+ // contract's vocabulary and is pinned to it in both directions — not because this
70
+ // package asserts anything about which operations an issuer mints for.
71
+ "provision-organisation",
68
72
  ]);
69
73
  /**
70
74
  * A scope that is known to be non-empty, or a refusal.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@percayso/identity-contracts",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Percayso ID wire types: identifiers, closed lifecycle states, the closed refusal union, the evidence vocabulary and a thin client.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -33,15 +33,16 @@
33
33
  },
34
34
  "scripts": {
35
35
  "build": "rm -rf dist && tsc -p tsconfig.build.json",
36
+ "dev": "vitest",
36
37
  "lint": "eslint .",
37
38
  "typecheck": "tsc -p tsconfig.json",
38
39
  "test": "vitest run"
39
40
  },
40
41
  "peerDependencies": {
41
- "@cayso/contracts": "0.6.1"
42
+ "@cayso/contracts": "0.9.0"
42
43
  },
43
44
  "devDependencies": {
44
- "@cayso/contracts": "0.6.1",
45
+ "@cayso/contracts": "0.9.0",
45
46
  "typescript": "6.0.3",
46
47
  "vitest": "5.0.0"
47
48
  }