@xyo-network/bowser-system-info-payload-plugin 7.0.1 → 7.0.2
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.
|
@@ -20,7 +20,7 @@ export declare const asBowserSystemInfoPayload: {
|
|
|
20
20
|
};
|
|
21
21
|
bowser?: Parser.ParsedResult | undefined;
|
|
22
22
|
}) | undefined;
|
|
23
|
-
<T>(value: T, assert: import("@
|
|
23
|
+
<T>(value: T, assert: import("@ariestools/sdk").ZodFactoryConfig): T & {
|
|
24
24
|
schema: "network.xyo.system.info.bowser" & {
|
|
25
25
|
readonly __schema: true;
|
|
26
26
|
};
|
|
@@ -34,7 +34,7 @@ export declare const toBowserSystemInfoPayload: {
|
|
|
34
34
|
};
|
|
35
35
|
bowser?: Parser.ParsedResult | undefined;
|
|
36
36
|
}) | undefined;
|
|
37
|
-
<T>(value: T, assert: import("@
|
|
37
|
+
<T>(value: T, assert: import("@ariestools/sdk").ZodFactoryConfig): T & {
|
|
38
38
|
schema: "network.xyo.system.info.bowser" & {
|
|
39
39
|
readonly __schema: true;
|
|
40
40
|
};
|
package/dist/neutral/index.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/Payload.ts", "../../src/Schema.ts", "../../src/Plugin.ts", "../../src/Template.ts"],
|
|
4
|
-
"sourcesContent": ["import {\n zodAsFactory, zodIsFactory, zodToFactory,\n} from '@
|
|
4
|
+
"sourcesContent": ["import {\n zodAsFactory, zodIsFactory, zodToFactory,\n} from '@ariestools/sdk'\nimport { PayloadZodOfSchema } from '@xyo-network/sdk'\nimport type { Parser } from 'bowser'\nimport * as z from 'zod/mini'\n\nimport { BowserSystemInfoSchema } from './Schema.ts'\n\nexport const BowserSystemInfoPayloadZod = z.extend(PayloadZodOfSchema(BowserSystemInfoSchema), { bowser: z.optional(z.custom<Parser.ParsedResult>()) })\n\nexport type BowserSystemInfoPayload = z.infer<typeof BowserSystemInfoPayloadZod>\n\nexport const isBowserSystemInfoPayload = zodIsFactory(BowserSystemInfoPayloadZod)\nexport const asBowserSystemInfoPayload = zodAsFactory(BowserSystemInfoPayloadZod, 'asBowserSystemInfoPayload')\nexport const toBowserSystemInfoPayload = zodToFactory(BowserSystemInfoPayloadZod, 'toBowserSystemInfoPayload')\n", "import { asSchema } from '@xyo-network/sdk'\n\nexport type BowserSystemInfoSchema = typeof BowserSystemInfoSchema\nexport const BowserSystemInfoSchema = asSchema('network.xyo.system.info.bowser', true)\n", "import { createPayloadPlugin } from '@xyo-network/sdk'\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", "import type { BowserSystemInfoPayload } from './Payload.ts'\nimport { BowserSystemInfoSchema } from './Schema.ts'\n\nexport const bowserSystemInfoPayloadTemplate = (): BowserSystemInfoPayload => ({ schema: BowserSystemInfoSchema })\n"],
|
|
5
5
|
"mappings": ";AAAA;AAAA,EACE;AAAA,EAAc;AAAA,EAAc;AAAA,OACvB;AACP,SAAS,0BAA0B;AAEnC,YAAY,OAAO;;;ACLnB,SAAS,gBAAgB;AAGlB,IAAM,yBAAyB,SAAS,kCAAkC,IAAI;;;ADM9E,IAAM,6BAA+B,SAAO,mBAAmB,sBAAsB,GAAG,EAAE,QAAU,WAAW,SAA4B,CAAC,EAAE,CAAC;AAI/I,IAAM,4BAA4B,aAAa,0BAA0B;AACzE,IAAM,4BAA4B,aAAa,4BAA4B,2BAA2B;AACtG,IAAM,4BAA4B,aAAa,4BAA4B,2BAA2B;;;AEf7G,SAAS,2BAA2B;;;ACG7B,IAAM,kCAAkC,OAAgC,EAAE,QAAQ,uBAAuB;;;ADGzG,IAAM,gCAAgC,MAC3C,oBAA6C;AAAA,EAC3C,QAAQ;AAAA,EACR,UAAU;AACZ,CAAC;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/bowser-system-info-payload-plugin",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.2",
|
|
4
4
|
"description": "Typescript/Javascript Plugins for XYO Platform",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -31,19 +31,20 @@
|
|
|
31
31
|
"README.md"
|
|
32
32
|
],
|
|
33
33
|
"devDependencies": {
|
|
34
|
+
"@ariestools/sdk": "^7.0.5",
|
|
34
35
|
"@bitauth/libauth": "~3.0.0",
|
|
35
36
|
"@noble/post-quantum": "~0.6.1",
|
|
36
37
|
"@opentelemetry/api": "^1.9.1",
|
|
37
38
|
"@opentelemetry/sdk-trace-base": "^2.8.0",
|
|
38
39
|
"@scure/base": "^2.2.0",
|
|
39
40
|
"@scure/bip39": "~2.2.0",
|
|
40
|
-
"@xylabs/geo": "^7.0.
|
|
41
|
-
"@xylabs/
|
|
42
|
-
"@xylabs/
|
|
43
|
-
"@xylabs/
|
|
44
|
-
"@xylabs/
|
|
45
|
-
"@
|
|
46
|
-
"@xyo-network/sdk": "
|
|
41
|
+
"@xylabs/geo": "^7.0.5",
|
|
42
|
+
"@xylabs/threads": "^7.0.5",
|
|
43
|
+
"@xylabs/toolchain": "~8.5.15",
|
|
44
|
+
"@xylabs/tsconfig": "~8.5.15",
|
|
45
|
+
"@xylabs/vitest-extended": "^7.0.5",
|
|
46
|
+
"@xyo-network/sdk": "~7.0.5",
|
|
47
|
+
"@xyo-network/sdk-protocol": "^7.0.8",
|
|
47
48
|
"ajv": "^8.20.0",
|
|
48
49
|
"async-mutex": "^0.5.0",
|
|
49
50
|
"bowser": "^2.14.1",
|
|
@@ -57,11 +58,12 @@
|
|
|
57
58
|
"lru-cache": "^11.5.1",
|
|
58
59
|
"observable-fns": "~0.6.1",
|
|
59
60
|
"typescript": "~6.0.3",
|
|
60
|
-
"vite": "^8.1.
|
|
61
|
+
"vite": "^8.1.2",
|
|
61
62
|
"vitest": "^4.1.9",
|
|
62
63
|
"zod": "^4.4.3"
|
|
63
64
|
},
|
|
64
65
|
"peerDependencies": {
|
|
66
|
+
"@ariestools/sdk": "^7.0",
|
|
65
67
|
"@bitauth/libauth": "~3.0",
|
|
66
68
|
"@noble/post-quantum": "~0.6.1",
|
|
67
69
|
"@opentelemetry/api": "^1.9",
|
|
@@ -69,9 +71,9 @@
|
|
|
69
71
|
"@scure/base": "^2.2",
|
|
70
72
|
"@scure/bip39": "~2.2",
|
|
71
73
|
"@xylabs/geo": "^7.0",
|
|
72
|
-
"@xylabs/sdk": "^7.0",
|
|
73
74
|
"@xylabs/threads": "^7.0",
|
|
74
75
|
"@xyo-network/sdk": "~7.0",
|
|
76
|
+
"@xyo-network/sdk-protocol": "^7.0",
|
|
75
77
|
"ajv": "^8.20",
|
|
76
78
|
"async-mutex": "^0.5",
|
|
77
79
|
"bowser": "^2.14",
|