@xyo-network/module 5.3.7 → 5.3.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/neutral/index.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
export * from '@xyo-network/module-abstract';
|
|
1
2
|
export * from '@xyo-network/module-event-emitter';
|
|
2
3
|
export * from '@xyo-network/module-events';
|
|
4
|
+
export * from '@xyo-network/module-factory-locator';
|
|
3
5
|
export * from '@xyo-network/module-model';
|
|
4
6
|
export * from '@xyo-network/module-resolver';
|
|
5
7
|
export * from '@xyo-network/module-wrapper';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mCAAmC,CAAA;AACjD,cAAc,4BAA4B,CAAA;AAC1C,cAAc,2BAA2B,CAAA;AACzC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,6BAA6B,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,8BAA8B,CAAA;AAC5C,cAAc,mCAAmC,CAAA;AACjD,cAAc,4BAA4B,CAAA;AAC1C,cAAc,qCAAqC,CAAA;AACnD,cAAc,2BAA2B,CAAA;AACzC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,6BAA6B,CAAA"}
|
package/dist/neutral/index.mjs
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
// src/index.ts
|
|
2
|
+
export * from "@xyo-network/module-abstract";
|
|
2
3
|
export * from "@xyo-network/module-event-emitter";
|
|
3
4
|
export * from "@xyo-network/module-events";
|
|
5
|
+
export * from "@xyo-network/module-factory-locator";
|
|
4
6
|
export * from "@xyo-network/module-model";
|
|
5
7
|
export * from "@xyo-network/module-resolver";
|
|
6
8
|
export * from "@xyo-network/module-wrapper";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/module-event-emitter'\nexport * from '@xyo-network/module-events'\nexport * from '@xyo-network/module-model'\nexport * from '@xyo-network/module-resolver'\nexport * from '@xyo-network/module-wrapper'\n"],"mappings":";AAAA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/module-abstract'\nexport * from '@xyo-network/module-event-emitter'\nexport * from '@xyo-network/module-events'\nexport * from '@xyo-network/module-factory-locator'\nexport * from '@xyo-network/module-model'\nexport * from '@xyo-network/module-resolver'\nexport * from '@xyo-network/module-wrapper'\n"],"mappings":";AAAA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;","names":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/module",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.10",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -36,11 +36,13 @@
|
|
|
36
36
|
"!**/*.test.*"
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@xyo-network/module-
|
|
40
|
-
"@xyo-network/module-
|
|
41
|
-
"@xyo-network/module-
|
|
42
|
-
"@xyo-network/module-
|
|
43
|
-
"@xyo-network/module-
|
|
39
|
+
"@xyo-network/module-abstract": "~5.3.10",
|
|
40
|
+
"@xyo-network/module-event-emitter": "~5.3.10",
|
|
41
|
+
"@xyo-network/module-events": "~5.3.10",
|
|
42
|
+
"@xyo-network/module-factory-locator": "~5.3.10",
|
|
43
|
+
"@xyo-network/module-model": "~5.3.10",
|
|
44
|
+
"@xyo-network/module-resolver": "~5.3.10",
|
|
45
|
+
"@xyo-network/module-wrapper": "~5.3.10"
|
|
44
46
|
},
|
|
45
47
|
"devDependencies": {
|
|
46
48
|
"@xylabs/sdk-js": "^5.0.80",
|
package/src/index.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
export * from '@xyo-network/module-abstract'
|
|
1
2
|
export * from '@xyo-network/module-event-emitter'
|
|
2
3
|
export * from '@xyo-network/module-events'
|
|
4
|
+
export * from '@xyo-network/module-factory-locator'
|
|
3
5
|
export * from '@xyo-network/module-model'
|
|
4
6
|
export * from '@xyo-network/module-resolver'
|
|
5
7
|
export * from '@xyo-network/module-wrapper'
|