@wix/auto_sdk_members_members-about 1.0.33 → 1.0.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +118 -5
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +109 -3
- package/build/cjs/index.typings.js +97 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +109 -3
- package/build/cjs/meta.js +97 -2
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +114 -5
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +109 -3
- package/build/es/index.typings.mjs +93 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +109 -3
- package/build/es/meta.mjs +93 -2
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +118 -5
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +109 -3
- package/build/internal/cjs/index.typings.js +97 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +109 -3
- package/build/internal/cjs/meta.js +97 -2
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +114 -5
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +109 -3
- package/build/internal/es/index.typings.mjs +93 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +109 -3
- package/build/internal/es/meta.mjs +93 -2
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -78,7 +78,9 @@ interface Node extends NodeDataOneOf {
|
|
|
78
78
|
blockquoteData?: BlockquoteData;
|
|
79
79
|
/** Data for a caption node. */
|
|
80
80
|
captionData?: CaptionData;
|
|
81
|
-
/**
|
|
81
|
+
/** Data for a layout node. Reserved for future use. */
|
|
82
|
+
layoutData?: LayoutData;
|
|
83
|
+
/** Data for a cell node. */
|
|
82
84
|
layoutCellData?: LayoutCellData;
|
|
83
85
|
/** 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. */
|
|
84
86
|
type?: NodeTypeWithLiterals;
|
|
@@ -143,7 +145,9 @@ interface NodeDataOneOf {
|
|
|
143
145
|
blockquoteData?: BlockquoteData;
|
|
144
146
|
/** Data for a caption node. */
|
|
145
147
|
captionData?: CaptionData;
|
|
146
|
-
/**
|
|
148
|
+
/** Data for a layout node. Reserved for future use. */
|
|
149
|
+
layoutData?: LayoutData;
|
|
150
|
+
/** Data for a cell node. */
|
|
147
151
|
layoutCellData?: LayoutCellData;
|
|
148
152
|
}
|
|
149
153
|
declare enum NodeType {
|
|
@@ -1700,6 +1704,108 @@ interface BlockquoteData {
|
|
|
1700
1704
|
interface CaptionData {
|
|
1701
1705
|
textStyle?: TextStyle;
|
|
1702
1706
|
}
|
|
1707
|
+
interface LayoutData {
|
|
1708
|
+
/**
|
|
1709
|
+
* Background color as a hexadecimal value.
|
|
1710
|
+
* @format COLOR_HEX
|
|
1711
|
+
*/
|
|
1712
|
+
backgroundColor?: string | null;
|
|
1713
|
+
/** Background image. */
|
|
1714
|
+
backgroundImage?: BackgroundImage;
|
|
1715
|
+
/**
|
|
1716
|
+
* Border color as a hexadecimal value.
|
|
1717
|
+
* @format COLOR_HEX
|
|
1718
|
+
*/
|
|
1719
|
+
borderColor?: string | null;
|
|
1720
|
+
/** Border width in pixels. */
|
|
1721
|
+
borderWidth?: number | null;
|
|
1722
|
+
/** Border */
|
|
1723
|
+
borderRadius?: number | null;
|
|
1724
|
+
/**
|
|
1725
|
+
* Backdrop color as a hexadecimal value.
|
|
1726
|
+
* @format COLOR_HEX
|
|
1727
|
+
*/
|
|
1728
|
+
backdropColor?: string | null;
|
|
1729
|
+
/** Backdrop image.radius in pixels. */
|
|
1730
|
+
backdropImage?: BackgroundImage;
|
|
1731
|
+
/** Backdrop top padding. */
|
|
1732
|
+
backdropPaddingTop?: number | null;
|
|
1733
|
+
/** Backdrop bottom padding */
|
|
1734
|
+
backdropPaddingBottom?: number | null;
|
|
1735
|
+
/** Horizontal and vertical gap between columns */
|
|
1736
|
+
gap?: number | null;
|
|
1737
|
+
/**
|
|
1738
|
+
* Padding in pixels for cells. Follows CSS order: top, right, bottom, left
|
|
1739
|
+
* @maxSize 4
|
|
1740
|
+
*/
|
|
1741
|
+
cellPadding?: number[];
|
|
1742
|
+
/** Vertical alignment for the cell's items. */
|
|
1743
|
+
cellVerticalAlignment?: VerticalAlignmentAlignmentWithLiterals;
|
|
1744
|
+
/** Responsiveness behaviour of columns when responsiveness applies. Either stacks or wrappers. */
|
|
1745
|
+
responsivenessBehaviour?: ResponsivenessBehaviourWithLiterals;
|
|
1746
|
+
/** Size in pixels when responsiveness_behaviour applies */
|
|
1747
|
+
responsivenessBreakpoint?: number | null;
|
|
1748
|
+
}
|
|
1749
|
+
declare enum Scaling {
|
|
1750
|
+
/** Auto image scaling */
|
|
1751
|
+
AUTO = "AUTO",
|
|
1752
|
+
/** Contain image scaling */
|
|
1753
|
+
CONTAIN = "CONTAIN",
|
|
1754
|
+
/** Cover image scaling */
|
|
1755
|
+
COVER = "COVER"
|
|
1756
|
+
}
|
|
1757
|
+
/** @enumType */
|
|
1758
|
+
type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
1759
|
+
declare enum ImagePosition {
|
|
1760
|
+
/** Image positioned at the center */
|
|
1761
|
+
CENTER = "CENTER",
|
|
1762
|
+
/** Image positioned on the left */
|
|
1763
|
+
CENTER_LEFT = "CENTER_LEFT",
|
|
1764
|
+
/** Image positioned on the right */
|
|
1765
|
+
CENTER_RIGHT = "CENTER_RIGHT",
|
|
1766
|
+
/** Image positioned at the center top */
|
|
1767
|
+
TOP = "TOP",
|
|
1768
|
+
/** Image positioned at the top left */
|
|
1769
|
+
TOP_LEFT = "TOP_LEFT",
|
|
1770
|
+
/** Image positioned at the top right */
|
|
1771
|
+
TOP_RIGHT = "TOP_RIGHT",
|
|
1772
|
+
/** Image positioned at the center bottom */
|
|
1773
|
+
BOTTOM = "BOTTOM",
|
|
1774
|
+
/** Image positioned at the bottom left */
|
|
1775
|
+
BOTTOM_LEFT = "BOTTOM_LEFT",
|
|
1776
|
+
/** Image positioned at the bottom right */
|
|
1777
|
+
BOTTOM_RIGHT = "BOTTOM_RIGHT"
|
|
1778
|
+
}
|
|
1779
|
+
/** @enumType */
|
|
1780
|
+
type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
1781
|
+
interface BackgroundImage {
|
|
1782
|
+
/** Background image. */
|
|
1783
|
+
media?: Media;
|
|
1784
|
+
/** Background image opacity. */
|
|
1785
|
+
opacity?: number | null;
|
|
1786
|
+
/** Background image scaling. */
|
|
1787
|
+
scaling?: ScalingWithLiterals;
|
|
1788
|
+
/** Position of background. Defaults to `CENTER`. */
|
|
1789
|
+
position?: ImagePositionWithLiterals;
|
|
1790
|
+
}
|
|
1791
|
+
declare enum VerticalAlignmentAlignment {
|
|
1792
|
+
/** Top alignment */
|
|
1793
|
+
TOP = "TOP",
|
|
1794
|
+
/** Middle alignment */
|
|
1795
|
+
MIDDLE = "MIDDLE",
|
|
1796
|
+
/** Bottom alignment */
|
|
1797
|
+
BOTTOM = "BOTTOM"
|
|
1798
|
+
}
|
|
1799
|
+
/** @enumType */
|
|
1800
|
+
type VerticalAlignmentAlignmentWithLiterals = VerticalAlignmentAlignment | 'TOP' | 'MIDDLE' | 'BOTTOM';
|
|
1801
|
+
declare enum ResponsivenessBehaviour {
|
|
1802
|
+
/** Stacking of columns */
|
|
1803
|
+
STACK = "STACK",
|
|
1804
|
+
/** Wrapping of columns */
|
|
1805
|
+
WRAP = "WRAP"
|
|
1806
|
+
}
|
|
1807
|
+
/** @enumType */
|
|
1808
|
+
type ResponsivenessBehaviourWithLiterals = ResponsivenessBehaviour | 'STACK' | 'WRAP';
|
|
1703
1809
|
interface LayoutCellData {
|
|
1704
1810
|
/** Size of the cell in 12 columns grid. */
|
|
1705
1811
|
colSpan?: number | null;
|
|
@@ -2301,4 +2407,4 @@ interface MemberAboutsQueryBuilder {
|
|
|
2301
2407
|
find: () => Promise<MemberAboutsQueryResult>;
|
|
2302
2408
|
}
|
|
2303
2409
|
|
|
2304
|
-
export { type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, BackgroundType, type BackgroundTypeWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardStyles, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CreateMemberAboutRequest, type CreateMemberAboutResponse, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteMemberAboutRequest, type DeleteMemberAboutResponse, type Design, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type EventMetadata, type FileData, type FileSource, type FileSourceDataOneOf, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetMemberAboutRequest, type GetMemberAboutResponse, type GetMyMemberAboutRequest, type GetMyMemberAboutResponse, type Gradient, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Item, type ItemDataOneOf, type ItemStyle, Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MemberAbout, type MemberAboutCreatedEnvelope, type MemberAboutDeletedEnvelope, type MemberAboutUpdatedEnvelope, type MemberAboutsQueryBuilder, type MemberAboutsQueryResult, type MentionData, type MessageEnvelope, type Metadata, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, type PricingData, type QueryMemberAboutsRequest, type QueryMemberAboutsResponse, type Rel, Resizing, type ResizingWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, type Settings, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type TableCellData, type TableData, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, Type, type TypeWithLiterals, type UpdateMemberAbout, type UpdateMemberAboutRequest, type UpdateMemberAboutResponse, VerticalAlignment, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, createMemberAbout, deleteMemberAbout, getMemberAbout, getMyMemberAbout, onMemberAboutCreated, onMemberAboutDeleted, onMemberAboutUpdated, queryMemberAbouts, updateMemberAbout };
|
|
2410
|
+
export { type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardStyles, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CreateMemberAboutRequest, type CreateMemberAboutResponse, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteMemberAboutRequest, type DeleteMemberAboutResponse, type Design, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type EventMetadata, type FileData, type FileSource, type FileSourceDataOneOf, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetMemberAboutRequest, type GetMemberAboutResponse, type GetMyMemberAboutRequest, type GetMyMemberAboutResponse, type Gradient, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, type ImagePositionWithLiterals, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Item, type ItemDataOneOf, type ItemStyle, Layout, type LayoutCellData, type LayoutData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MemberAbout, type MemberAboutCreatedEnvelope, type MemberAboutDeletedEnvelope, type MemberAboutUpdatedEnvelope, type MemberAboutsQueryBuilder, type MemberAboutsQueryResult, type MentionData, type MessageEnvelope, type Metadata, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, type PricingData, type QueryMemberAboutsRequest, type QueryMemberAboutsResponse, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type Settings, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type TableCellData, type TableData, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, Type, type TypeWithLiterals, type UpdateMemberAbout, type UpdateMemberAboutRequest, type UpdateMemberAboutResponse, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, createMemberAbout, deleteMemberAbout, getMemberAbout, getMyMemberAbout, onMemberAboutCreated, onMemberAboutDeleted, onMemberAboutUpdated, queryMemberAbouts, updateMemberAbout };
|
|
@@ -31,6 +31,7 @@ __export(index_typings_exports, {
|
|
|
31
31
|
DividerDataAlignment: () => DividerDataAlignment,
|
|
32
32
|
FontType: () => FontType,
|
|
33
33
|
GIFType: () => GIFType,
|
|
34
|
+
ImagePosition: () => ImagePosition,
|
|
34
35
|
InitialExpandedItems: () => InitialExpandedItems,
|
|
35
36
|
Layout: () => Layout,
|
|
36
37
|
LayoutType: () => LayoutType,
|
|
@@ -45,6 +46,8 @@ __export(index_typings_exports, {
|
|
|
45
46
|
PollLayoutType: () => PollLayoutType,
|
|
46
47
|
Position: () => Position,
|
|
47
48
|
Resizing: () => Resizing,
|
|
49
|
+
ResponsivenessBehaviour: () => ResponsivenessBehaviour,
|
|
50
|
+
Scaling: () => Scaling,
|
|
48
51
|
SortOrder: () => SortOrder,
|
|
49
52
|
Source: () => Source,
|
|
50
53
|
StylesPosition: () => StylesPosition,
|
|
@@ -53,6 +56,7 @@ __export(index_typings_exports, {
|
|
|
53
56
|
ThumbnailsAlignment: () => ThumbnailsAlignment,
|
|
54
57
|
Type: () => Type,
|
|
55
58
|
VerticalAlignment: () => VerticalAlignment,
|
|
59
|
+
VerticalAlignmentAlignment: () => VerticalAlignmentAlignment,
|
|
56
60
|
ViewMode: () => ViewMode,
|
|
57
61
|
ViewRole: () => ViewRole,
|
|
58
62
|
VoteRole: () => VoteRole,
|
|
@@ -117,6 +121,22 @@ function resolveWixMembersAboutV2MembersAboutUrl(opts) {
|
|
|
117
121
|
{
|
|
118
122
|
srcPath: "/members/v2/abouts",
|
|
119
123
|
destPath: "/v2/abouts"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
srcPath: "/_api/members/v2/abouts",
|
|
127
|
+
destPath: "/v2/abouts"
|
|
128
|
+
}
|
|
129
|
+
],
|
|
130
|
+
"*.dev.wix-code.com": [
|
|
131
|
+
{
|
|
132
|
+
srcPath: "/_api/members/v2/abouts",
|
|
133
|
+
destPath: "/v2/abouts"
|
|
134
|
+
}
|
|
135
|
+
],
|
|
136
|
+
_: [
|
|
137
|
+
{
|
|
138
|
+
srcPath: "/_api/members/v2/abouts",
|
|
139
|
+
destPath: "/v2/abouts"
|
|
120
140
|
}
|
|
121
141
|
]
|
|
122
142
|
};
|
|
@@ -153,7 +173,13 @@ function createMemberAbout(payload) {
|
|
|
153
173
|
{ path: "memberAbout.content.nodes.videoData.video.duration" },
|
|
154
174
|
{ path: "memberAbout.content.nodes.videoData.thumbnail.duration" },
|
|
155
175
|
{ path: "memberAbout.content.nodes.audioData.audio.duration" },
|
|
156
|
-
{ path: "memberAbout.content.nodes.audioData.coverImage.duration" }
|
|
176
|
+
{ path: "memberAbout.content.nodes.audioData.coverImage.duration" },
|
|
177
|
+
{
|
|
178
|
+
path: "memberAbout.content.nodes.layoutData.backgroundImage.media.duration"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
path: "memberAbout.content.nodes.layoutData.backdropImage.media.duration"
|
|
182
|
+
}
|
|
157
183
|
]
|
|
158
184
|
},
|
|
159
185
|
{
|
|
@@ -214,6 +240,12 @@ function createMemberAbout(payload) {
|
|
|
214
240
|
{ path: "memberAbout.content.nodes.audioData.audio.duration" },
|
|
215
241
|
{
|
|
216
242
|
path: "memberAbout.content.nodes.audioData.coverImage.duration"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
path: "memberAbout.content.nodes.layoutData.backgroundImage.media.duration"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
path: "memberAbout.content.nodes.layoutData.backdropImage.media.duration"
|
|
217
249
|
}
|
|
218
250
|
]
|
|
219
251
|
},
|
|
@@ -260,7 +292,13 @@ function updateMemberAbout(payload) {
|
|
|
260
292
|
{ path: "memberAbout.content.nodes.videoData.video.duration" },
|
|
261
293
|
{ path: "memberAbout.content.nodes.videoData.thumbnail.duration" },
|
|
262
294
|
{ path: "memberAbout.content.nodes.audioData.audio.duration" },
|
|
263
|
-
{ path: "memberAbout.content.nodes.audioData.coverImage.duration" }
|
|
295
|
+
{ path: "memberAbout.content.nodes.audioData.coverImage.duration" },
|
|
296
|
+
{
|
|
297
|
+
path: "memberAbout.content.nodes.layoutData.backgroundImage.media.duration"
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
path: "memberAbout.content.nodes.layoutData.backdropImage.media.duration"
|
|
301
|
+
}
|
|
264
302
|
]
|
|
265
303
|
},
|
|
266
304
|
{
|
|
@@ -321,6 +359,12 @@ function updateMemberAbout(payload) {
|
|
|
321
359
|
{ path: "memberAbout.content.nodes.audioData.audio.duration" },
|
|
322
360
|
{
|
|
323
361
|
path: "memberAbout.content.nodes.audioData.coverImage.duration"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
path: "memberAbout.content.nodes.layoutData.backgroundImage.media.duration"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
path: "memberAbout.content.nodes.layoutData.backdropImage.media.duration"
|
|
324
368
|
}
|
|
325
369
|
]
|
|
326
370
|
},
|
|
@@ -410,6 +454,12 @@ function getMemberAbout(payload) {
|
|
|
410
454
|
{ path: "memberAbout.content.nodes.audioData.audio.duration" },
|
|
411
455
|
{
|
|
412
456
|
path: "memberAbout.content.nodes.audioData.coverImage.duration"
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
path: "memberAbout.content.nodes.layoutData.backgroundImage.media.duration"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
path: "memberAbout.content.nodes.layoutData.backdropImage.media.duration"
|
|
413
463
|
}
|
|
414
464
|
]
|
|
415
465
|
},
|
|
@@ -478,6 +528,12 @@ function getMyMemberAbout(payload) {
|
|
|
478
528
|
{ path: "memberAbout.content.nodes.audioData.audio.duration" },
|
|
479
529
|
{
|
|
480
530
|
path: "memberAbout.content.nodes.audioData.coverImage.duration"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
path: "memberAbout.content.nodes.layoutData.backgroundImage.media.duration"
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
path: "memberAbout.content.nodes.layoutData.backdropImage.media.duration"
|
|
481
537
|
}
|
|
482
538
|
]
|
|
483
539
|
},
|
|
@@ -548,6 +604,12 @@ function queryMemberAbouts(payload) {
|
|
|
548
604
|
{ path: "memberAbouts.content.nodes.audioData.audio.duration" },
|
|
549
605
|
{
|
|
550
606
|
path: "memberAbouts.content.nodes.audioData.coverImage.duration"
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
path: "memberAbouts.content.nodes.layoutData.backgroundImage.media.duration"
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
path: "memberAbouts.content.nodes.layoutData.backdropImage.media.duration"
|
|
551
613
|
}
|
|
552
614
|
]
|
|
553
615
|
},
|
|
@@ -829,6 +891,35 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
|
829
891
|
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
830
892
|
return NullValue2;
|
|
831
893
|
})(NullValue || {});
|
|
894
|
+
var Scaling = /* @__PURE__ */ ((Scaling2) => {
|
|
895
|
+
Scaling2["AUTO"] = "AUTO";
|
|
896
|
+
Scaling2["CONTAIN"] = "CONTAIN";
|
|
897
|
+
Scaling2["COVER"] = "COVER";
|
|
898
|
+
return Scaling2;
|
|
899
|
+
})(Scaling || {});
|
|
900
|
+
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
901
|
+
ImagePosition2["CENTER"] = "CENTER";
|
|
902
|
+
ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
903
|
+
ImagePosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
904
|
+
ImagePosition2["TOP"] = "TOP";
|
|
905
|
+
ImagePosition2["TOP_LEFT"] = "TOP_LEFT";
|
|
906
|
+
ImagePosition2["TOP_RIGHT"] = "TOP_RIGHT";
|
|
907
|
+
ImagePosition2["BOTTOM"] = "BOTTOM";
|
|
908
|
+
ImagePosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
909
|
+
ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
910
|
+
return ImagePosition2;
|
|
911
|
+
})(ImagePosition || {});
|
|
912
|
+
var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
|
|
913
|
+
VerticalAlignmentAlignment2["TOP"] = "TOP";
|
|
914
|
+
VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
|
|
915
|
+
VerticalAlignmentAlignment2["BOTTOM"] = "BOTTOM";
|
|
916
|
+
return VerticalAlignmentAlignment2;
|
|
917
|
+
})(VerticalAlignmentAlignment || {});
|
|
918
|
+
var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
|
|
919
|
+
ResponsivenessBehaviour2["STACK"] = "STACK";
|
|
920
|
+
ResponsivenessBehaviour2["WRAP"] = "WRAP";
|
|
921
|
+
return ResponsivenessBehaviour2;
|
|
922
|
+
})(ResponsivenessBehaviour || {});
|
|
832
923
|
var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|
|
833
924
|
SortOrder2["ASC"] = "ASC";
|
|
834
925
|
SortOrder2["DESC"] = "DESC";
|
|
@@ -1029,6 +1120,7 @@ function queryMemberAbouts2() {
|
|
|
1029
1120
|
DividerDataAlignment,
|
|
1030
1121
|
FontType,
|
|
1031
1122
|
GIFType,
|
|
1123
|
+
ImagePosition,
|
|
1032
1124
|
InitialExpandedItems,
|
|
1033
1125
|
Layout,
|
|
1034
1126
|
LayoutType,
|
|
@@ -1043,6 +1135,8 @@ function queryMemberAbouts2() {
|
|
|
1043
1135
|
PollLayoutType,
|
|
1044
1136
|
Position,
|
|
1045
1137
|
Resizing,
|
|
1138
|
+
ResponsivenessBehaviour,
|
|
1139
|
+
Scaling,
|
|
1046
1140
|
SortOrder,
|
|
1047
1141
|
Source,
|
|
1048
1142
|
StylesPosition,
|
|
@@ -1051,6 +1145,7 @@ function queryMemberAbouts2() {
|
|
|
1051
1145
|
ThumbnailsAlignment,
|
|
1052
1146
|
Type,
|
|
1053
1147
|
VerticalAlignment,
|
|
1148
|
+
VerticalAlignmentAlignment,
|
|
1054
1149
|
ViewMode,
|
|
1055
1150
|
ViewRole,
|
|
1056
1151
|
VoteRole,
|