@xyo-network/bowser-system-info-payload-plugin 3.4.3 → 3.4.4

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 +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 => ({ schema: BowserSystemInfoSchema })\n"],"mappings":";AAAA,SAAS,2BAA2B;;;ACC7B,IAAM,yBAAiD;;;ACEvD,IAAM,kCAAkC,OAAgC,EAAE,QAAQ,uBAAuB;;;AFGzG,IAAM,gCAAgC,MAC3C,oBAA6C;AAAA,EAC3C,QAAQ;AAAA,EACR,UAAU;AACZ,CAAC;","names":[]}
1
+ {"version":3,"sources":["../../src/Plugin.ts","../../src/Schema.ts","../../src/Template.ts"],"sourcesContent":["import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport type { 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 type { BowserSystemInfoPayload } from './Payload.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\n\nexport const bowserSystemInfoPayloadTemplate = (): BowserSystemInfoPayload => ({ schema: BowserSystemInfoSchema })\n"],"mappings":";AAAA,SAAS,2BAA2B;;;ACC7B,IAAM,yBAAiD;;;ACEvD,IAAM,kCAAkC,OAAgC,EAAE,QAAQ,uBAAuB;;;AFGzG,IAAM,gCAAgC,MAC3C,oBAA6C;AAAA,EAC3C,QAAQ;AAAA,EACR,UAAU;AACZ,CAAC;","names":[]}
@@ -0,0 +1,8 @@
1
+ import type { Payload } from '@xyo-network/payload-model';
2
+ import type { Parser } from 'bowser';
3
+ import type { BowserSystemInfoSchema } from './Schema.ts';
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,KAAK,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAA;AACzD,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAA;AAEpC,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,aAAa,CAAA;AAEzD,MAAM,MAAM,uBAAuB,GAAG,OAAO,CAAC;IAC5C,MAAM,CAAC,EAAE,MAAM,CAAC,YAAY,CAAA;IAC5B,MAAM,EAAE,sBAAsB,CAAA;CAC/B,CAAC,CAAA"}
@@ -1,3 +1,3 @@
1
- import { BowserSystemInfoPayload } from './Payload.ts';
1
+ import type { BowserSystemInfoPayload } from './Payload.ts';
2
2
  export declare const BowserSystemInfoPayloadPlugin: () => import("@xyo-network/payload-plugin").PayloadPlugin<BowserSystemInfoPayload>;
3
3
  //# sourceMappingURL=Plugin.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Plugin.d.ts","sourceRoot":"","sources":["../../src/Plugin.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,cAAc,CAAA;AAI3D,eAAO,MAAM,6BAA6B,oFAItC,CAAA"}
@@ -0,0 +1,3 @@
1
+ import type { BowserSystemInfoPayload } from './Payload.ts';
2
+ export declare const bowserSystemInfoPayloadTemplate: () => BowserSystemInfoPayload;
3
+ //# sourceMappingURL=Template.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Template.d.ts","sourceRoot":"","sources":["../../src/Template.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,cAAc,CAAA;AAG3D,eAAO,MAAM,+BAA+B,QAAO,uBAA+D,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/bowser-system-info-payload-plugin",
3
- "version": "3.4.3",
3
+ "version": "3.4.4",
4
4
  "description": "Typescript/Javascript Plugins for XYO Platform",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -21,24 +21,24 @@
21
21
  "type": "module",
22
22
  "exports": {
23
23
  ".": {
24
- "types": "./dist/neutral/index.d.ts",
24
+ "types": "./dist/types/index.d.ts",
25
25
  "default": "./dist/neutral/index.mjs"
26
26
  },
27
27
  "./package.json": "./package.json"
28
28
  },
29
29
  "module": "dist/neutral/index.mjs",
30
- "types": "dist/neutral/index.d.ts",
30
+ "types": "dist/types/index.d.ts",
31
31
  "dependencies": {
32
- "@xyo-network/payload-model": "^3.9.23",
33
- "@xyo-network/payload-plugin": "^3.9.23",
32
+ "@xyo-network/payload-model": "^3.9.36",
33
+ "@xyo-network/payload-plugin": "^3.9.36",
34
34
  "bowser": "^2.11.0"
35
35
  },
36
36
  "devDependencies": {
37
- "@xylabs/ts-scripts-yarn3": "^5.0.39",
38
- "@xylabs/tsconfig": "^5.0.39",
39
- "@xylabs/vitest-extended": "^4.5.1",
37
+ "@xylabs/ts-scripts-yarn3": "^6.0.5",
38
+ "@xylabs/tsconfig": "^6.0.5",
39
+ "@xylabs/vitest-extended": "^4.6.0",
40
40
  "typescript": "^5.8.2",
41
- "vitest": "^3.0.7"
41
+ "vitest": "^3.0.8"
42
42
  },
43
43
  "publishConfig": {
44
44
  "access": "public"
package/src/Payload.ts CHANGED
@@ -1,7 +1,7 @@
1
- import { Payload } from '@xyo-network/payload-model'
2
- import { Parser } from 'bowser'
1
+ import type { Payload } from '@xyo-network/payload-model'
2
+ import type { Parser } from 'bowser'
3
3
 
4
- import { BowserSystemInfoSchema } from './Schema.ts'
4
+ import type { BowserSystemInfoSchema } from './Schema.ts'
5
5
 
6
6
  export type BowserSystemInfoPayload = Payload<{
7
7
  bowser?: Parser.ParsedResult
package/src/Plugin.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { createPayloadPlugin } from '@xyo-network/payload-plugin'
2
2
 
3
- import { BowserSystemInfoPayload } from './Payload.ts'
3
+ import type { BowserSystemInfoPayload } from './Payload.ts'
4
4
  import { BowserSystemInfoSchema } from './Schema.ts'
5
5
  import { bowserSystemInfoPayloadTemplate } from './Template.ts'
6
6
 
package/src/Template.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { BowserSystemInfoPayload } from './Payload.ts'
1
+ import type { BowserSystemInfoPayload } from './Payload.ts'
2
2
  import { BowserSystemInfoSchema } from './Schema.ts'
3
3
 
4
4
  export const bowserSystemInfoPayloadTemplate = (): BowserSystemInfoPayload => ({ schema: BowserSystemInfoSchema })
package/xy.config.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { XyTsupConfig } from '@xylabs/ts-scripts-yarn3'
1
+ import type { XyTsupConfig } from '@xylabs/ts-scripts-yarn3'
2
2
  const config: XyTsupConfig = {
3
3
  compile: {
4
4
  browser: {},
@@ -1,8 +0,0 @@
1
- import { Payload } from '@xyo-network/payload-model';
2
- import { Parser } from 'bowser';
3
- import { BowserSystemInfoSchema } from './Schema.ts';
4
- export type BowserSystemInfoPayload = Payload<{
5
- bowser?: Parser.ParsedResult;
6
- schema: BowserSystemInfoSchema;
7
- }>;
8
- //# sourceMappingURL=Payload.d.ts.map
@@ -1 +0,0 @@
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,aAAa,CAAA;AAEpD,MAAM,MAAM,uBAAuB,GAAG,OAAO,CAAC;IAC5C,MAAM,CAAC,EAAE,MAAM,CAAC,YAAY,CAAA;IAC5B,MAAM,EAAE,sBAAsB,CAAA;CAC/B,CAAC,CAAA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"Plugin.d.ts","sourceRoot":"","sources":["../../src/Plugin.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,uBAAuB,EAAE,MAAM,cAAc,CAAA;AAItD,eAAO,MAAM,6BAA6B,oFAItC,CAAA"}
@@ -1,3 +0,0 @@
1
- import { BowserSystemInfoPayload } from './Payload.ts';
2
- export declare const bowserSystemInfoPayloadTemplate: () => BowserSystemInfoPayload;
3
- //# sourceMappingURL=Template.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Template.d.ts","sourceRoot":"","sources":["../../src/Template.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,cAAc,CAAA;AAGtD,eAAO,MAAM,+BAA+B,QAAO,uBAA+D,CAAA"}
File without changes
File without changes
File without changes
File without changes