@getcommunity/gc-validators 0.0.198 → 0.0.201

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.
@@ -661,6 +661,8 @@ declare const QueryStrapiSearchGCFlyTourSnaps: v.ObjectSchema<{
661
661
  readonly utm_key: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>;
662
662
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
663
663
  readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
664
+ readonly gcflytour: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
665
+ readonly gcflytours: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
664
666
  readonly sort: v.OptionalSchema<v.ObjectSchema<{
665
667
  readonly key: v.PicklistSchema<["id", "title", "slug", "utm_key", "is_active", "is_hidden", "createdAt", "updatedAt"], undefined>;
666
668
  readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
@@ -670,6 +672,7 @@ type QueryStrapiSearchGCFlyTourSnaps = v.InferOutput<typeof QueryStrapiSearchGCF
670
672
  declare const SCreateGCFlyTourSnapDocument: v.ObjectSchema<{
671
673
  readonly title: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
672
674
  readonly slug: v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>]>;
675
+ readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
673
676
  readonly utm_key: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>, undefined>;
674
677
  readonly is_active: v.BooleanSchema<undefined>;
675
678
  readonly is_hidden: v.BooleanSchema<undefined>;
@@ -679,6 +682,7 @@ type SCreateGCFlyTourSnapDocument = v.InferOutput<typeof SCreateGCFlyTourSnapDoc
679
682
  declare const SUpdateGCFlyTourSnapDocument: v.ObjectSchema<{
680
683
  readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
681
684
  readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>;
685
+ readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
682
686
  readonly utm_key: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>, undefined>;
683
687
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
684
688
  readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
@@ -690,6 +694,7 @@ declare const SUpdateGCFlyTourSnapDocumentRequest: v.ObjectSchema<{
690
694
  readonly data: v.ObjectSchema<{
691
695
  readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
692
696
  readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>;
697
+ readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
693
698
  readonly utm_key: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>, undefined>;
694
699
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
695
700
  readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
@@ -721,6 +726,7 @@ type QueryStrapiSearchGCFlyTours = v.InferOutput<typeof QueryStrapiSearchGCFlyTo
721
726
  declare const SCreateGCFlyTourDocument: v.ObjectSchema<{
722
727
  readonly title: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
723
728
  readonly slug: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>;
729
+ readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
724
730
  readonly utm_key: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>, undefined>;
725
731
  readonly is_active: v.BooleanSchema<undefined>;
726
732
  readonly is_hidden: v.BooleanSchema<undefined>;
@@ -730,6 +736,7 @@ type SCreateGCFlyTourDocument = v.InferOutput<typeof SCreateGCFlyTourDocument>;
730
736
  declare const SUpdateGCFlyTourDocument: v.ObjectSchema<{
731
737
  readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
732
738
  readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>;
739
+ readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
733
740
  readonly utm_key: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>, undefined>;
734
741
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
735
742
  readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
@@ -741,6 +748,7 @@ declare const SUpdateGCFlyTourDocumentRequest: v.ObjectSchema<{
741
748
  readonly data: v.ObjectSchema<{
742
749
  readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
743
750
  readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>;
751
+ readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
744
752
  readonly utm_key: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>, undefined>;
745
753
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
746
754
  readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
package/dist/schemas.d.ts CHANGED
@@ -661,6 +661,8 @@ declare const QueryStrapiSearchGCFlyTourSnaps: v.ObjectSchema<{
661
661
  readonly utm_key: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>;
662
662
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
663
663
  readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
664
+ readonly gcflytour: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
665
+ readonly gcflytours: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
664
666
  readonly sort: v.OptionalSchema<v.ObjectSchema<{
665
667
  readonly key: v.PicklistSchema<["id", "title", "slug", "utm_key", "is_active", "is_hidden", "createdAt", "updatedAt"], undefined>;
666
668
  readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
@@ -670,6 +672,7 @@ type QueryStrapiSearchGCFlyTourSnaps = v.InferOutput<typeof QueryStrapiSearchGCF
670
672
  declare const SCreateGCFlyTourSnapDocument: v.ObjectSchema<{
671
673
  readonly title: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
672
674
  readonly slug: v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>]>;
675
+ readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
673
676
  readonly utm_key: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>, undefined>;
674
677
  readonly is_active: v.BooleanSchema<undefined>;
675
678
  readonly is_hidden: v.BooleanSchema<undefined>;
@@ -679,6 +682,7 @@ type SCreateGCFlyTourSnapDocument = v.InferOutput<typeof SCreateGCFlyTourSnapDoc
679
682
  declare const SUpdateGCFlyTourSnapDocument: v.ObjectSchema<{
680
683
  readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
681
684
  readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>;
685
+ readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
682
686
  readonly utm_key: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>, undefined>;
683
687
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
684
688
  readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
@@ -690,6 +694,7 @@ declare const SUpdateGCFlyTourSnapDocumentRequest: v.ObjectSchema<{
690
694
  readonly data: v.ObjectSchema<{
691
695
  readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
692
696
  readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>;
697
+ readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
693
698
  readonly utm_key: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>, undefined>;
694
699
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
695
700
  readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
@@ -721,6 +726,7 @@ type QueryStrapiSearchGCFlyTours = v.InferOutput<typeof QueryStrapiSearchGCFlyTo
721
726
  declare const SCreateGCFlyTourDocument: v.ObjectSchema<{
722
727
  readonly title: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>;
723
728
  readonly slug: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>;
729
+ readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
724
730
  readonly utm_key: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>, undefined>;
725
731
  readonly is_active: v.BooleanSchema<undefined>;
726
732
  readonly is_hidden: v.BooleanSchema<undefined>;
@@ -730,6 +736,7 @@ type SCreateGCFlyTourDocument = v.InferOutput<typeof SCreateGCFlyTourDocument>;
730
736
  declare const SUpdateGCFlyTourDocument: v.ObjectSchema<{
731
737
  readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
732
738
  readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>;
739
+ readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
733
740
  readonly utm_key: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>, undefined>;
734
741
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
735
742
  readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
@@ -741,6 +748,7 @@ declare const SUpdateGCFlyTourDocumentRequest: v.ObjectSchema<{
741
748
  readonly data: v.ObjectSchema<{
742
749
  readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
743
750
  readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>;
751
+ readonly description: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
744
752
  readonly utm_key: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>, v.RegexAction<string, string>]>, undefined>, undefined>;
745
753
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
746
754
  readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
package/dist/schemas.js CHANGED
@@ -1,4 +1,4 @@
1
- export { QuerySortBlogPosts, QuerySortCategories, QuerySortClientContentPillars, QuerySortClientMediaPlatformContentTypes, QuerySortClientMediaPlatforms, QuerySortClientProjects, QuerySortClientReports, QuerySortClientStyleguides, QuerySortClientUsers, QuerySortClients, QuerySortContentPillars, QuerySortEntities, QuerySortGCFlyTourSnaps, QuerySortGCFlyTours, QuerySortMediaContentType, QuerySortMediaPlatforms, QuerySortTeamMembers, QuerySortTeamworkProjectHealth, QuerySortUrlRedirects, QuerySortUsers, QuerySortUtmTrackingLinks, QueryStrapiByDocumentId, QueryStrapiByEmail, QueryStrapiById, QueryStrapiByName, QueryStrapiByPhone, QueryStrapiBySlug, QueryStrapiCommentsFlat, QueryStrapiCommentsInHeirarchy, QueryStrapiFilterComments, QueryStrapiPaginated, QueryStrapiPaginatedUrlRedirects, QueryStrapiSearchBlogPosts, QueryStrapiSearchBlogPostsBySlug, QueryStrapiSearchCategories, QueryStrapiSearchClientContentPillars, QueryStrapiSearchClientMediaPlatformContentTypes, QueryStrapiSearchClientMediaPlatforms, QueryStrapiSearchClientProjects, QueryStrapiSearchClientReports, QueryStrapiSearchClientStyleguide, QueryStrapiSearchClients, QueryStrapiSearchContentPillars, QueryStrapiSearchGCFlyTourSnaps, QueryStrapiSearchGCFlyTours, QueryStrapiSearchMediaContentTypes, QueryStrapiSearchMediaPlatforms, QueryStrapiSearchTeamMembers, QueryStrapiSearchTeamworkProjectHealth, QueryStrapiSearchUtmTrackingLinks, QueryStrapiSortComments, QueryStrapiUrlRedirectsByFrom, QueryStrapiUsers, QueryStrapiUsersByIdentifier, SAssociateClientMediaPlatformContentTypesToMediaContentType, SAssociateClientToClientProjectDocument, SAssociateClientsToGCFlyTour, SAssociateGcFlyTourSnapsToGCFlyTour, SAssociateMediaContentTypesToClientMediaPlatform, SAssociateMediaContentTypesToMediaPlatform, SAssociateMediaPlatformsToMediaContentType, SAuthConnectProviderConfirmation, SAuthConnectProviderRedirectSearch, SAuthRawAccessToken, SChangePassword, SConnectManyEntityRelation, SConnectOneEntityRelation, SCreateCategoryDocument, SCreateClientContentPillarDocument, SCreateClientDocument, SCreateClientMediaPlatformContentTypeDocument, SCreateClientMediaPlatformDocument, SCreateClientProjectDocument, SCreateClientReportDocument, SCreateClientStyleguideDocument, SCreateClientUserDocument, SCreateCommentDocument, SCreateContentPillarDocument, SCreateGCFlyTourDocument, SCreateGCFlyTourSnapDocument, SCreateLeadDocument, SCreateMediaContentTypeDocument, SCreateMediaPlatformDocument, SCreateMultipleStrapiMediaUploadDocument, SCreateNewsletterSignup, SCreateNewsletterSignupDocument, SCreateResume, SCreateResumeInfo, SCreateResumeInfoDocument, SCreateStrapiMediaUploadDocument, SCreateUserDocument, SCreateUtmTrackingLinkDocument, SCreateUtmTrackingLinkDocumentRequest, SCreateUtmTrackingLinkParts, SDeleteCommentDocument, SDisconnectManyEntityRelation, SDisconnectOneEntityRelation, SEntityRelation, SEntityRelationPosition, SEntityRelationPositionAfter, SEntityRelationPositionBefore, SEntityRelationPositionEnd, SEntityRelationPositionStart, SForgotUserPassword, SFormCreateMultipleUtmTrackingLinkDocuments, SLoginUser, SQueryListClientUserDocuments, SReadUserAccountByDocumentId, SReadUserAccountById, SReadUtmTrackingLinkDocumentByUrl, SRegisterUser, SReportCommentDocument, SRequestConfirmEmail, SResetUserPassword, SSetManyEntityRelation, SSetOneEntityRelation, SUpdateCategoryDocument, SUpdateCategoryDocumentRequest, SUpdateClientContentPillarDocument, SUpdateClientContentPillarDocumentRequest, SUpdateClientDocument, SUpdateClientDocumentRequest, SUpdateClientMediaPlatformContentTypeDocument, SUpdateClientMediaPlatformContentTypeDocumentRequest, SUpdateClientMediaPlatformDocument, SUpdateClientMediaPlatformDocumentRequest, SUpdateClientProjectDocument, SUpdateClientProjectDocumentRequest, SUpdateClientReportDocument, SUpdateClientReportDocumentRequest, SUpdateClientStyleguideDocument, SUpdateClientStyleguideDocumentRequest, SUpdateClientUserDocument, SUpdateClientUserDocumentRequest, SUpdateCommentDocument, SUpdateContentPillarDocument, SUpdateContentPillarDocumentRequest, SUpdateGCFlyTourDocument, SUpdateGCFlyTourDocumentRequest, SUpdateGCFlyTourSnapDocument, SUpdateGCFlyTourSnapDocumentRequest, SUpdateLeadDocument, SUpdateLeadRequest, SUpdateMediaContentTypeDocument, SUpdateMediaContentTypeDocumentRequest, SUpdateMediaPlatformDocument, SUpdateMediaPlatformDocumentRequest, SUpdateNewsletterSignupDocument, SUpdateNewsletterSignupRequest, SUpdateResumeInfo, SUpdateResumeInfoDocument, SUpdateResumeInfoRequest, SUpdateStrapiMediaFileInfo, SUpdateTrendsLikes, SUpdateUserAccount, SUpdateUserAccountFirstName, SUpdateUserAccountLastName, SUpdateUserAccountPreferredName, SUpdateUtmTrackingLinkDocument, SUpdateUtmTrackingLinkDocumentRequest, SUserToken, SUtmLinkBuilderPartCampaignDateOptions, SUtmLinkBuilderTableForm, SVerifyClientUserDocument, SharpSpringSignUpToDownload, TeamworkProjectHealthProjectStatusOptions, TeamworkProjectHealthSelectSortOptions, checkIsValidUrlList } from './chunk-JZXU66ZZ.js';
1
+ export { QuerySortBlogPosts, QuerySortCategories, QuerySortClientContentPillars, QuerySortClientMediaPlatformContentTypes, QuerySortClientMediaPlatforms, QuerySortClientProjects, QuerySortClientReports, QuerySortClientStyleguides, QuerySortClientUsers, QuerySortClients, QuerySortContentPillars, QuerySortEntities, QuerySortGCFlyTourSnaps, QuerySortGCFlyTours, QuerySortMediaContentType, QuerySortMediaPlatforms, QuerySortTeamMembers, QuerySortTeamworkProjectHealth, QuerySortUrlRedirects, QuerySortUsers, QuerySortUtmTrackingLinks, QueryStrapiByDocumentId, QueryStrapiByEmail, QueryStrapiById, QueryStrapiByName, QueryStrapiByPhone, QueryStrapiBySlug, QueryStrapiCommentsFlat, QueryStrapiCommentsInHeirarchy, QueryStrapiFilterComments, QueryStrapiPaginated, QueryStrapiPaginatedUrlRedirects, QueryStrapiSearchBlogPosts, QueryStrapiSearchBlogPostsBySlug, QueryStrapiSearchCategories, QueryStrapiSearchClientContentPillars, QueryStrapiSearchClientMediaPlatformContentTypes, QueryStrapiSearchClientMediaPlatforms, QueryStrapiSearchClientProjects, QueryStrapiSearchClientReports, QueryStrapiSearchClientStyleguide, QueryStrapiSearchClients, QueryStrapiSearchContentPillars, QueryStrapiSearchGCFlyTourSnaps, QueryStrapiSearchGCFlyTours, QueryStrapiSearchMediaContentTypes, QueryStrapiSearchMediaPlatforms, QueryStrapiSearchTeamMembers, QueryStrapiSearchTeamworkProjectHealth, QueryStrapiSearchUtmTrackingLinks, QueryStrapiSortComments, QueryStrapiUrlRedirectsByFrom, QueryStrapiUsers, QueryStrapiUsersByIdentifier, SAssociateClientMediaPlatformContentTypesToMediaContentType, SAssociateClientToClientProjectDocument, SAssociateClientsToGCFlyTour, SAssociateGcFlyTourSnapsToGCFlyTour, SAssociateMediaContentTypesToClientMediaPlatform, SAssociateMediaContentTypesToMediaPlatform, SAssociateMediaPlatformsToMediaContentType, SAuthConnectProviderConfirmation, SAuthConnectProviderRedirectSearch, SAuthRawAccessToken, SChangePassword, SConnectManyEntityRelation, SConnectOneEntityRelation, SCreateCategoryDocument, SCreateClientContentPillarDocument, SCreateClientDocument, SCreateClientMediaPlatformContentTypeDocument, SCreateClientMediaPlatformDocument, SCreateClientProjectDocument, SCreateClientReportDocument, SCreateClientStyleguideDocument, SCreateClientUserDocument, SCreateCommentDocument, SCreateContentPillarDocument, SCreateGCFlyTourDocument, SCreateGCFlyTourSnapDocument, SCreateLeadDocument, SCreateMediaContentTypeDocument, SCreateMediaPlatformDocument, SCreateMultipleStrapiMediaUploadDocument, SCreateNewsletterSignup, SCreateNewsletterSignupDocument, SCreateResume, SCreateResumeInfo, SCreateResumeInfoDocument, SCreateStrapiMediaUploadDocument, SCreateUserDocument, SCreateUtmTrackingLinkDocument, SCreateUtmTrackingLinkDocumentRequest, SCreateUtmTrackingLinkParts, SDeleteCommentDocument, SDisconnectManyEntityRelation, SDisconnectOneEntityRelation, SEntityRelation, SEntityRelationPosition, SEntityRelationPositionAfter, SEntityRelationPositionBefore, SEntityRelationPositionEnd, SEntityRelationPositionStart, SForgotUserPassword, SFormCreateMultipleUtmTrackingLinkDocuments, SLoginUser, SQueryListClientUserDocuments, SReadUserAccountByDocumentId, SReadUserAccountById, SReadUtmTrackingLinkDocumentByUrl, SRegisterUser, SReportCommentDocument, SRequestConfirmEmail, SResetUserPassword, SSetManyEntityRelation, SSetOneEntityRelation, SUpdateCategoryDocument, SUpdateCategoryDocumentRequest, SUpdateClientContentPillarDocument, SUpdateClientContentPillarDocumentRequest, SUpdateClientDocument, SUpdateClientDocumentRequest, SUpdateClientMediaPlatformContentTypeDocument, SUpdateClientMediaPlatformContentTypeDocumentRequest, SUpdateClientMediaPlatformDocument, SUpdateClientMediaPlatformDocumentRequest, SUpdateClientProjectDocument, SUpdateClientProjectDocumentRequest, SUpdateClientReportDocument, SUpdateClientReportDocumentRequest, SUpdateClientStyleguideDocument, SUpdateClientStyleguideDocumentRequest, SUpdateClientUserDocument, SUpdateClientUserDocumentRequest, SUpdateCommentDocument, SUpdateContentPillarDocument, SUpdateContentPillarDocumentRequest, SUpdateGCFlyTourDocument, SUpdateGCFlyTourDocumentRequest, SUpdateGCFlyTourSnapDocument, SUpdateGCFlyTourSnapDocumentRequest, SUpdateLeadDocument, SUpdateLeadRequest, SUpdateMediaContentTypeDocument, SUpdateMediaContentTypeDocumentRequest, SUpdateMediaPlatformDocument, SUpdateMediaPlatformDocumentRequest, SUpdateNewsletterSignupDocument, SUpdateNewsletterSignupRequest, SUpdateResumeInfo, SUpdateResumeInfoDocument, SUpdateResumeInfoRequest, SUpdateStrapiMediaFileInfo, SUpdateTrendsLikes, SUpdateUserAccount, SUpdateUserAccountFirstName, SUpdateUserAccountLastName, SUpdateUserAccountPreferredName, SUpdateUtmTrackingLinkDocument, SUpdateUtmTrackingLinkDocumentRequest, SUserToken, SUtmLinkBuilderPartCampaignDateOptions, SUtmLinkBuilderTableForm, SVerifyClientUserDocument, SharpSpringSignUpToDownload, TeamworkProjectHealthProjectStatusOptions, TeamworkProjectHealthSelectSortOptions, checkIsValidUrlList } from './chunk-LAKJI5ST.js';
2
2
  import './chunk-7N7UME6I.js';
3
3
  import './chunk-6QXOUWYU.js';
4
4
  //# sourceMappingURL=schemas.js.map
package/dist/types.d.cts CHANGED
@@ -1,5 +1,5 @@
1
- import { j as RichTextBlock, w as MediaUploadDocument, e as ComponentBlockVideo, t as BaseDocument, d as BlockVideoEmbed, c as ComponentBlockFullscreenContent, k as ComponentSharedRichTextBlock, Z as TagDocument, o as SeoMeta, s as ComponentUtmOption } from './comment.document-BYpo9fTo.cjs';
2
- export { a0 as AuthorizedUserDocument, B as BlockBrandLogos, b as BlockFullscreenContent, a as BlockFullscreenContentType, f as BrandStyleguideColor, h as BrandStyleguideFont, x as ClientContentPillarDocument, H as ClientDocument, y as ClientMediaPlatformContentTypeDocument, z as ClientMediaPlatformDocument, A as ClientProjectDocument, D as ClientReportDocument, E as ClientStyleguideDocument, F as ClientUserDocument, G as ClientUserDocumentStatus, J as CommentDocument, I as CommentReportDocument, C as ComponentBlockBrandLogos, g as ComponentBrandStyleguideColor, i as ComponentBrandStyleguideFont, n as ComponentMetaSocial, l as ComponentOpenGraph, p as ComponentSeoMeta, K as ContentPillarDocument, N as GCFlyTourDocument, L as GCFlyTourSnapDocument, P as MediaContentTypeDocument, u as MediaFormat, v as MediaFormats, Q as MediaPlatformDocument, m as MetaSocial, M as MetaSocialNetwork, O as OpenGraph, T as PermissionDocument, W as ProductDocument, V as ProductHighlightDocument, R as RichTextBlockChildren, Y as RoleDocument, X as RoleType, S as SharedRichTextBlock, _ as UserAccountDocument, a1 as UserAuthorizationLoginResponse, a2 as UserAuthorizationSuccessResponse, $ as UserDocument, U as UtmClassificationKey, r as UtmOption, q as UtmSourceKey, a3 as UtmTrackingLinkDocument } from './comment.document-BYpo9fTo.cjs';
1
+ import { j as RichTextBlock, w as MediaUploadDocument, e as ComponentBlockVideo, t as BaseDocument, d as BlockVideoEmbed, c as ComponentBlockFullscreenContent, k as ComponentSharedRichTextBlock, Z as TagDocument, o as SeoMeta, s as ComponentUtmOption } from './comment.document-GufLVDjw.cjs';
2
+ export { a0 as AuthorizedUserDocument, B as BlockBrandLogos, b as BlockFullscreenContent, a as BlockFullscreenContentType, f as BrandStyleguideColor, h as BrandStyleguideFont, x as ClientContentPillarDocument, H as ClientDocument, y as ClientMediaPlatformContentTypeDocument, z as ClientMediaPlatformDocument, A as ClientProjectDocument, D as ClientReportDocument, E as ClientStyleguideDocument, F as ClientUserDocument, G as ClientUserDocumentStatus, J as CommentDocument, I as CommentReportDocument, C as ComponentBlockBrandLogos, g as ComponentBrandStyleguideColor, i as ComponentBrandStyleguideFont, n as ComponentMetaSocial, l as ComponentOpenGraph, p as ComponentSeoMeta, K as ContentPillarDocument, N as GCFlyTourDocument, L as GCFlyTourSnapDocument, P as MediaContentTypeDocument, u as MediaFormat, v as MediaFormats, Q as MediaPlatformDocument, m as MetaSocial, M as MetaSocialNetwork, O as OpenGraph, T as PermissionDocument, W as ProductDocument, V as ProductHighlightDocument, R as RichTextBlockChildren, Y as RoleDocument, X as RoleType, S as SharedRichTextBlock, _ as UserAccountDocument, a1 as UserAuthorizationLoginResponse, a2 as UserAuthorizationSuccessResponse, $ as UserDocument, U as UtmClassificationKey, r as UtmOption, q as UtmSourceKey, a3 as UtmTrackingLinkDocument } from './comment.document-GufLVDjw.cjs';
3
3
  export { e as StrapiAttributeErrorDetail, c as StrapiAttributeErrorKey, i as StrapiAttributeErrorResponse, d as StrapiErrorDetail, h as StrapiErrorResponse, j as StrapiErrorResult, g as StrapiListResponse, S as StrapiPagination, a as StrapiResponseMeta, b as StrapiResponseMetaWithPagination, f as StrapiSingleResponse } from './response-8Bkawql4.cjs';
4
4
  import './font.constants-BVwxlH3J.cjs';
5
5
  import './permission.constants-Chqmz1hY.cjs';
package/dist/types.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { j as RichTextBlock, w as MediaUploadDocument, e as ComponentBlockVideo, t as BaseDocument, d as BlockVideoEmbed, c as ComponentBlockFullscreenContent, k as ComponentSharedRichTextBlock, Z as TagDocument, o as SeoMeta, s as ComponentUtmOption } from './comment.document-BefWOXLs.js';
2
- export { a0 as AuthorizedUserDocument, B as BlockBrandLogos, b as BlockFullscreenContent, a as BlockFullscreenContentType, f as BrandStyleguideColor, h as BrandStyleguideFont, x as ClientContentPillarDocument, H as ClientDocument, y as ClientMediaPlatformContentTypeDocument, z as ClientMediaPlatformDocument, A as ClientProjectDocument, D as ClientReportDocument, E as ClientStyleguideDocument, F as ClientUserDocument, G as ClientUserDocumentStatus, J as CommentDocument, I as CommentReportDocument, C as ComponentBlockBrandLogos, g as ComponentBrandStyleguideColor, i as ComponentBrandStyleguideFont, n as ComponentMetaSocial, l as ComponentOpenGraph, p as ComponentSeoMeta, K as ContentPillarDocument, N as GCFlyTourDocument, L as GCFlyTourSnapDocument, P as MediaContentTypeDocument, u as MediaFormat, v as MediaFormats, Q as MediaPlatformDocument, m as MetaSocial, M as MetaSocialNetwork, O as OpenGraph, T as PermissionDocument, W as ProductDocument, V as ProductHighlightDocument, R as RichTextBlockChildren, Y as RoleDocument, X as RoleType, S as SharedRichTextBlock, _ as UserAccountDocument, a1 as UserAuthorizationLoginResponse, a2 as UserAuthorizationSuccessResponse, $ as UserDocument, U as UtmClassificationKey, r as UtmOption, q as UtmSourceKey, a3 as UtmTrackingLinkDocument } from './comment.document-BefWOXLs.js';
1
+ import { j as RichTextBlock, w as MediaUploadDocument, e as ComponentBlockVideo, t as BaseDocument, d as BlockVideoEmbed, c as ComponentBlockFullscreenContent, k as ComponentSharedRichTextBlock, Z as TagDocument, o as SeoMeta, s as ComponentUtmOption } from './comment.document-T23NQFSZ.js';
2
+ export { a0 as AuthorizedUserDocument, B as BlockBrandLogos, b as BlockFullscreenContent, a as BlockFullscreenContentType, f as BrandStyleguideColor, h as BrandStyleguideFont, x as ClientContentPillarDocument, H as ClientDocument, y as ClientMediaPlatformContentTypeDocument, z as ClientMediaPlatformDocument, A as ClientProjectDocument, D as ClientReportDocument, E as ClientStyleguideDocument, F as ClientUserDocument, G as ClientUserDocumentStatus, J as CommentDocument, I as CommentReportDocument, C as ComponentBlockBrandLogos, g as ComponentBrandStyleguideColor, i as ComponentBrandStyleguideFont, n as ComponentMetaSocial, l as ComponentOpenGraph, p as ComponentSeoMeta, K as ContentPillarDocument, N as GCFlyTourDocument, L as GCFlyTourSnapDocument, P as MediaContentTypeDocument, u as MediaFormat, v as MediaFormats, Q as MediaPlatformDocument, m as MetaSocial, M as MetaSocialNetwork, O as OpenGraph, T as PermissionDocument, W as ProductDocument, V as ProductHighlightDocument, R as RichTextBlockChildren, Y as RoleDocument, X as RoleType, S as SharedRichTextBlock, _ as UserAccountDocument, a1 as UserAuthorizationLoginResponse, a2 as UserAuthorizationSuccessResponse, $ as UserDocument, U as UtmClassificationKey, r as UtmOption, q as UtmSourceKey, a3 as UtmTrackingLinkDocument } from './comment.document-T23NQFSZ.js';
3
3
  export { e as StrapiAttributeErrorDetail, c as StrapiAttributeErrorKey, i as StrapiAttributeErrorResponse, d as StrapiErrorDetail, h as StrapiErrorResponse, j as StrapiErrorResult, g as StrapiListResponse, S as StrapiPagination, a as StrapiResponseMeta, b as StrapiResponseMetaWithPagination, f as StrapiSingleResponse } from './response-8Bkawql4.js';
4
4
  import './font.constants-BVwxlH3J.js';
5
5
  import './permission.constants-Chqmz1hY.js';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@getcommunity/gc-validators",
3
3
  "description": "Schema Validator for GetCommunity web-stack types",
4
- "version": "0.0.198",
4
+ "version": "0.0.201",
5
5
  "author": "Joey Grable <joey@getcommunity.com> (https://joeygrable.com)",
6
6
  "contributors": [],
7
7
  "type": "module",