@wix/auto_sdk_multilingual_machine-translation 1.0.51 → 1.0.53

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 +137 -5
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +61 -33
  5. package/build/cjs/index.typings.js +137 -5
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +61 -33
  8. package/build/cjs/meta.js +137 -5
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +137 -5
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +61 -33
  14. package/build/es/index.typings.mjs +137 -5
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +61 -33
  17. package/build/es/meta.mjs +137 -5
  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 +137 -5
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +61 -33
  23. package/build/internal/cjs/index.typings.js +137 -5
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +61 -33
  26. package/build/internal/cjs/meta.js +137 -5
  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 +137 -5
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +61 -33
  32. package/build/internal/es/index.typings.mjs +137 -5
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +61 -33
  35. package/build/internal/es/meta.mjs +137 -5
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -944,6 +944,10 @@ interface ImageData {
944
944
  decorative?: boolean | null;
945
945
  /** Styling for the image. */
946
946
  styles?: ImageDataStyles;
947
+ /** Non-destructive crop rectangle, expressed as fractions (0-1) of the original image. When omitted, the full image is shown. */
948
+ crop?: ImageDataCrop;
949
+ /** Optional shape mask applied to the visible crop. Supported values: CIRCLE, OVAL, STAR, PENTAGON, HEXAGON, TRIANGLE, HEART, RHOMBUS, FLUID, WINDOW. */
950
+ cropShape?: string | null;
947
951
  }
948
952
  interface StylesBorder {
949
953
  /** Border width in pixels. */
@@ -960,6 +964,16 @@ interface ImageDataStyles {
960
964
  /** Border attributes. */
961
965
  border?: StylesBorder;
962
966
  }
967
+ interface ImageDataCrop {
968
+ /** Left edge of the crop, as a fraction (0-1) of the original image width. */
969
+ x?: number | null;
970
+ /** Top edge of the crop, as a fraction (0-1) of the original image height. */
971
+ y?: number | null;
972
+ /** Visible width of the crop, as a fraction (0-1) of the original image width. */
973
+ width?: number | null;
974
+ /** Visible height of the crop, as a fraction (0-1) of the original image height. */
975
+ height?: number | null;
976
+ }
963
977
  interface LinkPreviewData {
964
978
  /** Styling for the link preview's container. */
965
979
  containerData?: PluginContainerData;
@@ -1997,6 +2011,27 @@ declare enum ImagePosition {
1997
2011
  }
1998
2012
  /** @enumType */
1999
2013
  type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
2014
+ /** Background styling (color or gradient) */
2015
+ interface LayoutDataBackground {
2016
+ /** Background type. */
2017
+ type?: LayoutDataBackgroundTypeWithLiterals;
2018
+ /**
2019
+ * Background color as a hexadecimal value.
2020
+ * @maxLength 19
2021
+ */
2022
+ color?: string | null;
2023
+ /** Gradient configuration. */
2024
+ gradient?: Gradient;
2025
+ }
2026
+ /** Background type */
2027
+ declare enum LayoutDataBackgroundType {
2028
+ /** Solid color background */
2029
+ COLOR = "COLOR",
2030
+ /** Gradient background */
2031
+ GRADIENT = "GRADIENT"
2032
+ }
2033
+ /** @enumType */
2034
+ type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
2000
2035
  declare enum Origin {
2001
2036
  /** Banner originated from an image */
2002
2037
  IMAGE = "IMAGE",
@@ -2013,15 +2048,6 @@ declare enum BannerPosition {
2013
2048
  }
2014
2049
  /** @enumType */
2015
2050
  type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
2016
- /** Background type */
2017
- declare enum LayoutDataBackgroundType {
2018
- /** Solid color background */
2019
- COLOR = "COLOR",
2020
- /** Gradient background */
2021
- GRADIENT = "GRADIENT"
2022
- }
2023
- /** @enumType */
2024
- type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
2025
2051
  /** Backdrop type */
2026
2052
  declare enum BackdropType {
2027
2053
  /** Solid color backdrop */
@@ -2034,12 +2060,19 @@ type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
2034
2060
  interface LayoutDataBackgroundImage {
2035
2061
  /** Background image. */
2036
2062
  media?: Media;
2037
- /** Background image opacity. */
2063
+ /**
2064
+ * Deprecated: use `overlay` instead. Legacy image opacity (0–100) that dimmed the image to reveal the `background`/`backdrop` color behind it.
2065
+ * @deprecated
2066
+ */
2038
2067
  opacity?: number | null;
2039
2068
  /** Background image scaling. */
2040
2069
  scaling?: ImageScalingScalingWithLiterals;
2041
2070
  /** Position of background. Defaults to `CENTER`. */
2042
2071
  position?: ImagePositionWithLiterals;
2072
+ /** Blur radius in pixels applied to the image layer. `0` (default) leaves the image unblurred; blur is independent of any color overlay and the two stack. */
2073
+ blur?: number | null;
2074
+ /** Color or gradient drawn on top of the image. When present, this is the authoritative overlay and `opacity` is ignored. Its presence also marks content as authored under the new overlay model (vs. the legacy `opacity`-based dimming on `background`/`backdrop`). */
2075
+ overlay?: LayoutDataBackground;
2043
2076
  }
2044
2077
  declare enum VerticalAlignmentAlignment {
2045
2078
  /** Top alignment */
@@ -2073,18 +2106,6 @@ interface Banner {
2073
2106
  /** Position of the banner */
2074
2107
  position?: BannerPositionWithLiterals;
2075
2108
  }
2076
- /** Background styling (color or gradient) */
2077
- interface LayoutDataBackground {
2078
- /** Background type. */
2079
- type?: LayoutDataBackgroundTypeWithLiterals;
2080
- /**
2081
- * Background color as a hexadecimal value.
2082
- * @maxLength 19
2083
- */
2084
- color?: string | null;
2085
- /** Gradient configuration. */
2086
- gradient?: Gradient;
2087
- }
2088
2109
  /** Backdrop styling (color or gradient) */
2089
2110
  interface Backdrop {
2090
2111
  /** Backdrop type. */
@@ -2156,15 +2177,6 @@ declare enum ImagePositionPosition {
2156
2177
  }
2157
2178
  /** @enumType */
2158
2179
  type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
2159
- /** Background type */
2160
- declare enum CardDataBackgroundType {
2161
- /** Solid color background */
2162
- COLOR = "COLOR",
2163
- /** Gradient background */
2164
- GRADIENT = "GRADIENT"
2165
- }
2166
- /** @enumType */
2167
- type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
2168
2180
  /** Background styling (color or gradient) */
2169
2181
  interface CardDataBackground {
2170
2182
  /** Background type. */
@@ -2177,15 +2189,31 @@ interface CardDataBackground {
2177
2189
  /** Gradient configuration. */
2178
2190
  gradient?: Gradient;
2179
2191
  }
2192
+ /** Background type */
2193
+ declare enum CardDataBackgroundType {
2194
+ /** Solid color background */
2195
+ COLOR = "COLOR",
2196
+ /** Gradient background */
2197
+ GRADIENT = "GRADIENT"
2198
+ }
2199
+ /** @enumType */
2200
+ type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
2180
2201
  interface BackgroundImage {
2181
2202
  /** Background image. */
2182
2203
  media?: Media;
2183
- /** Background image opacity. */
2204
+ /**
2205
+ * Deprecated: use `overlay` instead. Legacy image opacity (0–100) that dimmed the image to reveal the `background` color behind it.
2206
+ * @deprecated
2207
+ */
2184
2208
  opacity?: number | null;
2185
2209
  /** Background image scaling. */
2186
2210
  scaling?: ScalingWithLiterals;
2187
2211
  /** Position of background. Defaults to `CENTER`. */
2188
2212
  position?: ImagePositionPositionWithLiterals;
2213
+ /** Color or gradient drawn on top of the image. When present, this is the authoritative overlay and `opacity` is ignored. Its presence also marks content as authored under the new overlay model (vs. the legacy `opacity`-based dimming on `background`). */
2214
+ overlay?: CardDataBackground;
2215
+ /** Blur radius in pixels applied to the image layer. `0` (default) leaves the image unblurred; blur is independent of any color overlay and the two stack. */
2216
+ blur?: number | null;
2189
2217
  }
2190
2218
  interface TocData {
2191
2219
  /** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
@@ -2884,4 +2912,4 @@ interface BulkMachineTranslateOptions {
2884
2912
  contentToTranslate?: TranslatableContent[];
2885
2913
  }
2886
2914
 
2887
- export { Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, BannerPosition, type BannerPositionWithLiterals, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkActionMetadata, type BulkMachineTranslateApplicationErrors, type BulkMachineTranslateOptions, type BulkMachineTranslateRequest, type BulkMachineTranslateResponse, type BulkTranslateResult, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type CellStyle, type CheckboxListData, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, Crop, type CropWithLiterals, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type EmbedData, type EventData, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, Format, type FormatWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type Gradient, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type Image, type ImageData, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListItemNodeData, ListStyle, type ListStyleWithLiterals, type ListValue, type MachineTranslateApplicationErrors, type MachineTranslateOptions, type MachineTranslateRequest, type MachineTranslateResponse, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type Metadata, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, type NotEnoughCreditsError, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, 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 PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, type PricingData, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RibbonStyles, type RichContent, type SameLanguageArgumentsError, Scaling, type ScalingWithLiterals, type Settings, type ShapeData, type ShapeDataStyles, type SketchData, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Stop, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, SupportedLanguage, type SupportedLanguageWithLiterals, type TableCellData, type TableData, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type TextTooLongError, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, type TranslatableContent, type TranslatableContentContentOneOf, Type, type TypeWithLiterals, type UnknownFormatError, Variant, type VariantWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, bulkMachineTranslate, machineTranslate };
2915
+ export { Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, BannerPosition, type BannerPositionWithLiterals, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkActionMetadata, type BulkMachineTranslateApplicationErrors, type BulkMachineTranslateOptions, type BulkMachineTranslateRequest, type BulkMachineTranslateResponse, type BulkTranslateResult, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type CellStyle, type CheckboxListData, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, Crop, type CropWithLiterals, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type EmbedData, type EventData, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, Format, type FormatWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type Gradient, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type Image, type ImageData, type ImageDataCrop, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListItemNodeData, ListStyle, type ListStyleWithLiterals, type ListValue, type MachineTranslateApplicationErrors, type MachineTranslateOptions, type MachineTranslateRequest, type MachineTranslateResponse, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type Metadata, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, type NotEnoughCreditsError, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, 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 PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, type PricingData, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RibbonStyles, type RichContent, type SameLanguageArgumentsError, Scaling, type ScalingWithLiterals, type Settings, type ShapeData, type ShapeDataStyles, type SketchData, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Stop, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, SupportedLanguage, type SupportedLanguageWithLiterals, type TableCellData, type TableData, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type TextTooLongError, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, type TranslatableContent, type TranslatableContentContentOneOf, Type, type TypeWithLiterals, type UnknownFormatError, Variant, type VariantWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, bulkMachineTranslate, machineTranslate };
@@ -187,6 +187,12 @@ function machineTranslate(payload) {
187
187
  {
188
188
  path: "contentToTranslate.richContent.nodes.imageData.image.duration"
189
189
  },
190
+ { path: "contentToTranslate.richContent.nodes.imageData.crop.x" },
191
+ { path: "contentToTranslate.richContent.nodes.imageData.crop.y" },
192
+ { path: "contentToTranslate.richContent.nodes.imageData.crop.width" },
193
+ {
194
+ path: "contentToTranslate.richContent.nodes.imageData.crop.height"
195
+ },
190
196
  {
191
197
  path: "contentToTranslate.richContent.nodes.mapData.mapSettings.lat"
192
198
  },
@@ -220,9 +226,27 @@ function machineTranslate(payload) {
220
226
  {
221
227
  path: "contentToTranslate.richContent.nodes.layoutData.backgroundImage.media.duration"
222
228
  },
229
+ {
230
+ path: "contentToTranslate.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
231
+ },
232
+ {
233
+ path: "contentToTranslate.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
234
+ },
235
+ {
236
+ path: "contentToTranslate.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
237
+ },
223
238
  {
224
239
  path: "contentToTranslate.richContent.nodes.layoutData.backdropImage.media.duration"
225
240
  },
241
+ {
242
+ path: "contentToTranslate.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
243
+ },
244
+ {
245
+ path: "contentToTranslate.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
246
+ },
247
+ {
248
+ path: "contentToTranslate.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
249
+ },
226
250
  {
227
251
  path: "contentToTranslate.richContent.nodes.layoutData.background.gradient.centerX"
228
252
  },
@@ -256,6 +280,15 @@ function machineTranslate(payload) {
256
280
  {
257
281
  path: "contentToTranslate.richContent.nodes.cardData.backgroundImage.media.duration"
258
282
  },
283
+ {
284
+ path: "contentToTranslate.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
285
+ },
286
+ {
287
+ path: "contentToTranslate.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
288
+ },
289
+ {
290
+ path: "contentToTranslate.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
291
+ },
259
292
  { path: "contentToTranslate.richContent.nodes.tocData.fontSize" },
260
293
  { path: "contentToTranslate.richContent.nodes.tocData.itemSpacing" },
261
294
  {
@@ -322,6 +355,14 @@ function machineTranslate(payload) {
322
355
  {
323
356
  path: "translatedContent.richContent.nodes.imageData.image.duration"
324
357
  },
358
+ { path: "translatedContent.richContent.nodes.imageData.crop.x" },
359
+ { path: "translatedContent.richContent.nodes.imageData.crop.y" },
360
+ {
361
+ path: "translatedContent.richContent.nodes.imageData.crop.width"
362
+ },
363
+ {
364
+ path: "translatedContent.richContent.nodes.imageData.crop.height"
365
+ },
325
366
  {
326
367
  path: "translatedContent.richContent.nodes.mapData.mapSettings.lat"
327
368
  },
@@ -355,9 +396,27 @@ function machineTranslate(payload) {
355
396
  {
356
397
  path: "translatedContent.richContent.nodes.layoutData.backgroundImage.media.duration"
357
398
  },
399
+ {
400
+ path: "translatedContent.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
401
+ },
402
+ {
403
+ path: "translatedContent.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
404
+ },
405
+ {
406
+ path: "translatedContent.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
407
+ },
358
408
  {
359
409
  path: "translatedContent.richContent.nodes.layoutData.backdropImage.media.duration"
360
410
  },
411
+ {
412
+ path: "translatedContent.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
413
+ },
414
+ {
415
+ path: "translatedContent.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
416
+ },
417
+ {
418
+ path: "translatedContent.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
419
+ },
361
420
  {
362
421
  path: "translatedContent.richContent.nodes.layoutData.background.gradient.centerX"
363
422
  },
@@ -391,6 +450,15 @@ function machineTranslate(payload) {
391
450
  {
392
451
  path: "translatedContent.richContent.nodes.cardData.backgroundImage.media.duration"
393
452
  },
453
+ {
454
+ path: "translatedContent.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
455
+ },
456
+ {
457
+ path: "translatedContent.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
458
+ },
459
+ {
460
+ path: "translatedContent.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
461
+ },
394
462
  { path: "translatedContent.richContent.nodes.tocData.fontSize" },
395
463
  {
396
464
  path: "translatedContent.richContent.nodes.tocData.itemSpacing"
@@ -456,6 +524,12 @@ function bulkMachineTranslate(payload) {
456
524
  {
457
525
  path: "contentToTranslate.richContent.nodes.imageData.image.duration"
458
526
  },
527
+ { path: "contentToTranslate.richContent.nodes.imageData.crop.x" },
528
+ { path: "contentToTranslate.richContent.nodes.imageData.crop.y" },
529
+ { path: "contentToTranslate.richContent.nodes.imageData.crop.width" },
530
+ {
531
+ path: "contentToTranslate.richContent.nodes.imageData.crop.height"
532
+ },
459
533
  {
460
534
  path: "contentToTranslate.richContent.nodes.mapData.mapSettings.lat"
461
535
  },
@@ -489,9 +563,27 @@ function bulkMachineTranslate(payload) {
489
563
  {
490
564
  path: "contentToTranslate.richContent.nodes.layoutData.backgroundImage.media.duration"
491
565
  },
566
+ {
567
+ path: "contentToTranslate.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
568
+ },
569
+ {
570
+ path: "contentToTranslate.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
571
+ },
572
+ {
573
+ path: "contentToTranslate.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
574
+ },
492
575
  {
493
576
  path: "contentToTranslate.richContent.nodes.layoutData.backdropImage.media.duration"
494
577
  },
578
+ {
579
+ path: "contentToTranslate.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
580
+ },
581
+ {
582
+ path: "contentToTranslate.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
583
+ },
584
+ {
585
+ path: "contentToTranslate.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
586
+ },
495
587
  {
496
588
  path: "contentToTranslate.richContent.nodes.layoutData.background.gradient.centerX"
497
589
  },
@@ -525,6 +617,15 @@ function bulkMachineTranslate(payload) {
525
617
  {
526
618
  path: "contentToTranslate.richContent.nodes.cardData.backgroundImage.media.duration"
527
619
  },
620
+ {
621
+ path: "contentToTranslate.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
622
+ },
623
+ {
624
+ path: "contentToTranslate.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
625
+ },
626
+ {
627
+ path: "contentToTranslate.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
628
+ },
528
629
  { path: "contentToTranslate.richContent.nodes.tocData.fontSize" },
529
630
  { path: "contentToTranslate.richContent.nodes.tocData.itemSpacing" },
530
631
  {
@@ -591,6 +692,10 @@ function bulkMachineTranslate(payload) {
591
692
  {
592
693
  path: "results.item.richContent.nodes.imageData.image.duration"
593
694
  },
695
+ { path: "results.item.richContent.nodes.imageData.crop.x" },
696
+ { path: "results.item.richContent.nodes.imageData.crop.y" },
697
+ { path: "results.item.richContent.nodes.imageData.crop.width" },
698
+ { path: "results.item.richContent.nodes.imageData.crop.height" },
594
699
  {
595
700
  path: "results.item.richContent.nodes.mapData.mapSettings.lat"
596
701
  },
@@ -624,9 +729,27 @@ function bulkMachineTranslate(payload) {
624
729
  {
625
730
  path: "results.item.richContent.nodes.layoutData.backgroundImage.media.duration"
626
731
  },
732
+ {
733
+ path: "results.item.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
734
+ },
735
+ {
736
+ path: "results.item.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
737
+ },
738
+ {
739
+ path: "results.item.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
740
+ },
627
741
  {
628
742
  path: "results.item.richContent.nodes.layoutData.backdropImage.media.duration"
629
743
  },
744
+ {
745
+ path: "results.item.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
746
+ },
747
+ {
748
+ path: "results.item.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
749
+ },
750
+ {
751
+ path: "results.item.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
752
+ },
630
753
  {
631
754
  path: "results.item.richContent.nodes.layoutData.background.gradient.centerX"
632
755
  },
@@ -660,6 +783,15 @@ function bulkMachineTranslate(payload) {
660
783
  {
661
784
  path: "results.item.richContent.nodes.cardData.backgroundImage.media.duration"
662
785
  },
786
+ {
787
+ path: "results.item.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
788
+ },
789
+ {
790
+ path: "results.item.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
791
+ },
792
+ {
793
+ path: "results.item.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
794
+ },
663
795
  { path: "results.item.richContent.nodes.tocData.fontSize" },
664
796
  { path: "results.item.richContent.nodes.tocData.itemSpacing" },
665
797
  {
@@ -996,6 +1128,11 @@ var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
996
1128
  ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
997
1129
  return ImagePosition2;
998
1130
  })(ImagePosition || {});
1131
+ var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
1132
+ LayoutDataBackgroundType2["COLOR"] = "COLOR";
1133
+ LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
1134
+ return LayoutDataBackgroundType2;
1135
+ })(LayoutDataBackgroundType || {});
999
1136
  var Origin = /* @__PURE__ */ ((Origin2) => {
1000
1137
  Origin2["IMAGE"] = "IMAGE";
1001
1138
  Origin2["LAYOUT"] = "LAYOUT";
@@ -1006,11 +1143,6 @@ var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
1006
1143
  BannerPosition2["BOTTOM"] = "BOTTOM";
1007
1144
  return BannerPosition2;
1008
1145
  })(BannerPosition || {});
1009
- var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
1010
- LayoutDataBackgroundType2["COLOR"] = "COLOR";
1011
- LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
1012
- return LayoutDataBackgroundType2;
1013
- })(LayoutDataBackgroundType || {});
1014
1146
  var BackdropType = /* @__PURE__ */ ((BackdropType2) => {
1015
1147
  BackdropType2["COLOR"] = "COLOR";
1016
1148
  BackdropType2["GRADIENT"] = "GRADIENT";