@backstage/plugin-search-backend-module-catalog 0.2.3-next.2 → 0.2.3
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 +20 -0
- package/alpha/package.json +1 -1
- package/dist/alpha.cjs.js +3 -55
- package/dist/alpha.cjs.js.map +1 -1
- package/dist/alpha.d.ts +3 -26
- package/dist/index.cjs.js +5 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +29 -2
- package/dist/module.cjs.js +62 -0
- package/dist/module.cjs.js.map +1 -0
- package/package.json +14 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @backstage/plugin-search-backend-module-catalog
|
|
2
2
|
|
|
3
|
+
## 0.2.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4b60e0c: Remove extension points from `/alpha` export, they're available from the main package already
|
|
8
|
+
- 094eaa3: Remove references to in-repo backend-common
|
|
9
|
+
- 3109c24: The export for the new backend system at the `/alpha` export is now also available via the main entry point, which means that you can remove the `/alpha` suffix from the import.
|
|
10
|
+
- 2f88f88: Updated backend installation instructions.
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/plugin-search-backend-node@1.3.3
|
|
13
|
+
- @backstage/plugin-catalog-node@1.13.1
|
|
14
|
+
- @backstage/catalog-client@1.7.1
|
|
15
|
+
- @backstage/backend-plugin-api@1.0.1
|
|
16
|
+
- @backstage/catalog-model@1.7.0
|
|
17
|
+
- @backstage/config@1.2.0
|
|
18
|
+
- @backstage/errors@1.2.4
|
|
19
|
+
- @backstage/plugin-catalog-common@1.1.0
|
|
20
|
+
- @backstage/plugin-permission-common@0.8.1
|
|
21
|
+
- @backstage/plugin-search-common@1.2.14
|
|
22
|
+
|
|
3
23
|
## 0.2.3-next.2
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/alpha.cjs.js
CHANGED
|
@@ -2,61 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
var alpha$2 = require('@backstage/plugin-catalog-node/alpha');
|
|
7
|
-
var pluginSearchBackendModuleCatalog = require('@backstage/plugin-search-backend-module-catalog');
|
|
8
|
-
var alpha$1 = require('@backstage/plugin-search-backend-node/alpha');
|
|
9
|
-
var config = require('./collators/config.cjs.js');
|
|
5
|
+
var module$1 = require('./module.cjs.js');
|
|
10
6
|
|
|
11
|
-
const
|
|
12
|
-
id: "search.catalogCollator.extension"
|
|
13
|
-
});
|
|
14
|
-
var alpha = backendPluginApi.createBackendModule({
|
|
15
|
-
pluginId: "search",
|
|
16
|
-
moduleId: "catalog-collator",
|
|
17
|
-
register(env) {
|
|
18
|
-
let entityTransformer;
|
|
19
|
-
env.registerExtensionPoint(catalogCollatorExtensionPoint, {
|
|
20
|
-
setEntityTransformer(transformer) {
|
|
21
|
-
if (entityTransformer) {
|
|
22
|
-
throw new Error("setEntityTransformer can only be called once");
|
|
23
|
-
}
|
|
24
|
-
entityTransformer = transformer;
|
|
25
|
-
}
|
|
26
|
-
});
|
|
27
|
-
env.registerInit({
|
|
28
|
-
deps: {
|
|
29
|
-
auth: backendPluginApi.coreServices.auth,
|
|
30
|
-
config: backendPluginApi.coreServices.rootConfig,
|
|
31
|
-
discovery: backendPluginApi.coreServices.discovery,
|
|
32
|
-
scheduler: backendPluginApi.coreServices.scheduler,
|
|
33
|
-
indexRegistry: alpha$1.searchIndexRegistryExtensionPoint,
|
|
34
|
-
catalog: alpha$2.catalogServiceRef
|
|
35
|
-
},
|
|
36
|
-
async init({
|
|
37
|
-
auth,
|
|
38
|
-
config: config$1,
|
|
39
|
-
discovery,
|
|
40
|
-
scheduler,
|
|
41
|
-
indexRegistry,
|
|
42
|
-
catalog
|
|
43
|
-
}) {
|
|
44
|
-
indexRegistry.addCollator({
|
|
45
|
-
schedule: scheduler.createScheduledTaskRunner(
|
|
46
|
-
config.readScheduleConfigOptions(config$1)
|
|
47
|
-
),
|
|
48
|
-
factory: pluginSearchBackendModuleCatalog.DefaultCatalogCollatorFactory.fromConfig(config$1, {
|
|
49
|
-
auth,
|
|
50
|
-
entityTransformer,
|
|
51
|
-
discovery,
|
|
52
|
-
catalogClient: catalog
|
|
53
|
-
})
|
|
54
|
-
});
|
|
55
|
-
}
|
|
56
|
-
});
|
|
57
|
-
}
|
|
58
|
-
});
|
|
7
|
+
const _feature = module$1.default;
|
|
59
8
|
|
|
60
|
-
exports.
|
|
61
|
-
exports.default = alpha;
|
|
9
|
+
exports.default = _feature;
|
|
62
10
|
//# sourceMappingURL=alpha.cjs.js.map
|
package/dist/alpha.cjs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"alpha.cjs.js","sources":["../src/alpha.ts"],"sourcesContent":["/*\n * Copyright
|
|
1
|
+
{"version":3,"file":"alpha.cjs.js","sources":["../src/alpha.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 { default as feature } from './module';\n\n/** @alpha */\nconst _feature = feature;\nexport default _feature;\n"],"names":["feature"],"mappings":";;;;;;AAmBA,MAAM,QAAW,GAAAA;;;;"}
|
package/dist/alpha.d.ts
CHANGED
|
@@ -1,29 +1,6 @@
|
|
|
1
1
|
import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
|
|
2
|
-
import { CatalogCollatorEntityTransformer } from '@backstage/plugin-search-backend-module-catalog';
|
|
3
2
|
|
|
4
|
-
/**
|
|
5
|
-
|
|
6
|
-
*
|
|
7
|
-
* @alpha
|
|
8
|
-
*/
|
|
9
|
-
type CatalogCollatorExtensionPoint = {
|
|
10
|
-
/**
|
|
11
|
-
* Allows you to customize how entities are shaped into documents.
|
|
12
|
-
*/
|
|
13
|
-
setEntityTransformer(transformer: CatalogCollatorEntityTransformer): void;
|
|
14
|
-
};
|
|
15
|
-
/**
|
|
16
|
-
* Extension point for customizing how catalog entities are shaped into
|
|
17
|
-
* documents for the search backend.
|
|
18
|
-
*
|
|
19
|
-
* @alpha
|
|
20
|
-
*/
|
|
21
|
-
declare const catalogCollatorExtensionPoint: _backstage_backend_plugin_api.ExtensionPoint<CatalogCollatorExtensionPoint>;
|
|
22
|
-
/**
|
|
23
|
-
* Search backend module for the Catalog index.
|
|
24
|
-
*
|
|
25
|
-
* @alpha
|
|
26
|
-
*/
|
|
27
|
-
declare const _default: _backstage_backend_plugin_api.BackendFeature;
|
|
3
|
+
/** @alpha */
|
|
4
|
+
declare const _feature: _backstage_backend_plugin_api.BackendFeature;
|
|
28
5
|
|
|
29
|
-
export {
|
|
6
|
+
export { _feature as default };
|
package/dist/index.cjs.js
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var module$1 = require('./module.cjs.js');
|
|
3
6
|
var DefaultCatalogCollatorFactory = require('./collators/DefaultCatalogCollatorFactory.cjs.js');
|
|
4
7
|
var defaultCatalogCollatorEntityTransformer = require('./collators/defaultCatalogCollatorEntityTransformer.cjs.js');
|
|
5
8
|
|
|
6
9
|
|
|
7
10
|
|
|
11
|
+
exports.catalogCollatorExtensionPoint = module$1.catalogCollatorExtensionPoint;
|
|
12
|
+
exports.default = module$1.default;
|
|
8
13
|
exports.DefaultCatalogCollatorFactory = DefaultCatalogCollatorFactory.DefaultCatalogCollatorFactory;
|
|
9
14
|
exports.defaultCatalogCollatorEntityTransformer = defaultCatalogCollatorEntityTransformer.defaultCatalogCollatorEntityTransformer;
|
|
10
15
|
//# sourceMappingURL=index.cjs.js.map
|
package/dist/index.cjs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.cjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
+
import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
|
|
3
|
+
import { AuthService, DiscoveryService } from '@backstage/backend-plugin-api';
|
|
4
|
+
import { CatalogCollatorEntityTransformer as CatalogCollatorEntityTransformer$1 } from '@backstage/plugin-search-backend-module-catalog';
|
|
2
5
|
import { TokenManager } from '@backstage/backend-common';
|
|
3
6
|
import { GetEntitiesRequest, CatalogApi } from '@backstage/catalog-client';
|
|
4
7
|
import { Config } from '@backstage/config';
|
|
@@ -7,7 +10,31 @@ import { DocumentCollatorFactory } from '@backstage/plugin-search-common';
|
|
|
7
10
|
import { Readable } from 'stream';
|
|
8
11
|
import { Entity } from '@backstage/catalog-model';
|
|
9
12
|
import { CatalogEntityDocument } from '@backstage/plugin-catalog-common';
|
|
10
|
-
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Options for {@link catalogCollatorExtensionPoint}.
|
|
16
|
+
*
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
type CatalogCollatorExtensionPoint = {
|
|
20
|
+
/**
|
|
21
|
+
* Allows you to customize how entities are shaped into documents.
|
|
22
|
+
*/
|
|
23
|
+
setEntityTransformer(transformer: CatalogCollatorEntityTransformer$1): void;
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* Extension point for customizing how catalog entities are shaped into
|
|
27
|
+
* documents for the search backend.
|
|
28
|
+
*
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
declare const catalogCollatorExtensionPoint: _backstage_backend_plugin_api.ExtensionPoint<CatalogCollatorExtensionPoint>;
|
|
32
|
+
/**
|
|
33
|
+
* Search backend module for the Catalog index.
|
|
34
|
+
*
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
declare const _default: _backstage_backend_plugin_api.BackendFeature;
|
|
11
38
|
|
|
12
39
|
/** @public */
|
|
13
40
|
type CatalogCollatorEntityTransformer = (entity: Entity) => Omit<CatalogEntityDocument, 'location' | 'authorization'>;
|
|
@@ -63,4 +90,4 @@ declare class DefaultCatalogCollatorFactory implements DocumentCollatorFactory {
|
|
|
63
90
|
/** @public */
|
|
64
91
|
declare const defaultCatalogCollatorEntityTransformer: CatalogCollatorEntityTransformer;
|
|
65
92
|
|
|
66
|
-
export { type CatalogCollatorEntityTransformer, DefaultCatalogCollatorFactory, type DefaultCatalogCollatorFactoryOptions, defaultCatalogCollatorEntityTransformer };
|
|
93
|
+
export { type CatalogCollatorEntityTransformer, type CatalogCollatorExtensionPoint, DefaultCatalogCollatorFactory, type DefaultCatalogCollatorFactoryOptions, catalogCollatorExtensionPoint, _default as default, defaultCatalogCollatorEntityTransformer };
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var backendPluginApi = require('@backstage/backend-plugin-api');
|
|
6
|
+
var alpha$1 = require('@backstage/plugin-catalog-node/alpha');
|
|
7
|
+
var pluginSearchBackendModuleCatalog = require('@backstage/plugin-search-backend-module-catalog');
|
|
8
|
+
var alpha = require('@backstage/plugin-search-backend-node/alpha');
|
|
9
|
+
var config = require('./collators/config.cjs.js');
|
|
10
|
+
|
|
11
|
+
const catalogCollatorExtensionPoint = backendPluginApi.createExtensionPoint({
|
|
12
|
+
id: "search.catalogCollator.extension"
|
|
13
|
+
});
|
|
14
|
+
var feature = backendPluginApi.createBackendModule({
|
|
15
|
+
pluginId: "search",
|
|
16
|
+
moduleId: "catalog-collator",
|
|
17
|
+
register(env) {
|
|
18
|
+
let entityTransformer;
|
|
19
|
+
env.registerExtensionPoint(catalogCollatorExtensionPoint, {
|
|
20
|
+
setEntityTransformer(transformer) {
|
|
21
|
+
if (entityTransformer) {
|
|
22
|
+
throw new Error("setEntityTransformer can only be called once");
|
|
23
|
+
}
|
|
24
|
+
entityTransformer = transformer;
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
env.registerInit({
|
|
28
|
+
deps: {
|
|
29
|
+
auth: backendPluginApi.coreServices.auth,
|
|
30
|
+
config: backendPluginApi.coreServices.rootConfig,
|
|
31
|
+
discovery: backendPluginApi.coreServices.discovery,
|
|
32
|
+
scheduler: backendPluginApi.coreServices.scheduler,
|
|
33
|
+
indexRegistry: alpha.searchIndexRegistryExtensionPoint,
|
|
34
|
+
catalog: alpha$1.catalogServiceRef
|
|
35
|
+
},
|
|
36
|
+
async init({
|
|
37
|
+
auth,
|
|
38
|
+
config: config$1,
|
|
39
|
+
discovery,
|
|
40
|
+
scheduler,
|
|
41
|
+
indexRegistry,
|
|
42
|
+
catalog
|
|
43
|
+
}) {
|
|
44
|
+
indexRegistry.addCollator({
|
|
45
|
+
schedule: scheduler.createScheduledTaskRunner(
|
|
46
|
+
config.readScheduleConfigOptions(config$1)
|
|
47
|
+
),
|
|
48
|
+
factory: pluginSearchBackendModuleCatalog.DefaultCatalogCollatorFactory.fromConfig(config$1, {
|
|
49
|
+
auth,
|
|
50
|
+
entityTransformer,
|
|
51
|
+
discovery,
|
|
52
|
+
catalogClient: catalog
|
|
53
|
+
})
|
|
54
|
+
});
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
});
|
|
59
|
+
|
|
60
|
+
exports.catalogCollatorExtensionPoint = catalogCollatorExtensionPoint;
|
|
61
|
+
exports.default = feature;
|
|
62
|
+
//# sourceMappingURL=module.cjs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"module.cjs.js","sources":["../src/module.ts"],"sourcesContent":["/*\n * Copyright 2023 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\n/**\n * @packageDocumentation\n * A module for the search backend that exports Catalog modules.\n */\n\nimport {\n coreServices,\n createBackendModule,\n createExtensionPoint,\n} from '@backstage/backend-plugin-api';\nimport { catalogServiceRef } from '@backstage/plugin-catalog-node/alpha';\nimport {\n CatalogCollatorEntityTransformer,\n DefaultCatalogCollatorFactory,\n} from '@backstage/plugin-search-backend-module-catalog';\nimport { searchIndexRegistryExtensionPoint } from '@backstage/plugin-search-backend-node/alpha';\nimport { readScheduleConfigOptions } from './collators/config';\n\n/**\n * Options for {@link catalogCollatorExtensionPoint}.\n *\n * @public\n */\nexport type CatalogCollatorExtensionPoint = {\n /**\n * Allows you to customize how entities are shaped into documents.\n */\n setEntityTransformer(transformer: CatalogCollatorEntityTransformer): void;\n};\n\n/**\n * Extension point for customizing how catalog entities are shaped into\n * documents for the search backend.\n *\n * @public\n */\nexport const catalogCollatorExtensionPoint =\n createExtensionPoint<CatalogCollatorExtensionPoint>({\n id: 'search.catalogCollator.extension',\n });\n\n/**\n * Search backend module for the Catalog index.\n *\n * @public\n */\nexport default createBackendModule({\n pluginId: 'search',\n moduleId: 'catalog-collator',\n register(env) {\n let entityTransformer: CatalogCollatorEntityTransformer | undefined;\n\n env.registerExtensionPoint(catalogCollatorExtensionPoint, {\n setEntityTransformer(transformer) {\n if (entityTransformer) {\n throw new Error('setEntityTransformer can only be called once');\n }\n entityTransformer = transformer;\n },\n });\n\n env.registerInit({\n deps: {\n auth: coreServices.auth,\n config: coreServices.rootConfig,\n discovery: coreServices.discovery,\n scheduler: coreServices.scheduler,\n indexRegistry: searchIndexRegistryExtensionPoint,\n catalog: catalogServiceRef,\n },\n async init({\n auth,\n config,\n discovery,\n scheduler,\n indexRegistry,\n catalog,\n }) {\n indexRegistry.addCollator({\n schedule: scheduler.createScheduledTaskRunner(\n readScheduleConfigOptions(config),\n ),\n factory: DefaultCatalogCollatorFactory.fromConfig(config, {\n auth,\n entityTransformer,\n discovery,\n catalogClient: catalog,\n }),\n });\n },\n });\n },\n});\n"],"names":["createExtensionPoint","createBackendModule","coreServices","searchIndexRegistryExtensionPoint","catalogServiceRef","config","readScheduleConfigOptions","DefaultCatalogCollatorFactory"],"mappings":";;;;;;;;;;AAoDO,MAAM,gCACXA,qCAAoD,CAAA;AAAA,EAClD,EAAI,EAAA,kCAAA;AACN,CAAC,EAAA;AAOH,cAAeC,oCAAoB,CAAA;AAAA,EACjC,QAAU,EAAA,QAAA;AAAA,EACV,QAAU,EAAA,kBAAA;AAAA,EACV,SAAS,GAAK,EAAA;AACZ,IAAI,IAAA,iBAAA,CAAA;AAEJ,IAAA,GAAA,CAAI,uBAAuB,6BAA+B,EAAA;AAAA,MACxD,qBAAqB,WAAa,EAAA;AAChC,QAAA,IAAI,iBAAmB,EAAA;AACrB,UAAM,MAAA,IAAI,MAAM,8CAA8C,CAAA,CAAA;AAAA,SAChE;AACA,QAAoB,iBAAA,GAAA,WAAA,CAAA;AAAA,OACtB;AAAA,KACD,CAAA,CAAA;AAED,IAAA,GAAA,CAAI,YAAa,CAAA;AAAA,MACf,IAAM,EAAA;AAAA,QACJ,MAAMC,6BAAa,CAAA,IAAA;AAAA,QACnB,QAAQA,6BAAa,CAAA,UAAA;AAAA,QACrB,WAAWA,6BAAa,CAAA,SAAA;AAAA,QACxB,WAAWA,6BAAa,CAAA,SAAA;AAAA,QACxB,aAAe,EAAAC,uCAAA;AAAA,QACf,OAAS,EAAAC,yBAAA;AAAA,OACX;AAAA,MACA,MAAM,IAAK,CAAA;AAAA,QACT,IAAA;AAAA,gBACAC,QAAA;AAAA,QACA,SAAA;AAAA,QACA,SAAA;AAAA,QACA,aAAA;AAAA,QACA,OAAA;AAAA,OACC,EAAA;AACD,QAAA,aAAA,CAAc,WAAY,CAAA;AAAA,UACxB,UAAU,SAAU,CAAA,yBAAA;AAAA,YAClBC,iCAA0BD,QAAM,CAAA;AAAA,WAClC;AAAA,UACA,OAAA,EAASE,8DAA8B,CAAA,UAAA,CAAWF,QAAQ,EAAA;AAAA,YACxD,IAAA;AAAA,YACA,iBAAA;AAAA,YACA,SAAA;AAAA,YACA,aAAe,EAAA,OAAA;AAAA,WAChB,CAAA;AAAA,SACF,CAAA,CAAA;AAAA,OACH;AAAA,KACD,CAAA,CAAA;AAAA,GACH;AACF,CAAC,CAAA;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-search-backend-module-catalog",
|
|
3
|
-
"version": "0.2.3
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "A module for the search backend that exports catalog modules",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"license": "Apache-2.0",
|
|
20
20
|
"exports": {
|
|
21
21
|
".": {
|
|
22
|
+
"backstage": "@backstage/BackendFeature",
|
|
22
23
|
"require": "./dist/index.cjs.js",
|
|
23
24
|
"types": "./dist/index.d.ts",
|
|
24
25
|
"default": "./dist/index.cjs.js"
|
|
@@ -49,21 +50,21 @@
|
|
|
49
50
|
},
|
|
50
51
|
"dependencies": {
|
|
51
52
|
"@backstage/backend-common": "^0.25.0",
|
|
52
|
-
"@backstage/backend-plugin-api": "1.0.1
|
|
53
|
-
"@backstage/catalog-client": "1.7.1
|
|
54
|
-
"@backstage/catalog-model": "1.7.0",
|
|
55
|
-
"@backstage/config": "1.2.0",
|
|
56
|
-
"@backstage/errors": "1.2.4",
|
|
57
|
-
"@backstage/plugin-catalog-common": "1.1.0",
|
|
58
|
-
"@backstage/plugin-catalog-node": "1.13.1
|
|
59
|
-
"@backstage/plugin-permission-common": "0.8.1",
|
|
60
|
-
"@backstage/plugin-search-backend-node": "1.3.3
|
|
61
|
-
"@backstage/plugin-search-common": "1.2.14"
|
|
53
|
+
"@backstage/backend-plugin-api": "^1.0.1",
|
|
54
|
+
"@backstage/catalog-client": "^1.7.1",
|
|
55
|
+
"@backstage/catalog-model": "^1.7.0",
|
|
56
|
+
"@backstage/config": "^1.2.0",
|
|
57
|
+
"@backstage/errors": "^1.2.4",
|
|
58
|
+
"@backstage/plugin-catalog-common": "^1.1.0",
|
|
59
|
+
"@backstage/plugin-catalog-node": "^1.13.1",
|
|
60
|
+
"@backstage/plugin-permission-common": "^0.8.1",
|
|
61
|
+
"@backstage/plugin-search-backend-node": "^1.3.3",
|
|
62
|
+
"@backstage/plugin-search-common": "^1.2.14"
|
|
62
63
|
},
|
|
63
64
|
"devDependencies": {
|
|
64
65
|
"@backstage/backend-common": "^0.25.0",
|
|
65
|
-
"@backstage/backend-test-utils": "1.0.1
|
|
66
|
-
"@backstage/cli": "0.28.0
|
|
66
|
+
"@backstage/backend-test-utils": "^1.0.1",
|
|
67
|
+
"@backstage/cli": "^0.28.0",
|
|
67
68
|
"msw": "^1.0.0"
|
|
68
69
|
},
|
|
69
70
|
"configSchema": "config.d.ts"
|