@wix/auto_sdk_multilingual_machine-translation 1.0.53 → 1.0.55
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 +41 -5
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +167 -4
- package/build/cjs/index.typings.js +41 -5
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +167 -4
- package/build/cjs/meta.js +41 -5
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +38 -5
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +167 -4
- package/build/es/index.typings.mjs +38 -5
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +167 -4
- package/build/es/meta.mjs +38 -5
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +41 -5
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +167 -4
- package/build/internal/cjs/index.typings.js +41 -5
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +167 -4
- package/build/internal/cjs/meta.js +41 -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 +38 -5
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +167 -4
- package/build/internal/es/index.typings.mjs +38 -5
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +167 -4
- package/build/internal/es/meta.mjs +38 -5
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -280,6 +280,8 @@ interface ButtonData {
|
|
|
280
280
|
text?: string | null;
|
|
281
281
|
/** Button link details. */
|
|
282
282
|
link?: Link;
|
|
283
|
+
/** Node animation. */
|
|
284
|
+
animation?: Animation;
|
|
283
285
|
}
|
|
284
286
|
/** Background type */
|
|
285
287
|
declare enum BackgroundType {
|
|
@@ -556,9 +558,90 @@ interface Rel {
|
|
|
556
558
|
/** Indicates that this link protect referral information from being passed to the target website. */
|
|
557
559
|
noreferrer?: boolean | null;
|
|
558
560
|
}
|
|
561
|
+
interface Animation {
|
|
562
|
+
/** Animation kind. */
|
|
563
|
+
type?: TypeWithLiterals;
|
|
564
|
+
/** Entrance animation, played once when the node first enters the viewport. */
|
|
565
|
+
entrance?: EntranceAnimation;
|
|
566
|
+
}
|
|
567
|
+
declare enum Type {
|
|
568
|
+
/** Animations that play while the node is in view. */
|
|
569
|
+
VIEW = "VIEW"
|
|
570
|
+
}
|
|
571
|
+
/** @enumType */
|
|
572
|
+
type TypeWithLiterals = Type | 'VIEW';
|
|
573
|
+
interface EntranceAnimation {
|
|
574
|
+
/** The entrance effect to play. */
|
|
575
|
+
effect?: EntranceEffect;
|
|
576
|
+
/** Effect duration in milliseconds. Each effect has its own default. */
|
|
577
|
+
duration?: number | null;
|
|
578
|
+
/** Delay before the effect starts, in milliseconds. */
|
|
579
|
+
delay?: number | null;
|
|
580
|
+
}
|
|
581
|
+
interface EntranceEffect {
|
|
582
|
+
/** The entrance effect type. */
|
|
583
|
+
type?: EntranceEffectTypeWithLiterals;
|
|
584
|
+
/**
|
|
585
|
+
* Direction the effect enters from. Allowed values depend on the effect type (e.g. TOP/RIGHT/BOTTOM/LEFT, the diagonals with or without CENTER, corners, HORIZONTAL/VERTICAL, CLOCKWISE/COUNTER_CLOCKWISE).
|
|
586
|
+
* @maxLength 20
|
|
587
|
+
*/
|
|
588
|
+
direction?: string | null;
|
|
589
|
+
/**
|
|
590
|
+
* Clip-path shape: ELLIPSE, CIRCLE, RECTANGLE, or DIAMOND (SHAPE).
|
|
591
|
+
* @maxLength 12
|
|
592
|
+
*/
|
|
593
|
+
shape?: string | null;
|
|
594
|
+
/**
|
|
595
|
+
* Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
|
|
596
|
+
* @maxLength 100
|
|
597
|
+
*/
|
|
598
|
+
easing?: string | null;
|
|
599
|
+
}
|
|
600
|
+
declare enum EntranceEffectType {
|
|
601
|
+
/** Fades in from fully transparent to fully opaque. */
|
|
602
|
+
FADE = "FADE",
|
|
603
|
+
/** Enters along a 3D arc path. */
|
|
604
|
+
ARC = "ARC",
|
|
605
|
+
/** Transitions from blurred to sharp. */
|
|
606
|
+
BLUR = "BLUR",
|
|
607
|
+
/** Bounces into place with an elastic curve. */
|
|
608
|
+
BOUNCE = "BOUNCE",
|
|
609
|
+
/** Shrinks down from a larger size. */
|
|
610
|
+
DROP = "DROP",
|
|
611
|
+
/** Expands from a point, scaling to full size. */
|
|
612
|
+
EXPAND = "EXPAND",
|
|
613
|
+
/** Flips into view with a 3D rotation. */
|
|
614
|
+
FLIP = "FLIP",
|
|
615
|
+
/** Drifts gently into place. */
|
|
616
|
+
FLOAT = "FLOAT",
|
|
617
|
+
/** Unfolds from an edge as if hinged. */
|
|
618
|
+
FOLD = "FOLD",
|
|
619
|
+
/** Glides in smoothly from off-screen. */
|
|
620
|
+
GLIDE = "GLIDE",
|
|
621
|
+
/** Progressively revealed by an expanding clip-path. */
|
|
622
|
+
REVEAL = "REVEAL",
|
|
623
|
+
/** Appears through an expanding geometric clip-path shape. */
|
|
624
|
+
SHAPE = "SHAPE",
|
|
625
|
+
/** Revealed through shutter-like strips. */
|
|
626
|
+
SHUTTERS = "SHUTTERS",
|
|
627
|
+
/** Slides in from one side. */
|
|
628
|
+
SLIDE = "SLIDE",
|
|
629
|
+
/** Spins into view while scaling up. */
|
|
630
|
+
SPIN = "SPIN",
|
|
631
|
+
/** Tilts in from the side with 3D rotation. */
|
|
632
|
+
TILT = "TILT",
|
|
633
|
+
/** Rotates into view around a corner pivot. */
|
|
634
|
+
TURN = "TURN",
|
|
635
|
+
/** Expands from its horizontal or vertical center. */
|
|
636
|
+
WINK = "WINK"
|
|
637
|
+
}
|
|
638
|
+
/** @enumType */
|
|
639
|
+
type EntranceEffectTypeWithLiterals = EntranceEffectType | 'FADE' | 'ARC' | 'BLUR' | 'BOUNCE' | 'DROP' | 'EXPAND' | 'FLIP' | 'FLOAT' | 'FOLD' | 'GLIDE' | 'REVEAL' | 'SHAPE' | 'SHUTTERS' | 'SLIDE' | 'SPIN' | 'TILT' | 'TURN' | 'WINK';
|
|
559
640
|
interface CodeBlockData {
|
|
560
641
|
/** Styling for the code block's text. */
|
|
561
642
|
textStyle?: TextStyle;
|
|
643
|
+
/** Node animation. */
|
|
644
|
+
animation?: Animation;
|
|
562
645
|
}
|
|
563
646
|
interface TextStyle {
|
|
564
647
|
/** Text alignment. Defaults to `AUTO`. */
|
|
@@ -589,7 +672,19 @@ interface DividerData {
|
|
|
589
672
|
width?: WidthWithLiterals;
|
|
590
673
|
/** Divider alignment. */
|
|
591
674
|
alignment?: DividerDataAlignmentWithLiterals;
|
|
675
|
+
/** Visual styling for the divider lines. */
|
|
676
|
+
styles?: DividerDataStyles;
|
|
677
|
+
/** Node animation. */
|
|
678
|
+
animation?: Animation;
|
|
679
|
+
}
|
|
680
|
+
declare enum LineCap {
|
|
681
|
+
/** Square line endings. */
|
|
682
|
+
SQUARE = "SQUARE",
|
|
683
|
+
/** Rounded line endings. */
|
|
684
|
+
ROUND = "ROUND"
|
|
592
685
|
}
|
|
686
|
+
/** @enumType */
|
|
687
|
+
type LineCapWithLiterals = LineCap | 'SQUARE' | 'ROUND';
|
|
593
688
|
declare enum LineStyle {
|
|
594
689
|
/** Single Line */
|
|
595
690
|
SINGLE = "SINGLE",
|
|
@@ -622,6 +717,26 @@ declare enum DividerDataAlignment {
|
|
|
622
717
|
}
|
|
623
718
|
/** @enumType */
|
|
624
719
|
type DividerDataAlignmentWithLiterals = DividerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
|
|
720
|
+
interface DividerDataStyles {
|
|
721
|
+
/**
|
|
722
|
+
* Divider color as a hexadecimal value. An alpha channel controls opacity.
|
|
723
|
+
* @maxLength 19
|
|
724
|
+
*/
|
|
725
|
+
color?: string | null;
|
|
726
|
+
/** Divider line ending shape. */
|
|
727
|
+
lineCap?: LineCapWithLiterals;
|
|
728
|
+
/**
|
|
729
|
+
* Line thicknesses in pixels, ordered from first line to last line.
|
|
730
|
+
* @maxSize 10
|
|
731
|
+
*/
|
|
732
|
+
lineThickness?: number[];
|
|
733
|
+
/** Visible dash length for dashed dividers, in pixels. The pattern is snapped to a whole number of dashes so that the first and last dash touch the divider's edges - narrower containers show fewer dashes at the same size. */
|
|
734
|
+
dashLength?: number | null;
|
|
735
|
+
/** Visible gap between dashes or dots, in pixels. */
|
|
736
|
+
dashGap?: number | null;
|
|
737
|
+
/** Gap between divider lines in pixels. */
|
|
738
|
+
lineGap?: number | null;
|
|
739
|
+
}
|
|
625
740
|
interface FileData {
|
|
626
741
|
/** Styling for the file's container. */
|
|
627
742
|
containerData?: PluginContainerData;
|
|
@@ -644,6 +759,8 @@ interface FileData {
|
|
|
644
759
|
path?: string | null;
|
|
645
760
|
/** File size in KB. */
|
|
646
761
|
sizeInKb?: string | null;
|
|
762
|
+
/** Node animation. */
|
|
763
|
+
animation?: Animation;
|
|
647
764
|
}
|
|
648
765
|
declare enum ViewMode {
|
|
649
766
|
/** No PDF view */
|
|
@@ -704,6 +821,8 @@ interface GalleryData {
|
|
|
704
821
|
disableExpand?: boolean | null;
|
|
705
822
|
/** Sets whether the gallery's download button is disabled. Defaults to `false`. */
|
|
706
823
|
disableDownload?: boolean | null;
|
|
824
|
+
/** Node animation. */
|
|
825
|
+
animation?: Animation;
|
|
707
826
|
}
|
|
708
827
|
interface Media {
|
|
709
828
|
/** The source for the media's data. */
|
|
@@ -847,6 +966,8 @@ interface GIFData {
|
|
|
847
966
|
width?: number;
|
|
848
967
|
/** Type of GIF (Sticker or NORMAL). Defaults to `NORMAL`. */
|
|
849
968
|
gifType?: GIFTypeWithLiterals;
|
|
969
|
+
/** Node animation. */
|
|
970
|
+
animation?: Animation;
|
|
850
971
|
}
|
|
851
972
|
interface GIF {
|
|
852
973
|
/**
|
|
@@ -880,6 +1001,8 @@ interface HeadingData {
|
|
|
880
1001
|
indentation?: number | null;
|
|
881
1002
|
/** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
|
|
882
1003
|
renderedLevel?: number | null;
|
|
1004
|
+
/** Node animation. */
|
|
1005
|
+
animation?: Animation;
|
|
883
1006
|
}
|
|
884
1007
|
interface HTMLData extends HTMLDataDataOneOf {
|
|
885
1008
|
/** The URL for the HTML code for the node. */
|
|
@@ -899,6 +1022,8 @@ interface HTMLData extends HTMLDataDataOneOf {
|
|
|
899
1022
|
source?: SourceWithLiterals;
|
|
900
1023
|
/** If container height is aligned with its content height. Defaults to `true`. */
|
|
901
1024
|
autoHeight?: boolean | null;
|
|
1025
|
+
/** Node animation. */
|
|
1026
|
+
animation?: Animation;
|
|
902
1027
|
}
|
|
903
1028
|
/** @oneof */
|
|
904
1029
|
interface HTMLDataDataOneOf {
|
|
@@ -948,6 +1073,8 @@ interface ImageData {
|
|
|
948
1073
|
crop?: ImageDataCrop;
|
|
949
1074
|
/** Optional shape mask applied to the visible crop. Supported values: CIRCLE, OVAL, STAR, PENTAGON, HEXAGON, TRIANGLE, HEART, RHOMBUS, FLUID, WINDOW. */
|
|
950
1075
|
cropShape?: string | null;
|
|
1076
|
+
/** Node animation. */
|
|
1077
|
+
animation?: Animation;
|
|
951
1078
|
}
|
|
952
1079
|
interface StylesBorder {
|
|
953
1080
|
/** Border width in pixels. */
|
|
@@ -989,6 +1116,8 @@ interface LinkPreviewData {
|
|
|
989
1116
|
html?: string | null;
|
|
990
1117
|
/** Styling for the link preview. */
|
|
991
1118
|
styles?: LinkPreviewDataStyles;
|
|
1119
|
+
/** Node animation. */
|
|
1120
|
+
animation?: Animation;
|
|
992
1121
|
}
|
|
993
1122
|
declare enum StylesPosition {
|
|
994
1123
|
/** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
|
|
@@ -1084,6 +1213,8 @@ interface ParagraphData {
|
|
|
1084
1213
|
indentation?: number | null;
|
|
1085
1214
|
/** Paragraph level */
|
|
1086
1215
|
level?: number | null;
|
|
1216
|
+
/** Node animation. */
|
|
1217
|
+
animation?: Animation;
|
|
1087
1218
|
}
|
|
1088
1219
|
interface PollData {
|
|
1089
1220
|
/** Styling for the poll's container. */
|
|
@@ -1094,6 +1225,8 @@ interface PollData {
|
|
|
1094
1225
|
layout?: PollDataLayout;
|
|
1095
1226
|
/** Styling for the poll and voting options. */
|
|
1096
1227
|
design?: Design;
|
|
1228
|
+
/** Node animation. */
|
|
1229
|
+
animation?: Animation;
|
|
1097
1230
|
}
|
|
1098
1231
|
declare enum ViewRole {
|
|
1099
1232
|
/** Only Poll creator can view the results */
|
|
@@ -1452,6 +1585,8 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
|
1452
1585
|
containerData?: PluginContainerData;
|
|
1453
1586
|
/** Pricing data for embedded Wix App content. */
|
|
1454
1587
|
pricingData?: PricingData;
|
|
1588
|
+
/** Node animation. */
|
|
1589
|
+
animation?: Animation;
|
|
1455
1590
|
}
|
|
1456
1591
|
/** @oneof */
|
|
1457
1592
|
interface AppEmbedDataAppDataOneOf {
|
|
@@ -1494,14 +1629,14 @@ declare enum Placement {
|
|
|
1494
1629
|
}
|
|
1495
1630
|
/** @enumType */
|
|
1496
1631
|
type PlacementWithLiterals = Placement | 'IMAGE' | 'PRODUCT_INFO';
|
|
1497
|
-
declare enum
|
|
1632
|
+
declare enum CardStylesType {
|
|
1498
1633
|
/** Card with visible border and background */
|
|
1499
1634
|
CONTAINED = "CONTAINED",
|
|
1500
1635
|
/** Card without visible border */
|
|
1501
1636
|
FRAMELESS = "FRAMELESS"
|
|
1502
1637
|
}
|
|
1503
1638
|
/** @enumType */
|
|
1504
|
-
type
|
|
1639
|
+
type CardStylesTypeWithLiterals = CardStylesType | 'CONTAINED' | 'FRAMELESS';
|
|
1505
1640
|
declare enum Alignment {
|
|
1506
1641
|
/** Content aligned to start (left in LTR layouts, right in RTL layouts) */
|
|
1507
1642
|
START = "START",
|
|
@@ -1637,7 +1772,7 @@ interface CardStyles {
|
|
|
1637
1772
|
/** Card border radius in pixels. */
|
|
1638
1773
|
borderRadius?: number | null;
|
|
1639
1774
|
/** Card type. Defaults to `CONTAINED`. */
|
|
1640
|
-
type?:
|
|
1775
|
+
type?: CardStylesTypeWithLiterals;
|
|
1641
1776
|
/** Content alignment. Defaults to `START`. */
|
|
1642
1777
|
alignment?: AlignmentWithLiterals;
|
|
1643
1778
|
/** Layout for title and price. Defaults to `STACKED`. */
|
|
@@ -1693,6 +1828,8 @@ interface VideoData {
|
|
|
1693
1828
|
title?: string | null;
|
|
1694
1829
|
/** Video options. */
|
|
1695
1830
|
options?: PlaybackOptions;
|
|
1831
|
+
/** Node animation. */
|
|
1832
|
+
animation?: Animation;
|
|
1696
1833
|
}
|
|
1697
1834
|
interface PlaybackOptions {
|
|
1698
1835
|
/** Sets whether the media will automatically start playing. */
|
|
@@ -1709,6 +1846,8 @@ interface EmbedData {
|
|
|
1709
1846
|
oembed?: Oembed;
|
|
1710
1847
|
/** Origin asset source. */
|
|
1711
1848
|
src?: string | null;
|
|
1849
|
+
/** Node animation. */
|
|
1850
|
+
animation?: Animation;
|
|
1712
1851
|
}
|
|
1713
1852
|
interface Oembed {
|
|
1714
1853
|
/** The resource type. */
|
|
@@ -1753,6 +1892,8 @@ interface CollapsibleListData {
|
|
|
1753
1892
|
direction?: DirectionWithLiterals;
|
|
1754
1893
|
/** If `true`, The collapsible item will appear in search results as an FAQ. */
|
|
1755
1894
|
isQapageData?: boolean | null;
|
|
1895
|
+
/** Node animation. */
|
|
1896
|
+
animation?: Animation;
|
|
1756
1897
|
}
|
|
1757
1898
|
declare enum InitialExpandedItems {
|
|
1758
1899
|
/** First item will be expended initally */
|
|
@@ -1795,6 +1936,8 @@ interface TableData {
|
|
|
1795
1936
|
cellPadding?: number[];
|
|
1796
1937
|
/** Table's alternative text. */
|
|
1797
1938
|
altText?: string | null;
|
|
1939
|
+
/** Node animation. */
|
|
1940
|
+
animation?: Animation;
|
|
1798
1941
|
}
|
|
1799
1942
|
interface Dimensions {
|
|
1800
1943
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -1903,6 +2046,8 @@ interface AudioData {
|
|
|
1903
2046
|
authorName?: string | null;
|
|
1904
2047
|
/** An HTML version of the audio node. */
|
|
1905
2048
|
html?: string | null;
|
|
2049
|
+
/** Node animation. */
|
|
2050
|
+
animation?: Animation;
|
|
1906
2051
|
}
|
|
1907
2052
|
interface OrderedListData {
|
|
1908
2053
|
/** Indentation level from 0-4. */
|
|
@@ -1911,16 +2056,22 @@ interface OrderedListData {
|
|
|
1911
2056
|
offset?: number | null;
|
|
1912
2057
|
/** List start number. */
|
|
1913
2058
|
start?: number | null;
|
|
2059
|
+
/** Node animation. */
|
|
2060
|
+
animation?: Animation;
|
|
1914
2061
|
}
|
|
1915
2062
|
interface BulletedListData {
|
|
1916
2063
|
/** Indentation level from 0-4. */
|
|
1917
2064
|
indentation?: number;
|
|
1918
2065
|
/** Offset level from 0-4. */
|
|
1919
2066
|
offset?: number | null;
|
|
2067
|
+
/** Node animation. */
|
|
2068
|
+
animation?: Animation;
|
|
1920
2069
|
}
|
|
1921
2070
|
interface BlockquoteData {
|
|
1922
2071
|
/** Indentation level from 1-4. */
|
|
1923
2072
|
indentation?: number;
|
|
2073
|
+
/** Node animation. */
|
|
2074
|
+
animation?: Animation;
|
|
1924
2075
|
}
|
|
1925
2076
|
interface CaptionData {
|
|
1926
2077
|
textStyle?: TextStyle;
|
|
@@ -1978,6 +2129,8 @@ interface LayoutData {
|
|
|
1978
2129
|
background?: LayoutDataBackground;
|
|
1979
2130
|
/** Backdrop styling (color or gradient). */
|
|
1980
2131
|
backdrop?: Backdrop;
|
|
2132
|
+
/** Node animation. */
|
|
2133
|
+
animation?: Animation;
|
|
1981
2134
|
}
|
|
1982
2135
|
declare enum ImageScalingScaling {
|
|
1983
2136
|
/** Auto image scaling */
|
|
@@ -2129,6 +2282,8 @@ interface ShapeData {
|
|
|
2129
2282
|
shape?: Media;
|
|
2130
2283
|
/** Styling for the shape. */
|
|
2131
2284
|
styles?: ShapeDataStyles;
|
|
2285
|
+
/** Node animation. */
|
|
2286
|
+
animation?: Animation;
|
|
2132
2287
|
}
|
|
2133
2288
|
interface ShapeDataStyles {
|
|
2134
2289
|
/**
|
|
@@ -2231,6 +2386,8 @@ interface TocData {
|
|
|
2231
2386
|
color?: string | null;
|
|
2232
2387
|
/** Indentation style. Default: NESTED. */
|
|
2233
2388
|
indentation?: IndentationWithLiterals;
|
|
2389
|
+
/** Node animation. */
|
|
2390
|
+
animation?: Animation;
|
|
2234
2391
|
}
|
|
2235
2392
|
/** List style. */
|
|
2236
2393
|
declare enum ListStyle {
|
|
@@ -2277,6 +2434,8 @@ interface SmartBlockData {
|
|
|
2277
2434
|
borderWidth?: number | null;
|
|
2278
2435
|
/** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2279
2436
|
borderRadius?: number | null;
|
|
2437
|
+
/** Node animation. */
|
|
2438
|
+
animation?: Animation;
|
|
2280
2439
|
}
|
|
2281
2440
|
/** Layout type of the smart block */
|
|
2282
2441
|
declare enum SmartBlockDataType {
|
|
@@ -2380,10 +2539,14 @@ interface CheckboxListData {
|
|
|
2380
2539
|
indentation?: number;
|
|
2381
2540
|
/** Offset level from 0-4. */
|
|
2382
2541
|
offset?: number | null;
|
|
2542
|
+
/** Node animation. */
|
|
2543
|
+
animation?: Animation;
|
|
2383
2544
|
}
|
|
2384
2545
|
interface ListItemNodeData {
|
|
2385
2546
|
/** Checkbox list item state. Defaults to `false`. */
|
|
2386
2547
|
checked?: boolean | null;
|
|
2548
|
+
/** Node animation. */
|
|
2549
|
+
animation?: Animation;
|
|
2387
2550
|
}
|
|
2388
2551
|
interface Metadata {
|
|
2389
2552
|
/** Schema version. */
|
|
@@ -2912,4 +3075,4 @@ interface BulkMachineTranslateOptions {
|
|
|
2912
3075
|
contentToTranslate?: TranslatableContent[];
|
|
2913
3076
|
}
|
|
2914
3077
|
|
|
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 };
|
|
3078
|
+
export { Alignment, type AlignmentWithLiterals, type AnchorData, type Animation, 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, CardStylesType, type CardStylesTypeWithLiterals, 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 DividerDataStyles, type DocumentStyle, type EmbedData, type EntranceAnimation, type EntranceEffect, EntranceEffectType, type EntranceEffectTypeWithLiterals, 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, LineCap, type LineCapWithLiterals, 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 };
|
|
@@ -28,12 +28,14 @@ __export(index_typings_exports, {
|
|
|
28
28
|
BannerPosition: () => BannerPosition,
|
|
29
29
|
ButtonDataType: () => ButtonDataType,
|
|
30
30
|
CardDataBackgroundType: () => CardDataBackgroundType,
|
|
31
|
+
CardStylesType: () => CardStylesType,
|
|
31
32
|
ColumnSize: () => ColumnSize,
|
|
32
33
|
Crop: () => Crop,
|
|
33
34
|
DecorationType: () => DecorationType,
|
|
34
35
|
DesignTarget: () => DesignTarget,
|
|
35
36
|
Direction: () => Direction,
|
|
36
37
|
DividerDataAlignment: () => DividerDataAlignment,
|
|
38
|
+
EntranceEffectType: () => EntranceEffectType,
|
|
37
39
|
FontType: () => FontType,
|
|
38
40
|
Format: () => Format,
|
|
39
41
|
GIFType: () => GIFType,
|
|
@@ -46,6 +48,7 @@ __export(index_typings_exports, {
|
|
|
46
48
|
Layout: () => Layout,
|
|
47
49
|
LayoutDataBackgroundType: () => LayoutDataBackgroundType,
|
|
48
50
|
LayoutType: () => LayoutType,
|
|
51
|
+
LineCap: () => LineCap,
|
|
49
52
|
LineStyle: () => LineStyle,
|
|
50
53
|
ListStyle: () => ListStyle,
|
|
51
54
|
MapType: () => MapType,
|
|
@@ -897,6 +900,31 @@ var Target = /* @__PURE__ */ ((Target2) => {
|
|
|
897
900
|
Target2["TOP"] = "TOP";
|
|
898
901
|
return Target2;
|
|
899
902
|
})(Target || {});
|
|
903
|
+
var Type = /* @__PURE__ */ ((Type2) => {
|
|
904
|
+
Type2["VIEW"] = "VIEW";
|
|
905
|
+
return Type2;
|
|
906
|
+
})(Type || {});
|
|
907
|
+
var EntranceEffectType = /* @__PURE__ */ ((EntranceEffectType2) => {
|
|
908
|
+
EntranceEffectType2["FADE"] = "FADE";
|
|
909
|
+
EntranceEffectType2["ARC"] = "ARC";
|
|
910
|
+
EntranceEffectType2["BLUR"] = "BLUR";
|
|
911
|
+
EntranceEffectType2["BOUNCE"] = "BOUNCE";
|
|
912
|
+
EntranceEffectType2["DROP"] = "DROP";
|
|
913
|
+
EntranceEffectType2["EXPAND"] = "EXPAND";
|
|
914
|
+
EntranceEffectType2["FLIP"] = "FLIP";
|
|
915
|
+
EntranceEffectType2["FLOAT"] = "FLOAT";
|
|
916
|
+
EntranceEffectType2["FOLD"] = "FOLD";
|
|
917
|
+
EntranceEffectType2["GLIDE"] = "GLIDE";
|
|
918
|
+
EntranceEffectType2["REVEAL"] = "REVEAL";
|
|
919
|
+
EntranceEffectType2["SHAPE"] = "SHAPE";
|
|
920
|
+
EntranceEffectType2["SHUTTERS"] = "SHUTTERS";
|
|
921
|
+
EntranceEffectType2["SLIDE"] = "SLIDE";
|
|
922
|
+
EntranceEffectType2["SPIN"] = "SPIN";
|
|
923
|
+
EntranceEffectType2["TILT"] = "TILT";
|
|
924
|
+
EntranceEffectType2["TURN"] = "TURN";
|
|
925
|
+
EntranceEffectType2["WINK"] = "WINK";
|
|
926
|
+
return EntranceEffectType2;
|
|
927
|
+
})(EntranceEffectType || {});
|
|
900
928
|
var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
|
|
901
929
|
TextAlignment2["AUTO"] = "AUTO";
|
|
902
930
|
TextAlignment2["LEFT"] = "LEFT";
|
|
@@ -905,6 +933,11 @@ var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
|
|
|
905
933
|
TextAlignment2["JUSTIFY"] = "JUSTIFY";
|
|
906
934
|
return TextAlignment2;
|
|
907
935
|
})(TextAlignment || {});
|
|
936
|
+
var LineCap = /* @__PURE__ */ ((LineCap2) => {
|
|
937
|
+
LineCap2["SQUARE"] = "SQUARE";
|
|
938
|
+
LineCap2["ROUND"] = "ROUND";
|
|
939
|
+
return LineCap2;
|
|
940
|
+
})(LineCap || {});
|
|
908
941
|
var LineStyle = /* @__PURE__ */ ((LineStyle2) => {
|
|
909
942
|
LineStyle2["SINGLE"] = "SINGLE";
|
|
910
943
|
LineStyle2["DOUBLE"] = "DOUBLE";
|
|
@@ -1067,11 +1100,11 @@ var Placement = /* @__PURE__ */ ((Placement2) => {
|
|
|
1067
1100
|
Placement2["PRODUCT_INFO"] = "PRODUCT_INFO";
|
|
1068
1101
|
return Placement2;
|
|
1069
1102
|
})(Placement || {});
|
|
1070
|
-
var
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
return
|
|
1074
|
-
})(
|
|
1103
|
+
var CardStylesType = /* @__PURE__ */ ((CardStylesType2) => {
|
|
1104
|
+
CardStylesType2["CONTAINED"] = "CONTAINED";
|
|
1105
|
+
CardStylesType2["FRAMELESS"] = "FRAMELESS";
|
|
1106
|
+
return CardStylesType2;
|
|
1107
|
+
})(CardStylesType || {});
|
|
1075
1108
|
var Alignment = /* @__PURE__ */ ((Alignment2) => {
|
|
1076
1109
|
Alignment2["START"] = "START";
|
|
1077
1110
|
Alignment2["CENTER"] = "CENTER";
|
|
@@ -1459,12 +1492,14 @@ async function bulkMachineTranslate2(sourceLanguage, options) {
|
|
|
1459
1492
|
BannerPosition,
|
|
1460
1493
|
ButtonDataType,
|
|
1461
1494
|
CardDataBackgroundType,
|
|
1495
|
+
CardStylesType,
|
|
1462
1496
|
ColumnSize,
|
|
1463
1497
|
Crop,
|
|
1464
1498
|
DecorationType,
|
|
1465
1499
|
DesignTarget,
|
|
1466
1500
|
Direction,
|
|
1467
1501
|
DividerDataAlignment,
|
|
1502
|
+
EntranceEffectType,
|
|
1468
1503
|
FontType,
|
|
1469
1504
|
Format,
|
|
1470
1505
|
GIFType,
|
|
@@ -1477,6 +1512,7 @@ async function bulkMachineTranslate2(sourceLanguage, options) {
|
|
|
1477
1512
|
Layout,
|
|
1478
1513
|
LayoutDataBackgroundType,
|
|
1479
1514
|
LayoutType,
|
|
1515
|
+
LineCap,
|
|
1480
1516
|
LineStyle,
|
|
1481
1517
|
ListStyle,
|
|
1482
1518
|
MapType,
|