@wix/app-extensions 1.0.5 → 1.0.6
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.
|
@@ -7214,8 +7214,6 @@ interface Node extends NodeDataOneOf {
|
|
|
7214
7214
|
layoutData?: LayoutData;
|
|
7215
7215
|
/** Data for a cell node. */
|
|
7216
7216
|
layoutCellData?: LayoutCellData;
|
|
7217
|
-
/** Data for a shape node. */
|
|
7218
|
-
shapeData?: ShapeData;
|
|
7219
7217
|
/** 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. */
|
|
7220
7218
|
type?: NodeTypeWithLiterals;
|
|
7221
7219
|
/** Node ID. */
|
|
@@ -7283,8 +7281,6 @@ interface NodeDataOneOf {
|
|
|
7283
7281
|
layoutData?: LayoutData;
|
|
7284
7282
|
/** Data for a cell node. */
|
|
7285
7283
|
layoutCellData?: LayoutCellData;
|
|
7286
|
-
/** Data for a shape node. */
|
|
7287
|
-
shapeData?: ShapeData;
|
|
7288
7284
|
}
|
|
7289
7285
|
declare enum NodeType {
|
|
7290
7286
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -7320,11 +7316,10 @@ declare enum NodeType {
|
|
|
7320
7316
|
AUDIO = "AUDIO",
|
|
7321
7317
|
CAPTION = "CAPTION",
|
|
7322
7318
|
LAYOUT = "LAYOUT",
|
|
7323
|
-
LAYOUT_CELL = "LAYOUT_CELL"
|
|
7324
|
-
SHAPE = "SHAPE"
|
|
7319
|
+
LAYOUT_CELL = "LAYOUT_CELL"
|
|
7325
7320
|
}
|
|
7326
7321
|
/** @enumType */
|
|
7327
|
-
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL'
|
|
7322
|
+
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL';
|
|
7328
7323
|
interface NodeStyle {
|
|
7329
7324
|
/** The top padding value in pixels. */
|
|
7330
7325
|
paddingTop?: string | null;
|
|
@@ -8970,23 +8965,6 @@ interface LayoutCellData {
|
|
|
8970
8965
|
/** Size of the cell in 12 columns grid. */
|
|
8971
8966
|
colSpan?: number | null;
|
|
8972
8967
|
}
|
|
8973
|
-
interface ShapeData {
|
|
8974
|
-
/** Styling for the shape's container. */
|
|
8975
|
-
containerData?: PluginContainerData;
|
|
8976
|
-
/** Shape file details. */
|
|
8977
|
-
shape?: Media;
|
|
8978
|
-
/** Styling for the shape. */
|
|
8979
|
-
styles?: ShapeDataStyles;
|
|
8980
|
-
}
|
|
8981
|
-
interface ShapeDataStyles {
|
|
8982
|
-
/**
|
|
8983
|
-
* Shape fill color as a hexadecimal value.
|
|
8984
|
-
* @format COLOR_HEX
|
|
8985
|
-
*/
|
|
8986
|
-
color?: string | null;
|
|
8987
|
-
/** Map of original color keys to their new color values. */
|
|
8988
|
-
colors?: Record<string, string>;
|
|
8989
|
-
}
|
|
8990
8968
|
interface V1Metadata {
|
|
8991
8969
|
/** Schema version. */
|
|
8992
8970
|
version?: number;
|
|
@@ -7214,8 +7214,6 @@ interface Node extends NodeDataOneOf {
|
|
|
7214
7214
|
layoutData?: LayoutData;
|
|
7215
7215
|
/** Data for a cell node. */
|
|
7216
7216
|
layoutCellData?: LayoutCellData;
|
|
7217
|
-
/** Data for a shape node. */
|
|
7218
|
-
shapeData?: ShapeData;
|
|
7219
7217
|
/** 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. */
|
|
7220
7218
|
type?: NodeTypeWithLiterals;
|
|
7221
7219
|
/** Node ID. */
|
|
@@ -7283,8 +7281,6 @@ interface NodeDataOneOf {
|
|
|
7283
7281
|
layoutData?: LayoutData;
|
|
7284
7282
|
/** Data for a cell node. */
|
|
7285
7283
|
layoutCellData?: LayoutCellData;
|
|
7286
|
-
/** Data for a shape node. */
|
|
7287
|
-
shapeData?: ShapeData;
|
|
7288
7284
|
}
|
|
7289
7285
|
declare enum NodeType {
|
|
7290
7286
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -7320,11 +7316,10 @@ declare enum NodeType {
|
|
|
7320
7316
|
AUDIO = "AUDIO",
|
|
7321
7317
|
CAPTION = "CAPTION",
|
|
7322
7318
|
LAYOUT = "LAYOUT",
|
|
7323
|
-
LAYOUT_CELL = "LAYOUT_CELL"
|
|
7324
|
-
SHAPE = "SHAPE"
|
|
7319
|
+
LAYOUT_CELL = "LAYOUT_CELL"
|
|
7325
7320
|
}
|
|
7326
7321
|
/** @enumType */
|
|
7327
|
-
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL'
|
|
7322
|
+
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL';
|
|
7328
7323
|
interface NodeStyle {
|
|
7329
7324
|
/** The top padding value in pixels. */
|
|
7330
7325
|
paddingTop?: string | null;
|
|
@@ -8970,23 +8965,6 @@ interface LayoutCellData {
|
|
|
8970
8965
|
/** Size of the cell in 12 columns grid. */
|
|
8971
8966
|
colSpan?: number | null;
|
|
8972
8967
|
}
|
|
8973
|
-
interface ShapeData {
|
|
8974
|
-
/** Styling for the shape's container. */
|
|
8975
|
-
containerData?: PluginContainerData;
|
|
8976
|
-
/** Shape file details. */
|
|
8977
|
-
shape?: Media;
|
|
8978
|
-
/** Styling for the shape. */
|
|
8979
|
-
styles?: ShapeDataStyles;
|
|
8980
|
-
}
|
|
8981
|
-
interface ShapeDataStyles {
|
|
8982
|
-
/**
|
|
8983
|
-
* Shape fill color as a hexadecimal value.
|
|
8984
|
-
* @format COLOR_HEX
|
|
8985
|
-
*/
|
|
8986
|
-
color?: string | null;
|
|
8987
|
-
/** Map of original color keys to their new color values. */
|
|
8988
|
-
colors?: Record<string, string>;
|
|
8989
|
-
}
|
|
8990
8968
|
interface V1Metadata {
|
|
8991
8969
|
/** Schema version. */
|
|
8992
8970
|
version?: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/app-extensions",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"groupId": "com.wixpress.public-sdk-autogen"
|
|
33
33
|
}
|
|
34
34
|
},
|
|
35
|
-
"falconPackageHash": "
|
|
35
|
+
"falconPackageHash": "f030755243230c73110f5e243d17609ca7faeb5c76e012356a50d2f1"
|
|
36
36
|
}
|