@noyrax/5d-database-plugin 0.1.1 → 0.1.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/out/api/index.d.ts +28 -0
- package/out/api/index.d.ts.map +1 -0
- package/out/api/index.js +42 -0
- package/out/api/index.js.map +1 -0
- package/package.json +6 -2
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Public API for @noyrax/5d-database-plugin
|
|
3
|
+
*
|
|
4
|
+
* This file exports all APIs that can be used from npm package installations.
|
|
5
|
+
*/
|
|
6
|
+
export { ModuleApi } from './module-api';
|
|
7
|
+
export { SymbolApi } from './symbol-api';
|
|
8
|
+
export { DependencyApi } from './dependency-api';
|
|
9
|
+
export { AdrApi } from './adr-api';
|
|
10
|
+
export { ChangeApi } from './change-api';
|
|
11
|
+
export { CrossDimensionApi } from './cross-dimension-api';
|
|
12
|
+
export { SemanticSearchApi } from './semantic-search-api';
|
|
13
|
+
export { SearchApi } from './search-api';
|
|
14
|
+
export { BootstrapApi } from './bootstrap-api';
|
|
15
|
+
export { SelfExplanationApi } from './self-explanation-api';
|
|
16
|
+
export { LearningPathApi } from './learning-path-api';
|
|
17
|
+
export { VectorApi } from './vector-api';
|
|
18
|
+
export { ContextBuilder } from './context-builder';
|
|
19
|
+
export { MultiDbManager, Dimension } from '../core/multi-db-manager';
|
|
20
|
+
export { IdMapper } from '../core/id-mapper';
|
|
21
|
+
export { DocsPathResolver } from '../core/docs-path-resolver';
|
|
22
|
+
export type { Module } from '../models/module';
|
|
23
|
+
export type { Symbol } from '../models/symbol';
|
|
24
|
+
export type { Dependency } from '../models/dependency';
|
|
25
|
+
export type { Adr } from '../models/adr';
|
|
26
|
+
export type { ChangeReport } from '../models/change';
|
|
27
|
+
export type { EntityReference } from '../models/entity-reference';
|
|
28
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/api/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AACzC,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AACzC,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AACjD,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AACnC,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AACzC,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAC1D,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAC1D,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AACzC,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAC5D,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AACtD,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AACzC,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAGnD,OAAO,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAC7C,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAG9D,YAAY,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAC/C,YAAY,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAC/C,YAAY,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AACvD,YAAY,EAAE,GAAG,EAAE,MAAM,eAAe,CAAC;AACzC,YAAY,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AACrD,YAAY,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAC"}
|
package/out/api/index.js
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Public API for @noyrax/5d-database-plugin
|
|
4
|
+
*
|
|
5
|
+
* This file exports all APIs that can be used from npm package installations.
|
|
6
|
+
*/
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.DocsPathResolver = exports.IdMapper = exports.MultiDbManager = exports.ContextBuilder = exports.VectorApi = exports.LearningPathApi = exports.SelfExplanationApi = exports.BootstrapApi = exports.SearchApi = exports.SemanticSearchApi = exports.CrossDimensionApi = exports.ChangeApi = exports.AdrApi = exports.DependencyApi = exports.SymbolApi = exports.ModuleApi = void 0;
|
|
9
|
+
var module_api_1 = require("./module-api");
|
|
10
|
+
Object.defineProperty(exports, "ModuleApi", { enumerable: true, get: function () { return module_api_1.ModuleApi; } });
|
|
11
|
+
var symbol_api_1 = require("./symbol-api");
|
|
12
|
+
Object.defineProperty(exports, "SymbolApi", { enumerable: true, get: function () { return symbol_api_1.SymbolApi; } });
|
|
13
|
+
var dependency_api_1 = require("./dependency-api");
|
|
14
|
+
Object.defineProperty(exports, "DependencyApi", { enumerable: true, get: function () { return dependency_api_1.DependencyApi; } });
|
|
15
|
+
var adr_api_1 = require("./adr-api");
|
|
16
|
+
Object.defineProperty(exports, "AdrApi", { enumerable: true, get: function () { return adr_api_1.AdrApi; } });
|
|
17
|
+
var change_api_1 = require("./change-api");
|
|
18
|
+
Object.defineProperty(exports, "ChangeApi", { enumerable: true, get: function () { return change_api_1.ChangeApi; } });
|
|
19
|
+
var cross_dimension_api_1 = require("./cross-dimension-api");
|
|
20
|
+
Object.defineProperty(exports, "CrossDimensionApi", { enumerable: true, get: function () { return cross_dimension_api_1.CrossDimensionApi; } });
|
|
21
|
+
var semantic_search_api_1 = require("./semantic-search-api");
|
|
22
|
+
Object.defineProperty(exports, "SemanticSearchApi", { enumerable: true, get: function () { return semantic_search_api_1.SemanticSearchApi; } });
|
|
23
|
+
var search_api_1 = require("./search-api");
|
|
24
|
+
Object.defineProperty(exports, "SearchApi", { enumerable: true, get: function () { return search_api_1.SearchApi; } });
|
|
25
|
+
var bootstrap_api_1 = require("./bootstrap-api");
|
|
26
|
+
Object.defineProperty(exports, "BootstrapApi", { enumerable: true, get: function () { return bootstrap_api_1.BootstrapApi; } });
|
|
27
|
+
var self_explanation_api_1 = require("./self-explanation-api");
|
|
28
|
+
Object.defineProperty(exports, "SelfExplanationApi", { enumerable: true, get: function () { return self_explanation_api_1.SelfExplanationApi; } });
|
|
29
|
+
var learning_path_api_1 = require("./learning-path-api");
|
|
30
|
+
Object.defineProperty(exports, "LearningPathApi", { enumerable: true, get: function () { return learning_path_api_1.LearningPathApi; } });
|
|
31
|
+
var vector_api_1 = require("./vector-api");
|
|
32
|
+
Object.defineProperty(exports, "VectorApi", { enumerable: true, get: function () { return vector_api_1.VectorApi; } });
|
|
33
|
+
var context_builder_1 = require("./context-builder");
|
|
34
|
+
Object.defineProperty(exports, "ContextBuilder", { enumerable: true, get: function () { return context_builder_1.ContextBuilder; } });
|
|
35
|
+
// Core classes needed for API initialization
|
|
36
|
+
var multi_db_manager_1 = require("../core/multi-db-manager");
|
|
37
|
+
Object.defineProperty(exports, "MultiDbManager", { enumerable: true, get: function () { return multi_db_manager_1.MultiDbManager; } });
|
|
38
|
+
var id_mapper_1 = require("../core/id-mapper");
|
|
39
|
+
Object.defineProperty(exports, "IdMapper", { enumerable: true, get: function () { return id_mapper_1.IdMapper; } });
|
|
40
|
+
var docs_path_resolver_1 = require("../core/docs-path-resolver");
|
|
41
|
+
Object.defineProperty(exports, "DocsPathResolver", { enumerable: true, get: function () { return docs_path_resolver_1.DocsPathResolver; } });
|
|
42
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/api/index.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAEH,2CAAyC;AAAhC,uGAAA,SAAS,OAAA;AAClB,2CAAyC;AAAhC,uGAAA,SAAS,OAAA;AAClB,mDAAiD;AAAxC,+GAAA,aAAa,OAAA;AACtB,qCAAmC;AAA1B,iGAAA,MAAM,OAAA;AACf,2CAAyC;AAAhC,uGAAA,SAAS,OAAA;AAClB,6DAA0D;AAAjD,wHAAA,iBAAiB,OAAA;AAC1B,6DAA0D;AAAjD,wHAAA,iBAAiB,OAAA;AAC1B,2CAAyC;AAAhC,uGAAA,SAAS,OAAA;AAClB,iDAA+C;AAAtC,6GAAA,YAAY,OAAA;AACrB,+DAA4D;AAAnD,0HAAA,kBAAkB,OAAA;AAC3B,yDAAsD;AAA7C,oHAAA,eAAe,OAAA;AACxB,2CAAyC;AAAhC,uGAAA,SAAS,OAAA;AAClB,qDAAmD;AAA1C,iHAAA,cAAc,OAAA;AAEvB,6CAA6C;AAC7C,6DAAqE;AAA5D,kHAAA,cAAc,OAAA;AACvB,+CAA6C;AAApC,qGAAA,QAAQ,OAAA;AACjB,iEAA8D;AAArD,sHAAA,gBAAgB,OAAA"}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@noyrax/5d-database-plugin",
|
|
3
3
|
"displayName": "5D Database Plugin",
|
|
4
4
|
"description": "5-dimensional database layer for documentation system with semantic brain integration",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.3",
|
|
6
6
|
"publisher": "noyrax",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
@@ -49,6 +49,10 @@
|
|
|
49
49
|
"onStartupFinished"
|
|
50
50
|
],
|
|
51
51
|
"main": "./out/extension.js",
|
|
52
|
+
"exports": {
|
|
53
|
+
".": "./out/extension.js",
|
|
54
|
+
"./api": "./out/api/index.js"
|
|
55
|
+
},
|
|
52
56
|
"bin": {
|
|
53
57
|
"noyrax-5d-database": "./out/cli/ingest-cli.js",
|
|
54
58
|
"noyrax-5d-database-mcp": "./out/cli/mcp-server-cli.js",
|
|
@@ -166,7 +170,7 @@
|
|
|
166
170
|
},
|
|
167
171
|
"peerDependenciesMeta": {
|
|
168
172
|
"@noyrax/documentation-system-plugin": {
|
|
169
|
-
"optional":
|
|
173
|
+
"optional": true,
|
|
170
174
|
"description": "Documentation System Plugin (Noyrax) must be installed and docs/ must be generated before using 5D Database Plugin"
|
|
171
175
|
}
|
|
172
176
|
}
|