@backstage/plugin-search-backend-module-elasticsearch 1.5.7-next.2 → 1.6.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/CHANGELOG.md +26 -0
- package/alpha/package.json +1 -1
- package/dist/alpha.cjs.js +3 -49
- package/dist/alpha.cjs.js.map +1 -1
- package/dist/alpha.d.ts +2 -17
- package/dist/index.cjs.js +5 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +21 -2
- package/dist/module.cjs.js +56 -0
- package/dist/module.cjs.js.map +1 -0
- package/package.json +9 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @backstage/plugin-search-backend-module-elasticsearch
|
|
2
2
|
|
|
3
|
+
## 1.6.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-search-backend-node@1.3.4
|
|
9
|
+
- @backstage/backend-plugin-api@1.0.1
|
|
10
|
+
|
|
11
|
+
## 1.6.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- 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.
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- d78b07c: Align the configuration schema with the docs and actual behavior of the code
|
|
20
|
+
- 4b60e0c: Remove extension points from `/alpha` export, they're available from the main package already
|
|
21
|
+
- 094eaa3: Remove references to in-repo backend-common
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/plugin-search-backend-node@1.3.3
|
|
24
|
+
- @backstage/backend-plugin-api@1.0.1
|
|
25
|
+
- @backstage/config@1.2.0
|
|
26
|
+
- @backstage/integration-aws-node@0.1.12
|
|
27
|
+
- @backstage/plugin-search-common@1.2.14
|
|
28
|
+
|
|
3
29
|
## 1.5.7-next.2
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/alpha.cjs.js
CHANGED
|
@@ -2,55 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
var alpha$1 = require('@backstage/plugin-search-backend-node/alpha');
|
|
7
|
-
var pluginSearchBackendModuleElasticsearch = require('@backstage/plugin-search-backend-module-elasticsearch');
|
|
5
|
+
var module$1 = require('./module.cjs.js');
|
|
8
6
|
|
|
9
|
-
const
|
|
10
|
-
id: "search.elasticsearchEngine.translator"
|
|
11
|
-
});
|
|
12
|
-
var alpha = backendPluginApi.createBackendModule({
|
|
13
|
-
pluginId: "search",
|
|
14
|
-
moduleId: "elasticsearch-engine",
|
|
15
|
-
register(env) {
|
|
16
|
-
let translator;
|
|
17
|
-
env.registerExtensionPoint(elasticsearchTranslatorExtensionPoint, {
|
|
18
|
-
setTranslator(newTranslator) {
|
|
19
|
-
if (translator) {
|
|
20
|
-
throw new Error(
|
|
21
|
-
"ElasticSearch query translator may only be set once"
|
|
22
|
-
);
|
|
23
|
-
}
|
|
24
|
-
translator = newTranslator;
|
|
25
|
-
}
|
|
26
|
-
});
|
|
27
|
-
env.registerInit({
|
|
28
|
-
deps: {
|
|
29
|
-
searchEngineRegistry: alpha$1.searchEngineRegistryExtensionPoint,
|
|
30
|
-
logger: backendPluginApi.coreServices.logger,
|
|
31
|
-
config: backendPluginApi.coreServices.rootConfig
|
|
32
|
-
},
|
|
33
|
-
async init({ searchEngineRegistry, logger, config }) {
|
|
34
|
-
const baseKey = "search.elasticsearch";
|
|
35
|
-
const baseConfig = config.getOptional(baseKey);
|
|
36
|
-
if (!baseConfig) {
|
|
37
|
-
logger.warn(
|
|
38
|
-
'No configuration found under "search.elasticsearch" key. Skipping search engine inititalization.'
|
|
39
|
-
);
|
|
40
|
-
return;
|
|
41
|
-
}
|
|
42
|
-
searchEngineRegistry.setSearchEngine(
|
|
43
|
-
await pluginSearchBackendModuleElasticsearch.ElasticSearchSearchEngine.fromConfig({
|
|
44
|
-
logger,
|
|
45
|
-
config,
|
|
46
|
-
translator
|
|
47
|
-
})
|
|
48
|
-
);
|
|
49
|
-
}
|
|
50
|
-
});
|
|
51
|
-
}
|
|
52
|
-
});
|
|
7
|
+
const _feature = module$1.default;
|
|
53
8
|
|
|
54
|
-
exports.default =
|
|
55
|
-
exports.elasticsearchTranslatorExtensionPoint = elasticsearchTranslatorExtensionPoint;
|
|
9
|
+
exports.default = _feature;
|
|
56
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,21 +1,6 @@
|
|
|
1
1
|
import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
|
|
2
|
-
import { ElasticSearchQueryTranslator } from '@backstage/plugin-search-backend-module-elasticsearch';
|
|
3
2
|
|
|
4
3
|
/** @alpha */
|
|
5
|
-
|
|
6
|
-
setTranslator(translator: ElasticSearchQueryTranslator): void;
|
|
7
|
-
}
|
|
8
|
-
/**
|
|
9
|
-
* Extension point used to customize the ElasticSearch query translator.
|
|
10
|
-
*
|
|
11
|
-
* @alpha
|
|
12
|
-
*/
|
|
13
|
-
declare const elasticsearchTranslatorExtensionPoint: _backstage_backend_plugin_api.ExtensionPoint<ElasticSearchQueryTranslatorExtensionPoint>;
|
|
14
|
-
/**
|
|
15
|
-
* Search backend module for the Elasticsearch engine.
|
|
16
|
-
*
|
|
17
|
-
* @alpha
|
|
18
|
-
*/
|
|
19
|
-
declare const _default: _backstage_backend_plugin_api.BackendFeature;
|
|
4
|
+
declare const _feature: _backstage_backend_plugin_api.BackendFeature;
|
|
20
5
|
|
|
21
|
-
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 ElasticSearchSearchEngine = require('./engines/ElasticSearchSearchEngine.cjs.js');
|
|
4
7
|
var ElasticSearchClientOptions = require('./engines/ElasticSearchClientOptions.cjs.js');
|
|
5
8
|
|
|
6
9
|
|
|
7
10
|
|
|
11
|
+
exports.default = module$1.default;
|
|
12
|
+
exports.elasticsearchTranslatorExtensionPoint = module$1.elasticsearchTranslatorExtensionPoint;
|
|
8
13
|
exports.ElasticSearchSearchEngine = ElasticSearchSearchEngine.ElasticSearchSearchEngine;
|
|
9
14
|
exports.decodeElasticSearchPageCursor = ElasticSearchSearchEngine.decodePageCursor;
|
|
10
15
|
exports.isOpenSearchCompatible = ElasticSearchClientOptions.isOpenSearchCompatible;
|
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 { LoggerService } from '@backstage/backend-plugin-api';
|
|
4
|
+
import { ElasticSearchQueryTranslator as ElasticSearchQueryTranslator$1 } from '@backstage/plugin-search-backend-module-elasticsearch';
|
|
2
5
|
import { IndexableDocument, SearchQuery, IndexableResultSet } from '@backstage/plugin-search-common';
|
|
3
6
|
import { BatchSearchEngineIndexer, SearchEngine } from '@backstage/plugin-search-backend-node';
|
|
4
7
|
import { Config } from '@backstage/config';
|
|
@@ -9,7 +12,23 @@ import * as _elastic_elasticsearch from '@elastic/elasticsearch';
|
|
|
9
12
|
import * as _opensearch_project_opensearch_lib_Transport from '@opensearch-project/opensearch/lib/Transport';
|
|
10
13
|
import * as _opensearch_project_opensearch from '@opensearch-project/opensearch';
|
|
11
14
|
import { Readable } from 'stream';
|
|
12
|
-
|
|
15
|
+
|
|
16
|
+
/** @public */
|
|
17
|
+
interface ElasticSearchQueryTranslatorExtensionPoint {
|
|
18
|
+
setTranslator(translator: ElasticSearchQueryTranslator$1): void;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Extension point used to customize the ElasticSearch query translator.
|
|
22
|
+
*
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
declare const elasticsearchTranslatorExtensionPoint: _backstage_backend_plugin_api.ExtensionPoint<ElasticSearchQueryTranslatorExtensionPoint>;
|
|
26
|
+
/**
|
|
27
|
+
* Search backend module for the Elasticsearch engine.
|
|
28
|
+
*
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
declare const _default: _backstage_backend_plugin_api.BackendFeature;
|
|
13
32
|
|
|
14
33
|
/**
|
|
15
34
|
* Typeguard to differentiate ElasticSearch client options which are compatible
|
|
@@ -458,4 +477,4 @@ declare function decodePageCursor(pageCursor?: string): {
|
|
|
458
477
|
page: number;
|
|
459
478
|
};
|
|
460
479
|
|
|
461
|
-
export { type BaseElasticSearchClientOptions, type ElasticSearchAgentOptions, type ElasticSearchAliasAction, type ElasticSearchAuth, type ElasticSearchClientOptions, ElasticSearchClientWrapper, type ElasticSearchConcreteQuery, type ElasticSearchConnectionConstructor, type ElasticSearchCustomIndexTemplate, type ElasticSearchCustomIndexTemplateBody, type ElasticSearchElasticSearchClientOptions, type ElasticSearchHighlightConfig, type ElasticSearchHighlightOptions, type ElasticSearchIndexAction, type ElasticSearchNodeOptions, type ElasticSearchOptions, type ElasticSearchQueryTranslator, type ElasticSearchQueryTranslatorOptions, ElasticSearchSearchEngine, ElasticSearchSearchEngineIndexer, type ElasticSearchSearchEngineIndexerOptions, type ElasticSearchTransportConstructor, type OpenSearchAuth, type OpenSearchConnectionConstructor, type OpenSearchElasticSearchClientOptions, type OpenSearchNodeOptions, decodePageCursor as decodeElasticSearchPageCursor, isOpenSearchCompatible };
|
|
480
|
+
export { type BaseElasticSearchClientOptions, type ElasticSearchAgentOptions, type ElasticSearchAliasAction, type ElasticSearchAuth, type ElasticSearchClientOptions, ElasticSearchClientWrapper, type ElasticSearchConcreteQuery, type ElasticSearchConnectionConstructor, type ElasticSearchCustomIndexTemplate, type ElasticSearchCustomIndexTemplateBody, type ElasticSearchElasticSearchClientOptions, type ElasticSearchHighlightConfig, type ElasticSearchHighlightOptions, type ElasticSearchIndexAction, type ElasticSearchNodeOptions, type ElasticSearchOptions, type ElasticSearchQueryTranslator, type ElasticSearchQueryTranslatorExtensionPoint, type ElasticSearchQueryTranslatorOptions, ElasticSearchSearchEngine, ElasticSearchSearchEngineIndexer, type ElasticSearchSearchEngineIndexerOptions, type ElasticSearchTransportConstructor, type OpenSearchAuth, type OpenSearchConnectionConstructor, type OpenSearchElasticSearchClientOptions, type OpenSearchNodeOptions, decodePageCursor as decodeElasticSearchPageCursor, _default as default, elasticsearchTranslatorExtensionPoint, isOpenSearchCompatible };
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var backendPluginApi = require('@backstage/backend-plugin-api');
|
|
6
|
+
var alpha = require('@backstage/plugin-search-backend-node/alpha');
|
|
7
|
+
var pluginSearchBackendModuleElasticsearch = require('@backstage/plugin-search-backend-module-elasticsearch');
|
|
8
|
+
|
|
9
|
+
const elasticsearchTranslatorExtensionPoint = backendPluginApi.createExtensionPoint({
|
|
10
|
+
id: "search.elasticsearchEngine.translator"
|
|
11
|
+
});
|
|
12
|
+
var feature = backendPluginApi.createBackendModule({
|
|
13
|
+
pluginId: "search",
|
|
14
|
+
moduleId: "elasticsearch-engine",
|
|
15
|
+
register(env) {
|
|
16
|
+
let translator;
|
|
17
|
+
env.registerExtensionPoint(elasticsearchTranslatorExtensionPoint, {
|
|
18
|
+
setTranslator(newTranslator) {
|
|
19
|
+
if (translator) {
|
|
20
|
+
throw new Error(
|
|
21
|
+
"ElasticSearch query translator may only be set once"
|
|
22
|
+
);
|
|
23
|
+
}
|
|
24
|
+
translator = newTranslator;
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
env.registerInit({
|
|
28
|
+
deps: {
|
|
29
|
+
searchEngineRegistry: alpha.searchEngineRegistryExtensionPoint,
|
|
30
|
+
logger: backendPluginApi.coreServices.logger,
|
|
31
|
+
config: backendPluginApi.coreServices.rootConfig
|
|
32
|
+
},
|
|
33
|
+
async init({ searchEngineRegistry, logger, config }) {
|
|
34
|
+
const baseKey = "search.elasticsearch";
|
|
35
|
+
const baseConfig = config.getOptional(baseKey);
|
|
36
|
+
if (!baseConfig) {
|
|
37
|
+
logger.warn(
|
|
38
|
+
'No configuration found under "search.elasticsearch" key. Skipping search engine inititalization.'
|
|
39
|
+
);
|
|
40
|
+
return;
|
|
41
|
+
}
|
|
42
|
+
searchEngineRegistry.setSearchEngine(
|
|
43
|
+
await pluginSearchBackendModuleElasticsearch.ElasticSearchSearchEngine.fromConfig({
|
|
44
|
+
logger,
|
|
45
|
+
config,
|
|
46
|
+
translator
|
|
47
|
+
})
|
|
48
|
+
);
|
|
49
|
+
}
|
|
50
|
+
});
|
|
51
|
+
}
|
|
52
|
+
});
|
|
53
|
+
|
|
54
|
+
exports.default = feature;
|
|
55
|
+
exports.elasticsearchTranslatorExtensionPoint = elasticsearchTranslatorExtensionPoint;
|
|
56
|
+
//# 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 */\nimport {\n coreServices,\n createBackendModule,\n createExtensionPoint,\n} from '@backstage/backend-plugin-api';\nimport { searchEngineRegistryExtensionPoint } from '@backstage/plugin-search-backend-node/alpha';\nimport {\n ElasticSearchQueryTranslator,\n ElasticSearchSearchEngine,\n} from '@backstage/plugin-search-backend-module-elasticsearch';\n\n/** @public */\nexport interface ElasticSearchQueryTranslatorExtensionPoint {\n setTranslator(translator: ElasticSearchQueryTranslator): void;\n}\n\n/**\n * Extension point used to customize the ElasticSearch query translator.\n *\n * @public\n */\nexport const elasticsearchTranslatorExtensionPoint =\n createExtensionPoint<ElasticSearchQueryTranslatorExtensionPoint>({\n id: 'search.elasticsearchEngine.translator',\n });\n\n/**\n * Search backend module for the Elasticsearch engine.\n *\n * @public\n */\nexport default createBackendModule({\n pluginId: 'search',\n moduleId: 'elasticsearch-engine',\n register(env) {\n let translator: ElasticSearchQueryTranslator | undefined;\n\n env.registerExtensionPoint(elasticsearchTranslatorExtensionPoint, {\n setTranslator(newTranslator) {\n if (translator) {\n throw new Error(\n 'ElasticSearch query translator may only be set once',\n );\n }\n translator = newTranslator;\n },\n });\n\n env.registerInit({\n deps: {\n searchEngineRegistry: searchEngineRegistryExtensionPoint,\n logger: coreServices.logger,\n config: coreServices.rootConfig,\n },\n async init({ searchEngineRegistry, logger, config }) {\n const baseKey = 'search.elasticsearch';\n const baseConfig = config.getOptional(baseKey);\n if (!baseConfig) {\n logger.warn(\n 'No configuration found under \"search.elasticsearch\" key. Skipping search engine inititalization.',\n );\n return;\n }\n\n searchEngineRegistry.setSearchEngine(\n await ElasticSearchSearchEngine.fromConfig({\n logger,\n config,\n translator,\n }),\n );\n },\n });\n },\n});\n"],"names":["createExtensionPoint","createBackendModule","searchEngineRegistryExtensionPoint","coreServices","ElasticSearchSearchEngine"],"mappings":";;;;;;;;AAoCO,MAAM,wCACXA,qCAAiE,CAAA;AAAA,EAC/D,EAAI,EAAA,uCAAA;AACN,CAAC,EAAA;AAOH,cAAeC,oCAAoB,CAAA;AAAA,EACjC,QAAU,EAAA,QAAA;AAAA,EACV,QAAU,EAAA,sBAAA;AAAA,EACV,SAAS,GAAK,EAAA;AACZ,IAAI,IAAA,UAAA,CAAA;AAEJ,IAAA,GAAA,CAAI,uBAAuB,qCAAuC,EAAA;AAAA,MAChE,cAAc,aAAe,EAAA;AAC3B,QAAA,IAAI,UAAY,EAAA;AACd,UAAA,MAAM,IAAI,KAAA;AAAA,YACR,qDAAA;AAAA,WACF,CAAA;AAAA,SACF;AACA,QAAa,UAAA,GAAA,aAAA,CAAA;AAAA,OACf;AAAA,KACD,CAAA,CAAA;AAED,IAAA,GAAA,CAAI,YAAa,CAAA;AAAA,MACf,IAAM,EAAA;AAAA,QACJ,oBAAsB,EAAAC,wCAAA;AAAA,QACtB,QAAQC,6BAAa,CAAA,MAAA;AAAA,QACrB,QAAQA,6BAAa,CAAA,UAAA;AAAA,OACvB;AAAA,MACA,MAAM,IAAK,CAAA,EAAE,oBAAsB,EAAA,MAAA,EAAQ,QAAU,EAAA;AACnD,QAAA,MAAM,OAAU,GAAA,sBAAA,CAAA;AAChB,QAAM,MAAA,UAAA,GAAa,MAAO,CAAA,WAAA,CAAY,OAAO,CAAA,CAAA;AAC7C,QAAA,IAAI,CAAC,UAAY,EAAA;AACf,UAAO,MAAA,CAAA,IAAA;AAAA,YACL,mGAAA;AAAA,WACF,CAAA;AACA,UAAA,OAAA;AAAA,SACF;AAEA,QAAqB,oBAAA,CAAA,eAAA;AAAA,UACnB,MAAMC,iEAA0B,UAAW,CAAA;AAAA,YACzC,MAAA;AAAA,YACA,MAAA;AAAA,YACA,UAAA;AAAA,WACD,CAAA;AAAA,SACH,CAAA;AAAA,OACF;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-elasticsearch",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"description": "A module for the search backend that implements search using ElasticSearch",
|
|
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"
|
|
@@ -48,11 +49,11 @@
|
|
|
48
49
|
"test": "backstage-cli package test"
|
|
49
50
|
},
|
|
50
51
|
"dependencies": {
|
|
51
|
-
"@backstage/backend-plugin-api": "1.0.1
|
|
52
|
-
"@backstage/config": "1.2.0",
|
|
53
|
-
"@backstage/integration-aws-node": "0.1.12",
|
|
54
|
-
"@backstage/plugin-search-backend-node": "1.3.
|
|
55
|
-
"@backstage/plugin-search-common": "1.2.14",
|
|
52
|
+
"@backstage/backend-plugin-api": "^1.0.1",
|
|
53
|
+
"@backstage/config": "^1.2.0",
|
|
54
|
+
"@backstage/integration-aws-node": "^0.1.12",
|
|
55
|
+
"@backstage/plugin-search-backend-node": "^1.3.4",
|
|
56
|
+
"@backstage/plugin-search-common": "^1.2.14",
|
|
56
57
|
"@elastic/elasticsearch": "^7.13.0",
|
|
57
58
|
"@opensearch-project/opensearch": "^2.2.1",
|
|
58
59
|
"aws4": "^1.12.0",
|
|
@@ -61,8 +62,8 @@
|
|
|
61
62
|
"uuid": "^9.0.0"
|
|
62
63
|
},
|
|
63
64
|
"devDependencies": {
|
|
64
|
-
"@backstage/backend-test-utils": "1.0.
|
|
65
|
-
"@backstage/cli": "0.28.0
|
|
65
|
+
"@backstage/backend-test-utils": "^1.0.2",
|
|
66
|
+
"@backstage/cli": "^0.28.0",
|
|
66
67
|
"@elastic/elasticsearch-mock": "^1.0.0",
|
|
67
68
|
"@short.io/opensearch-mock": "^0.3.1"
|
|
68
69
|
},
|