@supernova-studio/model 0.18.0 → 0.19.1
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.mts +190 -1
- package/dist/index.d.ts +190 -1
- package/dist/index.js +7 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/multiplayer/documentation-page-room.ts +8 -2
package/dist/index.d.mts
CHANGED
|
@@ -97663,6 +97663,195 @@ declare const DocumentationPageRoom: z.ZodObject<{
|
|
|
97663
97663
|
type DocumentationPageRoom = z.infer<typeof DocumentationPageRoom>;
|
|
97664
97664
|
type CreateDocumentationPageRoom = DbCreateInputOmit<DocumentationPageRoom>;
|
|
97665
97665
|
type UpdateDocumentationPageRoom = DbUpdate<DocumentationPageRoom>;
|
|
97666
|
+
type PageBlockEditorModel = z.infer<typeof PageBlockEditorModel>;
|
|
97667
|
+
declare const PageBlockEditorModel: z.ZodObject<{
|
|
97668
|
+
id: z.ZodString;
|
|
97669
|
+
data: z.ZodObject<{
|
|
97670
|
+
packageId: z.ZodString;
|
|
97671
|
+
variantId: z.ZodOptional<z.ZodString>;
|
|
97672
|
+
indentLevel: z.ZodNumber;
|
|
97673
|
+
appearance: z.ZodOptional<z.ZodObject<{
|
|
97674
|
+
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
97675
|
+
value: z.ZodString;
|
|
97676
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
97677
|
+
}, "strip", z.ZodTypeAny, {
|
|
97678
|
+
value: string;
|
|
97679
|
+
referencedTokenId?: string | undefined;
|
|
97680
|
+
}, {
|
|
97681
|
+
value: string;
|
|
97682
|
+
referencedTokenId?: string | undefined;
|
|
97683
|
+
}>>;
|
|
97684
|
+
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
97685
|
+
}, "strip", z.ZodTypeAny, {
|
|
97686
|
+
itemBackgroundColor?: {
|
|
97687
|
+
value: string;
|
|
97688
|
+
referencedTokenId?: string | undefined;
|
|
97689
|
+
} | undefined;
|
|
97690
|
+
numberOfColumns?: number | undefined;
|
|
97691
|
+
}, {
|
|
97692
|
+
itemBackgroundColor?: {
|
|
97693
|
+
value: string;
|
|
97694
|
+
referencedTokenId?: string | undefined;
|
|
97695
|
+
} | undefined;
|
|
97696
|
+
numberOfColumns?: number | undefined;
|
|
97697
|
+
}>>;
|
|
97698
|
+
items: z.ZodArray<z.ZodObject<{
|
|
97699
|
+
id: z.ZodString;
|
|
97700
|
+
linksTo: z.ZodOptional<z.ZodObject<{
|
|
97701
|
+
type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
|
|
97702
|
+
documentationItemId: z.ZodOptional<z.ZodString>;
|
|
97703
|
+
pageHeadingId: z.ZodOptional<z.ZodString>;
|
|
97704
|
+
url: z.ZodOptional<z.ZodString>;
|
|
97705
|
+
openInNewTab: z.ZodOptional<z.ZodBoolean>;
|
|
97706
|
+
}, "strip", z.ZodTypeAny, {
|
|
97707
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
97708
|
+
documentationItemId?: string | undefined;
|
|
97709
|
+
pageHeadingId?: string | undefined;
|
|
97710
|
+
url?: string | undefined;
|
|
97711
|
+
openInNewTab?: boolean | undefined;
|
|
97712
|
+
}, {
|
|
97713
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
97714
|
+
documentationItemId?: string | undefined;
|
|
97715
|
+
pageHeadingId?: string | undefined;
|
|
97716
|
+
url?: string | undefined;
|
|
97717
|
+
openInNewTab?: boolean | undefined;
|
|
97718
|
+
}>>;
|
|
97719
|
+
props: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
|
|
97720
|
+
value: z.ZodAny;
|
|
97721
|
+
}, "strip", z.ZodTypeAny, {
|
|
97722
|
+
value?: any;
|
|
97723
|
+
}, {
|
|
97724
|
+
value?: any;
|
|
97725
|
+
}>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
97726
|
+
}, "strip", z.ZodTypeAny, {
|
|
97727
|
+
id: string;
|
|
97728
|
+
props: Record<string, {
|
|
97729
|
+
value?: any;
|
|
97730
|
+
} & Record<string, any>>;
|
|
97731
|
+
linksTo?: {
|
|
97732
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
97733
|
+
documentationItemId?: string | undefined;
|
|
97734
|
+
pageHeadingId?: string | undefined;
|
|
97735
|
+
url?: string | undefined;
|
|
97736
|
+
openInNewTab?: boolean | undefined;
|
|
97737
|
+
} | undefined;
|
|
97738
|
+
}, {
|
|
97739
|
+
id: string;
|
|
97740
|
+
props: Record<string, {
|
|
97741
|
+
value?: any;
|
|
97742
|
+
} & Record<string, any>>;
|
|
97743
|
+
linksTo?: {
|
|
97744
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
97745
|
+
documentationItemId?: string | undefined;
|
|
97746
|
+
pageHeadingId?: string | undefined;
|
|
97747
|
+
url?: string | undefined;
|
|
97748
|
+
openInNewTab?: boolean | undefined;
|
|
97749
|
+
} | undefined;
|
|
97750
|
+
}>, "many">;
|
|
97751
|
+
}, "strip", z.ZodTypeAny, {
|
|
97752
|
+
items: {
|
|
97753
|
+
id: string;
|
|
97754
|
+
props: Record<string, {
|
|
97755
|
+
value?: any;
|
|
97756
|
+
} & Record<string, any>>;
|
|
97757
|
+
linksTo?: {
|
|
97758
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
97759
|
+
documentationItemId?: string | undefined;
|
|
97760
|
+
pageHeadingId?: string | undefined;
|
|
97761
|
+
url?: string | undefined;
|
|
97762
|
+
openInNewTab?: boolean | undefined;
|
|
97763
|
+
} | undefined;
|
|
97764
|
+
}[];
|
|
97765
|
+
packageId: string;
|
|
97766
|
+
indentLevel: number;
|
|
97767
|
+
variantId?: string | undefined;
|
|
97768
|
+
appearance?: {
|
|
97769
|
+
itemBackgroundColor?: {
|
|
97770
|
+
value: string;
|
|
97771
|
+
referencedTokenId?: string | undefined;
|
|
97772
|
+
} | undefined;
|
|
97773
|
+
numberOfColumns?: number | undefined;
|
|
97774
|
+
} | undefined;
|
|
97775
|
+
}, {
|
|
97776
|
+
items: {
|
|
97777
|
+
id: string;
|
|
97778
|
+
props: Record<string, {
|
|
97779
|
+
value?: any;
|
|
97780
|
+
} & Record<string, any>>;
|
|
97781
|
+
linksTo?: {
|
|
97782
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
97783
|
+
documentationItemId?: string | undefined;
|
|
97784
|
+
pageHeadingId?: string | undefined;
|
|
97785
|
+
url?: string | undefined;
|
|
97786
|
+
openInNewTab?: boolean | undefined;
|
|
97787
|
+
} | undefined;
|
|
97788
|
+
}[];
|
|
97789
|
+
packageId: string;
|
|
97790
|
+
indentLevel: number;
|
|
97791
|
+
variantId?: string | undefined;
|
|
97792
|
+
appearance?: {
|
|
97793
|
+
itemBackgroundColor?: {
|
|
97794
|
+
value: string;
|
|
97795
|
+
referencedTokenId?: string | undefined;
|
|
97796
|
+
} | undefined;
|
|
97797
|
+
numberOfColumns?: number | undefined;
|
|
97798
|
+
} | undefined;
|
|
97799
|
+
}>;
|
|
97800
|
+
}, "strip", z.ZodTypeAny, {
|
|
97801
|
+
id: string;
|
|
97802
|
+
data: {
|
|
97803
|
+
items: {
|
|
97804
|
+
id: string;
|
|
97805
|
+
props: Record<string, {
|
|
97806
|
+
value?: any;
|
|
97807
|
+
} & Record<string, any>>;
|
|
97808
|
+
linksTo?: {
|
|
97809
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
97810
|
+
documentationItemId?: string | undefined;
|
|
97811
|
+
pageHeadingId?: string | undefined;
|
|
97812
|
+
url?: string | undefined;
|
|
97813
|
+
openInNewTab?: boolean | undefined;
|
|
97814
|
+
} | undefined;
|
|
97815
|
+
}[];
|
|
97816
|
+
packageId: string;
|
|
97817
|
+
indentLevel: number;
|
|
97818
|
+
variantId?: string | undefined;
|
|
97819
|
+
appearance?: {
|
|
97820
|
+
itemBackgroundColor?: {
|
|
97821
|
+
value: string;
|
|
97822
|
+
referencedTokenId?: string | undefined;
|
|
97823
|
+
} | undefined;
|
|
97824
|
+
numberOfColumns?: number | undefined;
|
|
97825
|
+
} | undefined;
|
|
97826
|
+
};
|
|
97827
|
+
}, {
|
|
97828
|
+
id: string;
|
|
97829
|
+
data: {
|
|
97830
|
+
items: {
|
|
97831
|
+
id: string;
|
|
97832
|
+
props: Record<string, {
|
|
97833
|
+
value?: any;
|
|
97834
|
+
} & Record<string, any>>;
|
|
97835
|
+
linksTo?: {
|
|
97836
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
97837
|
+
documentationItemId?: string | undefined;
|
|
97838
|
+
pageHeadingId?: string | undefined;
|
|
97839
|
+
url?: string | undefined;
|
|
97840
|
+
openInNewTab?: boolean | undefined;
|
|
97841
|
+
} | undefined;
|
|
97842
|
+
}[];
|
|
97843
|
+
packageId: string;
|
|
97844
|
+
indentLevel: number;
|
|
97845
|
+
variantId?: string | undefined;
|
|
97846
|
+
appearance?: {
|
|
97847
|
+
itemBackgroundColor?: {
|
|
97848
|
+
value: string;
|
|
97849
|
+
referencedTokenId?: string | undefined;
|
|
97850
|
+
} | undefined;
|
|
97851
|
+
numberOfColumns?: number | undefined;
|
|
97852
|
+
} | undefined;
|
|
97853
|
+
};
|
|
97854
|
+
}>;
|
|
97666
97855
|
declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
97667
97856
|
page: z.ZodObject<{
|
|
97668
97857
|
id: z.ZodString;
|
|
@@ -106319,4 +106508,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
106319
106508
|
}>;
|
|
106320
106509
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
106321
106510
|
|
|
106322
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, type Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePublishedDocPage, type CreateTheme, CreateWorkspaceInput, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, type DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationItemConfiguration, DocumentationItemHeader, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationPage, DocumentationPageAsset, DocumentationPageAssetType, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageFrameAsset, DocumentationPageGroup, DocumentationPageImageAsset, DocumentationPageRoom, DocumentationPageRoomInitialState, DocumentationPageRoomRoomUpdate, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupData, ElementGroupElementData, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyValue, type ElementPropertyValueDiff, type ElementView, type ElementViewBaseColumnType, type ElementViewBasePropertyColumn, type ElementViewColumn, type ElementViewColumnSharedAttributes, type ElementViewColumnType, type ElementViewPropertyDefinitionColumn, type ElementViewThemeColumn, Entity, type ExplicitPartial, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDestinationSnDocs, ExporterDetails, ExporterJob, ExporterJobDestination, ExporterJobFindByFilter, ExporterJobLogEntry, ExporterJobLogEntryType, ExporterJobResult, ExporterJobResultDocsDestination, ExporterJobResultPullRequestDestination, ExporterJobResultS3Destination, ExporterJobStatus, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, IntegrationAuthType, type IntegrationToken, IntegrationTokenSchema, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, NpmRegistryTypeWithoutAzure, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetType, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageReference, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, type PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, colorValueFormatDescription, colorValueRegex, defaultDocumentationItemConfiguration, defaultDocumentationItemHeader, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|
|
106511
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, type Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePublishedDocPage, type CreateTheme, CreateWorkspaceInput, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, type DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationItemConfiguration, DocumentationItemHeader, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationPage, DocumentationPageAsset, DocumentationPageAssetType, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageFrameAsset, DocumentationPageGroup, DocumentationPageImageAsset, DocumentationPageRoom, DocumentationPageRoomInitialState, DocumentationPageRoomRoomUpdate, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupData, ElementGroupElementData, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyValue, type ElementPropertyValueDiff, type ElementView, type ElementViewBaseColumnType, type ElementViewBasePropertyColumn, type ElementViewColumn, type ElementViewColumnSharedAttributes, type ElementViewColumnType, type ElementViewPropertyDefinitionColumn, type ElementViewThemeColumn, Entity, type ExplicitPartial, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDestinationSnDocs, ExporterDetails, ExporterJob, ExporterJobDestination, ExporterJobFindByFilter, ExporterJobLogEntry, ExporterJobLogEntryType, ExporterJobResult, ExporterJobResultDocsDestination, ExporterJobResultPullRequestDestination, ExporterJobResultS3Destination, ExporterJobStatus, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, IntegrationAuthType, type IntegrationToken, IntegrationTokenSchema, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, NpmRegistryTypeWithoutAzure, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetType, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockEditorModel, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageReference, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, type PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, colorValueFormatDescription, colorValueRegex, defaultDocumentationItemConfiguration, defaultDocumentationItemHeader, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|
package/dist/index.d.ts
CHANGED
|
@@ -97663,6 +97663,195 @@ declare const DocumentationPageRoom: z.ZodObject<{
|
|
|
97663
97663
|
type DocumentationPageRoom = z.infer<typeof DocumentationPageRoom>;
|
|
97664
97664
|
type CreateDocumentationPageRoom = DbCreateInputOmit<DocumentationPageRoom>;
|
|
97665
97665
|
type UpdateDocumentationPageRoom = DbUpdate<DocumentationPageRoom>;
|
|
97666
|
+
type PageBlockEditorModel = z.infer<typeof PageBlockEditorModel>;
|
|
97667
|
+
declare const PageBlockEditorModel: z.ZodObject<{
|
|
97668
|
+
id: z.ZodString;
|
|
97669
|
+
data: z.ZodObject<{
|
|
97670
|
+
packageId: z.ZodString;
|
|
97671
|
+
variantId: z.ZodOptional<z.ZodString>;
|
|
97672
|
+
indentLevel: z.ZodNumber;
|
|
97673
|
+
appearance: z.ZodOptional<z.ZodObject<{
|
|
97674
|
+
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
97675
|
+
value: z.ZodString;
|
|
97676
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
97677
|
+
}, "strip", z.ZodTypeAny, {
|
|
97678
|
+
value: string;
|
|
97679
|
+
referencedTokenId?: string | undefined;
|
|
97680
|
+
}, {
|
|
97681
|
+
value: string;
|
|
97682
|
+
referencedTokenId?: string | undefined;
|
|
97683
|
+
}>>;
|
|
97684
|
+
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
97685
|
+
}, "strip", z.ZodTypeAny, {
|
|
97686
|
+
itemBackgroundColor?: {
|
|
97687
|
+
value: string;
|
|
97688
|
+
referencedTokenId?: string | undefined;
|
|
97689
|
+
} | undefined;
|
|
97690
|
+
numberOfColumns?: number | undefined;
|
|
97691
|
+
}, {
|
|
97692
|
+
itemBackgroundColor?: {
|
|
97693
|
+
value: string;
|
|
97694
|
+
referencedTokenId?: string | undefined;
|
|
97695
|
+
} | undefined;
|
|
97696
|
+
numberOfColumns?: number | undefined;
|
|
97697
|
+
}>>;
|
|
97698
|
+
items: z.ZodArray<z.ZodObject<{
|
|
97699
|
+
id: z.ZodString;
|
|
97700
|
+
linksTo: z.ZodOptional<z.ZodObject<{
|
|
97701
|
+
type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
|
|
97702
|
+
documentationItemId: z.ZodOptional<z.ZodString>;
|
|
97703
|
+
pageHeadingId: z.ZodOptional<z.ZodString>;
|
|
97704
|
+
url: z.ZodOptional<z.ZodString>;
|
|
97705
|
+
openInNewTab: z.ZodOptional<z.ZodBoolean>;
|
|
97706
|
+
}, "strip", z.ZodTypeAny, {
|
|
97707
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
97708
|
+
documentationItemId?: string | undefined;
|
|
97709
|
+
pageHeadingId?: string | undefined;
|
|
97710
|
+
url?: string | undefined;
|
|
97711
|
+
openInNewTab?: boolean | undefined;
|
|
97712
|
+
}, {
|
|
97713
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
97714
|
+
documentationItemId?: string | undefined;
|
|
97715
|
+
pageHeadingId?: string | undefined;
|
|
97716
|
+
url?: string | undefined;
|
|
97717
|
+
openInNewTab?: boolean | undefined;
|
|
97718
|
+
}>>;
|
|
97719
|
+
props: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
|
|
97720
|
+
value: z.ZodAny;
|
|
97721
|
+
}, "strip", z.ZodTypeAny, {
|
|
97722
|
+
value?: any;
|
|
97723
|
+
}, {
|
|
97724
|
+
value?: any;
|
|
97725
|
+
}>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
97726
|
+
}, "strip", z.ZodTypeAny, {
|
|
97727
|
+
id: string;
|
|
97728
|
+
props: Record<string, {
|
|
97729
|
+
value?: any;
|
|
97730
|
+
} & Record<string, any>>;
|
|
97731
|
+
linksTo?: {
|
|
97732
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
97733
|
+
documentationItemId?: string | undefined;
|
|
97734
|
+
pageHeadingId?: string | undefined;
|
|
97735
|
+
url?: string | undefined;
|
|
97736
|
+
openInNewTab?: boolean | undefined;
|
|
97737
|
+
} | undefined;
|
|
97738
|
+
}, {
|
|
97739
|
+
id: string;
|
|
97740
|
+
props: Record<string, {
|
|
97741
|
+
value?: any;
|
|
97742
|
+
} & Record<string, any>>;
|
|
97743
|
+
linksTo?: {
|
|
97744
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
97745
|
+
documentationItemId?: string | undefined;
|
|
97746
|
+
pageHeadingId?: string | undefined;
|
|
97747
|
+
url?: string | undefined;
|
|
97748
|
+
openInNewTab?: boolean | undefined;
|
|
97749
|
+
} | undefined;
|
|
97750
|
+
}>, "many">;
|
|
97751
|
+
}, "strip", z.ZodTypeAny, {
|
|
97752
|
+
items: {
|
|
97753
|
+
id: string;
|
|
97754
|
+
props: Record<string, {
|
|
97755
|
+
value?: any;
|
|
97756
|
+
} & Record<string, any>>;
|
|
97757
|
+
linksTo?: {
|
|
97758
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
97759
|
+
documentationItemId?: string | undefined;
|
|
97760
|
+
pageHeadingId?: string | undefined;
|
|
97761
|
+
url?: string | undefined;
|
|
97762
|
+
openInNewTab?: boolean | undefined;
|
|
97763
|
+
} | undefined;
|
|
97764
|
+
}[];
|
|
97765
|
+
packageId: string;
|
|
97766
|
+
indentLevel: number;
|
|
97767
|
+
variantId?: string | undefined;
|
|
97768
|
+
appearance?: {
|
|
97769
|
+
itemBackgroundColor?: {
|
|
97770
|
+
value: string;
|
|
97771
|
+
referencedTokenId?: string | undefined;
|
|
97772
|
+
} | undefined;
|
|
97773
|
+
numberOfColumns?: number | undefined;
|
|
97774
|
+
} | undefined;
|
|
97775
|
+
}, {
|
|
97776
|
+
items: {
|
|
97777
|
+
id: string;
|
|
97778
|
+
props: Record<string, {
|
|
97779
|
+
value?: any;
|
|
97780
|
+
} & Record<string, any>>;
|
|
97781
|
+
linksTo?: {
|
|
97782
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
97783
|
+
documentationItemId?: string | undefined;
|
|
97784
|
+
pageHeadingId?: string | undefined;
|
|
97785
|
+
url?: string | undefined;
|
|
97786
|
+
openInNewTab?: boolean | undefined;
|
|
97787
|
+
} | undefined;
|
|
97788
|
+
}[];
|
|
97789
|
+
packageId: string;
|
|
97790
|
+
indentLevel: number;
|
|
97791
|
+
variantId?: string | undefined;
|
|
97792
|
+
appearance?: {
|
|
97793
|
+
itemBackgroundColor?: {
|
|
97794
|
+
value: string;
|
|
97795
|
+
referencedTokenId?: string | undefined;
|
|
97796
|
+
} | undefined;
|
|
97797
|
+
numberOfColumns?: number | undefined;
|
|
97798
|
+
} | undefined;
|
|
97799
|
+
}>;
|
|
97800
|
+
}, "strip", z.ZodTypeAny, {
|
|
97801
|
+
id: string;
|
|
97802
|
+
data: {
|
|
97803
|
+
items: {
|
|
97804
|
+
id: string;
|
|
97805
|
+
props: Record<string, {
|
|
97806
|
+
value?: any;
|
|
97807
|
+
} & Record<string, any>>;
|
|
97808
|
+
linksTo?: {
|
|
97809
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
97810
|
+
documentationItemId?: string | undefined;
|
|
97811
|
+
pageHeadingId?: string | undefined;
|
|
97812
|
+
url?: string | undefined;
|
|
97813
|
+
openInNewTab?: boolean | undefined;
|
|
97814
|
+
} | undefined;
|
|
97815
|
+
}[];
|
|
97816
|
+
packageId: string;
|
|
97817
|
+
indentLevel: number;
|
|
97818
|
+
variantId?: string | undefined;
|
|
97819
|
+
appearance?: {
|
|
97820
|
+
itemBackgroundColor?: {
|
|
97821
|
+
value: string;
|
|
97822
|
+
referencedTokenId?: string | undefined;
|
|
97823
|
+
} | undefined;
|
|
97824
|
+
numberOfColumns?: number | undefined;
|
|
97825
|
+
} | undefined;
|
|
97826
|
+
};
|
|
97827
|
+
}, {
|
|
97828
|
+
id: string;
|
|
97829
|
+
data: {
|
|
97830
|
+
items: {
|
|
97831
|
+
id: string;
|
|
97832
|
+
props: Record<string, {
|
|
97833
|
+
value?: any;
|
|
97834
|
+
} & Record<string, any>>;
|
|
97835
|
+
linksTo?: {
|
|
97836
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
97837
|
+
documentationItemId?: string | undefined;
|
|
97838
|
+
pageHeadingId?: string | undefined;
|
|
97839
|
+
url?: string | undefined;
|
|
97840
|
+
openInNewTab?: boolean | undefined;
|
|
97841
|
+
} | undefined;
|
|
97842
|
+
}[];
|
|
97843
|
+
packageId: string;
|
|
97844
|
+
indentLevel: number;
|
|
97845
|
+
variantId?: string | undefined;
|
|
97846
|
+
appearance?: {
|
|
97847
|
+
itemBackgroundColor?: {
|
|
97848
|
+
value: string;
|
|
97849
|
+
referencedTokenId?: string | undefined;
|
|
97850
|
+
} | undefined;
|
|
97851
|
+
numberOfColumns?: number | undefined;
|
|
97852
|
+
} | undefined;
|
|
97853
|
+
};
|
|
97854
|
+
}>;
|
|
97666
97855
|
declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
97667
97856
|
page: z.ZodObject<{
|
|
97668
97857
|
id: z.ZodString;
|
|
@@ -106319,4 +106508,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
106319
106508
|
}>;
|
|
106320
106509
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
106321
106510
|
|
|
106322
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, type Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePublishedDocPage, type CreateTheme, CreateWorkspaceInput, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, type DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationItemConfiguration, DocumentationItemHeader, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationPage, DocumentationPageAsset, DocumentationPageAssetType, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageFrameAsset, DocumentationPageGroup, DocumentationPageImageAsset, DocumentationPageRoom, DocumentationPageRoomInitialState, DocumentationPageRoomRoomUpdate, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupData, ElementGroupElementData, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyValue, type ElementPropertyValueDiff, type ElementView, type ElementViewBaseColumnType, type ElementViewBasePropertyColumn, type ElementViewColumn, type ElementViewColumnSharedAttributes, type ElementViewColumnType, type ElementViewPropertyDefinitionColumn, type ElementViewThemeColumn, Entity, type ExplicitPartial, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDestinationSnDocs, ExporterDetails, ExporterJob, ExporterJobDestination, ExporterJobFindByFilter, ExporterJobLogEntry, ExporterJobLogEntryType, ExporterJobResult, ExporterJobResultDocsDestination, ExporterJobResultPullRequestDestination, ExporterJobResultS3Destination, ExporterJobStatus, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, IntegrationAuthType, type IntegrationToken, IntegrationTokenSchema, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, NpmRegistryTypeWithoutAzure, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetType, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageReference, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, type PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, colorValueFormatDescription, colorValueRegex, defaultDocumentationItemConfiguration, defaultDocumentationItemHeader, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|
|
106511
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, type Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePublishedDocPage, type CreateTheme, CreateWorkspaceInput, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, type DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationItemConfiguration, DocumentationItemHeader, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationPage, DocumentationPageAsset, DocumentationPageAssetType, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageFrameAsset, DocumentationPageGroup, DocumentationPageImageAsset, DocumentationPageRoom, DocumentationPageRoomInitialState, DocumentationPageRoomRoomUpdate, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupData, ElementGroupElementData, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyValue, type ElementPropertyValueDiff, type ElementView, type ElementViewBaseColumnType, type ElementViewBasePropertyColumn, type ElementViewColumn, type ElementViewColumnSharedAttributes, type ElementViewColumnType, type ElementViewPropertyDefinitionColumn, type ElementViewThemeColumn, Entity, type ExplicitPartial, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDestinationSnDocs, ExporterDetails, ExporterJob, ExporterJobDestination, ExporterJobFindByFilter, ExporterJobLogEntry, ExporterJobLogEntryType, ExporterJobResult, ExporterJobResultDocsDestination, ExporterJobResultPullRequestDestination, ExporterJobResultS3Destination, ExporterJobStatus, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, IntegrationAuthType, type IntegrationToken, IntegrationTokenSchema, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, NpmRegistryTypeWithoutAzure, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetType, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockEditorModel, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageReference, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, type PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, colorValueFormatDescription, colorValueRegex, defaultDocumentationItemConfiguration, defaultDocumentationItemHeader, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|