@xyo-network/node-system-info-payload-plugin 4.1.0 → 4.2.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.
@@ -1,33 +1,5 @@
1
- import { Payload } from '@xyo-network/payload-model';
2
- import * as _xyo_network_payload_plugin from '@xyo-network/payload-plugin';
3
-
4
- type NodeSystemInfoSchema = 'network.xyo.system.info.node';
5
- declare const NodeSystemInfoSchema: NodeSystemInfoSchema;
6
-
7
- type NodeSystemInfoPayload = Payload<{
8
- schema: NodeSystemInfoSchema;
9
- systeminfo?: Record<string, unknown>;
10
- }>;
11
-
12
- declare const NodeSystemInfoPayloadPlugin: () => _xyo_network_payload_plugin.PayloadPlugin<NodeSystemInfoPayload>;
13
-
14
- declare const defaultSystemInfoConfig: () => {
15
- audio: string;
16
- battery: string;
17
- bluetooth: string;
18
- cpu: string;
19
- diskLayout: string;
20
- graphics: string;
21
- mem: string;
22
- networkInterfaces: string;
23
- osInfo: string;
24
- printer: string;
25
- system: string;
26
- usb: string;
27
- wifiInterfaces: string;
28
- };
29
- declare const systemInfoNodeWitnessTemplate: () => NodeSystemInfoPayload;
30
- //# sourceMappingURL=Template.d.ts.map
31
-
32
- export { NodeSystemInfoPayloadPlugin, NodeSystemInfoSchema, NodeSystemInfoPayloadPlugin as default, defaultSystemInfoConfig, systemInfoNodeWitnessTemplate };
33
- export type { NodeSystemInfoPayload };
1
+ export * from './Payload.ts';
2
+ export { NodeSystemInfoPayloadPlugin as default, NodeSystemInfoPayloadPlugin } from './Plugin.ts';
3
+ export * from './Schema.ts';
4
+ export * from './Template.ts';
5
+ //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/node-system-info-payload-plugin",
3
- "version": "4.1.0",
3
+ "version": "4.2.0",
4
4
  "description": "Typescript/Javascript Plugins for XYO Platform",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -29,14 +29,13 @@
29
29
  "module": "dist/neutral/index.mjs",
30
30
  "types": "dist/neutral/index.d.ts",
31
31
  "dependencies": {
32
- "@xyo-network/payload-model": "^4.1.1",
33
- "@xyo-network/payload-plugin": "^4.1.1"
32
+ "@xyo-network/payload-model": "^4.3.0",
33
+ "@xyo-network/payload-plugin": "^4.3.0"
34
34
  },
35
35
  "devDependencies": {
36
- "@xylabs/ts-scripts-yarn3": "^7.0.0-rc.24",
37
- "@xylabs/tsconfig": "^7.0.0-rc.24",
38
- "@xylabs/vitest-extended": "^4.13.15",
39
- "knip": "^5.61.3",
36
+ "@xylabs/ts-scripts-yarn3": "^7.0.1",
37
+ "@xylabs/tsconfig": "^7.0.1",
38
+ "@xylabs/vitest-extended": "^4.15.1",
40
39
  "typescript": "^5.8.3",
41
40
  "vitest": "^3.2.4"
42
41
  },