sanity-plugin-seofields 1.6.3 → 1.6.4
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/{chunk-XXQURVNE.cjs → chunk-BCTPOWXA.cjs} +111 -111
- package/dist/{chunk-XXQURVNE.cjs.map → chunk-BCTPOWXA.cjs.map} +1 -1
- package/dist/{chunk-IQG5JWVT.js → chunk-KTL6NYNG.js} +4 -2
- package/dist/chunk-KTL6NYNG.js.map +1 -0
- package/dist/{chunk-ULFY5STC.js → chunk-XXA6WCWS.js} +3 -3
- package/dist/{chunk-ULFY5STC.js.map → chunk-XXA6WCWS.js.map} +1 -1
- package/dist/{chunk-YM3ZZ2HU.cjs → chunk-YHXUWGNA.cjs} +4 -2
- package/dist/chunk-YHXUWGNA.cjs.map +1 -0
- package/dist/cli.js +1 -1
- package/dist/{component-DS-Ve_nw.d.cts → component-CIE6Sy4F.d.cts} +1 -1
- package/dist/{component-CWZ0tlsq.d.ts → component-H52blyfc.d.ts} +1 -1
- package/dist/next.cjs +77 -77
- package/dist/next.d.cts +2 -2
- package/dist/next.d.ts +2 -2
- package/dist/next.js +2 -2
- package/dist/schema/next.cjs +80 -80
- package/dist/schema/next.d.cts +3 -3
- package/dist/schema/next.d.ts +3 -3
- package/dist/schema/next.js +3 -3
- package/dist/schema.cjs +153 -153
- package/dist/schema.d.cts +4 -4
- package/dist/schema.d.ts +4 -4
- package/dist/schema.js +2 -2
- package/dist/{types-BdaGoGQE.d.cts → types-BxcJinOf.d.cts} +8 -8
- package/dist/{types-Dy7r5det.d.ts → types-CbYb4MsN.d.ts} +1 -1
- package/dist/{types-BjVpmBAX.d.cts → types-CyRdIF-3.d.cts} +1 -1
- package/dist/{types-BwmZmt9I.d.ts → types-Dp9Pfnt9.d.ts} +8 -8
- package/package.json +1 -1
- package/dist/chunk-IQG5JWVT.js.map +0 -1
- package/dist/chunk-YM3ZZ2HU.cjs.map +0 -1
package/dist/schema.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkYHXUWGNA_cjs = require('./chunk-YHXUWGNA.cjs');
|
|
4
4
|
var chunkS367Y35J_cjs = require('./chunk-S367Y35J.cjs');
|
|
5
5
|
var icons = require('@sanity/icons');
|
|
6
6
|
var ui = require('@sanity/ui');
|
|
@@ -418,7 +418,7 @@ function TypePickerInput(props) {
|
|
|
418
418
|
|
|
419
419
|
// src/schema/organization/schema.ts
|
|
420
420
|
var organizationFields = [
|
|
421
|
-
|
|
421
|
+
chunkYHXUWGNA_cjs.nameField({
|
|
422
422
|
title: "Organization Name",
|
|
423
423
|
description: "The official name of the organization.",
|
|
424
424
|
required: { key: "nameRequired", message: "Organization name is required for Schema.org." }
|
|
@@ -518,11 +518,11 @@ var organizationFields = [
|
|
|
518
518
|
}
|
|
519
519
|
];
|
|
520
520
|
function schemaOrgOrganization(config = {}) {
|
|
521
|
-
return
|
|
521
|
+
return chunkYHXUWGNA_cjs.generateSchemaType(
|
|
522
522
|
{
|
|
523
523
|
name: "schemaOrgOrganization",
|
|
524
524
|
title: "Organization",
|
|
525
|
-
icon:
|
|
525
|
+
icon: chunkYHXUWGNA_cjs.SchemaOrgIcons.organization,
|
|
526
526
|
fields: organizationFields,
|
|
527
527
|
customPrepareSubtitle: (document) => document.name ? `${document.name}${document.url ? ` \xB7 ${document.url}` : ""}` : "Untitled organization"
|
|
528
528
|
},
|
|
@@ -532,34 +532,34 @@ function schemaOrgOrganization(config = {}) {
|
|
|
532
532
|
|
|
533
533
|
// src/schema/website/schema.ts
|
|
534
534
|
var websiteFields = [
|
|
535
|
-
|
|
535
|
+
chunkYHXUWGNA_cjs.nameField({
|
|
536
536
|
title: "Website Name",
|
|
537
537
|
description: "The name of the website.",
|
|
538
538
|
required: { key: "nameRequired", message: "Website name is required for Schema.org." }
|
|
539
539
|
}),
|
|
540
|
-
|
|
540
|
+
chunkYHXUWGNA_cjs.urlField({
|
|
541
541
|
title: "Website URL",
|
|
542
542
|
description: 'The full URL of the website, e.g. "https://www.example.com".',
|
|
543
543
|
required: { key: "urlRequired", message: "Website URL is required for Schema.org." }
|
|
544
544
|
}),
|
|
545
|
-
|
|
545
|
+
chunkYHXUWGNA_cjs.descriptionField({
|
|
546
546
|
description: "A short description of the website."
|
|
547
547
|
}),
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
548
|
+
chunkYHXUWGNA_cjs.inLanguageField({ description: 'The language of the website content, e.g. "en".' }),
|
|
549
|
+
chunkYHXUWGNA_cjs.polymorphicPublisher({ description: "The organization or person that publishes this website." }),
|
|
550
|
+
chunkYHXUWGNA_cjs.potentialActionSearch({
|
|
551
551
|
description: "Enables the sitelinks search box in Google. Configure the search URL template."
|
|
552
552
|
}),
|
|
553
|
-
|
|
553
|
+
chunkYHXUWGNA_cjs.issnField({
|
|
554
554
|
description: "The ISSN (International Standard Serial Number) of the website, if applicable."
|
|
555
555
|
})
|
|
556
556
|
];
|
|
557
557
|
function schemaOrgWebsite(config = {}) {
|
|
558
|
-
return
|
|
558
|
+
return chunkYHXUWGNA_cjs.generateSchemaType(
|
|
559
559
|
{
|
|
560
560
|
name: "schemaOrgWebsite",
|
|
561
561
|
title: "Website",
|
|
562
|
-
icon:
|
|
562
|
+
icon: chunkYHXUWGNA_cjs.SchemaOrgIcons.website,
|
|
563
563
|
fields: websiteFields,
|
|
564
564
|
customPrepareSubtitle: (document) => {
|
|
565
565
|
const name = document.name ? `${document.name}` : "Untitled website";
|
|
@@ -622,159 +622,159 @@ var schemaOrgOrganizationPlugin = sanity.definePlugin((config = {}) => ({
|
|
|
622
622
|
}));
|
|
623
623
|
var schemaOrgWebPagePlugin = sanity.definePlugin((config = {}) => ({
|
|
624
624
|
name: "sanity-plugin-seofields/schema-org-webpage",
|
|
625
|
-
schema: { types: [
|
|
625
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgWebPage(config)] }
|
|
626
626
|
}));
|
|
627
627
|
var schemaOrgPersonPlugin = sanity.definePlugin((config = {}) => ({
|
|
628
628
|
name: "sanity-plugin-seofields/schema-org-person",
|
|
629
|
-
schema: { types: [
|
|
629
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgPerson(config)] }
|
|
630
630
|
}));
|
|
631
631
|
var schemaOrgBreadcrumbListPlugin = sanity.definePlugin(
|
|
632
632
|
(config = {}) => ({
|
|
633
633
|
name: "sanity-plugin-seofields/schema-org-breadcrumblist",
|
|
634
|
-
schema: { types: [
|
|
634
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgBreadcrumbList(config)] }
|
|
635
635
|
})
|
|
636
636
|
);
|
|
637
637
|
var schemaOrgImageObjectPlugin = sanity.definePlugin((config = {}) => ({
|
|
638
638
|
name: "sanity-plugin-seofields/schema-org-imageobject",
|
|
639
|
-
schema: { types: [
|
|
639
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgImageObject(config)] }
|
|
640
640
|
}));
|
|
641
641
|
var schemaOrgArticlePlugin = sanity.definePlugin((config = {}) => ({
|
|
642
642
|
name: "sanity-plugin-seofields/schema-org-article",
|
|
643
|
-
schema: { types: [
|
|
643
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgArticle(config)] }
|
|
644
644
|
}));
|
|
645
645
|
var schemaOrgBlogPostingPlugin = sanity.definePlugin((config = {}) => ({
|
|
646
646
|
name: "sanity-plugin-seofields/schema-org-blogposting",
|
|
647
|
-
schema: { types: [
|
|
647
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgBlogPosting(config)] }
|
|
648
648
|
}));
|
|
649
649
|
var schemaOrgFAQPagePlugin = sanity.definePlugin((config = {}) => ({
|
|
650
650
|
name: "sanity-plugin-seofields/schema-org-faqpage",
|
|
651
|
-
schema: { types: [
|
|
651
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgFAQPage(config)] }
|
|
652
652
|
}));
|
|
653
653
|
var schemaOrgHowToPlugin = sanity.definePlugin((config = {}) => ({
|
|
654
654
|
name: "sanity-plugin-seofields/schema-org-howto",
|
|
655
|
-
schema: { types: [
|
|
655
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgHowTo(config)] }
|
|
656
656
|
}));
|
|
657
657
|
var schemaOrgProductPlugin = sanity.definePlugin((config = {}) => ({
|
|
658
658
|
name: "sanity-plugin-seofields/schema-org-product",
|
|
659
|
-
schema: { types: [
|
|
659
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgProduct(config)] }
|
|
660
660
|
}));
|
|
661
661
|
var schemaOrgOfferPlugin = sanity.definePlugin((config = {}) => ({
|
|
662
662
|
name: "sanity-plugin-seofields/schema-org-offer",
|
|
663
|
-
schema: { types: [
|
|
663
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgOffer(config)] }
|
|
664
664
|
}));
|
|
665
665
|
var schemaOrgAggregateRatingPlugin = sanity.definePlugin(
|
|
666
666
|
(config = {}) => ({
|
|
667
667
|
name: "sanity-plugin-seofields/schema-org-aggregaterating",
|
|
668
|
-
schema: { types: [
|
|
668
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgAggregateRating(config)] }
|
|
669
669
|
})
|
|
670
670
|
);
|
|
671
671
|
var schemaOrgReviewPlugin = sanity.definePlugin((config = {}) => ({
|
|
672
672
|
name: "sanity-plugin-seofields/schema-org-review",
|
|
673
|
-
schema: { types: [
|
|
673
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgReview(config)] }
|
|
674
674
|
}));
|
|
675
675
|
var schemaOrgBrandPlugin = sanity.definePlugin((config = {}) => ({
|
|
676
676
|
name: "sanity-plugin-seofields/schema-org-brand",
|
|
677
|
-
schema: { types: [
|
|
677
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgBrand(config)] }
|
|
678
678
|
}));
|
|
679
679
|
var schemaOrgLocalBusinessPlugin = sanity.definePlugin((config = {}) => ({
|
|
680
680
|
name: "sanity-plugin-seofields/schema-org-localbusiness",
|
|
681
|
-
schema: { types: [
|
|
681
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgLocalBusiness(config)] }
|
|
682
682
|
}));
|
|
683
683
|
var schemaOrgPostalAddressPlugin = sanity.definePlugin((config = {}) => ({
|
|
684
684
|
name: "sanity-plugin-seofields/schema-org-postaladdress",
|
|
685
|
-
schema: { types: [
|
|
685
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgPostalAddress(config)] }
|
|
686
686
|
}));
|
|
687
687
|
var schemaOrgContactPointPlugin = sanity.definePlugin((config = {}) => ({
|
|
688
688
|
name: "sanity-plugin-seofields/schema-org-contactpoint",
|
|
689
|
-
schema: { types: [
|
|
689
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgContactPoint(config)] }
|
|
690
690
|
}));
|
|
691
691
|
var schemaOrgSoftwareApplicationPlugin = sanity.definePlugin(
|
|
692
692
|
(config = {}) => ({
|
|
693
693
|
name: "sanity-plugin-seofields/schema-org-softwareapplication",
|
|
694
|
-
schema: { types: [
|
|
694
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgSoftwareApplication(config)] }
|
|
695
695
|
})
|
|
696
696
|
);
|
|
697
697
|
var schemaOrgWebApplicationPlugin = sanity.definePlugin(
|
|
698
698
|
(config = {}) => ({
|
|
699
699
|
name: "sanity-plugin-seofields/schema-org-webapplication",
|
|
700
|
-
schema: { types: [
|
|
700
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgWebApplication(config)] }
|
|
701
701
|
})
|
|
702
702
|
);
|
|
703
703
|
var schemaOrgEventPlugin = sanity.definePlugin((config = {}) => ({
|
|
704
704
|
name: "sanity-plugin-seofields/schema-org-event",
|
|
705
|
-
schema: { types: [
|
|
705
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgEvent(config)] }
|
|
706
706
|
}));
|
|
707
707
|
var schemaOrgPlacePlugin = sanity.definePlugin((config = {}) => ({
|
|
708
708
|
name: "sanity-plugin-seofields/schema-org-place",
|
|
709
|
-
schema: { types: [
|
|
709
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgPlace(config)] }
|
|
710
710
|
}));
|
|
711
711
|
var schemaOrgVideoObjectPlugin = sanity.definePlugin((config = {}) => ({
|
|
712
712
|
name: "sanity-plugin-seofields/schema-org-videoobject",
|
|
713
|
-
schema: { types: [
|
|
713
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgVideoObject(config)] }
|
|
714
714
|
}));
|
|
715
715
|
var schemaOrgCoursePlugin = sanity.definePlugin((config = {}) => ({
|
|
716
716
|
name: "sanity-plugin-seofields/schema-org-course",
|
|
717
|
-
schema: { types: [
|
|
717
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgCourse(config)] }
|
|
718
718
|
}));
|
|
719
719
|
var schemaOrgRecipePlugin = sanity.definePlugin((config = {}) => ({
|
|
720
720
|
name: "sanity-plugin-seofields/schema-org-recipe",
|
|
721
|
-
schema: { types: [
|
|
721
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgRecipe(config)] }
|
|
722
722
|
}));
|
|
723
723
|
var schemaOrgServicePlugin = sanity.definePlugin((config = {}) => ({
|
|
724
724
|
name: "sanity-plugin-seofields/schema-org-service",
|
|
725
|
-
schema: { types: [
|
|
725
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgService(config)] }
|
|
726
726
|
}));
|
|
727
727
|
var schemaOrgSocialMediaPostingPlugin = sanity.definePlugin(
|
|
728
728
|
(config = {}) => ({
|
|
729
729
|
name: "sanity-plugin-seofields/schema-org-socialmediaposting",
|
|
730
|
-
schema: { types: [
|
|
730
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgSocialMediaPosting(config)] }
|
|
731
731
|
})
|
|
732
732
|
);
|
|
733
733
|
var schemaOrgLegalServicePlugin = sanity.definePlugin((config = {}) => ({
|
|
734
734
|
name: "sanity-plugin-seofields/schema-org-legalservice",
|
|
735
|
-
schema: { types: [
|
|
735
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgLegalService(config)] }
|
|
736
736
|
}));
|
|
737
737
|
var schemaOrgCountryPlugin = sanity.definePlugin((config = {}) => ({
|
|
738
738
|
name: "sanity-plugin-seofields/schema-org-country",
|
|
739
|
-
schema: { types: [
|
|
739
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgCountry(config)] }
|
|
740
740
|
}));
|
|
741
741
|
var schemaOrgJobPostingPlugin = sanity.definePlugin((config = {}) => ({
|
|
742
742
|
name: "sanity-plugin-seofields/schema-org-jobposting",
|
|
743
|
-
schema: { types: [
|
|
743
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgJobPosting(config)] }
|
|
744
744
|
}));
|
|
745
745
|
var schemaOrgRestaurantPlugin = sanity.definePlugin((config = {}) => ({
|
|
746
746
|
name: "sanity-plugin-seofields/schema-org-restaurant",
|
|
747
|
-
schema: { types: [
|
|
747
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgRestaurant(config)] }
|
|
748
748
|
}));
|
|
749
749
|
var schemaOrgMoviePlugin = sanity.definePlugin((config = {}) => ({
|
|
750
750
|
name: "sanity-plugin-seofields/schema-org-movie",
|
|
751
|
-
schema: { types: [
|
|
751
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgMovie(config)] }
|
|
752
752
|
}));
|
|
753
753
|
var schemaOrgBookPlugin = sanity.definePlugin((config = {}) => ({
|
|
754
754
|
name: "sanity-plugin-seofields/schema-org-book",
|
|
755
|
-
schema: { types: [
|
|
755
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgBook(config)] }
|
|
756
756
|
}));
|
|
757
757
|
var schemaOrgNewsArticlePlugin = sanity.definePlugin((config = {}) => ({
|
|
758
758
|
name: "sanity-plugin-seofields/schema-org-newsarticle",
|
|
759
|
-
schema: { types: [
|
|
759
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgNewsArticle(config)] }
|
|
760
760
|
}));
|
|
761
761
|
var schemaOrgItemListPlugin = sanity.definePlugin((config = {}) => ({
|
|
762
762
|
name: "sanity-plugin-seofields/schema-org-itemlist",
|
|
763
|
-
schema: { types: [
|
|
763
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgItemList(config)] }
|
|
764
764
|
}));
|
|
765
765
|
var schemaOrgProfilePagePlugin = sanity.definePlugin((config = {}) => ({
|
|
766
766
|
name: "sanity-plugin-seofields/schema-org-profilepage",
|
|
767
|
-
schema: { types: [
|
|
767
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgProfilePage(config)] }
|
|
768
768
|
}));
|
|
769
769
|
var schemaOrgMusicRecordingPlugin = sanity.definePlugin(
|
|
770
770
|
(config = {}) => ({
|
|
771
771
|
name: "sanity-plugin-seofields/schema-org-musicrecording",
|
|
772
|
-
schema: { types: [
|
|
772
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgMusicRecording(config)] }
|
|
773
773
|
})
|
|
774
774
|
);
|
|
775
775
|
var schemaOrgMusicAlbumPlugin = sanity.definePlugin((config = {}) => ({
|
|
776
776
|
name: "sanity-plugin-seofields/schema-org-musicalbum",
|
|
777
|
-
schema: { types: [
|
|
777
|
+
schema: { types: [chunkYHXUWGNA_cjs.schemaOrgMusicAlbum(config)] }
|
|
778
778
|
}));
|
|
779
779
|
var schemaOrg = sanity.definePlugin((config = {}) => {
|
|
780
780
|
const c = config;
|
|
@@ -784,42 +784,42 @@ var schemaOrg = sanity.definePlugin((config = {}) => {
|
|
|
784
784
|
types: [
|
|
785
785
|
schemaOrgWebsite(c.website),
|
|
786
786
|
schemaOrgOrganization(c.organization),
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
787
|
+
chunkYHXUWGNA_cjs.schemaOrgWebPage(c.webPage),
|
|
788
|
+
chunkYHXUWGNA_cjs.schemaOrgPerson(c.person),
|
|
789
|
+
chunkYHXUWGNA_cjs.schemaOrgBreadcrumbList(c.breadcrumbList),
|
|
790
|
+
chunkYHXUWGNA_cjs.schemaOrgImageObject(c.imageObject),
|
|
791
|
+
chunkYHXUWGNA_cjs.schemaOrgArticle(c.article),
|
|
792
|
+
chunkYHXUWGNA_cjs.schemaOrgBlogPosting(c.blogPosting),
|
|
793
|
+
chunkYHXUWGNA_cjs.schemaOrgFAQPage(c.faqPage),
|
|
794
|
+
chunkYHXUWGNA_cjs.schemaOrgHowTo(c.howTo),
|
|
795
|
+
chunkYHXUWGNA_cjs.schemaOrgProduct(c.product),
|
|
796
|
+
chunkYHXUWGNA_cjs.schemaOrgOffer(c.offer),
|
|
797
|
+
chunkYHXUWGNA_cjs.schemaOrgAggregateRating(c.aggregateRating),
|
|
798
|
+
chunkYHXUWGNA_cjs.schemaOrgReview(c.review),
|
|
799
|
+
chunkYHXUWGNA_cjs.schemaOrgBrand(c.brand),
|
|
800
|
+
chunkYHXUWGNA_cjs.schemaOrgLocalBusiness(c.localBusiness),
|
|
801
|
+
chunkYHXUWGNA_cjs.schemaOrgPostalAddress(c.postalAddress),
|
|
802
|
+
chunkYHXUWGNA_cjs.schemaOrgContactPoint(c.contactPoint),
|
|
803
|
+
chunkYHXUWGNA_cjs.schemaOrgSoftwareApplication(c.softwareApplication),
|
|
804
|
+
chunkYHXUWGNA_cjs.schemaOrgWebApplication(c.webApplication),
|
|
805
|
+
chunkYHXUWGNA_cjs.schemaOrgEvent(c.event),
|
|
806
|
+
chunkYHXUWGNA_cjs.schemaOrgPlace(c.place),
|
|
807
|
+
chunkYHXUWGNA_cjs.schemaOrgVideoObject(c.videoObject),
|
|
808
|
+
chunkYHXUWGNA_cjs.schemaOrgCourse(c.course),
|
|
809
|
+
chunkYHXUWGNA_cjs.schemaOrgRecipe(c.recipe),
|
|
810
|
+
chunkYHXUWGNA_cjs.schemaOrgService(c.service),
|
|
811
|
+
chunkYHXUWGNA_cjs.schemaOrgSocialMediaPosting(c.socialMediaPosting),
|
|
812
|
+
chunkYHXUWGNA_cjs.schemaOrgLegalService(c.legalService),
|
|
813
|
+
chunkYHXUWGNA_cjs.schemaOrgCountry(c.country),
|
|
814
|
+
chunkYHXUWGNA_cjs.schemaOrgJobPosting(c.jobPosting),
|
|
815
|
+
chunkYHXUWGNA_cjs.schemaOrgRestaurant(c.restaurant),
|
|
816
|
+
chunkYHXUWGNA_cjs.schemaOrgMovie(c.movie),
|
|
817
|
+
chunkYHXUWGNA_cjs.schemaOrgBook(c.book),
|
|
818
|
+
chunkYHXUWGNA_cjs.schemaOrgNewsArticle(c.newsArticle),
|
|
819
|
+
chunkYHXUWGNA_cjs.schemaOrgItemList(c.itemList),
|
|
820
|
+
chunkYHXUWGNA_cjs.schemaOrgProfilePage(c.profilePage),
|
|
821
|
+
chunkYHXUWGNA_cjs.schemaOrgMusicRecording(c.musicRecording),
|
|
822
|
+
chunkYHXUWGNA_cjs.schemaOrgMusicAlbum(c.musicAlbum),
|
|
823
823
|
// Combined array type — lets editors add multiple schemas
|
|
824
824
|
sanity.defineType({
|
|
825
825
|
name: "schemaOrg",
|
|
@@ -837,275 +837,275 @@ var schemaOrg = sanity.definePlugin((config = {}) => {
|
|
|
837
837
|
|
|
838
838
|
Object.defineProperty(exports, "IETF_LANGUAGE_OPTIONS", {
|
|
839
839
|
enumerable: true,
|
|
840
|
-
get: function () { return
|
|
840
|
+
get: function () { return chunkYHXUWGNA_cjs.IETF_LANGUAGE_OPTIONS; }
|
|
841
841
|
});
|
|
842
842
|
Object.defineProperty(exports, "buildGenericJsonLd", {
|
|
843
843
|
enumerable: true,
|
|
844
|
-
get: function () { return
|
|
844
|
+
get: function () { return chunkYHXUWGNA_cjs.buildGenericJsonLd; }
|
|
845
845
|
});
|
|
846
846
|
Object.defineProperty(exports, "datePublishedField", {
|
|
847
847
|
enumerable: true,
|
|
848
|
-
get: function () { return
|
|
848
|
+
get: function () { return chunkYHXUWGNA_cjs.datePublishedField; }
|
|
849
849
|
});
|
|
850
850
|
Object.defineProperty(exports, "descriptionField", {
|
|
851
851
|
enumerable: true,
|
|
852
|
-
get: function () { return
|
|
852
|
+
get: function () { return chunkYHXUWGNA_cjs.descriptionField; }
|
|
853
853
|
});
|
|
854
854
|
Object.defineProperty(exports, "generateSchemaType", {
|
|
855
855
|
enumerable: true,
|
|
856
|
-
get: function () { return
|
|
856
|
+
get: function () { return chunkYHXUWGNA_cjs.generateSchemaType; }
|
|
857
857
|
});
|
|
858
858
|
Object.defineProperty(exports, "headlineField", {
|
|
859
859
|
enumerable: true,
|
|
860
|
-
get: function () { return
|
|
860
|
+
get: function () { return chunkYHXUWGNA_cjs.headlineField; }
|
|
861
861
|
});
|
|
862
862
|
Object.defineProperty(exports, "inLanguageField", {
|
|
863
863
|
enumerable: true,
|
|
864
|
-
get: function () { return
|
|
864
|
+
get: function () { return chunkYHXUWGNA_cjs.inLanguageField; }
|
|
865
865
|
});
|
|
866
866
|
Object.defineProperty(exports, "nameField", {
|
|
867
867
|
enumerable: true,
|
|
868
|
-
get: function () { return
|
|
868
|
+
get: function () { return chunkYHXUWGNA_cjs.nameField; }
|
|
869
869
|
});
|
|
870
870
|
Object.defineProperty(exports, "polymorphicAdditionalType", {
|
|
871
871
|
enumerable: true,
|
|
872
|
-
get: function () { return
|
|
872
|
+
get: function () { return chunkYHXUWGNA_cjs.polymorphicAdditionalType; }
|
|
873
873
|
});
|
|
874
874
|
Object.defineProperty(exports, "polymorphicArchivedAt", {
|
|
875
875
|
enumerable: true,
|
|
876
|
-
get: function () { return
|
|
876
|
+
get: function () { return chunkYHXUWGNA_cjs.polymorphicArchivedAt; }
|
|
877
877
|
});
|
|
878
878
|
Object.defineProperty(exports, "polymorphicAuthor", {
|
|
879
879
|
enumerable: true,
|
|
880
|
-
get: function () { return
|
|
880
|
+
get: function () { return chunkYHXUWGNA_cjs.polymorphicAuthor; }
|
|
881
881
|
});
|
|
882
882
|
Object.defineProperty(exports, "polymorphicCitation", {
|
|
883
883
|
enumerable: true,
|
|
884
|
-
get: function () { return
|
|
884
|
+
get: function () { return chunkYHXUWGNA_cjs.polymorphicCitation; }
|
|
885
885
|
});
|
|
886
886
|
Object.defineProperty(exports, "polymorphicContentRating", {
|
|
887
887
|
enumerable: true,
|
|
888
|
-
get: function () { return
|
|
888
|
+
get: function () { return chunkYHXUWGNA_cjs.polymorphicContentRating; }
|
|
889
889
|
});
|
|
890
890
|
Object.defineProperty(exports, "polymorphicContributor", {
|
|
891
891
|
enumerable: true,
|
|
892
|
-
get: function () { return
|
|
892
|
+
get: function () { return chunkYHXUWGNA_cjs.polymorphicContributor; }
|
|
893
893
|
});
|
|
894
894
|
Object.defineProperty(exports, "polymorphicCopyrightHolder", {
|
|
895
895
|
enumerable: true,
|
|
896
|
-
get: function () { return
|
|
896
|
+
get: function () { return chunkYHXUWGNA_cjs.polymorphicCopyrightHolder; }
|
|
897
897
|
});
|
|
898
898
|
Object.defineProperty(exports, "polymorphicCreator", {
|
|
899
899
|
enumerable: true,
|
|
900
|
-
get: function () { return
|
|
900
|
+
get: function () { return chunkYHXUWGNA_cjs.polymorphicCreator; }
|
|
901
901
|
});
|
|
902
902
|
Object.defineProperty(exports, "polymorphicFunder", {
|
|
903
903
|
enumerable: true,
|
|
904
|
-
get: function () { return
|
|
904
|
+
get: function () { return chunkYHXUWGNA_cjs.polymorphicFunder; }
|
|
905
905
|
});
|
|
906
906
|
Object.defineProperty(exports, "polymorphicGenre", {
|
|
907
907
|
enumerable: true,
|
|
908
|
-
get: function () { return
|
|
908
|
+
get: function () { return chunkYHXUWGNA_cjs.polymorphicGenre; }
|
|
909
909
|
});
|
|
910
910
|
Object.defineProperty(exports, "polymorphicIdentifier", {
|
|
911
911
|
enumerable: true,
|
|
912
|
-
get: function () { return
|
|
912
|
+
get: function () { return chunkYHXUWGNA_cjs.polymorphicIdentifier; }
|
|
913
913
|
});
|
|
914
914
|
Object.defineProperty(exports, "polymorphicImage", {
|
|
915
915
|
enumerable: true,
|
|
916
|
-
get: function () { return
|
|
916
|
+
get: function () { return chunkYHXUWGNA_cjs.polymorphicImage; }
|
|
917
917
|
});
|
|
918
918
|
Object.defineProperty(exports, "polymorphicIsBasedOn", {
|
|
919
919
|
enumerable: true,
|
|
920
|
-
get: function () { return
|
|
920
|
+
get: function () { return chunkYHXUWGNA_cjs.polymorphicIsBasedOn; }
|
|
921
921
|
});
|
|
922
922
|
Object.defineProperty(exports, "polymorphicIsPartOf", {
|
|
923
923
|
enumerable: true,
|
|
924
|
-
get: function () { return
|
|
924
|
+
get: function () { return chunkYHXUWGNA_cjs.polymorphicIsPartOf; }
|
|
925
925
|
});
|
|
926
926
|
Object.defineProperty(exports, "polymorphicKeywords", {
|
|
927
927
|
enumerable: true,
|
|
928
|
-
get: function () { return
|
|
928
|
+
get: function () { return chunkYHXUWGNA_cjs.polymorphicKeywords; }
|
|
929
929
|
});
|
|
930
930
|
Object.defineProperty(exports, "polymorphicLicense", {
|
|
931
931
|
enumerable: true,
|
|
932
|
-
get: function () { return
|
|
932
|
+
get: function () { return chunkYHXUWGNA_cjs.polymorphicLicense; }
|
|
933
933
|
});
|
|
934
934
|
Object.defineProperty(exports, "polymorphicLocationCreated", {
|
|
935
935
|
enumerable: true,
|
|
936
|
-
get: function () { return
|
|
936
|
+
get: function () { return chunkYHXUWGNA_cjs.polymorphicLocationCreated; }
|
|
937
937
|
});
|
|
938
938
|
Object.defineProperty(exports, "polymorphicMaintainer", {
|
|
939
939
|
enumerable: true,
|
|
940
|
-
get: function () { return
|
|
940
|
+
get: function () { return chunkYHXUWGNA_cjs.polymorphicMaintainer; }
|
|
941
941
|
});
|
|
942
942
|
Object.defineProperty(exports, "polymorphicMaterial", {
|
|
943
943
|
enumerable: true,
|
|
944
|
-
get: function () { return
|
|
944
|
+
get: function () { return chunkYHXUWGNA_cjs.polymorphicMaterial; }
|
|
945
945
|
});
|
|
946
946
|
Object.defineProperty(exports, "polymorphicOwner", {
|
|
947
947
|
enumerable: true,
|
|
948
|
-
get: function () { return
|
|
948
|
+
get: function () { return chunkYHXUWGNA_cjs.polymorphicOwner; }
|
|
949
949
|
});
|
|
950
950
|
Object.defineProperty(exports, "polymorphicPublisher", {
|
|
951
951
|
enumerable: true,
|
|
952
|
-
get: function () { return
|
|
952
|
+
get: function () { return chunkYHXUWGNA_cjs.polymorphicPublisher; }
|
|
953
953
|
});
|
|
954
954
|
Object.defineProperty(exports, "schemaOrgAggregateRating", {
|
|
955
955
|
enumerable: true,
|
|
956
|
-
get: function () { return
|
|
956
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgAggregateRating; }
|
|
957
957
|
});
|
|
958
958
|
Object.defineProperty(exports, "schemaOrgArticle", {
|
|
959
959
|
enumerable: true,
|
|
960
|
-
get: function () { return
|
|
960
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgArticle; }
|
|
961
961
|
});
|
|
962
962
|
Object.defineProperty(exports, "schemaOrgBlogPosting", {
|
|
963
963
|
enumerable: true,
|
|
964
|
-
get: function () { return
|
|
964
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgBlogPosting; }
|
|
965
965
|
});
|
|
966
966
|
Object.defineProperty(exports, "schemaOrgBook", {
|
|
967
967
|
enumerable: true,
|
|
968
|
-
get: function () { return
|
|
968
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgBook; }
|
|
969
969
|
});
|
|
970
970
|
Object.defineProperty(exports, "schemaOrgBrand", {
|
|
971
971
|
enumerable: true,
|
|
972
|
-
get: function () { return
|
|
972
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgBrand; }
|
|
973
973
|
});
|
|
974
974
|
Object.defineProperty(exports, "schemaOrgBreadcrumbList", {
|
|
975
975
|
enumerable: true,
|
|
976
|
-
get: function () { return
|
|
976
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgBreadcrumbList; }
|
|
977
977
|
});
|
|
978
978
|
Object.defineProperty(exports, "schemaOrgContactPoint", {
|
|
979
979
|
enumerable: true,
|
|
980
|
-
get: function () { return
|
|
980
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgContactPoint; }
|
|
981
981
|
});
|
|
982
982
|
Object.defineProperty(exports, "schemaOrgCountry", {
|
|
983
983
|
enumerable: true,
|
|
984
|
-
get: function () { return
|
|
984
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgCountry; }
|
|
985
985
|
});
|
|
986
986
|
Object.defineProperty(exports, "schemaOrgCourse", {
|
|
987
987
|
enumerable: true,
|
|
988
|
-
get: function () { return
|
|
988
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgCourse; }
|
|
989
989
|
});
|
|
990
990
|
Object.defineProperty(exports, "schemaOrgEvent", {
|
|
991
991
|
enumerable: true,
|
|
992
|
-
get: function () { return
|
|
992
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgEvent; }
|
|
993
993
|
});
|
|
994
994
|
Object.defineProperty(exports, "schemaOrgFAQPage", {
|
|
995
995
|
enumerable: true,
|
|
996
|
-
get: function () { return
|
|
996
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgFAQPage; }
|
|
997
997
|
});
|
|
998
998
|
Object.defineProperty(exports, "schemaOrgHowTo", {
|
|
999
999
|
enumerable: true,
|
|
1000
|
-
get: function () { return
|
|
1000
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgHowTo; }
|
|
1001
1001
|
});
|
|
1002
1002
|
Object.defineProperty(exports, "schemaOrgImageObject", {
|
|
1003
1003
|
enumerable: true,
|
|
1004
|
-
get: function () { return
|
|
1004
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgImageObject; }
|
|
1005
1005
|
});
|
|
1006
1006
|
Object.defineProperty(exports, "schemaOrgItemList", {
|
|
1007
1007
|
enumerable: true,
|
|
1008
|
-
get: function () { return
|
|
1008
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgItemList; }
|
|
1009
1009
|
});
|
|
1010
1010
|
Object.defineProperty(exports, "schemaOrgJobPosting", {
|
|
1011
1011
|
enumerable: true,
|
|
1012
|
-
get: function () { return
|
|
1012
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgJobPosting; }
|
|
1013
1013
|
});
|
|
1014
1014
|
Object.defineProperty(exports, "schemaOrgLegalService", {
|
|
1015
1015
|
enumerable: true,
|
|
1016
|
-
get: function () { return
|
|
1016
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgLegalService; }
|
|
1017
1017
|
});
|
|
1018
1018
|
Object.defineProperty(exports, "schemaOrgLocalBusiness", {
|
|
1019
1019
|
enumerable: true,
|
|
1020
|
-
get: function () { return
|
|
1020
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgLocalBusiness; }
|
|
1021
1021
|
});
|
|
1022
1022
|
Object.defineProperty(exports, "schemaOrgMovie", {
|
|
1023
1023
|
enumerable: true,
|
|
1024
|
-
get: function () { return
|
|
1024
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgMovie; }
|
|
1025
1025
|
});
|
|
1026
1026
|
Object.defineProperty(exports, "schemaOrgMusicAlbum", {
|
|
1027
1027
|
enumerable: true,
|
|
1028
|
-
get: function () { return
|
|
1028
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgMusicAlbum; }
|
|
1029
1029
|
});
|
|
1030
1030
|
Object.defineProperty(exports, "schemaOrgMusicRecording", {
|
|
1031
1031
|
enumerable: true,
|
|
1032
|
-
get: function () { return
|
|
1032
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgMusicRecording; }
|
|
1033
1033
|
});
|
|
1034
1034
|
Object.defineProperty(exports, "schemaOrgNewsArticle", {
|
|
1035
1035
|
enumerable: true,
|
|
1036
|
-
get: function () { return
|
|
1036
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgNewsArticle; }
|
|
1037
1037
|
});
|
|
1038
1038
|
Object.defineProperty(exports, "schemaOrgOffer", {
|
|
1039
1039
|
enumerable: true,
|
|
1040
|
-
get: function () { return
|
|
1040
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgOffer; }
|
|
1041
1041
|
});
|
|
1042
1042
|
Object.defineProperty(exports, "schemaOrgPerson", {
|
|
1043
1043
|
enumerable: true,
|
|
1044
|
-
get: function () { return
|
|
1044
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgPerson; }
|
|
1045
1045
|
});
|
|
1046
1046
|
Object.defineProperty(exports, "schemaOrgPlace", {
|
|
1047
1047
|
enumerable: true,
|
|
1048
|
-
get: function () { return
|
|
1048
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgPlace; }
|
|
1049
1049
|
});
|
|
1050
1050
|
Object.defineProperty(exports, "schemaOrgPostalAddress", {
|
|
1051
1051
|
enumerable: true,
|
|
1052
|
-
get: function () { return
|
|
1052
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgPostalAddress; }
|
|
1053
1053
|
});
|
|
1054
1054
|
Object.defineProperty(exports, "schemaOrgProduct", {
|
|
1055
1055
|
enumerable: true,
|
|
1056
|
-
get: function () { return
|
|
1056
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgProduct; }
|
|
1057
1057
|
});
|
|
1058
1058
|
Object.defineProperty(exports, "schemaOrgProfilePage", {
|
|
1059
1059
|
enumerable: true,
|
|
1060
|
-
get: function () { return
|
|
1060
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgProfilePage; }
|
|
1061
1061
|
});
|
|
1062
1062
|
Object.defineProperty(exports, "schemaOrgRecipe", {
|
|
1063
1063
|
enumerable: true,
|
|
1064
|
-
get: function () { return
|
|
1064
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgRecipe; }
|
|
1065
1065
|
});
|
|
1066
1066
|
Object.defineProperty(exports, "schemaOrgRestaurant", {
|
|
1067
1067
|
enumerable: true,
|
|
1068
|
-
get: function () { return
|
|
1068
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgRestaurant; }
|
|
1069
1069
|
});
|
|
1070
1070
|
Object.defineProperty(exports, "schemaOrgReview", {
|
|
1071
1071
|
enumerable: true,
|
|
1072
|
-
get: function () { return
|
|
1072
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgReview; }
|
|
1073
1073
|
});
|
|
1074
1074
|
Object.defineProperty(exports, "schemaOrgService", {
|
|
1075
1075
|
enumerable: true,
|
|
1076
|
-
get: function () { return
|
|
1076
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgService; }
|
|
1077
1077
|
});
|
|
1078
1078
|
Object.defineProperty(exports, "schemaOrgSocialMediaPosting", {
|
|
1079
1079
|
enumerable: true,
|
|
1080
|
-
get: function () { return
|
|
1080
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgSocialMediaPosting; }
|
|
1081
1081
|
});
|
|
1082
1082
|
Object.defineProperty(exports, "schemaOrgSoftwareApplication", {
|
|
1083
1083
|
enumerable: true,
|
|
1084
|
-
get: function () { return
|
|
1084
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgSoftwareApplication; }
|
|
1085
1085
|
});
|
|
1086
1086
|
Object.defineProperty(exports, "schemaOrgVideoObject", {
|
|
1087
1087
|
enumerable: true,
|
|
1088
|
-
get: function () { return
|
|
1088
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgVideoObject; }
|
|
1089
1089
|
});
|
|
1090
1090
|
Object.defineProperty(exports, "schemaOrgWebApplication", {
|
|
1091
1091
|
enumerable: true,
|
|
1092
|
-
get: function () { return
|
|
1092
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgWebApplication; }
|
|
1093
1093
|
});
|
|
1094
1094
|
Object.defineProperty(exports, "schemaOrgWebPage", {
|
|
1095
1095
|
enumerable: true,
|
|
1096
|
-
get: function () { return
|
|
1096
|
+
get: function () { return chunkYHXUWGNA_cjs.schemaOrgWebPage; }
|
|
1097
1097
|
});
|
|
1098
1098
|
Object.defineProperty(exports, "urlField", {
|
|
1099
1099
|
enumerable: true,
|
|
1100
|
-
get: function () { return
|
|
1100
|
+
get: function () { return chunkYHXUWGNA_cjs.urlField; }
|
|
1101
1101
|
});
|
|
1102
1102
|
Object.defineProperty(exports, "withCreativeWorkCommons", {
|
|
1103
1103
|
enumerable: true,
|
|
1104
|
-
get: function () { return
|
|
1104
|
+
get: function () { return chunkYHXUWGNA_cjs.withCreativeWorkCommons; }
|
|
1105
1105
|
});
|
|
1106
1106
|
Object.defineProperty(exports, "withThingCommons", {
|
|
1107
1107
|
enumerable: true,
|
|
1108
|
-
get: function () { return
|
|
1108
|
+
get: function () { return chunkYHXUWGNA_cjs.withThingCommons; }
|
|
1109
1109
|
});
|
|
1110
1110
|
exports.CATEGORY_LABELS = CATEGORY_LABELS;
|
|
1111
1111
|
exports.CATEGORY_ORDER = CATEGORY_ORDER;
|