@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 };
|
|
@@ -86,7 +86,13 @@ function createMemberAbout(payload) {
|
|
|
86
86
|
{ path: "memberAbout.content.nodes.videoData.video.duration" },
|
|
87
87
|
{ path: "memberAbout.content.nodes.videoData.thumbnail.duration" },
|
|
88
88
|
{ path: "memberAbout.content.nodes.audioData.audio.duration" },
|
|
89
|
-
{ path: "memberAbout.content.nodes.audioData.coverImage.duration" }
|
|
89
|
+
{ path: "memberAbout.content.nodes.audioData.coverImage.duration" },
|
|
90
|
+
{
|
|
91
|
+
path: "memberAbout.content.nodes.layoutData.backgroundImage.media.duration"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
path: "memberAbout.content.nodes.layoutData.backdropImage.media.duration"
|
|
95
|
+
}
|
|
90
96
|
]
|
|
91
97
|
},
|
|
92
98
|
{
|
|
@@ -147,6 +153,12 @@ function createMemberAbout(payload) {
|
|
|
147
153
|
{ path: "memberAbout.content.nodes.audioData.audio.duration" },
|
|
148
154
|
{
|
|
149
155
|
path: "memberAbout.content.nodes.audioData.coverImage.duration"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
path: "memberAbout.content.nodes.layoutData.backgroundImage.media.duration"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
path: "memberAbout.content.nodes.layoutData.backdropImage.media.duration"
|
|
150
162
|
}
|
|
151
163
|
]
|
|
152
164
|
},
|
|
@@ -193,7 +205,13 @@ function updateMemberAbout(payload) {
|
|
|
193
205
|
{ path: "memberAbout.content.nodes.videoData.video.duration" },
|
|
194
206
|
{ path: "memberAbout.content.nodes.videoData.thumbnail.duration" },
|
|
195
207
|
{ path: "memberAbout.content.nodes.audioData.audio.duration" },
|
|
196
|
-
{ path: "memberAbout.content.nodes.audioData.coverImage.duration" }
|
|
208
|
+
{ path: "memberAbout.content.nodes.audioData.coverImage.duration" },
|
|
209
|
+
{
|
|
210
|
+
path: "memberAbout.content.nodes.layoutData.backgroundImage.media.duration"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
path: "memberAbout.content.nodes.layoutData.backdropImage.media.duration"
|
|
214
|
+
}
|
|
197
215
|
]
|
|
198
216
|
},
|
|
199
217
|
{
|
|
@@ -254,6 +272,12 @@ function updateMemberAbout(payload) {
|
|
|
254
272
|
{ path: "memberAbout.content.nodes.audioData.audio.duration" },
|
|
255
273
|
{
|
|
256
274
|
path: "memberAbout.content.nodes.audioData.coverImage.duration"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
path: "memberAbout.content.nodes.layoutData.backgroundImage.media.duration"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
path: "memberAbout.content.nodes.layoutData.backdropImage.media.duration"
|
|
257
281
|
}
|
|
258
282
|
]
|
|
259
283
|
},
|
|
@@ -343,6 +367,12 @@ function getMemberAbout(payload) {
|
|
|
343
367
|
{ path: "memberAbout.content.nodes.audioData.audio.duration" },
|
|
344
368
|
{
|
|
345
369
|
path: "memberAbout.content.nodes.audioData.coverImage.duration"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
path: "memberAbout.content.nodes.layoutData.backgroundImage.media.duration"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
path: "memberAbout.content.nodes.layoutData.backdropImage.media.duration"
|
|
346
376
|
}
|
|
347
377
|
]
|
|
348
378
|
},
|
|
@@ -411,6 +441,12 @@ function getMyMemberAbout(payload) {
|
|
|
411
441
|
{ path: "memberAbout.content.nodes.audioData.audio.duration" },
|
|
412
442
|
{
|
|
413
443
|
path: "memberAbout.content.nodes.audioData.coverImage.duration"
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
path: "memberAbout.content.nodes.layoutData.backgroundImage.media.duration"
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
path: "memberAbout.content.nodes.layoutData.backdropImage.media.duration"
|
|
414
450
|
}
|
|
415
451
|
]
|
|
416
452
|
},
|
|
@@ -481,6 +517,12 @@ function queryMemberAbouts(payload) {
|
|
|
481
517
|
{ path: "memberAbouts.content.nodes.audioData.audio.duration" },
|
|
482
518
|
{
|
|
483
519
|
path: "memberAbouts.content.nodes.audioData.coverImage.duration"
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
path: "memberAbouts.content.nodes.layoutData.backgroundImage.media.duration"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
path: "memberAbouts.content.nodes.layoutData.backdropImage.media.duration"
|
|
484
526
|
}
|
|
485
527
|
]
|
|
486
528
|
},
|
|
@@ -633,6 +675,7 @@ var GIFType = /* @__PURE__ */ ((GIFType2) => {
|
|
|
633
675
|
var Source = /* @__PURE__ */ ((Source2) => {
|
|
634
676
|
Source2["HTML"] = "HTML";
|
|
635
677
|
Source2["ADSENSE"] = "ADSENSE";
|
|
678
|
+
Source2["AI"] = "AI";
|
|
636
679
|
return Source2;
|
|
637
680
|
})(Source || {});
|
|
638
681
|
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
@@ -761,6 +804,35 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
|
761
804
|
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
762
805
|
return NullValue2;
|
|
763
806
|
})(NullValue || {});
|
|
807
|
+
var Scaling = /* @__PURE__ */ ((Scaling2) => {
|
|
808
|
+
Scaling2["AUTO"] = "AUTO";
|
|
809
|
+
Scaling2["CONTAIN"] = "CONTAIN";
|
|
810
|
+
Scaling2["COVER"] = "COVER";
|
|
811
|
+
return Scaling2;
|
|
812
|
+
})(Scaling || {});
|
|
813
|
+
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
814
|
+
ImagePosition2["CENTER"] = "CENTER";
|
|
815
|
+
ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
816
|
+
ImagePosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
817
|
+
ImagePosition2["TOP"] = "TOP";
|
|
818
|
+
ImagePosition2["TOP_LEFT"] = "TOP_LEFT";
|
|
819
|
+
ImagePosition2["TOP_RIGHT"] = "TOP_RIGHT";
|
|
820
|
+
ImagePosition2["BOTTOM"] = "BOTTOM";
|
|
821
|
+
ImagePosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
822
|
+
ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
823
|
+
return ImagePosition2;
|
|
824
|
+
})(ImagePosition || {});
|
|
825
|
+
var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
|
|
826
|
+
VerticalAlignmentAlignment2["TOP"] = "TOP";
|
|
827
|
+
VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
|
|
828
|
+
VerticalAlignmentAlignment2["BOTTOM"] = "BOTTOM";
|
|
829
|
+
return VerticalAlignmentAlignment2;
|
|
830
|
+
})(VerticalAlignmentAlignment || {});
|
|
831
|
+
var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
|
|
832
|
+
ResponsivenessBehaviour2["STACK"] = "STACK";
|
|
833
|
+
ResponsivenessBehaviour2["WRAP"] = "WRAP";
|
|
834
|
+
return ResponsivenessBehaviour2;
|
|
835
|
+
})(ResponsivenessBehaviour || {});
|
|
764
836
|
var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|
|
765
837
|
SortOrder2["ASC"] = "ASC";
|
|
766
838
|
SortOrder2["DESC"] = "DESC";
|
|
@@ -960,6 +1032,7 @@ export {
|
|
|
960
1032
|
DividerDataAlignment,
|
|
961
1033
|
FontType,
|
|
962
1034
|
GIFType,
|
|
1035
|
+
ImagePosition,
|
|
963
1036
|
InitialExpandedItems,
|
|
964
1037
|
Layout,
|
|
965
1038
|
LayoutType,
|
|
@@ -974,6 +1047,8 @@ export {
|
|
|
974
1047
|
PollLayoutType,
|
|
975
1048
|
Position,
|
|
976
1049
|
Resizing,
|
|
1050
|
+
ResponsivenessBehaviour,
|
|
1051
|
+
Scaling,
|
|
977
1052
|
SortOrder,
|
|
978
1053
|
Source,
|
|
979
1054
|
StylesPosition,
|
|
@@ -982,6 +1057,7 @@ export {
|
|
|
982
1057
|
ThumbnailsAlignment,
|
|
983
1058
|
Type,
|
|
984
1059
|
VerticalAlignment,
|
|
1060
|
+
VerticalAlignmentAlignment,
|
|
985
1061
|
ViewMode,
|
|
986
1062
|
ViewRole,
|
|
987
1063
|
VoteRole,
|