harperdb 4.7.0-alpha.2 → 4.7.0-alpha.4
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/README.md +1 -1
- package/bin/harperdb.js +48 -51
- package/bin/lite.js +48 -51
- package/components/status/ComponentStatus.d.ts +1 -1
- package/components/status/ComponentStatusRegistry.d.ts +1 -1
- package/components/status/crossThread.d.ts +1 -1
- package/components/status/index.d.ts +3 -3
- package/json/systemSchema.json +1 -1
- package/launchServiceScripts/launchNatsIngestService.js +48 -51
- package/launchServiceScripts/launchNatsReplyService.js +48 -51
- package/launchServiceScripts/launchUpdateNodes4-0-0.js +48 -51
- package/npm-shrinkwrap.json +23 -23
- package/package.json +1 -1
- package/resources/RequestTarget.d.ts +1 -1
- package/resources/Resource.d.ts +1 -1
- package/resources/ResourceInterface.d.ts +7 -7
- package/resources/usageLicensing.d.ts +17 -9
- package/server/jobs/jobProcess.js +48 -51
- package/server/replication/replicator.d.ts +2 -2
- package/server/status/index.d.ts +2 -2
- package/server/threads/threadServer.js +48 -51
- package/studio/build-local/asset-manifest.json +2 -2
- package/studio/build-local/index.html +1 -1
- package/studio/build-local/static/js/{main.b93998e3.js → main.f4d40c30.js} +2 -2
- package/utility/hdbTerms.d.ts +3 -0
- package/utility/scripts/restartHdb.js +48 -51
- package/validation/usageLicensing.d.ts +7 -0
- /package/studio/build-local/static/js/{main.b93998e3.js.LICENSE.txt → main.f4d40c30.js.LICENSE.txt} +0 -0
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* This module contains the ComponentStatus class which represents an individual
|
|
5
5
|
* component's status with methods for status management.
|
|
6
6
|
*/
|
|
7
|
-
import { ComponentStatusLevel } from './types.ts';
|
|
7
|
+
import { type ComponentStatusLevel } from './types.ts';
|
|
8
8
|
/**
|
|
9
9
|
* Component status information class
|
|
10
10
|
*/
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* centralized management of component health status.
|
|
6
6
|
*/
|
|
7
7
|
import { ComponentStatus } from './ComponentStatus.ts';
|
|
8
|
-
import { ComponentStatusLevel, AggregatedComponentStatus } from './types.ts';
|
|
8
|
+
import { type ComponentStatusLevel, type AggregatedComponentStatus } from './types.ts';
|
|
9
9
|
/**
|
|
10
10
|
* Map of component names to their status information
|
|
11
11
|
*/
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* and aggregating it into a unified view.
|
|
6
6
|
*/
|
|
7
7
|
import { ComponentStatusRegistry } from './ComponentStatusRegistry.ts';
|
|
8
|
-
import { ComponentStatusSummary, AggregatedComponentStatus } from './types.ts';
|
|
8
|
+
import { type ComponentStatusSummary, type AggregatedComponentStatus } from './types.ts';
|
|
9
9
|
/**
|
|
10
10
|
* CrossThreadStatusCollector Class
|
|
11
11
|
* Handles collection of component status from all worker threads
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*
|
|
6
6
|
* @example Basic usage:
|
|
7
7
|
* ```typescript
|
|
8
|
-
* import { statusForComponent, STATUS } from './components/status';
|
|
8
|
+
* import { statusForComponent, STATUS } from './components/status/index.ts';
|
|
9
9
|
*
|
|
10
10
|
* // Report component status
|
|
11
11
|
* statusForComponent('my-service').healthy('Service initialized');
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
*
|
|
19
19
|
* @example Lifecycle usage (for component loader):
|
|
20
20
|
* ```typescript
|
|
21
|
-
* import { lifecycle } from './components/status';
|
|
21
|
+
* import { lifecycle } from './components/status/index.ts';
|
|
22
22
|
*
|
|
23
23
|
* lifecycle.loading('my-component');
|
|
24
24
|
* // ... load component ...
|
|
@@ -30,6 +30,6 @@
|
|
|
30
30
|
export { statusForComponent, // Main API for reporting status
|
|
31
31
|
lifecycle, // Component loader lifecycle hooks
|
|
32
32
|
reset, // Reset all statuses (testing)
|
|
33
|
-
STATUS } from './api.ts';
|
|
33
|
+
STATUS, } from './api.ts';
|
|
34
34
|
export type { ComponentStatusLevel, AggregatedComponentStatus, ComponentStatus } from './api.ts';
|
|
35
35
|
export * as internal from './internal.ts';
|