@unhead/schema-org 1.10.4 → 1.11.0-beta.2

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.
@@ -1,33 +1,21 @@
1
1
  import * as _unhead_schema from '@unhead/schema';
2
2
 
3
- type DayOfWeek = 'Friday' | 'Monday' | 'PublicHolidays' | 'Saturday' | 'Sunday' | 'Thursday' | 'Tuesday' | 'Wednesday';
4
- type Time = `${number}${number}:${number}${number}`;
5
- interface OpeningHoursSimple extends Thing {
6
- '@type'?: 'OpeningHoursSpecification';
7
- /**
8
- * The day of the week for which these opening hours are valid.
9
- */
10
- 'dayOfWeek': Arrayable<DayOfWeek>;
11
- /**
12
- * The opening hour of the place or service on the given day(s) of the week.
13
- */
14
- 'opens'?: Time;
3
+ interface DefinedRegion extends Thing {
15
4
  /**
16
- * The closing hour of the place or service on the given day(s) of the week.
5
+ * The two-letter country code, in [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1) format.
17
6
  */
18
- 'closes'?: Time;
7
+ addressCountry: string;
19
8
  /**
20
- * The date when the item becomes valid.
9
+ * If you include this property, the region must be a 2- or 3-digit ISO 3166-2 subdivision code, without country prefix. Currently, Google Search only supports the US, Australia, and Japan. Examples: "NY" (for US, state of New York), "NSW" (for Australia, state of New South Wales), or "03" (for Japan, Iwate prefecture).
10
+ *
11
+ * Do not provide both a region and postal code information.
21
12
  */
22
- 'validFrom'?: ResolvableDate;
13
+ addressRegion?: string;
23
14
  /**
24
- * The date after when the item is not valid. For example, the end of an offer, salary period, or a period of opening hours.
15
+ * The postal code. For example, 94043. Currently postal codes are supported for Australia, Canada, and the US.
25
16
  */
26
- 'validThrough'?: ResolvableDate;
27
- }
28
- interface OpeningHoursSpecification extends OpeningHoursSimple {
17
+ postalCode?: string;
29
18
  }
30
- declare const openingHoursResolver: SchemaOrgNodeDefinition<OpeningHoursSpecification>;
31
19
 
32
20
  interface MonetaryAmountSimple extends Thing {
33
21
  /**
@@ -62,23 +50,6 @@ interface ShippingDeliveryTime extends Thing {
62
50
  transitTime?: QuantitativeValue;
63
51
  }
64
52
 
65
- interface DefinedRegion extends Thing {
66
- /**
67
- * The two-letter country code, in [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1) format.
68
- */
69
- addressCountry: string;
70
- /**
71
- * If you include this property, the region must be a 2- or 3-digit ISO 3166-2 subdivision code, without country prefix. Currently, Google Search only supports the US, Australia, and Japan. Examples: "NY" (for US, state of New York), "NSW" (for Australia, state of New South Wales), or "03" (for Japan, Iwate prefecture).
72
- *
73
- * Do not provide both a region and postal code information.
74
- */
75
- addressRegion?: string;
76
- /**
77
- * The postal code. For example, 94043. Currently postal codes are supported for Australia, Canada, and the US.
78
- */
79
- postalCode?: string;
80
- }
81
-
82
53
  interface OfferShippingDetails extends Thing {
83
54
  '@type'?: 'OfferShippingDetails';
84
55
  /**
@@ -94,6 +65,35 @@ interface OfferShippingDetails extends Thing {
94
65
  'shippingRate': MonetaryAmount;
95
66
  }
96
67
 
68
+ type DayOfWeek = 'Friday' | 'Monday' | 'PublicHolidays' | 'Saturday' | 'Sunday' | 'Thursday' | 'Tuesday' | 'Wednesday';
69
+ type Time = `${number}${number}:${number}${number}`;
70
+ interface OpeningHoursSimple extends Thing {
71
+ '@type'?: 'OpeningHoursSpecification';
72
+ /**
73
+ * The day of the week for which these opening hours are valid.
74
+ */
75
+ 'dayOfWeek': Arrayable<DayOfWeek>;
76
+ /**
77
+ * The opening hour of the place or service on the given day(s) of the week.
78
+ */
79
+ 'opens'?: Time;
80
+ /**
81
+ * The closing hour of the place or service on the given day(s) of the week.
82
+ */
83
+ 'closes'?: Time;
84
+ /**
85
+ * The date when the item becomes valid.
86
+ */
87
+ 'validFrom'?: ResolvableDate;
88
+ /**
89
+ * The date after when the item is not valid. For example, the end of an offer, salary period, or a period of opening hours.
90
+ */
91
+ 'validThrough'?: ResolvableDate;
92
+ }
93
+ interface OpeningHoursSpecification extends OpeningHoursSimple {
94
+ }
95
+ declare const openingHoursResolver: SchemaOrgNodeDefinition<OpeningHoursSpecification>;
96
+
97
97
  type ItemAvailability = 'BackOrder' | 'Discontinued' | 'InStock' | 'InStoreOnly' | 'LimitedAvailability' | 'OnlineOnly' | 'OutOfStock' | 'PreOrder' | 'PreSale' | 'SoldOut';
98
98
  type OfferItemCondition = 'NewCondition' | 'RefurbishedCondition' | 'UsedCondition';
99
99
  interface OfferSimple extends Thing {
@@ -395,75 +395,68 @@ declare const PrimaryArticleId = "#article";
395
395
  */
396
396
  declare const articleResolver: SchemaOrgNodeDefinition<Article>;
397
397
 
398
- type SearchTarget = string | `${string}{search_term_string}${string | undefined}`;
399
- interface SearchActionInput {
400
- /**
401
- * An object of type EntryPoint, with a relative URL which describes the URL pattern of the internal search function
402
- * (e.g., /search?query={search_term_string}).
403
- */
404
- target?: SearchTarget;
405
- /**
406
- * Alias: The search term string as described in the target (e.g., search_term_string).
407
- * @default search_term_string
408
- */
409
- queryInput?: string;
410
- }
411
- interface SearchAction {
412
- '@type'?: 'SearchAction';
413
- /**
414
- * An object of type EntryPoint, with a relative URL which describes the URL pattern of the internal search function
415
- * (e.g., /search?query={search_term_string}).
416
- */
417
- 'target': SearchTarget | {
418
- '@type'?: 'EntryPoint';
419
- 'urlTemplate'?: SearchTarget;
420
- };
421
- /**
422
- * The search term string as described in the target (e.g., search_term_string).
423
- */
424
- 'query-input'?: {
425
- '@type'?: 'PropertyValueSpecification';
426
- 'valueRequired'?: boolean;
427
- 'valueName'?: 'search_term_string';
428
- };
429
- }
430
- declare const searchActionResolver: SchemaOrgNodeDefinition<SearchAction>;
431
-
432
398
  /**
433
- * A WebSite is a set of related web pages and other items typically served from a single web domain and accessible via URLs.
399
+ * A list item, e.g. a step in a checklist or how-to description.
434
400
  */
435
- interface WebSiteSimple extends Thing {
401
+ interface ListItemSimple extends Thing {
402
+ '@type'?: 'ListItem';
436
403
  /**
437
- * The site's home URL (excluding a trailing slash).
404
+ * The name of the page in question, as it appears in the breadcrumb navigation.
438
405
  */
439
- url?: string;
406
+ 'name'?: string;
440
407
  /**
441
- * The name of the website.
408
+ * The unmodified canonical URL of the page in question.
409
+ * - If a relative path is provided, it will be resolved to absolute.
410
+ * - Item is not required for the last entry
442
411
  */
443
- name: string;
412
+ 'item'?: string | Thing;
444
413
  /**
445
- * A description of the website (e.g., the site's tagline).
414
+ * An integer (starting at 1), counting the 'depth' of the page from (including) the homepage.
446
415
  */
447
- description?: string;
416
+ 'position'?: number;
417
+ }
418
+ interface ListItem extends ListItemSimple {
419
+ }
420
+ declare const listItemResolver: SchemaOrgNodeDefinition<ListItem>;
421
+
422
+ interface ItemListSimple extends Thing {
448
423
  /**
449
- * A reference-by-ID to the Organization which publishes the WebSite
450
- * (or an array of Organization and Person in the case that the website represents an individual).
424
+ * Resolved item list
451
425
  */
452
- publisher?: NodeRelations<Identity>;
426
+ itemListElement: NodeRelations<ListItem>;
453
427
  /**
454
- * A SearchAction object describing the site's internal search.
428
+ * Type of ordering (e.g. Ascending, Descending, Unordered).
429
+ *
430
+ * @default undefined
455
431
  */
456
- potentialAction?: Arrayable<(SearchAction | unknown)>;
432
+ itemListOrder?: 'Ascending' | 'Descending' | 'Unordered';
457
433
  /**
458
- * The language code for the WebSite; e.g., en-GB.
459
- * If the website is available in multiple languages, then output an array of inLanguage values.
434
+ * The number of items in an ItemList.
435
+ * Note that some descriptions might not fully describe all items in a list (e.g., multi-page pagination);
436
+ * in such cases, the numberOfItems would be for the entire list.
437
+ *
438
+ * @default undefined
460
439
  */
461
- inLanguage?: Arrayable<string>;
440
+ numberOfItems?: number;
462
441
  }
463
- interface WebSite extends WebSiteSimple {
442
+ interface ItemList extends ItemListSimple {
464
443
  }
465
- declare const PrimaryWebSiteId = "#website";
466
- declare const webSiteResolver: SchemaOrgNodeDefinition<WebSite>;
444
+ declare const itemListResolver: SchemaOrgNodeDefinition<ItemList>;
445
+
446
+ /**
447
+ * A BreadcrumbList is an ItemList consisting of a chain of linked Web pages,
448
+ * typically described using at least their URL and their name, and typically ending with the current page.
449
+ */
450
+ interface BreadcrumbSimple extends ItemList {
451
+ '@type'?: 'BreadcrumbList';
452
+ }
453
+ interface BreadcrumbList extends BreadcrumbSimple {
454
+ }
455
+ declare const PrimaryBreadcrumbId = "#breadcrumb";
456
+ /**
457
+ * Describes the hierarchical position a WebPage within a WebSite.
458
+ */
459
+ declare const breadcrumbResolver: SchemaOrgNodeDefinition<BreadcrumbList>;
467
460
 
468
461
  interface PostalAddressSimple extends Thing {
469
462
  /**
@@ -542,101 +535,108 @@ interface Organization extends OrganizationSimple {
542
535
  declare const organizationResolver: SchemaOrgNodeDefinition<Organization>;
543
536
 
544
537
  /**
545
- * A list item, e.g. a step in a checklist or how-to description.
538
+ * A person (alive, dead, undead, or fictional).
546
539
  */
547
- interface ListItemSimple extends Thing {
548
- '@type'?: 'ListItem';
549
- /**
550
- * The name of the page in question, as it appears in the breadcrumb navigation.
551
- */
552
- 'name'?: string;
540
+ interface PersonSimple extends Thing {
553
541
  /**
554
- * The unmodified canonical URL of the page in question.
555
- * - If a relative path is provided, it will be resolved to absolute.
556
- * - Item is not required for the last entry
542
+ * The full name of the Person.
557
543
  */
558
- 'item'?: string | Thing;
544
+ name: string;
559
545
  /**
560
- * An integer (starting at 1), counting the 'depth' of the page from (including) the homepage.
546
+ * The user bio, truncated to 250 characters.
561
547
  */
562
- 'position'?: number;
563
- }
564
- interface ListItem extends ListItemSimple {
565
- }
566
- declare const listItemResolver: SchemaOrgNodeDefinition<ListItem>;
567
-
568
- interface ItemListSimple extends Thing {
548
+ description?: string;
569
549
  /**
570
- * Resolved item list
550
+ * An array of URLs representing declared social/authoritative profiles of the person
551
+ * (e.g., a Wikipedia page, or Facebook profile).
571
552
  */
572
- itemListElement: NodeRelations<ListItem>;
553
+ sameAs?: Arrayable<string>;
573
554
  /**
574
- * Type of ordering (e.g. Ascending, Descending, Unordered).
575
- *
576
- * @default undefined
555
+ * An array of images which represent the person, referenced by ID.
577
556
  */
578
- itemListOrder?: 'Ascending' | 'Descending' | 'Unordered';
557
+ image?: NodeRelations<ImageObject | string>;
579
558
  /**
580
- * The number of items in an ItemList.
581
- * Note that some descriptions might not fully describe all items in a list (e.g., multi-page pagination);
582
- * in such cases, the numberOfItems would be for the entire list.
583
- *
584
- * @default undefined
559
+ * The URL of the users' profile page (if they're affiliated with the site in question),
560
+ * or to their personal homepage/website.
585
561
  */
586
- numberOfItems?: number;
562
+ url?: string;
587
563
  }
588
- interface ItemList extends ItemListSimple {
564
+ interface Person extends PersonSimple {
589
565
  }
590
- declare const itemListResolver: SchemaOrgNodeDefinition<ItemList>;
591
-
592
566
  /**
593
- * A BreadcrumbList is an ItemList consisting of a chain of linked Web pages,
594
- * typically described using at least their URL and their name, and typically ending with the current page.
567
+ * Describes an individual person. Most commonly used to identify the author of a piece of content (such as an Article or Comment).
595
568
  */
596
- interface BreadcrumbSimple extends ItemList {
597
- '@type'?: 'BreadcrumbList';
569
+ declare const personResolver: SchemaOrgNodeDefinition<Person>;
570
+
571
+ type SearchTarget = string | `${string}{search_term_string}${string | undefined}`;
572
+ interface SearchActionInput {
573
+ /**
574
+ * An object of type EntryPoint, with a relative URL which describes the URL pattern of the internal search function
575
+ * (e.g., /search?query={search_term_string}).
576
+ */
577
+ target?: SearchTarget;
578
+ /**
579
+ * Alias: The search term string as described in the target (e.g., search_term_string).
580
+ * @default search_term_string
581
+ */
582
+ queryInput?: string;
598
583
  }
599
- interface BreadcrumbList extends BreadcrumbSimple {
584
+ interface SearchAction {
585
+ '@type'?: 'SearchAction';
586
+ /**
587
+ * An object of type EntryPoint, with a relative URL which describes the URL pattern of the internal search function
588
+ * (e.g., /search?query={search_term_string}).
589
+ */
590
+ 'target': SearchTarget | {
591
+ '@type'?: 'EntryPoint';
592
+ 'urlTemplate'?: SearchTarget;
593
+ };
594
+ /**
595
+ * The search term string as described in the target (e.g., search_term_string).
596
+ */
597
+ 'query-input'?: {
598
+ '@type'?: 'PropertyValueSpecification';
599
+ 'valueRequired'?: boolean;
600
+ 'valueName'?: 'search_term_string';
601
+ };
600
602
  }
601
- declare const PrimaryBreadcrumbId = "#breadcrumb";
602
- /**
603
- * Describes the hierarchical position a WebPage within a WebSite.
604
- */
605
- declare const breadcrumbResolver: SchemaOrgNodeDefinition<BreadcrumbList>;
603
+ declare const searchActionResolver: SchemaOrgNodeDefinition<SearchAction>;
606
604
 
607
605
  /**
608
- * A person (alive, dead, undead, or fictional).
606
+ * A WebSite is a set of related web pages and other items typically served from a single web domain and accessible via URLs.
609
607
  */
610
- interface PersonSimple extends Thing {
608
+ interface WebSiteSimple extends Thing {
611
609
  /**
612
- * The full name of the Person.
610
+ * The site's home URL (excluding a trailing slash).
611
+ */
612
+ url?: string;
613
+ /**
614
+ * The name of the website.
613
615
  */
614
616
  name: string;
615
617
  /**
616
- * The user bio, truncated to 250 characters.
618
+ * A description of the website (e.g., the site's tagline).
617
619
  */
618
620
  description?: string;
619
621
  /**
620
- * An array of URLs representing declared social/authoritative profiles of the person
621
- * (e.g., a Wikipedia page, or Facebook profile).
622
+ * A reference-by-ID to the Organization which publishes the WebSite
623
+ * (or an array of Organization and Person in the case that the website represents an individual).
622
624
  */
623
- sameAs?: Arrayable<string>;
625
+ publisher?: NodeRelations<Identity>;
624
626
  /**
625
- * An array of images which represent the person, referenced by ID.
627
+ * A SearchAction object describing the site's internal search.
626
628
  */
627
- image?: NodeRelations<ImageObject | string>;
629
+ potentialAction?: Arrayable<(SearchAction | unknown)>;
628
630
  /**
629
- * The URL of the users' profile page (if they're affiliated with the site in question),
630
- * or to their personal homepage/website.
631
+ * The language code for the WebSite; e.g., en-GB.
632
+ * If the website is available in multiple languages, then output an array of inLanguage values.
631
633
  */
632
- url?: string;
634
+ inLanguage?: Arrayable<string>;
633
635
  }
634
- interface Person extends PersonSimple {
636
+ interface WebSite extends WebSiteSimple {
635
637
  }
636
- /**
637
- * Describes an individual person. Most commonly used to identify the author of a piece of content (such as an Article or Comment).
638
- */
639
- declare const personResolver: SchemaOrgNodeDefinition<Person>;
638
+ declare const PrimaryWebSiteId = "#website";
639
+ declare const webSiteResolver: SchemaOrgNodeDefinition<WebSite>;
640
640
 
641
641
  interface ReadActionInput {
642
642
  target?: string[];
@@ -1588,6 +1588,14 @@ interface Thing {
1588
1588
  * - Must be of the following formats+file extensions: .jpg, .png, .gif ,or .webp.
1589
1589
  */
1590
1590
  'image'?: NodeRelations<ImageObject | string>;
1591
+ /**
1592
+ * The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the Origin of Species”.
1593
+ */
1594
+ 'translationOfWork'?: NodeRelations<Thing>;
1595
+ /**
1596
+ * A work that is a translation of the content of this work. E.g. 西遊記 has an English workTranslation “Journey to the West”, a German workTranslation “Monkeys Pilgerfahrt” and a Vietnamese translation Tây du ký bình khảo.
1597
+ */
1598
+ 'workTranslation'?: NodeRelations<Thing>;
1591
1599
  /**
1592
1600
  * Allow any arbitrary keys
1593
1601
  */
@@ -1603,7 +1611,7 @@ interface IdReference {
1603
1611
  /** IRI identifying the canonical address of this object. */
1604
1612
  '@id': string;
1605
1613
  }
1606
- type Id = `#${string}` | `https://${string}#${string}`;
1614
+ type Id = string | `#${string}` | `https://${string}#${string}`;
1607
1615
 
1608
1616
  interface SchemaOrgGraph {
1609
1617
  nodes: SchemaOrgNode[];
@@ -1630,4 +1638,4 @@ declare function PluginSchemaOrg(options?: PluginSchemaOrgOptions & {
1630
1638
  */
1631
1639
  declare function SchemaOrgUnheadPlugin(config: MetaInput, meta: () => Partial<MetaInput> | Promise<Partial<MetaInput>>, options?: PluginSchemaOrgOptions): _unhead_schema.HeadPluginInput;
1632
1640
 
1633
- export { PrimaryBookId as $, type Arrayable as A, type BreadcrumbList as B, type Comment$1 as C, aggregateOfferResolver as D, type Event as E, type FoodEstablishment as F, type AggregateRatingSimple as G, type HowTo as H, type ImageObject as I, type JobPosting as J, aggregateRatingResolver as K, type LocalBusiness as L, type MetaInput as M, type ArticleSimple 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, PrimaryArticleId as U, type VirtualLocation as V, type WebPage as W, articleResolver as X, type BookSimple as Y, type BookEditionSimple as Z, bookEditionResolver as _, type SchemaOrgNode as a, videoResolver as a$, bookResolver as a0, type BreadcrumbSimple as a1, PrimaryBreadcrumbId as a2, breadcrumbResolver as a3, type CommentSimple as a4, commentResolver as a5, type CourseSimple as a6, courseResolver as a7, type EventSimple as a8, PrimaryEventId as a9, type OfferSimple as aA, offerResolver as aB, type OpeningHoursSimple as aC, openingHoursResolver as aD, type OrganizationSimple as aE, organizationResolver as aF, type PersonSimple as aG, personResolver as aH, type PostalAddressSimple as aI, addressResolver as aJ, type ProductSimple as aK, ProductId as aL, productResolver as aM, type QuestionSimple as aN, questionResolver as aO, type RatingSimple as aP, type Rating as aQ, ratingResolver as aR, type RecipeSimple as aS, type NutritionInformation as aT, RecipeId as aU, recipeResolver as aV, type SoftwareAppSimple as aW, softwareAppResolver as aX, type ReviewSimple as aY, reviewResolver as aZ, type VideoSimple as a_, eventResolver as aa, type VirtualLocationSimple as ab, virtualLocationResolver as ac, type PlaceSimple as ad, placeResolver as ae, type FoodEstablishmentSimple as af, foodEstablishmentResolver as ag, type HowToSimple as ah, HowToId as ai, howToResolver as aj, type HowToStepSimple as ak, howToStepResolver as al, type HowToDirection as am, howToStepDirectionResolver as an, type ItemListSimple as ao, itemListResolver as ap, type ImageSimple as aq, imageResolver as ar, type JobPostingSimple as as, jobPostingResolver as at, type ListItemSimple as au, listItemResolver as av, type LocalBusinessSimple as aw, localBusinessResolver as ax, type MovieSimple as ay, movieResolver as az, type SchemaOrgGraph as b, type WebPageSimple as b0, PrimaryWebPageId as b1, webPageResolver as b2, type ReadActionInput as b3, readActionResolver as b4, type WebSiteSimple as b5, PrimaryWebSiteId as b6, webSiteResolver as b7, type SearchActionInput as b8, searchActionResolver as b9, type PluginSchemaOrgOptions as ba, UnheadSchemaOrg as bb, PluginSchemaOrg as bc, SchemaOrgUnheadPlugin as bd, type NodeRelation as be, type NodeRelations as bf, type Identity as bg, type ResolvableDate as bh, type OptionalSchemaOrgPrefix as bi, type UserConfig as bj, type WithResolver as bk, type IdReference as bl, type Id as bm, 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 };
1641
+ export { PrimaryBookId as $, type Arrayable as A, type BreadcrumbList as B, type Comment$1 as C, aggregateOfferResolver as D, type Event as E, type FoodEstablishment as F, type AggregateRatingSimple as G, type HowTo as H, type ImageObject as I, type JobPosting as J, aggregateRatingResolver as K, type LocalBusiness as L, type MetaInput as M, type ArticleSimple 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, PrimaryArticleId as U, type VirtualLocation as V, type WebPage as W, articleResolver as X, type BookSimple as Y, type BookEditionSimple as Z, bookEditionResolver as _, type SchemaOrgGraph as a, videoResolver as a$, bookResolver as a0, type BreadcrumbSimple as a1, PrimaryBreadcrumbId as a2, breadcrumbResolver as a3, type CommentSimple as a4, commentResolver as a5, type CourseSimple as a6, courseResolver as a7, type EventSimple as a8, PrimaryEventId as a9, type OfferSimple as aA, offerResolver as aB, type OpeningHoursSimple as aC, openingHoursResolver as aD, type OrganizationSimple as aE, organizationResolver as aF, type PersonSimple as aG, personResolver as aH, type PostalAddressSimple as aI, addressResolver as aJ, type ProductSimple as aK, ProductId as aL, productResolver as aM, type QuestionSimple as aN, questionResolver as aO, type RatingSimple as aP, type Rating as aQ, ratingResolver as aR, type RecipeSimple as aS, type NutritionInformation as aT, RecipeId as aU, recipeResolver as aV, type ReviewSimple as aW, reviewResolver as aX, type SoftwareAppSimple as aY, softwareAppResolver as aZ, type VideoSimple as a_, eventResolver as aa, type PlaceSimple as ab, placeResolver as ac, type VirtualLocationSimple as ad, virtualLocationResolver as ae, type FoodEstablishmentSimple as af, foodEstablishmentResolver as ag, type HowToSimple as ah, HowToId as ai, howToResolver as aj, type HowToStepSimple as ak, howToStepResolver as al, type HowToDirection as am, howToStepDirectionResolver as an, type ImageSimple as ao, imageResolver as ap, type ItemListSimple as aq, itemListResolver as ar, type JobPostingSimple as as, jobPostingResolver as at, type ListItemSimple as au, listItemResolver as av, type LocalBusinessSimple as aw, localBusinessResolver as ax, type MovieSimple as ay, movieResolver as az, type SchemaOrgNode as b, type WebPageSimple as b0, PrimaryWebPageId as b1, webPageResolver as b2, type ReadActionInput as b3, readActionResolver as b4, type WebSiteSimple as b5, PrimaryWebSiteId as b6, webSiteResolver as b7, type SearchActionInput as b8, searchActionResolver as b9, type PluginSchemaOrgOptions as ba, UnheadSchemaOrg as bb, PluginSchemaOrg as bc, SchemaOrgUnheadPlugin as bd, type NodeRelation as be, type NodeRelations as bf, type Identity as bg, type ResolvableDate as bh, type OptionalSchemaOrgPrefix as bi, type UserConfig as bj, type WithResolver as bk, type IdReference as bl, type Id as bm, 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 };