@wix/auto_sdk_multilingual_machine-translation 1.0.27 → 1.0.29
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 +4 -9
- package/build/cjs/index.js +6 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +4 -7
- package/build/cjs/index.typings.js +6 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +69 -1
- package/build/cjs/meta.js +493 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +4 -9
- package/build/es/index.mjs +6 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +4 -7
- package/build/es/index.typings.mjs +6 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +69 -1
- package/build/es/meta.mjs +454 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +4 -9
- package/build/internal/cjs/index.js +6 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +4 -7
- package/build/internal/cjs/index.typings.js +6 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +69 -1
- package/build/internal/cjs/meta.js +493 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +4 -9
- package/build/internal/es/index.mjs +6 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +4 -7
- package/build/internal/es/index.typings.mjs +6 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +69 -1
- package/build/internal/es/meta.mjs +454 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -1683,6 +1683,27 @@ interface BorderColors {
|
|
|
1683
1683
|
*/
|
|
1684
1684
|
bottom?: string | null;
|
|
1685
1685
|
}
|
|
1686
|
+
/**
|
|
1687
|
+
* `NullValue` is a singleton enumeration to represent the null value for the
|
|
1688
|
+
* `Value` type union.
|
|
1689
|
+
*
|
|
1690
|
+
* The JSON representation for `NullValue` is JSON `null`.
|
|
1691
|
+
*/
|
|
1692
|
+
declare enum NullValue {
|
|
1693
|
+
/** Null value. */
|
|
1694
|
+
NULL_VALUE = "NULL_VALUE"
|
|
1695
|
+
}
|
|
1696
|
+
/** @enumType */
|
|
1697
|
+
type NullValueWithLiterals = NullValue | 'NULL_VALUE';
|
|
1698
|
+
/**
|
|
1699
|
+
* `ListValue` is a wrapper around a repeated field of values.
|
|
1700
|
+
*
|
|
1701
|
+
* The JSON representation for `ListValue` is JSON array.
|
|
1702
|
+
*/
|
|
1703
|
+
interface ListValue {
|
|
1704
|
+
/** Repeated field of dynamically typed values. */
|
|
1705
|
+
values?: any[];
|
|
1706
|
+
}
|
|
1686
1707
|
interface AudioData {
|
|
1687
1708
|
/** Styling for the audio node's container. */
|
|
1688
1709
|
containerData?: PluginContainerData;
|
|
@@ -2057,6 +2078,25 @@ interface MachineTranslateResponse {
|
|
|
2057
2078
|
/** The translated content. */
|
|
2058
2079
|
translatedContent?: TranslatableContent;
|
|
2059
2080
|
}
|
|
2081
|
+
interface NotEnoughCreditsError {
|
|
2082
|
+
/** The number of credits required to translate the content in the request. */
|
|
2083
|
+
creditsRequired?: number;
|
|
2084
|
+
}
|
|
2085
|
+
interface TextTooLongError {
|
|
2086
|
+
/** The maximum length of text that can be translated. */
|
|
2087
|
+
maxLength?: number;
|
|
2088
|
+
/** The actual length of the text that was sent for translation. */
|
|
2089
|
+
actualLength?: number;
|
|
2090
|
+
}
|
|
2091
|
+
interface UnknownFormatError {
|
|
2092
|
+
}
|
|
2093
|
+
interface SameLanguageArgumentsError {
|
|
2094
|
+
/**
|
|
2095
|
+
* The language supplied as both the source and the target languages
|
|
2096
|
+
* @maxLength 16
|
|
2097
|
+
*/
|
|
2098
|
+
language?: string;
|
|
2099
|
+
}
|
|
2060
2100
|
interface BulkMachineTranslateRequest {
|
|
2061
2101
|
/** Language of the source text to translate. */
|
|
2062
2102
|
sourceLanguage: SupportedLanguageWithLiterals;
|
|
@@ -2111,6 +2151,34 @@ interface BulkActionMetadata {
|
|
|
2111
2151
|
/** Number of failures without details because detailed failure threshold was exceeded. */
|
|
2112
2152
|
undetailedFailures?: number;
|
|
2113
2153
|
}
|
|
2154
|
+
/** @docsIgnore */
|
|
2155
|
+
type MachineTranslateApplicationErrors = {
|
|
2156
|
+
code?: 'NOT_ENOUGH_CREDITS';
|
|
2157
|
+
description?: string;
|
|
2158
|
+
data?: NotEnoughCreditsError;
|
|
2159
|
+
} | {
|
|
2160
|
+
code?: 'TEXT_TOO_LONG';
|
|
2161
|
+
description?: string;
|
|
2162
|
+
data?: TextTooLongError;
|
|
2163
|
+
} | {
|
|
2164
|
+
code?: 'UNKNOWN_FORMAT';
|
|
2165
|
+
description?: string;
|
|
2166
|
+
data?: UnknownFormatError;
|
|
2167
|
+
} | {
|
|
2168
|
+
code?: 'SAME_LANGUAGE_ARGUMENTS';
|
|
2169
|
+
description?: string;
|
|
2170
|
+
data?: SameLanguageArgumentsError;
|
|
2171
|
+
};
|
|
2172
|
+
/** @docsIgnore */
|
|
2173
|
+
type BulkMachineTranslateApplicationErrors = {
|
|
2174
|
+
code?: 'NOT_ENOUGH_CREDITS';
|
|
2175
|
+
description?: string;
|
|
2176
|
+
data?: NotEnoughCreditsError;
|
|
2177
|
+
} | {
|
|
2178
|
+
code?: 'SAME_LANGUAGE_ARGUMENTS';
|
|
2179
|
+
description?: string;
|
|
2180
|
+
data?: SameLanguageArgumentsError;
|
|
2181
|
+
};
|
|
2114
2182
|
|
|
2115
2183
|
type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
|
|
2116
2184
|
getUrl: (context: any) => string;
|
|
@@ -2125,4 +2193,4 @@ type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q
|
|
|
2125
2193
|
declare function machineTranslate(): __PublicMethodMetaInfo<'POST', {}, MachineTranslateRequest$1, MachineTranslateRequest, MachineTranslateResponse$1, MachineTranslateResponse>;
|
|
2126
2194
|
declare function bulkMachineTranslate(): __PublicMethodMetaInfo<'POST', {}, BulkMachineTranslateRequest$1, BulkMachineTranslateRequest, BulkMachineTranslateResponse$1, BulkMachineTranslateResponse>;
|
|
2127
2195
|
|
|
2128
|
-
export { type __PublicMethodMetaInfo, bulkMachineTranslate, machineTranslate };
|
|
2196
|
+
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 BackgroundBackgroundOneOf as BackgroundBackgroundOneOfOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type BlockquoteData as BlockquoteDataOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, 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 CardStyles as CardStylesOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, 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, 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 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, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, type ImageStyles as ImageStylesOriginal, 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, 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 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, 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 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, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, type SameLanguageArgumentsError as SameLanguageArgumentsErrorOriginal, type Settings as SettingsOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, 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 TranslatableContentContentOneOf as TranslatableContentContentOneOfOriginal, type TranslatableContent as TranslatableContentOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnknownFormatError as UnknownFormatErrorOriginal, 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 };
|
|
@@ -20,6 +20,45 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
20
20
|
// meta.ts
|
|
21
21
|
var meta_exports = {};
|
|
22
22
|
__export(meta_exports, {
|
|
23
|
+
AlignmentOriginal: () => Alignment,
|
|
24
|
+
AppTypeOriginal: () => AppType,
|
|
25
|
+
AspectRatioOriginal: () => AspectRatio,
|
|
26
|
+
BackgroundTypeOriginal: () => BackgroundType,
|
|
27
|
+
ButtonDataTypeOriginal: () => ButtonDataType,
|
|
28
|
+
CropOriginal: () => Crop,
|
|
29
|
+
DecorationTypeOriginal: () => DecorationType,
|
|
30
|
+
DirectionOriginal: () => Direction,
|
|
31
|
+
DividerDataAlignmentOriginal: () => DividerDataAlignment,
|
|
32
|
+
FontTypeOriginal: () => FontType,
|
|
33
|
+
FormatOriginal: () => Format,
|
|
34
|
+
GIFTypeOriginal: () => GIFType,
|
|
35
|
+
InitialExpandedItemsOriginal: () => InitialExpandedItems,
|
|
36
|
+
LayoutOriginal: () => Layout,
|
|
37
|
+
LayoutTypeOriginal: () => LayoutType,
|
|
38
|
+
LineStyleOriginal: () => LineStyle,
|
|
39
|
+
MapTypeOriginal: () => MapType,
|
|
40
|
+
NodeTypeOriginal: () => NodeType,
|
|
41
|
+
NullValueOriginal: () => NullValue,
|
|
42
|
+
OrientationOriginal: () => Orientation,
|
|
43
|
+
PlacementOriginal: () => Placement,
|
|
44
|
+
PluginContainerDataAlignmentOriginal: () => PluginContainerDataAlignment,
|
|
45
|
+
PollLayoutDirectionOriginal: () => PollLayoutDirection,
|
|
46
|
+
PollLayoutTypeOriginal: () => PollLayoutType,
|
|
47
|
+
PositionOriginal: () => Position,
|
|
48
|
+
ResizingOriginal: () => Resizing,
|
|
49
|
+
SourceOriginal: () => Source,
|
|
50
|
+
StylesPositionOriginal: () => StylesPosition,
|
|
51
|
+
SupportedLanguageOriginal: () => SupportedLanguage,
|
|
52
|
+
TargetOriginal: () => Target,
|
|
53
|
+
TextAlignmentOriginal: () => TextAlignment,
|
|
54
|
+
ThumbnailsAlignmentOriginal: () => ThumbnailsAlignment,
|
|
55
|
+
TypeOriginal: () => Type,
|
|
56
|
+
VerticalAlignmentOriginal: () => VerticalAlignment,
|
|
57
|
+
ViewModeOriginal: () => ViewMode,
|
|
58
|
+
ViewRoleOriginal: () => ViewRole,
|
|
59
|
+
VoteRoleOriginal: () => VoteRole,
|
|
60
|
+
WidthOriginal: () => Width,
|
|
61
|
+
WidthTypeOriginal: () => WidthType,
|
|
23
62
|
bulkMachineTranslate: () => bulkMachineTranslate2,
|
|
24
63
|
machineTranslate: () => machineTranslate2
|
|
25
64
|
});
|
|
@@ -152,6 +191,9 @@ function machineTranslate(payload) {
|
|
|
152
191
|
method: "POST",
|
|
153
192
|
methodFqn: "wix.multilingual.machine.v3.MachineTranslation.MachineTranslate",
|
|
154
193
|
packageName: PACKAGE_NAME,
|
|
194
|
+
migrationOptions: {
|
|
195
|
+
optInTransformResponse: true
|
|
196
|
+
},
|
|
155
197
|
url: resolveWixMultilingualMachineV3MachineTranslationUrl({
|
|
156
198
|
protoPath: "/v3/machine-translate",
|
|
157
199
|
data: serializedData,
|
|
@@ -292,6 +334,9 @@ function bulkMachineTranslate(payload) {
|
|
|
292
334
|
method: "POST",
|
|
293
335
|
methodFqn: "wix.multilingual.machine.v3.MachineTranslation.BulkMachineTranslate",
|
|
294
336
|
packageName: PACKAGE_NAME,
|
|
337
|
+
migrationOptions: {
|
|
338
|
+
optInTransformResponse: true
|
|
339
|
+
},
|
|
295
340
|
url: resolveWixMultilingualMachineV3MachineTranslationUrl({
|
|
296
341
|
protoPath: "/v3/bulk-machine-translate",
|
|
297
342
|
data: serializedData,
|
|
@@ -363,6 +408,415 @@ function bulkMachineTranslate(payload) {
|
|
|
363
408
|
return __bulkMachineTranslate;
|
|
364
409
|
}
|
|
365
410
|
|
|
411
|
+
// src/multilingual-machine-v3-translatable-content-machine-translation.types.ts
|
|
412
|
+
var Format = /* @__PURE__ */ ((Format2) => {
|
|
413
|
+
Format2["UNKNOWN_FORMAT"] = "UNKNOWN_FORMAT";
|
|
414
|
+
Format2["PLAIN_TEXT"] = "PLAIN_TEXT";
|
|
415
|
+
Format2["HTML"] = "HTML";
|
|
416
|
+
Format2["RICH"] = "RICH";
|
|
417
|
+
return Format2;
|
|
418
|
+
})(Format || {});
|
|
419
|
+
var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
420
|
+
NodeType2["PARAGRAPH"] = "PARAGRAPH";
|
|
421
|
+
NodeType2["TEXT"] = "TEXT";
|
|
422
|
+
NodeType2["HEADING"] = "HEADING";
|
|
423
|
+
NodeType2["BULLETED_LIST"] = "BULLETED_LIST";
|
|
424
|
+
NodeType2["ORDERED_LIST"] = "ORDERED_LIST";
|
|
425
|
+
NodeType2["LIST_ITEM"] = "LIST_ITEM";
|
|
426
|
+
NodeType2["BLOCKQUOTE"] = "BLOCKQUOTE";
|
|
427
|
+
NodeType2["CODE_BLOCK"] = "CODE_BLOCK";
|
|
428
|
+
NodeType2["VIDEO"] = "VIDEO";
|
|
429
|
+
NodeType2["DIVIDER"] = "DIVIDER";
|
|
430
|
+
NodeType2["FILE"] = "FILE";
|
|
431
|
+
NodeType2["GALLERY"] = "GALLERY";
|
|
432
|
+
NodeType2["GIF"] = "GIF";
|
|
433
|
+
NodeType2["HTML"] = "HTML";
|
|
434
|
+
NodeType2["IMAGE"] = "IMAGE";
|
|
435
|
+
NodeType2["LINK_PREVIEW"] = "LINK_PREVIEW";
|
|
436
|
+
NodeType2["MAP"] = "MAP";
|
|
437
|
+
NodeType2["POLL"] = "POLL";
|
|
438
|
+
NodeType2["APP_EMBED"] = "APP_EMBED";
|
|
439
|
+
NodeType2["BUTTON"] = "BUTTON";
|
|
440
|
+
NodeType2["COLLAPSIBLE_LIST"] = "COLLAPSIBLE_LIST";
|
|
441
|
+
NodeType2["TABLE"] = "TABLE";
|
|
442
|
+
NodeType2["EMBED"] = "EMBED";
|
|
443
|
+
NodeType2["COLLAPSIBLE_ITEM"] = "COLLAPSIBLE_ITEM";
|
|
444
|
+
NodeType2["COLLAPSIBLE_ITEM_TITLE"] = "COLLAPSIBLE_ITEM_TITLE";
|
|
445
|
+
NodeType2["COLLAPSIBLE_ITEM_BODY"] = "COLLAPSIBLE_ITEM_BODY";
|
|
446
|
+
NodeType2["TABLE_CELL"] = "TABLE_CELL";
|
|
447
|
+
NodeType2["TABLE_ROW"] = "TABLE_ROW";
|
|
448
|
+
NodeType2["EXTERNAL"] = "EXTERNAL";
|
|
449
|
+
NodeType2["AUDIO"] = "AUDIO";
|
|
450
|
+
NodeType2["CAPTION"] = "CAPTION";
|
|
451
|
+
NodeType2["LAYOUT"] = "LAYOUT";
|
|
452
|
+
NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
|
|
453
|
+
return NodeType2;
|
|
454
|
+
})(NodeType || {});
|
|
455
|
+
var WidthType = /* @__PURE__ */ ((WidthType2) => {
|
|
456
|
+
WidthType2["CONTENT"] = "CONTENT";
|
|
457
|
+
WidthType2["SMALL"] = "SMALL";
|
|
458
|
+
WidthType2["ORIGINAL"] = "ORIGINAL";
|
|
459
|
+
WidthType2["FULL_WIDTH"] = "FULL_WIDTH";
|
|
460
|
+
return WidthType2;
|
|
461
|
+
})(WidthType || {});
|
|
462
|
+
var PluginContainerDataAlignment = /* @__PURE__ */ ((PluginContainerDataAlignment2) => {
|
|
463
|
+
PluginContainerDataAlignment2["CENTER"] = "CENTER";
|
|
464
|
+
PluginContainerDataAlignment2["LEFT"] = "LEFT";
|
|
465
|
+
PluginContainerDataAlignment2["RIGHT"] = "RIGHT";
|
|
466
|
+
return PluginContainerDataAlignment2;
|
|
467
|
+
})(PluginContainerDataAlignment || {});
|
|
468
|
+
var ButtonDataType = /* @__PURE__ */ ((ButtonDataType2) => {
|
|
469
|
+
ButtonDataType2["LINK"] = "LINK";
|
|
470
|
+
ButtonDataType2["ACTION"] = "ACTION";
|
|
471
|
+
return ButtonDataType2;
|
|
472
|
+
})(ButtonDataType || {});
|
|
473
|
+
var Target = /* @__PURE__ */ ((Target2) => {
|
|
474
|
+
Target2["SELF"] = "SELF";
|
|
475
|
+
Target2["BLANK"] = "BLANK";
|
|
476
|
+
Target2["PARENT"] = "PARENT";
|
|
477
|
+
Target2["TOP"] = "TOP";
|
|
478
|
+
return Target2;
|
|
479
|
+
})(Target || {});
|
|
480
|
+
var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
|
|
481
|
+
TextAlignment2["AUTO"] = "AUTO";
|
|
482
|
+
TextAlignment2["LEFT"] = "LEFT";
|
|
483
|
+
TextAlignment2["RIGHT"] = "RIGHT";
|
|
484
|
+
TextAlignment2["CENTER"] = "CENTER";
|
|
485
|
+
TextAlignment2["JUSTIFY"] = "JUSTIFY";
|
|
486
|
+
return TextAlignment2;
|
|
487
|
+
})(TextAlignment || {});
|
|
488
|
+
var LineStyle = /* @__PURE__ */ ((LineStyle2) => {
|
|
489
|
+
LineStyle2["SINGLE"] = "SINGLE";
|
|
490
|
+
LineStyle2["DOUBLE"] = "DOUBLE";
|
|
491
|
+
LineStyle2["DASHED"] = "DASHED";
|
|
492
|
+
LineStyle2["DOTTED"] = "DOTTED";
|
|
493
|
+
return LineStyle2;
|
|
494
|
+
})(LineStyle || {});
|
|
495
|
+
var Width = /* @__PURE__ */ ((Width2) => {
|
|
496
|
+
Width2["LARGE"] = "LARGE";
|
|
497
|
+
Width2["MEDIUM"] = "MEDIUM";
|
|
498
|
+
Width2["SMALL"] = "SMALL";
|
|
499
|
+
return Width2;
|
|
500
|
+
})(Width || {});
|
|
501
|
+
var DividerDataAlignment = /* @__PURE__ */ ((DividerDataAlignment2) => {
|
|
502
|
+
DividerDataAlignment2["CENTER"] = "CENTER";
|
|
503
|
+
DividerDataAlignment2["LEFT"] = "LEFT";
|
|
504
|
+
DividerDataAlignment2["RIGHT"] = "RIGHT";
|
|
505
|
+
return DividerDataAlignment2;
|
|
506
|
+
})(DividerDataAlignment || {});
|
|
507
|
+
var ViewMode = /* @__PURE__ */ ((ViewMode2) => {
|
|
508
|
+
ViewMode2["NONE"] = "NONE";
|
|
509
|
+
ViewMode2["FULL"] = "FULL";
|
|
510
|
+
ViewMode2["MINI"] = "MINI";
|
|
511
|
+
return ViewMode2;
|
|
512
|
+
})(ViewMode || {});
|
|
513
|
+
var LayoutType = /* @__PURE__ */ ((LayoutType2) => {
|
|
514
|
+
LayoutType2["COLLAGE"] = "COLLAGE";
|
|
515
|
+
LayoutType2["MASONRY"] = "MASONRY";
|
|
516
|
+
LayoutType2["GRID"] = "GRID";
|
|
517
|
+
LayoutType2["THUMBNAIL"] = "THUMBNAIL";
|
|
518
|
+
LayoutType2["SLIDER"] = "SLIDER";
|
|
519
|
+
LayoutType2["SLIDESHOW"] = "SLIDESHOW";
|
|
520
|
+
LayoutType2["PANORAMA"] = "PANORAMA";
|
|
521
|
+
LayoutType2["COLUMN"] = "COLUMN";
|
|
522
|
+
LayoutType2["MAGIC"] = "MAGIC";
|
|
523
|
+
LayoutType2["FULLSIZE"] = "FULLSIZE";
|
|
524
|
+
return LayoutType2;
|
|
525
|
+
})(LayoutType || {});
|
|
526
|
+
var Orientation = /* @__PURE__ */ ((Orientation2) => {
|
|
527
|
+
Orientation2["ROWS"] = "ROWS";
|
|
528
|
+
Orientation2["COLUMNS"] = "COLUMNS";
|
|
529
|
+
return Orientation2;
|
|
530
|
+
})(Orientation || {});
|
|
531
|
+
var Crop = /* @__PURE__ */ ((Crop2) => {
|
|
532
|
+
Crop2["FILL"] = "FILL";
|
|
533
|
+
Crop2["FIT"] = "FIT";
|
|
534
|
+
return Crop2;
|
|
535
|
+
})(Crop || {});
|
|
536
|
+
var ThumbnailsAlignment = /* @__PURE__ */ ((ThumbnailsAlignment2) => {
|
|
537
|
+
ThumbnailsAlignment2["TOP"] = "TOP";
|
|
538
|
+
ThumbnailsAlignment2["RIGHT"] = "RIGHT";
|
|
539
|
+
ThumbnailsAlignment2["BOTTOM"] = "BOTTOM";
|
|
540
|
+
ThumbnailsAlignment2["LEFT"] = "LEFT";
|
|
541
|
+
ThumbnailsAlignment2["NONE"] = "NONE";
|
|
542
|
+
return ThumbnailsAlignment2;
|
|
543
|
+
})(ThumbnailsAlignment || {});
|
|
544
|
+
var GIFType = /* @__PURE__ */ ((GIFType2) => {
|
|
545
|
+
GIFType2["NORMAL"] = "NORMAL";
|
|
546
|
+
GIFType2["STICKER"] = "STICKER";
|
|
547
|
+
return GIFType2;
|
|
548
|
+
})(GIFType || {});
|
|
549
|
+
var Source = /* @__PURE__ */ ((Source2) => {
|
|
550
|
+
Source2["HTML"] = "HTML";
|
|
551
|
+
Source2["ADSENSE"] = "ADSENSE";
|
|
552
|
+
return Source2;
|
|
553
|
+
})(Source || {});
|
|
554
|
+
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
555
|
+
StylesPosition2["START"] = "START";
|
|
556
|
+
StylesPosition2["END"] = "END";
|
|
557
|
+
StylesPosition2["TOP"] = "TOP";
|
|
558
|
+
StylesPosition2["HIDDEN"] = "HIDDEN";
|
|
559
|
+
return StylesPosition2;
|
|
560
|
+
})(StylesPosition || {});
|
|
561
|
+
var MapType = /* @__PURE__ */ ((MapType2) => {
|
|
562
|
+
MapType2["ROADMAP"] = "ROADMAP";
|
|
563
|
+
MapType2["SATELITE"] = "SATELITE";
|
|
564
|
+
MapType2["HYBRID"] = "HYBRID";
|
|
565
|
+
MapType2["TERRAIN"] = "TERRAIN";
|
|
566
|
+
return MapType2;
|
|
567
|
+
})(MapType || {});
|
|
568
|
+
var ViewRole = /* @__PURE__ */ ((ViewRole2) => {
|
|
569
|
+
ViewRole2["CREATOR"] = "CREATOR";
|
|
570
|
+
ViewRole2["VOTERS"] = "VOTERS";
|
|
571
|
+
ViewRole2["EVERYONE"] = "EVERYONE";
|
|
572
|
+
return ViewRole2;
|
|
573
|
+
})(ViewRole || {});
|
|
574
|
+
var VoteRole = /* @__PURE__ */ ((VoteRole2) => {
|
|
575
|
+
VoteRole2["SITE_MEMBERS"] = "SITE_MEMBERS";
|
|
576
|
+
VoteRole2["ALL"] = "ALL";
|
|
577
|
+
return VoteRole2;
|
|
578
|
+
})(VoteRole || {});
|
|
579
|
+
var PollLayoutType = /* @__PURE__ */ ((PollLayoutType2) => {
|
|
580
|
+
PollLayoutType2["LIST"] = "LIST";
|
|
581
|
+
PollLayoutType2["GRID"] = "GRID";
|
|
582
|
+
return PollLayoutType2;
|
|
583
|
+
})(PollLayoutType || {});
|
|
584
|
+
var PollLayoutDirection = /* @__PURE__ */ ((PollLayoutDirection2) => {
|
|
585
|
+
PollLayoutDirection2["LTR"] = "LTR";
|
|
586
|
+
PollLayoutDirection2["RTL"] = "RTL";
|
|
587
|
+
return PollLayoutDirection2;
|
|
588
|
+
})(PollLayoutDirection || {});
|
|
589
|
+
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
590
|
+
BackgroundType2["COLOR"] = "COLOR";
|
|
591
|
+
BackgroundType2["IMAGE"] = "IMAGE";
|
|
592
|
+
BackgroundType2["GRADIENT"] = "GRADIENT";
|
|
593
|
+
return BackgroundType2;
|
|
594
|
+
})(BackgroundType || {});
|
|
595
|
+
var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
|
|
596
|
+
DecorationType2["BOLD"] = "BOLD";
|
|
597
|
+
DecorationType2["ITALIC"] = "ITALIC";
|
|
598
|
+
DecorationType2["UNDERLINE"] = "UNDERLINE";
|
|
599
|
+
DecorationType2["SPOILER"] = "SPOILER";
|
|
600
|
+
DecorationType2["ANCHOR"] = "ANCHOR";
|
|
601
|
+
DecorationType2["MENTION"] = "MENTION";
|
|
602
|
+
DecorationType2["LINK"] = "LINK";
|
|
603
|
+
DecorationType2["COLOR"] = "COLOR";
|
|
604
|
+
DecorationType2["FONT_SIZE"] = "FONT_SIZE";
|
|
605
|
+
DecorationType2["EXTERNAL"] = "EXTERNAL";
|
|
606
|
+
DecorationType2["STRIKETHROUGH"] = "STRIKETHROUGH";
|
|
607
|
+
DecorationType2["SUPERSCRIPT"] = "SUPERSCRIPT";
|
|
608
|
+
DecorationType2["SUBSCRIPT"] = "SUBSCRIPT";
|
|
609
|
+
return DecorationType2;
|
|
610
|
+
})(DecorationType || {});
|
|
611
|
+
var FontType = /* @__PURE__ */ ((FontType2) => {
|
|
612
|
+
FontType2["PX"] = "PX";
|
|
613
|
+
FontType2["EM"] = "EM";
|
|
614
|
+
return FontType2;
|
|
615
|
+
})(FontType || {});
|
|
616
|
+
var Position = /* @__PURE__ */ ((Position2) => {
|
|
617
|
+
Position2["START"] = "START";
|
|
618
|
+
Position2["END"] = "END";
|
|
619
|
+
Position2["TOP"] = "TOP";
|
|
620
|
+
return Position2;
|
|
621
|
+
})(Position || {});
|
|
622
|
+
var AspectRatio = /* @__PURE__ */ ((AspectRatio2) => {
|
|
623
|
+
AspectRatio2["SQUARE"] = "SQUARE";
|
|
624
|
+
AspectRatio2["RECTANGLE"] = "RECTANGLE";
|
|
625
|
+
return AspectRatio2;
|
|
626
|
+
})(AspectRatio || {});
|
|
627
|
+
var Resizing = /* @__PURE__ */ ((Resizing2) => {
|
|
628
|
+
Resizing2["FILL"] = "FILL";
|
|
629
|
+
Resizing2["FIT"] = "FIT";
|
|
630
|
+
return Resizing2;
|
|
631
|
+
})(Resizing || {});
|
|
632
|
+
var Placement = /* @__PURE__ */ ((Placement2) => {
|
|
633
|
+
Placement2["IMAGE"] = "IMAGE";
|
|
634
|
+
Placement2["PRODUCT_INFO"] = "PRODUCT_INFO";
|
|
635
|
+
return Placement2;
|
|
636
|
+
})(Placement || {});
|
|
637
|
+
var Type = /* @__PURE__ */ ((Type2) => {
|
|
638
|
+
Type2["CONTAINED"] = "CONTAINED";
|
|
639
|
+
Type2["FRAMELESS"] = "FRAMELESS";
|
|
640
|
+
return Type2;
|
|
641
|
+
})(Type || {});
|
|
642
|
+
var Alignment = /* @__PURE__ */ ((Alignment2) => {
|
|
643
|
+
Alignment2["START"] = "START";
|
|
644
|
+
Alignment2["CENTER"] = "CENTER";
|
|
645
|
+
Alignment2["END"] = "END";
|
|
646
|
+
return Alignment2;
|
|
647
|
+
})(Alignment || {});
|
|
648
|
+
var Layout = /* @__PURE__ */ ((Layout2) => {
|
|
649
|
+
Layout2["STACKED"] = "STACKED";
|
|
650
|
+
Layout2["SIDE_BY_SIDE"] = "SIDE_BY_SIDE";
|
|
651
|
+
return Layout2;
|
|
652
|
+
})(Layout || {});
|
|
653
|
+
var AppType = /* @__PURE__ */ ((AppType2) => {
|
|
654
|
+
AppType2["PRODUCT"] = "PRODUCT";
|
|
655
|
+
AppType2["EVENT"] = "EVENT";
|
|
656
|
+
AppType2["BOOKING"] = "BOOKING";
|
|
657
|
+
return AppType2;
|
|
658
|
+
})(AppType || {});
|
|
659
|
+
var InitialExpandedItems = /* @__PURE__ */ ((InitialExpandedItems2) => {
|
|
660
|
+
InitialExpandedItems2["FIRST"] = "FIRST";
|
|
661
|
+
InitialExpandedItems2["ALL"] = "ALL";
|
|
662
|
+
InitialExpandedItems2["NONE"] = "NONE";
|
|
663
|
+
return InitialExpandedItems2;
|
|
664
|
+
})(InitialExpandedItems || {});
|
|
665
|
+
var Direction = /* @__PURE__ */ ((Direction2) => {
|
|
666
|
+
Direction2["LTR"] = "LTR";
|
|
667
|
+
Direction2["RTL"] = "RTL";
|
|
668
|
+
return Direction2;
|
|
669
|
+
})(Direction || {});
|
|
670
|
+
var VerticalAlignment = /* @__PURE__ */ ((VerticalAlignment2) => {
|
|
671
|
+
VerticalAlignment2["TOP"] = "TOP";
|
|
672
|
+
VerticalAlignment2["MIDDLE"] = "MIDDLE";
|
|
673
|
+
VerticalAlignment2["BOTTOM"] = "BOTTOM";
|
|
674
|
+
return VerticalAlignment2;
|
|
675
|
+
})(VerticalAlignment || {});
|
|
676
|
+
var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
677
|
+
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
678
|
+
return NullValue2;
|
|
679
|
+
})(NullValue || {});
|
|
680
|
+
var SupportedLanguage = /* @__PURE__ */ ((SupportedLanguage2) => {
|
|
681
|
+
SupportedLanguage2["UNDEFINED_SUPPORTED_LANGUAGE"] = "UNDEFINED_SUPPORTED_LANGUAGE";
|
|
682
|
+
SupportedLanguage2["AF"] = "AF";
|
|
683
|
+
SupportedLanguage2["SQ"] = "SQ";
|
|
684
|
+
SupportedLanguage2["AM"] = "AM";
|
|
685
|
+
SupportedLanguage2["AR"] = "AR";
|
|
686
|
+
SupportedLanguage2["HY"] = "HY";
|
|
687
|
+
SupportedLanguage2["AS"] = "AS";
|
|
688
|
+
SupportedLanguage2["AY"] = "AY";
|
|
689
|
+
SupportedLanguage2["AZ"] = "AZ";
|
|
690
|
+
SupportedLanguage2["BM"] = "BM";
|
|
691
|
+
SupportedLanguage2["EU"] = "EU";
|
|
692
|
+
SupportedLanguage2["BE"] = "BE";
|
|
693
|
+
SupportedLanguage2["BN"] = "BN";
|
|
694
|
+
SupportedLanguage2["BHO"] = "BHO";
|
|
695
|
+
SupportedLanguage2["BS"] = "BS";
|
|
696
|
+
SupportedLanguage2["BG"] = "BG";
|
|
697
|
+
SupportedLanguage2["CA"] = "CA";
|
|
698
|
+
SupportedLanguage2["CEB"] = "CEB";
|
|
699
|
+
SupportedLanguage2["ZH_CN"] = "ZH_CN";
|
|
700
|
+
SupportedLanguage2["ZH_TW"] = "ZH_TW";
|
|
701
|
+
SupportedLanguage2["ZH"] = "ZH";
|
|
702
|
+
SupportedLanguage2["CO"] = "CO";
|
|
703
|
+
SupportedLanguage2["HR"] = "HR";
|
|
704
|
+
SupportedLanguage2["CS"] = "CS";
|
|
705
|
+
SupportedLanguage2["DA"] = "DA";
|
|
706
|
+
SupportedLanguage2["DV"] = "DV";
|
|
707
|
+
SupportedLanguage2["DOI"] = "DOI";
|
|
708
|
+
SupportedLanguage2["NL"] = "NL";
|
|
709
|
+
SupportedLanguage2["EN"] = "EN";
|
|
710
|
+
SupportedLanguage2["EO"] = "EO";
|
|
711
|
+
SupportedLanguage2["ET"] = "ET";
|
|
712
|
+
SupportedLanguage2["EE"] = "EE";
|
|
713
|
+
SupportedLanguage2["FIL"] = "FIL";
|
|
714
|
+
SupportedLanguage2["FI"] = "FI";
|
|
715
|
+
SupportedLanguage2["FR"] = "FR";
|
|
716
|
+
SupportedLanguage2["FY"] = "FY";
|
|
717
|
+
SupportedLanguage2["GL"] = "GL";
|
|
718
|
+
SupportedLanguage2["KA"] = "KA";
|
|
719
|
+
SupportedLanguage2["DE"] = "DE";
|
|
720
|
+
SupportedLanguage2["EL"] = "EL";
|
|
721
|
+
SupportedLanguage2["GN"] = "GN";
|
|
722
|
+
SupportedLanguage2["GU"] = "GU";
|
|
723
|
+
SupportedLanguage2["HT"] = "HT";
|
|
724
|
+
SupportedLanguage2["HA"] = "HA";
|
|
725
|
+
SupportedLanguage2["HAW"] = "HAW";
|
|
726
|
+
SupportedLanguage2["HE"] = "HE";
|
|
727
|
+
SupportedLanguage2["HI"] = "HI";
|
|
728
|
+
SupportedLanguage2["HMN"] = "HMN";
|
|
729
|
+
SupportedLanguage2["HU"] = "HU";
|
|
730
|
+
SupportedLanguage2["IS"] = "IS";
|
|
731
|
+
SupportedLanguage2["IG"] = "IG";
|
|
732
|
+
SupportedLanguage2["ILO"] = "ILO";
|
|
733
|
+
SupportedLanguage2["ID"] = "ID";
|
|
734
|
+
SupportedLanguage2["GA"] = "GA";
|
|
735
|
+
SupportedLanguage2["IT"] = "IT";
|
|
736
|
+
SupportedLanguage2["JA"] = "JA";
|
|
737
|
+
SupportedLanguage2["JW"] = "JW";
|
|
738
|
+
SupportedLanguage2["KN"] = "KN";
|
|
739
|
+
SupportedLanguage2["KK"] = "KK";
|
|
740
|
+
SupportedLanguage2["KM"] = "KM";
|
|
741
|
+
SupportedLanguage2["RW"] = "RW";
|
|
742
|
+
SupportedLanguage2["GOM"] = "GOM";
|
|
743
|
+
SupportedLanguage2["KO"] = "KO";
|
|
744
|
+
SupportedLanguage2["KRI"] = "KRI";
|
|
745
|
+
SupportedLanguage2["KU"] = "KU";
|
|
746
|
+
SupportedLanguage2["CKB"] = "CKB";
|
|
747
|
+
SupportedLanguage2["KY"] = "KY";
|
|
748
|
+
SupportedLanguage2["LO"] = "LO";
|
|
749
|
+
SupportedLanguage2["LA"] = "LA";
|
|
750
|
+
SupportedLanguage2["LV"] = "LV";
|
|
751
|
+
SupportedLanguage2["LN"] = "LN";
|
|
752
|
+
SupportedLanguage2["LT"] = "LT";
|
|
753
|
+
SupportedLanguage2["LG"] = "LG";
|
|
754
|
+
SupportedLanguage2["LB"] = "LB";
|
|
755
|
+
SupportedLanguage2["MK"] = "MK";
|
|
756
|
+
SupportedLanguage2["MAI"] = "MAI";
|
|
757
|
+
SupportedLanguage2["MG"] = "MG";
|
|
758
|
+
SupportedLanguage2["MS"] = "MS";
|
|
759
|
+
SupportedLanguage2["ML"] = "ML";
|
|
760
|
+
SupportedLanguage2["MT"] = "MT";
|
|
761
|
+
SupportedLanguage2["MI"] = "MI";
|
|
762
|
+
SupportedLanguage2["MR"] = "MR";
|
|
763
|
+
SupportedLanguage2["MNI_MTEI"] = "MNI_MTEI";
|
|
764
|
+
SupportedLanguage2["LUS"] = "LUS";
|
|
765
|
+
SupportedLanguage2["MN"] = "MN";
|
|
766
|
+
SupportedLanguage2["MY"] = "MY";
|
|
767
|
+
SupportedLanguage2["NE"] = "NE";
|
|
768
|
+
SupportedLanguage2["NO"] = "NO";
|
|
769
|
+
SupportedLanguage2["NY"] = "NY";
|
|
770
|
+
SupportedLanguage2["OR"] = "OR";
|
|
771
|
+
SupportedLanguage2["OM"] = "OM";
|
|
772
|
+
SupportedLanguage2["PS"] = "PS";
|
|
773
|
+
SupportedLanguage2["FA"] = "FA";
|
|
774
|
+
SupportedLanguage2["PL"] = "PL";
|
|
775
|
+
SupportedLanguage2["PT"] = "PT";
|
|
776
|
+
SupportedLanguage2["PA"] = "PA";
|
|
777
|
+
SupportedLanguage2["QU"] = "QU";
|
|
778
|
+
SupportedLanguage2["RO"] = "RO";
|
|
779
|
+
SupportedLanguage2["RU"] = "RU";
|
|
780
|
+
SupportedLanguage2["SM"] = "SM";
|
|
781
|
+
SupportedLanguage2["SA"] = "SA";
|
|
782
|
+
SupportedLanguage2["GD"] = "GD";
|
|
783
|
+
SupportedLanguage2["NSO"] = "NSO";
|
|
784
|
+
SupportedLanguage2["SR"] = "SR";
|
|
785
|
+
SupportedLanguage2["ST"] = "ST";
|
|
786
|
+
SupportedLanguage2["SN"] = "SN";
|
|
787
|
+
SupportedLanguage2["SD"] = "SD";
|
|
788
|
+
SupportedLanguage2["SI"] = "SI";
|
|
789
|
+
SupportedLanguage2["SK"] = "SK";
|
|
790
|
+
SupportedLanguage2["SL"] = "SL";
|
|
791
|
+
SupportedLanguage2["SO"] = "SO";
|
|
792
|
+
SupportedLanguage2["ES"] = "ES";
|
|
793
|
+
SupportedLanguage2["SU"] = "SU";
|
|
794
|
+
SupportedLanguage2["SW"] = "SW";
|
|
795
|
+
SupportedLanguage2["SV"] = "SV";
|
|
796
|
+
SupportedLanguage2["TL"] = "TL";
|
|
797
|
+
SupportedLanguage2["TG"] = "TG";
|
|
798
|
+
SupportedLanguage2["TA"] = "TA";
|
|
799
|
+
SupportedLanguage2["TT"] = "TT";
|
|
800
|
+
SupportedLanguage2["TE"] = "TE";
|
|
801
|
+
SupportedLanguage2["TH"] = "TH";
|
|
802
|
+
SupportedLanguage2["TI"] = "TI";
|
|
803
|
+
SupportedLanguage2["TS"] = "TS";
|
|
804
|
+
SupportedLanguage2["TR"] = "TR";
|
|
805
|
+
SupportedLanguage2["TK"] = "TK";
|
|
806
|
+
SupportedLanguage2["AK"] = "AK";
|
|
807
|
+
SupportedLanguage2["UK"] = "UK";
|
|
808
|
+
SupportedLanguage2["UR"] = "UR";
|
|
809
|
+
SupportedLanguage2["UG"] = "UG";
|
|
810
|
+
SupportedLanguage2["UZ"] = "UZ";
|
|
811
|
+
SupportedLanguage2["VI"] = "VI";
|
|
812
|
+
SupportedLanguage2["CY"] = "CY";
|
|
813
|
+
SupportedLanguage2["XH"] = "XH";
|
|
814
|
+
SupportedLanguage2["YI"] = "YI";
|
|
815
|
+
SupportedLanguage2["YO"] = "YO";
|
|
816
|
+
SupportedLanguage2["ZU"] = "ZU";
|
|
817
|
+
return SupportedLanguage2;
|
|
818
|
+
})(SupportedLanguage || {});
|
|
819
|
+
|
|
366
820
|
// src/multilingual-machine-v3-translatable-content-machine-translation.meta.ts
|
|
367
821
|
function machineTranslate2() {
|
|
368
822
|
const payload = {};
|
|
@@ -406,6 +860,45 @@ function bulkMachineTranslate2() {
|
|
|
406
860
|
}
|
|
407
861
|
// Annotate the CommonJS export names for ESM import in node:
|
|
408
862
|
0 && (module.exports = {
|
|
863
|
+
AlignmentOriginal,
|
|
864
|
+
AppTypeOriginal,
|
|
865
|
+
AspectRatioOriginal,
|
|
866
|
+
BackgroundTypeOriginal,
|
|
867
|
+
ButtonDataTypeOriginal,
|
|
868
|
+
CropOriginal,
|
|
869
|
+
DecorationTypeOriginal,
|
|
870
|
+
DirectionOriginal,
|
|
871
|
+
DividerDataAlignmentOriginal,
|
|
872
|
+
FontTypeOriginal,
|
|
873
|
+
FormatOriginal,
|
|
874
|
+
GIFTypeOriginal,
|
|
875
|
+
InitialExpandedItemsOriginal,
|
|
876
|
+
LayoutOriginal,
|
|
877
|
+
LayoutTypeOriginal,
|
|
878
|
+
LineStyleOriginal,
|
|
879
|
+
MapTypeOriginal,
|
|
880
|
+
NodeTypeOriginal,
|
|
881
|
+
NullValueOriginal,
|
|
882
|
+
OrientationOriginal,
|
|
883
|
+
PlacementOriginal,
|
|
884
|
+
PluginContainerDataAlignmentOriginal,
|
|
885
|
+
PollLayoutDirectionOriginal,
|
|
886
|
+
PollLayoutTypeOriginal,
|
|
887
|
+
PositionOriginal,
|
|
888
|
+
ResizingOriginal,
|
|
889
|
+
SourceOriginal,
|
|
890
|
+
StylesPositionOriginal,
|
|
891
|
+
SupportedLanguageOriginal,
|
|
892
|
+
TargetOriginal,
|
|
893
|
+
TextAlignmentOriginal,
|
|
894
|
+
ThumbnailsAlignmentOriginal,
|
|
895
|
+
TypeOriginal,
|
|
896
|
+
VerticalAlignmentOriginal,
|
|
897
|
+
ViewModeOriginal,
|
|
898
|
+
ViewRoleOriginal,
|
|
899
|
+
VoteRoleOriginal,
|
|
900
|
+
WidthOriginal,
|
|
901
|
+
WidthTypeOriginal,
|
|
409
902
|
bulkMachineTranslate,
|
|
410
903
|
machineTranslate
|
|
411
904
|
});
|