@wix/auto_sdk_blog_posts 1.0.36 → 1.0.38

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.
@@ -504,7 +504,7 @@ interface ButtonData {
504
504
  /** Styling for the button's container. */
505
505
  containerData?: PluginContainerData;
506
506
  /** The button type. */
507
- type?: TypeWithLiterals;
507
+ type?: ButtonDataTypeWithLiterals;
508
508
  /** Styling for the button. */
509
509
  styles?: Styles;
510
510
  /** The text to display on the button. */
@@ -597,14 +597,14 @@ interface Height {
597
597
  /** A custom height value in pixels. */
598
598
  custom?: string | null;
599
599
  }
600
- declare enum Type {
600
+ declare enum ButtonDataType {
601
601
  /** Regular link button */
602
602
  LINK = "LINK",
603
603
  /** Triggers custom action that is defined in plugin configuration by the consumer */
604
604
  ACTION = "ACTION"
605
605
  }
606
606
  /** @enumType */
607
- type TypeWithLiterals = Type | 'LINK' | 'ACTION';
607
+ type ButtonDataTypeWithLiterals = ButtonDataType | 'LINK' | 'ACTION';
608
608
  interface Styles {
609
609
  /** Border attributes. */
610
610
  border?: Border;
@@ -690,7 +690,7 @@ interface DividerData {
690
690
  /** Divider width. */
691
691
  width?: WidthWithLiterals;
692
692
  /** Divider alignment. */
693
- alignment?: AlignmentWithLiterals;
693
+ alignment?: DividerDataAlignmentWithLiterals;
694
694
  }
695
695
  declare enum LineStyle {
696
696
  /** Single Line */
@@ -714,7 +714,7 @@ declare enum Width {
714
714
  }
715
715
  /** @enumType */
716
716
  type WidthWithLiterals = Width | 'LARGE' | 'MEDIUM' | 'SMALL';
717
- declare enum Alignment {
717
+ declare enum DividerDataAlignment {
718
718
  /** Center alignment */
719
719
  CENTER = "CENTER",
720
720
  /** Left alignment */
@@ -723,7 +723,7 @@ declare enum Alignment {
723
723
  RIGHT = "RIGHT"
724
724
  }
725
725
  /** @enumType */
726
- type AlignmentWithLiterals = Alignment | 'CENTER' | 'LEFT' | 'RIGHT';
726
+ type DividerDataAlignmentWithLiterals = DividerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
727
727
  interface FileData {
728
728
  /** Styling for the file's container. */
729
729
  containerData?: PluginContainerData;
@@ -848,7 +848,7 @@ interface ItemDataOneOf {
848
848
  }
849
849
  interface GalleryOptions {
850
850
  /** Gallery layout. */
851
- layout?: Layout;
851
+ layout?: GalleryOptionsLayout;
852
852
  /** Styling for gallery items. */
853
853
  item?: ItemStyle;
854
854
  /** Styling for gallery thumbnail images. */
@@ -908,7 +908,7 @@ declare enum ThumbnailsAlignment {
908
908
  }
909
909
  /** @enumType */
910
910
  type ThumbnailsAlignmentWithLiterals = ThumbnailsAlignment | 'TOP' | 'RIGHT' | 'BOTTOM' | 'LEFT' | 'NONE';
911
- interface Layout {
911
+ interface GalleryOptionsLayout {
912
912
  /** Gallery layout type. */
913
913
  type?: LayoutTypeWithLiterals;
914
914
  /** Sets whether horizontal scroll is enabled. Defaults to `true` unless the layout `type` is set to `GRID` or `COLLAGE`. */
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@wix/auto_sdk_blog_posts",
3
- "version": "1.0.36",
3
+ "version": "1.0.38",
4
+ "license": "MIT",
4
5
  "publishConfig": {
5
6
  "registry": "https://registry.npmjs.org/",
6
7
  "access": "public"
@@ -49,5 +50,5 @@
49
50
  "fqdn": "wix.blog.v3.post"
50
51
  }
51
52
  },
52
- "falconPackageHash": "87670720046347512d2210bc3f2beafdcaa0682cb51623b41dc8276f"
53
+ "falconPackageHash": "eb3d9ecc496852990a025d09f2183dfe95d4bbbd3d9a64da6acdeb16"
53
54
  }