@xyo-network/archivist 5.3.30 → 5.4.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.
@@ -0,0 +1,2 @@
1
+ export * from '@xyo-network/archivist-abstract';
2
+ //# sourceMappingURL=abstract.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"abstract.d.ts","sourceRoot":"","sources":["../../src/abstract.ts"],"names":[],"mappings":"AAAA,cAAc,iCAAiC,CAAA"}
@@ -0,0 +1,3 @@
1
+ // src/abstract.ts
2
+ export * from "@xyo-network/archivist-abstract";
3
+ //# sourceMappingURL=abstract.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/abstract.ts"],"sourcesContent":["export * from '@xyo-network/archivist-abstract'\n"],"mappings":";AAAA,cAAc;","names":[]}
@@ -0,0 +1,2 @@
1
+ export * from '@xyo-network/archivist-model';
2
+ //# sourceMappingURL=model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"model.d.ts","sourceRoot":"","sources":["../../src/model.ts"],"names":[],"mappings":"AAAA,cAAc,8BAA8B,CAAA"}
@@ -0,0 +1,3 @@
1
+ // src/model.ts
2
+ export * from "@xyo-network/archivist-model";
3
+ //# sourceMappingURL=model.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/model.ts"],"sourcesContent":["export * from '@xyo-network/archivist-model'\n"],"mappings":";AAAA,cAAc;","names":[]}
@@ -0,0 +1,2 @@
1
+ export * from '@xyo-network/archivist-wrapper';
2
+ //# sourceMappingURL=wrapper.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"wrapper.d.ts","sourceRoot":"","sources":["../../src/wrapper.ts"],"names":[],"mappings":"AAAA,cAAc,gCAAgC,CAAA"}
@@ -0,0 +1,3 @@
1
+ // src/wrapper.ts
2
+ export * from "@xyo-network/archivist-wrapper";
3
+ //# sourceMappingURL=wrapper.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/wrapper.ts"],"sourcesContent":["export * from '@xyo-network/archivist-wrapper'\n"],"mappings":";AAAA,cAAc;","names":[]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/archivist",
3
- "version": "5.3.30",
3
+ "version": "5.4.1",
4
4
  "description": "Primary SDK for using XYO Protocol 2.0",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -22,12 +22,22 @@
22
22
  "exports": {
23
23
  ".": {
24
24
  "types": "./dist/neutral/index.d.ts",
25
- "import": "./dist/neutral/index.mjs",
26
25
  "default": "./dist/neutral/index.mjs"
27
26
  },
27
+ "./model": {
28
+ "types": "./dist/neutral/model.d.ts",
29
+ "default": "./dist/neutral/model.mjs"
30
+ },
31
+ "./abstract": {
32
+ "types": "./dist/neutral/abstract.d.ts",
33
+ "default": "./dist/neutral/abstract.mjs"
34
+ },
35
+ "./wrapper": {
36
+ "types": "./dist/neutral/wrapper.d.ts",
37
+ "default": "./dist/neutral/wrapper.mjs"
38
+ },
28
39
  "./package.json": "./package.json"
29
40
  },
30
- "types": "dist/neutral/index.d.ts",
31
41
  "files": [
32
42
  "dist",
33
43
  "!**/*.bench.*",
@@ -36,94 +46,92 @@
36
46
  "README.md"
37
47
  ],
38
48
  "dependencies": {
39
- "@xyo-network/archivist-abstract": "~5.3.30",
40
- "@xyo-network/archivist-memory": "~5.3.30",
41
- "@xyo-network/archivist-model": "~5.3.30",
42
- "@xyo-network/archivist-wrapper": "~5.3.30"
49
+ "@xyo-network/archivist-memory": "~5.4.1",
50
+ "@xyo-network/archivist-abstract": "~5.4.1",
51
+ "@xyo-network/archivist-wrapper": "~5.4.1",
52
+ "@xyo-network/archivist-model": "~5.4.1"
43
53
  },
44
54
  "devDependencies": {
45
- "@firebase/app": "~0.14.10",
46
- "@firebase/firestore": "~4.13.0",
55
+ "@firebase/app": "~0.14.11",
56
+ "@firebase/firestore": "~4.14.0",
47
57
  "@firebase/rules-unit-testing": "~5.0.0",
48
58
  "@opentelemetry/api": "^1.9.1",
49
- "@types/node": "^25.5.2",
50
- "@xylabs/express": "^5.0.95",
51
- "@xylabs/indexed-db": "^5.0.95",
52
- "@xylabs/mongo": "^5.0.95",
53
- "@xylabs/sdk-js": "^5.0.95",
54
- "@xylabs/ts-scripts-common": "~7.8.6",
55
- "@xylabs/ts-scripts-pnpm": "~7.8.6",
56
- "@xylabs/tsconfig": "~7.8.6",
57
- "@xylabs/vitest-extended": "~5.0.95",
58
- "@xylabs/vitest-matchers": "~5.0.95",
59
- "@xylabs/zod": "~5.0.95",
60
- "@xyo-network/account": "~5.3.30",
61
- "@xyo-network/account-model": "~5.3.30",
62
- "@xyo-network/archivist-acceptance-tests": "~5.3.30",
63
- "@xyo-network/archivist-generic": "~5.3.30",
64
- "@xyo-network/archivist-leveldb": "~5.3.30",
65
- "@xyo-network/archivist-lmdb": "~5.3.30",
66
- "@xyo-network/archivist-model-mongodb": "~5.3.30",
67
- "@xyo-network/boundwitness-builder": "~5.3.30",
68
- "@xyo-network/boundwitness-model": "~5.3.30",
69
- "@xyo-network/boundwitness-validator": "~5.3.30",
70
- "@xyo-network/boundwitness-wrapper": "~5.3.30",
71
- "@xyo-network/config-payload-plugin": "~5.3.30",
72
- "@xyo-network/data": "~5.3.30",
73
- "@xyo-network/diviner-model": "~5.3.30",
74
- "@xyo-network/diviner-payload-model": "~5.3.30",
75
- "@xyo-network/elliptic": "~5.3.30",
76
- "@xyo-network/hash": "~5.3.30",
77
- "@xyo-network/id-payload-plugin": "~5.3.30",
78
- "@xyo-network/manifest-model": "~5.3.30",
79
- "@xyo-network/module-abstract": "~5.3.30",
80
- "@xyo-network/module-abstract-mongodb": "~5.3.30",
81
- "@xyo-network/module-model": "~5.3.30",
82
- "@xyo-network/module-model-mongodb": "~5.3.30",
83
- "@xyo-network/module-resolver": "~5.3.30",
84
- "@xyo-network/module-wrapper": "~5.3.30",
85
- "@xyo-network/node-abstract": "~5.3.30",
86
- "@xyo-network/node-memory": "~5.3.30",
87
- "@xyo-network/node-model": "~5.3.30",
88
- "@xyo-network/payload-builder": "~5.3.30",
89
- "@xyo-network/payload-model": "~5.3.30",
90
- "@xyo-network/payload-mongodb": "~5.3.30",
91
- "@xyo-network/payload-validator": "~5.3.30",
92
- "@xyo-network/payload-wrapper": "~5.3.30",
93
- "@xyo-network/previous-hash-store-model": "~5.3.30",
94
- "@xyo-network/wallet": "~5.3.30",
95
- "@xyo-network/wallet-model": "~5.3.30",
96
- "@xyo-network/wasm": "~5.3.30",
59
+ "@types/node": "^25.6.0",
60
+ "@xylabs/express": "^5.0.97",
61
+ "@xylabs/indexed-db": "^5.0.97",
62
+ "@xylabs/mongo": "^5.0.97",
63
+ "@xylabs/sdk-js": "^5.0.97",
64
+ "@xylabs/toolchain": "~7.10.8",
65
+ "@xylabs/tsconfig": "~7.10.8",
66
+ "@xylabs/vitest-extended": "~5.0.97",
67
+ "@xylabs/vitest-matchers": "~5.0.97",
68
+ "@xylabs/zod": "~5.0.97",
97
69
  "abstract-level": "^3.1.1",
98
70
  "async-mutex": "~0.5.0",
99
- "axios": "^1.14.0",
100
71
  "esbuild": "^0.28.0",
101
72
  "ethers": "^6.16.0",
102
73
  "express": "^5.2.1",
103
74
  "fake-indexeddb": "~6.2.5",
104
- "firebase": "~12.11.0",
75
+ "firebase": "~12.12.0",
105
76
  "idb": "^8.0.3",
106
77
  "js-cookie": "~3.0.5",
107
78
  "level": "^10.0.0",
108
- "lmdb": "^3.5.2",
109
- "lru-cache": "^11.3.1",
79
+ "lmdb": "^3.5.4",
80
+ "lru-cache": "^11.3.5",
110
81
  "mongodb": "~7.1.1",
111
82
  "pako": "~2.1.0",
112
83
  "store2": "~2.14.4",
113
84
  "tslib": "^2.8.1",
114
85
  "typescript": "~5.9.3",
115
86
  "uuid": "~13.0.0",
116
- "vite": "^8.0.5",
117
- "vitest": "~4.1.2",
118
- "zod": "^4.3.6"
87
+ "vite": "^8.0.8",
88
+ "vitest": "~4.1.4",
89
+ "zod": "^4.3.6",
90
+ "@xyo-network/account": "~5.4.1",
91
+ "@xyo-network/archivist-acceptance-tests": "~5.4.1",
92
+ "@xyo-network/account-model": "~5.4.1",
93
+ "@xyo-network/archivist-generic": "~5.4.1",
94
+ "@xyo-network/archivist-leveldb": "~5.4.1",
95
+ "@xyo-network/archivist-lmdb": "~5.4.1",
96
+ "@xyo-network/archivist-model-mongodb": "~5.4.1",
97
+ "@xyo-network/boundwitness-model": "~5.4.1",
98
+ "@xyo-network/boundwitness-builder": "~5.4.1",
99
+ "@xyo-network/boundwitness-validator": "~5.4.1",
100
+ "@xyo-network/boundwitness-wrapper": "~5.4.1",
101
+ "@xyo-network/config-payload-plugin": "~5.4.1",
102
+ "@xyo-network/data": "~5.4.1",
103
+ "@xyo-network/diviner-model": "~5.4.1",
104
+ "@xyo-network/diviner-payload-model": "~5.4.1",
105
+ "@xyo-network/id-payload-plugin": "~5.4.1",
106
+ "@xyo-network/elliptic": "~5.4.1",
107
+ "@xyo-network/manifest-model": "~5.4.1",
108
+ "@xyo-network/module-abstract": "~5.4.1",
109
+ "@xyo-network/module-model": "~5.4.1",
110
+ "@xyo-network/hash": "~5.4.1",
111
+ "@xyo-network/module-model-mongodb": "~5.4.1",
112
+ "@xyo-network/module-resolver": "~5.4.1",
113
+ "@xyo-network/module-wrapper": "~5.4.1",
114
+ "@xyo-network/node-abstract": "~5.4.1",
115
+ "@xyo-network/node-model": "~5.4.1",
116
+ "@xyo-network/module-abstract-mongodb": "~5.4.1",
117
+ "@xyo-network/payload-builder": "~5.4.1",
118
+ "@xyo-network/payload-mongodb": "~5.4.1",
119
+ "@xyo-network/payload-model": "~5.4.1",
120
+ "@xyo-network/node-memory": "~5.4.1",
121
+ "@xyo-network/payload-wrapper": "~5.4.1",
122
+ "@xyo-network/previous-hash-store-model": "~5.4.1",
123
+ "@xyo-network/payload-validator": "~5.4.1",
124
+ "@xyo-network/wallet": "~5.4.1",
125
+ "@xyo-network/wallet-model": "~5.4.1",
126
+ "@xyo-network/wasm": "~5.4.1"
119
127
  },
120
128
  "peerDependencies": {
121
- "@xyo-network/boundwitness-validator": "~5.3",
122
- "@xyo-network/manifest-model": "~5.3",
123
- "@xyo-network/payload-validator": "~5.3",
124
- "@xyo-network/previous-hash-store-model": "~5.3"
129
+ "@xyo-network/boundwitness-validator": "~5.4",
130
+ "@xyo-network/manifest-model": "~5.4",
131
+ "@xyo-network/payload-validator": "~5.4",
132
+ "@xyo-network/previous-hash-store-model": "~5.4"
125
133
  },
126
134
  "publishConfig": {
127
135
  "access": "public"
128
136
  }
129
- }
137
+ }