@nullplatform/mcp 0.1.5 → 0.1.7
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/i18n.js +206 -22
- package/dist/md.js +14 -4
- package/dist/np/client.js +3 -0
- package/dist/np/journey.js +236 -24
- package/dist/surfaces/developer.js +1 -1
- package/dist/tool-names.js +7 -0
- package/dist/tools/action-flow.js +94 -0
- package/dist/tools/approvals.js +2 -2
- package/dist/tools/builds.js +23 -6
- package/dist/tools/create-link.js +163 -0
- package/dist/tools/create-service.js +149 -0
- package/dist/tools/delete-flow.js +30 -0
- package/dist/tools/delete-link.js +95 -0
- package/dist/tools/delete-param.js +76 -0
- package/dist/tools/delete-service.js +108 -0
- package/dist/tools/deployments.js +2 -2
- package/dist/tools/index.js +14 -0
- package/dist/tools/logs.js +2 -2
- package/dist/tools/metrics.js +4 -1
- package/dist/tools/overview.js +2 -2
- package/dist/tools/params.js +78 -17
- package/dist/tools/playbook.js +2 -1
- package/dist/tools/releases.js +2 -2
- package/dist/tools/services.js +2 -2
- package/dist/tools/set-params.js +61 -11
- package/dist/tools/shared.js +4 -0
- package/dist/tools/update-link.js +87 -0
- package/dist/tools/update-service.js +92 -0
- package/dist/ui.js +4 -1
- package/package.json +3 -1
- package/skills/starting-a-new-app/SKILL.md +71 -0
- package/widgets-dist/approvals.html +257 -53
- package/widgets-dist/builds.html +261 -57
- package/widgets-dist/create-app.html +252 -48
- package/widgets-dist/deployments.html +253 -49
- package/widgets-dist/find-apps.html +251 -47
- package/widgets-dist/logs.html +256 -52
- package/widgets-dist/manifest.json +16 -13
- package/widgets-dist/metrics.html +261 -57
- package/widgets-dist/np-panel.html +257 -53
- package/widgets-dist/overview.html +261 -57
- package/widgets-dist/params.html +257 -53
- package/widgets-dist/releases.html +259 -55
- package/widgets-dist/service-action.html +1118 -0
- package/widgets-dist/service-create.html +1117 -0
- package/widgets-dist/{playbook.html → service-delete.html} +258 -58
- package/widgets-dist/service-link.html +1117 -0
- package/widgets-dist/services.html +255 -51
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"approvals": "ui://widgets/approvals.
|
|
3
|
-
"builds": "ui://widgets/builds.
|
|
4
|
-
"create-app": "ui://widgets/create-app.
|
|
5
|
-
"deployments": "ui://widgets/deployments.
|
|
6
|
-
"find-apps": "ui://widgets/find-apps.
|
|
7
|
-
"logs": "ui://widgets/logs.
|
|
8
|
-
"metrics": "ui://widgets/metrics.
|
|
9
|
-
"np-panel": "ui://widgets/np-panel.
|
|
10
|
-
"overview": "ui://widgets/overview.
|
|
11
|
-
"params": "ui://widgets/params.
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
2
|
+
"approvals": "ui://widgets/approvals.eae1c674.html",
|
|
3
|
+
"builds": "ui://widgets/builds.4c753b0b.html",
|
|
4
|
+
"create-app": "ui://widgets/create-app.b18e67d8.html",
|
|
5
|
+
"deployments": "ui://widgets/deployments.48442545.html",
|
|
6
|
+
"find-apps": "ui://widgets/find-apps.0eb33d10.html",
|
|
7
|
+
"logs": "ui://widgets/logs.65b8acf8.html",
|
|
8
|
+
"metrics": "ui://widgets/metrics.c5b5cec5.html",
|
|
9
|
+
"np-panel": "ui://widgets/np-panel.981d95be.html",
|
|
10
|
+
"overview": "ui://widgets/overview.1686dec2.html",
|
|
11
|
+
"params": "ui://widgets/params.6078be9e.html",
|
|
12
|
+
"releases": "ui://widgets/releases.4bf73181.html",
|
|
13
|
+
"service-action": "ui://widgets/service-action.62789893.html",
|
|
14
|
+
"service-create": "ui://widgets/service-create.beb4f746.html",
|
|
15
|
+
"service-delete": "ui://widgets/service-delete.595381dd.html",
|
|
16
|
+
"service-link": "ui://widgets/service-link.16f442ef.html",
|
|
17
|
+
"services": "ui://widgets/services.4e3e11a9.html"
|
|
15
18
|
}
|