Skip to content

Commit a24f15d

Browse files
authored
refactor(qa-lab): localize evidence summary schemas (#101987)
1 parent 5bdea31 commit a24f15d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

extensions/qa-lab/src/evidence-summary.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ const qaEvidenceResultSchema = z
182182

183183
const qaEvidencePostureSchema = z.enum(["direct-gateway", "native-approval", "user-path"]);
184184

185-
export const qaEvidenceSummaryEntrySchema = z
185+
const qaEvidenceSummaryEntrySchema = z
186186
.object({
187187
test: qaEvidenceTestSchema,
188188
coverage: z.array(qaEvidenceCoverageSchema),
@@ -194,7 +194,7 @@ export const qaEvidenceSummaryEntrySchema = z
194194
})
195195
.strict();
196196

197-
export const qaEvidenceSummarySchema = z
197+
const qaEvidenceSummarySchema = z
198198
.object({
199199
kind: z.literal(QA_EVIDENCE_SUMMARY_KIND),
200200
schemaVersion: z.literal(QA_EVIDENCE_SUMMARY_SCHEMA_VERSION),
@@ -206,7 +206,7 @@ export const qaEvidenceSummarySchema = z
206206
})
207207
.strict();
208208

209-
export type QaEvidenceProfile = z.infer<typeof qaEvidenceProfileIdSchema>;
209+
type QaEvidenceProfile = z.infer<typeof qaEvidenceProfileIdSchema>;
210210
export type QaEvidenceStatus = z.infer<typeof qaEvidenceStatusSchema>;
211211
export type QaEvidenceTiming = z.infer<typeof qaEvidenceTimingSchema>;
212212
export type QaEvidencePackageSource = z.infer<typeof qaEvidencePackageSourceSchema>;

0 commit comments

Comments
 (0)