@wix/auto_sdk_data-extension-schema_schemas 1.0.76 → 1.0.77

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.
@@ -10013,6 +10013,11 @@ interface DateTimeInput {
10013
10013
  media?: MediaItem;
10014
10014
  /** Settings for media item */
10015
10015
  mediaSettings?: MediaSettings;
10016
+ /**
10017
+ * Flag identifying whether to show or hide the date labels.
10018
+ * Default: true
10019
+ */
10020
+ showDateLabels?: boolean | null;
10016
10021
  }
10017
10022
  interface PhoneInput {
10018
10023
  /**
@@ -10075,6 +10080,11 @@ interface DateInput {
10075
10080
  media?: MediaItem;
10076
10081
  /** Settings for media item */
10077
10082
  mediaSettings?: MediaSettings;
10083
+ /**
10084
+ * Flag identifying whether to show or hide the date labels.
10085
+ * Default: true
10086
+ */
10087
+ showDateLabels?: boolean | null;
10078
10088
  }
10079
10089
  interface TimeInput {
10080
10090
  /**
@@ -10898,6 +10908,16 @@ interface MultilineAddress {
10898
10908
  fieldSettings?: FieldsSettings;
10899
10909
  /** Autocomplete enabled for address line field. */
10900
10910
  autocompleteEnabled?: boolean;
10911
+ /**
10912
+ * Flag identifying whether to show or hide the address labels.
10913
+ * Default: true
10914
+ */
10915
+ showAddressLabels?: boolean | null;
10916
+ /**
10917
+ * Flag identifying whether to show or hide the label.
10918
+ * Default: true
10919
+ */
10920
+ showLabel?: boolean | null;
10901
10921
  }
10902
10922
  declare enum DefaultCountryConfigType {
10903
10923
  /** Unknown default country config type. */