@things-factory/ingest 10.1.4 → 10.1.5
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/dist-server/index.d.ts +2 -2
- package/dist-server/index.js +12 -4
- package/dist-server/index.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/{dist-server → dist-shared}/ingest-dedupe.js.map +1 -1
- package/{dist-server → dist-shared}/ingest-health.js.map +1 -1
- package/package.json +6 -5
- package/shared/ingest-dedupe.ts +325 -0
- package/shared/ingest-health.ts +1081 -0
- package/tsconfig.shared.json +22 -0
- package/tsconfig.shared.tsbuildinfo +1 -0
- /package/{dist-server → dist-shared}/ingest-dedupe.d.ts +0 -0
- /package/{dist-server → dist-shared}/ingest-dedupe.js +0 -0
- /package/{dist-server → dist-shared}/ingest-health.d.ts +0 -0
- /package/{dist-server → dist-shared}/ingest-health.js +0 -0
package/dist-server/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export * from './service';
|
|
2
|
-
export * from '
|
|
3
|
-
export * from '
|
|
2
|
+
export * from '@things-factory/ingest/dist-shared/ingest-dedupe.js';
|
|
3
|
+
export * from '@things-factory/ingest/dist-shared/ingest-health.js';
|
package/dist-server/index.js
CHANGED
|
@@ -3,9 +3,17 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
4
|
tslib_1.__exportStar(require("./service"), exports);
|
|
5
5
|
/*
|
|
6
|
-
* The two judgements
|
|
7
|
-
*
|
|
6
|
+
* The two pure judgements live in `shared/`, and are reached through the package's own name.
|
|
7
|
+
*
|
|
8
|
+
* They have no imports — no entities, no framework — and both this server and the flow badge on
|
|
9
|
+
* the screen read them. `shared/` builds to `dist-shared`, which a server rebuild does not empty
|
|
10
|
+
* (§`tsconfig.shared.json`), so a screen importing it cannot be caught mid-clean.
|
|
11
|
+
*
|
|
12
|
+
* The self-referencing specifier is the platform's convention for this, not a workaround:
|
|
13
|
+
* `headless-twin/server/engine/index.ts` re-exports its own shared vocabulary the same way. A
|
|
14
|
+
* relative `../shared/...` would put a file outside the server build's rootDir and shift the
|
|
15
|
+
* whole of dist-server by one level.
|
|
8
16
|
*/
|
|
9
|
-
tslib_1.__exportStar(require("
|
|
10
|
-
tslib_1.__exportStar(require("
|
|
17
|
+
tslib_1.__exportStar(require("@things-factory/ingest/dist-shared/ingest-dedupe.js"), exports);
|
|
18
|
+
tslib_1.__exportStar(require("@things-factory/ingest/dist-shared/ingest-health.js"), exports);
|
|
11
19
|
//# sourceMappingURL=index.js.map
|
package/dist-server/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../server/index.ts"],"names":[],"mappings":";;;AAAA,oDAAyB;AAEzB
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../server/index.ts"],"names":[],"mappings":";;;AAAA,oDAAyB;AAEzB;;;;;;;;;;;GAWG;AACH,8FAAmE;AACnE,8FAAmE","sourcesContent":["export * from './service'\n\n/*\n * The two pure judgements live in `shared/`, and are reached through the package's own name.\n *\n * They have no imports — no entities, no framework — and both this server and the flow badge on\n * the screen read them. `shared/` builds to `dist-shared`, which a server rebuild does not empty\n * (§`tsconfig.shared.json`), so a screen importing it cannot be caught mid-clean.\n *\n * The self-referencing specifier is the platform's convention for this, not a workaround:\n * `headless-twin/server/engine/index.ts` re-exports its own shared vocabulary the same way. A\n * relative `../shared/...` would put a file outside the server build's rootDir and shift the\n * whole of dist-server by one level.\n */\nexport * from '@things-factory/ingest/dist-shared/ingest-dedupe.js'\nexport * from '@things-factory/ingest/dist-shared/ingest-health.js'\n"]}
|