@wix/auto_sdk_multilingual_translation-published-contents 1.0.30 → 1.0.32

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.
@@ -289,7 +289,7 @@ interface ButtonData {
289
289
  /** Styling for the button's container. */
290
290
  containerData?: PluginContainerData;
291
291
  /** The button type. */
292
- type?: TypeWithLiterals;
292
+ type?: ButtonDataTypeWithLiterals;
293
293
  /** Styling for the button. */
294
294
  styles?: Styles;
295
295
  /** The text to display on the button. */
@@ -397,14 +397,14 @@ interface Height {
397
397
  /** A custom height value in pixels. */
398
398
  custom?: string | null;
399
399
  }
400
- declare enum Type {
400
+ declare enum ButtonDataType {
401
401
  /** Regular link button */
402
402
  LINK = "LINK",
403
403
  /** Triggers custom action that is defined in plugin configuration by the consumer */
404
404
  ACTION = "ACTION"
405
405
  }
406
406
  /** @enumType */
407
- type TypeWithLiterals = Type | 'LINK' | 'ACTION';
407
+ type ButtonDataTypeWithLiterals = ButtonDataType | 'LINK' | 'ACTION';
408
408
  interface Styles {
409
409
  /**
410
410
  * Deprecated: Use `borderWidth` and `borderRadius` instead.
@@ -537,7 +537,7 @@ interface DividerData {
537
537
  /** Divider width. */
538
538
  width?: WidthWithLiterals;
539
539
  /** Divider alignment. */
540
- alignment?: AlignmentWithLiterals;
540
+ alignment?: DividerDataAlignmentWithLiterals;
541
541
  }
542
542
  declare enum LineStyle {
543
543
  /** Single Line */
@@ -561,7 +561,7 @@ declare enum Width {
561
561
  }
562
562
  /** @enumType */
563
563
  type WidthWithLiterals = Width | 'LARGE' | 'MEDIUM' | 'SMALL';
564
- declare enum Alignment {
564
+ declare enum DividerDataAlignment {
565
565
  /** Center alignment */
566
566
  CENTER = "CENTER",
567
567
  /** Left alignment */
@@ -570,7 +570,7 @@ declare enum Alignment {
570
570
  RIGHT = "RIGHT"
571
571
  }
572
572
  /** @enumType */
573
- type AlignmentWithLiterals = Alignment | 'CENTER' | 'LEFT' | 'RIGHT';
573
+ type DividerDataAlignmentWithLiterals = DividerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
574
574
  interface FileData {
575
575
  /** Styling for the file's container. */
576
576
  containerData?: PluginContainerData;
@@ -695,7 +695,7 @@ interface ItemDataOneOf {
695
695
  }
696
696
  interface GalleryOptions {
697
697
  /** Gallery layout. */
698
- layout?: Layout;
698
+ layout?: GalleryOptionsLayout;
699
699
  /** Styling for gallery items. */
700
700
  item?: ItemStyle;
701
701
  /** Styling for gallery thumbnail images. */
@@ -755,7 +755,7 @@ declare enum ThumbnailsAlignment {
755
755
  }
756
756
  /** @enumType */
757
757
  type ThumbnailsAlignmentWithLiterals = ThumbnailsAlignment | 'TOP' | 'RIGHT' | 'BOTTOM' | 'LEFT' | 'NONE';
758
- interface Layout {
758
+ interface GalleryOptionsLayout {
759
759
  /** Gallery layout type. */
760
760
  type?: LayoutTypeWithLiterals;
761
761
  /** Sets whether horizontal scroll is enabled. Defaults to `true` unless the layout `type` is set to `GRID` or `COLLAGE`. */
@@ -917,7 +917,7 @@ interface LinkPreviewData {
917
917
  /** Styling for the link preview. */
918
918
  styles?: LinkPreviewDataStyles;
919
919
  }
920
- declare enum Position {
920
+ declare enum StylesPosition {
921
921
  /** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
922
922
  START = "START",
923
923
  /** Thumbnail positioned at the end (right in LTR layouts, left in RTL layouts) */
@@ -928,7 +928,7 @@ declare enum Position {
928
928
  HIDDEN = "HIDDEN"
929
929
  }
930
930
  /** @enumType */
931
- type PositionWithLiterals = Position | 'START' | 'END' | 'TOP' | 'HIDDEN';
931
+ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HIDDEN';
932
932
  interface LinkPreviewDataStyles {
933
933
  /**
934
934
  * Background color as a hexadecimal value.
@@ -960,7 +960,7 @@ interface LinkPreviewDataStyles {
960
960
  */
961
961
  borderColor?: string | null;
962
962
  /** Position of thumbnail. Defaults to `START`. */
963
- thumbnailPosition?: PositionWithLiterals;
963
+ thumbnailPosition?: StylesPositionWithLiterals;
964
964
  }
965
965
  interface MapData {
966
966
  /** Styling for the map's container. */
@@ -1314,6 +1314,32 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
1314
1314
  url?: string | null;
1315
1315
  /** An image for the embedded content. */
1316
1316
  image?: Media;
1317
+ /** Whether to hide the image. */
1318
+ hideImage?: boolean | null;
1319
+ /** Whether to hide the title. */
1320
+ hideTitle?: boolean | null;
1321
+ /** Whether to hide the price. */
1322
+ hidePrice?: boolean | null;
1323
+ /** Whether to hide the description (Event and Booking). */
1324
+ hideDescription?: boolean | null;
1325
+ /** Whether to hide the date and time (Event). */
1326
+ hideDateTime?: boolean | null;
1327
+ /** Whether to hide the location (Event). */
1328
+ hideLocation?: boolean | null;
1329
+ /** Whether to hide the duration (Booking). */
1330
+ hideDuration?: boolean | null;
1331
+ /** Whether to hide the button. */
1332
+ hideButton?: boolean | null;
1333
+ /** Whether to hide the ribbon. */
1334
+ hideRibbon?: boolean | null;
1335
+ /** Button styling options. */
1336
+ buttonStyles?: ButtonStyles;
1337
+ /** Image styling options. */
1338
+ imageStyles?: ImageStyles;
1339
+ /** Ribbon styling options. */
1340
+ ribbonStyles?: RibbonStyles;
1341
+ /** Card styling options. */
1342
+ cardStyles?: CardStyles;
1317
1343
  }
1318
1344
  /** @oneof */
1319
1345
  interface AppEmbedDataAppDataOneOf {
@@ -1322,6 +1348,66 @@ interface AppEmbedDataAppDataOneOf {
1322
1348
  /** Data for embedded Wix Events content. */
1323
1349
  eventData?: EventData;
1324
1350
  }
1351
+ declare enum Position {
1352
+ /** Image positioned at the start (left in LTR layouts, right in RTL layouts) */
1353
+ START = "START",
1354
+ /** Image positioned at the end (right in LTR layouts, left in RTL layouts) */
1355
+ END = "END",
1356
+ /** Image positioned at the top */
1357
+ TOP = "TOP"
1358
+ }
1359
+ /** @enumType */
1360
+ type PositionWithLiterals = Position | 'START' | 'END' | 'TOP';
1361
+ declare enum AspectRatio {
1362
+ /** 1:1 aspect ratio */
1363
+ SQUARE = "SQUARE",
1364
+ /** 16:9 aspect ratio */
1365
+ RECTANGLE = "RECTANGLE"
1366
+ }
1367
+ /** @enumType */
1368
+ type AspectRatioWithLiterals = AspectRatio | 'SQUARE' | 'RECTANGLE';
1369
+ declare enum Resizing {
1370
+ /** Fill the container, may crop the image */
1371
+ FILL = "FILL",
1372
+ /** Fit the image within the container */
1373
+ FIT = "FIT"
1374
+ }
1375
+ /** @enumType */
1376
+ type ResizingWithLiterals = Resizing | 'FILL' | 'FIT';
1377
+ declare enum Placement {
1378
+ /** Ribbon placed on the image */
1379
+ IMAGE = "IMAGE",
1380
+ /** Ribbon placed on the product information */
1381
+ PRODUCT_INFO = "PRODUCT_INFO"
1382
+ }
1383
+ /** @enumType */
1384
+ type PlacementWithLiterals = Placement | 'IMAGE' | 'PRODUCT_INFO';
1385
+ declare enum Type {
1386
+ /** Card with visible border and background */
1387
+ CONTAINED = "CONTAINED",
1388
+ /** Card without visible border */
1389
+ FRAMELESS = "FRAMELESS"
1390
+ }
1391
+ /** @enumType */
1392
+ type TypeWithLiterals = Type | 'CONTAINED' | 'FRAMELESS';
1393
+ declare enum Alignment {
1394
+ /** Content aligned to start (left in LTR layouts, right in RTL layouts) */
1395
+ START = "START",
1396
+ /** Content centered */
1397
+ CENTER = "CENTER",
1398
+ /** Content aligned to end (right in LTR layouts, left in RTL layouts) */
1399
+ END = "END"
1400
+ }
1401
+ /** @enumType */
1402
+ type AlignmentWithLiterals = Alignment | 'START' | 'CENTER' | 'END';
1403
+ declare enum Layout {
1404
+ /** Elements stacked vertically */
1405
+ STACKED = "STACKED",
1406
+ /** Elements arranged horizontally */
1407
+ SIDE_BY_SIDE = "SIDE_BY_SIDE"
1408
+ }
1409
+ /** @enumType */
1410
+ type LayoutWithLiterals = Layout | 'STACKED' | 'SIDE_BY_SIDE';
1325
1411
  declare enum AppType {
1326
1412
  PRODUCT = "PRODUCT",
1327
1413
  EVENT = "EVENT",
@@ -1339,6 +1425,122 @@ interface EventData {
1339
1425
  /** Event location. */
1340
1426
  location?: string | null;
1341
1427
  }
1428
+ interface ButtonStyles {
1429
+ /** Text to display on the button. */
1430
+ buttonText?: string | null;
1431
+ /** Border width in pixels. */
1432
+ borderWidth?: number | null;
1433
+ /** Border radius in pixels. */
1434
+ borderRadius?: number | null;
1435
+ /**
1436
+ * Border color as a hexadecimal value.
1437
+ * @format COLOR_HEX
1438
+ */
1439
+ borderColor?: string | null;
1440
+ /**
1441
+ * Text color as a hexadecimal value.
1442
+ * @format COLOR_HEX
1443
+ */
1444
+ textColor?: string | null;
1445
+ /**
1446
+ * Background color as a hexadecimal value.
1447
+ * @format COLOR_HEX
1448
+ */
1449
+ backgroundColor?: string | null;
1450
+ /**
1451
+ * Border color as a hexadecimal value (hover state).
1452
+ * @format COLOR_HEX
1453
+ */
1454
+ borderColorHover?: string | null;
1455
+ /**
1456
+ * Text color as a hexadecimal value (hover state).
1457
+ * @format COLOR_HEX
1458
+ */
1459
+ textColorHover?: string | null;
1460
+ /**
1461
+ * Background color as a hexadecimal value (hover state).
1462
+ * @format COLOR_HEX
1463
+ */
1464
+ backgroundColorHover?: string | null;
1465
+ /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
1466
+ buttonSize?: string | null;
1467
+ }
1468
+ interface ImageStyles {
1469
+ /** Whether to hide the image. */
1470
+ hideImage?: boolean | null;
1471
+ /** Position of image. Defaults to `START`. */
1472
+ imagePosition?: PositionWithLiterals;
1473
+ /** Aspect ratio for the image. Defaults to `SQUARE`. */
1474
+ aspectRatio?: AspectRatioWithLiterals;
1475
+ /** How the image should be resized. Defaults to `FILL`. */
1476
+ resizing?: ResizingWithLiterals;
1477
+ /**
1478
+ * Image border color as a hexadecimal value.
1479
+ * @format COLOR_HEX
1480
+ */
1481
+ borderColor?: string | null;
1482
+ /** Image border width in pixels. */
1483
+ borderWidth?: number | null;
1484
+ /** Image border radius in pixels. */
1485
+ borderRadius?: number | null;
1486
+ }
1487
+ interface RibbonStyles {
1488
+ /** Text to display on the ribbon. */
1489
+ ribbonText?: string | null;
1490
+ /**
1491
+ * Ribbon background color as a hexadecimal value.
1492
+ * @format COLOR_HEX
1493
+ */
1494
+ backgroundColor?: string | null;
1495
+ /**
1496
+ * Ribbon text color as a hexadecimal value.
1497
+ * @format COLOR_HEX
1498
+ */
1499
+ textColor?: string | null;
1500
+ /**
1501
+ * Ribbon border color as a hexadecimal value.
1502
+ * @format COLOR_HEX
1503
+ */
1504
+ borderColor?: string | null;
1505
+ /** Ribbon border width in pixels. */
1506
+ borderWidth?: number | null;
1507
+ /** Ribbon border radius in pixels. */
1508
+ borderRadius?: number | null;
1509
+ /** Placement of the ribbon. Defaults to `IMAGE`. */
1510
+ ribbonPlacement?: PlacementWithLiterals;
1511
+ }
1512
+ interface CardStyles {
1513
+ /**
1514
+ * Card background color as a hexadecimal value.
1515
+ * @format COLOR_HEX
1516
+ */
1517
+ backgroundColor?: string | null;
1518
+ /**
1519
+ * Card border color as a hexadecimal value.
1520
+ * @format COLOR_HEX
1521
+ */
1522
+ borderColor?: string | null;
1523
+ /** Card border width in pixels. */
1524
+ borderWidth?: number | null;
1525
+ /** Card border radius in pixels. */
1526
+ borderRadius?: number | null;
1527
+ /** Card type. Defaults to `CONTAINED`. */
1528
+ type?: TypeWithLiterals;
1529
+ /** Content alignment. Defaults to `START`. */
1530
+ alignment?: AlignmentWithLiterals;
1531
+ /** Layout for title and price. Defaults to `STACKED`. */
1532
+ titlePriceLayout?: LayoutWithLiterals;
1533
+ /**
1534
+ * Title text color as a hexadecimal value.
1535
+ * @format COLOR_HEX
1536
+ */
1537
+ titleColor?: string | null;
1538
+ /**
1539
+ * Text color as a hexadecimal value.
1540
+ * @format COLOR_HEX
1541
+ */
1542
+ textColor?: string | null;
1543
+ }
1342
1544
  interface VideoData {
1343
1545
  /** Styling for the video's container. */
1344
1546
  containerData?: PluginContainerData;
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
2
  import { PublishedContentQueryBuilder, PublishedContentCreatedEnvelope, PublishedContentDeletedEnvelope, PublishedContentUpdatedEnvelope } from './index.typings.mjs';
3
- export { ActionEvent, Alignment, AnchorData, AppEmbedData, AppEmbedDataAppDataOneOf, AppType, AudioData, Background, BackgroundBackgroundOneOf, BackgroundType, BaseEventMetadata, BlockquoteData, BookingData, Border, BorderColors, BulletedListData, ButtonData, CaptionData, CellStyle, CodeBlockData, CollapsibleListData, ColorData, Colors, Crop, CursorPaging, CursorPagingMetadata, CursorQuery, CursorQueryPagingMethodOneOf, Cursors, Decoration, DecorationDataOneOf, DecorationType, DeletePublishedContentRequest, DeletePublishedContentResponse, Design, Dimensions, Direction, DividerData, DocumentStyle, DomainEvent, DomainEventBodyOneOf, EmbedData, Empty, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, EventData, EventMetadata, ExtendedFields, FileData, FileSource, FileSourceDataOneOf, FocalPoint, FontSizeData, FontType, GIF, GIFData, GIFType, GalleryData, GalleryOptions, GetPublishedContentRequest, GetPublishedContentResponse, Gradient, HTMLData, HTMLDataDataOneOf, HeadingData, Height, IdentificationData, IdentificationDataIdOneOf, Image, ImageData, ImageDataStyles, InitialExpandedItems, Item, ItemDataOneOf, ItemStyle, Layout, LayoutCellData, LayoutType, LineStyle, Link, LinkData, LinkDataOneOf, LinkPreviewData, LinkPreviewDataStyles, ListValue, MapData, MapSettings, MapType, Media, MentionData, MessageEnvelope, Metadata, Node, NodeDataOneOf, NodeStyle, NodeType, NullValue, Oembed, Option, OptionDesign, OptionLayout, OrderedListData, Orientation, PDFSettings, ParagraphData, Permissions, PlaybackOptions, PluginContainerData, PluginContainerDataAlignment, PluginContainerDataWidth, PluginContainerDataWidthDataOneOf, Poll, PollData, PollDataLayout, PollDesign, PollLayout, PollLayoutDirection, PollLayoutType, Position, PublishedContent, PublishedContentField, PublishedContentFieldValueOneOf, PublishedContentQueryResult, QueryPublishedContentRequest, QueryPublishedContentResponse, Rel, RestoreInfo, RichContent, SchemaKey, SchemaScope, Settings, SortOrder, Sorting, Source, Spoiler, SpoilerData, Styles, StylesBorder, TableCellData, TableData, Target, TextAlignment, TextData, TextNodeStyle, TextStyle, Thumbnails, ThumbnailsAlignment, Type, VerticalAlignment, Video, VideoData, VideoResolution, ViewMode, ViewRole, VoteRole, WebhookIdentityType, Width, WidthType } from './index.typings.mjs';
3
+ export { ActionEvent, Alignment, AnchorData, AppEmbedData, AppEmbedDataAppDataOneOf, AppType, AspectRatio, AudioData, Background, BackgroundBackgroundOneOf, BackgroundType, BaseEventMetadata, BlockquoteData, BookingData, Border, BorderColors, BulletedListData, ButtonData, ButtonDataType, ButtonStyles, CaptionData, CardStyles, CellStyle, CodeBlockData, CollapsibleListData, ColorData, Colors, Crop, CursorPaging, CursorPagingMetadata, CursorQuery, CursorQueryPagingMethodOneOf, Cursors, Decoration, DecorationDataOneOf, DecorationType, DeletePublishedContentRequest, DeletePublishedContentResponse, Design, Dimensions, Direction, DividerData, DividerDataAlignment, DocumentStyle, DomainEvent, DomainEventBodyOneOf, EmbedData, Empty, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, EventData, EventMetadata, ExtendedFields, FileData, FileSource, FileSourceDataOneOf, FocalPoint, FontSizeData, FontType, GIF, GIFData, GIFType, GalleryData, GalleryOptions, GalleryOptionsLayout, GetPublishedContentRequest, GetPublishedContentResponse, Gradient, HTMLData, HTMLDataDataOneOf, HeadingData, Height, IdentificationData, IdentificationDataIdOneOf, Image, ImageData, ImageDataStyles, ImageStyles, InitialExpandedItems, Item, ItemDataOneOf, ItemStyle, Layout, LayoutCellData, LayoutType, LineStyle, Link, LinkData, LinkDataOneOf, LinkPreviewData, LinkPreviewDataStyles, ListValue, MapData, MapSettings, MapType, Media, MentionData, MessageEnvelope, Metadata, Node, NodeDataOneOf, NodeStyle, NodeType, NullValue, Oembed, Option, OptionDesign, OptionLayout, OrderedListData, Orientation, PDFSettings, ParagraphData, Permissions, Placement, PlaybackOptions, PluginContainerData, PluginContainerDataAlignment, PluginContainerDataWidth, PluginContainerDataWidthDataOneOf, Poll, PollData, PollDataLayout, PollDesign, PollLayout, PollLayoutDirection, PollLayoutType, Position, PublishedContent, PublishedContentField, PublishedContentFieldValueOneOf, PublishedContentQueryResult, QueryPublishedContentRequest, QueryPublishedContentResponse, Rel, Resizing, RestoreInfo, RibbonStyles, RichContent, SchemaKey, SchemaScope, Settings, SortOrder, Sorting, Source, Spoiler, SpoilerData, Styles, StylesBorder, StylesPosition, TableCellData, TableData, Target, TextAlignment, TextData, TextNodeStyle, TextStyle, Thumbnails, ThumbnailsAlignment, Type, VerticalAlignment, Video, VideoData, VideoResolution, ViewMode, ViewRole, VoteRole, WebhookIdentityType, Width, WidthType } from './index.typings.mjs';
4
4
 
5
5
  declare function queryPublishedContent$1(httpClient: HttpClient): QueryPublishedContentSignature;
6
6
  interface QueryPublishedContentSignature {
@@ -263,11 +263,11 @@ var PluginContainerDataAlignment = /* @__PURE__ */ ((PluginContainerDataAlignmen
263
263
  PluginContainerDataAlignment2["RIGHT"] = "RIGHT";
264
264
  return PluginContainerDataAlignment2;
265
265
  })(PluginContainerDataAlignment || {});
266
- var Type = /* @__PURE__ */ ((Type2) => {
267
- Type2["LINK"] = "LINK";
268
- Type2["ACTION"] = "ACTION";
269
- return Type2;
270
- })(Type || {});
266
+ var ButtonDataType = /* @__PURE__ */ ((ButtonDataType2) => {
267
+ ButtonDataType2["LINK"] = "LINK";
268
+ ButtonDataType2["ACTION"] = "ACTION";
269
+ return ButtonDataType2;
270
+ })(ButtonDataType || {});
271
271
  var Target = /* @__PURE__ */ ((Target2) => {
272
272
  Target2["SELF"] = "SELF";
273
273
  Target2["BLANK"] = "BLANK";
@@ -296,12 +296,12 @@ var Width = /* @__PURE__ */ ((Width2) => {
296
296
  Width2["SMALL"] = "SMALL";
297
297
  return Width2;
298
298
  })(Width || {});
299
- var Alignment = /* @__PURE__ */ ((Alignment2) => {
300
- Alignment2["CENTER"] = "CENTER";
301
- Alignment2["LEFT"] = "LEFT";
302
- Alignment2["RIGHT"] = "RIGHT";
303
- return Alignment2;
304
- })(Alignment || {});
299
+ var DividerDataAlignment = /* @__PURE__ */ ((DividerDataAlignment2) => {
300
+ DividerDataAlignment2["CENTER"] = "CENTER";
301
+ DividerDataAlignment2["LEFT"] = "LEFT";
302
+ DividerDataAlignment2["RIGHT"] = "RIGHT";
303
+ return DividerDataAlignment2;
304
+ })(DividerDataAlignment || {});
305
305
  var ViewMode = /* @__PURE__ */ ((ViewMode2) => {
306
306
  ViewMode2["NONE"] = "NONE";
307
307
  ViewMode2["FULL"] = "FULL";
@@ -349,13 +349,13 @@ var Source = /* @__PURE__ */ ((Source2) => {
349
349
  Source2["ADSENSE"] = "ADSENSE";
350
350
  return Source2;
351
351
  })(Source || {});
352
- var Position = /* @__PURE__ */ ((Position2) => {
353
- Position2["START"] = "START";
354
- Position2["END"] = "END";
355
- Position2["TOP"] = "TOP";
356
- Position2["HIDDEN"] = "HIDDEN";
357
- return Position2;
358
- })(Position || {});
352
+ var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
353
+ StylesPosition2["START"] = "START";
354
+ StylesPosition2["END"] = "END";
355
+ StylesPosition2["TOP"] = "TOP";
356
+ StylesPosition2["HIDDEN"] = "HIDDEN";
357
+ return StylesPosition2;
358
+ })(StylesPosition || {});
359
359
  var MapType = /* @__PURE__ */ ((MapType2) => {
360
360
  MapType2["ROADMAP"] = "ROADMAP";
361
361
  MapType2["SATELITE"] = "SATELITE";
@@ -411,6 +411,43 @@ var FontType = /* @__PURE__ */ ((FontType2) => {
411
411
  FontType2["EM"] = "EM";
412
412
  return FontType2;
413
413
  })(FontType || {});
414
+ var Position = /* @__PURE__ */ ((Position2) => {
415
+ Position2["START"] = "START";
416
+ Position2["END"] = "END";
417
+ Position2["TOP"] = "TOP";
418
+ return Position2;
419
+ })(Position || {});
420
+ var AspectRatio = /* @__PURE__ */ ((AspectRatio2) => {
421
+ AspectRatio2["SQUARE"] = "SQUARE";
422
+ AspectRatio2["RECTANGLE"] = "RECTANGLE";
423
+ return AspectRatio2;
424
+ })(AspectRatio || {});
425
+ var Resizing = /* @__PURE__ */ ((Resizing2) => {
426
+ Resizing2["FILL"] = "FILL";
427
+ Resizing2["FIT"] = "FIT";
428
+ return Resizing2;
429
+ })(Resizing || {});
430
+ var Placement = /* @__PURE__ */ ((Placement2) => {
431
+ Placement2["IMAGE"] = "IMAGE";
432
+ Placement2["PRODUCT_INFO"] = "PRODUCT_INFO";
433
+ return Placement2;
434
+ })(Placement || {});
435
+ var Type = /* @__PURE__ */ ((Type2) => {
436
+ Type2["CONTAINED"] = "CONTAINED";
437
+ Type2["FRAMELESS"] = "FRAMELESS";
438
+ return Type2;
439
+ })(Type || {});
440
+ var Alignment = /* @__PURE__ */ ((Alignment2) => {
441
+ Alignment2["START"] = "START";
442
+ Alignment2["CENTER"] = "CENTER";
443
+ Alignment2["END"] = "END";
444
+ return Alignment2;
445
+ })(Alignment || {});
446
+ var Layout = /* @__PURE__ */ ((Layout2) => {
447
+ Layout2["STACKED"] = "STACKED";
448
+ Layout2["SIDE_BY_SIDE"] = "SIDE_BY_SIDE";
449
+ return Layout2;
450
+ })(Layout || {});
414
451
  var AppType = /* @__PURE__ */ ((AppType2) => {
415
452
  AppType2["PRODUCT"] = "PRODUCT";
416
453
  AppType2["EVENT"] = "EVENT";
@@ -753,26 +790,33 @@ var onPublishedContentUpdated2 = createEventModule(onPublishedContentUpdated);
753
790
  export {
754
791
  Alignment,
755
792
  AppType,
793
+ AspectRatio,
756
794
  BackgroundType,
795
+ ButtonDataType,
757
796
  Crop,
758
797
  DecorationType,
759
798
  Direction,
799
+ DividerDataAlignment,
760
800
  FontType,
761
801
  GIFType,
762
802
  InitialExpandedItems,
803
+ Layout,
763
804
  LayoutType,
764
805
  LineStyle,
765
806
  MapType,
766
807
  NodeType,
767
808
  NullValue,
768
809
  Orientation,
810
+ Placement,
769
811
  PluginContainerDataAlignment,
770
812
  PollLayoutDirection,
771
813
  PollLayoutType,
772
814
  Position,
815
+ Resizing,
773
816
  SchemaScope,
774
817
  SortOrder,
775
818
  Source,
819
+ StylesPosition,
776
820
  Target,
777
821
  TextAlignment,
778
822
  ThumbnailsAlignment,