@nullplatform/mcp 0.1.13 → 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 +30 -21
- package/dist/np/journey.js +14 -4
- package/dist/render.js +12 -13
- package/dist/surfaces/developer.js +21 -4
- package/dist/tool.js +64 -6
- package/dist/tools/approvals.js +1 -1
- package/dist/tools/builds.js +1 -1
- package/dist/tools/create-app.js +158 -132
- package/dist/tools/create-link.js +82 -55
- package/dist/tools/create-release.js +1 -1
- package/dist/tools/create-scope.js +35 -23
- package/dist/tools/create-service.js +39 -25
- package/dist/tools/delete-link.js +1 -1
- package/dist/tools/delete-param.js +1 -1
- package/dist/tools/delete-service.js +1 -1
- package/dist/tools/deploy.js +52 -30
- package/dist/tools/deployments.js +1 -1
- package/dist/tools/entity-get.js +1 -1
- package/dist/tools/entity-list.js +14 -6
- package/dist/tools/find-apps.js +5 -2
- package/dist/tools/logs.js +114 -17
- package/dist/tools/metrics.js +1 -1
- package/dist/tools/overview.js +1 -1
- package/dist/tools/params.js +8 -2
- package/dist/tools/playbook.js +1 -1
- package/dist/tools/releases.js +1 -1
- package/dist/tools/services.js +1 -1
- package/dist/tools/set-params.js +18 -19
- package/dist/tools/shared.js +52 -0
- package/dist/tools/status.js +4 -4
- package/dist/tools/traffic.js +38 -26
- package/dist/tools/update-link.js +1 -1
- package/dist/tools/update-service.js +1 -1
- package/dist/ui.js +1 -1
- package/package.json +5 -1
- package/widgets-dist/approvals.html +120 -10
- package/widgets-dist/builds.html +127 -17
- package/widgets-dist/create-app.html +129 -19
- package/widgets-dist/deployments.html +132 -22
- package/widgets-dist/find-apps.html +131 -21
- package/widgets-dist/logs.html +133 -23
- package/widgets-dist/manifest.json +16 -16
- package/widgets-dist/metrics.html +120 -10
- package/widgets-dist/overview.html +136 -26
- package/widgets-dist/params.html +121 -11
- package/widgets-dist/releases.html +136 -26
- package/widgets-dist/service-action.html +124 -14
- package/widgets-dist/service-create.html +123 -13
- package/widgets-dist/service-delete.html +120 -10
- package/widgets-dist/service-link.html +123 -13
- package/widgets-dist/services.html +120 -10
- package/widgets-dist/{np-panel.html → status.html} +135 -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
|
}
|