@backstage/plugin-catalog-backend-module-openapi 0.2.18-next.0 → 0.2.19-next.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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-openapi
|
|
2
2
|
|
|
3
|
+
## 0.2.19-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- cfd8103: Updated imports to use stable catalog extension points from `@backstage/plugin-catalog-node` instead of the deprecated alpha exports.
|
|
8
|
+
- 7455dae: Use node prefix on native imports
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/plugin-catalog-node@1.21.0-next.0
|
|
11
|
+
- @backstage/backend-plugin-api@1.7.0-next.0
|
|
12
|
+
- @backstage/integration@1.19.3-next.0
|
|
13
|
+
- @backstage/catalog-model@1.7.6
|
|
14
|
+
- @backstage/types@1.2.2
|
|
15
|
+
- @backstage/plugin-catalog-common@1.1.8-next.0
|
|
16
|
+
|
|
17
|
+
## 0.2.18
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @backstage/backend-plugin-api@1.6.1
|
|
23
|
+
- @backstage/integration@1.19.2
|
|
24
|
+
|
|
3
25
|
## 0.2.18-next.0
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/dist/lib/bundle.cjs.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
var jsonSchemaRefParser = require('@apidevtools/json-schema-ref-parser');
|
|
4
4
|
var yaml = require('yaml');
|
|
5
|
-
var path = require('path');
|
|
5
|
+
var path = require('node:path');
|
|
6
6
|
|
|
7
7
|
function _interopNamespaceCompat(e) {
|
|
8
8
|
if (e && typeof e === 'object' && 'default' in e) return e;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle.cjs.js","sources":["../../src/lib/bundle.ts"],"sourcesContent":["/*\n * Copyright 2020 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport {\n $RefParser,\n ParserOptions,\n ResolverOptions,\n} from '@apidevtools/json-schema-ref-parser';\nimport { parse, stringify } from 'yaml';\nimport * as path from 'path';\n\nconst protocolPattern = /^(\\w{2,}):\\/\\//i;\nconst getProtocol = (refPath: string) => {\n const match = protocolPattern.exec(refPath);\n if (match) {\n return match[1].toLowerCase();\n }\n return undefined;\n};\n\nexport type BundlerRead = (url: string) => Promise<Buffer>;\n\nexport type BundlerResolveUrl = (url: string, base: string) => string;\n\n// Preserved references paths for AsyncAPI v3 documents\nconst asyncApiV3PreservedPaths = [\n /#\\/channels\\/.*\\/servers/,\n /#\\/operations\\/.*\\/channel/,\n /#\\/operations\\/.*\\/messages/,\n /#\\/operations\\/.*\\/reply\\/channel/,\n /#\\/operations\\/.*\\/reply\\/messages/,\n /#\\/components\\/channels\\/.*\\/servers/,\n /#\\/components\\/operations\\/.*\\/channel/,\n /#\\/components\\/operations\\/.*\\/messages/,\n /#\\/components\\/operations\\/.*\\/reply\\/channel/,\n /#\\/components\\/operations\\/.*\\/reply\\/messages/,\n];\n\nexport async function bundleFileWithRefs(\n fileWithRefs: string,\n baseUrl: string,\n read: BundlerRead,\n resolveUrl: BundlerResolveUrl,\n): Promise<string> {\n const fileUrlReaderResolver: ResolverOptions = {\n canRead: file => {\n const protocol = getProtocol(file.url);\n return protocol === undefined || protocol === 'file';\n },\n read: async file => {\n const relativePath = path.relative('.', file.url).replace(/\\\\/g, '/');\n const url = resolveUrl(relativePath, baseUrl);\n return await read(url);\n },\n };\n const httpUrlReaderResolver: ResolverOptions = {\n canRead: ref => {\n const protocol = getProtocol(ref.url);\n return protocol === 'http' || protocol === 'https';\n },\n read: async ref => {\n const url = resolveUrl(ref.url, baseUrl);\n return await read(url);\n },\n };\n const options: ParserOptions = {\n resolve: {\n file: fileUrlReaderResolver,\n http: httpUrlReaderResolver,\n },\n };\n\n const fileObject = parse(fileWithRefs);\n\n if (fileObject.asyncapi) {\n const version = parseInt(fileObject.asyncapi, 10);\n\n if (version === 3) {\n options.bundle = {\n excludedPathMatcher: (refPath: string): any => {\n return asyncApiV3PreservedPaths.some(pattern =>\n pattern.test(refPath),\n );\n },\n };\n }\n }\n\n const bundledObject = await $RefParser.bundle(fileObject, options);\n return stringify(bundledObject);\n}\n"],"names":["path","parse","$RefParser","stringify"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAuBA,MAAM,eAAA,GAAkB,iBAAA;AACxB,MAAM,WAAA,GAAc,CAAC,OAAA,KAAoB;AACvC,EAAA,MAAM,KAAA,GAAQ,eAAA,CAAgB,IAAA,CAAK,OAAO,CAAA;AAC1C,EAAA,IAAI,KAAA,EAAO;AACT,IAAA,OAAO,KAAA,CAAM,CAAC,CAAA,CAAE,WAAA,EAAY;AAAA,EAC9B;AACA,EAAA,OAAO,MAAA;AACT,CAAA;AAOA,MAAM,wBAAA,GAA2B;AAAA,EAC/B,0BAAA;AAAA,EACA,4BAAA;AAAA,EACA,6BAAA;AAAA,EACA,mCAAA;AAAA,EACA,oCAAA;AAAA,EACA,sCAAA;AAAA,EACA,wCAAA;AAAA,EACA,yCAAA;AAAA,EACA,+CAAA;AAAA,EACA;AACF,CAAA;AAEA,eAAsB,kBAAA,CACpB,YAAA,EACA,OAAA,EACA,IAAA,EACA,UAAA,EACiB;AACjB,EAAA,MAAM,qBAAA,GAAyC;AAAA,IAC7C,SAAS,CAAA,IAAA,KAAQ;AACf,MAAA,MAAM,QAAA,GAAW,WAAA,CAAY,IAAA,CAAK,GAAG,CAAA;AACrC,MAAA,OAAO,QAAA,KAAa,UAAa,QAAA,KAAa,MAAA;AAAA,IAChD,CAAA;AAAA,IACA,IAAA,EAAM,OAAM,IAAA,KAAQ;AAClB,MAAA,MAAM,YAAA,GAAeA,gBAAK,QAAA,CAAS,GAAA,EAAK,KAAK,GAAG,CAAA,CAAE,OAAA,CAAQ,KAAA,EAAO,GAAG,CAAA;AACpE,MAAA,MAAM,GAAA,GAAM,UAAA,CAAW,YAAA,EAAc,OAAO,CAAA;AAC5C,MAAA,OAAO,MAAM,KAAK,GAAG,CAAA;AAAA,IACvB;AAAA,GACF;AACA,EAAA,MAAM,qBAAA,GAAyC;AAAA,IAC7C,SAAS,CAAA,GAAA,KAAO;AACd,MAAA,MAAM,QAAA,GAAW,WAAA,CAAY,GAAA,CAAI,GAAG,CAAA;AACpC,MAAA,OAAO,QAAA,KAAa,UAAU,QAAA,KAAa,OAAA;AAAA,IAC7C,CAAA;AAAA,IACA,IAAA,EAAM,OAAM,GAAA,KAAO;AACjB,MAAA,MAAM,GAAA,GAAM,UAAA,CAAW,GAAA,CAAI,GAAA,EAAK,OAAO,CAAA;AACvC,MAAA,OAAO,MAAM,KAAK,GAAG,CAAA;AAAA,IACvB;AAAA,GACF;AACA,EAAA,MAAM,OAAA,GAAyB;AAAA,IAC7B,OAAA,EAAS;AAAA,MACP,IAAA,EAAM,qBAAA;AAAA,MACN,IAAA,EAAM;AAAA;AACR,GACF;AAEA,EAAA,MAAM,UAAA,GAAaC,WAAM,YAAY,CAAA;AAErC,EAAA,IAAI,WAAW,QAAA,EAAU;AACvB,IAAA,MAAM,OAAA,GAAU,QAAA,CAAS,UAAA,CAAW,QAAA,EAAU,EAAE,CAAA;AAEhD,IAAA,IAAI,YAAY,CAAA,EAAG;AACjB,MAAA,OAAA,CAAQ,MAAA,GAAS;AAAA,QACf,mBAAA,EAAqB,CAAC,OAAA,KAAyB;AAC7C,UAAA,OAAO,wBAAA,CAAyB,IAAA;AAAA,YAAK,CAAA,OAAA,KACnC,OAAA,CAAQ,IAAA,CAAK,OAAO;AAAA,WACtB;AAAA,QACF;AAAA,OACF;AAAA,IACF;AAAA,EACF;AAEA,EAAA,MAAM,aAAA,GAAgB,MAAMC,8BAAA,CAAW,MAAA,CAAO,YAAY,OAAO,CAAA;AACjE,EAAA,OAAOC,eAAU,aAAa,CAAA;AAChC;;;;"}
|
|
1
|
+
{"version":3,"file":"bundle.cjs.js","sources":["../../src/lib/bundle.ts"],"sourcesContent":["/*\n * Copyright 2020 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport {\n $RefParser,\n ParserOptions,\n ResolverOptions,\n} from '@apidevtools/json-schema-ref-parser';\nimport { parse, stringify } from 'yaml';\nimport * as path from 'node:path';\n\nconst protocolPattern = /^(\\w{2,}):\\/\\//i;\nconst getProtocol = (refPath: string) => {\n const match = protocolPattern.exec(refPath);\n if (match) {\n return match[1].toLowerCase();\n }\n return undefined;\n};\n\nexport type BundlerRead = (url: string) => Promise<Buffer>;\n\nexport type BundlerResolveUrl = (url: string, base: string) => string;\n\n// Preserved references paths for AsyncAPI v3 documents\nconst asyncApiV3PreservedPaths = [\n /#\\/channels\\/.*\\/servers/,\n /#\\/operations\\/.*\\/channel/,\n /#\\/operations\\/.*\\/messages/,\n /#\\/operations\\/.*\\/reply\\/channel/,\n /#\\/operations\\/.*\\/reply\\/messages/,\n /#\\/components\\/channels\\/.*\\/servers/,\n /#\\/components\\/operations\\/.*\\/channel/,\n /#\\/components\\/operations\\/.*\\/messages/,\n /#\\/components\\/operations\\/.*\\/reply\\/channel/,\n /#\\/components\\/operations\\/.*\\/reply\\/messages/,\n];\n\nexport async function bundleFileWithRefs(\n fileWithRefs: string,\n baseUrl: string,\n read: BundlerRead,\n resolveUrl: BundlerResolveUrl,\n): Promise<string> {\n const fileUrlReaderResolver: ResolverOptions = {\n canRead: file => {\n const protocol = getProtocol(file.url);\n return protocol === undefined || protocol === 'file';\n },\n read: async file => {\n const relativePath = path.relative('.', file.url).replace(/\\\\/g, '/');\n const url = resolveUrl(relativePath, baseUrl);\n return await read(url);\n },\n };\n const httpUrlReaderResolver: ResolverOptions = {\n canRead: ref => {\n const protocol = getProtocol(ref.url);\n return protocol === 'http' || protocol === 'https';\n },\n read: async ref => {\n const url = resolveUrl(ref.url, baseUrl);\n return await read(url);\n },\n };\n const options: ParserOptions = {\n resolve: {\n file: fileUrlReaderResolver,\n http: httpUrlReaderResolver,\n },\n };\n\n const fileObject = parse(fileWithRefs);\n\n if (fileObject.asyncapi) {\n const version = parseInt(fileObject.asyncapi, 10);\n\n if (version === 3) {\n options.bundle = {\n excludedPathMatcher: (refPath: string): any => {\n return asyncApiV3PreservedPaths.some(pattern =>\n pattern.test(refPath),\n );\n },\n };\n }\n }\n\n const bundledObject = await $RefParser.bundle(fileObject, options);\n return stringify(bundledObject);\n}\n"],"names":["path","parse","$RefParser","stringify"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAuBA,MAAM,eAAA,GAAkB,iBAAA;AACxB,MAAM,WAAA,GAAc,CAAC,OAAA,KAAoB;AACvC,EAAA,MAAM,KAAA,GAAQ,eAAA,CAAgB,IAAA,CAAK,OAAO,CAAA;AAC1C,EAAA,IAAI,KAAA,EAAO;AACT,IAAA,OAAO,KAAA,CAAM,CAAC,CAAA,CAAE,WAAA,EAAY;AAAA,EAC9B;AACA,EAAA,OAAO,MAAA;AACT,CAAA;AAOA,MAAM,wBAAA,GAA2B;AAAA,EAC/B,0BAAA;AAAA,EACA,4BAAA;AAAA,EACA,6BAAA;AAAA,EACA,mCAAA;AAAA,EACA,oCAAA;AAAA,EACA,sCAAA;AAAA,EACA,wCAAA;AAAA,EACA,yCAAA;AAAA,EACA,+CAAA;AAAA,EACA;AACF,CAAA;AAEA,eAAsB,kBAAA,CACpB,YAAA,EACA,OAAA,EACA,IAAA,EACA,UAAA,EACiB;AACjB,EAAA,MAAM,qBAAA,GAAyC;AAAA,IAC7C,SAAS,CAAA,IAAA,KAAQ;AACf,MAAA,MAAM,QAAA,GAAW,WAAA,CAAY,IAAA,CAAK,GAAG,CAAA;AACrC,MAAA,OAAO,QAAA,KAAa,UAAa,QAAA,KAAa,MAAA;AAAA,IAChD,CAAA;AAAA,IACA,IAAA,EAAM,OAAM,IAAA,KAAQ;AAClB,MAAA,MAAM,YAAA,GAAeA,gBAAK,QAAA,CAAS,GAAA,EAAK,KAAK,GAAG,CAAA,CAAE,OAAA,CAAQ,KAAA,EAAO,GAAG,CAAA;AACpE,MAAA,MAAM,GAAA,GAAM,UAAA,CAAW,YAAA,EAAc,OAAO,CAAA;AAC5C,MAAA,OAAO,MAAM,KAAK,GAAG,CAAA;AAAA,IACvB;AAAA,GACF;AACA,EAAA,MAAM,qBAAA,GAAyC;AAAA,IAC7C,SAAS,CAAA,GAAA,KAAO;AACd,MAAA,MAAM,QAAA,GAAW,WAAA,CAAY,GAAA,CAAI,GAAG,CAAA;AACpC,MAAA,OAAO,QAAA,KAAa,UAAU,QAAA,KAAa,OAAA;AAAA,IAC7C,CAAA;AAAA,IACA,IAAA,EAAM,OAAM,GAAA,KAAO;AACjB,MAAA,MAAM,GAAA,GAAM,UAAA,CAAW,GAAA,CAAI,GAAA,EAAK,OAAO,CAAA;AACvC,MAAA,OAAO,MAAM,KAAK,GAAG,CAAA;AAAA,IACvB;AAAA,GACF;AACA,EAAA,MAAM,OAAA,GAAyB;AAAA,IAC7B,OAAA,EAAS;AAAA,MACP,IAAA,EAAM,qBAAA;AAAA,MACN,IAAA,EAAM;AAAA;AACR,GACF;AAEA,EAAA,MAAM,UAAA,GAAaC,WAAM,YAAY,CAAA;AAErC,EAAA,IAAI,WAAW,QAAA,EAAU;AACvB,IAAA,MAAM,OAAA,GAAU,QAAA,CAAS,UAAA,CAAW,QAAA,EAAU,EAAE,CAAA;AAEhD,IAAA,IAAI,YAAY,CAAA,EAAG;AACjB,MAAA,OAAA,CAAQ,MAAA,GAAS;AAAA,QACf,mBAAA,EAAqB,CAAC,OAAA,KAAyB;AAC7C,UAAA,OAAO,wBAAA,CAAyB,IAAA;AAAA,YAAK,CAAA,OAAA,KACnC,OAAA,CAAQ,IAAA,CAAK,OAAO;AAAA,WACtB;AAAA,QACF;AAAA,OACF;AAAA,IACF;AAAA,EACF;AAEA,EAAA,MAAM,aAAA,GAAgB,MAAMC,8BAAA,CAAW,MAAA,CAAO,YAAY,OAAO,CAAA;AACjE,EAAA,OAAOC,eAAU,aAAa,CAAA;AAChC;;;;"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var backendPluginApi = require('@backstage/backend-plugin-api');
|
|
4
|
-
var
|
|
4
|
+
var pluginCatalogNode = require('@backstage/plugin-catalog-node');
|
|
5
5
|
var jsonSchemaRefPlaceholderResolver = require('../jsonSchemaRefPlaceholderResolver.cjs.js');
|
|
6
6
|
|
|
7
7
|
const catalogModuleJsonSchemaRefPlaceholderResolver = backendPluginApi.createBackendModule({
|
|
@@ -10,7 +10,7 @@ const catalogModuleJsonSchemaRefPlaceholderResolver = backendPluginApi.createBac
|
|
|
10
10
|
register(env) {
|
|
11
11
|
env.registerInit({
|
|
12
12
|
deps: {
|
|
13
|
-
catalog:
|
|
13
|
+
catalog: pluginCatalogNode.catalogProcessingExtensionPoint
|
|
14
14
|
},
|
|
15
15
|
async init({ catalog }) {
|
|
16
16
|
catalog.addPlaceholderResolver(
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalogModuleJsonSchemaRefPlaceholderResolver.cjs.js","sources":["../../src/module/catalogModuleJsonSchemaRefPlaceholderResolver.ts"],"sourcesContent":["/*\n * Copyright 2024 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createBackendModule } from '@backstage/backend-plugin-api';\nimport { catalogProcessingExtensionPoint } from '@backstage/plugin-catalog-node
|
|
1
|
+
{"version":3,"file":"catalogModuleJsonSchemaRefPlaceholderResolver.cjs.js","sources":["../../src/module/catalogModuleJsonSchemaRefPlaceholderResolver.ts"],"sourcesContent":["/*\n * Copyright 2024 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createBackendModule } from '@backstage/backend-plugin-api';\nimport { catalogProcessingExtensionPoint } from '@backstage/plugin-catalog-node';\nimport { jsonSchemaRefPlaceholderResolver } from '../jsonSchemaRefPlaceholderResolver';\n\n/**\n * Registers the jsonSchemaRefPlaceholderResolver\n * as placeholder resolver for `$asyncapi` and `$openapi`.\n *\n * @public\n */\nexport const catalogModuleJsonSchemaRefPlaceholderResolver =\n createBackendModule({\n pluginId: 'catalog',\n moduleId: 'json-schema-ref-placeholder-resolver',\n register(env) {\n env.registerInit({\n deps: {\n catalog: catalogProcessingExtensionPoint,\n },\n async init({ catalog }) {\n catalog.addPlaceholderResolver(\n 'asyncapi',\n jsonSchemaRefPlaceholderResolver,\n );\n catalog.addPlaceholderResolver(\n 'openapi',\n jsonSchemaRefPlaceholderResolver,\n );\n },\n });\n },\n });\n"],"names":["createBackendModule","catalogProcessingExtensionPoint","jsonSchemaRefPlaceholderResolver"],"mappings":";;;;;;AA0BO,MAAM,gDACXA,oCAAA,CAAoB;AAAA,EAClB,QAAA,EAAU,SAAA;AAAA,EACV,QAAA,EAAU,sCAAA;AAAA,EACV,SAAS,GAAA,EAAK;AACZ,IAAA,GAAA,CAAI,YAAA,CAAa;AAAA,MACf,IAAA,EAAM;AAAA,QACJ,OAAA,EAASC;AAAA,OACX;AAAA,MACA,MAAM,IAAA,CAAK,EAAE,OAAA,EAAQ,EAAG;AACtB,QAAA,OAAA,CAAQ,sBAAA;AAAA,UACN,UAAA;AAAA,UACAC;AAAA,SACF;AACA,QAAA,OAAA,CAAQ,sBAAA;AAAA,UACN,SAAA;AAAA,UACAA;AAAA,SACF;AAAA,MACF;AAAA,KACD,CAAA;AAAA,EACH;AACF,CAAC;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-openapi",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.19-next.0",
|
|
4
4
|
"description": "A Backstage catalog backend module that helps with OpenAPI specifications",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -41,17 +41,17 @@
|
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@apidevtools/json-schema-ref-parser": "^14.2.1",
|
|
44
|
-
"@backstage/backend-plugin-api": "1.
|
|
44
|
+
"@backstage/backend-plugin-api": "1.7.0-next.0",
|
|
45
45
|
"@backstage/catalog-model": "1.7.6",
|
|
46
|
-
"@backstage/integration": "1.19.
|
|
47
|
-
"@backstage/plugin-catalog-common": "1.1.
|
|
48
|
-
"@backstage/plugin-catalog-node": "1.
|
|
46
|
+
"@backstage/integration": "1.19.3-next.0",
|
|
47
|
+
"@backstage/plugin-catalog-common": "1.1.8-next.0",
|
|
48
|
+
"@backstage/plugin-catalog-node": "1.21.0-next.0",
|
|
49
49
|
"@backstage/types": "1.2.2",
|
|
50
50
|
"yaml": "^2.1.1"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@backstage/backend-test-utils": "1.10.
|
|
54
|
-
"@backstage/cli": "0.35.
|
|
53
|
+
"@backstage/backend-test-utils": "1.10.4-next.0",
|
|
54
|
+
"@backstage/cli": "0.35.3-next.0",
|
|
55
55
|
"openapi-types": "^12.0.0"
|
|
56
56
|
},
|
|
57
57
|
"typesVersions": {
|