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.
@@ -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';
@@ -98,7 +98,7 @@
98
98
  ]
99
99
  },
100
100
  "hdb_license": {
101
- "primaryKey": "id",
101
+ "hash_attribute": "id",
102
102
  "table": "hdb_license",
103
103
  "database": "system",
104
104
  "audit": true,