@xyo-network/bowser-system-info-payload-plugin 5.3.1 → 5.3.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/bowser-system-info-payload-plugin",
3
- "version": "5.3.1",
3
+ "version": "5.3.3",
4
4
  "description": "Typescript/Javascript Plugins for XYO Platform",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -30,22 +30,30 @@
30
30
  "types": "dist/neutral/index.d.ts",
31
31
  "files": [
32
32
  "dist",
33
- "src",
34
- "!**/*.bench.*",
35
- "!**/*.spec.*",
36
- "!**/*.test.*"
33
+ "README.md"
37
34
  ],
38
- "dependencies": {
39
- "@xyo-network/payload-model": "~5.3.2",
40
- "@xyo-network/payload-plugin": "~5.3.2",
41
- "bowser": "2.13.1"
42
- },
43
35
  "devDependencies": {
44
- "@xylabs/ts-scripts-yarn3": "~7.3.2",
45
- "@xylabs/tsconfig": "~7.3.2",
46
- "@xylabs/vitest-extended": "~5.0.64",
36
+ "@xylabs/sdk-js": "^5.0.90",
37
+ "@xylabs/ts-scripts-common": "~7.5.10",
38
+ "@xylabs/ts-scripts-yarn3": "~7.5.10",
39
+ "@xylabs/tsconfig": "~7.5.10",
40
+ "@xylabs/vitest-extended": "~5.0.90",
41
+ "@xyo-network/payload-model": "~5.3.5",
42
+ "@xyo-network/payload-plugin": "~5.3.5",
43
+ "ajv": "^8.18.0",
44
+ "bowser": "~2.14.1",
47
45
  "typescript": "~5.9.3",
48
- "vitest": "~4.0.18"
46
+ "vitest": "~4.1.2",
47
+ "zod": "^4.3.6"
48
+ },
49
+ "peerDependencies": {
50
+ "@xylabs/sdk-js": "^5",
51
+ "@xylabs/vitest-extended": "^5",
52
+ "@xyo-network/payload-model": "^5",
53
+ "@xyo-network/payload-plugin": "^5",
54
+ "ajv": "^8",
55
+ "bowser": "^2",
56
+ "zod": "^4"
49
57
  },
50
58
  "publishConfig": {
51
59
  "access": "public"
package/src/Payload.ts DELETED
@@ -1,9 +0,0 @@
1
- import type { Payload } from '@xyo-network/payload-model'
2
- import type { Parser } from 'bowser'
3
-
4
- import type { BowserSystemInfoSchema } from './Schema.ts'
5
-
6
- export type BowserSystemInfoPayload = Payload<{
7
- bowser?: Parser.ParsedResult
8
- schema: BowserSystemInfoSchema
9
- }>
package/src/Plugin.ts DELETED
@@ -1,11 +0,0 @@
1
- import { createPayloadPlugin } from '@xyo-network/payload-plugin'
2
-
3
- import type { BowserSystemInfoPayload } from './Payload.ts'
4
- import { BowserSystemInfoSchema } from './Schema.ts'
5
- import { bowserSystemInfoPayloadTemplate } from './Template.ts'
6
-
7
- export const BowserSystemInfoPayloadPlugin = () =>
8
- createPayloadPlugin<BowserSystemInfoPayload>({
9
- schema: BowserSystemInfoSchema,
10
- template: bowserSystemInfoPayloadTemplate,
11
- })
package/src/Schema.ts DELETED
@@ -1,4 +0,0 @@
1
- import { asSchema } from '@xyo-network/payload-model'
2
-
3
- export type BowserSystemInfoSchema = typeof BowserSystemInfoSchema
4
- export const BowserSystemInfoSchema = asSchema('network.xyo.system.info.bowser', true)
package/src/Template.ts DELETED
@@ -1,4 +0,0 @@
1
- import type { BowserSystemInfoPayload } from './Payload.ts'
2
- import { BowserSystemInfoSchema } from './Schema.ts'
3
-
4
- export const bowserSystemInfoPayloadTemplate = (): BowserSystemInfoPayload => ({ schema: BowserSystemInfoSchema })
package/src/index.ts DELETED
@@ -1,4 +0,0 @@
1
- export * from './Payload.ts'
2
- export { BowserSystemInfoPayloadPlugin, BowserSystemInfoPayloadPlugin as default } from './Plugin.ts'
3
- export * from './Schema.ts'
4
- export * from './Template.ts'