@supernova-studio/model 0.57.19 → 0.58.0

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.mjs CHANGED
@@ -2330,6 +2330,8 @@ var PageBlockImageAlignment = z44.enum(["Left", "Center", "Stretch"]);
2330
2330
  var PageBlockTableCellAlignment = z44.enum(["Left", "Center", "Right"]);
2331
2331
  var PageBlockPreviewContainerSize = z44.enum(["Centered", "NaturalHeight"]);
2332
2332
  var PageBlockThemeDisplayMode = z44.enum(["Split", "Override"]);
2333
+ var PageBlockTokenNameFormat = z44.enum(["Name", "GroupAndName", "FullPath", "CustomProperty"]);
2334
+ var PageBlockTokenValueFormat = z44.enum(["ResolvedValue", "ReferenceName", "NoValue"]);
2333
2335
  var PageBlockImageResourceReference = z44.object({
2334
2336
  resourceId: z44.string(),
2335
2337
  url: z44.string()
@@ -2393,7 +2395,9 @@ var PageBlockDataV2 = z44.object({
2393
2395
  var PageBlockItemAssetValue = z44.object({
2394
2396
  selectedPropertyIds: z44.array(z44.string()).optional(),
2395
2397
  showSearch: z44.boolean().optional(),
2398
+ showAssetDescription: z44.boolean().optional(),
2396
2399
  previewContainerSize: PageBlockPreviewContainerSize.optional(),
2400
+ previewContainerHeight: z44.number().optional(),
2397
2401
  backgroundColor: PageBlockColorV2.optional(),
2398
2402
  value: z44.array(
2399
2403
  z44.object({
@@ -2412,6 +2416,7 @@ var PageBlockItemFigmaComponentValue = z44.object({
2412
2416
  showPropertyList: z44.boolean().optional(),
2413
2417
  previewOrderIds: z44.array(z44.string()).optional(),
2414
2418
  previewContainerSize: PageBlockPreviewContainerSize.optional(),
2419
+ previewContainerHeight: z44.number().optional(),
2415
2420
  backgroundColor: PageBlockColorV2.optional(),
2416
2421
  value: z44.array(
2417
2422
  z44.object({
@@ -2468,6 +2473,7 @@ var PageBlockItemEmbedValue = z44.object({
2468
2473
  var PageBlockItemFigmaNodeValue = z44.object({
2469
2474
  showSearch: z44.boolean().optional(),
2470
2475
  previewContainerSize: PageBlockPreviewContainerSize.optional(),
2476
+ previewContainerHeight: z44.number().optional(),
2471
2477
  backgroundColor: PageBlockColorV2.optional(),
2472
2478
  showFrameDetails: z44.boolean().optional(),
2473
2479
  value: z44.array(
@@ -2481,6 +2487,8 @@ var PageBlockItemImageValue = z44.object({
2481
2487
  alt: z44.string().optional(),
2482
2488
  caption: z44.string().optional(),
2483
2489
  alignment: PageBlockImageAlignment.optional(),
2490
+ openLightbox: z44.boolean().optional(),
2491
+ isBordered: z44.boolean().optional(),
2484
2492
  value: PageBlockImageReference.optional()
2485
2493
  });
2486
2494
  var PageBlockItemMarkdownValue = z44.object({
@@ -2520,6 +2528,9 @@ var PageBlockItemTokenValue = z44.object({
2520
2528
  selectedThemeIds: z44.array(z44.string()).optional(),
2521
2529
  swatches: z44.array(PageBlockItemSwatch).optional(),
2522
2530
  themeDisplayMode: PageBlockThemeDisplayMode.optional(),
2531
+ tokenNameFormat: PageBlockTokenNameFormat.optional(),
2532
+ tokenNameCustomPropertyId: z44.string().optional(),
2533
+ tokenValueFormat: PageBlockTokenValueFormat.optional(),
2523
2534
  value: z44.array(
2524
2535
  z44.object({
2525
2536
  entityId: z44.string(),
@@ -3502,7 +3513,8 @@ var DataSourceUploadRemote = z88.object({
3502
3513
  remoteSourceType: DataSourceUploadRemoteSource,
3503
3514
  lastImportMetadata: DataSourceUploadImportMetadata.optional(),
3504
3515
  warnings: nullishToOptional(ImportWarning.array()),
3505
- isTokenTypeSplitEnabled: z88.boolean()
3516
+ isTokenTypeSplitEnabled: z88.boolean(),
3517
+ isCollectionsMigrationCompleted: z88.boolean()
3506
3518
  });
3507
3519
  var DataSourceRemote = z88.discriminatedUnion("type", [
3508
3520
  DataSourceFigmaRemote,
@@ -5880,6 +5892,8 @@ export {
5880
5892
  PageBlockThemeType,
5881
5893
  PageBlockTilesAlignment,
5882
5894
  PageBlockTilesLayout,
5895
+ PageBlockTokenNameFormat,
5896
+ PageBlockTokenValueFormat,
5883
5897
  PageBlockTypeV1,
5884
5898
  PageBlockUrlPreview,
5885
5899
  PageBlockV1,