@ddtcorex/dsh-maestro-config 0.1.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 +10 -0
- package/cordis.patch.yml +6 -0
- package/lib/client.js +3028 -0
- package/lib/index.d.ts +12 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +44 -0
- package/lib/index.js.map +1 -0
- package/lib/service.d.ts +16 -0
- package/lib/service.d.ts.map +1 -0
- package/lib/service.js +24 -0
- package/lib/service.js.map +1 -0
- package/lib/types/client/api.d.ts +23 -0
- package/lib/types/client/api.d.ts.map +1 -0
- package/lib/types/client/index.d.ts +7 -0
- package/lib/types/client/index.d.ts.map +1 -0
- package/lib/types/client/maestro-card.d.ts +9 -0
- package/lib/types/client/maestro-card.d.ts.map +1 -0
- package/lib/types/client/settings-nav-icon.d.ts +21 -0
- package/lib/types/client/settings-nav-icon.d.ts.map +1 -0
- package/lib/types/client/webhook-secret.d.ts +5 -0
- package/lib/types/client/webhook-secret.d.ts.map +1 -0
- package/package.json +65 -0
- package/src/client/api.ts +23 -0
- package/src/client/index.tsx +79 -0
- package/src/client/maestro-card.jsx +702 -0
- package/src/client/settings-nav-icon.ts +68 -0
- package/src/client/webhook-secret.ts +13 -0
- package/src/host/index.ts +58 -0
- package/src/host/service.ts +33 -0
package/README.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# @ddtcorex/dsh-maestro-config
|
|
2
|
+
|
|
3
|
+
Shared settings service for the `dsh-maestro-*` suite. One namespaced store at
|
|
4
|
+
`~/.dsh/maestro/settings.json` (chmod 600), owned per-domain by each plugin.
|
|
5
|
+
Embeds [`@ddtcorex/dsh-maestro-config-lib`](https://github.com/ddtcorex/dsh-maestro-config-lib).
|
|
6
|
+
|
|
7
|
+
- Service `maestroConfig`: `listDomains / get / set(patch-merge) / onChange`
|
|
8
|
+
- Loopback RPC channel `maestro.config`: `list | get | set`
|
|
9
|
+
|
|
10
|
+
Install: `dsh plugin --profile <name> add <path-or-git-url>` (bundle patch adds row `maestro-config`). Optional layer — plugins work standalone through the embedded lib alone.
|
package/cordis.patch.yml
ADDED