@wix/auto_sdk_multilingual_translation-published-contents 1.0.20 → 1.0.21

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.
Files changed (17) hide show
  1. package/build/cjs/src/multilingual-localization-public-v3-published-content-translation-published-contents.types.d.ts +99 -33
  2. package/build/cjs/src/multilingual-localization-public-v3-published-content-translation-published-contents.types.js.map +1 -1
  3. package/build/cjs/src/multilingual-localization-public-v3-published-content-translation-published-contents.universal.d.ts +115 -33
  4. package/build/cjs/src/multilingual-localization-public-v3-published-content-translation-published-contents.universal.js.map +1 -1
  5. package/build/es/src/multilingual-localization-public-v3-published-content-translation-published-contents.types.d.ts +99 -33
  6. package/build/es/src/multilingual-localization-public-v3-published-content-translation-published-contents.types.js.map +1 -1
  7. package/build/es/src/multilingual-localization-public-v3-published-content-translation-published-contents.universal.d.ts +115 -33
  8. package/build/es/src/multilingual-localization-public-v3-published-content-translation-published-contents.universal.js.map +1 -1
  9. package/build/internal/cjs/src/multilingual-localization-public-v3-published-content-translation-published-contents.types.d.ts +99 -33
  10. package/build/internal/cjs/src/multilingual-localization-public-v3-published-content-translation-published-contents.types.js.map +1 -1
  11. package/build/internal/cjs/src/multilingual-localization-public-v3-published-content-translation-published-contents.universal.d.ts +115 -33
  12. package/build/internal/cjs/src/multilingual-localization-public-v3-published-content-translation-published-contents.universal.js.map +1 -1
  13. package/build/internal/es/src/multilingual-localization-public-v3-published-content-translation-published-contents.types.d.ts +99 -33
  14. package/build/internal/es/src/multilingual-localization-public-v3-published-content-translation-published-contents.types.js.map +1 -1
  15. package/build/internal/es/src/multilingual-localization-public-v3-published-content-translation-published-contents.universal.d.ts +115 -33
  16. package/build/internal/es/src/multilingual-localization-public-v3-published-content-translation-published-contents.universal.js.map +1 -1
  17. package/package.json +3 -3
@@ -54,7 +54,7 @@ export interface SchemaKey {
54
54
  * + `SITE`: A custom schema for a specific site.
55
55
  * @immutable
56
56
  */
57
- scope?: SchemaScope;
57
+ scope?: SchemaScopeWithLiterals;
58
58
  }
59
59
  export declare enum SchemaScope {
60
60
  UNKNOWN_SCOPE = "UNKNOWN_SCOPE",
@@ -63,6 +63,8 @@ export declare enum SchemaScope {
63
63
  /** Custom schema for a specific site. */
64
64
  SITE = "SITE"
65
65
  }
66
+ /** @enumType */
67
+ export type SchemaScopeWithLiterals = SchemaScope | 'UNKNOWN_SCOPE' | 'GLOBAL' | 'SITE';
66
68
  export interface PublishedContentField extends PublishedContentFieldValueOneOf {
67
69
  /**
68
70
  * Plain text.
@@ -170,7 +172,7 @@ export interface Node extends NodeDataOneOf {
170
172
  /** LayoutData layout_data = 31; // Data for a layout node. Reserved for future use. */
171
173
  layoutCellData?: LayoutCellData;
172
174
  /** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
173
- type?: NodeType;
175
+ type?: NodeTypeWithLiterals;
174
176
  /** Node ID. */
175
177
  id?: string;
176
178
  /** A list of child nodes. */
@@ -271,6 +273,8 @@ export declare enum NodeType {
271
273
  LAYOUT = "LAYOUT",
272
274
  LAYOUT_CELL = "LAYOUT_CELL"
273
275
  }
276
+ /** @enumType */
277
+ export type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL';
274
278
  export interface NodeStyle {
275
279
  /** The top padding value in pixels. */
276
280
  paddingTop?: string | null;
@@ -283,7 +287,7 @@ export interface ButtonData {
283
287
  /** Styling for the button's container. */
284
288
  containerData?: PluginContainerData;
285
289
  /** The button type. */
286
- type?: Type;
290
+ type?: TypeWithLiterals;
287
291
  /** Styling for the button. */
288
292
  styles?: Styles;
289
293
  /** The text to display on the button. */
@@ -324,7 +328,7 @@ export interface PluginContainerData {
324
328
  /** The width of the node when it's displayed. */
325
329
  width?: PluginContainerDataWidth;
326
330
  /** The node's alignment within its container. */
327
- alignment?: PluginContainerDataAlignment;
331
+ alignment?: PluginContainerDataAlignmentWithLiterals;
328
332
  /** Spoiler cover settings for the node. */
329
333
  spoiler?: Spoiler;
330
334
  /** The height of the node when it's displayed. */
@@ -342,6 +346,8 @@ export declare enum WidthType {
342
346
  /** coast-to-coast display */
343
347
  FULL_WIDTH = "FULL_WIDTH"
344
348
  }
349
+ /** @enumType */
350
+ export type WidthTypeWithLiterals = WidthType | 'CONTENT' | 'SMALL' | 'ORIGINAL' | 'FULL_WIDTH';
345
351
  export interface PluginContainerDataWidth extends PluginContainerDataWidthDataOneOf {
346
352
  /**
347
353
  * One of the following predefined width options:
@@ -350,7 +356,7 @@ export interface PluginContainerDataWidth extends PluginContainerDataWidthDataOn
350
356
  * `ORIGINAL`: For `imageData` containers only. The width of the container matches the original image width.
351
357
  * `FULL_WIDTH`: For `imageData` containers only. The image container takes up the full width of the screen.
352
358
  */
353
- size?: WidthType;
359
+ size?: WidthTypeWithLiterals;
354
360
  /** A custom width value in pixels. */
355
361
  custom?: string | null;
356
362
  }
@@ -363,7 +369,7 @@ export interface PluginContainerDataWidthDataOneOf {
363
369
  * `ORIGINAL`: For `imageData` containers only. The width of the container matches the original image width.
364
370
  * `FULL_WIDTH`: For `imageData` containers only. The image container takes up the full width of the screen.
365
371
  */
366
- size?: WidthType;
372
+ size?: WidthTypeWithLiterals;
367
373
  /** A custom width value in pixels. */
368
374
  custom?: string | null;
369
375
  }
@@ -375,6 +381,8 @@ export declare enum PluginContainerDataAlignment {
375
381
  /** Right Alignment */
376
382
  RIGHT = "RIGHT"
377
383
  }
384
+ /** @enumType */
385
+ export type PluginContainerDataAlignmentWithLiterals = PluginContainerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
378
386
  export interface Spoiler {
379
387
  /** Sets whether the spoiler cover is enabled for this node. Defaults to `false`. */
380
388
  enabled?: boolean | null;
@@ -393,6 +401,8 @@ export declare enum Type {
393
401
  /** Triggers custom action that is defined in plugin configuration by the consumer */
394
402
  ACTION = "ACTION"
395
403
  }
404
+ /** @enumType */
405
+ export type TypeWithLiterals = Type | 'LINK' | 'ACTION';
396
406
  export interface Styles {
397
407
  /**
398
408
  * Deprecated: Use `borderWidth` and `borderRadius` instead.
@@ -458,7 +468,7 @@ export interface Link extends LinkDataOneOf {
458
468
  * `PARENT` - Opens the linked document in the link's parent frame.
459
469
  * `TOP` - Opens the linked document in the full body of the link's browser tab or window.
460
470
  */
461
- target?: Target;
471
+ target?: TargetWithLiterals;
462
472
  /** The HTML `rel` attribute value for the link. This object specifies the relationship between the current document and the linked document. */
463
473
  rel?: Rel;
464
474
  /** A serialized object used for a custom or external link panel. */
@@ -481,6 +491,8 @@ export declare enum Target {
481
491
  /** Opens the linked document in the full body of the window */
482
492
  TOP = "TOP"
483
493
  }
494
+ /** @enumType */
495
+ export type TargetWithLiterals = Target | 'SELF' | 'BLANK' | 'PARENT' | 'TOP';
484
496
  export interface Rel {
485
497
  /** Indicates to search engine crawlers not to follow the link. Defaults to `false`. */
486
498
  nofollow?: boolean | null;
@@ -497,7 +509,7 @@ export interface CodeBlockData {
497
509
  }
498
510
  export interface TextStyle {
499
511
  /** Text alignment. Defaults to `AUTO`. */
500
- textAlignment?: TextAlignment;
512
+ textAlignment?: TextAlignmentWithLiterals;
501
513
  /** A CSS `line-height` value for the text expressed as a ratio relative to the font size. For example, if the font size is 20px, a `lineHeight` value of `'1.5'`` results in a line height of 30px. */
502
514
  lineHeight?: string | null;
503
515
  }
@@ -513,15 +525,17 @@ export declare enum TextAlignment {
513
525
  /** Text is spaced to line up its left and right edges to the left and right edges of the line box, except for the last line */
514
526
  JUSTIFY = "JUSTIFY"
515
527
  }
528
+ /** @enumType */
529
+ export type TextAlignmentWithLiterals = TextAlignment | 'AUTO' | 'LEFT' | 'RIGHT' | 'CENTER' | 'JUSTIFY';
516
530
  export interface DividerData {
517
531
  /** Styling for the divider's container. */
518
532
  containerData?: PluginContainerData;
519
533
  /** Divider line style. */
520
- lineStyle?: LineStyle;
534
+ lineStyle?: LineStyleWithLiterals;
521
535
  /** Divider width. */
522
- width?: Width;
536
+ width?: WidthWithLiterals;
523
537
  /** Divider alignment. */
524
- alignment?: Alignment;
538
+ alignment?: AlignmentWithLiterals;
525
539
  }
526
540
  export declare enum LineStyle {
527
541
  /** Single Line */
@@ -533,6 +547,8 @@ export declare enum LineStyle {
533
547
  /** Dotted Line */
534
548
  DOTTED = "DOTTED"
535
549
  }
550
+ /** @enumType */
551
+ export type LineStyleWithLiterals = LineStyle | 'SINGLE' | 'DOUBLE' | 'DASHED' | 'DOTTED';
536
552
  export declare enum Width {
537
553
  /** Large line */
538
554
  LARGE = "LARGE",
@@ -541,6 +557,8 @@ export declare enum Width {
541
557
  /** Small line */
542
558
  SMALL = "SMALL"
543
559
  }
560
+ /** @enumType */
561
+ export type WidthWithLiterals = Width | 'LARGE' | 'MEDIUM' | 'SMALL';
544
562
  export declare enum Alignment {
545
563
  /** Center alignment */
546
564
  CENTER = "CENTER",
@@ -549,6 +567,8 @@ export declare enum Alignment {
549
567
  /** Right alignment */
550
568
  RIGHT = "RIGHT"
551
569
  }
570
+ /** @enumType */
571
+ export type AlignmentWithLiterals = Alignment | 'CENTER' | 'LEFT' | 'RIGHT';
552
572
  export interface FileData {
553
573
  /** Styling for the file's container. */
554
574
  containerData?: PluginContainerData;
@@ -580,6 +600,8 @@ export declare enum ViewMode {
580
600
  /** Mini PDF view */
581
601
  MINI = "MINI"
582
602
  }
603
+ /** @enumType */
604
+ export type ViewModeWithLiterals = ViewMode | 'NONE' | 'FULL' | 'MINI';
583
605
  export interface FileSource extends FileSourceDataOneOf {
584
606
  /** The absolute URL for the file's source. */
585
607
  url?: string | null;
@@ -612,7 +634,7 @@ export interface PDFSettings {
612
634
  * `FULL` : A full page view of the PDF is displayed.
613
635
  * `MINI` : A mini view of the PDF is displayed.
614
636
  */
615
- viewMode?: ViewMode;
637
+ viewMode?: ViewModeWithLiterals;
616
638
  /** Sets whether the PDF download button is disabled. Defaults to `false`. */
617
639
  disableDownload?: boolean | null;
618
640
  /** Sets whether the PDF print button is disabled. Defaults to `false`. */
@@ -699,18 +721,24 @@ export declare enum LayoutType {
699
721
  /** Fullsize images type */
700
722
  FULLSIZE = "FULLSIZE"
701
723
  }
724
+ /** @enumType */
725
+ export type LayoutTypeWithLiterals = LayoutType | 'COLLAGE' | 'MASONRY' | 'GRID' | 'THUMBNAIL' | 'SLIDER' | 'SLIDESHOW' | 'PANORAMA' | 'COLUMN' | 'MAGIC' | 'FULLSIZE';
702
726
  export declare enum Orientation {
703
727
  /** Rows Orientation */
704
728
  ROWS = "ROWS",
705
729
  /** Columns Orientation */
706
730
  COLUMNS = "COLUMNS"
707
731
  }
732
+ /** @enumType */
733
+ export type OrientationWithLiterals = Orientation | 'ROWS' | 'COLUMNS';
708
734
  export declare enum Crop {
709
735
  /** Crop to fill */
710
736
  FILL = "FILL",
711
737
  /** Crop to fit */
712
738
  FIT = "FIT"
713
739
  }
740
+ /** @enumType */
741
+ export type CropWithLiterals = Crop | 'FILL' | 'FIT';
714
742
  export declare enum ThumbnailsAlignment {
715
743
  /** Top alignment */
716
744
  TOP = "TOP",
@@ -723,13 +751,15 @@ export declare enum ThumbnailsAlignment {
723
751
  /** No thumbnail */
724
752
  NONE = "NONE"
725
753
  }
754
+ /** @enumType */
755
+ export type ThumbnailsAlignmentWithLiterals = ThumbnailsAlignment | 'TOP' | 'RIGHT' | 'BOTTOM' | 'LEFT' | 'NONE';
726
756
  export interface Layout {
727
757
  /** Gallery layout type. */
728
- type?: LayoutType;
758
+ type?: LayoutTypeWithLiterals;
729
759
  /** Sets whether horizontal scroll is enabled. Defaults to `true` unless the layout `type` is set to `GRID` or `COLLAGE`. */
730
760
  horizontalScroll?: boolean | null;
731
761
  /** Gallery orientation. */
732
- orientation?: Orientation;
762
+ orientation?: OrientationWithLiterals;
733
763
  /** The number of columns to display on full size screens. */
734
764
  numberOfColumns?: number | null;
735
765
  /** The number of columns to display on mobile screens. */
@@ -741,13 +771,13 @@ export interface ItemStyle {
741
771
  /** Item ratio */
742
772
  ratio?: number | null;
743
773
  /** Sets how item images are cropped. */
744
- crop?: Crop;
774
+ crop?: CropWithLiterals;
745
775
  /** The spacing between items in pixels. */
746
776
  spacing?: number | null;
747
777
  }
748
778
  export interface Thumbnails {
749
779
  /** Thumbnail alignment. */
750
- placement?: ThumbnailsAlignment;
780
+ placement?: ThumbnailsAlignmentWithLiterals;
751
781
  /** Spacing between thumbnails in pixels. */
752
782
  spacing?: number | null;
753
783
  }
@@ -763,7 +793,7 @@ export interface GIFData {
763
793
  /** Width in pixels. */
764
794
  width?: number;
765
795
  /** Type of GIF (Sticker or NORMAL). Defaults to `NORMAL`. */
766
- gifType?: GIFType;
796
+ gifType?: GIFTypeWithLiterals;
767
797
  }
768
798
  export interface GIF {
769
799
  /**
@@ -786,6 +816,8 @@ export declare enum GIFType {
786
816
  NORMAL = "NORMAL",
787
817
  STICKER = "STICKER"
788
818
  }
819
+ /** @enumType */
820
+ export type GIFTypeWithLiterals = GIFType | 'NORMAL' | 'STICKER';
789
821
  export interface HeadingData {
790
822
  /** Heading level from 1-6. */
791
823
  level?: number;
@@ -807,7 +839,7 @@ export interface HTMLData extends HTMLDataDataOneOf {
807
839
  /** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */
808
840
  containerData?: PluginContainerData;
809
841
  /** The type of HTML code. */
810
- source?: Source;
842
+ source?: SourceWithLiterals;
811
843
  /** If container height is aligned with its content height. Defaults to `true`. */
812
844
  autoHeight?: boolean | null;
813
845
  }
@@ -827,6 +859,8 @@ export declare enum Source {
827
859
  HTML = "HTML",
828
860
  ADSENSE = "ADSENSE"
829
861
  }
862
+ /** @enumType */
863
+ export type SourceWithLiterals = Source | 'HTML' | 'ADSENSE';
830
864
  export interface ImageData {
831
865
  /** Styling for the image's container. */
832
866
  containerData?: PluginContainerData;
@@ -891,6 +925,8 @@ export declare enum Position {
891
925
  /** Thumbnail hidden and not displayed */
892
926
  HIDDEN = "HIDDEN"
893
927
  }
928
+ /** @enumType */
929
+ export type PositionWithLiterals = Position | 'START' | 'END' | 'TOP' | 'HIDDEN';
894
930
  export interface LinkPreviewDataStyles {
895
931
  /**
896
932
  * Background color as a hexadecimal value.
@@ -922,7 +958,7 @@ export interface LinkPreviewDataStyles {
922
958
  */
923
959
  borderColor?: string | null;
924
960
  /** Position of thumbnail. Defaults to `START`. */
925
- thumbnailPosition?: Position;
961
+ thumbnailPosition?: PositionWithLiterals;
926
962
  }
927
963
  export interface MapData {
928
964
  /** Styling for the map's container. */
@@ -952,7 +988,7 @@ export interface MapSettings {
952
988
  /** Initial zoom value. */
953
989
  initialZoom?: number | null;
954
990
  /** Map type. `HYBRID` is a combination of the `ROADMAP` and `SATELLITE` map types. */
955
- mapType?: MapType;
991
+ mapType?: MapTypeWithLiterals;
956
992
  }
957
993
  export declare enum MapType {
958
994
  /** Roadmap map type */
@@ -964,6 +1000,8 @@ export declare enum MapType {
964
1000
  /** Terrain map type */
965
1001
  TERRAIN = "TERRAIN"
966
1002
  }
1003
+ /** @enumType */
1004
+ export type MapTypeWithLiterals = MapType | 'ROADMAP' | 'SATELITE' | 'HYBRID' | 'TERRAIN';
967
1005
  export interface ParagraphData {
968
1006
  /** Styling for the paragraph text. */
969
1007
  textStyle?: TextStyle;
@@ -990,17 +1028,21 @@ export declare enum ViewRole {
990
1028
  /** Anyone can see the results, even if one didn't vote */
991
1029
  EVERYONE = "EVERYONE"
992
1030
  }
1031
+ /** @enumType */
1032
+ export type ViewRoleWithLiterals = ViewRole | 'CREATOR' | 'VOTERS' | 'EVERYONE';
993
1033
  export declare enum VoteRole {
994
1034
  /** Logged in member */
995
1035
  SITE_MEMBERS = "SITE_MEMBERS",
996
1036
  /** Anyone */
997
1037
  ALL = "ALL"
998
1038
  }
1039
+ /** @enumType */
1040
+ export type VoteRoleWithLiterals = VoteRole | 'SITE_MEMBERS' | 'ALL';
999
1041
  export interface Permissions {
1000
1042
  /** Sets who can view the poll results. */
1001
- view?: ViewRole;
1043
+ view?: ViewRoleWithLiterals;
1002
1044
  /** Sets who can vote. */
1003
- vote?: VoteRole;
1045
+ vote?: VoteRoleWithLiterals;
1004
1046
  /** Sets whether one voter can vote multiple times. Defaults to `false`. */
1005
1047
  allowMultipleVotes?: boolean | null;
1006
1048
  }
@@ -1026,17 +1068,21 @@ export declare enum PollLayoutType {
1026
1068
  /** Grid */
1027
1069
  GRID = "GRID"
1028
1070
  }
1071
+ /** @enumType */
1072
+ export type PollLayoutTypeWithLiterals = PollLayoutType | 'LIST' | 'GRID';
1029
1073
  export declare enum PollLayoutDirection {
1030
1074
  /** Left-to-right */
1031
1075
  LTR = "LTR",
1032
1076
  /** Right-to-left */
1033
1077
  RTL = "RTL"
1034
1078
  }
1079
+ /** @enumType */
1080
+ export type PollLayoutDirectionWithLiterals = PollLayoutDirection | 'LTR' | 'RTL';
1035
1081
  export interface PollLayout {
1036
1082
  /** The layout for displaying the voting options. */
1037
- type?: PollLayoutType;
1083
+ type?: PollLayoutTypeWithLiterals;
1038
1084
  /** The direction of the text displayed in the voting options. Text can be displayed either right-to-left or left-to-right. */
1039
- direction?: PollLayoutDirection;
1085
+ direction?: PollLayoutDirectionWithLiterals;
1040
1086
  /** Sets whether to display the main poll image. Defaults to `false`. */
1041
1087
  enableImage?: boolean | null;
1042
1088
  }
@@ -1052,6 +1098,8 @@ export declare enum BackgroundType {
1052
1098
  /** Gradiant background type */
1053
1099
  GRADIENT = "GRADIENT"
1054
1100
  }
1101
+ /** @enumType */
1102
+ export type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
1055
1103
  export interface Gradient {
1056
1104
  /** The gradient angle in degrees. */
1057
1105
  angle?: number | null;
@@ -1077,7 +1125,7 @@ export interface Background extends BackgroundBackgroundOneOf {
1077
1125
  /** Details for a gradient background. */
1078
1126
  gradient?: Gradient;
1079
1127
  /** Background type. For each option, include the relevant details. */
1080
- type?: BackgroundType;
1128
+ type?: BackgroundTypeWithLiterals;
1081
1129
  }
1082
1130
  /** @oneof */
1083
1131
  export interface BackgroundBackgroundOneOf {
@@ -1156,7 +1204,7 @@ export interface Decoration extends DecorationDataOneOf {
1156
1204
  /** Data for a strikethrough decoration. Defaults to `true`. */
1157
1205
  strikethroughData?: boolean | null;
1158
1206
  /** The type of decoration to apply. */
1159
- type?: DecorationType;
1207
+ type?: DecorationTypeWithLiterals;
1160
1208
  }
1161
1209
  /** @oneof */
1162
1210
  export interface DecorationDataOneOf {
@@ -1194,6 +1242,8 @@ export declare enum DecorationType {
1194
1242
  EXTERNAL = "EXTERNAL",
1195
1243
  STRIKETHROUGH = "STRIKETHROUGH"
1196
1244
  }
1245
+ /** @enumType */
1246
+ export type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH';
1197
1247
  export interface AnchorData {
1198
1248
  /** The target node's ID. */
1199
1249
  anchor?: string;
@@ -1218,7 +1268,7 @@ export interface MentionData {
1218
1268
  }
1219
1269
  export interface FontSizeData {
1220
1270
  /** The units used for the font size. */
1221
- unit?: FontType;
1271
+ unit?: FontTypeWithLiterals;
1222
1272
  /** Font size value. */
1223
1273
  value?: number | null;
1224
1274
  }
@@ -1226,6 +1276,8 @@ export declare enum FontType {
1226
1276
  PX = "PX",
1227
1277
  EM = "EM"
1228
1278
  }
1279
+ /** @enumType */
1280
+ export type FontTypeWithLiterals = FontType | 'PX' | 'EM';
1229
1281
  export interface SpoilerData {
1230
1282
  /** Spoiler ID. */
1231
1283
  id?: string | null;
@@ -1236,7 +1288,7 @@ export interface AppEmbedData extends AppEmbedDataAppDataOneOf {
1236
1288
  /** Data for embedded Wix Events content. */
1237
1289
  eventData?: EventData;
1238
1290
  /** The type of Wix App content being embedded. */
1239
- type?: AppType;
1291
+ type?: AppTypeWithLiterals;
1240
1292
  /** The ID of the embedded content. */
1241
1293
  itemId?: string | null;
1242
1294
  /** The name of the embedded content. */
@@ -1263,6 +1315,8 @@ export declare enum AppType {
1263
1315
  EVENT = "EVENT",
1264
1316
  BOOKING = "BOOKING"
1265
1317
  }
1318
+ /** @enumType */
1319
+ export type AppTypeWithLiterals = AppType | 'PRODUCT' | 'EVENT' | 'BOOKING';
1266
1320
  export interface BookingData {
1267
1321
  /** Booking duration in minutes. */
1268
1322
  durations?: string | null;
@@ -1341,9 +1395,9 @@ export interface CollapsibleListData {
1341
1395
  /** If `true`, only one item can be expanded at a time. Defaults to `false`. */
1342
1396
  expandOnlyOne?: boolean | null;
1343
1397
  /** Sets which items are expanded when the page loads. */
1344
- initialExpandedItems?: InitialExpandedItems;
1398
+ initialExpandedItems?: InitialExpandedItemsWithLiterals;
1345
1399
  /** The direction of the text in the list. Either left-to-right or right-to-left. */
1346
- direction?: Direction;
1400
+ direction?: DirectionWithLiterals;
1347
1401
  /** If `true`, The collapsible item will appear in search results as an FAQ. */
1348
1402
  isQapageData?: boolean | null;
1349
1403
  }
@@ -1355,12 +1409,16 @@ export declare enum InitialExpandedItems {
1355
1409
  /** All items collapsed initally */
1356
1410
  NONE = "NONE"
1357
1411
  }
1412
+ /** @enumType */
1413
+ export type InitialExpandedItemsWithLiterals = InitialExpandedItems | 'FIRST' | 'ALL' | 'NONE';
1358
1414
  export declare enum Direction {
1359
1415
  /** Left-to-right */
1360
1416
  LTR = "LTR",
1361
1417
  /** Right-to-left */
1362
1418
  RTL = "RTL"
1363
1419
  }
1420
+ /** @enumType */
1421
+ export type DirectionWithLiterals = Direction | 'LTR' | 'RTL';
1364
1422
  export interface TableData {
1365
1423
  /** Styling for the table's container. */
1366
1424
  containerData?: PluginContainerData;
@@ -1398,9 +1456,11 @@ export declare enum VerticalAlignment {
1398
1456
  /** Bottom alignment */
1399
1457
  BOTTOM = "BOTTOM"
1400
1458
  }
1459
+ /** @enumType */
1460
+ export type VerticalAlignmentWithLiterals = VerticalAlignment | 'TOP' | 'MIDDLE' | 'BOTTOM';
1401
1461
  export interface CellStyle {
1402
1462
  /** Vertical alignment for the cell's text. */
1403
- verticalAlignment?: VerticalAlignment;
1463
+ verticalAlignment?: VerticalAlignmentWithLiterals;
1404
1464
  /**
1405
1465
  * Cell background color as a hexadecimal value.
1406
1466
  * @format COLOR_HEX
@@ -1439,6 +1499,8 @@ export declare enum NullValue {
1439
1499
  /** Null value. */
1440
1500
  NULL_VALUE = "NULL_VALUE"
1441
1501
  }
1502
+ /** @enumType */
1503
+ export type NullValueWithLiterals = NullValue | 'NULL_VALUE';
1442
1504
  /**
1443
1505
  * `ListValue` is a wrapper around a repeated field of values.
1444
1506
  *
@@ -1663,12 +1725,14 @@ export interface Sorting {
1663
1725
  */
1664
1726
  fieldName?: string;
1665
1727
  /** Sort order. */
1666
- order?: SortOrder;
1728
+ order?: SortOrderWithLiterals;
1667
1729
  }
1668
1730
  export declare enum SortOrder {
1669
1731
  ASC = "ASC",
1670
1732
  DESC = "DESC"
1671
1733
  }
1734
+ /** @enumType */
1735
+ export type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
1672
1736
  export interface CursorPaging {
1673
1737
  /**
1674
1738
  * Maximum number of items to return in the results.
@@ -1828,7 +1892,7 @@ export interface IdentificationData extends IdentificationDataIdOneOf {
1828
1892
  */
1829
1893
  appId?: string;
1830
1894
  /** @readonly */
1831
- identityType?: WebhookIdentityType;
1895
+ identityType?: WebhookIdentityTypeWithLiterals;
1832
1896
  }
1833
1897
  /** @oneof */
1834
1898
  export interface IdentificationDataIdOneOf {
@@ -1860,3 +1924,5 @@ export declare enum WebhookIdentityType {
1860
1924
  WIX_USER = "WIX_USER",
1861
1925
  APP = "APP"
1862
1926
  }
1927
+ /** @enumType */
1928
+ export type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
@@ -1 +1 @@
1
- {"version":3,"file":"multilingual-localization-public-v3-published-content-translation-published-contents.types.js","sourceRoot":"","sources":["../../../src/multilingual-localization-public-v3-published-content-translation-published-contents.types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"multilingual-localization-public-v3-published-content-translation-published-contents.types.js","sourceRoot":"","sources":["../../../src/multilingual-localization-public-v3-published-content-translation-published-contents.types.ts"],"names":[],"mappings":"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"}