@xyo-network/bowser-system-info-payload-plugin 2.75.0 → 2.75.1
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/Payload.d.cts +8 -0
- package/dist/browser/Payload.d.cts.map +1 -0
- package/dist/browser/Plugin.d.cts +5 -0
- package/dist/browser/Plugin.d.cts.map +1 -0
- package/dist/browser/Plugin.js +3 -12
- package/dist/browser/Plugin.js.map +1 -1
- package/dist/browser/Schema.d.cts +3 -0
- package/dist/browser/Schema.d.cts.map +1 -0
- package/dist/browser/Schema.js +1 -2
- package/dist/browser/Schema.js.map +1 -1
- package/dist/browser/Template.d.cts +3 -0
- package/dist/browser/Template.d.cts.map +1 -0
- package/dist/browser/Template.js +2 -5
- package/dist/browser/Template.js.map +1 -1
- package/dist/browser/index.d.cts +7 -0
- package/dist/browser/index.d.cts.map +1 -0
- package/dist/browser/index.js +4 -20
- package/dist/browser/index.js.map +1 -1
- package/dist/docs.json +558 -0
- package/dist/node/Payload.d.cts +8 -0
- package/dist/node/Payload.d.cts.map +1 -0
- package/dist/node/Payload.js +2 -0
- package/dist/node/Payload.js.map +1 -1
- package/dist/node/Plugin.d.cts +5 -0
- package/dist/node/Plugin.d.cts.map +1 -0
- package/dist/node/Plugin.js +15 -5
- package/dist/node/Plugin.js.map +1 -1
- package/dist/node/Plugin.mjs +12 -3
- package/dist/node/Plugin.mjs.map +1 -1
- package/dist/node/Schema.d.cts +3 -0
- package/dist/node/Schema.d.cts.map +1 -0
- package/dist/node/Schema.js +3 -1
- package/dist/node/Schema.js.map +1 -1
- package/dist/node/Schema.mjs +2 -1
- package/dist/node/Schema.mjs.map +1 -1
- package/dist/node/Template.d.cts +3 -0
- package/dist/node/Template.d.cts.map +1 -0
- package/dist/node/Template.js +9 -3
- package/dist/node/Template.js.map +1 -1
- package/dist/node/Template.mjs +5 -2
- package/dist/node/Template.mjs.map +1 -1
- package/dist/node/index.d.cts +7 -0
- package/dist/node/index.d.cts.map +1 -0
- package/dist/node/index.js +27 -10
- package/dist/node/index.js.map +1 -1
- package/dist/node/index.mjs +20 -4
- package/dist/node/index.mjs.map +1 -1
- package/package.json +6 -6
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
+
import { Parser } from 'bowser';
|
|
3
|
+
import { BowserSystemInfoSchema } from './Schema';
|
|
4
|
+
export type BowserSystemInfoPayload = Payload<{
|
|
5
|
+
bowser?: Parser.ParsedResult;
|
|
6
|
+
schema: BowserSystemInfoSchema;
|
|
7
|
+
}>;
|
|
8
|
+
//# sourceMappingURL=Payload.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Payload.d.ts","sourceRoot":"","sources":["../../src/Payload.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAA;AACpD,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAA;AAE/B,OAAO,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAA;AAEjD,MAAM,MAAM,uBAAuB,GAAG,OAAO,CAAC;IAC5C,MAAM,CAAC,EAAE,MAAM,CAAC,YAAY,CAAA;IAC5B,MAAM,EAAE,sBAAsB,CAAA;CAC/B,CAAC,CAAA"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export declare const BowserSystemInfoPayloadPlugin: () => import("@xyo-network/payload-plugin").PayloadPlugin<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
2
|
+
bowser?: import("bowser").Parser.ParsedResult | undefined;
|
|
3
|
+
schema: "network.xyo.system.info.bowser";
|
|
4
|
+
}>;
|
|
5
|
+
//# sourceMappingURL=Plugin.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Plugin.d.ts","sourceRoot":"","sources":["../../src/Plugin.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,6BAA6B;;;EAItC,CAAA"}
|
package/dist/browser/Plugin.js
CHANGED
|
@@ -1,16 +1,7 @@
|
|
|
1
|
-
// src/Plugin.ts
|
|
2
1
|
import { createPayloadPlugin } from "@xyo-network/payload-plugin";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
// src/Template.ts
|
|
8
|
-
var bowserSystemInfoPayloadTemplate = () => ({
|
|
9
|
-
schema: BowserSystemInfoSchema
|
|
10
|
-
});
|
|
11
|
-
|
|
12
|
-
// src/Plugin.ts
|
|
13
|
-
var BowserSystemInfoPayloadPlugin = () => createPayloadPlugin({
|
|
2
|
+
import { BowserSystemInfoSchema } from "./Schema";
|
|
3
|
+
import { bowserSystemInfoPayloadTemplate } from "./Template";
|
|
4
|
+
const BowserSystemInfoPayloadPlugin = () => createPayloadPlugin({
|
|
14
5
|
schema: BowserSystemInfoSchema,
|
|
15
6
|
template: bowserSystemInfoPayloadTemplate
|
|
16
7
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Plugin.ts"
|
|
1
|
+
{"version":3,"sources":["../../src/Plugin.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"],"mappings":"AAAA,SAAS,2BAA2B;AAGpC,SAAS,8BAA8B;AACvC,SAAS,uCAAuC;AAEzC,MAAM,gCAAgC,MAC3C,oBAA6C;AAAA,EAC3C,QAAQ;AAAA,EACR,UAAU;AACZ,CAAC;","names":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Schema.d.ts","sourceRoot":"","sources":["../../src/Schema.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,sBAAsB,GAAG,gCAAgC,CAAA;AACrE,eAAO,MAAM,sBAAsB,EAAE,sBAAyD,CAAA"}
|
package/dist/browser/Schema.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Schema.ts"],"sourcesContent":["export type BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\nexport const BowserSystemInfoSchema: BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/Schema.ts"],"sourcesContent":["export type BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\nexport const BowserSystemInfoSchema: BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\n"],"mappings":"AACO,MAAM,yBAAiD;","names":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Template.d.ts","sourceRoot":"","sources":["../../src/Template.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,WAAW,CAAA;AAGnD,eAAO,MAAM,+BAA+B,QAAO,uBAEjD,CAAA"}
|
package/dist/browser/Template.js
CHANGED
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
// src/Template.ts
|
|
5
|
-
var bowserSystemInfoPayloadTemplate = () => ({
|
|
1
|
+
import { BowserSystemInfoSchema } from "./Schema";
|
|
2
|
+
const bowserSystemInfoPayloadTemplate = () => ({
|
|
6
3
|
schema: BowserSystemInfoSchema
|
|
7
4
|
});
|
|
8
5
|
export {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/
|
|
1
|
+
{"version":3,"sources":["../../src/Template.ts"],"sourcesContent":["import { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\n\nexport const bowserSystemInfoPayloadTemplate = (): BowserSystemInfoPayload => ({\n schema: BowserSystemInfoSchema,\n})\n"],"mappings":"AACA,SAAS,8BAA8B;AAEhC,MAAM,kCAAkC,OAAgC;AAAA,EAC7E,QAAQ;AACV;","names":[]}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BowserSystemInfoPayloadPlugin } from './Plugin';
|
|
2
|
+
export * from './Payload';
|
|
3
|
+
export * from './Schema';
|
|
4
|
+
export * from './Template';
|
|
5
|
+
export { BowserSystemInfoPayloadPlugin };
|
|
6
|
+
export default BowserSystemInfoPayloadPlugin;
|
|
7
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,6BAA6B,EAAE,MAAM,UAAU,CAAA;AAExD,cAAc,WAAW,CAAA;AACzB,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA;AAE1B,OAAO,EAAE,6BAA6B,EAAE,CAAA;AAGxC,eAAe,6BAA6B,CAAA"}
|
package/dist/browser/index.js
CHANGED
|
@@ -1,26 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
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
|
-
|
|
18
|
-
// src/index.ts
|
|
1
|
+
import { BowserSystemInfoPayloadPlugin } from "./Plugin";
|
|
2
|
+
export * from "./Payload";
|
|
3
|
+
export * from "./Schema";
|
|
4
|
+
export * from "./Template";
|
|
19
5
|
var src_default = BowserSystemInfoPayloadPlugin;
|
|
20
6
|
export {
|
|
21
7
|
BowserSystemInfoPayloadPlugin,
|
|
22
|
-
BowserSystemInfoSchema,
|
|
23
|
-
bowserSystemInfoPayloadTemplate,
|
|
24
8
|
src_default as default
|
|
25
9
|
};
|
|
26
10
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["import { BowserSystemInfoPayloadPlugin } from './Plugin'\n\nexport * from './Payload'\nexport * from './Schema'\nexport * from './Template'\n\nexport { BowserSystemInfoPayloadPlugin }\n\n// eslint-disable-next-line import/no-default-export\nexport default BowserSystemInfoPayloadPlugin\n"],"mappings":"AAAA,SAAS,qCAAqC;AAE9C,cAAc;AACd,cAAc;AACd,cAAc;AAKd,IAAO,cAAQ;","names":[]}
|
package/dist/docs.json
ADDED
|
@@ -0,0 +1,558 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": 0,
|
|
3
|
+
"name": "@xyo-network/bowser-system-info-payload-plugin",
|
|
4
|
+
"variant": "project",
|
|
5
|
+
"kind": 1,
|
|
6
|
+
"flags": {},
|
|
7
|
+
"children": [
|
|
8
|
+
{
|
|
9
|
+
"id": 17,
|
|
10
|
+
"name": "default",
|
|
11
|
+
"variant": "reference",
|
|
12
|
+
"kind": 8388608,
|
|
13
|
+
"flags": {},
|
|
14
|
+
"sources": [
|
|
15
|
+
{
|
|
16
|
+
"fileName": "index.ts",
|
|
17
|
+
"line": 10,
|
|
18
|
+
"character": 0,
|
|
19
|
+
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/ca3276aa9c376/packages/plugins/packages/payload/packages/system/packages/info/packages/bowser/src/index.ts#L10"
|
|
20
|
+
}
|
|
21
|
+
],
|
|
22
|
+
"target": 1
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"id": 6,
|
|
26
|
+
"name": "BowserSystemInfoPayload",
|
|
27
|
+
"variant": "declaration",
|
|
28
|
+
"kind": 4194304,
|
|
29
|
+
"flags": {},
|
|
30
|
+
"sources": [
|
|
31
|
+
{
|
|
32
|
+
"fileName": "Payload.ts",
|
|
33
|
+
"line": 6,
|
|
34
|
+
"character": 12,
|
|
35
|
+
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/ca3276aa9c376/packages/plugins/packages/payload/packages/system/packages/info/packages/bowser/src/Payload.ts#L6"
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"type": {
|
|
39
|
+
"type": "reference",
|
|
40
|
+
"target": {
|
|
41
|
+
"sourceFileName": "../../../../../../../../../protocol/packages/payload/packages/model/src/Payload.ts",
|
|
42
|
+
"qualifiedName": "Payload"
|
|
43
|
+
},
|
|
44
|
+
"typeArguments": [
|
|
45
|
+
{
|
|
46
|
+
"type": "reflection",
|
|
47
|
+
"declaration": {
|
|
48
|
+
"id": 7,
|
|
49
|
+
"name": "__type",
|
|
50
|
+
"variant": "declaration",
|
|
51
|
+
"kind": 65536,
|
|
52
|
+
"flags": {},
|
|
53
|
+
"children": [
|
|
54
|
+
{
|
|
55
|
+
"id": 8,
|
|
56
|
+
"name": "bowser",
|
|
57
|
+
"variant": "declaration",
|
|
58
|
+
"kind": 1024,
|
|
59
|
+
"flags": {
|
|
60
|
+
"isOptional": true
|
|
61
|
+
},
|
|
62
|
+
"sources": [
|
|
63
|
+
{
|
|
64
|
+
"fileName": "Payload.ts",
|
|
65
|
+
"line": 7,
|
|
66
|
+
"character": 2,
|
|
67
|
+
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/ca3276aa9c376/packages/plugins/packages/payload/packages/system/packages/info/packages/bowser/src/Payload.ts#L7"
|
|
68
|
+
}
|
|
69
|
+
],
|
|
70
|
+
"type": {
|
|
71
|
+
"type": "reference",
|
|
72
|
+
"target": {
|
|
73
|
+
"sourceFileName": "../../../../../../../../../../node_modules/bowser/index.d.ts",
|
|
74
|
+
"qualifiedName": "Bowser.Parser.ParsedResult"
|
|
75
|
+
},
|
|
76
|
+
"name": "Parser.ParsedResult",
|
|
77
|
+
"package": "bowser",
|
|
78
|
+
"qualifiedName": "Bowser.Parser.ParsedResult"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"id": 9,
|
|
83
|
+
"name": "schema",
|
|
84
|
+
"variant": "declaration",
|
|
85
|
+
"kind": 1024,
|
|
86
|
+
"flags": {},
|
|
87
|
+
"sources": [
|
|
88
|
+
{
|
|
89
|
+
"fileName": "Payload.ts",
|
|
90
|
+
"line": 8,
|
|
91
|
+
"character": 2,
|
|
92
|
+
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/ca3276aa9c376/packages/plugins/packages/payload/packages/system/packages/info/packages/bowser/src/Payload.ts#L8"
|
|
93
|
+
}
|
|
94
|
+
],
|
|
95
|
+
"type": {
|
|
96
|
+
"type": "reference",
|
|
97
|
+
"target": 10,
|
|
98
|
+
"name": "BowserSystemInfoSchema",
|
|
99
|
+
"package": "@xyo-network/bowser-system-info-payload-plugin"
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
"groups": [
|
|
104
|
+
{
|
|
105
|
+
"title": "Properties",
|
|
106
|
+
"children": [
|
|
107
|
+
8,
|
|
108
|
+
9
|
|
109
|
+
]
|
|
110
|
+
}
|
|
111
|
+
],
|
|
112
|
+
"sources": [
|
|
113
|
+
{
|
|
114
|
+
"fileName": "Payload.ts",
|
|
115
|
+
"line": 6,
|
|
116
|
+
"character": 46,
|
|
117
|
+
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/ca3276aa9c376/packages/plugins/packages/payload/packages/system/packages/info/packages/bowser/src/Payload.ts#L6"
|
|
118
|
+
}
|
|
119
|
+
]
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
],
|
|
123
|
+
"name": "Payload",
|
|
124
|
+
"package": "@xyo-network/payload-model"
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"id": 11,
|
|
129
|
+
"name": "BowserSystemInfoSchema",
|
|
130
|
+
"variant": "declaration",
|
|
131
|
+
"kind": 4194304,
|
|
132
|
+
"flags": {},
|
|
133
|
+
"sources": [
|
|
134
|
+
{
|
|
135
|
+
"fileName": "Schema.ts",
|
|
136
|
+
"line": 1,
|
|
137
|
+
"character": 12,
|
|
138
|
+
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/ca3276aa9c376/packages/plugins/packages/payload/packages/system/packages/info/packages/bowser/src/Schema.ts#L1"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"fileName": "Schema.ts",
|
|
142
|
+
"line": 2,
|
|
143
|
+
"character": 13,
|
|
144
|
+
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/ca3276aa9c376/packages/plugins/packages/payload/packages/system/packages/info/packages/bowser/src/Schema.ts#L2"
|
|
145
|
+
}
|
|
146
|
+
],
|
|
147
|
+
"type": {
|
|
148
|
+
"type": "literal",
|
|
149
|
+
"value": "network.xyo.system.info.bowser"
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"id": 10,
|
|
154
|
+
"name": "BowserSystemInfoSchema",
|
|
155
|
+
"variant": "declaration",
|
|
156
|
+
"kind": 32,
|
|
157
|
+
"flags": {},
|
|
158
|
+
"sources": [
|
|
159
|
+
{
|
|
160
|
+
"fileName": "Schema.ts",
|
|
161
|
+
"line": 1,
|
|
162
|
+
"character": 12,
|
|
163
|
+
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/ca3276aa9c376/packages/plugins/packages/payload/packages/system/packages/info/packages/bowser/src/Schema.ts#L1"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"fileName": "Schema.ts",
|
|
167
|
+
"line": 2,
|
|
168
|
+
"character": 13,
|
|
169
|
+
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/ca3276aa9c376/packages/plugins/packages/payload/packages/system/packages/info/packages/bowser/src/Schema.ts#L2"
|
|
170
|
+
}
|
|
171
|
+
],
|
|
172
|
+
"type": {
|
|
173
|
+
"type": "literal",
|
|
174
|
+
"value": "network.xyo.system.info.bowser"
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"id": 1,
|
|
179
|
+
"name": "BowserSystemInfoPayloadPlugin",
|
|
180
|
+
"variant": "declaration",
|
|
181
|
+
"kind": 64,
|
|
182
|
+
"flags": {},
|
|
183
|
+
"sources": [
|
|
184
|
+
{
|
|
185
|
+
"fileName": "Plugin.ts",
|
|
186
|
+
"line": 7,
|
|
187
|
+
"character": 13,
|
|
188
|
+
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/ca3276aa9c376/packages/plugins/packages/payload/packages/system/packages/info/packages/bowser/src/Plugin.ts#L7"
|
|
189
|
+
}
|
|
190
|
+
],
|
|
191
|
+
"signatures": [
|
|
192
|
+
{
|
|
193
|
+
"id": 2,
|
|
194
|
+
"name": "BowserSystemInfoPayloadPlugin",
|
|
195
|
+
"variant": "signature",
|
|
196
|
+
"kind": 4096,
|
|
197
|
+
"flags": {},
|
|
198
|
+
"sources": [
|
|
199
|
+
{
|
|
200
|
+
"fileName": "Plugin.ts",
|
|
201
|
+
"line": 7,
|
|
202
|
+
"character": 45,
|
|
203
|
+
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/ca3276aa9c376/packages/plugins/packages/payload/packages/system/packages/info/packages/bowser/src/Plugin.ts#L7"
|
|
204
|
+
}
|
|
205
|
+
],
|
|
206
|
+
"type": {
|
|
207
|
+
"type": "reference",
|
|
208
|
+
"target": {
|
|
209
|
+
"sourceFileName": "../../../../../../../../../sdk/packages/payload-plugin/src/Plugin.ts",
|
|
210
|
+
"qualifiedName": "PayloadPlugin"
|
|
211
|
+
},
|
|
212
|
+
"typeArguments": [
|
|
213
|
+
{
|
|
214
|
+
"type": "intersection",
|
|
215
|
+
"types": [
|
|
216
|
+
{
|
|
217
|
+
"type": "reference",
|
|
218
|
+
"target": {
|
|
219
|
+
"sourceFileName": "../../../../../../../../../protocol/packages/payload/packages/model/src/Payload.ts",
|
|
220
|
+
"qualifiedName": "SchemaFields"
|
|
221
|
+
},
|
|
222
|
+
"name": "SchemaFields",
|
|
223
|
+
"package": "@xyo-network/payload-model"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"type": "reference",
|
|
227
|
+
"target": {
|
|
228
|
+
"sourceFileName": "../../../../../../../../../protocol/packages/payload/packages/model/src/Payload.ts",
|
|
229
|
+
"qualifiedName": "PayloadFields"
|
|
230
|
+
},
|
|
231
|
+
"name": "PayloadFields",
|
|
232
|
+
"package": "@xyo-network/payload-model"
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"type": "reflection",
|
|
236
|
+
"declaration": {
|
|
237
|
+
"id": 3,
|
|
238
|
+
"name": "__type",
|
|
239
|
+
"variant": "declaration",
|
|
240
|
+
"kind": 65536,
|
|
241
|
+
"flags": {},
|
|
242
|
+
"children": [
|
|
243
|
+
{
|
|
244
|
+
"id": 4,
|
|
245
|
+
"name": "bowser",
|
|
246
|
+
"variant": "declaration",
|
|
247
|
+
"kind": 1024,
|
|
248
|
+
"flags": {
|
|
249
|
+
"isOptional": true
|
|
250
|
+
},
|
|
251
|
+
"sources": [
|
|
252
|
+
{
|
|
253
|
+
"fileName": "Payload.ts",
|
|
254
|
+
"line": 7,
|
|
255
|
+
"character": 2,
|
|
256
|
+
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/ca3276aa9c376/packages/plugins/packages/payload/packages/system/packages/info/packages/bowser/src/Payload.ts#L7"
|
|
257
|
+
}
|
|
258
|
+
],
|
|
259
|
+
"type": {
|
|
260
|
+
"type": "reference",
|
|
261
|
+
"target": {
|
|
262
|
+
"sourceFileName": "../../../../../../../../../../node_modules/bowser/index.d.ts",
|
|
263
|
+
"qualifiedName": "Bowser.Parser.ParsedResult"
|
|
264
|
+
},
|
|
265
|
+
"name": "ParsedResult",
|
|
266
|
+
"package": "bowser",
|
|
267
|
+
"qualifiedName": "Bowser.Parser.ParsedResult"
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"id": 5,
|
|
272
|
+
"name": "schema",
|
|
273
|
+
"variant": "declaration",
|
|
274
|
+
"kind": 1024,
|
|
275
|
+
"flags": {},
|
|
276
|
+
"sources": [
|
|
277
|
+
{
|
|
278
|
+
"fileName": "Payload.ts",
|
|
279
|
+
"line": 8,
|
|
280
|
+
"character": 2,
|
|
281
|
+
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/ca3276aa9c376/packages/plugins/packages/payload/packages/system/packages/info/packages/bowser/src/Payload.ts#L8"
|
|
282
|
+
}
|
|
283
|
+
],
|
|
284
|
+
"type": {
|
|
285
|
+
"type": "literal",
|
|
286
|
+
"value": "network.xyo.system.info.bowser"
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
],
|
|
290
|
+
"groups": [
|
|
291
|
+
{
|
|
292
|
+
"title": "Properties",
|
|
293
|
+
"children": [
|
|
294
|
+
4,
|
|
295
|
+
5
|
|
296
|
+
]
|
|
297
|
+
}
|
|
298
|
+
],
|
|
299
|
+
"sources": [
|
|
300
|
+
{
|
|
301
|
+
"fileName": "Payload.ts",
|
|
302
|
+
"line": 6,
|
|
303
|
+
"character": 46,
|
|
304
|
+
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/ca3276aa9c376/packages/plugins/packages/payload/packages/system/packages/info/packages/bowser/src/Payload.ts#L6"
|
|
305
|
+
}
|
|
306
|
+
]
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
]
|
|
310
|
+
}
|
|
311
|
+
],
|
|
312
|
+
"name": "PayloadPlugin",
|
|
313
|
+
"package": "@xyo-network/payload-plugin"
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
]
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"id": 12,
|
|
320
|
+
"name": "bowserSystemInfoPayloadTemplate",
|
|
321
|
+
"variant": "declaration",
|
|
322
|
+
"kind": 64,
|
|
323
|
+
"flags": {},
|
|
324
|
+
"sources": [
|
|
325
|
+
{
|
|
326
|
+
"fileName": "Template.ts",
|
|
327
|
+
"line": 4,
|
|
328
|
+
"character": 13,
|
|
329
|
+
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/ca3276aa9c376/packages/plugins/packages/payload/packages/system/packages/info/packages/bowser/src/Template.ts#L4"
|
|
330
|
+
}
|
|
331
|
+
],
|
|
332
|
+
"signatures": [
|
|
333
|
+
{
|
|
334
|
+
"id": 13,
|
|
335
|
+
"name": "bowserSystemInfoPayloadTemplate",
|
|
336
|
+
"variant": "signature",
|
|
337
|
+
"kind": 4096,
|
|
338
|
+
"flags": {},
|
|
339
|
+
"sources": [
|
|
340
|
+
{
|
|
341
|
+
"fileName": "Template.ts",
|
|
342
|
+
"line": 4,
|
|
343
|
+
"character": 47,
|
|
344
|
+
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/ca3276aa9c376/packages/plugins/packages/payload/packages/system/packages/info/packages/bowser/src/Template.ts#L4"
|
|
345
|
+
}
|
|
346
|
+
],
|
|
347
|
+
"type": {
|
|
348
|
+
"type": "intersection",
|
|
349
|
+
"types": [
|
|
350
|
+
{
|
|
351
|
+
"type": "reference",
|
|
352
|
+
"target": {
|
|
353
|
+
"sourceFileName": "../../../../../../../../../protocol/packages/payload/packages/model/src/Payload.ts",
|
|
354
|
+
"qualifiedName": "SchemaFields"
|
|
355
|
+
},
|
|
356
|
+
"name": "SchemaFields",
|
|
357
|
+
"package": "@xyo-network/payload-model"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"type": "reference",
|
|
361
|
+
"target": {
|
|
362
|
+
"sourceFileName": "../../../../../../../../../protocol/packages/payload/packages/model/src/Payload.ts",
|
|
363
|
+
"qualifiedName": "PayloadFields"
|
|
364
|
+
},
|
|
365
|
+
"name": "PayloadFields",
|
|
366
|
+
"package": "@xyo-network/payload-model"
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"type": "reflection",
|
|
370
|
+
"declaration": {
|
|
371
|
+
"id": 14,
|
|
372
|
+
"name": "__type",
|
|
373
|
+
"variant": "declaration",
|
|
374
|
+
"kind": 65536,
|
|
375
|
+
"flags": {},
|
|
376
|
+
"children": [
|
|
377
|
+
{
|
|
378
|
+
"id": 15,
|
|
379
|
+
"name": "bowser",
|
|
380
|
+
"variant": "declaration",
|
|
381
|
+
"kind": 1024,
|
|
382
|
+
"flags": {
|
|
383
|
+
"isOptional": true
|
|
384
|
+
},
|
|
385
|
+
"sources": [
|
|
386
|
+
{
|
|
387
|
+
"fileName": "Payload.ts",
|
|
388
|
+
"line": 7,
|
|
389
|
+
"character": 2,
|
|
390
|
+
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/ca3276aa9c376/packages/plugins/packages/payload/packages/system/packages/info/packages/bowser/src/Payload.ts#L7"
|
|
391
|
+
}
|
|
392
|
+
],
|
|
393
|
+
"type": {
|
|
394
|
+
"type": "reference",
|
|
395
|
+
"target": {
|
|
396
|
+
"sourceFileName": "../../../../../../../../../../node_modules/bowser/index.d.ts",
|
|
397
|
+
"qualifiedName": "Bowser.Parser.ParsedResult"
|
|
398
|
+
},
|
|
399
|
+
"name": "ParsedResult",
|
|
400
|
+
"package": "bowser",
|
|
401
|
+
"qualifiedName": "Bowser.Parser.ParsedResult"
|
|
402
|
+
}
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"id": 16,
|
|
406
|
+
"name": "schema",
|
|
407
|
+
"variant": "declaration",
|
|
408
|
+
"kind": 1024,
|
|
409
|
+
"flags": {},
|
|
410
|
+
"sources": [
|
|
411
|
+
{
|
|
412
|
+
"fileName": "Payload.ts",
|
|
413
|
+
"line": 8,
|
|
414
|
+
"character": 2,
|
|
415
|
+
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/ca3276aa9c376/packages/plugins/packages/payload/packages/system/packages/info/packages/bowser/src/Payload.ts#L8"
|
|
416
|
+
}
|
|
417
|
+
],
|
|
418
|
+
"type": {
|
|
419
|
+
"type": "literal",
|
|
420
|
+
"value": "network.xyo.system.info.bowser"
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
],
|
|
424
|
+
"groups": [
|
|
425
|
+
{
|
|
426
|
+
"title": "Properties",
|
|
427
|
+
"children": [
|
|
428
|
+
15,
|
|
429
|
+
16
|
|
430
|
+
]
|
|
431
|
+
}
|
|
432
|
+
],
|
|
433
|
+
"sources": [
|
|
434
|
+
{
|
|
435
|
+
"fileName": "Payload.ts",
|
|
436
|
+
"line": 6,
|
|
437
|
+
"character": 46,
|
|
438
|
+
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/ca3276aa9c376/packages/plugins/packages/payload/packages/system/packages/info/packages/bowser/src/Payload.ts#L6"
|
|
439
|
+
}
|
|
440
|
+
]
|
|
441
|
+
}
|
|
442
|
+
}
|
|
443
|
+
]
|
|
444
|
+
}
|
|
445
|
+
}
|
|
446
|
+
]
|
|
447
|
+
}
|
|
448
|
+
],
|
|
449
|
+
"groups": [
|
|
450
|
+
{
|
|
451
|
+
"title": "References",
|
|
452
|
+
"children": [
|
|
453
|
+
17
|
|
454
|
+
]
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"title": "Type Aliases",
|
|
458
|
+
"children": [
|
|
459
|
+
6,
|
|
460
|
+
11
|
|
461
|
+
]
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"title": "Variables",
|
|
465
|
+
"children": [
|
|
466
|
+
10
|
|
467
|
+
]
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
"title": "Functions",
|
|
471
|
+
"children": [
|
|
472
|
+
1,
|
|
473
|
+
12
|
|
474
|
+
]
|
|
475
|
+
}
|
|
476
|
+
],
|
|
477
|
+
"packageName": "@xyo-network/bowser-system-info-payload-plugin",
|
|
478
|
+
"readme": [
|
|
479
|
+
{
|
|
480
|
+
"kind": "text",
|
|
481
|
+
"text": "[![logo][]](https://xyo.network)\n\nPart of [sdk-xyo-clint-js](https://www.npmjs.com/package/@xyo-network/sdk-xyo-client-js)\n\n## License\n\n> See the [LICENSE](LICENSE) file for license details\n\n## Credits\n\n[Made with 🔥 and ❄️ by XYO](https://xyo.network)\n\n[logo]: https://cdn.xy.company/img/brand/XYO_full_colored.png"
|
|
482
|
+
}
|
|
483
|
+
],
|
|
484
|
+
"symbolIdMap": {
|
|
485
|
+
"0": {
|
|
486
|
+
"sourceFileName": "src/index.ts",
|
|
487
|
+
"qualifiedName": ""
|
|
488
|
+
},
|
|
489
|
+
"1": {
|
|
490
|
+
"sourceFileName": "src/Plugin.ts",
|
|
491
|
+
"qualifiedName": "BowserSystemInfoPayloadPlugin"
|
|
492
|
+
},
|
|
493
|
+
"2": {
|
|
494
|
+
"sourceFileName": "src/Plugin.ts",
|
|
495
|
+
"qualifiedName": "BowserSystemInfoPayloadPlugin"
|
|
496
|
+
},
|
|
497
|
+
"3": {
|
|
498
|
+
"sourceFileName": "src/Payload.ts",
|
|
499
|
+
"qualifiedName": "__type"
|
|
500
|
+
},
|
|
501
|
+
"4": {
|
|
502
|
+
"sourceFileName": "src/Payload.ts",
|
|
503
|
+
"qualifiedName": "__type.bowser"
|
|
504
|
+
},
|
|
505
|
+
"5": {
|
|
506
|
+
"sourceFileName": "src/Payload.ts",
|
|
507
|
+
"qualifiedName": "__type.schema"
|
|
508
|
+
},
|
|
509
|
+
"6": {
|
|
510
|
+
"sourceFileName": "src/Payload.ts",
|
|
511
|
+
"qualifiedName": "BowserSystemInfoPayload"
|
|
512
|
+
},
|
|
513
|
+
"7": {
|
|
514
|
+
"sourceFileName": "src/Payload.ts",
|
|
515
|
+
"qualifiedName": "__type"
|
|
516
|
+
},
|
|
517
|
+
"8": {
|
|
518
|
+
"sourceFileName": "src/Payload.ts",
|
|
519
|
+
"qualifiedName": "__type.bowser"
|
|
520
|
+
},
|
|
521
|
+
"9": {
|
|
522
|
+
"sourceFileName": "src/Payload.ts",
|
|
523
|
+
"qualifiedName": "__type.schema"
|
|
524
|
+
},
|
|
525
|
+
"10": {
|
|
526
|
+
"sourceFileName": "src/Schema.ts",
|
|
527
|
+
"qualifiedName": "BowserSystemInfoSchema"
|
|
528
|
+
},
|
|
529
|
+
"11": {
|
|
530
|
+
"sourceFileName": "src/Schema.ts",
|
|
531
|
+
"qualifiedName": "BowserSystemInfoSchema"
|
|
532
|
+
},
|
|
533
|
+
"12": {
|
|
534
|
+
"sourceFileName": "src/Template.ts",
|
|
535
|
+
"qualifiedName": "bowserSystemInfoPayloadTemplate"
|
|
536
|
+
},
|
|
537
|
+
"13": {
|
|
538
|
+
"sourceFileName": "src/Template.ts",
|
|
539
|
+
"qualifiedName": "bowserSystemInfoPayloadTemplate"
|
|
540
|
+
},
|
|
541
|
+
"14": {
|
|
542
|
+
"sourceFileName": "src/Payload.ts",
|
|
543
|
+
"qualifiedName": "__type"
|
|
544
|
+
},
|
|
545
|
+
"15": {
|
|
546
|
+
"sourceFileName": "src/Payload.ts",
|
|
547
|
+
"qualifiedName": "__type.bowser"
|
|
548
|
+
},
|
|
549
|
+
"16": {
|
|
550
|
+
"sourceFileName": "src/Payload.ts",
|
|
551
|
+
"qualifiedName": "__type.schema"
|
|
552
|
+
},
|
|
553
|
+
"17": {
|
|
554
|
+
"sourceFileName": "src/index.ts",
|
|
555
|
+
"qualifiedName": "default"
|
|
556
|
+
}
|
|
557
|
+
}
|
|
558
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
+
import { Parser } from 'bowser';
|
|
3
|
+
import { BowserSystemInfoSchema } from './Schema';
|
|
4
|
+
export type BowserSystemInfoPayload = Payload<{
|
|
5
|
+
bowser?: Parser.ParsedResult;
|
|
6
|
+
schema: BowserSystemInfoSchema;
|
|
7
|
+
}>;
|
|
8
|
+
//# sourceMappingURL=Payload.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Payload.d.ts","sourceRoot":"","sources":["../../src/Payload.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAA;AACpD,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAA;AAE/B,OAAO,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAA;AAEjD,MAAM,MAAM,uBAAuB,GAAG,OAAO,CAAC;IAC5C,MAAM,CAAC,EAAE,MAAM,CAAC,YAAY,CAAA;IAC5B,MAAM,EAAE,sBAAsB,CAAA;CAC/B,CAAC,CAAA"}
|
package/dist/node/Payload.js
CHANGED
|
@@ -12,6 +12,8 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
12
12
|
return to;
|
|
13
13
|
};
|
|
14
14
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
15
|
+
|
|
16
|
+
// src/Payload.ts
|
|
15
17
|
var Payload_exports = {};
|
|
16
18
|
module.exports = __toCommonJS(Payload_exports);
|
|
17
19
|
//# sourceMappingURL=Payload.js.map
|
package/dist/node/Payload.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Payload.ts"],"sourcesContent":["import { Payload } from '@xyo-network/payload-model'\nimport { Parser } from 'bowser'\n\nimport { BowserSystemInfoSchema } from './Schema'\n\nexport type BowserSystemInfoPayload = Payload<{\n bowser?: Parser.ParsedResult\n schema: BowserSystemInfoSchema\n}>\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/Payload.ts"],"sourcesContent":["import { Payload } from '@xyo-network/payload-model'\nimport { Parser } from 'bowser'\n\nimport { BowserSystemInfoSchema } from './Schema'\n\nexport type BowserSystemInfoPayload = Payload<{\n bowser?: Parser.ParsedResult\n schema: BowserSystemInfoSchema\n}>\n"],"mappings":";;;;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export declare const BowserSystemInfoPayloadPlugin: () => import("@xyo-network/payload-plugin").PayloadPlugin<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
2
|
+
bowser?: import("bowser").Parser.ParsedResult | undefined;
|
|
3
|
+
schema: "network.xyo.system.info.bowser";
|
|
4
|
+
}>;
|
|
5
|
+
//# sourceMappingURL=Plugin.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Plugin.d.ts","sourceRoot":"","sources":["../../src/Plugin.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,6BAA6B;;;EAItC,CAAA"}
|
package/dist/node/Plugin.js
CHANGED
|
@@ -16,17 +16,27 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
16
16
|
return to;
|
|
17
17
|
};
|
|
18
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/Plugin.ts
|
|
19
21
|
var Plugin_exports = {};
|
|
20
22
|
__export(Plugin_exports, {
|
|
21
23
|
BowserSystemInfoPayloadPlugin: () => BowserSystemInfoPayloadPlugin
|
|
22
24
|
});
|
|
23
25
|
module.exports = __toCommonJS(Plugin_exports);
|
|
24
26
|
var import_payload_plugin = require("@xyo-network/payload-plugin");
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
27
|
+
|
|
28
|
+
// src/Schema.ts
|
|
29
|
+
var BowserSystemInfoSchema = "network.xyo.system.info.bowser";
|
|
30
|
+
|
|
31
|
+
// src/Template.ts
|
|
32
|
+
var bowserSystemInfoPayloadTemplate = () => ({
|
|
33
|
+
schema: BowserSystemInfoSchema
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
// src/Plugin.ts
|
|
37
|
+
var BowserSystemInfoPayloadPlugin = () => (0, import_payload_plugin.createPayloadPlugin)({
|
|
38
|
+
schema: BowserSystemInfoSchema,
|
|
39
|
+
template: bowserSystemInfoPayloadTemplate
|
|
30
40
|
});
|
|
31
41
|
// Annotate the CommonJS export names for ESM import in node:
|
|
32
42
|
0 && (module.exports = {
|
package/dist/node/Plugin.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Plugin.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"],"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'\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,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/Plugin.mjs
CHANGED
|
@@ -1,7 +1,16 @@
|
|
|
1
|
+
// src/Plugin.ts
|
|
1
2
|
import { createPayloadPlugin } from "@xyo-network/payload-plugin";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
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({
|
|
5
14
|
schema: BowserSystemInfoSchema,
|
|
6
15
|
template: bowserSystemInfoPayloadTemplate
|
|
7
16
|
});
|
package/dist/node/Plugin.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Plugin.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"],"mappings":"AAAA,SAAS,2BAA2B
|
|
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":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Schema.d.ts","sourceRoot":"","sources":["../../src/Schema.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,sBAAsB,GAAG,gCAAgC,CAAA;AACrE,eAAO,MAAM,sBAAsB,EAAE,sBAAyD,CAAA"}
|
package/dist/node/Schema.js
CHANGED
|
@@ -16,12 +16,14 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
16
16
|
return to;
|
|
17
17
|
};
|
|
18
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/Schema.ts
|
|
19
21
|
var Schema_exports = {};
|
|
20
22
|
__export(Schema_exports, {
|
|
21
23
|
BowserSystemInfoSchema: () => BowserSystemInfoSchema
|
|
22
24
|
});
|
|
23
25
|
module.exports = __toCommonJS(Schema_exports);
|
|
24
|
-
|
|
26
|
+
var BowserSystemInfoSchema = "network.xyo.system.info.bowser";
|
|
25
27
|
// Annotate the CommonJS export names for ESM import in node:
|
|
26
28
|
0 && (module.exports = {
|
|
27
29
|
BowserSystemInfoSchema
|
package/dist/node/Schema.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Schema.ts"],"sourcesContent":["export type BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\nexport const BowserSystemInfoSchema: BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/Schema.ts"],"sourcesContent":["export type BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\nexport const BowserSystemInfoSchema: BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AACO,IAAM,yBAAiD;","names":[]}
|
package/dist/node/Schema.mjs
CHANGED
package/dist/node/Schema.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Schema.ts"],"sourcesContent":["export type BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\nexport const BowserSystemInfoSchema: BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\n"],"mappings":"AACO,
|
|
1
|
+
{"version":3,"sources":["../../src/Schema.ts"],"sourcesContent":["export type BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\nexport const BowserSystemInfoSchema: BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\n"],"mappings":";AACO,IAAM,yBAAiD;","names":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Template.d.ts","sourceRoot":"","sources":["../../src/Template.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,WAAW,CAAA;AAGnD,eAAO,MAAM,+BAA+B,QAAO,uBAEjD,CAAA"}
|
package/dist/node/Template.js
CHANGED
|
@@ -16,14 +16,20 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
16
16
|
return to;
|
|
17
17
|
};
|
|
18
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/Template.ts
|
|
19
21
|
var Template_exports = {};
|
|
20
22
|
__export(Template_exports, {
|
|
21
23
|
bowserSystemInfoPayloadTemplate: () => bowserSystemInfoPayloadTemplate
|
|
22
24
|
});
|
|
23
25
|
module.exports = __toCommonJS(Template_exports);
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
|
|
27
|
+
// src/Schema.ts
|
|
28
|
+
var BowserSystemInfoSchema = "network.xyo.system.info.bowser";
|
|
29
|
+
|
|
30
|
+
// src/Template.ts
|
|
31
|
+
var bowserSystemInfoPayloadTemplate = () => ({
|
|
32
|
+
schema: BowserSystemInfoSchema
|
|
27
33
|
});
|
|
28
34
|
// Annotate the CommonJS export names for ESM import in node:
|
|
29
35
|
0 && (module.exports = {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Template.ts"],"sourcesContent":["import { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\n\nexport const bowserSystemInfoPayloadTemplate = (): BowserSystemInfoPayload => ({\n schema: BowserSystemInfoSchema,\n})\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/Template.ts","../../src/Schema.ts"],"sourcesContent":["import { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\n\nexport const bowserSystemInfoPayloadTemplate = (): BowserSystemInfoPayload => ({\n schema: BowserSystemInfoSchema,\n})\n","export type BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\nexport const BowserSystemInfoSchema: BowserSystemInfoSchema = 'network.xyo.system.info.bowser'\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACCO,IAAM,yBAAiD;;;ADEvD,IAAM,kCAAkC,OAAgC;AAAA,EAC7E,QAAQ;AACV;","names":[]}
|
package/dist/node/Template.mjs
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
// src/Schema.ts
|
|
2
|
+
var BowserSystemInfoSchema = "network.xyo.system.info.bowser";
|
|
3
|
+
|
|
4
|
+
// src/Template.ts
|
|
5
|
+
var bowserSystemInfoPayloadTemplate = () => ({
|
|
3
6
|
schema: BowserSystemInfoSchema
|
|
4
7
|
});
|
|
5
8
|
export {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Template.ts"],"sourcesContent":["import { BowserSystemInfoPayload } from './Payload'\nimport { BowserSystemInfoSchema } from './Schema'\n\nexport const bowserSystemInfoPayloadTemplate = (): BowserSystemInfoPayload => ({\n schema: BowserSystemInfoSchema,\n})\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/Schema.ts","../../src/Template.ts"],"sourcesContent":["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":";AACO,IAAM,yBAAiD;;;ACEvD,IAAM,kCAAkC,OAAgC;AAAA,EAC7E,QAAQ;AACV;","names":[]}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BowserSystemInfoPayloadPlugin } from './Plugin';
|
|
2
|
+
export * from './Payload';
|
|
3
|
+
export * from './Schema';
|
|
4
|
+
export * from './Template';
|
|
5
|
+
export { BowserSystemInfoPayloadPlugin };
|
|
6
|
+
export default BowserSystemInfoPayloadPlugin;
|
|
7
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,6BAA6B,EAAE,MAAM,UAAU,CAAA;AAExD,cAAc,WAAW,CAAA;AACzB,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA;AAE1B,OAAO,EAAE,6BAA6B,EAAE,CAAA;AAGxC,eAAe,6BAA6B,CAAA"}
|
package/dist/node/index.js
CHANGED
|
@@ -15,24 +15,41 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
15
15
|
}
|
|
16
16
|
return to;
|
|
17
17
|
};
|
|
18
|
-
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
19
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/index.ts
|
|
20
21
|
var src_exports = {};
|
|
21
22
|
__export(src_exports, {
|
|
22
|
-
BowserSystemInfoPayloadPlugin: () =>
|
|
23
|
+
BowserSystemInfoPayloadPlugin: () => BowserSystemInfoPayloadPlugin,
|
|
24
|
+
BowserSystemInfoSchema: () => BowserSystemInfoSchema,
|
|
25
|
+
bowserSystemInfoPayloadTemplate: () => bowserSystemInfoPayloadTemplate,
|
|
23
26
|
default: () => src_default
|
|
24
27
|
});
|
|
25
28
|
module.exports = __toCommonJS(src_exports);
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
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
|
+
|
|
47
|
+
// src/index.ts
|
|
48
|
+
var src_default = BowserSystemInfoPayloadPlugin;
|
|
31
49
|
// Annotate the CommonJS export names for ESM import in node:
|
|
32
50
|
0 && (module.exports = {
|
|
33
51
|
BowserSystemInfoPayloadPlugin,
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
...require("./Template")
|
|
52
|
+
BowserSystemInfoSchema,
|
|
53
|
+
bowserSystemInfoPayloadTemplate
|
|
37
54
|
});
|
|
38
55
|
//# sourceMappingURL=index.js.map
|
package/dist/node/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["import { BowserSystemInfoPayloadPlugin } from './Plugin'\n\nexport * from './Payload'\nexport * from './Schema'\nexport * from './Template'\n\nexport { BowserSystemInfoPayloadPlugin }\n\n// eslint-disable-next-line import/no-default-export\nexport default BowserSystemInfoPayloadPlugin\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Plugin.ts","../../src/Schema.ts","../../src/Template.ts"],"sourcesContent":["import { BowserSystemInfoPayloadPlugin } from './Plugin'\n\nexport * from './Payload'\nexport * from './Schema'\nexport * from './Template'\n\nexport { BowserSystemInfoPayloadPlugin }\n\n// eslint-disable-next-line import/no-default-export\nexport default BowserSystemInfoPayloadPlugin\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;;;ADDH,IAAO,cAAQ;","names":[]}
|
package/dist/node/index.mjs
CHANGED
|
@@ -1,10 +1,26 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
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
|
+
|
|
18
|
+
// src/index.ts
|
|
5
19
|
var src_default = BowserSystemInfoPayloadPlugin;
|
|
6
20
|
export {
|
|
7
21
|
BowserSystemInfoPayloadPlugin,
|
|
22
|
+
BowserSystemInfoSchema,
|
|
23
|
+
bowserSystemInfoPayloadTemplate,
|
|
8
24
|
src_default as default
|
|
9
25
|
};
|
|
10
26
|
//# sourceMappingURL=index.mjs.map
|
package/dist/node/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["import { BowserSystemInfoPayloadPlugin } from './Plugin'\n\nexport * from './Payload'\nexport * from './Schema'\nexport * from './Template'\n\nexport { BowserSystemInfoPayloadPlugin }\n\n// eslint-disable-next-line import/no-default-export\nexport default BowserSystemInfoPayloadPlugin\n"],"mappings":"AAAA,SAAS,
|
|
1
|
+
{"version":3,"sources":["../../src/Plugin.ts","../../src/Schema.ts","../../src/Template.ts","../../src/index.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","import { BowserSystemInfoPayloadPlugin } from './Plugin'\n\nexport * from './Payload'\nexport * from './Schema'\nexport * from './Template'\n\nexport { BowserSystemInfoPayloadPlugin }\n\n// eslint-disable-next-line import/no-default-export\nexport default BowserSystemInfoPayloadPlugin\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;;;AGDH,IAAO,cAAQ;","names":[]}
|
package/package.json
CHANGED
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xyo-network/payload-model": "~2.75.
|
|
14
|
-
"@xyo-network/payload-plugin": "~2.75.
|
|
13
|
+
"@xyo-network/payload-model": "~2.75.1",
|
|
14
|
+
"@xyo-network/payload-plugin": "~2.75.1",
|
|
15
15
|
"bowser": "^2.11.0"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@xylabs/ts-scripts-yarn3": "^3.0.
|
|
19
|
-
"@xylabs/tsconfig": "^3.0.
|
|
18
|
+
"@xylabs/ts-scripts-yarn3": "^3.0.77",
|
|
19
|
+
"@xylabs/tsconfig": "^3.0.77",
|
|
20
20
|
"typescript": "^5.2.2"
|
|
21
21
|
},
|
|
22
22
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
".": {
|
|
26
26
|
"browser": {
|
|
27
27
|
"require": {
|
|
28
|
-
"types": "./dist/browser/index.d.
|
|
28
|
+
"types": "./dist/browser/index.d.cts",
|
|
29
29
|
"default": "./dist/browser/index.cjs"
|
|
30
30
|
},
|
|
31
31
|
"import": {
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
},
|
|
63
63
|
"sideEffects": false,
|
|
64
64
|
"types": "dist/node/index.d.ts",
|
|
65
|
-
"version": "2.75.
|
|
65
|
+
"version": "2.75.1"
|
|
66
66
|
}
|