@dsh-plugin-hub/schemas 0.1.4 → 0.3.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.
- package/README.md +8 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# @dsh-plugin-hub/schemas
|
|
2
2
|
|
|
3
|
-
Shared schemas for DSH plugins, version-locked
|
|
3
|
+
Shared schemas for DSH plugins, version-locked Presets, Preset Releases, and
|
|
4
4
|
DSH Plugin Hub API payloads.
|
|
5
5
|
|
|
6
6
|
- Website: [dshpluginhub.ai](https://dshpluginhub.ai)
|
|
7
7
|
- Browse plugins: [dshpluginhub.ai/plugins](https://dshpluginhub.ai/plugins)
|
|
8
|
-
- Explore
|
|
8
|
+
- Explore Presets: [dshpluginhub.ai/profiles](https://dshpluginhub.ai/profiles)
|
|
9
9
|
|
|
10
10
|
## Install
|
|
11
11
|
|
|
@@ -26,8 +26,13 @@ const profile = dshProfileManifestSchema.parse(profilePackageJson);
|
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
The package exports Zod schemas and inferred TypeScript types for portable DSH
|
|
29
|
-
bundle manifests, Plugin Hub records,
|
|
29
|
+
bundle manifests, Plugin Hub records, Preset drafts and immutable releases.
|
|
30
30
|
Use it when building a DSH plugin, integration, validator, or custom Hub client.
|
|
31
31
|
|
|
32
|
+
Version `0.3.0` is released in lockstep with the CLI, registry, and DSH adapter.
|
|
33
|
+
This package performs local validation only: it makes no network request and
|
|
34
|
+
collects no telemetry. Anonymous lifecycle telemetry belongs exclusively to the
|
|
35
|
+
`@dsh-plugin-hub/cli` runtime and follows that package's documented controls.
|
|
36
|
+
|
|
32
37
|
This is an independent community project and is not affiliated with or endorsed
|
|
33
38
|
by DeepSeek.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dsh-plugin-hub/schemas",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Portable DSH bundle, profile, and Hub API schemas",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"dsh-plugin",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"zod": "4.
|
|
37
|
+
"zod": "4.5.2"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"typescript": "5.9.3"
|