@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.
- package/build/cjs/index.js +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +5 -2
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +3 -2
- package/build/cjs/meta.js +1 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +5 -2
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +3 -2
- package/build/es/meta.mjs +1 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +1 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +5 -2
- package/build/internal/cjs/index.typings.js +1 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +3 -2
- package/build/internal/cjs/meta.js +1 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +1 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +5 -2
- package/build/internal/es/index.typings.mjs +1 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +3 -2
- package/build/internal/es/meta.mjs +1 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -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;
|
|
@@ -442,6 +442,7 @@ var GIFType = /* @__PURE__ */ ((GIFType2) => {
|
|
|
442
442
|
var Source = /* @__PURE__ */ ((Source2) => {
|
|
443
443
|
Source2["HTML"] = "HTML";
|
|
444
444
|
Source2["ADSENSE"] = "ADSENSE";
|
|
445
|
+
Source2["AI"] = "AI";
|
|
445
446
|
return Source2;
|
|
446
447
|
})(Source || {});
|
|
447
448
|
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|