dsh-plugin-shop 0.5.0 → 0.5.1
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 +3 -3
- package/lib/client.js +1 -1
- package/lib/index.js +1 -1
- package/lib/typert.host.js +2 -2
- package/lib/typert.remote-client.js +1 -1
- package/lib/types/host/types.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -52,9 +52,9 @@ install them once with `npm install -g @deepseek-ai/dsh pnpm` and verify with
|
|
|
52
52
|
# holds back very recent releases, so a bare `add dsh-plugin-shop` can hand
|
|
53
53
|
# you an older version for a while. Pin the current release — refresh it
|
|
54
54
|
# with `npm view dsh-plugin-shop version`.
|
|
55
|
-
dsh plugin --profile web add dsh-plugin-shop@0.5.
|
|
55
|
+
dsh plugin --profile web add dsh-plugin-shop@0.5.1
|
|
56
56
|
# or straight through npx, nothing installed:
|
|
57
|
-
npx -y @deepseek-ai/dsh plugin --profile web add dsh-plugin-shop@0.5.
|
|
57
|
+
npx -y @deepseek-ai/dsh plugin --profile web add dsh-plugin-shop@0.5.1
|
|
58
58
|
```
|
|
59
59
|
|
|
60
60
|
Replace `web` with your profile if you use another one. Then restart `dsh` once — a
|
|
@@ -84,7 +84,7 @@ ls -1 "${DSH_HOME:-$HOME/.dsh}/profiles" | grep -v '^node_modules$'
|
|
|
84
84
|
cooldown, and deterministic installs are the point of the agent path.
|
|
85
85
|
|
|
86
86
|
```sh
|
|
87
|
-
dsh plugin --profile <profile> add dsh-plugin-shop@0.5.
|
|
87
|
+
dsh plugin --profile <profile> add dsh-plugin-shop@0.5.1
|
|
88
88
|
```
|
|
89
89
|
|
|
90
90
|
**3. Verify — do not skip this.** A zero exit from step 2 means pnpm resolved the
|
package/lib/client.js
CHANGED
|
@@ -4309,7 +4309,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
4309
4309
|
"url": string(),
|
|
4310
4310
|
"sha256": string()
|
|
4311
4311
|
})]).optional(),
|
|
4312
|
-
"added": string()
|
|
4312
|
+
"added": union([_undefined(), string()]).optional()
|
|
4313
4313
|
})),
|
|
4314
4314
|
"denied": array(object({
|
|
4315
4315
|
"name": string(),
|
package/lib/index.js
CHANGED
|
@@ -63,7 +63,7 @@ const entrySchema = z.object({
|
|
|
63
63
|
source: z.enum(["npm", "github"]).default("npm"),
|
|
64
64
|
repo: z.string().optional(),
|
|
65
65
|
subdir: z.string().regex(/^(?!.*(^|\/)\.\.?(\/|$))[A-Za-z0-9._-]+(\/[A-Za-z0-9._-]+)*$/).optional(),
|
|
66
|
-
added: z.string(),
|
|
66
|
+
added: z.string().optional(),
|
|
67
67
|
tarball: z.object({
|
|
68
68
|
url: z.string(),
|
|
69
69
|
sha256: z.string()
|
package/lib/typert.host.js
CHANGED
|
@@ -40,7 +40,7 @@ const dsh_plugin_shop_shop_catalog_result$schema = z.object({
|
|
|
40
40
|
'url': z.string(),
|
|
41
41
|
'sha256': z.string(),
|
|
42
42
|
})]).optional(),
|
|
43
|
-
'added': z.string(),
|
|
43
|
+
'added': z.union([z.undefined(), z.string()]).optional(),
|
|
44
44
|
})),
|
|
45
45
|
'denied': z.array(z.object({
|
|
46
46
|
'name': z.string(),
|
|
@@ -409,7 +409,7 @@ export const TYPERT = {
|
|
|
409
409
|
"types": [
|
|
410
410
|
{
|
|
411
411
|
"name": "CatalogEntry",
|
|
412
|
-
"declaration": "export interface CatalogEntry {\n name: string;\n version: string;\n integrity: string | null;\n publishedAt: string | null;\n repository: string | null;\n license: string | null;\n tier: 'verified' | 'verified-stale' | 'community';\n metadata: 'declared' | 'derived';\n review?: { reviewedVersion?: string; reviewedCommit?: string; reviewedSha256?: string; reviewer: string; reviewCommit: string; notes: string; };\n catalog?: CatalogSection;\n source: 'npm' | 'github';\n repo?: string;\n subdir?: string;\n tarball?: { url: string; sha256: string; };\n added
|
|
412
|
+
"declaration": "export interface CatalogEntry {\n name: string;\n version: string;\n integrity: string | null;\n publishedAt: string | null;\n repository: string | null;\n license: string | null;\n tier: 'verified' | 'verified-stale' | 'community';\n metadata: 'declared' | 'derived';\n review?: { reviewedVersion?: string; reviewedCommit?: string; reviewedSha256?: string; reviewer: string; reviewCommit: string; notes: string; };\n catalog?: CatalogSection;\n source: 'npm' | 'github';\n repo?: string;\n subdir?: string;\n tarball?: { url: string; sha256: string; };\n added?: string;\n}"
|
|
413
413
|
},
|
|
414
414
|
{
|
|
415
415
|
"name": "CatalogSection",
|
|
@@ -40,7 +40,7 @@ const dsh_plugin_shop_shop_catalog_result$schema = z.object({
|
|
|
40
40
|
'url': z.string(),
|
|
41
41
|
'sha256': z.string(),
|
|
42
42
|
})]).optional(),
|
|
43
|
-
'added': z.string(),
|
|
43
|
+
'added': z.union([z.undefined(), z.string()]).optional(),
|
|
44
44
|
})),
|
|
45
45
|
'denied': z.array(z.object({
|
|
46
46
|
'name': z.string(),
|
package/package.json
CHANGED