@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.mjs';
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.mjs';
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.js';
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.js';
1
+ import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
+ import { MemberAbout, UpdateMemberAbout, GetMyMemberAboutResponse, MemberAboutsQueryBuilder, MemberAboutCreatedEnvelope, MemberAboutDeletedEnvelope, MemberAboutUpdatedEnvelope } from './index.typings.js';
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.js';
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 {
@@ -22,25 +22,32 @@ var index_exports = {};
22
22
  __export(index_exports, {
23
23
  Alignment: () => Alignment,
24
24
  AppType: () => AppType,
25
+ AspectRatio: () => AspectRatio,
25
26
  BackgroundType: () => BackgroundType,
27
+ ButtonDataType: () => ButtonDataType,
26
28
  Crop: () => Crop,
27
29
  DecorationType: () => DecorationType,
28
30
  Direction: () => Direction,
31
+ DividerDataAlignment: () => DividerDataAlignment,
29
32
  FontType: () => FontType,
30
33
  GIFType: () => GIFType,
31
34
  InitialExpandedItems: () => InitialExpandedItems,
35
+ Layout: () => Layout,
32
36
  LayoutType: () => LayoutType,
33
37
  LineStyle: () => LineStyle,
34
38
  MapType: () => MapType,
35
39
  NodeType: () => NodeType,
36
40
  NullValue: () => NullValue,
37
41
  Orientation: () => Orientation,
42
+ Placement: () => Placement,
38
43
  PluginContainerDataAlignment: () => PluginContainerDataAlignment,
39
44
  PollLayoutDirection: () => PollLayoutDirection,
40
45
  PollLayoutType: () => PollLayoutType,
41
46
  Position: () => Position,
47
+ Resizing: () => Resizing,
42
48
  SortOrder: () => SortOrder,
43
49
  Source: () => Source,
50
+ StylesPosition: () => StylesPosition,
44
51
  Target: () => Target,
45
52
  TextAlignment: () => TextAlignment,
46
53
  ThumbnailsAlignment: () => ThumbnailsAlignment,
@@ -601,11 +608,11 @@ var PluginContainerDataAlignment = /* @__PURE__ */ ((PluginContainerDataAlignmen
601
608
  PluginContainerDataAlignment2["RIGHT"] = "RIGHT";
602
609
  return PluginContainerDataAlignment2;
603
610
  })(PluginContainerDataAlignment || {});
604
- var Type = /* @__PURE__ */ ((Type2) => {
605
- Type2["LINK"] = "LINK";
606
- Type2["ACTION"] = "ACTION";
607
- return Type2;
608
- })(Type || {});
611
+ var ButtonDataType = /* @__PURE__ */ ((ButtonDataType2) => {
612
+ ButtonDataType2["LINK"] = "LINK";
613
+ ButtonDataType2["ACTION"] = "ACTION";
614
+ return ButtonDataType2;
615
+ })(ButtonDataType || {});
609
616
  var Target = /* @__PURE__ */ ((Target2) => {
610
617
  Target2["SELF"] = "SELF";
611
618
  Target2["BLANK"] = "BLANK";
@@ -634,12 +641,12 @@ var Width = /* @__PURE__ */ ((Width2) => {
634
641
  Width2["SMALL"] = "SMALL";
635
642
  return Width2;
636
643
  })(Width || {});
637
- var Alignment = /* @__PURE__ */ ((Alignment2) => {
638
- Alignment2["CENTER"] = "CENTER";
639
- Alignment2["LEFT"] = "LEFT";
640
- Alignment2["RIGHT"] = "RIGHT";
641
- return Alignment2;
642
- })(Alignment || {});
644
+ var DividerDataAlignment = /* @__PURE__ */ ((DividerDataAlignment2) => {
645
+ DividerDataAlignment2["CENTER"] = "CENTER";
646
+ DividerDataAlignment2["LEFT"] = "LEFT";
647
+ DividerDataAlignment2["RIGHT"] = "RIGHT";
648
+ return DividerDataAlignment2;
649
+ })(DividerDataAlignment || {});
643
650
  var ViewMode = /* @__PURE__ */ ((ViewMode2) => {
644
651
  ViewMode2["NONE"] = "NONE";
645
652
  ViewMode2["FULL"] = "FULL";
@@ -687,13 +694,13 @@ var Source = /* @__PURE__ */ ((Source2) => {
687
694
  Source2["ADSENSE"] = "ADSENSE";
688
695
  return Source2;
689
696
  })(Source || {});
690
- var Position = /* @__PURE__ */ ((Position2) => {
691
- Position2["START"] = "START";
692
- Position2["END"] = "END";
693
- Position2["TOP"] = "TOP";
694
- Position2["HIDDEN"] = "HIDDEN";
695
- return Position2;
696
- })(Position || {});
697
+ var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
698
+ StylesPosition2["START"] = "START";
699
+ StylesPosition2["END"] = "END";
700
+ StylesPosition2["TOP"] = "TOP";
701
+ StylesPosition2["HIDDEN"] = "HIDDEN";
702
+ return StylesPosition2;
703
+ })(StylesPosition || {});
697
704
  var MapType = /* @__PURE__ */ ((MapType2) => {
698
705
  MapType2["ROADMAP"] = "ROADMAP";
699
706
  MapType2["SATELITE"] = "SATELITE";
@@ -740,6 +747,8 @@ var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
740
747
  DecorationType2["FONT_SIZE"] = "FONT_SIZE";
741
748
  DecorationType2["EXTERNAL"] = "EXTERNAL";
742
749
  DecorationType2["STRIKETHROUGH"] = "STRIKETHROUGH";
750
+ DecorationType2["SUPERSCRIPT"] = "SUPERSCRIPT";
751
+ DecorationType2["SUBSCRIPT"] = "SUBSCRIPT";
743
752
  return DecorationType2;
744
753
  })(DecorationType || {});
745
754
  var FontType = /* @__PURE__ */ ((FontType2) => {
@@ -747,6 +756,43 @@ var FontType = /* @__PURE__ */ ((FontType2) => {
747
756
  FontType2["EM"] = "EM";
748
757
  return FontType2;
749
758
  })(FontType || {});
759
+ var Position = /* @__PURE__ */ ((Position2) => {
760
+ Position2["START"] = "START";
761
+ Position2["END"] = "END";
762
+ Position2["TOP"] = "TOP";
763
+ return Position2;
764
+ })(Position || {});
765
+ var AspectRatio = /* @__PURE__ */ ((AspectRatio2) => {
766
+ AspectRatio2["SQUARE"] = "SQUARE";
767
+ AspectRatio2["RECTANGLE"] = "RECTANGLE";
768
+ return AspectRatio2;
769
+ })(AspectRatio || {});
770
+ var Resizing = /* @__PURE__ */ ((Resizing2) => {
771
+ Resizing2["FILL"] = "FILL";
772
+ Resizing2["FIT"] = "FIT";
773
+ return Resizing2;
774
+ })(Resizing || {});
775
+ var Placement = /* @__PURE__ */ ((Placement2) => {
776
+ Placement2["IMAGE"] = "IMAGE";
777
+ Placement2["PRODUCT_INFO"] = "PRODUCT_INFO";
778
+ return Placement2;
779
+ })(Placement || {});
780
+ var Type = /* @__PURE__ */ ((Type2) => {
781
+ Type2["CONTAINED"] = "CONTAINED";
782
+ Type2["FRAMELESS"] = "FRAMELESS";
783
+ return Type2;
784
+ })(Type || {});
785
+ var Alignment = /* @__PURE__ */ ((Alignment2) => {
786
+ Alignment2["START"] = "START";
787
+ Alignment2["CENTER"] = "CENTER";
788
+ Alignment2["END"] = "END";
789
+ return Alignment2;
790
+ })(Alignment || {});
791
+ var Layout = /* @__PURE__ */ ((Layout2) => {
792
+ Layout2["STACKED"] = "STACKED";
793
+ Layout2["SIDE_BY_SIDE"] = "SIDE_BY_SIDE";
794
+ return Layout2;
795
+ })(Layout || {});
750
796
  var AppType = /* @__PURE__ */ ((AppType2) => {
751
797
  AppType2["PRODUCT"] = "PRODUCT";
752
798
  AppType2["EVENT"] = "EVENT";
@@ -1159,25 +1205,32 @@ var onMemberAboutUpdated2 = (0, import_event_definition_modules.createEventModul
1159
1205
  0 && (module.exports = {
1160
1206
  Alignment,
1161
1207
  AppType,
1208
+ AspectRatio,
1162
1209
  BackgroundType,
1210
+ ButtonDataType,
1163
1211
  Crop,
1164
1212
  DecorationType,
1165
1213
  Direction,
1214
+ DividerDataAlignment,
1166
1215
  FontType,
1167
1216
  GIFType,
1168
1217
  InitialExpandedItems,
1218
+ Layout,
1169
1219
  LayoutType,
1170
1220
  LineStyle,
1171
1221
  MapType,
1172
1222
  NodeType,
1173
1223
  NullValue,
1174
1224
  Orientation,
1225
+ Placement,
1175
1226
  PluginContainerDataAlignment,
1176
1227
  PollLayoutDirection,
1177
1228
  PollLayoutType,
1178
1229
  Position,
1230
+ Resizing,
1179
1231
  SortOrder,
1180
1232
  Source,
1233
+ StylesPosition,
1181
1234
  Target,
1182
1235
  TextAlignment,
1183
1236
  ThumbnailsAlignment,