@xyo-network/bowser-system-info-payload-plugin 2.97.0 → 2.98.0
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/browser/index.cjs +45 -1
- package/dist/browser/index.cjs.map +1 -1
- package/dist/browser/index.d.cts.map +1 -1
- package/dist/browser/index.d.mts.map +1 -1
- package/dist/browser/index.d.ts.map +1 -1
- package/dist/browser/index.js +22 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/neutral/index.cjs +45 -1
- package/dist/neutral/index.cjs.map +1 -1
- package/dist/neutral/index.d.cts.map +1 -1
- package/dist/neutral/index.d.mts.map +1 -1
- package/dist/neutral/index.d.ts.map +1 -1
- package/dist/neutral/index.js +22 -1
- package/dist/neutral/index.js.map +1 -1
- package/dist/node/index.cjs +51 -1
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.d.cts.map +1 -1
- package/dist/node/index.d.mts.map +1 -1
- package/dist/node/index.d.ts.map +1 -1
- package/dist/node/index.js +22 -1
- package/dist/node/index.js.map +1 -1
- package/package.json +6 -6
- package/src/index.ts +1 -0
package/dist/browser/index.cjs
CHANGED
|
@@ -1,2 +1,46 @@
|
|
|
1
|
-
"use strict";
|
|
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 __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/index.ts
|
|
21
|
+
var src_exports = {};
|
|
22
|
+
__export(src_exports, {
|
|
23
|
+
BowserSystemInfoPayloadPlugin: () => BowserSystemInfoPayloadPlugin,
|
|
24
|
+
BowserSystemInfoSchema: () => BowserSystemInfoSchema,
|
|
25
|
+
bowserSystemInfoPayloadTemplate: () => bowserSystemInfoPayloadTemplate,
|
|
26
|
+
default: () => BowserSystemInfoPayloadPlugin
|
|
27
|
+
});
|
|
28
|
+
module.exports = __toCommonJS(src_exports);
|
|
29
|
+
|
|
30
|
+
// src/Plugin.ts
|
|
31
|
+
var import_payload_plugin = require("@xyo-network/payload-plugin");
|
|
32
|
+
|
|
33
|
+
// src/Schema.ts
|
|
34
|
+
var BowserSystemInfoSchema = "network.xyo.system.info.bowser";
|
|
35
|
+
|
|
36
|
+
// src/Template.ts
|
|
37
|
+
var bowserSystemInfoPayloadTemplate = () => ({
|
|
38
|
+
schema: BowserSystemInfoSchema
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
// src/Plugin.ts
|
|
42
|
+
var BowserSystemInfoPayloadPlugin = () => (0, import_payload_plugin.createPayloadPlugin)({
|
|
43
|
+
schema: BowserSystemInfoSchema,
|
|
44
|
+
template: bowserSystemInfoPayloadTemplate
|
|
45
|
+
});
|
|
2
46
|
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Plugin.ts","../../src/Schema.ts","../../src/Template.ts"],"sourcesContent":["export * from './Payload'\nexport { BowserSystemInfoPayloadPlugin, BowserSystemInfoPayloadPlugin as default } from './Plugin'\nexport * from './Schema'\nexport * from './Template'\n","import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\nimport { bowserSystemInfoPayloadTemplate } from './Template'\n\nexport const BowserSystemInfoPayloadPlugin = () =>\n createPayloadPlugin<BowserSystemInfoPayload>({\n schema: BowserSystemInfoSchema,\n template: bowserSystemInfoPayloadTemplate,\n })\n","export type BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\nexport const BowserSystemInfoSchema: BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\n","import { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\n\nexport const bowserSystemInfoPayloadTemplate = (): BowserSystemInfoPayload => ({\n schema: BowserSystemInfoSchema,\n})\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Plugin.ts","../../src/Schema.ts","../../src/Template.ts"],"sourcesContent":["export * from './Payload'\n// eslint-disable-next-line import/no-default-export\nexport { BowserSystemInfoPayloadPlugin, BowserSystemInfoPayloadPlugin as default } from './Plugin'\nexport * from './Schema'\nexport * from './Template'\n","import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\nimport { bowserSystemInfoPayloadTemplate } from './Template'\n\nexport const BowserSystemInfoPayloadPlugin = () =>\n createPayloadPlugin<BowserSystemInfoPayload>({\n schema: BowserSystemInfoSchema,\n template: bowserSystemInfoPayloadTemplate,\n })\n","export type BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\nexport const BowserSystemInfoSchema: BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\n","import { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\n\nexport const bowserSystemInfoPayloadTemplate = (): BowserSystemInfoPayload => ({\n schema: BowserSystemInfoSchema,\n})\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,4BAAoC;;;ACC7B,IAAM,yBAAiD;;;ACEvD,IAAM,kCAAkC,OAAgC;AAAA,EAC7E,QAAQ;AACV;;;AFCO,IAAM,gCAAgC,UAC3C,2CAA6C;AAAA,EAC3C,QAAQ;AAAA,EACR,UAAU;AACZ,CAAC;","names":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;AAEzB,OAAO,EAAE,6BAA6B,EAAE,6BAA6B,IAAI,OAAO,EAAE,MAAM,UAAU,CAAA;AAClG,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;AAEzB,OAAO,EAAE,6BAA6B,EAAE,6BAA6B,IAAI,OAAO,EAAE,MAAM,UAAU,CAAA;AAClG,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;AAEzB,OAAO,EAAE,6BAA6B,EAAE,6BAA6B,IAAI,OAAO,EAAE,MAAM,UAAU,CAAA;AAClG,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA"}
|
package/dist/browser/index.js
CHANGED
|
@@ -1,2 +1,23 @@
|
|
|
1
|
-
|
|
1
|
+
// src/Plugin.ts
|
|
2
|
+
import { createPayloadPlugin } from "@xyo-network/payload-plugin";
|
|
3
|
+
|
|
4
|
+
// src/Schema.ts
|
|
5
|
+
var BowserSystemInfoSchema = "network.xyo.system.info.bowser";
|
|
6
|
+
|
|
7
|
+
// src/Template.ts
|
|
8
|
+
var bowserSystemInfoPayloadTemplate = () => ({
|
|
9
|
+
schema: BowserSystemInfoSchema
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
// src/Plugin.ts
|
|
13
|
+
var BowserSystemInfoPayloadPlugin = () => createPayloadPlugin({
|
|
14
|
+
schema: BowserSystemInfoSchema,
|
|
15
|
+
template: bowserSystemInfoPayloadTemplate
|
|
16
|
+
});
|
|
17
|
+
export {
|
|
18
|
+
BowserSystemInfoPayloadPlugin,
|
|
19
|
+
BowserSystemInfoSchema,
|
|
20
|
+
bowserSystemInfoPayloadTemplate,
|
|
21
|
+
BowserSystemInfoPayloadPlugin as default
|
|
22
|
+
};
|
|
2
23
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Plugin.ts","../../src/Schema.ts","../../src/Template.ts"],"sourcesContent":["import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\nimport { bowserSystemInfoPayloadTemplate } from './Template'\n\nexport const BowserSystemInfoPayloadPlugin = () =>\n createPayloadPlugin<BowserSystemInfoPayload>({\n schema: BowserSystemInfoSchema,\n template: bowserSystemInfoPayloadTemplate,\n })\n","export type BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\nexport const BowserSystemInfoSchema: BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\n","import { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\n\nexport const bowserSystemInfoPayloadTemplate = (): BowserSystemInfoPayload => ({\n schema: BowserSystemInfoSchema,\n})\n"],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"sources":["../../src/Plugin.ts","../../src/Schema.ts","../../src/Template.ts"],"sourcesContent":["import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\nimport { bowserSystemInfoPayloadTemplate } from './Template'\n\nexport const BowserSystemInfoPayloadPlugin = () =>\n createPayloadPlugin<BowserSystemInfoPayload>({\n schema: BowserSystemInfoSchema,\n template: bowserSystemInfoPayloadTemplate,\n })\n","export type BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\nexport const BowserSystemInfoSchema: BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\n","import { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\n\nexport const bowserSystemInfoPayloadTemplate = (): BowserSystemInfoPayload => ({\n schema: BowserSystemInfoSchema,\n})\n"],"mappings":";AAAA,SAAS,2BAA2B;;;ACC7B,IAAM,yBAAiD;;;ACEvD,IAAM,kCAAkC,OAAgC;AAAA,EAC7E,QAAQ;AACV;;;AFCO,IAAM,gCAAgC,MAC3C,oBAA6C;AAAA,EAC3C,QAAQ;AAAA,EACR,UAAU;AACZ,CAAC;","names":[]}
|
package/dist/neutral/index.cjs
CHANGED
|
@@ -1,2 +1,46 @@
|
|
|
1
|
-
"use strict";
|
|
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 __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/index.ts
|
|
21
|
+
var src_exports = {};
|
|
22
|
+
__export(src_exports, {
|
|
23
|
+
BowserSystemInfoPayloadPlugin: () => BowserSystemInfoPayloadPlugin,
|
|
24
|
+
BowserSystemInfoSchema: () => BowserSystemInfoSchema,
|
|
25
|
+
bowserSystemInfoPayloadTemplate: () => bowserSystemInfoPayloadTemplate,
|
|
26
|
+
default: () => BowserSystemInfoPayloadPlugin
|
|
27
|
+
});
|
|
28
|
+
module.exports = __toCommonJS(src_exports);
|
|
29
|
+
|
|
30
|
+
// src/Plugin.ts
|
|
31
|
+
var import_payload_plugin = require("@xyo-network/payload-plugin");
|
|
32
|
+
|
|
33
|
+
// src/Schema.ts
|
|
34
|
+
var BowserSystemInfoSchema = "network.xyo.system.info.bowser";
|
|
35
|
+
|
|
36
|
+
// src/Template.ts
|
|
37
|
+
var bowserSystemInfoPayloadTemplate = () => ({
|
|
38
|
+
schema: BowserSystemInfoSchema
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
// src/Plugin.ts
|
|
42
|
+
var BowserSystemInfoPayloadPlugin = () => (0, import_payload_plugin.createPayloadPlugin)({
|
|
43
|
+
schema: BowserSystemInfoSchema,
|
|
44
|
+
template: bowserSystemInfoPayloadTemplate
|
|
45
|
+
});
|
|
2
46
|
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Plugin.ts","../../src/Schema.ts","../../src/Template.ts"],"sourcesContent":["export * from './Payload'\nexport { BowserSystemInfoPayloadPlugin, BowserSystemInfoPayloadPlugin as default } from './Plugin'\nexport * from './Schema'\nexport * from './Template'\n","import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\nimport { bowserSystemInfoPayloadTemplate } from './Template'\n\nexport const BowserSystemInfoPayloadPlugin = () =>\n createPayloadPlugin<BowserSystemInfoPayload>({\n schema: BowserSystemInfoSchema,\n template: bowserSystemInfoPayloadTemplate,\n })\n","export type BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\nexport const BowserSystemInfoSchema: BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\n","import { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\n\nexport const bowserSystemInfoPayloadTemplate = (): BowserSystemInfoPayload => ({\n schema: BowserSystemInfoSchema,\n})\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Plugin.ts","../../src/Schema.ts","../../src/Template.ts"],"sourcesContent":["export * from './Payload'\n// eslint-disable-next-line import/no-default-export\nexport { BowserSystemInfoPayloadPlugin, BowserSystemInfoPayloadPlugin as default } from './Plugin'\nexport * from './Schema'\nexport * from './Template'\n","import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\nimport { bowserSystemInfoPayloadTemplate } from './Template'\n\nexport const BowserSystemInfoPayloadPlugin = () =>\n createPayloadPlugin<BowserSystemInfoPayload>({\n schema: BowserSystemInfoSchema,\n template: bowserSystemInfoPayloadTemplate,\n })\n","export type BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\nexport const BowserSystemInfoSchema: BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\n","import { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\n\nexport const bowserSystemInfoPayloadTemplate = (): BowserSystemInfoPayload => ({\n schema: BowserSystemInfoSchema,\n})\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,4BAAoC;;;ACC7B,IAAM,yBAAiD;;;ACEvD,IAAM,kCAAkC,OAAgC;AAAA,EAC7E,QAAQ;AACV;;;AFCO,IAAM,gCAAgC,UAC3C,2CAA6C;AAAA,EAC3C,QAAQ;AAAA,EACR,UAAU;AACZ,CAAC;","names":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;AAEzB,OAAO,EAAE,6BAA6B,EAAE,6BAA6B,IAAI,OAAO,EAAE,MAAM,UAAU,CAAA;AAClG,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;AAEzB,OAAO,EAAE,6BAA6B,EAAE,6BAA6B,IAAI,OAAO,EAAE,MAAM,UAAU,CAAA;AAClG,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;AAEzB,OAAO,EAAE,6BAA6B,EAAE,6BAA6B,IAAI,OAAO,EAAE,MAAM,UAAU,CAAA;AAClG,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA"}
|
package/dist/neutral/index.js
CHANGED
|
@@ -1,2 +1,23 @@
|
|
|
1
|
-
|
|
1
|
+
// src/Plugin.ts
|
|
2
|
+
import { createPayloadPlugin } from "@xyo-network/payload-plugin";
|
|
3
|
+
|
|
4
|
+
// src/Schema.ts
|
|
5
|
+
var BowserSystemInfoSchema = "network.xyo.system.info.bowser";
|
|
6
|
+
|
|
7
|
+
// src/Template.ts
|
|
8
|
+
var bowserSystemInfoPayloadTemplate = () => ({
|
|
9
|
+
schema: BowserSystemInfoSchema
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
// src/Plugin.ts
|
|
13
|
+
var BowserSystemInfoPayloadPlugin = () => createPayloadPlugin({
|
|
14
|
+
schema: BowserSystemInfoSchema,
|
|
15
|
+
template: bowserSystemInfoPayloadTemplate
|
|
16
|
+
});
|
|
17
|
+
export {
|
|
18
|
+
BowserSystemInfoPayloadPlugin,
|
|
19
|
+
BowserSystemInfoSchema,
|
|
20
|
+
bowserSystemInfoPayloadTemplate,
|
|
21
|
+
BowserSystemInfoPayloadPlugin as default
|
|
22
|
+
};
|
|
2
23
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Plugin.ts","../../src/Schema.ts","../../src/Template.ts"],"sourcesContent":["import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\nimport { bowserSystemInfoPayloadTemplate } from './Template'\n\nexport const BowserSystemInfoPayloadPlugin = () =>\n createPayloadPlugin<BowserSystemInfoPayload>({\n schema: BowserSystemInfoSchema,\n template: bowserSystemInfoPayloadTemplate,\n })\n","export type BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\nexport const BowserSystemInfoSchema: BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\n","import { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\n\nexport const bowserSystemInfoPayloadTemplate = (): BowserSystemInfoPayload => ({\n schema: BowserSystemInfoSchema,\n})\n"],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"sources":["../../src/Plugin.ts","../../src/Schema.ts","../../src/Template.ts"],"sourcesContent":["import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\nimport { bowserSystemInfoPayloadTemplate } from './Template'\n\nexport const BowserSystemInfoPayloadPlugin = () =>\n createPayloadPlugin<BowserSystemInfoPayload>({\n schema: BowserSystemInfoSchema,\n template: bowserSystemInfoPayloadTemplate,\n })\n","export type BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\nexport const BowserSystemInfoSchema: BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\n","import { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\n\nexport const bowserSystemInfoPayloadTemplate = (): BowserSystemInfoPayload => ({\n schema: BowserSystemInfoSchema,\n})\n"],"mappings":";AAAA,SAAS,2BAA2B;;;ACC7B,IAAM,yBAAiD;;;ACEvD,IAAM,kCAAkC,OAAgC;AAAA,EAC7E,QAAQ;AACV;;;AFCO,IAAM,gCAAgC,MAC3C,oBAA6C;AAAA,EAC3C,QAAQ;AAAA,EACR,UAAU;AACZ,CAAC;","names":[]}
|
package/dist/node/index.cjs
CHANGED
|
@@ -1,2 +1,52 @@
|
|
|
1
|
-
"use strict";
|
|
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 __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/index.ts
|
|
21
|
+
var src_exports = {};
|
|
22
|
+
__export(src_exports, {
|
|
23
|
+
BowserSystemInfoPayloadPlugin: () => BowserSystemInfoPayloadPlugin,
|
|
24
|
+
BowserSystemInfoSchema: () => BowserSystemInfoSchema,
|
|
25
|
+
bowserSystemInfoPayloadTemplate: () => bowserSystemInfoPayloadTemplate,
|
|
26
|
+
default: () => BowserSystemInfoPayloadPlugin
|
|
27
|
+
});
|
|
28
|
+
module.exports = __toCommonJS(src_exports);
|
|
29
|
+
|
|
30
|
+
// src/Plugin.ts
|
|
31
|
+
var import_payload_plugin = require("@xyo-network/payload-plugin");
|
|
32
|
+
|
|
33
|
+
// src/Schema.ts
|
|
34
|
+
var BowserSystemInfoSchema = "network.xyo.system.info.bowser";
|
|
35
|
+
|
|
36
|
+
// src/Template.ts
|
|
37
|
+
var bowserSystemInfoPayloadTemplate = () => ({
|
|
38
|
+
schema: BowserSystemInfoSchema
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
// src/Plugin.ts
|
|
42
|
+
var BowserSystemInfoPayloadPlugin = () => (0, import_payload_plugin.createPayloadPlugin)({
|
|
43
|
+
schema: BowserSystemInfoSchema,
|
|
44
|
+
template: bowserSystemInfoPayloadTemplate
|
|
45
|
+
});
|
|
46
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
47
|
+
0 && (module.exports = {
|
|
48
|
+
BowserSystemInfoPayloadPlugin,
|
|
49
|
+
BowserSystemInfoSchema,
|
|
50
|
+
bowserSystemInfoPayloadTemplate
|
|
51
|
+
});
|
|
2
52
|
//# sourceMappingURL=index.cjs.map
|
package/dist/node/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Plugin.ts","../../src/Schema.ts","../../src/Template.ts"],"sourcesContent":["export * from './Payload'\nexport { BowserSystemInfoPayloadPlugin, BowserSystemInfoPayloadPlugin as default } from './Plugin'\nexport * from './Schema'\nexport * from './Template'\n","import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\nimport { bowserSystemInfoPayloadTemplate } from './Template'\n\nexport const BowserSystemInfoPayloadPlugin = () =>\n createPayloadPlugin<BowserSystemInfoPayload>({\n schema: BowserSystemInfoSchema,\n template: bowserSystemInfoPayloadTemplate,\n })\n","export type BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\nexport const BowserSystemInfoSchema: BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\n","import { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\n\nexport const bowserSystemInfoPayloadTemplate = (): BowserSystemInfoPayload => ({\n schema: BowserSystemInfoSchema,\n})\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Plugin.ts","../../src/Schema.ts","../../src/Template.ts"],"sourcesContent":["export * from './Payload'\n// eslint-disable-next-line import/no-default-export\nexport { BowserSystemInfoPayloadPlugin, BowserSystemInfoPayloadPlugin as default } from './Plugin'\nexport * from './Schema'\nexport * from './Template'\n","import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\nimport { bowserSystemInfoPayloadTemplate } from './Template'\n\nexport const BowserSystemInfoPayloadPlugin = () =>\n createPayloadPlugin<BowserSystemInfoPayload>({\n schema: BowserSystemInfoSchema,\n template: bowserSystemInfoPayloadTemplate,\n })\n","export type BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\nexport const BowserSystemInfoSchema: BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\n","import { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\n\nexport const bowserSystemInfoPayloadTemplate = (): BowserSystemInfoPayload => ({\n schema: BowserSystemInfoSchema,\n})\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,4BAAoC;;;ACC7B,IAAM,yBAAiD;;;ACEvD,IAAM,kCAAkC,OAAgC;AAAA,EAC7E,QAAQ;AACV;;;AFCO,IAAM,gCAAgC,UAC3C,2CAA6C;AAAA,EAC3C,QAAQ;AAAA,EACR,UAAU;AACZ,CAAC;","names":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;AAEzB,OAAO,EAAE,6BAA6B,EAAE,6BAA6B,IAAI,OAAO,EAAE,MAAM,UAAU,CAAA;AAClG,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;AAEzB,OAAO,EAAE,6BAA6B,EAAE,6BAA6B,IAAI,OAAO,EAAE,MAAM,UAAU,CAAA;AAClG,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA"}
|
package/dist/node/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;AAEzB,OAAO,EAAE,6BAA6B,EAAE,6BAA6B,IAAI,OAAO,EAAE,MAAM,UAAU,CAAA;AAClG,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA"}
|
package/dist/node/index.js
CHANGED
|
@@ -1,2 +1,23 @@
|
|
|
1
|
-
|
|
1
|
+
// src/Plugin.ts
|
|
2
|
+
import { createPayloadPlugin } from "@xyo-network/payload-plugin";
|
|
3
|
+
|
|
4
|
+
// src/Schema.ts
|
|
5
|
+
var BowserSystemInfoSchema = "network.xyo.system.info.bowser";
|
|
6
|
+
|
|
7
|
+
// src/Template.ts
|
|
8
|
+
var bowserSystemInfoPayloadTemplate = () => ({
|
|
9
|
+
schema: BowserSystemInfoSchema
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
// src/Plugin.ts
|
|
13
|
+
var BowserSystemInfoPayloadPlugin = () => createPayloadPlugin({
|
|
14
|
+
schema: BowserSystemInfoSchema,
|
|
15
|
+
template: bowserSystemInfoPayloadTemplate
|
|
16
|
+
});
|
|
17
|
+
export {
|
|
18
|
+
BowserSystemInfoPayloadPlugin,
|
|
19
|
+
BowserSystemInfoSchema,
|
|
20
|
+
bowserSystemInfoPayloadTemplate,
|
|
21
|
+
BowserSystemInfoPayloadPlugin as default
|
|
22
|
+
};
|
|
2
23
|
//# sourceMappingURL=index.js.map
|
package/dist/node/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Plugin.ts","../../src/Schema.ts","../../src/Template.ts"],"sourcesContent":["import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\nimport { bowserSystemInfoPayloadTemplate } from './Template'\n\nexport const BowserSystemInfoPayloadPlugin = () =>\n createPayloadPlugin<BowserSystemInfoPayload>({\n schema: BowserSystemInfoSchema,\n template: bowserSystemInfoPayloadTemplate,\n })\n","export type BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\nexport const BowserSystemInfoSchema: BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\n","import { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\n\nexport const bowserSystemInfoPayloadTemplate = (): BowserSystemInfoPayload => ({\n schema: BowserSystemInfoSchema,\n})\n"],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"sources":["../../src/Plugin.ts","../../src/Schema.ts","../../src/Template.ts"],"sourcesContent":["import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\nimport { bowserSystemInfoPayloadTemplate } from './Template'\n\nexport const BowserSystemInfoPayloadPlugin = () =>\n createPayloadPlugin<BowserSystemInfoPayload>({\n schema: BowserSystemInfoSchema,\n template: bowserSystemInfoPayloadTemplate,\n })\n","export type BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\nexport const BowserSystemInfoSchema: BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\n","import { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\n\nexport const bowserSystemInfoPayloadTemplate = (): BowserSystemInfoPayload => ({\n schema: BowserSystemInfoSchema,\n})\n"],"mappings":";AAAA,SAAS,2BAA2B;;;ACC7B,IAAM,yBAAiD;;;ACEvD,IAAM,kCAAkC,OAAgC;AAAA,EAC7E,QAAQ;AACV;;;AFCO,IAAM,gCAAgC,MAC3C,oBAA6C;AAAA,EAC3C,QAAQ;AAAA,EACR,UAAU;AACZ,CAAC;","names":[]}
|
package/package.json
CHANGED
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/plugins/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xyo-network/payload-model": "^2.
|
|
14
|
-
"@xyo-network/payload-plugin": "^2.
|
|
13
|
+
"@xyo-network/payload-model": "^2.108.0",
|
|
14
|
+
"@xyo-network/payload-plugin": "^2.108.0",
|
|
15
15
|
"bowser": "^2.11.0"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@xylabs/ts-scripts-yarn3": "^3.11.
|
|
19
|
-
"@xylabs/tsconfig": "^3.11.
|
|
20
|
-
"typescript": "^5.5.
|
|
18
|
+
"@xylabs/ts-scripts-yarn3": "^3.11.12",
|
|
19
|
+
"@xylabs/tsconfig": "^3.11.12",
|
|
20
|
+
"typescript": "^5.5.3"
|
|
21
21
|
},
|
|
22
22
|
"description": "Typescript/Javascript Plugins for XYO Platform",
|
|
23
23
|
"exports": {
|
|
@@ -58,6 +58,6 @@
|
|
|
58
58
|
"url": "https://github.com/XYOracleNetwork/plugins.git"
|
|
59
59
|
},
|
|
60
60
|
"sideEffects": false,
|
|
61
|
-
"version": "2.
|
|
61
|
+
"version": "2.98.0",
|
|
62
62
|
"type": "module"
|
|
63
63
|
}
|