@supernova-studio/model 1.10.11 → 1.10.13

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
@@ -165456,23 +165456,34 @@ declare const ForgeProjectIteration: z.ZodObject<{
165456
165456
  }>;
165457
165457
  type ForgeProjectIteration = z.infer<typeof ForgeProjectIteration>;
165458
165458
 
165459
- declare const ForgeProjectPrivilegeSchema: z.ZodObject<{
165459
+ declare const ForgeProjectRole: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
165460
+ type ForgeProjectRole = z.infer<typeof ForgeProjectRole>;
165461
+ declare const ForgeProjectMembership: z.ZodObject<{
165460
165462
  userId: z.ZodString;
165461
165463
  fpId: z.ZodString;
165462
- role: z.ZodString;
165464
+ workspaceMembershipId: z.ZodString;
165465
+ workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
165466
+ role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
165463
165467
  }, "strip", z.ZodTypeAny, {
165464
165468
  userId: string;
165465
- role: string;
165469
+ role: "Admin" | "Viewer" | "Editor";
165470
+ workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
165471
+ workspaceMembershipId: string;
165466
165472
  fpId: string;
165467
165473
  }, {
165468
165474
  userId: string;
165469
- role: string;
165475
+ role: "Admin" | "Viewer" | "Editor";
165476
+ workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
165477
+ workspaceMembershipId: string;
165470
165478
  fpId: string;
165471
165479
  }>;
165472
- type ForgeProjectMembership = z.infer<typeof ForgeProjectPrivilegeSchema>;
165480
+ type ForgeProjectMembership = z.infer<typeof ForgeProjectMembership>;
165473
165481
  type CreateForgeProjectMembership = DbCreateInputOmit<ForgeProjectMembership>;
165474
165482
 
165475
165483
  declare const ForgeProjectTag: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
165484
+ type ForgeProjectTag = z.infer<typeof ForgeProjectTag>;
165485
+ declare const ForgeProjectAccessMode: z.ZodEnum<["InviteOnly", "Open"]>;
165486
+ type ForgeProjectAccessMode = z.infer<typeof ForgeProjectAccessMode>;
165476
165487
  declare const ForgeProject: z.ZodObject<{
165477
165488
  createdAt: z.ZodDate;
165478
165489
  createdByUserId: z.ZodOptional<z.ZodString>;
@@ -165493,6 +165504,7 @@ declare const ForgeProject: z.ZodObject<{
165493
165504
  tags: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
165494
165505
  updatedAt: z.ZodOptional<z.ZodDate>;
165495
165506
  workspaceId: z.ZodString;
165507
+ accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
165496
165508
  }, "strip", z.ZodTypeAny, {
165497
165509
  instruction: string | null;
165498
165510
  id: string;
@@ -165504,6 +165516,7 @@ declare const ForgeProject: z.ZodObject<{
165504
165516
  name: string;
165505
165517
  description?: string | undefined;
165506
165518
  };
165519
+ accessMode: "Open" | "InviteOnly";
165507
165520
  fpContextId: string;
165508
165521
  updatedAt?: Date | undefined;
165509
165522
  createdByUserId?: string | undefined;
@@ -165517,6 +165530,7 @@ declare const ForgeProject: z.ZodObject<{
165517
165530
  name: string;
165518
165531
  description?: string | undefined;
165519
165532
  };
165533
+ accessMode: "Open" | "InviteOnly";
165520
165534
  fpContextId: string;
165521
165535
  updatedAt?: Date | undefined;
165522
165536
  tags?: string[] | undefined;
@@ -196145,4 +196159,4 @@ type PersonalAccessTokenWithUser = {
196145
196159
  token: PersonalAccessToken;
196146
196160
  };
196147
196161
 
196148
- 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 CreateForgeProjectContext, type CreateForgeProjectMembership, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, 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, ForgeProjectContext, ForgeProjectContextDependency, ForgeProjectContextTailwindConfig, ForgeProjectIteration, ForgeProjectIterationMergeMeta, type ForgeProjectMembership, ForgeProjectPrivilegeSchema, ForgeProjectTag, 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, 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 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, 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, 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 UpdateForgeProjectContext, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, 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, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, 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, 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 };
196162
+ 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 CreateForgeProjectContext, type CreateForgeProjectMembership, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, 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, ForgeProjectContext, ForgeProjectContextDependency, ForgeProjectContextTailwindConfig, ForgeProjectIteration, ForgeProjectIterationMergeMeta, ForgeProjectMembership, ForgeProjectRole, ForgeProjectTag, 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, 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 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, 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, 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 UpdateForgeProjectContext, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, 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, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, 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, 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
@@ -165456,23 +165456,34 @@ declare const ForgeProjectIteration: z.ZodObject<{
165456
165456
  }>;
165457
165457
  type ForgeProjectIteration = z.infer<typeof ForgeProjectIteration>;
165458
165458
 
165459
- declare const ForgeProjectPrivilegeSchema: z.ZodObject<{
165459
+ declare const ForgeProjectRole: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
165460
+ type ForgeProjectRole = z.infer<typeof ForgeProjectRole>;
165461
+ declare const ForgeProjectMembership: z.ZodObject<{
165460
165462
  userId: z.ZodString;
165461
165463
  fpId: z.ZodString;
165462
- role: z.ZodString;
165464
+ workspaceMembershipId: z.ZodString;
165465
+ workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
165466
+ role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
165463
165467
  }, "strip", z.ZodTypeAny, {
165464
165468
  userId: string;
165465
- role: string;
165469
+ role: "Admin" | "Viewer" | "Editor";
165470
+ workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
165471
+ workspaceMembershipId: string;
165466
165472
  fpId: string;
165467
165473
  }, {
165468
165474
  userId: string;
165469
- role: string;
165475
+ role: "Admin" | "Viewer" | "Editor";
165476
+ workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
165477
+ workspaceMembershipId: string;
165470
165478
  fpId: string;
165471
165479
  }>;
165472
- type ForgeProjectMembership = z.infer<typeof ForgeProjectPrivilegeSchema>;
165480
+ type ForgeProjectMembership = z.infer<typeof ForgeProjectMembership>;
165473
165481
  type CreateForgeProjectMembership = DbCreateInputOmit<ForgeProjectMembership>;
165474
165482
 
165475
165483
  declare const ForgeProjectTag: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
165484
+ type ForgeProjectTag = z.infer<typeof ForgeProjectTag>;
165485
+ declare const ForgeProjectAccessMode: z.ZodEnum<["InviteOnly", "Open"]>;
165486
+ type ForgeProjectAccessMode = z.infer<typeof ForgeProjectAccessMode>;
165476
165487
  declare const ForgeProject: z.ZodObject<{
165477
165488
  createdAt: z.ZodDate;
165478
165489
  createdByUserId: z.ZodOptional<z.ZodString>;
@@ -165493,6 +165504,7 @@ declare const ForgeProject: z.ZodObject<{
165493
165504
  tags: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
165494
165505
  updatedAt: z.ZodOptional<z.ZodDate>;
165495
165506
  workspaceId: z.ZodString;
165507
+ accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
165496
165508
  }, "strip", z.ZodTypeAny, {
165497
165509
  instruction: string | null;
165498
165510
  id: string;
@@ -165504,6 +165516,7 @@ declare const ForgeProject: z.ZodObject<{
165504
165516
  name: string;
165505
165517
  description?: string | undefined;
165506
165518
  };
165519
+ accessMode: "Open" | "InviteOnly";
165507
165520
  fpContextId: string;
165508
165521
  updatedAt?: Date | undefined;
165509
165522
  createdByUserId?: string | undefined;
@@ -165517,6 +165530,7 @@ declare const ForgeProject: z.ZodObject<{
165517
165530
  name: string;
165518
165531
  description?: string | undefined;
165519
165532
  };
165533
+ accessMode: "Open" | "InviteOnly";
165520
165534
  fpContextId: string;
165521
165535
  updatedAt?: Date | undefined;
165522
165536
  tags?: string[] | undefined;
@@ -196145,4 +196159,4 @@ type PersonalAccessTokenWithUser = {
196145
196159
  token: PersonalAccessToken;
196146
196160
  };
196147
196161
 
196148
- 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 CreateForgeProjectContext, type CreateForgeProjectMembership, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, 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, ForgeProjectContext, ForgeProjectContextDependency, ForgeProjectContextTailwindConfig, ForgeProjectIteration, ForgeProjectIterationMergeMeta, type ForgeProjectMembership, ForgeProjectPrivilegeSchema, ForgeProjectTag, 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, 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 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, 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, 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 UpdateForgeProjectContext, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, 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, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, 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, 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 };
196162
+ 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 CreateForgeProjectContext, type CreateForgeProjectMembership, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, 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, ForgeProjectContext, ForgeProjectContextDependency, ForgeProjectContextTailwindConfig, ForgeProjectIteration, ForgeProjectIterationMergeMeta, ForgeProjectMembership, ForgeProjectRole, ForgeProjectTag, 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, 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 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, 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, 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 UpdateForgeProjectContext, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, 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, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, 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, 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
@@ -6338,16 +6338,19 @@ var ForgeProjectIteration = _zod.z.object({
6338
6338
 
6339
6339
  // src/forge/project-membership.ts
6340
6340
 
6341
- var ForgeProjectPrivilegeSchema = _zod.z.object({
6341
+ var ForgeProjectRole = _zod.z.enum(["Viewer", "Editor", "Admin"]);
6342
+ var ForgeProjectMembership = _zod.z.object({
6342
6343
  userId: _zod.z.string(),
6343
6344
  fpId: _zod.z.string(),
6344
- role: _zod.z.string()
6345
- // TODO: RCT-5287 Define enum for role
6345
+ workspaceMembershipId: _zod.z.string(),
6346
+ workspaceRole: WorkspaceRoleSchema,
6347
+ role: ForgeProjectRole
6346
6348
  });
6347
6349
 
6348
6350
  // src/forge/project.ts
6349
6351
 
6350
6352
  var ForgeProjectTag = _zod.z.array(_zod.z.string()).default([]);
6353
+ var ForgeProjectAccessMode = _zod.z.enum(["InviteOnly", "Open"]);
6351
6354
  var ForgeProject = _zod.z.object({
6352
6355
  createdAt: _zod.z.coerce.date(),
6353
6356
  createdByUserId: _zod.z.string().optional(),
@@ -6358,7 +6361,8 @@ var ForgeProject = _zod.z.object({
6358
6361
  name: _zod.z.string(),
6359
6362
  tags: ForgeProjectTag,
6360
6363
  updatedAt: _zod.z.coerce.date().optional(),
6361
- workspaceId: _zod.z.string()
6364
+ workspaceId: _zod.z.string(),
6365
+ accessMode: ForgeProjectAccessMode
6362
6366
  });
6363
6367
 
6364
6368
  // src/integrations/external-oauth-request.ts
@@ -7304,5 +7308,7 @@ var PersonalAccessToken = _zod.z.object({
7304
7308
 
7305
7309
 
7306
7310
 
7307
- 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.ForgeProjectContext = ForgeProjectContext; exports.ForgeProjectContextDependency = ForgeProjectContextDependency; exports.ForgeProjectContextTailwindConfig = ForgeProjectContextTailwindConfig; exports.ForgeProjectIteration = ForgeProjectIteration; exports.ForgeProjectIterationMergeMeta = ForgeProjectIterationMergeMeta; exports.ForgeProjectPrivilegeSchema = ForgeProjectPrivilegeSchema; exports.ForgeProjectTag = ForgeProjectTag; 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.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.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.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.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.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.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;
7311
+
7312
+
7313
+ 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.ForgeProjectContext = ForgeProjectContext; exports.ForgeProjectContextDependency = ForgeProjectContextDependency; exports.ForgeProjectContextTailwindConfig = ForgeProjectContextTailwindConfig; exports.ForgeProjectIteration = ForgeProjectIteration; exports.ForgeProjectIterationMergeMeta = ForgeProjectIterationMergeMeta; exports.ForgeProjectMembership = ForgeProjectMembership; exports.ForgeProjectRole = ForgeProjectRole; exports.ForgeProjectTag = ForgeProjectTag; 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.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.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.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.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.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.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;
7308
7314
  //# sourceMappingURL=index.js.map