@getcommunity/gc-validators 0.0.156 → 0.0.157
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.d.cts +275 -1
- package/dist/index.d.ts +275 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1562,6 +1562,280 @@ type UtmMetaPageDocument = {
|
|
|
1562
1562
|
creative_variant_options: ComponentUtmOption[];
|
|
1563
1563
|
} & BaseDocument;
|
|
1564
1564
|
|
|
1565
|
+
type TeamworkResponseMetaPagination = {
|
|
1566
|
+
pageOffset: number;
|
|
1567
|
+
pageSize: number;
|
|
1568
|
+
count: number;
|
|
1569
|
+
hasMore: boolean;
|
|
1570
|
+
};
|
|
1571
|
+
type TeamworkResponseMeta = {
|
|
1572
|
+
page: TeamworkResponseMetaPagination;
|
|
1573
|
+
averageSpend?: number;
|
|
1574
|
+
limit?: number;
|
|
1575
|
+
nextCursor?: string;
|
|
1576
|
+
prevCursor?: string;
|
|
1577
|
+
totalCapacity?: number;
|
|
1578
|
+
};
|
|
1579
|
+
type TeamworkRelatedMeta = {
|
|
1580
|
+
id: number;
|
|
1581
|
+
type: string;
|
|
1582
|
+
};
|
|
1583
|
+
type TeamworkActivePages = {
|
|
1584
|
+
billing: boolean;
|
|
1585
|
+
forms: boolean;
|
|
1586
|
+
comments: boolean;
|
|
1587
|
+
files: boolean;
|
|
1588
|
+
links: boolean;
|
|
1589
|
+
messages: boolean;
|
|
1590
|
+
milestones: boolean;
|
|
1591
|
+
notebooks: boolean;
|
|
1592
|
+
riskRegister: boolean;
|
|
1593
|
+
tasks: boolean;
|
|
1594
|
+
list: boolean;
|
|
1595
|
+
board: boolean;
|
|
1596
|
+
gantt: boolean;
|
|
1597
|
+
table: boolean;
|
|
1598
|
+
time: boolean;
|
|
1599
|
+
finance: boolean;
|
|
1600
|
+
proofs: boolean;
|
|
1601
|
+
tickets: boolean;
|
|
1602
|
+
};
|
|
1603
|
+
type TeamworkLockdown = {
|
|
1604
|
+
id: number;
|
|
1605
|
+
items: TeamworkRelatedMeta[];
|
|
1606
|
+
updatedAt: string;
|
|
1607
|
+
user: TeamworkRelatedMeta;
|
|
1608
|
+
userID: number;
|
|
1609
|
+
};
|
|
1610
|
+
|
|
1611
|
+
type TeamworkProject = {
|
|
1612
|
+
id: number;
|
|
1613
|
+
name: string;
|
|
1614
|
+
description: string;
|
|
1615
|
+
type: string;
|
|
1616
|
+
status: string;
|
|
1617
|
+
subStatus: string;
|
|
1618
|
+
company: TeamworkRelatedMeta;
|
|
1619
|
+
tags: TeamworkRelatedMeta[];
|
|
1620
|
+
startAt: string | null;
|
|
1621
|
+
endAt: string | null;
|
|
1622
|
+
category: TeamworkRelatedMeta;
|
|
1623
|
+
ownedBy: number;
|
|
1624
|
+
update: TeamworkRelatedMeta;
|
|
1625
|
+
timeBudget: number | null;
|
|
1626
|
+
financialBudget: number | null;
|
|
1627
|
+
createdBy: number;
|
|
1628
|
+
createdAt: string;
|
|
1629
|
+
updatedAt: string;
|
|
1630
|
+
updatedBy: number;
|
|
1631
|
+
completedAt: string | null;
|
|
1632
|
+
completedBy: string | null;
|
|
1633
|
+
defaultPrivacy: string;
|
|
1634
|
+
activePages: TeamworkActivePages;
|
|
1635
|
+
directFileUploadsEnabled: boolean;
|
|
1636
|
+
harvestTimersEnabled: boolean;
|
|
1637
|
+
integrations: object;
|
|
1638
|
+
isOnBoardingProject: boolean;
|
|
1639
|
+
isSampleProject: boolean;
|
|
1640
|
+
logo: string | null;
|
|
1641
|
+
logoIcon: string | null;
|
|
1642
|
+
logoColor: string | null;
|
|
1643
|
+
notifyEveryone: boolean;
|
|
1644
|
+
allowNotifyAnyone: boolean;
|
|
1645
|
+
notifyCommentIncludeCreator: boolean;
|
|
1646
|
+
notifyTaskAssignee: boolean;
|
|
1647
|
+
overviewStartPage: string;
|
|
1648
|
+
privacyEnabled: boolean;
|
|
1649
|
+
projectOwner: TeamworkRelatedMeta;
|
|
1650
|
+
replyByEmailEnabled: boolean;
|
|
1651
|
+
showAnnouncement: boolean;
|
|
1652
|
+
announcement: string;
|
|
1653
|
+
skipWeekends: boolean;
|
|
1654
|
+
startPage: string;
|
|
1655
|
+
tasksStartPage: string;
|
|
1656
|
+
customfieldValues: TeamworkRelatedMeta[];
|
|
1657
|
+
isBillable: boolean;
|
|
1658
|
+
timelogRequiresTask: boolean;
|
|
1659
|
+
customFieldValueIds: number[] | null;
|
|
1660
|
+
customFieldValues: TeamworkRelatedMeta[];
|
|
1661
|
+
companyId: number;
|
|
1662
|
+
tagIds: number[] | null;
|
|
1663
|
+
startDate: null;
|
|
1664
|
+
endDate: null;
|
|
1665
|
+
categoryId: number | null;
|
|
1666
|
+
ownerId: number;
|
|
1667
|
+
updateId: number | null;
|
|
1668
|
+
timeBudgetId: number | null;
|
|
1669
|
+
financialBudgetId: number | null;
|
|
1670
|
+
projectOwnerId: number;
|
|
1671
|
+
};
|
|
1672
|
+
type TeamworkResponseMetaProjectStats = {
|
|
1673
|
+
noDate: number;
|
|
1674
|
+
late: number;
|
|
1675
|
+
upcoming: number;
|
|
1676
|
+
complete: number;
|
|
1677
|
+
active: number;
|
|
1678
|
+
count: number;
|
|
1679
|
+
today: number;
|
|
1680
|
+
archived: number;
|
|
1681
|
+
starred: number;
|
|
1682
|
+
current: number;
|
|
1683
|
+
};
|
|
1684
|
+
type TeamworkProjectResponseMeta = {
|
|
1685
|
+
projectStats?: TeamworkResponseMetaProjectStats;
|
|
1686
|
+
};
|
|
1687
|
+
type TeamworkProjectsResponse = {
|
|
1688
|
+
projects: TeamworkProject[];
|
|
1689
|
+
meta: TeamworkResponseMeta & TeamworkProjectResponseMeta;
|
|
1690
|
+
included: object;
|
|
1691
|
+
};
|
|
1692
|
+
type TeamworkProjectResponse = {
|
|
1693
|
+
project: TeamworkProject;
|
|
1694
|
+
meta: TeamworkResponseMeta & TeamworkProjectResponseMeta;
|
|
1695
|
+
included: object;
|
|
1696
|
+
};
|
|
1697
|
+
|
|
1698
|
+
type TeamworkTag = {
|
|
1699
|
+
id: number;
|
|
1700
|
+
projectId: number;
|
|
1701
|
+
project: TeamworkRelatedMeta;
|
|
1702
|
+
name: string;
|
|
1703
|
+
color: string;
|
|
1704
|
+
};
|
|
1705
|
+
type TeamworkTagResponseMeta = {};
|
|
1706
|
+
type TeamworkTagsResponse = {
|
|
1707
|
+
tags: TeamworkTag[];
|
|
1708
|
+
meta: TeamworkResponseMeta & TeamworkTagResponseMeta;
|
|
1709
|
+
included: object;
|
|
1710
|
+
};
|
|
1711
|
+
type TeamworkTagResponse = {
|
|
1712
|
+
tag: TeamworkTag;
|
|
1713
|
+
meta: TeamworkResponseMeta & TeamworkTagResponseMeta;
|
|
1714
|
+
included: object;
|
|
1715
|
+
};
|
|
1716
|
+
|
|
1717
|
+
type TeamworkTaskUserPermissions = {
|
|
1718
|
+
canEdit: boolean;
|
|
1719
|
+
canComplete: boolean;
|
|
1720
|
+
canLogTime: boolean;
|
|
1721
|
+
canViewEstTime: boolean;
|
|
1722
|
+
canAddSubtasks: boolean;
|
|
1723
|
+
};
|
|
1724
|
+
type TeamworkTaskCard = {
|
|
1725
|
+
id: number;
|
|
1726
|
+
status: string;
|
|
1727
|
+
archived: boolean;
|
|
1728
|
+
archivedAt: string | null;
|
|
1729
|
+
archivedBy: TeamworkRelatedMeta | null;
|
|
1730
|
+
column: TeamworkRelatedMeta;
|
|
1731
|
+
createdBy: TeamworkRelatedMeta;
|
|
1732
|
+
createdAt: string;
|
|
1733
|
+
deletedBy: TeamworkRelatedMeta | null;
|
|
1734
|
+
deletedAt: string | null;
|
|
1735
|
+
displayOrder: number;
|
|
1736
|
+
updatedAt: string;
|
|
1737
|
+
visible: boolean;
|
|
1738
|
+
};
|
|
1739
|
+
type TeamworkTask = {
|
|
1740
|
+
id: number;
|
|
1741
|
+
name: string;
|
|
1742
|
+
description: string;
|
|
1743
|
+
descriptionContentType: string;
|
|
1744
|
+
priority: string | null;
|
|
1745
|
+
hasDeskTickets: boolean;
|
|
1746
|
+
progress: number;
|
|
1747
|
+
displayOrder: number;
|
|
1748
|
+
decimalDisplayOrder: number;
|
|
1749
|
+
crmDealIds: number[] | null;
|
|
1750
|
+
tagIds: number[] | null;
|
|
1751
|
+
tags: TeamworkRelatedMeta[] | null;
|
|
1752
|
+
updatedAt: string | null;
|
|
1753
|
+
updatedBy: number | number;
|
|
1754
|
+
deletedAt: string | null;
|
|
1755
|
+
deletedBy: number | null;
|
|
1756
|
+
parentTask: TeamworkRelatedMeta | null;
|
|
1757
|
+
card: Record<string, TeamworkTaskCard> | null;
|
|
1758
|
+
isPrivate: 1 | 0;
|
|
1759
|
+
lockdown: Record<string, TeamworkLockdown> | null;
|
|
1760
|
+
status: string;
|
|
1761
|
+
tasklist: TeamworkRelatedMeta;
|
|
1762
|
+
startDate: string;
|
|
1763
|
+
dueDate: string;
|
|
1764
|
+
startDateOffset: number | null;
|
|
1765
|
+
dueDateOffset: number | null;
|
|
1766
|
+
originalDueDate: string;
|
|
1767
|
+
estimateMinutes: number;
|
|
1768
|
+
accumulatedEstimatedMinutes: number;
|
|
1769
|
+
assignees: TeamworkRelatedMeta[];
|
|
1770
|
+
commentFollowers: TeamworkRelatedMeta[];
|
|
1771
|
+
changeFollowers: TeamworkRelatedMeta[];
|
|
1772
|
+
completeFollowers: TeamworkRelatedMeta[];
|
|
1773
|
+
attachments: TeamworkRelatedMeta[];
|
|
1774
|
+
notify: boolean;
|
|
1775
|
+
isArchived: boolean;
|
|
1776
|
+
capacities: TeamworkRelatedMeta[] | null;
|
|
1777
|
+
proofs: TeamworkRelatedMeta[] | null;
|
|
1778
|
+
userPermissions: TeamworkTaskUserPermissions;
|
|
1779
|
+
createdBy: number;
|
|
1780
|
+
createdAt: string;
|
|
1781
|
+
sequence: TeamworkRelatedMeta[] | null;
|
|
1782
|
+
dateUpdated: string | null;
|
|
1783
|
+
parentTaskId: number;
|
|
1784
|
+
tasklistId: number;
|
|
1785
|
+
assigneeUserIds: number[] | null;
|
|
1786
|
+
assigneeUsers: TeamworkRelatedMeta[];
|
|
1787
|
+
assigneeCompanyIds: number[] | null;
|
|
1788
|
+
assigneeCompanies: TeamworkRelatedMeta[];
|
|
1789
|
+
assigneeTeamIds: number[] | null;
|
|
1790
|
+
assigneeTeams: TeamworkRelatedMeta[];
|
|
1791
|
+
createdByUserId: number;
|
|
1792
|
+
sequenceId: number | null;
|
|
1793
|
+
};
|
|
1794
|
+
type TeamworkTaskResponseMeta = {};
|
|
1795
|
+
type TeamworkTasksResponse = {
|
|
1796
|
+
tasks: TeamworkTask[];
|
|
1797
|
+
meta: TeamworkResponseMeta & TeamworkTaskResponseMeta;
|
|
1798
|
+
included: object;
|
|
1799
|
+
};
|
|
1800
|
+
type TeamworkTaskResponse = {
|
|
1801
|
+
task: TeamworkTask;
|
|
1802
|
+
meta: TeamworkResponseMeta & TeamworkTaskResponseMeta;
|
|
1803
|
+
included: object;
|
|
1804
|
+
};
|
|
1805
|
+
|
|
1806
|
+
type TeamworkTasklist = {
|
|
1807
|
+
id: number;
|
|
1808
|
+
name: string;
|
|
1809
|
+
description: string;
|
|
1810
|
+
displayOrder: number;
|
|
1811
|
+
projectId: number;
|
|
1812
|
+
project: TeamworkRelatedMeta;
|
|
1813
|
+
milestoneId: number | null;
|
|
1814
|
+
milestone: null;
|
|
1815
|
+
isPinned: boolean;
|
|
1816
|
+
isPrivate: boolean;
|
|
1817
|
+
lockdownId: number | null;
|
|
1818
|
+
status: string;
|
|
1819
|
+
defaultTaskId: number;
|
|
1820
|
+
defaultTask: TeamworkRelatedMeta;
|
|
1821
|
+
isBillable: boolean;
|
|
1822
|
+
tasklistBudget: TeamworkRelatedMeta | null;
|
|
1823
|
+
createdAt: string;
|
|
1824
|
+
updatedAt: string | null;
|
|
1825
|
+
icon: string | null;
|
|
1826
|
+
};
|
|
1827
|
+
type TeamworkTasklistResponseMeta = {};
|
|
1828
|
+
type TeamworkTasklistsResponse = {
|
|
1829
|
+
tasklists: TeamworkTasklist[];
|
|
1830
|
+
meta: TeamworkResponseMeta & TeamworkTasklistResponseMeta;
|
|
1831
|
+
included: object;
|
|
1832
|
+
};
|
|
1833
|
+
type TeamworkTasklistResponse = {
|
|
1834
|
+
tasklist: TeamworkTasklist;
|
|
1835
|
+
meta: TeamworkResponseMeta & TeamworkTasklistResponseMeta;
|
|
1836
|
+
included: object;
|
|
1837
|
+
};
|
|
1838
|
+
|
|
1565
1839
|
/**
|
|
1566
1840
|
* Attribute-based access control (ABAC) permissions
|
|
1567
1841
|
*
|
|
@@ -3743,4 +4017,4 @@ declare const IsValidOrUndefinedUrlUtmTerm: v.OptionalSchema<v.SchemaWithPipe<re
|
|
|
3743
4017
|
declare const IsValidUrlUtmId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_id is too short, it must be at least 1 characters">, 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: - _ .">]>;
|
|
3744
4018
|
declare const IsValidOrUndefinedUrlUtmId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_id is too short, it must be at least 1 characters">, 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>;
|
|
3745
4019
|
|
|
3746
|
-
export { type AuthorizedUserDocument, type BaseDocument, type BlockAnnouncementBar, type BlockBrandLogos, type BlockButtonGroup, type BlockContact, type BlockCtaLink, type BlockFaq, type BlockFullscreenContent, type BlockFullscreenContentType, type BlockTextDetails, type BlockVideoEmbed, type BlogPageDocument, type BlogPostBlock, type BlogPostDocument, type BrandStyleguideColor, type BrandStyleguideFont, CLIENT_ENTITY_KEYS, CLIENT_ENTITY_PERMISSIONS, CLIENT_ENTITY_SCOPES, type CareersPageDocument, type CategoryDocument, type ClientContentPillarDocument, type ClientDocument, type ClientEntityActions, type ClientEntityKey, type ClientEntityScope, type ClientMediaPlatformContentTypeDocument, type ClientMediaPlatformDocument, type ClientProjectDocument, type ClientProjectPhase, ClientProjectPhaseOptions, ClientProjectPhaseSelectOptions, type ClientProjectStatus, ClientProjectStatusOptions, type ClientReportDocument, type ClientStyleguideDocument, type ClientUserDocument, type ClientUserDocumentStatus, type ComponentBlockAnnouncementBar, type ComponentBlockBrandLogos, type ComponentBlockButtonGroup, type ComponentBlockContact, type ComponentBlockCtaLink, type ComponentBlockFaq, type ComponentBlockFullscreenContent, type ComponentBlockTextDetails, type ComponentBlockVideo, type ComponentBrandStyleguideColor, type ComponentBrandStyleguideFont, type ComponentFormDownload, type ComponentFormSelect, type ComponentMetaSocial, type ComponentOpenGraph, type ComponentSeoMeta, type ComponentSharedButton, type ComponentSharedLink, type ComponentSharedQuestionAnswer, type ComponentSharedRichTextBlock, type ComponentSlideContent, type ComponentSliderSettings, type ComponentSlideshow, type ComponentSlideshowSettings, type ComponentUtmOption, type ContentPillarDocument, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_PHONE, ERROR_MESSAGE_REGEX_URL_SLUG, ERROR_MESSAGE_REGEX_UTM_VALUE, type FAQPageDocument, type FormDownload, type FormDownloadKeys, type FormSelect, type FormSelectInputOption, type FormUID, type GCFlyTourDocument, type GCFlyTourSnapDocument, InvalidClientTermMin, InvalidClientTermNumber, InvalidCompanyName, InvalidCompanyNameMaxLength, InvalidCsvFileType, InvalidDestinationUrl, InvalidFirstName, InvalidFirstNameMaxLength, InvalidFullName, InvalidFullNameMaxLength, InvalidInputRobot, InvalidInstrustryName, InvalidInstrustryNameMaxLength, InvalidLastName, InvalidLastNameMaxLength, InvalidListOfUrls, InvalidLongStringMax, InvalidPhoneNumber, InvalidPhoneNumberType, InvalidPreferredName, InvalidPreferredNameMaxLength, InvalidProductInterestMaxLength, InvalidRangeValueOneToFive, InvalidRefPageMaxLength, InvalidResumeFileType, InvalidShortStringMax, InvalidUserMessage, InvalidUserMessageMaxLength, InvalidUserTitle, InvalidUserTitleMaxLength, InvalidUtmLink, IsValidBlocked, IsValidBlogPostStatus, IsValidCaptchaToken, IsValidClientClassification, IsValidClientClassificationOption, IsValidClientClassificationSelectOptions, IsValidClientProjectPhase, IsValidClientProjectStatus, IsValidClientTerm, IsValidClientUserScope, IsValidClientUserScopes, IsValidCompanyName, IsValidCompanyNameRequired, IsValidConfirmed, IsValidCost, IsValidCsvFile, IsValidDescription, IsValidDestinationUrl, IsValidFileReferenceId, IsValidFirstName, IsValidFullName, IsValidIndustryName, IsValidInteger, IsValidIsActive, IsValidIsBoolean, IsValidIsSecure, IsValidLabel, IsValidLastName, IsValidLongString, IsValidLongStringNoMin, IsValidMediaFile, IsValidMediaFileList, IsValidName, IsValidNumber, IsValidNumberOfEmployees, IsValidOrUndefinedBlocked, IsValidOrUndefinedBlogPostStatus, IsValidOrUndefinedBlogPostStatusFallback, IsValidOrUndefinedClientClassification, IsValidOrUndefinedClientProjectPhase, IsValidOrUndefinedClientProjectStatus, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedDescription, IsValidOrUndefinedDestinationUrl, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsBoolean, IsValidOrUndefinedIsSecure, IsValidOrUndefinedIsoDate, IsValidOrUndefinedIsoDateTime, IsValidOrUndefinedLabel, IsValidOrUndefinedLongString, IsValidOrUndefinedLongStringNoMin, IsValidOrUndefinedMetricInteger, IsValidOrUndefinedMetricNumber, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPhoneNumber, IsValidOrUndefinedProvider, IsValidOrUndefinedReferenceDocumentId, IsValidOrUndefinedReferenceDocumentIdList, IsValidOrUndefinedShortString, IsValidOrUndefinedShortStringNoMin, IsValidOrUndefinedSlug, IsValidOrUndefinedSlugNoMin, IsValidOrUndefinedStringList, IsValidOrUndefinedStringListTransformed, IsValidOrUndefinedStringSepListOfUrls, IsValidOrUndefinedUrl, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmKey, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserEmail, IsValidOrUndefinedUsername, IsValidOrUndefinedUtmCampaignKeyName, IsValidOrUndefinedUtmLink, IsValidOrUndefinedValue, IsValidPassword, IsValidPhoneNumberRequired, IsValidPositiveInteger, IsValidPreferredName, IsValidProductInterest, IsValidProvider, IsValidRangeValueOneToFive, IsValidRefPage, IsValidReferenceDocumentId, IsValidReferenceDocumentIdList, IsValidReferenceId, IsValidResumeFile, IsValidShortString, IsValidShortStringNoMin, IsValidSlug, IsValidStringList, IsValidStringListTransformed, IsValidStringSepListOfUrls, IsValidUrl, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlList, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmKey, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserConsent, IsValidUserEmail, IsValidUserMessage, IsValidUserMessageRequired, IsValidUserRole, IsValidUserTitle, IsValidUserTitleRequired, IsValidUsername, IsValidUtmCampaignKeyName, IsValidUtmLink, IsValidValue, IsoDateSchema, IsoDateTimeSchema, type LCRUDActions, 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, type LandingPageDocument, type LeadDocument, MAX_FILE_SIZE, MAX_FILE_SIZE_LABEL, type MediaContentTypeDocument, type MediaFormat, type MediaFormats, type MediaPlatformDocument, type MediaUploadDocument, type MetaSocial, type MetaSocialNetwork, type NewsletterSignupDocument, type OpenGraph, type PermissionDocument, type Permissions, type PolicyPageDocument, type ProductDocument, type ProductHighlightDocument, QuerySortBlogPosts, QuerySortCategories, QuerySortClientContentPillars, QuerySortClientMediaPlatformContentTypes, QuerySortClientMediaPlatforms, QuerySortClientProjects, QuerySortClientReports, QuerySortClientStyleguides, QuerySortClientUsers, QuerySortClients, QuerySortContentPillars, QuerySortEntities, QuerySortGCFlyTourSnaps, QuerySortGCFlyTours, QuerySortMediaContentType, QuerySortMediaPlatforms, QuerySortTeamMembers, QuerySortTeamworkProjectHealth, QuerySortUrlRedirects, QuerySortUsers, QuerySortUtmTrackingLinks, QueryStrapiByDocumentId, QueryStrapiByEmail, QueryStrapiById, QueryStrapiByName, QueryStrapiByPhone, QueryStrapiBySlug, QueryStrapiPaginated, QueryStrapiPaginatedUrlRedirects, QueryStrapiSearchBlogPosts, QueryStrapiSearchBlogPostsBySlug, QueryStrapiSearchCategories, QueryStrapiSearchClientContentPillars, QueryStrapiSearchClientMediaPlatformContentTypes, QueryStrapiSearchClientMediaPlatforms, QueryStrapiSearchClientProjects, QueryStrapiSearchClientReports, QueryStrapiSearchClientStyleguide, QueryStrapiSearchClients, QueryStrapiSearchContentPillars, QueryStrapiSearchGCFlyTourSnaps, QueryStrapiSearchGCFlyTours, QueryStrapiSearchMediaContentTypes, QueryStrapiSearchMediaPlatforms, QueryStrapiSearchTeamMembers, QueryStrapiSearchTeamworkProjectHealth, QueryStrapiSearchUtmTrackingLinks, QueryStrapiUrlRedirectsByFrom, QueryStrapiUsers, QueryStrapiUsersByIdentifier, REGEX_BRAND_COLOR_SLUG, REGEX_DOMAIN, REGEX_NANP_PHONE, REGEX_URL_SLUG, REGEX_UTM_VALUE, ROLE_PERMISSIONS, type ResumeDocument, type RichTextBlock, type RichTextBlockChildren, type RoleDocument, type RoleType, type RolesWithPermissions, SAssociateClientMediaPlatformContentTypesToMediaContentType, SAssociateClientToClientProjectDocument, SAssociateClientsToGCFlyTour, SAssociateMediaContentTypesToClientMediaPlatform, SAssociateMediaContentTypesToMediaPlatform, SAssociateMediaPlatformsToMediaContentType, SAuthConnectProviderConfirmation, SAuthConnectProviderRedirectSearch, SAuthRawAccessToken, SChangePassword, SConnectManyEntityRelation, type SConnectManyEntityRelationIn, SConnectOneEntityRelation, type SConnectOneEntityRelationIn, SCreateCategoryDocument, SCreateClientContentPillarDocument, SCreateClientDocument, SCreateClientMediaPlatformContentTypeDocument, SCreateClientMediaPlatformDocument, SCreateClientProjectDocument, SCreateClientReportDocument, SCreateClientStyleguideDocument, SCreateClientUserDocument, SCreateContentPillarDocument, SCreateGCFlyTourDocument, SCreateGCFlyTourSnapDocument, SCreateLeadDocument, SCreateMediaContentTypeDocument, SCreateMediaPlatformDocument, SCreateMultipleStrapiMediaUploadDocument, SCreateNewsletterSignup, SCreateNewsletterSignupDocument, SCreateResume, SCreateResumeInfo, SCreateResumeInfoDocument, SCreateStrapiMediaUploadDocument, SCreateUserDocument, SCreateUtmTrackingLinkDocument, SCreateUtmTrackingLinkDocumentRequest, SCreateUtmTrackingLinkParts, SDisconnectManyEntityRelation, type SDisconnectManyEntityRelationIn, SDisconnectOneEntityRelation, type SDisconnectOneEntityRelationIn, SEntityRelation, type SEntityRelationIn, SEntityRelationPosition, SEntityRelationPositionAfter, SEntityRelationPositionBefore, SEntityRelationPositionEnd, type SEntityRelationPositionIn, SEntityRelationPositionStart, SForgotUserPassword, SFormCreateMultipleUtmTrackingLinkDocuments, SLoginUser, SQueryListClientUserDocuments, SReadUserAccountByDocumentId, SReadUserAccountById, SReadUtmTrackingLinkDocumentByUrl, SRegisterUser, SRequestConfirmEmail, SResetUserPassword, SSetManyEntityRelation, type SSetManyEntityRelationIn, SSetOneEntityRelation, type SSetOneEntityRelationIn, SUpdateCategoryDocument, SUpdateCategoryDocumentRequest, SUpdateClientContentPillarDocument, SUpdateClientContentPillarDocumentRequest, SUpdateClientDocument, SUpdateClientDocumentRequest, SUpdateClientMediaPlatformContentTypeDocument, SUpdateClientMediaPlatformContentTypeDocumentRequest, SUpdateClientMediaPlatformDocument, SUpdateClientMediaPlatformDocumentRequest, SUpdateClientProjectDocument, SUpdateClientProjectDocumentRequest, SUpdateClientReportDocument, SUpdateClientReportDocumentRequest, SUpdateClientStyleguideDocument, SUpdateClientStyleguideDocumentRequest, SUpdateClientUserDocument, SUpdateClientUserDocumentRequest, SUpdateContentPillarDocument, SUpdateContentPillarDocumentRequest, SUpdateGCFlyTourDocument, SUpdateGCFlyTourDocumentRequest, SUpdateGCFlyTourSnapDocument, SUpdateGCFlyTourSnapDocumentRequest, SUpdateLeadDocument, SUpdateLeadRequest, SUpdateMediaContentTypeDocument, SUpdateMediaContentTypeDocumentRequest, SUpdateMediaPlatformDocument, SUpdateMediaPlatformDocumentRequest, SUpdateNewsletterSignupDocument, SUpdateNewsletterSignupRequest, SUpdateResumeInfo, SUpdateResumeInfoDocument, SUpdateResumeInfoRequest, SUpdateStrapiMediaFileInfo, SUpdateTrendsLikes, SUpdateUserAccount, SUpdateUserAccountFirstName, SUpdateUserAccountLastName, SUpdateUserAccountPreferredName, SUpdateUtmTrackingLinkDocument, SUpdateUtmTrackingLinkDocumentRequest, SUserToken, SUtmLinkBuilderPartCampaignDateOptions, type SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, SVerifyClientUserDocument, type SeoMeta, type SharedButton, type SharedLink, type SharedQuestionAnswer, type SharedRichTextBlock, SharpSpringSignUpToDownload, type SlideContent, type SlideType, type SliderBreakpoint, type SliderOrigin, type SliderSettings, type SliderSpacing, type Slideshow, type SlideshowComponentProps, type SlideshowComponentSlideSettings, type SlideshowMode, type SlideshowSettings, type StrapiAttributeErrorDetail, type StrapiAttributeErrorKey, type StrapiAttributeErrorResponse, type StrapiBgColorOptions, type StrapiDirection, type StrapiErrorDetail, type StrapiErrorResponse, type StrapiErrorResult, type StrapiGapSizes, type StrapiIconName, type StrapiIconPosition, type StrapiLinkReferrerPolicy, type StrapiLinkRel, type StrapiLinkTarget, type StrapiLinkType, type StrapiListResponse, type StrapiPagination, type StrapiResponseMeta, type StrapiResponseMetaWithPagination, type StrapiSingleResponse, type StrapiTextColorOptions, type StrapiThemeOptions, type TagDocument, type TeamMemberDocument, type TeamMemberGroup, type TeamMemberTier, type TeamPageDocument, type TeamworkProjectHealthProjectStatus, TeamworkProjectHealthProjectStatusOptions, TeamworkProjectHealthSelectSortOptions, type TeamworkProjectHealthSortKey, type TrendDocument, type UrlRedirectDocument, type UrlRedirectQueryParams, type UrlRedirectStatusCode, type UserAccountDocument, type UserAuthorizationLoginResponse, type UserAuthorizationSuccessResponse, type UserDocument, type UtmClassificationKey, type UtmMetaPageDocument, type UtmOption, type UtmSourceKey, type UtmTrackingLinkDocument, ValidGcDesiredContentOptions, ValidGcServiceOptions, ValidGcVideoServiceOptions, ValidJobRoleGroup, ValidNumberOfEmployeeOptions, ValidRatingRange5, type WebSafeFont, type WebSafeFontDisplay, type WebSafeFontMono, type WebSafeFontSans, type WebSafeFontSerif, datePlusDays, dateToday, hasPermission, isStrapiAttributeError, isStrapiStandardError, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|
|
4020
|
+
export { type AuthorizedUserDocument, type BaseDocument, type BlockAnnouncementBar, type BlockBrandLogos, type BlockButtonGroup, type BlockContact, type BlockCtaLink, type BlockFaq, type BlockFullscreenContent, type BlockFullscreenContentType, type BlockTextDetails, type BlockVideoEmbed, type BlogPageDocument, type BlogPostBlock, type BlogPostDocument, type BrandStyleguideColor, type BrandStyleguideFont, CLIENT_ENTITY_KEYS, CLIENT_ENTITY_PERMISSIONS, CLIENT_ENTITY_SCOPES, type CareersPageDocument, type CategoryDocument, type ClientContentPillarDocument, type ClientDocument, type ClientEntityActions, type ClientEntityKey, type ClientEntityScope, type ClientMediaPlatformContentTypeDocument, type ClientMediaPlatformDocument, type ClientProjectDocument, type ClientProjectPhase, ClientProjectPhaseOptions, ClientProjectPhaseSelectOptions, type ClientProjectStatus, ClientProjectStatusOptions, type ClientReportDocument, type ClientStyleguideDocument, type ClientUserDocument, type ClientUserDocumentStatus, type ComponentBlockAnnouncementBar, type ComponentBlockBrandLogos, type ComponentBlockButtonGroup, type ComponentBlockContact, type ComponentBlockCtaLink, type ComponentBlockFaq, type ComponentBlockFullscreenContent, type ComponentBlockTextDetails, type ComponentBlockVideo, type ComponentBrandStyleguideColor, type ComponentBrandStyleguideFont, type ComponentFormDownload, type ComponentFormSelect, type ComponentMetaSocial, type ComponentOpenGraph, type ComponentSeoMeta, type ComponentSharedButton, type ComponentSharedLink, type ComponentSharedQuestionAnswer, type ComponentSharedRichTextBlock, type ComponentSlideContent, type ComponentSliderSettings, type ComponentSlideshow, type ComponentSlideshowSettings, type ComponentUtmOption, type ContentPillarDocument, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_PHONE, ERROR_MESSAGE_REGEX_URL_SLUG, ERROR_MESSAGE_REGEX_UTM_VALUE, type FAQPageDocument, type FormDownload, type FormDownloadKeys, type FormSelect, type FormSelectInputOption, type FormUID, type GCFlyTourDocument, type GCFlyTourSnapDocument, InvalidClientTermMin, InvalidClientTermNumber, InvalidCompanyName, InvalidCompanyNameMaxLength, InvalidCsvFileType, InvalidDestinationUrl, InvalidFirstName, InvalidFirstNameMaxLength, InvalidFullName, InvalidFullNameMaxLength, InvalidInputRobot, InvalidInstrustryName, InvalidInstrustryNameMaxLength, InvalidLastName, InvalidLastNameMaxLength, InvalidListOfUrls, InvalidLongStringMax, InvalidPhoneNumber, InvalidPhoneNumberType, InvalidPreferredName, InvalidPreferredNameMaxLength, InvalidProductInterestMaxLength, InvalidRangeValueOneToFive, InvalidRefPageMaxLength, InvalidResumeFileType, InvalidShortStringMax, InvalidUserMessage, InvalidUserMessageMaxLength, InvalidUserTitle, InvalidUserTitleMaxLength, InvalidUtmLink, IsValidBlocked, IsValidBlogPostStatus, IsValidCaptchaToken, IsValidClientClassification, IsValidClientClassificationOption, IsValidClientClassificationSelectOptions, IsValidClientProjectPhase, IsValidClientProjectStatus, IsValidClientTerm, IsValidClientUserScope, IsValidClientUserScopes, IsValidCompanyName, IsValidCompanyNameRequired, IsValidConfirmed, IsValidCost, IsValidCsvFile, IsValidDescription, IsValidDestinationUrl, IsValidFileReferenceId, IsValidFirstName, IsValidFullName, IsValidIndustryName, IsValidInteger, IsValidIsActive, IsValidIsBoolean, IsValidIsSecure, IsValidLabel, IsValidLastName, IsValidLongString, IsValidLongStringNoMin, IsValidMediaFile, IsValidMediaFileList, IsValidName, IsValidNumber, IsValidNumberOfEmployees, IsValidOrUndefinedBlocked, IsValidOrUndefinedBlogPostStatus, IsValidOrUndefinedBlogPostStatusFallback, IsValidOrUndefinedClientClassification, IsValidOrUndefinedClientProjectPhase, IsValidOrUndefinedClientProjectStatus, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedDescription, IsValidOrUndefinedDestinationUrl, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsBoolean, IsValidOrUndefinedIsSecure, IsValidOrUndefinedIsoDate, IsValidOrUndefinedIsoDateTime, IsValidOrUndefinedLabel, IsValidOrUndefinedLongString, IsValidOrUndefinedLongStringNoMin, IsValidOrUndefinedMetricInteger, IsValidOrUndefinedMetricNumber, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPhoneNumber, IsValidOrUndefinedProvider, IsValidOrUndefinedReferenceDocumentId, IsValidOrUndefinedReferenceDocumentIdList, IsValidOrUndefinedShortString, IsValidOrUndefinedShortStringNoMin, IsValidOrUndefinedSlug, IsValidOrUndefinedSlugNoMin, IsValidOrUndefinedStringList, IsValidOrUndefinedStringListTransformed, IsValidOrUndefinedStringSepListOfUrls, IsValidOrUndefinedUrl, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmKey, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserEmail, IsValidOrUndefinedUsername, IsValidOrUndefinedUtmCampaignKeyName, IsValidOrUndefinedUtmLink, IsValidOrUndefinedValue, IsValidPassword, IsValidPhoneNumberRequired, IsValidPositiveInteger, IsValidPreferredName, IsValidProductInterest, IsValidProvider, IsValidRangeValueOneToFive, IsValidRefPage, IsValidReferenceDocumentId, IsValidReferenceDocumentIdList, IsValidReferenceId, IsValidResumeFile, IsValidShortString, IsValidShortStringNoMin, IsValidSlug, IsValidStringList, IsValidStringListTransformed, IsValidStringSepListOfUrls, IsValidUrl, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlList, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmKey, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserConsent, IsValidUserEmail, IsValidUserMessage, IsValidUserMessageRequired, IsValidUserRole, IsValidUserTitle, IsValidUserTitleRequired, IsValidUsername, IsValidUtmCampaignKeyName, IsValidUtmLink, IsValidValue, IsoDateSchema, IsoDateTimeSchema, type LCRUDActions, 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, type LandingPageDocument, type LeadDocument, MAX_FILE_SIZE, MAX_FILE_SIZE_LABEL, type MediaContentTypeDocument, type MediaFormat, type MediaFormats, type MediaPlatformDocument, type MediaUploadDocument, type MetaSocial, type MetaSocialNetwork, type NewsletterSignupDocument, type OpenGraph, type PermissionDocument, type Permissions, type PolicyPageDocument, type ProductDocument, type ProductHighlightDocument, QuerySortBlogPosts, QuerySortCategories, QuerySortClientContentPillars, QuerySortClientMediaPlatformContentTypes, QuerySortClientMediaPlatforms, QuerySortClientProjects, QuerySortClientReports, QuerySortClientStyleguides, QuerySortClientUsers, QuerySortClients, QuerySortContentPillars, QuerySortEntities, QuerySortGCFlyTourSnaps, QuerySortGCFlyTours, QuerySortMediaContentType, QuerySortMediaPlatforms, QuerySortTeamMembers, QuerySortTeamworkProjectHealth, QuerySortUrlRedirects, QuerySortUsers, QuerySortUtmTrackingLinks, QueryStrapiByDocumentId, QueryStrapiByEmail, QueryStrapiById, QueryStrapiByName, QueryStrapiByPhone, QueryStrapiBySlug, QueryStrapiPaginated, QueryStrapiPaginatedUrlRedirects, QueryStrapiSearchBlogPosts, QueryStrapiSearchBlogPostsBySlug, QueryStrapiSearchCategories, QueryStrapiSearchClientContentPillars, QueryStrapiSearchClientMediaPlatformContentTypes, QueryStrapiSearchClientMediaPlatforms, QueryStrapiSearchClientProjects, QueryStrapiSearchClientReports, QueryStrapiSearchClientStyleguide, QueryStrapiSearchClients, QueryStrapiSearchContentPillars, QueryStrapiSearchGCFlyTourSnaps, QueryStrapiSearchGCFlyTours, QueryStrapiSearchMediaContentTypes, QueryStrapiSearchMediaPlatforms, QueryStrapiSearchTeamMembers, QueryStrapiSearchTeamworkProjectHealth, QueryStrapiSearchUtmTrackingLinks, QueryStrapiUrlRedirectsByFrom, QueryStrapiUsers, QueryStrapiUsersByIdentifier, REGEX_BRAND_COLOR_SLUG, REGEX_DOMAIN, REGEX_NANP_PHONE, REGEX_URL_SLUG, REGEX_UTM_VALUE, ROLE_PERMISSIONS, type ResumeDocument, type RichTextBlock, type RichTextBlockChildren, type RoleDocument, type RoleType, type RolesWithPermissions, SAssociateClientMediaPlatformContentTypesToMediaContentType, SAssociateClientToClientProjectDocument, SAssociateClientsToGCFlyTour, SAssociateMediaContentTypesToClientMediaPlatform, SAssociateMediaContentTypesToMediaPlatform, SAssociateMediaPlatformsToMediaContentType, SAuthConnectProviderConfirmation, SAuthConnectProviderRedirectSearch, SAuthRawAccessToken, SChangePassword, SConnectManyEntityRelation, type SConnectManyEntityRelationIn, SConnectOneEntityRelation, type SConnectOneEntityRelationIn, SCreateCategoryDocument, SCreateClientContentPillarDocument, SCreateClientDocument, SCreateClientMediaPlatformContentTypeDocument, SCreateClientMediaPlatformDocument, SCreateClientProjectDocument, SCreateClientReportDocument, SCreateClientStyleguideDocument, SCreateClientUserDocument, SCreateContentPillarDocument, SCreateGCFlyTourDocument, SCreateGCFlyTourSnapDocument, SCreateLeadDocument, SCreateMediaContentTypeDocument, SCreateMediaPlatformDocument, SCreateMultipleStrapiMediaUploadDocument, SCreateNewsletterSignup, SCreateNewsletterSignupDocument, SCreateResume, SCreateResumeInfo, SCreateResumeInfoDocument, SCreateStrapiMediaUploadDocument, SCreateUserDocument, SCreateUtmTrackingLinkDocument, SCreateUtmTrackingLinkDocumentRequest, SCreateUtmTrackingLinkParts, SDisconnectManyEntityRelation, type SDisconnectManyEntityRelationIn, SDisconnectOneEntityRelation, type SDisconnectOneEntityRelationIn, SEntityRelation, type SEntityRelationIn, SEntityRelationPosition, SEntityRelationPositionAfter, SEntityRelationPositionBefore, SEntityRelationPositionEnd, type SEntityRelationPositionIn, SEntityRelationPositionStart, SForgotUserPassword, SFormCreateMultipleUtmTrackingLinkDocuments, SLoginUser, SQueryListClientUserDocuments, SReadUserAccountByDocumentId, SReadUserAccountById, SReadUtmTrackingLinkDocumentByUrl, SRegisterUser, SRequestConfirmEmail, SResetUserPassword, SSetManyEntityRelation, type SSetManyEntityRelationIn, SSetOneEntityRelation, type SSetOneEntityRelationIn, SUpdateCategoryDocument, SUpdateCategoryDocumentRequest, SUpdateClientContentPillarDocument, SUpdateClientContentPillarDocumentRequest, SUpdateClientDocument, SUpdateClientDocumentRequest, SUpdateClientMediaPlatformContentTypeDocument, SUpdateClientMediaPlatformContentTypeDocumentRequest, SUpdateClientMediaPlatformDocument, SUpdateClientMediaPlatformDocumentRequest, SUpdateClientProjectDocument, SUpdateClientProjectDocumentRequest, SUpdateClientReportDocument, SUpdateClientReportDocumentRequest, SUpdateClientStyleguideDocument, SUpdateClientStyleguideDocumentRequest, SUpdateClientUserDocument, SUpdateClientUserDocumentRequest, SUpdateContentPillarDocument, SUpdateContentPillarDocumentRequest, SUpdateGCFlyTourDocument, SUpdateGCFlyTourDocumentRequest, SUpdateGCFlyTourSnapDocument, SUpdateGCFlyTourSnapDocumentRequest, SUpdateLeadDocument, SUpdateLeadRequest, SUpdateMediaContentTypeDocument, SUpdateMediaContentTypeDocumentRequest, SUpdateMediaPlatformDocument, SUpdateMediaPlatformDocumentRequest, SUpdateNewsletterSignupDocument, SUpdateNewsletterSignupRequest, SUpdateResumeInfo, SUpdateResumeInfoDocument, SUpdateResumeInfoRequest, SUpdateStrapiMediaFileInfo, SUpdateTrendsLikes, SUpdateUserAccount, SUpdateUserAccountFirstName, SUpdateUserAccountLastName, SUpdateUserAccountPreferredName, SUpdateUtmTrackingLinkDocument, SUpdateUtmTrackingLinkDocumentRequest, SUserToken, SUtmLinkBuilderPartCampaignDateOptions, type SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, SVerifyClientUserDocument, type SeoMeta, type SharedButton, type SharedLink, type SharedQuestionAnswer, type SharedRichTextBlock, SharpSpringSignUpToDownload, type SlideContent, type SlideType, type SliderBreakpoint, type SliderOrigin, type SliderSettings, type SliderSpacing, type Slideshow, type SlideshowComponentProps, type SlideshowComponentSlideSettings, type SlideshowMode, type SlideshowSettings, type StrapiAttributeErrorDetail, type StrapiAttributeErrorKey, type StrapiAttributeErrorResponse, type StrapiBgColorOptions, type StrapiDirection, type StrapiErrorDetail, type StrapiErrorResponse, type StrapiErrorResult, type StrapiGapSizes, type StrapiIconName, type StrapiIconPosition, type StrapiLinkReferrerPolicy, type StrapiLinkRel, type StrapiLinkTarget, type StrapiLinkType, type StrapiListResponse, type StrapiPagination, type StrapiResponseMeta, type StrapiResponseMetaWithPagination, type StrapiSingleResponse, type StrapiTextColorOptions, type StrapiThemeOptions, type TagDocument, type TeamMemberDocument, type TeamMemberGroup, type TeamMemberTier, type TeamPageDocument, type TeamworkActivePages, type TeamworkLockdown, type TeamworkProject, type TeamworkProjectHealthProjectStatus, TeamworkProjectHealthProjectStatusOptions, TeamworkProjectHealthSelectSortOptions, type TeamworkProjectHealthSortKey, type TeamworkProjectResponse, type TeamworkProjectResponseMeta, type TeamworkProjectsResponse, type TeamworkRelatedMeta, type TeamworkResponseMeta, type TeamworkResponseMetaPagination, type TeamworkResponseMetaProjectStats, type TeamworkTag, type TeamworkTagResponse, type TeamworkTagResponseMeta, type TeamworkTagsResponse, type TeamworkTask, type TeamworkTaskCard, type TeamworkTaskResponse, type TeamworkTaskResponseMeta, type TeamworkTaskUserPermissions, type TeamworkTasklist, type TeamworkTasklistResponse, type TeamworkTasklistResponseMeta, type TeamworkTasklistsResponse, type TeamworkTasksResponse, type TrendDocument, type UrlRedirectDocument, type UrlRedirectQueryParams, type UrlRedirectStatusCode, type UserAccountDocument, type UserAuthorizationLoginResponse, type UserAuthorizationSuccessResponse, type UserDocument, type UtmClassificationKey, type UtmMetaPageDocument, type UtmOption, type UtmSourceKey, type UtmTrackingLinkDocument, ValidGcDesiredContentOptions, ValidGcServiceOptions, ValidGcVideoServiceOptions, ValidJobRoleGroup, ValidNumberOfEmployeeOptions, ValidRatingRange5, type WebSafeFont, type WebSafeFontDisplay, type WebSafeFontMono, type WebSafeFontSans, type WebSafeFontSerif, datePlusDays, dateToday, hasPermission, isStrapiAttributeError, isStrapiStandardError, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|
package/dist/index.d.ts
CHANGED
|
@@ -1562,6 +1562,280 @@ type UtmMetaPageDocument = {
|
|
|
1562
1562
|
creative_variant_options: ComponentUtmOption[];
|
|
1563
1563
|
} & BaseDocument;
|
|
1564
1564
|
|
|
1565
|
+
type TeamworkResponseMetaPagination = {
|
|
1566
|
+
pageOffset: number;
|
|
1567
|
+
pageSize: number;
|
|
1568
|
+
count: number;
|
|
1569
|
+
hasMore: boolean;
|
|
1570
|
+
};
|
|
1571
|
+
type TeamworkResponseMeta = {
|
|
1572
|
+
page: TeamworkResponseMetaPagination;
|
|
1573
|
+
averageSpend?: number;
|
|
1574
|
+
limit?: number;
|
|
1575
|
+
nextCursor?: string;
|
|
1576
|
+
prevCursor?: string;
|
|
1577
|
+
totalCapacity?: number;
|
|
1578
|
+
};
|
|
1579
|
+
type TeamworkRelatedMeta = {
|
|
1580
|
+
id: number;
|
|
1581
|
+
type: string;
|
|
1582
|
+
};
|
|
1583
|
+
type TeamworkActivePages = {
|
|
1584
|
+
billing: boolean;
|
|
1585
|
+
forms: boolean;
|
|
1586
|
+
comments: boolean;
|
|
1587
|
+
files: boolean;
|
|
1588
|
+
links: boolean;
|
|
1589
|
+
messages: boolean;
|
|
1590
|
+
milestones: boolean;
|
|
1591
|
+
notebooks: boolean;
|
|
1592
|
+
riskRegister: boolean;
|
|
1593
|
+
tasks: boolean;
|
|
1594
|
+
list: boolean;
|
|
1595
|
+
board: boolean;
|
|
1596
|
+
gantt: boolean;
|
|
1597
|
+
table: boolean;
|
|
1598
|
+
time: boolean;
|
|
1599
|
+
finance: boolean;
|
|
1600
|
+
proofs: boolean;
|
|
1601
|
+
tickets: boolean;
|
|
1602
|
+
};
|
|
1603
|
+
type TeamworkLockdown = {
|
|
1604
|
+
id: number;
|
|
1605
|
+
items: TeamworkRelatedMeta[];
|
|
1606
|
+
updatedAt: string;
|
|
1607
|
+
user: TeamworkRelatedMeta;
|
|
1608
|
+
userID: number;
|
|
1609
|
+
};
|
|
1610
|
+
|
|
1611
|
+
type TeamworkProject = {
|
|
1612
|
+
id: number;
|
|
1613
|
+
name: string;
|
|
1614
|
+
description: string;
|
|
1615
|
+
type: string;
|
|
1616
|
+
status: string;
|
|
1617
|
+
subStatus: string;
|
|
1618
|
+
company: TeamworkRelatedMeta;
|
|
1619
|
+
tags: TeamworkRelatedMeta[];
|
|
1620
|
+
startAt: string | null;
|
|
1621
|
+
endAt: string | null;
|
|
1622
|
+
category: TeamworkRelatedMeta;
|
|
1623
|
+
ownedBy: number;
|
|
1624
|
+
update: TeamworkRelatedMeta;
|
|
1625
|
+
timeBudget: number | null;
|
|
1626
|
+
financialBudget: number | null;
|
|
1627
|
+
createdBy: number;
|
|
1628
|
+
createdAt: string;
|
|
1629
|
+
updatedAt: string;
|
|
1630
|
+
updatedBy: number;
|
|
1631
|
+
completedAt: string | null;
|
|
1632
|
+
completedBy: string | null;
|
|
1633
|
+
defaultPrivacy: string;
|
|
1634
|
+
activePages: TeamworkActivePages;
|
|
1635
|
+
directFileUploadsEnabled: boolean;
|
|
1636
|
+
harvestTimersEnabled: boolean;
|
|
1637
|
+
integrations: object;
|
|
1638
|
+
isOnBoardingProject: boolean;
|
|
1639
|
+
isSampleProject: boolean;
|
|
1640
|
+
logo: string | null;
|
|
1641
|
+
logoIcon: string | null;
|
|
1642
|
+
logoColor: string | null;
|
|
1643
|
+
notifyEveryone: boolean;
|
|
1644
|
+
allowNotifyAnyone: boolean;
|
|
1645
|
+
notifyCommentIncludeCreator: boolean;
|
|
1646
|
+
notifyTaskAssignee: boolean;
|
|
1647
|
+
overviewStartPage: string;
|
|
1648
|
+
privacyEnabled: boolean;
|
|
1649
|
+
projectOwner: TeamworkRelatedMeta;
|
|
1650
|
+
replyByEmailEnabled: boolean;
|
|
1651
|
+
showAnnouncement: boolean;
|
|
1652
|
+
announcement: string;
|
|
1653
|
+
skipWeekends: boolean;
|
|
1654
|
+
startPage: string;
|
|
1655
|
+
tasksStartPage: string;
|
|
1656
|
+
customfieldValues: TeamworkRelatedMeta[];
|
|
1657
|
+
isBillable: boolean;
|
|
1658
|
+
timelogRequiresTask: boolean;
|
|
1659
|
+
customFieldValueIds: number[] | null;
|
|
1660
|
+
customFieldValues: TeamworkRelatedMeta[];
|
|
1661
|
+
companyId: number;
|
|
1662
|
+
tagIds: number[] | null;
|
|
1663
|
+
startDate: null;
|
|
1664
|
+
endDate: null;
|
|
1665
|
+
categoryId: number | null;
|
|
1666
|
+
ownerId: number;
|
|
1667
|
+
updateId: number | null;
|
|
1668
|
+
timeBudgetId: number | null;
|
|
1669
|
+
financialBudgetId: number | null;
|
|
1670
|
+
projectOwnerId: number;
|
|
1671
|
+
};
|
|
1672
|
+
type TeamworkResponseMetaProjectStats = {
|
|
1673
|
+
noDate: number;
|
|
1674
|
+
late: number;
|
|
1675
|
+
upcoming: number;
|
|
1676
|
+
complete: number;
|
|
1677
|
+
active: number;
|
|
1678
|
+
count: number;
|
|
1679
|
+
today: number;
|
|
1680
|
+
archived: number;
|
|
1681
|
+
starred: number;
|
|
1682
|
+
current: number;
|
|
1683
|
+
};
|
|
1684
|
+
type TeamworkProjectResponseMeta = {
|
|
1685
|
+
projectStats?: TeamworkResponseMetaProjectStats;
|
|
1686
|
+
};
|
|
1687
|
+
type TeamworkProjectsResponse = {
|
|
1688
|
+
projects: TeamworkProject[];
|
|
1689
|
+
meta: TeamworkResponseMeta & TeamworkProjectResponseMeta;
|
|
1690
|
+
included: object;
|
|
1691
|
+
};
|
|
1692
|
+
type TeamworkProjectResponse = {
|
|
1693
|
+
project: TeamworkProject;
|
|
1694
|
+
meta: TeamworkResponseMeta & TeamworkProjectResponseMeta;
|
|
1695
|
+
included: object;
|
|
1696
|
+
};
|
|
1697
|
+
|
|
1698
|
+
type TeamworkTag = {
|
|
1699
|
+
id: number;
|
|
1700
|
+
projectId: number;
|
|
1701
|
+
project: TeamworkRelatedMeta;
|
|
1702
|
+
name: string;
|
|
1703
|
+
color: string;
|
|
1704
|
+
};
|
|
1705
|
+
type TeamworkTagResponseMeta = {};
|
|
1706
|
+
type TeamworkTagsResponse = {
|
|
1707
|
+
tags: TeamworkTag[];
|
|
1708
|
+
meta: TeamworkResponseMeta & TeamworkTagResponseMeta;
|
|
1709
|
+
included: object;
|
|
1710
|
+
};
|
|
1711
|
+
type TeamworkTagResponse = {
|
|
1712
|
+
tag: TeamworkTag;
|
|
1713
|
+
meta: TeamworkResponseMeta & TeamworkTagResponseMeta;
|
|
1714
|
+
included: object;
|
|
1715
|
+
};
|
|
1716
|
+
|
|
1717
|
+
type TeamworkTaskUserPermissions = {
|
|
1718
|
+
canEdit: boolean;
|
|
1719
|
+
canComplete: boolean;
|
|
1720
|
+
canLogTime: boolean;
|
|
1721
|
+
canViewEstTime: boolean;
|
|
1722
|
+
canAddSubtasks: boolean;
|
|
1723
|
+
};
|
|
1724
|
+
type TeamworkTaskCard = {
|
|
1725
|
+
id: number;
|
|
1726
|
+
status: string;
|
|
1727
|
+
archived: boolean;
|
|
1728
|
+
archivedAt: string | null;
|
|
1729
|
+
archivedBy: TeamworkRelatedMeta | null;
|
|
1730
|
+
column: TeamworkRelatedMeta;
|
|
1731
|
+
createdBy: TeamworkRelatedMeta;
|
|
1732
|
+
createdAt: string;
|
|
1733
|
+
deletedBy: TeamworkRelatedMeta | null;
|
|
1734
|
+
deletedAt: string | null;
|
|
1735
|
+
displayOrder: number;
|
|
1736
|
+
updatedAt: string;
|
|
1737
|
+
visible: boolean;
|
|
1738
|
+
};
|
|
1739
|
+
type TeamworkTask = {
|
|
1740
|
+
id: number;
|
|
1741
|
+
name: string;
|
|
1742
|
+
description: string;
|
|
1743
|
+
descriptionContentType: string;
|
|
1744
|
+
priority: string | null;
|
|
1745
|
+
hasDeskTickets: boolean;
|
|
1746
|
+
progress: number;
|
|
1747
|
+
displayOrder: number;
|
|
1748
|
+
decimalDisplayOrder: number;
|
|
1749
|
+
crmDealIds: number[] | null;
|
|
1750
|
+
tagIds: number[] | null;
|
|
1751
|
+
tags: TeamworkRelatedMeta[] | null;
|
|
1752
|
+
updatedAt: string | null;
|
|
1753
|
+
updatedBy: number | number;
|
|
1754
|
+
deletedAt: string | null;
|
|
1755
|
+
deletedBy: number | null;
|
|
1756
|
+
parentTask: TeamworkRelatedMeta | null;
|
|
1757
|
+
card: Record<string, TeamworkTaskCard> | null;
|
|
1758
|
+
isPrivate: 1 | 0;
|
|
1759
|
+
lockdown: Record<string, TeamworkLockdown> | null;
|
|
1760
|
+
status: string;
|
|
1761
|
+
tasklist: TeamworkRelatedMeta;
|
|
1762
|
+
startDate: string;
|
|
1763
|
+
dueDate: string;
|
|
1764
|
+
startDateOffset: number | null;
|
|
1765
|
+
dueDateOffset: number | null;
|
|
1766
|
+
originalDueDate: string;
|
|
1767
|
+
estimateMinutes: number;
|
|
1768
|
+
accumulatedEstimatedMinutes: number;
|
|
1769
|
+
assignees: TeamworkRelatedMeta[];
|
|
1770
|
+
commentFollowers: TeamworkRelatedMeta[];
|
|
1771
|
+
changeFollowers: TeamworkRelatedMeta[];
|
|
1772
|
+
completeFollowers: TeamworkRelatedMeta[];
|
|
1773
|
+
attachments: TeamworkRelatedMeta[];
|
|
1774
|
+
notify: boolean;
|
|
1775
|
+
isArchived: boolean;
|
|
1776
|
+
capacities: TeamworkRelatedMeta[] | null;
|
|
1777
|
+
proofs: TeamworkRelatedMeta[] | null;
|
|
1778
|
+
userPermissions: TeamworkTaskUserPermissions;
|
|
1779
|
+
createdBy: number;
|
|
1780
|
+
createdAt: string;
|
|
1781
|
+
sequence: TeamworkRelatedMeta[] | null;
|
|
1782
|
+
dateUpdated: string | null;
|
|
1783
|
+
parentTaskId: number;
|
|
1784
|
+
tasklistId: number;
|
|
1785
|
+
assigneeUserIds: number[] | null;
|
|
1786
|
+
assigneeUsers: TeamworkRelatedMeta[];
|
|
1787
|
+
assigneeCompanyIds: number[] | null;
|
|
1788
|
+
assigneeCompanies: TeamworkRelatedMeta[];
|
|
1789
|
+
assigneeTeamIds: number[] | null;
|
|
1790
|
+
assigneeTeams: TeamworkRelatedMeta[];
|
|
1791
|
+
createdByUserId: number;
|
|
1792
|
+
sequenceId: number | null;
|
|
1793
|
+
};
|
|
1794
|
+
type TeamworkTaskResponseMeta = {};
|
|
1795
|
+
type TeamworkTasksResponse = {
|
|
1796
|
+
tasks: TeamworkTask[];
|
|
1797
|
+
meta: TeamworkResponseMeta & TeamworkTaskResponseMeta;
|
|
1798
|
+
included: object;
|
|
1799
|
+
};
|
|
1800
|
+
type TeamworkTaskResponse = {
|
|
1801
|
+
task: TeamworkTask;
|
|
1802
|
+
meta: TeamworkResponseMeta & TeamworkTaskResponseMeta;
|
|
1803
|
+
included: object;
|
|
1804
|
+
};
|
|
1805
|
+
|
|
1806
|
+
type TeamworkTasklist = {
|
|
1807
|
+
id: number;
|
|
1808
|
+
name: string;
|
|
1809
|
+
description: string;
|
|
1810
|
+
displayOrder: number;
|
|
1811
|
+
projectId: number;
|
|
1812
|
+
project: TeamworkRelatedMeta;
|
|
1813
|
+
milestoneId: number | null;
|
|
1814
|
+
milestone: null;
|
|
1815
|
+
isPinned: boolean;
|
|
1816
|
+
isPrivate: boolean;
|
|
1817
|
+
lockdownId: number | null;
|
|
1818
|
+
status: string;
|
|
1819
|
+
defaultTaskId: number;
|
|
1820
|
+
defaultTask: TeamworkRelatedMeta;
|
|
1821
|
+
isBillable: boolean;
|
|
1822
|
+
tasklistBudget: TeamworkRelatedMeta | null;
|
|
1823
|
+
createdAt: string;
|
|
1824
|
+
updatedAt: string | null;
|
|
1825
|
+
icon: string | null;
|
|
1826
|
+
};
|
|
1827
|
+
type TeamworkTasklistResponseMeta = {};
|
|
1828
|
+
type TeamworkTasklistsResponse = {
|
|
1829
|
+
tasklists: TeamworkTasklist[];
|
|
1830
|
+
meta: TeamworkResponseMeta & TeamworkTasklistResponseMeta;
|
|
1831
|
+
included: object;
|
|
1832
|
+
};
|
|
1833
|
+
type TeamworkTasklistResponse = {
|
|
1834
|
+
tasklist: TeamworkTasklist;
|
|
1835
|
+
meta: TeamworkResponseMeta & TeamworkTasklistResponseMeta;
|
|
1836
|
+
included: object;
|
|
1837
|
+
};
|
|
1838
|
+
|
|
1565
1839
|
/**
|
|
1566
1840
|
* Attribute-based access control (ABAC) permissions
|
|
1567
1841
|
*
|
|
@@ -3743,4 +4017,4 @@ declare const IsValidOrUndefinedUrlUtmTerm: v.OptionalSchema<v.SchemaWithPipe<re
|
|
|
3743
4017
|
declare const IsValidUrlUtmId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_id is too short, it must be at least 1 characters">, 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: - _ .">]>;
|
|
3744
4018
|
declare const IsValidOrUndefinedUrlUtmId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_id is too short, it must be at least 1 characters">, 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>;
|
|
3745
4019
|
|
|
3746
|
-
export { type AuthorizedUserDocument, type BaseDocument, type BlockAnnouncementBar, type BlockBrandLogos, type BlockButtonGroup, type BlockContact, type BlockCtaLink, type BlockFaq, type BlockFullscreenContent, type BlockFullscreenContentType, type BlockTextDetails, type BlockVideoEmbed, type BlogPageDocument, type BlogPostBlock, type BlogPostDocument, type BrandStyleguideColor, type BrandStyleguideFont, CLIENT_ENTITY_KEYS, CLIENT_ENTITY_PERMISSIONS, CLIENT_ENTITY_SCOPES, type CareersPageDocument, type CategoryDocument, type ClientContentPillarDocument, type ClientDocument, type ClientEntityActions, type ClientEntityKey, type ClientEntityScope, type ClientMediaPlatformContentTypeDocument, type ClientMediaPlatformDocument, type ClientProjectDocument, type ClientProjectPhase, ClientProjectPhaseOptions, ClientProjectPhaseSelectOptions, type ClientProjectStatus, ClientProjectStatusOptions, type ClientReportDocument, type ClientStyleguideDocument, type ClientUserDocument, type ClientUserDocumentStatus, type ComponentBlockAnnouncementBar, type ComponentBlockBrandLogos, type ComponentBlockButtonGroup, type ComponentBlockContact, type ComponentBlockCtaLink, type ComponentBlockFaq, type ComponentBlockFullscreenContent, type ComponentBlockTextDetails, type ComponentBlockVideo, type ComponentBrandStyleguideColor, type ComponentBrandStyleguideFont, type ComponentFormDownload, type ComponentFormSelect, type ComponentMetaSocial, type ComponentOpenGraph, type ComponentSeoMeta, type ComponentSharedButton, type ComponentSharedLink, type ComponentSharedQuestionAnswer, type ComponentSharedRichTextBlock, type ComponentSlideContent, type ComponentSliderSettings, type ComponentSlideshow, type ComponentSlideshowSettings, type ComponentUtmOption, type ContentPillarDocument, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_PHONE, ERROR_MESSAGE_REGEX_URL_SLUG, ERROR_MESSAGE_REGEX_UTM_VALUE, type FAQPageDocument, type FormDownload, type FormDownloadKeys, type FormSelect, type FormSelectInputOption, type FormUID, type GCFlyTourDocument, type GCFlyTourSnapDocument, InvalidClientTermMin, InvalidClientTermNumber, InvalidCompanyName, InvalidCompanyNameMaxLength, InvalidCsvFileType, InvalidDestinationUrl, InvalidFirstName, InvalidFirstNameMaxLength, InvalidFullName, InvalidFullNameMaxLength, InvalidInputRobot, InvalidInstrustryName, InvalidInstrustryNameMaxLength, InvalidLastName, InvalidLastNameMaxLength, InvalidListOfUrls, InvalidLongStringMax, InvalidPhoneNumber, InvalidPhoneNumberType, InvalidPreferredName, InvalidPreferredNameMaxLength, InvalidProductInterestMaxLength, InvalidRangeValueOneToFive, InvalidRefPageMaxLength, InvalidResumeFileType, InvalidShortStringMax, InvalidUserMessage, InvalidUserMessageMaxLength, InvalidUserTitle, InvalidUserTitleMaxLength, InvalidUtmLink, IsValidBlocked, IsValidBlogPostStatus, IsValidCaptchaToken, IsValidClientClassification, IsValidClientClassificationOption, IsValidClientClassificationSelectOptions, IsValidClientProjectPhase, IsValidClientProjectStatus, IsValidClientTerm, IsValidClientUserScope, IsValidClientUserScopes, IsValidCompanyName, IsValidCompanyNameRequired, IsValidConfirmed, IsValidCost, IsValidCsvFile, IsValidDescription, IsValidDestinationUrl, IsValidFileReferenceId, IsValidFirstName, IsValidFullName, IsValidIndustryName, IsValidInteger, IsValidIsActive, IsValidIsBoolean, IsValidIsSecure, IsValidLabel, IsValidLastName, IsValidLongString, IsValidLongStringNoMin, IsValidMediaFile, IsValidMediaFileList, IsValidName, IsValidNumber, IsValidNumberOfEmployees, IsValidOrUndefinedBlocked, IsValidOrUndefinedBlogPostStatus, IsValidOrUndefinedBlogPostStatusFallback, IsValidOrUndefinedClientClassification, IsValidOrUndefinedClientProjectPhase, IsValidOrUndefinedClientProjectStatus, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedDescription, IsValidOrUndefinedDestinationUrl, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsBoolean, IsValidOrUndefinedIsSecure, IsValidOrUndefinedIsoDate, IsValidOrUndefinedIsoDateTime, IsValidOrUndefinedLabel, IsValidOrUndefinedLongString, IsValidOrUndefinedLongStringNoMin, IsValidOrUndefinedMetricInteger, IsValidOrUndefinedMetricNumber, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPhoneNumber, IsValidOrUndefinedProvider, IsValidOrUndefinedReferenceDocumentId, IsValidOrUndefinedReferenceDocumentIdList, IsValidOrUndefinedShortString, IsValidOrUndefinedShortStringNoMin, IsValidOrUndefinedSlug, IsValidOrUndefinedSlugNoMin, IsValidOrUndefinedStringList, IsValidOrUndefinedStringListTransformed, IsValidOrUndefinedStringSepListOfUrls, IsValidOrUndefinedUrl, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmKey, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserEmail, IsValidOrUndefinedUsername, IsValidOrUndefinedUtmCampaignKeyName, IsValidOrUndefinedUtmLink, IsValidOrUndefinedValue, IsValidPassword, IsValidPhoneNumberRequired, IsValidPositiveInteger, IsValidPreferredName, IsValidProductInterest, IsValidProvider, IsValidRangeValueOneToFive, IsValidRefPage, IsValidReferenceDocumentId, IsValidReferenceDocumentIdList, IsValidReferenceId, IsValidResumeFile, IsValidShortString, IsValidShortStringNoMin, IsValidSlug, IsValidStringList, IsValidStringListTransformed, IsValidStringSepListOfUrls, IsValidUrl, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlList, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmKey, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserConsent, IsValidUserEmail, IsValidUserMessage, IsValidUserMessageRequired, IsValidUserRole, IsValidUserTitle, IsValidUserTitleRequired, IsValidUsername, IsValidUtmCampaignKeyName, IsValidUtmLink, IsValidValue, IsoDateSchema, IsoDateTimeSchema, type LCRUDActions, 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, type LandingPageDocument, type LeadDocument, MAX_FILE_SIZE, MAX_FILE_SIZE_LABEL, type MediaContentTypeDocument, type MediaFormat, type MediaFormats, type MediaPlatformDocument, type MediaUploadDocument, type MetaSocial, type MetaSocialNetwork, type NewsletterSignupDocument, type OpenGraph, type PermissionDocument, type Permissions, type PolicyPageDocument, type ProductDocument, type ProductHighlightDocument, QuerySortBlogPosts, QuerySortCategories, QuerySortClientContentPillars, QuerySortClientMediaPlatformContentTypes, QuerySortClientMediaPlatforms, QuerySortClientProjects, QuerySortClientReports, QuerySortClientStyleguides, QuerySortClientUsers, QuerySortClients, QuerySortContentPillars, QuerySortEntities, QuerySortGCFlyTourSnaps, QuerySortGCFlyTours, QuerySortMediaContentType, QuerySortMediaPlatforms, QuerySortTeamMembers, QuerySortTeamworkProjectHealth, QuerySortUrlRedirects, QuerySortUsers, QuerySortUtmTrackingLinks, QueryStrapiByDocumentId, QueryStrapiByEmail, QueryStrapiById, QueryStrapiByName, QueryStrapiByPhone, QueryStrapiBySlug, QueryStrapiPaginated, QueryStrapiPaginatedUrlRedirects, QueryStrapiSearchBlogPosts, QueryStrapiSearchBlogPostsBySlug, QueryStrapiSearchCategories, QueryStrapiSearchClientContentPillars, QueryStrapiSearchClientMediaPlatformContentTypes, QueryStrapiSearchClientMediaPlatforms, QueryStrapiSearchClientProjects, QueryStrapiSearchClientReports, QueryStrapiSearchClientStyleguide, QueryStrapiSearchClients, QueryStrapiSearchContentPillars, QueryStrapiSearchGCFlyTourSnaps, QueryStrapiSearchGCFlyTours, QueryStrapiSearchMediaContentTypes, QueryStrapiSearchMediaPlatforms, QueryStrapiSearchTeamMembers, QueryStrapiSearchTeamworkProjectHealth, QueryStrapiSearchUtmTrackingLinks, QueryStrapiUrlRedirectsByFrom, QueryStrapiUsers, QueryStrapiUsersByIdentifier, REGEX_BRAND_COLOR_SLUG, REGEX_DOMAIN, REGEX_NANP_PHONE, REGEX_URL_SLUG, REGEX_UTM_VALUE, ROLE_PERMISSIONS, type ResumeDocument, type RichTextBlock, type RichTextBlockChildren, type RoleDocument, type RoleType, type RolesWithPermissions, SAssociateClientMediaPlatformContentTypesToMediaContentType, SAssociateClientToClientProjectDocument, SAssociateClientsToGCFlyTour, SAssociateMediaContentTypesToClientMediaPlatform, SAssociateMediaContentTypesToMediaPlatform, SAssociateMediaPlatformsToMediaContentType, SAuthConnectProviderConfirmation, SAuthConnectProviderRedirectSearch, SAuthRawAccessToken, SChangePassword, SConnectManyEntityRelation, type SConnectManyEntityRelationIn, SConnectOneEntityRelation, type SConnectOneEntityRelationIn, SCreateCategoryDocument, SCreateClientContentPillarDocument, SCreateClientDocument, SCreateClientMediaPlatformContentTypeDocument, SCreateClientMediaPlatformDocument, SCreateClientProjectDocument, SCreateClientReportDocument, SCreateClientStyleguideDocument, SCreateClientUserDocument, SCreateContentPillarDocument, SCreateGCFlyTourDocument, SCreateGCFlyTourSnapDocument, SCreateLeadDocument, SCreateMediaContentTypeDocument, SCreateMediaPlatformDocument, SCreateMultipleStrapiMediaUploadDocument, SCreateNewsletterSignup, SCreateNewsletterSignupDocument, SCreateResume, SCreateResumeInfo, SCreateResumeInfoDocument, SCreateStrapiMediaUploadDocument, SCreateUserDocument, SCreateUtmTrackingLinkDocument, SCreateUtmTrackingLinkDocumentRequest, SCreateUtmTrackingLinkParts, SDisconnectManyEntityRelation, type SDisconnectManyEntityRelationIn, SDisconnectOneEntityRelation, type SDisconnectOneEntityRelationIn, SEntityRelation, type SEntityRelationIn, SEntityRelationPosition, SEntityRelationPositionAfter, SEntityRelationPositionBefore, SEntityRelationPositionEnd, type SEntityRelationPositionIn, SEntityRelationPositionStart, SForgotUserPassword, SFormCreateMultipleUtmTrackingLinkDocuments, SLoginUser, SQueryListClientUserDocuments, SReadUserAccountByDocumentId, SReadUserAccountById, SReadUtmTrackingLinkDocumentByUrl, SRegisterUser, SRequestConfirmEmail, SResetUserPassword, SSetManyEntityRelation, type SSetManyEntityRelationIn, SSetOneEntityRelation, type SSetOneEntityRelationIn, SUpdateCategoryDocument, SUpdateCategoryDocumentRequest, SUpdateClientContentPillarDocument, SUpdateClientContentPillarDocumentRequest, SUpdateClientDocument, SUpdateClientDocumentRequest, SUpdateClientMediaPlatformContentTypeDocument, SUpdateClientMediaPlatformContentTypeDocumentRequest, SUpdateClientMediaPlatformDocument, SUpdateClientMediaPlatformDocumentRequest, SUpdateClientProjectDocument, SUpdateClientProjectDocumentRequest, SUpdateClientReportDocument, SUpdateClientReportDocumentRequest, SUpdateClientStyleguideDocument, SUpdateClientStyleguideDocumentRequest, SUpdateClientUserDocument, SUpdateClientUserDocumentRequest, SUpdateContentPillarDocument, SUpdateContentPillarDocumentRequest, SUpdateGCFlyTourDocument, SUpdateGCFlyTourDocumentRequest, SUpdateGCFlyTourSnapDocument, SUpdateGCFlyTourSnapDocumentRequest, SUpdateLeadDocument, SUpdateLeadRequest, SUpdateMediaContentTypeDocument, SUpdateMediaContentTypeDocumentRequest, SUpdateMediaPlatformDocument, SUpdateMediaPlatformDocumentRequest, SUpdateNewsletterSignupDocument, SUpdateNewsletterSignupRequest, SUpdateResumeInfo, SUpdateResumeInfoDocument, SUpdateResumeInfoRequest, SUpdateStrapiMediaFileInfo, SUpdateTrendsLikes, SUpdateUserAccount, SUpdateUserAccountFirstName, SUpdateUserAccountLastName, SUpdateUserAccountPreferredName, SUpdateUtmTrackingLinkDocument, SUpdateUtmTrackingLinkDocumentRequest, SUserToken, SUtmLinkBuilderPartCampaignDateOptions, type SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, SVerifyClientUserDocument, type SeoMeta, type SharedButton, type SharedLink, type SharedQuestionAnswer, type SharedRichTextBlock, SharpSpringSignUpToDownload, type SlideContent, type SlideType, type SliderBreakpoint, type SliderOrigin, type SliderSettings, type SliderSpacing, type Slideshow, type SlideshowComponentProps, type SlideshowComponentSlideSettings, type SlideshowMode, type SlideshowSettings, type StrapiAttributeErrorDetail, type StrapiAttributeErrorKey, type StrapiAttributeErrorResponse, type StrapiBgColorOptions, type StrapiDirection, type StrapiErrorDetail, type StrapiErrorResponse, type StrapiErrorResult, type StrapiGapSizes, type StrapiIconName, type StrapiIconPosition, type StrapiLinkReferrerPolicy, type StrapiLinkRel, type StrapiLinkTarget, type StrapiLinkType, type StrapiListResponse, type StrapiPagination, type StrapiResponseMeta, type StrapiResponseMetaWithPagination, type StrapiSingleResponse, type StrapiTextColorOptions, type StrapiThemeOptions, type TagDocument, type TeamMemberDocument, type TeamMemberGroup, type TeamMemberTier, type TeamPageDocument, type TeamworkProjectHealthProjectStatus, TeamworkProjectHealthProjectStatusOptions, TeamworkProjectHealthSelectSortOptions, type TeamworkProjectHealthSortKey, type TrendDocument, type UrlRedirectDocument, type UrlRedirectQueryParams, type UrlRedirectStatusCode, type UserAccountDocument, type UserAuthorizationLoginResponse, type UserAuthorizationSuccessResponse, type UserDocument, type UtmClassificationKey, type UtmMetaPageDocument, type UtmOption, type UtmSourceKey, type UtmTrackingLinkDocument, ValidGcDesiredContentOptions, ValidGcServiceOptions, ValidGcVideoServiceOptions, ValidJobRoleGroup, ValidNumberOfEmployeeOptions, ValidRatingRange5, type WebSafeFont, type WebSafeFontDisplay, type WebSafeFontMono, type WebSafeFontSans, type WebSafeFontSerif, datePlusDays, dateToday, hasPermission, isStrapiAttributeError, isStrapiStandardError, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|
|
4020
|
+
export { type AuthorizedUserDocument, type BaseDocument, type BlockAnnouncementBar, type BlockBrandLogos, type BlockButtonGroup, type BlockContact, type BlockCtaLink, type BlockFaq, type BlockFullscreenContent, type BlockFullscreenContentType, type BlockTextDetails, type BlockVideoEmbed, type BlogPageDocument, type BlogPostBlock, type BlogPostDocument, type BrandStyleguideColor, type BrandStyleguideFont, CLIENT_ENTITY_KEYS, CLIENT_ENTITY_PERMISSIONS, CLIENT_ENTITY_SCOPES, type CareersPageDocument, type CategoryDocument, type ClientContentPillarDocument, type ClientDocument, type ClientEntityActions, type ClientEntityKey, type ClientEntityScope, type ClientMediaPlatformContentTypeDocument, type ClientMediaPlatformDocument, type ClientProjectDocument, type ClientProjectPhase, ClientProjectPhaseOptions, ClientProjectPhaseSelectOptions, type ClientProjectStatus, ClientProjectStatusOptions, type ClientReportDocument, type ClientStyleguideDocument, type ClientUserDocument, type ClientUserDocumentStatus, type ComponentBlockAnnouncementBar, type ComponentBlockBrandLogos, type ComponentBlockButtonGroup, type ComponentBlockContact, type ComponentBlockCtaLink, type ComponentBlockFaq, type ComponentBlockFullscreenContent, type ComponentBlockTextDetails, type ComponentBlockVideo, type ComponentBrandStyleguideColor, type ComponentBrandStyleguideFont, type ComponentFormDownload, type ComponentFormSelect, type ComponentMetaSocial, type ComponentOpenGraph, type ComponentSeoMeta, type ComponentSharedButton, type ComponentSharedLink, type ComponentSharedQuestionAnswer, type ComponentSharedRichTextBlock, type ComponentSlideContent, type ComponentSliderSettings, type ComponentSlideshow, type ComponentSlideshowSettings, type ComponentUtmOption, type ContentPillarDocument, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_PHONE, ERROR_MESSAGE_REGEX_URL_SLUG, ERROR_MESSAGE_REGEX_UTM_VALUE, type FAQPageDocument, type FormDownload, type FormDownloadKeys, type FormSelect, type FormSelectInputOption, type FormUID, type GCFlyTourDocument, type GCFlyTourSnapDocument, InvalidClientTermMin, InvalidClientTermNumber, InvalidCompanyName, InvalidCompanyNameMaxLength, InvalidCsvFileType, InvalidDestinationUrl, InvalidFirstName, InvalidFirstNameMaxLength, InvalidFullName, InvalidFullNameMaxLength, InvalidInputRobot, InvalidInstrustryName, InvalidInstrustryNameMaxLength, InvalidLastName, InvalidLastNameMaxLength, InvalidListOfUrls, InvalidLongStringMax, InvalidPhoneNumber, InvalidPhoneNumberType, InvalidPreferredName, InvalidPreferredNameMaxLength, InvalidProductInterestMaxLength, InvalidRangeValueOneToFive, InvalidRefPageMaxLength, InvalidResumeFileType, InvalidShortStringMax, InvalidUserMessage, InvalidUserMessageMaxLength, InvalidUserTitle, InvalidUserTitleMaxLength, InvalidUtmLink, IsValidBlocked, IsValidBlogPostStatus, IsValidCaptchaToken, IsValidClientClassification, IsValidClientClassificationOption, IsValidClientClassificationSelectOptions, IsValidClientProjectPhase, IsValidClientProjectStatus, IsValidClientTerm, IsValidClientUserScope, IsValidClientUserScopes, IsValidCompanyName, IsValidCompanyNameRequired, IsValidConfirmed, IsValidCost, IsValidCsvFile, IsValidDescription, IsValidDestinationUrl, IsValidFileReferenceId, IsValidFirstName, IsValidFullName, IsValidIndustryName, IsValidInteger, IsValidIsActive, IsValidIsBoolean, IsValidIsSecure, IsValidLabel, IsValidLastName, IsValidLongString, IsValidLongStringNoMin, IsValidMediaFile, IsValidMediaFileList, IsValidName, IsValidNumber, IsValidNumberOfEmployees, IsValidOrUndefinedBlocked, IsValidOrUndefinedBlogPostStatus, IsValidOrUndefinedBlogPostStatusFallback, IsValidOrUndefinedClientClassification, IsValidOrUndefinedClientProjectPhase, IsValidOrUndefinedClientProjectStatus, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedDescription, IsValidOrUndefinedDestinationUrl, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsBoolean, IsValidOrUndefinedIsSecure, IsValidOrUndefinedIsoDate, IsValidOrUndefinedIsoDateTime, IsValidOrUndefinedLabel, IsValidOrUndefinedLongString, IsValidOrUndefinedLongStringNoMin, IsValidOrUndefinedMetricInteger, IsValidOrUndefinedMetricNumber, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPhoneNumber, IsValidOrUndefinedProvider, IsValidOrUndefinedReferenceDocumentId, IsValidOrUndefinedReferenceDocumentIdList, IsValidOrUndefinedShortString, IsValidOrUndefinedShortStringNoMin, IsValidOrUndefinedSlug, IsValidOrUndefinedSlugNoMin, IsValidOrUndefinedStringList, IsValidOrUndefinedStringListTransformed, IsValidOrUndefinedStringSepListOfUrls, IsValidOrUndefinedUrl, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmKey, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserEmail, IsValidOrUndefinedUsername, IsValidOrUndefinedUtmCampaignKeyName, IsValidOrUndefinedUtmLink, IsValidOrUndefinedValue, IsValidPassword, IsValidPhoneNumberRequired, IsValidPositiveInteger, IsValidPreferredName, IsValidProductInterest, IsValidProvider, IsValidRangeValueOneToFive, IsValidRefPage, IsValidReferenceDocumentId, IsValidReferenceDocumentIdList, IsValidReferenceId, IsValidResumeFile, IsValidShortString, IsValidShortStringNoMin, IsValidSlug, IsValidStringList, IsValidStringListTransformed, IsValidStringSepListOfUrls, IsValidUrl, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlList, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmKey, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserConsent, IsValidUserEmail, IsValidUserMessage, IsValidUserMessageRequired, IsValidUserRole, IsValidUserTitle, IsValidUserTitleRequired, IsValidUsername, IsValidUtmCampaignKeyName, IsValidUtmLink, IsValidValue, IsoDateSchema, IsoDateTimeSchema, type LCRUDActions, 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, type LandingPageDocument, type LeadDocument, MAX_FILE_SIZE, MAX_FILE_SIZE_LABEL, type MediaContentTypeDocument, type MediaFormat, type MediaFormats, type MediaPlatformDocument, type MediaUploadDocument, type MetaSocial, type MetaSocialNetwork, type NewsletterSignupDocument, type OpenGraph, type PermissionDocument, type Permissions, type PolicyPageDocument, type ProductDocument, type ProductHighlightDocument, QuerySortBlogPosts, QuerySortCategories, QuerySortClientContentPillars, QuerySortClientMediaPlatformContentTypes, QuerySortClientMediaPlatforms, QuerySortClientProjects, QuerySortClientReports, QuerySortClientStyleguides, QuerySortClientUsers, QuerySortClients, QuerySortContentPillars, QuerySortEntities, QuerySortGCFlyTourSnaps, QuerySortGCFlyTours, QuerySortMediaContentType, QuerySortMediaPlatforms, QuerySortTeamMembers, QuerySortTeamworkProjectHealth, QuerySortUrlRedirects, QuerySortUsers, QuerySortUtmTrackingLinks, QueryStrapiByDocumentId, QueryStrapiByEmail, QueryStrapiById, QueryStrapiByName, QueryStrapiByPhone, QueryStrapiBySlug, QueryStrapiPaginated, QueryStrapiPaginatedUrlRedirects, QueryStrapiSearchBlogPosts, QueryStrapiSearchBlogPostsBySlug, QueryStrapiSearchCategories, QueryStrapiSearchClientContentPillars, QueryStrapiSearchClientMediaPlatformContentTypes, QueryStrapiSearchClientMediaPlatforms, QueryStrapiSearchClientProjects, QueryStrapiSearchClientReports, QueryStrapiSearchClientStyleguide, QueryStrapiSearchClients, QueryStrapiSearchContentPillars, QueryStrapiSearchGCFlyTourSnaps, QueryStrapiSearchGCFlyTours, QueryStrapiSearchMediaContentTypes, QueryStrapiSearchMediaPlatforms, QueryStrapiSearchTeamMembers, QueryStrapiSearchTeamworkProjectHealth, QueryStrapiSearchUtmTrackingLinks, QueryStrapiUrlRedirectsByFrom, QueryStrapiUsers, QueryStrapiUsersByIdentifier, REGEX_BRAND_COLOR_SLUG, REGEX_DOMAIN, REGEX_NANP_PHONE, REGEX_URL_SLUG, REGEX_UTM_VALUE, ROLE_PERMISSIONS, type ResumeDocument, type RichTextBlock, type RichTextBlockChildren, type RoleDocument, type RoleType, type RolesWithPermissions, SAssociateClientMediaPlatformContentTypesToMediaContentType, SAssociateClientToClientProjectDocument, SAssociateClientsToGCFlyTour, SAssociateMediaContentTypesToClientMediaPlatform, SAssociateMediaContentTypesToMediaPlatform, SAssociateMediaPlatformsToMediaContentType, SAuthConnectProviderConfirmation, SAuthConnectProviderRedirectSearch, SAuthRawAccessToken, SChangePassword, SConnectManyEntityRelation, type SConnectManyEntityRelationIn, SConnectOneEntityRelation, type SConnectOneEntityRelationIn, SCreateCategoryDocument, SCreateClientContentPillarDocument, SCreateClientDocument, SCreateClientMediaPlatformContentTypeDocument, SCreateClientMediaPlatformDocument, SCreateClientProjectDocument, SCreateClientReportDocument, SCreateClientStyleguideDocument, SCreateClientUserDocument, SCreateContentPillarDocument, SCreateGCFlyTourDocument, SCreateGCFlyTourSnapDocument, SCreateLeadDocument, SCreateMediaContentTypeDocument, SCreateMediaPlatformDocument, SCreateMultipleStrapiMediaUploadDocument, SCreateNewsletterSignup, SCreateNewsletterSignupDocument, SCreateResume, SCreateResumeInfo, SCreateResumeInfoDocument, SCreateStrapiMediaUploadDocument, SCreateUserDocument, SCreateUtmTrackingLinkDocument, SCreateUtmTrackingLinkDocumentRequest, SCreateUtmTrackingLinkParts, SDisconnectManyEntityRelation, type SDisconnectManyEntityRelationIn, SDisconnectOneEntityRelation, type SDisconnectOneEntityRelationIn, SEntityRelation, type SEntityRelationIn, SEntityRelationPosition, SEntityRelationPositionAfter, SEntityRelationPositionBefore, SEntityRelationPositionEnd, type SEntityRelationPositionIn, SEntityRelationPositionStart, SForgotUserPassword, SFormCreateMultipleUtmTrackingLinkDocuments, SLoginUser, SQueryListClientUserDocuments, SReadUserAccountByDocumentId, SReadUserAccountById, SReadUtmTrackingLinkDocumentByUrl, SRegisterUser, SRequestConfirmEmail, SResetUserPassword, SSetManyEntityRelation, type SSetManyEntityRelationIn, SSetOneEntityRelation, type SSetOneEntityRelationIn, SUpdateCategoryDocument, SUpdateCategoryDocumentRequest, SUpdateClientContentPillarDocument, SUpdateClientContentPillarDocumentRequest, SUpdateClientDocument, SUpdateClientDocumentRequest, SUpdateClientMediaPlatformContentTypeDocument, SUpdateClientMediaPlatformContentTypeDocumentRequest, SUpdateClientMediaPlatformDocument, SUpdateClientMediaPlatformDocumentRequest, SUpdateClientProjectDocument, SUpdateClientProjectDocumentRequest, SUpdateClientReportDocument, SUpdateClientReportDocumentRequest, SUpdateClientStyleguideDocument, SUpdateClientStyleguideDocumentRequest, SUpdateClientUserDocument, SUpdateClientUserDocumentRequest, SUpdateContentPillarDocument, SUpdateContentPillarDocumentRequest, SUpdateGCFlyTourDocument, SUpdateGCFlyTourDocumentRequest, SUpdateGCFlyTourSnapDocument, SUpdateGCFlyTourSnapDocumentRequest, SUpdateLeadDocument, SUpdateLeadRequest, SUpdateMediaContentTypeDocument, SUpdateMediaContentTypeDocumentRequest, SUpdateMediaPlatformDocument, SUpdateMediaPlatformDocumentRequest, SUpdateNewsletterSignupDocument, SUpdateNewsletterSignupRequest, SUpdateResumeInfo, SUpdateResumeInfoDocument, SUpdateResumeInfoRequest, SUpdateStrapiMediaFileInfo, SUpdateTrendsLikes, SUpdateUserAccount, SUpdateUserAccountFirstName, SUpdateUserAccountLastName, SUpdateUserAccountPreferredName, SUpdateUtmTrackingLinkDocument, SUpdateUtmTrackingLinkDocumentRequest, SUserToken, SUtmLinkBuilderPartCampaignDateOptions, type SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, SVerifyClientUserDocument, type SeoMeta, type SharedButton, type SharedLink, type SharedQuestionAnswer, type SharedRichTextBlock, SharpSpringSignUpToDownload, type SlideContent, type SlideType, type SliderBreakpoint, type SliderOrigin, type SliderSettings, type SliderSpacing, type Slideshow, type SlideshowComponentProps, type SlideshowComponentSlideSettings, type SlideshowMode, type SlideshowSettings, type StrapiAttributeErrorDetail, type StrapiAttributeErrorKey, type StrapiAttributeErrorResponse, type StrapiBgColorOptions, type StrapiDirection, type StrapiErrorDetail, type StrapiErrorResponse, type StrapiErrorResult, type StrapiGapSizes, type StrapiIconName, type StrapiIconPosition, type StrapiLinkReferrerPolicy, type StrapiLinkRel, type StrapiLinkTarget, type StrapiLinkType, type StrapiListResponse, type StrapiPagination, type StrapiResponseMeta, type StrapiResponseMetaWithPagination, type StrapiSingleResponse, type StrapiTextColorOptions, type StrapiThemeOptions, type TagDocument, type TeamMemberDocument, type TeamMemberGroup, type TeamMemberTier, type TeamPageDocument, type TeamworkActivePages, type TeamworkLockdown, type TeamworkProject, type TeamworkProjectHealthProjectStatus, TeamworkProjectHealthProjectStatusOptions, TeamworkProjectHealthSelectSortOptions, type TeamworkProjectHealthSortKey, type TeamworkProjectResponse, type TeamworkProjectResponseMeta, type TeamworkProjectsResponse, type TeamworkRelatedMeta, type TeamworkResponseMeta, type TeamworkResponseMetaPagination, type TeamworkResponseMetaProjectStats, type TeamworkTag, type TeamworkTagResponse, type TeamworkTagResponseMeta, type TeamworkTagsResponse, type TeamworkTask, type TeamworkTaskCard, type TeamworkTaskResponse, type TeamworkTaskResponseMeta, type TeamworkTaskUserPermissions, type TeamworkTasklist, type TeamworkTasklistResponse, type TeamworkTasklistResponseMeta, type TeamworkTasklistsResponse, type TeamworkTasksResponse, type TrendDocument, type UrlRedirectDocument, type UrlRedirectQueryParams, type UrlRedirectStatusCode, type UserAccountDocument, type UserAuthorizationLoginResponse, type UserAuthorizationSuccessResponse, type UserDocument, type UtmClassificationKey, type UtmMetaPageDocument, type UtmOption, type UtmSourceKey, type UtmTrackingLinkDocument, ValidGcDesiredContentOptions, ValidGcServiceOptions, ValidGcVideoServiceOptions, ValidJobRoleGroup, ValidNumberOfEmployeeOptions, ValidRatingRange5, type WebSafeFont, type WebSafeFontDisplay, type WebSafeFontMono, type WebSafeFontSans, type WebSafeFontSerif, datePlusDays, dateToday, hasPermission, isStrapiAttributeError, isStrapiStandardError, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getcommunity/gc-validators",
|
|
3
3
|
"description": "Schema Validator for GetCommunity types",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.157",
|
|
5
5
|
"author": "Joey Grable <joey@getcommunity.com> (https://joeygrable.com)",
|
|
6
6
|
"contributors": [],
|
|
7
7
|
"main": "dist/index.js",
|