@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.
- package/build/cjs/index.d.ts +5 -5
- package/build/cjs/index.js +71 -18
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/{members-about-v2-member-about-members-about.universal-35AgPK6C.d.ts → index.typings.d.ts} +380 -14
- package/build/cjs/index.typings.js +1048 -0
- package/build/cjs/index.typings.js.map +1 -0
- package/build/cjs/meta.d.ts +227 -14
- package/build/es/index.d.mts +5 -5
- package/build/es/index.mjs +64 -18
- package/build/es/index.mjs.map +1 -1
- package/build/es/{members-about-v2-member-about-members-about.universal-35AgPK6C.d.mts → index.typings.d.mts} +380 -14
- package/build/es/index.typings.mjs +980 -0
- package/build/es/index.typings.mjs.map +1 -0
- package/build/es/meta.d.mts +227 -14
- package/build/internal/cjs/index.d.ts +5 -5
- package/build/internal/cjs/index.js +71 -18
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/{members-about-v2-member-about-members-about.universal-35AgPK6C.d.ts → index.typings.d.ts} +380 -14
- package/build/internal/cjs/index.typings.js +1048 -0
- package/build/internal/cjs/index.typings.js.map +1 -0
- package/build/internal/cjs/meta.d.ts +227 -14
- package/build/internal/es/index.d.mts +5 -5
- package/build/internal/es/index.mjs +64 -18
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/{members-about-v2-member-about-members-about.universal-35AgPK6C.d.mts → index.typings.d.mts} +380 -14
- package/build/internal/es/index.typings.mjs +980 -0
- package/build/internal/es/index.typings.mjs.map +1 -0
- package/build/internal/es/meta.d.mts +227 -14
- package/package.json +3 -3
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
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?:
|
|
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
|
|
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
|
|
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?:
|
|
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
|
|
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
|
|
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?:
|
|
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
|
|
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
|
|
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
|
|
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?:
|
|
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;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/auto_sdk_members_members-about",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.23",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"service-plugins"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@wix/sdk-runtime": "^0.3.
|
|
31
|
+
"@wix/sdk-runtime": "^0.3.55",
|
|
32
32
|
"@wix/sdk-types": "^1.13.28"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"fqdn": "wix.members.about.v2.member_about"
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
|
-
"falconPackageHash": "
|
|
52
|
+
"falconPackageHash": "0326aa1b19fa19d9ed8d0b14a3116d00c0778e8b36fbf03b4ac2e278"
|
|
53
53
|
}
|