@xyo-network/sentinel-wrapper 5.0.0 → 5.0.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/sentinel-wrapper",
3
- "version": "5.0.0",
3
+ "version": "5.0.1",
4
4
  "description": "Primary SDK for using XYO Protocol 2.0",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -33,30 +33,31 @@
33
33
  "src"
34
34
  ],
35
35
  "dependencies": {
36
- "@xyo-network/account-model": "^5.0.0",
37
- "@xyo-network/archivist-model": "^5.0.0",
38
- "@xyo-network/module-model": "^5.0.0",
39
- "@xyo-network/module-wrapper": "^5.0.0",
40
- "@xyo-network/payload-model": "^5.0.0",
41
- "@xyo-network/sentinel-model": "^5.0.0",
42
- "@xyo-network/witness-model": "^5.0.0"
36
+ "@xyo-network/account-model": "~5.0.1",
37
+ "@xyo-network/archivist-model": "~5.0.1",
38
+ "@xyo-network/module-model": "~5.0.1",
39
+ "@xyo-network/module-wrapper": "~5.0.1",
40
+ "@xyo-network/payload-model": "~5.0.1",
41
+ "@xyo-network/sentinel-model": "~5.0.1",
42
+ "@xyo-network/witness-model": "~5.0.1"
43
43
  },
44
44
  "devDependencies": {
45
- "@xylabs/delay": "^5.0.0",
46
- "@xylabs/ts-scripts-yarn3": "^7.0.2",
47
- "@xylabs/tsconfig": "^7.0.2",
48
- "@xylabs/vitest-extended": "^5.0.0",
49
- "@xyo-network/abstract-witness": "^5.0.0",
50
- "@xyo-network/account": "^5.0.0",
51
- "@xyo-network/archivist-memory": "^5.0.0",
52
- "@xyo-network/boundwitness-model": "^5.0.0",
53
- "@xyo-network/module-model": "^5.0.0",
54
- "@xyo-network/node-memory": "^5.0.0",
55
- "@xyo-network/payload-builder": "^5.0.0",
56
- "@xyo-network/sentinel-memory": "^5.0.0",
57
- "@xyo-network/witness-adhoc": "^5.0.0",
58
- "typescript": "^5.8.3",
59
- "vitest": "^3.2.4"
45
+ "@xylabs/creatable": "~5.0.3",
46
+ "@xylabs/delay": "~5.0.3",
47
+ "@xylabs/ts-scripts-yarn3": "~7.1.0",
48
+ "@xylabs/tsconfig": "~7.1.0",
49
+ "@xylabs/vitest-extended": "~5.0.3",
50
+ "@xyo-network/abstract-witness": "~5.0.1",
51
+ "@xyo-network/account": "~5.0.1",
52
+ "@xyo-network/archivist-memory": "~5.0.1",
53
+ "@xyo-network/boundwitness-model": "~5.0.1",
54
+ "@xyo-network/module-model": "~5.0.1",
55
+ "@xyo-network/node-memory": "~5.0.1",
56
+ "@xyo-network/payload-builder": "~5.0.1",
57
+ "@xyo-network/sentinel-memory": "~5.0.1",
58
+ "@xyo-network/witness-adhoc": "~5.0.1",
59
+ "typescript": "~5.9.2",
60
+ "vitest": "~3.2.4"
60
61
  },
61
62
  "publishConfig": {
62
63
  "access": "public"
@@ -1,5 +1,6 @@
1
1
  import '@xylabs/vitest-extended'
2
2
 
3
+ import type { CreatableName } from '@xylabs/creatable'
3
4
  import { delay } from '@xylabs/delay'
4
5
  import type { AbstractWitness } from '@xyo-network/abstract-witness'
5
6
  import { Account } from '@xyo-network/account'
@@ -117,7 +118,7 @@ describe('Sentinel', () => {
117
118
  }),
118
119
  )
119
120
  const params: MemorySentinelParams<SentinelConfig> = {
120
- name: 'TestSentinel',
121
+ name: 'TestSentinel' as CreatableName,
121
122
  account: 'random',
122
123
  config: {
123
124
  archiving: { archivists: [archivistA.address, archivistB.address] },