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