@sanity/ailf-studio 0.1.1 → 0.1.3
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 +5 -4
- package/dist/index.js +909 -753
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as sanity from 'sanity';
|
|
2
|
-
import { DocumentActionComponent, ObjectInputProps, ReleaseActionComponent, Tool } from 'sanity';
|
|
2
|
+
import { DocumentActionComponent, ObjectInputProps, StringInputProps, ReleaseActionComponent, Tool } from 'sanity';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import { DocumentRef } from './document-ref.js';
|
|
5
5
|
|
|
@@ -31,6 +31,8 @@ declare function AssertionInput(props: ObjectInputProps): react_jsx_runtime.JSX.
|
|
|
31
31
|
|
|
32
32
|
declare function CanonicalDocInput(props: ObjectInputProps): react_jsx_runtime.JSX.Element;
|
|
33
33
|
|
|
34
|
+
declare function ReleasePicker(props: StringInputProps): react_jsx_runtime.JSX.Element;
|
|
35
|
+
|
|
34
36
|
/**
|
|
35
37
|
* components/MirrorBanner.tsx
|
|
36
38
|
*
|
|
@@ -342,9 +344,8 @@ declare const referenceSolutionSchema: {
|
|
|
342
344
|
name: "ailf.referenceSolution";
|
|
343
345
|
} & Omit<sanity.DocumentDefinition, "preview"> & {
|
|
344
346
|
preview?: sanity.PreviewConfig<{
|
|
345
|
-
language: string;
|
|
346
347
|
title: string;
|
|
347
|
-
}, Record<
|
|
348
|
+
}, Record<"title", any>> | undefined;
|
|
348
349
|
};
|
|
349
350
|
|
|
350
351
|
/**
|
|
@@ -704,4 +705,4 @@ interface TimelineDataPoint {
|
|
|
704
705
|
*/
|
|
705
706
|
declare const ailfPlugin: sanity.Plugin<void>;
|
|
706
707
|
|
|
707
|
-
export { AssertionInput, CanonicalDocInput, type ComparisonData, type ContentImpactItem, GLOSSARY, GraduateToNativeAction, MirrorBanner, type ProvenanceData, type ReportDetail, type ReportListItem, type RunEvaluationActionOptions, 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 };
|
|
708
|
+
export { AssertionInput, CanonicalDocInput, type ComparisonData, type ContentImpactItem, GLOSSARY, GraduateToNativeAction, MirrorBanner, type ProvenanceData, ReleasePicker, type ReportDetail, type ReportListItem, type RunEvaluationActionOptions, 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 };
|