@getcommunity/gc-validators 0.0.126 → 0.0.127

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.js CHANGED
@@ -120,6 +120,13 @@ var ROLE_PERMISSIONS = {
120
120
  update: false,
121
121
  delete: false
122
122
  },
123
+ "client-media-platform-content-type": {
124
+ list: false,
125
+ create: false,
126
+ read: false,
127
+ update: false,
128
+ delete: false
129
+ },
123
130
  "client-project": {
124
131
  list: false,
125
132
  create: false,
@@ -212,6 +219,13 @@ var ROLE_PERMISSIONS = {
212
219
  update: false,
213
220
  delete: false
214
221
  },
222
+ "client-media-platform-content-type": {
223
+ list: false,
224
+ create: false,
225
+ read: false,
226
+ update: false,
227
+ delete: false
228
+ },
215
229
  "client-project": {
216
230
  list: false,
217
231
  create: false,
@@ -304,6 +318,13 @@ var ROLE_PERMISSIONS = {
304
318
  update: (u, p, d) => p.scopes.includes("client-media-platform:update"),
305
319
  delete: false
306
320
  },
321
+ "client-media-platform-content-type": {
322
+ list: (u, p, d) => p.scopes.includes("client-media-platform-content-type:list"),
323
+ create: (u, p) => p.scopes.includes("client-media-platform-content-type:create"),
324
+ read: (u, p, d) => p.scopes.includes("client-media-platform-content-type:read"),
325
+ update: (u, p, d) => p.scopes.includes("client-media-platform-content-type:update"),
326
+ delete: false
327
+ },
307
328
  "client-project": {
308
329
  list: (u, p, d) => p.scopes.includes("client-project:list"),
309
330
  create: (u, p) => p.scopes.includes("client-project:create"),
@@ -406,6 +427,13 @@ var ROLE_PERMISSIONS = {
406
427
  update: true,
407
428
  delete: true
408
429
  },
430
+ "client-media-platform-content-type": {
431
+ list: true,
432
+ create: true,
433
+ read: true,
434
+ update: true,
435
+ delete: true
436
+ },
409
437
  "client-project": {
410
438
  list: true,
411
439
  create: true,
@@ -499,6 +527,13 @@ var ROLE_PERMISSIONS = {
499
527
  update: (u, p, d) => p.scopes.includes("client-media-platform:update"),
500
528
  delete: false
501
529
  },
530
+ "client-media-platform-content-type": {
531
+ list: (u, p, d) => p.scopes.includes("client-media-platform-content-type:list"),
532
+ create: (u, p) => p.scopes.includes("client-media-platform-content-type:create"),
533
+ read: (u, p, d) => p.scopes.includes("client-media-platform-content-type:read"),
534
+ update: (u, p, d) => p.scopes.includes("client-media-platform-content-type:update"),
535
+ delete: false
536
+ },
502
537
  "client-project": {
503
538
  list: (u, p, d) => p.scopes.includes("client-project:list"),
504
539
  create: (u, p) => p.scopes.includes("client-project:create"),
@@ -581,6 +616,7 @@ var CLIENT_ENTITY_PERMISSIONS = {
581
616
  client: ["admin", "owner", "manager", "billing", "access"],
582
617
  "client-project": ["list", "create", "read", "update", "delete", "assign"],
583
618
  "client-media-platform": ["list", "create", "read", "update", "delete"],
619
+ "client-media-platform-content-type": ["list", "create", "read", "update", "delete"],
584
620
  "client-content-pillar": ["list", "create", "read", "update", "delete"],
585
621
  "client-report": ["list", "create", "read", "update", "delete"],
586
622
  "client-styleguide": ["list", "create", "read", "update", "delete"],
@@ -724,6 +760,13 @@ var IsValidReferenceDocumentId = v6.pipe(
724
760
  var IsValidOrUndefinedReferenceDocumentId = v6.optional(
725
761
  IsValidReferenceDocumentId
726
762
  );
763
+ var IsValidReferenceDocumentIdList = v6.pipe(
764
+ v6.array(IsValidReferenceDocumentId),
765
+ v6.minLength(1, "please provide at least one document id")
766
+ );
767
+ var IsValidOrUndefinedReferenceDocumentIdList = v6.optional(
768
+ IsValidReferenceDocumentIdList
769
+ );
727
770
  var IsValidDateToday = v6.pipe(
728
771
  v6.date(),
729
772
  v6.minValue(/* @__PURE__ */ new Date()),
@@ -1470,8 +1513,12 @@ var QuerySortClientMediaPlatforms = v6.optional(
1470
1513
  key: v6.picklist([
1471
1514
  "id",
1472
1515
  "is_active",
1516
+ "is_organic_social",
1517
+ "is_paid_media",
1473
1518
  "media_platform.title",
1474
1519
  "media_platform.slug",
1520
+ "media_content_types.title",
1521
+ "media_content_types.slug",
1475
1522
  "createdAt",
1476
1523
  "updatedAt"
1477
1524
  ]),
@@ -1490,12 +1537,14 @@ var QueryStrapiSearchClientMediaPlatforms = v6.object({
1490
1537
  is_active: IsValidOrUndefinedIsBoolean,
1491
1538
  client_id: IsValidOrUndefinedReferenceDocumentId,
1492
1539
  media_platform_id: IsValidOrUndefinedReferenceDocumentId,
1540
+ media_content_types: IsValidOrUndefinedReferenceDocumentIdList,
1493
1541
  sort: QuerySortClientMediaPlatforms
1494
1542
  });
1495
1543
  var SCreateClientMediaPlatformDocument = v6.object({
1496
1544
  client: IsValidReferenceDocumentId,
1497
1545
  media_platform: IsValidReferenceDocumentId,
1498
- is_active: IsValidOrUndefinedIsBoolean
1546
+ media_content_types: IsValidReferenceDocumentIdList,
1547
+ is_active: IsValidIsBoolean
1499
1548
  });
1500
1549
  var SUpdateClientMediaPlatformDocument = v6.object({
1501
1550
  is_active: IsValidOrUndefinedIsBoolean
@@ -1504,6 +1553,10 @@ var SUpdateClientMediaPlatformDocumentRequest = v6.object({
1504
1553
  documentId: IsValidReferenceDocumentId,
1505
1554
  data: SUpdateClientMediaPlatformDocument
1506
1555
  });
1556
+ var SAssociateMediaContentTypesToClientMediaPlatform = v6.object({
1557
+ client_media_platform: IsValidReferenceDocumentId,
1558
+ media_content_types: IsValidReferenceDocumentIdList
1559
+ });
1507
1560
  var QuerySortClientProjects = v6.optional(
1508
1561
  v6.object({
1509
1562
  key: v6.picklist(["id", "title", "slug", "project_phase", "createdAt", "updatedAt"]),
@@ -1527,14 +1580,14 @@ var QueryStrapiSearchClientProjects = v6.object({
1527
1580
  sort: QuerySortClientProjects
1528
1581
  });
1529
1582
  var SCreateClientProjectDocument = v6.object({
1530
- clients: v6.array(IsValidReferenceDocumentId),
1583
+ clients: IsValidReferenceDocumentIdList,
1531
1584
  title: IsValidShortString,
1532
1585
  slug: IsValidSlug,
1533
1586
  project_status: IsValidClientProjectStatus,
1534
1587
  project_phase: IsValidClientProjectPhase
1535
1588
  });
1536
1589
  var SUpdateClientProjectDocument = v6.object({
1537
- clients: v6.optional(v6.array(IsValidReferenceDocumentId)),
1590
+ clients: IsValidOrUndefinedReferenceDocumentIdList,
1538
1591
  title: IsValidOrUndefinedShortString,
1539
1592
  slug: IsValidOrUndefinedSlug,
1540
1593
  project_status: IsValidOrUndefinedClientProjectStatus,
@@ -1546,7 +1599,7 @@ var SUpdateClientProjectDocumentRequest = v6.object({
1546
1599
  });
1547
1600
  var SAssociateClientToClientProjectDocument = v6.object({
1548
1601
  client: IsValidReferenceDocumentId,
1549
- clientProject: IsValidReferenceDocumentId
1602
+ client_project: IsValidReferenceDocumentId
1550
1603
  });
1551
1604
  var QuerySortClientReports = v6.optional(
1552
1605
  v6.object({
@@ -1570,13 +1623,13 @@ var QueryStrapiSearchClientReports = v6.object({
1570
1623
  sort: QuerySortClientReports
1571
1624
  });
1572
1625
  var SCreateClientReportDocument = v6.object({
1573
- clients: v6.array(IsValidReferenceDocumentId),
1626
+ clients: IsValidReferenceDocumentIdList,
1574
1627
  title: IsValidShortString,
1575
1628
  report_id: IsValidSlug,
1576
1629
  is_active: v6.optional(IsValidIsActive, true)
1577
1630
  });
1578
1631
  var SUpdateClientReportDocument = v6.object({
1579
- clients: v6.optional(v6.array(IsValidReferenceDocumentId)),
1632
+ clients: IsValidOrUndefinedReferenceDocumentIdList,
1580
1633
  title: IsValidOrUndefinedShortString,
1581
1634
  report_id: IsValidOrUndefinedSlug,
1582
1635
  is_active: IsValidOrUndefinedIsActive
@@ -1819,7 +1872,17 @@ var SUpdateLeadRequest = v6.object({
1819
1872
  });
1820
1873
  var QuerySortMediaContentType = v6.optional(
1821
1874
  v6.object({
1822
- key: v6.picklist(["id", "title", "slug", "utm_key", "createdAt", "updatedAt"]),
1875
+ key: v6.picklist([
1876
+ "id",
1877
+ "title",
1878
+ "slug",
1879
+ "utm_key",
1880
+ "is_active",
1881
+ "is_organic_social",
1882
+ "is_paid_media",
1883
+ "createdAt",
1884
+ "updatedAt"
1885
+ ]),
1823
1886
  order: v6.picklist(["ASC", "DESC"])
1824
1887
  })
1825
1888
  );
@@ -1831,19 +1894,28 @@ var QueryStrapiSearchMediaContentTypes = v6.object({
1831
1894
  title: IsValidOrUndefinedShortString,
1832
1895
  slug: IsValidOrUndefinedShortString,
1833
1896
  utm_key: IsValidOrUndefinedUrlUtmKey,
1834
- platforms: v6.optional(v6.pipe(v6.array(IsValidReferenceDocumentId), v6.minLength(1))),
1897
+ is_active: IsValidOrUndefinedIsBoolean,
1898
+ is_organic_social: IsValidOrUndefinedIsBoolean,
1899
+ is_paid_media: IsValidOrUndefinedIsBoolean,
1900
+ media_platforms: IsValidOrUndefinedReferenceDocumentIdList,
1835
1901
  sort: QuerySortMediaContentType
1836
1902
  });
1837
1903
  var SCreateMediaContentTypeDocument = v6.object({
1838
1904
  title: IsValidShortString,
1839
1905
  slug: IsValidSlug,
1840
1906
  utm_key: IsValidOrUndefinedUrlUtmKey,
1907
+ is_active: IsValidIsBoolean,
1908
+ is_organic_social: IsValidIsBoolean,
1909
+ is_paid_media: IsValidIsBoolean,
1841
1910
  description: IsValidOrUndefinedLongString
1842
1911
  });
1843
1912
  var SUpdateMediaContentTypeDocument = v6.object({
1844
1913
  title: IsValidOrUndefinedShortString,
1845
1914
  slug: IsValidOrUndefinedSlug,
1846
1915
  utm_key: IsValidOrUndefinedUrlUtmKey,
1916
+ is_active: IsValidOrUndefinedIsBoolean,
1917
+ is_organic_social: IsValidOrUndefinedIsBoolean,
1918
+ is_paid_media: IsValidOrUndefinedIsBoolean,
1847
1919
  description: IsValidOrUndefinedLongString
1848
1920
  });
1849
1921
  var SUpdateMediaContentTypeDocumentRequest = v6.object({
@@ -1851,12 +1923,26 @@ var SUpdateMediaContentTypeDocumentRequest = v6.object({
1851
1923
  data: SUpdateMediaContentTypeDocument
1852
1924
  });
1853
1925
  var SAssociateMediaPlatformsToMediaContentType = v6.object({
1854
- content_type: IsValidReferenceDocumentId,
1855
- platforms: v6.pipe(v6.array(IsValidReferenceDocumentId), v6.minLength(1))
1926
+ media_content_type: IsValidReferenceDocumentId,
1927
+ media_platforms: IsValidReferenceDocumentIdList
1928
+ });
1929
+ var SAssociateClientMediaPlatformContentTypesToMediaContentType = v6.object({
1930
+ media_content_type: IsValidReferenceDocumentId,
1931
+ client_media_platform_content_types: IsValidReferenceDocumentIdList
1856
1932
  });
1857
1933
  var QuerySortMediaPlatforms = v6.optional(
1858
1934
  v6.object({
1859
- key: v6.picklist(["id", "title", "slug", "utm_key", "createdAt", "updatedAt"]),
1935
+ key: v6.picklist([
1936
+ "id",
1937
+ "title",
1938
+ "slug",
1939
+ "utm_key",
1940
+ "is_active",
1941
+ "is_organic_social",
1942
+ "is_paid_media",
1943
+ "createdAt",
1944
+ "updatedAt"
1945
+ ]),
1860
1946
  order: v6.picklist(["ASC", "DESC"])
1861
1947
  })
1862
1948
  );
@@ -1868,21 +1954,28 @@ var QueryStrapiSearchMediaPlatforms = v6.object({
1868
1954
  title: IsValidOrUndefinedShortString,
1869
1955
  slug: IsValidOrUndefinedShortString,
1870
1956
  utm_key: IsValidOrUndefinedUrlUtmKey,
1871
- content_types: v6.optional(
1872
- v6.pipe(v6.array(IsValidReferenceDocumentId), v6.minLength(1))
1873
- ),
1957
+ is_active: IsValidOrUndefinedIsBoolean,
1958
+ is_organic_social: IsValidOrUndefinedIsBoolean,
1959
+ is_paid_media: IsValidOrUndefinedIsBoolean,
1960
+ media_content_types: IsValidOrUndefinedReferenceDocumentIdList,
1874
1961
  sort: QuerySortMediaPlatforms
1875
1962
  });
1876
1963
  var SCreateMediaPlatformDocument = v6.object({
1877
1964
  title: IsValidShortString,
1878
1965
  slug: IsValidSlug,
1879
1966
  utm_key: IsValidOrUndefinedUrlUtmKey,
1967
+ is_active: IsValidIsBoolean,
1968
+ is_organic_social: IsValidIsBoolean,
1969
+ is_paid_media: IsValidIsBoolean,
1880
1970
  description: IsValidOrUndefinedLongString
1881
1971
  });
1882
1972
  var SUpdateMediaPlatformDocument = v6.object({
1883
1973
  title: IsValidOrUndefinedShortString,
1884
1974
  slug: IsValidOrUndefinedSlug,
1885
1975
  utm_key: IsValidOrUndefinedUrlUtmKey,
1976
+ is_active: IsValidOrUndefinedIsBoolean,
1977
+ is_organic_social: IsValidOrUndefinedIsBoolean,
1978
+ is_paid_media: IsValidOrUndefinedIsBoolean,
1886
1979
  description: IsValidOrUndefinedLongString
1887
1980
  });
1888
1981
  var SUpdateMediaPlatformDocumentRequest = v6.object({
@@ -1890,8 +1983,8 @@ var SUpdateMediaPlatformDocumentRequest = v6.object({
1890
1983
  data: SUpdateMediaPlatformDocument
1891
1984
  });
1892
1985
  var SAssociateMediaContentTypesToMediaPlatform = v6.object({
1893
- platform: IsValidReferenceDocumentId,
1894
- content_types: v6.pipe(v6.array(IsValidReferenceDocumentId), v6.minLength(1))
1986
+ media_platform: IsValidReferenceDocumentId,
1987
+ media_content_types: IsValidReferenceDocumentIdList
1895
1988
  });
1896
1989
  var SCreateNewsletterSignup = v6.object({
1897
1990
  first_name: IsValidFirstName,
@@ -2680,6 +2773,6 @@ function omitUndefined(obj) {
2680
2773
  return result;
2681
2774
  }
2682
2775
 
2683
- export { CLIENT_ENTITY_KEYS, CLIENT_ENTITY_PERMISSIONS, CLIENT_ENTITY_SCOPES, ClientProjectPhaseOptions, ClientProjectPhaseSelectOptions, ClientProjectStatusOptions, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_PHONE, ERROR_MESSAGE_REGEX_URL_SLUG, ERROR_MESSAGE_REGEX_UTM_VALUE, InvalidClientTermMin, InvalidClientTermNumber, InvalidCompanyName, InvalidCompanyNameMaxLength, InvalidCsvFileType, InvalidDestinationUrl, InvalidFirstName, InvalidFirstNameMaxLength, InvalidFullName, InvalidFullNameMaxLength, InvalidInputRobot, InvalidInstrustryName, InvalidInstrustryNameMaxLength, InvalidLastName, InvalidLastNameMaxLength, InvalidListOfUrls, InvalidLongStringMax, InvalidPreferredName, InvalidPreferredNameMaxLength, InvalidProductInterestMaxLength, InvalidRangeValueOneToFive, InvalidRefPageMaxLength, InvalidResumeFileType, InvalidShortStringMax, InvalidUserMessage, InvalidUserMessageMaxLength, InvalidUserPhone, InvalidUserPhoneType, InvalidUserTitle, InvalidUserTitleMaxLength, InvalidUtmLink, IsValidBlocked, IsValidBlogPostStatus, IsValidCaptchaToken, IsValidClientClassification, IsValidClientClassificationOption, IsValidClientClassificationSelectOptions, IsValidClientProjectPhase, IsValidClientProjectStatus, IsValidClientTerm, IsValidClientUserScope, IsValidClientUserScopes, IsValidCompanyName, IsValidCompanyNameRequired, IsValidConfirmed, IsValidCost, IsValidCsvFile, IsValidDateToday, IsValidDescription, IsValidDestinationUrl, IsValidFileReferenceId, IsValidFirstName, IsValidFullName, IsValidIndustryName, IsValidIsActive, IsValidIsBoolean, IsValidIsSecure, IsValidLabel, IsValidLastName, IsValidLongString, IsValidMediaFile, IsValidMediaFileList, IsValidName, IsValidNumberOfEmployees, IsValidOrUndefinedBlocked, IsValidOrUndefinedBlogPostStatus, IsValidOrUndefinedBlogPostStatusFallback, IsValidOrUndefinedClientClassification, IsValidOrUndefinedClientProjectPhase, IsValidOrUndefinedClientProjectStatus, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedDescription, IsValidOrUndefinedDestinationUrl, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsBoolean, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedLongString, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedProvider, IsValidOrUndefinedReferenceDocumentId, IsValidOrUndefinedShortString, IsValidOrUndefinedSlug, IsValidOrUndefinedStringList, IsValidOrUndefinedStringListTransformed, IsValidOrUndefinedStringSepListOfUrls, IsValidOrUndefinedUrl, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmKey, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserEmail, IsValidOrUndefinedUsername, IsValidOrUndefinedUtmCampaignKeyName, IsValidOrUndefinedUtmLink, IsValidOrUndefinedValue, IsValidPassword, IsValidPositiveInteger, IsValidPreferredName, IsValidProductInterest, IsValidProvider, IsValidRangeValueOneToFive, IsValidRefPage, IsValidReferenceDocumentId, IsValidReferenceId, IsValidResumeFile, IsValidShortString, IsValidSlug, IsValidStringList, IsValidStringListTransformed, IsValidStringSepListOfUrls, IsValidUrl, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlList, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmKey, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserConsent, IsValidUserEmail, IsValidUserMessage, IsValidUserMessageRequired, IsValidUserPhone, IsValidUserPhoneRequired, IsValidUserRole, IsValidUserTitle, IsValidUserTitleRequired, IsValidUsername, IsValidUtmCampaignKeyName, IsValidUtmLink, IsValidValue, LIMIT_BLOG_POST_PAGINATION_DEFAULT_SIZE, LIMIT_BLOG_POST_PAGINATION_MAX_SIZE, LIMIT_CATEGORIES_DEFAULT_SIZE, LIMIT_CATEGORIES_MAX_SIZE, LIMIT_CLIENT_CONTENT_PILLAR_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_CONTENT_PILLAR_PAGINATION_MAX_SIZE, LIMIT_CLIENT_MEDIA_PLATFORM_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_MEDIA_PLATFORM_PAGINATION_MAX_SIZE, LIMIT_CLIENT_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_PAGINATION_MAX_SIZE, LIMIT_CLIENT_PROJECT_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_PROJECT_PAGINATION_MAX_SIZE, LIMIT_CLIENT_REPORT_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_REPORT_PAGINATION_MAX_SIZE, LIMIT_CLIENT_STYLEGUIDE_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_STYLEGUIDE_PAGINATION_MAX_SIZE, LIMIT_CLIENT_USER_PAGINATION_DEFAULT_SIZE_LIMIT, LIMIT_CLIENT_USER_PAGINATION_MAX_SIZE_LIMIT, LIMIT_LONG_STRING_MAX_LENGTH, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_PASSWORD, LIMIT_MAX_PATH, LIMIT_MAX_PROVIDER, LIMIT_MAX_QUERY, LIMIT_MAX_USERNAME, LIMIT_MAX_UTM_CAMPAIGN, LIMIT_MAX_UTM_CONTENT, LIMIT_MAX_UTM_CREATIVE_FORMAT, LIMIT_MAX_UTM_ID, LIMIT_MAX_UTM_KEY, LIMIT_MAX_UTM_MEDIUM, LIMIT_MAX_UTM_SOURCE, LIMIT_MAX_UTM_TERM, LIMIT_MEDIUM_STRING_MAX_LENGTH, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, LIMIT_MIN_NAME, LIMIT_MIN_PASSWORD, LIMIT_MIN_PATH, LIMIT_MIN_QUERY, LIMIT_MIN_USERNAME, LIMIT_MIN_UTM_CAMPAIGN, LIMIT_MIN_UTM_CONTENT, LIMIT_MIN_UTM_CREATIVE_FORMAT, LIMIT_MIN_UTM_ID, LIMIT_MIN_UTM_KEY, LIMIT_MIN_UTM_MEDIUM, LIMIT_MIN_UTM_SOURCE, LIMIT_MIN_UTM_TERM, LIMIT_MIN_VALUE, LIMIT_PAGINATION_DEFAULT_SIZE, LIMIT_PAGINATION_MAX_SIZE, LIMIT_PRODUCT_HIGHLIGHT_PAGINATION_DEFAULT_SIZE, LIMIT_PRODUCT_HIGHLIGHT_PAGINATION_MAX_SIZE, LIMIT_PRODUCT_PAGINATION_DEFAULT_SIZE, LIMIT_PRODUCT_PAGINATION_MAX_SIZE, LIMIT_REDIRECT_PAGINATION_DEFAULT_SIZE, LIMIT_REDIRECT_PAGINATION_MAX_SIZE, LIMIT_SHORT_STRING_MAX_LENGTH, LIMIT_TABLE_PAGINATION_DEFAULT_SIZE, LIMIT_TAGS_DEFAULT_SIZE, LIMIT_TAGS_MAX_SIZE, LIMIT_TEAM_MEMBER_PAGINATION_DEFAULT_SIZE, LIMIT_TEAM_MEMBER_PAGINATION_MAX_SIZE, LIMIT_TREND_PAGINATION_DEFAULT_SIZE, LIMIT_TREND_PAGINATION_MAX_SIZE, LIMIT_USER_PAGINATION_DEFAULT_SIZE, LIMIT_USER_PAGINATION_MAX_SIZE, LIMIT_UTM_TRACKING_LINK_PAGINATION_DEFAULT_SIZE, LIMIT_UTM_TRACKING_LINK_PAGINATION_MAX_SIZE, MAX_FILE_SIZE, MAX_FILE_SIZE_LABEL, QuerySortBlogPosts, QuerySortCategories, QuerySortClientContentPillars, QuerySortClientMediaPlatforms, QuerySortClientProjects, QuerySortClientReports, QuerySortClientStyleguides, QuerySortClientUsers, QuerySortClients, QuerySortContentPillars, QuerySortEntities, QuerySortMediaContentType, QuerySortMediaPlatforms, QuerySortTeamMembers, QuerySortUrlRedirects, QuerySortUsers, QuerySortUtmTrackingLinks, QueryStrapiByDocumentId, QueryStrapiByEmail, QueryStrapiById, QueryStrapiByName, QueryStrapiByPhone, QueryStrapiBySlug, QueryStrapiPaginated, QueryStrapiPaginatedUrlRedirects, QueryStrapiSearchBlogPosts, QueryStrapiSearchBlogPostsBySlug, QueryStrapiSearchCategories, QueryStrapiSearchClientContentPillars, QueryStrapiSearchClientMediaPlatforms, QueryStrapiSearchClientProjects, QueryStrapiSearchClientReports, QueryStrapiSearchClientStyleguide, QueryStrapiSearchClients, QueryStrapiSearchContentPillars, QueryStrapiSearchMediaContentTypes, QueryStrapiSearchMediaPlatforms, QueryStrapiSearchTeamMembers, QueryStrapiSearchUtmTrackingLinks, QueryStrapiUrlRedirectsByFrom, QueryStrapiUsers, QueryStrapiUsersByIdentifier, REGEX_BRAND_COLOR_SLUG, REGEX_DOMAIN, REGEX_NANP_PHONE, REGEX_URL_SLUG, REGEX_UTM_VALUE, ROLE_PERMISSIONS, SAssociateClientToClientProjectDocument, SAssociateMediaContentTypesToMediaPlatform, SAssociateMediaPlatformsToMediaContentType, SAuthConnectProviderConfirmation, SAuthConnectProviderRedirectSearch, SAuthRawAccessToken, SChangePassword, SConnectManyEntityRelation, SConnectOneEntityRelation, SCreateCategoryDocument, SCreateClientContentPillarDocument, SCreateClientDocument, SCreateClientMediaPlatformDocument, SCreateClientProjectDocument, SCreateClientReportDocument, SCreateClientStyleguideDocument, SCreateClientUserDocument, SCreateContentPillarDocument, SCreateLeadDocument, SCreateMediaContentTypeDocument, SCreateMediaPlatformDocument, SCreateMultipleStrapiMediaUploadDocument, SCreateNewsletterSignup, SCreateNewsletterSignupDocument, SCreateResume, SCreateResumeInfo, SCreateResumeInfoDocument, SCreateStrapiMediaUploadDocument, SCreateUserDocument, SCreateUtmTrackingLinkDocument, SCreateUtmTrackingLinkDocumentRequest, SCreateUtmTrackingLinkParts, SDisconnectManyEntityRelation, SDisconnectOneEntityRelation, SEntityRelation, SEntityRelationPosition, SEntityRelationPositionAfter, SEntityRelationPositionBefore, SEntityRelationPositionEnd, SEntityRelationPositionStart, SForgotUserPassword, SFormCreateMultipleUtmTrackingLinkDocuments, SLoginUser, SQueryListClientUserDocuments, SReadUserAccountByDocumentId, SReadUserAccountById, SReadUtmTrackingLinkDocumentByUrl, SRegisterUser, SRequestConfirmEmail, SResetUserPassword, SSetManyEntityRelation, SSetOneEntityRelation, SUpdateCategoryDocument, SUpdateCategoryDocumentRequest, SUpdateClientContentPillarDocument, SUpdateClientContentPillarDocumentRequest, SUpdateClientDocument, SUpdateClientDocumentRequest, SUpdateClientMediaPlatformDocument, SUpdateClientMediaPlatformDocumentRequest, SUpdateClientProjectDocument, SUpdateClientProjectDocumentRequest, SUpdateClientReportDocument, SUpdateClientReportDocumentRequest, SUpdateClientStyleguideDocument, SUpdateClientStyleguideDocumentRequest, SUpdateClientUserDocument, SUpdateClientUserDocumentRequest, SUpdateContentPillarDocument, SUpdateContentPillarDocumentRequest, SUpdateLeadDocument, SUpdateLeadRequest, SUpdateMediaContentTypeDocument, SUpdateMediaContentTypeDocumentRequest, SUpdateMediaPlatformDocument, SUpdateMediaPlatformDocumentRequest, SUpdateNewsletterSignupDocument, SUpdateNewsletterSignupRequest, SUpdateResumeInfo, SUpdateResumeInfoDocument, SUpdateResumeInfoRequest, SUpdateStrapiMediaFileInfo, SUpdateTrendsLikes, SUpdateUserAccount, SUpdateUserAccountFirstName, SUpdateUserAccountLastName, SUpdateUserAccountPreferredName, SUpdateUtmTrackingLinkDocument, SUpdateUtmTrackingLinkDocumentRequest, SUserToken, SUtmLinkBuilderPartCampaignDateOptions, SUtmLinkBuilderTableForm, SVerifyClientUserDocument, SharpSpringSignUpToDownload, ValidGcDesiredContentOptions, ValidGcServiceOptions, ValidGcVideoServiceOptions, ValidJobRoleGroup, ValidNumberOfEmployeeOptions, ValidRatingRange5, datePlusDays, dateToday, hasPermission, isStrapiAttributeError, isStrapiStandardError, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
2776
+ export { CLIENT_ENTITY_KEYS, CLIENT_ENTITY_PERMISSIONS, CLIENT_ENTITY_SCOPES, ClientProjectPhaseOptions, ClientProjectPhaseSelectOptions, ClientProjectStatusOptions, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_PHONE, ERROR_MESSAGE_REGEX_URL_SLUG, ERROR_MESSAGE_REGEX_UTM_VALUE, InvalidClientTermMin, InvalidClientTermNumber, InvalidCompanyName, InvalidCompanyNameMaxLength, InvalidCsvFileType, InvalidDestinationUrl, InvalidFirstName, InvalidFirstNameMaxLength, InvalidFullName, InvalidFullNameMaxLength, InvalidInputRobot, InvalidInstrustryName, InvalidInstrustryNameMaxLength, InvalidLastName, InvalidLastNameMaxLength, InvalidListOfUrls, InvalidLongStringMax, InvalidPreferredName, InvalidPreferredNameMaxLength, InvalidProductInterestMaxLength, InvalidRangeValueOneToFive, InvalidRefPageMaxLength, InvalidResumeFileType, InvalidShortStringMax, InvalidUserMessage, InvalidUserMessageMaxLength, InvalidUserPhone, InvalidUserPhoneType, InvalidUserTitle, InvalidUserTitleMaxLength, InvalidUtmLink, IsValidBlocked, IsValidBlogPostStatus, IsValidCaptchaToken, IsValidClientClassification, IsValidClientClassificationOption, IsValidClientClassificationSelectOptions, IsValidClientProjectPhase, IsValidClientProjectStatus, IsValidClientTerm, IsValidClientUserScope, IsValidClientUserScopes, IsValidCompanyName, IsValidCompanyNameRequired, IsValidConfirmed, IsValidCost, IsValidCsvFile, IsValidDateToday, IsValidDescription, IsValidDestinationUrl, IsValidFileReferenceId, IsValidFirstName, IsValidFullName, IsValidIndustryName, IsValidIsActive, IsValidIsBoolean, IsValidIsSecure, IsValidLabel, IsValidLastName, IsValidLongString, IsValidMediaFile, IsValidMediaFileList, IsValidName, IsValidNumberOfEmployees, IsValidOrUndefinedBlocked, IsValidOrUndefinedBlogPostStatus, IsValidOrUndefinedBlogPostStatusFallback, IsValidOrUndefinedClientClassification, IsValidOrUndefinedClientProjectPhase, IsValidOrUndefinedClientProjectStatus, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedDescription, IsValidOrUndefinedDestinationUrl, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsBoolean, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedLongString, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedProvider, IsValidOrUndefinedReferenceDocumentId, IsValidOrUndefinedReferenceDocumentIdList, IsValidOrUndefinedShortString, IsValidOrUndefinedSlug, IsValidOrUndefinedStringList, IsValidOrUndefinedStringListTransformed, IsValidOrUndefinedStringSepListOfUrls, IsValidOrUndefinedUrl, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmKey, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserEmail, IsValidOrUndefinedUsername, IsValidOrUndefinedUtmCampaignKeyName, IsValidOrUndefinedUtmLink, IsValidOrUndefinedValue, IsValidPassword, IsValidPositiveInteger, IsValidPreferredName, IsValidProductInterest, IsValidProvider, IsValidRangeValueOneToFive, IsValidRefPage, IsValidReferenceDocumentId, IsValidReferenceDocumentIdList, IsValidReferenceId, IsValidResumeFile, IsValidShortString, IsValidSlug, IsValidStringList, IsValidStringListTransformed, IsValidStringSepListOfUrls, IsValidUrl, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlList, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmKey, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserConsent, IsValidUserEmail, IsValidUserMessage, IsValidUserMessageRequired, IsValidUserPhone, IsValidUserPhoneRequired, IsValidUserRole, IsValidUserTitle, IsValidUserTitleRequired, IsValidUsername, IsValidUtmCampaignKeyName, IsValidUtmLink, IsValidValue, LIMIT_BLOG_POST_PAGINATION_DEFAULT_SIZE, LIMIT_BLOG_POST_PAGINATION_MAX_SIZE, LIMIT_CATEGORIES_DEFAULT_SIZE, LIMIT_CATEGORIES_MAX_SIZE, LIMIT_CLIENT_CONTENT_PILLAR_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_CONTENT_PILLAR_PAGINATION_MAX_SIZE, LIMIT_CLIENT_MEDIA_PLATFORM_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_MEDIA_PLATFORM_PAGINATION_MAX_SIZE, LIMIT_CLIENT_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_PAGINATION_MAX_SIZE, LIMIT_CLIENT_PROJECT_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_PROJECT_PAGINATION_MAX_SIZE, LIMIT_CLIENT_REPORT_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_REPORT_PAGINATION_MAX_SIZE, LIMIT_CLIENT_STYLEGUIDE_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_STYLEGUIDE_PAGINATION_MAX_SIZE, LIMIT_CLIENT_USER_PAGINATION_DEFAULT_SIZE_LIMIT, LIMIT_CLIENT_USER_PAGINATION_MAX_SIZE_LIMIT, LIMIT_LONG_STRING_MAX_LENGTH, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_PASSWORD, LIMIT_MAX_PATH, LIMIT_MAX_PROVIDER, LIMIT_MAX_QUERY, LIMIT_MAX_USERNAME, LIMIT_MAX_UTM_CAMPAIGN, LIMIT_MAX_UTM_CONTENT, LIMIT_MAX_UTM_CREATIVE_FORMAT, LIMIT_MAX_UTM_ID, LIMIT_MAX_UTM_KEY, LIMIT_MAX_UTM_MEDIUM, LIMIT_MAX_UTM_SOURCE, LIMIT_MAX_UTM_TERM, LIMIT_MEDIUM_STRING_MAX_LENGTH, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, LIMIT_MIN_NAME, LIMIT_MIN_PASSWORD, LIMIT_MIN_PATH, LIMIT_MIN_QUERY, LIMIT_MIN_USERNAME, LIMIT_MIN_UTM_CAMPAIGN, LIMIT_MIN_UTM_CONTENT, LIMIT_MIN_UTM_CREATIVE_FORMAT, LIMIT_MIN_UTM_ID, LIMIT_MIN_UTM_KEY, LIMIT_MIN_UTM_MEDIUM, LIMIT_MIN_UTM_SOURCE, LIMIT_MIN_UTM_TERM, LIMIT_MIN_VALUE, LIMIT_PAGINATION_DEFAULT_SIZE, LIMIT_PAGINATION_MAX_SIZE, LIMIT_PRODUCT_HIGHLIGHT_PAGINATION_DEFAULT_SIZE, LIMIT_PRODUCT_HIGHLIGHT_PAGINATION_MAX_SIZE, LIMIT_PRODUCT_PAGINATION_DEFAULT_SIZE, LIMIT_PRODUCT_PAGINATION_MAX_SIZE, LIMIT_REDIRECT_PAGINATION_DEFAULT_SIZE, LIMIT_REDIRECT_PAGINATION_MAX_SIZE, LIMIT_SHORT_STRING_MAX_LENGTH, LIMIT_TABLE_PAGINATION_DEFAULT_SIZE, LIMIT_TAGS_DEFAULT_SIZE, LIMIT_TAGS_MAX_SIZE, LIMIT_TEAM_MEMBER_PAGINATION_DEFAULT_SIZE, LIMIT_TEAM_MEMBER_PAGINATION_MAX_SIZE, LIMIT_TREND_PAGINATION_DEFAULT_SIZE, LIMIT_TREND_PAGINATION_MAX_SIZE, LIMIT_USER_PAGINATION_DEFAULT_SIZE, LIMIT_USER_PAGINATION_MAX_SIZE, LIMIT_UTM_TRACKING_LINK_PAGINATION_DEFAULT_SIZE, LIMIT_UTM_TRACKING_LINK_PAGINATION_MAX_SIZE, MAX_FILE_SIZE, MAX_FILE_SIZE_LABEL, QuerySortBlogPosts, QuerySortCategories, QuerySortClientContentPillars, QuerySortClientMediaPlatforms, QuerySortClientProjects, QuerySortClientReports, QuerySortClientStyleguides, QuerySortClientUsers, QuerySortClients, QuerySortContentPillars, QuerySortEntities, QuerySortMediaContentType, QuerySortMediaPlatforms, QuerySortTeamMembers, QuerySortUrlRedirects, QuerySortUsers, QuerySortUtmTrackingLinks, QueryStrapiByDocumentId, QueryStrapiByEmail, QueryStrapiById, QueryStrapiByName, QueryStrapiByPhone, QueryStrapiBySlug, QueryStrapiPaginated, QueryStrapiPaginatedUrlRedirects, QueryStrapiSearchBlogPosts, QueryStrapiSearchBlogPostsBySlug, QueryStrapiSearchCategories, QueryStrapiSearchClientContentPillars, QueryStrapiSearchClientMediaPlatforms, QueryStrapiSearchClientProjects, QueryStrapiSearchClientReports, QueryStrapiSearchClientStyleguide, QueryStrapiSearchClients, QueryStrapiSearchContentPillars, QueryStrapiSearchMediaContentTypes, QueryStrapiSearchMediaPlatforms, QueryStrapiSearchTeamMembers, QueryStrapiSearchUtmTrackingLinks, QueryStrapiUrlRedirectsByFrom, QueryStrapiUsers, QueryStrapiUsersByIdentifier, REGEX_BRAND_COLOR_SLUG, REGEX_DOMAIN, REGEX_NANP_PHONE, REGEX_URL_SLUG, REGEX_UTM_VALUE, ROLE_PERMISSIONS, SAssociateClientMediaPlatformContentTypesToMediaContentType, SAssociateClientToClientProjectDocument, SAssociateMediaContentTypesToClientMediaPlatform, SAssociateMediaContentTypesToMediaPlatform, SAssociateMediaPlatformsToMediaContentType, SAuthConnectProviderConfirmation, SAuthConnectProviderRedirectSearch, SAuthRawAccessToken, SChangePassword, SConnectManyEntityRelation, SConnectOneEntityRelation, SCreateCategoryDocument, SCreateClientContentPillarDocument, SCreateClientDocument, SCreateClientMediaPlatformDocument, SCreateClientProjectDocument, SCreateClientReportDocument, SCreateClientStyleguideDocument, SCreateClientUserDocument, SCreateContentPillarDocument, SCreateLeadDocument, SCreateMediaContentTypeDocument, SCreateMediaPlatformDocument, SCreateMultipleStrapiMediaUploadDocument, SCreateNewsletterSignup, SCreateNewsletterSignupDocument, SCreateResume, SCreateResumeInfo, SCreateResumeInfoDocument, SCreateStrapiMediaUploadDocument, SCreateUserDocument, SCreateUtmTrackingLinkDocument, SCreateUtmTrackingLinkDocumentRequest, SCreateUtmTrackingLinkParts, SDisconnectManyEntityRelation, SDisconnectOneEntityRelation, SEntityRelation, SEntityRelationPosition, SEntityRelationPositionAfter, SEntityRelationPositionBefore, SEntityRelationPositionEnd, SEntityRelationPositionStart, SForgotUserPassword, SFormCreateMultipleUtmTrackingLinkDocuments, SLoginUser, SQueryListClientUserDocuments, SReadUserAccountByDocumentId, SReadUserAccountById, SReadUtmTrackingLinkDocumentByUrl, SRegisterUser, SRequestConfirmEmail, SResetUserPassword, SSetManyEntityRelation, SSetOneEntityRelation, SUpdateCategoryDocument, SUpdateCategoryDocumentRequest, SUpdateClientContentPillarDocument, SUpdateClientContentPillarDocumentRequest, SUpdateClientDocument, SUpdateClientDocumentRequest, SUpdateClientMediaPlatformDocument, SUpdateClientMediaPlatformDocumentRequest, SUpdateClientProjectDocument, SUpdateClientProjectDocumentRequest, SUpdateClientReportDocument, SUpdateClientReportDocumentRequest, SUpdateClientStyleguideDocument, SUpdateClientStyleguideDocumentRequest, SUpdateClientUserDocument, SUpdateClientUserDocumentRequest, SUpdateContentPillarDocument, SUpdateContentPillarDocumentRequest, SUpdateLeadDocument, SUpdateLeadRequest, SUpdateMediaContentTypeDocument, SUpdateMediaContentTypeDocumentRequest, SUpdateMediaPlatformDocument, SUpdateMediaPlatformDocumentRequest, SUpdateNewsletterSignupDocument, SUpdateNewsletterSignupRequest, SUpdateResumeInfo, SUpdateResumeInfoDocument, SUpdateResumeInfoRequest, SUpdateStrapiMediaFileInfo, SUpdateTrendsLikes, SUpdateUserAccount, SUpdateUserAccountFirstName, SUpdateUserAccountLastName, SUpdateUserAccountPreferredName, SUpdateUtmTrackingLinkDocument, SUpdateUtmTrackingLinkDocumentRequest, SUserToken, SUtmLinkBuilderPartCampaignDateOptions, SUtmLinkBuilderTableForm, SVerifyClientUserDocument, SharpSpringSignUpToDownload, ValidGcDesiredContentOptions, ValidGcServiceOptions, ValidGcVideoServiceOptions, ValidJobRoleGroup, ValidNumberOfEmployeeOptions, ValidRatingRange5, datePlusDays, dateToday, hasPermission, isStrapiAttributeError, isStrapiStandardError, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
2684
2777
  //# sourceMappingURL=index.js.map
2685
2778
  //# sourceMappingURL=index.js.map