@xyo-network/payloadset-plugins 2.73.3 → 2.73.4
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/docs.json +36529 -40180
- package/dist/index.d.mts +15 -0
- package/dist/{types/index.d.ts → index.d.ts} +4 -3
- package/dist/index.js +75 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +39 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +39 -26
- package/tsup.config.ts +16 -0
- package/dist/cjs/index.js +0 -39
- package/dist/cjs/index.js.map +0 -1
- package/dist/esm/index.js +0 -35
- package/dist/esm/index.js.map +0 -1
- package/dist/types/index.d.ts.map +0 -1
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export * from '@xyo-network/blockchain-plugins';
|
|
2
|
+
export * from '@xyo-network/crypto-plugins';
|
|
3
|
+
export * from '@xyo-network/domain-plugin';
|
|
4
|
+
export * from '@xyo-network/elevation-plugin';
|
|
5
|
+
export * from '@xyo-network/id-plugin';
|
|
6
|
+
export * from '@xyo-network/location-certainty-plugin';
|
|
7
|
+
export * from '@xyo-network/location-plugin';
|
|
8
|
+
export * from '@xyo-network/module-instance-plugin';
|
|
9
|
+
export * from '@xyo-network/schema-plugin';
|
|
10
|
+
export * from '@xyo-network/system-plugins';
|
|
11
|
+
import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
|
|
12
|
+
|
|
13
|
+
declare const PayloadSetPlugins: PayloadSetPluginFunc[];
|
|
14
|
+
|
|
15
|
+
export { PayloadSetPlugins, PayloadSetPlugins as default };
|
|
@@ -9,6 +9,7 @@ export * from '@xyo-network/module-instance-plugin';
|
|
|
9
9
|
export * from '@xyo-network/schema-plugin';
|
|
10
10
|
export * from '@xyo-network/system-plugins';
|
|
11
11
|
import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
|
|
13
|
+
declare const PayloadSetPlugins: PayloadSetPluginFunc[];
|
|
14
|
+
|
|
15
|
+
export { PayloadSetPlugins, PayloadSetPlugins as default };
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
19
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
+
|
|
21
|
+
// src/index.ts
|
|
22
|
+
var src_exports = {};
|
|
23
|
+
__export(src_exports, {
|
|
24
|
+
PayloadSetPlugins: () => PayloadSetPlugins,
|
|
25
|
+
default: () => src_default
|
|
26
|
+
});
|
|
27
|
+
module.exports = __toCommonJS(src_exports);
|
|
28
|
+
__reExport(src_exports, require("@xyo-network/blockchain-plugins"), module.exports);
|
|
29
|
+
__reExport(src_exports, require("@xyo-network/crypto-plugins"), module.exports);
|
|
30
|
+
__reExport(src_exports, require("@xyo-network/domain-plugin"), module.exports);
|
|
31
|
+
__reExport(src_exports, require("@xyo-network/elevation-plugin"), module.exports);
|
|
32
|
+
__reExport(src_exports, require("@xyo-network/id-plugin"), module.exports);
|
|
33
|
+
__reExport(src_exports, require("@xyo-network/location-certainty-plugin"), module.exports);
|
|
34
|
+
__reExport(src_exports, require("@xyo-network/location-plugin"), module.exports);
|
|
35
|
+
__reExport(src_exports, require("@xyo-network/module-instance-plugin"), module.exports);
|
|
36
|
+
__reExport(src_exports, require("@xyo-network/schema-plugin"), module.exports);
|
|
37
|
+
__reExport(src_exports, require("@xyo-network/system-plugins"), module.exports);
|
|
38
|
+
var import_blockchain_plugins = require("@xyo-network/blockchain-plugins");
|
|
39
|
+
var import_crypto_plugins = require("@xyo-network/crypto-plugins");
|
|
40
|
+
var import_domain_plugin = require("@xyo-network/domain-plugin");
|
|
41
|
+
var import_elevation_plugin = require("@xyo-network/elevation-plugin");
|
|
42
|
+
var import_id_plugin = require("@xyo-network/id-plugin");
|
|
43
|
+
var import_location_certainty_plugin = require("@xyo-network/location-certainty-plugin");
|
|
44
|
+
var import_location_plugin = require("@xyo-network/location-plugin");
|
|
45
|
+
var import_module_instance_plugin = require("@xyo-network/module-instance-plugin");
|
|
46
|
+
var import_schema_plugin = require("@xyo-network/schema-plugin");
|
|
47
|
+
var import_system_plugins = require("@xyo-network/system-plugins");
|
|
48
|
+
var PayloadSetPlugins = [
|
|
49
|
+
...import_system_plugins.SystemPlugins,
|
|
50
|
+
...import_blockchain_plugins.BlockchainPlugins,
|
|
51
|
+
...import_crypto_plugins.CryptoPlugins,
|
|
52
|
+
import_domain_plugin.DomainPlugin,
|
|
53
|
+
import_elevation_plugin.ElevationPlugin,
|
|
54
|
+
import_id_plugin.IdPlugin,
|
|
55
|
+
import_location_plugin.LocationPlugin,
|
|
56
|
+
import_module_instance_plugin.AbstractModuleInstancePlugin,
|
|
57
|
+
import_schema_plugin.SchemaPlugin,
|
|
58
|
+
import_location_certainty_plugin.LocationCertaintyPlugin
|
|
59
|
+
];
|
|
60
|
+
var src_default = PayloadSetPlugins;
|
|
61
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
62
|
+
0 && (module.exports = {
|
|
63
|
+
PayloadSetPlugins,
|
|
64
|
+
...require("@xyo-network/blockchain-plugins"),
|
|
65
|
+
...require("@xyo-network/crypto-plugins"),
|
|
66
|
+
...require("@xyo-network/domain-plugin"),
|
|
67
|
+
...require("@xyo-network/elevation-plugin"),
|
|
68
|
+
...require("@xyo-network/id-plugin"),
|
|
69
|
+
...require("@xyo-network/location-certainty-plugin"),
|
|
70
|
+
...require("@xyo-network/location-plugin"),
|
|
71
|
+
...require("@xyo-network/module-instance-plugin"),
|
|
72
|
+
...require("@xyo-network/schema-plugin"),
|
|
73
|
+
...require("@xyo-network/system-plugins")
|
|
74
|
+
});
|
|
75
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["export * from '@xyo-network/blockchain-plugins'\nexport * from '@xyo-network/crypto-plugins'\nexport * from '@xyo-network/domain-plugin'\nexport * from '@xyo-network/elevation-plugin'\nexport * from '@xyo-network/id-plugin'\nexport * from '@xyo-network/location-certainty-plugin'\nexport * from '@xyo-network/location-plugin'\nexport * from '@xyo-network/module-instance-plugin'\nexport * from '@xyo-network/schema-plugin'\nexport * from '@xyo-network/system-plugins'\n\nimport { BlockchainPlugins } from '@xyo-network/blockchain-plugins'\nimport { CryptoPlugins } from '@xyo-network/crypto-plugins'\nimport { DomainPlugin } from '@xyo-network/domain-plugin'\nimport { ElevationPlugin } from '@xyo-network/elevation-plugin'\nimport { IdPlugin } from '@xyo-network/id-plugin'\nimport { LocationCertaintyPlugin } from '@xyo-network/location-certainty-plugin'\nimport { LocationPlugin } from '@xyo-network/location-plugin'\nimport { AbstractModuleInstancePlugin } from '@xyo-network/module-instance-plugin'\nimport { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'\nimport { SchemaPlugin } from '@xyo-network/schema-plugin'\nimport { SystemPlugins } from '@xyo-network/system-plugins'\n\nexport const PayloadSetPlugins: PayloadSetPluginFunc[] = [\n ...SystemPlugins,\n ...BlockchainPlugins,\n ...CryptoPlugins,\n DomainPlugin,\n ElevationPlugin,\n IdPlugin,\n LocationPlugin,\n AbstractModuleInstancePlugin,\n SchemaPlugin,\n LocationCertaintyPlugin,\n]\n\n// eslint-disable-next-line import/no-default-export\nexport default PayloadSetPlugins\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,wBAAc,4CAAd;AACA,wBAAc,wCADd;AAEA,wBAAc,uCAFd;AAGA,wBAAc,0CAHd;AAIA,wBAAc,mCAJd;AAKA,wBAAc,mDALd;AAMA,wBAAc,yCANd;AAOA,wBAAc,gDAPd;AAQA,wBAAc,uCARd;AASA,wBAAc,wCATd;AAWA,gCAAkC;AAClC,4BAA8B;AAC9B,2BAA6B;AAC7B,8BAAgC;AAChC,uBAAyB;AACzB,uCAAwC;AACxC,6BAA+B;AAC/B,oCAA6C;AAE7C,2BAA6B;AAC7B,4BAA8B;AAEvB,IAAM,oBAA4C;AAAA,EACvD,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;AAGA,IAAO,cAAQ;","names":[]}
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
// src/index.ts
|
|
2
|
+
export * from "@xyo-network/blockchain-plugins";
|
|
3
|
+
export * from "@xyo-network/crypto-plugins";
|
|
4
|
+
export * from "@xyo-network/domain-plugin";
|
|
5
|
+
export * from "@xyo-network/elevation-plugin";
|
|
6
|
+
export * from "@xyo-network/id-plugin";
|
|
7
|
+
export * from "@xyo-network/location-certainty-plugin";
|
|
8
|
+
export * from "@xyo-network/location-plugin";
|
|
9
|
+
export * from "@xyo-network/module-instance-plugin";
|
|
10
|
+
export * from "@xyo-network/schema-plugin";
|
|
11
|
+
export * from "@xyo-network/system-plugins";
|
|
12
|
+
import { BlockchainPlugins } from "@xyo-network/blockchain-plugins";
|
|
13
|
+
import { CryptoPlugins } from "@xyo-network/crypto-plugins";
|
|
14
|
+
import { DomainPlugin } from "@xyo-network/domain-plugin";
|
|
15
|
+
import { ElevationPlugin } from "@xyo-network/elevation-plugin";
|
|
16
|
+
import { IdPlugin } from "@xyo-network/id-plugin";
|
|
17
|
+
import { LocationCertaintyPlugin } from "@xyo-network/location-certainty-plugin";
|
|
18
|
+
import { LocationPlugin } from "@xyo-network/location-plugin";
|
|
19
|
+
import { AbstractModuleInstancePlugin } from "@xyo-network/module-instance-plugin";
|
|
20
|
+
import { SchemaPlugin } from "@xyo-network/schema-plugin";
|
|
21
|
+
import { SystemPlugins } from "@xyo-network/system-plugins";
|
|
22
|
+
var PayloadSetPlugins = [
|
|
23
|
+
...SystemPlugins,
|
|
24
|
+
...BlockchainPlugins,
|
|
25
|
+
...CryptoPlugins,
|
|
26
|
+
DomainPlugin,
|
|
27
|
+
ElevationPlugin,
|
|
28
|
+
IdPlugin,
|
|
29
|
+
LocationPlugin,
|
|
30
|
+
AbstractModuleInstancePlugin,
|
|
31
|
+
SchemaPlugin,
|
|
32
|
+
LocationCertaintyPlugin
|
|
33
|
+
];
|
|
34
|
+
var src_default = PayloadSetPlugins;
|
|
35
|
+
export {
|
|
36
|
+
PayloadSetPlugins,
|
|
37
|
+
src_default as default
|
|
38
|
+
};
|
|
39
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["export * from '@xyo-network/blockchain-plugins'\nexport * from '@xyo-network/crypto-plugins'\nexport * from '@xyo-network/domain-plugin'\nexport * from '@xyo-network/elevation-plugin'\nexport * from '@xyo-network/id-plugin'\nexport * from '@xyo-network/location-certainty-plugin'\nexport * from '@xyo-network/location-plugin'\nexport * from '@xyo-network/module-instance-plugin'\nexport * from '@xyo-network/schema-plugin'\nexport * from '@xyo-network/system-plugins'\n\nimport { BlockchainPlugins } from '@xyo-network/blockchain-plugins'\nimport { CryptoPlugins } from '@xyo-network/crypto-plugins'\nimport { DomainPlugin } from '@xyo-network/domain-plugin'\nimport { ElevationPlugin } from '@xyo-network/elevation-plugin'\nimport { IdPlugin } from '@xyo-network/id-plugin'\nimport { LocationCertaintyPlugin } from '@xyo-network/location-certainty-plugin'\nimport { LocationPlugin } from '@xyo-network/location-plugin'\nimport { AbstractModuleInstancePlugin } from '@xyo-network/module-instance-plugin'\nimport { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'\nimport { SchemaPlugin } from '@xyo-network/schema-plugin'\nimport { SystemPlugins } from '@xyo-network/system-plugins'\n\nexport const PayloadSetPlugins: PayloadSetPluginFunc[] = [\n ...SystemPlugins,\n ...BlockchainPlugins,\n ...CryptoPlugins,\n DomainPlugin,\n ElevationPlugin,\n IdPlugin,\n LocationPlugin,\n AbstractModuleInstancePlugin,\n SchemaPlugin,\n LocationCertaintyPlugin,\n]\n\n// eslint-disable-next-line import/no-default-export\nexport default PayloadSetPlugins\n"],"mappings":";AAAA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AAEd,SAAS,yBAAyB;AAClC,SAAS,qBAAqB;AAC9B,SAAS,oBAAoB;AAC7B,SAAS,uBAAuB;AAChC,SAAS,gBAAgB;AACzB,SAAS,+BAA+B;AACxC,SAAS,sBAAsB;AAC/B,SAAS,oCAAoC;AAE7C,SAAS,oBAAoB;AAC7B,SAAS,qBAAqB;AAEvB,IAAM,oBAA4C;AAAA,EACvD,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;AAGA,IAAO,cAAQ;","names":[]}
|
package/package.json
CHANGED
|
@@ -10,45 +10,59 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xyo-network/blockchain-plugins": "~2.73.
|
|
14
|
-
"@xyo-network/crypto-plugins": "~2.73.
|
|
15
|
-
"@xyo-network/domain-plugin": "~2.73.
|
|
16
|
-
"@xyo-network/elevation-plugin": "~2.73.
|
|
17
|
-
"@xyo-network/id-plugin": "~2.73.
|
|
18
|
-
"@xyo-network/location-certainty-plugin": "~2.73.
|
|
19
|
-
"@xyo-network/location-plugin": "~2.73.
|
|
20
|
-
"@xyo-network/module-instance-plugin": "~2.73.
|
|
21
|
-
"@xyo-network/payloadset-plugin": "~2.73.
|
|
22
|
-
"@xyo-network/schema-plugin": "~2.73.
|
|
23
|
-
"@xyo-network/system-plugins": "~2.73.
|
|
13
|
+
"@xyo-network/blockchain-plugins": "~2.73.4",
|
|
14
|
+
"@xyo-network/crypto-plugins": "~2.73.4",
|
|
15
|
+
"@xyo-network/domain-plugin": "~2.73.4",
|
|
16
|
+
"@xyo-network/elevation-plugin": "~2.73.4",
|
|
17
|
+
"@xyo-network/id-plugin": "~2.73.4",
|
|
18
|
+
"@xyo-network/location-certainty-plugin": "~2.73.4",
|
|
19
|
+
"@xyo-network/location-plugin": "~2.73.4",
|
|
20
|
+
"@xyo-network/module-instance-plugin": "~2.73.4",
|
|
21
|
+
"@xyo-network/payloadset-plugin": "~2.73.4",
|
|
22
|
+
"@xyo-network/schema-plugin": "~2.73.4",
|
|
23
|
+
"@xyo-network/system-plugins": "~2.73.4"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@xylabs/ts-scripts-yarn3": "^2.19.
|
|
27
|
-
"@xylabs/tsconfig": "^2.19.
|
|
26
|
+
"@xylabs/ts-scripts-yarn3": "^2.19.12",
|
|
27
|
+
"@xylabs/tsconfig": "^2.19.12",
|
|
28
|
+
"publint": "^0.2.2",
|
|
29
|
+
"tsup": "^7.2.0",
|
|
28
30
|
"typescript": "^5.2.2"
|
|
29
31
|
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"package-compile": "tsup && publint",
|
|
34
|
+
"package-recompile": "tsup && publint"
|
|
35
|
+
},
|
|
30
36
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
31
|
-
"browser": "dist/esm/index.js",
|
|
32
37
|
"docs": "dist/docs.json",
|
|
38
|
+
"types": "dist/index.d.ts",
|
|
33
39
|
"exports": {
|
|
34
40
|
".": {
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
},
|
|
39
|
-
"browser": {
|
|
40
|
-
"import": "./dist/esm/index.js",
|
|
41
|
-
"require": "./dist/cjs/index.js"
|
|
41
|
+
"require": {
|
|
42
|
+
"types": "./dist/index.d.ts",
|
|
43
|
+
"default": "./dist/index.js"
|
|
42
44
|
},
|
|
43
|
-
"
|
|
45
|
+
"import": {
|
|
46
|
+
"types": "./dist/index.d.mts",
|
|
47
|
+
"default": "./dist/index.mjs"
|
|
48
|
+
}
|
|
44
49
|
},
|
|
45
50
|
"./dist/docs.json": {
|
|
46
51
|
"default": "./dist/docs.json"
|
|
47
52
|
},
|
|
53
|
+
"./cjs": {
|
|
54
|
+
"default": "./dist/index.js"
|
|
55
|
+
},
|
|
56
|
+
"./docs": {
|
|
57
|
+
"default": "./dist/docs.json"
|
|
58
|
+
},
|
|
59
|
+
"./esm": {
|
|
60
|
+
"default": "./dist/index.mjs"
|
|
61
|
+
},
|
|
48
62
|
"./package.json": "./package.json"
|
|
49
63
|
},
|
|
50
|
-
"main": "dist/
|
|
51
|
-
"module": "dist/
|
|
64
|
+
"main": "dist/index.js",
|
|
65
|
+
"module": "dist/index.mjs",
|
|
52
66
|
"homepage": "https://xyo.network",
|
|
53
67
|
"license": "LGPL-3.0",
|
|
54
68
|
"publishConfig": {
|
|
@@ -59,6 +73,5 @@
|
|
|
59
73
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js.git"
|
|
60
74
|
},
|
|
61
75
|
"sideEffects": false,
|
|
62
|
-
"
|
|
63
|
-
"version": "2.73.3"
|
|
76
|
+
"version": "2.73.4"
|
|
64
77
|
}
|
package/tsup.config.ts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { defineConfig } from 'tsup'
|
|
2
|
+
|
|
3
|
+
// eslint-disable-next-line import/no-default-export
|
|
4
|
+
export default defineConfig({
|
|
5
|
+
bundle: true,
|
|
6
|
+
cjsInterop: true,
|
|
7
|
+
clean: false,
|
|
8
|
+
dts: {
|
|
9
|
+
entry: ['src/index.ts'],
|
|
10
|
+
},
|
|
11
|
+
entry: ['src/index.ts'],
|
|
12
|
+
format: ['cjs', 'esm'],
|
|
13
|
+
sourcemap: true,
|
|
14
|
+
splitting: false,
|
|
15
|
+
tsconfig: 'tsconfig.json',
|
|
16
|
+
})
|
package/dist/cjs/index.js
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PayloadSetPlugins = void 0;
|
|
4
|
-
const tslib_1 = require("tslib");
|
|
5
|
-
tslib_1.__exportStar(require("@xyo-network/blockchain-plugins"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("@xyo-network/crypto-plugins"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("@xyo-network/domain-plugin"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("@xyo-network/elevation-plugin"), exports);
|
|
9
|
-
tslib_1.__exportStar(require("@xyo-network/id-plugin"), exports);
|
|
10
|
-
tslib_1.__exportStar(require("@xyo-network/location-certainty-plugin"), exports);
|
|
11
|
-
tslib_1.__exportStar(require("@xyo-network/location-plugin"), exports);
|
|
12
|
-
tslib_1.__exportStar(require("@xyo-network/module-instance-plugin"), exports);
|
|
13
|
-
tslib_1.__exportStar(require("@xyo-network/schema-plugin"), exports);
|
|
14
|
-
tslib_1.__exportStar(require("@xyo-network/system-plugins"), exports);
|
|
15
|
-
const blockchain_plugins_1 = require("@xyo-network/blockchain-plugins");
|
|
16
|
-
const crypto_plugins_1 = require("@xyo-network/crypto-plugins");
|
|
17
|
-
const domain_plugin_1 = require("@xyo-network/domain-plugin");
|
|
18
|
-
const elevation_plugin_1 = require("@xyo-network/elevation-plugin");
|
|
19
|
-
const id_plugin_1 = require("@xyo-network/id-plugin");
|
|
20
|
-
const location_certainty_plugin_1 = require("@xyo-network/location-certainty-plugin");
|
|
21
|
-
const location_plugin_1 = require("@xyo-network/location-plugin");
|
|
22
|
-
const module_instance_plugin_1 = require("@xyo-network/module-instance-plugin");
|
|
23
|
-
const schema_plugin_1 = require("@xyo-network/schema-plugin");
|
|
24
|
-
const system_plugins_1 = require("@xyo-network/system-plugins");
|
|
25
|
-
exports.PayloadSetPlugins = [
|
|
26
|
-
...system_plugins_1.SystemPlugins,
|
|
27
|
-
...blockchain_plugins_1.BlockchainPlugins,
|
|
28
|
-
...crypto_plugins_1.CryptoPlugins,
|
|
29
|
-
domain_plugin_1.DomainPlugin,
|
|
30
|
-
elevation_plugin_1.ElevationPlugin,
|
|
31
|
-
id_plugin_1.IdPlugin,
|
|
32
|
-
location_plugin_1.LocationPlugin,
|
|
33
|
-
module_instance_plugin_1.AbstractModuleInstancePlugin,
|
|
34
|
-
schema_plugin_1.SchemaPlugin,
|
|
35
|
-
location_certainty_plugin_1.LocationCertaintyPlugin,
|
|
36
|
-
];
|
|
37
|
-
// eslint-disable-next-line import/no-default-export
|
|
38
|
-
exports.default = exports.PayloadSetPlugins;
|
|
39
|
-
//# sourceMappingURL=index.js.map
|
package/dist/cjs/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;AAAA,0EAA+C;AAC/C,sEAA2C;AAC3C,qEAA0C;AAC1C,wEAA6C;AAC7C,iEAAsC;AACtC,iFAAsD;AACtD,uEAA4C;AAC5C,8EAAmD;AACnD,qEAA0C;AAC1C,sEAA2C;AAE3C,wEAAmE;AACnE,gEAA2D;AAC3D,8DAAyD;AACzD,oEAA+D;AAC/D,sDAAiD;AACjD,sFAAgF;AAChF,kEAA6D;AAC7D,gFAAkF;AAElF,8DAAyD;AACzD,gEAA2D;AAE9C,QAAA,iBAAiB,GAA2B;IACvD,GAAG,8BAAa;IAChB,GAAG,sCAAiB;IACpB,GAAG,8BAAa;IAChB,4BAAY;IACZ,kCAAe;IACf,oBAAQ;IACR,gCAAc;IACd,qDAA4B;IAC5B,4BAAY;IACZ,mDAAuB;CACxB,CAAA;AAED,oDAAoD;AACpD,kBAAe,yBAAiB,CAAA"}
|
package/dist/esm/index.js
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
export * from '@xyo-network/blockchain-plugins';
|
|
2
|
-
export * from '@xyo-network/crypto-plugins';
|
|
3
|
-
export * from '@xyo-network/domain-plugin';
|
|
4
|
-
export * from '@xyo-network/elevation-plugin';
|
|
5
|
-
export * from '@xyo-network/id-plugin';
|
|
6
|
-
export * from '@xyo-network/location-certainty-plugin';
|
|
7
|
-
export * from '@xyo-network/location-plugin';
|
|
8
|
-
export * from '@xyo-network/module-instance-plugin';
|
|
9
|
-
export * from '@xyo-network/schema-plugin';
|
|
10
|
-
export * from '@xyo-network/system-plugins';
|
|
11
|
-
import { BlockchainPlugins } from '@xyo-network/blockchain-plugins';
|
|
12
|
-
import { CryptoPlugins } from '@xyo-network/crypto-plugins';
|
|
13
|
-
import { DomainPlugin } from '@xyo-network/domain-plugin';
|
|
14
|
-
import { ElevationPlugin } from '@xyo-network/elevation-plugin';
|
|
15
|
-
import { IdPlugin } from '@xyo-network/id-plugin';
|
|
16
|
-
import { LocationCertaintyPlugin } from '@xyo-network/location-certainty-plugin';
|
|
17
|
-
import { LocationPlugin } from '@xyo-network/location-plugin';
|
|
18
|
-
import { AbstractModuleInstancePlugin } from '@xyo-network/module-instance-plugin';
|
|
19
|
-
import { SchemaPlugin } from '@xyo-network/schema-plugin';
|
|
20
|
-
import { SystemPlugins } from '@xyo-network/system-plugins';
|
|
21
|
-
export const PayloadSetPlugins = [
|
|
22
|
-
...SystemPlugins,
|
|
23
|
-
...BlockchainPlugins,
|
|
24
|
-
...CryptoPlugins,
|
|
25
|
-
DomainPlugin,
|
|
26
|
-
ElevationPlugin,
|
|
27
|
-
IdPlugin,
|
|
28
|
-
LocationPlugin,
|
|
29
|
-
AbstractModuleInstancePlugin,
|
|
30
|
-
SchemaPlugin,
|
|
31
|
-
LocationCertaintyPlugin,
|
|
32
|
-
];
|
|
33
|
-
// eslint-disable-next-line import/no-default-export
|
|
34
|
-
export default PayloadSetPlugins;
|
|
35
|
-
//# sourceMappingURL=index.js.map
|
package/dist/esm/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iCAAiC,CAAA;AAC/C,cAAc,6BAA6B,CAAA;AAC3C,cAAc,4BAA4B,CAAA;AAC1C,cAAc,+BAA+B,CAAA;AAC7C,cAAc,wBAAwB,CAAA;AACtC,cAAc,wCAAwC,CAAA;AACtD,cAAc,8BAA8B,CAAA;AAC5C,cAAc,qCAAqC,CAAA;AACnD,cAAc,4BAA4B,CAAA;AAC1C,cAAc,6BAA6B,CAAA;AAE3C,OAAO,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAA;AACnE,OAAO,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAA;AAC3D,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAA;AACzD,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAC/D,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAA;AACjD,OAAO,EAAE,uBAAuB,EAAE,MAAM,wCAAwC,CAAA;AAChF,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAA;AAC7D,OAAO,EAAE,4BAA4B,EAAE,MAAM,qCAAqC,CAAA;AAElF,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAA;AACzD,OAAO,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAA;AAE3D,MAAM,CAAC,MAAM,iBAAiB,GAA2B;IACvD,GAAG,aAAa;IAChB,GAAG,iBAAiB;IACpB,GAAG,aAAa;IAChB,YAAY;IACZ,eAAe;IACf,QAAQ;IACR,cAAc;IACd,4BAA4B;IAC5B,YAAY;IACZ,uBAAuB;CACxB,CAAA;AAED,oDAAoD;AACpD,eAAe,iBAAiB,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iCAAiC,CAAA;AAC/C,cAAc,6BAA6B,CAAA;AAC3C,cAAc,4BAA4B,CAAA;AAC1C,cAAc,+BAA+B,CAAA;AAC7C,cAAc,wBAAwB,CAAA;AACtC,cAAc,wCAAwC,CAAA;AACtD,cAAc,8BAA8B,CAAA;AAC5C,cAAc,qCAAqC,CAAA;AACnD,cAAc,4BAA4B,CAAA;AAC1C,cAAc,6BAA6B,CAAA;AAU3C,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAIrE,eAAO,MAAM,iBAAiB,EAAE,oBAAoB,EAWnD,CAAA;AAGD,eAAe,iBAAiB,CAAA"}
|