@xyo-network/bowser-system-info-payload-plugin 2.99.5 → 2.99.6
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 +4 -5
- package/dist/browser/index.cjs.map +1 -1
- package/dist/browser/index.mjs +4 -7
- package/dist/browser/index.mjs.map +1 -1
- package/dist/neutral/index.cjs +4 -5
- package/dist/neutral/index.cjs.map +1 -1
- package/dist/neutral/index.mjs +4 -7
- package/dist/neutral/index.mjs.map +1 -1
- package/dist/node/index.cjs +4 -5
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.mjs +4 -7
- package/dist/node/index.mjs.map +1 -1
- package/package.json +5 -5
package/dist/browser/index.cjs
CHANGED
|
@@ -3,7 +3,6 @@ var __defProp = Object.defineProperty;
|
|
|
3
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
5
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
7
6
|
var __export = (target, all) => {
|
|
8
7
|
for (var name in all)
|
|
9
8
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
@@ -35,13 +34,13 @@ var import_payload_plugin = require("@xyo-network/payload-plugin");
|
|
|
35
34
|
var BowserSystemInfoSchema = "network.xyo.system.info.bowser";
|
|
36
35
|
|
|
37
36
|
// src/Template.ts
|
|
38
|
-
var bowserSystemInfoPayloadTemplate =
|
|
37
|
+
var bowserSystemInfoPayloadTemplate = () => ({
|
|
39
38
|
schema: BowserSystemInfoSchema
|
|
40
|
-
})
|
|
39
|
+
});
|
|
41
40
|
|
|
42
41
|
// src/Plugin.ts
|
|
43
|
-
var BowserSystemInfoPayloadPlugin =
|
|
42
|
+
var BowserSystemInfoPayloadPlugin = () => (0, import_payload_plugin.createPayloadPlugin)({
|
|
44
43
|
schema: BowserSystemInfoSchema,
|
|
45
44
|
template: bowserSystemInfoPayloadTemplate
|
|
46
|
-
})
|
|
45
|
+
});
|
|
47
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.ts'\n// eslint-disable-next-line import/no-default-export\nexport { BowserSystemInfoPayloadPlugin, BowserSystemInfoPayloadPlugin as default } from './Plugin.ts'\nexport * from './Schema.ts'\nexport * from './Template.ts'\n","import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { BowserSystemInfoPayload } from './Payload.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\nimport { bowserSystemInfoPayloadTemplate } from './Template.ts'\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.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\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.ts'\n// eslint-disable-next-line import/no-default-export\nexport { BowserSystemInfoPayloadPlugin, BowserSystemInfoPayloadPlugin as default } from './Plugin.ts'\nexport * from './Schema.ts'\nexport * from './Template.ts'\n","import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { BowserSystemInfoPayload } from './Payload.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\nimport { bowserSystemInfoPayloadTemplate } from './Template.ts'\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.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\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":[]}
|
package/dist/browser/index.mjs
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
-
|
|
4
1
|
// src/Plugin.ts
|
|
5
2
|
import { createPayloadPlugin } from "@xyo-network/payload-plugin";
|
|
6
3
|
|
|
@@ -8,15 +5,15 @@ import { createPayloadPlugin } from "@xyo-network/payload-plugin";
|
|
|
8
5
|
var BowserSystemInfoSchema = "network.xyo.system.info.bowser";
|
|
9
6
|
|
|
10
7
|
// src/Template.ts
|
|
11
|
-
var bowserSystemInfoPayloadTemplate =
|
|
8
|
+
var bowserSystemInfoPayloadTemplate = () => ({
|
|
12
9
|
schema: BowserSystemInfoSchema
|
|
13
|
-
})
|
|
10
|
+
});
|
|
14
11
|
|
|
15
12
|
// src/Plugin.ts
|
|
16
|
-
var BowserSystemInfoPayloadPlugin =
|
|
13
|
+
var BowserSystemInfoPayloadPlugin = () => createPayloadPlugin({
|
|
17
14
|
schema: BowserSystemInfoSchema,
|
|
18
15
|
template: bowserSystemInfoPayloadTemplate
|
|
19
|
-
})
|
|
16
|
+
});
|
|
20
17
|
export {
|
|
21
18
|
BowserSystemInfoPayloadPlugin,
|
|
22
19
|
BowserSystemInfoSchema,
|
|
@@ -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.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\nimport { bowserSystemInfoPayloadTemplate } from './Template.ts'\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.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\n\nexport const bowserSystemInfoPayloadTemplate = (): BowserSystemInfoPayload => ({\n schema: BowserSystemInfoSchema,\n})\n"],"mappings":"
|
|
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.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\nimport { bowserSystemInfoPayloadTemplate } from './Template.ts'\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.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\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
|
@@ -3,7 +3,6 @@ var __defProp = Object.defineProperty;
|
|
|
3
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
5
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
7
6
|
var __export = (target, all) => {
|
|
8
7
|
for (var name in all)
|
|
9
8
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
@@ -35,13 +34,13 @@ var import_payload_plugin = require("@xyo-network/payload-plugin");
|
|
|
35
34
|
var BowserSystemInfoSchema = "network.xyo.system.info.bowser";
|
|
36
35
|
|
|
37
36
|
// src/Template.ts
|
|
38
|
-
var bowserSystemInfoPayloadTemplate =
|
|
37
|
+
var bowserSystemInfoPayloadTemplate = () => ({
|
|
39
38
|
schema: BowserSystemInfoSchema
|
|
40
|
-
})
|
|
39
|
+
});
|
|
41
40
|
|
|
42
41
|
// src/Plugin.ts
|
|
43
|
-
var BowserSystemInfoPayloadPlugin =
|
|
42
|
+
var BowserSystemInfoPayloadPlugin = () => (0, import_payload_plugin.createPayloadPlugin)({
|
|
44
43
|
schema: BowserSystemInfoSchema,
|
|
45
44
|
template: bowserSystemInfoPayloadTemplate
|
|
46
|
-
})
|
|
45
|
+
});
|
|
47
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.ts'\n// eslint-disable-next-line import/no-default-export\nexport { BowserSystemInfoPayloadPlugin, BowserSystemInfoPayloadPlugin as default } from './Plugin.ts'\nexport * from './Schema.ts'\nexport * from './Template.ts'\n","import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { BowserSystemInfoPayload } from './Payload.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\nimport { bowserSystemInfoPayloadTemplate } from './Template.ts'\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.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\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.ts'\n// eslint-disable-next-line import/no-default-export\nexport { BowserSystemInfoPayloadPlugin, BowserSystemInfoPayloadPlugin as default } from './Plugin.ts'\nexport * from './Schema.ts'\nexport * from './Template.ts'\n","import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { BowserSystemInfoPayload } from './Payload.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\nimport { bowserSystemInfoPayloadTemplate } from './Template.ts'\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.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\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":[]}
|
package/dist/neutral/index.mjs
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
-
|
|
4
1
|
// src/Plugin.ts
|
|
5
2
|
import { createPayloadPlugin } from "@xyo-network/payload-plugin";
|
|
6
3
|
|
|
@@ -8,15 +5,15 @@ import { createPayloadPlugin } from "@xyo-network/payload-plugin";
|
|
|
8
5
|
var BowserSystemInfoSchema = "network.xyo.system.info.bowser";
|
|
9
6
|
|
|
10
7
|
// src/Template.ts
|
|
11
|
-
var bowserSystemInfoPayloadTemplate =
|
|
8
|
+
var bowserSystemInfoPayloadTemplate = () => ({
|
|
12
9
|
schema: BowserSystemInfoSchema
|
|
13
|
-
})
|
|
10
|
+
});
|
|
14
11
|
|
|
15
12
|
// src/Plugin.ts
|
|
16
|
-
var BowserSystemInfoPayloadPlugin =
|
|
13
|
+
var BowserSystemInfoPayloadPlugin = () => createPayloadPlugin({
|
|
17
14
|
schema: BowserSystemInfoSchema,
|
|
18
15
|
template: bowserSystemInfoPayloadTemplate
|
|
19
|
-
})
|
|
16
|
+
});
|
|
20
17
|
export {
|
|
21
18
|
BowserSystemInfoPayloadPlugin,
|
|
22
19
|
BowserSystemInfoSchema,
|
|
@@ -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.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\nimport { bowserSystemInfoPayloadTemplate } from './Template.ts'\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.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\n\nexport const bowserSystemInfoPayloadTemplate = (): BowserSystemInfoPayload => ({\n schema: BowserSystemInfoSchema,\n})\n"],"mappings":"
|
|
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.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\nimport { bowserSystemInfoPayloadTemplate } from './Template.ts'\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.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\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
|
@@ -3,7 +3,6 @@ var __defProp = Object.defineProperty;
|
|
|
3
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
5
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
7
6
|
var __export = (target, all) => {
|
|
8
7
|
for (var name in all)
|
|
9
8
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
@@ -35,15 +34,15 @@ var import_payload_plugin = require("@xyo-network/payload-plugin");
|
|
|
35
34
|
var BowserSystemInfoSchema = "network.xyo.system.info.bowser";
|
|
36
35
|
|
|
37
36
|
// src/Template.ts
|
|
38
|
-
var bowserSystemInfoPayloadTemplate =
|
|
37
|
+
var bowserSystemInfoPayloadTemplate = () => ({
|
|
39
38
|
schema: BowserSystemInfoSchema
|
|
40
|
-
})
|
|
39
|
+
});
|
|
41
40
|
|
|
42
41
|
// src/Plugin.ts
|
|
43
|
-
var BowserSystemInfoPayloadPlugin =
|
|
42
|
+
var BowserSystemInfoPayloadPlugin = () => (0, import_payload_plugin.createPayloadPlugin)({
|
|
44
43
|
schema: BowserSystemInfoSchema,
|
|
45
44
|
template: bowserSystemInfoPayloadTemplate
|
|
46
|
-
})
|
|
45
|
+
});
|
|
47
46
|
// Annotate the CommonJS export names for ESM import in node:
|
|
48
47
|
0 && (module.exports = {
|
|
49
48
|
BowserSystemInfoPayloadPlugin,
|
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.ts'\n// eslint-disable-next-line import/no-default-export\nexport { BowserSystemInfoPayloadPlugin, BowserSystemInfoPayloadPlugin as default } from './Plugin.ts'\nexport * from './Schema.ts'\nexport * from './Template.ts'\n","import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { BowserSystemInfoPayload } from './Payload.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\nimport { bowserSystemInfoPayloadTemplate } from './Template.ts'\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.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\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.ts'\n// eslint-disable-next-line import/no-default-export\nexport { BowserSystemInfoPayloadPlugin, BowserSystemInfoPayloadPlugin as default } from './Plugin.ts'\nexport * from './Schema.ts'\nexport * from './Template.ts'\n","import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { BowserSystemInfoPayload } from './Payload.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\nimport { bowserSystemInfoPayloadTemplate } from './Template.ts'\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.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\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":[]}
|
package/dist/node/index.mjs
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
-
|
|
4
1
|
// src/Plugin.ts
|
|
5
2
|
import { createPayloadPlugin } from "@xyo-network/payload-plugin";
|
|
6
3
|
|
|
@@ -8,15 +5,15 @@ import { createPayloadPlugin } from "@xyo-network/payload-plugin";
|
|
|
8
5
|
var BowserSystemInfoSchema = "network.xyo.system.info.bowser";
|
|
9
6
|
|
|
10
7
|
// src/Template.ts
|
|
11
|
-
var bowserSystemInfoPayloadTemplate =
|
|
8
|
+
var bowserSystemInfoPayloadTemplate = () => ({
|
|
12
9
|
schema: BowserSystemInfoSchema
|
|
13
|
-
})
|
|
10
|
+
});
|
|
14
11
|
|
|
15
12
|
// src/Plugin.ts
|
|
16
|
-
var BowserSystemInfoPayloadPlugin =
|
|
13
|
+
var BowserSystemInfoPayloadPlugin = () => createPayloadPlugin({
|
|
17
14
|
schema: BowserSystemInfoSchema,
|
|
18
15
|
template: bowserSystemInfoPayloadTemplate
|
|
19
|
-
})
|
|
16
|
+
});
|
|
20
17
|
export {
|
|
21
18
|
BowserSystemInfoPayloadPlugin,
|
|
22
19
|
BowserSystemInfoSchema,
|
package/dist/node/index.mjs.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.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\nimport { bowserSystemInfoPayloadTemplate } from './Template.ts'\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.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\n\nexport const bowserSystemInfoPayloadTemplate = (): BowserSystemInfoPayload => ({\n schema: BowserSystemInfoSchema,\n})\n"],"mappings":"
|
|
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.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\nimport { bowserSystemInfoPayloadTemplate } from './Template.ts'\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.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\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,13 +10,13 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/plugins/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xyo-network/payload-model": "^2.111.
|
|
14
|
-
"@xyo-network/payload-plugin": "^2.111.
|
|
13
|
+
"@xyo-network/payload-model": "^2.111.3",
|
|
14
|
+
"@xyo-network/payload-plugin": "^2.111.3",
|
|
15
15
|
"bowser": "^2.11.0"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@xylabs/ts-scripts-yarn3": "^3.15.
|
|
19
|
-
"@xylabs/tsconfig": "^3.15.
|
|
18
|
+
"@xylabs/ts-scripts-yarn3": "^3.15.14",
|
|
19
|
+
"@xylabs/tsconfig": "^3.15.14",
|
|
20
20
|
"typescript": "^5.5.4"
|
|
21
21
|
},
|
|
22
22
|
"description": "Typescript/Javascript Plugins for XYO Platform",
|
|
@@ -58,6 +58,6 @@
|
|
|
58
58
|
"url": "https://github.com/XYOracleNetwork/plugins.git"
|
|
59
59
|
},
|
|
60
60
|
"sideEffects": false,
|
|
61
|
-
"version": "2.99.
|
|
61
|
+
"version": "2.99.6",
|
|
62
62
|
"type": "module"
|
|
63
63
|
}
|