@wix/ecom 1.0.740 → 1.0.741

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/ecom",
3
- "version": "1.0.740",
3
+ "version": "1.0.741",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -26,7 +26,7 @@
26
26
  "@wix/ecom_cart": "1.0.70",
27
27
  "@wix/ecom_checkout": "1.0.80",
28
28
  "@wix/ecom_checkout-content": "1.0.5",
29
- "@wix/ecom_checkout-settings": "1.0.49",
29
+ "@wix/ecom_checkout-settings": "1.0.50",
30
30
  "@wix/ecom_checkout-templates": "1.0.80",
31
31
  "@wix/ecom_currencies": "1.0.35",
32
32
  "@wix/ecom_current-cart": "1.0.70",
@@ -76,5 +76,5 @@
76
76
  "fqdn": ""
77
77
  }
78
78
  },
79
- "falconPackageHash": "a81ec8c427be28f69e93fca65826a601bfb46763782478f4a2dce725"
79
+ "falconPackageHash": "4b0920832237b9ac3d2be09e6fb13efda7b135f6b82794bd17ac5b08"
80
80
  }
@@ -12043,6 +12043,8 @@ interface CheckoutSettings {
12043
12043
  checkoutPolicies?: CheckoutPolicies;
12044
12044
  /** Settings that apply to checkout fields and the checkout process. */
12045
12045
  checkoutFields?: CheckoutFields;
12046
+ /** Checkout brand settings. */
12047
+ checkoutBrand?: CheckoutBrand;
12046
12048
  /**
12047
12049
  * Date and time the checkout settings were created.
12048
12050
  * @readonly
@@ -12043,6 +12043,8 @@ interface CheckoutSettings {
12043
12043
  checkoutPolicies?: CheckoutPolicies;
12044
12044
  /** Settings that apply to checkout fields and the checkout process. */
12045
12045
  checkoutFields?: CheckoutFields;
12046
+ /** Checkout brand settings. */
12047
+ checkoutBrand?: CheckoutBrand;
12046
12048
  /**
12047
12049
  * Date and time the checkout settings were created.
12048
12050
  * @readonly
@@ -14799,6 +14799,8 @@ interface CheckoutSettings$1 {
14799
14799
  checkoutPolicies?: CheckoutPolicies$1;
14800
14800
  /** Settings that apply to checkout fields and the checkout process. */
14801
14801
  checkoutFields?: CheckoutFields$1;
14802
+ /** Checkout brand settings. */
14803
+ checkoutBrand?: CheckoutBrand$1;
14802
14804
  /**
14803
14805
  * Date and time the checkout settings were created.
14804
14806
  * @readonly
@@ -14935,6 +14937,34 @@ interface CheckboxField$1 {
14935
14937
  /** Whether the checkbox is checked by default. */
14936
14938
  checkedByDefault?: boolean | null;
14937
14939
  }
14940
+ interface CheckoutBrand$1 {
14941
+ /** Checkout header. */
14942
+ header?: CheckoutHeader$1;
14943
+ }
14944
+ interface CheckoutHeader$1 {
14945
+ /**
14946
+ * Textual content to be included in the header (e.g. Business Name)
14947
+ * TODO: update maxLength validation once limitation is known
14948
+ */
14949
+ text?: string | null;
14950
+ /** Specifications for when a logo is included in the header. */
14951
+ logo?: Logo$1;
14952
+ /**
14953
+ * Alignment within the header.
14954
+ *
14955
+ * >**Note:** `SIDE` alignment is decided depending on the locale's language. For example, scripts like Hebrew and Arabic will automatically align right-to-left.
14956
+ */
14957
+ alignment?: Alignment$1;
14958
+ /**
14959
+ * Whether to display the 'Checkout' label within the header.
14960
+ * Depending on the locale, the label may be translated.
14961
+ */
14962
+ displayCheckoutLabel?: boolean | null;
14963
+ }
14964
+ interface Logo$1 {
14965
+ /** Size of the logo. */
14966
+ size?: LogoSize$1;
14967
+ }
14938
14968
  declare enum LogoSize$1 {
14939
14969
  UNKNOWN_LOGO_SIZE = "UNKNOWN_LOGO_SIZE",
14940
14970
  SMALL = "SMALL",
@@ -14992,6 +15022,8 @@ interface CheckoutSettings {
14992
15022
  checkoutPolicies?: CheckoutPolicies;
14993
15023
  /** Settings that apply to checkout fields and the checkout process. */
14994
15024
  checkoutFields?: CheckoutFields;
15025
+ /** Checkout brand settings. */
15026
+ checkoutBrand?: CheckoutBrand;
14995
15027
  /**
14996
15028
  * Date and time the checkout settings were created.
14997
15029
  * @readonly
@@ -15123,6 +15155,34 @@ interface CheckboxField {
15123
15155
  /** Whether the checkbox is checked by default. */
15124
15156
  checkedByDefault?: boolean | null;
15125
15157
  }
15158
+ interface CheckoutBrand {
15159
+ /** Checkout header. */
15160
+ header?: CheckoutHeader;
15161
+ }
15162
+ interface CheckoutHeader {
15163
+ /**
15164
+ * Textual content to be included in the header (e.g. Business Name)
15165
+ * TODO: update maxLength validation once limitation is known
15166
+ */
15167
+ text?: string | null;
15168
+ /** Specifications for when a logo is included in the header. */
15169
+ logo?: Logo;
15170
+ /**
15171
+ * Alignment within the header.
15172
+ *
15173
+ * >**Note:** `SIDE` alignment is decided depending on the locale's language. For example, scripts like Hebrew and Arabic will automatically align right-to-left.
15174
+ */
15175
+ alignment?: Alignment;
15176
+ /**
15177
+ * Whether to display the 'Checkout' label within the header.
15178
+ * Depending on the locale, the label may be translated.
15179
+ */
15180
+ displayCheckoutLabel?: boolean | null;
15181
+ }
15182
+ interface Logo {
15183
+ /** Size of the logo. */
15184
+ size?: LogoSize;
15185
+ }
15126
15186
  declare enum LogoSize {
15127
15187
  UNKNOWN_LOGO_SIZE = "UNKNOWN_LOGO_SIZE",
15128
15188
  SMALL = "SMALL",