@speakableio/core 1.0.6 → 1.0.7
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/index.native.d.mts +11 -0
- package/dist/index.native.d.ts +11 -0
- package/dist/index.web.d.mts +11 -0
- package/package.json +1 -1
package/dist/index.native.d.mts
CHANGED
|
@@ -481,6 +481,17 @@ interface Score {
|
|
|
481
481
|
setId?: string;
|
|
482
482
|
score_is_overridden?: boolean;
|
|
483
483
|
reviewed?: boolean;
|
|
484
|
+
triage?: {
|
|
485
|
+
version?: string;
|
|
486
|
+
improvements?: string[];
|
|
487
|
+
reasons?: string[];
|
|
488
|
+
updatedAt?: CustomTimestamp;
|
|
489
|
+
confidence?: number;
|
|
490
|
+
category?: 'excellent' | 'doing_ok' | 'needs_attention' | 'unknown';
|
|
491
|
+
by?: string;
|
|
492
|
+
summary?: string;
|
|
493
|
+
strengths?: string[];
|
|
494
|
+
};
|
|
484
495
|
}
|
|
485
496
|
interface ScoreWithId extends Score {
|
|
486
497
|
id: string;
|
package/dist/index.native.d.ts
CHANGED
|
@@ -481,6 +481,17 @@ interface Score {
|
|
|
481
481
|
setId?: string;
|
|
482
482
|
score_is_overridden?: boolean;
|
|
483
483
|
reviewed?: boolean;
|
|
484
|
+
triage?: {
|
|
485
|
+
version?: string;
|
|
486
|
+
improvements?: string[];
|
|
487
|
+
reasons?: string[];
|
|
488
|
+
updatedAt?: CustomTimestamp;
|
|
489
|
+
confidence?: number;
|
|
490
|
+
category?: 'excellent' | 'doing_ok' | 'needs_attention' | 'unknown';
|
|
491
|
+
by?: string;
|
|
492
|
+
summary?: string;
|
|
493
|
+
strengths?: string[];
|
|
494
|
+
};
|
|
484
495
|
}
|
|
485
496
|
interface ScoreWithId extends Score {
|
|
486
497
|
id: string;
|
package/dist/index.web.d.mts
CHANGED
|
@@ -481,6 +481,17 @@ interface Score {
|
|
|
481
481
|
setId?: string;
|
|
482
482
|
score_is_overridden?: boolean;
|
|
483
483
|
reviewed?: boolean;
|
|
484
|
+
triage?: {
|
|
485
|
+
version?: string;
|
|
486
|
+
improvements?: string[];
|
|
487
|
+
reasons?: string[];
|
|
488
|
+
updatedAt?: CustomTimestamp;
|
|
489
|
+
confidence?: number;
|
|
490
|
+
category?: 'excellent' | 'doing_ok' | 'needs_attention' | 'unknown';
|
|
491
|
+
by?: string;
|
|
492
|
+
summary?: string;
|
|
493
|
+
strengths?: string[];
|
|
494
|
+
};
|
|
484
495
|
}
|
|
485
496
|
interface ScoreWithId extends Score {
|
|
486
497
|
id: string;
|