@sanity/ailf-studio 0.1.19 → 0.1.21
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 +3 -1
- package/dist/index.js +1443 -1883
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -324,6 +324,8 @@ declare const distinctSourcesQuery = "\n array::unique(*[_type == \"ailf.report
|
|
|
324
324
|
declare const distinctModesQuery = "\n array::unique(*[_type == \"ailf.report\"].provenance.mode)\n";
|
|
325
325
|
/** All unique feature areas (for filter dropdowns) */
|
|
326
326
|
declare const distinctAreasQuery = "\n array::unique(*[_type == \"ailf.report\"].provenance.areas[])\n";
|
|
327
|
+
/** All unique trigger types (for filter dropdowns) */
|
|
328
|
+
declare const distinctTriggersQuery = "\n array::unique(*[_type == \"ailf.report\"].provenance.trigger.type)\n";
|
|
327
329
|
|
|
328
330
|
/**
|
|
329
331
|
* schema/eval-request.ts
|
|
@@ -797,4 +799,4 @@ interface TimelineDataPoint {
|
|
|
797
799
|
*/
|
|
798
800
|
declare const ailfPlugin: sanity.Plugin<void>;
|
|
799
801
|
|
|
800
|
-
export { AssertionInput, CanonicalDocInput, type ComparisonData, type ContentImpactItem, GLOSSARY, GraduateToNativeAction, MirrorBanner, type ProvenanceData, ReleasePicker, type ReportDetail, type ReportListItem, type RunEvaluationActionOptions, RunTaskEvaluationAction, type ScoreItem, type SummaryData, SyncStatusBadge, type TimelineDataPoint, ailfPlugin, ailfTool, articleSearchQuery, comparisonPairQuery, contentImpactQuery, createRunEvaluationAction, distinctAreasQuery, distinctModesQuery, distinctPerspectivesQuery, distinctSourcesQuery, distinctTargetDocumentsQuery, evalRequestSchema, featureAreaSchema, latestReportsQuery, recentDocumentEvalsQuery, referenceSolutionSchema, reportDetailQuery, reportSchema, scoreTimelineQuery, taskSchema, webhookConfigSchema };
|
|
802
|
+
export { AssertionInput, CanonicalDocInput, type ComparisonData, type ContentImpactItem, GLOSSARY, GraduateToNativeAction, MirrorBanner, type ProvenanceData, ReleasePicker, type ReportDetail, type ReportListItem, type RunEvaluationActionOptions, RunTaskEvaluationAction, type ScoreItem, type SummaryData, SyncStatusBadge, type TimelineDataPoint, ailfPlugin, ailfTool, articleSearchQuery, comparisonPairQuery, contentImpactQuery, createRunEvaluationAction, distinctAreasQuery, distinctModesQuery, distinctPerspectivesQuery, distinctSourcesQuery, distinctTargetDocumentsQuery, distinctTriggersQuery, evalRequestSchema, featureAreaSchema, latestReportsQuery, recentDocumentEvalsQuery, referenceSolutionSchema, reportDetailQuery, reportSchema, scoreTimelineQuery, taskSchema, webhookConfigSchema };
|