@xyo-network/sdk-protocol 7.0.9 → 7.0.10
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/_pkg/core/node/index.d.ts +5 -0
- package/dist/_pkg/core/node/index.mjs +6 -0
- package/dist/_pkg/protocol/neutral/index.d.ts +1 -1
- package/dist/_pkg/protocol/neutral/index.mjs +1 -1
- package/dist/browser/core.d.ts +1 -0
- package/dist/browser/core.mjs +1 -0
- package/dist/browser/index.d.ts +1 -1
- package/dist/browser/index.mjs +1 -1
- package/dist/node/core.d.ts +1 -0
- package/dist/node/core.mjs +1 -0
- package/dist/node/index.d.ts +1 -1
- package/dist/node/index.mjs +1 -1
- package/package.json +60 -54
- package/dist/neutral/core.d.ts +0 -1
- package/dist/neutral/core.mjs +0 -1
- /package/dist/_pkg/core/{neutral → browser}/index.d.ts +0 -0
- /package/dist/_pkg/core/{neutral → browser}/index.mjs +0 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
// src/index.ts
|
|
2
|
+
export * from "../../address/neutral/index.mjs";
|
|
3
|
+
export * from "../../data/neutral/index.mjs";
|
|
4
|
+
export * from "../../hash/node/index.mjs";
|
|
5
|
+
export * from "../../schema-name-validator/neutral/index.mjs";
|
|
6
|
+
export * from "../../wasm/neutral/index.mjs";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/core/browser/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/core/browser/index.mjs'
|
package/dist/browser/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export * from '../_pkg/boundwitness-model/neutral/index.ts'
|
|
|
9
9
|
export * from '../_pkg/boundwitness-validator/neutral/index.ts'
|
|
10
10
|
export * from '../_pkg/boundwitness-wrapper/neutral/index.ts'
|
|
11
11
|
export * from '../_pkg/config-payload-plugin/neutral/index.ts'
|
|
12
|
-
export * from '../_pkg/core/
|
|
12
|
+
export * from '../_pkg/core/browser/index.ts'
|
|
13
13
|
export * from '../_pkg/core-payload-plugins/neutral/index.ts'
|
|
14
14
|
export * from '../_pkg/crypto/neutral/index.ts'
|
|
15
15
|
export * from '../_pkg/data/neutral/index.ts'
|
package/dist/browser/index.mjs
CHANGED
|
@@ -9,7 +9,7 @@ export * from '../_pkg/boundwitness-model/neutral/index.mjs'
|
|
|
9
9
|
export * from '../_pkg/boundwitness-validator/neutral/index.mjs'
|
|
10
10
|
export * from '../_pkg/boundwitness-wrapper/neutral/index.mjs'
|
|
11
11
|
export * from '../_pkg/config-payload-plugin/neutral/index.mjs'
|
|
12
|
-
export * from '../_pkg/core/
|
|
12
|
+
export * from '../_pkg/core/browser/index.mjs'
|
|
13
13
|
export * from '../_pkg/core-payload-plugins/neutral/index.mjs'
|
|
14
14
|
export * from '../_pkg/crypto/neutral/index.mjs'
|
|
15
15
|
export * from '../_pkg/data/neutral/index.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/core/node/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/core/node/index.mjs'
|
package/dist/node/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export * from '../_pkg/boundwitness-model/neutral/index.ts'
|
|
|
9
9
|
export * from '../_pkg/boundwitness-validator/neutral/index.ts'
|
|
10
10
|
export * from '../_pkg/boundwitness-wrapper/neutral/index.ts'
|
|
11
11
|
export * from '../_pkg/config-payload-plugin/neutral/index.ts'
|
|
12
|
-
export * from '../_pkg/core/
|
|
12
|
+
export * from '../_pkg/core/node/index.ts'
|
|
13
13
|
export * from '../_pkg/core-payload-plugins/neutral/index.ts'
|
|
14
14
|
export * from '../_pkg/crypto/neutral/index.ts'
|
|
15
15
|
export * from '../_pkg/data/neutral/index.ts'
|
package/dist/node/index.mjs
CHANGED
|
@@ -9,7 +9,7 @@ export * from '../_pkg/boundwitness-model/neutral/index.mjs'
|
|
|
9
9
|
export * from '../_pkg/boundwitness-validator/neutral/index.mjs'
|
|
10
10
|
export * from '../_pkg/boundwitness-wrapper/neutral/index.mjs'
|
|
11
11
|
export * from '../_pkg/config-payload-plugin/neutral/index.mjs'
|
|
12
|
-
export * from '../_pkg/core/
|
|
12
|
+
export * from '../_pkg/core/node/index.mjs'
|
|
13
13
|
export * from '../_pkg/core-payload-plugins/neutral/index.mjs'
|
|
14
14
|
export * from '../_pkg/crypto/neutral/index.mjs'
|
|
15
15
|
export * from '../_pkg/data/neutral/index.mjs'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/sdk-protocol",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.10",
|
|
4
4
|
"description": "Self-contained foundation SDK for XYO Protocol 2.0 (protocol, core payload plugins, manifest, sdk-utils)",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -87,8 +87,14 @@
|
|
|
87
87
|
"default": "./dist/neutral/config-payload-plugin.mjs"
|
|
88
88
|
},
|
|
89
89
|
"./core": {
|
|
90
|
-
"
|
|
91
|
-
|
|
90
|
+
"node": {
|
|
91
|
+
"types": "./dist/node/core.d.ts",
|
|
92
|
+
"default": "./dist/node/core.mjs"
|
|
93
|
+
},
|
|
94
|
+
"default": {
|
|
95
|
+
"types": "./dist/browser/core.d.ts",
|
|
96
|
+
"default": "./dist/browser/core.mjs"
|
|
97
|
+
}
|
|
92
98
|
},
|
|
93
99
|
"./core-payload-plugins": {
|
|
94
100
|
"types": "./dist/neutral/core-payload-plugins.d.ts",
|
|
@@ -307,57 +313,57 @@
|
|
|
307
313
|
"typescript": "~6.0.3",
|
|
308
314
|
"webextension-polyfill": "^0.12.0",
|
|
309
315
|
"zod": "^4.4.3",
|
|
310
|
-
"@private/
|
|
311
|
-
"@private/
|
|
312
|
-
"@private/api": "~7.0.
|
|
313
|
-
"@private/api-models": "~7.0.
|
|
314
|
-
"@private/
|
|
315
|
-
"@private/boundwitness": "~7.0.
|
|
316
|
-
"@private/boundwitness-
|
|
317
|
-
"@private/boundwitness-
|
|
318
|
-
"@private/
|
|
319
|
-
"@private/boundwitness-wrapper": "~7.0.
|
|
320
|
-
"@private/config-payload-plugin": "~7.0.
|
|
321
|
-
"@private/core-payload-plugins": "~7.0.
|
|
322
|
-
"@private/core": "~7.0.
|
|
323
|
-
"@private/crypto": "~7.0.
|
|
324
|
-
"@private/dns": "~7.0.
|
|
325
|
-
"@private/
|
|
326
|
-
"@private/
|
|
327
|
-
"@private/elliptic": "~7.0.
|
|
328
|
-
"@private/hash": "~7.0.
|
|
329
|
-
"@private/
|
|
330
|
-
"@private/
|
|
331
|
-
"@private/key-model": "~7.0.
|
|
332
|
-
"@private/manifest": "~7.0.
|
|
333
|
-
"@private/manifest-model": "~7.0.
|
|
334
|
-
"@private/
|
|
335
|
-
"@private/
|
|
336
|
-
"@private/payload": "~7.0.
|
|
337
|
-
"@private/payload-builder": "~7.0.
|
|
338
|
-
"@private/payload-
|
|
339
|
-
"@private/payload-
|
|
340
|
-
"@private/payload-utils": "~7.0.
|
|
341
|
-
"@private/payload-validator": "~7.0.
|
|
342
|
-
"@private/
|
|
343
|
-
"@private/
|
|
344
|
-
"@private/previous-hash-store-indexeddb": "~7.0.
|
|
345
|
-
"@private/
|
|
346
|
-
"@private/previous-hash-store-
|
|
347
|
-
"@private/
|
|
348
|
-
"@private/
|
|
349
|
-
"@private/
|
|
350
|
-
"@private/payload-
|
|
351
|
-
"@private/quant-
|
|
352
|
-
"@private/
|
|
353
|
-
"@private/schema-
|
|
354
|
-
"@private/schema-
|
|
355
|
-
"@private/sdk-utils": "~7.0.
|
|
356
|
-
"@private/schema-payload-plugin": "~7.0.
|
|
357
|
-
"@private/
|
|
358
|
-
"@private/
|
|
359
|
-
"@private/
|
|
360
|
-
"@private/
|
|
316
|
+
"@private/address": "~7.0.10",
|
|
317
|
+
"@private/account": "~7.0.10",
|
|
318
|
+
"@private/api": "~7.0.10",
|
|
319
|
+
"@private/api-models": "~7.0.10",
|
|
320
|
+
"@private/boundwitness": "~7.0.10",
|
|
321
|
+
"@private/boundwitness-model": "~7.0.10",
|
|
322
|
+
"@private/boundwitness-builder": "~7.0.10",
|
|
323
|
+
"@private/boundwitness-validator": "~7.0.10",
|
|
324
|
+
"@private/account-model": "~7.0.10",
|
|
325
|
+
"@private/boundwitness-wrapper": "~7.0.10",
|
|
326
|
+
"@private/config-payload-plugin": "~7.0.10",
|
|
327
|
+
"@private/core-payload-plugins": "~7.0.10",
|
|
328
|
+
"@private/core": "~7.0.10",
|
|
329
|
+
"@private/crypto": "~7.0.10",
|
|
330
|
+
"@private/dns": "~7.0.10",
|
|
331
|
+
"@private/data": "~7.0.10",
|
|
332
|
+
"@private/domain-payload-plugin": "~7.0.10",
|
|
333
|
+
"@private/elliptic": "~7.0.10",
|
|
334
|
+
"@private/hash": "~7.0.10",
|
|
335
|
+
"@private/id-payload-plugin": "~7.0.10",
|
|
336
|
+
"@private/huri": "~7.0.10",
|
|
337
|
+
"@private/key-model": "~7.0.10",
|
|
338
|
+
"@private/manifest": "~7.0.10",
|
|
339
|
+
"@private/manifest-model": "~7.0.10",
|
|
340
|
+
"@private/metamask-connector": "~7.0.10",
|
|
341
|
+
"@private/network": "~7.0.10",
|
|
342
|
+
"@private/payload": "~7.0.10",
|
|
343
|
+
"@private/payload-builder": "~7.0.10",
|
|
344
|
+
"@private/payload-plugin": "~7.0.10",
|
|
345
|
+
"@private/payload-model": "~7.0.10",
|
|
346
|
+
"@private/payload-utils": "~7.0.10",
|
|
347
|
+
"@private/payload-validator": "~7.0.10",
|
|
348
|
+
"@private/pqc": "~7.0.10",
|
|
349
|
+
"@private/payload-wrapper": "~7.0.10",
|
|
350
|
+
"@private/previous-hash-store-indexeddb": "~7.0.10",
|
|
351
|
+
"@private/previous-hash-store-storage": "~7.0.10",
|
|
352
|
+
"@private/previous-hash-store-model": "~7.0.10",
|
|
353
|
+
"@private/protocol": "~7.0.10",
|
|
354
|
+
"@private/previous-hash-store": "~7.0.10",
|
|
355
|
+
"@private/quadkey": "~7.0.10",
|
|
356
|
+
"@private/query-payload-plugin": "~7.0.10",
|
|
357
|
+
"@private/quant-account": "~7.0.10",
|
|
358
|
+
"@private/quant-wallet": "~7.0.10",
|
|
359
|
+
"@private/schema-cache": "~7.0.10",
|
|
360
|
+
"@private/schema-name-validator": "~7.0.10",
|
|
361
|
+
"@private/sdk-utils": "~7.0.10",
|
|
362
|
+
"@private/schema-payload-plugin": "~7.0.10",
|
|
363
|
+
"@private/value-payload-plugin": "~7.0.10",
|
|
364
|
+
"@private/wallet": "~7.0.10",
|
|
365
|
+
"@private/wallet-model": "~7.0.10",
|
|
366
|
+
"@private/wasm": "~7.0.10"
|
|
361
367
|
},
|
|
362
368
|
"peerDependencies": {
|
|
363
369
|
"@ariestools/sdk": "^7.0",
|
package/dist/neutral/core.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '../_pkg/core/neutral/index.ts'
|
package/dist/neutral/core.mjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '../_pkg/core/neutral/index.mjs'
|
|
File without changes
|
|
File without changes
|