@wix/auto_sdk_members_members-about 1.0.21 → 1.0.23

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.
Files changed (29) hide show
  1. package/build/cjs/index.d.ts +5 -5
  2. package/build/cjs/index.js +71 -18
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/{members-about-v2-member-about-members-about.universal-35AgPK6C.d.ts → index.typings.d.ts} +380 -14
  5. package/build/cjs/index.typings.js +1048 -0
  6. package/build/cjs/index.typings.js.map +1 -0
  7. package/build/cjs/meta.d.ts +227 -14
  8. package/build/es/index.d.mts +5 -5
  9. package/build/es/index.mjs +64 -18
  10. package/build/es/index.mjs.map +1 -1
  11. package/build/es/{members-about-v2-member-about-members-about.universal-35AgPK6C.d.mts → index.typings.d.mts} +380 -14
  12. package/build/es/index.typings.mjs +980 -0
  13. package/build/es/index.typings.mjs.map +1 -0
  14. package/build/es/meta.d.mts +227 -14
  15. package/build/internal/cjs/index.d.ts +5 -5
  16. package/build/internal/cjs/index.js +71 -18
  17. package/build/internal/cjs/index.js.map +1 -1
  18. package/build/internal/cjs/{members-about-v2-member-about-members-about.universal-35AgPK6C.d.ts → index.typings.d.ts} +380 -14
  19. package/build/internal/cjs/index.typings.js +1048 -0
  20. package/build/internal/cjs/index.typings.js.map +1 -0
  21. package/build/internal/cjs/meta.d.ts +227 -14
  22. package/build/internal/es/index.d.mts +5 -5
  23. package/build/internal/es/index.mjs +64 -18
  24. package/build/internal/es/index.mjs.map +1 -1
  25. package/build/internal/es/{members-about-v2-member-about-members-about.universal-35AgPK6C.d.mts → index.typings.d.mts} +380 -14
  26. package/build/internal/es/index.typings.mjs +980 -0
  27. package/build/internal/es/index.typings.mjs.map +1 -0
  28. package/build/internal/es/meta.d.mts +227 -14
  29. package/package.json +3 -3
@@ -1,4 +1,5 @@
1
- import { be as CreateMemberAboutRequest$1, bf as CreateMemberAboutResponse$1, bg as UpdateMemberAboutRequest$1, bh as UpdateMemberAboutResponse$1, bi as DeleteMemberAboutRequest$1, bj as DeleteMemberAboutResponse$1, bk as GetMemberAboutRequest$1, bl as GetMemberAboutResponse$1, bm as GetMyMemberAboutRequest$1, G as GetMyMemberAboutResponse$1, bn as QueryMemberAboutsRequest$1, bs as QueryMemberAboutsResponse$1 } from './members-about-v2-member-about-members-about.universal-35AgPK6C.js';
1
+ import { CreateMemberAboutRequest as CreateMemberAboutRequest$1, CreateMemberAboutResponse as CreateMemberAboutResponse$1, UpdateMemberAboutRequest as UpdateMemberAboutRequest$1, UpdateMemberAboutResponse as UpdateMemberAboutResponse$1, DeleteMemberAboutRequest as DeleteMemberAboutRequest$1, DeleteMemberAboutResponse as DeleteMemberAboutResponse$1, GetMemberAboutRequest as GetMemberAboutRequest$1, GetMemberAboutResponse as GetMemberAboutResponse$1, GetMyMemberAboutRequest as GetMyMemberAboutRequest$1, GetMyMemberAboutResponse as GetMyMemberAboutResponse$1, QueryMemberAboutsRequest as QueryMemberAboutsRequest$1, QueryMemberAboutsResponse as QueryMemberAboutsResponse$1 } from './index.typings.js';
2
+ import '@wix/sdk-types';
2
3
 
3
4
  interface MemberAbout {
4
5
  /**
@@ -196,7 +197,7 @@ interface ButtonData {
196
197
  /** Styling for the button's container. */
197
198
  containerData?: PluginContainerData;
198
199
  /** The button type. */
199
- type?: TypeWithLiterals;
200
+ type?: ButtonDataTypeWithLiterals;
200
201
  /** Styling for the button. */
201
202
  styles?: Styles;
202
203
  /** The text to display on the button. */
@@ -304,14 +305,14 @@ interface Height {
304
305
  /** A custom height value in pixels. */
305
306
  custom?: string | null;
306
307
  }
307
- declare enum Type {
308
+ declare enum ButtonDataType {
308
309
  /** Regular link button */
309
310
  LINK = "LINK",
310
311
  /** Triggers custom action that is defined in plugin configuration by the consumer */
311
312
  ACTION = "ACTION"
312
313
  }
313
314
  /** @enumType */
314
- type TypeWithLiterals = Type | 'LINK' | 'ACTION';
315
+ type ButtonDataTypeWithLiterals = ButtonDataType | 'LINK' | 'ACTION';
315
316
  interface Styles {
316
317
  /**
317
318
  * Deprecated: Use `borderWidth` and `borderRadius` instead.
@@ -444,7 +445,7 @@ interface DividerData {
444
445
  /** Divider width. */
445
446
  width?: WidthWithLiterals;
446
447
  /** Divider alignment. */
447
- alignment?: AlignmentWithLiterals;
448
+ alignment?: DividerDataAlignmentWithLiterals;
448
449
  }
449
450
  declare enum LineStyle {
450
451
  /** Single Line */
@@ -468,7 +469,7 @@ declare enum Width {
468
469
  }
469
470
  /** @enumType */
470
471
  type WidthWithLiterals = Width | 'LARGE' | 'MEDIUM' | 'SMALL';
471
- declare enum Alignment {
472
+ declare enum DividerDataAlignment {
472
473
  /** Center alignment */
473
474
  CENTER = "CENTER",
474
475
  /** Left alignment */
@@ -477,7 +478,7 @@ declare enum Alignment {
477
478
  RIGHT = "RIGHT"
478
479
  }
479
480
  /** @enumType */
480
- type AlignmentWithLiterals = Alignment | 'CENTER' | 'LEFT' | 'RIGHT';
481
+ type DividerDataAlignmentWithLiterals = DividerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
481
482
  interface FileData {
482
483
  /** Styling for the file's container. */
483
484
  containerData?: PluginContainerData;
@@ -602,7 +603,7 @@ interface ItemDataOneOf {
602
603
  }
603
604
  interface GalleryOptions {
604
605
  /** Gallery layout. */
605
- layout?: Layout;
606
+ layout?: GalleryOptionsLayout;
606
607
  /** Styling for gallery items. */
607
608
  item?: ItemStyle;
608
609
  /** Styling for gallery thumbnail images. */
@@ -662,7 +663,7 @@ declare enum ThumbnailsAlignment {
662
663
  }
663
664
  /** @enumType */
664
665
  type ThumbnailsAlignmentWithLiterals = ThumbnailsAlignment | 'TOP' | 'RIGHT' | 'BOTTOM' | 'LEFT' | 'NONE';
665
- interface Layout {
666
+ interface GalleryOptionsLayout {
666
667
  /** Gallery layout type. */
667
668
  type?: LayoutTypeWithLiterals;
668
669
  /** Sets whether horizontal scroll is enabled. Defaults to `true` unless the layout `type` is set to `GRID` or `COLLAGE`. */
@@ -824,7 +825,7 @@ interface LinkPreviewData {
824
825
  /** Styling for the link preview. */
825
826
  styles?: LinkPreviewDataStyles;
826
827
  }
827
- declare enum Position {
828
+ declare enum StylesPosition {
828
829
  /** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
829
830
  START = "START",
830
831
  /** Thumbnail positioned at the end (right in LTR layouts, left in RTL layouts) */
@@ -835,7 +836,7 @@ declare enum Position {
835
836
  HIDDEN = "HIDDEN"
836
837
  }
837
838
  /** @enumType */
838
- type PositionWithLiterals = Position | 'START' | 'END' | 'TOP' | 'HIDDEN';
839
+ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HIDDEN';
839
840
  interface LinkPreviewDataStyles {
840
841
  /**
841
842
  * Background color as a hexadecimal value.
@@ -867,7 +868,7 @@ interface LinkPreviewDataStyles {
867
868
  */
868
869
  borderColor?: string | null;
869
870
  /** Position of thumbnail. Defaults to `START`. */
870
- thumbnailPosition?: PositionWithLiterals;
871
+ thumbnailPosition?: StylesPositionWithLiterals;
871
872
  }
872
873
  interface MapData {
873
874
  /** Styling for the map's container. */
@@ -1112,6 +1113,10 @@ interface Decoration extends DecorationDataOneOf {
1112
1113
  spoilerData?: SpoilerData;
1113
1114
  /** Data for a strikethrough decoration. Defaults to `true`. */
1114
1115
  strikethroughData?: boolean | null;
1116
+ /** Data for a superscript decoration. Defaults to `true`. */
1117
+ superscriptData?: boolean | null;
1118
+ /** Data for a subscript decoration. Defaults to `true`. */
1119
+ subscriptData?: boolean | null;
1115
1120
  /** The type of decoration to apply. */
1116
1121
  type?: DecorationTypeWithLiterals;
1117
1122
  }
@@ -1137,6 +1142,10 @@ interface DecorationDataOneOf {
1137
1142
  spoilerData?: SpoilerData;
1138
1143
  /** Data for a strikethrough decoration. Defaults to `true`. */
1139
1144
  strikethroughData?: boolean | null;
1145
+ /** Data for a superscript decoration. Defaults to `true`. */
1146
+ superscriptData?: boolean | null;
1147
+ /** Data for a subscript decoration. Defaults to `true`. */
1148
+ subscriptData?: boolean | null;
1140
1149
  }
1141
1150
  declare enum DecorationType {
1142
1151
  BOLD = "BOLD",
@@ -1149,10 +1158,12 @@ declare enum DecorationType {
1149
1158
  COLOR = "COLOR",
1150
1159
  FONT_SIZE = "FONT_SIZE",
1151
1160
  EXTERNAL = "EXTERNAL",
1152
- STRIKETHROUGH = "STRIKETHROUGH"
1161
+ STRIKETHROUGH = "STRIKETHROUGH",
1162
+ SUPERSCRIPT = "SUPERSCRIPT",
1163
+ SUBSCRIPT = "SUBSCRIPT"
1153
1164
  }
1154
1165
  /** @enumType */
1155
- type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH';
1166
+ type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT';
1156
1167
  interface AnchorData {
1157
1168
  /** The target node's ID. */
1158
1169
  anchor?: string;
@@ -1211,6 +1222,32 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
1211
1222
  url?: string | null;
1212
1223
  /** An image for the embedded content. */
1213
1224
  image?: Media;
1225
+ /** Whether to hide the image. */
1226
+ hideImage?: boolean | null;
1227
+ /** Whether to hide the title. */
1228
+ hideTitle?: boolean | null;
1229
+ /** Whether to hide the price. */
1230
+ hidePrice?: boolean | null;
1231
+ /** Whether to hide the description (Event and Booking). */
1232
+ hideDescription?: boolean | null;
1233
+ /** Whether to hide the date and time (Event). */
1234
+ hideDateTime?: boolean | null;
1235
+ /** Whether to hide the location (Event). */
1236
+ hideLocation?: boolean | null;
1237
+ /** Whether to hide the duration (Booking). */
1238
+ hideDuration?: boolean | null;
1239
+ /** Whether to hide the button. */
1240
+ hideButton?: boolean | null;
1241
+ /** Whether to hide the ribbon. */
1242
+ hideRibbon?: boolean | null;
1243
+ /** Button styling options. */
1244
+ buttonStyles?: ButtonStyles;
1245
+ /** Image styling options. */
1246
+ imageStyles?: ImageStyles;
1247
+ /** Ribbon styling options. */
1248
+ ribbonStyles?: RibbonStyles;
1249
+ /** Card styling options. */
1250
+ cardStyles?: CardStyles;
1214
1251
  }
1215
1252
  /** @oneof */
1216
1253
  interface AppEmbedDataAppDataOneOf {
@@ -1219,6 +1256,66 @@ interface AppEmbedDataAppDataOneOf {
1219
1256
  /** Data for embedded Wix Events content. */
1220
1257
  eventData?: EventData;
1221
1258
  }
1259
+ declare enum Position {
1260
+ /** Image positioned at the start (left in LTR layouts, right in RTL layouts) */
1261
+ START = "START",
1262
+ /** Image positioned at the end (right in LTR layouts, left in RTL layouts) */
1263
+ END = "END",
1264
+ /** Image positioned at the top */
1265
+ TOP = "TOP"
1266
+ }
1267
+ /** @enumType */
1268
+ type PositionWithLiterals = Position | 'START' | 'END' | 'TOP';
1269
+ declare enum AspectRatio {
1270
+ /** 1:1 aspect ratio */
1271
+ SQUARE = "SQUARE",
1272
+ /** 16:9 aspect ratio */
1273
+ RECTANGLE = "RECTANGLE"
1274
+ }
1275
+ /** @enumType */
1276
+ type AspectRatioWithLiterals = AspectRatio | 'SQUARE' | 'RECTANGLE';
1277
+ declare enum Resizing {
1278
+ /** Fill the container, may crop the image */
1279
+ FILL = "FILL",
1280
+ /** Fit the image within the container */
1281
+ FIT = "FIT"
1282
+ }
1283
+ /** @enumType */
1284
+ type ResizingWithLiterals = Resizing | 'FILL' | 'FIT';
1285
+ declare enum Placement {
1286
+ /** Ribbon placed on the image */
1287
+ IMAGE = "IMAGE",
1288
+ /** Ribbon placed on the product information */
1289
+ PRODUCT_INFO = "PRODUCT_INFO"
1290
+ }
1291
+ /** @enumType */
1292
+ type PlacementWithLiterals = Placement | 'IMAGE' | 'PRODUCT_INFO';
1293
+ declare enum Type {
1294
+ /** Card with visible border and background */
1295
+ CONTAINED = "CONTAINED",
1296
+ /** Card without visible border */
1297
+ FRAMELESS = "FRAMELESS"
1298
+ }
1299
+ /** @enumType */
1300
+ type TypeWithLiterals = Type | 'CONTAINED' | 'FRAMELESS';
1301
+ declare enum Alignment {
1302
+ /** Content aligned to start (left in LTR layouts, right in RTL layouts) */
1303
+ START = "START",
1304
+ /** Content centered */
1305
+ CENTER = "CENTER",
1306
+ /** Content aligned to end (right in LTR layouts, left in RTL layouts) */
1307
+ END = "END"
1308
+ }
1309
+ /** @enumType */
1310
+ type AlignmentWithLiterals = Alignment | 'START' | 'CENTER' | 'END';
1311
+ declare enum Layout {
1312
+ /** Elements stacked vertically */
1313
+ STACKED = "STACKED",
1314
+ /** Elements arranged horizontally */
1315
+ SIDE_BY_SIDE = "SIDE_BY_SIDE"
1316
+ }
1317
+ /** @enumType */
1318
+ type LayoutWithLiterals = Layout | 'STACKED' | 'SIDE_BY_SIDE';
1222
1319
  declare enum AppType {
1223
1320
  PRODUCT = "PRODUCT",
1224
1321
  EVENT = "EVENT",
@@ -1236,6 +1333,122 @@ interface EventData {
1236
1333
  /** Event location. */
1237
1334
  location?: string | null;
1238
1335
  }
1336
+ interface ButtonStyles {
1337
+ /** Text to display on the button. */
1338
+ buttonText?: string | null;
1339
+ /** Border width in pixels. */
1340
+ borderWidth?: number | null;
1341
+ /** Border radius in pixels. */
1342
+ borderRadius?: number | null;
1343
+ /**
1344
+ * Border color as a hexadecimal value.
1345
+ * @format COLOR_HEX
1346
+ */
1347
+ borderColor?: string | null;
1348
+ /**
1349
+ * Text color as a hexadecimal value.
1350
+ * @format COLOR_HEX
1351
+ */
1352
+ textColor?: string | null;
1353
+ /**
1354
+ * Background color as a hexadecimal value.
1355
+ * @format COLOR_HEX
1356
+ */
1357
+ backgroundColor?: string | null;
1358
+ /**
1359
+ * Border color as a hexadecimal value (hover state).
1360
+ * @format COLOR_HEX
1361
+ */
1362
+ borderColorHover?: string | null;
1363
+ /**
1364
+ * Text color as a hexadecimal value (hover state).
1365
+ * @format COLOR_HEX
1366
+ */
1367
+ textColorHover?: string | null;
1368
+ /**
1369
+ * Background color as a hexadecimal value (hover state).
1370
+ * @format COLOR_HEX
1371
+ */
1372
+ backgroundColorHover?: string | null;
1373
+ /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
1374
+ buttonSize?: string | null;
1375
+ }
1376
+ interface ImageStyles {
1377
+ /** Whether to hide the image. */
1378
+ hideImage?: boolean | null;
1379
+ /** Position of image. Defaults to `START`. */
1380
+ imagePosition?: PositionWithLiterals;
1381
+ /** Aspect ratio for the image. Defaults to `SQUARE`. */
1382
+ aspectRatio?: AspectRatioWithLiterals;
1383
+ /** How the image should be resized. Defaults to `FILL`. */
1384
+ resizing?: ResizingWithLiterals;
1385
+ /**
1386
+ * Image border color as a hexadecimal value.
1387
+ * @format COLOR_HEX
1388
+ */
1389
+ borderColor?: string | null;
1390
+ /** Image border width in pixels. */
1391
+ borderWidth?: number | null;
1392
+ /** Image border radius in pixels. */
1393
+ borderRadius?: number | null;
1394
+ }
1395
+ interface RibbonStyles {
1396
+ /** Text to display on the ribbon. */
1397
+ ribbonText?: string | null;
1398
+ /**
1399
+ * Ribbon background color as a hexadecimal value.
1400
+ * @format COLOR_HEX
1401
+ */
1402
+ backgroundColor?: string | null;
1403
+ /**
1404
+ * Ribbon text color as a hexadecimal value.
1405
+ * @format COLOR_HEX
1406
+ */
1407
+ textColor?: string | null;
1408
+ /**
1409
+ * Ribbon border color as a hexadecimal value.
1410
+ * @format COLOR_HEX
1411
+ */
1412
+ borderColor?: string | null;
1413
+ /** Ribbon border width in pixels. */
1414
+ borderWidth?: number | null;
1415
+ /** Ribbon border radius in pixels. */
1416
+ borderRadius?: number | null;
1417
+ /** Placement of the ribbon. Defaults to `IMAGE`. */
1418
+ ribbonPlacement?: PlacementWithLiterals;
1419
+ }
1420
+ interface CardStyles {
1421
+ /**
1422
+ * Card background color as a hexadecimal value.
1423
+ * @format COLOR_HEX
1424
+ */
1425
+ backgroundColor?: string | null;
1426
+ /**
1427
+ * Card border color as a hexadecimal value.
1428
+ * @format COLOR_HEX
1429
+ */
1430
+ borderColor?: string | null;
1431
+ /** Card border width in pixels. */
1432
+ borderWidth?: number | null;
1433
+ /** Card border radius in pixels. */
1434
+ borderRadius?: number | null;
1435
+ /** Card type. Defaults to `CONTAINED`. */
1436
+ type?: TypeWithLiterals;
1437
+ /** Content alignment. Defaults to `START`. */
1438
+ alignment?: AlignmentWithLiterals;
1439
+ /** Layout for title and price. Defaults to `STACKED`. */
1440
+ titlePriceLayout?: LayoutWithLiterals;
1441
+ /**
1442
+ * Title text color as a hexadecimal value.
1443
+ * @format COLOR_HEX
1444
+ */
1445
+ titleColor?: string | null;
1446
+ /**
1447
+ * Text color as a hexadecimal value.
1448
+ * @format COLOR_HEX
1449
+ */
1450
+ textColor?: string | null;
1451
+ }
1239
1452
  interface VideoData {
1240
1453
  /** Styling for the video's container. */
1241
1454
  containerData?: PluginContainerData;
@@ -1,6 +1,6 @@
1
- import { HttpClient, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { M as MemberAbout, U as UpdateMemberAbout, G as GetMyMemberAboutResponse, a as MemberAboutsQueryBuilder, b as MemberAboutCreatedEnvelope, c as MemberAboutDeletedEnvelope, d as MemberAboutUpdatedEnvelope } from './members-about-v2-member-about-members-about.universal-35AgPK6C.mjs';
3
- export { bB as ActionEvent, A as Alignment, aM as AnchorData, aS as AppEmbedData, aT as AppEmbedDataAppDataOneOf, q as AppType, b5 as AudioData, aC as Background, aD as BackgroundBackgroundOneOf, B as BackgroundType, bF as BaseEventMetadata, b8 as BlockquoteData, aU as BookingData, E as Border, b3 as BorderColors, b7 as BulletedListData, z as ButtonData, b9 as CaptionData, b2 as CellStyle, a1 as CodeBlockData, a_ as CollapsibleListData, aN as ColorData, H as Colors, be as CreateMemberAboutRequest, bf as CreateMemberAboutResponse, C as Crop, br as CursorPaging, bt as CursorPagingMetadata, bo as CursorQuery, bp as CursorQueryPagingMethodOneOf, bu as Cursors, aK as Decoration, aL as DecorationDataOneOf, D as DecorationType, bi as DeleteMemberAboutRequest, bj as DeleteMemberAboutResponse, aI as Design, b0 as Dimensions, r as Direction, a3 as DividerData, bc as DocumentStyle, bv as DomainEvent, bw as DomainEventBodyOneOf, aY as EmbedData, bx as EntityCreatedEvent, bA as EntityDeletedEvent, bz as EntityUpdatedEvent, aV as EventData, bG as EventMetadata, a4 as FileData, a5 as FileSource, a6 as FileSourceDataOneOf, aQ as FontSizeData, F as FontType, aj as GIF, ai as GIFData, j as GIFType, a8 as GalleryData, ae as GalleryOptions, bk as GetMemberAboutRequest, bl as GetMemberAboutResponse, bm as GetMyMemberAboutRequest, aB as Gradient, al as HTMLData, am as HTMLDataDataOneOf, ak as HeadingData, Y as Height, bD as IdentificationData, bE as IdentificationDataIdOneOf, aa as Image, an as ImageData, ap as ImageDataStyles, I as InitialExpandedItems, ac as Item, ad as ItemDataOneOf, ag as ItemStyle, af as Layout, ba as LayoutCellData, h as LayoutType, L as LineStyle, _ as Link, aO as LinkData, $ as LinkDataOneOf, aq as LinkPreviewData, ar as LinkPreviewDataStyles, b4 as ListValue, as as MapData, at as MapSettings, l as MapType, a9 as Media, bH as MemberAboutsQueryResult, aP as MentionData, bC as MessageEnvelope, bb as Metadata, w as Node, x as NodeDataOneOf, y as NodeStyle, N as NodeType, t as NullValue, aZ as Oembed, ax as Option, aF as OptionDesign, aA as OptionLayout, b6 as OrderedListData, O as Orientation, a7 as PDFSettings, au as ParagraphData, aw as Permissions, aX as PlaybackOptions, J as PluginContainerData, P as PluginContainerDataAlignment, K as PluginContainerDataWidth, Q as PluginContainerDataWidthDataOneOf, aG as Poll, av as PollData, aH as PollDataLayout, aE as PollDesign, az as PollLayout, p as PollLayoutDirection, o as PollLayoutType, k as Position, bn as QueryMemberAboutsRequest, bs as QueryMemberAboutsResponse, a0 as Rel, by as RestoreInfo, R as RichContent, ay as Settings, u as SortOrder, bq as Sorting, S as Source, X as Spoiler, aR as SpoilerData, Z as Styles, ao as StylesBorder, b1 as TableCellData, a$ as TableData, e as Target, f as TextAlignment, aJ as TextData, bd as TextNodeStyle, a2 as TextStyle, ah as Thumbnails, i as ThumbnailsAlignment, T as Type, bg as UpdateMemberAboutRequest, bh as UpdateMemberAboutResponse, s as VerticalAlignment, ab as Video, aW as VideoData, V as ViewMode, m as ViewRole, n as VoteRole, v as WebhookIdentityType, g as Width, W as WidthType } from './members-about-v2-member-about-members-about.universal-35AgPK6C.mjs';
1
+ import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
+ import { MemberAbout, UpdateMemberAbout, GetMyMemberAboutResponse, MemberAboutsQueryBuilder, MemberAboutCreatedEnvelope, MemberAboutDeletedEnvelope, MemberAboutUpdatedEnvelope } from './index.typings.mjs';
3
+ export { ActionEvent, Alignment, AnchorData, AppEmbedData, AppEmbedDataAppDataOneOf, AppType, AspectRatio, AudioData, Background, BackgroundBackgroundOneOf, BackgroundType, BaseEventMetadata, BlockquoteData, BookingData, Border, BorderColors, BulletedListData, ButtonData, ButtonDataType, ButtonStyles, CaptionData, CardStyles, CellStyle, CodeBlockData, CollapsibleListData, ColorData, Colors, CreateMemberAboutRequest, CreateMemberAboutResponse, Crop, CursorPaging, CursorPagingMetadata, CursorQuery, CursorQueryPagingMethodOneOf, Cursors, Decoration, DecorationDataOneOf, DecorationType, DeleteMemberAboutRequest, DeleteMemberAboutResponse, Design, Dimensions, Direction, DividerData, DividerDataAlignment, DocumentStyle, DomainEvent, DomainEventBodyOneOf, EmbedData, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, EventData, EventMetadata, FileData, FileSource, FileSourceDataOneOf, FontSizeData, FontType, GIF, GIFData, GIFType, GalleryData, GalleryOptions, GalleryOptionsLayout, GetMemberAboutRequest, GetMemberAboutResponse, GetMyMemberAboutRequest, Gradient, HTMLData, HTMLDataDataOneOf, HeadingData, Height, IdentificationData, IdentificationDataIdOneOf, Image, ImageData, ImageDataStyles, ImageStyles, InitialExpandedItems, Item, ItemDataOneOf, ItemStyle, Layout, LayoutCellData, LayoutType, LineStyle, Link, LinkData, LinkDataOneOf, LinkPreviewData, LinkPreviewDataStyles, ListValue, MapData, MapSettings, MapType, Media, MemberAboutsQueryResult, MentionData, MessageEnvelope, Metadata, Node, NodeDataOneOf, NodeStyle, NodeType, NullValue, Oembed, Option, OptionDesign, OptionLayout, OrderedListData, Orientation, PDFSettings, ParagraphData, Permissions, Placement, PlaybackOptions, PluginContainerData, PluginContainerDataAlignment, PluginContainerDataWidth, PluginContainerDataWidthDataOneOf, Poll, PollData, PollDataLayout, PollDesign, PollLayout, PollLayoutDirection, PollLayoutType, Position, QueryMemberAboutsRequest, QueryMemberAboutsResponse, Rel, Resizing, RestoreInfo, RibbonStyles, RichContent, Settings, SortOrder, Sorting, Source, Spoiler, SpoilerData, Styles, StylesBorder, StylesPosition, TableCellData, TableData, Target, TextAlignment, TextData, TextNodeStyle, TextStyle, Thumbnails, ThumbnailsAlignment, Type, UpdateMemberAboutRequest, UpdateMemberAboutResponse, VerticalAlignment, Video, VideoData, ViewMode, ViewRole, VoteRole, WebhookIdentityType, Width, WidthType } from './index.typings.mjs';
4
4
 
5
5
  declare function createMemberAbout$1(httpClient: HttpClient): CreateMemberAboutSignature;
6
6
  interface CreateMemberAboutSignature {
@@ -9,7 +9,7 @@ interface CreateMemberAboutSignature {
9
9
  * @param - The "About" section content to create.
10
10
  * @returns The created "About" section content.
11
11
  */
12
- (memberAbout: MemberAbout): Promise<MemberAbout>;
12
+ (memberAbout: NonNullablePaths<MemberAbout, `content`>): Promise<MemberAbout>;
13
13
  }
14
14
  declare function updateMemberAbout$1(httpClient: HttpClient): UpdateMemberAboutSignature;
15
15
  interface UpdateMemberAboutSignature {
@@ -20,7 +20,7 @@ interface UpdateMemberAboutSignature {
20
20
  * @param - ID of the "About" section content.
21
21
  * @returns The updated "About" section content.
22
22
  */
23
- (_id: string, memberAbout: UpdateMemberAbout): Promise<MemberAbout>;
23
+ (_id: string, memberAbout: NonNullablePaths<UpdateMemberAbout, `content` | `revision`>): Promise<MemberAbout>;
24
24
  }
25
25
  declare function deleteMemberAbout$1(httpClient: HttpClient): DeleteMemberAboutSignature;
26
26
  interface DeleteMemberAboutSignature {
@@ -538,11 +538,11 @@ var PluginContainerDataAlignment = /* @__PURE__ */ ((PluginContainerDataAlignmen
538
538
  PluginContainerDataAlignment2["RIGHT"] = "RIGHT";
539
539
  return PluginContainerDataAlignment2;
540
540
  })(PluginContainerDataAlignment || {});
541
- var Type = /* @__PURE__ */ ((Type2) => {
542
- Type2["LINK"] = "LINK";
543
- Type2["ACTION"] = "ACTION";
544
- return Type2;
545
- })(Type || {});
541
+ var ButtonDataType = /* @__PURE__ */ ((ButtonDataType2) => {
542
+ ButtonDataType2["LINK"] = "LINK";
543
+ ButtonDataType2["ACTION"] = "ACTION";
544
+ return ButtonDataType2;
545
+ })(ButtonDataType || {});
546
546
  var Target = /* @__PURE__ */ ((Target2) => {
547
547
  Target2["SELF"] = "SELF";
548
548
  Target2["BLANK"] = "BLANK";
@@ -571,12 +571,12 @@ var Width = /* @__PURE__ */ ((Width2) => {
571
571
  Width2["SMALL"] = "SMALL";
572
572
  return Width2;
573
573
  })(Width || {});
574
- var Alignment = /* @__PURE__ */ ((Alignment2) => {
575
- Alignment2["CENTER"] = "CENTER";
576
- Alignment2["LEFT"] = "LEFT";
577
- Alignment2["RIGHT"] = "RIGHT";
578
- return Alignment2;
579
- })(Alignment || {});
574
+ var DividerDataAlignment = /* @__PURE__ */ ((DividerDataAlignment2) => {
575
+ DividerDataAlignment2["CENTER"] = "CENTER";
576
+ DividerDataAlignment2["LEFT"] = "LEFT";
577
+ DividerDataAlignment2["RIGHT"] = "RIGHT";
578
+ return DividerDataAlignment2;
579
+ })(DividerDataAlignment || {});
580
580
  var ViewMode = /* @__PURE__ */ ((ViewMode2) => {
581
581
  ViewMode2["NONE"] = "NONE";
582
582
  ViewMode2["FULL"] = "FULL";
@@ -624,13 +624,13 @@ var Source = /* @__PURE__ */ ((Source2) => {
624
624
  Source2["ADSENSE"] = "ADSENSE";
625
625
  return Source2;
626
626
  })(Source || {});
627
- var Position = /* @__PURE__ */ ((Position2) => {
628
- Position2["START"] = "START";
629
- Position2["END"] = "END";
630
- Position2["TOP"] = "TOP";
631
- Position2["HIDDEN"] = "HIDDEN";
632
- return Position2;
633
- })(Position || {});
627
+ var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
628
+ StylesPosition2["START"] = "START";
629
+ StylesPosition2["END"] = "END";
630
+ StylesPosition2["TOP"] = "TOP";
631
+ StylesPosition2["HIDDEN"] = "HIDDEN";
632
+ return StylesPosition2;
633
+ })(StylesPosition || {});
634
634
  var MapType = /* @__PURE__ */ ((MapType2) => {
635
635
  MapType2["ROADMAP"] = "ROADMAP";
636
636
  MapType2["SATELITE"] = "SATELITE";
@@ -677,6 +677,8 @@ var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
677
677
  DecorationType2["FONT_SIZE"] = "FONT_SIZE";
678
678
  DecorationType2["EXTERNAL"] = "EXTERNAL";
679
679
  DecorationType2["STRIKETHROUGH"] = "STRIKETHROUGH";
680
+ DecorationType2["SUPERSCRIPT"] = "SUPERSCRIPT";
681
+ DecorationType2["SUBSCRIPT"] = "SUBSCRIPT";
680
682
  return DecorationType2;
681
683
  })(DecorationType || {});
682
684
  var FontType = /* @__PURE__ */ ((FontType2) => {
@@ -684,6 +686,43 @@ var FontType = /* @__PURE__ */ ((FontType2) => {
684
686
  FontType2["EM"] = "EM";
685
687
  return FontType2;
686
688
  })(FontType || {});
689
+ var Position = /* @__PURE__ */ ((Position2) => {
690
+ Position2["START"] = "START";
691
+ Position2["END"] = "END";
692
+ Position2["TOP"] = "TOP";
693
+ return Position2;
694
+ })(Position || {});
695
+ var AspectRatio = /* @__PURE__ */ ((AspectRatio2) => {
696
+ AspectRatio2["SQUARE"] = "SQUARE";
697
+ AspectRatio2["RECTANGLE"] = "RECTANGLE";
698
+ return AspectRatio2;
699
+ })(AspectRatio || {});
700
+ var Resizing = /* @__PURE__ */ ((Resizing2) => {
701
+ Resizing2["FILL"] = "FILL";
702
+ Resizing2["FIT"] = "FIT";
703
+ return Resizing2;
704
+ })(Resizing || {});
705
+ var Placement = /* @__PURE__ */ ((Placement2) => {
706
+ Placement2["IMAGE"] = "IMAGE";
707
+ Placement2["PRODUCT_INFO"] = "PRODUCT_INFO";
708
+ return Placement2;
709
+ })(Placement || {});
710
+ var Type = /* @__PURE__ */ ((Type2) => {
711
+ Type2["CONTAINED"] = "CONTAINED";
712
+ Type2["FRAMELESS"] = "FRAMELESS";
713
+ return Type2;
714
+ })(Type || {});
715
+ var Alignment = /* @__PURE__ */ ((Alignment2) => {
716
+ Alignment2["START"] = "START";
717
+ Alignment2["CENTER"] = "CENTER";
718
+ Alignment2["END"] = "END";
719
+ return Alignment2;
720
+ })(Alignment || {});
721
+ var Layout = /* @__PURE__ */ ((Layout2) => {
722
+ Layout2["STACKED"] = "STACKED";
723
+ Layout2["SIDE_BY_SIDE"] = "SIDE_BY_SIDE";
724
+ return Layout2;
725
+ })(Layout || {});
687
726
  var AppType = /* @__PURE__ */ ((AppType2) => {
688
727
  AppType2["PRODUCT"] = "PRODUCT";
689
728
  AppType2["EVENT"] = "EVENT";
@@ -1095,25 +1134,32 @@ var onMemberAboutUpdated2 = createEventModule(onMemberAboutUpdated);
1095
1134
  export {
1096
1135
  Alignment,
1097
1136
  AppType,
1137
+ AspectRatio,
1098
1138
  BackgroundType,
1139
+ ButtonDataType,
1099
1140
  Crop,
1100
1141
  DecorationType,
1101
1142
  Direction,
1143
+ DividerDataAlignment,
1102
1144
  FontType,
1103
1145
  GIFType,
1104
1146
  InitialExpandedItems,
1147
+ Layout,
1105
1148
  LayoutType,
1106
1149
  LineStyle,
1107
1150
  MapType,
1108
1151
  NodeType,
1109
1152
  NullValue,
1110
1153
  Orientation,
1154
+ Placement,
1111
1155
  PluginContainerDataAlignment,
1112
1156
  PollLayoutDirection,
1113
1157
  PollLayoutType,
1114
1158
  Position,
1159
+ Resizing,
1115
1160
  SortOrder,
1116
1161
  Source,
1162
+ StylesPosition,
1117
1163
  Target,
1118
1164
  TextAlignment,
1119
1165
  ThumbnailsAlignment,