@getcommunity/gc-validators 0.0.211 → 0.0.212

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.
@@ -254,8 +254,8 @@ declare const SAssociateClientToClientProjectDocument: v.ObjectSchema<{
254
254
  }, undefined>;
255
255
  type SAssociateClientToClientProjectDocument = v.InferOutput<typeof SAssociateClientToClientProjectDocument>;
256
256
 
257
- declare const ClientReportSortKeys: readonly ["id", "title", "is_active", "is_external", "createdAt", "updatedAt"];
258
- declare const QuerySortClientReports: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "is_active:ASC" | "is_active:DESC" | "is_external:ASC" | "is_external:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "is_active:ASC" | "is_active:DESC" | "is_external:ASC" | "is_external:DESC")[], 6, undefined>]>, undefined>;
257
+ declare const ClientReportSortKeys: readonly ["id", "title", "is_active", "is_external", "is_hidden", "createdAt", "updatedAt"];
258
+ declare const QuerySortClientReports: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "is_active:ASC" | "is_active:DESC" | "is_hidden:ASC" | "is_hidden:DESC" | "is_external:ASC" | "is_external:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "is_active:ASC" | "is_active:DESC" | "is_hidden:ASC" | "is_hidden:DESC" | "is_external:ASC" | "is_external:DESC")[], 7, undefined>]>, undefined>;
259
259
  type QuerySortClientReports = v.InferOutput<typeof QuerySortClientReports>;
260
260
  declare const QueryStrapiSearchClientReports: v.ObjectSchema<{
261
261
  readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
@@ -264,8 +264,9 @@ declare const QueryStrapiSearchClientReports: v.ObjectSchema<{
264
264
  readonly report_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
265
265
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
266
266
  readonly is_external: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
267
+ readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
267
268
  readonly client_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
268
- readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "is_active:ASC" | "is_active:DESC" | "is_external:ASC" | "is_external:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "is_active:ASC" | "is_active:DESC" | "is_external:ASC" | "is_external:DESC")[], 6, undefined>]>, undefined>;
269
+ readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "is_active:ASC" | "is_active:DESC" | "is_hidden:ASC" | "is_hidden:DESC" | "is_external:ASC" | "is_external:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "is_active:ASC" | "is_active:DESC" | "is_hidden:ASC" | "is_hidden:DESC" | "is_external:ASC" | "is_external:DESC")[], 7, undefined>]>, undefined>;
269
270
  }, undefined>;
270
271
  type QueryStrapiSearchClientReports = v.InferOutput<typeof QueryStrapiSearchClientReports>;
271
272
  declare const SCreateClientReportDocument: v.ObjectSchema<{
@@ -274,6 +275,7 @@ declare const SCreateClientReportDocument: v.ObjectSchema<{
274
275
  readonly report_id: 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>]>]>;
275
276
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, true>;
276
277
  readonly is_external: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
278
+ readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
277
279
  readonly scopes: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<"Please provide a valid list of scopes.">, undefined>]>, readonly ["user:*"]>;
278
280
  }, undefined>;
279
281
  type SCreateClientReportDocument = v.InferOutput<typeof SCreateClientReportDocument>;
@@ -283,6 +285,7 @@ declare const SUpdateClientReportDocument: v.ObjectSchema<{
283
285
  readonly report_id: 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>;
284
286
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
285
287
  readonly is_external: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
288
+ readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
286
289
  readonly scopes: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<"Please provide a valid list of scopes.">, undefined>]>, readonly ["user:*"]>;
287
290
  }, undefined>;
288
291
  type SUpdateClientReportDocument = v.InferOutput<typeof SUpdateClientReportDocument>;
@@ -294,6 +297,7 @@ declare const SUpdateClientReportDocumentRequest: v.ObjectSchema<{
294
297
  readonly report_id: 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>;
295
298
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
296
299
  readonly is_external: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
300
+ readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
297
301
  readonly scopes: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<"Please provide a valid list of scopes.">, undefined>]>, readonly ["user:*"]>;
298
302
  }, undefined>;
299
303
  }, undefined>;
package/dist/schemas.d.ts CHANGED
@@ -254,8 +254,8 @@ declare const SAssociateClientToClientProjectDocument: v.ObjectSchema<{
254
254
  }, undefined>;
255
255
  type SAssociateClientToClientProjectDocument = v.InferOutput<typeof SAssociateClientToClientProjectDocument>;
256
256
 
257
- declare const ClientReportSortKeys: readonly ["id", "title", "is_active", "is_external", "createdAt", "updatedAt"];
258
- declare const QuerySortClientReports: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "is_active:ASC" | "is_active:DESC" | "is_external:ASC" | "is_external:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "is_active:ASC" | "is_active:DESC" | "is_external:ASC" | "is_external:DESC")[], 6, undefined>]>, undefined>;
257
+ declare const ClientReportSortKeys: readonly ["id", "title", "is_active", "is_external", "is_hidden", "createdAt", "updatedAt"];
258
+ declare const QuerySortClientReports: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "is_active:ASC" | "is_active:DESC" | "is_hidden:ASC" | "is_hidden:DESC" | "is_external:ASC" | "is_external:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "is_active:ASC" | "is_active:DESC" | "is_hidden:ASC" | "is_hidden:DESC" | "is_external:ASC" | "is_external:DESC")[], 7, undefined>]>, undefined>;
259
259
  type QuerySortClientReports = v.InferOutput<typeof QuerySortClientReports>;
260
260
  declare const QueryStrapiSearchClientReports: v.ObjectSchema<{
261
261
  readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
@@ -264,8 +264,9 @@ declare const QueryStrapiSearchClientReports: v.ObjectSchema<{
264
264
  readonly report_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, number, undefined>]>, undefined>;
265
265
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
266
266
  readonly is_external: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
267
+ readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
267
268
  readonly client_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, number, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
268
- readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "is_active:ASC" | "is_active:DESC" | "is_external:ASC" | "is_external:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "is_active:ASC" | "is_active:DESC" | "is_external:ASC" | "is_external:DESC")[], 6, undefined>]>, undefined>;
269
+ readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "is_active:ASC" | "is_active:DESC" | "is_hidden:ASC" | "is_hidden:DESC" | "is_external:ASC" | "is_external:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "title:ASC" | "id:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "title:DESC" | "is_active:ASC" | "is_active:DESC" | "is_hidden:ASC" | "is_hidden:DESC" | "is_external:ASC" | "is_external:DESC")[], 7, undefined>]>, undefined>;
269
270
  }, undefined>;
270
271
  type QueryStrapiSearchClientReports = v.InferOutput<typeof QueryStrapiSearchClientReports>;
271
272
  declare const SCreateClientReportDocument: v.ObjectSchema<{
@@ -274,6 +275,7 @@ declare const SCreateClientReportDocument: v.ObjectSchema<{
274
275
  readonly report_id: 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>]>]>;
275
276
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, true>;
276
277
  readonly is_external: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
278
+ readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
277
279
  readonly scopes: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<"Please provide a valid list of scopes.">, undefined>]>, readonly ["user:*"]>;
278
280
  }, undefined>;
279
281
  type SCreateClientReportDocument = v.InferOutput<typeof SCreateClientReportDocument>;
@@ -283,6 +285,7 @@ declare const SUpdateClientReportDocument: v.ObjectSchema<{
283
285
  readonly report_id: 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>;
284
286
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
285
287
  readonly is_external: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
288
+ readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
286
289
  readonly scopes: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<"Please provide a valid list of scopes.">, undefined>]>, readonly ["user:*"]>;
287
290
  }, undefined>;
288
291
  type SUpdateClientReportDocument = v.InferOutput<typeof SUpdateClientReportDocument>;
@@ -294,6 +297,7 @@ declare const SUpdateClientReportDocumentRequest: v.ObjectSchema<{
294
297
  readonly report_id: 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>;
295
298
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
296
299
  readonly is_external: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
300
+ readonly is_hidden: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
297
301
  readonly scopes: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<"Please provide a valid list of scopes.">, undefined>]>, readonly ["user:*"]>;
298
302
  }, undefined>;
299
303
  }, undefined>;
package/dist/schemas.js CHANGED
@@ -1,4 +1,4 @@
1
- export { BlogPostSortKeys, CategorySortKeys, ClientContentPillarSortKeys, ClientMediaPlatformContentTypeSortKeys, ClientMediaPlatformSortKeys, ClientProjectSortKeys, ClientReportSortKeys, ClientSortKeys, ClientStyleguideSortKeys, ClientUserSortKeys, ContentPillarSortKeys, EntitySortKeys, GCFlyTourSnapSortKeys, GCFlyTourSortKeys, MediaContentTypeSortKeys, MediaPlatformSortKeys, QueryFilterStrapiComments, QuerySortBlogPosts, QuerySortCategories, QuerySortClientContentPillars, QuerySortClientMediaPlatformContentTypes, QuerySortClientMediaPlatforms, QuerySortClientProjects, QuerySortClientReports, QuerySortClientStyleguides, QuerySortClientUsers, QuerySortClients, QuerySortContentPillars, QuerySortEntities, QuerySortGCFlyTourSnaps, QuerySortGCFlyTours, QuerySortMediaContentType, QuerySortMediaPlatforms, QuerySortStrapiComments, QuerySortTags, QuerySortTeamMembers, QuerySortTeamworkProjectHealth, QuerySortUrlRedirects, QuerySortUsers, QuerySortUtmTrackingLinks, QueryStrapiByDocumentId, QueryStrapiByEmail, QueryStrapiById, QueryStrapiByName, QueryStrapiByPhone, QueryStrapiBySlug, QueryStrapiCommentsFlat, QueryStrapiCommentsInHeirarchy, QueryStrapiPaginated, QueryStrapiPaginatedUrlRedirects, QueryStrapiSearchBlogPosts, QueryStrapiSearchBlogPostsBySlug, QueryStrapiSearchCategories, QueryStrapiSearchClientContentPillars, QueryStrapiSearchClientMediaPlatformContentTypes, QueryStrapiSearchClientMediaPlatforms, QueryStrapiSearchClientProjects, QueryStrapiSearchClientReports, QueryStrapiSearchClientStyleguide, QueryStrapiSearchClients, QueryStrapiSearchContentPillars, QueryStrapiSearchGCFlyTourSnaps, QueryStrapiSearchGCFlyTours, QueryStrapiSearchMediaContentTypes, QueryStrapiSearchMediaPlatforms, QueryStrapiSearchTags, QueryStrapiSearchTeamMembers, QueryStrapiSearchTeamworkProjectHealth, QueryStrapiSearchUtmTrackingLinks, 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, SCreateTagDocument, 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, SUpdateTagDocument, SUpdateTagDocumentRequest, SUpdateTrendsLikes, SUpdateUserAccount, SUpdateUserAccountFirstName, SUpdateUserAccountLastName, SUpdateUserAccountPreferredName, SUpdateUtmTrackingLinkDocument, SUpdateUtmTrackingLinkDocumentRequest, SUserToken, SUtmLinkBuilderPartCampaignDateOptions, SUtmLinkBuilderTableForm, SVerifyClientUserDocument, SharpSpringSignUpToDownload, StrapiCommentSortKeys, TagSortKeys, TeamMemberSortKeys, TeamworkProjectHealthProjectStatusOptions, TeamworkProjectHealthSelectSortOptions, UrlRedirectSortKeys, UserSortKeys, UtmTrackingLinkSortKeys, VIntegerNullable, VNumberNullable, VPage, VSize, VString, VStringEmail, VStringLong, VStringLongNullable, VStringMax, VStringMaxRegex, VStringMinMax, VStringMinMaxRegex, VStringPhone, VStringPhoneNullable, VStringShort, VStringShortNullable, VStringSlug, VStringUrl, VStringUrlNoUtm, VStringUrlNullable, VStringUrlUtm, checkIsValidUrlList } from './chunk-B7HPJU5S.js';
1
+ export { BlogPostSortKeys, CategorySortKeys, ClientContentPillarSortKeys, ClientMediaPlatformContentTypeSortKeys, ClientMediaPlatformSortKeys, ClientProjectSortKeys, ClientReportSortKeys, ClientSortKeys, ClientStyleguideSortKeys, ClientUserSortKeys, ContentPillarSortKeys, EntitySortKeys, GCFlyTourSnapSortKeys, GCFlyTourSortKeys, MediaContentTypeSortKeys, MediaPlatformSortKeys, QueryFilterStrapiComments, QuerySortBlogPosts, QuerySortCategories, QuerySortClientContentPillars, QuerySortClientMediaPlatformContentTypes, QuerySortClientMediaPlatforms, QuerySortClientProjects, QuerySortClientReports, QuerySortClientStyleguides, QuerySortClientUsers, QuerySortClients, QuerySortContentPillars, QuerySortEntities, QuerySortGCFlyTourSnaps, QuerySortGCFlyTours, QuerySortMediaContentType, QuerySortMediaPlatforms, QuerySortStrapiComments, QuerySortTags, QuerySortTeamMembers, QuerySortTeamworkProjectHealth, QuerySortUrlRedirects, QuerySortUsers, QuerySortUtmTrackingLinks, QueryStrapiByDocumentId, QueryStrapiByEmail, QueryStrapiById, QueryStrapiByName, QueryStrapiByPhone, QueryStrapiBySlug, QueryStrapiCommentsFlat, QueryStrapiCommentsInHeirarchy, QueryStrapiPaginated, QueryStrapiPaginatedUrlRedirects, QueryStrapiSearchBlogPosts, QueryStrapiSearchBlogPostsBySlug, QueryStrapiSearchCategories, QueryStrapiSearchClientContentPillars, QueryStrapiSearchClientMediaPlatformContentTypes, QueryStrapiSearchClientMediaPlatforms, QueryStrapiSearchClientProjects, QueryStrapiSearchClientReports, QueryStrapiSearchClientStyleguide, QueryStrapiSearchClients, QueryStrapiSearchContentPillars, QueryStrapiSearchGCFlyTourSnaps, QueryStrapiSearchGCFlyTours, QueryStrapiSearchMediaContentTypes, QueryStrapiSearchMediaPlatforms, QueryStrapiSearchTags, QueryStrapiSearchTeamMembers, QueryStrapiSearchTeamworkProjectHealth, QueryStrapiSearchUtmTrackingLinks, 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, SCreateTagDocument, 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, SUpdateTagDocument, SUpdateTagDocumentRequest, SUpdateTrendsLikes, SUpdateUserAccount, SUpdateUserAccountFirstName, SUpdateUserAccountLastName, SUpdateUserAccountPreferredName, SUpdateUtmTrackingLinkDocument, SUpdateUtmTrackingLinkDocumentRequest, SUserToken, SUtmLinkBuilderPartCampaignDateOptions, SUtmLinkBuilderTableForm, SVerifyClientUserDocument, SharpSpringSignUpToDownload, StrapiCommentSortKeys, TagSortKeys, TeamMemberSortKeys, TeamworkProjectHealthProjectStatusOptions, TeamworkProjectHealthSelectSortOptions, UrlRedirectSortKeys, UserSortKeys, UtmTrackingLinkSortKeys, VIntegerNullable, VNumberNullable, VPage, VSize, VString, VStringEmail, VStringLong, VStringLongNullable, VStringMax, VStringMaxRegex, VStringMinMax, VStringMinMaxRegex, VStringPhone, VStringPhoneNullable, VStringShort, VStringShortNullable, VStringSlug, VStringUrl, VStringUrlNoUtm, VStringUrlNullable, VStringUrlUtm, checkIsValidUrlList } from './chunk-MEREAIZ7.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-0CuDvwEI.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-0CuDvwEI.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-D7hjYgJI.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-D7hjYgJI.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-h_60FCul.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-h_60FCul.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-DNvIdAPp.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-DNvIdAPp.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.211",
4
+ "version": "0.0.212",
5
5
  "author": "Joey Grable <joey@getcommunity.com> (https://joeygrable.com)",
6
6
  "contributors": [],
7
7
  "type": "module",