@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.
@@ -10030,6 +10030,11 @@ interface DateTimeInput {
10030
10030
  media?: MediaItem;
10031
10031
  /** Settings for media item */
10032
10032
  mediaSettings?: MediaSettings;
10033
+ /**
10034
+ * Flag identifying whether to show or hide the date labels.
10035
+ * Default: true
10036
+ */
10037
+ showDateLabels?: boolean | null;
10033
10038
  }
10034
10039
  interface PhoneInput {
10035
10040
  /**
@@ -10092,6 +10097,11 @@ interface DateInput {
10092
10097
  media?: MediaItem;
10093
10098
  /** Settings for media item */
10094
10099
  mediaSettings?: MediaSettings;
10100
+ /**
10101
+ * Flag identifying whether to show or hide the date labels.
10102
+ * Default: true
10103
+ */
10104
+ showDateLabels?: boolean | null;
10095
10105
  }
10096
10106
  interface TimeInput {
10097
10107
  /**
@@ -10915,6 +10925,16 @@ interface MultilineAddress {
10915
10925
  fieldSettings?: FieldsSettings;
10916
10926
  /** Autocomplete enabled for address line field. */
10917
10927
  autocompleteEnabled?: boolean;
10928
+ /**
10929
+ * Flag identifying whether to show or hide the address labels.
10930
+ * Default: true
10931
+ */
10932
+ showAddressLabels?: boolean | null;
10933
+ /**
10934
+ * Flag identifying whether to show or hide the label.
10935
+ * Default: true
10936
+ */
10937
+ showLabel?: boolean | null;
10918
10938
  }
10919
10939
  declare enum DefaultCountryConfigType {
10920
10940
  /** Unknown default country config type. */