@xyo-network/boundwitness-validator 3.18.9 → 4.0.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.
@@ -1 +1 @@
1
- {"version":3,"file":"BoundWitnessArrayProperty.d.ts","sourceRoot":"","sources":["../../../../src/lib/util/BoundWitnessArrayProperty.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAA;AAEnE;;GAEG;AACH,MAAM,MAAM,yBAAyB,GAAG,MAAM,IAAI,CAAC,YAAY,EAC7D,WAAW,GAEX,gBAAgB,GAChB,iBAAiB,CAElB,CAAA;AAED;;GAEG;AACH,MAAM,MAAM,8BAA8B,CAAC,CAAC,SAAS,yBAAyB,IAAI,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,EAAE,GAAG,CAAC,GAAG,KAAK,CAAA"}
1
+ {"version":3,"file":"BoundWitnessArrayProperty.d.ts","sourceRoot":"","sources":["../../../../src/lib/util/BoundWitnessArrayProperty.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAA;AAEnE;;GAEG;AACH,MAAM,MAAM,yBAAyB,GAAG,MAAM,IAAI,CAAC,YAAY,EAC7D,WAAW,GAET,gBAAgB,GAChB,iBAAiB,CAEpB,CAAA;AAED;;GAEG;AACH,MAAM,MAAM,8BAA8B,CAAC,CAAC,SAAS,yBAAyB,IAAI,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,EAAE,GAAG,CAAC,GAAG,KAAK,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/boundwitness-validator",
3
- "version": "3.18.9",
3
+ "version": "4.0.0",
4
4
  "description": "Primary SDK for using XYO Protocol 2.0",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -29,26 +29,26 @@
29
29
  "module": "dist/neutral/index.mjs",
30
30
  "types": "dist/types/index.d.ts",
31
31
  "dependencies": {
32
- "@xylabs/array": "^4.11.21",
33
- "@xylabs/arraybuffer": "^4.11.21",
34
- "@xylabs/hex": "^4.11.21",
35
- "@xylabs/typeof": "^4.11.21",
36
- "@xyo-network/boundwitness-model": "^3.18.9",
37
- "@xyo-network/elliptic": "^3.18.9",
38
- "@xyo-network/payload": "^3.18.9",
39
- "@xyo-network/payload-model": "^3.18.9",
40
- "@xyo-network/payload-validator": "^3.18.9"
32
+ "@xylabs/array": "^4.12.30",
33
+ "@xylabs/arraybuffer": "^4.12.30",
34
+ "@xylabs/hex": "^4.12.30",
35
+ "@xylabs/typeof": "^4.12.30",
36
+ "@xyo-network/boundwitness-model": "^4.0.0",
37
+ "@xyo-network/elliptic": "^4.0.0",
38
+ "@xyo-network/payload": "^4.0.0",
39
+ "@xyo-network/payload-model": "^4.0.0",
40
+ "@xyo-network/payload-validator": "^4.0.0"
41
41
  },
42
42
  "devDependencies": {
43
- "@xylabs/ts-scripts-yarn3": "^6.5.8",
44
- "@xylabs/tsconfig": "^6.5.8",
45
- "@xylabs/vitest-extended": "^4.11.21",
46
- "@xyo-network/boundwitness-builder": "^3.18.9",
47
- "@xyo-network/schema-name-validator": "^3.18.9",
48
- "@xyo-network/wallet": "^3.18.9",
49
- "@xyo-network/wallet-model": "^3.18.9",
43
+ "@xylabs/ts-scripts-yarn3": "^6.5.12",
44
+ "@xylabs/tsconfig": "^6.5.12",
45
+ "@xylabs/vitest-extended": "^4.12.30",
46
+ "@xyo-network/boundwitness-builder": "^4.0.0",
47
+ "@xyo-network/schema-name-validator": "^4.0.0",
48
+ "@xyo-network/wallet": "^4.0.0",
49
+ "@xyo-network/wallet-model": "^4.0.0",
50
50
  "typescript": "^5.8.3",
51
- "vitest": "^3.2.3"
51
+ "vitest": "^3.2.4"
52
52
  },
53
53
  "publishConfig": {
54
54
  "access": "public"
@@ -4,10 +4,10 @@ import type { BoundWitness } from '@xyo-network/boundwitness-model'
4
4
  * The properties of a boundwitness that are string-like arrays
5
5
  */
6
6
  export type BoundWitnessArrayProperty = keyof Pick<BoundWitness,
7
- 'addresses' |
7
+ 'addresses'
8
8
  // 'error_hashes' |
9
- 'payload_hashes' |
10
- 'payload_schemas'
9
+ | 'payload_hashes'
10
+ | 'payload_schemas'
11
11
  // 'previous_hashes'
12
12
  >
13
13