@nullplatform/mcp 0.1.14 → 0.1.15
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/dist/http.js +16 -12
- package/dist/i18n.js +6 -0
- package/dist/log.js +53 -0
- package/dist/np/client.js +10 -1
- package/dist/np/context.js +24 -19
- package/dist/np/journey.js +14 -4
- package/dist/render.js +12 -13
- package/dist/surfaces/developer.js +14 -4
- package/dist/tool.js +64 -6
- package/dist/tools/create-app.js +125 -111
- package/dist/tools/create-link.js +81 -54
- package/dist/tools/create-scope.js +34 -22
- package/dist/tools/create-service.js +38 -24
- package/dist/tools/deploy.js +51 -29
- package/dist/tools/entity-list.js +14 -6
- package/dist/tools/logs.js +114 -17
- package/dist/tools/overview.js +1 -1
- package/dist/tools/params.js +7 -1
- package/dist/tools/set-params.js +17 -18
- package/dist/tools/shared.js +9 -0
- package/dist/tools/status.js +4 -4
- package/dist/tools/traffic.js +38 -26
- package/dist/ui.js +1 -1
- package/package.json +2 -1
- package/widgets-dist/approvals.html +112 -10
- package/widgets-dist/builds.html +119 -17
- package/widgets-dist/create-app.html +121 -19
- package/widgets-dist/deployments.html +124 -22
- package/widgets-dist/find-apps.html +123 -21
- package/widgets-dist/logs.html +125 -23
- package/widgets-dist/manifest.json +16 -16
- package/widgets-dist/metrics.html +112 -10
- package/widgets-dist/overview.html +128 -26
- package/widgets-dist/params.html +119 -17
- package/widgets-dist/releases.html +128 -26
- package/widgets-dist/service-action.html +116 -14
- package/widgets-dist/service-create.html +115 -13
- package/widgets-dist/service-delete.html +112 -10
- package/widgets-dist/service-link.html +115 -13
- package/widgets-dist/services.html +112 -10
- package/widgets-dist/{np-panel.html → status.html} +127 -25
|
@@ -1,18 +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
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"service-
|
|
14
|
-
"service-
|
|
15
|
-
"service-
|
|
16
|
-
"
|
|
17
|
-
"
|
|
2
|
+
"approvals": "ui://widgets/approvals.dc43f0ba.html",
|
|
3
|
+
"builds": "ui://widgets/builds.3ecb3f77.html",
|
|
4
|
+
"create-app": "ui://widgets/create-app.ba35d0ec.html",
|
|
5
|
+
"deployments": "ui://widgets/deployments.126d97e3.html",
|
|
6
|
+
"find-apps": "ui://widgets/find-apps.183882e4.html",
|
|
7
|
+
"logs": "ui://widgets/logs.87b3c898.html",
|
|
8
|
+
"metrics": "ui://widgets/metrics.2ce34364.html",
|
|
9
|
+
"overview": "ui://widgets/overview.10c49c7b.html",
|
|
10
|
+
"params": "ui://widgets/params.4751074c.html",
|
|
11
|
+
"releases": "ui://widgets/releases.567faacb.html",
|
|
12
|
+
"service-action": "ui://widgets/service-action.ba9bde14.html",
|
|
13
|
+
"service-create": "ui://widgets/service-create.3e27408f.html",
|
|
14
|
+
"service-delete": "ui://widgets/service-delete.be90ed55.html",
|
|
15
|
+
"service-link": "ui://widgets/service-link.ee2aa4b5.html",
|
|
16
|
+
"services": "ui://widgets/services.8b33f4a5.html",
|
|
17
|
+
"status": "ui://widgets/status.d013814a.html"
|
|
18
18
|
}
|