@xyo-network/value-payload-plugin 4.1.2 → 4.1.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/dist/neutral/index.d.ts +5 -19
- package/package.json +7 -7
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,19 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
type ValueSchema = typeof ValueSchema;
|
|
7
|
-
|
|
8
|
-
type Value<T extends JsonValue = JsonValue> = Payload<{
|
|
9
|
-
schema: ValueSchema;
|
|
10
|
-
value: T;
|
|
11
|
-
}>;
|
|
12
|
-
declare const isValuePayload: (x?: unknown | null) => x is Value<JsonValue>;
|
|
13
|
-
|
|
14
|
-
declare const ValuePayloadPlugin: () => _xyo_network_payload_plugin.PayloadPlugin<Value>;
|
|
15
|
-
|
|
16
|
-
declare const valuePayloadTemplate: () => Value;
|
|
17
|
-
|
|
18
|
-
export { ValuePayloadPlugin, ValueSchema, ValuePayloadPlugin as default, isValuePayload, valuePayloadTemplate };
|
|
19
|
-
export type { Value };
|
|
1
|
+
export * from './Payload.ts';
|
|
2
|
+
export { ValuePayloadPlugin as default, ValuePayloadPlugin } 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/value-payload-plugin",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.3",
|
|
4
4
|
"description": "Typescript/Javascript Plugins for XYO Platform",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xylabs/object": "^4.13.
|
|
33
|
-
"@xyo-network/payload-model": "^4.1.
|
|
34
|
-
"@xyo-network/payload-plugin": "^4.1.
|
|
32
|
+
"@xylabs/object": "^4.13.16",
|
|
33
|
+
"@xyo-network/payload-model": "^4.1.3",
|
|
34
|
+
"@xyo-network/payload-plugin": "^4.1.3"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@xylabs/ts-scripts-yarn3": "^7.0.0-rc.
|
|
38
|
-
"@xylabs/tsconfig": "^7.0.0-rc.
|
|
39
|
-
"@xylabs/vitest-extended": "^4.13.
|
|
37
|
+
"@xylabs/ts-scripts-yarn3": "^7.0.0-rc.27",
|
|
38
|
+
"@xylabs/tsconfig": "^7.0.0-rc.27",
|
|
39
|
+
"@xylabs/vitest-extended": "^4.13.16",
|
|
40
40
|
"typescript": "^5.8.3",
|
|
41
41
|
"vitest": "^3.2.4"
|
|
42
42
|
},
|