@xyo-network/sdk-protocol 7.0.8 → 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.
@@ -0,0 +1,5 @@
1
+ export * from '../../address/neutral/index.ts';
2
+ export * from '../../data/neutral/index.ts';
3
+ export * from '../../hash/node/index.ts';
4
+ export * from '../../schema-name-validator/neutral/index.ts';
5
+ export * from '../../wasm/neutral/index.ts';
@@ -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";
@@ -1,4 +1,4 @@
1
1
  export * from '../../boundwitness/neutral/index.ts';
2
- export * from '../../core/neutral/index.ts';
2
+ export * from '../../core/browser/index.ts';
3
3
  export * from '../../crypto/neutral/index.ts';
4
4
  export * from '../../payload/neutral/index.ts';
@@ -1,5 +1,5 @@
1
1
  // src/index.ts
2
2
  export * from "../../boundwitness/neutral/index.mjs";
3
- export * from "../../core/neutral/index.mjs";
3
+ export * from "../../core/browser/index.mjs";
4
4
  export * from "../../crypto/neutral/index.mjs";
5
5
  export * from "../../payload/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'
@@ -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/neutral/index.ts'
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'
@@ -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/neutral/index.mjs'
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'
@@ -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/neutral/index.ts'
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'
@@ -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/neutral/index.mjs'
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.8",
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
- "types": "./dist/neutral/core.d.ts",
91
- "default": "./dist/neutral/core.mjs"
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",
@@ -292,8 +298,8 @@
292
298
  "@scure/bip39": "~2.2.0",
293
299
  "@xylabs/geo": "^7.0.4",
294
300
  "@xylabs/threads": "^7.0.4",
295
- "@xylabs/toolchain": "~8.5.14",
296
- "@xylabs/tsconfig": "~8.5.14",
301
+ "@xylabs/toolchain": "~8.5.15",
302
+ "@xylabs/tsconfig": "~8.5.15",
297
303
  "ajv": "^8.20.0",
298
304
  "async-mutex": "^0.5.0",
299
305
  "browserslist": "4.28.4",
@@ -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/account-model": "~7.0.8",
311
- "@private/account": "~7.0.8",
312
- "@private/address": "~7.0.8",
313
- "@private/api": "~7.0.8",
314
- "@private/api-models": "~7.0.8",
315
- "@private/boundwitness": "~7.0.8",
316
- "@private/boundwitness-builder": "~7.0.8",
317
- "@private/boundwitness-validator": "~7.0.8",
318
- "@private/boundwitness-wrapper": "~7.0.8",
319
- "@private/core": "~7.0.8",
320
- "@private/config-payload-plugin": "~7.0.8",
321
- "@private/core-payload-plugins": "~7.0.8",
322
- "@private/crypto": "~7.0.8",
323
- "@private/data": "~7.0.8",
324
- "@private/boundwitness-model": "~7.0.8",
325
- "@private/dns": "~7.0.8",
326
- "@private/domain-payload-plugin": "~7.0.8",
327
- "@private/elliptic": "~7.0.8",
328
- "@private/hash": "~7.0.8",
329
- "@private/huri": "~7.0.8",
330
- "@private/id-payload-plugin": "~7.0.8",
331
- "@private/key-model": "~7.0.8",
332
- "@private/manifest": "~7.0.8",
333
- "@private/manifest-model": "~7.0.8",
334
- "@private/metamask-connector": "~7.0.8",
335
- "@private/network": "~7.0.8",
336
- "@private/payload": "~7.0.8",
337
- "@private/payload-model": "~7.0.8",
338
- "@private/payload-plugin": "~7.0.8",
339
- "@private/payload-builder": "~7.0.8",
340
- "@private/payload-utils": "~7.0.8",
341
- "@private/payload-wrapper": "~7.0.8",
342
- "@private/payload-validator": "~7.0.8",
343
- "@private/previous-hash-store": "~7.0.8",
344
- "@private/previous-hash-store-indexeddb": "~7.0.8",
345
- "@private/previous-hash-store-model": "~7.0.8",
346
- "@private/protocol": "~7.0.8",
347
- "@private/pqc": "~7.0.8",
348
- "@private/previous-hash-store-storage": "~7.0.8",
349
- "@private/quadkey": "~7.0.8",
350
- "@private/quant-wallet": "~7.0.8",
351
- "@private/quant-account": "~7.0.8",
352
- "@private/schema-cache": "~7.0.8",
353
- "@private/sdk-utils": "~7.0.8",
354
- "@private/query-payload-plugin": "~7.0.8",
355
- "@private/schema-name-validator": "~7.0.8",
356
- "@private/schema-payload-plugin": "~7.0.8",
357
- "@private/wallet": "~7.0.8",
358
- "@private/value-payload-plugin": "~7.0.8",
359
- "@private/wallet-model": "~7.0.8",
360
- "@private/wasm": "~7.0.8"
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",
@@ -1 +0,0 @@
1
- export * from '../_pkg/core/neutral/index.ts'
@@ -1 +0,0 @@
1
- export * from '../_pkg/core/neutral/index.mjs'
File without changes
File without changes