@joeygrable94/utm-src-pub-validators 0.0.98 → 0.0.99
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/index.cjs +18 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +19 -1
- package/dist/index.d.ts +19 -1
- package/dist/index.js +17 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -936,6 +936,15 @@ declare const SQueryListUserDocumentsByIdentifier: v.ObjectSchema<{
|
|
|
936
936
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10, undefined>]>, 10>, 10>;
|
|
937
937
|
}, undefined>;
|
|
938
938
|
type SQueryListUserDocumentsByIdentifier = v.InferOutput<typeof SQueryListUserDocumentsByIdentifier>;
|
|
939
|
+
declare const SCreateUserDocument: v.ObjectSchema<{
|
|
940
|
+
readonly username: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a username">, v.TrimAction, v.MinLengthAction<string, 3, "your username is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 255, "your username is too long, it must be 255 characters or less">, v.RegexAction<string, "your username can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
941
|
+
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>;
|
|
942
|
+
readonly password: v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string, 8, "your password is too short, it must be at least 8 characters">, v.MaxLengthAction<string, 255, "your password is too long, it must be 255 characters or less">]>;
|
|
943
|
+
readonly blocked: v.BooleanSchema<"this value must be either true or false">;
|
|
944
|
+
readonly confirmed: v.BooleanSchema<"this value must be either true or false">;
|
|
945
|
+
readonly role: v.SchemaWithPipe<readonly [v.NumberSchema<"please provide a valid id">, v.MinValueAction<number, 0, "please provide a valid id">]>;
|
|
946
|
+
}, undefined>;
|
|
947
|
+
type SCreateUserDocument = v.InferOutput<typeof SCreateUserDocument>;
|
|
939
948
|
declare const SReadUserDocumentById: v.ObjectSchema<{
|
|
940
949
|
readonly id: v.SchemaWithPipe<readonly [v.NumberSchema<"please provide a valid id">, v.MinValueAction<number, 0, "please provide a valid id">]>;
|
|
941
950
|
}, undefined>;
|
|
@@ -944,6 +953,15 @@ declare const SReadUserDocumentByDocumentId: v.ObjectSchema<{
|
|
|
944
953
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
945
954
|
}, undefined>;
|
|
946
955
|
type SReadUserDocumentByDocumentId = v.InferOutput<typeof SReadUserDocumentByDocumentId>;
|
|
956
|
+
declare const SUpdateUserDocument: v.ObjectSchema<{
|
|
957
|
+
readonly username: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a username">, v.TrimAction, v.MinLengthAction<string, 3, "your username is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 255, "your username is too long, it must be 255 characters or less">, v.RegexAction<string, "your username can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
958
|
+
readonly email: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>, undefined>;
|
|
959
|
+
readonly password: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string, 8, "your password is too short, it must be at least 8 characters">, v.MaxLengthAction<string, 255, "your password is too long, it must be 255 characters or less">]>, undefined>;
|
|
960
|
+
readonly blocked: v.UndefinedableSchema<v.BooleanSchema<"this value must be either true or false">, undefined>;
|
|
961
|
+
readonly confirmed: v.UndefinedableSchema<v.BooleanSchema<"this value must be either true or false">, undefined>;
|
|
962
|
+
readonly role: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<"please provide a valid id">, v.MinValueAction<number, 0, "please provide a valid id">]>, undefined>;
|
|
963
|
+
}, undefined>;
|
|
964
|
+
type SUpdateUserDocument = v.InferOutput<typeof SUpdateUserDocument>;
|
|
947
965
|
|
|
948
966
|
declare const SQuerySortCampaignIdDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
949
967
|
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "cost", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
@@ -6139,4 +6157,4 @@ declare const IsValidOrUndefinedUrlUtmTerm: v.UndefinedableSchema<v.SchemaWithPi
|
|
|
6139
6157
|
declare const IsValidUrlUtmId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2030, "the utm_id is too long, it must be 2030 characters or less">, v.RegexAction<string, "utm_id can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
6140
6158
|
declare const IsValidOrUndefinedUrlUtmId: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2030, "the utm_id is too long, it must be 2030 characters or less">, v.RegexAction<string, "utm_id can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
6141
6159
|
|
|
6142
|
-
export { CAMPAIGN_ID_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_ID_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_MAX_SIZE_LIMIT, CONTENT_PAGINATION_DEFAULT_SIZE_LIMIT, CONTENT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_MAX_SIZE_LIMIT, DEFAULT_CAMPAIGN_PHASES, DEFAULT_CONTENTS, DEFAULT_CREATIVE_FORMATS, DEFAULT_CREATIVE_FORMAT_VARIANTS, DEFAULT_MEDIUMS, DEFAULT_SOURCES, type DefaultCampaignPhaseKey, type DefaultCampaignPhaseValue, type DefaultContentKey, type DefaultContentValue, type DefaultCreativeFormatKey, type DefaultCreativeFormatValue, type DefaultCreativeFormatVariantKey, type DefaultCreativeFormatVariantValue, type DefaultMediumKey, type DefaultMediumValue, type DefaultSourceKey, type DefaultSourceValue, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_VALUE, GROUP_ENTITY_KEYS, GROUP_ENTITY_PERMISSIONS, GROUP_ENTITY_SCOPES, GROUP_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_PAGINATION_MAX_SIZE_LIMIT, GROUP_USER_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_USER_PAGINATION_MAX_SIZE_LIMIT, GroupApplyValueAsOptions, GroupApplyValueToOptions, type GroupEntityActions, type GroupEntityKey, type GroupEntityScope, IsValidApplyValueAs, IsValidApplyValueTo, IsValidBlocked, IsValidConfirmed, IsValidCost, IsValidCurrentPeriodEnd, IsValidCurrentPeriodStart, IsValidCustomerId, IsValidDescription, IsValidEmail, IsValidGroupUserScopes, IsValidIsActive, IsValidIsBoolean, IsValidIsSecure, IsValidLabel, IsValidMinPage, IsValidName, IsValidOrUndefinedApplyValueAs, IsValidOrUndefinedApplyValueTo, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedCurrentPeriodEnd, IsValidOrUndefinedCurrentPeriodStart, IsValidOrUndefinedCustomerId, IsValidOrUndefinedDescription, IsValidOrUndefinedEmail, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsBoolean, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPriceId, IsValidOrUndefinedProductId, IsValidOrUndefinedProvider, IsValidOrUndefinedSubscriptionId, IsValidOrUndefinedSubscriptionStatus, IsValidOrUndefinedTrialPeriodEnd, IsValidOrUndefinedUnitAmount, IsValidOrUndefinedUnitTermInMonths, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmPart, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserLimitationNumber, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPriceId, IsValidProductId, IsValidProvider, IsValidReferenceDocumentId, IsValidReferenceId, IsValidSubscriptionId, IsValidSubscriptionStatus, IsValidTrialPeriodEnd, IsValidUnitAmount, IsValidUnitTermInMonths, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmPart, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserLimitationNumber, IsValidUserLimitationNumberFallback, IsValidUsername, IsValidValue, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_LABEL, LIMIT_MAX_NAME, LIMIT_MAX_PASSWORD, LIMIT_MAX_PATH, LIMIT_MAX_PRICE_ID, LIMIT_MAX_PRODUCT_ID, LIMIT_MAX_PROVIDER, LIMIT_MAX_QUERY, LIMIT_MAX_STRIPE_ID, LIMIT_MAX_UNIT_TERM_IN_MONTHS, LIMIT_MAX_USERNAME, LIMIT_MAX_UTM_CAMPAIGN, LIMIT_MAX_UTM_CONTENT, LIMIT_MAX_UTM_CREATIVE_FORMAT, LIMIT_MAX_UTM_ID, LIMIT_MAX_UTM_MEDIUM, LIMIT_MAX_UTM_PART, LIMIT_MAX_UTM_SOURCE, LIMIT_MAX_UTM_TERM, LIMIT_MAX_VALUE, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, LIMIT_MIN_LABEL, LIMIT_MIN_NAME, LIMIT_MIN_PASSWORD, LIMIT_MIN_PATH, LIMIT_MIN_PRICE_ID, LIMIT_MIN_PRODUCT_ID, LIMIT_MIN_QUERY, LIMIT_MIN_UNIT_AMOUNT, LIMIT_MIN_UNIT_TERM_IN_MONTHS, LIMIT_MIN_USERNAME, LIMIT_MIN_UTM_CAMPAIGN, LIMIT_MIN_UTM_CONTENT, LIMIT_MIN_UTM_CREATIVE_FORMAT, LIMIT_MIN_UTM_ID, LIMIT_MIN_UTM_MEDIUM, LIMIT_MIN_UTM_PART, LIMIT_MIN_UTM_SOURCE, LIMIT_MIN_UTM_TERM, LIMIT_MIN_VALUE, MEDIUM_PAGINATION_DEFAULT_SIZE_LIMIT, MEDIUM_PAGINATION_MAX_SIZE_LIMIT, type MediaFormat, type MediaFormats, type MediaUploadDocument, type PriceDocument, type ProductDocument, REGEX_DOMAIN, REGEX_VALUE, SBaseCampaignIdDocument, SBaseCampaignKeyDocument, SBaseCampaignPhaseDocument, SBaseCampaignProductDocument, SBaseCampaignTargetDocument, SBaseContentDocument, SBaseCreativeFormatDocument, SBaseCreativeFormatVariantDocument, SBaseDocument, SBaseDocumentCreatedBy, SBaseGroupDocument, SBaseGroupUserDocument, SBaseMediumDocument, SBaseRoleDocument, SBaseSourceDocument, SBaseTermDocument, SBaseTrackingLinkDocument, SBaseUserAccountDocument, SBaseUserDocument, SBaseUserLimitationsDocument, SBaseWebsiteDocument, SCampaignIdDocument, type SCampaignIdDocumentIn, type SCampaignIdDocumentOut, SCampaignIdDocumentWithRelations, SCampaignIdRelationsDocument, type SCampaignIdRelationsDocumentIn, type SCampaignIdRelationsDocumentOut, SCampaignKeyDocument, type SCampaignKeyDocumentIn, type SCampaignKeyDocumentOut, SCampaignKeyDocumentWithRelations, SCampaignKeyRelationsDocument, type SCampaignKeyRelationsDocumentIn, type SCampaignKeyRelationsDocumentOut, SCampaignPhaseDocument, type SCampaignPhaseDocumentIn, type SCampaignPhaseDocumentOut, SCampaignPhaseDocumentWithRelations, SCampaignPhaseRelationsDocument, type SCampaignPhaseRelationsDocumentIn, type SCampaignPhaseRelationsDocumentOut, SCampaignProductDocument, type SCampaignProductDocumentIn, type SCampaignProductDocumentOut, SCampaignProductDocumentWithRelations, SCampaignProductRelationsDocument, type SCampaignProductRelationsDocumentIn, type SCampaignProductRelationsDocumentOut, SCampaignTargetDocument, type SCampaignTargetDocumentIn, type SCampaignTargetDocumentOut, SCampaignTargetDocumentWithRelations, SCampaignTargetRelationsDocument, type SCampaignTargetRelationsDocumentIn, type SCampaignTargetRelationsDocumentOut, SChangePassword, SContentDocument, type SContentDocumentIn, type SContentDocumentOut, SContentDocumentWithRelations, SContentRelationsDocument, type SContentRelationsDocumentIn, type SContentRelationsDocumentOut, SCreateCampaignIdDocument, SCreateCampaignKeyDocument, SCreateCampaignPhaseDocument, SCreateCampaignProductDocument, SCreateCampaignTargetDocument, SCreateContentDocument, SCreateCreativeFormatDocument, SCreateCreativeFormatVariantDocument, SCreateGroupDocument, SCreateGroupUserAssignMultipleUsers, SCreateGroupUserDocument, SCreateMediumDocument, SCreateMultipleCampaignIdDocuments, SCreateMultipleCampaignKeyDocuments, SCreateMultipleCampaignPhaseDocuments, SCreateMultipleCampaignProductDocuments, SCreateMultipleCampaignTargetDocuments, SCreateMultipleContentDocuments, SCreateMultipleCreativeFormatDocuments, SCreateMultipleCreativeFormatVariantDocuments, SCreateMultipleMediumDocuments, SCreateMultipleSourceDocuments, SCreateMultipleTermDocuments, SCreateMultipleTrackingLinkDocuments, SCreateMultipleWebsiteDocuments, SCreatePreviewMultipleTrackingLinkDocuments, SCreatePreviewTrackingLinkDocument, SCreateSourceDocument, SCreateTermDocument, SCreateTrackingLinkDocument, SCreateUserAccountDocument, SCreateUserLimitationsDocument, SCreateWebsiteDocument, SCreativeFormatDocument, type SCreativeFormatDocumentIn, type SCreativeFormatDocumentOut, SCreativeFormatDocumentWithRelations, SCreativeFormatRelationsDocument, type SCreativeFormatRelationsDocumentIn, type SCreativeFormatRelationsDocumentOut, SCreativeFormatVariantDocument, type SCreativeFormatVariantDocumentIn, type SCreativeFormatVariantDocumentOut, SCreativeFormatVariantDocumentWithRelations, SCreativeFormatVariantRelationsDocument, type SCreativeFormatVariantRelationsDocumentIn, type SCreativeFormatVariantRelationsDocumentOut, SDeleteCampaignIdDocument, SDeleteCampaignKeyDocument, SDeleteCampaignPhaseDocument, SDeleteCampaignProductDocument, SDeleteCampaignTargetDocument, SDeleteContentDocument, SDeleteCreativeFormatDocument, SDeleteCreativeFormatVariantDocument, SDeleteGroupDocument, SDeleteGroupUserDocument, SDeleteMediumDocument, SDeleteSourceDocument, SDeleteTermDocument, SDeleteTrackingLinkDocument, SDeleteWebsiteDocument, SForgotPasswordUserDocument, SGroupDocument, type SGroupDocumentIn, type SGroupDocumentOut, SGroupDocumentWithRelations, SGroupRelationAuthorizedUsers, SGroupRelationCampaignIds, SGroupRelationCampaignKeys, SGroupRelationCampaignPhases, SGroupRelationCampaignProducts, SGroupRelationContents, SGroupRelationCreativeFormatVariants, SGroupRelationCreativeFormats, SGroupRelationMediums, SGroupRelationSources, SGroupRelationTerms, SGroupRelationTrackingLinks, SGroupRelationWebsites, SGroupRelationsDocument, type SGroupRelationsDocumentIn, type SGroupRelationsDocumentOut, SGroupUserDocument, type SGroupUserDocumentIn, type SGroupUserDocumentOut, SGroupUserDocumentReqRelations, SGroupUserDocumentStatus, SGroupUserDocumentWithRelations, SGroupUserRelationsDocument, type SGroupUserRelationsDocumentIn, type SGroupUserRelationsDocumentOut, SGroupUserRelationsReqDocument, type SGroupUserRelationsReqDocumentIn, type SGroupUserRelationsReqDocumentOut, SLoginUserDocument, SMediumDocument, type SMediumDocumentIn, type SMediumDocumentOut, SMediumDocumentWithRelations, SMediumRelationsDocument, type SMediumRelationsDocumentIn, type SMediumRelationsDocumentOut, SOURCE_PAGINATION_DEFAULT_SIZE_LIMIT, SOURCE_PAGINATION_MAX_SIZE_LIMIT, SQueryListCampaignIdDocuments, SQueryListCampaignKeyDocuments, SQueryListCampaignPhaseDocuments, SQueryListCampaignProductDocuments, SQueryListCampaignTargetDocuments, SQueryListContentDocuments, SQueryListCreativeFormatDocuments, SQueryListCreativeFormatVariantDocuments, SQueryListGroupDocuments, SQueryListGroupUserDocuments, SQueryListMediumDocuments, SQueryListSourceDocuments, SQueryListTermDocuments, SQueryListTrackingLinkDocuments, SQueryListUserAccountDocuments, SQueryListUserDocuments, SQueryListUserDocumentsByIdentifier, SQueryListUserLimitationDocuments, SQueryListWebsiteDocuments, SQuerySortCampaignIdDocuments, SQuerySortCampaignKeyDocuments, SQuerySortCampaignPhaseDocuments, SQuerySortCampaignProductDocuments, SQuerySortCampaignTargetDocuments, SQuerySortContentDocuments, SQuerySortCreativeFormatDocuments, SQuerySortCreativeFormatVariantDocuments, SQuerySortGroupDocuments, SQuerySortMediumDocuments, SQuerySortSourceDocuments, SQuerySortTermDocuments, SQuerySortTrackingLinkDocuments, SQuerySortUserDocuments, SQuerySortWebsiteDocuments, SReadCampaignIdDocumentByDocumentId, SReadCampaignIdDocumentById, SReadCampaignKeyDocumentByDocumentId, SReadCampaignKeyDocumentById, SReadCampaignPhaseDocumentByDocumentId, SReadCampaignPhaseDocumentById, SReadCampaignProductDocumentByDocumentId, SReadCampaignProductDocumentById, SReadCampaignTargetDocumentByDocumentId, SReadCampaignTargetDocumentById, SReadContentDocumentByDocumentId, SReadContentDocumentById, SReadCreativeFormatDocumentByDocumentId, SReadCreativeFormatDocumentById, SReadCreativeFormatVariantDocumentByDocumentId, SReadCreativeFormatVariantDocumentById, SReadGroupDocumentByDocumentId, SReadGroupDocumentById, SReadGroupUserDocumentByDocumentId, SReadGroupUserDocumentById, SReadMediumDocumentByDocumentId, SReadMediumDocumentById, SReadSourceDocumentByDocumentId, SReadSourceDocumentById, SReadTermDocumentByDocumentId, SReadTermDocumentById, SReadTrackingLinkDocumentByDocumentId, SReadTrackingLinkDocumentById, SReadUserAccountDocumentByDocumentId, SReadUserAccountDocumentById, SReadUserDocumentByDocumentId, SReadUserDocumentById, SReadUserDocumentToken, SReadUserLimitationsDocumentByDocumentId, SReadUserLimitationsDocumentById, SReadWebsiteDocumentByDocumentId, SReadWebsiteDocumentById, SRegisterUserDocument, SRequestConfirmEmail, SResetPasswordUserDocument, SRoleDocument, type SRoleDocumentIn, type SRoleDocumentOut, SRoleDocumentWithRelations, SRoleRelationsDocument, type SRoleRelationsDocumentIn, type SRoleRelationsDocumentOut, SSourceDocument, type SSourceDocumentIn, type SSourceDocumentOut, SSourceDocumentWithRelations, SSourceRelationsDocument, type SSourceRelationsDocumentIn, type SSourceRelationsDocumentOut, SStripeCheckoutCreateSession, SStripeCheckoutLineItem, STRAPI_PAGINATION_DEFAULT_SIZE_LIMIT, STRAPI_PAGINATION_MAX_SIZE_LIMIT, STRAPI_PAGINATION_MIN_SIZE_LIMIT, STermDocument, type STermDocumentIn, type STermDocumentOut, STermDocumentWithRelations, STermRelationsDocument, type STermRelationsDocumentIn, type STermRelationsDocumentOut, STrackingLinkDocument, type STrackingLinkDocumentIn, type STrackingLinkDocumentOut, STrackingLinkDocumentWithRelations, STrackingLinkRelationsDocument, type STrackingLinkRelationsDocumentIn, type STrackingLinkRelationsDocumentOut, SUpdateAsCreatorCampaignIdDocument, SUpdateAsCreatorCampaignIdDocumentRequest, SUpdateAsCreatorCampaignKeyDocument, SUpdateAsCreatorCampaignKeyDocumentRequest, SUpdateAsCreatorCampaignPhaseDocument, SUpdateAsCreatorCampaignPhaseDocumentRequest, SUpdateAsCreatorCampaignProductDocument, SUpdateAsCreatorCampaignProductDocumentRequest, SUpdateAsCreatorCampaignTargetDocument, SUpdateAsCreatorCampaignTargetDocumentRequest, SUpdateAsCreatorContentDocument, SUpdateAsCreatorContentDocumentRequest, SUpdateAsCreatorCreativeFormatDocument, SUpdateAsCreatorCreativeFormatDocumentRequest, SUpdateAsCreatorCreativeFormatVariantDocument, SUpdateAsCreatorCreativeFormatVariantDocumentRequest, SUpdateAsCreatorGroupDocument, SUpdateAsCreatorGroupDocumentRequest, SUpdateAsCreatorMediumDocument, SUpdateAsCreatorMediumDocumentRequest, SUpdateAsCreatorSourceDocument, SUpdateAsCreatorSourceDocumentRequest, SUpdateAsCreatorTermDocument, SUpdateAsCreatorTermDocumentRequest, SUpdateAsCreatorTrackingLinkDocument, SUpdateAsCreatorTrackingLinkDocumentRequest, SUpdateAsCreatorWebsiteDocument, SUpdateAsCreatorWebsiteDocumentRequest, SUpdateAsInvitedCampaignIdDocument, SUpdateAsInvitedCampaignIdDocumentRequest, SUpdateAsInvitedCampaignKeyDocument, SUpdateAsInvitedCampaignKeyDocumentRequest, SUpdateAsInvitedCampaignPhaseDocument, SUpdateAsInvitedCampaignPhaseDocumentRequest, SUpdateAsInvitedCampaignProductDocument, SUpdateAsInvitedCampaignProductDocumentRequest, SUpdateAsInvitedCampaignTargetDocument, SUpdateAsInvitedCampaignTargetDocumentRequest, SUpdateAsInvitedContentDocument, SUpdateAsInvitedContentDocumentRequest, SUpdateAsInvitedCreativeFormatDocument, SUpdateAsInvitedCreativeFormatDocumentRequest, SUpdateAsInvitedCreativeFormatVariantDocument, SUpdateAsInvitedCreativeFormatVariantDocumentRequest, SUpdateAsInvitedGroupDocument, SUpdateAsInvitedGroupDocumentRequest, SUpdateAsInvitedMediumDocument, SUpdateAsInvitedMediumDocumentRequest, SUpdateAsInvitedSourceDocument, SUpdateAsInvitedSourceDocumentRequest, SUpdateAsInvitedTermDocument, SUpdateAsInvitedTermDocumentRequest, SUpdateAsInvitedTrackingLinkDocument, SUpdateAsInvitedTrackingLinkDocumentRequest, SUpdateAsInvitedWebsiteDocument, SUpdateAsInvitedWebsiteDocumentRequest, SUpdateCampaignIdDocumentRequest, SUpdateCampaignKeyDocumentRequest, SUpdateCampaignPhaseDocumentRequest, SUpdateCampaignProductDocumentRequest, SUpdateCampaignTargetDocumentRequest, SUpdateContentDocumentRequest, SUpdateCreativeFormatDocumentRequest, SUpdateCreativeFormatVariantDocumentRequest, SUpdateGroupDocumentRequest, SUpdateGroupUserDocument, SUpdateGroupUserDocumentRequest, SUpdateMediumDocumentRequest, SUpdateSourceDocumentRequest, SUpdateTermDocumentRequest, SUpdateTrackingLinkDocumentRequest, SUpdateUserAccountDocument, SUpdateUserLimitationsDocument, SUpdateWebsiteDocumentRequest, SUserAccountDocument, type SUserAccountDocumentIn, type SUserAccountDocumentOut, SUserAccountDocumentReqRelations, SUserAccountDocumentWithRelations, SUserAccountRelationsDocument, type SUserAccountRelationsDocumentIn, type SUserAccountRelationsDocumentOut, SUserAccountRelationsReqDocument, SUserAuthorizationSuccessResponse, SUserDocument, type SUserDocumentIn, type SUserDocumentOut, SUserDocumentWithAccountAndRoleRelations, SUserDocumentWithAccountRelations, SUserDocumentWithRelations, SUserLimitationsDocument, type SUserLimitationsDocumentIn, type SUserLimitationsDocumentOut, SUserLimitationsDocumentWithRelations, SUserLimitationsRelationsDocument, type SUserLimitationsRelationsDocumentIn, type SUserLimitationsRelationsDocumentOut, SUserRelationAccount, SUserRelationAuthorizedGroups, SUserRelationCampaignIds, SUserRelationCampaignKeys, SUserRelationCampaignPhases, SUserRelationCampaignProducts, SUserRelationContents, SUserRelationCreatedWebsites, SUserRelationCreativeFormatVariants, SUserRelationCreativeFormats, SUserRelationLimits, SUserRelationMediums, SUserRelationReqAccount, SUserRelationReqLimits, SUserRelationReqRole, SUserRelationRole, SUserRelationSources, SUserRelationTerms, SUserRelationTrackingLinks, SUserRelationsDocument, type SUserRelationsDocumentIn, type SUserRelationsDocumentOut, SUtmLinkBuilderPartCampaignDateFormat, type SUtmLinkBuilderPartCampaignDateFormatInput, SUtmLinkBuilderPartCampaignDateFormatOptions, SUtmLinkBuilderPartCampaignDateObject, type SUtmLinkBuilderPartCampaignDateObjectInput, SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderPartCampaignDateValueDay, type SUtmLinkBuilderPartCampaignDateValueDayInput, type SUtmLinkBuilderPartCampaignDateValueInput, SUtmLinkBuilderPartCampaignDateValueMonth, type SUtmLinkBuilderPartCampaignDateValueMonthInput, SUtmLinkBuilderPartCampaignDateValueQuarter, type SUtmLinkBuilderPartCampaignDateValueQuarterInput, SUtmLinkBuilderPartCampaignDateValueYear, type SUtmLinkBuilderPartCampaignDateValueYearInput, SUtmLinkBuilderPartCampaignId, type SUtmLinkBuilderPartCampaignIdInput, SUtmLinkBuilderPartCampaignKey, type SUtmLinkBuilderPartCampaignKeyInput, SUtmLinkBuilderPartCampaignObject, type SUtmLinkBuilderPartCampaignObjectInput, SUtmLinkBuilderPartCampaignPhase, type SUtmLinkBuilderPartCampaignPhaseInput, SUtmLinkBuilderPartCampaignProduct, type SUtmLinkBuilderPartCampaignProductInput, SUtmLinkBuilderPartCampaignTargeting, type SUtmLinkBuilderPartCampaignTargetingInput, SUtmLinkBuilderPartCampaigns, type SUtmLinkBuilderPartCampaignsInput, SUtmLinkBuilderPartContents, type SUtmLinkBuilderPartContentsInput, SUtmLinkBuilderPartCreativeFormatObject, type SUtmLinkBuilderPartCreativeFormatObjectInput, SUtmLinkBuilderPartCreativeFormatValue, type SUtmLinkBuilderPartCreativeFormatValueInput, SUtmLinkBuilderPartCreativeFormatVariantValue, type SUtmLinkBuilderPartCreativeFormatVariantValueInput, SUtmLinkBuilderPartCreativeFormats, type SUtmLinkBuilderPartCreativeFormatsInput, SUtmLinkBuilderPartMediums, type SUtmLinkBuilderPartMediumsInput, SUtmLinkBuilderPartSources, type SUtmLinkBuilderPartSourcesInput, SUtmLinkBuilderPartTerms, type SUtmLinkBuilderPartTermsInput, SUtmLinkBuilderPartUrlDestinations, type SUtmLinkBuilderPartUrlDestinationsInput, SUtmLinkBuilderPartUrlObject, type SUtmLinkBuilderPartUrlObjectInput, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, SVerifyGroupUserDocument, SWebsiteDocument, type SWebsiteDocumentIn, type SWebsiteDocumentOut, SWebsiteDocumentWithRelations, SWebsiteRelationsDocument, type SWebsiteRelationsDocumentIn, type SWebsiteRelationsDocumentOut, type SeoMeta, type SeoOpenGraph, type StrapiAttributeErrorDetail, type StrapiAttributeErrorKey, type StrapiAttributeErrorResponse, type StrapiErrorDetail, type StrapiErrorKey, type StrapiErrorResponse, type StrapiErrorResult, type StrapiListResponse, type StrapiPagination, type StrapiResponseMeta, type StrapiResponseMetaWithPagination, type StrapiSingleResponse, type StripeCheckoutRedirectResponse, type StripeProductPricesResponse, type SubscriptionStatusValue, SubscriptionStatusValues, TERM_PAGINATION_DEFAULT_SIZE_LIMIT, TERM_PAGINATION_MAX_SIZE_LIMIT, TRACKING_LINK_PAGINATION_DEFAULT_SIZE_LIMIT, TRACKING_LINK_PAGINATION_MAX_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_DEFAULT_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_MAX_SIZE_LIMIT, USER_LIMITATION_PAGINATION_DEFAULT_SIZE_LIMIT, USER_LIMITATION_PAGINATION_MAX_SIZE_LIMIT, USER_PAGINATION_DEFAULT_SIZE_LIMIT, USER_PAGINATION_MAX_SIZE_LIMIT, type UrlProtocol, UrlProtocolOptions, WEBSITE_PAGINATION_DEFAULT_SIZE_LIMIT, WEBSITE_PAGINATION_MAX_SIZE_LIMIT, datePlusDays, dateToday, isStrapiAttributeError, isStrapiStandardError, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|
|
6160
|
+
export { CAMPAIGN_ID_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_ID_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_MAX_SIZE_LIMIT, CONTENT_PAGINATION_DEFAULT_SIZE_LIMIT, CONTENT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_MAX_SIZE_LIMIT, DEFAULT_CAMPAIGN_PHASES, DEFAULT_CONTENTS, DEFAULT_CREATIVE_FORMATS, DEFAULT_CREATIVE_FORMAT_VARIANTS, DEFAULT_MEDIUMS, DEFAULT_SOURCES, type DefaultCampaignPhaseKey, type DefaultCampaignPhaseValue, type DefaultContentKey, type DefaultContentValue, type DefaultCreativeFormatKey, type DefaultCreativeFormatValue, type DefaultCreativeFormatVariantKey, type DefaultCreativeFormatVariantValue, type DefaultMediumKey, type DefaultMediumValue, type DefaultSourceKey, type DefaultSourceValue, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_VALUE, GROUP_ENTITY_KEYS, GROUP_ENTITY_PERMISSIONS, GROUP_ENTITY_SCOPES, GROUP_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_PAGINATION_MAX_SIZE_LIMIT, GROUP_USER_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_USER_PAGINATION_MAX_SIZE_LIMIT, GroupApplyValueAsOptions, GroupApplyValueToOptions, type GroupEntityActions, type GroupEntityKey, type GroupEntityScope, IsValidApplyValueAs, IsValidApplyValueTo, IsValidBlocked, IsValidConfirmed, IsValidCost, IsValidCurrentPeriodEnd, IsValidCurrentPeriodStart, IsValidCustomerId, IsValidDescription, IsValidEmail, IsValidGroupUserScopes, IsValidIsActive, IsValidIsBoolean, IsValidIsSecure, IsValidLabel, IsValidMinPage, IsValidName, IsValidOrUndefinedApplyValueAs, IsValidOrUndefinedApplyValueTo, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedCurrentPeriodEnd, IsValidOrUndefinedCurrentPeriodStart, IsValidOrUndefinedCustomerId, IsValidOrUndefinedDescription, IsValidOrUndefinedEmail, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsBoolean, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPriceId, IsValidOrUndefinedProductId, IsValidOrUndefinedProvider, IsValidOrUndefinedSubscriptionId, IsValidOrUndefinedSubscriptionStatus, IsValidOrUndefinedTrialPeriodEnd, IsValidOrUndefinedUnitAmount, IsValidOrUndefinedUnitTermInMonths, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmPart, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserLimitationNumber, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPriceId, IsValidProductId, IsValidProvider, IsValidReferenceDocumentId, IsValidReferenceId, IsValidSubscriptionId, IsValidSubscriptionStatus, IsValidTrialPeriodEnd, IsValidUnitAmount, IsValidUnitTermInMonths, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmPart, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserLimitationNumber, IsValidUserLimitationNumberFallback, IsValidUsername, IsValidValue, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_LABEL, LIMIT_MAX_NAME, LIMIT_MAX_PASSWORD, LIMIT_MAX_PATH, LIMIT_MAX_PRICE_ID, LIMIT_MAX_PRODUCT_ID, LIMIT_MAX_PROVIDER, LIMIT_MAX_QUERY, LIMIT_MAX_STRIPE_ID, LIMIT_MAX_UNIT_TERM_IN_MONTHS, LIMIT_MAX_USERNAME, LIMIT_MAX_UTM_CAMPAIGN, LIMIT_MAX_UTM_CONTENT, LIMIT_MAX_UTM_CREATIVE_FORMAT, LIMIT_MAX_UTM_ID, LIMIT_MAX_UTM_MEDIUM, LIMIT_MAX_UTM_PART, LIMIT_MAX_UTM_SOURCE, LIMIT_MAX_UTM_TERM, LIMIT_MAX_VALUE, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, LIMIT_MIN_LABEL, LIMIT_MIN_NAME, LIMIT_MIN_PASSWORD, LIMIT_MIN_PATH, LIMIT_MIN_PRICE_ID, LIMIT_MIN_PRODUCT_ID, LIMIT_MIN_QUERY, LIMIT_MIN_UNIT_AMOUNT, LIMIT_MIN_UNIT_TERM_IN_MONTHS, LIMIT_MIN_USERNAME, LIMIT_MIN_UTM_CAMPAIGN, LIMIT_MIN_UTM_CONTENT, LIMIT_MIN_UTM_CREATIVE_FORMAT, LIMIT_MIN_UTM_ID, LIMIT_MIN_UTM_MEDIUM, LIMIT_MIN_UTM_PART, LIMIT_MIN_UTM_SOURCE, LIMIT_MIN_UTM_TERM, LIMIT_MIN_VALUE, MEDIUM_PAGINATION_DEFAULT_SIZE_LIMIT, MEDIUM_PAGINATION_MAX_SIZE_LIMIT, type MediaFormat, type MediaFormats, type MediaUploadDocument, type PriceDocument, type ProductDocument, REGEX_DOMAIN, REGEX_VALUE, SBaseCampaignIdDocument, SBaseCampaignKeyDocument, SBaseCampaignPhaseDocument, SBaseCampaignProductDocument, SBaseCampaignTargetDocument, SBaseContentDocument, SBaseCreativeFormatDocument, SBaseCreativeFormatVariantDocument, SBaseDocument, SBaseDocumentCreatedBy, SBaseGroupDocument, SBaseGroupUserDocument, SBaseMediumDocument, SBaseRoleDocument, SBaseSourceDocument, SBaseTermDocument, SBaseTrackingLinkDocument, SBaseUserAccountDocument, SBaseUserDocument, SBaseUserLimitationsDocument, SBaseWebsiteDocument, SCampaignIdDocument, type SCampaignIdDocumentIn, type SCampaignIdDocumentOut, SCampaignIdDocumentWithRelations, SCampaignIdRelationsDocument, type SCampaignIdRelationsDocumentIn, type SCampaignIdRelationsDocumentOut, SCampaignKeyDocument, type SCampaignKeyDocumentIn, type SCampaignKeyDocumentOut, SCampaignKeyDocumentWithRelations, SCampaignKeyRelationsDocument, type SCampaignKeyRelationsDocumentIn, type SCampaignKeyRelationsDocumentOut, SCampaignPhaseDocument, type SCampaignPhaseDocumentIn, type SCampaignPhaseDocumentOut, SCampaignPhaseDocumentWithRelations, SCampaignPhaseRelationsDocument, type SCampaignPhaseRelationsDocumentIn, type SCampaignPhaseRelationsDocumentOut, SCampaignProductDocument, type SCampaignProductDocumentIn, type SCampaignProductDocumentOut, SCampaignProductDocumentWithRelations, SCampaignProductRelationsDocument, type SCampaignProductRelationsDocumentIn, type SCampaignProductRelationsDocumentOut, SCampaignTargetDocument, type SCampaignTargetDocumentIn, type SCampaignTargetDocumentOut, SCampaignTargetDocumentWithRelations, SCampaignTargetRelationsDocument, type SCampaignTargetRelationsDocumentIn, type SCampaignTargetRelationsDocumentOut, SChangePassword, SContentDocument, type SContentDocumentIn, type SContentDocumentOut, SContentDocumentWithRelations, SContentRelationsDocument, type SContentRelationsDocumentIn, type SContentRelationsDocumentOut, SCreateCampaignIdDocument, SCreateCampaignKeyDocument, SCreateCampaignPhaseDocument, SCreateCampaignProductDocument, SCreateCampaignTargetDocument, SCreateContentDocument, SCreateCreativeFormatDocument, SCreateCreativeFormatVariantDocument, SCreateGroupDocument, SCreateGroupUserAssignMultipleUsers, SCreateGroupUserDocument, SCreateMediumDocument, SCreateMultipleCampaignIdDocuments, SCreateMultipleCampaignKeyDocuments, SCreateMultipleCampaignPhaseDocuments, SCreateMultipleCampaignProductDocuments, SCreateMultipleCampaignTargetDocuments, SCreateMultipleContentDocuments, SCreateMultipleCreativeFormatDocuments, SCreateMultipleCreativeFormatVariantDocuments, SCreateMultipleMediumDocuments, SCreateMultipleSourceDocuments, SCreateMultipleTermDocuments, SCreateMultipleTrackingLinkDocuments, SCreateMultipleWebsiteDocuments, SCreatePreviewMultipleTrackingLinkDocuments, SCreatePreviewTrackingLinkDocument, SCreateSourceDocument, SCreateTermDocument, SCreateTrackingLinkDocument, SCreateUserAccountDocument, SCreateUserDocument, SCreateUserLimitationsDocument, SCreateWebsiteDocument, SCreativeFormatDocument, type SCreativeFormatDocumentIn, type SCreativeFormatDocumentOut, SCreativeFormatDocumentWithRelations, SCreativeFormatRelationsDocument, type SCreativeFormatRelationsDocumentIn, type SCreativeFormatRelationsDocumentOut, SCreativeFormatVariantDocument, type SCreativeFormatVariantDocumentIn, type SCreativeFormatVariantDocumentOut, SCreativeFormatVariantDocumentWithRelations, SCreativeFormatVariantRelationsDocument, type SCreativeFormatVariantRelationsDocumentIn, type SCreativeFormatVariantRelationsDocumentOut, SDeleteCampaignIdDocument, SDeleteCampaignKeyDocument, SDeleteCampaignPhaseDocument, SDeleteCampaignProductDocument, SDeleteCampaignTargetDocument, SDeleteContentDocument, SDeleteCreativeFormatDocument, SDeleteCreativeFormatVariantDocument, SDeleteGroupDocument, SDeleteGroupUserDocument, SDeleteMediumDocument, SDeleteSourceDocument, SDeleteTermDocument, SDeleteTrackingLinkDocument, SDeleteWebsiteDocument, SForgotPasswordUserDocument, SGroupDocument, type SGroupDocumentIn, type SGroupDocumentOut, SGroupDocumentWithRelations, SGroupRelationAuthorizedUsers, SGroupRelationCampaignIds, SGroupRelationCampaignKeys, SGroupRelationCampaignPhases, SGroupRelationCampaignProducts, SGroupRelationContents, SGroupRelationCreativeFormatVariants, SGroupRelationCreativeFormats, SGroupRelationMediums, SGroupRelationSources, SGroupRelationTerms, SGroupRelationTrackingLinks, SGroupRelationWebsites, SGroupRelationsDocument, type SGroupRelationsDocumentIn, type SGroupRelationsDocumentOut, SGroupUserDocument, type SGroupUserDocumentIn, type SGroupUserDocumentOut, SGroupUserDocumentReqRelations, SGroupUserDocumentStatus, SGroupUserDocumentWithRelations, SGroupUserRelationsDocument, type SGroupUserRelationsDocumentIn, type SGroupUserRelationsDocumentOut, SGroupUserRelationsReqDocument, type SGroupUserRelationsReqDocumentIn, type SGroupUserRelationsReqDocumentOut, SLoginUserDocument, SMediumDocument, type SMediumDocumentIn, type SMediumDocumentOut, SMediumDocumentWithRelations, SMediumRelationsDocument, type SMediumRelationsDocumentIn, type SMediumRelationsDocumentOut, SOURCE_PAGINATION_DEFAULT_SIZE_LIMIT, SOURCE_PAGINATION_MAX_SIZE_LIMIT, SQueryListCampaignIdDocuments, SQueryListCampaignKeyDocuments, SQueryListCampaignPhaseDocuments, SQueryListCampaignProductDocuments, SQueryListCampaignTargetDocuments, SQueryListContentDocuments, SQueryListCreativeFormatDocuments, SQueryListCreativeFormatVariantDocuments, SQueryListGroupDocuments, SQueryListGroupUserDocuments, SQueryListMediumDocuments, SQueryListSourceDocuments, SQueryListTermDocuments, SQueryListTrackingLinkDocuments, SQueryListUserAccountDocuments, SQueryListUserDocuments, SQueryListUserDocumentsByIdentifier, SQueryListUserLimitationDocuments, SQueryListWebsiteDocuments, SQuerySortCampaignIdDocuments, SQuerySortCampaignKeyDocuments, SQuerySortCampaignPhaseDocuments, SQuerySortCampaignProductDocuments, SQuerySortCampaignTargetDocuments, SQuerySortContentDocuments, SQuerySortCreativeFormatDocuments, SQuerySortCreativeFormatVariantDocuments, SQuerySortGroupDocuments, SQuerySortMediumDocuments, SQuerySortSourceDocuments, SQuerySortTermDocuments, SQuerySortTrackingLinkDocuments, SQuerySortUserDocuments, SQuerySortWebsiteDocuments, SReadCampaignIdDocumentByDocumentId, SReadCampaignIdDocumentById, SReadCampaignKeyDocumentByDocumentId, SReadCampaignKeyDocumentById, SReadCampaignPhaseDocumentByDocumentId, SReadCampaignPhaseDocumentById, SReadCampaignProductDocumentByDocumentId, SReadCampaignProductDocumentById, SReadCampaignTargetDocumentByDocumentId, SReadCampaignTargetDocumentById, SReadContentDocumentByDocumentId, SReadContentDocumentById, SReadCreativeFormatDocumentByDocumentId, SReadCreativeFormatDocumentById, SReadCreativeFormatVariantDocumentByDocumentId, SReadCreativeFormatVariantDocumentById, SReadGroupDocumentByDocumentId, SReadGroupDocumentById, SReadGroupUserDocumentByDocumentId, SReadGroupUserDocumentById, SReadMediumDocumentByDocumentId, SReadMediumDocumentById, SReadSourceDocumentByDocumentId, SReadSourceDocumentById, SReadTermDocumentByDocumentId, SReadTermDocumentById, SReadTrackingLinkDocumentByDocumentId, SReadTrackingLinkDocumentById, SReadUserAccountDocumentByDocumentId, SReadUserAccountDocumentById, SReadUserDocumentByDocumentId, SReadUserDocumentById, SReadUserDocumentToken, SReadUserLimitationsDocumentByDocumentId, SReadUserLimitationsDocumentById, SReadWebsiteDocumentByDocumentId, SReadWebsiteDocumentById, SRegisterUserDocument, SRequestConfirmEmail, SResetPasswordUserDocument, SRoleDocument, type SRoleDocumentIn, type SRoleDocumentOut, SRoleDocumentWithRelations, SRoleRelationsDocument, type SRoleRelationsDocumentIn, type SRoleRelationsDocumentOut, SSourceDocument, type SSourceDocumentIn, type SSourceDocumentOut, SSourceDocumentWithRelations, SSourceRelationsDocument, type SSourceRelationsDocumentIn, type SSourceRelationsDocumentOut, SStripeCheckoutCreateSession, SStripeCheckoutLineItem, STRAPI_PAGINATION_DEFAULT_SIZE_LIMIT, STRAPI_PAGINATION_MAX_SIZE_LIMIT, STRAPI_PAGINATION_MIN_SIZE_LIMIT, STermDocument, type STermDocumentIn, type STermDocumentOut, STermDocumentWithRelations, STermRelationsDocument, type STermRelationsDocumentIn, type STermRelationsDocumentOut, STrackingLinkDocument, type STrackingLinkDocumentIn, type STrackingLinkDocumentOut, STrackingLinkDocumentWithRelations, STrackingLinkRelationsDocument, type STrackingLinkRelationsDocumentIn, type STrackingLinkRelationsDocumentOut, SUpdateAsCreatorCampaignIdDocument, SUpdateAsCreatorCampaignIdDocumentRequest, SUpdateAsCreatorCampaignKeyDocument, SUpdateAsCreatorCampaignKeyDocumentRequest, SUpdateAsCreatorCampaignPhaseDocument, SUpdateAsCreatorCampaignPhaseDocumentRequest, SUpdateAsCreatorCampaignProductDocument, SUpdateAsCreatorCampaignProductDocumentRequest, SUpdateAsCreatorCampaignTargetDocument, SUpdateAsCreatorCampaignTargetDocumentRequest, SUpdateAsCreatorContentDocument, SUpdateAsCreatorContentDocumentRequest, SUpdateAsCreatorCreativeFormatDocument, SUpdateAsCreatorCreativeFormatDocumentRequest, SUpdateAsCreatorCreativeFormatVariantDocument, SUpdateAsCreatorCreativeFormatVariantDocumentRequest, SUpdateAsCreatorGroupDocument, SUpdateAsCreatorGroupDocumentRequest, SUpdateAsCreatorMediumDocument, SUpdateAsCreatorMediumDocumentRequest, SUpdateAsCreatorSourceDocument, SUpdateAsCreatorSourceDocumentRequest, SUpdateAsCreatorTermDocument, SUpdateAsCreatorTermDocumentRequest, SUpdateAsCreatorTrackingLinkDocument, SUpdateAsCreatorTrackingLinkDocumentRequest, SUpdateAsCreatorWebsiteDocument, SUpdateAsCreatorWebsiteDocumentRequest, SUpdateAsInvitedCampaignIdDocument, SUpdateAsInvitedCampaignIdDocumentRequest, SUpdateAsInvitedCampaignKeyDocument, SUpdateAsInvitedCampaignKeyDocumentRequest, SUpdateAsInvitedCampaignPhaseDocument, SUpdateAsInvitedCampaignPhaseDocumentRequest, SUpdateAsInvitedCampaignProductDocument, SUpdateAsInvitedCampaignProductDocumentRequest, SUpdateAsInvitedCampaignTargetDocument, SUpdateAsInvitedCampaignTargetDocumentRequest, SUpdateAsInvitedContentDocument, SUpdateAsInvitedContentDocumentRequest, SUpdateAsInvitedCreativeFormatDocument, SUpdateAsInvitedCreativeFormatDocumentRequest, SUpdateAsInvitedCreativeFormatVariantDocument, SUpdateAsInvitedCreativeFormatVariantDocumentRequest, SUpdateAsInvitedGroupDocument, SUpdateAsInvitedGroupDocumentRequest, SUpdateAsInvitedMediumDocument, SUpdateAsInvitedMediumDocumentRequest, SUpdateAsInvitedSourceDocument, SUpdateAsInvitedSourceDocumentRequest, SUpdateAsInvitedTermDocument, SUpdateAsInvitedTermDocumentRequest, SUpdateAsInvitedTrackingLinkDocument, SUpdateAsInvitedTrackingLinkDocumentRequest, SUpdateAsInvitedWebsiteDocument, SUpdateAsInvitedWebsiteDocumentRequest, SUpdateCampaignIdDocumentRequest, SUpdateCampaignKeyDocumentRequest, SUpdateCampaignPhaseDocumentRequest, SUpdateCampaignProductDocumentRequest, SUpdateCampaignTargetDocumentRequest, SUpdateContentDocumentRequest, SUpdateCreativeFormatDocumentRequest, SUpdateCreativeFormatVariantDocumentRequest, SUpdateGroupDocumentRequest, SUpdateGroupUserDocument, SUpdateGroupUserDocumentRequest, SUpdateMediumDocumentRequest, SUpdateSourceDocumentRequest, SUpdateTermDocumentRequest, SUpdateTrackingLinkDocumentRequest, SUpdateUserAccountDocument, SUpdateUserDocument, SUpdateUserLimitationsDocument, SUpdateWebsiteDocumentRequest, SUserAccountDocument, type SUserAccountDocumentIn, type SUserAccountDocumentOut, SUserAccountDocumentReqRelations, SUserAccountDocumentWithRelations, SUserAccountRelationsDocument, type SUserAccountRelationsDocumentIn, type SUserAccountRelationsDocumentOut, SUserAccountRelationsReqDocument, SUserAuthorizationSuccessResponse, SUserDocument, type SUserDocumentIn, type SUserDocumentOut, SUserDocumentWithAccountAndRoleRelations, SUserDocumentWithAccountRelations, SUserDocumentWithRelations, SUserLimitationsDocument, type SUserLimitationsDocumentIn, type SUserLimitationsDocumentOut, SUserLimitationsDocumentWithRelations, SUserLimitationsRelationsDocument, type SUserLimitationsRelationsDocumentIn, type SUserLimitationsRelationsDocumentOut, SUserRelationAccount, SUserRelationAuthorizedGroups, SUserRelationCampaignIds, SUserRelationCampaignKeys, SUserRelationCampaignPhases, SUserRelationCampaignProducts, SUserRelationContents, SUserRelationCreatedWebsites, SUserRelationCreativeFormatVariants, SUserRelationCreativeFormats, SUserRelationLimits, SUserRelationMediums, SUserRelationReqAccount, SUserRelationReqLimits, SUserRelationReqRole, SUserRelationRole, SUserRelationSources, SUserRelationTerms, SUserRelationTrackingLinks, SUserRelationsDocument, type SUserRelationsDocumentIn, type SUserRelationsDocumentOut, SUtmLinkBuilderPartCampaignDateFormat, type SUtmLinkBuilderPartCampaignDateFormatInput, SUtmLinkBuilderPartCampaignDateFormatOptions, SUtmLinkBuilderPartCampaignDateObject, type SUtmLinkBuilderPartCampaignDateObjectInput, SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderPartCampaignDateValueDay, type SUtmLinkBuilderPartCampaignDateValueDayInput, type SUtmLinkBuilderPartCampaignDateValueInput, SUtmLinkBuilderPartCampaignDateValueMonth, type SUtmLinkBuilderPartCampaignDateValueMonthInput, SUtmLinkBuilderPartCampaignDateValueQuarter, type SUtmLinkBuilderPartCampaignDateValueQuarterInput, SUtmLinkBuilderPartCampaignDateValueYear, type SUtmLinkBuilderPartCampaignDateValueYearInput, SUtmLinkBuilderPartCampaignId, type SUtmLinkBuilderPartCampaignIdInput, SUtmLinkBuilderPartCampaignKey, type SUtmLinkBuilderPartCampaignKeyInput, SUtmLinkBuilderPartCampaignObject, type SUtmLinkBuilderPartCampaignObjectInput, SUtmLinkBuilderPartCampaignPhase, type SUtmLinkBuilderPartCampaignPhaseInput, SUtmLinkBuilderPartCampaignProduct, type SUtmLinkBuilderPartCampaignProductInput, SUtmLinkBuilderPartCampaignTargeting, type SUtmLinkBuilderPartCampaignTargetingInput, SUtmLinkBuilderPartCampaigns, type SUtmLinkBuilderPartCampaignsInput, SUtmLinkBuilderPartContents, type SUtmLinkBuilderPartContentsInput, SUtmLinkBuilderPartCreativeFormatObject, type SUtmLinkBuilderPartCreativeFormatObjectInput, SUtmLinkBuilderPartCreativeFormatValue, type SUtmLinkBuilderPartCreativeFormatValueInput, SUtmLinkBuilderPartCreativeFormatVariantValue, type SUtmLinkBuilderPartCreativeFormatVariantValueInput, SUtmLinkBuilderPartCreativeFormats, type SUtmLinkBuilderPartCreativeFormatsInput, SUtmLinkBuilderPartMediums, type SUtmLinkBuilderPartMediumsInput, SUtmLinkBuilderPartSources, type SUtmLinkBuilderPartSourcesInput, SUtmLinkBuilderPartTerms, type SUtmLinkBuilderPartTermsInput, SUtmLinkBuilderPartUrlDestinations, type SUtmLinkBuilderPartUrlDestinationsInput, SUtmLinkBuilderPartUrlObject, type SUtmLinkBuilderPartUrlObjectInput, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, SVerifyGroupUserDocument, SWebsiteDocument, type SWebsiteDocumentIn, type SWebsiteDocumentOut, SWebsiteDocumentWithRelations, SWebsiteRelationsDocument, type SWebsiteRelationsDocumentIn, type SWebsiteRelationsDocumentOut, type SeoMeta, type SeoOpenGraph, type StrapiAttributeErrorDetail, type StrapiAttributeErrorKey, type StrapiAttributeErrorResponse, type StrapiErrorDetail, type StrapiErrorKey, type StrapiErrorResponse, type StrapiErrorResult, type StrapiListResponse, type StrapiPagination, type StrapiResponseMeta, type StrapiResponseMetaWithPagination, type StrapiSingleResponse, type StripeCheckoutRedirectResponse, type StripeProductPricesResponse, type SubscriptionStatusValue, SubscriptionStatusValues, TERM_PAGINATION_DEFAULT_SIZE_LIMIT, TERM_PAGINATION_MAX_SIZE_LIMIT, TRACKING_LINK_PAGINATION_DEFAULT_SIZE_LIMIT, TRACKING_LINK_PAGINATION_MAX_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_DEFAULT_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_MAX_SIZE_LIMIT, USER_LIMITATION_PAGINATION_DEFAULT_SIZE_LIMIT, USER_LIMITATION_PAGINATION_MAX_SIZE_LIMIT, USER_PAGINATION_DEFAULT_SIZE_LIMIT, USER_PAGINATION_MAX_SIZE_LIMIT, type UrlProtocol, UrlProtocolOptions, WEBSITE_PAGINATION_DEFAULT_SIZE_LIMIT, WEBSITE_PAGINATION_MAX_SIZE_LIMIT, datePlusDays, dateToday, isStrapiAttributeError, isStrapiStandardError, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|
package/dist/index.d.ts
CHANGED
|
@@ -936,6 +936,15 @@ declare const SQueryListUserDocumentsByIdentifier: v.ObjectSchema<{
|
|
|
936
936
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10, undefined>]>, 10>, 10>;
|
|
937
937
|
}, undefined>;
|
|
938
938
|
type SQueryListUserDocumentsByIdentifier = v.InferOutput<typeof SQueryListUserDocumentsByIdentifier>;
|
|
939
|
+
declare const SCreateUserDocument: v.ObjectSchema<{
|
|
940
|
+
readonly username: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a username">, v.TrimAction, v.MinLengthAction<string, 3, "your username is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 255, "your username is too long, it must be 255 characters or less">, v.RegexAction<string, "your username can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
941
|
+
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>;
|
|
942
|
+
readonly password: v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string, 8, "your password is too short, it must be at least 8 characters">, v.MaxLengthAction<string, 255, "your password is too long, it must be 255 characters or less">]>;
|
|
943
|
+
readonly blocked: v.BooleanSchema<"this value must be either true or false">;
|
|
944
|
+
readonly confirmed: v.BooleanSchema<"this value must be either true or false">;
|
|
945
|
+
readonly role: v.SchemaWithPipe<readonly [v.NumberSchema<"please provide a valid id">, v.MinValueAction<number, 0, "please provide a valid id">]>;
|
|
946
|
+
}, undefined>;
|
|
947
|
+
type SCreateUserDocument = v.InferOutput<typeof SCreateUserDocument>;
|
|
939
948
|
declare const SReadUserDocumentById: v.ObjectSchema<{
|
|
940
949
|
readonly id: v.SchemaWithPipe<readonly [v.NumberSchema<"please provide a valid id">, v.MinValueAction<number, 0, "please provide a valid id">]>;
|
|
941
950
|
}, undefined>;
|
|
@@ -944,6 +953,15 @@ declare const SReadUserDocumentByDocumentId: v.ObjectSchema<{
|
|
|
944
953
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
945
954
|
}, undefined>;
|
|
946
955
|
type SReadUserDocumentByDocumentId = v.InferOutput<typeof SReadUserDocumentByDocumentId>;
|
|
956
|
+
declare const SUpdateUserDocument: v.ObjectSchema<{
|
|
957
|
+
readonly username: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a username">, v.TrimAction, v.MinLengthAction<string, 3, "your username is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 255, "your username is too long, it must be 255 characters or less">, v.RegexAction<string, "your username can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
958
|
+
readonly email: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>, undefined>;
|
|
959
|
+
readonly password: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string, 8, "your password is too short, it must be at least 8 characters">, v.MaxLengthAction<string, 255, "your password is too long, it must be 255 characters or less">]>, undefined>;
|
|
960
|
+
readonly blocked: v.UndefinedableSchema<v.BooleanSchema<"this value must be either true or false">, undefined>;
|
|
961
|
+
readonly confirmed: v.UndefinedableSchema<v.BooleanSchema<"this value must be either true or false">, undefined>;
|
|
962
|
+
readonly role: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<"please provide a valid id">, v.MinValueAction<number, 0, "please provide a valid id">]>, undefined>;
|
|
963
|
+
}, undefined>;
|
|
964
|
+
type SUpdateUserDocument = v.InferOutput<typeof SUpdateUserDocument>;
|
|
947
965
|
|
|
948
966
|
declare const SQuerySortCampaignIdDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
949
967
|
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "cost", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
@@ -6139,4 +6157,4 @@ declare const IsValidOrUndefinedUrlUtmTerm: v.UndefinedableSchema<v.SchemaWithPi
|
|
|
6139
6157
|
declare const IsValidUrlUtmId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2030, "the utm_id is too long, it must be 2030 characters or less">, v.RegexAction<string, "utm_id can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
6140
6158
|
declare const IsValidOrUndefinedUrlUtmId: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2030, "the utm_id is too long, it must be 2030 characters or less">, v.RegexAction<string, "utm_id can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
6141
6159
|
|
|
6142
|
-
export { CAMPAIGN_ID_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_ID_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_MAX_SIZE_LIMIT, CONTENT_PAGINATION_DEFAULT_SIZE_LIMIT, CONTENT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_MAX_SIZE_LIMIT, DEFAULT_CAMPAIGN_PHASES, DEFAULT_CONTENTS, DEFAULT_CREATIVE_FORMATS, DEFAULT_CREATIVE_FORMAT_VARIANTS, DEFAULT_MEDIUMS, DEFAULT_SOURCES, type DefaultCampaignPhaseKey, type DefaultCampaignPhaseValue, type DefaultContentKey, type DefaultContentValue, type DefaultCreativeFormatKey, type DefaultCreativeFormatValue, type DefaultCreativeFormatVariantKey, type DefaultCreativeFormatVariantValue, type DefaultMediumKey, type DefaultMediumValue, type DefaultSourceKey, type DefaultSourceValue, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_VALUE, GROUP_ENTITY_KEYS, GROUP_ENTITY_PERMISSIONS, GROUP_ENTITY_SCOPES, GROUP_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_PAGINATION_MAX_SIZE_LIMIT, GROUP_USER_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_USER_PAGINATION_MAX_SIZE_LIMIT, GroupApplyValueAsOptions, GroupApplyValueToOptions, type GroupEntityActions, type GroupEntityKey, type GroupEntityScope, IsValidApplyValueAs, IsValidApplyValueTo, IsValidBlocked, IsValidConfirmed, IsValidCost, IsValidCurrentPeriodEnd, IsValidCurrentPeriodStart, IsValidCustomerId, IsValidDescription, IsValidEmail, IsValidGroupUserScopes, IsValidIsActive, IsValidIsBoolean, IsValidIsSecure, IsValidLabel, IsValidMinPage, IsValidName, IsValidOrUndefinedApplyValueAs, IsValidOrUndefinedApplyValueTo, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedCurrentPeriodEnd, IsValidOrUndefinedCurrentPeriodStart, IsValidOrUndefinedCustomerId, IsValidOrUndefinedDescription, IsValidOrUndefinedEmail, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsBoolean, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPriceId, IsValidOrUndefinedProductId, IsValidOrUndefinedProvider, IsValidOrUndefinedSubscriptionId, IsValidOrUndefinedSubscriptionStatus, IsValidOrUndefinedTrialPeriodEnd, IsValidOrUndefinedUnitAmount, IsValidOrUndefinedUnitTermInMonths, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmPart, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserLimitationNumber, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPriceId, IsValidProductId, IsValidProvider, IsValidReferenceDocumentId, IsValidReferenceId, IsValidSubscriptionId, IsValidSubscriptionStatus, IsValidTrialPeriodEnd, IsValidUnitAmount, IsValidUnitTermInMonths, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmPart, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserLimitationNumber, IsValidUserLimitationNumberFallback, IsValidUsername, IsValidValue, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_LABEL, LIMIT_MAX_NAME, LIMIT_MAX_PASSWORD, LIMIT_MAX_PATH, LIMIT_MAX_PRICE_ID, LIMIT_MAX_PRODUCT_ID, LIMIT_MAX_PROVIDER, LIMIT_MAX_QUERY, LIMIT_MAX_STRIPE_ID, LIMIT_MAX_UNIT_TERM_IN_MONTHS, LIMIT_MAX_USERNAME, LIMIT_MAX_UTM_CAMPAIGN, LIMIT_MAX_UTM_CONTENT, LIMIT_MAX_UTM_CREATIVE_FORMAT, LIMIT_MAX_UTM_ID, LIMIT_MAX_UTM_MEDIUM, LIMIT_MAX_UTM_PART, LIMIT_MAX_UTM_SOURCE, LIMIT_MAX_UTM_TERM, LIMIT_MAX_VALUE, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, LIMIT_MIN_LABEL, LIMIT_MIN_NAME, LIMIT_MIN_PASSWORD, LIMIT_MIN_PATH, LIMIT_MIN_PRICE_ID, LIMIT_MIN_PRODUCT_ID, LIMIT_MIN_QUERY, LIMIT_MIN_UNIT_AMOUNT, LIMIT_MIN_UNIT_TERM_IN_MONTHS, LIMIT_MIN_USERNAME, LIMIT_MIN_UTM_CAMPAIGN, LIMIT_MIN_UTM_CONTENT, LIMIT_MIN_UTM_CREATIVE_FORMAT, LIMIT_MIN_UTM_ID, LIMIT_MIN_UTM_MEDIUM, LIMIT_MIN_UTM_PART, LIMIT_MIN_UTM_SOURCE, LIMIT_MIN_UTM_TERM, LIMIT_MIN_VALUE, MEDIUM_PAGINATION_DEFAULT_SIZE_LIMIT, MEDIUM_PAGINATION_MAX_SIZE_LIMIT, type MediaFormat, type MediaFormats, type MediaUploadDocument, type PriceDocument, type ProductDocument, REGEX_DOMAIN, REGEX_VALUE, SBaseCampaignIdDocument, SBaseCampaignKeyDocument, SBaseCampaignPhaseDocument, SBaseCampaignProductDocument, SBaseCampaignTargetDocument, SBaseContentDocument, SBaseCreativeFormatDocument, SBaseCreativeFormatVariantDocument, SBaseDocument, SBaseDocumentCreatedBy, SBaseGroupDocument, SBaseGroupUserDocument, SBaseMediumDocument, SBaseRoleDocument, SBaseSourceDocument, SBaseTermDocument, SBaseTrackingLinkDocument, SBaseUserAccountDocument, SBaseUserDocument, SBaseUserLimitationsDocument, SBaseWebsiteDocument, SCampaignIdDocument, type SCampaignIdDocumentIn, type SCampaignIdDocumentOut, SCampaignIdDocumentWithRelations, SCampaignIdRelationsDocument, type SCampaignIdRelationsDocumentIn, type SCampaignIdRelationsDocumentOut, SCampaignKeyDocument, type SCampaignKeyDocumentIn, type SCampaignKeyDocumentOut, SCampaignKeyDocumentWithRelations, SCampaignKeyRelationsDocument, type SCampaignKeyRelationsDocumentIn, type SCampaignKeyRelationsDocumentOut, SCampaignPhaseDocument, type SCampaignPhaseDocumentIn, type SCampaignPhaseDocumentOut, SCampaignPhaseDocumentWithRelations, SCampaignPhaseRelationsDocument, type SCampaignPhaseRelationsDocumentIn, type SCampaignPhaseRelationsDocumentOut, SCampaignProductDocument, type SCampaignProductDocumentIn, type SCampaignProductDocumentOut, SCampaignProductDocumentWithRelations, SCampaignProductRelationsDocument, type SCampaignProductRelationsDocumentIn, type SCampaignProductRelationsDocumentOut, SCampaignTargetDocument, type SCampaignTargetDocumentIn, type SCampaignTargetDocumentOut, SCampaignTargetDocumentWithRelations, SCampaignTargetRelationsDocument, type SCampaignTargetRelationsDocumentIn, type SCampaignTargetRelationsDocumentOut, SChangePassword, SContentDocument, type SContentDocumentIn, type SContentDocumentOut, SContentDocumentWithRelations, SContentRelationsDocument, type SContentRelationsDocumentIn, type SContentRelationsDocumentOut, SCreateCampaignIdDocument, SCreateCampaignKeyDocument, SCreateCampaignPhaseDocument, SCreateCampaignProductDocument, SCreateCampaignTargetDocument, SCreateContentDocument, SCreateCreativeFormatDocument, SCreateCreativeFormatVariantDocument, SCreateGroupDocument, SCreateGroupUserAssignMultipleUsers, SCreateGroupUserDocument, SCreateMediumDocument, SCreateMultipleCampaignIdDocuments, SCreateMultipleCampaignKeyDocuments, SCreateMultipleCampaignPhaseDocuments, SCreateMultipleCampaignProductDocuments, SCreateMultipleCampaignTargetDocuments, SCreateMultipleContentDocuments, SCreateMultipleCreativeFormatDocuments, SCreateMultipleCreativeFormatVariantDocuments, SCreateMultipleMediumDocuments, SCreateMultipleSourceDocuments, SCreateMultipleTermDocuments, SCreateMultipleTrackingLinkDocuments, SCreateMultipleWebsiteDocuments, SCreatePreviewMultipleTrackingLinkDocuments, SCreatePreviewTrackingLinkDocument, SCreateSourceDocument, SCreateTermDocument, SCreateTrackingLinkDocument, SCreateUserAccountDocument, SCreateUserLimitationsDocument, SCreateWebsiteDocument, SCreativeFormatDocument, type SCreativeFormatDocumentIn, type SCreativeFormatDocumentOut, SCreativeFormatDocumentWithRelations, SCreativeFormatRelationsDocument, type SCreativeFormatRelationsDocumentIn, type SCreativeFormatRelationsDocumentOut, SCreativeFormatVariantDocument, type SCreativeFormatVariantDocumentIn, type SCreativeFormatVariantDocumentOut, SCreativeFormatVariantDocumentWithRelations, SCreativeFormatVariantRelationsDocument, type SCreativeFormatVariantRelationsDocumentIn, type SCreativeFormatVariantRelationsDocumentOut, SDeleteCampaignIdDocument, SDeleteCampaignKeyDocument, SDeleteCampaignPhaseDocument, SDeleteCampaignProductDocument, SDeleteCampaignTargetDocument, SDeleteContentDocument, SDeleteCreativeFormatDocument, SDeleteCreativeFormatVariantDocument, SDeleteGroupDocument, SDeleteGroupUserDocument, SDeleteMediumDocument, SDeleteSourceDocument, SDeleteTermDocument, SDeleteTrackingLinkDocument, SDeleteWebsiteDocument, SForgotPasswordUserDocument, SGroupDocument, type SGroupDocumentIn, type SGroupDocumentOut, SGroupDocumentWithRelations, SGroupRelationAuthorizedUsers, SGroupRelationCampaignIds, SGroupRelationCampaignKeys, SGroupRelationCampaignPhases, SGroupRelationCampaignProducts, SGroupRelationContents, SGroupRelationCreativeFormatVariants, SGroupRelationCreativeFormats, SGroupRelationMediums, SGroupRelationSources, SGroupRelationTerms, SGroupRelationTrackingLinks, SGroupRelationWebsites, SGroupRelationsDocument, type SGroupRelationsDocumentIn, type SGroupRelationsDocumentOut, SGroupUserDocument, type SGroupUserDocumentIn, type SGroupUserDocumentOut, SGroupUserDocumentReqRelations, SGroupUserDocumentStatus, SGroupUserDocumentWithRelations, SGroupUserRelationsDocument, type SGroupUserRelationsDocumentIn, type SGroupUserRelationsDocumentOut, SGroupUserRelationsReqDocument, type SGroupUserRelationsReqDocumentIn, type SGroupUserRelationsReqDocumentOut, SLoginUserDocument, SMediumDocument, type SMediumDocumentIn, type SMediumDocumentOut, SMediumDocumentWithRelations, SMediumRelationsDocument, type SMediumRelationsDocumentIn, type SMediumRelationsDocumentOut, SOURCE_PAGINATION_DEFAULT_SIZE_LIMIT, SOURCE_PAGINATION_MAX_SIZE_LIMIT, SQueryListCampaignIdDocuments, SQueryListCampaignKeyDocuments, SQueryListCampaignPhaseDocuments, SQueryListCampaignProductDocuments, SQueryListCampaignTargetDocuments, SQueryListContentDocuments, SQueryListCreativeFormatDocuments, SQueryListCreativeFormatVariantDocuments, SQueryListGroupDocuments, SQueryListGroupUserDocuments, SQueryListMediumDocuments, SQueryListSourceDocuments, SQueryListTermDocuments, SQueryListTrackingLinkDocuments, SQueryListUserAccountDocuments, SQueryListUserDocuments, SQueryListUserDocumentsByIdentifier, SQueryListUserLimitationDocuments, SQueryListWebsiteDocuments, SQuerySortCampaignIdDocuments, SQuerySortCampaignKeyDocuments, SQuerySortCampaignPhaseDocuments, SQuerySortCampaignProductDocuments, SQuerySortCampaignTargetDocuments, SQuerySortContentDocuments, SQuerySortCreativeFormatDocuments, SQuerySortCreativeFormatVariantDocuments, SQuerySortGroupDocuments, SQuerySortMediumDocuments, SQuerySortSourceDocuments, SQuerySortTermDocuments, SQuerySortTrackingLinkDocuments, SQuerySortUserDocuments, SQuerySortWebsiteDocuments, SReadCampaignIdDocumentByDocumentId, SReadCampaignIdDocumentById, SReadCampaignKeyDocumentByDocumentId, SReadCampaignKeyDocumentById, SReadCampaignPhaseDocumentByDocumentId, SReadCampaignPhaseDocumentById, SReadCampaignProductDocumentByDocumentId, SReadCampaignProductDocumentById, SReadCampaignTargetDocumentByDocumentId, SReadCampaignTargetDocumentById, SReadContentDocumentByDocumentId, SReadContentDocumentById, SReadCreativeFormatDocumentByDocumentId, SReadCreativeFormatDocumentById, SReadCreativeFormatVariantDocumentByDocumentId, SReadCreativeFormatVariantDocumentById, SReadGroupDocumentByDocumentId, SReadGroupDocumentById, SReadGroupUserDocumentByDocumentId, SReadGroupUserDocumentById, SReadMediumDocumentByDocumentId, SReadMediumDocumentById, SReadSourceDocumentByDocumentId, SReadSourceDocumentById, SReadTermDocumentByDocumentId, SReadTermDocumentById, SReadTrackingLinkDocumentByDocumentId, SReadTrackingLinkDocumentById, SReadUserAccountDocumentByDocumentId, SReadUserAccountDocumentById, SReadUserDocumentByDocumentId, SReadUserDocumentById, SReadUserDocumentToken, SReadUserLimitationsDocumentByDocumentId, SReadUserLimitationsDocumentById, SReadWebsiteDocumentByDocumentId, SReadWebsiteDocumentById, SRegisterUserDocument, SRequestConfirmEmail, SResetPasswordUserDocument, SRoleDocument, type SRoleDocumentIn, type SRoleDocumentOut, SRoleDocumentWithRelations, SRoleRelationsDocument, type SRoleRelationsDocumentIn, type SRoleRelationsDocumentOut, SSourceDocument, type SSourceDocumentIn, type SSourceDocumentOut, SSourceDocumentWithRelations, SSourceRelationsDocument, type SSourceRelationsDocumentIn, type SSourceRelationsDocumentOut, SStripeCheckoutCreateSession, SStripeCheckoutLineItem, STRAPI_PAGINATION_DEFAULT_SIZE_LIMIT, STRAPI_PAGINATION_MAX_SIZE_LIMIT, STRAPI_PAGINATION_MIN_SIZE_LIMIT, STermDocument, type STermDocumentIn, type STermDocumentOut, STermDocumentWithRelations, STermRelationsDocument, type STermRelationsDocumentIn, type STermRelationsDocumentOut, STrackingLinkDocument, type STrackingLinkDocumentIn, type STrackingLinkDocumentOut, STrackingLinkDocumentWithRelations, STrackingLinkRelationsDocument, type STrackingLinkRelationsDocumentIn, type STrackingLinkRelationsDocumentOut, SUpdateAsCreatorCampaignIdDocument, SUpdateAsCreatorCampaignIdDocumentRequest, SUpdateAsCreatorCampaignKeyDocument, SUpdateAsCreatorCampaignKeyDocumentRequest, SUpdateAsCreatorCampaignPhaseDocument, SUpdateAsCreatorCampaignPhaseDocumentRequest, SUpdateAsCreatorCampaignProductDocument, SUpdateAsCreatorCampaignProductDocumentRequest, SUpdateAsCreatorCampaignTargetDocument, SUpdateAsCreatorCampaignTargetDocumentRequest, SUpdateAsCreatorContentDocument, SUpdateAsCreatorContentDocumentRequest, SUpdateAsCreatorCreativeFormatDocument, SUpdateAsCreatorCreativeFormatDocumentRequest, SUpdateAsCreatorCreativeFormatVariantDocument, SUpdateAsCreatorCreativeFormatVariantDocumentRequest, SUpdateAsCreatorGroupDocument, SUpdateAsCreatorGroupDocumentRequest, SUpdateAsCreatorMediumDocument, SUpdateAsCreatorMediumDocumentRequest, SUpdateAsCreatorSourceDocument, SUpdateAsCreatorSourceDocumentRequest, SUpdateAsCreatorTermDocument, SUpdateAsCreatorTermDocumentRequest, SUpdateAsCreatorTrackingLinkDocument, SUpdateAsCreatorTrackingLinkDocumentRequest, SUpdateAsCreatorWebsiteDocument, SUpdateAsCreatorWebsiteDocumentRequest, SUpdateAsInvitedCampaignIdDocument, SUpdateAsInvitedCampaignIdDocumentRequest, SUpdateAsInvitedCampaignKeyDocument, SUpdateAsInvitedCampaignKeyDocumentRequest, SUpdateAsInvitedCampaignPhaseDocument, SUpdateAsInvitedCampaignPhaseDocumentRequest, SUpdateAsInvitedCampaignProductDocument, SUpdateAsInvitedCampaignProductDocumentRequest, SUpdateAsInvitedCampaignTargetDocument, SUpdateAsInvitedCampaignTargetDocumentRequest, SUpdateAsInvitedContentDocument, SUpdateAsInvitedContentDocumentRequest, SUpdateAsInvitedCreativeFormatDocument, SUpdateAsInvitedCreativeFormatDocumentRequest, SUpdateAsInvitedCreativeFormatVariantDocument, SUpdateAsInvitedCreativeFormatVariantDocumentRequest, SUpdateAsInvitedGroupDocument, SUpdateAsInvitedGroupDocumentRequest, SUpdateAsInvitedMediumDocument, SUpdateAsInvitedMediumDocumentRequest, SUpdateAsInvitedSourceDocument, SUpdateAsInvitedSourceDocumentRequest, SUpdateAsInvitedTermDocument, SUpdateAsInvitedTermDocumentRequest, SUpdateAsInvitedTrackingLinkDocument, SUpdateAsInvitedTrackingLinkDocumentRequest, SUpdateAsInvitedWebsiteDocument, SUpdateAsInvitedWebsiteDocumentRequest, SUpdateCampaignIdDocumentRequest, SUpdateCampaignKeyDocumentRequest, SUpdateCampaignPhaseDocumentRequest, SUpdateCampaignProductDocumentRequest, SUpdateCampaignTargetDocumentRequest, SUpdateContentDocumentRequest, SUpdateCreativeFormatDocumentRequest, SUpdateCreativeFormatVariantDocumentRequest, SUpdateGroupDocumentRequest, SUpdateGroupUserDocument, SUpdateGroupUserDocumentRequest, SUpdateMediumDocumentRequest, SUpdateSourceDocumentRequest, SUpdateTermDocumentRequest, SUpdateTrackingLinkDocumentRequest, SUpdateUserAccountDocument, SUpdateUserLimitationsDocument, SUpdateWebsiteDocumentRequest, SUserAccountDocument, type SUserAccountDocumentIn, type SUserAccountDocumentOut, SUserAccountDocumentReqRelations, SUserAccountDocumentWithRelations, SUserAccountRelationsDocument, type SUserAccountRelationsDocumentIn, type SUserAccountRelationsDocumentOut, SUserAccountRelationsReqDocument, SUserAuthorizationSuccessResponse, SUserDocument, type SUserDocumentIn, type SUserDocumentOut, SUserDocumentWithAccountAndRoleRelations, SUserDocumentWithAccountRelations, SUserDocumentWithRelations, SUserLimitationsDocument, type SUserLimitationsDocumentIn, type SUserLimitationsDocumentOut, SUserLimitationsDocumentWithRelations, SUserLimitationsRelationsDocument, type SUserLimitationsRelationsDocumentIn, type SUserLimitationsRelationsDocumentOut, SUserRelationAccount, SUserRelationAuthorizedGroups, SUserRelationCampaignIds, SUserRelationCampaignKeys, SUserRelationCampaignPhases, SUserRelationCampaignProducts, SUserRelationContents, SUserRelationCreatedWebsites, SUserRelationCreativeFormatVariants, SUserRelationCreativeFormats, SUserRelationLimits, SUserRelationMediums, SUserRelationReqAccount, SUserRelationReqLimits, SUserRelationReqRole, SUserRelationRole, SUserRelationSources, SUserRelationTerms, SUserRelationTrackingLinks, SUserRelationsDocument, type SUserRelationsDocumentIn, type SUserRelationsDocumentOut, SUtmLinkBuilderPartCampaignDateFormat, type SUtmLinkBuilderPartCampaignDateFormatInput, SUtmLinkBuilderPartCampaignDateFormatOptions, SUtmLinkBuilderPartCampaignDateObject, type SUtmLinkBuilderPartCampaignDateObjectInput, SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderPartCampaignDateValueDay, type SUtmLinkBuilderPartCampaignDateValueDayInput, type SUtmLinkBuilderPartCampaignDateValueInput, SUtmLinkBuilderPartCampaignDateValueMonth, type SUtmLinkBuilderPartCampaignDateValueMonthInput, SUtmLinkBuilderPartCampaignDateValueQuarter, type SUtmLinkBuilderPartCampaignDateValueQuarterInput, SUtmLinkBuilderPartCampaignDateValueYear, type SUtmLinkBuilderPartCampaignDateValueYearInput, SUtmLinkBuilderPartCampaignId, type SUtmLinkBuilderPartCampaignIdInput, SUtmLinkBuilderPartCampaignKey, type SUtmLinkBuilderPartCampaignKeyInput, SUtmLinkBuilderPartCampaignObject, type SUtmLinkBuilderPartCampaignObjectInput, SUtmLinkBuilderPartCampaignPhase, type SUtmLinkBuilderPartCampaignPhaseInput, SUtmLinkBuilderPartCampaignProduct, type SUtmLinkBuilderPartCampaignProductInput, SUtmLinkBuilderPartCampaignTargeting, type SUtmLinkBuilderPartCampaignTargetingInput, SUtmLinkBuilderPartCampaigns, type SUtmLinkBuilderPartCampaignsInput, SUtmLinkBuilderPartContents, type SUtmLinkBuilderPartContentsInput, SUtmLinkBuilderPartCreativeFormatObject, type SUtmLinkBuilderPartCreativeFormatObjectInput, SUtmLinkBuilderPartCreativeFormatValue, type SUtmLinkBuilderPartCreativeFormatValueInput, SUtmLinkBuilderPartCreativeFormatVariantValue, type SUtmLinkBuilderPartCreativeFormatVariantValueInput, SUtmLinkBuilderPartCreativeFormats, type SUtmLinkBuilderPartCreativeFormatsInput, SUtmLinkBuilderPartMediums, type SUtmLinkBuilderPartMediumsInput, SUtmLinkBuilderPartSources, type SUtmLinkBuilderPartSourcesInput, SUtmLinkBuilderPartTerms, type SUtmLinkBuilderPartTermsInput, SUtmLinkBuilderPartUrlDestinations, type SUtmLinkBuilderPartUrlDestinationsInput, SUtmLinkBuilderPartUrlObject, type SUtmLinkBuilderPartUrlObjectInput, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, SVerifyGroupUserDocument, SWebsiteDocument, type SWebsiteDocumentIn, type SWebsiteDocumentOut, SWebsiteDocumentWithRelations, SWebsiteRelationsDocument, type SWebsiteRelationsDocumentIn, type SWebsiteRelationsDocumentOut, type SeoMeta, type SeoOpenGraph, type StrapiAttributeErrorDetail, type StrapiAttributeErrorKey, type StrapiAttributeErrorResponse, type StrapiErrorDetail, type StrapiErrorKey, type StrapiErrorResponse, type StrapiErrorResult, type StrapiListResponse, type StrapiPagination, type StrapiResponseMeta, type StrapiResponseMetaWithPagination, type StrapiSingleResponse, type StripeCheckoutRedirectResponse, type StripeProductPricesResponse, type SubscriptionStatusValue, SubscriptionStatusValues, TERM_PAGINATION_DEFAULT_SIZE_LIMIT, TERM_PAGINATION_MAX_SIZE_LIMIT, TRACKING_LINK_PAGINATION_DEFAULT_SIZE_LIMIT, TRACKING_LINK_PAGINATION_MAX_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_DEFAULT_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_MAX_SIZE_LIMIT, USER_LIMITATION_PAGINATION_DEFAULT_SIZE_LIMIT, USER_LIMITATION_PAGINATION_MAX_SIZE_LIMIT, USER_PAGINATION_DEFAULT_SIZE_LIMIT, USER_PAGINATION_MAX_SIZE_LIMIT, type UrlProtocol, UrlProtocolOptions, WEBSITE_PAGINATION_DEFAULT_SIZE_LIMIT, WEBSITE_PAGINATION_MAX_SIZE_LIMIT, datePlusDays, dateToday, isStrapiAttributeError, isStrapiStandardError, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|
|
6160
|
+
export { CAMPAIGN_ID_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_ID_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_MAX_SIZE_LIMIT, CONTENT_PAGINATION_DEFAULT_SIZE_LIMIT, CONTENT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_MAX_SIZE_LIMIT, DEFAULT_CAMPAIGN_PHASES, DEFAULT_CONTENTS, DEFAULT_CREATIVE_FORMATS, DEFAULT_CREATIVE_FORMAT_VARIANTS, DEFAULT_MEDIUMS, DEFAULT_SOURCES, type DefaultCampaignPhaseKey, type DefaultCampaignPhaseValue, type DefaultContentKey, type DefaultContentValue, type DefaultCreativeFormatKey, type DefaultCreativeFormatValue, type DefaultCreativeFormatVariantKey, type DefaultCreativeFormatVariantValue, type DefaultMediumKey, type DefaultMediumValue, type DefaultSourceKey, type DefaultSourceValue, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_VALUE, GROUP_ENTITY_KEYS, GROUP_ENTITY_PERMISSIONS, GROUP_ENTITY_SCOPES, GROUP_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_PAGINATION_MAX_SIZE_LIMIT, GROUP_USER_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_USER_PAGINATION_MAX_SIZE_LIMIT, GroupApplyValueAsOptions, GroupApplyValueToOptions, type GroupEntityActions, type GroupEntityKey, type GroupEntityScope, IsValidApplyValueAs, IsValidApplyValueTo, IsValidBlocked, IsValidConfirmed, IsValidCost, IsValidCurrentPeriodEnd, IsValidCurrentPeriodStart, IsValidCustomerId, IsValidDescription, IsValidEmail, IsValidGroupUserScopes, IsValidIsActive, IsValidIsBoolean, IsValidIsSecure, IsValidLabel, IsValidMinPage, IsValidName, IsValidOrUndefinedApplyValueAs, IsValidOrUndefinedApplyValueTo, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedCurrentPeriodEnd, IsValidOrUndefinedCurrentPeriodStart, IsValidOrUndefinedCustomerId, IsValidOrUndefinedDescription, IsValidOrUndefinedEmail, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsBoolean, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPriceId, IsValidOrUndefinedProductId, IsValidOrUndefinedProvider, IsValidOrUndefinedSubscriptionId, IsValidOrUndefinedSubscriptionStatus, IsValidOrUndefinedTrialPeriodEnd, IsValidOrUndefinedUnitAmount, IsValidOrUndefinedUnitTermInMonths, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmPart, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserLimitationNumber, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPriceId, IsValidProductId, IsValidProvider, IsValidReferenceDocumentId, IsValidReferenceId, IsValidSubscriptionId, IsValidSubscriptionStatus, IsValidTrialPeriodEnd, IsValidUnitAmount, IsValidUnitTermInMonths, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmPart, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserLimitationNumber, IsValidUserLimitationNumberFallback, IsValidUsername, IsValidValue, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_LABEL, LIMIT_MAX_NAME, LIMIT_MAX_PASSWORD, LIMIT_MAX_PATH, LIMIT_MAX_PRICE_ID, LIMIT_MAX_PRODUCT_ID, LIMIT_MAX_PROVIDER, LIMIT_MAX_QUERY, LIMIT_MAX_STRIPE_ID, LIMIT_MAX_UNIT_TERM_IN_MONTHS, LIMIT_MAX_USERNAME, LIMIT_MAX_UTM_CAMPAIGN, LIMIT_MAX_UTM_CONTENT, LIMIT_MAX_UTM_CREATIVE_FORMAT, LIMIT_MAX_UTM_ID, LIMIT_MAX_UTM_MEDIUM, LIMIT_MAX_UTM_PART, LIMIT_MAX_UTM_SOURCE, LIMIT_MAX_UTM_TERM, LIMIT_MAX_VALUE, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, LIMIT_MIN_LABEL, LIMIT_MIN_NAME, LIMIT_MIN_PASSWORD, LIMIT_MIN_PATH, LIMIT_MIN_PRICE_ID, LIMIT_MIN_PRODUCT_ID, LIMIT_MIN_QUERY, LIMIT_MIN_UNIT_AMOUNT, LIMIT_MIN_UNIT_TERM_IN_MONTHS, LIMIT_MIN_USERNAME, LIMIT_MIN_UTM_CAMPAIGN, LIMIT_MIN_UTM_CONTENT, LIMIT_MIN_UTM_CREATIVE_FORMAT, LIMIT_MIN_UTM_ID, LIMIT_MIN_UTM_MEDIUM, LIMIT_MIN_UTM_PART, LIMIT_MIN_UTM_SOURCE, LIMIT_MIN_UTM_TERM, LIMIT_MIN_VALUE, MEDIUM_PAGINATION_DEFAULT_SIZE_LIMIT, MEDIUM_PAGINATION_MAX_SIZE_LIMIT, type MediaFormat, type MediaFormats, type MediaUploadDocument, type PriceDocument, type ProductDocument, REGEX_DOMAIN, REGEX_VALUE, SBaseCampaignIdDocument, SBaseCampaignKeyDocument, SBaseCampaignPhaseDocument, SBaseCampaignProductDocument, SBaseCampaignTargetDocument, SBaseContentDocument, SBaseCreativeFormatDocument, SBaseCreativeFormatVariantDocument, SBaseDocument, SBaseDocumentCreatedBy, SBaseGroupDocument, SBaseGroupUserDocument, SBaseMediumDocument, SBaseRoleDocument, SBaseSourceDocument, SBaseTermDocument, SBaseTrackingLinkDocument, SBaseUserAccountDocument, SBaseUserDocument, SBaseUserLimitationsDocument, SBaseWebsiteDocument, SCampaignIdDocument, type SCampaignIdDocumentIn, type SCampaignIdDocumentOut, SCampaignIdDocumentWithRelations, SCampaignIdRelationsDocument, type SCampaignIdRelationsDocumentIn, type SCampaignIdRelationsDocumentOut, SCampaignKeyDocument, type SCampaignKeyDocumentIn, type SCampaignKeyDocumentOut, SCampaignKeyDocumentWithRelations, SCampaignKeyRelationsDocument, type SCampaignKeyRelationsDocumentIn, type SCampaignKeyRelationsDocumentOut, SCampaignPhaseDocument, type SCampaignPhaseDocumentIn, type SCampaignPhaseDocumentOut, SCampaignPhaseDocumentWithRelations, SCampaignPhaseRelationsDocument, type SCampaignPhaseRelationsDocumentIn, type SCampaignPhaseRelationsDocumentOut, SCampaignProductDocument, type SCampaignProductDocumentIn, type SCampaignProductDocumentOut, SCampaignProductDocumentWithRelations, SCampaignProductRelationsDocument, type SCampaignProductRelationsDocumentIn, type SCampaignProductRelationsDocumentOut, SCampaignTargetDocument, type SCampaignTargetDocumentIn, type SCampaignTargetDocumentOut, SCampaignTargetDocumentWithRelations, SCampaignTargetRelationsDocument, type SCampaignTargetRelationsDocumentIn, type SCampaignTargetRelationsDocumentOut, SChangePassword, SContentDocument, type SContentDocumentIn, type SContentDocumentOut, SContentDocumentWithRelations, SContentRelationsDocument, type SContentRelationsDocumentIn, type SContentRelationsDocumentOut, SCreateCampaignIdDocument, SCreateCampaignKeyDocument, SCreateCampaignPhaseDocument, SCreateCampaignProductDocument, SCreateCampaignTargetDocument, SCreateContentDocument, SCreateCreativeFormatDocument, SCreateCreativeFormatVariantDocument, SCreateGroupDocument, SCreateGroupUserAssignMultipleUsers, SCreateGroupUserDocument, SCreateMediumDocument, SCreateMultipleCampaignIdDocuments, SCreateMultipleCampaignKeyDocuments, SCreateMultipleCampaignPhaseDocuments, SCreateMultipleCampaignProductDocuments, SCreateMultipleCampaignTargetDocuments, SCreateMultipleContentDocuments, SCreateMultipleCreativeFormatDocuments, SCreateMultipleCreativeFormatVariantDocuments, SCreateMultipleMediumDocuments, SCreateMultipleSourceDocuments, SCreateMultipleTermDocuments, SCreateMultipleTrackingLinkDocuments, SCreateMultipleWebsiteDocuments, SCreatePreviewMultipleTrackingLinkDocuments, SCreatePreviewTrackingLinkDocument, SCreateSourceDocument, SCreateTermDocument, SCreateTrackingLinkDocument, SCreateUserAccountDocument, SCreateUserDocument, SCreateUserLimitationsDocument, SCreateWebsiteDocument, SCreativeFormatDocument, type SCreativeFormatDocumentIn, type SCreativeFormatDocumentOut, SCreativeFormatDocumentWithRelations, SCreativeFormatRelationsDocument, type SCreativeFormatRelationsDocumentIn, type SCreativeFormatRelationsDocumentOut, SCreativeFormatVariantDocument, type SCreativeFormatVariantDocumentIn, type SCreativeFormatVariantDocumentOut, SCreativeFormatVariantDocumentWithRelations, SCreativeFormatVariantRelationsDocument, type SCreativeFormatVariantRelationsDocumentIn, type SCreativeFormatVariantRelationsDocumentOut, SDeleteCampaignIdDocument, SDeleteCampaignKeyDocument, SDeleteCampaignPhaseDocument, SDeleteCampaignProductDocument, SDeleteCampaignTargetDocument, SDeleteContentDocument, SDeleteCreativeFormatDocument, SDeleteCreativeFormatVariantDocument, SDeleteGroupDocument, SDeleteGroupUserDocument, SDeleteMediumDocument, SDeleteSourceDocument, SDeleteTermDocument, SDeleteTrackingLinkDocument, SDeleteWebsiteDocument, SForgotPasswordUserDocument, SGroupDocument, type SGroupDocumentIn, type SGroupDocumentOut, SGroupDocumentWithRelations, SGroupRelationAuthorizedUsers, SGroupRelationCampaignIds, SGroupRelationCampaignKeys, SGroupRelationCampaignPhases, SGroupRelationCampaignProducts, SGroupRelationContents, SGroupRelationCreativeFormatVariants, SGroupRelationCreativeFormats, SGroupRelationMediums, SGroupRelationSources, SGroupRelationTerms, SGroupRelationTrackingLinks, SGroupRelationWebsites, SGroupRelationsDocument, type SGroupRelationsDocumentIn, type SGroupRelationsDocumentOut, SGroupUserDocument, type SGroupUserDocumentIn, type SGroupUserDocumentOut, SGroupUserDocumentReqRelations, SGroupUserDocumentStatus, SGroupUserDocumentWithRelations, SGroupUserRelationsDocument, type SGroupUserRelationsDocumentIn, type SGroupUserRelationsDocumentOut, SGroupUserRelationsReqDocument, type SGroupUserRelationsReqDocumentIn, type SGroupUserRelationsReqDocumentOut, SLoginUserDocument, SMediumDocument, type SMediumDocumentIn, type SMediumDocumentOut, SMediumDocumentWithRelations, SMediumRelationsDocument, type SMediumRelationsDocumentIn, type SMediumRelationsDocumentOut, SOURCE_PAGINATION_DEFAULT_SIZE_LIMIT, SOURCE_PAGINATION_MAX_SIZE_LIMIT, SQueryListCampaignIdDocuments, SQueryListCampaignKeyDocuments, SQueryListCampaignPhaseDocuments, SQueryListCampaignProductDocuments, SQueryListCampaignTargetDocuments, SQueryListContentDocuments, SQueryListCreativeFormatDocuments, SQueryListCreativeFormatVariantDocuments, SQueryListGroupDocuments, SQueryListGroupUserDocuments, SQueryListMediumDocuments, SQueryListSourceDocuments, SQueryListTermDocuments, SQueryListTrackingLinkDocuments, SQueryListUserAccountDocuments, SQueryListUserDocuments, SQueryListUserDocumentsByIdentifier, SQueryListUserLimitationDocuments, SQueryListWebsiteDocuments, SQuerySortCampaignIdDocuments, SQuerySortCampaignKeyDocuments, SQuerySortCampaignPhaseDocuments, SQuerySortCampaignProductDocuments, SQuerySortCampaignTargetDocuments, SQuerySortContentDocuments, SQuerySortCreativeFormatDocuments, SQuerySortCreativeFormatVariantDocuments, SQuerySortGroupDocuments, SQuerySortMediumDocuments, SQuerySortSourceDocuments, SQuerySortTermDocuments, SQuerySortTrackingLinkDocuments, SQuerySortUserDocuments, SQuerySortWebsiteDocuments, SReadCampaignIdDocumentByDocumentId, SReadCampaignIdDocumentById, SReadCampaignKeyDocumentByDocumentId, SReadCampaignKeyDocumentById, SReadCampaignPhaseDocumentByDocumentId, SReadCampaignPhaseDocumentById, SReadCampaignProductDocumentByDocumentId, SReadCampaignProductDocumentById, SReadCampaignTargetDocumentByDocumentId, SReadCampaignTargetDocumentById, SReadContentDocumentByDocumentId, SReadContentDocumentById, SReadCreativeFormatDocumentByDocumentId, SReadCreativeFormatDocumentById, SReadCreativeFormatVariantDocumentByDocumentId, SReadCreativeFormatVariantDocumentById, SReadGroupDocumentByDocumentId, SReadGroupDocumentById, SReadGroupUserDocumentByDocumentId, SReadGroupUserDocumentById, SReadMediumDocumentByDocumentId, SReadMediumDocumentById, SReadSourceDocumentByDocumentId, SReadSourceDocumentById, SReadTermDocumentByDocumentId, SReadTermDocumentById, SReadTrackingLinkDocumentByDocumentId, SReadTrackingLinkDocumentById, SReadUserAccountDocumentByDocumentId, SReadUserAccountDocumentById, SReadUserDocumentByDocumentId, SReadUserDocumentById, SReadUserDocumentToken, SReadUserLimitationsDocumentByDocumentId, SReadUserLimitationsDocumentById, SReadWebsiteDocumentByDocumentId, SReadWebsiteDocumentById, SRegisterUserDocument, SRequestConfirmEmail, SResetPasswordUserDocument, SRoleDocument, type SRoleDocumentIn, type SRoleDocumentOut, SRoleDocumentWithRelations, SRoleRelationsDocument, type SRoleRelationsDocumentIn, type SRoleRelationsDocumentOut, SSourceDocument, type SSourceDocumentIn, type SSourceDocumentOut, SSourceDocumentWithRelations, SSourceRelationsDocument, type SSourceRelationsDocumentIn, type SSourceRelationsDocumentOut, SStripeCheckoutCreateSession, SStripeCheckoutLineItem, STRAPI_PAGINATION_DEFAULT_SIZE_LIMIT, STRAPI_PAGINATION_MAX_SIZE_LIMIT, STRAPI_PAGINATION_MIN_SIZE_LIMIT, STermDocument, type STermDocumentIn, type STermDocumentOut, STermDocumentWithRelations, STermRelationsDocument, type STermRelationsDocumentIn, type STermRelationsDocumentOut, STrackingLinkDocument, type STrackingLinkDocumentIn, type STrackingLinkDocumentOut, STrackingLinkDocumentWithRelations, STrackingLinkRelationsDocument, type STrackingLinkRelationsDocumentIn, type STrackingLinkRelationsDocumentOut, SUpdateAsCreatorCampaignIdDocument, SUpdateAsCreatorCampaignIdDocumentRequest, SUpdateAsCreatorCampaignKeyDocument, SUpdateAsCreatorCampaignKeyDocumentRequest, SUpdateAsCreatorCampaignPhaseDocument, SUpdateAsCreatorCampaignPhaseDocumentRequest, SUpdateAsCreatorCampaignProductDocument, SUpdateAsCreatorCampaignProductDocumentRequest, SUpdateAsCreatorCampaignTargetDocument, SUpdateAsCreatorCampaignTargetDocumentRequest, SUpdateAsCreatorContentDocument, SUpdateAsCreatorContentDocumentRequest, SUpdateAsCreatorCreativeFormatDocument, SUpdateAsCreatorCreativeFormatDocumentRequest, SUpdateAsCreatorCreativeFormatVariantDocument, SUpdateAsCreatorCreativeFormatVariantDocumentRequest, SUpdateAsCreatorGroupDocument, SUpdateAsCreatorGroupDocumentRequest, SUpdateAsCreatorMediumDocument, SUpdateAsCreatorMediumDocumentRequest, SUpdateAsCreatorSourceDocument, SUpdateAsCreatorSourceDocumentRequest, SUpdateAsCreatorTermDocument, SUpdateAsCreatorTermDocumentRequest, SUpdateAsCreatorTrackingLinkDocument, SUpdateAsCreatorTrackingLinkDocumentRequest, SUpdateAsCreatorWebsiteDocument, SUpdateAsCreatorWebsiteDocumentRequest, SUpdateAsInvitedCampaignIdDocument, SUpdateAsInvitedCampaignIdDocumentRequest, SUpdateAsInvitedCampaignKeyDocument, SUpdateAsInvitedCampaignKeyDocumentRequest, SUpdateAsInvitedCampaignPhaseDocument, SUpdateAsInvitedCampaignPhaseDocumentRequest, SUpdateAsInvitedCampaignProductDocument, SUpdateAsInvitedCampaignProductDocumentRequest, SUpdateAsInvitedCampaignTargetDocument, SUpdateAsInvitedCampaignTargetDocumentRequest, SUpdateAsInvitedContentDocument, SUpdateAsInvitedContentDocumentRequest, SUpdateAsInvitedCreativeFormatDocument, SUpdateAsInvitedCreativeFormatDocumentRequest, SUpdateAsInvitedCreativeFormatVariantDocument, SUpdateAsInvitedCreativeFormatVariantDocumentRequest, SUpdateAsInvitedGroupDocument, SUpdateAsInvitedGroupDocumentRequest, SUpdateAsInvitedMediumDocument, SUpdateAsInvitedMediumDocumentRequest, SUpdateAsInvitedSourceDocument, SUpdateAsInvitedSourceDocumentRequest, SUpdateAsInvitedTermDocument, SUpdateAsInvitedTermDocumentRequest, SUpdateAsInvitedTrackingLinkDocument, SUpdateAsInvitedTrackingLinkDocumentRequest, SUpdateAsInvitedWebsiteDocument, SUpdateAsInvitedWebsiteDocumentRequest, SUpdateCampaignIdDocumentRequest, SUpdateCampaignKeyDocumentRequest, SUpdateCampaignPhaseDocumentRequest, SUpdateCampaignProductDocumentRequest, SUpdateCampaignTargetDocumentRequest, SUpdateContentDocumentRequest, SUpdateCreativeFormatDocumentRequest, SUpdateCreativeFormatVariantDocumentRequest, SUpdateGroupDocumentRequest, SUpdateGroupUserDocument, SUpdateGroupUserDocumentRequest, SUpdateMediumDocumentRequest, SUpdateSourceDocumentRequest, SUpdateTermDocumentRequest, SUpdateTrackingLinkDocumentRequest, SUpdateUserAccountDocument, SUpdateUserDocument, SUpdateUserLimitationsDocument, SUpdateWebsiteDocumentRequest, SUserAccountDocument, type SUserAccountDocumentIn, type SUserAccountDocumentOut, SUserAccountDocumentReqRelations, SUserAccountDocumentWithRelations, SUserAccountRelationsDocument, type SUserAccountRelationsDocumentIn, type SUserAccountRelationsDocumentOut, SUserAccountRelationsReqDocument, SUserAuthorizationSuccessResponse, SUserDocument, type SUserDocumentIn, type SUserDocumentOut, SUserDocumentWithAccountAndRoleRelations, SUserDocumentWithAccountRelations, SUserDocumentWithRelations, SUserLimitationsDocument, type SUserLimitationsDocumentIn, type SUserLimitationsDocumentOut, SUserLimitationsDocumentWithRelations, SUserLimitationsRelationsDocument, type SUserLimitationsRelationsDocumentIn, type SUserLimitationsRelationsDocumentOut, SUserRelationAccount, SUserRelationAuthorizedGroups, SUserRelationCampaignIds, SUserRelationCampaignKeys, SUserRelationCampaignPhases, SUserRelationCampaignProducts, SUserRelationContents, SUserRelationCreatedWebsites, SUserRelationCreativeFormatVariants, SUserRelationCreativeFormats, SUserRelationLimits, SUserRelationMediums, SUserRelationReqAccount, SUserRelationReqLimits, SUserRelationReqRole, SUserRelationRole, SUserRelationSources, SUserRelationTerms, SUserRelationTrackingLinks, SUserRelationsDocument, type SUserRelationsDocumentIn, type SUserRelationsDocumentOut, SUtmLinkBuilderPartCampaignDateFormat, type SUtmLinkBuilderPartCampaignDateFormatInput, SUtmLinkBuilderPartCampaignDateFormatOptions, SUtmLinkBuilderPartCampaignDateObject, type SUtmLinkBuilderPartCampaignDateObjectInput, SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderPartCampaignDateValueDay, type SUtmLinkBuilderPartCampaignDateValueDayInput, type SUtmLinkBuilderPartCampaignDateValueInput, SUtmLinkBuilderPartCampaignDateValueMonth, type SUtmLinkBuilderPartCampaignDateValueMonthInput, SUtmLinkBuilderPartCampaignDateValueQuarter, type SUtmLinkBuilderPartCampaignDateValueQuarterInput, SUtmLinkBuilderPartCampaignDateValueYear, type SUtmLinkBuilderPartCampaignDateValueYearInput, SUtmLinkBuilderPartCampaignId, type SUtmLinkBuilderPartCampaignIdInput, SUtmLinkBuilderPartCampaignKey, type SUtmLinkBuilderPartCampaignKeyInput, SUtmLinkBuilderPartCampaignObject, type SUtmLinkBuilderPartCampaignObjectInput, SUtmLinkBuilderPartCampaignPhase, type SUtmLinkBuilderPartCampaignPhaseInput, SUtmLinkBuilderPartCampaignProduct, type SUtmLinkBuilderPartCampaignProductInput, SUtmLinkBuilderPartCampaignTargeting, type SUtmLinkBuilderPartCampaignTargetingInput, SUtmLinkBuilderPartCampaigns, type SUtmLinkBuilderPartCampaignsInput, SUtmLinkBuilderPartContents, type SUtmLinkBuilderPartContentsInput, SUtmLinkBuilderPartCreativeFormatObject, type SUtmLinkBuilderPartCreativeFormatObjectInput, SUtmLinkBuilderPartCreativeFormatValue, type SUtmLinkBuilderPartCreativeFormatValueInput, SUtmLinkBuilderPartCreativeFormatVariantValue, type SUtmLinkBuilderPartCreativeFormatVariantValueInput, SUtmLinkBuilderPartCreativeFormats, type SUtmLinkBuilderPartCreativeFormatsInput, SUtmLinkBuilderPartMediums, type SUtmLinkBuilderPartMediumsInput, SUtmLinkBuilderPartSources, type SUtmLinkBuilderPartSourcesInput, SUtmLinkBuilderPartTerms, type SUtmLinkBuilderPartTermsInput, SUtmLinkBuilderPartUrlDestinations, type SUtmLinkBuilderPartUrlDestinationsInput, SUtmLinkBuilderPartUrlObject, type SUtmLinkBuilderPartUrlObjectInput, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, SVerifyGroupUserDocument, SWebsiteDocument, type SWebsiteDocumentIn, type SWebsiteDocumentOut, SWebsiteDocumentWithRelations, SWebsiteRelationsDocument, type SWebsiteRelationsDocumentIn, type SWebsiteRelationsDocumentOut, type SeoMeta, type SeoOpenGraph, type StrapiAttributeErrorDetail, type StrapiAttributeErrorKey, type StrapiAttributeErrorResponse, type StrapiErrorDetail, type StrapiErrorKey, type StrapiErrorResponse, type StrapiErrorResult, type StrapiListResponse, type StrapiPagination, type StrapiResponseMeta, type StrapiResponseMetaWithPagination, type StrapiSingleResponse, type StripeCheckoutRedirectResponse, type StripeProductPricesResponse, type SubscriptionStatusValue, SubscriptionStatusValues, TERM_PAGINATION_DEFAULT_SIZE_LIMIT, TERM_PAGINATION_MAX_SIZE_LIMIT, TRACKING_LINK_PAGINATION_DEFAULT_SIZE_LIMIT, TRACKING_LINK_PAGINATION_MAX_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_DEFAULT_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_MAX_SIZE_LIMIT, USER_LIMITATION_PAGINATION_DEFAULT_SIZE_LIMIT, USER_LIMITATION_PAGINATION_MAX_SIZE_LIMIT, USER_PAGINATION_DEFAULT_SIZE_LIMIT, USER_PAGINATION_MAX_SIZE_LIMIT, type UrlProtocol, UrlProtocolOptions, WEBSITE_PAGINATION_DEFAULT_SIZE_LIMIT, WEBSITE_PAGINATION_MAX_SIZE_LIMIT, datePlusDays, dateToday, isStrapiAttributeError, isStrapiStandardError, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|
package/dist/index.js
CHANGED
|
@@ -1123,12 +1123,28 @@ var SQueryListUserDocumentsByIdentifier = v12.object({
|
|
|
1123
1123
|
USER_PAGINATION_DEFAULT_SIZE_LIMIT
|
|
1124
1124
|
)
|
|
1125
1125
|
});
|
|
1126
|
+
var SCreateUserDocument = v12.object({
|
|
1127
|
+
username: IsValidUsername,
|
|
1128
|
+
email: IsValidEmail,
|
|
1129
|
+
password: IsValidPassword,
|
|
1130
|
+
blocked: IsValidIsBoolean,
|
|
1131
|
+
confirmed: IsValidIsBoolean,
|
|
1132
|
+
role: IsValidReferenceId
|
|
1133
|
+
});
|
|
1126
1134
|
var SReadUserDocumentById = v12.object({
|
|
1127
1135
|
id: IsValidReferenceId
|
|
1128
1136
|
});
|
|
1129
1137
|
var SReadUserDocumentByDocumentId = v12.object({
|
|
1130
1138
|
documentId: IsValidReferenceDocumentId
|
|
1131
1139
|
});
|
|
1140
|
+
var SUpdateUserDocument = v12.object({
|
|
1141
|
+
username: IsValidOrUndefinedUsername,
|
|
1142
|
+
email: IsValidOrUndefinedEmail,
|
|
1143
|
+
password: IsValidOrUndefinedPassword,
|
|
1144
|
+
blocked: IsValidOrUndefinedIsBoolean,
|
|
1145
|
+
confirmed: IsValidOrUndefinedIsBoolean,
|
|
1146
|
+
role: v12.optional(IsValidReferenceId)
|
|
1147
|
+
});
|
|
1132
1148
|
var SQuerySortCampaignIdDocuments = v12.optional(
|
|
1133
1149
|
v12.object({
|
|
1134
1150
|
key: v12.fallback(
|
|
@@ -3365,6 +3381,6 @@ function omitUndefined(obj) {
|
|
|
3365
3381
|
return result;
|
|
3366
3382
|
}
|
|
3367
3383
|
|
|
3368
|
-
export { CAMPAIGN_ID_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_ID_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_MAX_SIZE_LIMIT, CONTENT_PAGINATION_DEFAULT_SIZE_LIMIT, CONTENT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_MAX_SIZE_LIMIT, DEFAULT_CAMPAIGN_PHASES, DEFAULT_CONTENTS, DEFAULT_CREATIVE_FORMATS, DEFAULT_CREATIVE_FORMAT_VARIANTS, DEFAULT_MEDIUMS, DEFAULT_SOURCES, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_VALUE, GROUP_ENTITY_KEYS, GROUP_ENTITY_PERMISSIONS, GROUP_ENTITY_SCOPES, GROUP_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_PAGINATION_MAX_SIZE_LIMIT, GROUP_USER_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_USER_PAGINATION_MAX_SIZE_LIMIT, GroupApplyValueAsOptions, GroupApplyValueToOptions, IsValidApplyValueAs, IsValidApplyValueTo, IsValidBlocked, IsValidConfirmed, IsValidCost, IsValidCurrentPeriodEnd, IsValidCurrentPeriodStart, IsValidCustomerId, IsValidDescription, IsValidEmail, IsValidGroupUserScopes, IsValidIsActive, IsValidIsBoolean, IsValidIsSecure, IsValidLabel, IsValidMinPage, IsValidName, IsValidOrUndefinedApplyValueAs, IsValidOrUndefinedApplyValueTo, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedCurrentPeriodEnd, IsValidOrUndefinedCurrentPeriodStart, IsValidOrUndefinedCustomerId, IsValidOrUndefinedDescription, IsValidOrUndefinedEmail, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsBoolean, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPriceId, IsValidOrUndefinedProductId, IsValidOrUndefinedProvider, IsValidOrUndefinedSubscriptionId, IsValidOrUndefinedSubscriptionStatus, IsValidOrUndefinedTrialPeriodEnd, IsValidOrUndefinedUnitAmount, IsValidOrUndefinedUnitTermInMonths, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmPart, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserLimitationNumber, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPriceId, IsValidProductId, IsValidProvider, IsValidReferenceDocumentId, IsValidReferenceId, IsValidSubscriptionId, IsValidSubscriptionStatus, IsValidTrialPeriodEnd, IsValidUnitAmount, IsValidUnitTermInMonths, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmPart, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserLimitationNumber, IsValidUserLimitationNumberFallback, IsValidUsername, IsValidValue, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_LABEL, LIMIT_MAX_NAME, LIMIT_MAX_PASSWORD, LIMIT_MAX_PATH, LIMIT_MAX_PRICE_ID, LIMIT_MAX_PRODUCT_ID, LIMIT_MAX_PROVIDER, LIMIT_MAX_QUERY, LIMIT_MAX_STRIPE_ID, LIMIT_MAX_UNIT_TERM_IN_MONTHS, LIMIT_MAX_USERNAME, LIMIT_MAX_UTM_CAMPAIGN, LIMIT_MAX_UTM_CONTENT, LIMIT_MAX_UTM_CREATIVE_FORMAT, LIMIT_MAX_UTM_ID, LIMIT_MAX_UTM_MEDIUM, LIMIT_MAX_UTM_PART, LIMIT_MAX_UTM_SOURCE, LIMIT_MAX_UTM_TERM, LIMIT_MAX_VALUE, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, LIMIT_MIN_LABEL, LIMIT_MIN_NAME, LIMIT_MIN_PASSWORD, LIMIT_MIN_PATH, LIMIT_MIN_PRICE_ID, LIMIT_MIN_PRODUCT_ID, LIMIT_MIN_QUERY, LIMIT_MIN_UNIT_AMOUNT, LIMIT_MIN_UNIT_TERM_IN_MONTHS, LIMIT_MIN_USERNAME, LIMIT_MIN_UTM_CAMPAIGN, LIMIT_MIN_UTM_CONTENT, LIMIT_MIN_UTM_CREATIVE_FORMAT, LIMIT_MIN_UTM_ID, LIMIT_MIN_UTM_MEDIUM, LIMIT_MIN_UTM_PART, LIMIT_MIN_UTM_SOURCE, LIMIT_MIN_UTM_TERM, LIMIT_MIN_VALUE, MEDIUM_PAGINATION_DEFAULT_SIZE_LIMIT, MEDIUM_PAGINATION_MAX_SIZE_LIMIT, REGEX_DOMAIN, REGEX_VALUE, SBaseCampaignIdDocument, SBaseCampaignKeyDocument, SBaseCampaignPhaseDocument, SBaseCampaignProductDocument, SBaseCampaignTargetDocument, SBaseContentDocument, SBaseCreativeFormatDocument, SBaseCreativeFormatVariantDocument, SBaseDocument, SBaseDocumentCreatedBy, SBaseGroupDocument, SBaseGroupUserDocument, SBaseMediumDocument, SBaseRoleDocument, SBaseSourceDocument, SBaseTermDocument, SBaseTrackingLinkDocument, SBaseUserAccountDocument, SBaseUserDocument, SBaseUserLimitationsDocument, SBaseWebsiteDocument, SCampaignIdDocument, SCampaignIdDocumentWithRelations, SCampaignIdRelationsDocument, SCampaignKeyDocument, SCampaignKeyDocumentWithRelations, SCampaignKeyRelationsDocument, SCampaignPhaseDocument, SCampaignPhaseDocumentWithRelations, SCampaignPhaseRelationsDocument, SCampaignProductDocument, SCampaignProductDocumentWithRelations, SCampaignProductRelationsDocument, SCampaignTargetDocument, SCampaignTargetDocumentWithRelations, SCampaignTargetRelationsDocument, SChangePassword, SContentDocument, SContentDocumentWithRelations, SContentRelationsDocument, SCreateCampaignIdDocument, SCreateCampaignKeyDocument, SCreateCampaignPhaseDocument, SCreateCampaignProductDocument, SCreateCampaignTargetDocument, SCreateContentDocument, SCreateCreativeFormatDocument, SCreateCreativeFormatVariantDocument, SCreateGroupDocument, SCreateGroupUserAssignMultipleUsers, SCreateGroupUserDocument, SCreateMediumDocument, SCreateMultipleCampaignIdDocuments, SCreateMultipleCampaignKeyDocuments, SCreateMultipleCampaignPhaseDocuments, SCreateMultipleCampaignProductDocuments, SCreateMultipleCampaignTargetDocuments, SCreateMultipleContentDocuments, SCreateMultipleCreativeFormatDocuments, SCreateMultipleCreativeFormatVariantDocuments, SCreateMultipleMediumDocuments, SCreateMultipleSourceDocuments, SCreateMultipleTermDocuments, SCreateMultipleTrackingLinkDocuments, SCreateMultipleWebsiteDocuments, SCreatePreviewMultipleTrackingLinkDocuments, SCreatePreviewTrackingLinkDocument, SCreateSourceDocument, SCreateTermDocument, SCreateTrackingLinkDocument, SCreateUserAccountDocument, SCreateUserLimitationsDocument, SCreateWebsiteDocument, SCreativeFormatDocument, SCreativeFormatDocumentWithRelations, SCreativeFormatRelationsDocument, SCreativeFormatVariantDocument, SCreativeFormatVariantDocumentWithRelations, SCreativeFormatVariantRelationsDocument, SDeleteCampaignIdDocument, SDeleteCampaignKeyDocument, SDeleteCampaignPhaseDocument, SDeleteCampaignProductDocument, SDeleteCampaignTargetDocument, SDeleteContentDocument, SDeleteCreativeFormatDocument, SDeleteCreativeFormatVariantDocument, SDeleteGroupDocument, SDeleteGroupUserDocument, SDeleteMediumDocument, SDeleteSourceDocument, SDeleteTermDocument, SDeleteTrackingLinkDocument, SDeleteWebsiteDocument, SForgotPasswordUserDocument, SGroupDocument, SGroupDocumentWithRelations, SGroupRelationAuthorizedUsers, SGroupRelationCampaignIds, SGroupRelationCampaignKeys, SGroupRelationCampaignPhases, SGroupRelationCampaignProducts, SGroupRelationContents, SGroupRelationCreativeFormatVariants, SGroupRelationCreativeFormats, SGroupRelationMediums, SGroupRelationSources, SGroupRelationTerms, SGroupRelationTrackingLinks, SGroupRelationWebsites, SGroupRelationsDocument, SGroupUserDocument, SGroupUserDocumentReqRelations, SGroupUserDocumentStatus, SGroupUserDocumentWithRelations, SGroupUserRelationsDocument, SGroupUserRelationsReqDocument, SLoginUserDocument, SMediumDocument, SMediumDocumentWithRelations, SMediumRelationsDocument, SOURCE_PAGINATION_DEFAULT_SIZE_LIMIT, SOURCE_PAGINATION_MAX_SIZE_LIMIT, SQueryListCampaignIdDocuments, SQueryListCampaignKeyDocuments, SQueryListCampaignPhaseDocuments, SQueryListCampaignProductDocuments, SQueryListCampaignTargetDocuments, SQueryListContentDocuments, SQueryListCreativeFormatDocuments, SQueryListCreativeFormatVariantDocuments, SQueryListGroupDocuments, SQueryListGroupUserDocuments, SQueryListMediumDocuments, SQueryListSourceDocuments, SQueryListTermDocuments, SQueryListTrackingLinkDocuments, SQueryListUserAccountDocuments, SQueryListUserDocuments, SQueryListUserDocumentsByIdentifier, SQueryListUserLimitationDocuments, SQueryListWebsiteDocuments, SQuerySortCampaignIdDocuments, SQuerySortCampaignKeyDocuments, SQuerySortCampaignPhaseDocuments, SQuerySortCampaignProductDocuments, SQuerySortCampaignTargetDocuments, SQuerySortContentDocuments, SQuerySortCreativeFormatDocuments, SQuerySortCreativeFormatVariantDocuments, SQuerySortGroupDocuments, SQuerySortMediumDocuments, SQuerySortSourceDocuments, SQuerySortTermDocuments, SQuerySortTrackingLinkDocuments, SQuerySortUserDocuments, SQuerySortWebsiteDocuments, SReadCampaignIdDocumentByDocumentId, SReadCampaignIdDocumentById, SReadCampaignKeyDocumentByDocumentId, SReadCampaignKeyDocumentById, SReadCampaignPhaseDocumentByDocumentId, SReadCampaignPhaseDocumentById, SReadCampaignProductDocumentByDocumentId, SReadCampaignProductDocumentById, SReadCampaignTargetDocumentByDocumentId, SReadCampaignTargetDocumentById, SReadContentDocumentByDocumentId, SReadContentDocumentById, SReadCreativeFormatDocumentByDocumentId, SReadCreativeFormatDocumentById, SReadCreativeFormatVariantDocumentByDocumentId, SReadCreativeFormatVariantDocumentById, SReadGroupDocumentByDocumentId, SReadGroupDocumentById, SReadGroupUserDocumentByDocumentId, SReadGroupUserDocumentById, SReadMediumDocumentByDocumentId, SReadMediumDocumentById, SReadSourceDocumentByDocumentId, SReadSourceDocumentById, SReadTermDocumentByDocumentId, SReadTermDocumentById, SReadTrackingLinkDocumentByDocumentId, SReadTrackingLinkDocumentById, SReadUserAccountDocumentByDocumentId, SReadUserAccountDocumentById, SReadUserDocumentByDocumentId, SReadUserDocumentById, SReadUserDocumentToken, SReadUserLimitationsDocumentByDocumentId, SReadUserLimitationsDocumentById, SReadWebsiteDocumentByDocumentId, SReadWebsiteDocumentById, SRegisterUserDocument, SRequestConfirmEmail, SResetPasswordUserDocument, SRoleDocument, SRoleDocumentWithRelations, SRoleRelationsDocument, SSourceDocument, SSourceDocumentWithRelations, SSourceRelationsDocument, SStripeCheckoutCreateSession, SStripeCheckoutLineItem, STRAPI_PAGINATION_DEFAULT_SIZE_LIMIT, STRAPI_PAGINATION_MAX_SIZE_LIMIT, STRAPI_PAGINATION_MIN_SIZE_LIMIT, STermDocument, STermDocumentWithRelations, STermRelationsDocument, STrackingLinkDocument, STrackingLinkDocumentWithRelations, STrackingLinkRelationsDocument, SUpdateAsCreatorCampaignIdDocument, SUpdateAsCreatorCampaignIdDocumentRequest, SUpdateAsCreatorCampaignKeyDocument, SUpdateAsCreatorCampaignKeyDocumentRequest, SUpdateAsCreatorCampaignPhaseDocument, SUpdateAsCreatorCampaignPhaseDocumentRequest, SUpdateAsCreatorCampaignProductDocument, SUpdateAsCreatorCampaignProductDocumentRequest, SUpdateAsCreatorCampaignTargetDocument, SUpdateAsCreatorCampaignTargetDocumentRequest, SUpdateAsCreatorContentDocument, SUpdateAsCreatorContentDocumentRequest, SUpdateAsCreatorCreativeFormatDocument, SUpdateAsCreatorCreativeFormatDocumentRequest, SUpdateAsCreatorCreativeFormatVariantDocument, SUpdateAsCreatorCreativeFormatVariantDocumentRequest, SUpdateAsCreatorGroupDocument, SUpdateAsCreatorGroupDocumentRequest, SUpdateAsCreatorMediumDocument, SUpdateAsCreatorMediumDocumentRequest, SUpdateAsCreatorSourceDocument, SUpdateAsCreatorSourceDocumentRequest, SUpdateAsCreatorTermDocument, SUpdateAsCreatorTermDocumentRequest, SUpdateAsCreatorTrackingLinkDocument, SUpdateAsCreatorTrackingLinkDocumentRequest, SUpdateAsCreatorWebsiteDocument, SUpdateAsCreatorWebsiteDocumentRequest, SUpdateAsInvitedCampaignIdDocument, SUpdateAsInvitedCampaignIdDocumentRequest, SUpdateAsInvitedCampaignKeyDocument, SUpdateAsInvitedCampaignKeyDocumentRequest, SUpdateAsInvitedCampaignPhaseDocument, SUpdateAsInvitedCampaignPhaseDocumentRequest, SUpdateAsInvitedCampaignProductDocument, SUpdateAsInvitedCampaignProductDocumentRequest, SUpdateAsInvitedCampaignTargetDocument, SUpdateAsInvitedCampaignTargetDocumentRequest, SUpdateAsInvitedContentDocument, SUpdateAsInvitedContentDocumentRequest, SUpdateAsInvitedCreativeFormatDocument, SUpdateAsInvitedCreativeFormatDocumentRequest, SUpdateAsInvitedCreativeFormatVariantDocument, SUpdateAsInvitedCreativeFormatVariantDocumentRequest, SUpdateAsInvitedGroupDocument, SUpdateAsInvitedGroupDocumentRequest, SUpdateAsInvitedMediumDocument, SUpdateAsInvitedMediumDocumentRequest, SUpdateAsInvitedSourceDocument, SUpdateAsInvitedSourceDocumentRequest, SUpdateAsInvitedTermDocument, SUpdateAsInvitedTermDocumentRequest, SUpdateAsInvitedTrackingLinkDocument, SUpdateAsInvitedTrackingLinkDocumentRequest, SUpdateAsInvitedWebsiteDocument, SUpdateAsInvitedWebsiteDocumentRequest, SUpdateCampaignIdDocumentRequest, SUpdateCampaignKeyDocumentRequest, SUpdateCampaignPhaseDocumentRequest, SUpdateCampaignProductDocumentRequest, SUpdateCampaignTargetDocumentRequest, SUpdateContentDocumentRequest, SUpdateCreativeFormatDocumentRequest, SUpdateCreativeFormatVariantDocumentRequest, SUpdateGroupDocumentRequest, SUpdateGroupUserDocument, SUpdateGroupUserDocumentRequest, SUpdateMediumDocumentRequest, SUpdateSourceDocumentRequest, SUpdateTermDocumentRequest, SUpdateTrackingLinkDocumentRequest, SUpdateUserAccountDocument, SUpdateUserLimitationsDocument, SUpdateWebsiteDocumentRequest, SUserAccountDocument, SUserAccountDocumentReqRelations, SUserAccountDocumentWithRelations, SUserAccountRelationsDocument, SUserAccountRelationsReqDocument, SUserAuthorizationSuccessResponse, SUserDocument, SUserDocumentWithAccountAndRoleRelations, SUserDocumentWithAccountRelations, SUserDocumentWithRelations, SUserLimitationsDocument, SUserLimitationsDocumentWithRelations, SUserLimitationsRelationsDocument, SUserRelationAccount, SUserRelationAuthorizedGroups, SUserRelationCampaignIds, SUserRelationCampaignKeys, SUserRelationCampaignPhases, SUserRelationCampaignProducts, SUserRelationContents, SUserRelationCreatedWebsites, SUserRelationCreativeFormatVariants, SUserRelationCreativeFormats, SUserRelationLimits, SUserRelationMediums, SUserRelationReqAccount, SUserRelationReqLimits, SUserRelationReqRole, SUserRelationRole, SUserRelationSources, SUserRelationTerms, SUserRelationTrackingLinks, SUserRelationsDocument, SUtmLinkBuilderPartCampaignDateFormat, SUtmLinkBuilderPartCampaignDateFormatOptions, SUtmLinkBuilderPartCampaignDateObject, SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderPartCampaignDateValueDay, SUtmLinkBuilderPartCampaignDateValueMonth, SUtmLinkBuilderPartCampaignDateValueQuarter, SUtmLinkBuilderPartCampaignDateValueYear, SUtmLinkBuilderPartCampaignId, SUtmLinkBuilderPartCampaignKey, SUtmLinkBuilderPartCampaignObject, SUtmLinkBuilderPartCampaignPhase, SUtmLinkBuilderPartCampaignProduct, SUtmLinkBuilderPartCampaignTargeting, SUtmLinkBuilderPartCampaigns, SUtmLinkBuilderPartContents, SUtmLinkBuilderPartCreativeFormatObject, SUtmLinkBuilderPartCreativeFormatValue, SUtmLinkBuilderPartCreativeFormatVariantValue, SUtmLinkBuilderPartCreativeFormats, SUtmLinkBuilderPartMediums, SUtmLinkBuilderPartSources, SUtmLinkBuilderPartTerms, SUtmLinkBuilderPartUrlDestinations, SUtmLinkBuilderPartUrlObject, SUtmLinkBuilderTableForm, SVerifyGroupUserDocument, SWebsiteDocument, SWebsiteDocumentWithRelations, SWebsiteRelationsDocument, SubscriptionStatusValues, TERM_PAGINATION_DEFAULT_SIZE_LIMIT, TERM_PAGINATION_MAX_SIZE_LIMIT, TRACKING_LINK_PAGINATION_DEFAULT_SIZE_LIMIT, TRACKING_LINK_PAGINATION_MAX_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_DEFAULT_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_MAX_SIZE_LIMIT, USER_LIMITATION_PAGINATION_DEFAULT_SIZE_LIMIT, USER_LIMITATION_PAGINATION_MAX_SIZE_LIMIT, USER_PAGINATION_DEFAULT_SIZE_LIMIT, USER_PAGINATION_MAX_SIZE_LIMIT, UrlProtocolOptions, WEBSITE_PAGINATION_DEFAULT_SIZE_LIMIT, WEBSITE_PAGINATION_MAX_SIZE_LIMIT, datePlusDays, dateToday, isStrapiAttributeError, isStrapiStandardError, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|
|
3384
|
+
export { CAMPAIGN_ID_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_ID_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_MAX_SIZE_LIMIT, CONTENT_PAGINATION_DEFAULT_SIZE_LIMIT, CONTENT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_MAX_SIZE_LIMIT, DEFAULT_CAMPAIGN_PHASES, DEFAULT_CONTENTS, DEFAULT_CREATIVE_FORMATS, DEFAULT_CREATIVE_FORMAT_VARIANTS, DEFAULT_MEDIUMS, DEFAULT_SOURCES, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_VALUE, GROUP_ENTITY_KEYS, GROUP_ENTITY_PERMISSIONS, GROUP_ENTITY_SCOPES, GROUP_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_PAGINATION_MAX_SIZE_LIMIT, GROUP_USER_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_USER_PAGINATION_MAX_SIZE_LIMIT, GroupApplyValueAsOptions, GroupApplyValueToOptions, IsValidApplyValueAs, IsValidApplyValueTo, IsValidBlocked, IsValidConfirmed, IsValidCost, IsValidCurrentPeriodEnd, IsValidCurrentPeriodStart, IsValidCustomerId, IsValidDescription, IsValidEmail, IsValidGroupUserScopes, IsValidIsActive, IsValidIsBoolean, IsValidIsSecure, IsValidLabel, IsValidMinPage, IsValidName, IsValidOrUndefinedApplyValueAs, IsValidOrUndefinedApplyValueTo, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedCurrentPeriodEnd, IsValidOrUndefinedCurrentPeriodStart, IsValidOrUndefinedCustomerId, IsValidOrUndefinedDescription, IsValidOrUndefinedEmail, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsBoolean, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPriceId, IsValidOrUndefinedProductId, IsValidOrUndefinedProvider, IsValidOrUndefinedSubscriptionId, IsValidOrUndefinedSubscriptionStatus, IsValidOrUndefinedTrialPeriodEnd, IsValidOrUndefinedUnitAmount, IsValidOrUndefinedUnitTermInMonths, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmPart, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserLimitationNumber, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPriceId, IsValidProductId, IsValidProvider, IsValidReferenceDocumentId, IsValidReferenceId, IsValidSubscriptionId, IsValidSubscriptionStatus, IsValidTrialPeriodEnd, IsValidUnitAmount, IsValidUnitTermInMonths, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmPart, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserLimitationNumber, IsValidUserLimitationNumberFallback, IsValidUsername, IsValidValue, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_LABEL, LIMIT_MAX_NAME, LIMIT_MAX_PASSWORD, LIMIT_MAX_PATH, LIMIT_MAX_PRICE_ID, LIMIT_MAX_PRODUCT_ID, LIMIT_MAX_PROVIDER, LIMIT_MAX_QUERY, LIMIT_MAX_STRIPE_ID, LIMIT_MAX_UNIT_TERM_IN_MONTHS, LIMIT_MAX_USERNAME, LIMIT_MAX_UTM_CAMPAIGN, LIMIT_MAX_UTM_CONTENT, LIMIT_MAX_UTM_CREATIVE_FORMAT, LIMIT_MAX_UTM_ID, LIMIT_MAX_UTM_MEDIUM, LIMIT_MAX_UTM_PART, LIMIT_MAX_UTM_SOURCE, LIMIT_MAX_UTM_TERM, LIMIT_MAX_VALUE, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, LIMIT_MIN_LABEL, LIMIT_MIN_NAME, LIMIT_MIN_PASSWORD, LIMIT_MIN_PATH, LIMIT_MIN_PRICE_ID, LIMIT_MIN_PRODUCT_ID, LIMIT_MIN_QUERY, LIMIT_MIN_UNIT_AMOUNT, LIMIT_MIN_UNIT_TERM_IN_MONTHS, LIMIT_MIN_USERNAME, LIMIT_MIN_UTM_CAMPAIGN, LIMIT_MIN_UTM_CONTENT, LIMIT_MIN_UTM_CREATIVE_FORMAT, LIMIT_MIN_UTM_ID, LIMIT_MIN_UTM_MEDIUM, LIMIT_MIN_UTM_PART, LIMIT_MIN_UTM_SOURCE, LIMIT_MIN_UTM_TERM, LIMIT_MIN_VALUE, MEDIUM_PAGINATION_DEFAULT_SIZE_LIMIT, MEDIUM_PAGINATION_MAX_SIZE_LIMIT, REGEX_DOMAIN, REGEX_VALUE, SBaseCampaignIdDocument, SBaseCampaignKeyDocument, SBaseCampaignPhaseDocument, SBaseCampaignProductDocument, SBaseCampaignTargetDocument, SBaseContentDocument, SBaseCreativeFormatDocument, SBaseCreativeFormatVariantDocument, SBaseDocument, SBaseDocumentCreatedBy, SBaseGroupDocument, SBaseGroupUserDocument, SBaseMediumDocument, SBaseRoleDocument, SBaseSourceDocument, SBaseTermDocument, SBaseTrackingLinkDocument, SBaseUserAccountDocument, SBaseUserDocument, SBaseUserLimitationsDocument, SBaseWebsiteDocument, SCampaignIdDocument, SCampaignIdDocumentWithRelations, SCampaignIdRelationsDocument, SCampaignKeyDocument, SCampaignKeyDocumentWithRelations, SCampaignKeyRelationsDocument, SCampaignPhaseDocument, SCampaignPhaseDocumentWithRelations, SCampaignPhaseRelationsDocument, SCampaignProductDocument, SCampaignProductDocumentWithRelations, SCampaignProductRelationsDocument, SCampaignTargetDocument, SCampaignTargetDocumentWithRelations, SCampaignTargetRelationsDocument, SChangePassword, SContentDocument, SContentDocumentWithRelations, SContentRelationsDocument, SCreateCampaignIdDocument, SCreateCampaignKeyDocument, SCreateCampaignPhaseDocument, SCreateCampaignProductDocument, SCreateCampaignTargetDocument, SCreateContentDocument, SCreateCreativeFormatDocument, SCreateCreativeFormatVariantDocument, SCreateGroupDocument, SCreateGroupUserAssignMultipleUsers, SCreateGroupUserDocument, SCreateMediumDocument, SCreateMultipleCampaignIdDocuments, SCreateMultipleCampaignKeyDocuments, SCreateMultipleCampaignPhaseDocuments, SCreateMultipleCampaignProductDocuments, SCreateMultipleCampaignTargetDocuments, SCreateMultipleContentDocuments, SCreateMultipleCreativeFormatDocuments, SCreateMultipleCreativeFormatVariantDocuments, SCreateMultipleMediumDocuments, SCreateMultipleSourceDocuments, SCreateMultipleTermDocuments, SCreateMultipleTrackingLinkDocuments, SCreateMultipleWebsiteDocuments, SCreatePreviewMultipleTrackingLinkDocuments, SCreatePreviewTrackingLinkDocument, SCreateSourceDocument, SCreateTermDocument, SCreateTrackingLinkDocument, SCreateUserAccountDocument, SCreateUserDocument, SCreateUserLimitationsDocument, SCreateWebsiteDocument, SCreativeFormatDocument, SCreativeFormatDocumentWithRelations, SCreativeFormatRelationsDocument, SCreativeFormatVariantDocument, SCreativeFormatVariantDocumentWithRelations, SCreativeFormatVariantRelationsDocument, SDeleteCampaignIdDocument, SDeleteCampaignKeyDocument, SDeleteCampaignPhaseDocument, SDeleteCampaignProductDocument, SDeleteCampaignTargetDocument, SDeleteContentDocument, SDeleteCreativeFormatDocument, SDeleteCreativeFormatVariantDocument, SDeleteGroupDocument, SDeleteGroupUserDocument, SDeleteMediumDocument, SDeleteSourceDocument, SDeleteTermDocument, SDeleteTrackingLinkDocument, SDeleteWebsiteDocument, SForgotPasswordUserDocument, SGroupDocument, SGroupDocumentWithRelations, SGroupRelationAuthorizedUsers, SGroupRelationCampaignIds, SGroupRelationCampaignKeys, SGroupRelationCampaignPhases, SGroupRelationCampaignProducts, SGroupRelationContents, SGroupRelationCreativeFormatVariants, SGroupRelationCreativeFormats, SGroupRelationMediums, SGroupRelationSources, SGroupRelationTerms, SGroupRelationTrackingLinks, SGroupRelationWebsites, SGroupRelationsDocument, SGroupUserDocument, SGroupUserDocumentReqRelations, SGroupUserDocumentStatus, SGroupUserDocumentWithRelations, SGroupUserRelationsDocument, SGroupUserRelationsReqDocument, SLoginUserDocument, SMediumDocument, SMediumDocumentWithRelations, SMediumRelationsDocument, SOURCE_PAGINATION_DEFAULT_SIZE_LIMIT, SOURCE_PAGINATION_MAX_SIZE_LIMIT, SQueryListCampaignIdDocuments, SQueryListCampaignKeyDocuments, SQueryListCampaignPhaseDocuments, SQueryListCampaignProductDocuments, SQueryListCampaignTargetDocuments, SQueryListContentDocuments, SQueryListCreativeFormatDocuments, SQueryListCreativeFormatVariantDocuments, SQueryListGroupDocuments, SQueryListGroupUserDocuments, SQueryListMediumDocuments, SQueryListSourceDocuments, SQueryListTermDocuments, SQueryListTrackingLinkDocuments, SQueryListUserAccountDocuments, SQueryListUserDocuments, SQueryListUserDocumentsByIdentifier, SQueryListUserLimitationDocuments, SQueryListWebsiteDocuments, SQuerySortCampaignIdDocuments, SQuerySortCampaignKeyDocuments, SQuerySortCampaignPhaseDocuments, SQuerySortCampaignProductDocuments, SQuerySortCampaignTargetDocuments, SQuerySortContentDocuments, SQuerySortCreativeFormatDocuments, SQuerySortCreativeFormatVariantDocuments, SQuerySortGroupDocuments, SQuerySortMediumDocuments, SQuerySortSourceDocuments, SQuerySortTermDocuments, SQuerySortTrackingLinkDocuments, SQuerySortUserDocuments, SQuerySortWebsiteDocuments, SReadCampaignIdDocumentByDocumentId, SReadCampaignIdDocumentById, SReadCampaignKeyDocumentByDocumentId, SReadCampaignKeyDocumentById, SReadCampaignPhaseDocumentByDocumentId, SReadCampaignPhaseDocumentById, SReadCampaignProductDocumentByDocumentId, SReadCampaignProductDocumentById, SReadCampaignTargetDocumentByDocumentId, SReadCampaignTargetDocumentById, SReadContentDocumentByDocumentId, SReadContentDocumentById, SReadCreativeFormatDocumentByDocumentId, SReadCreativeFormatDocumentById, SReadCreativeFormatVariantDocumentByDocumentId, SReadCreativeFormatVariantDocumentById, SReadGroupDocumentByDocumentId, SReadGroupDocumentById, SReadGroupUserDocumentByDocumentId, SReadGroupUserDocumentById, SReadMediumDocumentByDocumentId, SReadMediumDocumentById, SReadSourceDocumentByDocumentId, SReadSourceDocumentById, SReadTermDocumentByDocumentId, SReadTermDocumentById, SReadTrackingLinkDocumentByDocumentId, SReadTrackingLinkDocumentById, SReadUserAccountDocumentByDocumentId, SReadUserAccountDocumentById, SReadUserDocumentByDocumentId, SReadUserDocumentById, SReadUserDocumentToken, SReadUserLimitationsDocumentByDocumentId, SReadUserLimitationsDocumentById, SReadWebsiteDocumentByDocumentId, SReadWebsiteDocumentById, SRegisterUserDocument, SRequestConfirmEmail, SResetPasswordUserDocument, SRoleDocument, SRoleDocumentWithRelations, SRoleRelationsDocument, SSourceDocument, SSourceDocumentWithRelations, SSourceRelationsDocument, SStripeCheckoutCreateSession, SStripeCheckoutLineItem, STRAPI_PAGINATION_DEFAULT_SIZE_LIMIT, STRAPI_PAGINATION_MAX_SIZE_LIMIT, STRAPI_PAGINATION_MIN_SIZE_LIMIT, STermDocument, STermDocumentWithRelations, STermRelationsDocument, STrackingLinkDocument, STrackingLinkDocumentWithRelations, STrackingLinkRelationsDocument, SUpdateAsCreatorCampaignIdDocument, SUpdateAsCreatorCampaignIdDocumentRequest, SUpdateAsCreatorCampaignKeyDocument, SUpdateAsCreatorCampaignKeyDocumentRequest, SUpdateAsCreatorCampaignPhaseDocument, SUpdateAsCreatorCampaignPhaseDocumentRequest, SUpdateAsCreatorCampaignProductDocument, SUpdateAsCreatorCampaignProductDocumentRequest, SUpdateAsCreatorCampaignTargetDocument, SUpdateAsCreatorCampaignTargetDocumentRequest, SUpdateAsCreatorContentDocument, SUpdateAsCreatorContentDocumentRequest, SUpdateAsCreatorCreativeFormatDocument, SUpdateAsCreatorCreativeFormatDocumentRequest, SUpdateAsCreatorCreativeFormatVariantDocument, SUpdateAsCreatorCreativeFormatVariantDocumentRequest, SUpdateAsCreatorGroupDocument, SUpdateAsCreatorGroupDocumentRequest, SUpdateAsCreatorMediumDocument, SUpdateAsCreatorMediumDocumentRequest, SUpdateAsCreatorSourceDocument, SUpdateAsCreatorSourceDocumentRequest, SUpdateAsCreatorTermDocument, SUpdateAsCreatorTermDocumentRequest, SUpdateAsCreatorTrackingLinkDocument, SUpdateAsCreatorTrackingLinkDocumentRequest, SUpdateAsCreatorWebsiteDocument, SUpdateAsCreatorWebsiteDocumentRequest, SUpdateAsInvitedCampaignIdDocument, SUpdateAsInvitedCampaignIdDocumentRequest, SUpdateAsInvitedCampaignKeyDocument, SUpdateAsInvitedCampaignKeyDocumentRequest, SUpdateAsInvitedCampaignPhaseDocument, SUpdateAsInvitedCampaignPhaseDocumentRequest, SUpdateAsInvitedCampaignProductDocument, SUpdateAsInvitedCampaignProductDocumentRequest, SUpdateAsInvitedCampaignTargetDocument, SUpdateAsInvitedCampaignTargetDocumentRequest, SUpdateAsInvitedContentDocument, SUpdateAsInvitedContentDocumentRequest, SUpdateAsInvitedCreativeFormatDocument, SUpdateAsInvitedCreativeFormatDocumentRequest, SUpdateAsInvitedCreativeFormatVariantDocument, SUpdateAsInvitedCreativeFormatVariantDocumentRequest, SUpdateAsInvitedGroupDocument, SUpdateAsInvitedGroupDocumentRequest, SUpdateAsInvitedMediumDocument, SUpdateAsInvitedMediumDocumentRequest, SUpdateAsInvitedSourceDocument, SUpdateAsInvitedSourceDocumentRequest, SUpdateAsInvitedTermDocument, SUpdateAsInvitedTermDocumentRequest, SUpdateAsInvitedTrackingLinkDocument, SUpdateAsInvitedTrackingLinkDocumentRequest, SUpdateAsInvitedWebsiteDocument, SUpdateAsInvitedWebsiteDocumentRequest, SUpdateCampaignIdDocumentRequest, SUpdateCampaignKeyDocumentRequest, SUpdateCampaignPhaseDocumentRequest, SUpdateCampaignProductDocumentRequest, SUpdateCampaignTargetDocumentRequest, SUpdateContentDocumentRequest, SUpdateCreativeFormatDocumentRequest, SUpdateCreativeFormatVariantDocumentRequest, SUpdateGroupDocumentRequest, SUpdateGroupUserDocument, SUpdateGroupUserDocumentRequest, SUpdateMediumDocumentRequest, SUpdateSourceDocumentRequest, SUpdateTermDocumentRequest, SUpdateTrackingLinkDocumentRequest, SUpdateUserAccountDocument, SUpdateUserDocument, SUpdateUserLimitationsDocument, SUpdateWebsiteDocumentRequest, SUserAccountDocument, SUserAccountDocumentReqRelations, SUserAccountDocumentWithRelations, SUserAccountRelationsDocument, SUserAccountRelationsReqDocument, SUserAuthorizationSuccessResponse, SUserDocument, SUserDocumentWithAccountAndRoleRelations, SUserDocumentWithAccountRelations, SUserDocumentWithRelations, SUserLimitationsDocument, SUserLimitationsDocumentWithRelations, SUserLimitationsRelationsDocument, SUserRelationAccount, SUserRelationAuthorizedGroups, SUserRelationCampaignIds, SUserRelationCampaignKeys, SUserRelationCampaignPhases, SUserRelationCampaignProducts, SUserRelationContents, SUserRelationCreatedWebsites, SUserRelationCreativeFormatVariants, SUserRelationCreativeFormats, SUserRelationLimits, SUserRelationMediums, SUserRelationReqAccount, SUserRelationReqLimits, SUserRelationReqRole, SUserRelationRole, SUserRelationSources, SUserRelationTerms, SUserRelationTrackingLinks, SUserRelationsDocument, SUtmLinkBuilderPartCampaignDateFormat, SUtmLinkBuilderPartCampaignDateFormatOptions, SUtmLinkBuilderPartCampaignDateObject, SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderPartCampaignDateValueDay, SUtmLinkBuilderPartCampaignDateValueMonth, SUtmLinkBuilderPartCampaignDateValueQuarter, SUtmLinkBuilderPartCampaignDateValueYear, SUtmLinkBuilderPartCampaignId, SUtmLinkBuilderPartCampaignKey, SUtmLinkBuilderPartCampaignObject, SUtmLinkBuilderPartCampaignPhase, SUtmLinkBuilderPartCampaignProduct, SUtmLinkBuilderPartCampaignTargeting, SUtmLinkBuilderPartCampaigns, SUtmLinkBuilderPartContents, SUtmLinkBuilderPartCreativeFormatObject, SUtmLinkBuilderPartCreativeFormatValue, SUtmLinkBuilderPartCreativeFormatVariantValue, SUtmLinkBuilderPartCreativeFormats, SUtmLinkBuilderPartMediums, SUtmLinkBuilderPartSources, SUtmLinkBuilderPartTerms, SUtmLinkBuilderPartUrlDestinations, SUtmLinkBuilderPartUrlObject, SUtmLinkBuilderTableForm, SVerifyGroupUserDocument, SWebsiteDocument, SWebsiteDocumentWithRelations, SWebsiteRelationsDocument, SubscriptionStatusValues, TERM_PAGINATION_DEFAULT_SIZE_LIMIT, TERM_PAGINATION_MAX_SIZE_LIMIT, TRACKING_LINK_PAGINATION_DEFAULT_SIZE_LIMIT, TRACKING_LINK_PAGINATION_MAX_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_DEFAULT_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_MAX_SIZE_LIMIT, USER_LIMITATION_PAGINATION_DEFAULT_SIZE_LIMIT, USER_LIMITATION_PAGINATION_MAX_SIZE_LIMIT, USER_PAGINATION_DEFAULT_SIZE_LIMIT, USER_PAGINATION_MAX_SIZE_LIMIT, UrlProtocolOptions, WEBSITE_PAGINATION_DEFAULT_SIZE_LIMIT, WEBSITE_PAGINATION_MAX_SIZE_LIMIT, datePlusDays, dateToday, isStrapiAttributeError, isStrapiStandardError, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|
|
3369
3385
|
//# sourceMappingURL=index.js.map
|
|
3370
3386
|
//# sourceMappingURL=index.js.map
|