@supernova-studio/model 1.37.5 → 1.37.8

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.ts CHANGED
@@ -1574,6 +1574,22 @@ declare const ForgeChatMessageSender: z.ZodDiscriminatedUnion<"type", [z.ZodObje
1574
1574
  type: "FunctionCallOutput";
1575
1575
  }>]>;
1576
1576
  type ForgeChatMessageSender = z.infer<typeof ForgeChatMessageSender>;
1577
+ declare const ForgeChatMessageUserScoreType: z.ZodEnum<["Positive", "Negative"]>;
1578
+ type ForgeChatMessageUserScoreType = z.infer<typeof ForgeChatMessageUserScoreType>;
1579
+ declare const ForgeChatMessageUserScore: z.ZodObject<{
1580
+ type: z.ZodEnum<["Positive", "Negative"]>;
1581
+ tags: z.ZodArray<z.ZodString, "many">;
1582
+ comment: z.ZodOptional<z.ZodString>;
1583
+ }, "strip", z.ZodTypeAny, {
1584
+ type: "Positive" | "Negative";
1585
+ tags: string[];
1586
+ comment?: string | undefined;
1587
+ }, {
1588
+ type: "Positive" | "Negative";
1589
+ tags: string[];
1590
+ comment?: string | undefined;
1591
+ }>;
1592
+ type ForgeChatMessageUserScore = z.infer<typeof ForgeChatMessageUserScore>;
1577
1593
  declare const ForgeChatMessage: z.ZodObject<{
1578
1594
  id: z.ZodString;
1579
1595
  threadId: z.ZodString;
@@ -1618,6 +1634,20 @@ declare const ForgeChatMessage: z.ZodObject<{
1618
1634
  }, {
1619
1635
  type: "FunctionCallOutput";
1620
1636
  }>]>;
1637
+ userScore: z.ZodOptional<z.ZodObject<{
1638
+ type: z.ZodEnum<["Positive", "Negative"]>;
1639
+ tags: z.ZodArray<z.ZodString, "many">;
1640
+ comment: z.ZodOptional<z.ZodString>;
1641
+ }, "strip", z.ZodTypeAny, {
1642
+ type: "Positive" | "Negative";
1643
+ tags: string[];
1644
+ comment?: string | undefined;
1645
+ }, {
1646
+ type: "Positive" | "Negative";
1647
+ tags: string[];
1648
+ comment?: string | undefined;
1649
+ }>>;
1650
+ replyToMessageId: z.ZodOptional<z.ZodString>;
1621
1651
  }, "strip", z.ZodTypeAny, {
1622
1652
  id: string;
1623
1653
  createdAt: Date;
@@ -1638,6 +1668,12 @@ declare const ForgeChatMessage: z.ZodObject<{
1638
1668
  type: "FunctionCallOutput";
1639
1669
  };
1640
1670
  opikTraceId?: string | undefined;
1671
+ userScore?: {
1672
+ type: "Positive" | "Negative";
1673
+ tags: string[];
1674
+ comment?: string | undefined;
1675
+ } | undefined;
1676
+ replyToMessageId?: string | undefined;
1641
1677
  }, {
1642
1678
  id: string;
1643
1679
  createdAt: Date;
@@ -1658,6 +1694,12 @@ declare const ForgeChatMessage: z.ZodObject<{
1658
1694
  type: "FunctionCallOutput";
1659
1695
  };
1660
1696
  opikTraceId?: string | undefined;
1697
+ userScore?: {
1698
+ type: "Positive" | "Negative";
1699
+ tags: string[];
1700
+ comment?: string | undefined;
1701
+ } | undefined;
1702
+ replyToMessageId?: string | undefined;
1661
1703
  }>;
1662
1704
  type ForgeChatMessage = z.infer<typeof ForgeChatMessage>;
1663
1705
 
@@ -2332,6 +2374,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
2332
2374
  homepage?: string | null | undefined;
2333
2375
  organization?: string | null | undefined;
2334
2376
  readme?: string | null | undefined;
2377
+ tags?: string[] | null | undefined;
2335
2378
  iconURL?: string | null | undefined;
2336
2379
  properties?: ({
2337
2380
  key: string;
@@ -2405,7 +2448,6 @@ declare const CodeIntegrationDump: z.ZodObject<{
2405
2448
  })[] | null | undefined;
2406
2449
  routingVersion?: string | null | undefined;
2407
2450
  author?: string | null | undefined;
2408
- tags?: string[] | null | undefined;
2409
2451
  packageId?: string | null | undefined;
2410
2452
  configurationProperties?: {
2411
2453
  key: string;
@@ -2951,6 +2993,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
2951
2993
  homepage?: string | null | undefined;
2952
2994
  organization?: string | null | undefined;
2953
2995
  readme?: string | null | undefined;
2996
+ tags?: string[] | null | undefined;
2954
2997
  iconURL?: string | null | undefined;
2955
2998
  properties?: ({
2956
2999
  key: string;
@@ -3024,7 +3067,6 @@ declare const CodeIntegrationDump: z.ZodObject<{
3024
3067
  })[] | null | undefined;
3025
3068
  routingVersion?: string | null | undefined;
3026
3069
  author?: string | null | undefined;
3027
- tags?: string[] | null | undefined;
3028
3070
  packageId?: string | null | undefined;
3029
3071
  configurationProperties?: {
3030
3072
  key: string;
@@ -3955,6 +3997,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
3955
3997
  homepage?: string | null | undefined;
3956
3998
  organization?: string | null | undefined;
3957
3999
  readme?: string | null | undefined;
4000
+ tags?: string[] | null | undefined;
3958
4001
  iconURL?: string | null | undefined;
3959
4002
  properties?: ({
3960
4003
  key: string;
@@ -4028,7 +4071,6 @@ declare const CodeIntegrationDump: z.ZodObject<{
4028
4071
  })[] | null | undefined;
4029
4072
  routingVersion?: string | null | undefined;
4030
4073
  author?: string | null | undefined;
4031
- tags?: string[] | null | undefined;
4032
4074
  packageId?: string | null | undefined;
4033
4075
  configurationProperties?: {
4034
4076
  key: string;
@@ -17086,6 +17128,7 @@ declare const UserDump: z.ZodObject<{
17086
17128
  homepage?: string | null | undefined;
17087
17129
  organization?: string | null | undefined;
17088
17130
  readme?: string | null | undefined;
17131
+ tags?: string[] | null | undefined;
17089
17132
  iconURL?: string | null | undefined;
17090
17133
  properties?: ({
17091
17134
  key: string;
@@ -17159,7 +17202,6 @@ declare const UserDump: z.ZodObject<{
17159
17202
  })[] | null | undefined;
17160
17203
  routingVersion?: string | null | undefined;
17161
17204
  author?: string | null | undefined;
17162
- tags?: string[] | null | undefined;
17163
17205
  packageId?: string | null | undefined;
17164
17206
  configurationProperties?: {
17165
17207
  key: string;
@@ -17705,6 +17747,7 @@ declare const UserDump: z.ZodObject<{
17705
17747
  homepage?: string | null | undefined;
17706
17748
  organization?: string | null | undefined;
17707
17749
  readme?: string | null | undefined;
17750
+ tags?: string[] | null | undefined;
17708
17751
  iconURL?: string | null | undefined;
17709
17752
  properties?: ({
17710
17753
  key: string;
@@ -17778,7 +17821,6 @@ declare const UserDump: z.ZodObject<{
17778
17821
  })[] | null | undefined;
17779
17822
  routingVersion?: string | null | undefined;
17780
17823
  author?: string | null | undefined;
17781
- tags?: string[] | null | undefined;
17782
17824
  packageId?: string | null | undefined;
17783
17825
  configurationProperties?: {
17784
17826
  key: string;
@@ -18709,6 +18751,7 @@ declare const UserDump: z.ZodObject<{
18709
18751
  homepage?: string | null | undefined;
18710
18752
  organization?: string | null | undefined;
18711
18753
  readme?: string | null | undefined;
18754
+ tags?: string[] | null | undefined;
18712
18755
  iconURL?: string | null | undefined;
18713
18756
  properties?: ({
18714
18757
  key: string;
@@ -18782,7 +18825,6 @@ declare const UserDump: z.ZodObject<{
18782
18825
  })[] | null | undefined;
18783
18826
  routingVersion?: string | null | undefined;
18784
18827
  author?: string | null | undefined;
18785
- tags?: string[] | null | undefined;
18786
18828
  packageId?: string | null | undefined;
18787
18829
  configurationProperties?: {
18788
18830
  key: string;
@@ -20651,6 +20693,7 @@ declare const UserDump: z.ZodObject<{
20651
20693
  homepage?: string | null | undefined;
20652
20694
  organization?: string | null | undefined;
20653
20695
  readme?: string | null | undefined;
20696
+ tags?: string[] | null | undefined;
20654
20697
  iconURL?: string | null | undefined;
20655
20698
  properties?: ({
20656
20699
  key: string;
@@ -20724,7 +20767,6 @@ declare const UserDump: z.ZodObject<{
20724
20767
  })[] | null | undefined;
20725
20768
  routingVersion?: string | null | undefined;
20726
20769
  author?: string | null | undefined;
20727
- tags?: string[] | null | undefined;
20728
20770
  packageId?: string | null | undefined;
20729
20771
  configurationProperties?: {
20730
20772
  key: string;
@@ -22472,6 +22514,7 @@ declare const UserDump: z.ZodObject<{
22472
22514
  homepage?: string | null | undefined;
22473
22515
  organization?: string | null | undefined;
22474
22516
  readme?: string | null | undefined;
22517
+ tags?: string[] | null | undefined;
22475
22518
  iconURL?: string | null | undefined;
22476
22519
  properties?: ({
22477
22520
  key: string;
@@ -22545,7 +22588,6 @@ declare const UserDump: z.ZodObject<{
22545
22588
  })[] | null | undefined;
22546
22589
  routingVersion?: string | null | undefined;
22547
22590
  author?: string | null | undefined;
22548
- tags?: string[] | null | undefined;
22549
22591
  packageId?: string | null | undefined;
22550
22592
  configurationProperties?: {
22551
22593
  key: string;
@@ -28132,6 +28174,7 @@ declare const WorkspaceDump: z.ZodObject<{
28132
28174
  homepage?: string | null | undefined;
28133
28175
  organization?: string | null | undefined;
28134
28176
  readme?: string | null | undefined;
28177
+ tags?: string[] | null | undefined;
28135
28178
  iconURL?: string | null | undefined;
28136
28179
  properties?: ({
28137
28180
  key: string;
@@ -28205,7 +28248,6 @@ declare const WorkspaceDump: z.ZodObject<{
28205
28248
  })[] | null | undefined;
28206
28249
  routingVersion?: string | null | undefined;
28207
28250
  author?: string | null | undefined;
28208
- tags?: string[] | null | undefined;
28209
28251
  packageId?: string | null | undefined;
28210
28252
  configurationProperties?: {
28211
28253
  key: string;
@@ -28751,6 +28793,7 @@ declare const WorkspaceDump: z.ZodObject<{
28751
28793
  homepage?: string | null | undefined;
28752
28794
  organization?: string | null | undefined;
28753
28795
  readme?: string | null | undefined;
28796
+ tags?: string[] | null | undefined;
28754
28797
  iconURL?: string | null | undefined;
28755
28798
  properties?: ({
28756
28799
  key: string;
@@ -28824,7 +28867,6 @@ declare const WorkspaceDump: z.ZodObject<{
28824
28867
  })[] | null | undefined;
28825
28868
  routingVersion?: string | null | undefined;
28826
28869
  author?: string | null | undefined;
28827
- tags?: string[] | null | undefined;
28828
28870
  packageId?: string | null | undefined;
28829
28871
  configurationProperties?: {
28830
28872
  key: string;
@@ -29755,6 +29797,7 @@ declare const WorkspaceDump: z.ZodObject<{
29755
29797
  homepage?: string | null | undefined;
29756
29798
  organization?: string | null | undefined;
29757
29799
  readme?: string | null | undefined;
29800
+ tags?: string[] | null | undefined;
29758
29801
  iconURL?: string | null | undefined;
29759
29802
  properties?: ({
29760
29803
  key: string;
@@ -29828,7 +29871,6 @@ declare const WorkspaceDump: z.ZodObject<{
29828
29871
  })[] | null | undefined;
29829
29872
  routingVersion?: string | null | undefined;
29830
29873
  author?: string | null | undefined;
29831
- tags?: string[] | null | undefined;
29832
29874
  packageId?: string | null | undefined;
29833
29875
  configurationProperties?: {
29834
29876
  key: string;
@@ -31697,6 +31739,7 @@ declare const WorkspaceDump: z.ZodObject<{
31697
31739
  homepage?: string | null | undefined;
31698
31740
  organization?: string | null | undefined;
31699
31741
  readme?: string | null | undefined;
31742
+ tags?: string[] | null | undefined;
31700
31743
  iconURL?: string | null | undefined;
31701
31744
  properties?: ({
31702
31745
  key: string;
@@ -31770,7 +31813,6 @@ declare const WorkspaceDump: z.ZodObject<{
31770
31813
  })[] | null | undefined;
31771
31814
  routingVersion?: string | null | undefined;
31772
31815
  author?: string | null | undefined;
31773
- tags?: string[] | null | undefined;
31774
31816
  packageId?: string | null | undefined;
31775
31817
  configurationProperties?: {
31776
31818
  key: string;
@@ -32994,6 +33036,7 @@ declare const CodeComponent: z.ZodObject<{
32994
33036
  updatedAt: Date;
32995
33037
  persistentId: string;
32996
33038
  description: string;
33039
+ tags: Record<string, string> | null;
32997
33040
  properties: Record<string, {
32998
33041
  name: string;
32999
33042
  description: string;
@@ -33006,7 +33049,6 @@ declare const CodeComponent: z.ZodObject<{
33006
33049
  fileName: string;
33007
33050
  }[] | undefined;
33008
33051
  }>;
33009
- tags: Record<string, string> | null;
33010
33052
  designSystemVersionId: string;
33011
33053
  exportName: string;
33012
33054
  componentPath: string;
@@ -33016,6 +33058,7 @@ declare const CodeComponent: z.ZodObject<{
33016
33058
  updatedAt: Date;
33017
33059
  persistentId: string;
33018
33060
  description: string;
33061
+ tags: Record<string, string> | null;
33019
33062
  properties: Record<string, {
33020
33063
  name: string;
33021
33064
  description: string;
@@ -33028,7 +33071,6 @@ declare const CodeComponent: z.ZodObject<{
33028
33071
  fileName: string;
33029
33072
  }[] | undefined;
33030
33073
  }>;
33031
- tags: Record<string, string> | null;
33032
33074
  designSystemVersionId: string;
33033
33075
  exportName: string;
33034
33076
  componentPath: string;
@@ -150761,6 +150803,7 @@ declare const ExporterPulsarDetails: z.ZodObject<{
150761
150803
  homepage?: string | null | undefined;
150762
150804
  organization?: string | null | undefined;
150763
150805
  readme?: string | null | undefined;
150806
+ tags?: string[] | null | undefined;
150764
150807
  iconURL?: string | null | undefined;
150765
150808
  properties?: ({
150766
150809
  key: string;
@@ -150834,7 +150877,6 @@ declare const ExporterPulsarDetails: z.ZodObject<{
150834
150877
  })[] | null | undefined;
150835
150878
  routingVersion?: string | null | undefined;
150836
150879
  author?: string | null | undefined;
150837
- tags?: string[] | null | undefined;
150838
150880
  packageId?: string | null | undefined;
150839
150881
  configurationProperties?: {
150840
150882
  key: string;
@@ -151441,6 +151483,7 @@ declare const ExporterDetails: z.ZodObject<{
151441
151483
  homepage?: string | null | undefined;
151442
151484
  organization?: string | null | undefined;
151443
151485
  readme?: string | null | undefined;
151486
+ tags?: string[] | null | undefined;
151444
151487
  iconURL?: string | null | undefined;
151445
151488
  properties?: ({
151446
151489
  key: string;
@@ -151514,7 +151557,6 @@ declare const ExporterDetails: z.ZodObject<{
151514
151557
  })[] | null | undefined;
151515
151558
  routingVersion?: string | null | undefined;
151516
151559
  author?: string | null | undefined;
151517
- tags?: string[] | null | undefined;
151518
151560
  packageId?: string | null | undefined;
151519
151561
  configurationProperties?: {
151520
151562
  key: string;
@@ -152130,6 +152172,7 @@ declare const Exporter: z.ZodObject<{
152130
152172
  homepage?: string | null | undefined;
152131
152173
  organization?: string | null | undefined;
152132
152174
  readme?: string | null | undefined;
152175
+ tags?: string[] | null | undefined;
152133
152176
  iconURL?: string | null | undefined;
152134
152177
  properties?: ({
152135
152178
  key: string;
@@ -152203,7 +152246,6 @@ declare const Exporter: z.ZodObject<{
152203
152246
  })[] | null | undefined;
152204
152247
  routingVersion?: string | null | undefined;
152205
152248
  author?: string | null | undefined;
152206
- tags?: string[] | null | undefined;
152207
152249
  packageId?: string | null | undefined;
152208
152250
  configurationProperties?: {
152209
152251
  key: string;
@@ -152749,6 +152791,7 @@ declare const Exporter: z.ZodObject<{
152749
152791
  homepage?: string | null | undefined;
152750
152792
  organization?: string | null | undefined;
152751
152793
  readme?: string | null | undefined;
152794
+ tags?: string[] | null | undefined;
152752
152795
  iconURL?: string | null | undefined;
152753
152796
  properties?: ({
152754
152797
  key: string;
@@ -152822,7 +152865,6 @@ declare const Exporter: z.ZodObject<{
152822
152865
  })[] | null | undefined;
152823
152866
  routingVersion?: string | null | undefined;
152824
152867
  author?: string | null | undefined;
152825
- tags?: string[] | null | undefined;
152826
152868
  packageId?: string | null | undefined;
152827
152869
  configurationProperties?: {
152828
152870
  key: string;
@@ -158794,8 +158836,8 @@ declare const ForgeProject: z.ZodObject<{
158794
158836
  id: string;
158795
158837
  name: string;
158796
158838
  createdAt: Date;
158797
- workspaceId: string;
158798
158839
  tags: string[];
158840
+ workspaceId: string;
158799
158841
  meta: {
158800
158842
  name: string;
158801
158843
  description?: string | undefined;
@@ -190034,4 +190076,4 @@ type PersonalAccessTokenWithUser = {
190034
190076
  token: PersonalAccessToken;
190035
190077
  };
190036
190078
 
190037
- export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BaseTheme, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateForgeAgent, type CreateForgeFeatureRoom, type CreateForgeProject, type CreateForgeProjectArtifactRoom, type CreateForgeProjectContext, type CreateForgeProjectInvitation, type CreateForgeProjectMembership, type CreateForgeProjectRoom, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreateProjectFeature, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, type DefinedProps, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagDefaults, type FeatureFlagDefaultsTypes, FeatureFlagMap, type FeatureFlagWithDefaults, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeAgent, ForgeArtifact, ForgeAvatarBuilder, ForgeBuildArtifact, ForgeBuildArtifactEnvironment, ForgeBuildArtifactFiles, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatThread, type ForgeFeatureParsedRoomId, ForgeFeatureRoom, type ForgeFeatureRoomOwner, ForgeFigmaArtifact, ForgeFileArtifact, ForgeIterationMessage, ForgeIterationMessageStep, ForgeMeta, ForgeParticipant, ForgeProject, ForgeProjectAccessMode, ForgeProjectArtifact, ForgeProjectArtifactContent, ForgeProjectArtifactContentData, type ForgeProjectArtifactParsedRoomId, ForgeProjectArtifactRoom, type ForgeProjectArtifactRoomOwner, ForgeProjectContext, ForgeProjectContextDependency, ForgeProjectContextTailwindConfig, ForgeProjectDefaultRole, ForgeProjectFigmaNode, ForgeProjectFigmaNodeRenderInput, ForgeProjectFile, ForgeProjectInvitation, ForgeProjectIteration, ForgeProjectIterationMergeMeta, ForgeProjectMembership, type ForgeProjectParsedRoomId, ForgeProjectRole, ForgeProjectRoom, ForgeProjectRoomInitialState, type ForgeProjectRoomOwner, ForgeProjectRoomUpdate, ForgeProjectSectionChildType, ForgeProjectTag, ForgeSection, ForgeSpecArtifact, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, Id, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type NullToUndefined, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsSidebar, PortalSettingsSidebarLink, PortalSettingsSidebarSection, PortalSettingsTheme, PortalTheme, PortalThemePreset, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, ProjectFeature, ProjectFeatureStatus, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SortOrder, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateForgeAgent, type UpdateForgeFeatureRoom, type UpdateForgeProject, type UpdateForgeProjectArtifactRoom, type UpdateForgeProjectContext, type UpdateForgeProjectRoom, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdateProjectFeature, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, UserThemePreset, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceSeatType, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, deriveWorkspaceSeatTypeFromRole, designTokenImportModelTypeFilter, designTokenTypeFilter, errorToString, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, nullsToUndefined, parseUrl, pickDefined, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
190079
+ export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BaseTheme, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateForgeAgent, type CreateForgeFeatureRoom, type CreateForgeProject, type CreateForgeProjectArtifactRoom, type CreateForgeProjectContext, type CreateForgeProjectInvitation, type CreateForgeProjectMembership, type CreateForgeProjectRoom, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreateProjectFeature, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, type DefinedProps, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagDefaults, type FeatureFlagDefaultsTypes, FeatureFlagMap, type FeatureFlagWithDefaults, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeAgent, ForgeArtifact, ForgeAvatarBuilder, ForgeBuildArtifact, ForgeBuildArtifactEnvironment, ForgeBuildArtifactFiles, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatMessageUserScore, ForgeChatMessageUserScoreType, ForgeChatThread, type ForgeFeatureParsedRoomId, ForgeFeatureRoom, type ForgeFeatureRoomOwner, ForgeFigmaArtifact, ForgeFileArtifact, ForgeIterationMessage, ForgeIterationMessageStep, ForgeMeta, ForgeParticipant, ForgeProject, ForgeProjectAccessMode, ForgeProjectArtifact, ForgeProjectArtifactContent, ForgeProjectArtifactContentData, type ForgeProjectArtifactParsedRoomId, ForgeProjectArtifactRoom, type ForgeProjectArtifactRoomOwner, ForgeProjectContext, ForgeProjectContextDependency, ForgeProjectContextTailwindConfig, ForgeProjectDefaultRole, ForgeProjectFigmaNode, ForgeProjectFigmaNodeRenderInput, ForgeProjectFile, ForgeProjectInvitation, ForgeProjectIteration, ForgeProjectIterationMergeMeta, ForgeProjectMembership, type ForgeProjectParsedRoomId, ForgeProjectRole, ForgeProjectRoom, ForgeProjectRoomInitialState, type ForgeProjectRoomOwner, ForgeProjectRoomUpdate, ForgeProjectSectionChildType, ForgeProjectTag, ForgeSection, ForgeSpecArtifact, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, Id, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type NullToUndefined, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsSidebar, PortalSettingsSidebarLink, PortalSettingsSidebarSection, PortalSettingsTheme, PortalTheme, PortalThemePreset, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, ProjectFeature, ProjectFeatureStatus, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SortOrder, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateForgeAgent, type UpdateForgeFeatureRoom, type UpdateForgeProject, type UpdateForgeProjectArtifactRoom, type UpdateForgeProjectContext, type UpdateForgeProjectRoom, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdateProjectFeature, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, UserThemePreset, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceSeatType, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, deriveWorkspaceSeatTypeFromRole, designTokenImportModelTypeFilter, designTokenTypeFilter, errorToString, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, nullsToUndefined, parseUrl, pickDefined, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };