@sanity/ailf-studio 1.12.1 → 1.13.0
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.d.ts +6 -0
- package/dist/index.js +1155 -222
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -770,9 +770,14 @@ interface SummaryData {
|
|
|
770
770
|
interface TimelineDataPoint {
|
|
771
771
|
_id: string;
|
|
772
772
|
actualScore?: number | null;
|
|
773
|
+
areas?: null | string[];
|
|
773
774
|
completedAt: string;
|
|
775
|
+
durationMs?: null | number;
|
|
774
776
|
mode: string;
|
|
777
|
+
models?: null | string[];
|
|
775
778
|
overall: number;
|
|
779
|
+
ownerTeam?: null | string;
|
|
780
|
+
reportId: null | string;
|
|
776
781
|
scores: {
|
|
777
782
|
feature: string;
|
|
778
783
|
totalScore: number;
|
|
@@ -781,6 +786,7 @@ interface TimelineDataPoint {
|
|
|
781
786
|
source: string;
|
|
782
787
|
tag: null | string;
|
|
783
788
|
title: null | string;
|
|
789
|
+
trigger?: null | string;
|
|
784
790
|
}
|
|
785
791
|
/**
|
|
786
792
|
* A single help topic extracted from markdown docs at build time.
|