@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 };
|
|
@@ -50,6 +50,22 @@ function resolveWixMembersAboutV2MembersAboutUrl(opts) {
|
|
|
50
50
|
{
|
|
51
51
|
srcPath: "/members/v2/abouts",
|
|
52
52
|
destPath: "/v2/abouts"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
srcPath: "/_api/members/v2/abouts",
|
|
56
|
+
destPath: "/v2/abouts"
|
|
57
|
+
}
|
|
58
|
+
],
|
|
59
|
+
"*.dev.wix-code.com": [
|
|
60
|
+
{
|
|
61
|
+
srcPath: "/_api/members/v2/abouts",
|
|
62
|
+
destPath: "/v2/abouts"
|
|
63
|
+
}
|
|
64
|
+
],
|
|
65
|
+
_: [
|
|
66
|
+
{
|
|
67
|
+
srcPath: "/_api/members/v2/abouts",
|
|
68
|
+
destPath: "/v2/abouts"
|
|
53
69
|
}
|
|
54
70
|
]
|
|
55
71
|
};
|
|
@@ -86,7 +102,13 @@ function createMemberAbout(payload) {
|
|
|
86
102
|
{ path: "memberAbout.content.nodes.videoData.video.duration" },
|
|
87
103
|
{ path: "memberAbout.content.nodes.videoData.thumbnail.duration" },
|
|
88
104
|
{ path: "memberAbout.content.nodes.audioData.audio.duration" },
|
|
89
|
-
{ path: "memberAbout.content.nodes.audioData.coverImage.duration" }
|
|
105
|
+
{ path: "memberAbout.content.nodes.audioData.coverImage.duration" },
|
|
106
|
+
{
|
|
107
|
+
path: "memberAbout.content.nodes.layoutData.backgroundImage.media.duration"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
path: "memberAbout.content.nodes.layoutData.backdropImage.media.duration"
|
|
111
|
+
}
|
|
90
112
|
]
|
|
91
113
|
},
|
|
92
114
|
{
|
|
@@ -147,6 +169,12 @@ function createMemberAbout(payload) {
|
|
|
147
169
|
{ path: "memberAbout.content.nodes.audioData.audio.duration" },
|
|
148
170
|
{
|
|
149
171
|
path: "memberAbout.content.nodes.audioData.coverImage.duration"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
path: "memberAbout.content.nodes.layoutData.backgroundImage.media.duration"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
path: "memberAbout.content.nodes.layoutData.backdropImage.media.duration"
|
|
150
178
|
}
|
|
151
179
|
]
|
|
152
180
|
},
|
|
@@ -193,7 +221,13 @@ function updateMemberAbout(payload) {
|
|
|
193
221
|
{ path: "memberAbout.content.nodes.videoData.video.duration" },
|
|
194
222
|
{ path: "memberAbout.content.nodes.videoData.thumbnail.duration" },
|
|
195
223
|
{ path: "memberAbout.content.nodes.audioData.audio.duration" },
|
|
196
|
-
{ path: "memberAbout.content.nodes.audioData.coverImage.duration" }
|
|
224
|
+
{ path: "memberAbout.content.nodes.audioData.coverImage.duration" },
|
|
225
|
+
{
|
|
226
|
+
path: "memberAbout.content.nodes.layoutData.backgroundImage.media.duration"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
path: "memberAbout.content.nodes.layoutData.backdropImage.media.duration"
|
|
230
|
+
}
|
|
197
231
|
]
|
|
198
232
|
},
|
|
199
233
|
{
|
|
@@ -254,6 +288,12 @@ function updateMemberAbout(payload) {
|
|
|
254
288
|
{ path: "memberAbout.content.nodes.audioData.audio.duration" },
|
|
255
289
|
{
|
|
256
290
|
path: "memberAbout.content.nodes.audioData.coverImage.duration"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
path: "memberAbout.content.nodes.layoutData.backgroundImage.media.duration"
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
path: "memberAbout.content.nodes.layoutData.backdropImage.media.duration"
|
|
257
297
|
}
|
|
258
298
|
]
|
|
259
299
|
},
|
|
@@ -343,6 +383,12 @@ function getMemberAbout(payload) {
|
|
|
343
383
|
{ path: "memberAbout.content.nodes.audioData.audio.duration" },
|
|
344
384
|
{
|
|
345
385
|
path: "memberAbout.content.nodes.audioData.coverImage.duration"
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
path: "memberAbout.content.nodes.layoutData.backgroundImage.media.duration"
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
path: "memberAbout.content.nodes.layoutData.backdropImage.media.duration"
|
|
346
392
|
}
|
|
347
393
|
]
|
|
348
394
|
},
|
|
@@ -411,6 +457,12 @@ function getMyMemberAbout(payload) {
|
|
|
411
457
|
{ path: "memberAbout.content.nodes.audioData.audio.duration" },
|
|
412
458
|
{
|
|
413
459
|
path: "memberAbout.content.nodes.audioData.coverImage.duration"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
path: "memberAbout.content.nodes.layoutData.backgroundImage.media.duration"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
path: "memberAbout.content.nodes.layoutData.backdropImage.media.duration"
|
|
414
466
|
}
|
|
415
467
|
]
|
|
416
468
|
},
|
|
@@ -481,6 +533,12 @@ function queryMemberAbouts(payload) {
|
|
|
481
533
|
{ path: "memberAbouts.content.nodes.audioData.audio.duration" },
|
|
482
534
|
{
|
|
483
535
|
path: "memberAbouts.content.nodes.audioData.coverImage.duration"
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
path: "memberAbouts.content.nodes.layoutData.backgroundImage.media.duration"
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
path: "memberAbouts.content.nodes.layoutData.backdropImage.media.duration"
|
|
484
542
|
}
|
|
485
543
|
]
|
|
486
544
|
},
|
|
@@ -762,6 +820,35 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
|
762
820
|
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
763
821
|
return NullValue2;
|
|
764
822
|
})(NullValue || {});
|
|
823
|
+
var Scaling = /* @__PURE__ */ ((Scaling2) => {
|
|
824
|
+
Scaling2["AUTO"] = "AUTO";
|
|
825
|
+
Scaling2["CONTAIN"] = "CONTAIN";
|
|
826
|
+
Scaling2["COVER"] = "COVER";
|
|
827
|
+
return Scaling2;
|
|
828
|
+
})(Scaling || {});
|
|
829
|
+
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
830
|
+
ImagePosition2["CENTER"] = "CENTER";
|
|
831
|
+
ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
832
|
+
ImagePosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
833
|
+
ImagePosition2["TOP"] = "TOP";
|
|
834
|
+
ImagePosition2["TOP_LEFT"] = "TOP_LEFT";
|
|
835
|
+
ImagePosition2["TOP_RIGHT"] = "TOP_RIGHT";
|
|
836
|
+
ImagePosition2["BOTTOM"] = "BOTTOM";
|
|
837
|
+
ImagePosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
838
|
+
ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
839
|
+
return ImagePosition2;
|
|
840
|
+
})(ImagePosition || {});
|
|
841
|
+
var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
|
|
842
|
+
VerticalAlignmentAlignment2["TOP"] = "TOP";
|
|
843
|
+
VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
|
|
844
|
+
VerticalAlignmentAlignment2["BOTTOM"] = "BOTTOM";
|
|
845
|
+
return VerticalAlignmentAlignment2;
|
|
846
|
+
})(VerticalAlignmentAlignment || {});
|
|
847
|
+
var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
|
|
848
|
+
ResponsivenessBehaviour2["STACK"] = "STACK";
|
|
849
|
+
ResponsivenessBehaviour2["WRAP"] = "WRAP";
|
|
850
|
+
return ResponsivenessBehaviour2;
|
|
851
|
+
})(ResponsivenessBehaviour || {});
|
|
765
852
|
var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|
|
766
853
|
SortOrder2["ASC"] = "ASC";
|
|
767
854
|
SortOrder2["DESC"] = "DESC";
|
|
@@ -961,6 +1048,7 @@ export {
|
|
|
961
1048
|
DividerDataAlignment,
|
|
962
1049
|
FontType,
|
|
963
1050
|
GIFType,
|
|
1051
|
+
ImagePosition,
|
|
964
1052
|
InitialExpandedItems,
|
|
965
1053
|
Layout,
|
|
966
1054
|
LayoutType,
|
|
@@ -975,6 +1063,8 @@ export {
|
|
|
975
1063
|
PollLayoutType,
|
|
976
1064
|
Position,
|
|
977
1065
|
Resizing,
|
|
1066
|
+
ResponsivenessBehaviour,
|
|
1067
|
+
Scaling,
|
|
978
1068
|
SortOrder,
|
|
979
1069
|
Source,
|
|
980
1070
|
StylesPosition,
|
|
@@ -983,6 +1073,7 @@ export {
|
|
|
983
1073
|
ThumbnailsAlignment,
|
|
984
1074
|
Type,
|
|
985
1075
|
VerticalAlignment,
|
|
1076
|
+
VerticalAlignmentAlignment,
|
|
986
1077
|
ViewMode,
|
|
987
1078
|
ViewRole,
|
|
988
1079
|
VoteRole,
|