@cakemail-org/ui-components-v2 2.1.63 → 2.1.65
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 +3 -0
- package/dist/cjs/models/popups/index.d.ts +2 -0
- package/dist/cjs/models/popups/types.d.ts +2 -0
- package/dist/cjs/services/hidden/types.d.ts +2 -1
- package/dist/esm/index.js +3 -0
- package/dist/esm/models/popups/index.d.ts +2 -0
- package/dist/esm/models/popups/types.d.ts +2 -0
- package/dist/esm/services/hidden/types.d.ts +2 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -10409,6 +10409,7 @@ exports.EEditorType = void 0;
|
|
|
10409
10409
|
EEditorType["emailDesigner"] = "email_designer";
|
|
10410
10410
|
EEditorType["formDesigner"] = "form_designer";
|
|
10411
10411
|
EEditorType["popUpDesigner"] = "pop_up_designer";
|
|
10412
|
+
EEditorType["pageDesigner"] = "page_designer";
|
|
10412
10413
|
})(exports.EEditorType || (exports.EEditorType = {}));
|
|
10413
10414
|
|
|
10414
10415
|
function requestSupportService(_a) {
|
|
@@ -17823,6 +17824,8 @@ exports.EPopupBranding = void 0;
|
|
|
17823
17824
|
var ListPopupModel = /** @class */ (function () {
|
|
17824
17825
|
function ListPopupModel(params) {
|
|
17825
17826
|
this.id = params.id;
|
|
17827
|
+
this.list_id = params.list_id;
|
|
17828
|
+
this.popup_id = params.popup_id;
|
|
17826
17829
|
this.account_id = params.account_id;
|
|
17827
17830
|
this.name = params.name;
|
|
17828
17831
|
this.description = params.description;
|
|
@@ -2,6 +2,8 @@ import { TDeleteApiResource } from "../../types";
|
|
|
2
2
|
import { EPopupBranding, EPopupDisplayFrequency, TPopupContent, TPopupModel, TPopupTargeting, TPopupTrigger, TPopupUser } from "./types";
|
|
3
3
|
export declare class ListPopupModel {
|
|
4
4
|
id: string;
|
|
5
|
+
list_id: number;
|
|
6
|
+
popup_id?: string;
|
|
5
7
|
readonly account_id: number;
|
|
6
8
|
name: string | null;
|
|
7
9
|
description: string | null;
|
package/dist/esm/index.js
CHANGED
|
@@ -10389,6 +10389,7 @@ var EEditorType;
|
|
|
10389
10389
|
EEditorType["emailDesigner"] = "email_designer";
|
|
10390
10390
|
EEditorType["formDesigner"] = "form_designer";
|
|
10391
10391
|
EEditorType["popUpDesigner"] = "pop_up_designer";
|
|
10392
|
+
EEditorType["pageDesigner"] = "page_designer";
|
|
10392
10393
|
})(EEditorType || (EEditorType = {}));
|
|
10393
10394
|
|
|
10394
10395
|
function requestSupportService(_a) {
|
|
@@ -17803,6 +17804,8 @@ var EPopupBranding;
|
|
|
17803
17804
|
var ListPopupModel = /** @class */ (function () {
|
|
17804
17805
|
function ListPopupModel(params) {
|
|
17805
17806
|
this.id = params.id;
|
|
17807
|
+
this.list_id = params.list_id;
|
|
17808
|
+
this.popup_id = params.popup_id;
|
|
17806
17809
|
this.account_id = params.account_id;
|
|
17807
17810
|
this.name = params.name;
|
|
17808
17811
|
this.description = params.description;
|
|
@@ -2,6 +2,8 @@ import { TDeleteApiResource } from "../../types";
|
|
|
2
2
|
import { EPopupBranding, EPopupDisplayFrequency, TPopupContent, TPopupModel, TPopupTargeting, TPopupTrigger, TPopupUser } from "./types";
|
|
3
3
|
export declare class ListPopupModel {
|
|
4
4
|
id: string;
|
|
5
|
+
list_id: number;
|
|
6
|
+
popup_id?: string;
|
|
5
7
|
readonly account_id: number;
|
|
6
8
|
name: string | null;
|
|
7
9
|
description: string | null;
|