@wix/auto_sdk_comments_comments 1.0.13 → 1.0.14
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/src/comments-v2-comment-comments.types.d.ts +115 -41
- package/build/cjs/src/comments-v2-comment-comments.types.js.map +1 -1
- package/build/cjs/src/comments-v2-comment-comments.universal.d.ts +118 -44
- package/build/cjs/src/comments-v2-comment-comments.universal.js.map +1 -1
- package/build/es/src/comments-v2-comment-comments.types.d.ts +115 -41
- package/build/es/src/comments-v2-comment-comments.types.js.map +1 -1
- package/build/es/src/comments-v2-comment-comments.universal.d.ts +118 -44
- package/build/es/src/comments-v2-comment-comments.universal.js.map +1 -1
- package/build/internal/cjs/src/comments-v2-comment-comments.types.d.ts +115 -41
- package/build/internal/cjs/src/comments-v2-comment-comments.types.js.map +1 -1
- package/build/internal/cjs/src/comments-v2-comment-comments.universal.d.ts +118 -44
- package/build/internal/cjs/src/comments-v2-comment-comments.universal.js.map +1 -1
- package/build/internal/es/src/comments-v2-comment-comments.types.d.ts +115 -41
- package/build/internal/es/src/comments-v2-comment-comments.types.js.map +1 -1
- package/build/internal/es/src/comments-v2-comment-comments.universal.d.ts +118 -44
- package/build/internal/es/src/comments-v2-comment-comments.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -82,7 +82,7 @@ export interface Comment {
|
|
|
82
82
|
* Comment status.
|
|
83
83
|
* @readonly
|
|
84
84
|
*/
|
|
85
|
-
status?:
|
|
85
|
+
status?: StatusWithLiterals;
|
|
86
86
|
/**
|
|
87
87
|
* Comment rating.
|
|
88
88
|
* @readonly
|
|
@@ -193,7 +193,7 @@ export interface Node extends NodeDataOneOf {
|
|
|
193
193
|
/** LayoutData layout_data = 31; // Data for a layout node. Reserved for future use. */
|
|
194
194
|
layoutCellData?: LayoutCellData;
|
|
195
195
|
/** 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. */
|
|
196
|
-
type?:
|
|
196
|
+
type?: NodeTypeWithLiterals;
|
|
197
197
|
/** Node ID. */
|
|
198
198
|
id?: string;
|
|
199
199
|
/** A list of child nodes. */
|
|
@@ -294,6 +294,8 @@ export declare enum NodeType {
|
|
|
294
294
|
LAYOUT = "LAYOUT",
|
|
295
295
|
LAYOUT_CELL = "LAYOUT_CELL"
|
|
296
296
|
}
|
|
297
|
+
/** @enumType */
|
|
298
|
+
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';
|
|
297
299
|
export interface NodeStyle {
|
|
298
300
|
/** The top padding value in pixels. */
|
|
299
301
|
paddingTop?: string | null;
|
|
@@ -306,7 +308,7 @@ export interface ButtonData {
|
|
|
306
308
|
/** Styling for the button's container. */
|
|
307
309
|
containerData?: PluginContainerData;
|
|
308
310
|
/** The button type. */
|
|
309
|
-
type?:
|
|
311
|
+
type?: TypeWithLiterals;
|
|
310
312
|
/** Styling for the button. */
|
|
311
313
|
styles?: Styles;
|
|
312
314
|
/** The text to display on the button. */
|
|
@@ -347,7 +349,7 @@ export interface PluginContainerData {
|
|
|
347
349
|
/** The width of the node when it's displayed. */
|
|
348
350
|
width?: PluginContainerDataWidth;
|
|
349
351
|
/** The node's alignment within its container. */
|
|
350
|
-
alignment?:
|
|
352
|
+
alignment?: PluginContainerDataAlignmentWithLiterals;
|
|
351
353
|
/** Spoiler cover settings for the node. */
|
|
352
354
|
spoiler?: Spoiler;
|
|
353
355
|
/** The height of the node when it's displayed. */
|
|
@@ -365,6 +367,8 @@ export declare enum WidthType {
|
|
|
365
367
|
/** coast-to-coast display */
|
|
366
368
|
FULL_WIDTH = "FULL_WIDTH"
|
|
367
369
|
}
|
|
370
|
+
/** @enumType */
|
|
371
|
+
export type WidthTypeWithLiterals = WidthType | 'CONTENT' | 'SMALL' | 'ORIGINAL' | 'FULL_WIDTH';
|
|
368
372
|
export interface PluginContainerDataWidth extends PluginContainerDataWidthDataOneOf {
|
|
369
373
|
/**
|
|
370
374
|
* One of the following predefined width options:
|
|
@@ -373,7 +377,7 @@ export interface PluginContainerDataWidth extends PluginContainerDataWidthDataOn
|
|
|
373
377
|
* `ORIGINAL`: For `imageData` containers only. The width of the container matches the original image width.
|
|
374
378
|
* `FULL_WIDTH`: For `imageData` containers only. The image container takes up the full width of the screen.
|
|
375
379
|
*/
|
|
376
|
-
size?:
|
|
380
|
+
size?: WidthTypeWithLiterals;
|
|
377
381
|
/** A custom width value in pixels. */
|
|
378
382
|
custom?: string | null;
|
|
379
383
|
}
|
|
@@ -386,7 +390,7 @@ export interface PluginContainerDataWidthDataOneOf {
|
|
|
386
390
|
* `ORIGINAL`: For `imageData` containers only. The width of the container matches the original image width.
|
|
387
391
|
* `FULL_WIDTH`: For `imageData` containers only. The image container takes up the full width of the screen.
|
|
388
392
|
*/
|
|
389
|
-
size?:
|
|
393
|
+
size?: WidthTypeWithLiterals;
|
|
390
394
|
/** A custom width value in pixels. */
|
|
391
395
|
custom?: string | null;
|
|
392
396
|
}
|
|
@@ -398,6 +402,8 @@ export declare enum PluginContainerDataAlignment {
|
|
|
398
402
|
/** Right Alignment */
|
|
399
403
|
RIGHT = "RIGHT"
|
|
400
404
|
}
|
|
405
|
+
/** @enumType */
|
|
406
|
+
export type PluginContainerDataAlignmentWithLiterals = PluginContainerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
|
|
401
407
|
export interface Spoiler {
|
|
402
408
|
/** Sets whether the spoiler cover is enabled for this node. Defaults to `false`. */
|
|
403
409
|
enabled?: boolean | null;
|
|
@@ -416,6 +422,8 @@ export declare enum Type {
|
|
|
416
422
|
/** Triggers custom action that is defined in plugin configuration by the consumer */
|
|
417
423
|
ACTION = "ACTION"
|
|
418
424
|
}
|
|
425
|
+
/** @enumType */
|
|
426
|
+
export type TypeWithLiterals = Type | 'LINK' | 'ACTION';
|
|
419
427
|
export interface Styles {
|
|
420
428
|
/**
|
|
421
429
|
* Deprecated: Use `borderWidth` and `borderRadius` instead.
|
|
@@ -481,7 +489,7 @@ export interface Link extends LinkDataOneOf {
|
|
|
481
489
|
* `PARENT` - Opens the linked document in the link's parent frame.
|
|
482
490
|
* `TOP` - Opens the linked document in the full body of the link's browser tab or window.
|
|
483
491
|
*/
|
|
484
|
-
target?:
|
|
492
|
+
target?: TargetWithLiterals;
|
|
485
493
|
/** The HTML `rel` attribute value for the link. This object specifies the relationship between the current document and the linked document. */
|
|
486
494
|
rel?: Rel;
|
|
487
495
|
/** A serialized object used for a custom or external link panel. */
|
|
@@ -504,6 +512,8 @@ export declare enum Target {
|
|
|
504
512
|
/** Opens the linked document in the full body of the window */
|
|
505
513
|
TOP = "TOP"
|
|
506
514
|
}
|
|
515
|
+
/** @enumType */
|
|
516
|
+
export type TargetWithLiterals = Target | 'SELF' | 'BLANK' | 'PARENT' | 'TOP';
|
|
507
517
|
export interface Rel {
|
|
508
518
|
/** Indicates to search engine crawlers not to follow the link. Defaults to `false`. */
|
|
509
519
|
nofollow?: boolean | null;
|
|
@@ -520,7 +530,7 @@ export interface CodeBlockData {
|
|
|
520
530
|
}
|
|
521
531
|
export interface TextStyle {
|
|
522
532
|
/** Text alignment. Defaults to `AUTO`. */
|
|
523
|
-
textAlignment?:
|
|
533
|
+
textAlignment?: TextAlignmentWithLiterals;
|
|
524
534
|
/** 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. */
|
|
525
535
|
lineHeight?: string | null;
|
|
526
536
|
}
|
|
@@ -536,15 +546,17 @@ export declare enum TextAlignment {
|
|
|
536
546
|
/** 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 */
|
|
537
547
|
JUSTIFY = "JUSTIFY"
|
|
538
548
|
}
|
|
549
|
+
/** @enumType */
|
|
550
|
+
export type TextAlignmentWithLiterals = TextAlignment | 'AUTO' | 'LEFT' | 'RIGHT' | 'CENTER' | 'JUSTIFY';
|
|
539
551
|
export interface DividerData {
|
|
540
552
|
/** Styling for the divider's container. */
|
|
541
553
|
containerData?: PluginContainerData;
|
|
542
554
|
/** Divider line style. */
|
|
543
|
-
lineStyle?:
|
|
555
|
+
lineStyle?: LineStyleWithLiterals;
|
|
544
556
|
/** Divider width. */
|
|
545
|
-
width?:
|
|
557
|
+
width?: WidthWithLiterals;
|
|
546
558
|
/** Divider alignment. */
|
|
547
|
-
alignment?:
|
|
559
|
+
alignment?: AlignmentWithLiterals;
|
|
548
560
|
}
|
|
549
561
|
export declare enum LineStyle {
|
|
550
562
|
/** Single Line */
|
|
@@ -556,6 +568,8 @@ export declare enum LineStyle {
|
|
|
556
568
|
/** Dotted Line */
|
|
557
569
|
DOTTED = "DOTTED"
|
|
558
570
|
}
|
|
571
|
+
/** @enumType */
|
|
572
|
+
export type LineStyleWithLiterals = LineStyle | 'SINGLE' | 'DOUBLE' | 'DASHED' | 'DOTTED';
|
|
559
573
|
export declare enum Width {
|
|
560
574
|
/** Large line */
|
|
561
575
|
LARGE = "LARGE",
|
|
@@ -564,6 +578,8 @@ export declare enum Width {
|
|
|
564
578
|
/** Small line */
|
|
565
579
|
SMALL = "SMALL"
|
|
566
580
|
}
|
|
581
|
+
/** @enumType */
|
|
582
|
+
export type WidthWithLiterals = Width | 'LARGE' | 'MEDIUM' | 'SMALL';
|
|
567
583
|
export declare enum Alignment {
|
|
568
584
|
/** Center alignment */
|
|
569
585
|
CENTER = "CENTER",
|
|
@@ -572,6 +588,8 @@ export declare enum Alignment {
|
|
|
572
588
|
/** Right alignment */
|
|
573
589
|
RIGHT = "RIGHT"
|
|
574
590
|
}
|
|
591
|
+
/** @enumType */
|
|
592
|
+
export type AlignmentWithLiterals = Alignment | 'CENTER' | 'LEFT' | 'RIGHT';
|
|
575
593
|
export interface FileData {
|
|
576
594
|
/** Styling for the file's container. */
|
|
577
595
|
containerData?: PluginContainerData;
|
|
@@ -603,6 +621,8 @@ export declare enum ViewMode {
|
|
|
603
621
|
/** Mini PDF view */
|
|
604
622
|
MINI = "MINI"
|
|
605
623
|
}
|
|
624
|
+
/** @enumType */
|
|
625
|
+
export type ViewModeWithLiterals = ViewMode | 'NONE' | 'FULL' | 'MINI';
|
|
606
626
|
export interface FileSource extends FileSourceDataOneOf {
|
|
607
627
|
/** The absolute URL for the file's source. */
|
|
608
628
|
url?: string | null;
|
|
@@ -635,7 +655,7 @@ export interface PDFSettings {
|
|
|
635
655
|
* `FULL` : A full page view of the PDF is displayed.
|
|
636
656
|
* `MINI` : A mini view of the PDF is displayed.
|
|
637
657
|
*/
|
|
638
|
-
viewMode?:
|
|
658
|
+
viewMode?: ViewModeWithLiterals;
|
|
639
659
|
/** Sets whether the PDF download button is disabled. Defaults to `false`. */
|
|
640
660
|
disableDownload?: boolean | null;
|
|
641
661
|
/** Sets whether the PDF print button is disabled. Defaults to `false`. */
|
|
@@ -722,18 +742,24 @@ export declare enum LayoutType {
|
|
|
722
742
|
/** Fullsize images type */
|
|
723
743
|
FULLSIZE = "FULLSIZE"
|
|
724
744
|
}
|
|
745
|
+
/** @enumType */
|
|
746
|
+
export type LayoutTypeWithLiterals = LayoutType | 'COLLAGE' | 'MASONRY' | 'GRID' | 'THUMBNAIL' | 'SLIDER' | 'SLIDESHOW' | 'PANORAMA' | 'COLUMN' | 'MAGIC' | 'FULLSIZE';
|
|
725
747
|
export declare enum Orientation {
|
|
726
748
|
/** Rows Orientation */
|
|
727
749
|
ROWS = "ROWS",
|
|
728
750
|
/** Columns Orientation */
|
|
729
751
|
COLUMNS = "COLUMNS"
|
|
730
752
|
}
|
|
753
|
+
/** @enumType */
|
|
754
|
+
export type OrientationWithLiterals = Orientation | 'ROWS' | 'COLUMNS';
|
|
731
755
|
export declare enum Crop {
|
|
732
756
|
/** Crop to fill */
|
|
733
757
|
FILL = "FILL",
|
|
734
758
|
/** Crop to fit */
|
|
735
759
|
FIT = "FIT"
|
|
736
760
|
}
|
|
761
|
+
/** @enumType */
|
|
762
|
+
export type CropWithLiterals = Crop | 'FILL' | 'FIT';
|
|
737
763
|
export declare enum ThumbnailsAlignment {
|
|
738
764
|
/** Top alignment */
|
|
739
765
|
TOP = "TOP",
|
|
@@ -746,13 +772,15 @@ export declare enum ThumbnailsAlignment {
|
|
|
746
772
|
/** No thumbnail */
|
|
747
773
|
NONE = "NONE"
|
|
748
774
|
}
|
|
775
|
+
/** @enumType */
|
|
776
|
+
export type ThumbnailsAlignmentWithLiterals = ThumbnailsAlignment | 'TOP' | 'RIGHT' | 'BOTTOM' | 'LEFT' | 'NONE';
|
|
749
777
|
export interface Layout {
|
|
750
778
|
/** Gallery layout type. */
|
|
751
|
-
type?:
|
|
779
|
+
type?: LayoutTypeWithLiterals;
|
|
752
780
|
/** Sets whether horizontal scroll is enabled. Defaults to `true` unless the layout `type` is set to `GRID` or `COLLAGE`. */
|
|
753
781
|
horizontalScroll?: boolean | null;
|
|
754
782
|
/** Gallery orientation. */
|
|
755
|
-
orientation?:
|
|
783
|
+
orientation?: OrientationWithLiterals;
|
|
756
784
|
/** The number of columns to display on full size screens. */
|
|
757
785
|
numberOfColumns?: number | null;
|
|
758
786
|
/** The number of columns to display on mobile screens. */
|
|
@@ -764,13 +792,13 @@ export interface ItemStyle {
|
|
|
764
792
|
/** Item ratio */
|
|
765
793
|
ratio?: number | null;
|
|
766
794
|
/** Sets how item images are cropped. */
|
|
767
|
-
crop?:
|
|
795
|
+
crop?: CropWithLiterals;
|
|
768
796
|
/** The spacing between items in pixels. */
|
|
769
797
|
spacing?: number | null;
|
|
770
798
|
}
|
|
771
799
|
export interface Thumbnails {
|
|
772
800
|
/** Thumbnail alignment. */
|
|
773
|
-
placement?:
|
|
801
|
+
placement?: ThumbnailsAlignmentWithLiterals;
|
|
774
802
|
/** Spacing between thumbnails in pixels. */
|
|
775
803
|
spacing?: number | null;
|
|
776
804
|
}
|
|
@@ -786,7 +814,7 @@ export interface GIFData {
|
|
|
786
814
|
/** Width in pixels. */
|
|
787
815
|
width?: number;
|
|
788
816
|
/** Type of GIF (Sticker or NORMAL). Defaults to `NORMAL`. */
|
|
789
|
-
gifType?:
|
|
817
|
+
gifType?: GIFTypeWithLiterals;
|
|
790
818
|
}
|
|
791
819
|
export interface GIF {
|
|
792
820
|
/**
|
|
@@ -809,6 +837,8 @@ export declare enum GIFType {
|
|
|
809
837
|
NORMAL = "NORMAL",
|
|
810
838
|
STICKER = "STICKER"
|
|
811
839
|
}
|
|
840
|
+
/** @enumType */
|
|
841
|
+
export type GIFTypeWithLiterals = GIFType | 'NORMAL' | 'STICKER';
|
|
812
842
|
export interface HeadingData {
|
|
813
843
|
/** Heading level from 1-6. */
|
|
814
844
|
level?: number;
|
|
@@ -830,7 +860,7 @@ export interface HTMLData extends HTMLDataDataOneOf {
|
|
|
830
860
|
/** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */
|
|
831
861
|
containerData?: PluginContainerData;
|
|
832
862
|
/** The type of HTML code. */
|
|
833
|
-
source?:
|
|
863
|
+
source?: SourceWithLiterals;
|
|
834
864
|
/** If container height is aligned with its content height. Defaults to `true`. */
|
|
835
865
|
autoHeight?: boolean | null;
|
|
836
866
|
}
|
|
@@ -850,6 +880,8 @@ export declare enum Source {
|
|
|
850
880
|
HTML = "HTML",
|
|
851
881
|
ADSENSE = "ADSENSE"
|
|
852
882
|
}
|
|
883
|
+
/** @enumType */
|
|
884
|
+
export type SourceWithLiterals = Source | 'HTML' | 'ADSENSE';
|
|
853
885
|
export interface ImageData {
|
|
854
886
|
/** Styling for the image's container. */
|
|
855
887
|
containerData?: PluginContainerData;
|
|
@@ -914,6 +946,8 @@ export declare enum Position {
|
|
|
914
946
|
/** Thumbnail hidden and not displayed */
|
|
915
947
|
HIDDEN = "HIDDEN"
|
|
916
948
|
}
|
|
949
|
+
/** @enumType */
|
|
950
|
+
export type PositionWithLiterals = Position | 'START' | 'END' | 'TOP' | 'HIDDEN';
|
|
917
951
|
export interface LinkPreviewDataStyles {
|
|
918
952
|
/**
|
|
919
953
|
* Background color as a hexadecimal value.
|
|
@@ -945,7 +979,7 @@ export interface LinkPreviewDataStyles {
|
|
|
945
979
|
*/
|
|
946
980
|
borderColor?: string | null;
|
|
947
981
|
/** Position of thumbnail. Defaults to `START`. */
|
|
948
|
-
thumbnailPosition?:
|
|
982
|
+
thumbnailPosition?: PositionWithLiterals;
|
|
949
983
|
}
|
|
950
984
|
export interface MapData {
|
|
951
985
|
/** Styling for the map's container. */
|
|
@@ -975,7 +1009,7 @@ export interface MapSettings {
|
|
|
975
1009
|
/** Initial zoom value. */
|
|
976
1010
|
initialZoom?: number | null;
|
|
977
1011
|
/** Map type. `HYBRID` is a combination of the `ROADMAP` and `SATELLITE` map types. */
|
|
978
|
-
mapType?:
|
|
1012
|
+
mapType?: MapTypeWithLiterals;
|
|
979
1013
|
}
|
|
980
1014
|
export declare enum MapType {
|
|
981
1015
|
/** Roadmap map type */
|
|
@@ -987,6 +1021,8 @@ export declare enum MapType {
|
|
|
987
1021
|
/** Terrain map type */
|
|
988
1022
|
TERRAIN = "TERRAIN"
|
|
989
1023
|
}
|
|
1024
|
+
/** @enumType */
|
|
1025
|
+
export type MapTypeWithLiterals = MapType | 'ROADMAP' | 'SATELITE' | 'HYBRID' | 'TERRAIN';
|
|
990
1026
|
export interface ParagraphData {
|
|
991
1027
|
/** Styling for the paragraph text. */
|
|
992
1028
|
textStyle?: TextStyle;
|
|
@@ -1013,17 +1049,21 @@ export declare enum ViewRole {
|
|
|
1013
1049
|
/** Anyone can see the results, even if one didn't vote */
|
|
1014
1050
|
EVERYONE = "EVERYONE"
|
|
1015
1051
|
}
|
|
1052
|
+
/** @enumType */
|
|
1053
|
+
export type ViewRoleWithLiterals = ViewRole | 'CREATOR' | 'VOTERS' | 'EVERYONE';
|
|
1016
1054
|
export declare enum VoteRole {
|
|
1017
1055
|
/** Logged in member */
|
|
1018
1056
|
SITE_MEMBERS = "SITE_MEMBERS",
|
|
1019
1057
|
/** Anyone */
|
|
1020
1058
|
ALL = "ALL"
|
|
1021
1059
|
}
|
|
1060
|
+
/** @enumType */
|
|
1061
|
+
export type VoteRoleWithLiterals = VoteRole | 'SITE_MEMBERS' | 'ALL';
|
|
1022
1062
|
export interface Permissions {
|
|
1023
1063
|
/** Sets who can view the poll results. */
|
|
1024
|
-
view?:
|
|
1064
|
+
view?: ViewRoleWithLiterals;
|
|
1025
1065
|
/** Sets who can vote. */
|
|
1026
|
-
vote?:
|
|
1066
|
+
vote?: VoteRoleWithLiterals;
|
|
1027
1067
|
/** Sets whether one voter can vote multiple times. Defaults to `false`. */
|
|
1028
1068
|
allowMultipleVotes?: boolean | null;
|
|
1029
1069
|
}
|
|
@@ -1049,17 +1089,21 @@ export declare enum PollLayoutType {
|
|
|
1049
1089
|
/** Grid */
|
|
1050
1090
|
GRID = "GRID"
|
|
1051
1091
|
}
|
|
1092
|
+
/** @enumType */
|
|
1093
|
+
export type PollLayoutTypeWithLiterals = PollLayoutType | 'LIST' | 'GRID';
|
|
1052
1094
|
export declare enum PollLayoutDirection {
|
|
1053
1095
|
/** Left-to-right */
|
|
1054
1096
|
LTR = "LTR",
|
|
1055
1097
|
/** Right-to-left */
|
|
1056
1098
|
RTL = "RTL"
|
|
1057
1099
|
}
|
|
1100
|
+
/** @enumType */
|
|
1101
|
+
export type PollLayoutDirectionWithLiterals = PollLayoutDirection | 'LTR' | 'RTL';
|
|
1058
1102
|
export interface PollLayout {
|
|
1059
1103
|
/** The layout for displaying the voting options. */
|
|
1060
|
-
type?:
|
|
1104
|
+
type?: PollLayoutTypeWithLiterals;
|
|
1061
1105
|
/** The direction of the text displayed in the voting options. Text can be displayed either right-to-left or left-to-right. */
|
|
1062
|
-
direction?:
|
|
1106
|
+
direction?: PollLayoutDirectionWithLiterals;
|
|
1063
1107
|
/** Sets whether to display the main poll image. Defaults to `false`. */
|
|
1064
1108
|
enableImage?: boolean | null;
|
|
1065
1109
|
}
|
|
@@ -1075,6 +1119,8 @@ export declare enum BackgroundType {
|
|
|
1075
1119
|
/** Gradiant background type */
|
|
1076
1120
|
GRADIENT = "GRADIENT"
|
|
1077
1121
|
}
|
|
1122
|
+
/** @enumType */
|
|
1123
|
+
export type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
|
|
1078
1124
|
export interface Gradient {
|
|
1079
1125
|
/** The gradient angle in degrees. */
|
|
1080
1126
|
angle?: number | null;
|
|
@@ -1100,7 +1146,7 @@ export interface Background extends BackgroundBackgroundOneOf {
|
|
|
1100
1146
|
/** Details for a gradient background. */
|
|
1101
1147
|
gradient?: Gradient;
|
|
1102
1148
|
/** Background type. For each option, include the relevant details. */
|
|
1103
|
-
type?:
|
|
1149
|
+
type?: BackgroundTypeWithLiterals;
|
|
1104
1150
|
}
|
|
1105
1151
|
/** @oneof */
|
|
1106
1152
|
export interface BackgroundBackgroundOneOf {
|
|
@@ -1179,7 +1225,7 @@ export interface Decoration extends DecorationDataOneOf {
|
|
|
1179
1225
|
/** Data for a strikethrough decoration. Defaults to `true`. */
|
|
1180
1226
|
strikethroughData?: boolean | null;
|
|
1181
1227
|
/** The type of decoration to apply. */
|
|
1182
|
-
type?:
|
|
1228
|
+
type?: DecorationTypeWithLiterals;
|
|
1183
1229
|
}
|
|
1184
1230
|
/** @oneof */
|
|
1185
1231
|
export interface DecorationDataOneOf {
|
|
@@ -1217,6 +1263,8 @@ export declare enum DecorationType {
|
|
|
1217
1263
|
EXTERNAL = "EXTERNAL",
|
|
1218
1264
|
STRIKETHROUGH = "STRIKETHROUGH"
|
|
1219
1265
|
}
|
|
1266
|
+
/** @enumType */
|
|
1267
|
+
export type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH';
|
|
1220
1268
|
export interface AnchorData {
|
|
1221
1269
|
/** The target node's ID. */
|
|
1222
1270
|
anchor?: string;
|
|
@@ -1241,7 +1289,7 @@ export interface MentionData {
|
|
|
1241
1289
|
}
|
|
1242
1290
|
export interface FontSizeData {
|
|
1243
1291
|
/** The units used for the font size. */
|
|
1244
|
-
unit?:
|
|
1292
|
+
unit?: FontTypeWithLiterals;
|
|
1245
1293
|
/** Font size value. */
|
|
1246
1294
|
value?: number | null;
|
|
1247
1295
|
}
|
|
@@ -1249,6 +1297,8 @@ export declare enum FontType {
|
|
|
1249
1297
|
PX = "PX",
|
|
1250
1298
|
EM = "EM"
|
|
1251
1299
|
}
|
|
1300
|
+
/** @enumType */
|
|
1301
|
+
export type FontTypeWithLiterals = FontType | 'PX' | 'EM';
|
|
1252
1302
|
export interface SpoilerData {
|
|
1253
1303
|
/** Spoiler ID. */
|
|
1254
1304
|
id?: string | null;
|
|
@@ -1259,7 +1309,7 @@ export interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
|
1259
1309
|
/** Data for embedded Wix Events content. */
|
|
1260
1310
|
eventData?: EventData;
|
|
1261
1311
|
/** The type of Wix App content being embedded. */
|
|
1262
|
-
type?:
|
|
1312
|
+
type?: AppTypeWithLiterals;
|
|
1263
1313
|
/** The ID of the embedded content. */
|
|
1264
1314
|
itemId?: string | null;
|
|
1265
1315
|
/** The name of the embedded content. */
|
|
@@ -1286,6 +1336,8 @@ export declare enum AppType {
|
|
|
1286
1336
|
EVENT = "EVENT",
|
|
1287
1337
|
BOOKING = "BOOKING"
|
|
1288
1338
|
}
|
|
1339
|
+
/** @enumType */
|
|
1340
|
+
export type AppTypeWithLiterals = AppType | 'PRODUCT' | 'EVENT' | 'BOOKING';
|
|
1289
1341
|
export interface BookingData {
|
|
1290
1342
|
/** Booking duration in minutes. */
|
|
1291
1343
|
durations?: string | null;
|
|
@@ -1364,9 +1416,9 @@ export interface CollapsibleListData {
|
|
|
1364
1416
|
/** If `true`, only one item can be expanded at a time. Defaults to `false`. */
|
|
1365
1417
|
expandOnlyOne?: boolean | null;
|
|
1366
1418
|
/** Sets which items are expanded when the page loads. */
|
|
1367
|
-
initialExpandedItems?:
|
|
1419
|
+
initialExpandedItems?: InitialExpandedItemsWithLiterals;
|
|
1368
1420
|
/** The direction of the text in the list. Either left-to-right or right-to-left. */
|
|
1369
|
-
direction?:
|
|
1421
|
+
direction?: DirectionWithLiterals;
|
|
1370
1422
|
/** If `true`, The collapsible item will appear in search results as an FAQ. */
|
|
1371
1423
|
isQapageData?: boolean | null;
|
|
1372
1424
|
}
|
|
@@ -1378,12 +1430,16 @@ export declare enum InitialExpandedItems {
|
|
|
1378
1430
|
/** All items collapsed initally */
|
|
1379
1431
|
NONE = "NONE"
|
|
1380
1432
|
}
|
|
1433
|
+
/** @enumType */
|
|
1434
|
+
export type InitialExpandedItemsWithLiterals = InitialExpandedItems | 'FIRST' | 'ALL' | 'NONE';
|
|
1381
1435
|
export declare enum Direction {
|
|
1382
1436
|
/** Left-to-right */
|
|
1383
1437
|
LTR = "LTR",
|
|
1384
1438
|
/** Right-to-left */
|
|
1385
1439
|
RTL = "RTL"
|
|
1386
1440
|
}
|
|
1441
|
+
/** @enumType */
|
|
1442
|
+
export type DirectionWithLiterals = Direction | 'LTR' | 'RTL';
|
|
1387
1443
|
export interface TableData {
|
|
1388
1444
|
/** Styling for the table's container. */
|
|
1389
1445
|
containerData?: PluginContainerData;
|
|
@@ -1421,9 +1477,11 @@ export declare enum VerticalAlignment {
|
|
|
1421
1477
|
/** Bottom alignment */
|
|
1422
1478
|
BOTTOM = "BOTTOM"
|
|
1423
1479
|
}
|
|
1480
|
+
/** @enumType */
|
|
1481
|
+
export type VerticalAlignmentWithLiterals = VerticalAlignment | 'TOP' | 'MIDDLE' | 'BOTTOM';
|
|
1424
1482
|
export interface CellStyle {
|
|
1425
1483
|
/** Vertical alignment for the cell's text. */
|
|
1426
|
-
verticalAlignment?:
|
|
1484
|
+
verticalAlignment?: VerticalAlignmentWithLiterals;
|
|
1427
1485
|
/**
|
|
1428
1486
|
* Cell background color as a hexadecimal value.
|
|
1429
1487
|
* @format COLOR_HEX
|
|
@@ -1462,6 +1520,8 @@ export declare enum NullValue {
|
|
|
1462
1520
|
/** Null value. */
|
|
1463
1521
|
NULL_VALUE = "NULL_VALUE"
|
|
1464
1522
|
}
|
|
1523
|
+
/** @enumType */
|
|
1524
|
+
export type NullValueWithLiterals = NullValue | 'NULL_VALUE';
|
|
1465
1525
|
/**
|
|
1466
1526
|
* `ListValue` is a wrapper around a repeated field of values.
|
|
1467
1527
|
*
|
|
@@ -1906,7 +1966,7 @@ export interface ParentComment {
|
|
|
1906
1966
|
* Parent comment status.
|
|
1907
1967
|
* @readonly
|
|
1908
1968
|
*/
|
|
1909
|
-
status?:
|
|
1969
|
+
status?: StatusWithLiterals;
|
|
1910
1970
|
}
|
|
1911
1971
|
export declare enum Status {
|
|
1912
1972
|
/** Unknown status. */
|
|
@@ -1920,6 +1980,8 @@ export declare enum Status {
|
|
|
1920
1980
|
/** This comment has been hidden by a site moderator. */
|
|
1921
1981
|
HIDDEN = "HIDDEN"
|
|
1922
1982
|
}
|
|
1983
|
+
/** @enumType */
|
|
1984
|
+
export type StatusWithLiterals = Status | 'UNKNOWN' | 'PUBLISHED' | 'DELETED' | 'PENDING' | 'HIDDEN';
|
|
1923
1985
|
export interface VoteSummary {
|
|
1924
1986
|
/** Number of upvotes less downvotes on this comment. */
|
|
1925
1987
|
netVoteCount?: number;
|
|
@@ -2024,7 +2086,7 @@ export interface VersionedDocumentUpdateOperation {
|
|
|
2024
2086
|
/** documents to create or overwrite */
|
|
2025
2087
|
documents?: InternalDocument[];
|
|
2026
2088
|
/** versioning mode to use instead of default */
|
|
2027
|
-
versioningMode?:
|
|
2089
|
+
versioningMode?: VersioningModeWithLiterals;
|
|
2028
2090
|
}
|
|
2029
2091
|
export declare enum VersioningMode {
|
|
2030
2092
|
/** use default versioning mode agreed with search team */
|
|
@@ -2034,6 +2096,8 @@ export declare enum VersioningMode {
|
|
|
2034
2096
|
/** execute only if version is greater or equal to existing */
|
|
2035
2097
|
GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
|
|
2036
2098
|
}
|
|
2099
|
+
/** @enumType */
|
|
2100
|
+
export type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
|
|
2037
2101
|
export interface VersionedDeleteByIdsOperation {
|
|
2038
2102
|
/** ids with version of the documents to delete */
|
|
2039
2103
|
documentIds?: VersionedDocumentId[];
|
|
@@ -2044,11 +2108,11 @@ export interface VersionedDocumentId {
|
|
|
2044
2108
|
/** document version */
|
|
2045
2109
|
version?: string;
|
|
2046
2110
|
/** versioning mode to use instead of default */
|
|
2047
|
-
versioningMode?:
|
|
2111
|
+
versioningMode?: VersioningModeWithLiterals;
|
|
2048
2112
|
}
|
|
2049
2113
|
export interface CommentModerated {
|
|
2050
2114
|
comment?: Comment;
|
|
2051
|
-
moderationAction?:
|
|
2115
|
+
moderationAction?: ActionWithLiterals;
|
|
2052
2116
|
}
|
|
2053
2117
|
export declare enum Action {
|
|
2054
2118
|
/** Unknown content. */
|
|
@@ -2058,6 +2122,8 @@ export declare enum Action {
|
|
|
2058
2122
|
/** Reject draft content. */
|
|
2059
2123
|
REJECT = "REJECT"
|
|
2060
2124
|
}
|
|
2125
|
+
/** @enumType */
|
|
2126
|
+
export type ActionWithLiterals = Action | 'UNKNOWN' | 'APPROVE' | 'REJECT';
|
|
2061
2127
|
export interface CreateCommentRequest {
|
|
2062
2128
|
/** Comment to create. */
|
|
2063
2129
|
comment?: Comment;
|
|
@@ -2139,7 +2205,7 @@ export interface ModerateDraftContentRequest {
|
|
|
2139
2205
|
*/
|
|
2140
2206
|
revision: string | null;
|
|
2141
2207
|
/** Draft content action. */
|
|
2142
|
-
draftContentAction?:
|
|
2208
|
+
draftContentAction?: ActionWithLiterals;
|
|
2143
2209
|
}
|
|
2144
2210
|
export interface ModerateDraftContentResponse {
|
|
2145
2211
|
/** Moderated comment. */
|
|
@@ -2200,12 +2266,14 @@ export interface Sorting {
|
|
|
2200
2266
|
*/
|
|
2201
2267
|
fieldName?: string;
|
|
2202
2268
|
/** Sort order. */
|
|
2203
|
-
order?:
|
|
2269
|
+
order?: SortOrderWithLiterals;
|
|
2204
2270
|
}
|
|
2205
2271
|
export declare enum SortOrder {
|
|
2206
2272
|
ASC = "ASC",
|
|
2207
2273
|
DESC = "DESC"
|
|
2208
2274
|
}
|
|
2275
|
+
/** @enumType */
|
|
2276
|
+
export type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
|
|
2209
2277
|
export interface CursorPaging {
|
|
2210
2278
|
/**
|
|
2211
2279
|
* Maximum number of items to return in the results.
|
|
@@ -2350,7 +2418,7 @@ export interface ListCommentsByResourceRequest {
|
|
|
2350
2418
|
}
|
|
2351
2419
|
export interface CommentSort {
|
|
2352
2420
|
/** Sort order. */
|
|
2353
|
-
order?:
|
|
2421
|
+
order?: OrderWithLiterals;
|
|
2354
2422
|
/**
|
|
2355
2423
|
* If set to `true`, marked comments appear in the original order, and not at the top of the list.
|
|
2356
2424
|
*
|
|
@@ -2376,9 +2444,11 @@ export declare enum Order {
|
|
|
2376
2444
|
/** Comments with the lowest rating appear at the top of the list. */
|
|
2377
2445
|
RATING_ASC = "RATING_ASC"
|
|
2378
2446
|
}
|
|
2447
|
+
/** @enumType */
|
|
2448
|
+
export type OrderWithLiterals = Order | 'UNKNOWN_ORDER' | 'OLDEST_FIRST' | 'NEWEST_FIRST' | 'REACTION_COUNT' | 'NET_VOTE_COUNT' | 'RATING' | 'NET_VOTE_COUNT_ASC' | 'RATING_ASC';
|
|
2379
2449
|
export interface ReplySort {
|
|
2380
2450
|
/** Sort order. */
|
|
2381
|
-
order?:
|
|
2451
|
+
order?: ReplySortOrderWithLiterals;
|
|
2382
2452
|
/**
|
|
2383
2453
|
* Whether the marked comments are listed in the original order.
|
|
2384
2454
|
*
|
|
@@ -2398,6 +2468,8 @@ export declare enum ReplySortOrder {
|
|
|
2398
2468
|
/** Comments with the highest reaction count appear at the top of the list. */
|
|
2399
2469
|
REACTION_COUNT = "REACTION_COUNT"
|
|
2400
2470
|
}
|
|
2471
|
+
/** @enumType */
|
|
2472
|
+
export type ReplySortOrderWithLiterals = ReplySortOrder | 'UNKNOWN_ORDER' | 'OLDEST_FIRST' | 'NEWEST_FIRST' | 'REACTION_COUNT';
|
|
2401
2473
|
export interface ListCommentsByResourceCursorPaging {
|
|
2402
2474
|
/** Pointer to the next or previous page in the list of results. */
|
|
2403
2475
|
cursor?: string | null;
|
|
@@ -2516,7 +2588,7 @@ export interface BulkModerateDraftContentRequest {
|
|
|
2516
2588
|
/** Filter to identify the comment content that needs to be moderated. Each key corresponds to an option name, and its values correspond to the choices for this option. For example, {`"resourceId"`: `"64ad407e0bf87891bba7de3a"`, `"parentComment.id"`: `"726cb137-a9c3-408b-9cc2-2b64c6be8a95"`}. */
|
|
2517
2589
|
filter: Record<string, any> | null;
|
|
2518
2590
|
/** Action to do regarding draft content */
|
|
2519
|
-
draftContentAction:
|
|
2591
|
+
draftContentAction: ActionWithLiterals;
|
|
2520
2592
|
}
|
|
2521
2593
|
export interface BulkModerateDraftContentResponse {
|
|
2522
2594
|
/**
|
|
@@ -2665,7 +2737,7 @@ export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
|
2665
2737
|
*/
|
|
2666
2738
|
appId?: string;
|
|
2667
2739
|
/** @readonly */
|
|
2668
|
-
identityType?:
|
|
2740
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
2669
2741
|
}
|
|
2670
2742
|
/** @oneof */
|
|
2671
2743
|
export interface IdentificationDataIdOneOf {
|
|
@@ -2697,3 +2769,5 @@ export declare enum WebhookIdentityType {
|
|
|
2697
2769
|
WIX_USER = "WIX_USER",
|
|
2698
2770
|
APP = "APP"
|
|
2699
2771
|
}
|
|
2772
|
+
/** @enumType */
|
|
2773
|
+
export type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"comments-v2-comment-comments.types.js","sourceRoot":"","sources":["../../../src/comments-v2-comment-comments.types.ts"],"names":[],"mappings":";;;AAyQA,IAAY,QAmCX;AAnCD,WAAY,QAAQ;IAClB,mCAAuB,CAAA;IACvB,yBAAa,CAAA;IACb,+BAAmB,CAAA;IACnB,2CAA+B,CAAA;IAC/B,yCAA6B,CAAA;IAC7B,mCAAuB,CAAA;IACvB,qCAAyB,CAAA;IACzB,qCAAyB,CAAA;IACzB,2BAAe,CAAA;IACf,+BAAmB,CAAA;IACnB,yBAAa,CAAA;IACb,+BAAmB,CAAA;IACnB,uBAAW,CAAA;IACX,yBAAa,CAAA;IACb,2BAAe,CAAA;IACf,yCAA6B,CAAA;IAC7B,kBAAkB;IAClB,uBAAW,CAAA;IACX,yBAAa,CAAA;IACb,mCAAuB,CAAA;IACvB,6BAAiB,CAAA;IACjB,iDAAqC,CAAA;IACrC,2BAAe,CAAA;IACf,2BAAe,CAAA;IACf,iDAAqC,CAAA;IACrC,6DAAiD,CAAA;IACjD,2DAA+C,CAAA;IAC/C,qCAAyB,CAAA;IACzB,mCAAuB,CAAA;IACvB,iCAAqB,CAAA;IACrB,2BAAe,CAAA;IACf,+BAAmB,CAAA;IACnB,6BAAiB,CAAA;IACjB,uCAA2B,CAAA;AAC7B,CAAC,EAnCW,QAAQ,wBAAR,QAAQ,QAmCnB;
|
|
1
|
+
{"version":3,"file":"comments-v2-comment-comments.types.js","sourceRoot":"","sources":["../../../src/comments-v2-comment-comments.types.ts"],"names":[],"mappings":"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"}
|