@wix/auto_sdk_events_notifications 1.0.44 → 1.0.46

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.
@@ -385,6 +385,8 @@ interface Address extends AddressStreetOneOf {
385
385
  addressLine2?: string | null;
386
386
  /** A string containing the human-readable address of this location */
387
387
  formatted?: string | null;
388
+ /** Free text for human-to-human textual orientation aid purposes */
389
+ hint?: string | null;
388
390
  /** coordinates of the physical address */
389
391
  location?: AddressLocation;
390
392
  /** country full-name */
@@ -2158,10 +2160,11 @@ interface HTMLDataDataOneOf {
2158
2160
  }
2159
2161
  declare enum Source {
2160
2162
  HTML = "HTML",
2161
- ADSENSE = "ADSENSE"
2163
+ ADSENSE = "ADSENSE",
2164
+ AI = "AI"
2162
2165
  }
2163
2166
  /** @enumType */
2164
- type SourceWithLiterals = Source | 'HTML' | 'ADSENSE';
2167
+ type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
2165
2168
  interface ImageData {
2166
2169
  /** Styling for the image's container. */
2167
2170
  containerData?: PluginContainerData;
@@ -526,6 +526,7 @@ var GIFType = /* @__PURE__ */ ((GIFType2) => {
526
526
  var Source = /* @__PURE__ */ ((Source2) => {
527
527
  Source2["HTML"] = "HTML";
528
528
  Source2["ADSENSE"] = "ADSENSE";
529
+ Source2["AI"] = "AI";
529
530
  return Source2;
530
531
  })(Source || {});
531
532
  var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {