@cakemail-org/ui-components-v2 2.1.58 → 2.1.60
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/dist/cjs/index.js
CHANGED
|
@@ -17837,7 +17837,6 @@ var ListPopupModel = /** @class */ (function () {
|
|
|
17837
17837
|
this.trigger = params.trigger;
|
|
17838
17838
|
this.targeting = params.targeting;
|
|
17839
17839
|
this.display_frequency = params.display_frequency;
|
|
17840
|
-
this.published_content_url = params.published_content_url;
|
|
17841
17840
|
this.thumbnail_url = params.thumbnail_url;
|
|
17842
17841
|
}
|
|
17843
17842
|
ListPopupModel.prototype.toJson = function () {
|
|
@@ -16,7 +16,6 @@ export declare class ListPopupModel {
|
|
|
16
16
|
trigger: TPopupTrigger;
|
|
17
17
|
targeting: TPopupTargeting;
|
|
18
18
|
display_frequency: EPopupDisplayFrequency;
|
|
19
|
-
published_content_url: string | null;
|
|
20
19
|
thumbnail_url: string;
|
|
21
20
|
constructor(params: TPopupModel);
|
|
22
21
|
toJson(): any;
|
|
@@ -14,7 +14,6 @@ export type TPopupModel = {
|
|
|
14
14
|
trigger: TPopupTrigger;
|
|
15
15
|
targeting: TPopupTargeting;
|
|
16
16
|
display_frequency: EPopupDisplayFrequency;
|
|
17
|
-
published_content_url: string | null;
|
|
18
17
|
thumbnail_url: string;
|
|
19
18
|
};
|
|
20
19
|
export type TPopupUser = {
|
|
@@ -42,6 +41,7 @@ export type TPopupTargeting = {
|
|
|
42
41
|
export type TPopupContent = {
|
|
43
42
|
position: EPopupPosition;
|
|
44
43
|
json?: Record<string, any>;
|
|
44
|
+
published_content?: string | null;
|
|
45
45
|
};
|
|
46
46
|
export declare enum EPopupTriggerType {
|
|
47
47
|
on_page_load = "on_page_load",
|
package/dist/esm/index.js
CHANGED
|
@@ -17817,7 +17817,6 @@ var ListPopupModel = /** @class */ (function () {
|
|
|
17817
17817
|
this.trigger = params.trigger;
|
|
17818
17818
|
this.targeting = params.targeting;
|
|
17819
17819
|
this.display_frequency = params.display_frequency;
|
|
17820
|
-
this.published_content_url = params.published_content_url;
|
|
17821
17820
|
this.thumbnail_url = params.thumbnail_url;
|
|
17822
17821
|
}
|
|
17823
17822
|
ListPopupModel.prototype.toJson = function () {
|
|
@@ -16,7 +16,6 @@ export declare class ListPopupModel {
|
|
|
16
16
|
trigger: TPopupTrigger;
|
|
17
17
|
targeting: TPopupTargeting;
|
|
18
18
|
display_frequency: EPopupDisplayFrequency;
|
|
19
|
-
published_content_url: string | null;
|
|
20
19
|
thumbnail_url: string;
|
|
21
20
|
constructor(params: TPopupModel);
|
|
22
21
|
toJson(): any;
|
|
@@ -14,7 +14,6 @@ export type TPopupModel = {
|
|
|
14
14
|
trigger: TPopupTrigger;
|
|
15
15
|
targeting: TPopupTargeting;
|
|
16
16
|
display_frequency: EPopupDisplayFrequency;
|
|
17
|
-
published_content_url: string | null;
|
|
18
17
|
thumbnail_url: string;
|
|
19
18
|
};
|
|
20
19
|
export type TPopupUser = {
|
|
@@ -42,6 +41,7 @@ export type TPopupTargeting = {
|
|
|
42
41
|
export type TPopupContent = {
|
|
43
42
|
position: EPopupPosition;
|
|
44
43
|
json?: Record<string, any>;
|
|
44
|
+
published_content?: string | null;
|
|
45
45
|
};
|
|
46
46
|
export declare enum EPopupTriggerType {
|
|
47
47
|
on_page_load = "on_page_load",
|