@steedos/service-packages 3.0.0-beta.99 → 3.0.1
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/index.js +1 -1
- package/package.json +2 -4
package/index.js
CHANGED
|
@@ -121,7 +121,7 @@ module.exports = {
|
|
|
121
121
|
},
|
|
122
122
|
getPackageMetadata: {
|
|
123
123
|
async handler(ctx) {
|
|
124
|
-
const serviceName =
|
|
124
|
+
const serviceName = `${ctx.params.packageName}`
|
|
125
125
|
const configs = await ctx.broker.call(`metadata.getServiceMetadatas`, {
|
|
126
126
|
serviceName,
|
|
127
127
|
metadataType: "*",
|
package/package.json
CHANGED
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos/service-packages",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"main": "index.js",
|
|
5
|
-
"scripts": {},
|
|
6
5
|
"license": "MIT",
|
|
7
|
-
"private": false,
|
|
8
6
|
"publishConfig": {
|
|
9
7
|
"access": "public"
|
|
10
8
|
},
|
|
11
|
-
"gitHead": "
|
|
9
|
+
"gitHead": "4bbcc1f1ba098d299f5c363e67679f001f715575"
|
|
12
10
|
}
|