dshmarket 1.11.1 → 1.11.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.
- package/README.md +2 -0
- package/client/client.js +516 -155
- package/client/client.js.map +1 -1
- package/lib/check.js +16 -48
- package/lib/dsh-cli.js +30 -5
- package/lib/hot.js +40 -1
- package/lib/order.js +90 -26
- package/lib/patch.js +20 -2
- package/lib/profile.js +8 -3
- package/lib/registry.js +12 -1
- package/lib/routes.js +295 -163
- package/lib/trial.js +116 -0
- package/lib/types/order.d.ts +42 -19
- package/lib/types/profile.d.ts +8 -0
- package/lib/types/routes.d.ts +1 -0
- package/lib/types/trial.d.ts +61 -0
- package/package.json +1 -1
- package/src/check.ts +16 -44
- package/src/client/Diagnostics.tsx +334 -31
- package/src/client/Market.module.css +14 -2
- package/src/client/MarketSection.tsx +8 -0
- package/src/client/locales.ts +46 -2
- package/src/client/market-data.ts +2 -0
- package/src/dsh-cli.ts +30 -4
- package/src/hot.ts +41 -1
- package/src/order.ts +91 -26
- package/src/patch.ts +19 -2
- package/src/profile.ts +8 -3
- package/src/registry.ts +12 -1
- package/src/routes.ts +298 -161
- package/src/trial.ts +156 -0
package/README.md
CHANGED
|
@@ -40,6 +40,8 @@ Restart `dsh web`, then open **Settings → Plugin Market**.
|
|
|
40
40
|
- **Log export** — one click produces a sanitized plain-text log for bug reports (home paths and credential shapes are masked; nothing is ever sent anywhere)
|
|
41
41
|
- **Diagnostics** — the plugin load order and conflict surface, one page: bundle stack with official/community badges, duplicate loader entries, dependency version mismatches, multi-version core packages, overrides and invalid config entries. Plain-language terms, problem blocks highlighted, everything collapsible
|
|
42
42
|
|
|
43
|
+
- **AI fix** — one click copies a diagnostics-driven fix prompt (errors/warnings/order conflicts + conservative scope instructions) to the clipboard; you paste it into a new conversation and decide whether to send
|
|
44
|
+
|
|
43
45
|
## Speed
|
|
44
46
|
|
|
45
47
|
Installs prefer npm tarballs over full-repo GitHub downloads whenever a plugin publishes to npm (registry-verified against the repo to prevent name squatting). Registry installs are typically seconds; GitHub-only plugins depend on your connection to GitHub.
|