@wix/auto_sdk_multilingual_translation-published-contents 1.0.39 → 1.0.40

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.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +61 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +109 -3
  5. package/build/cjs/index.typings.js +43 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +109 -3
  8. package/build/cjs/meta.js +43 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +57 -0
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +109 -3
  14. package/build/es/index.typings.mjs +39 -0
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +109 -3
  17. package/build/es/meta.mjs +39 -0
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +61 -0
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +109 -3
  23. package/build/internal/cjs/index.typings.js +43 -0
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +109 -3
  26. package/build/internal/cjs/meta.js +43 -0
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +57 -0
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +109 -3
  32. package/build/internal/es/index.typings.mjs +39 -0
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +109 -3
  35. package/build/internal/es/meta.mjs +39 -0
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -169,7 +169,9 @@ interface Node extends NodeDataOneOf {
169
169
  blockquoteData?: BlockquoteData;
170
170
  /** Data for a caption node. */
171
171
  captionData?: CaptionData;
172
- /** LayoutData layout_data = 31; // Data for a layout node. Reserved for future use. */
172
+ /** Data for a layout node. Reserved for future use. */
173
+ layoutData?: LayoutData;
174
+ /** Data for a cell node. */
173
175
  layoutCellData?: LayoutCellData;
174
176
  /** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
175
177
  type?: NodeTypeWithLiterals;
@@ -234,7 +236,9 @@ interface NodeDataOneOf {
234
236
  blockquoteData?: BlockquoteData;
235
237
  /** Data for a caption node. */
236
238
  captionData?: CaptionData;
237
- /** LayoutData layout_data = 31; // Data for a layout node. Reserved for future use. */
239
+ /** Data for a layout node. Reserved for future use. */
240
+ layoutData?: LayoutData;
241
+ /** Data for a cell node. */
238
242
  layoutCellData?: LayoutCellData;
239
243
  }
240
244
  declare enum NodeType {
@@ -1791,6 +1795,108 @@ interface BlockquoteData {
1791
1795
  interface CaptionData {
1792
1796
  textStyle?: TextStyle;
1793
1797
  }
1798
+ interface LayoutData {
1799
+ /**
1800
+ * Background color as a hexadecimal value.
1801
+ * @format COLOR_HEX
1802
+ */
1803
+ backgroundColor?: string | null;
1804
+ /** Background image. */
1805
+ backgroundImage?: BackgroundImage;
1806
+ /**
1807
+ * Border color as a hexadecimal value.
1808
+ * @format COLOR_HEX
1809
+ */
1810
+ borderColor?: string | null;
1811
+ /** Border width in pixels. */
1812
+ borderWidth?: number | null;
1813
+ /** Border */
1814
+ borderRadius?: number | null;
1815
+ /**
1816
+ * Backdrop color as a hexadecimal value.
1817
+ * @format COLOR_HEX
1818
+ */
1819
+ backdropColor?: string | null;
1820
+ /** Backdrop image.radius in pixels. */
1821
+ backdropImage?: BackgroundImage;
1822
+ /** Backdrop top padding. */
1823
+ backdropPaddingTop?: number | null;
1824
+ /** Backdrop bottom padding */
1825
+ backdropPaddingBottom?: number | null;
1826
+ /** Horizontal and vertical gap between columns */
1827
+ gap?: number | null;
1828
+ /**
1829
+ * Padding in pixels for cells. Follows CSS order: top, right, bottom, left
1830
+ * @maxSize 4
1831
+ */
1832
+ cellPadding?: number[];
1833
+ /** Vertical alignment for the cell's items. */
1834
+ cellVerticalAlignment?: VerticalAlignmentAlignmentWithLiterals;
1835
+ /** Responsiveness behaviour of columns when responsiveness applies. Either stacks or wrappers. */
1836
+ responsivenessBehaviour?: ResponsivenessBehaviourWithLiterals;
1837
+ /** Size in pixels when responsiveness_behaviour applies */
1838
+ responsivenessBreakpoint?: number | null;
1839
+ }
1840
+ declare enum Scaling {
1841
+ /** Auto image scaling */
1842
+ AUTO = "AUTO",
1843
+ /** Contain image scaling */
1844
+ CONTAIN = "CONTAIN",
1845
+ /** Cover image scaling */
1846
+ COVER = "COVER"
1847
+ }
1848
+ /** @enumType */
1849
+ type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
1850
+ declare enum ImagePosition {
1851
+ /** Image positioned at the center */
1852
+ CENTER = "CENTER",
1853
+ /** Image positioned on the left */
1854
+ CENTER_LEFT = "CENTER_LEFT",
1855
+ /** Image positioned on the right */
1856
+ CENTER_RIGHT = "CENTER_RIGHT",
1857
+ /** Image positioned at the center top */
1858
+ TOP = "TOP",
1859
+ /** Image positioned at the top left */
1860
+ TOP_LEFT = "TOP_LEFT",
1861
+ /** Image positioned at the top right */
1862
+ TOP_RIGHT = "TOP_RIGHT",
1863
+ /** Image positioned at the center bottom */
1864
+ BOTTOM = "BOTTOM",
1865
+ /** Image positioned at the bottom left */
1866
+ BOTTOM_LEFT = "BOTTOM_LEFT",
1867
+ /** Image positioned at the bottom right */
1868
+ BOTTOM_RIGHT = "BOTTOM_RIGHT"
1869
+ }
1870
+ /** @enumType */
1871
+ type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
1872
+ interface BackgroundImage {
1873
+ /** Background image. */
1874
+ media?: Media;
1875
+ /** Background image opacity. */
1876
+ opacity?: number | null;
1877
+ /** Background image scaling. */
1878
+ scaling?: ScalingWithLiterals;
1879
+ /** Position of background. Defaults to `CENTER`. */
1880
+ position?: ImagePositionWithLiterals;
1881
+ }
1882
+ declare enum VerticalAlignmentAlignment {
1883
+ /** Top alignment */
1884
+ TOP = "TOP",
1885
+ /** Middle alignment */
1886
+ MIDDLE = "MIDDLE",
1887
+ /** Bottom alignment */
1888
+ BOTTOM = "BOTTOM"
1889
+ }
1890
+ /** @enumType */
1891
+ type VerticalAlignmentAlignmentWithLiterals = VerticalAlignmentAlignment | 'TOP' | 'MIDDLE' | 'BOTTOM';
1892
+ declare enum ResponsivenessBehaviour {
1893
+ /** Stacking of columns */
1894
+ STACK = "STACK",
1895
+ /** Wrapping of columns */
1896
+ WRAP = "WRAP"
1897
+ }
1898
+ /** @enumType */
1899
+ type ResponsivenessBehaviourWithLiterals = ResponsivenessBehaviour | 'STACK' | 'WRAP';
1794
1900
  interface LayoutCellData {
1795
1901
  /** Size of the cell in 12 columns grid. */
1796
1902
  colSpan?: number | null;
@@ -2359,4 +2465,4 @@ interface PublishedContentQueryBuilder {
2359
2465
  find: () => Promise<PublishedContentQueryResult>;
2360
2466
  }
2361
2467
 
2362
- export { type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, BackgroundType, type BackgroundTypeWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulkActionMetadata, type BulkContentResult, type BulkDeletePublishedContentRequest, type BulkDeletePublishedContentResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardStyles, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeletePublishedContentByFilterRequest, type DeletePublishedContentByFilterResponse, type DeletePublishedContentRequest, type DeletePublishedContentResponse, type Design, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type EventMetadata, type ExtendedFields, type FileData, type FileSource, type FileSourceDataOneOf, type FocalPoint, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetPublishedContentRequest, type GetPublishedContentResponse, type Gradient, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, type PricingData, type PublishedContent, type PublishedContentCreatedEnvelope, type PublishedContentDeletedEnvelope, type PublishedContentField, type PublishedContentFieldValueOneOf, type PublishedContentQueryBuilder, type PublishedContentQueryResult, type PublishedContentUpdatedEnvelope, type QueryPublishedContentRequest, type QueryPublishedContentResponse, type Rel, Resizing, type ResizingWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, type SchemaKey, SchemaScope, type SchemaScopeWithLiterals, type Settings, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type TableCellData, type TableData, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, Type, type TypeWithLiterals, VerticalAlignment, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, onPublishedContentCreated, onPublishedContentDeleted, onPublishedContentUpdated, queryPublishedContent };
2468
+ export { type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulkActionMetadata, type BulkContentResult, type BulkDeletePublishedContentRequest, type BulkDeletePublishedContentResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardStyles, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeletePublishedContentByFilterRequest, type DeletePublishedContentByFilterResponse, type DeletePublishedContentRequest, type DeletePublishedContentResponse, type Design, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type EventMetadata, type ExtendedFields, type FileData, type FileSource, type FileSourceDataOneOf, type FocalPoint, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetPublishedContentRequest, type GetPublishedContentResponse, type Gradient, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, type ImagePositionWithLiterals, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, Layout, type LayoutCellData, type LayoutData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, type PricingData, type PublishedContent, type PublishedContentCreatedEnvelope, type PublishedContentDeletedEnvelope, type PublishedContentField, type PublishedContentFieldValueOneOf, type PublishedContentQueryBuilder, type PublishedContentQueryResult, type PublishedContentUpdatedEnvelope, type QueryPublishedContentRequest, type QueryPublishedContentResponse, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type SchemaKey, SchemaScope, type SchemaScopeWithLiterals, type Settings, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type TableCellData, type TableData, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, Type, type TypeWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, onPublishedContentCreated, onPublishedContentDeleted, onPublishedContentUpdated, queryPublishedContent };
@@ -31,6 +31,7 @@ __export(index_typings_exports, {
31
31
  DividerDataAlignment: () => DividerDataAlignment,
32
32
  FontType: () => FontType,
33
33
  GIFType: () => GIFType,
34
+ ImagePosition: () => ImagePosition,
34
35
  InitialExpandedItems: () => InitialExpandedItems,
35
36
  Layout: () => Layout,
36
37
  LayoutType: () => LayoutType,
@@ -45,6 +46,8 @@ __export(index_typings_exports, {
45
46
  PollLayoutType: () => PollLayoutType,
46
47
  Position: () => Position,
47
48
  Resizing: () => Resizing,
49
+ ResponsivenessBehaviour: () => ResponsivenessBehaviour,
50
+ Scaling: () => Scaling,
48
51
  SchemaScope: () => SchemaScope,
49
52
  SortOrder: () => SortOrder,
50
53
  Source: () => Source,
@@ -54,6 +57,7 @@ __export(index_typings_exports, {
54
57
  ThumbnailsAlignment: () => ThumbnailsAlignment,
55
58
  Type: () => Type,
56
59
  VerticalAlignment: () => VerticalAlignment,
60
+ VerticalAlignmentAlignment: () => VerticalAlignmentAlignment,
57
61
  ViewMode: () => ViewMode,
58
62
  ViewRole: () => ViewRole,
59
63
  VoteRole: () => VoteRole,
@@ -200,6 +204,12 @@ function queryPublishedContent(payload) {
200
204
  {
201
205
  path: "publishedContent.fields.richContent.nodes.audioData.coverImage.duration"
202
206
  },
207
+ {
208
+ path: "publishedContent.fields.richContent.nodes.layoutData.backgroundImage.media.duration"
209
+ },
210
+ {
211
+ path: "publishedContent.fields.richContent.nodes.layoutData.backdropImage.media.duration"
212
+ },
203
213
  { path: "publishedContent.fields.image.focalPoint.x" },
204
214
  { path: "publishedContent.fields.image.focalPoint.y" },
205
215
  {
@@ -533,6 +543,35 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
533
543
  NullValue2["NULL_VALUE"] = "NULL_VALUE";
534
544
  return NullValue2;
535
545
  })(NullValue || {});
546
+ var Scaling = /* @__PURE__ */ ((Scaling2) => {
547
+ Scaling2["AUTO"] = "AUTO";
548
+ Scaling2["CONTAIN"] = "CONTAIN";
549
+ Scaling2["COVER"] = "COVER";
550
+ return Scaling2;
551
+ })(Scaling || {});
552
+ var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
553
+ ImagePosition2["CENTER"] = "CENTER";
554
+ ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
555
+ ImagePosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
556
+ ImagePosition2["TOP"] = "TOP";
557
+ ImagePosition2["TOP_LEFT"] = "TOP_LEFT";
558
+ ImagePosition2["TOP_RIGHT"] = "TOP_RIGHT";
559
+ ImagePosition2["BOTTOM"] = "BOTTOM";
560
+ ImagePosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
561
+ ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
562
+ return ImagePosition2;
563
+ })(ImagePosition || {});
564
+ var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
565
+ VerticalAlignmentAlignment2["TOP"] = "TOP";
566
+ VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
567
+ VerticalAlignmentAlignment2["BOTTOM"] = "BOTTOM";
568
+ return VerticalAlignmentAlignment2;
569
+ })(VerticalAlignmentAlignment || {});
570
+ var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
571
+ ResponsivenessBehaviour2["STACK"] = "STACK";
572
+ ResponsivenessBehaviour2["WRAP"] = "WRAP";
573
+ return ResponsivenessBehaviour2;
574
+ })(ResponsivenessBehaviour || {});
536
575
  var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
537
576
  SortOrder2["ASC"] = "ASC";
538
577
  SortOrder2["DESC"] = "DESC";
@@ -620,6 +659,7 @@ function queryPublishedContent2() {
620
659
  DividerDataAlignment,
621
660
  FontType,
622
661
  GIFType,
662
+ ImagePosition,
623
663
  InitialExpandedItems,
624
664
  Layout,
625
665
  LayoutType,
@@ -634,6 +674,8 @@ function queryPublishedContent2() {
634
674
  PollLayoutType,
635
675
  Position,
636
676
  Resizing,
677
+ ResponsivenessBehaviour,
678
+ Scaling,
637
679
  SchemaScope,
638
680
  SortOrder,
639
681
  Source,
@@ -643,6 +685,7 @@ function queryPublishedContent2() {
643
685
  ThumbnailsAlignment,
644
686
  Type,
645
687
  VerticalAlignment,
688
+ VerticalAlignmentAlignment,
646
689
  ViewMode,
647
690
  ViewRole,
648
691
  VoteRole,