@linker-design-plus/timeline-track 2.0.17 → 2.0.18

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.
@@ -9,6 +9,7 @@ export declare class DiagnosticsCenter {
9
9
  private activeFailureCapture;
10
10
  private notifyTimeoutId;
11
11
  private persistTimeoutId;
12
+ private readonly highFrequencyEventTimestamps;
12
13
  constructor(config?: DiagnosticsConfig);
13
14
  startSession(metadata?: DiagnosticSessionMetadata | null): DiagnosticSessionSnapshot;
14
15
  getCurrentSessionId(): string | null;
@@ -28,6 +29,8 @@ export declare class DiagnosticsCenter {
28
29
  private createEvent;
29
30
  private trimSessionEvents;
30
31
  private findCoalescedEvent;
32
+ private resolveHighFrequencyDecision;
33
+ private buildHighFrequencyKey;
31
34
  private buildEventIdentity;
32
35
  private areEventIdentitiesEqual;
33
36
  private updateCoalescedEvent;
@@ -9,6 +9,7 @@ export interface DiagnosticsConfig {
9
9
  includeFullSourceUrl?: boolean;
10
10
  enablePanel?: boolean;
11
11
  consoleSeverityThreshold?: DiagnosticSeverity;
12
+ highFrequencyEventThrottleMs?: number;
12
13
  }
13
14
  export interface DiagnosticMediaError {
14
15
  code: number | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linker-design-plus/timeline-track",
3
- "version": "2.0.17",
3
+ "version": "2.0.18",
4
4
  "description": "A TypeScript-based video editing library with timeline and track functionality",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.es.js",
@@ -16,6 +16,7 @@
16
16
  "build": "vite build && tsc -p tsconfig.build.json",
17
17
  "build:types": "tsc -p tsconfig.build.json",
18
18
  "preview": "vite preview",
19
+ "typecheck": "tsc -p tsconfig.json --noEmit",
19
20
  "test": "vitest run"
20
21
  },
21
22
  "devDependencies": {