@unhead/schema-org 1.3.9 → 1.4.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.
@@ -0,0 +1,70 @@
1
+ import { T as Thing, S as SchemaOrgNodeDefinition, a as SchemaOrgNode, M as MetaInput, R as ResolvedMeta, b as SchemaOrgGraph, A as Arrayable, P as PostalAddress, c as AggregateOffer, d as AggregateRating, e as Article, B as BreadcrumbList, C as Comment, E as Event, V as VirtualLocation, f as Place, H as HowTo, g as HowToStep, I as ImageObject, J as JobPosting, L as LocalBusiness, O as Offer, h as OpeningHoursSpecification, i as Organization, j as Person, k as Product, Q as Question, l as Recipe, m as Review, n as VideoObject, W as WebPage, o as WebSite, p as Book, q as Course, r as ItemList, s as ListItem, t as Movie, u as SearchAction, v as ReadAction, w as SoftwareApp, x as BookEdition } from './shared/schema-org.a5249ce4.cjs';
2
+ export { z as AggregateOfferSimple, F as AggregateRatingSimple, K as ArticleSimple, Y as BookEditionSimple, X as BookSimple, a0 as BreadcrumbSimple, a3 as CommentSimple, a5 as CourseSimple, a7 as EventSimple, aj as HowToDirection, af as HowToId, ae as HowToSimple, ah as HowToStepSimple, bg as Id, bf as IdReference, ba as Identity, an as ImageSimple, al as ItemListSimple, ap as JobPostingSimple, ar as ListItemSimple, at as LocalBusinessSimple, av as MovieSimple, b8 as NodeRelation, b9 as NodeRelations, aQ as NutritionInformation, ax as OfferSimple, az as OpeningHoursSimple, bc as OptionalSchemaOrgPrefix, aB as OrganizationSimple, aD as PersonSimple, ac as PlaceSimple, aF as PostalAddressSimple, N as PrimaryArticleId, _ as PrimaryBookId, a1 as PrimaryBreadcrumbId, a8 as PrimaryEventId, a_ as PrimaryWebPageId, b3 as PrimaryWebSiteId, aI as ProductId, aH as ProductSimple, aK as QuestionSimple, aN as Rating, aM as RatingSimple, b0 as ReadActionInput, aR as RecipeId, aP as RecipeSimple, bb as ResolvableDate, aV as ReviewSimple, b7 as SchemaOrgUnheadPlugin, b5 as SearchActionInput, aT as SoftwareAppSimple, bd as UserConfig, aX as VideoSimple, aa as VirtualLocationSimple, aZ as WebPageSimple, b2 as WebSiteSimple, be as WithResolver, aG as addressResolver, D as aggregateOfferResolver, G as aggregateRatingResolver, U as articleResolver, Z as bookEditionResolver, $ as bookResolver, a2 as breadcrumbResolver, a4 as commentResolver, a6 as courseResolver, y as createSchemaOrgGraph, a9 as eventResolver, ag as howToResolver, ak as howToStepDirectionResolver, ai as howToStepResolver, ao as imageResolver, am as itemListResolver, aq as jobPostingResolver, as as listItemResolver, au as localBusinessResolver, aw as movieResolver, ay as offerResolver, aA as openingHoursResolver, aC as organizationResolver, aE as personResolver, ad as placeResolver, aJ as productResolver, aL as questionResolver, aO as ratingResolver, b1 as readActionResolver, aS as recipeResolver, aW as reviewResolver, b6 as searchActionResolver, aU as softwareAppResolver, aY as videoResolver, ab as virtualLocationResolver, a$ as webPageResolver, b4 as webSiteResolver } from './shared/schema-org.a5249ce4.cjs';
3
+
4
+ declare function defineSchemaOrgResolver<T extends Thing>(schema: SchemaOrgNodeDefinition<T>): SchemaOrgNodeDefinition<T>;
5
+
6
+ /**
7
+ * Dedupe, flatten and a collection of nodes. Will also sort node keys and remove meta keys.
8
+ * @param nodes
9
+ */
10
+ declare function dedupeNodes(nodes: SchemaOrgNode[]): SchemaOrgNode[];
11
+ declare function normaliseNodes(nodes: SchemaOrgNode[]): SchemaOrgNode[];
12
+
13
+ interface ResolverOptions {
14
+ /**
15
+ * Return single images as an object.
16
+ */
17
+ array?: boolean;
18
+ /**
19
+ * Move added nodes to the root graph.
20
+ */
21
+ root?: boolean;
22
+ /**
23
+ * Generates ids for nodes.
24
+ */
25
+ generateId?: boolean;
26
+ afterResolve?: (node: any) => void;
27
+ }
28
+
29
+ declare function resolveMeta(meta: MetaInput): ResolvedMeta;
30
+ declare function resolveNode<T extends Thing>(node: T, ctx: SchemaOrgGraph, resolver: SchemaOrgNodeDefinition<T>): T;
31
+ declare function resolveNodeId<T extends Thing>(node: T, ctx: SchemaOrgGraph, resolver: SchemaOrgNodeDefinition<T>, resolveAsRoot?: boolean): T;
32
+ declare function resolveRelation(input: Arrayable<any>, ctx: SchemaOrgGraph, fallbackResolver?: SchemaOrgNodeDefinition<any>, options?: ResolverOptions): any;
33
+
34
+ declare function defineAddress<T extends Record<string, any>>(input?: PostalAddress & T): PostalAddress & T;
35
+ declare function defineAggregateOffer<T extends Record<string, any>>(input?: AggregateOffer & T): AggregateOffer & T;
36
+ declare function defineAggregateRating<T extends Record<string, any>>(input?: AggregateRating & T): AggregateRating & T;
37
+ declare function defineArticle<T extends Record<string, any>>(input?: Article & T): Article & T;
38
+ declare function defineBreadcrumb<T extends Record<string, any>>(input?: BreadcrumbList & T): BreadcrumbList & T;
39
+ declare function defineComment<T extends Record<string, any>>(input?: Comment & T): Comment & T;
40
+ declare function defineEvent<T extends Record<string, any>>(input?: Event & T): Event & T;
41
+ declare function defineVirtualLocation<T extends Record<string, any>>(input?: VirtualLocation & T): VirtualLocation & T;
42
+ declare function definePlace<T extends Record<string, any>>(input?: Place & T): Place & T;
43
+ declare function defineHowTo<T extends Record<string, any>>(input?: HowTo & T): HowTo & T;
44
+ declare function defineHowToStep<T extends Record<string, any>>(input?: HowToStep & T): HowToStep & T;
45
+ declare function defineImage<T extends Record<string, any>>(input?: ImageObject & T): ImageObject & T;
46
+ declare function defineJobPosting<T extends Record<string, any>>(input?: JobPosting & T): JobPosting & T;
47
+ declare function defineLocalBusiness<T extends Record<string, any>>(input?: LocalBusiness & T): LocalBusiness & T;
48
+ declare function defineOffer<T extends Record<string, any>>(input?: Offer & T): Offer & T;
49
+ declare function defineOpeningHours<T extends Record<string, any>>(input?: OpeningHoursSpecification & T): OpeningHoursSpecification & T;
50
+ declare function defineOrganization<T extends Record<string, any>>(input?: Organization & T): Organization & T;
51
+ declare function definePerson<T extends Record<string, any>>(input?: Person & T): Person & T;
52
+ declare function defineProduct<T extends Record<string, any>>(input?: Product & T): Product & T;
53
+ declare function defineQuestion<T extends Record<string, any>>(input?: Question & T): Question & T;
54
+ declare function defineRecipe<T extends Record<string, any>>(input?: Recipe & T): Recipe & T;
55
+ declare function defineReview<T extends Record<string, any>>(input?: Review & T): Review & T;
56
+ declare function defineVideo<T extends Record<string, any>>(input?: VideoObject & T): VideoObject & T;
57
+ declare function defineWebPage<T extends Record<string, any>>(input?: WebPage & T): WebPage & T;
58
+ declare function defineWebSite<T extends Record<string, any>>(input?: WebSite & T): WebSite & T;
59
+ declare function defineBook<T extends Record<string, any>>(input?: Book & T): Book & T;
60
+ declare function defineCourse<T extends Record<string, any>>(input?: Course & T): Course & T;
61
+ declare function defineItemList<T extends Record<string, any>>(input?: ItemList & T): ItemList & T;
62
+ declare function defineListItem<T extends Record<string, any>>(input?: ListItem & T): ListItem & T;
63
+ declare function defineMovie<T extends Record<string, any>>(input?: Movie & T): Movie & T;
64
+ declare function defineSearchAction<T extends Record<string, any>>(input?: SearchAction & T): SearchAction & T;
65
+ declare function defineReadAction<T extends Record<string, any>>(input?: ReadAction & T): ReadAction & T;
66
+ declare function defineSoftwareApp<T extends Record<string, any>>(input?: SoftwareApp & T): SoftwareApp & T;
67
+ declare function defineBookEdition<T extends Record<string, any>>(input?: BookEdition & T): BookEdition & T;
68
+ declare function useSchemaOrg(input?: any): any;
69
+
70
+ export { AggregateOffer, AggregateRating, Arrayable, Article, Book, BookEdition, BreadcrumbList, Comment, Course, Event, HowTo, HowToStep, ImageObject, ItemList, JobPosting, ListItem, LocalBusiness, MetaInput, Movie, Offer, OpeningHoursSpecification, Organization, Person, Place, PostalAddress, Product, Question, ReadAction, Recipe, ResolvedMeta, Review, SchemaOrgGraph, SchemaOrgNode, SchemaOrgNodeDefinition, SearchAction, SoftwareApp, Thing, VideoObject, VirtualLocation, WebPage, WebSite, dedupeNodes, defineAddress, defineAggregateOffer, defineAggregateRating, defineArticle, defineBook, defineBookEdition, defineBreadcrumb, defineComment, defineCourse, defineEvent, defineHowTo, defineHowToStep, defineImage, defineItemList, defineJobPosting, defineListItem, defineLocalBusiness, defineMovie, defineOffer, defineOpeningHours, defineOrganization, definePerson, definePlace, defineProduct, defineQuestion, defineReadAction, defineRecipe, defineReview, defineSchemaOrgResolver, defineSearchAction, defineSoftwareApp, defineVideo, defineVirtualLocation, defineWebPage, defineWebSite, normaliseNodes, resolveMeta, resolveNode, resolveNodeId, resolveRelation, useSchemaOrg };
@@ -0,0 +1,70 @@
1
+ import { T as Thing, S as SchemaOrgNodeDefinition, a as SchemaOrgNode, M as MetaInput, R as ResolvedMeta, b as SchemaOrgGraph, A as Arrayable, P as PostalAddress, c as AggregateOffer, d as AggregateRating, e as Article, B as BreadcrumbList, C as Comment, E as Event, V as VirtualLocation, f as Place, H as HowTo, g as HowToStep, I as ImageObject, J as JobPosting, L as LocalBusiness, O as Offer, h as OpeningHoursSpecification, i as Organization, j as Person, k as Product, Q as Question, l as Recipe, m as Review, n as VideoObject, W as WebPage, o as WebSite, p as Book, q as Course, r as ItemList, s as ListItem, t as Movie, u as SearchAction, v as ReadAction, w as SoftwareApp, x as BookEdition } from './shared/schema-org.a5249ce4.mjs';
2
+ export { z as AggregateOfferSimple, F as AggregateRatingSimple, K as ArticleSimple, Y as BookEditionSimple, X as BookSimple, a0 as BreadcrumbSimple, a3 as CommentSimple, a5 as CourseSimple, a7 as EventSimple, aj as HowToDirection, af as HowToId, ae as HowToSimple, ah as HowToStepSimple, bg as Id, bf as IdReference, ba as Identity, an as ImageSimple, al as ItemListSimple, ap as JobPostingSimple, ar as ListItemSimple, at as LocalBusinessSimple, av as MovieSimple, b8 as NodeRelation, b9 as NodeRelations, aQ as NutritionInformation, ax as OfferSimple, az as OpeningHoursSimple, bc as OptionalSchemaOrgPrefix, aB as OrganizationSimple, aD as PersonSimple, ac as PlaceSimple, aF as PostalAddressSimple, N as PrimaryArticleId, _ as PrimaryBookId, a1 as PrimaryBreadcrumbId, a8 as PrimaryEventId, a_ as PrimaryWebPageId, b3 as PrimaryWebSiteId, aI as ProductId, aH as ProductSimple, aK as QuestionSimple, aN as Rating, aM as RatingSimple, b0 as ReadActionInput, aR as RecipeId, aP as RecipeSimple, bb as ResolvableDate, aV as ReviewSimple, b7 as SchemaOrgUnheadPlugin, b5 as SearchActionInput, aT as SoftwareAppSimple, bd as UserConfig, aX as VideoSimple, aa as VirtualLocationSimple, aZ as WebPageSimple, b2 as WebSiteSimple, be as WithResolver, aG as addressResolver, D as aggregateOfferResolver, G as aggregateRatingResolver, U as articleResolver, Z as bookEditionResolver, $ as bookResolver, a2 as breadcrumbResolver, a4 as commentResolver, a6 as courseResolver, y as createSchemaOrgGraph, a9 as eventResolver, ag as howToResolver, ak as howToStepDirectionResolver, ai as howToStepResolver, ao as imageResolver, am as itemListResolver, aq as jobPostingResolver, as as listItemResolver, au as localBusinessResolver, aw as movieResolver, ay as offerResolver, aA as openingHoursResolver, aC as organizationResolver, aE as personResolver, ad as placeResolver, aJ as productResolver, aL as questionResolver, aO as ratingResolver, b1 as readActionResolver, aS as recipeResolver, aW as reviewResolver, b6 as searchActionResolver, aU as softwareAppResolver, aY as videoResolver, ab as virtualLocationResolver, a$ as webPageResolver, b4 as webSiteResolver } from './shared/schema-org.a5249ce4.mjs';
3
+
4
+ declare function defineSchemaOrgResolver<T extends Thing>(schema: SchemaOrgNodeDefinition<T>): SchemaOrgNodeDefinition<T>;
5
+
6
+ /**
7
+ * Dedupe, flatten and a collection of nodes. Will also sort node keys and remove meta keys.
8
+ * @param nodes
9
+ */
10
+ declare function dedupeNodes(nodes: SchemaOrgNode[]): SchemaOrgNode[];
11
+ declare function normaliseNodes(nodes: SchemaOrgNode[]): SchemaOrgNode[];
12
+
13
+ interface ResolverOptions {
14
+ /**
15
+ * Return single images as an object.
16
+ */
17
+ array?: boolean;
18
+ /**
19
+ * Move added nodes to the root graph.
20
+ */
21
+ root?: boolean;
22
+ /**
23
+ * Generates ids for nodes.
24
+ */
25
+ generateId?: boolean;
26
+ afterResolve?: (node: any) => void;
27
+ }
28
+
29
+ declare function resolveMeta(meta: MetaInput): ResolvedMeta;
30
+ declare function resolveNode<T extends Thing>(node: T, ctx: SchemaOrgGraph, resolver: SchemaOrgNodeDefinition<T>): T;
31
+ declare function resolveNodeId<T extends Thing>(node: T, ctx: SchemaOrgGraph, resolver: SchemaOrgNodeDefinition<T>, resolveAsRoot?: boolean): T;
32
+ declare function resolveRelation(input: Arrayable<any>, ctx: SchemaOrgGraph, fallbackResolver?: SchemaOrgNodeDefinition<any>, options?: ResolverOptions): any;
33
+
34
+ declare function defineAddress<T extends Record<string, any>>(input?: PostalAddress & T): PostalAddress & T;
35
+ declare function defineAggregateOffer<T extends Record<string, any>>(input?: AggregateOffer & T): AggregateOffer & T;
36
+ declare function defineAggregateRating<T extends Record<string, any>>(input?: AggregateRating & T): AggregateRating & T;
37
+ declare function defineArticle<T extends Record<string, any>>(input?: Article & T): Article & T;
38
+ declare function defineBreadcrumb<T extends Record<string, any>>(input?: BreadcrumbList & T): BreadcrumbList & T;
39
+ declare function defineComment<T extends Record<string, any>>(input?: Comment & T): Comment & T;
40
+ declare function defineEvent<T extends Record<string, any>>(input?: Event & T): Event & T;
41
+ declare function defineVirtualLocation<T extends Record<string, any>>(input?: VirtualLocation & T): VirtualLocation & T;
42
+ declare function definePlace<T extends Record<string, any>>(input?: Place & T): Place & T;
43
+ declare function defineHowTo<T extends Record<string, any>>(input?: HowTo & T): HowTo & T;
44
+ declare function defineHowToStep<T extends Record<string, any>>(input?: HowToStep & T): HowToStep & T;
45
+ declare function defineImage<T extends Record<string, any>>(input?: ImageObject & T): ImageObject & T;
46
+ declare function defineJobPosting<T extends Record<string, any>>(input?: JobPosting & T): JobPosting & T;
47
+ declare function defineLocalBusiness<T extends Record<string, any>>(input?: LocalBusiness & T): LocalBusiness & T;
48
+ declare function defineOffer<T extends Record<string, any>>(input?: Offer & T): Offer & T;
49
+ declare function defineOpeningHours<T extends Record<string, any>>(input?: OpeningHoursSpecification & T): OpeningHoursSpecification & T;
50
+ declare function defineOrganization<T extends Record<string, any>>(input?: Organization & T): Organization & T;
51
+ declare function definePerson<T extends Record<string, any>>(input?: Person & T): Person & T;
52
+ declare function defineProduct<T extends Record<string, any>>(input?: Product & T): Product & T;
53
+ declare function defineQuestion<T extends Record<string, any>>(input?: Question & T): Question & T;
54
+ declare function defineRecipe<T extends Record<string, any>>(input?: Recipe & T): Recipe & T;
55
+ declare function defineReview<T extends Record<string, any>>(input?: Review & T): Review & T;
56
+ declare function defineVideo<T extends Record<string, any>>(input?: VideoObject & T): VideoObject & T;
57
+ declare function defineWebPage<T extends Record<string, any>>(input?: WebPage & T): WebPage & T;
58
+ declare function defineWebSite<T extends Record<string, any>>(input?: WebSite & T): WebSite & T;
59
+ declare function defineBook<T extends Record<string, any>>(input?: Book & T): Book & T;
60
+ declare function defineCourse<T extends Record<string, any>>(input?: Course & T): Course & T;
61
+ declare function defineItemList<T extends Record<string, any>>(input?: ItemList & T): ItemList & T;
62
+ declare function defineListItem<T extends Record<string, any>>(input?: ListItem & T): ListItem & T;
63
+ declare function defineMovie<T extends Record<string, any>>(input?: Movie & T): Movie & T;
64
+ declare function defineSearchAction<T extends Record<string, any>>(input?: SearchAction & T): SearchAction & T;
65
+ declare function defineReadAction<T extends Record<string, any>>(input?: ReadAction & T): ReadAction & T;
66
+ declare function defineSoftwareApp<T extends Record<string, any>>(input?: SoftwareApp & T): SoftwareApp & T;
67
+ declare function defineBookEdition<T extends Record<string, any>>(input?: BookEdition & T): BookEdition & T;
68
+ declare function useSchemaOrg(input?: any): any;
69
+
70
+ export { AggregateOffer, AggregateRating, Arrayable, Article, Book, BookEdition, BreadcrumbList, Comment, Course, Event, HowTo, HowToStep, ImageObject, ItemList, JobPosting, ListItem, LocalBusiness, MetaInput, Movie, Offer, OpeningHoursSpecification, Organization, Person, Place, PostalAddress, Product, Question, ReadAction, Recipe, ResolvedMeta, Review, SchemaOrgGraph, SchemaOrgNode, SchemaOrgNodeDefinition, SearchAction, SoftwareApp, Thing, VideoObject, VirtualLocation, WebPage, WebSite, dedupeNodes, defineAddress, defineAggregateOffer, defineAggregateRating, defineArticle, defineBook, defineBookEdition, defineBreadcrumb, defineComment, defineCourse, defineEvent, defineHowTo, defineHowToStep, defineImage, defineItemList, defineJobPosting, defineListItem, defineLocalBusiness, defineMovie, defineOffer, defineOpeningHours, defineOrganization, definePerson, definePlace, defineProduct, defineQuestion, defineReadAction, defineRecipe, defineReview, defineSchemaOrgResolver, defineSearchAction, defineSoftwareApp, defineVideo, defineVirtualLocation, defineWebPage, defineWebSite, normaliseNodes, resolveMeta, resolveNode, resolveNodeId, resolveRelation, useSchemaOrg };
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { T as Thing, S as SchemaOrgNodeDefinition, a as SchemaOrgNode, M as MetaInput, R as ResolvedMeta, b as SchemaOrgGraph, A as Arrayable, P as PostalAddress, c as AggregateOffer, d as AggregateRating, e as Article, B as BreadcrumbList, C as Comment, E as Event, V as VirtualLocation, f as Place, H as HowTo, g as HowToStep, I as ImageObject, J as JobPosting, L as LocalBusiness, O as Offer, h as OpeningHoursSpecification, i as Organization, j as Person, k as Product, Q as Question, l as Recipe, m as Review, n as VideoObject, W as WebPage, o as WebSite, p as Book, q as Course, r as ItemList, s as ListItem, t as Movie, u as SearchAction, v as ReadAction, w as SoftwareApp, x as BookEdition } from './SchemaOrgUnheadPlugin-dd5249a4.js';
2
- export { z as AggregateOfferSimple, F as AggregateRatingSimple, K as ArticleSimple, Y as BookEditionSimple, X as BookSimple, a0 as BreadcrumbSimple, a3 as CommentSimple, a5 as CourseSimple, a7 as EventSimple, aj as HowToDirection, af as HowToId, ae as HowToSimple, ah as HowToStepSimple, bg as Id, bf as IdReference, ba as Identity, an as ImageSimple, al as ItemListSimple, ap as JobPostingSimple, ar as ListItemSimple, at as LocalBusinessSimple, av as MovieSimple, b8 as NodeRelation, b9 as NodeRelations, aQ as NutritionInformation, ax as OfferSimple, az as OpeningHoursSimple, bc as OptionalSchemaOrgPrefix, aB as OrganizationSimple, aD as PersonSimple, ac as PlaceSimple, aF as PostalAddressSimple, N as PrimaryArticleId, _ as PrimaryBookId, a1 as PrimaryBreadcrumbId, a8 as PrimaryEventId, a_ as PrimaryWebPageId, b3 as PrimaryWebSiteId, aI as ProductId, aH as ProductSimple, aK as QuestionSimple, aN as Rating, aM as RatingSimple, b0 as ReadActionInput, aR as RecipeId, aP as RecipeSimple, bb as ResolvableDate, aV as ReviewSimple, b7 as SchemaOrgUnheadPlugin, b5 as SearchActionInput, aT as SoftwareAppSimple, bd as UserConfig, aX as VideoSimple, aa as VirtualLocationSimple, aZ as WebPageSimple, b2 as WebSiteSimple, be as WithResolver, aG as addressResolver, D as aggregateOfferResolver, G as aggregateRatingResolver, U as articleResolver, Z as bookEditionResolver, $ as bookResolver, a2 as breadcrumbResolver, a4 as commentResolver, a6 as courseResolver, y as createSchemaOrgGraph, a9 as eventResolver, ag as howToResolver, ak as howToStepDirectionResolver, ai as howToStepResolver, ao as imageResolver, am as itemListResolver, aq as jobPostingResolver, as as listItemResolver, au as localBusinessResolver, aw as movieResolver, ay as offerResolver, aA as openingHoursResolver, aC as organizationResolver, aE as personResolver, ad as placeResolver, aJ as productResolver, aL as questionResolver, aO as ratingResolver, b1 as readActionResolver, aS as recipeResolver, aW as reviewResolver, b6 as searchActionResolver, aU as softwareAppResolver, aY as videoResolver, ab as virtualLocationResolver, a$ as webPageResolver, b4 as webSiteResolver } from './SchemaOrgUnheadPlugin-dd5249a4.js';
1
+ import { T as Thing, S as SchemaOrgNodeDefinition, a as SchemaOrgNode, M as MetaInput, R as ResolvedMeta, b as SchemaOrgGraph, A as Arrayable, P as PostalAddress, c as AggregateOffer, d as AggregateRating, e as Article, B as BreadcrumbList, C as Comment, E as Event, V as VirtualLocation, f as Place, H as HowTo, g as HowToStep, I as ImageObject, J as JobPosting, L as LocalBusiness, O as Offer, h as OpeningHoursSpecification, i as Organization, j as Person, k as Product, Q as Question, l as Recipe, m as Review, n as VideoObject, W as WebPage, o as WebSite, p as Book, q as Course, r as ItemList, s as ListItem, t as Movie, u as SearchAction, v as ReadAction, w as SoftwareApp, x as BookEdition } from './shared/schema-org.a5249ce4.js';
2
+ export { z as AggregateOfferSimple, F as AggregateRatingSimple, K as ArticleSimple, Y as BookEditionSimple, X as BookSimple, a0 as BreadcrumbSimple, a3 as CommentSimple, a5 as CourseSimple, a7 as EventSimple, aj as HowToDirection, af as HowToId, ae as HowToSimple, ah as HowToStepSimple, bg as Id, bf as IdReference, ba as Identity, an as ImageSimple, al as ItemListSimple, ap as JobPostingSimple, ar as ListItemSimple, at as LocalBusinessSimple, av as MovieSimple, b8 as NodeRelation, b9 as NodeRelations, aQ as NutritionInformation, ax as OfferSimple, az as OpeningHoursSimple, bc as OptionalSchemaOrgPrefix, aB as OrganizationSimple, aD as PersonSimple, ac as PlaceSimple, aF as PostalAddressSimple, N as PrimaryArticleId, _ as PrimaryBookId, a1 as PrimaryBreadcrumbId, a8 as PrimaryEventId, a_ as PrimaryWebPageId, b3 as PrimaryWebSiteId, aI as ProductId, aH as ProductSimple, aK as QuestionSimple, aN as Rating, aM as RatingSimple, b0 as ReadActionInput, aR as RecipeId, aP as RecipeSimple, bb as ResolvableDate, aV as ReviewSimple, b7 as SchemaOrgUnheadPlugin, b5 as SearchActionInput, aT as SoftwareAppSimple, bd as UserConfig, aX as VideoSimple, aa as VirtualLocationSimple, aZ as WebPageSimple, b2 as WebSiteSimple, be as WithResolver, aG as addressResolver, D as aggregateOfferResolver, G as aggregateRatingResolver, U as articleResolver, Z as bookEditionResolver, $ as bookResolver, a2 as breadcrumbResolver, a4 as commentResolver, a6 as courseResolver, y as createSchemaOrgGraph, a9 as eventResolver, ag as howToResolver, ak as howToStepDirectionResolver, ai as howToStepResolver, ao as imageResolver, am as itemListResolver, aq as jobPostingResolver, as as listItemResolver, au as localBusinessResolver, aw as movieResolver, ay as offerResolver, aA as openingHoursResolver, aC as organizationResolver, aE as personResolver, ad as placeResolver, aJ as productResolver, aL as questionResolver, aO as ratingResolver, b1 as readActionResolver, aS as recipeResolver, aW as reviewResolver, b6 as searchActionResolver, aU as softwareAppResolver, aY as videoResolver, ab as virtualLocationResolver, a$ as webPageResolver, b4 as webSiteResolver } from './shared/schema-org.a5249ce4.js';
3
3
 
4
4
  declare function defineSchemaOrgResolver<T extends Thing>(schema: SchemaOrgNodeDefinition<T>): SchemaOrgNodeDefinition<T>;
5
5
 
@@ -1522,4 +1522,4 @@ declare function createSchemaOrgGraph(): SchemaOrgGraph;
1522
1522
 
1523
1523
  declare function SchemaOrgUnheadPlugin(config: MetaInput, meta: () => Record<string, any>): any;
1524
1524
 
1525
- export { bookResolver as $, Arrayable as A, BreadcrumbList as B, Comment$1 as C, aggregateOfferResolver as D, Event as E, AggregateRatingSimple as F, aggregateRatingResolver as G, HowTo as H, ImageObject as I, JobPosting as J, ArticleSimple as K, LocalBusiness as L, MetaInput as M, PrimaryArticleId as N, Offer as O, PostalAddress as P, Question as Q, ResolvedMeta as R, SchemaOrgNodeDefinition as S, Thing as T, articleResolver as U, VirtualLocation as V, WebPage as W, BookSimple as X, BookEditionSimple as Y, bookEditionResolver as Z, PrimaryBookId as _, SchemaOrgNode as a, webPageResolver as a$, BreadcrumbSimple as a0, PrimaryBreadcrumbId as a1, breadcrumbResolver as a2, CommentSimple as a3, commentResolver as a4, CourseSimple as a5, courseResolver as a6, EventSimple as a7, PrimaryEventId as a8, eventResolver as a9, openingHoursResolver as aA, OrganizationSimple as aB, organizationResolver as aC, PersonSimple as aD, personResolver as aE, PostalAddressSimple as aF, addressResolver as aG, ProductSimple as aH, ProductId as aI, productResolver as aJ, QuestionSimple as aK, questionResolver as aL, RatingSimple as aM, Rating as aN, ratingResolver as aO, RecipeSimple as aP, NutritionInformation as aQ, RecipeId as aR, recipeResolver as aS, SoftwareAppSimple as aT, softwareAppResolver as aU, ReviewSimple as aV, reviewResolver as aW, VideoSimple as aX, videoResolver as aY, WebPageSimple as aZ, PrimaryWebPageId as a_, VirtualLocationSimple as aa, virtualLocationResolver as ab, PlaceSimple as ac, placeResolver as ad, HowToSimple as ae, HowToId as af, howToResolver as ag, HowToStepSimple as ah, howToStepResolver as ai, HowToDirection as aj, howToStepDirectionResolver as ak, ItemListSimple as al, itemListResolver as am, ImageSimple as an, imageResolver as ao, JobPostingSimple as ap, jobPostingResolver as aq, ListItemSimple as ar, listItemResolver as as, LocalBusinessSimple as at, localBusinessResolver as au, MovieSimple as av, movieResolver as aw, OfferSimple as ax, offerResolver as ay, OpeningHoursSimple as az, SchemaOrgGraph as b, ReadActionInput as b0, readActionResolver as b1, WebSiteSimple as b2, PrimaryWebSiteId as b3, webSiteResolver as b4, SearchActionInput as b5, searchActionResolver as b6, SchemaOrgUnheadPlugin as b7, NodeRelation as b8, NodeRelations as b9, Identity as ba, ResolvableDate as bb, OptionalSchemaOrgPrefix as bc, UserConfig as bd, WithResolver as be, IdReference as bf, Id as bg, AggregateOffer as c, AggregateRating as d, Article as e, Place as f, HowToStep as g, OpeningHoursSpecification as h, Organization as i, Person as j, Product as k, Recipe as l, Review as m, VideoObject as n, WebSite as o, Book as p, Course as q, ItemList as r, ListItem as s, Movie as t, SearchAction as u, ReadAction as v, SoftwareApp as w, BookEdition as x, createSchemaOrgGraph as y, AggregateOfferSimple as z };
1525
+ export { bookResolver as $, type Arrayable as A, type BreadcrumbList as B, type Comment$1 as C, aggregateOfferResolver as D, type Event as E, type AggregateRatingSimple as F, aggregateRatingResolver as G, type HowTo as H, type ImageObject as I, type JobPosting as J, type ArticleSimple as K, type LocalBusiness as L, type MetaInput as M, PrimaryArticleId as N, type Offer as O, type PostalAddress as P, type Question as Q, type ResolvedMeta as R, type SchemaOrgNodeDefinition as S, type Thing as T, articleResolver as U, type VirtualLocation as V, type WebPage as W, type BookSimple as X, type BookEditionSimple as Y, bookEditionResolver as Z, PrimaryBookId as _, type SchemaOrgNode as a, webPageResolver as a$, type BreadcrumbSimple as a0, PrimaryBreadcrumbId as a1, breadcrumbResolver as a2, type CommentSimple as a3, commentResolver as a4, type CourseSimple as a5, courseResolver as a6, type EventSimple as a7, PrimaryEventId as a8, eventResolver as a9, openingHoursResolver as aA, type OrganizationSimple as aB, organizationResolver as aC, type PersonSimple as aD, personResolver as aE, type PostalAddressSimple as aF, addressResolver as aG, type ProductSimple as aH, ProductId as aI, productResolver as aJ, type QuestionSimple as aK, questionResolver as aL, type RatingSimple as aM, type Rating as aN, ratingResolver as aO, type RecipeSimple as aP, type NutritionInformation as aQ, RecipeId as aR, recipeResolver as aS, type SoftwareAppSimple as aT, softwareAppResolver as aU, type ReviewSimple as aV, reviewResolver as aW, type VideoSimple as aX, videoResolver as aY, type WebPageSimple as aZ, PrimaryWebPageId as a_, type VirtualLocationSimple as aa, virtualLocationResolver as ab, type PlaceSimple as ac, placeResolver as ad, type HowToSimple as ae, HowToId as af, howToResolver as ag, type HowToStepSimple as ah, howToStepResolver as ai, type HowToDirection as aj, howToStepDirectionResolver as ak, type ItemListSimple as al, itemListResolver as am, type ImageSimple as an, imageResolver as ao, type JobPostingSimple as ap, jobPostingResolver as aq, type ListItemSimple as ar, listItemResolver as as, type LocalBusinessSimple as at, localBusinessResolver as au, type MovieSimple as av, movieResolver as aw, type OfferSimple as ax, offerResolver as ay, type OpeningHoursSimple as az, type SchemaOrgGraph as b, type ReadActionInput as b0, readActionResolver as b1, type WebSiteSimple as b2, PrimaryWebSiteId as b3, webSiteResolver as b4, type SearchActionInput as b5, searchActionResolver as b6, SchemaOrgUnheadPlugin as b7, type NodeRelation as b8, type NodeRelations as b9, type Identity as ba, type ResolvableDate as bb, type OptionalSchemaOrgPrefix as bc, type UserConfig as bd, type WithResolver as be, type IdReference as bf, type Id as bg, type AggregateOffer as c, type AggregateRating as d, type Article as e, type Place as f, type HowToStep as g, type OpeningHoursSpecification as h, type Organization as i, type Person as j, type Product as k, type Recipe as l, type Review as m, type VideoObject as n, type WebSite as o, type Book as p, type Course as q, type ItemList as r, type ListItem as s, type Movie as t, type SearchAction as u, type ReadAction as v, type SoftwareApp as w, type BookEdition as x, createSchemaOrgGraph as y, type AggregateOfferSimple as z };