@wix/auto_sdk_multilingual_machine-translation 1.0.54 → 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 +34 -5
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +139 -6
- package/build/cjs/index.typings.js +34 -5
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +139 -6
- package/build/cjs/meta.js +34 -5
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +32 -5
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +139 -6
- package/build/es/index.typings.mjs +32 -5
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +139 -6
- package/build/es/meta.mjs +32 -5
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +34 -5
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +139 -6
- package/build/internal/cjs/index.typings.js +34 -5
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +139 -6
- package/build/internal/cjs/meta.js +34 -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 +32 -5
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +139 -6
- package/build/internal/es/index.typings.mjs +32 -5
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +139 -6
- package/build/internal/es/meta.mjs +32 -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`. */
|
|
@@ -591,6 +674,8 @@ interface DividerData {
|
|
|
591
674
|
alignment?: DividerDataAlignmentWithLiterals;
|
|
592
675
|
/** Visual styling for the divider lines. */
|
|
593
676
|
styles?: DividerDataStyles;
|
|
677
|
+
/** Node animation. */
|
|
678
|
+
animation?: Animation;
|
|
594
679
|
}
|
|
595
680
|
declare enum LineCap {
|
|
596
681
|
/** Square line endings. */
|
|
@@ -645,9 +730,9 @@ interface DividerDataStyles {
|
|
|
645
730
|
* @maxSize 10
|
|
646
731
|
*/
|
|
647
732
|
lineThickness?: number[];
|
|
648
|
-
/**
|
|
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. */
|
|
649
734
|
dashLength?: number | null;
|
|
650
|
-
/**
|
|
735
|
+
/** Visible gap between dashes or dots, in pixels. */
|
|
651
736
|
dashGap?: number | null;
|
|
652
737
|
/** Gap between divider lines in pixels. */
|
|
653
738
|
lineGap?: number | null;
|
|
@@ -674,6 +759,8 @@ interface FileData {
|
|
|
674
759
|
path?: string | null;
|
|
675
760
|
/** File size in KB. */
|
|
676
761
|
sizeInKb?: string | null;
|
|
762
|
+
/** Node animation. */
|
|
763
|
+
animation?: Animation;
|
|
677
764
|
}
|
|
678
765
|
declare enum ViewMode {
|
|
679
766
|
/** No PDF view */
|
|
@@ -734,6 +821,8 @@ interface GalleryData {
|
|
|
734
821
|
disableExpand?: boolean | null;
|
|
735
822
|
/** Sets whether the gallery's download button is disabled. Defaults to `false`. */
|
|
736
823
|
disableDownload?: boolean | null;
|
|
824
|
+
/** Node animation. */
|
|
825
|
+
animation?: Animation;
|
|
737
826
|
}
|
|
738
827
|
interface Media {
|
|
739
828
|
/** The source for the media's data. */
|
|
@@ -877,6 +966,8 @@ interface GIFData {
|
|
|
877
966
|
width?: number;
|
|
878
967
|
/** Type of GIF (Sticker or NORMAL). Defaults to `NORMAL`. */
|
|
879
968
|
gifType?: GIFTypeWithLiterals;
|
|
969
|
+
/** Node animation. */
|
|
970
|
+
animation?: Animation;
|
|
880
971
|
}
|
|
881
972
|
interface GIF {
|
|
882
973
|
/**
|
|
@@ -910,6 +1001,8 @@ interface HeadingData {
|
|
|
910
1001
|
indentation?: number | null;
|
|
911
1002
|
/** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
|
|
912
1003
|
renderedLevel?: number | null;
|
|
1004
|
+
/** Node animation. */
|
|
1005
|
+
animation?: Animation;
|
|
913
1006
|
}
|
|
914
1007
|
interface HTMLData extends HTMLDataDataOneOf {
|
|
915
1008
|
/** The URL for the HTML code for the node. */
|
|
@@ -929,6 +1022,8 @@ interface HTMLData extends HTMLDataDataOneOf {
|
|
|
929
1022
|
source?: SourceWithLiterals;
|
|
930
1023
|
/** If container height is aligned with its content height. Defaults to `true`. */
|
|
931
1024
|
autoHeight?: boolean | null;
|
|
1025
|
+
/** Node animation. */
|
|
1026
|
+
animation?: Animation;
|
|
932
1027
|
}
|
|
933
1028
|
/** @oneof */
|
|
934
1029
|
interface HTMLDataDataOneOf {
|
|
@@ -978,6 +1073,8 @@ interface ImageData {
|
|
|
978
1073
|
crop?: ImageDataCrop;
|
|
979
1074
|
/** Optional shape mask applied to the visible crop. Supported values: CIRCLE, OVAL, STAR, PENTAGON, HEXAGON, TRIANGLE, HEART, RHOMBUS, FLUID, WINDOW. */
|
|
980
1075
|
cropShape?: string | null;
|
|
1076
|
+
/** Node animation. */
|
|
1077
|
+
animation?: Animation;
|
|
981
1078
|
}
|
|
982
1079
|
interface StylesBorder {
|
|
983
1080
|
/** Border width in pixels. */
|
|
@@ -1019,6 +1116,8 @@ interface LinkPreviewData {
|
|
|
1019
1116
|
html?: string | null;
|
|
1020
1117
|
/** Styling for the link preview. */
|
|
1021
1118
|
styles?: LinkPreviewDataStyles;
|
|
1119
|
+
/** Node animation. */
|
|
1120
|
+
animation?: Animation;
|
|
1022
1121
|
}
|
|
1023
1122
|
declare enum StylesPosition {
|
|
1024
1123
|
/** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
|
|
@@ -1114,6 +1213,8 @@ interface ParagraphData {
|
|
|
1114
1213
|
indentation?: number | null;
|
|
1115
1214
|
/** Paragraph level */
|
|
1116
1215
|
level?: number | null;
|
|
1216
|
+
/** Node animation. */
|
|
1217
|
+
animation?: Animation;
|
|
1117
1218
|
}
|
|
1118
1219
|
interface PollData {
|
|
1119
1220
|
/** Styling for the poll's container. */
|
|
@@ -1124,6 +1225,8 @@ interface PollData {
|
|
|
1124
1225
|
layout?: PollDataLayout;
|
|
1125
1226
|
/** Styling for the poll and voting options. */
|
|
1126
1227
|
design?: Design;
|
|
1228
|
+
/** Node animation. */
|
|
1229
|
+
animation?: Animation;
|
|
1127
1230
|
}
|
|
1128
1231
|
declare enum ViewRole {
|
|
1129
1232
|
/** Only Poll creator can view the results */
|
|
@@ -1482,6 +1585,8 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
|
1482
1585
|
containerData?: PluginContainerData;
|
|
1483
1586
|
/** Pricing data for embedded Wix App content. */
|
|
1484
1587
|
pricingData?: PricingData;
|
|
1588
|
+
/** Node animation. */
|
|
1589
|
+
animation?: Animation;
|
|
1485
1590
|
}
|
|
1486
1591
|
/** @oneof */
|
|
1487
1592
|
interface AppEmbedDataAppDataOneOf {
|
|
@@ -1524,14 +1629,14 @@ declare enum Placement {
|
|
|
1524
1629
|
}
|
|
1525
1630
|
/** @enumType */
|
|
1526
1631
|
type PlacementWithLiterals = Placement | 'IMAGE' | 'PRODUCT_INFO';
|
|
1527
|
-
declare enum
|
|
1632
|
+
declare enum CardStylesType {
|
|
1528
1633
|
/** Card with visible border and background */
|
|
1529
1634
|
CONTAINED = "CONTAINED",
|
|
1530
1635
|
/** Card without visible border */
|
|
1531
1636
|
FRAMELESS = "FRAMELESS"
|
|
1532
1637
|
}
|
|
1533
1638
|
/** @enumType */
|
|
1534
|
-
type
|
|
1639
|
+
type CardStylesTypeWithLiterals = CardStylesType | 'CONTAINED' | 'FRAMELESS';
|
|
1535
1640
|
declare enum Alignment {
|
|
1536
1641
|
/** Content aligned to start (left in LTR layouts, right in RTL layouts) */
|
|
1537
1642
|
START = "START",
|
|
@@ -1667,7 +1772,7 @@ interface CardStyles {
|
|
|
1667
1772
|
/** Card border radius in pixels. */
|
|
1668
1773
|
borderRadius?: number | null;
|
|
1669
1774
|
/** Card type. Defaults to `CONTAINED`. */
|
|
1670
|
-
type?:
|
|
1775
|
+
type?: CardStylesTypeWithLiterals;
|
|
1671
1776
|
/** Content alignment. Defaults to `START`. */
|
|
1672
1777
|
alignment?: AlignmentWithLiterals;
|
|
1673
1778
|
/** Layout for title and price. Defaults to `STACKED`. */
|
|
@@ -1723,6 +1828,8 @@ interface VideoData {
|
|
|
1723
1828
|
title?: string | null;
|
|
1724
1829
|
/** Video options. */
|
|
1725
1830
|
options?: PlaybackOptions;
|
|
1831
|
+
/** Node animation. */
|
|
1832
|
+
animation?: Animation;
|
|
1726
1833
|
}
|
|
1727
1834
|
interface PlaybackOptions {
|
|
1728
1835
|
/** Sets whether the media will automatically start playing. */
|
|
@@ -1739,6 +1846,8 @@ interface EmbedData {
|
|
|
1739
1846
|
oembed?: Oembed;
|
|
1740
1847
|
/** Origin asset source. */
|
|
1741
1848
|
src?: string | null;
|
|
1849
|
+
/** Node animation. */
|
|
1850
|
+
animation?: Animation;
|
|
1742
1851
|
}
|
|
1743
1852
|
interface Oembed {
|
|
1744
1853
|
/** The resource type. */
|
|
@@ -1783,6 +1892,8 @@ interface CollapsibleListData {
|
|
|
1783
1892
|
direction?: DirectionWithLiterals;
|
|
1784
1893
|
/** If `true`, The collapsible item will appear in search results as an FAQ. */
|
|
1785
1894
|
isQapageData?: boolean | null;
|
|
1895
|
+
/** Node animation. */
|
|
1896
|
+
animation?: Animation;
|
|
1786
1897
|
}
|
|
1787
1898
|
declare enum InitialExpandedItems {
|
|
1788
1899
|
/** First item will be expended initally */
|
|
@@ -1825,6 +1936,8 @@ interface TableData {
|
|
|
1825
1936
|
cellPadding?: number[];
|
|
1826
1937
|
/** Table's alternative text. */
|
|
1827
1938
|
altText?: string | null;
|
|
1939
|
+
/** Node animation. */
|
|
1940
|
+
animation?: Animation;
|
|
1828
1941
|
}
|
|
1829
1942
|
interface Dimensions {
|
|
1830
1943
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -1933,6 +2046,8 @@ interface AudioData {
|
|
|
1933
2046
|
authorName?: string | null;
|
|
1934
2047
|
/** An HTML version of the audio node. */
|
|
1935
2048
|
html?: string | null;
|
|
2049
|
+
/** Node animation. */
|
|
2050
|
+
animation?: Animation;
|
|
1936
2051
|
}
|
|
1937
2052
|
interface OrderedListData {
|
|
1938
2053
|
/** Indentation level from 0-4. */
|
|
@@ -1941,16 +2056,22 @@ interface OrderedListData {
|
|
|
1941
2056
|
offset?: number | null;
|
|
1942
2057
|
/** List start number. */
|
|
1943
2058
|
start?: number | null;
|
|
2059
|
+
/** Node animation. */
|
|
2060
|
+
animation?: Animation;
|
|
1944
2061
|
}
|
|
1945
2062
|
interface BulletedListData {
|
|
1946
2063
|
/** Indentation level from 0-4. */
|
|
1947
2064
|
indentation?: number;
|
|
1948
2065
|
/** Offset level from 0-4. */
|
|
1949
2066
|
offset?: number | null;
|
|
2067
|
+
/** Node animation. */
|
|
2068
|
+
animation?: Animation;
|
|
1950
2069
|
}
|
|
1951
2070
|
interface BlockquoteData {
|
|
1952
2071
|
/** Indentation level from 1-4. */
|
|
1953
2072
|
indentation?: number;
|
|
2073
|
+
/** Node animation. */
|
|
2074
|
+
animation?: Animation;
|
|
1954
2075
|
}
|
|
1955
2076
|
interface CaptionData {
|
|
1956
2077
|
textStyle?: TextStyle;
|
|
@@ -2008,6 +2129,8 @@ interface LayoutData {
|
|
|
2008
2129
|
background?: LayoutDataBackground;
|
|
2009
2130
|
/** Backdrop styling (color or gradient). */
|
|
2010
2131
|
backdrop?: Backdrop;
|
|
2132
|
+
/** Node animation. */
|
|
2133
|
+
animation?: Animation;
|
|
2011
2134
|
}
|
|
2012
2135
|
declare enum ImageScalingScaling {
|
|
2013
2136
|
/** Auto image scaling */
|
|
@@ -2159,6 +2282,8 @@ interface ShapeData {
|
|
|
2159
2282
|
shape?: Media;
|
|
2160
2283
|
/** Styling for the shape. */
|
|
2161
2284
|
styles?: ShapeDataStyles;
|
|
2285
|
+
/** Node animation. */
|
|
2286
|
+
animation?: Animation;
|
|
2162
2287
|
}
|
|
2163
2288
|
interface ShapeDataStyles {
|
|
2164
2289
|
/**
|
|
@@ -2261,6 +2386,8 @@ interface TocData {
|
|
|
2261
2386
|
color?: string | null;
|
|
2262
2387
|
/** Indentation style. Default: NESTED. */
|
|
2263
2388
|
indentation?: IndentationWithLiterals;
|
|
2389
|
+
/** Node animation. */
|
|
2390
|
+
animation?: Animation;
|
|
2264
2391
|
}
|
|
2265
2392
|
/** List style. */
|
|
2266
2393
|
declare enum ListStyle {
|
|
@@ -2307,6 +2434,8 @@ interface SmartBlockData {
|
|
|
2307
2434
|
borderWidth?: number | null;
|
|
2308
2435
|
/** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2309
2436
|
borderRadius?: number | null;
|
|
2437
|
+
/** Node animation. */
|
|
2438
|
+
animation?: Animation;
|
|
2310
2439
|
}
|
|
2311
2440
|
/** Layout type of the smart block */
|
|
2312
2441
|
declare enum SmartBlockDataType {
|
|
@@ -2410,10 +2539,14 @@ interface CheckboxListData {
|
|
|
2410
2539
|
indentation?: number;
|
|
2411
2540
|
/** Offset level from 0-4. */
|
|
2412
2541
|
offset?: number | null;
|
|
2542
|
+
/** Node animation. */
|
|
2543
|
+
animation?: Animation;
|
|
2413
2544
|
}
|
|
2414
2545
|
interface ListItemNodeData {
|
|
2415
2546
|
/** Checkbox list item state. Defaults to `false`. */
|
|
2416
2547
|
checked?: boolean | null;
|
|
2548
|
+
/** Node animation. */
|
|
2549
|
+
animation?: Animation;
|
|
2417
2550
|
}
|
|
2418
2551
|
interface Metadata {
|
|
2419
2552
|
/** Schema version. */
|
|
@@ -2942,4 +3075,4 @@ interface BulkMachineTranslateOptions {
|
|
|
2942
3075
|
contentToTranslate?: TranslatableContent[];
|
|
2943
3076
|
}
|
|
2944
3077
|
|
|
2945
|
-
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 DividerDataStyles, 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, 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 };
|
|
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,
|
|
@@ -898,6 +900,31 @@ var Target = /* @__PURE__ */ ((Target2) => {
|
|
|
898
900
|
Target2["TOP"] = "TOP";
|
|
899
901
|
return Target2;
|
|
900
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 || {});
|
|
901
928
|
var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
|
|
902
929
|
TextAlignment2["AUTO"] = "AUTO";
|
|
903
930
|
TextAlignment2["LEFT"] = "LEFT";
|
|
@@ -1073,11 +1100,11 @@ var Placement = /* @__PURE__ */ ((Placement2) => {
|
|
|
1073
1100
|
Placement2["PRODUCT_INFO"] = "PRODUCT_INFO";
|
|
1074
1101
|
return Placement2;
|
|
1075
1102
|
})(Placement || {});
|
|
1076
|
-
var
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
return
|
|
1080
|
-
})(
|
|
1103
|
+
var CardStylesType = /* @__PURE__ */ ((CardStylesType2) => {
|
|
1104
|
+
CardStylesType2["CONTAINED"] = "CONTAINED";
|
|
1105
|
+
CardStylesType2["FRAMELESS"] = "FRAMELESS";
|
|
1106
|
+
return CardStylesType2;
|
|
1107
|
+
})(CardStylesType || {});
|
|
1081
1108
|
var Alignment = /* @__PURE__ */ ((Alignment2) => {
|
|
1082
1109
|
Alignment2["START"] = "START";
|
|
1083
1110
|
Alignment2["CENTER"] = "CENTER";
|
|
@@ -1465,12 +1492,14 @@ async function bulkMachineTranslate2(sourceLanguage, options) {
|
|
|
1465
1492
|
BannerPosition,
|
|
1466
1493
|
ButtonDataType,
|
|
1467
1494
|
CardDataBackgroundType,
|
|
1495
|
+
CardStylesType,
|
|
1468
1496
|
ColumnSize,
|
|
1469
1497
|
Crop,
|
|
1470
1498
|
DecorationType,
|
|
1471
1499
|
DesignTarget,
|
|
1472
1500
|
Direction,
|
|
1473
1501
|
DividerDataAlignment,
|
|
1502
|
+
EntranceEffectType,
|
|
1474
1503
|
FontType,
|
|
1475
1504
|
Format,
|
|
1476
1505
|
GIFType,
|