@lincs.project/webannotation-schema 1.13.0 → 1.13.1
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.mts +95 -2
- package/dist/index.d.ts +95 -2
- package/dist/index.js +12 -0
- package/dist/index.mjs +8 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -898,6 +898,95 @@ type XpathSelectorExtended = z.infer<typeof XpathSelectorExtended>;
|
|
|
898
898
|
declare const xpathSelectorSchema: JSONSchemaType<XpathSelector>;
|
|
899
899
|
declare const xpathSelectorExtendedSchema: JSONSchemaType<Required<XpathSelector>>;
|
|
900
900
|
|
|
901
|
+
declare const CssSelector: z.ZodObject<{
|
|
902
|
+
id: z.ZodString;
|
|
903
|
+
type: z.ZodTuple<[z.ZodLiteral<"CssSelector">, z.ZodLiteral<"crm:E73_Information_Object">], null>;
|
|
904
|
+
value: z.ZodString;
|
|
905
|
+
}, "strip", z.ZodTypeAny, {
|
|
906
|
+
id: string;
|
|
907
|
+
type: ["CssSelector", "crm:E73_Information_Object"];
|
|
908
|
+
value: string;
|
|
909
|
+
}, {
|
|
910
|
+
id: string;
|
|
911
|
+
type: ["CssSelector", "crm:E73_Information_Object"];
|
|
912
|
+
value: string;
|
|
913
|
+
}>;
|
|
914
|
+
type CssSelector = z.infer<typeof CssSelector>;
|
|
915
|
+
declare const CssSelectorExtended: z.ZodObject<{
|
|
916
|
+
id: z.ZodString;
|
|
917
|
+
type: z.ZodTuple<[z.ZodLiteral<"CssSelector">, z.ZodLiteral<"crm:E73_Information_Object">], null>;
|
|
918
|
+
value: z.ZodString;
|
|
919
|
+
refinedBy: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
920
|
+
id: z.ZodString;
|
|
921
|
+
type: z.ZodTuple<[z.ZodLiteral<"TextPositionSelector">, z.ZodLiteral<"crm:E73_Information_Object">], null>;
|
|
922
|
+
start: z.ZodNumber;
|
|
923
|
+
end: z.ZodNumber;
|
|
924
|
+
}, "strip", z.ZodTypeAny, {
|
|
925
|
+
id: string;
|
|
926
|
+
type: ["TextPositionSelector", "crm:E73_Information_Object"];
|
|
927
|
+
start: number;
|
|
928
|
+
end: number;
|
|
929
|
+
}, {
|
|
930
|
+
id: string;
|
|
931
|
+
type: ["TextPositionSelector", "crm:E73_Information_Object"];
|
|
932
|
+
start: number;
|
|
933
|
+
end: number;
|
|
934
|
+
}>, z.ZodObject<{
|
|
935
|
+
id: z.ZodString;
|
|
936
|
+
type: z.ZodTuple<[z.ZodLiteral<"TextQuoteSelector">, z.ZodLiteral<"crm:E33_Linguistic_Object">], null>;
|
|
937
|
+
exact: z.ZodString;
|
|
938
|
+
prefix: z.ZodString;
|
|
939
|
+
suffix: z.ZodString;
|
|
940
|
+
}, "strip", z.ZodTypeAny, {
|
|
941
|
+
id: string;
|
|
942
|
+
type: ["TextQuoteSelector", "crm:E33_Linguistic_Object"];
|
|
943
|
+
exact: string;
|
|
944
|
+
prefix: string;
|
|
945
|
+
suffix: string;
|
|
946
|
+
}, {
|
|
947
|
+
id: string;
|
|
948
|
+
type: ["TextQuoteSelector", "crm:E33_Linguistic_Object"];
|
|
949
|
+
exact: string;
|
|
950
|
+
prefix: string;
|
|
951
|
+
suffix: string;
|
|
952
|
+
}>]>>;
|
|
953
|
+
}, "strip", z.ZodTypeAny, {
|
|
954
|
+
id: string;
|
|
955
|
+
type: ["CssSelector", "crm:E73_Information_Object"];
|
|
956
|
+
value: string;
|
|
957
|
+
refinedBy?: {
|
|
958
|
+
id: string;
|
|
959
|
+
type: ["TextPositionSelector", "crm:E73_Information_Object"];
|
|
960
|
+
start: number;
|
|
961
|
+
end: number;
|
|
962
|
+
} | {
|
|
963
|
+
id: string;
|
|
964
|
+
type: ["TextQuoteSelector", "crm:E33_Linguistic_Object"];
|
|
965
|
+
exact: string;
|
|
966
|
+
prefix: string;
|
|
967
|
+
suffix: string;
|
|
968
|
+
} | undefined;
|
|
969
|
+
}, {
|
|
970
|
+
id: string;
|
|
971
|
+
type: ["CssSelector", "crm:E73_Information_Object"];
|
|
972
|
+
value: string;
|
|
973
|
+
refinedBy?: {
|
|
974
|
+
id: string;
|
|
975
|
+
type: ["TextPositionSelector", "crm:E73_Information_Object"];
|
|
976
|
+
start: number;
|
|
977
|
+
end: number;
|
|
978
|
+
} | {
|
|
979
|
+
id: string;
|
|
980
|
+
type: ["TextQuoteSelector", "crm:E33_Linguistic_Object"];
|
|
981
|
+
exact: string;
|
|
982
|
+
prefix: string;
|
|
983
|
+
suffix: string;
|
|
984
|
+
} | undefined;
|
|
985
|
+
}>;
|
|
986
|
+
type CssSelectorExtended = z.infer<typeof CssSelectorExtended>;
|
|
987
|
+
declare const cssSelectorSchema: JSONSchemaType<CssSelector>;
|
|
988
|
+
declare const cssSelectorExtendedSchema: JSONSchemaType<Required<CssSelectorExtended>>;
|
|
989
|
+
|
|
901
990
|
declare const selectorIdDescription = "UUID that identifies the selector.";
|
|
902
991
|
declare const selectorRefinedByDescription = "The relationship between a broader selector and the more specific selector that should be applied to the results of the first.";
|
|
903
992
|
declare const Selector: z.ZodUnion<[z.ZodObject<{
|
|
@@ -7763,6 +7852,8 @@ type index_ConceptualObject = ConceptualObject;
|
|
|
7763
7852
|
type index_ConceptualObjectEntityType = ConceptualObjectEntityType;
|
|
7764
7853
|
type index_Correction = Correction;
|
|
7765
7854
|
type index_CorrectionEntityType = CorrectionEntityType;
|
|
7855
|
+
type index_CssSelector = CssSelector;
|
|
7856
|
+
type index_CssSelectorExtended = CssSelectorExtended;
|
|
7766
7857
|
declare const index_DATE_RANGE_PATTERN: typeof DATE_RANGE_PATTERN;
|
|
7767
7858
|
type index_Date = Date;
|
|
7768
7859
|
type index_DateEntityType = DateEntityType;
|
|
@@ -7825,6 +7916,8 @@ declare const index_conceptualObjectSchema: typeof conceptualObjectSchema;
|
|
|
7825
7916
|
declare const index_contextUri: typeof contextUri;
|
|
7826
7917
|
declare const index_correctionEntityTypeSchema: typeof correctionEntityTypeSchema;
|
|
7827
7918
|
declare const index_correctionSchema: typeof correctionSchema;
|
|
7919
|
+
declare const index_cssSelectorExtendedSchema: typeof cssSelectorExtendedSchema;
|
|
7920
|
+
declare const index_cssSelectorSchema: typeof cssSelectorSchema;
|
|
7828
7921
|
declare const index_dateEntityTypeSchema: typeof dateEntityTypeSchema;
|
|
7829
7922
|
declare const index_dateSchema: typeof dateSchema;
|
|
7830
7923
|
declare const index_definitionSchema: typeof definitionSchema;
|
|
@@ -7878,7 +7971,7 @@ declare const index_workSchema: typeof workSchema;
|
|
|
7878
7971
|
declare const index_xpathSelectorExtendedSchema: typeof xpathSelectorExtendedSchema;
|
|
7879
7972
|
declare const index_xpathSelectorSchema: typeof xpathSelectorSchema;
|
|
7880
7973
|
declare namespace index {
|
|
7881
|
-
export { type index_Body as Body, type index_BodyChoice as BodyChoice, type index_BodyEntityType as BodyEntityType, type index_Certainty as Certainty, type index_Citation as Citation, type index_CitationEntityType as CitationEntityType, type index_ConceptualObject as ConceptualObject, type index_ConceptualObjectEntityType as ConceptualObjectEntityType, type index_Correction as Correction, type index_CorrectionEntityType as CorrectionEntityType, index_DATE_RANGE_PATTERN as DATE_RANGE_PATTERN, type index_Date as Date, type index_DateEntityType as DateEntityType, type index_Definition as Definition, type index_Description as Description, type index_Event as Event, type index_EventEntityType as EventEntityType, type index_Format as Format, type index_Group as Group, type index_Keyword as Keyword, type index_KeywordEntityType as KeywordEntityType, type index_KeywordFolksnomy as KeywordFolksnomy, type index_KeywordFolksnomyEntityType as KeywordFolksnomyEntityType, type index_Label as Label, type index_Language as Language, type index_Link as Link, type index_LinkEntityType as LinkEntityType, type index_ModeExistence as ModeExistence, type index_Motivation as Motivation, type index_Note as Note, type index_NoteEntityType as NoteEntityType, type index_Organization as Organization, type index_OrganizationEntityType as OrganizationEntityType, type index_Person as Person, type index_PersonEntityType as PersonEntityType, type index_PhysicalThing as PhysicalThing, type index_PhysicalThingEntityType as PhysicalThingEntityType, type index_Place as Place, type index_PlaceEntityType as PlaceEntityType, type index_Precision as Precision, type index_Quality as Quality, type index_RangeSelector as RangeSelector, type index_Selector as Selector, type index_Software as Software, type index_Source as Source, type index_Target as Target, type index_TextPositionSelector as TextPositionSelector, type index_TextPositionSelectorExtended as TextPositionSelectorExtended, type index_TextQuoteSelector as TextQuoteSelector, type index_TextQuoteSelectorExtended as TextQuoteSelectorExtended, type index_User as User, index_VERSION as VERSION, type index_ValidateResult as ValidateResult, type index_ValidationError as ValidationError, type index_WebAnnotation as WebAnnotation, type index_Work as Work, type index_WorkEntityType as WorkEntityType, type index_XpathSelector as XpathSelector, type index_XpathSelectorExtended as XpathSelectorExtended, index_ajv as ajv, index_bodyChoiceSchema as bodyChoiceSchema, index_bodyEntityTypeSchema as bodyEntityTypeSchema, index_bodyIdDescription as bodyIdDescription, index_bodySchema as bodySchema, index_certaintySchema as certaintySchema, index_citationEntityTypeSchema as citationEntityTypeSchema, index_citationSchema as citationSchema, index_conceptualObjectEntityTypeSchema as conceptualObjectEntityTypeSchema, index_conceptualObjectSchema as conceptualObjectSchema, index_contextUri as contextUri, index_correctionEntityTypeSchema as correctionEntityTypeSchema, index_correctionSchema as correctionSchema, index_dateEntityTypeSchema as dateEntityTypeSchema, index_dateSchema as dateSchema, index_definitionSchema as definitionSchema, index_defsId as defsId, index_descriptionSchema as descriptionSchema, index_eventEntityTypeSchema as eventEntityTypeSchema, index_eventSchema as eventSchema, index_formatSchema as formatSchema, index_groupSchema as groupSchema, type index_isIdentifiedBy as isIdentifiedBy, index_isIndentifyBySchema as isIndentifyBySchema, index_keywordEntityTypeSchema as keywordEntityTypeSchema, index_keywordFolksnomyEntityTypeSchema as keywordFolksnomyEntityTypeSchema, index_keywordFolksnomySchema as keywordFolksnomySchema, index_keywordSchema as keywordSchema, index_labelSchema as labelSchema, index_languageSchema as languageSchema, index_linkEntityTypeSchema as linkEntityTypeSchema, index_linkSchema as linkSchema, index_modeExistenceSchema as modeExistenceSchema, index_noteEntityTypeSchema as noteEntityTypeSchema, index_noteSchema as noteSchema, index_organizationEntityTypeSchema as organizationEntityTypeSchema, index_organizationSchema as organizationSchema, index_personEntityTypeSchema as personEntityTypeSchema, index_personSchema as personSchema, index_physicalThingEntityTypeSchema as physicalThingEntityTypeSchema, index_physicalThingSchema as physicalThingSchema, index_placeEntityTypeSchema as placeEntityTypeSchema, index_placeSchema as placeSchema, index_precisionSchema as precisionSchema, index_rangeSelectorSchema as rangeSelectorSchema, index_schemaContext as schemaContext, index_schemaId as schemaId, index_selectorIdDescription as selectorIdDescription, index_selectorRefinedByDescription as selectorRefinedByDescription, index_selectorSchema as selectorSchema, index_softwareSchema as softwareSchema, index_sourceSchema as sourceSchema, index_targetSchema as targetSchema, index_textPositionSelectorExtendedSchema as textPositionSelectorExtendedSchema, index_textPositionSelectorSchema as textPositionSelectorSchema, index_textQuoteSelectorExtendedSchema as textQuoteSelectorExtendedSchema, index_textQuoteSelectorSchema as textQuoteSelectorSchema, index_userSchema as userSchema, index_validate as validate, index_validator as validator, index_webAnnotationSchema as webAnnotationSchema, index_workEntityTypeSchema as workEntityTypeSchema, index_workSchema as workSchema, index_xpathSelectorExtendedSchema as xpathSelectorExtendedSchema, index_xpathSelectorSchema as xpathSelectorSchema };
|
|
7974
|
+
export { type index_Body as Body, type index_BodyChoice as BodyChoice, type index_BodyEntityType as BodyEntityType, type index_Certainty as Certainty, type index_Citation as Citation, type index_CitationEntityType as CitationEntityType, type index_ConceptualObject as ConceptualObject, type index_ConceptualObjectEntityType as ConceptualObjectEntityType, type index_Correction as Correction, type index_CorrectionEntityType as CorrectionEntityType, type index_CssSelector as CssSelector, type index_CssSelectorExtended as CssSelectorExtended, index_DATE_RANGE_PATTERN as DATE_RANGE_PATTERN, type index_Date as Date, type index_DateEntityType as DateEntityType, type index_Definition as Definition, type index_Description as Description, type index_Event as Event, type index_EventEntityType as EventEntityType, type index_Format as Format, type index_Group as Group, type index_Keyword as Keyword, type index_KeywordEntityType as KeywordEntityType, type index_KeywordFolksnomy as KeywordFolksnomy, type index_KeywordFolksnomyEntityType as KeywordFolksnomyEntityType, type index_Label as Label, type index_Language as Language, type index_Link as Link, type index_LinkEntityType as LinkEntityType, type index_ModeExistence as ModeExistence, type index_Motivation as Motivation, type index_Note as Note, type index_NoteEntityType as NoteEntityType, type index_Organization as Organization, type index_OrganizationEntityType as OrganizationEntityType, type index_Person as Person, type index_PersonEntityType as PersonEntityType, type index_PhysicalThing as PhysicalThing, type index_PhysicalThingEntityType as PhysicalThingEntityType, type index_Place as Place, type index_PlaceEntityType as PlaceEntityType, type index_Precision as Precision, type index_Quality as Quality, type index_RangeSelector as RangeSelector, type index_Selector as Selector, type index_Software as Software, type index_Source as Source, type index_Target as Target, type index_TextPositionSelector as TextPositionSelector, type index_TextPositionSelectorExtended as TextPositionSelectorExtended, type index_TextQuoteSelector as TextQuoteSelector, type index_TextQuoteSelectorExtended as TextQuoteSelectorExtended, type index_User as User, index_VERSION as VERSION, type index_ValidateResult as ValidateResult, type index_ValidationError as ValidationError, type index_WebAnnotation as WebAnnotation, type index_Work as Work, type index_WorkEntityType as WorkEntityType, type index_XpathSelector as XpathSelector, type index_XpathSelectorExtended as XpathSelectorExtended, index_ajv as ajv, index_bodyChoiceSchema as bodyChoiceSchema, index_bodyEntityTypeSchema as bodyEntityTypeSchema, index_bodyIdDescription as bodyIdDescription, index_bodySchema as bodySchema, index_certaintySchema as certaintySchema, index_citationEntityTypeSchema as citationEntityTypeSchema, index_citationSchema as citationSchema, index_conceptualObjectEntityTypeSchema as conceptualObjectEntityTypeSchema, index_conceptualObjectSchema as conceptualObjectSchema, index_contextUri as contextUri, index_correctionEntityTypeSchema as correctionEntityTypeSchema, index_correctionSchema as correctionSchema, index_cssSelectorExtendedSchema as cssSelectorExtendedSchema, index_cssSelectorSchema as cssSelectorSchema, index_dateEntityTypeSchema as dateEntityTypeSchema, index_dateSchema as dateSchema, index_definitionSchema as definitionSchema, index_defsId as defsId, index_descriptionSchema as descriptionSchema, index_eventEntityTypeSchema as eventEntityTypeSchema, index_eventSchema as eventSchema, index_formatSchema as formatSchema, index_groupSchema as groupSchema, type index_isIdentifiedBy as isIdentifiedBy, index_isIndentifyBySchema as isIndentifyBySchema, index_keywordEntityTypeSchema as keywordEntityTypeSchema, index_keywordFolksnomyEntityTypeSchema as keywordFolksnomyEntityTypeSchema, index_keywordFolksnomySchema as keywordFolksnomySchema, index_keywordSchema as keywordSchema, index_labelSchema as labelSchema, index_languageSchema as languageSchema, index_linkEntityTypeSchema as linkEntityTypeSchema, index_linkSchema as linkSchema, index_modeExistenceSchema as modeExistenceSchema, index_noteEntityTypeSchema as noteEntityTypeSchema, index_noteSchema as noteSchema, index_organizationEntityTypeSchema as organizationEntityTypeSchema, index_organizationSchema as organizationSchema, index_personEntityTypeSchema as personEntityTypeSchema, index_personSchema as personSchema, index_physicalThingEntityTypeSchema as physicalThingEntityTypeSchema, index_physicalThingSchema as physicalThingSchema, index_placeEntityTypeSchema as placeEntityTypeSchema, index_placeSchema as placeSchema, index_precisionSchema as precisionSchema, index_rangeSelectorSchema as rangeSelectorSchema, index_schemaContext as schemaContext, index_schemaId as schemaId, index_selectorIdDescription as selectorIdDescription, index_selectorRefinedByDescription as selectorRefinedByDescription, index_selectorSchema as selectorSchema, index_softwareSchema as softwareSchema, index_sourceSchema as sourceSchema, index_targetSchema as targetSchema, index_textPositionSelectorExtendedSchema as textPositionSelectorExtendedSchema, index_textPositionSelectorSchema as textPositionSelectorSchema, index_textQuoteSelectorExtendedSchema as textQuoteSelectorExtendedSchema, index_textQuoteSelectorSchema as textQuoteSelectorSchema, index_userSchema as userSchema, index_validate as validate, index_validator as validator, index_webAnnotationSchema as webAnnotationSchema, index_workEntityTypeSchema as workEntityTypeSchema, index_workSchema as workSchema, index_xpathSelectorExtendedSchema as xpathSelectorExtendedSchema, index_xpathSelectorSchema as xpathSelectorSchema };
|
|
7882
7975
|
}
|
|
7883
7976
|
|
|
7884
|
-
export { Body, BodyChoice, BodyEntityType, Certainty, Citation, CitationEntityType, ConceptualObject, ConceptualObjectEntityType, Correction, CorrectionEntityType, DATE_RANGE_PATTERN, Date, DateEntityType, type Definition, Description, Event, EventEntityType, Format, Group, Keyword, KeywordEntityType, KeywordFolksnomy, KeywordFolksnomyEntityType, Label, Language, Link, LinkEntityType, ModeExistence, Motivation, Note, NoteEntityType, Organization, OrganizationEntityType, Person, PersonEntityType, PhysicalThing, PhysicalThingEntityType, Place, PlaceEntityType, Precision, Quality, RangeSelector, Selector, Software, Source, Target, TextPositionSelector, TextPositionSelectorExtended, TextQuoteSelector, TextQuoteSelectorExtended, User, VERSION, ValidateResult, ValidationError, WebAnnotation, Work, WorkEntityType, XpathSelector, XpathSelectorExtended, ajv, bodyChoiceSchema, bodyEntityTypeSchema, bodyIdDescription, bodySchema, certaintySchema, citationEntityTypeSchema, citationSchema, conceptualObjectEntityTypeSchema, conceptualObjectSchema, contextUri, correctionEntityTypeSchema, correctionSchema, dateEntityTypeSchema, dateSchema, definitionSchema, defsId, descriptionSchema, eventEntityTypeSchema, eventSchema, formatSchema, groupSchema, isIdentifiedBy, isIndentifyBySchema, keywordEntityTypeSchema, keywordFolksnomyEntityTypeSchema, keywordFolksnomySchema, keywordSchema, labelSchema, languageSchema, linkEntityTypeSchema, linkSchema, modeExistenceSchema, noteEntityTypeSchema, noteSchema, organizationEntityTypeSchema, organizationSchema, personEntityTypeSchema, personSchema, physicalThingEntityTypeSchema, physicalThingSchema, placeEntityTypeSchema, placeSchema, precisionSchema, rangeSelectorSchema, schemaContext, schemaId, selectorIdDescription, selectorRefinedByDescription, selectorSchema, softwareSchema, sourceSchema, targetSchema, textPositionSelectorExtendedSchema, textPositionSelectorSchema, textQuoteSelectorExtendedSchema, textQuoteSelectorSchema, userSchema, index as v1, validate, validator, webAnnotationSchema, workEntityTypeSchema, workSchema, xpathSelectorExtendedSchema, xpathSelectorSchema };
|
|
7977
|
+
export { Body, BodyChoice, BodyEntityType, Certainty, Citation, CitationEntityType, ConceptualObject, ConceptualObjectEntityType, Correction, CorrectionEntityType, CssSelector, CssSelectorExtended, DATE_RANGE_PATTERN, Date, DateEntityType, type Definition, Description, Event, EventEntityType, Format, Group, Keyword, KeywordEntityType, KeywordFolksnomy, KeywordFolksnomyEntityType, Label, Language, Link, LinkEntityType, ModeExistence, Motivation, Note, NoteEntityType, Organization, OrganizationEntityType, Person, PersonEntityType, PhysicalThing, PhysicalThingEntityType, Place, PlaceEntityType, Precision, Quality, RangeSelector, Selector, Software, Source, Target, TextPositionSelector, TextPositionSelectorExtended, TextQuoteSelector, TextQuoteSelectorExtended, User, VERSION, ValidateResult, ValidationError, WebAnnotation, Work, WorkEntityType, XpathSelector, XpathSelectorExtended, ajv, bodyChoiceSchema, bodyEntityTypeSchema, bodyIdDescription, bodySchema, certaintySchema, citationEntityTypeSchema, citationSchema, conceptualObjectEntityTypeSchema, conceptualObjectSchema, contextUri, correctionEntityTypeSchema, correctionSchema, cssSelectorExtendedSchema, cssSelectorSchema, dateEntityTypeSchema, dateSchema, definitionSchema, defsId, descriptionSchema, eventEntityTypeSchema, eventSchema, formatSchema, groupSchema, isIdentifiedBy, isIndentifyBySchema, keywordEntityTypeSchema, keywordFolksnomyEntityTypeSchema, keywordFolksnomySchema, keywordSchema, labelSchema, languageSchema, linkEntityTypeSchema, linkSchema, modeExistenceSchema, noteEntityTypeSchema, noteSchema, organizationEntityTypeSchema, organizationSchema, personEntityTypeSchema, personSchema, physicalThingEntityTypeSchema, physicalThingSchema, placeEntityTypeSchema, placeSchema, precisionSchema, rangeSelectorSchema, schemaContext, schemaId, selectorIdDescription, selectorRefinedByDescription, selectorSchema, softwareSchema, sourceSchema, targetSchema, textPositionSelectorExtendedSchema, textPositionSelectorSchema, textQuoteSelectorExtendedSchema, textQuoteSelectorSchema, userSchema, index as v1, validate, validator, webAnnotationSchema, workEntityTypeSchema, workSchema, xpathSelectorExtendedSchema, xpathSelectorSchema };
|
package/dist/index.d.ts
CHANGED
|
@@ -898,6 +898,95 @@ type XpathSelectorExtended = z.infer<typeof XpathSelectorExtended>;
|
|
|
898
898
|
declare const xpathSelectorSchema: JSONSchemaType<XpathSelector>;
|
|
899
899
|
declare const xpathSelectorExtendedSchema: JSONSchemaType<Required<XpathSelector>>;
|
|
900
900
|
|
|
901
|
+
declare const CssSelector: z.ZodObject<{
|
|
902
|
+
id: z.ZodString;
|
|
903
|
+
type: z.ZodTuple<[z.ZodLiteral<"CssSelector">, z.ZodLiteral<"crm:E73_Information_Object">], null>;
|
|
904
|
+
value: z.ZodString;
|
|
905
|
+
}, "strip", z.ZodTypeAny, {
|
|
906
|
+
id: string;
|
|
907
|
+
type: ["CssSelector", "crm:E73_Information_Object"];
|
|
908
|
+
value: string;
|
|
909
|
+
}, {
|
|
910
|
+
id: string;
|
|
911
|
+
type: ["CssSelector", "crm:E73_Information_Object"];
|
|
912
|
+
value: string;
|
|
913
|
+
}>;
|
|
914
|
+
type CssSelector = z.infer<typeof CssSelector>;
|
|
915
|
+
declare const CssSelectorExtended: z.ZodObject<{
|
|
916
|
+
id: z.ZodString;
|
|
917
|
+
type: z.ZodTuple<[z.ZodLiteral<"CssSelector">, z.ZodLiteral<"crm:E73_Information_Object">], null>;
|
|
918
|
+
value: z.ZodString;
|
|
919
|
+
refinedBy: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
920
|
+
id: z.ZodString;
|
|
921
|
+
type: z.ZodTuple<[z.ZodLiteral<"TextPositionSelector">, z.ZodLiteral<"crm:E73_Information_Object">], null>;
|
|
922
|
+
start: z.ZodNumber;
|
|
923
|
+
end: z.ZodNumber;
|
|
924
|
+
}, "strip", z.ZodTypeAny, {
|
|
925
|
+
id: string;
|
|
926
|
+
type: ["TextPositionSelector", "crm:E73_Information_Object"];
|
|
927
|
+
start: number;
|
|
928
|
+
end: number;
|
|
929
|
+
}, {
|
|
930
|
+
id: string;
|
|
931
|
+
type: ["TextPositionSelector", "crm:E73_Information_Object"];
|
|
932
|
+
start: number;
|
|
933
|
+
end: number;
|
|
934
|
+
}>, z.ZodObject<{
|
|
935
|
+
id: z.ZodString;
|
|
936
|
+
type: z.ZodTuple<[z.ZodLiteral<"TextQuoteSelector">, z.ZodLiteral<"crm:E33_Linguistic_Object">], null>;
|
|
937
|
+
exact: z.ZodString;
|
|
938
|
+
prefix: z.ZodString;
|
|
939
|
+
suffix: z.ZodString;
|
|
940
|
+
}, "strip", z.ZodTypeAny, {
|
|
941
|
+
id: string;
|
|
942
|
+
type: ["TextQuoteSelector", "crm:E33_Linguistic_Object"];
|
|
943
|
+
exact: string;
|
|
944
|
+
prefix: string;
|
|
945
|
+
suffix: string;
|
|
946
|
+
}, {
|
|
947
|
+
id: string;
|
|
948
|
+
type: ["TextQuoteSelector", "crm:E33_Linguistic_Object"];
|
|
949
|
+
exact: string;
|
|
950
|
+
prefix: string;
|
|
951
|
+
suffix: string;
|
|
952
|
+
}>]>>;
|
|
953
|
+
}, "strip", z.ZodTypeAny, {
|
|
954
|
+
id: string;
|
|
955
|
+
type: ["CssSelector", "crm:E73_Information_Object"];
|
|
956
|
+
value: string;
|
|
957
|
+
refinedBy?: {
|
|
958
|
+
id: string;
|
|
959
|
+
type: ["TextPositionSelector", "crm:E73_Information_Object"];
|
|
960
|
+
start: number;
|
|
961
|
+
end: number;
|
|
962
|
+
} | {
|
|
963
|
+
id: string;
|
|
964
|
+
type: ["TextQuoteSelector", "crm:E33_Linguistic_Object"];
|
|
965
|
+
exact: string;
|
|
966
|
+
prefix: string;
|
|
967
|
+
suffix: string;
|
|
968
|
+
} | undefined;
|
|
969
|
+
}, {
|
|
970
|
+
id: string;
|
|
971
|
+
type: ["CssSelector", "crm:E73_Information_Object"];
|
|
972
|
+
value: string;
|
|
973
|
+
refinedBy?: {
|
|
974
|
+
id: string;
|
|
975
|
+
type: ["TextPositionSelector", "crm:E73_Information_Object"];
|
|
976
|
+
start: number;
|
|
977
|
+
end: number;
|
|
978
|
+
} | {
|
|
979
|
+
id: string;
|
|
980
|
+
type: ["TextQuoteSelector", "crm:E33_Linguistic_Object"];
|
|
981
|
+
exact: string;
|
|
982
|
+
prefix: string;
|
|
983
|
+
suffix: string;
|
|
984
|
+
} | undefined;
|
|
985
|
+
}>;
|
|
986
|
+
type CssSelectorExtended = z.infer<typeof CssSelectorExtended>;
|
|
987
|
+
declare const cssSelectorSchema: JSONSchemaType<CssSelector>;
|
|
988
|
+
declare const cssSelectorExtendedSchema: JSONSchemaType<Required<CssSelectorExtended>>;
|
|
989
|
+
|
|
901
990
|
declare const selectorIdDescription = "UUID that identifies the selector.";
|
|
902
991
|
declare const selectorRefinedByDescription = "The relationship between a broader selector and the more specific selector that should be applied to the results of the first.";
|
|
903
992
|
declare const Selector: z.ZodUnion<[z.ZodObject<{
|
|
@@ -7763,6 +7852,8 @@ type index_ConceptualObject = ConceptualObject;
|
|
|
7763
7852
|
type index_ConceptualObjectEntityType = ConceptualObjectEntityType;
|
|
7764
7853
|
type index_Correction = Correction;
|
|
7765
7854
|
type index_CorrectionEntityType = CorrectionEntityType;
|
|
7855
|
+
type index_CssSelector = CssSelector;
|
|
7856
|
+
type index_CssSelectorExtended = CssSelectorExtended;
|
|
7766
7857
|
declare const index_DATE_RANGE_PATTERN: typeof DATE_RANGE_PATTERN;
|
|
7767
7858
|
type index_Date = Date;
|
|
7768
7859
|
type index_DateEntityType = DateEntityType;
|
|
@@ -7825,6 +7916,8 @@ declare const index_conceptualObjectSchema: typeof conceptualObjectSchema;
|
|
|
7825
7916
|
declare const index_contextUri: typeof contextUri;
|
|
7826
7917
|
declare const index_correctionEntityTypeSchema: typeof correctionEntityTypeSchema;
|
|
7827
7918
|
declare const index_correctionSchema: typeof correctionSchema;
|
|
7919
|
+
declare const index_cssSelectorExtendedSchema: typeof cssSelectorExtendedSchema;
|
|
7920
|
+
declare const index_cssSelectorSchema: typeof cssSelectorSchema;
|
|
7828
7921
|
declare const index_dateEntityTypeSchema: typeof dateEntityTypeSchema;
|
|
7829
7922
|
declare const index_dateSchema: typeof dateSchema;
|
|
7830
7923
|
declare const index_definitionSchema: typeof definitionSchema;
|
|
@@ -7878,7 +7971,7 @@ declare const index_workSchema: typeof workSchema;
|
|
|
7878
7971
|
declare const index_xpathSelectorExtendedSchema: typeof xpathSelectorExtendedSchema;
|
|
7879
7972
|
declare const index_xpathSelectorSchema: typeof xpathSelectorSchema;
|
|
7880
7973
|
declare namespace index {
|
|
7881
|
-
export { type index_Body as Body, type index_BodyChoice as BodyChoice, type index_BodyEntityType as BodyEntityType, type index_Certainty as Certainty, type index_Citation as Citation, type index_CitationEntityType as CitationEntityType, type index_ConceptualObject as ConceptualObject, type index_ConceptualObjectEntityType as ConceptualObjectEntityType, type index_Correction as Correction, type index_CorrectionEntityType as CorrectionEntityType, index_DATE_RANGE_PATTERN as DATE_RANGE_PATTERN, type index_Date as Date, type index_DateEntityType as DateEntityType, type index_Definition as Definition, type index_Description as Description, type index_Event as Event, type index_EventEntityType as EventEntityType, type index_Format as Format, type index_Group as Group, type index_Keyword as Keyword, type index_KeywordEntityType as KeywordEntityType, type index_KeywordFolksnomy as KeywordFolksnomy, type index_KeywordFolksnomyEntityType as KeywordFolksnomyEntityType, type index_Label as Label, type index_Language as Language, type index_Link as Link, type index_LinkEntityType as LinkEntityType, type index_ModeExistence as ModeExistence, type index_Motivation as Motivation, type index_Note as Note, type index_NoteEntityType as NoteEntityType, type index_Organization as Organization, type index_OrganizationEntityType as OrganizationEntityType, type index_Person as Person, type index_PersonEntityType as PersonEntityType, type index_PhysicalThing as PhysicalThing, type index_PhysicalThingEntityType as PhysicalThingEntityType, type index_Place as Place, type index_PlaceEntityType as PlaceEntityType, type index_Precision as Precision, type index_Quality as Quality, type index_RangeSelector as RangeSelector, type index_Selector as Selector, type index_Software as Software, type index_Source as Source, type index_Target as Target, type index_TextPositionSelector as TextPositionSelector, type index_TextPositionSelectorExtended as TextPositionSelectorExtended, type index_TextQuoteSelector as TextQuoteSelector, type index_TextQuoteSelectorExtended as TextQuoteSelectorExtended, type index_User as User, index_VERSION as VERSION, type index_ValidateResult as ValidateResult, type index_ValidationError as ValidationError, type index_WebAnnotation as WebAnnotation, type index_Work as Work, type index_WorkEntityType as WorkEntityType, type index_XpathSelector as XpathSelector, type index_XpathSelectorExtended as XpathSelectorExtended, index_ajv as ajv, index_bodyChoiceSchema as bodyChoiceSchema, index_bodyEntityTypeSchema as bodyEntityTypeSchema, index_bodyIdDescription as bodyIdDescription, index_bodySchema as bodySchema, index_certaintySchema as certaintySchema, index_citationEntityTypeSchema as citationEntityTypeSchema, index_citationSchema as citationSchema, index_conceptualObjectEntityTypeSchema as conceptualObjectEntityTypeSchema, index_conceptualObjectSchema as conceptualObjectSchema, index_contextUri as contextUri, index_correctionEntityTypeSchema as correctionEntityTypeSchema, index_correctionSchema as correctionSchema, index_dateEntityTypeSchema as dateEntityTypeSchema, index_dateSchema as dateSchema, index_definitionSchema as definitionSchema, index_defsId as defsId, index_descriptionSchema as descriptionSchema, index_eventEntityTypeSchema as eventEntityTypeSchema, index_eventSchema as eventSchema, index_formatSchema as formatSchema, index_groupSchema as groupSchema, type index_isIdentifiedBy as isIdentifiedBy, index_isIndentifyBySchema as isIndentifyBySchema, index_keywordEntityTypeSchema as keywordEntityTypeSchema, index_keywordFolksnomyEntityTypeSchema as keywordFolksnomyEntityTypeSchema, index_keywordFolksnomySchema as keywordFolksnomySchema, index_keywordSchema as keywordSchema, index_labelSchema as labelSchema, index_languageSchema as languageSchema, index_linkEntityTypeSchema as linkEntityTypeSchema, index_linkSchema as linkSchema, index_modeExistenceSchema as modeExistenceSchema, index_noteEntityTypeSchema as noteEntityTypeSchema, index_noteSchema as noteSchema, index_organizationEntityTypeSchema as organizationEntityTypeSchema, index_organizationSchema as organizationSchema, index_personEntityTypeSchema as personEntityTypeSchema, index_personSchema as personSchema, index_physicalThingEntityTypeSchema as physicalThingEntityTypeSchema, index_physicalThingSchema as physicalThingSchema, index_placeEntityTypeSchema as placeEntityTypeSchema, index_placeSchema as placeSchema, index_precisionSchema as precisionSchema, index_rangeSelectorSchema as rangeSelectorSchema, index_schemaContext as schemaContext, index_schemaId as schemaId, index_selectorIdDescription as selectorIdDescription, index_selectorRefinedByDescription as selectorRefinedByDescription, index_selectorSchema as selectorSchema, index_softwareSchema as softwareSchema, index_sourceSchema as sourceSchema, index_targetSchema as targetSchema, index_textPositionSelectorExtendedSchema as textPositionSelectorExtendedSchema, index_textPositionSelectorSchema as textPositionSelectorSchema, index_textQuoteSelectorExtendedSchema as textQuoteSelectorExtendedSchema, index_textQuoteSelectorSchema as textQuoteSelectorSchema, index_userSchema as userSchema, index_validate as validate, index_validator as validator, index_webAnnotationSchema as webAnnotationSchema, index_workEntityTypeSchema as workEntityTypeSchema, index_workSchema as workSchema, index_xpathSelectorExtendedSchema as xpathSelectorExtendedSchema, index_xpathSelectorSchema as xpathSelectorSchema };
|
|
7974
|
+
export { type index_Body as Body, type index_BodyChoice as BodyChoice, type index_BodyEntityType as BodyEntityType, type index_Certainty as Certainty, type index_Citation as Citation, type index_CitationEntityType as CitationEntityType, type index_ConceptualObject as ConceptualObject, type index_ConceptualObjectEntityType as ConceptualObjectEntityType, type index_Correction as Correction, type index_CorrectionEntityType as CorrectionEntityType, type index_CssSelector as CssSelector, type index_CssSelectorExtended as CssSelectorExtended, index_DATE_RANGE_PATTERN as DATE_RANGE_PATTERN, type index_Date as Date, type index_DateEntityType as DateEntityType, type index_Definition as Definition, type index_Description as Description, type index_Event as Event, type index_EventEntityType as EventEntityType, type index_Format as Format, type index_Group as Group, type index_Keyword as Keyword, type index_KeywordEntityType as KeywordEntityType, type index_KeywordFolksnomy as KeywordFolksnomy, type index_KeywordFolksnomyEntityType as KeywordFolksnomyEntityType, type index_Label as Label, type index_Language as Language, type index_Link as Link, type index_LinkEntityType as LinkEntityType, type index_ModeExistence as ModeExistence, type index_Motivation as Motivation, type index_Note as Note, type index_NoteEntityType as NoteEntityType, type index_Organization as Organization, type index_OrganizationEntityType as OrganizationEntityType, type index_Person as Person, type index_PersonEntityType as PersonEntityType, type index_PhysicalThing as PhysicalThing, type index_PhysicalThingEntityType as PhysicalThingEntityType, type index_Place as Place, type index_PlaceEntityType as PlaceEntityType, type index_Precision as Precision, type index_Quality as Quality, type index_RangeSelector as RangeSelector, type index_Selector as Selector, type index_Software as Software, type index_Source as Source, type index_Target as Target, type index_TextPositionSelector as TextPositionSelector, type index_TextPositionSelectorExtended as TextPositionSelectorExtended, type index_TextQuoteSelector as TextQuoteSelector, type index_TextQuoteSelectorExtended as TextQuoteSelectorExtended, type index_User as User, index_VERSION as VERSION, type index_ValidateResult as ValidateResult, type index_ValidationError as ValidationError, type index_WebAnnotation as WebAnnotation, type index_Work as Work, type index_WorkEntityType as WorkEntityType, type index_XpathSelector as XpathSelector, type index_XpathSelectorExtended as XpathSelectorExtended, index_ajv as ajv, index_bodyChoiceSchema as bodyChoiceSchema, index_bodyEntityTypeSchema as bodyEntityTypeSchema, index_bodyIdDescription as bodyIdDescription, index_bodySchema as bodySchema, index_certaintySchema as certaintySchema, index_citationEntityTypeSchema as citationEntityTypeSchema, index_citationSchema as citationSchema, index_conceptualObjectEntityTypeSchema as conceptualObjectEntityTypeSchema, index_conceptualObjectSchema as conceptualObjectSchema, index_contextUri as contextUri, index_correctionEntityTypeSchema as correctionEntityTypeSchema, index_correctionSchema as correctionSchema, index_cssSelectorExtendedSchema as cssSelectorExtendedSchema, index_cssSelectorSchema as cssSelectorSchema, index_dateEntityTypeSchema as dateEntityTypeSchema, index_dateSchema as dateSchema, index_definitionSchema as definitionSchema, index_defsId as defsId, index_descriptionSchema as descriptionSchema, index_eventEntityTypeSchema as eventEntityTypeSchema, index_eventSchema as eventSchema, index_formatSchema as formatSchema, index_groupSchema as groupSchema, type index_isIdentifiedBy as isIdentifiedBy, index_isIndentifyBySchema as isIndentifyBySchema, index_keywordEntityTypeSchema as keywordEntityTypeSchema, index_keywordFolksnomyEntityTypeSchema as keywordFolksnomyEntityTypeSchema, index_keywordFolksnomySchema as keywordFolksnomySchema, index_keywordSchema as keywordSchema, index_labelSchema as labelSchema, index_languageSchema as languageSchema, index_linkEntityTypeSchema as linkEntityTypeSchema, index_linkSchema as linkSchema, index_modeExistenceSchema as modeExistenceSchema, index_noteEntityTypeSchema as noteEntityTypeSchema, index_noteSchema as noteSchema, index_organizationEntityTypeSchema as organizationEntityTypeSchema, index_organizationSchema as organizationSchema, index_personEntityTypeSchema as personEntityTypeSchema, index_personSchema as personSchema, index_physicalThingEntityTypeSchema as physicalThingEntityTypeSchema, index_physicalThingSchema as physicalThingSchema, index_placeEntityTypeSchema as placeEntityTypeSchema, index_placeSchema as placeSchema, index_precisionSchema as precisionSchema, index_rangeSelectorSchema as rangeSelectorSchema, index_schemaContext as schemaContext, index_schemaId as schemaId, index_selectorIdDescription as selectorIdDescription, index_selectorRefinedByDescription as selectorRefinedByDescription, index_selectorSchema as selectorSchema, index_softwareSchema as softwareSchema, index_sourceSchema as sourceSchema, index_targetSchema as targetSchema, index_textPositionSelectorExtendedSchema as textPositionSelectorExtendedSchema, index_textPositionSelectorSchema as textPositionSelectorSchema, index_textQuoteSelectorExtendedSchema as textQuoteSelectorExtendedSchema, index_textQuoteSelectorSchema as textQuoteSelectorSchema, index_userSchema as userSchema, index_validate as validate, index_validator as validator, index_webAnnotationSchema as webAnnotationSchema, index_workEntityTypeSchema as workEntityTypeSchema, index_workSchema as workSchema, index_xpathSelectorExtendedSchema as xpathSelectorExtendedSchema, index_xpathSelectorSchema as xpathSelectorSchema };
|
|
7882
7975
|
}
|
|
7883
7976
|
|
|
7884
|
-
export { Body, BodyChoice, BodyEntityType, Certainty, Citation, CitationEntityType, ConceptualObject, ConceptualObjectEntityType, Correction, CorrectionEntityType, DATE_RANGE_PATTERN, Date, DateEntityType, type Definition, Description, Event, EventEntityType, Format, Group, Keyword, KeywordEntityType, KeywordFolksnomy, KeywordFolksnomyEntityType, Label, Language, Link, LinkEntityType, ModeExistence, Motivation, Note, NoteEntityType, Organization, OrganizationEntityType, Person, PersonEntityType, PhysicalThing, PhysicalThingEntityType, Place, PlaceEntityType, Precision, Quality, RangeSelector, Selector, Software, Source, Target, TextPositionSelector, TextPositionSelectorExtended, TextQuoteSelector, TextQuoteSelectorExtended, User, VERSION, ValidateResult, ValidationError, WebAnnotation, Work, WorkEntityType, XpathSelector, XpathSelectorExtended, ajv, bodyChoiceSchema, bodyEntityTypeSchema, bodyIdDescription, bodySchema, certaintySchema, citationEntityTypeSchema, citationSchema, conceptualObjectEntityTypeSchema, conceptualObjectSchema, contextUri, correctionEntityTypeSchema, correctionSchema, dateEntityTypeSchema, dateSchema, definitionSchema, defsId, descriptionSchema, eventEntityTypeSchema, eventSchema, formatSchema, groupSchema, isIdentifiedBy, isIndentifyBySchema, keywordEntityTypeSchema, keywordFolksnomyEntityTypeSchema, keywordFolksnomySchema, keywordSchema, labelSchema, languageSchema, linkEntityTypeSchema, linkSchema, modeExistenceSchema, noteEntityTypeSchema, noteSchema, organizationEntityTypeSchema, organizationSchema, personEntityTypeSchema, personSchema, physicalThingEntityTypeSchema, physicalThingSchema, placeEntityTypeSchema, placeSchema, precisionSchema, rangeSelectorSchema, schemaContext, schemaId, selectorIdDescription, selectorRefinedByDescription, selectorSchema, softwareSchema, sourceSchema, targetSchema, textPositionSelectorExtendedSchema, textPositionSelectorSchema, textQuoteSelectorExtendedSchema, textQuoteSelectorSchema, userSchema, index as v1, validate, validator, webAnnotationSchema, workEntityTypeSchema, workSchema, xpathSelectorExtendedSchema, xpathSelectorSchema };
|
|
7977
|
+
export { Body, BodyChoice, BodyEntityType, Certainty, Citation, CitationEntityType, ConceptualObject, ConceptualObjectEntityType, Correction, CorrectionEntityType, CssSelector, CssSelectorExtended, DATE_RANGE_PATTERN, Date, DateEntityType, type Definition, Description, Event, EventEntityType, Format, Group, Keyword, KeywordEntityType, KeywordFolksnomy, KeywordFolksnomyEntityType, Label, Language, Link, LinkEntityType, ModeExistence, Motivation, Note, NoteEntityType, Organization, OrganizationEntityType, Person, PersonEntityType, PhysicalThing, PhysicalThingEntityType, Place, PlaceEntityType, Precision, Quality, RangeSelector, Selector, Software, Source, Target, TextPositionSelector, TextPositionSelectorExtended, TextQuoteSelector, TextQuoteSelectorExtended, User, VERSION, ValidateResult, ValidationError, WebAnnotation, Work, WorkEntityType, XpathSelector, XpathSelectorExtended, ajv, bodyChoiceSchema, bodyEntityTypeSchema, bodyIdDescription, bodySchema, certaintySchema, citationEntityTypeSchema, citationSchema, conceptualObjectEntityTypeSchema, conceptualObjectSchema, contextUri, correctionEntityTypeSchema, correctionSchema, cssSelectorExtendedSchema, cssSelectorSchema, dateEntityTypeSchema, dateSchema, definitionSchema, defsId, descriptionSchema, eventEntityTypeSchema, eventSchema, formatSchema, groupSchema, isIdentifiedBy, isIndentifyBySchema, keywordEntityTypeSchema, keywordFolksnomyEntityTypeSchema, keywordFolksnomySchema, keywordSchema, labelSchema, languageSchema, linkEntityTypeSchema, linkSchema, modeExistenceSchema, noteEntityTypeSchema, noteSchema, organizationEntityTypeSchema, organizationSchema, personEntityTypeSchema, personSchema, physicalThingEntityTypeSchema, physicalThingSchema, placeEntityTypeSchema, placeSchema, precisionSchema, rangeSelectorSchema, schemaContext, schemaId, selectorIdDescription, selectorRefinedByDescription, selectorSchema, softwareSchema, sourceSchema, targetSchema, textPositionSelectorExtendedSchema, textPositionSelectorSchema, textQuoteSelectorExtendedSchema, textQuoteSelectorSchema, userSchema, index as v1, validate, validator, webAnnotationSchema, workEntityTypeSchema, workSchema, xpathSelectorExtendedSchema, xpathSelectorSchema };
|
package/dist/index.js
CHANGED
|
@@ -40,6 +40,8 @@ __export(src_exports, {
|
|
|
40
40
|
ConceptualObjectEntityType: () => ConceptualObjectEntityType,
|
|
41
41
|
Correction: () => Correction,
|
|
42
42
|
CorrectionEntityType: () => CorrectionEntityType,
|
|
43
|
+
CssSelector: () => CssSelector,
|
|
44
|
+
CssSelectorExtended: () => CssSelectorExtended,
|
|
43
45
|
DATE_RANGE_PATTERN: () => DATE_RANGE_PATTERN,
|
|
44
46
|
Date: () => Date,
|
|
45
47
|
DateEntityType: () => DateEntityType,
|
|
@@ -99,6 +101,8 @@ __export(src_exports, {
|
|
|
99
101
|
contextUri: () => contextUri,
|
|
100
102
|
correctionEntityTypeSchema: () => correctionEntityTypeSchema,
|
|
101
103
|
correctionSchema: () => correctionSchema,
|
|
104
|
+
cssSelectorExtendedSchema: () => cssSelectorExtendedSchema,
|
|
105
|
+
cssSelectorSchema: () => cssSelectorSchema,
|
|
102
106
|
dateEntityTypeSchema: () => dateEntityTypeSchema,
|
|
103
107
|
dateSchema: () => dateSchema,
|
|
104
108
|
definitionSchema: () => definitionSchema,
|
|
@@ -2119,6 +2123,8 @@ __export(v1_exports, {
|
|
|
2119
2123
|
ConceptualObjectEntityType: () => ConceptualObjectEntityType,
|
|
2120
2124
|
Correction: () => Correction,
|
|
2121
2125
|
CorrectionEntityType: () => CorrectionEntityType,
|
|
2126
|
+
CssSelector: () => CssSelector,
|
|
2127
|
+
CssSelectorExtended: () => CssSelectorExtended,
|
|
2122
2128
|
DATE_RANGE_PATTERN: () => DATE_RANGE_PATTERN,
|
|
2123
2129
|
Date: () => Date,
|
|
2124
2130
|
DateEntityType: () => DateEntityType,
|
|
@@ -2178,6 +2184,8 @@ __export(v1_exports, {
|
|
|
2178
2184
|
contextUri: () => contextUri,
|
|
2179
2185
|
correctionEntityTypeSchema: () => correctionEntityTypeSchema,
|
|
2180
2186
|
correctionSchema: () => correctionSchema,
|
|
2187
|
+
cssSelectorExtendedSchema: () => cssSelectorExtendedSchema,
|
|
2188
|
+
cssSelectorSchema: () => cssSelectorSchema,
|
|
2181
2189
|
dateEntityTypeSchema: () => dateEntityTypeSchema,
|
|
2182
2190
|
dateSchema: () => dateSchema,
|
|
2183
2191
|
definitionSchema: () => definitionSchema,
|
|
@@ -2243,6 +2251,8 @@ __export(v1_exports, {
|
|
|
2243
2251
|
ConceptualObjectEntityType,
|
|
2244
2252
|
Correction,
|
|
2245
2253
|
CorrectionEntityType,
|
|
2254
|
+
CssSelector,
|
|
2255
|
+
CssSelectorExtended,
|
|
2246
2256
|
DATE_RANGE_PATTERN,
|
|
2247
2257
|
Date,
|
|
2248
2258
|
DateEntityType,
|
|
@@ -2302,6 +2312,8 @@ __export(v1_exports, {
|
|
|
2302
2312
|
contextUri,
|
|
2303
2313
|
correctionEntityTypeSchema,
|
|
2304
2314
|
correctionSchema,
|
|
2315
|
+
cssSelectorExtendedSchema,
|
|
2316
|
+
cssSelectorSchema,
|
|
2305
2317
|
dateEntityTypeSchema,
|
|
2306
2318
|
dateSchema,
|
|
2307
2319
|
definitionSchema,
|
package/dist/index.mjs
CHANGED
|
@@ -1968,6 +1968,8 @@ __export(v1_exports, {
|
|
|
1968
1968
|
ConceptualObjectEntityType: () => ConceptualObjectEntityType,
|
|
1969
1969
|
Correction: () => Correction,
|
|
1970
1970
|
CorrectionEntityType: () => CorrectionEntityType,
|
|
1971
|
+
CssSelector: () => CssSelector,
|
|
1972
|
+
CssSelectorExtended: () => CssSelectorExtended,
|
|
1971
1973
|
DATE_RANGE_PATTERN: () => DATE_RANGE_PATTERN,
|
|
1972
1974
|
Date: () => Date,
|
|
1973
1975
|
DateEntityType: () => DateEntityType,
|
|
@@ -2027,6 +2029,8 @@ __export(v1_exports, {
|
|
|
2027
2029
|
contextUri: () => contextUri,
|
|
2028
2030
|
correctionEntityTypeSchema: () => correctionEntityTypeSchema,
|
|
2029
2031
|
correctionSchema: () => correctionSchema,
|
|
2032
|
+
cssSelectorExtendedSchema: () => cssSelectorExtendedSchema,
|
|
2033
|
+
cssSelectorSchema: () => cssSelectorSchema,
|
|
2030
2034
|
dateEntityTypeSchema: () => dateEntityTypeSchema,
|
|
2031
2035
|
dateSchema: () => dateSchema,
|
|
2032
2036
|
definitionSchema: () => definitionSchema,
|
|
@@ -2091,6 +2095,8 @@ export {
|
|
|
2091
2095
|
ConceptualObjectEntityType,
|
|
2092
2096
|
Correction,
|
|
2093
2097
|
CorrectionEntityType,
|
|
2098
|
+
CssSelector,
|
|
2099
|
+
CssSelectorExtended,
|
|
2094
2100
|
DATE_RANGE_PATTERN,
|
|
2095
2101
|
Date,
|
|
2096
2102
|
DateEntityType,
|
|
@@ -2150,6 +2156,8 @@ export {
|
|
|
2150
2156
|
contextUri,
|
|
2151
2157
|
correctionEntityTypeSchema,
|
|
2152
2158
|
correctionSchema,
|
|
2159
|
+
cssSelectorExtendedSchema,
|
|
2160
|
+
cssSelectorSchema,
|
|
2153
2161
|
dateEntityTypeSchema,
|
|
2154
2162
|
dateSchema,
|
|
2155
2163
|
definitionSchema,
|