@semiont/make-meaning 0.5.32 → 0.5.33
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/archivist-main.js +49 -22
- package/dist/archivist-main.js.map +1 -1
- package/dist/index.d.ts +33 -8
- package/dist/index.js +47 -11
- package/dist/index.js.map +1 -1
- package/dist/librarian-main.js +2 -1
- package/dist/librarian-main.js.map +1 -1
- package/dist/smelter-main.js +2 -1
- package/dist/smelter-main.js.map +1 -1
- package/dist/weaver-main.js +2 -1
- package/dist/weaver-main.js.map +1 -1
- package/package.json +12 -12
package/dist/smelter-main.js
CHANGED
|
@@ -10731,8 +10731,9 @@ async function authenticate() {
|
|
|
10731
10731
|
);
|
|
10732
10732
|
}
|
|
10733
10733
|
async function main() {
|
|
10734
|
-
const { initObservabilityNode } = await import('@semiont/observability/node');
|
|
10734
|
+
const { initObservabilityNode, registerSupervisorRestartCount } = await import('@semiont/observability/node');
|
|
10735
10735
|
initObservabilityNode({ serviceName: "semiont-smelter" });
|
|
10736
|
+
registerSupervisorRestartCount();
|
|
10736
10737
|
logger.info("Authenticating", { baseUrl });
|
|
10737
10738
|
const tokenSubject = new import_rxjs3.BehaviorSubject(accessToken(await authenticate()));
|
|
10738
10739
|
logger.info("Authenticated");
|