@supernova-studio/model 1.21.0 → 1.22.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 CHANGED
@@ -187578,6 +187578,33 @@ declare const RestoredDocumentationGroup: z.ZodObject<{
187578
187578
  }>;
187579
187579
  type RestoredDocumentationGroup = z.infer<typeof RestoredDocumentationGroup>;
187580
187580
 
187581
+ declare const ForgeFeatureRoom: z.ZodObject<{
187582
+ id: z.ZodString;
187583
+ createdAt: z.ZodDate;
187584
+ updatedAt: z.ZodDate;
187585
+ } & {
187586
+ featureId: z.ZodString;
187587
+ projectId: z.ZodString;
187588
+ liveblocksId: z.ZodString;
187589
+ }, "strip", z.ZodTypeAny, {
187590
+ id: string;
187591
+ createdAt: Date;
187592
+ updatedAt: Date;
187593
+ projectId: string;
187594
+ liveblocksId: string;
187595
+ featureId: string;
187596
+ }, {
187597
+ id: string;
187598
+ createdAt: Date;
187599
+ updatedAt: Date;
187600
+ projectId: string;
187601
+ liveblocksId: string;
187602
+ featureId: string;
187603
+ }>;
187604
+ type ForgeFeatureRoom = z.infer<typeof ForgeFeatureRoom>;
187605
+ type CreateForgeFeatureRoom = DbCreateInputOmit<ForgeFeatureRoom>;
187606
+ type UpdateForgeFeatureRoom = OmitStrict<DbUpdate<ForgeFeatureRoom>, "featureId" | "projectId" | "liveblocksId">;
187607
+
187581
187608
  declare const ForgeProjectArtifactRoom: z.ZodObject<{
187582
187609
  id: z.ZodString;
187583
187610
  createdAt: z.ZodDate;
@@ -188077,7 +188104,8 @@ declare enum RoomTypeEnum {
188077
188104
  DesignSystemVersion = "design-system-version",
188078
188105
  Workspace = "workspace",
188079
188106
  ForgeProject = "forge-project",
188080
- ForgeProjectArtifact = "forge-project-artifact"
188107
+ ForgeProjectArtifact = "forge-project-artifact",
188108
+ ForgeProjectFeature = "forge-project-feature"
188081
188109
  }
188082
188110
  declare const RoomTypeSchema: z.ZodNativeEnum<typeof RoomTypeEnum>;
188083
188111
  type RoomType = z.infer<typeof RoomTypeSchema>;
@@ -188103,7 +188131,13 @@ type ForgeProjectArtifactRoomOwner = {
188103
188131
  artifactId: string;
188104
188132
  workspaceId: string;
188105
188133
  };
188106
- type RoomOwner = WorkspaceRoomOwner | VersionRoomOwner | ForgeProjectRoomOwner | ForgeProjectArtifactRoomOwner;
188134
+ type ForgeFeatureRoomOwner = {
188135
+ type: "ForgeFeature";
188136
+ projectId: string;
188137
+ featureId: string;
188138
+ workspaceId: string;
188139
+ };
188140
+ type RoomOwner = WorkspaceRoomOwner | VersionRoomOwner | ForgeProjectRoomOwner | ForgeProjectArtifactRoomOwner | ForgeFeatureRoomOwner;
188107
188141
  type WorkspaceParsedRoomId = {
188108
188142
  type: RoomTypeEnum.Workspace;
188109
188143
  raw: string;
@@ -188137,7 +188171,13 @@ type ForgeProjectArtifactParsedRoomId = {
188137
188171
  raw: string;
188138
188172
  projectId: string;
188139
188173
  };
188140
- type ParsedRoomId = WorkspaceParsedRoomId | DesignSystemVersionParsedRoomId | DocumentationPageOldParsedRoomId | DocumentationPageParsedRoomId | ForgeProjectParsedRoomId | ForgeProjectArtifactParsedRoomId;
188174
+ type ForgeFeatureParsedRoomId = {
188175
+ type: RoomTypeEnum.ForgeProjectFeature;
188176
+ raw: string;
188177
+ projectId: string;
188178
+ featureId: string;
188179
+ };
188180
+ type ParsedRoomId = WorkspaceParsedRoomId | DesignSystemVersionParsedRoomId | DocumentationPageOldParsedRoomId | DocumentationPageParsedRoomId | ForgeProjectParsedRoomId | ForgeProjectArtifactParsedRoomId | ForgeFeatureParsedRoomId;
188141
188181
 
188142
188182
  declare const WorkspaceRoom: z.ZodObject<{
188143
188183
  id: z.ZodString;
@@ -189582,4 +189622,4 @@ type PersonalAccessTokenWithUser = {
189582
189622
  token: PersonalAccessToken;
189583
189623
  };
189584
189624
 
189585
- export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BaseTheme, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateForgeAgent, type CreateForgeProject, type CreateForgeProjectArtifactRoom, type CreateForgeProjectContext, type CreateForgeProjectInvitation, type CreateForgeProjectMembership, type CreateForgeProjectRoom, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreateProjectFeature, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, type DefinedProps, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagDefaults, type FeatureFlagDefaultsTypes, FeatureFlagMap, type FeatureFlagWithDefaults, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeAgent, ForgeArtifact, ForgeAvatarBuilder, ForgeBuildArtifact, ForgeBuildArtifactEnvironment, ForgeBuildArtifactFiles, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatThread, ForgeFigmaArtifact, ForgeFileArtifact, ForgeIterationMessage, ForgeIterationMessageStep, ForgeMeta, ForgeParticipant, ForgeProject, ForgeProjectAccessMode, ForgeProjectArtifact, ForgeProjectArtifactContent, ForgeProjectArtifactContentData, type ForgeProjectArtifactParsedRoomId, ForgeProjectArtifactRoom, type ForgeProjectArtifactRoomOwner, ForgeProjectContext, ForgeProjectContextDependency, ForgeProjectContextTailwindConfig, ForgeProjectFigmaNode, ForgeProjectFigmaNodeRenderInput, ForgeProjectFile, ForgeProjectInvitation, ForgeProjectIteration, ForgeProjectIterationMergeMeta, ForgeProjectMembership, type ForgeProjectParsedRoomId, ForgeProjectRole, ForgeProjectRoom, ForgeProjectRoomInitialState, type ForgeProjectRoomOwner, ForgeProjectRoomUpdate, ForgeProjectSectionChildType, ForgeProjectTag, ForgeSection, ForgeSpecArtifact, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, Id, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type NullToUndefined, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsSidebar, PortalSettingsSidebarLink, PortalSettingsSidebarSection, PortalSettingsTheme, PortalTheme, PortalThemePreset, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, ProjectFeature, ProjectFeatureStatus, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SortOrder, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, 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 UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateForgeAgent, type UpdateForgeProject, type UpdateForgeProjectArtifactRoom, type UpdateForgeProjectContext, type UpdateForgeProjectRoom, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdateProjectFeature, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, UserThemePreset, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceSeatType, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, deriveWorkspaceSeatTypeFromRole, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, nullsToUndefined, parseUrl, pickDefined, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
189625
+ export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BaseTheme, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateForgeAgent, type CreateForgeFeatureRoom, type CreateForgeProject, type CreateForgeProjectArtifactRoom, type CreateForgeProjectContext, type CreateForgeProjectInvitation, type CreateForgeProjectMembership, type CreateForgeProjectRoom, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreateProjectFeature, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, type DefinedProps, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagDefaults, type FeatureFlagDefaultsTypes, FeatureFlagMap, type FeatureFlagWithDefaults, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeAgent, ForgeArtifact, ForgeAvatarBuilder, ForgeBuildArtifact, ForgeBuildArtifactEnvironment, ForgeBuildArtifactFiles, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatThread, type ForgeFeatureParsedRoomId, ForgeFeatureRoom, type ForgeFeatureRoomOwner, ForgeFigmaArtifact, ForgeFileArtifact, ForgeIterationMessage, ForgeIterationMessageStep, ForgeMeta, ForgeParticipant, ForgeProject, ForgeProjectAccessMode, ForgeProjectArtifact, ForgeProjectArtifactContent, ForgeProjectArtifactContentData, type ForgeProjectArtifactParsedRoomId, ForgeProjectArtifactRoom, type ForgeProjectArtifactRoomOwner, ForgeProjectContext, ForgeProjectContextDependency, ForgeProjectContextTailwindConfig, ForgeProjectFigmaNode, ForgeProjectFigmaNodeRenderInput, ForgeProjectFile, ForgeProjectInvitation, ForgeProjectIteration, ForgeProjectIterationMergeMeta, ForgeProjectMembership, type ForgeProjectParsedRoomId, ForgeProjectRole, ForgeProjectRoom, ForgeProjectRoomInitialState, type ForgeProjectRoomOwner, ForgeProjectRoomUpdate, ForgeProjectSectionChildType, ForgeProjectTag, ForgeSection, ForgeSpecArtifact, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, Id, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type NullToUndefined, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsSidebar, PortalSettingsSidebarLink, PortalSettingsSidebarSection, PortalSettingsTheme, PortalTheme, PortalThemePreset, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, ProjectFeature, ProjectFeatureStatus, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SortOrder, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, 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 UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateForgeAgent, type UpdateForgeFeatureRoom, type UpdateForgeProject, type UpdateForgeProjectArtifactRoom, type UpdateForgeProjectContext, type UpdateForgeProjectRoom, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdateProjectFeature, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, UserThemePreset, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceSeatType, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, deriveWorkspaceSeatTypeFromRole, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, nullsToUndefined, parseUrl, pickDefined, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
package/dist/index.d.ts CHANGED
@@ -187578,6 +187578,33 @@ declare const RestoredDocumentationGroup: z.ZodObject<{
187578
187578
  }>;
187579
187579
  type RestoredDocumentationGroup = z.infer<typeof RestoredDocumentationGroup>;
187580
187580
 
187581
+ declare const ForgeFeatureRoom: z.ZodObject<{
187582
+ id: z.ZodString;
187583
+ createdAt: z.ZodDate;
187584
+ updatedAt: z.ZodDate;
187585
+ } & {
187586
+ featureId: z.ZodString;
187587
+ projectId: z.ZodString;
187588
+ liveblocksId: z.ZodString;
187589
+ }, "strip", z.ZodTypeAny, {
187590
+ id: string;
187591
+ createdAt: Date;
187592
+ updatedAt: Date;
187593
+ projectId: string;
187594
+ liveblocksId: string;
187595
+ featureId: string;
187596
+ }, {
187597
+ id: string;
187598
+ createdAt: Date;
187599
+ updatedAt: Date;
187600
+ projectId: string;
187601
+ liveblocksId: string;
187602
+ featureId: string;
187603
+ }>;
187604
+ type ForgeFeatureRoom = z.infer<typeof ForgeFeatureRoom>;
187605
+ type CreateForgeFeatureRoom = DbCreateInputOmit<ForgeFeatureRoom>;
187606
+ type UpdateForgeFeatureRoom = OmitStrict<DbUpdate<ForgeFeatureRoom>, "featureId" | "projectId" | "liveblocksId">;
187607
+
187581
187608
  declare const ForgeProjectArtifactRoom: z.ZodObject<{
187582
187609
  id: z.ZodString;
187583
187610
  createdAt: z.ZodDate;
@@ -188077,7 +188104,8 @@ declare enum RoomTypeEnum {
188077
188104
  DesignSystemVersion = "design-system-version",
188078
188105
  Workspace = "workspace",
188079
188106
  ForgeProject = "forge-project",
188080
- ForgeProjectArtifact = "forge-project-artifact"
188107
+ ForgeProjectArtifact = "forge-project-artifact",
188108
+ ForgeProjectFeature = "forge-project-feature"
188081
188109
  }
188082
188110
  declare const RoomTypeSchema: z.ZodNativeEnum<typeof RoomTypeEnum>;
188083
188111
  type RoomType = z.infer<typeof RoomTypeSchema>;
@@ -188103,7 +188131,13 @@ type ForgeProjectArtifactRoomOwner = {
188103
188131
  artifactId: string;
188104
188132
  workspaceId: string;
188105
188133
  };
188106
- type RoomOwner = WorkspaceRoomOwner | VersionRoomOwner | ForgeProjectRoomOwner | ForgeProjectArtifactRoomOwner;
188134
+ type ForgeFeatureRoomOwner = {
188135
+ type: "ForgeFeature";
188136
+ projectId: string;
188137
+ featureId: string;
188138
+ workspaceId: string;
188139
+ };
188140
+ type RoomOwner = WorkspaceRoomOwner | VersionRoomOwner | ForgeProjectRoomOwner | ForgeProjectArtifactRoomOwner | ForgeFeatureRoomOwner;
188107
188141
  type WorkspaceParsedRoomId = {
188108
188142
  type: RoomTypeEnum.Workspace;
188109
188143
  raw: string;
@@ -188137,7 +188171,13 @@ type ForgeProjectArtifactParsedRoomId = {
188137
188171
  raw: string;
188138
188172
  projectId: string;
188139
188173
  };
188140
- type ParsedRoomId = WorkspaceParsedRoomId | DesignSystemVersionParsedRoomId | DocumentationPageOldParsedRoomId | DocumentationPageParsedRoomId | ForgeProjectParsedRoomId | ForgeProjectArtifactParsedRoomId;
188174
+ type ForgeFeatureParsedRoomId = {
188175
+ type: RoomTypeEnum.ForgeProjectFeature;
188176
+ raw: string;
188177
+ projectId: string;
188178
+ featureId: string;
188179
+ };
188180
+ type ParsedRoomId = WorkspaceParsedRoomId | DesignSystemVersionParsedRoomId | DocumentationPageOldParsedRoomId | DocumentationPageParsedRoomId | ForgeProjectParsedRoomId | ForgeProjectArtifactParsedRoomId | ForgeFeatureParsedRoomId;
188141
188181
 
188142
188182
  declare const WorkspaceRoom: z.ZodObject<{
188143
188183
  id: z.ZodString;
@@ -189582,4 +189622,4 @@ type PersonalAccessTokenWithUser = {
189582
189622
  token: PersonalAccessToken;
189583
189623
  };
189584
189624
 
189585
- export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BaseTheme, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateForgeAgent, type CreateForgeProject, type CreateForgeProjectArtifactRoom, type CreateForgeProjectContext, type CreateForgeProjectInvitation, type CreateForgeProjectMembership, type CreateForgeProjectRoom, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreateProjectFeature, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, type DefinedProps, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagDefaults, type FeatureFlagDefaultsTypes, FeatureFlagMap, type FeatureFlagWithDefaults, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeAgent, ForgeArtifact, ForgeAvatarBuilder, ForgeBuildArtifact, ForgeBuildArtifactEnvironment, ForgeBuildArtifactFiles, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatThread, ForgeFigmaArtifact, ForgeFileArtifact, ForgeIterationMessage, ForgeIterationMessageStep, ForgeMeta, ForgeParticipant, ForgeProject, ForgeProjectAccessMode, ForgeProjectArtifact, ForgeProjectArtifactContent, ForgeProjectArtifactContentData, type ForgeProjectArtifactParsedRoomId, ForgeProjectArtifactRoom, type ForgeProjectArtifactRoomOwner, ForgeProjectContext, ForgeProjectContextDependency, ForgeProjectContextTailwindConfig, ForgeProjectFigmaNode, ForgeProjectFigmaNodeRenderInput, ForgeProjectFile, ForgeProjectInvitation, ForgeProjectIteration, ForgeProjectIterationMergeMeta, ForgeProjectMembership, type ForgeProjectParsedRoomId, ForgeProjectRole, ForgeProjectRoom, ForgeProjectRoomInitialState, type ForgeProjectRoomOwner, ForgeProjectRoomUpdate, ForgeProjectSectionChildType, ForgeProjectTag, ForgeSection, ForgeSpecArtifact, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, Id, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type NullToUndefined, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsSidebar, PortalSettingsSidebarLink, PortalSettingsSidebarSection, PortalSettingsTheme, PortalTheme, PortalThemePreset, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, ProjectFeature, ProjectFeatureStatus, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SortOrder, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, 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 UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateForgeAgent, type UpdateForgeProject, type UpdateForgeProjectArtifactRoom, type UpdateForgeProjectContext, type UpdateForgeProjectRoom, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdateProjectFeature, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, UserThemePreset, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceSeatType, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, deriveWorkspaceSeatTypeFromRole, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, nullsToUndefined, parseUrl, pickDefined, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
189625
+ export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BaseTheme, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateForgeAgent, type CreateForgeFeatureRoom, type CreateForgeProject, type CreateForgeProjectArtifactRoom, type CreateForgeProjectContext, type CreateForgeProjectInvitation, type CreateForgeProjectMembership, type CreateForgeProjectRoom, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreateProjectFeature, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, type DefinedProps, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagDefaults, type FeatureFlagDefaultsTypes, FeatureFlagMap, type FeatureFlagWithDefaults, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeAgent, ForgeArtifact, ForgeAvatarBuilder, ForgeBuildArtifact, ForgeBuildArtifactEnvironment, ForgeBuildArtifactFiles, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatThread, type ForgeFeatureParsedRoomId, ForgeFeatureRoom, type ForgeFeatureRoomOwner, ForgeFigmaArtifact, ForgeFileArtifact, ForgeIterationMessage, ForgeIterationMessageStep, ForgeMeta, ForgeParticipant, ForgeProject, ForgeProjectAccessMode, ForgeProjectArtifact, ForgeProjectArtifactContent, ForgeProjectArtifactContentData, type ForgeProjectArtifactParsedRoomId, ForgeProjectArtifactRoom, type ForgeProjectArtifactRoomOwner, ForgeProjectContext, ForgeProjectContextDependency, ForgeProjectContextTailwindConfig, ForgeProjectFigmaNode, ForgeProjectFigmaNodeRenderInput, ForgeProjectFile, ForgeProjectInvitation, ForgeProjectIteration, ForgeProjectIterationMergeMeta, ForgeProjectMembership, type ForgeProjectParsedRoomId, ForgeProjectRole, ForgeProjectRoom, ForgeProjectRoomInitialState, type ForgeProjectRoomOwner, ForgeProjectRoomUpdate, ForgeProjectSectionChildType, ForgeProjectTag, ForgeSection, ForgeSpecArtifact, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, Id, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type NullToUndefined, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsSidebar, PortalSettingsSidebarLink, PortalSettingsSidebarSection, PortalSettingsTheme, PortalTheme, PortalThemePreset, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, ProjectFeature, ProjectFeatureStatus, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SortOrder, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, 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 UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateForgeAgent, type UpdateForgeFeatureRoom, type UpdateForgeProject, type UpdateForgeProjectArtifactRoom, type UpdateForgeProjectContext, type UpdateForgeProjectRoom, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdateProjectFeature, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, UserThemePreset, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceSeatType, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, deriveWorkspaceSeatTypeFromRole, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, nullsToUndefined, parseUrl, pickDefined, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
package/dist/index.js CHANGED
@@ -5745,6 +5745,14 @@ var RestoredDocumentationGroup = _zod.z.object({
5745
5745
  parent: ElementGroup
5746
5746
  });
5747
5747
 
5748
+ // src/liveblocks/rooms/forge-feature-room.ts
5749
+
5750
+ var ForgeFeatureRoom = Entity.extend({
5751
+ featureId: _zod.z.string(),
5752
+ projectId: _zod.z.string(),
5753
+ liveblocksId: _zod.z.string()
5754
+ });
5755
+
5748
5756
  // src/liveblocks/rooms/forge-project-artifact-room.ts
5749
5757
 
5750
5758
  var ForgeProjectArtifactRoom = Entity.extend({
@@ -6073,6 +6081,7 @@ var RoomTypeEnum = /* @__PURE__ */ ((RoomTypeEnum2) => {
6073
6081
  RoomTypeEnum2["Workspace"] = "workspace";
6074
6082
  RoomTypeEnum2["ForgeProject"] = "forge-project";
6075
6083
  RoomTypeEnum2["ForgeProjectArtifact"] = "forge-project-artifact";
6084
+ RoomTypeEnum2["ForgeProjectFeature"] = "forge-project-feature";
6076
6085
  return RoomTypeEnum2;
6077
6086
  })(RoomTypeEnum || {});
6078
6087
  var RoomTypeSchema = _zod.z.nativeEnum(RoomTypeEnum);
@@ -7489,5 +7498,6 @@ var PersonalAccessToken = _zod.z.object({
7489
7498
 
7490
7499
 
7491
7500
 
7492
- exports.Address = Address; exports.AnalyzeCodeComponentsInPackage = AnalyzeCodeComponentsInPackage; exports.Asset = Asset; exports.AssetDeleteSchedule = AssetDeleteSchedule; exports.AssetDynamoRecord = AssetDynamoRecord; exports.AssetFontProperties = AssetFontProperties; exports.AssetImportModelInput = AssetImportModelInput; exports.AssetOrigin = AssetOrigin; exports.AssetProperties = AssetProperties; exports.AssetReference = AssetReference; exports.AssetRenderConfiguration = AssetRenderConfiguration; exports.AssetScope = AssetScope; exports.AssetType = AssetType; exports.AssetValue = AssetValue; exports.AuthTokens = AuthTokens; exports.AuthV2Request = AuthV2Request; exports.AuthV2Session = AuthV2Session; exports.BaseTheme = BaseTheme; exports.BillingDetails = BillingDetails; exports.BillingIntervalSchema = BillingIntervalSchema; exports.BillingType = BillingType; exports.BillingTypeSchema = BillingTypeSchema; exports.BlurTokenData = BlurTokenData; exports.BlurType = BlurType; exports.BlurValue = BlurValue; exports.BorderPosition = BorderPosition; exports.BorderRadiusTokenData = BorderRadiusTokenData; exports.BorderRadiusUnit = BorderRadiusUnit; exports.BorderRadiusValue = BorderRadiusValue; exports.BorderStyle = BorderStyle; exports.BorderTokenData = BorderTokenData; exports.BorderValue = BorderValue; exports.BorderWidthTokenData = BorderWidthTokenData; exports.BorderWidthUnit = BorderWidthUnit; exports.BorderWidthValue = BorderWidthValue; exports.Brand = Brand; exports.BrandedElementGroup = BrandedElementGroup; exports.CardSchema = CardSchema; exports.ChangedImportedFigmaSourceData = ChangedImportedFigmaSourceData; exports.CodeComponent = CodeComponent; exports.CodeComponentParentType = CodeComponentParentType; exports.CodeComponentProperty = CodeComponentProperty; exports.CodeComponentResolvedType = CodeComponentResolvedType; exports.CodeComponentResolvedTypeKind = CodeComponentResolvedTypeKind; exports.CodeComponentUpsertResponse = CodeComponentUpsertResponse; exports.CodeIntegrationDump = CodeIntegrationDump; exports.Collection = Collection; exports.CollectionImportModel = CollectionImportModel; exports.CollectionImportModelInput = CollectionImportModelInput; exports.CollectionOrigin = CollectionOrigin; exports.ColorTokenData = ColorTokenData; exports.ColorTokenInlineData = ColorTokenInlineData; exports.ColorValue = ColorValue; exports.ComponentElementData = ComponentElementData; exports.ContentLoadInstruction = ContentLoadInstruction; exports.ContentLoaderPayload = ContentLoaderPayload; exports.CreateDesignToken = CreateDesignToken; exports.CreateWorkspaceInput = CreateWorkspaceInput; exports.CustomDomain = CustomDomain; exports.Customer = Customer; exports.DataSource = DataSource; exports.DataSourceAutoImportMode = DataSourceAutoImportMode; exports.DataSourceFigmaFileData = DataSourceFigmaFileData; exports.DataSourceFigmaFileVersionData = DataSourceFigmaFileVersionData; exports.DataSourceFigmaImportMetadata = DataSourceFigmaImportMetadata; exports.DataSourceFigmaRemote = DataSourceFigmaRemote; exports.DataSourceFigmaScope = DataSourceFigmaScope; exports.DataSourceFigmaState = DataSourceFigmaState; exports.DataSourceImportModel = DataSourceImportModel; exports.DataSourceRemote = DataSourceRemote; exports.DataSourceRemoteType = DataSourceRemoteType; exports.DataSourceStats = DataSourceStats; exports.DataSourceStorybookRemote = DataSourceStorybookRemote; exports.DataSourceTokenStudioRemote = DataSourceTokenStudioRemote; exports.DataSourceUploadImportMetadata = DataSourceUploadImportMetadata; exports.DataSourceUploadRemote = DataSourceUploadRemote; exports.DataSourceUploadRemoteSource = DataSourceUploadRemoteSource; exports.DataSourceVersion = DataSourceVersion; exports.DependencyDefinition = DependencyDefinition; exports.DesignElement = DesignElement; exports.DesignElementBase = DesignElementBase; exports.DesignElementBrandedPart = DesignElementBrandedPart; exports.DesignElementCategory = DesignElementCategory; exports.DesignElementGroupableBase = DesignElementGroupableBase; exports.DesignElementGroupablePart = DesignElementGroupablePart; exports.DesignElementGroupableRequiredPart = DesignElementGroupableRequiredPart; exports.DesignElementImportedBase = DesignElementImportedBase; exports.DesignElementOrigin = DesignElementOrigin; exports.DesignElementSlugPart = DesignElementSlugPart; exports.DesignElementSnapshotBase = DesignElementSnapshotBase; exports.DesignElementSnapshotReason = DesignElementSnapshotReason; exports.DesignElementType = DesignElementType; exports.DesignSystem = DesignSystem; exports.DesignSystemAccessMode = DesignSystemAccessMode; exports.DesignSystemDump = DesignSystemDump; exports.DesignSystemElementExportProps = DesignSystemElementExportProps; exports.DesignSystemInvitation = DesignSystemInvitation; exports.DesignSystemInvite = DesignSystemInvite; exports.DesignSystemInviteEmailData = DesignSystemInviteEmailData; exports.DesignSystemInviteEmailRecipient = DesignSystemInviteEmailRecipient; exports.DesignSystemInviteUpdate = DesignSystemInviteUpdate; exports.DesignSystemMemberUpdate = DesignSystemMemberUpdate; exports.DesignSystemMembers = DesignSystemMembers; exports.DesignSystemMembership = DesignSystemMembership; exports.DesignSystemMembershipUpdates = DesignSystemMembershipUpdates; exports.DesignSystemPendingMemberInvitation = DesignSystemPendingMemberInvitation; exports.DesignSystemRole = DesignSystemRole; exports.DesignSystemSwitcher = DesignSystemSwitcher; exports.DesignSystemUserInvitation = DesignSystemUserInvitation; exports.DesignSystemVersion = DesignSystemVersion; exports.DesignSystemVersionDump = DesignSystemVersionDump; exports.DesignSystemVersionMultiplayerDump = DesignSystemVersionMultiplayerDump; exports.DesignSystemVersionRoom = DesignSystemVersionRoom; exports.DesignSystemVersionRoomInitialState = DesignSystemVersionRoomInitialState; exports.DesignSystemVersionRoomInternalSettings = DesignSystemVersionRoomInternalSettings; exports.DesignSystemVersionRoomUpdate = DesignSystemVersionRoomUpdate; exports.DesignToken = DesignToken; exports.DesignTokenImportModel = DesignTokenImportModel; exports.DesignTokenImportModelBase = DesignTokenImportModelBase; exports.DesignTokenImportModelInput = DesignTokenImportModelInput; exports.DesignTokenImportModelInputBase = DesignTokenImportModelInputBase; exports.DesignTokenOrigin = DesignTokenOrigin; exports.DesignTokenOriginPart = DesignTokenOriginPart; exports.DesignTokenType = DesignTokenType; exports.DesignTokenTypedData = DesignTokenTypedData; exports.DimensionTokenData = DimensionTokenData; exports.DimensionUnit = DimensionUnit; exports.DimensionValue = DimensionValue; exports.DocumentationComment = DocumentationComment; exports.DocumentationCommentThread = DocumentationCommentThread; exports.DocumentationGroupBehavior = DocumentationGroupBehavior; exports.DocumentationGroupV1 = DocumentationGroupV1; exports.DocumentationItemConfigurationV1 = DocumentationItemConfigurationV1; exports.DocumentationItemConfigurationV2 = DocumentationItemConfigurationV2; exports.DocumentationItemHeaderAlignment = DocumentationItemHeaderAlignment; exports.DocumentationItemHeaderAlignmentSchema = DocumentationItemHeaderAlignmentSchema; exports.DocumentationItemHeaderImageScaleType = DocumentationItemHeaderImageScaleType; exports.DocumentationItemHeaderImageScaleTypeSchema = DocumentationItemHeaderImageScaleTypeSchema; exports.DocumentationItemHeaderV1 = DocumentationItemHeaderV1; exports.DocumentationItemHeaderV2 = DocumentationItemHeaderV2; exports.DocumentationLinkPreview = DocumentationLinkPreview; exports.DocumentationPage = DocumentationPage; exports.DocumentationPageAnchor = DocumentationPageAnchor; exports.DocumentationPageApproval = DocumentationPageApproval; exports.DocumentationPageApprovalState = DocumentationPageApprovalState; exports.DocumentationPageContent = DocumentationPageContent; exports.DocumentationPageContentBackup = DocumentationPageContentBackup; exports.DocumentationPageContentData = DocumentationPageContentData; exports.DocumentationPageContentItem = DocumentationPageContentItem; exports.DocumentationPageDataV1 = DocumentationPageDataV1; exports.DocumentationPageDataV2 = DocumentationPageDataV2; exports.DocumentationPageDependencies = DocumentationPageDependencies; exports.DocumentationPageGroup = DocumentationPageGroup; exports.DocumentationPageRoom = DocumentationPageRoom; exports.DocumentationPageRoomDump = DocumentationPageRoomDump; exports.DocumentationPageRoomInitialStateUpdate = DocumentationPageRoomInitialStateUpdate; exports.DocumentationPageRoomRoomUpdate = DocumentationPageRoomRoomUpdate; exports.DocumentationPageRoomState = DocumentationPageRoomState; exports.DocumentationPageSnapshot = DocumentationPageSnapshot; exports.DocumentationPageV1 = DocumentationPageV1; exports.DocumentationPageV2 = DocumentationPageV2; exports.DocumentationSettings = DocumentationSettings; exports.DocumentationThreadDump = DocumentationThreadDump; exports.DurationTokenData = DurationTokenData; exports.DurationUnit = DurationUnit; exports.DurationValue = DurationValue; exports.ElementGroup = ElementGroup; exports.ElementGroupDataV1 = ElementGroupDataV1; exports.ElementGroupDataV2 = ElementGroupDataV2; exports.ElementGroupSnapshot = ElementGroupSnapshot; exports.ElementPropertyDefinition = ElementPropertyDefinition; exports.ElementPropertyDefinitionOption = ElementPropertyDefinitionOption; exports.ElementPropertyImmutableType = ElementPropertyImmutableType; exports.ElementPropertyLinkType = ElementPropertyLinkType; exports.ElementPropertyTargetType = ElementPropertyTargetType; exports.ElementPropertyType = ElementPropertyType; exports.ElementPropertyTypeSchema = ElementPropertyTypeSchema; exports.ElementPropertyValue = ElementPropertyValue; exports.ElementView = ElementView; exports.ElementViewBaseColumnType = ElementViewBaseColumnType; exports.ElementViewBasePropertyColumn = ElementViewBasePropertyColumn; exports.ElementViewColumn = ElementViewColumn; exports.ElementViewColumnSharedAttributes = ElementViewColumnSharedAttributes; exports.ElementViewColumnType = ElementViewColumnType; exports.ElementViewPropertyDefinitionColumn = ElementViewPropertyDefinitionColumn; exports.ElementViewThemeColumn = ElementViewThemeColumn; exports.Entity = Entity; exports.Event = Event; exports.EventDataSourceImported = EventDataSourceImported; exports.EventDocumentationPublished = EventDocumentationPublished; exports.EventVersionReleased = EventVersionReleased; exports.ExportDestinationsMap = ExportDestinationsMap; exports.ExportDestinationsMapUpdate = ExportDestinationsMapUpdate; exports.ExportJob = ExportJob; exports.ExportJobContext = ExportJobContext; exports.ExportJobDebugContext = ExportJobDebugContext; exports.ExportJobDestinationType = ExportJobDestinationType; exports.ExportJobDocsDestinationResult = ExportJobDocsDestinationResult; exports.ExportJobDocumentationChanges = ExportJobDocumentationChanges; exports.ExportJobDocumentationContext = ExportJobDocumentationContext; exports.ExportJobDump = ExportJobDump; exports.ExportJobExporterConfiguration = ExportJobExporterConfiguration; exports.ExportJobFindByFilter = ExportJobFindByFilter; exports.ExportJobLogEntry = ExportJobLogEntry; exports.ExportJobLogEntryType = ExportJobLogEntryType; exports.ExportJobPullRequestDestinationResult = ExportJobPullRequestDestinationResult; exports.ExportJobResult = ExportJobResult; exports.ExportJobS3DestinationResult = ExportJobS3DestinationResult; exports.ExportJobStatus = ExportJobStatus; exports.Exporter = Exporter; exports.ExporterConfigurationPropertyValue = ExporterConfigurationPropertyValue; exports.ExporterDestinationAzure = ExporterDestinationAzure; exports.ExporterDestinationBitbucket = ExporterDestinationBitbucket; exports.ExporterDestinationDocs = ExporterDestinationDocs; exports.ExporterDestinationGithub = ExporterDestinationGithub; exports.ExporterDestinationGitlab = ExporterDestinationGitlab; exports.ExporterDestinationS3 = ExporterDestinationS3; exports.ExporterDetails = ExporterDetails; exports.ExporterFunctionPayload = ExporterFunctionPayload; exports.ExporterPropertyDefinition = ExporterPropertyDefinition; exports.ExporterPropertyDefinitionArray = ExporterPropertyDefinitionArray; exports.ExporterPropertyDefinitionBoolean = ExporterPropertyDefinitionBoolean; exports.ExporterPropertyDefinitionCode = ExporterPropertyDefinitionCode; exports.ExporterPropertyDefinitionEnum = ExporterPropertyDefinitionEnum; exports.ExporterPropertyDefinitionEnumOption = ExporterPropertyDefinitionEnumOption; exports.ExporterPropertyDefinitionNumber = ExporterPropertyDefinitionNumber; exports.ExporterPropertyDefinitionObject = ExporterPropertyDefinitionObject; exports.ExporterPropertyDefinitionString = ExporterPropertyDefinitionString; exports.ExporterPropertyImageValue = ExporterPropertyImageValue; exports.ExporterPropertyType = ExporterPropertyType; exports.ExporterPropertyValue = ExporterPropertyValue; exports.ExporterPropertyValueMap = ExporterPropertyValueMap; exports.ExporterPropertyValuesCollection = ExporterPropertyValuesCollection; exports.ExporterPulsarDetails = ExporterPulsarDetails; exports.ExporterSource = ExporterSource; exports.ExporterTag = ExporterTag; exports.ExporterType = ExporterType; exports.ExporterWorkspaceMembership = ExporterWorkspaceMembership; exports.ExporterWorkspaceMembershipRole = ExporterWorkspaceMembershipRole; exports.ExtendedIntegrationType = ExtendedIntegrationType; exports.ExternalOAuthRequest = ExternalOAuthRequest; exports.ExternalServiceType = ExternalServiceType; exports.FeatureFlag = FeatureFlag; exports.FeatureFlagDefaults = FeatureFlagDefaults; exports.FeatureFlagMap = FeatureFlagMap; exports.FeatureFlagsKeepAliases = FeatureFlagsKeepAliases; exports.FeaturesSummary = FeaturesSummary; exports.FigmaComponent = FigmaComponent; exports.FigmaComponentBooleanProperty = FigmaComponentBooleanProperty; exports.FigmaComponentImportModel = FigmaComponentImportModel; exports.FigmaComponentImportModelInput = FigmaComponentImportModelInput; exports.FigmaComponentInstancePreview = FigmaComponentInstancePreview; exports.FigmaComponentInstanceSwapProperty = FigmaComponentInstanceSwapProperty; exports.FigmaComponentOrigin = FigmaComponentOrigin; exports.FigmaComponentOriginPart = FigmaComponentOriginPart; exports.FigmaComponentProperty = FigmaComponentProperty; exports.FigmaComponentPropertyMap = FigmaComponentPropertyMap; exports.FigmaComponentPropertyOrigin = FigmaComponentPropertyOrigin; exports.FigmaComponentPropertyType = FigmaComponentPropertyType; exports.FigmaComponentTextProperty = FigmaComponentTextProperty; exports.FigmaComponentVariantProperty = FigmaComponentVariantProperty; exports.FigmaExporterAnyDesignNodeSchema = FigmaExporterAnyDesignNodeSchema; exports.FigmaFile = FigmaFile; exports.FigmaFileAccessData = FigmaFileAccessData; exports.FigmaFileDownloadScope = FigmaFileDownloadScope; exports.FigmaFileStructure = FigmaFileStructure; exports.FigmaFileStructureData = FigmaFileStructureData; exports.FigmaFileStructureElementData = FigmaFileStructureElementData; exports.FigmaFileStructureImportModel = FigmaFileStructureImportModel; exports.FigmaFileStructureImportModelInput = FigmaFileStructureImportModelInput; exports.FigmaFileStructureNode = FigmaFileStructureNode; exports.FigmaFileStructureNodeBase = FigmaFileStructureNodeBase; exports.FigmaFileStructureNodeImportModel = FigmaFileStructureNodeImportModel; exports.FigmaFileStructureNodeType = FigmaFileStructureNodeType; exports.FigmaFileStructureOrigin = FigmaFileStructureOrigin; exports.FigmaFileStructureStatistics = FigmaFileStructureStatistics; exports.FigmaImportBaseContext = FigmaImportBaseContext; exports.FigmaImportContextWithDownloadScopes = FigmaImportContextWithDownloadScopes; exports.FigmaImportContextWithSourcesState = FigmaImportContextWithSourcesState; exports.FigmaNodeReference = FigmaNodeReference; exports.FigmaNodeReferenceData = FigmaNodeReferenceData; exports.FigmaNodeReferenceOrigin = FigmaNodeReferenceOrigin; exports.FigmaNodeRelinkData = FigmaNodeRelinkData; exports.FigmaNodeRenderError = FigmaNodeRenderError; exports.FigmaNodeRenderErrorType = FigmaNodeRenderErrorType; exports.FigmaNodeRenderFormat = FigmaNodeRenderFormat; exports.FigmaNodeRenderState = FigmaNodeRenderState; exports.FigmaNodeRenderedImage = FigmaNodeRenderedImage; exports.FigmaNodeRendererPayload = FigmaNodeRendererPayload; exports.FigmaNodeStructureDataV2 = FigmaNodeStructureDataV2; exports.FigmaNodeStructureStateV2 = FigmaNodeStructureStateV2; exports.FigmaNodeStructureV2 = FigmaNodeStructureV2; exports.FigmaPngRenderImportModel = FigmaPngRenderImportModel; exports.FigmaRenderFormat = FigmaRenderFormat; exports.FigmaRenderImportModel = FigmaRenderImportModel; exports.FigmaSvgRenderImportModel = FigmaSvgRenderImportModel; exports.FileStructureStats = FileStructureStats; exports.FlaggedFeature = FlaggedFeature; exports.FontFamilyTokenData = FontFamilyTokenData; exports.FontFamilyValue = FontFamilyValue; exports.FontSizeTokenData = FontSizeTokenData; exports.FontSizeUnit = FontSizeUnit; exports.FontSizeValue = FontSizeValue; exports.FontTokenData = FontTokenData; exports.FontValue = FontValue; exports.FontWeightTokenData = FontWeightTokenData; exports.FontWeightValue = FontWeightValue; exports.ForgeAgent = ForgeAgent; exports.ForgeArtifact = ForgeArtifact; exports.ForgeAvatarBuilder = ForgeAvatarBuilder; exports.ForgeBuildArtifact = ForgeBuildArtifact; exports.ForgeBuildArtifactEnvironment = ForgeBuildArtifactEnvironment; exports.ForgeBuildArtifactFiles = ForgeBuildArtifactFiles; exports.ForgeChatMessage = ForgeChatMessage; exports.ForgeChatMessageSender = ForgeChatMessageSender; exports.ForgeChatMessageSenderType = ForgeChatMessageSenderType; exports.ForgeChatThread = ForgeChatThread; exports.ForgeFigmaArtifact = ForgeFigmaArtifact; exports.ForgeFileArtifact = ForgeFileArtifact; exports.ForgeIterationMessage = ForgeIterationMessage; exports.ForgeIterationMessageStep = ForgeIterationMessageStep; exports.ForgeMeta = ForgeMeta; exports.ForgeParticipant = ForgeParticipant; exports.ForgeProject = ForgeProject; exports.ForgeProjectAccessMode = ForgeProjectAccessMode; exports.ForgeProjectArtifact = ForgeProjectArtifact; exports.ForgeProjectArtifactContent = ForgeProjectArtifactContent; exports.ForgeProjectArtifactContentData = ForgeProjectArtifactContentData; exports.ForgeProjectArtifactRoom = ForgeProjectArtifactRoom; exports.ForgeProjectContext = ForgeProjectContext; exports.ForgeProjectContextDependency = ForgeProjectContextDependency; exports.ForgeProjectContextTailwindConfig = ForgeProjectContextTailwindConfig; exports.ForgeProjectFigmaNode = ForgeProjectFigmaNode; exports.ForgeProjectFigmaNodeRenderInput = ForgeProjectFigmaNodeRenderInput; exports.ForgeProjectFile = ForgeProjectFile; exports.ForgeProjectInvitation = ForgeProjectInvitation; exports.ForgeProjectIteration = ForgeProjectIteration; exports.ForgeProjectIterationMergeMeta = ForgeProjectIterationMergeMeta; exports.ForgeProjectMembership = ForgeProjectMembership; exports.ForgeProjectRole = ForgeProjectRole; exports.ForgeProjectRoom = ForgeProjectRoom; exports.ForgeProjectRoomInitialState = ForgeProjectRoomInitialState; exports.ForgeProjectRoomUpdate = ForgeProjectRoomUpdate; exports.ForgeProjectSectionChildType = ForgeProjectSectionChildType; exports.ForgeProjectTag = ForgeProjectTag; exports.ForgeSection = ForgeSection; exports.ForgeSpecArtifact = ForgeSpecArtifact; exports.GitBranch = GitBranch; exports.GitCommonDestinationOptions = GitCommonDestinationOptions; exports.GitIntegrationType = GitIntegrationType; exports.GitInteropPulsarError = GitInteropPulsarError; exports.GitObjectsQuery = GitObjectsQuery; exports.GitOrganization = GitOrganization; exports.GitProject = GitProject; exports.GitProvider = GitProvider; exports.GitProviderNames = GitProviderNames; exports.GitRepository = GitRepository; exports.GradientLayerData = GradientLayerData; exports.GradientLayerValue = GradientLayerValue; exports.GradientStop = GradientStop; exports.GradientTokenData = GradientTokenData; exports.GradientTokenValue = GradientTokenValue; exports.GradientType = GradientType; exports.HANDLE_MAX_LENGTH = HANDLE_MAX_LENGTH; exports.HANDLE_MIN_LENGTH = HANDLE_MIN_LENGTH; exports.HierarchicalElements = HierarchicalElements; exports.IconSet = IconSet; exports.Id = Id; exports.ImageImportModel = ImageImportModel; exports.ImageImportModelType = ImageImportModelType; exports.ImportFunctionInput = ImportFunctionInput; exports.ImportJob = ImportJob; exports.ImportJobOperation = ImportJobOperation; exports.ImportJobState = ImportJobState; exports.ImportModelBase = ImportModelBase; exports.ImportModelCollection = ImportModelCollection; exports.ImportModelInputBase = ImportModelInputBase; exports.ImportModelInputCollection = ImportModelInputCollection; exports.ImportWarning = ImportWarning; exports.ImportWarningType = ImportWarningType; exports.ImportedFigmaSourceData = ImportedFigmaSourceData; exports.Integration = Integration; exports.IntegrationAuthType = IntegrationAuthType; exports.IntegrationCredentials = IntegrationCredentials; exports.IntegrationCredentialsProfile = IntegrationCredentialsProfile; exports.IntegrationCredentialsState = IntegrationCredentialsState; exports.IntegrationCredentialsType = IntegrationCredentialsType; exports.IntegrationDesignSystem = IntegrationDesignSystem; exports.IntegrationToken = IntegrationToken; exports.IntegrationTokenSchemaOld = IntegrationTokenSchemaOld; exports.IntegrationType = IntegrationType; exports.IntegrationUserInfo = IntegrationUserInfo; exports.InternalStatus = InternalStatus; exports.InternalStatusSchema = InternalStatusSchema; exports.InvoiceCouponSchema = InvoiceCouponSchema; exports.InvoiceLineSchema = InvoiceLineSchema; exports.InvoiceSchema = InvoiceSchema; exports.LetterSpacingTokenData = LetterSpacingTokenData; exports.LetterSpacingUnit = LetterSpacingUnit; exports.LetterSpacingValue = LetterSpacingValue; exports.LineHeightTokenData = LineHeightTokenData; exports.LineHeightUnit = LineHeightUnit; exports.LineHeightValue = LineHeightValue; exports.ListExporterQuery = ListExporterQuery; exports.LiveblocksNotificationSettings = LiveblocksNotificationSettings; exports.MAX_MEMBERS_COUNT = MAX_MEMBERS_COUNT; exports.NpmPackage = NpmPackage; exports.NpmProxyToken = NpmProxyToken; exports.NpmProxyTokenPayload = NpmProxyTokenPayload; exports.NpmRegistrCustomAuthConfig = NpmRegistrCustomAuthConfig; exports.NpmRegistryAuthConfig = NpmRegistryAuthConfig; exports.NpmRegistryAuthType = NpmRegistryAuthType; exports.NpmRegistryBasicAuthConfig = NpmRegistryBasicAuthConfig; exports.NpmRegistryBearerAuthConfig = NpmRegistryBearerAuthConfig; exports.NpmRegistryConfig = NpmRegistryConfig; exports.NpmRegistryNoAuthConfig = NpmRegistryNoAuthConfig; exports.NpmRegistryType = NpmRegistryType; exports.OAuthProvider = OAuthProvider; exports.OAuthProviderNames = OAuthProviderNames; exports.OAuthProviderSchema = OAuthProviderSchema; exports.ObjectMeta = ObjectMeta; exports.OpacityTokenData = OpacityTokenData; exports.OpacityValue = OpacityValue; exports.PageBlockAlignment = PageBlockAlignment; exports.PageBlockAppearanceV2 = PageBlockAppearanceV2; exports.PageBlockAsset = PageBlockAsset; exports.PageBlockAssetBlockConfig = PageBlockAssetBlockConfig; exports.PageBlockAssetComponent = PageBlockAssetComponent; exports.PageBlockAssetEntityMeta = PageBlockAssetEntityMeta; exports.PageBlockAssetType = PageBlockAssetType; exports.PageBlockBaseV1 = PageBlockBaseV1; exports.PageBlockBehaviorDataType = PageBlockBehaviorDataType; exports.PageBlockBehaviorSelectionType = PageBlockBehaviorSelectionType; exports.PageBlockCalloutType = PageBlockCalloutType; exports.PageBlockCategory = PageBlockCategory; exports.PageBlockCodeLanguage = PageBlockCodeLanguage; exports.PageBlockColorV2 = PageBlockColorV2; exports.PageBlockCustomBlockPropertyImageValue = PageBlockCustomBlockPropertyImageValue; exports.PageBlockCustomBlockPropertyValue = PageBlockCustomBlockPropertyValue; exports.PageBlockDataV2 = PageBlockDataV2; exports.PageBlockDefinition = PageBlockDefinition; exports.PageBlockDefinitionAppearance = PageBlockDefinitionAppearance; exports.PageBlockDefinitionBehavior = PageBlockDefinitionBehavior; exports.PageBlockDefinitionBooleanOptions = PageBlockDefinitionBooleanOptions; exports.PageBlockDefinitionBooleanPropertyStyle = PageBlockDefinitionBooleanPropertyStyle; exports.PageBlockDefinitionComponentOptions = PageBlockDefinitionComponentOptions; exports.PageBlockDefinitionFigmaComponentOptions = PageBlockDefinitionFigmaComponentOptions; exports.PageBlockDefinitionImageAspectRatio = PageBlockDefinitionImageAspectRatio; exports.PageBlockDefinitionImageOptions = PageBlockDefinitionImageOptions; exports.PageBlockDefinitionImageWidth = PageBlockDefinitionImageWidth; exports.PageBlockDefinitionItem = PageBlockDefinitionItem; exports.PageBlockDefinitionLayout = PageBlockDefinitionLayout; exports.PageBlockDefinitionLayoutAlign = PageBlockDefinitionLayoutAlign; exports.PageBlockDefinitionLayoutBase = PageBlockDefinitionLayoutBase; exports.PageBlockDefinitionLayoutGap = PageBlockDefinitionLayoutGap; exports.PageBlockDefinitionLayoutResizing = PageBlockDefinitionLayoutResizing; exports.PageBlockDefinitionLayoutType = PageBlockDefinitionLayoutType; exports.PageBlockDefinitionMultiRichTextPropertyStyle = PageBlockDefinitionMultiRichTextPropertyStyle; exports.PageBlockDefinitionMultiSelectPropertyStyle = PageBlockDefinitionMultiSelectPropertyStyle; exports.PageBlockDefinitionMutiRichTextOptions = PageBlockDefinitionMutiRichTextOptions; exports.PageBlockDefinitionNumberOptions = PageBlockDefinitionNumberOptions; exports.PageBlockDefinitionOnboarding = PageBlockDefinitionOnboarding; exports.PageBlockDefinitionProperty = PageBlockDefinitionProperty; exports.PageBlockDefinitionPropertyType = PageBlockDefinitionPropertyType; exports.PageBlockDefinitionRichTextEditorOptions = PageBlockDefinitionRichTextEditorOptions; exports.PageBlockDefinitionRichTextEditorPropertyStyle = PageBlockDefinitionRichTextEditorPropertyStyle; exports.PageBlockDefinitionRichTextOptions = PageBlockDefinitionRichTextOptions; exports.PageBlockDefinitionRichTextPropertyStyle = PageBlockDefinitionRichTextPropertyStyle; exports.PageBlockDefinitionSelectChoice = PageBlockDefinitionSelectChoice; exports.PageBlockDefinitionSelectOptions = PageBlockDefinitionSelectOptions; exports.PageBlockDefinitionSingleSelectPropertyColor = PageBlockDefinitionSingleSelectPropertyColor; exports.PageBlockDefinitionSingleSelectPropertyStyle = PageBlockDefinitionSingleSelectPropertyStyle; exports.PageBlockDefinitionTextOptions = PageBlockDefinitionTextOptions; exports.PageBlockDefinitionTextPropertyColor = PageBlockDefinitionTextPropertyColor; exports.PageBlockDefinitionTextPropertyStyle = PageBlockDefinitionTextPropertyStyle; exports.PageBlockDefinitionUntypedPropertyOptions = PageBlockDefinitionUntypedPropertyOptions; exports.PageBlockDefinitionVariant = PageBlockDefinitionVariant; exports.PageBlockDefinitionsMap = PageBlockDefinitionsMap; exports.PageBlockEditorModelV2 = PageBlockEditorModelV2; exports.PageBlockFigmaComponentBlockConfig = PageBlockFigmaComponentBlockConfig; exports.PageBlockFigmaComponentEntityMeta = PageBlockFigmaComponentEntityMeta; exports.PageBlockFigmaFrameProperties = PageBlockFigmaFrameProperties; exports.PageBlockFigmaNodeEntityMeta = PageBlockFigmaNodeEntityMeta; exports.PageBlockFile = PageBlockFile; exports.PageBlockFrame = PageBlockFrame; exports.PageBlockFrameOrigin = PageBlockFrameOrigin; exports.PageBlockGuideline = PageBlockGuideline; exports.PageBlockImageAlignment = PageBlockImageAlignment; exports.PageBlockImageReference = PageBlockImageReference; exports.PageBlockImageResourceReference = PageBlockImageResourceReference; exports.PageBlockImageType = PageBlockImageType; exports.PageBlockItemAssetPropertyValue = PageBlockItemAssetPropertyValue; exports.PageBlockItemAssetValue = PageBlockItemAssetValue; exports.PageBlockItemBooleanValue = PageBlockItemBooleanValue; exports.PageBlockItemCodeValue = PageBlockItemCodeValue; exports.PageBlockItemColorValue = PageBlockItemColorValue; exports.PageBlockItemComponentPropertyValue = PageBlockItemComponentPropertyValue; exports.PageBlockItemComponentValue = PageBlockItemComponentValue; exports.PageBlockItemDividerValue = PageBlockItemDividerValue; exports.PageBlockItemEmbedValue = PageBlockItemEmbedValue; exports.PageBlockItemFigmaComponentValue = PageBlockItemFigmaComponentValue; exports.PageBlockItemFigmaNodeValue = PageBlockItemFigmaNodeValue; exports.PageBlockItemFileValue = PageBlockItemFileValue; exports.PageBlockItemImageValue = PageBlockItemImageValue; exports.PageBlockItemMarkdownValue = PageBlockItemMarkdownValue; exports.PageBlockItemMultiRichTextValue = PageBlockItemMultiRichTextValue; exports.PageBlockItemMultiSelectValue = PageBlockItemMultiSelectValue; exports.PageBlockItemNumberValue = PageBlockItemNumberValue; exports.PageBlockItemRichTextEditorListNode = PageBlockItemRichTextEditorListNode; exports.PageBlockItemRichTextEditorNode = PageBlockItemRichTextEditorNode; exports.PageBlockItemRichTextEditorParagraphNode = PageBlockItemRichTextEditorParagraphNode; exports.PageBlockItemRichTextEditorValue = PageBlockItemRichTextEditorValue; exports.PageBlockItemRichTextValue = PageBlockItemRichTextValue; exports.PageBlockItemSandboxValue = PageBlockItemSandboxValue; exports.PageBlockItemSingleSelectValue = PageBlockItemSingleSelectValue; exports.PageBlockItemStorybookValue = PageBlockItemStorybookValue; exports.PageBlockItemStorybookValueOld = PageBlockItemStorybookValueOld; exports.PageBlockItemSwatch = PageBlockItemSwatch; exports.PageBlockItemTableCell = PageBlockItemTableCell; exports.PageBlockItemTableImageNode = PageBlockItemTableImageNode; exports.PageBlockItemTableNode = PageBlockItemTableNode; exports.PageBlockItemTableRichTextNode = PageBlockItemTableRichTextNode; exports.PageBlockItemTableRow = PageBlockItemTableRow; exports.PageBlockItemTableValue = PageBlockItemTableValue; exports.PageBlockItemTextValue = PageBlockItemTextValue; exports.PageBlockItemTokenPropertyValue = PageBlockItemTokenPropertyValue; exports.PageBlockItemTokenTypeValue = PageBlockItemTokenTypeValue; exports.PageBlockItemTokenValue = PageBlockItemTokenValue; exports.PageBlockItemUntypedValue = PageBlockItemUntypedValue; exports.PageBlockItemUrlValue = PageBlockItemUrlValue; exports.PageBlockItemV2 = PageBlockItemV2; exports.PageBlockLinkPreview = PageBlockLinkPreview; exports.PageBlockLinkType = PageBlockLinkType; exports.PageBlockLinkV2 = PageBlockLinkV2; exports.PageBlockPreviewContainerSize = PageBlockPreviewContainerSize; exports.PageBlockRenderCodeProperties = PageBlockRenderCodeProperties; exports.PageBlockResourceFrameNodeReference = PageBlockResourceFrameNodeReference; exports.PageBlockSelectedFigmaComponent = PageBlockSelectedFigmaComponent; exports.PageBlockShortcut = PageBlockShortcut; exports.PageBlockStorybookBlockConfig = PageBlockStorybookBlockConfig; exports.PageBlockStorybookItem = PageBlockStorybookItem; exports.PageBlockSwatch = PageBlockSwatch; exports.PageBlockTableCellAlignment = PageBlockTableCellAlignment; exports.PageBlockTableColumn = PageBlockTableColumn; exports.PageBlockTableProperties = PageBlockTableProperties; exports.PageBlockText = PageBlockText; exports.PageBlockTextSpan = PageBlockTextSpan; exports.PageBlockTextSpanAttribute = PageBlockTextSpanAttribute; exports.PageBlockTextSpanAttributeType = PageBlockTextSpanAttributeType; exports.PageBlockTheme = PageBlockTheme; exports.PageBlockThemeDisplayMode = PageBlockThemeDisplayMode; exports.PageBlockThemeType = PageBlockThemeType; exports.PageBlockTilesAlignment = PageBlockTilesAlignment; exports.PageBlockTilesLayout = PageBlockTilesLayout; exports.PageBlockTokenBlockConfig = PageBlockTokenBlockConfig; exports.PageBlockTokenNameFormat = PageBlockTokenNameFormat; exports.PageBlockTokenValueFormat = PageBlockTokenValueFormat; exports.PageBlockTypeV1 = PageBlockTypeV1; exports.PageBlockUrlPreview = PageBlockUrlPreview; exports.PageBlockV1 = PageBlockV1; exports.PageBlockV2 = PageBlockV2; exports.PageRedirect = PageRedirect; exports.PageSectionAppearanceV2 = PageSectionAppearanceV2; exports.PageSectionColumnV2 = PageSectionColumnV2; exports.PageSectionEditorModelV2 = PageSectionEditorModelV2; exports.PageSectionItemV2 = PageSectionItemV2; exports.PageSectionPaddingV2 = PageSectionPaddingV2; exports.PageSectionTypeV2 = PageSectionTypeV2; exports.ParagraphIndentTokenData = ParagraphIndentTokenData; exports.ParagraphIndentUnit = ParagraphIndentUnit; exports.ParagraphIndentValue = ParagraphIndentValue; exports.ParagraphSpacingTokenData = ParagraphSpacingTokenData; exports.ParagraphSpacingUnit = ParagraphSpacingUnit; exports.ParagraphSpacingValue = ParagraphSpacingValue; exports.PeriodSchema = PeriodSchema; exports.PersonalAccessToken = PersonalAccessToken; exports.Pipeline = Pipeline; exports.PipelineDestinationExtraType = PipelineDestinationExtraType; exports.PipelineDestinationGitType = PipelineDestinationGitType; exports.PipelineDestinationType = PipelineDestinationType; exports.PipelineEventType = PipelineEventType; exports.PluginOAuthRequestSchema = PluginOAuthRequestSchema; exports.Point2D = Point2D; exports.PortalSettings = PortalSettings; exports.PortalSettingsSidebar = PortalSettingsSidebar; exports.PortalSettingsSidebarLink = PortalSettingsSidebarLink; exports.PortalSettingsSidebarSection = PortalSettingsSidebarSection; exports.PortalSettingsTheme = PortalSettingsTheme; exports.PortalTheme = PortalTheme; exports.PortalThemePreset = PortalThemePreset; exports.PostStripeCheckoutBodyInputSchema = PostStripeCheckoutBodyInputSchema; exports.PostStripeCheckoutOutputSchema = PostStripeCheckoutOutputSchema; exports.PostStripePortalSessionBodyInputSchema = PostStripePortalSessionBodyInputSchema; exports.PostStripePortalSessionOutputSchema = PostStripePortalSessionOutputSchema; exports.PostStripePortalUpdateSessionBodyInputSchema = PostStripePortalUpdateSessionBodyInputSchema; exports.PriceSchema = PriceSchema; exports.ProductCode = ProductCode; exports.ProductCodeSchema = ProductCodeSchema; exports.ProductCopyTokenData = ProductCopyTokenData; exports.ProductCopyValue = ProductCopyValue; exports.ProjectFeature = ProjectFeature; exports.ProjectFeatureStatus = ProjectFeatureStatus; exports.PublishedDoc = PublishedDoc; exports.PublishedDocEnvironment = PublishedDocEnvironment; exports.PublishedDocPage = PublishedDocPage; exports.PublishedDocPageVisitsEntry = PublishedDocPageVisitsEntry; exports.PublishedDocRoutingVersion = PublishedDocRoutingVersion; exports.PublishedDocsChecksums = PublishedDocsChecksums; exports.PublishedDocsDump = PublishedDocsDump; exports.PulsarBaseProperty = PulsarBaseProperty; exports.PulsarContributionConfigurationProperty = PulsarContributionConfigurationProperty; exports.PulsarContributionVariant = PulsarContributionVariant; exports.PulsarCustomBlock = PulsarCustomBlock; exports.PulsarPropertyType = PulsarPropertyType; exports.RESERVED_SLUGS = RESERVED_SLUGS; exports.RESERVED_SLUG_PREFIX = RESERVED_SLUG_PREFIX; exports.Registry = Registry; exports.RegistryType = RegistryType; exports.RenderedAssetFile = RenderedAssetFile; exports.ResolvedAsset = ResolvedAsset; exports.RestoredDocumentationGroup = RestoredDocumentationGroup; exports.RestoredDocumentationPage = RestoredDocumentationPage; exports.RoomType = RoomType; exports.RoomTypeEnum = RoomTypeEnum; exports.RoomTypeSchema = RoomTypeSchema; exports.SHORT_PERSISTENT_ID_LENGTH = SHORT_PERSISTENT_ID_LENGTH; exports.SafeIdSchema = SafeIdSchema; exports.Session = Session; exports.SessionData = SessionData; exports.ShadowLayerValue = ShadowLayerValue; exports.ShadowTokenData = ShadowTokenData; exports.ShadowType = ShadowType; exports.ShadowValue = ShadowValue; exports.ShallowDesignElement = ShallowDesignElement; exports.Size = Size; exports.SizeOrUndefined = SizeOrUndefined; exports.SizeTokenData = SizeTokenData; exports.SizeUnit = SizeUnit; exports.SizeValue = SizeValue; exports.SortOrder = SortOrder; exports.SourceImportComponentSummary = SourceImportComponentSummary; exports.SourceImportFrameSummary = SourceImportFrameSummary; exports.SourceImportStorybookSummary = SourceImportStorybookSummary; exports.SourceImportSummary = SourceImportSummary; exports.SourceImportSummaryByTokenType = SourceImportSummaryByTokenType; exports.SourceImportTokenSummary = SourceImportTokenSummary; exports.SpaceTokenData = SpaceTokenData; exports.SpaceUnit = SpaceUnit; exports.SpaceValue = SpaceValue; exports.SsoProvider = SsoProvider; exports.StorybookEntry = StorybookEntry; exports.StorybookEntryOrigin = StorybookEntryOrigin; exports.StorybookPayload = StorybookPayload; exports.StringTokenData = StringTokenData; exports.StringValue = StringValue; exports.StripeSubscriptionStatus = StripeSubscriptionStatus; exports.StripeSubscriptionStatusSchema = StripeSubscriptionStatusSchema; exports.Subscription = Subscription; exports.SupernovaException = SupernovaException; exports.TextCase = TextCase; exports.TextCaseTokenData = TextCaseTokenData; exports.TextCaseValue = TextCaseValue; exports.TextDecoration = TextDecoration; exports.TextDecorationTokenData = TextDecorationTokenData; exports.TextDecorationValue = TextDecorationValue; exports.Theme = Theme; exports.ThemeElementData = ThemeElementData; exports.ThemeImportModel = ThemeImportModel; exports.ThemeImportModelInput = ThemeImportModelInput; exports.ThemeOrigin = ThemeOrigin; exports.ThemeOriginObject = ThemeOriginObject; exports.ThemeOriginPart = ThemeOriginPart; exports.ThemeOriginSource = ThemeOriginSource; exports.ThemeOverride = ThemeOverride; exports.ThemeOverrideImportModel = ThemeOverrideImportModel; exports.ThemeOverrideImportModelBase = ThemeOverrideImportModelBase; exports.ThemeOverrideImportModelInput = ThemeOverrideImportModelInput; exports.ThemeOverrideOrigin = ThemeOverrideOrigin; exports.ThemeOverrideOriginPart = ThemeOverrideOriginPart; exports.ThemeUpdateImportModel = ThemeUpdateImportModel; exports.ThemeUpdateImportModelInput = ThemeUpdateImportModelInput; exports.TokenDataAliasSchema = TokenDataAliasSchema; exports.TypographyTokenData = TypographyTokenData; exports.TypographyValue = TypographyValue; exports.UpdateMembershipRolesInput = UpdateMembershipRolesInput; exports.UrlImageImportModel = UrlImageImportModel; exports.User = User; exports.UserAnalyticsCleanupSchedule = UserAnalyticsCleanupSchedule; exports.UserAnalyticsCleanupScheduleDbInput = UserAnalyticsCleanupScheduleDbInput; exports.UserDump = UserDump; exports.UserIdentity = UserIdentity; exports.UserInvite = UserInvite; exports.UserInvites = UserInvites; exports.UserLinkedIntegrations = UserLinkedIntegrations; exports.UserMinified = UserMinified; exports.UserNotificationSettings = UserNotificationSettings; exports.UserOnboarding = UserOnboarding; exports.UserOnboardingDepartment = UserOnboardingDepartment; exports.UserOnboardingJobLevel = UserOnboardingJobLevel; exports.UserProfile = UserProfile; exports.UserProfileUpdate = UserProfileUpdate; exports.UserSession = UserSession; exports.UserSource = UserSource; exports.UserTest = UserTest; exports.UserTheme = UserTheme; exports.UserThemePreset = UserThemePreset; exports.VersionCreationJob = VersionCreationJob; exports.VersionCreationJobStatus = VersionCreationJobStatus; exports.Visibility = Visibility; exports.VisibilityTokenData = VisibilityTokenData; exports.VisibilityValue = VisibilityValue; exports.Workspace = Workspace; exports.WorkspaceConfigurationUpdate = WorkspaceConfigurationUpdate; exports.WorkspaceContext = WorkspaceContext; exports.WorkspaceDump = WorkspaceDump; exports.WorkspaceInvitation = WorkspaceInvitation; exports.WorkspaceInviteEmailData = WorkspaceInviteEmailData; exports.WorkspaceInviteEmailRecipient = WorkspaceInviteEmailRecipient; exports.WorkspaceIpSettings = WorkspaceIpSettings; exports.WorkspaceIpWhitelistEntry = WorkspaceIpWhitelistEntry; exports.WorkspaceMembership = WorkspaceMembership; exports.WorkspaceOAuthRequestSchema = WorkspaceOAuthRequestSchema; exports.WorkspaceProfile = WorkspaceProfile; exports.WorkspaceProfileUpdate = WorkspaceProfileUpdate; exports.WorkspaceRole = WorkspaceRole; exports.WorkspaceRoleSchema = WorkspaceRoleSchema; exports.WorkspaceRoom = WorkspaceRoom; exports.WorkspaceSeatType = WorkspaceSeatType; exports.WorkspaceUntypedData = WorkspaceUntypedData; exports.WorkspaceWithDesignSystems = WorkspaceWithDesignSystems; exports.ZIndexTokenData = ZIndexTokenData; exports.ZIndexUnit = ZIndexUnit; exports.ZIndexValue = ZIndexValue; exports.addImportModelCollections = addImportModelCollections; exports.applyShallowObjectUpdate = applyShallowObjectUpdate; exports.areShallowObjectsEqual = areShallowObjectsEqual; exports.areTokenTypesCompatible = areTokenTypesCompatible; exports.buildConstantEnum = buildConstantEnum; exports.castStringToDimensionValue = castStringToDimensionValue; exports.chunkedArray = chunkedArray; exports.convertTokenTypedData = convertTokenTypedData; exports.defaultDocumentationItemConfigurationV1 = defaultDocumentationItemConfigurationV1; exports.defaultDocumentationItemConfigurationV2 = defaultDocumentationItemConfigurationV2; exports.defaultDocumentationItemHeaderV1 = defaultDocumentationItemHeaderV1; exports.defaultDocumentationItemHeaderV2 = defaultDocumentationItemHeaderV2; exports.defaultNotificationSettings = defaultNotificationSettings; exports.deriveWorkspaceSeatTypeFromRole = deriveWorkspaceSeatTypeFromRole; exports.designTokenImportModelTypeFilter = designTokenImportModelTypeFilter; exports.designTokenTypeFilter = designTokenTypeFilter; exports.extractTokenTypedData = extractTokenTypedData; exports.figmaFileStructureImportModelToMap = figmaFileStructureImportModelToMap; exports.figmaFileStructureToMap = figmaFileStructureToMap; exports.filterNonNullish = filterNonNullish; exports.forceUnwrapNullish = forceUnwrapNullish; exports.generateShortPersistentId = generateShortPersistentId; exports.getCodenameFromText = getCodenameFromText; exports.getFigmaRenderFormatFileExtension = getFigmaRenderFormatFileExtension; exports.groupBy = groupBy; exports.hasProperty = hasProperty; exports.isDataSourceOfType = isDataSourceOfType; exports.isDesignTokenImportModelOfType = isDesignTokenImportModelOfType; exports.isDesignTokenOfType = isDesignTokenOfType; exports.isImportedAsset = isImportedAsset; exports.isImportedDesignToken = isImportedDesignToken; exports.isImportedFigmaComponent = isImportedFigmaComponent; exports.isNotNullish = isNotNullish; exports.isNullish = isNullish; exports.isSlugReserved = isSlugReserved; exports.isTokenType = isTokenType; exports.joinRepeatingSpans = joinRepeatingSpans; exports.mapByUnique = mapByUnique; exports.mapPageBlockItemValuesV2 = mapPageBlockItemValuesV2; exports.nonNullFilter = nonNullFilter; exports.nonNullishFilter = nonNullishFilter; exports.nullishToOptional = nullishToOptional; exports.nullsToUndefined = nullsToUndefined; exports.parseUrl = parseUrl; exports.pickDefined = pickDefined; exports.pickLatestGroupSnapshots = pickLatestGroupSnapshots; exports.pickLatestPageSnapshots = pickLatestPageSnapshots; exports.pickLatestSnapshots = pickLatestSnapshots; exports.promiseWithTimeout = promiseWithTimeout; exports.publishedDocEnvironments = publishedDocEnvironments; exports.recordToMap = recordToMap; exports.removeCommentSpans = removeCommentSpans; exports.sleep = sleep; exports.slugRegex = slugRegex; exports.slugify = slugify; exports.storybookValueFromOldValue = storybookValueFromOldValue; exports.tokenAliasOrValue = tokenAliasOrValue; exports.tokenElementTypes = tokenElementTypes; exports.traversePageBlockItemValuesV2 = traversePageBlockItemValuesV2; exports.traversePageBlockItemsV2 = traversePageBlockItemsV2; exports.traversePageBlocksV1 = traversePageBlocksV1; exports.traversePageItemsV2 = traversePageItemsV2; exports.traverseStructure = traverseStructure; exports.trimLeadingSlash = trimLeadingSlash; exports.trimTrailingSlash = trimTrailingSlash; exports.tryParseShortPersistentId = tryParseShortPersistentId; exports.tryParseUrl = tryParseUrl; exports.uniqueBy = uniqueBy; exports.workspaceRoleToDesignSystemRole = workspaceRoleToDesignSystemRole; exports.zodCreateInputOmit = zodCreateInputOmit; exports.zodUpdateInputOmit = zodUpdateInputOmit;
7501
+
7502
+ exports.Address = Address; exports.AnalyzeCodeComponentsInPackage = AnalyzeCodeComponentsInPackage; exports.Asset = Asset; exports.AssetDeleteSchedule = AssetDeleteSchedule; exports.AssetDynamoRecord = AssetDynamoRecord; exports.AssetFontProperties = AssetFontProperties; exports.AssetImportModelInput = AssetImportModelInput; exports.AssetOrigin = AssetOrigin; exports.AssetProperties = AssetProperties; exports.AssetReference = AssetReference; exports.AssetRenderConfiguration = AssetRenderConfiguration; exports.AssetScope = AssetScope; exports.AssetType = AssetType; exports.AssetValue = AssetValue; exports.AuthTokens = AuthTokens; exports.AuthV2Request = AuthV2Request; exports.AuthV2Session = AuthV2Session; exports.BaseTheme = BaseTheme; exports.BillingDetails = BillingDetails; exports.BillingIntervalSchema = BillingIntervalSchema; exports.BillingType = BillingType; exports.BillingTypeSchema = BillingTypeSchema; exports.BlurTokenData = BlurTokenData; exports.BlurType = BlurType; exports.BlurValue = BlurValue; exports.BorderPosition = BorderPosition; exports.BorderRadiusTokenData = BorderRadiusTokenData; exports.BorderRadiusUnit = BorderRadiusUnit; exports.BorderRadiusValue = BorderRadiusValue; exports.BorderStyle = BorderStyle; exports.BorderTokenData = BorderTokenData; exports.BorderValue = BorderValue; exports.BorderWidthTokenData = BorderWidthTokenData; exports.BorderWidthUnit = BorderWidthUnit; exports.BorderWidthValue = BorderWidthValue; exports.Brand = Brand; exports.BrandedElementGroup = BrandedElementGroup; exports.CardSchema = CardSchema; exports.ChangedImportedFigmaSourceData = ChangedImportedFigmaSourceData; exports.CodeComponent = CodeComponent; exports.CodeComponentParentType = CodeComponentParentType; exports.CodeComponentProperty = CodeComponentProperty; exports.CodeComponentResolvedType = CodeComponentResolvedType; exports.CodeComponentResolvedTypeKind = CodeComponentResolvedTypeKind; exports.CodeComponentUpsertResponse = CodeComponentUpsertResponse; exports.CodeIntegrationDump = CodeIntegrationDump; exports.Collection = Collection; exports.CollectionImportModel = CollectionImportModel; exports.CollectionImportModelInput = CollectionImportModelInput; exports.CollectionOrigin = CollectionOrigin; exports.ColorTokenData = ColorTokenData; exports.ColorTokenInlineData = ColorTokenInlineData; exports.ColorValue = ColorValue; exports.ComponentElementData = ComponentElementData; exports.ContentLoadInstruction = ContentLoadInstruction; exports.ContentLoaderPayload = ContentLoaderPayload; exports.CreateDesignToken = CreateDesignToken; exports.CreateWorkspaceInput = CreateWorkspaceInput; exports.CustomDomain = CustomDomain; exports.Customer = Customer; exports.DataSource = DataSource; exports.DataSourceAutoImportMode = DataSourceAutoImportMode; exports.DataSourceFigmaFileData = DataSourceFigmaFileData; exports.DataSourceFigmaFileVersionData = DataSourceFigmaFileVersionData; exports.DataSourceFigmaImportMetadata = DataSourceFigmaImportMetadata; exports.DataSourceFigmaRemote = DataSourceFigmaRemote; exports.DataSourceFigmaScope = DataSourceFigmaScope; exports.DataSourceFigmaState = DataSourceFigmaState; exports.DataSourceImportModel = DataSourceImportModel; exports.DataSourceRemote = DataSourceRemote; exports.DataSourceRemoteType = DataSourceRemoteType; exports.DataSourceStats = DataSourceStats; exports.DataSourceStorybookRemote = DataSourceStorybookRemote; exports.DataSourceTokenStudioRemote = DataSourceTokenStudioRemote; exports.DataSourceUploadImportMetadata = DataSourceUploadImportMetadata; exports.DataSourceUploadRemote = DataSourceUploadRemote; exports.DataSourceUploadRemoteSource = DataSourceUploadRemoteSource; exports.DataSourceVersion = DataSourceVersion; exports.DependencyDefinition = DependencyDefinition; exports.DesignElement = DesignElement; exports.DesignElementBase = DesignElementBase; exports.DesignElementBrandedPart = DesignElementBrandedPart; exports.DesignElementCategory = DesignElementCategory; exports.DesignElementGroupableBase = DesignElementGroupableBase; exports.DesignElementGroupablePart = DesignElementGroupablePart; exports.DesignElementGroupableRequiredPart = DesignElementGroupableRequiredPart; exports.DesignElementImportedBase = DesignElementImportedBase; exports.DesignElementOrigin = DesignElementOrigin; exports.DesignElementSlugPart = DesignElementSlugPart; exports.DesignElementSnapshotBase = DesignElementSnapshotBase; exports.DesignElementSnapshotReason = DesignElementSnapshotReason; exports.DesignElementType = DesignElementType; exports.DesignSystem = DesignSystem; exports.DesignSystemAccessMode = DesignSystemAccessMode; exports.DesignSystemDump = DesignSystemDump; exports.DesignSystemElementExportProps = DesignSystemElementExportProps; exports.DesignSystemInvitation = DesignSystemInvitation; exports.DesignSystemInvite = DesignSystemInvite; exports.DesignSystemInviteEmailData = DesignSystemInviteEmailData; exports.DesignSystemInviteEmailRecipient = DesignSystemInviteEmailRecipient; exports.DesignSystemInviteUpdate = DesignSystemInviteUpdate; exports.DesignSystemMemberUpdate = DesignSystemMemberUpdate; exports.DesignSystemMembers = DesignSystemMembers; exports.DesignSystemMembership = DesignSystemMembership; exports.DesignSystemMembershipUpdates = DesignSystemMembershipUpdates; exports.DesignSystemPendingMemberInvitation = DesignSystemPendingMemberInvitation; exports.DesignSystemRole = DesignSystemRole; exports.DesignSystemSwitcher = DesignSystemSwitcher; exports.DesignSystemUserInvitation = DesignSystemUserInvitation; exports.DesignSystemVersion = DesignSystemVersion; exports.DesignSystemVersionDump = DesignSystemVersionDump; exports.DesignSystemVersionMultiplayerDump = DesignSystemVersionMultiplayerDump; exports.DesignSystemVersionRoom = DesignSystemVersionRoom; exports.DesignSystemVersionRoomInitialState = DesignSystemVersionRoomInitialState; exports.DesignSystemVersionRoomInternalSettings = DesignSystemVersionRoomInternalSettings; exports.DesignSystemVersionRoomUpdate = DesignSystemVersionRoomUpdate; exports.DesignToken = DesignToken; exports.DesignTokenImportModel = DesignTokenImportModel; exports.DesignTokenImportModelBase = DesignTokenImportModelBase; exports.DesignTokenImportModelInput = DesignTokenImportModelInput; exports.DesignTokenImportModelInputBase = DesignTokenImportModelInputBase; exports.DesignTokenOrigin = DesignTokenOrigin; exports.DesignTokenOriginPart = DesignTokenOriginPart; exports.DesignTokenType = DesignTokenType; exports.DesignTokenTypedData = DesignTokenTypedData; exports.DimensionTokenData = DimensionTokenData; exports.DimensionUnit = DimensionUnit; exports.DimensionValue = DimensionValue; exports.DocumentationComment = DocumentationComment; exports.DocumentationCommentThread = DocumentationCommentThread; exports.DocumentationGroupBehavior = DocumentationGroupBehavior; exports.DocumentationGroupV1 = DocumentationGroupV1; exports.DocumentationItemConfigurationV1 = DocumentationItemConfigurationV1; exports.DocumentationItemConfigurationV2 = DocumentationItemConfigurationV2; exports.DocumentationItemHeaderAlignment = DocumentationItemHeaderAlignment; exports.DocumentationItemHeaderAlignmentSchema = DocumentationItemHeaderAlignmentSchema; exports.DocumentationItemHeaderImageScaleType = DocumentationItemHeaderImageScaleType; exports.DocumentationItemHeaderImageScaleTypeSchema = DocumentationItemHeaderImageScaleTypeSchema; exports.DocumentationItemHeaderV1 = DocumentationItemHeaderV1; exports.DocumentationItemHeaderV2 = DocumentationItemHeaderV2; exports.DocumentationLinkPreview = DocumentationLinkPreview; exports.DocumentationPage = DocumentationPage; exports.DocumentationPageAnchor = DocumentationPageAnchor; exports.DocumentationPageApproval = DocumentationPageApproval; exports.DocumentationPageApprovalState = DocumentationPageApprovalState; exports.DocumentationPageContent = DocumentationPageContent; exports.DocumentationPageContentBackup = DocumentationPageContentBackup; exports.DocumentationPageContentData = DocumentationPageContentData; exports.DocumentationPageContentItem = DocumentationPageContentItem; exports.DocumentationPageDataV1 = DocumentationPageDataV1; exports.DocumentationPageDataV2 = DocumentationPageDataV2; exports.DocumentationPageDependencies = DocumentationPageDependencies; exports.DocumentationPageGroup = DocumentationPageGroup; exports.DocumentationPageRoom = DocumentationPageRoom; exports.DocumentationPageRoomDump = DocumentationPageRoomDump; exports.DocumentationPageRoomInitialStateUpdate = DocumentationPageRoomInitialStateUpdate; exports.DocumentationPageRoomRoomUpdate = DocumentationPageRoomRoomUpdate; exports.DocumentationPageRoomState = DocumentationPageRoomState; exports.DocumentationPageSnapshot = DocumentationPageSnapshot; exports.DocumentationPageV1 = DocumentationPageV1; exports.DocumentationPageV2 = DocumentationPageV2; exports.DocumentationSettings = DocumentationSettings; exports.DocumentationThreadDump = DocumentationThreadDump; exports.DurationTokenData = DurationTokenData; exports.DurationUnit = DurationUnit; exports.DurationValue = DurationValue; exports.ElementGroup = ElementGroup; exports.ElementGroupDataV1 = ElementGroupDataV1; exports.ElementGroupDataV2 = ElementGroupDataV2; exports.ElementGroupSnapshot = ElementGroupSnapshot; exports.ElementPropertyDefinition = ElementPropertyDefinition; exports.ElementPropertyDefinitionOption = ElementPropertyDefinitionOption; exports.ElementPropertyImmutableType = ElementPropertyImmutableType; exports.ElementPropertyLinkType = ElementPropertyLinkType; exports.ElementPropertyTargetType = ElementPropertyTargetType; exports.ElementPropertyType = ElementPropertyType; exports.ElementPropertyTypeSchema = ElementPropertyTypeSchema; exports.ElementPropertyValue = ElementPropertyValue; exports.ElementView = ElementView; exports.ElementViewBaseColumnType = ElementViewBaseColumnType; exports.ElementViewBasePropertyColumn = ElementViewBasePropertyColumn; exports.ElementViewColumn = ElementViewColumn; exports.ElementViewColumnSharedAttributes = ElementViewColumnSharedAttributes; exports.ElementViewColumnType = ElementViewColumnType; exports.ElementViewPropertyDefinitionColumn = ElementViewPropertyDefinitionColumn; exports.ElementViewThemeColumn = ElementViewThemeColumn; exports.Entity = Entity; exports.Event = Event; exports.EventDataSourceImported = EventDataSourceImported; exports.EventDocumentationPublished = EventDocumentationPublished; exports.EventVersionReleased = EventVersionReleased; exports.ExportDestinationsMap = ExportDestinationsMap; exports.ExportDestinationsMapUpdate = ExportDestinationsMapUpdate; exports.ExportJob = ExportJob; exports.ExportJobContext = ExportJobContext; exports.ExportJobDebugContext = ExportJobDebugContext; exports.ExportJobDestinationType = ExportJobDestinationType; exports.ExportJobDocsDestinationResult = ExportJobDocsDestinationResult; exports.ExportJobDocumentationChanges = ExportJobDocumentationChanges; exports.ExportJobDocumentationContext = ExportJobDocumentationContext; exports.ExportJobDump = ExportJobDump; exports.ExportJobExporterConfiguration = ExportJobExporterConfiguration; exports.ExportJobFindByFilter = ExportJobFindByFilter; exports.ExportJobLogEntry = ExportJobLogEntry; exports.ExportJobLogEntryType = ExportJobLogEntryType; exports.ExportJobPullRequestDestinationResult = ExportJobPullRequestDestinationResult; exports.ExportJobResult = ExportJobResult; exports.ExportJobS3DestinationResult = ExportJobS3DestinationResult; exports.ExportJobStatus = ExportJobStatus; exports.Exporter = Exporter; exports.ExporterConfigurationPropertyValue = ExporterConfigurationPropertyValue; exports.ExporterDestinationAzure = ExporterDestinationAzure; exports.ExporterDestinationBitbucket = ExporterDestinationBitbucket; exports.ExporterDestinationDocs = ExporterDestinationDocs; exports.ExporterDestinationGithub = ExporterDestinationGithub; exports.ExporterDestinationGitlab = ExporterDestinationGitlab; exports.ExporterDestinationS3 = ExporterDestinationS3; exports.ExporterDetails = ExporterDetails; exports.ExporterFunctionPayload = ExporterFunctionPayload; exports.ExporterPropertyDefinition = ExporterPropertyDefinition; exports.ExporterPropertyDefinitionArray = ExporterPropertyDefinitionArray; exports.ExporterPropertyDefinitionBoolean = ExporterPropertyDefinitionBoolean; exports.ExporterPropertyDefinitionCode = ExporterPropertyDefinitionCode; exports.ExporterPropertyDefinitionEnum = ExporterPropertyDefinitionEnum; exports.ExporterPropertyDefinitionEnumOption = ExporterPropertyDefinitionEnumOption; exports.ExporterPropertyDefinitionNumber = ExporterPropertyDefinitionNumber; exports.ExporterPropertyDefinitionObject = ExporterPropertyDefinitionObject; exports.ExporterPropertyDefinitionString = ExporterPropertyDefinitionString; exports.ExporterPropertyImageValue = ExporterPropertyImageValue; exports.ExporterPropertyType = ExporterPropertyType; exports.ExporterPropertyValue = ExporterPropertyValue; exports.ExporterPropertyValueMap = ExporterPropertyValueMap; exports.ExporterPropertyValuesCollection = ExporterPropertyValuesCollection; exports.ExporterPulsarDetails = ExporterPulsarDetails; exports.ExporterSource = ExporterSource; exports.ExporterTag = ExporterTag; exports.ExporterType = ExporterType; exports.ExporterWorkspaceMembership = ExporterWorkspaceMembership; exports.ExporterWorkspaceMembershipRole = ExporterWorkspaceMembershipRole; exports.ExtendedIntegrationType = ExtendedIntegrationType; exports.ExternalOAuthRequest = ExternalOAuthRequest; exports.ExternalServiceType = ExternalServiceType; exports.FeatureFlag = FeatureFlag; exports.FeatureFlagDefaults = FeatureFlagDefaults; exports.FeatureFlagMap = FeatureFlagMap; exports.FeatureFlagsKeepAliases = FeatureFlagsKeepAliases; exports.FeaturesSummary = FeaturesSummary; exports.FigmaComponent = FigmaComponent; exports.FigmaComponentBooleanProperty = FigmaComponentBooleanProperty; exports.FigmaComponentImportModel = FigmaComponentImportModel; exports.FigmaComponentImportModelInput = FigmaComponentImportModelInput; exports.FigmaComponentInstancePreview = FigmaComponentInstancePreview; exports.FigmaComponentInstanceSwapProperty = FigmaComponentInstanceSwapProperty; exports.FigmaComponentOrigin = FigmaComponentOrigin; exports.FigmaComponentOriginPart = FigmaComponentOriginPart; exports.FigmaComponentProperty = FigmaComponentProperty; exports.FigmaComponentPropertyMap = FigmaComponentPropertyMap; exports.FigmaComponentPropertyOrigin = FigmaComponentPropertyOrigin; exports.FigmaComponentPropertyType = FigmaComponentPropertyType; exports.FigmaComponentTextProperty = FigmaComponentTextProperty; exports.FigmaComponentVariantProperty = FigmaComponentVariantProperty; exports.FigmaExporterAnyDesignNodeSchema = FigmaExporterAnyDesignNodeSchema; exports.FigmaFile = FigmaFile; exports.FigmaFileAccessData = FigmaFileAccessData; exports.FigmaFileDownloadScope = FigmaFileDownloadScope; exports.FigmaFileStructure = FigmaFileStructure; exports.FigmaFileStructureData = FigmaFileStructureData; exports.FigmaFileStructureElementData = FigmaFileStructureElementData; exports.FigmaFileStructureImportModel = FigmaFileStructureImportModel; exports.FigmaFileStructureImportModelInput = FigmaFileStructureImportModelInput; exports.FigmaFileStructureNode = FigmaFileStructureNode; exports.FigmaFileStructureNodeBase = FigmaFileStructureNodeBase; exports.FigmaFileStructureNodeImportModel = FigmaFileStructureNodeImportModel; exports.FigmaFileStructureNodeType = FigmaFileStructureNodeType; exports.FigmaFileStructureOrigin = FigmaFileStructureOrigin; exports.FigmaFileStructureStatistics = FigmaFileStructureStatistics; exports.FigmaImportBaseContext = FigmaImportBaseContext; exports.FigmaImportContextWithDownloadScopes = FigmaImportContextWithDownloadScopes; exports.FigmaImportContextWithSourcesState = FigmaImportContextWithSourcesState; exports.FigmaNodeReference = FigmaNodeReference; exports.FigmaNodeReferenceData = FigmaNodeReferenceData; exports.FigmaNodeReferenceOrigin = FigmaNodeReferenceOrigin; exports.FigmaNodeRelinkData = FigmaNodeRelinkData; exports.FigmaNodeRenderError = FigmaNodeRenderError; exports.FigmaNodeRenderErrorType = FigmaNodeRenderErrorType; exports.FigmaNodeRenderFormat = FigmaNodeRenderFormat; exports.FigmaNodeRenderState = FigmaNodeRenderState; exports.FigmaNodeRenderedImage = FigmaNodeRenderedImage; exports.FigmaNodeRendererPayload = FigmaNodeRendererPayload; exports.FigmaNodeStructureDataV2 = FigmaNodeStructureDataV2; exports.FigmaNodeStructureStateV2 = FigmaNodeStructureStateV2; exports.FigmaNodeStructureV2 = FigmaNodeStructureV2; exports.FigmaPngRenderImportModel = FigmaPngRenderImportModel; exports.FigmaRenderFormat = FigmaRenderFormat; exports.FigmaRenderImportModel = FigmaRenderImportModel; exports.FigmaSvgRenderImportModel = FigmaSvgRenderImportModel; exports.FileStructureStats = FileStructureStats; exports.FlaggedFeature = FlaggedFeature; exports.FontFamilyTokenData = FontFamilyTokenData; exports.FontFamilyValue = FontFamilyValue; exports.FontSizeTokenData = FontSizeTokenData; exports.FontSizeUnit = FontSizeUnit; exports.FontSizeValue = FontSizeValue; exports.FontTokenData = FontTokenData; exports.FontValue = FontValue; exports.FontWeightTokenData = FontWeightTokenData; exports.FontWeightValue = FontWeightValue; exports.ForgeAgent = ForgeAgent; exports.ForgeArtifact = ForgeArtifact; exports.ForgeAvatarBuilder = ForgeAvatarBuilder; exports.ForgeBuildArtifact = ForgeBuildArtifact; exports.ForgeBuildArtifactEnvironment = ForgeBuildArtifactEnvironment; exports.ForgeBuildArtifactFiles = ForgeBuildArtifactFiles; exports.ForgeChatMessage = ForgeChatMessage; exports.ForgeChatMessageSender = ForgeChatMessageSender; exports.ForgeChatMessageSenderType = ForgeChatMessageSenderType; exports.ForgeChatThread = ForgeChatThread; exports.ForgeFeatureRoom = ForgeFeatureRoom; exports.ForgeFigmaArtifact = ForgeFigmaArtifact; exports.ForgeFileArtifact = ForgeFileArtifact; exports.ForgeIterationMessage = ForgeIterationMessage; exports.ForgeIterationMessageStep = ForgeIterationMessageStep; exports.ForgeMeta = ForgeMeta; exports.ForgeParticipant = ForgeParticipant; exports.ForgeProject = ForgeProject; exports.ForgeProjectAccessMode = ForgeProjectAccessMode; exports.ForgeProjectArtifact = ForgeProjectArtifact; exports.ForgeProjectArtifactContent = ForgeProjectArtifactContent; exports.ForgeProjectArtifactContentData = ForgeProjectArtifactContentData; exports.ForgeProjectArtifactRoom = ForgeProjectArtifactRoom; exports.ForgeProjectContext = ForgeProjectContext; exports.ForgeProjectContextDependency = ForgeProjectContextDependency; exports.ForgeProjectContextTailwindConfig = ForgeProjectContextTailwindConfig; exports.ForgeProjectFigmaNode = ForgeProjectFigmaNode; exports.ForgeProjectFigmaNodeRenderInput = ForgeProjectFigmaNodeRenderInput; exports.ForgeProjectFile = ForgeProjectFile; exports.ForgeProjectInvitation = ForgeProjectInvitation; exports.ForgeProjectIteration = ForgeProjectIteration; exports.ForgeProjectIterationMergeMeta = ForgeProjectIterationMergeMeta; exports.ForgeProjectMembership = ForgeProjectMembership; exports.ForgeProjectRole = ForgeProjectRole; exports.ForgeProjectRoom = ForgeProjectRoom; exports.ForgeProjectRoomInitialState = ForgeProjectRoomInitialState; exports.ForgeProjectRoomUpdate = ForgeProjectRoomUpdate; exports.ForgeProjectSectionChildType = ForgeProjectSectionChildType; exports.ForgeProjectTag = ForgeProjectTag; exports.ForgeSection = ForgeSection; exports.ForgeSpecArtifact = ForgeSpecArtifact; exports.GitBranch = GitBranch; exports.GitCommonDestinationOptions = GitCommonDestinationOptions; exports.GitIntegrationType = GitIntegrationType; exports.GitInteropPulsarError = GitInteropPulsarError; exports.GitObjectsQuery = GitObjectsQuery; exports.GitOrganization = GitOrganization; exports.GitProject = GitProject; exports.GitProvider = GitProvider; exports.GitProviderNames = GitProviderNames; exports.GitRepository = GitRepository; exports.GradientLayerData = GradientLayerData; exports.GradientLayerValue = GradientLayerValue; exports.GradientStop = GradientStop; exports.GradientTokenData = GradientTokenData; exports.GradientTokenValue = GradientTokenValue; exports.GradientType = GradientType; exports.HANDLE_MAX_LENGTH = HANDLE_MAX_LENGTH; exports.HANDLE_MIN_LENGTH = HANDLE_MIN_LENGTH; exports.HierarchicalElements = HierarchicalElements; exports.IconSet = IconSet; exports.Id = Id; exports.ImageImportModel = ImageImportModel; exports.ImageImportModelType = ImageImportModelType; exports.ImportFunctionInput = ImportFunctionInput; exports.ImportJob = ImportJob; exports.ImportJobOperation = ImportJobOperation; exports.ImportJobState = ImportJobState; exports.ImportModelBase = ImportModelBase; exports.ImportModelCollection = ImportModelCollection; exports.ImportModelInputBase = ImportModelInputBase; exports.ImportModelInputCollection = ImportModelInputCollection; exports.ImportWarning = ImportWarning; exports.ImportWarningType = ImportWarningType; exports.ImportedFigmaSourceData = ImportedFigmaSourceData; exports.Integration = Integration; exports.IntegrationAuthType = IntegrationAuthType; exports.IntegrationCredentials = IntegrationCredentials; exports.IntegrationCredentialsProfile = IntegrationCredentialsProfile; exports.IntegrationCredentialsState = IntegrationCredentialsState; exports.IntegrationCredentialsType = IntegrationCredentialsType; exports.IntegrationDesignSystem = IntegrationDesignSystem; exports.IntegrationToken = IntegrationToken; exports.IntegrationTokenSchemaOld = IntegrationTokenSchemaOld; exports.IntegrationType = IntegrationType; exports.IntegrationUserInfo = IntegrationUserInfo; exports.InternalStatus = InternalStatus; exports.InternalStatusSchema = InternalStatusSchema; exports.InvoiceCouponSchema = InvoiceCouponSchema; exports.InvoiceLineSchema = InvoiceLineSchema; exports.InvoiceSchema = InvoiceSchema; exports.LetterSpacingTokenData = LetterSpacingTokenData; exports.LetterSpacingUnit = LetterSpacingUnit; exports.LetterSpacingValue = LetterSpacingValue; exports.LineHeightTokenData = LineHeightTokenData; exports.LineHeightUnit = LineHeightUnit; exports.LineHeightValue = LineHeightValue; exports.ListExporterQuery = ListExporterQuery; exports.LiveblocksNotificationSettings = LiveblocksNotificationSettings; exports.MAX_MEMBERS_COUNT = MAX_MEMBERS_COUNT; exports.NpmPackage = NpmPackage; exports.NpmProxyToken = NpmProxyToken; exports.NpmProxyTokenPayload = NpmProxyTokenPayload; exports.NpmRegistrCustomAuthConfig = NpmRegistrCustomAuthConfig; exports.NpmRegistryAuthConfig = NpmRegistryAuthConfig; exports.NpmRegistryAuthType = NpmRegistryAuthType; exports.NpmRegistryBasicAuthConfig = NpmRegistryBasicAuthConfig; exports.NpmRegistryBearerAuthConfig = NpmRegistryBearerAuthConfig; exports.NpmRegistryConfig = NpmRegistryConfig; exports.NpmRegistryNoAuthConfig = NpmRegistryNoAuthConfig; exports.NpmRegistryType = NpmRegistryType; exports.OAuthProvider = OAuthProvider; exports.OAuthProviderNames = OAuthProviderNames; exports.OAuthProviderSchema = OAuthProviderSchema; exports.ObjectMeta = ObjectMeta; exports.OpacityTokenData = OpacityTokenData; exports.OpacityValue = OpacityValue; exports.PageBlockAlignment = PageBlockAlignment; exports.PageBlockAppearanceV2 = PageBlockAppearanceV2; exports.PageBlockAsset = PageBlockAsset; exports.PageBlockAssetBlockConfig = PageBlockAssetBlockConfig; exports.PageBlockAssetComponent = PageBlockAssetComponent; exports.PageBlockAssetEntityMeta = PageBlockAssetEntityMeta; exports.PageBlockAssetType = PageBlockAssetType; exports.PageBlockBaseV1 = PageBlockBaseV1; exports.PageBlockBehaviorDataType = PageBlockBehaviorDataType; exports.PageBlockBehaviorSelectionType = PageBlockBehaviorSelectionType; exports.PageBlockCalloutType = PageBlockCalloutType; exports.PageBlockCategory = PageBlockCategory; exports.PageBlockCodeLanguage = PageBlockCodeLanguage; exports.PageBlockColorV2 = PageBlockColorV2; exports.PageBlockCustomBlockPropertyImageValue = PageBlockCustomBlockPropertyImageValue; exports.PageBlockCustomBlockPropertyValue = PageBlockCustomBlockPropertyValue; exports.PageBlockDataV2 = PageBlockDataV2; exports.PageBlockDefinition = PageBlockDefinition; exports.PageBlockDefinitionAppearance = PageBlockDefinitionAppearance; exports.PageBlockDefinitionBehavior = PageBlockDefinitionBehavior; exports.PageBlockDefinitionBooleanOptions = PageBlockDefinitionBooleanOptions; exports.PageBlockDefinitionBooleanPropertyStyle = PageBlockDefinitionBooleanPropertyStyle; exports.PageBlockDefinitionComponentOptions = PageBlockDefinitionComponentOptions; exports.PageBlockDefinitionFigmaComponentOptions = PageBlockDefinitionFigmaComponentOptions; exports.PageBlockDefinitionImageAspectRatio = PageBlockDefinitionImageAspectRatio; exports.PageBlockDefinitionImageOptions = PageBlockDefinitionImageOptions; exports.PageBlockDefinitionImageWidth = PageBlockDefinitionImageWidth; exports.PageBlockDefinitionItem = PageBlockDefinitionItem; exports.PageBlockDefinitionLayout = PageBlockDefinitionLayout; exports.PageBlockDefinitionLayoutAlign = PageBlockDefinitionLayoutAlign; exports.PageBlockDefinitionLayoutBase = PageBlockDefinitionLayoutBase; exports.PageBlockDefinitionLayoutGap = PageBlockDefinitionLayoutGap; exports.PageBlockDefinitionLayoutResizing = PageBlockDefinitionLayoutResizing; exports.PageBlockDefinitionLayoutType = PageBlockDefinitionLayoutType; exports.PageBlockDefinitionMultiRichTextPropertyStyle = PageBlockDefinitionMultiRichTextPropertyStyle; exports.PageBlockDefinitionMultiSelectPropertyStyle = PageBlockDefinitionMultiSelectPropertyStyle; exports.PageBlockDefinitionMutiRichTextOptions = PageBlockDefinitionMutiRichTextOptions; exports.PageBlockDefinitionNumberOptions = PageBlockDefinitionNumberOptions; exports.PageBlockDefinitionOnboarding = PageBlockDefinitionOnboarding; exports.PageBlockDefinitionProperty = PageBlockDefinitionProperty; exports.PageBlockDefinitionPropertyType = PageBlockDefinitionPropertyType; exports.PageBlockDefinitionRichTextEditorOptions = PageBlockDefinitionRichTextEditorOptions; exports.PageBlockDefinitionRichTextEditorPropertyStyle = PageBlockDefinitionRichTextEditorPropertyStyle; exports.PageBlockDefinitionRichTextOptions = PageBlockDefinitionRichTextOptions; exports.PageBlockDefinitionRichTextPropertyStyle = PageBlockDefinitionRichTextPropertyStyle; exports.PageBlockDefinitionSelectChoice = PageBlockDefinitionSelectChoice; exports.PageBlockDefinitionSelectOptions = PageBlockDefinitionSelectOptions; exports.PageBlockDefinitionSingleSelectPropertyColor = PageBlockDefinitionSingleSelectPropertyColor; exports.PageBlockDefinitionSingleSelectPropertyStyle = PageBlockDefinitionSingleSelectPropertyStyle; exports.PageBlockDefinitionTextOptions = PageBlockDefinitionTextOptions; exports.PageBlockDefinitionTextPropertyColor = PageBlockDefinitionTextPropertyColor; exports.PageBlockDefinitionTextPropertyStyle = PageBlockDefinitionTextPropertyStyle; exports.PageBlockDefinitionUntypedPropertyOptions = PageBlockDefinitionUntypedPropertyOptions; exports.PageBlockDefinitionVariant = PageBlockDefinitionVariant; exports.PageBlockDefinitionsMap = PageBlockDefinitionsMap; exports.PageBlockEditorModelV2 = PageBlockEditorModelV2; exports.PageBlockFigmaComponentBlockConfig = PageBlockFigmaComponentBlockConfig; exports.PageBlockFigmaComponentEntityMeta = PageBlockFigmaComponentEntityMeta; exports.PageBlockFigmaFrameProperties = PageBlockFigmaFrameProperties; exports.PageBlockFigmaNodeEntityMeta = PageBlockFigmaNodeEntityMeta; exports.PageBlockFile = PageBlockFile; exports.PageBlockFrame = PageBlockFrame; exports.PageBlockFrameOrigin = PageBlockFrameOrigin; exports.PageBlockGuideline = PageBlockGuideline; exports.PageBlockImageAlignment = PageBlockImageAlignment; exports.PageBlockImageReference = PageBlockImageReference; exports.PageBlockImageResourceReference = PageBlockImageResourceReference; exports.PageBlockImageType = PageBlockImageType; exports.PageBlockItemAssetPropertyValue = PageBlockItemAssetPropertyValue; exports.PageBlockItemAssetValue = PageBlockItemAssetValue; exports.PageBlockItemBooleanValue = PageBlockItemBooleanValue; exports.PageBlockItemCodeValue = PageBlockItemCodeValue; exports.PageBlockItemColorValue = PageBlockItemColorValue; exports.PageBlockItemComponentPropertyValue = PageBlockItemComponentPropertyValue; exports.PageBlockItemComponentValue = PageBlockItemComponentValue; exports.PageBlockItemDividerValue = PageBlockItemDividerValue; exports.PageBlockItemEmbedValue = PageBlockItemEmbedValue; exports.PageBlockItemFigmaComponentValue = PageBlockItemFigmaComponentValue; exports.PageBlockItemFigmaNodeValue = PageBlockItemFigmaNodeValue; exports.PageBlockItemFileValue = PageBlockItemFileValue; exports.PageBlockItemImageValue = PageBlockItemImageValue; exports.PageBlockItemMarkdownValue = PageBlockItemMarkdownValue; exports.PageBlockItemMultiRichTextValue = PageBlockItemMultiRichTextValue; exports.PageBlockItemMultiSelectValue = PageBlockItemMultiSelectValue; exports.PageBlockItemNumberValue = PageBlockItemNumberValue; exports.PageBlockItemRichTextEditorListNode = PageBlockItemRichTextEditorListNode; exports.PageBlockItemRichTextEditorNode = PageBlockItemRichTextEditorNode; exports.PageBlockItemRichTextEditorParagraphNode = PageBlockItemRichTextEditorParagraphNode; exports.PageBlockItemRichTextEditorValue = PageBlockItemRichTextEditorValue; exports.PageBlockItemRichTextValue = PageBlockItemRichTextValue; exports.PageBlockItemSandboxValue = PageBlockItemSandboxValue; exports.PageBlockItemSingleSelectValue = PageBlockItemSingleSelectValue; exports.PageBlockItemStorybookValue = PageBlockItemStorybookValue; exports.PageBlockItemStorybookValueOld = PageBlockItemStorybookValueOld; exports.PageBlockItemSwatch = PageBlockItemSwatch; exports.PageBlockItemTableCell = PageBlockItemTableCell; exports.PageBlockItemTableImageNode = PageBlockItemTableImageNode; exports.PageBlockItemTableNode = PageBlockItemTableNode; exports.PageBlockItemTableRichTextNode = PageBlockItemTableRichTextNode; exports.PageBlockItemTableRow = PageBlockItemTableRow; exports.PageBlockItemTableValue = PageBlockItemTableValue; exports.PageBlockItemTextValue = PageBlockItemTextValue; exports.PageBlockItemTokenPropertyValue = PageBlockItemTokenPropertyValue; exports.PageBlockItemTokenTypeValue = PageBlockItemTokenTypeValue; exports.PageBlockItemTokenValue = PageBlockItemTokenValue; exports.PageBlockItemUntypedValue = PageBlockItemUntypedValue; exports.PageBlockItemUrlValue = PageBlockItemUrlValue; exports.PageBlockItemV2 = PageBlockItemV2; exports.PageBlockLinkPreview = PageBlockLinkPreview; exports.PageBlockLinkType = PageBlockLinkType; exports.PageBlockLinkV2 = PageBlockLinkV2; exports.PageBlockPreviewContainerSize = PageBlockPreviewContainerSize; exports.PageBlockRenderCodeProperties = PageBlockRenderCodeProperties; exports.PageBlockResourceFrameNodeReference = PageBlockResourceFrameNodeReference; exports.PageBlockSelectedFigmaComponent = PageBlockSelectedFigmaComponent; exports.PageBlockShortcut = PageBlockShortcut; exports.PageBlockStorybookBlockConfig = PageBlockStorybookBlockConfig; exports.PageBlockStorybookItem = PageBlockStorybookItem; exports.PageBlockSwatch = PageBlockSwatch; exports.PageBlockTableCellAlignment = PageBlockTableCellAlignment; exports.PageBlockTableColumn = PageBlockTableColumn; exports.PageBlockTableProperties = PageBlockTableProperties; exports.PageBlockText = PageBlockText; exports.PageBlockTextSpan = PageBlockTextSpan; exports.PageBlockTextSpanAttribute = PageBlockTextSpanAttribute; exports.PageBlockTextSpanAttributeType = PageBlockTextSpanAttributeType; exports.PageBlockTheme = PageBlockTheme; exports.PageBlockThemeDisplayMode = PageBlockThemeDisplayMode; exports.PageBlockThemeType = PageBlockThemeType; exports.PageBlockTilesAlignment = PageBlockTilesAlignment; exports.PageBlockTilesLayout = PageBlockTilesLayout; exports.PageBlockTokenBlockConfig = PageBlockTokenBlockConfig; exports.PageBlockTokenNameFormat = PageBlockTokenNameFormat; exports.PageBlockTokenValueFormat = PageBlockTokenValueFormat; exports.PageBlockTypeV1 = PageBlockTypeV1; exports.PageBlockUrlPreview = PageBlockUrlPreview; exports.PageBlockV1 = PageBlockV1; exports.PageBlockV2 = PageBlockV2; exports.PageRedirect = PageRedirect; exports.PageSectionAppearanceV2 = PageSectionAppearanceV2; exports.PageSectionColumnV2 = PageSectionColumnV2; exports.PageSectionEditorModelV2 = PageSectionEditorModelV2; exports.PageSectionItemV2 = PageSectionItemV2; exports.PageSectionPaddingV2 = PageSectionPaddingV2; exports.PageSectionTypeV2 = PageSectionTypeV2; exports.ParagraphIndentTokenData = ParagraphIndentTokenData; exports.ParagraphIndentUnit = ParagraphIndentUnit; exports.ParagraphIndentValue = ParagraphIndentValue; exports.ParagraphSpacingTokenData = ParagraphSpacingTokenData; exports.ParagraphSpacingUnit = ParagraphSpacingUnit; exports.ParagraphSpacingValue = ParagraphSpacingValue; exports.PeriodSchema = PeriodSchema; exports.PersonalAccessToken = PersonalAccessToken; exports.Pipeline = Pipeline; exports.PipelineDestinationExtraType = PipelineDestinationExtraType; exports.PipelineDestinationGitType = PipelineDestinationGitType; exports.PipelineDestinationType = PipelineDestinationType; exports.PipelineEventType = PipelineEventType; exports.PluginOAuthRequestSchema = PluginOAuthRequestSchema; exports.Point2D = Point2D; exports.PortalSettings = PortalSettings; exports.PortalSettingsSidebar = PortalSettingsSidebar; exports.PortalSettingsSidebarLink = PortalSettingsSidebarLink; exports.PortalSettingsSidebarSection = PortalSettingsSidebarSection; exports.PortalSettingsTheme = PortalSettingsTheme; exports.PortalTheme = PortalTheme; exports.PortalThemePreset = PortalThemePreset; exports.PostStripeCheckoutBodyInputSchema = PostStripeCheckoutBodyInputSchema; exports.PostStripeCheckoutOutputSchema = PostStripeCheckoutOutputSchema; exports.PostStripePortalSessionBodyInputSchema = PostStripePortalSessionBodyInputSchema; exports.PostStripePortalSessionOutputSchema = PostStripePortalSessionOutputSchema; exports.PostStripePortalUpdateSessionBodyInputSchema = PostStripePortalUpdateSessionBodyInputSchema; exports.PriceSchema = PriceSchema; exports.ProductCode = ProductCode; exports.ProductCodeSchema = ProductCodeSchema; exports.ProductCopyTokenData = ProductCopyTokenData; exports.ProductCopyValue = ProductCopyValue; exports.ProjectFeature = ProjectFeature; exports.ProjectFeatureStatus = ProjectFeatureStatus; exports.PublishedDoc = PublishedDoc; exports.PublishedDocEnvironment = PublishedDocEnvironment; exports.PublishedDocPage = PublishedDocPage; exports.PublishedDocPageVisitsEntry = PublishedDocPageVisitsEntry; exports.PublishedDocRoutingVersion = PublishedDocRoutingVersion; exports.PublishedDocsChecksums = PublishedDocsChecksums; exports.PublishedDocsDump = PublishedDocsDump; exports.PulsarBaseProperty = PulsarBaseProperty; exports.PulsarContributionConfigurationProperty = PulsarContributionConfigurationProperty; exports.PulsarContributionVariant = PulsarContributionVariant; exports.PulsarCustomBlock = PulsarCustomBlock; exports.PulsarPropertyType = PulsarPropertyType; exports.RESERVED_SLUGS = RESERVED_SLUGS; exports.RESERVED_SLUG_PREFIX = RESERVED_SLUG_PREFIX; exports.Registry = Registry; exports.RegistryType = RegistryType; exports.RenderedAssetFile = RenderedAssetFile; exports.ResolvedAsset = ResolvedAsset; exports.RestoredDocumentationGroup = RestoredDocumentationGroup; exports.RestoredDocumentationPage = RestoredDocumentationPage; exports.RoomType = RoomType; exports.RoomTypeEnum = RoomTypeEnum; exports.RoomTypeSchema = RoomTypeSchema; exports.SHORT_PERSISTENT_ID_LENGTH = SHORT_PERSISTENT_ID_LENGTH; exports.SafeIdSchema = SafeIdSchema; exports.Session = Session; exports.SessionData = SessionData; exports.ShadowLayerValue = ShadowLayerValue; exports.ShadowTokenData = ShadowTokenData; exports.ShadowType = ShadowType; exports.ShadowValue = ShadowValue; exports.ShallowDesignElement = ShallowDesignElement; exports.Size = Size; exports.SizeOrUndefined = SizeOrUndefined; exports.SizeTokenData = SizeTokenData; exports.SizeUnit = SizeUnit; exports.SizeValue = SizeValue; exports.SortOrder = SortOrder; exports.SourceImportComponentSummary = SourceImportComponentSummary; exports.SourceImportFrameSummary = SourceImportFrameSummary; exports.SourceImportStorybookSummary = SourceImportStorybookSummary; exports.SourceImportSummary = SourceImportSummary; exports.SourceImportSummaryByTokenType = SourceImportSummaryByTokenType; exports.SourceImportTokenSummary = SourceImportTokenSummary; exports.SpaceTokenData = SpaceTokenData; exports.SpaceUnit = SpaceUnit; exports.SpaceValue = SpaceValue; exports.SsoProvider = SsoProvider; exports.StorybookEntry = StorybookEntry; exports.StorybookEntryOrigin = StorybookEntryOrigin; exports.StorybookPayload = StorybookPayload; exports.StringTokenData = StringTokenData; exports.StringValue = StringValue; exports.StripeSubscriptionStatus = StripeSubscriptionStatus; exports.StripeSubscriptionStatusSchema = StripeSubscriptionStatusSchema; exports.Subscription = Subscription; exports.SupernovaException = SupernovaException; exports.TextCase = TextCase; exports.TextCaseTokenData = TextCaseTokenData; exports.TextCaseValue = TextCaseValue; exports.TextDecoration = TextDecoration; exports.TextDecorationTokenData = TextDecorationTokenData; exports.TextDecorationValue = TextDecorationValue; exports.Theme = Theme; exports.ThemeElementData = ThemeElementData; exports.ThemeImportModel = ThemeImportModel; exports.ThemeImportModelInput = ThemeImportModelInput; exports.ThemeOrigin = ThemeOrigin; exports.ThemeOriginObject = ThemeOriginObject; exports.ThemeOriginPart = ThemeOriginPart; exports.ThemeOriginSource = ThemeOriginSource; exports.ThemeOverride = ThemeOverride; exports.ThemeOverrideImportModel = ThemeOverrideImportModel; exports.ThemeOverrideImportModelBase = ThemeOverrideImportModelBase; exports.ThemeOverrideImportModelInput = ThemeOverrideImportModelInput; exports.ThemeOverrideOrigin = ThemeOverrideOrigin; exports.ThemeOverrideOriginPart = ThemeOverrideOriginPart; exports.ThemeUpdateImportModel = ThemeUpdateImportModel; exports.ThemeUpdateImportModelInput = ThemeUpdateImportModelInput; exports.TokenDataAliasSchema = TokenDataAliasSchema; exports.TypographyTokenData = TypographyTokenData; exports.TypographyValue = TypographyValue; exports.UpdateMembershipRolesInput = UpdateMembershipRolesInput; exports.UrlImageImportModel = UrlImageImportModel; exports.User = User; exports.UserAnalyticsCleanupSchedule = UserAnalyticsCleanupSchedule; exports.UserAnalyticsCleanupScheduleDbInput = UserAnalyticsCleanupScheduleDbInput; exports.UserDump = UserDump; exports.UserIdentity = UserIdentity; exports.UserInvite = UserInvite; exports.UserInvites = UserInvites; exports.UserLinkedIntegrations = UserLinkedIntegrations; exports.UserMinified = UserMinified; exports.UserNotificationSettings = UserNotificationSettings; exports.UserOnboarding = UserOnboarding; exports.UserOnboardingDepartment = UserOnboardingDepartment; exports.UserOnboardingJobLevel = UserOnboardingJobLevel; exports.UserProfile = UserProfile; exports.UserProfileUpdate = UserProfileUpdate; exports.UserSession = UserSession; exports.UserSource = UserSource; exports.UserTest = UserTest; exports.UserTheme = UserTheme; exports.UserThemePreset = UserThemePreset; exports.VersionCreationJob = VersionCreationJob; exports.VersionCreationJobStatus = VersionCreationJobStatus; exports.Visibility = Visibility; exports.VisibilityTokenData = VisibilityTokenData; exports.VisibilityValue = VisibilityValue; exports.Workspace = Workspace; exports.WorkspaceConfigurationUpdate = WorkspaceConfigurationUpdate; exports.WorkspaceContext = WorkspaceContext; exports.WorkspaceDump = WorkspaceDump; exports.WorkspaceInvitation = WorkspaceInvitation; exports.WorkspaceInviteEmailData = WorkspaceInviteEmailData; exports.WorkspaceInviteEmailRecipient = WorkspaceInviteEmailRecipient; exports.WorkspaceIpSettings = WorkspaceIpSettings; exports.WorkspaceIpWhitelistEntry = WorkspaceIpWhitelistEntry; exports.WorkspaceMembership = WorkspaceMembership; exports.WorkspaceOAuthRequestSchema = WorkspaceOAuthRequestSchema; exports.WorkspaceProfile = WorkspaceProfile; exports.WorkspaceProfileUpdate = WorkspaceProfileUpdate; exports.WorkspaceRole = WorkspaceRole; exports.WorkspaceRoleSchema = WorkspaceRoleSchema; exports.WorkspaceRoom = WorkspaceRoom; exports.WorkspaceSeatType = WorkspaceSeatType; exports.WorkspaceUntypedData = WorkspaceUntypedData; exports.WorkspaceWithDesignSystems = WorkspaceWithDesignSystems; exports.ZIndexTokenData = ZIndexTokenData; exports.ZIndexUnit = ZIndexUnit; exports.ZIndexValue = ZIndexValue; exports.addImportModelCollections = addImportModelCollections; exports.applyShallowObjectUpdate = applyShallowObjectUpdate; exports.areShallowObjectsEqual = areShallowObjectsEqual; exports.areTokenTypesCompatible = areTokenTypesCompatible; exports.buildConstantEnum = buildConstantEnum; exports.castStringToDimensionValue = castStringToDimensionValue; exports.chunkedArray = chunkedArray; exports.convertTokenTypedData = convertTokenTypedData; exports.defaultDocumentationItemConfigurationV1 = defaultDocumentationItemConfigurationV1; exports.defaultDocumentationItemConfigurationV2 = defaultDocumentationItemConfigurationV2; exports.defaultDocumentationItemHeaderV1 = defaultDocumentationItemHeaderV1; exports.defaultDocumentationItemHeaderV2 = defaultDocumentationItemHeaderV2; exports.defaultNotificationSettings = defaultNotificationSettings; exports.deriveWorkspaceSeatTypeFromRole = deriveWorkspaceSeatTypeFromRole; exports.designTokenImportModelTypeFilter = designTokenImportModelTypeFilter; exports.designTokenTypeFilter = designTokenTypeFilter; exports.extractTokenTypedData = extractTokenTypedData; exports.figmaFileStructureImportModelToMap = figmaFileStructureImportModelToMap; exports.figmaFileStructureToMap = figmaFileStructureToMap; exports.filterNonNullish = filterNonNullish; exports.forceUnwrapNullish = forceUnwrapNullish; exports.generateShortPersistentId = generateShortPersistentId; exports.getCodenameFromText = getCodenameFromText; exports.getFigmaRenderFormatFileExtension = getFigmaRenderFormatFileExtension; exports.groupBy = groupBy; exports.hasProperty = hasProperty; exports.isDataSourceOfType = isDataSourceOfType; exports.isDesignTokenImportModelOfType = isDesignTokenImportModelOfType; exports.isDesignTokenOfType = isDesignTokenOfType; exports.isImportedAsset = isImportedAsset; exports.isImportedDesignToken = isImportedDesignToken; exports.isImportedFigmaComponent = isImportedFigmaComponent; exports.isNotNullish = isNotNullish; exports.isNullish = isNullish; exports.isSlugReserved = isSlugReserved; exports.isTokenType = isTokenType; exports.joinRepeatingSpans = joinRepeatingSpans; exports.mapByUnique = mapByUnique; exports.mapPageBlockItemValuesV2 = mapPageBlockItemValuesV2; exports.nonNullFilter = nonNullFilter; exports.nonNullishFilter = nonNullishFilter; exports.nullishToOptional = nullishToOptional; exports.nullsToUndefined = nullsToUndefined; exports.parseUrl = parseUrl; exports.pickDefined = pickDefined; exports.pickLatestGroupSnapshots = pickLatestGroupSnapshots; exports.pickLatestPageSnapshots = pickLatestPageSnapshots; exports.pickLatestSnapshots = pickLatestSnapshots; exports.promiseWithTimeout = promiseWithTimeout; exports.publishedDocEnvironments = publishedDocEnvironments; exports.recordToMap = recordToMap; exports.removeCommentSpans = removeCommentSpans; exports.sleep = sleep; exports.slugRegex = slugRegex; exports.slugify = slugify; exports.storybookValueFromOldValue = storybookValueFromOldValue; exports.tokenAliasOrValue = tokenAliasOrValue; exports.tokenElementTypes = tokenElementTypes; exports.traversePageBlockItemValuesV2 = traversePageBlockItemValuesV2; exports.traversePageBlockItemsV2 = traversePageBlockItemsV2; exports.traversePageBlocksV1 = traversePageBlocksV1; exports.traversePageItemsV2 = traversePageItemsV2; exports.traverseStructure = traverseStructure; exports.trimLeadingSlash = trimLeadingSlash; exports.trimTrailingSlash = trimTrailingSlash; exports.tryParseShortPersistentId = tryParseShortPersistentId; exports.tryParseUrl = tryParseUrl; exports.uniqueBy = uniqueBy; exports.workspaceRoleToDesignSystemRole = workspaceRoleToDesignSystemRole; exports.zodCreateInputOmit = zodCreateInputOmit; exports.zodUpdateInputOmit = zodUpdateInputOmit;
7493
7503
  //# sourceMappingURL=index.js.map