@wix/auto_sdk_members_members-about 1.0.17 → 1.0.19
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/members-about-v2-member-about-members-about.types.d.ts +105 -49
- package/build/cjs/src/members-about-v2-member-about-members-about.types.js.map +1 -1
- package/build/cjs/src/members-about-v2-member-about-members-about.universal.d.ts +140 -72
- package/build/cjs/src/members-about-v2-member-about-members-about.universal.js +21 -18
- package/build/cjs/src/members-about-v2-member-about-members-about.universal.js.map +1 -1
- package/build/es/src/members-about-v2-member-about-members-about.types.d.ts +105 -49
- package/build/es/src/members-about-v2-member-about-members-about.types.js.map +1 -1
- package/build/es/src/members-about-v2-member-about-members-about.universal.d.ts +140 -72
- package/build/es/src/members-about-v2-member-about-members-about.universal.js +21 -18
- package/build/es/src/members-about-v2-member-about-members-about.universal.js.map +1 -1
- package/build/internal/cjs/src/members-about-v2-member-about-members-about.types.d.ts +105 -49
- package/build/internal/cjs/src/members-about-v2-member-about-members-about.types.js.map +1 -1
- package/build/internal/cjs/src/members-about-v2-member-about-members-about.universal.d.ts +140 -72
- package/build/internal/cjs/src/members-about-v2-member-about-members-about.universal.js +21 -18
- package/build/internal/cjs/src/members-about-v2-member-about-members-about.universal.js.map +1 -1
- package/build/internal/es/src/members-about-v2-member-about-members-about.types.d.ts +105 -49
- package/build/internal/es/src/members-about-v2-member-about-members-about.types.js.map +1 -1
- package/build/internal/es/src/members-about-v2-member-about-members-about.universal.d.ts +140 -72
- package/build/internal/es/src/members-about-v2-member-about-members-about.universal.js +21 -18
- package/build/internal/es/src/members-about-v2-member-about-members-about.universal.js.map +1 -1
- package/package.json +4 -4
@@ -79,7 +79,7 @@ export interface Node extends NodeDataOneOf {
|
|
79
79
|
/** LayoutData layout_data = 31; // Data for a layout node. Reserved for future use. */
|
80
80
|
layoutCellData?: LayoutCellData;
|
81
81
|
/** 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. */
|
82
|
-
type?:
|
82
|
+
type?: NodeTypeWithLiterals;
|
83
83
|
/** Node ID. */
|
84
84
|
id?: string;
|
85
85
|
/** A list of child nodes. */
|
@@ -180,6 +180,8 @@ export declare enum NodeType {
|
|
180
180
|
LAYOUT = "LAYOUT",
|
181
181
|
LAYOUT_CELL = "LAYOUT_CELL"
|
182
182
|
}
|
183
|
+
/** @enumType */
|
184
|
+
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';
|
183
185
|
export interface NodeStyle {
|
184
186
|
/** The top padding value in pixels. */
|
185
187
|
paddingTop?: string | null;
|
@@ -192,7 +194,7 @@ export interface ButtonData {
|
|
192
194
|
/** Styling for the button's container. */
|
193
195
|
containerData?: PluginContainerData;
|
194
196
|
/** The button type. */
|
195
|
-
type?:
|
197
|
+
type?: TypeWithLiterals;
|
196
198
|
/** Styling for the button. */
|
197
199
|
styles?: Styles;
|
198
200
|
/** The text to display on the button. */
|
@@ -233,7 +235,7 @@ export interface PluginContainerData {
|
|
233
235
|
/** The width of the node when it's displayed. */
|
234
236
|
width?: PluginContainerDataWidth;
|
235
237
|
/** The node's alignment within its container. */
|
236
|
-
alignment?:
|
238
|
+
alignment?: PluginContainerDataAlignmentWithLiterals;
|
237
239
|
/** Spoiler cover settings for the node. */
|
238
240
|
spoiler?: Spoiler;
|
239
241
|
/** The height of the node when it's displayed. */
|
@@ -251,6 +253,8 @@ export declare enum WidthType {
|
|
251
253
|
/** coast-to-coast display */
|
252
254
|
FULL_WIDTH = "FULL_WIDTH"
|
253
255
|
}
|
256
|
+
/** @enumType */
|
257
|
+
export type WidthTypeWithLiterals = WidthType | 'CONTENT' | 'SMALL' | 'ORIGINAL' | 'FULL_WIDTH';
|
254
258
|
export interface PluginContainerDataWidth extends PluginContainerDataWidthDataOneOf {
|
255
259
|
/**
|
256
260
|
* One of the following predefined width options:
|
@@ -259,7 +263,7 @@ export interface PluginContainerDataWidth extends PluginContainerDataWidthDataOn
|
|
259
263
|
* `ORIGINAL`: For `imageData` containers only. The width of the container matches the original image width.
|
260
264
|
* `FULL_WIDTH`: For `imageData` containers only. The image container takes up the full width of the screen.
|
261
265
|
*/
|
262
|
-
size?:
|
266
|
+
size?: WidthTypeWithLiterals;
|
263
267
|
/** A custom width value in pixels. */
|
264
268
|
custom?: string | null;
|
265
269
|
}
|
@@ -272,7 +276,7 @@ export interface PluginContainerDataWidthDataOneOf {
|
|
272
276
|
* `ORIGINAL`: For `imageData` containers only. The width of the container matches the original image width.
|
273
277
|
* `FULL_WIDTH`: For `imageData` containers only. The image container takes up the full width of the screen.
|
274
278
|
*/
|
275
|
-
size?:
|
279
|
+
size?: WidthTypeWithLiterals;
|
276
280
|
/** A custom width value in pixels. */
|
277
281
|
custom?: string | null;
|
278
282
|
}
|
@@ -284,6 +288,8 @@ export declare enum PluginContainerDataAlignment {
|
|
284
288
|
/** Right Alignment */
|
285
289
|
RIGHT = "RIGHT"
|
286
290
|
}
|
291
|
+
/** @enumType */
|
292
|
+
export type PluginContainerDataAlignmentWithLiterals = PluginContainerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
|
287
293
|
export interface Spoiler {
|
288
294
|
/** Sets whether the spoiler cover is enabled for this node. Defaults to `false`. */
|
289
295
|
enabled?: boolean | null;
|
@@ -302,6 +308,8 @@ export declare enum Type {
|
|
302
308
|
/** Triggers custom action that is defined in plugin configuration by the consumer */
|
303
309
|
ACTION = "ACTION"
|
304
310
|
}
|
311
|
+
/** @enumType */
|
312
|
+
export type TypeWithLiterals = Type | 'LINK' | 'ACTION';
|
305
313
|
export interface Styles {
|
306
314
|
/**
|
307
315
|
* Deprecated: Use `borderWidth` and `borderRadius` instead.
|
@@ -367,7 +375,7 @@ export interface Link extends LinkDataOneOf {
|
|
367
375
|
* `PARENT` - Opens the linked document in the link's parent frame.
|
368
376
|
* `TOP` - Opens the linked document in the full body of the link's browser tab or window.
|
369
377
|
*/
|
370
|
-
target?:
|
378
|
+
target?: TargetWithLiterals;
|
371
379
|
/** The HTML `rel` attribute value for the link. This object specifies the relationship between the current document and the linked document. */
|
372
380
|
rel?: Rel;
|
373
381
|
/** A serialized object used for a custom or external link panel. */
|
@@ -390,6 +398,8 @@ export declare enum Target {
|
|
390
398
|
/** Opens the linked document in the full body of the window */
|
391
399
|
TOP = "TOP"
|
392
400
|
}
|
401
|
+
/** @enumType */
|
402
|
+
export type TargetWithLiterals = Target | 'SELF' | 'BLANK' | 'PARENT' | 'TOP';
|
393
403
|
export interface Rel {
|
394
404
|
/** Indicates to search engine crawlers not to follow the link. Defaults to `false`. */
|
395
405
|
nofollow?: boolean | null;
|
@@ -406,7 +416,7 @@ export interface CodeBlockData {
|
|
406
416
|
}
|
407
417
|
export interface TextStyle {
|
408
418
|
/** Text alignment. Defaults to `AUTO`. */
|
409
|
-
textAlignment?:
|
419
|
+
textAlignment?: TextAlignmentWithLiterals;
|
410
420
|
/** 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. */
|
411
421
|
lineHeight?: string | null;
|
412
422
|
}
|
@@ -422,15 +432,17 @@ export declare enum TextAlignment {
|
|
422
432
|
/** 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 */
|
423
433
|
JUSTIFY = "JUSTIFY"
|
424
434
|
}
|
435
|
+
/** @enumType */
|
436
|
+
export type TextAlignmentWithLiterals = TextAlignment | 'AUTO' | 'LEFT' | 'RIGHT' | 'CENTER' | 'JUSTIFY';
|
425
437
|
export interface DividerData {
|
426
438
|
/** Styling for the divider's container. */
|
427
439
|
containerData?: PluginContainerData;
|
428
440
|
/** Divider line style. */
|
429
|
-
lineStyle?:
|
441
|
+
lineStyle?: LineStyleWithLiterals;
|
430
442
|
/** Divider width. */
|
431
|
-
width?:
|
443
|
+
width?: WidthWithLiterals;
|
432
444
|
/** Divider alignment. */
|
433
|
-
alignment?:
|
445
|
+
alignment?: AlignmentWithLiterals;
|
434
446
|
}
|
435
447
|
export declare enum LineStyle {
|
436
448
|
/** Single Line */
|
@@ -442,6 +454,8 @@ export declare enum LineStyle {
|
|
442
454
|
/** Dotted Line */
|
443
455
|
DOTTED = "DOTTED"
|
444
456
|
}
|
457
|
+
/** @enumType */
|
458
|
+
export type LineStyleWithLiterals = LineStyle | 'SINGLE' | 'DOUBLE' | 'DASHED' | 'DOTTED';
|
445
459
|
export declare enum Width {
|
446
460
|
/** Large line */
|
447
461
|
LARGE = "LARGE",
|
@@ -450,6 +464,8 @@ export declare enum Width {
|
|
450
464
|
/** Small line */
|
451
465
|
SMALL = "SMALL"
|
452
466
|
}
|
467
|
+
/** @enumType */
|
468
|
+
export type WidthWithLiterals = Width | 'LARGE' | 'MEDIUM' | 'SMALL';
|
453
469
|
export declare enum Alignment {
|
454
470
|
/** Center alignment */
|
455
471
|
CENTER = "CENTER",
|
@@ -458,6 +474,8 @@ export declare enum Alignment {
|
|
458
474
|
/** Right alignment */
|
459
475
|
RIGHT = "RIGHT"
|
460
476
|
}
|
477
|
+
/** @enumType */
|
478
|
+
export type AlignmentWithLiterals = Alignment | 'CENTER' | 'LEFT' | 'RIGHT';
|
461
479
|
export interface FileData {
|
462
480
|
/** Styling for the file's container. */
|
463
481
|
containerData?: PluginContainerData;
|
@@ -489,6 +507,8 @@ export declare enum ViewMode {
|
|
489
507
|
/** Mini PDF view */
|
490
508
|
MINI = "MINI"
|
491
509
|
}
|
510
|
+
/** @enumType */
|
511
|
+
export type ViewModeWithLiterals = ViewMode | 'NONE' | 'FULL' | 'MINI';
|
492
512
|
export interface FileSource extends FileSourceDataOneOf {
|
493
513
|
/** The absolute URL for the file's source. */
|
494
514
|
url?: string | null;
|
@@ -521,7 +541,7 @@ export interface PDFSettings {
|
|
521
541
|
* `FULL` : A full page view of the PDF is displayed.
|
522
542
|
* `MINI` : A mini view of the PDF is displayed.
|
523
543
|
*/
|
524
|
-
viewMode?:
|
544
|
+
viewMode?: ViewModeWithLiterals;
|
525
545
|
/** Sets whether the PDF download button is disabled. Defaults to `false`. */
|
526
546
|
disableDownload?: boolean | null;
|
527
547
|
/** Sets whether the PDF print button is disabled. Defaults to `false`. */
|
@@ -608,18 +628,24 @@ export declare enum LayoutType {
|
|
608
628
|
/** Fullsize images type */
|
609
629
|
FULLSIZE = "FULLSIZE"
|
610
630
|
}
|
631
|
+
/** @enumType */
|
632
|
+
export type LayoutTypeWithLiterals = LayoutType | 'COLLAGE' | 'MASONRY' | 'GRID' | 'THUMBNAIL' | 'SLIDER' | 'SLIDESHOW' | 'PANORAMA' | 'COLUMN' | 'MAGIC' | 'FULLSIZE';
|
611
633
|
export declare enum Orientation {
|
612
634
|
/** Rows Orientation */
|
613
635
|
ROWS = "ROWS",
|
614
636
|
/** Columns Orientation */
|
615
637
|
COLUMNS = "COLUMNS"
|
616
638
|
}
|
639
|
+
/** @enumType */
|
640
|
+
export type OrientationWithLiterals = Orientation | 'ROWS' | 'COLUMNS';
|
617
641
|
export declare enum Crop {
|
618
642
|
/** Crop to fill */
|
619
643
|
FILL = "FILL",
|
620
644
|
/** Crop to fit */
|
621
645
|
FIT = "FIT"
|
622
646
|
}
|
647
|
+
/** @enumType */
|
648
|
+
export type CropWithLiterals = Crop | 'FILL' | 'FIT';
|
623
649
|
export declare enum ThumbnailsAlignment {
|
624
650
|
/** Top alignment */
|
625
651
|
TOP = "TOP",
|
@@ -632,13 +658,15 @@ export declare enum ThumbnailsAlignment {
|
|
632
658
|
/** No thumbnail */
|
633
659
|
NONE = "NONE"
|
634
660
|
}
|
661
|
+
/** @enumType */
|
662
|
+
export type ThumbnailsAlignmentWithLiterals = ThumbnailsAlignment | 'TOP' | 'RIGHT' | 'BOTTOM' | 'LEFT' | 'NONE';
|
635
663
|
export interface Layout {
|
636
664
|
/** Gallery layout type. */
|
637
|
-
type?:
|
665
|
+
type?: LayoutTypeWithLiterals;
|
638
666
|
/** Sets whether horizontal scroll is enabled. Defaults to `true` unless the layout `type` is set to `GRID` or `COLLAGE`. */
|
639
667
|
horizontalScroll?: boolean | null;
|
640
668
|
/** Gallery orientation. */
|
641
|
-
orientation?:
|
669
|
+
orientation?: OrientationWithLiterals;
|
642
670
|
/** The number of columns to display on full size screens. */
|
643
671
|
numberOfColumns?: number | null;
|
644
672
|
/** The number of columns to display on mobile screens. */
|
@@ -650,13 +678,13 @@ export interface ItemStyle {
|
|
650
678
|
/** Item ratio */
|
651
679
|
ratio?: number | null;
|
652
680
|
/** Sets how item images are cropped. */
|
653
|
-
crop?:
|
681
|
+
crop?: CropWithLiterals;
|
654
682
|
/** The spacing between items in pixels. */
|
655
683
|
spacing?: number | null;
|
656
684
|
}
|
657
685
|
export interface Thumbnails {
|
658
686
|
/** Thumbnail alignment. */
|
659
|
-
placement?:
|
687
|
+
placement?: ThumbnailsAlignmentWithLiterals;
|
660
688
|
/** Spacing between thumbnails in pixels. */
|
661
689
|
spacing?: number | null;
|
662
690
|
}
|
@@ -672,7 +700,7 @@ export interface GIFData {
|
|
672
700
|
/** Width in pixels. */
|
673
701
|
width?: number;
|
674
702
|
/** Type of GIF (Sticker or NORMAL). Defaults to `NORMAL`. */
|
675
|
-
gifType?:
|
703
|
+
gifType?: GIFTypeWithLiterals;
|
676
704
|
}
|
677
705
|
export interface GIF {
|
678
706
|
/**
|
@@ -695,6 +723,8 @@ export declare enum GIFType {
|
|
695
723
|
NORMAL = "NORMAL",
|
696
724
|
STICKER = "STICKER"
|
697
725
|
}
|
726
|
+
/** @enumType */
|
727
|
+
export type GIFTypeWithLiterals = GIFType | 'NORMAL' | 'STICKER';
|
698
728
|
export interface HeadingData {
|
699
729
|
/** Heading level from 1-6. */
|
700
730
|
level?: number;
|
@@ -716,7 +746,7 @@ export interface HTMLData extends HTMLDataDataOneOf {
|
|
716
746
|
/** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */
|
717
747
|
containerData?: PluginContainerData;
|
718
748
|
/** The type of HTML code. */
|
719
|
-
source?:
|
749
|
+
source?: SourceWithLiterals;
|
720
750
|
/** If container height is aligned with its content height. Defaults to `true`. */
|
721
751
|
autoHeight?: boolean | null;
|
722
752
|
}
|
@@ -736,6 +766,8 @@ export declare enum Source {
|
|
736
766
|
HTML = "HTML",
|
737
767
|
ADSENSE = "ADSENSE"
|
738
768
|
}
|
769
|
+
/** @enumType */
|
770
|
+
export type SourceWithLiterals = Source | 'HTML' | 'ADSENSE';
|
739
771
|
export interface ImageData {
|
740
772
|
/** Styling for the image's container. */
|
741
773
|
containerData?: PluginContainerData;
|
@@ -800,6 +832,8 @@ export declare enum Position {
|
|
800
832
|
/** Thumbnail hidden and not displayed */
|
801
833
|
HIDDEN = "HIDDEN"
|
802
834
|
}
|
835
|
+
/** @enumType */
|
836
|
+
export type PositionWithLiterals = Position | 'START' | 'END' | 'TOP' | 'HIDDEN';
|
803
837
|
export interface LinkPreviewDataStyles {
|
804
838
|
/**
|
805
839
|
* Background color as a hexadecimal value.
|
@@ -831,7 +865,7 @@ export interface LinkPreviewDataStyles {
|
|
831
865
|
*/
|
832
866
|
borderColor?: string | null;
|
833
867
|
/** Position of thumbnail. Defaults to `START`. */
|
834
|
-
thumbnailPosition?:
|
868
|
+
thumbnailPosition?: PositionWithLiterals;
|
835
869
|
}
|
836
870
|
export interface MapData {
|
837
871
|
/** Styling for the map's container. */
|
@@ -861,7 +895,7 @@ export interface MapSettings {
|
|
861
895
|
/** Initial zoom value. */
|
862
896
|
initialZoom?: number | null;
|
863
897
|
/** Map type. `HYBRID` is a combination of the `ROADMAP` and `SATELLITE` map types. */
|
864
|
-
mapType?:
|
898
|
+
mapType?: MapTypeWithLiterals;
|
865
899
|
}
|
866
900
|
export declare enum MapType {
|
867
901
|
/** Roadmap map type */
|
@@ -873,6 +907,8 @@ export declare enum MapType {
|
|
873
907
|
/** Terrain map type */
|
874
908
|
TERRAIN = "TERRAIN"
|
875
909
|
}
|
910
|
+
/** @enumType */
|
911
|
+
export type MapTypeWithLiterals = MapType | 'ROADMAP' | 'SATELITE' | 'HYBRID' | 'TERRAIN';
|
876
912
|
export interface ParagraphData {
|
877
913
|
/** Styling for the paragraph text. */
|
878
914
|
textStyle?: TextStyle;
|
@@ -899,17 +935,21 @@ export declare enum ViewRole {
|
|
899
935
|
/** Anyone can see the results, even if one didn't vote */
|
900
936
|
EVERYONE = "EVERYONE"
|
901
937
|
}
|
938
|
+
/** @enumType */
|
939
|
+
export type ViewRoleWithLiterals = ViewRole | 'CREATOR' | 'VOTERS' | 'EVERYONE';
|
902
940
|
export declare enum VoteRole {
|
903
941
|
/** Logged in member */
|
904
942
|
SITE_MEMBERS = "SITE_MEMBERS",
|
905
943
|
/** Anyone */
|
906
944
|
ALL = "ALL"
|
907
945
|
}
|
946
|
+
/** @enumType */
|
947
|
+
export type VoteRoleWithLiterals = VoteRole | 'SITE_MEMBERS' | 'ALL';
|
908
948
|
export interface Permissions {
|
909
949
|
/** Sets who can view the poll results. */
|
910
|
-
view?:
|
950
|
+
view?: ViewRoleWithLiterals;
|
911
951
|
/** Sets who can vote. */
|
912
|
-
vote?:
|
952
|
+
vote?: VoteRoleWithLiterals;
|
913
953
|
/** Sets whether one voter can vote multiple times. Defaults to `false`. */
|
914
954
|
allowMultipleVotes?: boolean | null;
|
915
955
|
}
|
@@ -935,17 +975,21 @@ export declare enum PollLayoutType {
|
|
935
975
|
/** Grid */
|
936
976
|
GRID = "GRID"
|
937
977
|
}
|
978
|
+
/** @enumType */
|
979
|
+
export type PollLayoutTypeWithLiterals = PollLayoutType | 'LIST' | 'GRID';
|
938
980
|
export declare enum PollLayoutDirection {
|
939
981
|
/** Left-to-right */
|
940
982
|
LTR = "LTR",
|
941
983
|
/** Right-to-left */
|
942
984
|
RTL = "RTL"
|
943
985
|
}
|
986
|
+
/** @enumType */
|
987
|
+
export type PollLayoutDirectionWithLiterals = PollLayoutDirection | 'LTR' | 'RTL';
|
944
988
|
export interface PollLayout {
|
945
989
|
/** The layout for displaying the voting options. */
|
946
|
-
type?:
|
990
|
+
type?: PollLayoutTypeWithLiterals;
|
947
991
|
/** The direction of the text displayed in the voting options. Text can be displayed either right-to-left or left-to-right. */
|
948
|
-
direction?:
|
992
|
+
direction?: PollLayoutDirectionWithLiterals;
|
949
993
|
/** Sets whether to display the main poll image. Defaults to `false`. */
|
950
994
|
enableImage?: boolean | null;
|
951
995
|
}
|
@@ -961,6 +1005,8 @@ export declare enum BackgroundType {
|
|
961
1005
|
/** Gradiant background type */
|
962
1006
|
GRADIENT = "GRADIENT"
|
963
1007
|
}
|
1008
|
+
/** @enumType */
|
1009
|
+
export type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
|
964
1010
|
export interface Gradient {
|
965
1011
|
/** The gradient angle in degrees. */
|
966
1012
|
angle?: number | null;
|
@@ -986,7 +1032,7 @@ export interface Background extends BackgroundBackgroundOneOf {
|
|
986
1032
|
/** Details for a gradient background. */
|
987
1033
|
gradient?: Gradient;
|
988
1034
|
/** Background type. For each option, include the relevant details. */
|
989
|
-
type?:
|
1035
|
+
type?: BackgroundTypeWithLiterals;
|
990
1036
|
}
|
991
1037
|
/** @oneof */
|
992
1038
|
export interface BackgroundBackgroundOneOf {
|
@@ -1065,7 +1111,7 @@ export interface Decoration extends DecorationDataOneOf {
|
|
1065
1111
|
/** Data for a strikethrough decoration. Defaults to `true`. */
|
1066
1112
|
strikethroughData?: boolean | null;
|
1067
1113
|
/** The type of decoration to apply. */
|
1068
|
-
type?:
|
1114
|
+
type?: DecorationTypeWithLiterals;
|
1069
1115
|
}
|
1070
1116
|
/** @oneof */
|
1071
1117
|
export interface DecorationDataOneOf {
|
@@ -1103,6 +1149,8 @@ export declare enum DecorationType {
|
|
1103
1149
|
EXTERNAL = "EXTERNAL",
|
1104
1150
|
STRIKETHROUGH = "STRIKETHROUGH"
|
1105
1151
|
}
|
1152
|
+
/** @enumType */
|
1153
|
+
export type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH';
|
1106
1154
|
export interface AnchorData {
|
1107
1155
|
/** The target node's ID. */
|
1108
1156
|
anchor?: string;
|
@@ -1127,7 +1175,7 @@ export interface MentionData {
|
|
1127
1175
|
}
|
1128
1176
|
export interface FontSizeData {
|
1129
1177
|
/** The units used for the font size. */
|
1130
|
-
unit?:
|
1178
|
+
unit?: FontTypeWithLiterals;
|
1131
1179
|
/** Font size value. */
|
1132
1180
|
value?: number | null;
|
1133
1181
|
}
|
@@ -1135,6 +1183,8 @@ export declare enum FontType {
|
|
1135
1183
|
PX = "PX",
|
1136
1184
|
EM = "EM"
|
1137
1185
|
}
|
1186
|
+
/** @enumType */
|
1187
|
+
export type FontTypeWithLiterals = FontType | 'PX' | 'EM';
|
1138
1188
|
export interface SpoilerData {
|
1139
1189
|
/** Spoiler ID. */
|
1140
1190
|
id?: string | null;
|
@@ -1145,7 +1195,7 @@ export interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
1145
1195
|
/** Data for embedded Wix Events content. */
|
1146
1196
|
eventData?: EventData;
|
1147
1197
|
/** The type of Wix App content being embedded. */
|
1148
|
-
type?:
|
1198
|
+
type?: AppTypeWithLiterals;
|
1149
1199
|
/** The ID of the embedded content. */
|
1150
1200
|
itemId?: string | null;
|
1151
1201
|
/** The name of the embedded content. */
|
@@ -1172,6 +1222,8 @@ export declare enum AppType {
|
|
1172
1222
|
EVENT = "EVENT",
|
1173
1223
|
BOOKING = "BOOKING"
|
1174
1224
|
}
|
1225
|
+
/** @enumType */
|
1226
|
+
export type AppTypeWithLiterals = AppType | 'PRODUCT' | 'EVENT' | 'BOOKING';
|
1175
1227
|
export interface BookingData {
|
1176
1228
|
/** Booking duration in minutes. */
|
1177
1229
|
durations?: string | null;
|
@@ -1250,9 +1302,9 @@ export interface CollapsibleListData {
|
|
1250
1302
|
/** If `true`, only one item can be expanded at a time. Defaults to `false`. */
|
1251
1303
|
expandOnlyOne?: boolean | null;
|
1252
1304
|
/** Sets which items are expanded when the page loads. */
|
1253
|
-
initialExpandedItems?:
|
1305
|
+
initialExpandedItems?: InitialExpandedItemsWithLiterals;
|
1254
1306
|
/** The direction of the text in the list. Either left-to-right or right-to-left. */
|
1255
|
-
direction?:
|
1307
|
+
direction?: DirectionWithLiterals;
|
1256
1308
|
/** If `true`, The collapsible item will appear in search results as an FAQ. */
|
1257
1309
|
isQapageData?: boolean | null;
|
1258
1310
|
}
|
@@ -1264,12 +1316,16 @@ export declare enum InitialExpandedItems {
|
|
1264
1316
|
/** All items collapsed initally */
|
1265
1317
|
NONE = "NONE"
|
1266
1318
|
}
|
1319
|
+
/** @enumType */
|
1320
|
+
export type InitialExpandedItemsWithLiterals = InitialExpandedItems | 'FIRST' | 'ALL' | 'NONE';
|
1267
1321
|
export declare enum Direction {
|
1268
1322
|
/** Left-to-right */
|
1269
1323
|
LTR = "LTR",
|
1270
1324
|
/** Right-to-left */
|
1271
1325
|
RTL = "RTL"
|
1272
1326
|
}
|
1327
|
+
/** @enumType */
|
1328
|
+
export type DirectionWithLiterals = Direction | 'LTR' | 'RTL';
|
1273
1329
|
export interface TableData {
|
1274
1330
|
/** Styling for the table's container. */
|
1275
1331
|
containerData?: PluginContainerData;
|
@@ -1307,9 +1363,11 @@ export declare enum VerticalAlignment {
|
|
1307
1363
|
/** Bottom alignment */
|
1308
1364
|
BOTTOM = "BOTTOM"
|
1309
1365
|
}
|
1366
|
+
/** @enumType */
|
1367
|
+
export type VerticalAlignmentWithLiterals = VerticalAlignment | 'TOP' | 'MIDDLE' | 'BOTTOM';
|
1310
1368
|
export interface CellStyle {
|
1311
1369
|
/** Vertical alignment for the cell's text. */
|
1312
|
-
verticalAlignment?:
|
1370
|
+
verticalAlignment?: VerticalAlignmentWithLiterals;
|
1313
1371
|
/**
|
1314
1372
|
* Cell background color as a hexadecimal value.
|
1315
1373
|
* @format COLOR_HEX
|
@@ -1348,6 +1406,8 @@ export declare enum NullValue {
|
|
1348
1406
|
/** Null value. */
|
1349
1407
|
NULL_VALUE = "NULL_VALUE"
|
1350
1408
|
}
|
1409
|
+
/** @enumType */
|
1410
|
+
export type NullValueWithLiterals = NullValue | 'NULL_VALUE';
|
1351
1411
|
/**
|
1352
1412
|
* `ListValue` is a wrapper around a repeated field of values.
|
1353
1413
|
*
|
@@ -1516,7 +1576,7 @@ export interface Sorting {
|
|
1516
1576
|
/** Name of the field to sort by. */
|
1517
1577
|
fieldName?: string;
|
1518
1578
|
/** Sort order. */
|
1519
|
-
order?:
|
1579
|
+
order?: SortOrderWithLiterals;
|
1520
1580
|
}
|
1521
1581
|
export declare enum SortOrder {
|
1522
1582
|
/** Sort is in ascending order. */
|
@@ -1524,6 +1584,8 @@ export declare enum SortOrder {
|
|
1524
1584
|
/** Sort is in the descending order. */
|
1525
1585
|
DESC = "DESC"
|
1526
1586
|
}
|
1587
|
+
/** @enumType */
|
1588
|
+
export type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
|
1527
1589
|
export interface CursorPaging {
|
1528
1590
|
/**
|
1529
1591
|
* Number of items to load.
|
@@ -1575,25 +1637,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
1575
1637
|
updatedEvent?: EntityUpdatedEvent;
|
1576
1638
|
deletedEvent?: EntityDeletedEvent;
|
1577
1639
|
actionEvent?: ActionEvent;
|
1578
|
-
/**
|
1579
|
-
* Unique event ID.
|
1580
|
-
* Allows clients to ignore duplicate webhooks.
|
1581
|
-
*/
|
1640
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
1582
1641
|
id?: string;
|
1583
1642
|
/**
|
1584
|
-
*
|
1585
|
-
*
|
1643
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
1644
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
1586
1645
|
*/
|
1587
1646
|
entityFqdn?: string;
|
1588
1647
|
/**
|
1589
|
-
*
|
1590
|
-
*
|
1591
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
1648
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
1649
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
1592
1650
|
*/
|
1593
1651
|
slug?: string;
|
1594
1652
|
/** ID of the entity associated with the event. */
|
1595
1653
|
entityId?: string;
|
1596
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
1654
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
1597
1655
|
eventTime?: Date | null;
|
1598
1656
|
/**
|
1599
1657
|
* Whether the event was triggered as a result of a privacy regulation application
|
@@ -1603,12 +1661,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
1603
1661
|
/** If present, indicates the action that triggered the event. */
|
1604
1662
|
originatedFrom?: string | null;
|
1605
1663
|
/**
|
1606
|
-
* A sequence number
|
1607
|
-
*
|
1608
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
1609
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
1610
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
1611
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
1664
|
+
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
|
1665
|
+
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
1612
1666
|
*/
|
1613
1667
|
entityEventSequence?: string | null;
|
1614
1668
|
}
|
@@ -1636,7 +1690,7 @@ export interface EntityUpdatedEvent {
|
|
1636
1690
|
currentEntityAsJson?: string;
|
1637
1691
|
}
|
1638
1692
|
export interface EntityDeletedEvent {
|
1639
|
-
/** Entity that was deleted */
|
1693
|
+
/** Entity that was deleted. */
|
1640
1694
|
deletedEntityAsJson?: string | null;
|
1641
1695
|
}
|
1642
1696
|
export interface ActionEvent {
|
@@ -1680,7 +1734,7 @@ export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
1680
1734
|
*/
|
1681
1735
|
appId?: string;
|
1682
1736
|
/** @readonly */
|
1683
|
-
identityType?:
|
1737
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
1684
1738
|
}
|
1685
1739
|
/** @oneof */
|
1686
1740
|
export interface IdentificationDataIdOneOf {
|
@@ -1712,3 +1766,5 @@ export declare enum WebhookIdentityType {
|
|
1712
1766
|
WIX_USER = "WIX_USER",
|
1713
1767
|
APP = "APP"
|
1714
1768
|
}
|
1769
|
+
/** @enumType */
|
1770
|
+
export type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"members-about-v2-member-about-members-about.types.js","sourceRoot":"","sources":["../../../src/members-about-v2-member-about-members-about.types.ts"],"names":[],"mappings":";;;AAsJA,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":"members-about-v2-member-about-members-about.types.js","sourceRoot":"","sources":["../../../src/members-about-v2-member-about-members-about.types.ts"],"names":[],"mappings":"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"}
|