@sanity/ailf-studio 1.12.0 → 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 +14 -0
- package/dist/index.js +1155 -222
- package/package.json +8 -2
package/dist/index.d.ts
CHANGED
|
@@ -578,6 +578,14 @@ interface ArtifactRef {
|
|
|
578
578
|
entries?: ArtifactRefEntry[];
|
|
579
579
|
truncated?: boolean;
|
|
580
580
|
preview?: unknown;
|
|
581
|
+
/**
|
|
582
|
+
* D0040 / W0135 — when present, this ref's bytes physically live under a
|
|
583
|
+
* different run's GCS prefix. `path` is already authoritative for
|
|
584
|
+
* resolution; this field is a lineage marker only. Studio mirror uses
|
|
585
|
+
* `string` rather than the branded `RunId` since Studio types deliberately
|
|
586
|
+
* avoid pulling in core's branded-IDs module.
|
|
587
|
+
*/
|
|
588
|
+
sourceRunId?: string;
|
|
581
589
|
}
|
|
582
590
|
/** A single gap/recommendation from gap analysis */
|
|
583
591
|
interface RecommendationGap {
|
|
@@ -762,9 +770,14 @@ interface SummaryData {
|
|
|
762
770
|
interface TimelineDataPoint {
|
|
763
771
|
_id: string;
|
|
764
772
|
actualScore?: number | null;
|
|
773
|
+
areas?: null | string[];
|
|
765
774
|
completedAt: string;
|
|
775
|
+
durationMs?: null | number;
|
|
766
776
|
mode: string;
|
|
777
|
+
models?: null | string[];
|
|
767
778
|
overall: number;
|
|
779
|
+
ownerTeam?: null | string;
|
|
780
|
+
reportId: null | string;
|
|
768
781
|
scores: {
|
|
769
782
|
feature: string;
|
|
770
783
|
totalScore: number;
|
|
@@ -773,6 +786,7 @@ interface TimelineDataPoint {
|
|
|
773
786
|
source: string;
|
|
774
787
|
tag: null | string;
|
|
775
788
|
title: null | string;
|
|
789
|
+
trigger?: null | string;
|
|
776
790
|
}
|
|
777
791
|
/**
|
|
778
792
|
* A single help topic extracted from markdown docs at build time.
|