@wix/auto_sdk_events_notifications 1.0.27 → 1.0.28

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.
@@ -783,7 +783,7 @@ interface Money {
783
783
  */
784
784
  amount?: string;
785
785
  /**
786
- * Three-letter currency code in [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format.
786
+ * 3-letter currency code in [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format. For example, `USD`.
787
787
  * @format CURRENCY
788
788
  */
789
789
  currency?: string;
@@ -2897,24 +2897,24 @@ interface OrderConfirmed {
2897
2897
  }
2898
2898
  interface FormResponse {
2899
2899
  /**
2900
- * Input values entered when filling the form.
2900
+ * Form field inputs.
2901
2901
  * @maxSize 200
2902
2902
  */
2903
2903
  inputValues?: InputValue[];
2904
2904
  }
2905
2905
  interface InputValue {
2906
2906
  /**
2907
- * Input field name.
2907
+ * Form field input name.
2908
2908
  * @maxLength 100
2909
2909
  */
2910
2910
  inputName?: string;
2911
2911
  /**
2912
- * Text entered into the input field.
2912
+ * Form field value.
2913
2913
  * @maxLength 5000
2914
2914
  */
2915
2915
  value?: string;
2916
2916
  /**
2917
- * Multiple input values. For example, the array is filled if several checkboxes are ticked.
2917
+ * Form field values.
2918
2918
  * @maxSize 100
2919
2919
  * @maxLength 5000
2920
2920
  */
@@ -2922,11 +2922,11 @@ interface InputValue {
2922
2922
  }
2923
2923
  interface FormattedAddress {
2924
2924
  /**
2925
- * One line address representation.
2925
+ * 1-line address representation.
2926
2926
  * @maxLength 200
2927
2927
  */
2928
2928
  formatted?: string;
2929
- /** Address components (optional). */
2929
+ /** Address components. */
2930
2930
  address?: CommonAddress;
2931
2931
  }
2932
2932
  /** Physical address */
@@ -2983,7 +2983,7 @@ interface StandardDetails {
2983
2983
  iso31662?: string | null;
2984
2984
  }
2985
2985
  declare enum OrderStatus {
2986
- /** Order status is not available for this request fieldset. */
2986
+ /** Order status isn't available for this request fieldset. */
2987
2987
  NA_ORDER_STATUS = "NA_ORDER_STATUS",
2988
2988
  /** Order is confirmed, no payment is required. */
2989
2989
  FREE = "FREE",
@@ -2991,9 +2991,9 @@ declare enum OrderStatus {
2991
2991
  PENDING = "PENDING",
2992
2992
  /** Order is paid. */
2993
2993
  PAID = "PAID",
2994
- /** Order is confirmed but has be paid via offline payment. Status needs to be manually updated to `"PAID"`. */
2994
+ /** Order is confirmed but must be paid via offline payment. Status needs to be manually updated to `"PAID"`. */
2995
2995
  OFFLINE_PENDING = "OFFLINE_PENDING",
2996
- /** Order is awaiting for payment at the cashier. */
2996
+ /** Order is waiting for payment at the cashier. */
2997
2997
  INITIATED = "INITIATED",
2998
2998
  /** Order is canceled. */
2999
2999
  CANCELED = "CANCELED",
@@ -3057,7 +3057,7 @@ interface Ticket {
3057
3057
  canceled?: boolean | null;
3058
3058
  }
3059
3059
  interface CheckIn {
3060
- /** Time of check-in. */
3060
+ /** Time of a ticket's check-in. */
3061
3061
  created?: Date | null;
3062
3062
  }
3063
3063
  interface OnlineConferencingLogin {
@@ -3090,8 +3090,8 @@ interface Invoice {
3090
3090
  * Total amount of a cart after discount, tax, and fees.
3091
3091
  * Grand total is calculated in the following order:
3092
3092
  * 1. Total prices of all items in the cart are calculated.
3093
- * 2. Discount is subtracted from the cart (if applicable).
3094
- * 3. Tax is added (if applicable).
3093
+ * 2. Discount is subtracted from the cart, if applicable.
3094
+ * 3. Tax is added, if applicable.
3095
3095
  * 4. Wix ticket service fee is added.
3096
3096
  */
3097
3097
  grandTotal?: Money;
@@ -3100,7 +3100,7 @@ interface Invoice {
3100
3100
  * @readonly
3101
3101
  */
3102
3102
  fees?: Fee[];
3103
- /** Total revenue, excluding fees. (Taxes and payment provider fees are not deducted). */
3103
+ /** Total revenue, excluding fees. Taxes and payment provider fees aren't deducted. */
3104
3104
  revenue?: Money;
3105
3105
  /** Invoice preview URL. Only returned if the order is paid. */
3106
3106
  previewUrl?: string | null;