@supernova-studio/model 0.48.12 → 0.48.14
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 +33 -1
- package/dist/index.d.ts +33 -1
- package/dist/index.js +951 -934
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +894 -877
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/element-snapshots/base.ts +19 -0
- package/src/dsm/element-snapshots/documentation-page-snapshot.ts +9 -1
- package/src/dsm/element-snapshots/group-snapshot.ts +9 -1
package/dist/index.d.mts
CHANGED
|
@@ -34667,12 +34667,14 @@ declare const DesignElementSnapshotBase: z.ZodObject<{
|
|
|
34667
34667
|
createdAt: z.ZodDate;
|
|
34668
34668
|
updatedAt: z.ZodDate;
|
|
34669
34669
|
reason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
34670
|
+
createdByUserId: z.ZodString;
|
|
34670
34671
|
}, "strip", z.ZodTypeAny, {
|
|
34671
34672
|
id: string;
|
|
34672
34673
|
createdAt: Date;
|
|
34673
34674
|
updatedAt: Date;
|
|
34674
34675
|
persistentId: string;
|
|
34675
34676
|
designSystemVersionId: string;
|
|
34677
|
+
createdByUserId: string;
|
|
34676
34678
|
reason: "Publish" | "Deletion";
|
|
34677
34679
|
}, {
|
|
34678
34680
|
id: string;
|
|
@@ -34680,11 +34682,13 @@ declare const DesignElementSnapshotBase: z.ZodObject<{
|
|
|
34680
34682
|
updatedAt: Date;
|
|
34681
34683
|
persistentId: string;
|
|
34682
34684
|
designSystemVersionId: string;
|
|
34685
|
+
createdByUserId: string;
|
|
34683
34686
|
reason: "Publish" | "Deletion";
|
|
34684
34687
|
}>;
|
|
34685
34688
|
type DesignElementSnapshotBase = z.infer<typeof DesignElementSnapshotBase>;
|
|
34686
34689
|
declare const DesignElementSnapshotReason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
34687
34690
|
type DesignElementSnapshotReason = z.infer<typeof DesignElementSnapshotReason>;
|
|
34691
|
+
declare function pickLatestSnapshots<T extends DesignElementSnapshotBase>(snapshots: T[], getSnapshotElementId: (snapshot: T) => string): T[];
|
|
34688
34692
|
|
|
34689
34693
|
declare const TokenDataAliasSchema: z.ZodObject<{
|
|
34690
34694
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
@@ -70735,6 +70739,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
70735
70739
|
createdAt: z.ZodDate;
|
|
70736
70740
|
updatedAt: z.ZodDate;
|
|
70737
70741
|
reason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
70742
|
+
createdByUserId: z.ZodString;
|
|
70738
70743
|
}, {
|
|
70739
70744
|
page: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
70740
70745
|
id: z.ZodString;
|
|
@@ -72403,6 +72408,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
72403
72408
|
slug?: string | undefined;
|
|
72404
72409
|
userSlug?: string | undefined;
|
|
72405
72410
|
};
|
|
72411
|
+
createdByUserId: string;
|
|
72406
72412
|
reason: "Publish" | "Deletion";
|
|
72407
72413
|
pageContentHash: string;
|
|
72408
72414
|
pageContentStorageKey: string;
|
|
@@ -72891,6 +72897,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
72891
72897
|
slug?: string | undefined;
|
|
72892
72898
|
userSlug?: string | undefined;
|
|
72893
72899
|
};
|
|
72900
|
+
createdByUserId: string;
|
|
72894
72901
|
reason: "Publish" | "Deletion";
|
|
72895
72902
|
pageContentHash: string;
|
|
72896
72903
|
pageContentStorageKey: string;
|
|
@@ -72898,6 +72905,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
72898
72905
|
type DocumentationPageSnapshot = z.infer<typeof DocumentationPageSnapshot>;
|
|
72899
72906
|
type CreateDocumentationPageSnapshot = DbCreateInputOmit<DocumentationPageSnapshot>;
|
|
72900
72907
|
type UpdateDocumentationPageSnapshot = OmitStrict<DbUpdate<DocumentationPageSnapshot>, "designSystemVersionId">;
|
|
72908
|
+
declare function pickLatestPageSnapshots(snapshots: DocumentationPageSnapshot[]): DocumentationPageSnapshot[];
|
|
72901
72909
|
|
|
72902
72910
|
/**
|
|
72903
72911
|
* Snapshot of an element group.
|
|
@@ -72911,6 +72919,7 @@ declare const ElementGroupSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
72911
72919
|
createdAt: z.ZodDate;
|
|
72912
72920
|
updatedAt: z.ZodDate;
|
|
72913
72921
|
reason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
72922
|
+
createdByUserId: z.ZodString;
|
|
72914
72923
|
}, {
|
|
72915
72924
|
group: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
72916
72925
|
id: z.ZodString;
|
|
@@ -73299,6 +73308,7 @@ declare const ElementGroupSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
73299
73308
|
slug?: string | undefined;
|
|
73300
73309
|
userSlug?: string | undefined;
|
|
73301
73310
|
};
|
|
73311
|
+
createdByUserId: string;
|
|
73302
73312
|
reason: "Publish" | "Deletion";
|
|
73303
73313
|
}, {
|
|
73304
73314
|
id: string;
|
|
@@ -73359,11 +73369,13 @@ declare const ElementGroupSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
73359
73369
|
slug?: string | undefined;
|
|
73360
73370
|
userSlug?: string | undefined;
|
|
73361
73371
|
};
|
|
73372
|
+
createdByUserId: string;
|
|
73362
73373
|
reason: "Publish" | "Deletion";
|
|
73363
73374
|
}>;
|
|
73364
73375
|
type ElementGroupSnapshot = z.infer<typeof ElementGroupSnapshot>;
|
|
73365
73376
|
type CreateElementGroupSnapshot = DbCreateInputOmit<ElementGroupSnapshot>;
|
|
73366
73377
|
type UpdateElementGroupSnapshot = OmitStrict<DbUpdate<ElementGroupSnapshot>, "designSystemVersionId">;
|
|
73378
|
+
declare function pickLatestGroupSnapshots(snapshots: ElementGroupSnapshot[]): ElementGroupSnapshot[];
|
|
73367
73379
|
|
|
73368
73380
|
declare const FigmaFileDownloadScope: z.ZodObject<{
|
|
73369
73381
|
styles: z.ZodBoolean;
|
|
@@ -134588,6 +134600,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
134588
134600
|
createdAt: z.ZodDate;
|
|
134589
134601
|
updatedAt: z.ZodDate;
|
|
134590
134602
|
reason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
134603
|
+
createdByUserId: z.ZodString;
|
|
134591
134604
|
}, {
|
|
134592
134605
|
page: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
134593
134606
|
id: z.ZodString;
|
|
@@ -136256,6 +136269,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
136256
136269
|
slug?: string | undefined;
|
|
136257
136270
|
userSlug?: string | undefined;
|
|
136258
136271
|
};
|
|
136272
|
+
createdByUserId: string;
|
|
136259
136273
|
reason: "Publish" | "Deletion";
|
|
136260
136274
|
pageContentHash: string;
|
|
136261
136275
|
pageContentStorageKey: string;
|
|
@@ -136744,6 +136758,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
136744
136758
|
slug?: string | undefined;
|
|
136745
136759
|
userSlug?: string | undefined;
|
|
136746
136760
|
};
|
|
136761
|
+
createdByUserId: string;
|
|
136747
136762
|
reason: "Publish" | "Deletion";
|
|
136748
136763
|
pageContentHash: string;
|
|
136749
136764
|
pageContentStorageKey: string;
|
|
@@ -136755,6 +136770,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
136755
136770
|
createdAt: z.ZodDate;
|
|
136756
136771
|
updatedAt: z.ZodDate;
|
|
136757
136772
|
reason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
136773
|
+
createdByUserId: z.ZodString;
|
|
136758
136774
|
}, {
|
|
136759
136775
|
group: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
136760
136776
|
id: z.ZodString;
|
|
@@ -137143,6 +137159,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
137143
137159
|
slug?: string | undefined;
|
|
137144
137160
|
userSlug?: string | undefined;
|
|
137145
137161
|
};
|
|
137162
|
+
createdByUserId: string;
|
|
137146
137163
|
reason: "Publish" | "Deletion";
|
|
137147
137164
|
}, {
|
|
137148
137165
|
id: string;
|
|
@@ -137203,6 +137220,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
137203
137220
|
slug?: string | undefined;
|
|
137204
137221
|
userSlug?: string | undefined;
|
|
137205
137222
|
};
|
|
137223
|
+
createdByUserId: string;
|
|
137206
137224
|
reason: "Publish" | "Deletion";
|
|
137207
137225
|
}>, "many">;
|
|
137208
137226
|
internalSettings: z.ZodObject<{
|
|
@@ -137377,6 +137395,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
137377
137395
|
slug?: string | undefined;
|
|
137378
137396
|
userSlug?: string | undefined;
|
|
137379
137397
|
};
|
|
137398
|
+
createdByUserId: string;
|
|
137380
137399
|
reason: "Publish" | "Deletion";
|
|
137381
137400
|
pageContentHash: string;
|
|
137382
137401
|
pageContentStorageKey: string;
|
|
@@ -137440,6 +137459,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
137440
137459
|
slug?: string | undefined;
|
|
137441
137460
|
userSlug?: string | undefined;
|
|
137442
137461
|
};
|
|
137462
|
+
createdByUserId: string;
|
|
137443
137463
|
reason: "Publish" | "Deletion";
|
|
137444
137464
|
}[];
|
|
137445
137465
|
internalSettings: {
|
|
@@ -138464,6 +138484,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
138464
138484
|
slug?: string | undefined;
|
|
138465
138485
|
userSlug?: string | undefined;
|
|
138466
138486
|
};
|
|
138487
|
+
createdByUserId: string;
|
|
138467
138488
|
reason: "Publish" | "Deletion";
|
|
138468
138489
|
pageContentHash: string;
|
|
138469
138490
|
pageContentStorageKey: string;
|
|
@@ -138527,6 +138548,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
138527
138548
|
slug?: string | undefined;
|
|
138528
138549
|
userSlug?: string | undefined;
|
|
138529
138550
|
};
|
|
138551
|
+
createdByUserId: string;
|
|
138530
138552
|
reason: "Publish" | "Deletion";
|
|
138531
138553
|
}[];
|
|
138532
138554
|
internalSettings: {
|
|
@@ -140481,6 +140503,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
140481
140503
|
createdAt: z.ZodDate;
|
|
140482
140504
|
updatedAt: z.ZodDate;
|
|
140483
140505
|
reason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
140506
|
+
createdByUserId: z.ZodString;
|
|
140484
140507
|
}, {
|
|
140485
140508
|
page: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
140486
140509
|
id: z.ZodString;
|
|
@@ -142149,6 +142172,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
142149
142172
|
slug?: string | undefined;
|
|
142150
142173
|
userSlug?: string | undefined;
|
|
142151
142174
|
};
|
|
142175
|
+
createdByUserId: string;
|
|
142152
142176
|
reason: "Publish" | "Deletion";
|
|
142153
142177
|
pageContentHash: string;
|
|
142154
142178
|
pageContentStorageKey: string;
|
|
@@ -142637,6 +142661,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
142637
142661
|
slug?: string | undefined;
|
|
142638
142662
|
userSlug?: string | undefined;
|
|
142639
142663
|
};
|
|
142664
|
+
createdByUserId: string;
|
|
142640
142665
|
reason: "Publish" | "Deletion";
|
|
142641
142666
|
pageContentHash: string;
|
|
142642
142667
|
pageContentStorageKey: string;
|
|
@@ -142648,6 +142673,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
142648
142673
|
createdAt: z.ZodDate;
|
|
142649
142674
|
updatedAt: z.ZodDate;
|
|
142650
142675
|
reason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
142676
|
+
createdByUserId: z.ZodString;
|
|
142651
142677
|
}, {
|
|
142652
142678
|
group: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
142653
142679
|
id: z.ZodString;
|
|
@@ -143036,6 +143062,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
143036
143062
|
slug?: string | undefined;
|
|
143037
143063
|
userSlug?: string | undefined;
|
|
143038
143064
|
};
|
|
143065
|
+
createdByUserId: string;
|
|
143039
143066
|
reason: "Publish" | "Deletion";
|
|
143040
143067
|
}, {
|
|
143041
143068
|
id: string;
|
|
@@ -143096,6 +143123,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
143096
143123
|
slug?: string | undefined;
|
|
143097
143124
|
userSlug?: string | undefined;
|
|
143098
143125
|
};
|
|
143126
|
+
createdByUserId: string;
|
|
143099
143127
|
reason: "Publish" | "Deletion";
|
|
143100
143128
|
}>, "many">;
|
|
143101
143129
|
pageSnapshotIdsToDelete: z.ZodArray<z.ZodString, "many">;
|
|
@@ -143263,6 +143291,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
143263
143291
|
slug?: string | undefined;
|
|
143264
143292
|
userSlug?: string | undefined;
|
|
143265
143293
|
};
|
|
143294
|
+
createdByUserId: string;
|
|
143266
143295
|
reason: "Publish" | "Deletion";
|
|
143267
143296
|
pageContentHash: string;
|
|
143268
143297
|
pageContentStorageKey: string;
|
|
@@ -143326,6 +143355,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
143326
143355
|
slug?: string | undefined;
|
|
143327
143356
|
userSlug?: string | undefined;
|
|
143328
143357
|
};
|
|
143358
|
+
createdByUserId: string;
|
|
143329
143359
|
reason: "Publish" | "Deletion";
|
|
143330
143360
|
}[];
|
|
143331
143361
|
pageIdsToDelete: string[];
|
|
@@ -144351,6 +144381,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
144351
144381
|
slug?: string | undefined;
|
|
144352
144382
|
userSlug?: string | undefined;
|
|
144353
144383
|
};
|
|
144384
|
+
createdByUserId: string;
|
|
144354
144385
|
reason: "Publish" | "Deletion";
|
|
144355
144386
|
pageContentHash: string;
|
|
144356
144387
|
pageContentStorageKey: string;
|
|
@@ -144414,6 +144445,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
144414
144445
|
slug?: string | undefined;
|
|
144415
144446
|
userSlug?: string | undefined;
|
|
144416
144447
|
};
|
|
144448
|
+
createdByUserId: string;
|
|
144417
144449
|
reason: "Publish" | "Deletion";
|
|
144418
144450
|
}[];
|
|
144419
144451
|
pageIdsToDelete: string[];
|
|
@@ -162367,4 +162399,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
162367
162399
|
}>;
|
|
162368
162400
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
162369
162401
|
|
|
162370
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, 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, CodeIntegrationDump, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, 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 CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemUpdateInputMetadata, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, 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 ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, 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, 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, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, RestoredDocumentationGroup, RestoredDocumentationPage, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, zodCreateInputOmit, zodUpdateInputOmit };
|
|
162402
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, 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, CodeIntegrationDump, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, 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 CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemUpdateInputMetadata, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, 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 ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, 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, 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, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, RestoredDocumentationGroup, RestoredDocumentationPage, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, zodCreateInputOmit, zodUpdateInputOmit };
|
package/dist/index.d.ts
CHANGED
|
@@ -34667,12 +34667,14 @@ declare const DesignElementSnapshotBase: z.ZodObject<{
|
|
|
34667
34667
|
createdAt: z.ZodDate;
|
|
34668
34668
|
updatedAt: z.ZodDate;
|
|
34669
34669
|
reason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
34670
|
+
createdByUserId: z.ZodString;
|
|
34670
34671
|
}, "strip", z.ZodTypeAny, {
|
|
34671
34672
|
id: string;
|
|
34672
34673
|
createdAt: Date;
|
|
34673
34674
|
updatedAt: Date;
|
|
34674
34675
|
persistentId: string;
|
|
34675
34676
|
designSystemVersionId: string;
|
|
34677
|
+
createdByUserId: string;
|
|
34676
34678
|
reason: "Publish" | "Deletion";
|
|
34677
34679
|
}, {
|
|
34678
34680
|
id: string;
|
|
@@ -34680,11 +34682,13 @@ declare const DesignElementSnapshotBase: z.ZodObject<{
|
|
|
34680
34682
|
updatedAt: Date;
|
|
34681
34683
|
persistentId: string;
|
|
34682
34684
|
designSystemVersionId: string;
|
|
34685
|
+
createdByUserId: string;
|
|
34683
34686
|
reason: "Publish" | "Deletion";
|
|
34684
34687
|
}>;
|
|
34685
34688
|
type DesignElementSnapshotBase = z.infer<typeof DesignElementSnapshotBase>;
|
|
34686
34689
|
declare const DesignElementSnapshotReason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
34687
34690
|
type DesignElementSnapshotReason = z.infer<typeof DesignElementSnapshotReason>;
|
|
34691
|
+
declare function pickLatestSnapshots<T extends DesignElementSnapshotBase>(snapshots: T[], getSnapshotElementId: (snapshot: T) => string): T[];
|
|
34688
34692
|
|
|
34689
34693
|
declare const TokenDataAliasSchema: z.ZodObject<{
|
|
34690
34694
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
@@ -70735,6 +70739,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
70735
70739
|
createdAt: z.ZodDate;
|
|
70736
70740
|
updatedAt: z.ZodDate;
|
|
70737
70741
|
reason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
70742
|
+
createdByUserId: z.ZodString;
|
|
70738
70743
|
}, {
|
|
70739
70744
|
page: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
70740
70745
|
id: z.ZodString;
|
|
@@ -72403,6 +72408,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
72403
72408
|
slug?: string | undefined;
|
|
72404
72409
|
userSlug?: string | undefined;
|
|
72405
72410
|
};
|
|
72411
|
+
createdByUserId: string;
|
|
72406
72412
|
reason: "Publish" | "Deletion";
|
|
72407
72413
|
pageContentHash: string;
|
|
72408
72414
|
pageContentStorageKey: string;
|
|
@@ -72891,6 +72897,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
72891
72897
|
slug?: string | undefined;
|
|
72892
72898
|
userSlug?: string | undefined;
|
|
72893
72899
|
};
|
|
72900
|
+
createdByUserId: string;
|
|
72894
72901
|
reason: "Publish" | "Deletion";
|
|
72895
72902
|
pageContentHash: string;
|
|
72896
72903
|
pageContentStorageKey: string;
|
|
@@ -72898,6 +72905,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
72898
72905
|
type DocumentationPageSnapshot = z.infer<typeof DocumentationPageSnapshot>;
|
|
72899
72906
|
type CreateDocumentationPageSnapshot = DbCreateInputOmit<DocumentationPageSnapshot>;
|
|
72900
72907
|
type UpdateDocumentationPageSnapshot = OmitStrict<DbUpdate<DocumentationPageSnapshot>, "designSystemVersionId">;
|
|
72908
|
+
declare function pickLatestPageSnapshots(snapshots: DocumentationPageSnapshot[]): DocumentationPageSnapshot[];
|
|
72901
72909
|
|
|
72902
72910
|
/**
|
|
72903
72911
|
* Snapshot of an element group.
|
|
@@ -72911,6 +72919,7 @@ declare const ElementGroupSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
72911
72919
|
createdAt: z.ZodDate;
|
|
72912
72920
|
updatedAt: z.ZodDate;
|
|
72913
72921
|
reason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
72922
|
+
createdByUserId: z.ZodString;
|
|
72914
72923
|
}, {
|
|
72915
72924
|
group: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
72916
72925
|
id: z.ZodString;
|
|
@@ -73299,6 +73308,7 @@ declare const ElementGroupSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
73299
73308
|
slug?: string | undefined;
|
|
73300
73309
|
userSlug?: string | undefined;
|
|
73301
73310
|
};
|
|
73311
|
+
createdByUserId: string;
|
|
73302
73312
|
reason: "Publish" | "Deletion";
|
|
73303
73313
|
}, {
|
|
73304
73314
|
id: string;
|
|
@@ -73359,11 +73369,13 @@ declare const ElementGroupSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
73359
73369
|
slug?: string | undefined;
|
|
73360
73370
|
userSlug?: string | undefined;
|
|
73361
73371
|
};
|
|
73372
|
+
createdByUserId: string;
|
|
73362
73373
|
reason: "Publish" | "Deletion";
|
|
73363
73374
|
}>;
|
|
73364
73375
|
type ElementGroupSnapshot = z.infer<typeof ElementGroupSnapshot>;
|
|
73365
73376
|
type CreateElementGroupSnapshot = DbCreateInputOmit<ElementGroupSnapshot>;
|
|
73366
73377
|
type UpdateElementGroupSnapshot = OmitStrict<DbUpdate<ElementGroupSnapshot>, "designSystemVersionId">;
|
|
73378
|
+
declare function pickLatestGroupSnapshots(snapshots: ElementGroupSnapshot[]): ElementGroupSnapshot[];
|
|
73367
73379
|
|
|
73368
73380
|
declare const FigmaFileDownloadScope: z.ZodObject<{
|
|
73369
73381
|
styles: z.ZodBoolean;
|
|
@@ -134588,6 +134600,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
134588
134600
|
createdAt: z.ZodDate;
|
|
134589
134601
|
updatedAt: z.ZodDate;
|
|
134590
134602
|
reason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
134603
|
+
createdByUserId: z.ZodString;
|
|
134591
134604
|
}, {
|
|
134592
134605
|
page: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
134593
134606
|
id: z.ZodString;
|
|
@@ -136256,6 +136269,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
136256
136269
|
slug?: string | undefined;
|
|
136257
136270
|
userSlug?: string | undefined;
|
|
136258
136271
|
};
|
|
136272
|
+
createdByUserId: string;
|
|
136259
136273
|
reason: "Publish" | "Deletion";
|
|
136260
136274
|
pageContentHash: string;
|
|
136261
136275
|
pageContentStorageKey: string;
|
|
@@ -136744,6 +136758,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
136744
136758
|
slug?: string | undefined;
|
|
136745
136759
|
userSlug?: string | undefined;
|
|
136746
136760
|
};
|
|
136761
|
+
createdByUserId: string;
|
|
136747
136762
|
reason: "Publish" | "Deletion";
|
|
136748
136763
|
pageContentHash: string;
|
|
136749
136764
|
pageContentStorageKey: string;
|
|
@@ -136755,6 +136770,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
136755
136770
|
createdAt: z.ZodDate;
|
|
136756
136771
|
updatedAt: z.ZodDate;
|
|
136757
136772
|
reason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
136773
|
+
createdByUserId: z.ZodString;
|
|
136758
136774
|
}, {
|
|
136759
136775
|
group: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
136760
136776
|
id: z.ZodString;
|
|
@@ -137143,6 +137159,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
137143
137159
|
slug?: string | undefined;
|
|
137144
137160
|
userSlug?: string | undefined;
|
|
137145
137161
|
};
|
|
137162
|
+
createdByUserId: string;
|
|
137146
137163
|
reason: "Publish" | "Deletion";
|
|
137147
137164
|
}, {
|
|
137148
137165
|
id: string;
|
|
@@ -137203,6 +137220,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
137203
137220
|
slug?: string | undefined;
|
|
137204
137221
|
userSlug?: string | undefined;
|
|
137205
137222
|
};
|
|
137223
|
+
createdByUserId: string;
|
|
137206
137224
|
reason: "Publish" | "Deletion";
|
|
137207
137225
|
}>, "many">;
|
|
137208
137226
|
internalSettings: z.ZodObject<{
|
|
@@ -137377,6 +137395,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
137377
137395
|
slug?: string | undefined;
|
|
137378
137396
|
userSlug?: string | undefined;
|
|
137379
137397
|
};
|
|
137398
|
+
createdByUserId: string;
|
|
137380
137399
|
reason: "Publish" | "Deletion";
|
|
137381
137400
|
pageContentHash: string;
|
|
137382
137401
|
pageContentStorageKey: string;
|
|
@@ -137440,6 +137459,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
137440
137459
|
slug?: string | undefined;
|
|
137441
137460
|
userSlug?: string | undefined;
|
|
137442
137461
|
};
|
|
137462
|
+
createdByUserId: string;
|
|
137443
137463
|
reason: "Publish" | "Deletion";
|
|
137444
137464
|
}[];
|
|
137445
137465
|
internalSettings: {
|
|
@@ -138464,6 +138484,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
138464
138484
|
slug?: string | undefined;
|
|
138465
138485
|
userSlug?: string | undefined;
|
|
138466
138486
|
};
|
|
138487
|
+
createdByUserId: string;
|
|
138467
138488
|
reason: "Publish" | "Deletion";
|
|
138468
138489
|
pageContentHash: string;
|
|
138469
138490
|
pageContentStorageKey: string;
|
|
@@ -138527,6 +138548,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
138527
138548
|
slug?: string | undefined;
|
|
138528
138549
|
userSlug?: string | undefined;
|
|
138529
138550
|
};
|
|
138551
|
+
createdByUserId: string;
|
|
138530
138552
|
reason: "Publish" | "Deletion";
|
|
138531
138553
|
}[];
|
|
138532
138554
|
internalSettings: {
|
|
@@ -140481,6 +140503,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
140481
140503
|
createdAt: z.ZodDate;
|
|
140482
140504
|
updatedAt: z.ZodDate;
|
|
140483
140505
|
reason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
140506
|
+
createdByUserId: z.ZodString;
|
|
140484
140507
|
}, {
|
|
140485
140508
|
page: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
140486
140509
|
id: z.ZodString;
|
|
@@ -142149,6 +142172,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
142149
142172
|
slug?: string | undefined;
|
|
142150
142173
|
userSlug?: string | undefined;
|
|
142151
142174
|
};
|
|
142175
|
+
createdByUserId: string;
|
|
142152
142176
|
reason: "Publish" | "Deletion";
|
|
142153
142177
|
pageContentHash: string;
|
|
142154
142178
|
pageContentStorageKey: string;
|
|
@@ -142637,6 +142661,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
142637
142661
|
slug?: string | undefined;
|
|
142638
142662
|
userSlug?: string | undefined;
|
|
142639
142663
|
};
|
|
142664
|
+
createdByUserId: string;
|
|
142640
142665
|
reason: "Publish" | "Deletion";
|
|
142641
142666
|
pageContentHash: string;
|
|
142642
142667
|
pageContentStorageKey: string;
|
|
@@ -142648,6 +142673,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
142648
142673
|
createdAt: z.ZodDate;
|
|
142649
142674
|
updatedAt: z.ZodDate;
|
|
142650
142675
|
reason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
142676
|
+
createdByUserId: z.ZodString;
|
|
142651
142677
|
}, {
|
|
142652
142678
|
group: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
142653
142679
|
id: z.ZodString;
|
|
@@ -143036,6 +143062,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
143036
143062
|
slug?: string | undefined;
|
|
143037
143063
|
userSlug?: string | undefined;
|
|
143038
143064
|
};
|
|
143065
|
+
createdByUserId: string;
|
|
143039
143066
|
reason: "Publish" | "Deletion";
|
|
143040
143067
|
}, {
|
|
143041
143068
|
id: string;
|
|
@@ -143096,6 +143123,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
143096
143123
|
slug?: string | undefined;
|
|
143097
143124
|
userSlug?: string | undefined;
|
|
143098
143125
|
};
|
|
143126
|
+
createdByUserId: string;
|
|
143099
143127
|
reason: "Publish" | "Deletion";
|
|
143100
143128
|
}>, "many">;
|
|
143101
143129
|
pageSnapshotIdsToDelete: z.ZodArray<z.ZodString, "many">;
|
|
@@ -143263,6 +143291,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
143263
143291
|
slug?: string | undefined;
|
|
143264
143292
|
userSlug?: string | undefined;
|
|
143265
143293
|
};
|
|
143294
|
+
createdByUserId: string;
|
|
143266
143295
|
reason: "Publish" | "Deletion";
|
|
143267
143296
|
pageContentHash: string;
|
|
143268
143297
|
pageContentStorageKey: string;
|
|
@@ -143326,6 +143355,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
143326
143355
|
slug?: string | undefined;
|
|
143327
143356
|
userSlug?: string | undefined;
|
|
143328
143357
|
};
|
|
143358
|
+
createdByUserId: string;
|
|
143329
143359
|
reason: "Publish" | "Deletion";
|
|
143330
143360
|
}[];
|
|
143331
143361
|
pageIdsToDelete: string[];
|
|
@@ -144351,6 +144381,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
144351
144381
|
slug?: string | undefined;
|
|
144352
144382
|
userSlug?: string | undefined;
|
|
144353
144383
|
};
|
|
144384
|
+
createdByUserId: string;
|
|
144354
144385
|
reason: "Publish" | "Deletion";
|
|
144355
144386
|
pageContentHash: string;
|
|
144356
144387
|
pageContentStorageKey: string;
|
|
@@ -144414,6 +144445,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
144414
144445
|
slug?: string | undefined;
|
|
144415
144446
|
userSlug?: string | undefined;
|
|
144416
144447
|
};
|
|
144448
|
+
createdByUserId: string;
|
|
144417
144449
|
reason: "Publish" | "Deletion";
|
|
144418
144450
|
}[];
|
|
144419
144451
|
pageIdsToDelete: string[];
|
|
@@ -162367,4 +162399,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
162367
162399
|
}>;
|
|
162368
162400
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
162369
162401
|
|
|
162370
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, 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, CodeIntegrationDump, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, 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 CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemUpdateInputMetadata, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, 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 ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, 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, 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, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, RestoredDocumentationGroup, RestoredDocumentationPage, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, zodCreateInputOmit, zodUpdateInputOmit };
|
|
162402
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, 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, CodeIntegrationDump, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, 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 CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemUpdateInputMetadata, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, 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 ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, 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, 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, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, RestoredDocumentationGroup, RestoredDocumentationPage, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, zodCreateInputOmit, zodUpdateInputOmit };
|