@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.
@@ -1,3 +1,3 @@
1
1
  export * from './service';
2
- export * from './ingest-dedupe';
3
- export * from './ingest-health';
2
+ export * from '@things-factory/ingest/dist-shared/ingest-dedupe.js';
3
+ export * from '@things-factory/ingest/dist-shared/ingest-health.js';
@@ -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 below are pure no imports, no entities, no framework. They are the
7
- * reason this module can be depended on by a connector that only polls.
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("./ingest-dedupe"), exports);
10
- tslib_1.__exportStar(require("./ingest-health"), exports);
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
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../server/index.ts"],"names":[],"mappings":";;;AAAA,oDAAyB;AAEzB;;;GAGG;AACH,0DAA+B;AAC/B,0DAA+B","sourcesContent":["export * from './service'\n\n/*\n * The two judgements below are pure no imports, no entities, no framework. They are the\n * reason this module can be depended on by a connector that only polls.\n */\nexport * from './ingest-dedupe'\nexport * from './ingest-health'\n"]}
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"]}