@wix/auto_sdk_members_members-about 1.0.32 → 1.0.34
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 +103 -5
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +112 -5
- package/build/cjs/index.typings.js +82 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +112 -5
- package/build/cjs/meta.js +82 -2
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +99 -5
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +112 -5
- package/build/es/index.typings.mjs +78 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +112 -5
- package/build/es/meta.mjs +78 -2
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +103 -5
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +112 -5
- package/build/internal/cjs/index.typings.js +82 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +112 -5
- package/build/internal/cjs/meta.js +82 -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 +99 -5
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +112 -5
- package/build/internal/es/index.typings.mjs +78 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +112 -5
- package/build/internal/es/meta.mjs +78 -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 {
|
|
@@ -766,10 +770,11 @@ interface HTMLDataDataOneOf {
|
|
|
766
770
|
}
|
|
767
771
|
declare enum Source {
|
|
768
772
|
HTML = "HTML",
|
|
769
|
-
ADSENSE = "ADSENSE"
|
|
773
|
+
ADSENSE = "ADSENSE",
|
|
774
|
+
AI = "AI"
|
|
770
775
|
}
|
|
771
776
|
/** @enumType */
|
|
772
|
-
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE';
|
|
777
|
+
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
|
|
773
778
|
interface ImageData {
|
|
774
779
|
/** Styling for the image's container. */
|
|
775
780
|
containerData?: PluginContainerData;
|
|
@@ -1699,6 +1704,108 @@ interface BlockquoteData {
|
|
|
1699
1704
|
interface CaptionData {
|
|
1700
1705
|
textStyle?: TextStyle;
|
|
1701
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';
|
|
1702
1809
|
interface LayoutCellData {
|
|
1703
1810
|
/** Size of the cell in 12 columns grid. */
|
|
1704
1811
|
colSpan?: number | null;
|
|
@@ -2300,4 +2407,4 @@ interface MemberAboutsQueryBuilder {
|
|
|
2300
2407
|
find: () => Promise<MemberAboutsQueryResult>;
|
|
2301
2408
|
}
|
|
2302
2409
|
|
|
2303
|
-
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,
|
|
@@ -153,7 +157,13 @@ function createMemberAbout(payload) {
|
|
|
153
157
|
{ path: "memberAbout.content.nodes.videoData.video.duration" },
|
|
154
158
|
{ path: "memberAbout.content.nodes.videoData.thumbnail.duration" },
|
|
155
159
|
{ path: "memberAbout.content.nodes.audioData.audio.duration" },
|
|
156
|
-
{ path: "memberAbout.content.nodes.audioData.coverImage.duration" }
|
|
160
|
+
{ path: "memberAbout.content.nodes.audioData.coverImage.duration" },
|
|
161
|
+
{
|
|
162
|
+
path: "memberAbout.content.nodes.layoutData.backgroundImage.media.duration"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
path: "memberAbout.content.nodes.layoutData.backdropImage.media.duration"
|
|
166
|
+
}
|
|
157
167
|
]
|
|
158
168
|
},
|
|
159
169
|
{
|
|
@@ -214,6 +224,12 @@ function createMemberAbout(payload) {
|
|
|
214
224
|
{ path: "memberAbout.content.nodes.audioData.audio.duration" },
|
|
215
225
|
{
|
|
216
226
|
path: "memberAbout.content.nodes.audioData.coverImage.duration"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
path: "memberAbout.content.nodes.layoutData.backgroundImage.media.duration"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
path: "memberAbout.content.nodes.layoutData.backdropImage.media.duration"
|
|
217
233
|
}
|
|
218
234
|
]
|
|
219
235
|
},
|
|
@@ -260,7 +276,13 @@ function updateMemberAbout(payload) {
|
|
|
260
276
|
{ path: "memberAbout.content.nodes.videoData.video.duration" },
|
|
261
277
|
{ path: "memberAbout.content.nodes.videoData.thumbnail.duration" },
|
|
262
278
|
{ path: "memberAbout.content.nodes.audioData.audio.duration" },
|
|
263
|
-
{ path: "memberAbout.content.nodes.audioData.coverImage.duration" }
|
|
279
|
+
{ path: "memberAbout.content.nodes.audioData.coverImage.duration" },
|
|
280
|
+
{
|
|
281
|
+
path: "memberAbout.content.nodes.layoutData.backgroundImage.media.duration"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
path: "memberAbout.content.nodes.layoutData.backdropImage.media.duration"
|
|
285
|
+
}
|
|
264
286
|
]
|
|
265
287
|
},
|
|
266
288
|
{
|
|
@@ -321,6 +343,12 @@ function updateMemberAbout(payload) {
|
|
|
321
343
|
{ path: "memberAbout.content.nodes.audioData.audio.duration" },
|
|
322
344
|
{
|
|
323
345
|
path: "memberAbout.content.nodes.audioData.coverImage.duration"
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
path: "memberAbout.content.nodes.layoutData.backgroundImage.media.duration"
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
path: "memberAbout.content.nodes.layoutData.backdropImage.media.duration"
|
|
324
352
|
}
|
|
325
353
|
]
|
|
326
354
|
},
|
|
@@ -410,6 +438,12 @@ function getMemberAbout(payload) {
|
|
|
410
438
|
{ path: "memberAbout.content.nodes.audioData.audio.duration" },
|
|
411
439
|
{
|
|
412
440
|
path: "memberAbout.content.nodes.audioData.coverImage.duration"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
path: "memberAbout.content.nodes.layoutData.backgroundImage.media.duration"
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
path: "memberAbout.content.nodes.layoutData.backdropImage.media.duration"
|
|
413
447
|
}
|
|
414
448
|
]
|
|
415
449
|
},
|
|
@@ -478,6 +512,12 @@ function getMyMemberAbout(payload) {
|
|
|
478
512
|
{ path: "memberAbout.content.nodes.audioData.audio.duration" },
|
|
479
513
|
{
|
|
480
514
|
path: "memberAbout.content.nodes.audioData.coverImage.duration"
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
path: "memberAbout.content.nodes.layoutData.backgroundImage.media.duration"
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
path: "memberAbout.content.nodes.layoutData.backdropImage.media.duration"
|
|
481
521
|
}
|
|
482
522
|
]
|
|
483
523
|
},
|
|
@@ -548,6 +588,12 @@ function queryMemberAbouts(payload) {
|
|
|
548
588
|
{ path: "memberAbouts.content.nodes.audioData.audio.duration" },
|
|
549
589
|
{
|
|
550
590
|
path: "memberAbouts.content.nodes.audioData.coverImage.duration"
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
path: "memberAbouts.content.nodes.layoutData.backgroundImage.media.duration"
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
path: "memberAbouts.content.nodes.layoutData.backdropImage.media.duration"
|
|
551
597
|
}
|
|
552
598
|
]
|
|
553
599
|
},
|
|
@@ -700,6 +746,7 @@ var GIFType = /* @__PURE__ */ ((GIFType2) => {
|
|
|
700
746
|
var Source = /* @__PURE__ */ ((Source2) => {
|
|
701
747
|
Source2["HTML"] = "HTML";
|
|
702
748
|
Source2["ADSENSE"] = "ADSENSE";
|
|
749
|
+
Source2["AI"] = "AI";
|
|
703
750
|
return Source2;
|
|
704
751
|
})(Source || {});
|
|
705
752
|
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
@@ -828,6 +875,35 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
|
828
875
|
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
829
876
|
return NullValue2;
|
|
830
877
|
})(NullValue || {});
|
|
878
|
+
var Scaling = /* @__PURE__ */ ((Scaling2) => {
|
|
879
|
+
Scaling2["AUTO"] = "AUTO";
|
|
880
|
+
Scaling2["CONTAIN"] = "CONTAIN";
|
|
881
|
+
Scaling2["COVER"] = "COVER";
|
|
882
|
+
return Scaling2;
|
|
883
|
+
})(Scaling || {});
|
|
884
|
+
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
885
|
+
ImagePosition2["CENTER"] = "CENTER";
|
|
886
|
+
ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
887
|
+
ImagePosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
888
|
+
ImagePosition2["TOP"] = "TOP";
|
|
889
|
+
ImagePosition2["TOP_LEFT"] = "TOP_LEFT";
|
|
890
|
+
ImagePosition2["TOP_RIGHT"] = "TOP_RIGHT";
|
|
891
|
+
ImagePosition2["BOTTOM"] = "BOTTOM";
|
|
892
|
+
ImagePosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
893
|
+
ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
894
|
+
return ImagePosition2;
|
|
895
|
+
})(ImagePosition || {});
|
|
896
|
+
var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
|
|
897
|
+
VerticalAlignmentAlignment2["TOP"] = "TOP";
|
|
898
|
+
VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
|
|
899
|
+
VerticalAlignmentAlignment2["BOTTOM"] = "BOTTOM";
|
|
900
|
+
return VerticalAlignmentAlignment2;
|
|
901
|
+
})(VerticalAlignmentAlignment || {});
|
|
902
|
+
var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
|
|
903
|
+
ResponsivenessBehaviour2["STACK"] = "STACK";
|
|
904
|
+
ResponsivenessBehaviour2["WRAP"] = "WRAP";
|
|
905
|
+
return ResponsivenessBehaviour2;
|
|
906
|
+
})(ResponsivenessBehaviour || {});
|
|
831
907
|
var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|
|
832
908
|
SortOrder2["ASC"] = "ASC";
|
|
833
909
|
SortOrder2["DESC"] = "DESC";
|
|
@@ -1028,6 +1104,7 @@ function queryMemberAbouts2() {
|
|
|
1028
1104
|
DividerDataAlignment,
|
|
1029
1105
|
FontType,
|
|
1030
1106
|
GIFType,
|
|
1107
|
+
ImagePosition,
|
|
1031
1108
|
InitialExpandedItems,
|
|
1032
1109
|
Layout,
|
|
1033
1110
|
LayoutType,
|
|
@@ -1042,6 +1119,8 @@ function queryMemberAbouts2() {
|
|
|
1042
1119
|
PollLayoutType,
|
|
1043
1120
|
Position,
|
|
1044
1121
|
Resizing,
|
|
1122
|
+
ResponsivenessBehaviour,
|
|
1123
|
+
Scaling,
|
|
1045
1124
|
SortOrder,
|
|
1046
1125
|
Source,
|
|
1047
1126
|
StylesPosition,
|
|
@@ -1050,6 +1129,7 @@ function queryMemberAbouts2() {
|
|
|
1050
1129
|
ThumbnailsAlignment,
|
|
1051
1130
|
Type,
|
|
1052
1131
|
VerticalAlignment,
|
|
1132
|
+
VerticalAlignmentAlignment,
|
|
1053
1133
|
ViewMode,
|
|
1054
1134
|
ViewRole,
|
|
1055
1135
|
VoteRole,
|