@wix/auto_sdk_multilingual_machine-translation 1.0.50 → 1.0.52
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/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +149 -5
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +87 -35
- package/build/cjs/index.typings.js +149 -5
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +87 -35
- package/build/cjs/meta.js +149 -5
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +148 -5
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +87 -35
- package/build/es/index.typings.mjs +148 -5
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +87 -35
- package/build/es/meta.mjs +148 -5
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +149 -5
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +87 -35
- package/build/internal/cjs/index.typings.js +149 -5
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +87 -35
- package/build/internal/cjs/meta.js +149 -5
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +148 -5
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +87 -35
- package/build/internal/es/index.typings.mjs +148 -5
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +87 -35
- package/build/internal/es/meta.mjs +148 -5
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -945,6 +945,8 @@ interface ImageData {
|
|
|
945
945
|
decorative?: boolean | null;
|
|
946
946
|
/** Styling for the image. */
|
|
947
947
|
styles?: ImageDataStyles;
|
|
948
|
+
/** Non-destructive crop rectangle, expressed as fractions (0-1) of the original image. When omitted, the full image is shown. */
|
|
949
|
+
crop?: ImageDataCrop;
|
|
948
950
|
}
|
|
949
951
|
interface StylesBorder {
|
|
950
952
|
/** Border width in pixels. */
|
|
@@ -961,6 +963,16 @@ interface ImageDataStyles {
|
|
|
961
963
|
/** Border attributes. */
|
|
962
964
|
border?: StylesBorder;
|
|
963
965
|
}
|
|
966
|
+
interface ImageDataCrop {
|
|
967
|
+
/** Left edge of the crop, as a fraction (0-1) of the original image width. */
|
|
968
|
+
x?: number | null;
|
|
969
|
+
/** Top edge of the crop, as a fraction (0-1) of the original image height. */
|
|
970
|
+
y?: number | null;
|
|
971
|
+
/** Visible width of the crop, as a fraction (0-1) of the original image width. */
|
|
972
|
+
width?: number | null;
|
|
973
|
+
/** Visible height of the crop, as a fraction (0-1) of the original image height. */
|
|
974
|
+
height?: number | null;
|
|
975
|
+
}
|
|
964
976
|
interface LinkPreviewData {
|
|
965
977
|
/** Styling for the link preview's container. */
|
|
966
978
|
containerData?: PluginContainerData;
|
|
@@ -1271,6 +1283,8 @@ interface Decoration extends DecorationDataOneOf {
|
|
|
1271
1283
|
subscriptData?: boolean | null;
|
|
1272
1284
|
/** Data for a font family decoration. */
|
|
1273
1285
|
fontFamilyData?: FontFamilyData;
|
|
1286
|
+
/** Data for a hand-drawn sketch annotation decoration. */
|
|
1287
|
+
sketchData?: SketchData;
|
|
1274
1288
|
/** The type of decoration to apply. */
|
|
1275
1289
|
type?: DecorationTypeWithLiterals;
|
|
1276
1290
|
}
|
|
@@ -1302,6 +1316,8 @@ interface DecorationDataOneOf {
|
|
|
1302
1316
|
subscriptData?: boolean | null;
|
|
1303
1317
|
/** Data for a font family decoration. */
|
|
1304
1318
|
fontFamilyData?: FontFamilyData;
|
|
1319
|
+
/** Data for a hand-drawn sketch annotation decoration. */
|
|
1320
|
+
sketchData?: SketchData;
|
|
1305
1321
|
}
|
|
1306
1322
|
declare enum DecorationType {
|
|
1307
1323
|
BOLD = "BOLD",
|
|
@@ -1317,10 +1333,11 @@ declare enum DecorationType {
|
|
|
1317
1333
|
STRIKETHROUGH = "STRIKETHROUGH",
|
|
1318
1334
|
SUPERSCRIPT = "SUPERSCRIPT",
|
|
1319
1335
|
SUBSCRIPT = "SUBSCRIPT",
|
|
1320
|
-
FONT_FAMILY = "FONT_FAMILY"
|
|
1336
|
+
FONT_FAMILY = "FONT_FAMILY",
|
|
1337
|
+
SKETCH = "SKETCH"
|
|
1321
1338
|
}
|
|
1322
1339
|
/** @enumType */
|
|
1323
|
-
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY';
|
|
1340
|
+
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY' | 'SKETCH';
|
|
1324
1341
|
interface AnchorData {
|
|
1325
1342
|
/** The target node's ID. */
|
|
1326
1343
|
anchor?: string;
|
|
@@ -1363,6 +1380,27 @@ interface FontFamilyData {
|
|
|
1363
1380
|
/** @maxLength 1000 */
|
|
1364
1381
|
value?: string | null;
|
|
1365
1382
|
}
|
|
1383
|
+
interface SketchData {
|
|
1384
|
+
/** The sketch annotation variant to draw over the text. */
|
|
1385
|
+
variant?: VariantWithLiterals;
|
|
1386
|
+
/**
|
|
1387
|
+
* Annotation color. Defaults to the theme action color.
|
|
1388
|
+
* @maxLength 19
|
|
1389
|
+
*/
|
|
1390
|
+
color?: string | null;
|
|
1391
|
+
/** Whether the annotation animates on first paint. Defaults to `true`. */
|
|
1392
|
+
animate?: boolean | null;
|
|
1393
|
+
}
|
|
1394
|
+
declare enum Variant {
|
|
1395
|
+
UNDERLINE = "UNDERLINE",
|
|
1396
|
+
BOX = "BOX",
|
|
1397
|
+
CIRCLE = "CIRCLE",
|
|
1398
|
+
HIGHLIGHT = "HIGHLIGHT",
|
|
1399
|
+
STRIKETHROUGH = "STRIKETHROUGH",
|
|
1400
|
+
CROSSED_OFF = "CROSSED_OFF"
|
|
1401
|
+
}
|
|
1402
|
+
/** @enumType */
|
|
1403
|
+
type VariantWithLiterals = Variant | 'UNDERLINE' | 'BOX' | 'CIRCLE' | 'HIGHLIGHT' | 'STRIKETHROUGH' | 'CROSSED_OFF';
|
|
1366
1404
|
interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
1367
1405
|
/** Data for embedded Wix Bookings content. */
|
|
1368
1406
|
bookingData?: BookingData;
|
|
@@ -1972,6 +2010,27 @@ declare enum ImagePosition {
|
|
|
1972
2010
|
}
|
|
1973
2011
|
/** @enumType */
|
|
1974
2012
|
type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
2013
|
+
/** Background styling (color or gradient) */
|
|
2014
|
+
interface LayoutDataBackground {
|
|
2015
|
+
/** Background type. */
|
|
2016
|
+
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2017
|
+
/**
|
|
2018
|
+
* Background color as a hexadecimal value.
|
|
2019
|
+
* @maxLength 19
|
|
2020
|
+
*/
|
|
2021
|
+
color?: string | null;
|
|
2022
|
+
/** Gradient configuration. */
|
|
2023
|
+
gradient?: Gradient;
|
|
2024
|
+
}
|
|
2025
|
+
/** Background type */
|
|
2026
|
+
declare enum LayoutDataBackgroundType {
|
|
2027
|
+
/** Solid color background */
|
|
2028
|
+
COLOR = "COLOR",
|
|
2029
|
+
/** Gradient background */
|
|
2030
|
+
GRADIENT = "GRADIENT"
|
|
2031
|
+
}
|
|
2032
|
+
/** @enumType */
|
|
2033
|
+
type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
1975
2034
|
declare enum Origin {
|
|
1976
2035
|
/** Banner originated from an image */
|
|
1977
2036
|
IMAGE = "IMAGE",
|
|
@@ -1988,15 +2047,6 @@ declare enum BannerPosition {
|
|
|
1988
2047
|
}
|
|
1989
2048
|
/** @enumType */
|
|
1990
2049
|
type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
|
|
1991
|
-
/** Background type */
|
|
1992
|
-
declare enum LayoutDataBackgroundType {
|
|
1993
|
-
/** Solid color background */
|
|
1994
|
-
COLOR = "COLOR",
|
|
1995
|
-
/** Gradient background */
|
|
1996
|
-
GRADIENT = "GRADIENT"
|
|
1997
|
-
}
|
|
1998
|
-
/** @enumType */
|
|
1999
|
-
type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2000
2050
|
/** Backdrop type */
|
|
2001
2051
|
declare enum BackdropType {
|
|
2002
2052
|
/** Solid color backdrop */
|
|
@@ -2009,12 +2059,19 @@ type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
|
|
|
2009
2059
|
interface LayoutDataBackgroundImage {
|
|
2010
2060
|
/** Background image. */
|
|
2011
2061
|
media?: Media;
|
|
2012
|
-
/**
|
|
2062
|
+
/**
|
|
2063
|
+
* Deprecated: use `overlay` instead. Legacy image opacity (0–100) that dimmed the image to reveal the `background`/`backdrop` color behind it.
|
|
2064
|
+
* @deprecated
|
|
2065
|
+
*/
|
|
2013
2066
|
opacity?: number | null;
|
|
2014
2067
|
/** Background image scaling. */
|
|
2015
2068
|
scaling?: ImageScalingScalingWithLiterals;
|
|
2016
2069
|
/** Position of background. Defaults to `CENTER`. */
|
|
2017
2070
|
position?: ImagePositionWithLiterals;
|
|
2071
|
+
/** 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. */
|
|
2072
|
+
blur?: number | null;
|
|
2073
|
+
/** 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`). */
|
|
2074
|
+
overlay?: LayoutDataBackground;
|
|
2018
2075
|
}
|
|
2019
2076
|
declare enum VerticalAlignmentAlignment {
|
|
2020
2077
|
/** Top alignment */
|
|
@@ -2048,18 +2105,6 @@ interface Banner {
|
|
|
2048
2105
|
/** Position of the banner */
|
|
2049
2106
|
position?: BannerPositionWithLiterals;
|
|
2050
2107
|
}
|
|
2051
|
-
/** Background styling (color or gradient) */
|
|
2052
|
-
interface LayoutDataBackground {
|
|
2053
|
-
/** Background type. */
|
|
2054
|
-
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2055
|
-
/**
|
|
2056
|
-
* Background color as a hexadecimal value.
|
|
2057
|
-
* @maxLength 19
|
|
2058
|
-
*/
|
|
2059
|
-
color?: string | null;
|
|
2060
|
-
/** Gradient configuration. */
|
|
2061
|
-
gradient?: Gradient;
|
|
2062
|
-
}
|
|
2063
2108
|
/** Backdrop styling (color or gradient) */
|
|
2064
2109
|
interface Backdrop {
|
|
2065
2110
|
/** Backdrop type. */
|
|
@@ -2131,15 +2176,6 @@ declare enum ImagePositionPosition {
|
|
|
2131
2176
|
}
|
|
2132
2177
|
/** @enumType */
|
|
2133
2178
|
type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
2134
|
-
/** Background type */
|
|
2135
|
-
declare enum CardDataBackgroundType {
|
|
2136
|
-
/** Solid color background */
|
|
2137
|
-
COLOR = "COLOR",
|
|
2138
|
-
/** Gradient background */
|
|
2139
|
-
GRADIENT = "GRADIENT"
|
|
2140
|
-
}
|
|
2141
|
-
/** @enumType */
|
|
2142
|
-
type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2143
2179
|
/** Background styling (color or gradient) */
|
|
2144
2180
|
interface CardDataBackground {
|
|
2145
2181
|
/** Background type. */
|
|
@@ -2152,15 +2188,31 @@ interface CardDataBackground {
|
|
|
2152
2188
|
/** Gradient configuration. */
|
|
2153
2189
|
gradient?: Gradient;
|
|
2154
2190
|
}
|
|
2191
|
+
/** Background type */
|
|
2192
|
+
declare enum CardDataBackgroundType {
|
|
2193
|
+
/** Solid color background */
|
|
2194
|
+
COLOR = "COLOR",
|
|
2195
|
+
/** Gradient background */
|
|
2196
|
+
GRADIENT = "GRADIENT"
|
|
2197
|
+
}
|
|
2198
|
+
/** @enumType */
|
|
2199
|
+
type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2155
2200
|
interface BackgroundImage {
|
|
2156
2201
|
/** Background image. */
|
|
2157
2202
|
media?: Media;
|
|
2158
|
-
/**
|
|
2203
|
+
/**
|
|
2204
|
+
* Deprecated: use `overlay` instead. Legacy image opacity (0–100) that dimmed the image to reveal the `background` color behind it.
|
|
2205
|
+
* @deprecated
|
|
2206
|
+
*/
|
|
2159
2207
|
opacity?: number | null;
|
|
2160
2208
|
/** Background image scaling. */
|
|
2161
2209
|
scaling?: ScalingWithLiterals;
|
|
2162
2210
|
/** Position of background. Defaults to `CENTER`. */
|
|
2163
2211
|
position?: ImagePositionPositionWithLiterals;
|
|
2212
|
+
/** 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`). */
|
|
2213
|
+
overlay?: CardDataBackground;
|
|
2214
|
+
/** 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. */
|
|
2215
|
+
blur?: number | null;
|
|
2164
2216
|
}
|
|
2165
2217
|
interface TocData {
|
|
2166
2218
|
/** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
|
|
@@ -2786,4 +2838,4 @@ type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q
|
|
|
2786
2838
|
declare function machineTranslate(): __PublicMethodMetaInfo<'POST', {}, MachineTranslateRequest$1, MachineTranslateRequest, MachineTranslateResponse$1, MachineTranslateResponse>;
|
|
2787
2839
|
declare function bulkMachineTranslate(): __PublicMethodMetaInfo<'POST', {}, BulkMachineTranslateRequest$1, BulkMachineTranslateRequest, BulkMachineTranslateResponse$1, BulkMachineTranslateResponse>;
|
|
2788
2840
|
|
|
2789
|
-
export { Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, type ApplicationError as ApplicationErrorOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, type Backdrop as BackdropOriginal, BackdropType as BackdropTypeOriginal, type BackdropTypeWithLiterals as BackdropTypeWithLiteralsOriginal, type BackgroundGradient as BackgroundGradientOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type Banner as BannerOriginal, BannerPosition as BannerPositionOriginal, type BannerPositionWithLiterals as BannerPositionWithLiteralsOriginal, type BlockquoteData as BlockquoteDataOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkMachineTranslateApplicationErrors as BulkMachineTranslateApplicationErrorsOriginal, type BulkMachineTranslateRequest as BulkMachineTranslateRequestOriginal, type BulkMachineTranslateResponse as BulkMachineTranslateResponseOriginal, type BulkTranslateResult as BulkTranslateResultOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardDataBackground as CardDataBackgroundOriginal, CardDataBackgroundType as CardDataBackgroundTypeOriginal, type CardDataBackgroundTypeWithLiterals as CardDataBackgroundTypeWithLiteralsOriginal, type CardData as CardDataOriginal, type CardStyles as CardStylesOriginal, type CellStyle as CellStyleOriginal, type CheckboxListData as CheckboxListDataOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, ColumnSize as ColumnSizeOriginal, type ColumnSizeWithLiterals as ColumnSizeWithLiteralsOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type Design as DesignOriginal, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DocumentStyle as DocumentStyleOriginal, type EmbedData as EmbedDataOriginal, type EventData as EventDataOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FontFamilyData as FontFamilyDataOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, Format as FormatOriginal, type FormatWithLiterals as FormatWithLiteralsOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type Gradient as GradientOriginal, GradientType as GradientTypeOriginal, type GradientTypeWithLiterals as GradientTypeWithLiteralsOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, ImagePositionPosition as ImagePositionPositionOriginal, type ImagePositionPositionWithLiterals as ImagePositionPositionWithLiteralsOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, ImageScalingScaling as ImageScalingScalingOriginal, type ImageScalingScalingWithLiterals as ImageScalingScalingWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, Indentation as IndentationOriginal, type IndentationWithLiterals as IndentationWithLiteralsOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemMetadata as ItemMetadataOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type LayoutCellData as LayoutCellDataOriginal, type LayoutDataBackgroundImage as LayoutDataBackgroundImageOriginal, type LayoutDataBackground as LayoutDataBackgroundOriginal, LayoutDataBackgroundType as LayoutDataBackgroundTypeOriginal, type LayoutDataBackgroundTypeWithLiterals as LayoutDataBackgroundTypeWithLiteralsOriginal, type LayoutData as LayoutDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, type ListItemNodeData as ListItemNodeDataOriginal, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, type ListValue as ListValueOriginal, type MachineTranslateApplicationErrors as MachineTranslateApplicationErrorsOriginal, type MachineTranslateRequest as MachineTranslateRequestOriginal, type MachineTranslateResponse as MachineTranslateResponseOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type Metadata as MetadataOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, type NotEnoughCreditsError as NotEnoughCreditsErrorOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, Origin as OriginOriginal, type OriginWithLiterals as OriginWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type ParagraphData as ParagraphDataOriginal, type Permissions as PermissionsOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesignBackgroundBackgroundOneOf as PollDesignBackgroundBackgroundOneOfOriginal, type PollDesignBackground as PollDesignBackgroundOriginal, PollDesignBackgroundType as PollDesignBackgroundTypeOriginal, type PollDesignBackgroundTypeWithLiterals as PollDesignBackgroundTypeWithLiteralsOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PricingData as PricingDataOriginal, type Rel as RelOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, type SameLanguageArgumentsError as SameLanguageArgumentsErrorOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, type SmartBlockCellData as SmartBlockCellDataOriginal, type SmartBlockData as SmartBlockDataOriginal, SmartBlockDataType as SmartBlockDataTypeOriginal, type SmartBlockDataTypeWithLiterals as SmartBlockDataTypeWithLiteralsOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, type Stop as StopOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, SupportedLanguage as SupportedLanguageOriginal, type SupportedLanguageWithLiterals as SupportedLanguageWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, type TextTooLongError as TextTooLongErrorOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, type TocData as TocDataOriginal, type TranslatableContentContentOneOf as TranslatableContentContentOneOfOriginal, type TranslatableContent as TranslatableContentOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnknownFormatError as UnknownFormatErrorOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type __PublicMethodMetaInfo, bulkMachineTranslate, machineTranslate };
|
|
2841
|
+
export { Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, type ApplicationError as ApplicationErrorOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, type Backdrop as BackdropOriginal, BackdropType as BackdropTypeOriginal, type BackdropTypeWithLiterals as BackdropTypeWithLiteralsOriginal, type BackgroundGradient as BackgroundGradientOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type Banner as BannerOriginal, BannerPosition as BannerPositionOriginal, type BannerPositionWithLiterals as BannerPositionWithLiteralsOriginal, type BlockquoteData as BlockquoteDataOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkMachineTranslateApplicationErrors as BulkMachineTranslateApplicationErrorsOriginal, type BulkMachineTranslateRequest as BulkMachineTranslateRequestOriginal, type BulkMachineTranslateResponse as BulkMachineTranslateResponseOriginal, type BulkTranslateResult as BulkTranslateResultOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardDataBackground as CardDataBackgroundOriginal, CardDataBackgroundType as CardDataBackgroundTypeOriginal, type CardDataBackgroundTypeWithLiterals as CardDataBackgroundTypeWithLiteralsOriginal, type CardData as CardDataOriginal, type CardStyles as CardStylesOriginal, type CellStyle as CellStyleOriginal, type CheckboxListData as CheckboxListDataOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, ColumnSize as ColumnSizeOriginal, type ColumnSizeWithLiterals as ColumnSizeWithLiteralsOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type Design as DesignOriginal, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DocumentStyle as DocumentStyleOriginal, type EmbedData as EmbedDataOriginal, type EventData as EventDataOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FontFamilyData as FontFamilyDataOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, Format as FormatOriginal, type FormatWithLiterals as FormatWithLiteralsOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type Gradient as GradientOriginal, GradientType as GradientTypeOriginal, type GradientTypeWithLiterals as GradientTypeWithLiteralsOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type ImageDataCrop as ImageDataCropOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, ImagePositionPosition as ImagePositionPositionOriginal, type ImagePositionPositionWithLiterals as ImagePositionPositionWithLiteralsOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, ImageScalingScaling as ImageScalingScalingOriginal, type ImageScalingScalingWithLiterals as ImageScalingScalingWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, Indentation as IndentationOriginal, type IndentationWithLiterals as IndentationWithLiteralsOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemMetadata as ItemMetadataOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type LayoutCellData as LayoutCellDataOriginal, type LayoutDataBackgroundImage as LayoutDataBackgroundImageOriginal, type LayoutDataBackground as LayoutDataBackgroundOriginal, LayoutDataBackgroundType as LayoutDataBackgroundTypeOriginal, type LayoutDataBackgroundTypeWithLiterals as LayoutDataBackgroundTypeWithLiteralsOriginal, type LayoutData as LayoutDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, type ListItemNodeData as ListItemNodeDataOriginal, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, type ListValue as ListValueOriginal, type MachineTranslateApplicationErrors as MachineTranslateApplicationErrorsOriginal, type MachineTranslateRequest as MachineTranslateRequestOriginal, type MachineTranslateResponse as MachineTranslateResponseOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type Metadata as MetadataOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, type NotEnoughCreditsError as NotEnoughCreditsErrorOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, Origin as OriginOriginal, type OriginWithLiterals as OriginWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type ParagraphData as ParagraphDataOriginal, type Permissions as PermissionsOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesignBackgroundBackgroundOneOf as PollDesignBackgroundBackgroundOneOfOriginal, type PollDesignBackground as PollDesignBackgroundOriginal, PollDesignBackgroundType as PollDesignBackgroundTypeOriginal, type PollDesignBackgroundTypeWithLiterals as PollDesignBackgroundTypeWithLiteralsOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PricingData as PricingDataOriginal, type Rel as RelOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, type SameLanguageArgumentsError as SameLanguageArgumentsErrorOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, type SketchData as SketchDataOriginal, type SmartBlockCellData as SmartBlockCellDataOriginal, type SmartBlockData as SmartBlockDataOriginal, SmartBlockDataType as SmartBlockDataTypeOriginal, type SmartBlockDataTypeWithLiterals as SmartBlockDataTypeWithLiteralsOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, type Stop as StopOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, SupportedLanguage as SupportedLanguageOriginal, type SupportedLanguageWithLiterals as SupportedLanguageWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, type TextTooLongError as TextTooLongErrorOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, type TocData as TocDataOriginal, type TranslatableContentContentOneOf as TranslatableContentContentOneOfOriginal, type TranslatableContent as TranslatableContentOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnknownFormatError as UnknownFormatErrorOriginal, Variant as VariantOriginal, type VariantWithLiterals as VariantWithLiteralsOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type __PublicMethodMetaInfo, bulkMachineTranslate, machineTranslate };
|
|
@@ -98,6 +98,12 @@ function machineTranslate(payload) {
|
|
|
98
98
|
{
|
|
99
99
|
path: "contentToTranslate.richContent.nodes.imageData.image.duration"
|
|
100
100
|
},
|
|
101
|
+
{ path: "contentToTranslate.richContent.nodes.imageData.crop.x" },
|
|
102
|
+
{ path: "contentToTranslate.richContent.nodes.imageData.crop.y" },
|
|
103
|
+
{ path: "contentToTranslate.richContent.nodes.imageData.crop.width" },
|
|
104
|
+
{
|
|
105
|
+
path: "contentToTranslate.richContent.nodes.imageData.crop.height"
|
|
106
|
+
},
|
|
101
107
|
{
|
|
102
108
|
path: "contentToTranslate.richContent.nodes.mapData.mapSettings.lat"
|
|
103
109
|
},
|
|
@@ -131,9 +137,27 @@ function machineTranslate(payload) {
|
|
|
131
137
|
{
|
|
132
138
|
path: "contentToTranslate.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
133
139
|
},
|
|
140
|
+
{
|
|
141
|
+
path: "contentToTranslate.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
path: "contentToTranslate.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
path: "contentToTranslate.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
148
|
+
},
|
|
134
149
|
{
|
|
135
150
|
path: "contentToTranslate.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
136
151
|
},
|
|
152
|
+
{
|
|
153
|
+
path: "contentToTranslate.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
path: "contentToTranslate.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
path: "contentToTranslate.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
160
|
+
},
|
|
137
161
|
{
|
|
138
162
|
path: "contentToTranslate.richContent.nodes.layoutData.background.gradient.centerX"
|
|
139
163
|
},
|
|
@@ -167,6 +191,15 @@ function machineTranslate(payload) {
|
|
|
167
191
|
{
|
|
168
192
|
path: "contentToTranslate.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
169
193
|
},
|
|
194
|
+
{
|
|
195
|
+
path: "contentToTranslate.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
path: "contentToTranslate.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
path: "contentToTranslate.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
202
|
+
},
|
|
170
203
|
{ path: "contentToTranslate.richContent.nodes.tocData.fontSize" },
|
|
171
204
|
{ path: "contentToTranslate.richContent.nodes.tocData.itemSpacing" },
|
|
172
205
|
{
|
|
@@ -233,6 +266,14 @@ function machineTranslate(payload) {
|
|
|
233
266
|
{
|
|
234
267
|
path: "translatedContent.richContent.nodes.imageData.image.duration"
|
|
235
268
|
},
|
|
269
|
+
{ path: "translatedContent.richContent.nodes.imageData.crop.x" },
|
|
270
|
+
{ path: "translatedContent.richContent.nodes.imageData.crop.y" },
|
|
271
|
+
{
|
|
272
|
+
path: "translatedContent.richContent.nodes.imageData.crop.width"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
path: "translatedContent.richContent.nodes.imageData.crop.height"
|
|
276
|
+
},
|
|
236
277
|
{
|
|
237
278
|
path: "translatedContent.richContent.nodes.mapData.mapSettings.lat"
|
|
238
279
|
},
|
|
@@ -266,9 +307,27 @@ function machineTranslate(payload) {
|
|
|
266
307
|
{
|
|
267
308
|
path: "translatedContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
268
309
|
},
|
|
310
|
+
{
|
|
311
|
+
path: "translatedContent.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
path: "translatedContent.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
path: "translatedContent.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
318
|
+
},
|
|
269
319
|
{
|
|
270
320
|
path: "translatedContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
271
321
|
},
|
|
322
|
+
{
|
|
323
|
+
path: "translatedContent.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
path: "translatedContent.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
path: "translatedContent.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
330
|
+
},
|
|
272
331
|
{
|
|
273
332
|
path: "translatedContent.richContent.nodes.layoutData.background.gradient.centerX"
|
|
274
333
|
},
|
|
@@ -302,6 +361,15 @@ function machineTranslate(payload) {
|
|
|
302
361
|
{
|
|
303
362
|
path: "translatedContent.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
304
363
|
},
|
|
364
|
+
{
|
|
365
|
+
path: "translatedContent.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
path: "translatedContent.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
path: "translatedContent.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
372
|
+
},
|
|
305
373
|
{ path: "translatedContent.richContent.nodes.tocData.fontSize" },
|
|
306
374
|
{
|
|
307
375
|
path: "translatedContent.richContent.nodes.tocData.itemSpacing"
|
|
@@ -367,6 +435,12 @@ function bulkMachineTranslate(payload) {
|
|
|
367
435
|
{
|
|
368
436
|
path: "contentToTranslate.richContent.nodes.imageData.image.duration"
|
|
369
437
|
},
|
|
438
|
+
{ path: "contentToTranslate.richContent.nodes.imageData.crop.x" },
|
|
439
|
+
{ path: "contentToTranslate.richContent.nodes.imageData.crop.y" },
|
|
440
|
+
{ path: "contentToTranslate.richContent.nodes.imageData.crop.width" },
|
|
441
|
+
{
|
|
442
|
+
path: "contentToTranslate.richContent.nodes.imageData.crop.height"
|
|
443
|
+
},
|
|
370
444
|
{
|
|
371
445
|
path: "contentToTranslate.richContent.nodes.mapData.mapSettings.lat"
|
|
372
446
|
},
|
|
@@ -400,9 +474,27 @@ function bulkMachineTranslate(payload) {
|
|
|
400
474
|
{
|
|
401
475
|
path: "contentToTranslate.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
402
476
|
},
|
|
477
|
+
{
|
|
478
|
+
path: "contentToTranslate.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
path: "contentToTranslate.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
path: "contentToTranslate.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
485
|
+
},
|
|
403
486
|
{
|
|
404
487
|
path: "contentToTranslate.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
405
488
|
},
|
|
489
|
+
{
|
|
490
|
+
path: "contentToTranslate.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
path: "contentToTranslate.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
path: "contentToTranslate.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
497
|
+
},
|
|
406
498
|
{
|
|
407
499
|
path: "contentToTranslate.richContent.nodes.layoutData.background.gradient.centerX"
|
|
408
500
|
},
|
|
@@ -436,6 +528,15 @@ function bulkMachineTranslate(payload) {
|
|
|
436
528
|
{
|
|
437
529
|
path: "contentToTranslate.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
438
530
|
},
|
|
531
|
+
{
|
|
532
|
+
path: "contentToTranslate.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
path: "contentToTranslate.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
path: "contentToTranslate.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
539
|
+
},
|
|
439
540
|
{ path: "contentToTranslate.richContent.nodes.tocData.fontSize" },
|
|
440
541
|
{ path: "contentToTranslate.richContent.nodes.tocData.itemSpacing" },
|
|
441
542
|
{
|
|
@@ -502,6 +603,10 @@ function bulkMachineTranslate(payload) {
|
|
|
502
603
|
{
|
|
503
604
|
path: "results.item.richContent.nodes.imageData.image.duration"
|
|
504
605
|
},
|
|
606
|
+
{ path: "results.item.richContent.nodes.imageData.crop.x" },
|
|
607
|
+
{ path: "results.item.richContent.nodes.imageData.crop.y" },
|
|
608
|
+
{ path: "results.item.richContent.nodes.imageData.crop.width" },
|
|
609
|
+
{ path: "results.item.richContent.nodes.imageData.crop.height" },
|
|
505
610
|
{
|
|
506
611
|
path: "results.item.richContent.nodes.mapData.mapSettings.lat"
|
|
507
612
|
},
|
|
@@ -535,9 +640,27 @@ function bulkMachineTranslate(payload) {
|
|
|
535
640
|
{
|
|
536
641
|
path: "results.item.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
537
642
|
},
|
|
643
|
+
{
|
|
644
|
+
path: "results.item.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
path: "results.item.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
path: "results.item.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
651
|
+
},
|
|
538
652
|
{
|
|
539
653
|
path: "results.item.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
540
654
|
},
|
|
655
|
+
{
|
|
656
|
+
path: "results.item.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
path: "results.item.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
path: "results.item.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
663
|
+
},
|
|
541
664
|
{
|
|
542
665
|
path: "results.item.richContent.nodes.layoutData.background.gradient.centerX"
|
|
543
666
|
},
|
|
@@ -571,6 +694,15 @@ function bulkMachineTranslate(payload) {
|
|
|
571
694
|
{
|
|
572
695
|
path: "results.item.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
573
696
|
},
|
|
697
|
+
{
|
|
698
|
+
path: "results.item.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
path: "results.item.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
path: "results.item.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
705
|
+
},
|
|
574
706
|
{ path: "results.item.richContent.nodes.tocData.fontSize" },
|
|
575
707
|
{ path: "results.item.richContent.nodes.tocData.itemSpacing" },
|
|
576
708
|
{
|
|
@@ -808,6 +940,7 @@ var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
|
|
|
808
940
|
DecorationType2["SUPERSCRIPT"] = "SUPERSCRIPT";
|
|
809
941
|
DecorationType2["SUBSCRIPT"] = "SUBSCRIPT";
|
|
810
942
|
DecorationType2["FONT_FAMILY"] = "FONT_FAMILY";
|
|
943
|
+
DecorationType2["SKETCH"] = "SKETCH";
|
|
811
944
|
return DecorationType2;
|
|
812
945
|
})(DecorationType || {});
|
|
813
946
|
var FontType = /* @__PURE__ */ ((FontType2) => {
|
|
@@ -815,6 +948,15 @@ var FontType = /* @__PURE__ */ ((FontType2) => {
|
|
|
815
948
|
FontType2["EM"] = "EM";
|
|
816
949
|
return FontType2;
|
|
817
950
|
})(FontType || {});
|
|
951
|
+
var Variant = /* @__PURE__ */ ((Variant2) => {
|
|
952
|
+
Variant2["UNDERLINE"] = "UNDERLINE";
|
|
953
|
+
Variant2["BOX"] = "BOX";
|
|
954
|
+
Variant2["CIRCLE"] = "CIRCLE";
|
|
955
|
+
Variant2["HIGHLIGHT"] = "HIGHLIGHT";
|
|
956
|
+
Variant2["STRIKETHROUGH"] = "STRIKETHROUGH";
|
|
957
|
+
Variant2["CROSSED_OFF"] = "CROSSED_OFF";
|
|
958
|
+
return Variant2;
|
|
959
|
+
})(Variant || {});
|
|
818
960
|
var Position = /* @__PURE__ */ ((Position2) => {
|
|
819
961
|
Position2["START"] = "START";
|
|
820
962
|
Position2["END"] = "END";
|
|
@@ -897,6 +1039,11 @@ var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
|
897
1039
|
ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
898
1040
|
return ImagePosition2;
|
|
899
1041
|
})(ImagePosition || {});
|
|
1042
|
+
var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
|
|
1043
|
+
LayoutDataBackgroundType2["COLOR"] = "COLOR";
|
|
1044
|
+
LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
1045
|
+
return LayoutDataBackgroundType2;
|
|
1046
|
+
})(LayoutDataBackgroundType || {});
|
|
900
1047
|
var Origin = /* @__PURE__ */ ((Origin2) => {
|
|
901
1048
|
Origin2["IMAGE"] = "IMAGE";
|
|
902
1049
|
Origin2["LAYOUT"] = "LAYOUT";
|
|
@@ -907,11 +1054,6 @@ var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
|
|
|
907
1054
|
BannerPosition2["BOTTOM"] = "BOTTOM";
|
|
908
1055
|
return BannerPosition2;
|
|
909
1056
|
})(BannerPosition || {});
|
|
910
|
-
var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
|
|
911
|
-
LayoutDataBackgroundType2["COLOR"] = "COLOR";
|
|
912
|
-
LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
913
|
-
return LayoutDataBackgroundType2;
|
|
914
|
-
})(LayoutDataBackgroundType || {});
|
|
915
1057
|
var BackdropType = /* @__PURE__ */ ((BackdropType2) => {
|
|
916
1058
|
BackdropType2["COLOR"] = "COLOR";
|
|
917
1059
|
BackdropType2["GRADIENT"] = "GRADIENT";
|
|
@@ -1235,6 +1377,7 @@ export {
|
|
|
1235
1377
|
TextAlignment as TextAlignmentOriginal,
|
|
1236
1378
|
ThumbnailsAlignment as ThumbnailsAlignmentOriginal,
|
|
1237
1379
|
Type as TypeOriginal,
|
|
1380
|
+
Variant as VariantOriginal,
|
|
1238
1381
|
VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal,
|
|
1239
1382
|
VerticalAlignment as VerticalAlignmentOriginal,
|
|
1240
1383
|
ViewMode as ViewModeOriginal,
|