@cakemail-org/ui-components-v2 2.1.39 → 2.1.41
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/factories/campaigns/index.d.ts +4 -0
- package/dist/cjs/factories/index.d.ts +1 -0
- package/dist/cjs/index.js +137 -0
- package/dist/cjs/services/index.d.ts +1 -0
- package/dist/esm/factories/campaigns/index.d.ts +4 -0
- package/dist/esm/factories/index.d.ts +1 -0
- package/dist/esm/index.js +131 -1
- package/dist/esm/services/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -23,5 +23,9 @@ export declare class CampaignsFactory {
|
|
|
23
23
|
static downloadReportExport({ exportId }: {
|
|
24
24
|
exportId: string;
|
|
25
25
|
}): Promise<TGenericReturn<TTaskDownload>>;
|
|
26
|
+
static downloadCampaignLogExport({ exportId, campaignId }: {
|
|
27
|
+
exportId: string;
|
|
28
|
+
campaignId: number;
|
|
29
|
+
}): Promise<TGenericReturn<TTaskDownload>>;
|
|
26
30
|
}
|
|
27
31
|
export * from "./types";
|
package/dist/cjs/index.js
CHANGED
|
@@ -10435,6 +10435,63 @@ function getSender(_a) {
|
|
|
10435
10435
|
});
|
|
10436
10436
|
}
|
|
10437
10437
|
|
|
10438
|
+
function addSuppressedEmail(_a) {
|
|
10439
|
+
var email = _a.email;
|
|
10440
|
+
return callApi({
|
|
10441
|
+
url: uiKitConfig.GATEWAY_PROXY + "/suppressed-emails",
|
|
10442
|
+
fetchOptions: {
|
|
10443
|
+
method: exports.EMethods.post,
|
|
10444
|
+
body: { email: email }
|
|
10445
|
+
}
|
|
10446
|
+
});
|
|
10447
|
+
}
|
|
10448
|
+
function listSuppressedEmails(_a) {
|
|
10449
|
+
var options = __rest(_a, []);
|
|
10450
|
+
return callApi({
|
|
10451
|
+
url: uiKitConfig.GATEWAY_PROXY + "/suppressed-emails",
|
|
10452
|
+
query: camelCase(options),
|
|
10453
|
+
fetchOptions: {
|
|
10454
|
+
method: exports.EMethods.get,
|
|
10455
|
+
}
|
|
10456
|
+
});
|
|
10457
|
+
}
|
|
10458
|
+
function deleteSuppressedEmail(_a) {
|
|
10459
|
+
var email = _a.email;
|
|
10460
|
+
return callApi({
|
|
10461
|
+
url: uiKitConfig.GATEWAY_PROXY + "/suppressed-emails",
|
|
10462
|
+
fetchOptions: {
|
|
10463
|
+
method: exports.EMethods.delete,
|
|
10464
|
+
body: { email: email }
|
|
10465
|
+
}
|
|
10466
|
+
});
|
|
10467
|
+
}
|
|
10468
|
+
function createSuppressedEmailExport() {
|
|
10469
|
+
return callApi({
|
|
10470
|
+
url: uiKitConfig.GATEWAY_PROXY + "/reports/suppressed-emails-exports",
|
|
10471
|
+
fetchOptions: {
|
|
10472
|
+
method: exports.EMethods.post
|
|
10473
|
+
}
|
|
10474
|
+
});
|
|
10475
|
+
}
|
|
10476
|
+
function getSuppressedEmailExport(_a) {
|
|
10477
|
+
var exportId = _a.exportId;
|
|
10478
|
+
return callApi({
|
|
10479
|
+
url: uiKitConfig.GATEWAY_PROXY + "/reports/suppressed-emails-exports/" + exportId,
|
|
10480
|
+
fetchOptions: {
|
|
10481
|
+
method: exports.EMethods.get,
|
|
10482
|
+
}
|
|
10483
|
+
});
|
|
10484
|
+
}
|
|
10485
|
+
function downloadSuppressedEmailExport(_a) {
|
|
10486
|
+
var exportId = _a.exportId;
|
|
10487
|
+
return callApi({
|
|
10488
|
+
url: uiKitConfig.GATEWAY_PROXY + "/reports/suppressed-emails-exports/".concat(exportId, "/download"),
|
|
10489
|
+
fetchOptions: {
|
|
10490
|
+
method: exports.EMethods.get,
|
|
10491
|
+
}
|
|
10492
|
+
});
|
|
10493
|
+
}
|
|
10494
|
+
|
|
10438
10495
|
function listSystemEmails(_a) {
|
|
10439
10496
|
return callApi({
|
|
10440
10497
|
url: uiKitConfig.GATEWAY_PROXY + "/brands/default/system-emails",
|
|
@@ -17085,6 +17142,14 @@ var CampaignsFactory = /** @class */ (function () {
|
|
|
17085
17142
|
});
|
|
17086
17143
|
});
|
|
17087
17144
|
};
|
|
17145
|
+
CampaignsFactory.downloadCampaignLogExport = function (_a) {
|
|
17146
|
+
return __awaiter(this, arguments, void 0, function (_b) {
|
|
17147
|
+
var exportId = _b.exportId, campaignId = _b.campaignId;
|
|
17148
|
+
return __generator(this, function (_c) {
|
|
17149
|
+
return [2 /*return*/, downloadCampaignLogExport({ exportId: exportId, campaignId: campaignId })];
|
|
17150
|
+
});
|
|
17151
|
+
});
|
|
17152
|
+
};
|
|
17088
17153
|
return CampaignsFactory;
|
|
17089
17154
|
}());
|
|
17090
17155
|
|
|
@@ -17860,6 +17925,71 @@ var SupportFactory = /** @class */ (function () {
|
|
|
17860
17925
|
return SupportFactory;
|
|
17861
17926
|
}());
|
|
17862
17927
|
|
|
17928
|
+
var SuppressedEmailsFactory = /** @class */ (function () {
|
|
17929
|
+
function SuppressedEmailsFactory() {
|
|
17930
|
+
}
|
|
17931
|
+
SuppressedEmailsFactory.list = function (_a) {
|
|
17932
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
17933
|
+
var options = __rest(_a, []);
|
|
17934
|
+
return __generator(this, function (_b) {
|
|
17935
|
+
return [2 /*return*/, listSuppressedEmails(__assign({}, options))];
|
|
17936
|
+
});
|
|
17937
|
+
});
|
|
17938
|
+
};
|
|
17939
|
+
SuppressedEmailsFactory.add = function (_a) {
|
|
17940
|
+
return __awaiter(this, arguments, void 0, function (_b) {
|
|
17941
|
+
var email = _b.email;
|
|
17942
|
+
return __generator(this, function (_c) {
|
|
17943
|
+
return [2 /*return*/, addSuppressedEmail({ email: email }).then(function (data) {
|
|
17944
|
+
trackEvent(exports.EEvents.SUPPRESSED_EMAIL_ADDED, { email: email });
|
|
17945
|
+
return data;
|
|
17946
|
+
})];
|
|
17947
|
+
});
|
|
17948
|
+
});
|
|
17949
|
+
};
|
|
17950
|
+
SuppressedEmailsFactory.delete = function (_a) {
|
|
17951
|
+
return __awaiter(this, arguments, void 0, function (_b) {
|
|
17952
|
+
var email = _b.email;
|
|
17953
|
+
return __generator(this, function (_c) {
|
|
17954
|
+
return [2 /*return*/, deleteSuppressedEmail({ email: email }).then(function (data) {
|
|
17955
|
+
trackEvent(exports.EEvents.SUPPRESSED_EMAIL_DELETED, { email: email });
|
|
17956
|
+
return data;
|
|
17957
|
+
})];
|
|
17958
|
+
});
|
|
17959
|
+
});
|
|
17960
|
+
};
|
|
17961
|
+
SuppressedEmailsFactory.createExport = function () {
|
|
17962
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
17963
|
+
return __generator(this, function (_a) {
|
|
17964
|
+
return [2 /*return*/, createSuppressedEmailExport().then(function (data) {
|
|
17965
|
+
trackEvent(exports.EEvents.SUPPRESSED_EMAIL_EXPORT_CREATED);
|
|
17966
|
+
return data;
|
|
17967
|
+
})];
|
|
17968
|
+
});
|
|
17969
|
+
});
|
|
17970
|
+
};
|
|
17971
|
+
SuppressedEmailsFactory.getExport = function (_a) {
|
|
17972
|
+
return __awaiter(this, arguments, void 0, function (_b) {
|
|
17973
|
+
var exportId = _b.exportId;
|
|
17974
|
+
return __generator(this, function (_c) {
|
|
17975
|
+
return [2 /*return*/, getSuppressedEmailExport({ exportId: exportId })];
|
|
17976
|
+
});
|
|
17977
|
+
});
|
|
17978
|
+
};
|
|
17979
|
+
SuppressedEmailsFactory.downloadExport = function (_a) {
|
|
17980
|
+
return __awaiter(this, arguments, void 0, function (_b) {
|
|
17981
|
+
var exportId = _b.exportId;
|
|
17982
|
+
return __generator(this, function (_c) {
|
|
17983
|
+
return [2 /*return*/, downloadSuppressedEmailExport({ exportId: exportId }).then(function (data) {
|
|
17984
|
+
trackEvent(exports.EEvents.SUPPRESSED_EMAIL_EXPORT_DOWNLOAD, { exportId: exportId });
|
|
17985
|
+
return data;
|
|
17986
|
+
})];
|
|
17987
|
+
});
|
|
17988
|
+
});
|
|
17989
|
+
};
|
|
17990
|
+
return SuppressedEmailsFactory;
|
|
17991
|
+
}());
|
|
17992
|
+
|
|
17863
17993
|
var SystemEmailsFactory = /** @class */ (function () {
|
|
17864
17994
|
function SystemEmailsFactory() {
|
|
17865
17995
|
}
|
|
@@ -18176,6 +18306,7 @@ exports.SideMenuItem = SideMenuItem;
|
|
|
18176
18306
|
exports.SubNav = SubNav;
|
|
18177
18307
|
exports.SummaryEnhancedFormModel = SummaryEnhancedFormModel;
|
|
18178
18308
|
exports.SupportFactory = SupportFactory;
|
|
18309
|
+
exports.SuppressedEmailsFactory = SuppressedEmailsFactory;
|
|
18179
18310
|
exports.SystemEmailsFactory = SystemEmailsFactory;
|
|
18180
18311
|
exports.SystemEmailsModel = SystemEmailsModel;
|
|
18181
18312
|
exports.TagsFactory = TagsFactory;
|
|
@@ -18192,6 +18323,7 @@ exports.UserModel = UserModel;
|
|
|
18192
18323
|
exports.UsersFactory = UsersFactory;
|
|
18193
18324
|
exports.acceptListPolicy = acceptListPolicy;
|
|
18194
18325
|
exports.addPartialInformation = addPartialInformation;
|
|
18326
|
+
exports.addSuppressedEmail = addSuppressedEmail;
|
|
18195
18327
|
exports.addToImpersonificationTree = addToImpersonificationTree;
|
|
18196
18328
|
exports.amIImpersonating = amIImpersonating;
|
|
18197
18329
|
exports.amILoggedInService = amILoggedInService;
|
|
@@ -18213,6 +18345,7 @@ exports.createCampaign = createCampaign;
|
|
|
18213
18345
|
exports.createCampaignLogsExports = createCampaignLogsExports;
|
|
18214
18346
|
exports.createCampaignsReportsExport = createCampaignsReportsExport;
|
|
18215
18347
|
exports.createForm = createForm;
|
|
18348
|
+
exports.createSuppressedEmailExport = createSuppressedEmailExport;
|
|
18216
18349
|
exports.createTemplate = createTemplate;
|
|
18217
18350
|
exports.deepMergeObject = deepMergeObject;
|
|
18218
18351
|
exports.deleteCampaign = deleteCampaign;
|
|
@@ -18220,6 +18353,7 @@ exports.deleteCampaignsReportsExport = deleteCampaignsReportsExport;
|
|
|
18220
18353
|
exports.deleteForm = deleteForm;
|
|
18221
18354
|
exports.deletePartialInformation = deletePartialInformation;
|
|
18222
18355
|
exports.deleteStorageItem = deleteStorageItem;
|
|
18356
|
+
exports.deleteSuppressedEmail = deleteSuppressedEmail;
|
|
18223
18357
|
exports.deleteTaskService = deleteTaskService;
|
|
18224
18358
|
exports.deleteTemplate = deleteTemplate;
|
|
18225
18359
|
exports.descendingComparator = descendingComparator;
|
|
@@ -18228,6 +18362,7 @@ exports.downloadCampaignLogExport = downloadCampaignLogExport;
|
|
|
18228
18362
|
exports.downloadCampaignsReportsExport = downloadCampaignsReportsExport;
|
|
18229
18363
|
exports.downloadContactsExport = downloadContactsExport;
|
|
18230
18364
|
exports.downloadListLogExport = downloadListLogExport;
|
|
18365
|
+
exports.downloadSuppressedEmailExport = downloadSuppressedEmailExport;
|
|
18231
18366
|
exports.emptyAccountAddress = emptyAccountAddress;
|
|
18232
18367
|
exports.emptyAccountLimits = emptyAccountLimits;
|
|
18233
18368
|
exports.enableForm = enableForm;
|
|
@@ -18279,6 +18414,7 @@ exports.getPropertyValue = getPropertyValue;
|
|
|
18279
18414
|
exports.getSender = getSender;
|
|
18280
18415
|
exports.getStartOfDate = getStartOfDate;
|
|
18281
18416
|
exports.getStorage = getStorage;
|
|
18417
|
+
exports.getSuppressedEmailExport = getSuppressedEmailExport;
|
|
18282
18418
|
exports.getTColor = getTColor;
|
|
18283
18419
|
exports.getTaskService = getTaskService;
|
|
18284
18420
|
exports.getTemplate = getTemplate;
|
|
@@ -18308,6 +18444,7 @@ exports.listList = listList;
|
|
|
18308
18444
|
exports.listListAttributes = listListAttributes;
|
|
18309
18445
|
exports.listListInterests = listListInterests;
|
|
18310
18446
|
exports.listSenders = listSenders;
|
|
18447
|
+
exports.listSuppressedEmails = listSuppressedEmails;
|
|
18311
18448
|
exports.listSystemEmails = listSystemEmails;
|
|
18312
18449
|
exports.listTasksService = listTasksService;
|
|
18313
18450
|
exports.listTemplates = listTemplates;
|
|
@@ -23,5 +23,9 @@ export declare class CampaignsFactory {
|
|
|
23
23
|
static downloadReportExport({ exportId }: {
|
|
24
24
|
exportId: string;
|
|
25
25
|
}): Promise<TGenericReturn<TTaskDownload>>;
|
|
26
|
+
static downloadCampaignLogExport({ exportId, campaignId }: {
|
|
27
|
+
exportId: string;
|
|
28
|
+
campaignId: number;
|
|
29
|
+
}): Promise<TGenericReturn<TTaskDownload>>;
|
|
26
30
|
}
|
|
27
31
|
export * from "./types";
|
package/dist/esm/index.js
CHANGED
|
@@ -10415,6 +10415,63 @@ function getSender(_a) {
|
|
|
10415
10415
|
});
|
|
10416
10416
|
}
|
|
10417
10417
|
|
|
10418
|
+
function addSuppressedEmail(_a) {
|
|
10419
|
+
var email = _a.email;
|
|
10420
|
+
return callApi({
|
|
10421
|
+
url: uiKitConfig.GATEWAY_PROXY + "/suppressed-emails",
|
|
10422
|
+
fetchOptions: {
|
|
10423
|
+
method: EMethods.post,
|
|
10424
|
+
body: { email: email }
|
|
10425
|
+
}
|
|
10426
|
+
});
|
|
10427
|
+
}
|
|
10428
|
+
function listSuppressedEmails(_a) {
|
|
10429
|
+
var options = __rest(_a, []);
|
|
10430
|
+
return callApi({
|
|
10431
|
+
url: uiKitConfig.GATEWAY_PROXY + "/suppressed-emails",
|
|
10432
|
+
query: camelCase(options),
|
|
10433
|
+
fetchOptions: {
|
|
10434
|
+
method: EMethods.get,
|
|
10435
|
+
}
|
|
10436
|
+
});
|
|
10437
|
+
}
|
|
10438
|
+
function deleteSuppressedEmail(_a) {
|
|
10439
|
+
var email = _a.email;
|
|
10440
|
+
return callApi({
|
|
10441
|
+
url: uiKitConfig.GATEWAY_PROXY + "/suppressed-emails",
|
|
10442
|
+
fetchOptions: {
|
|
10443
|
+
method: EMethods.delete,
|
|
10444
|
+
body: { email: email }
|
|
10445
|
+
}
|
|
10446
|
+
});
|
|
10447
|
+
}
|
|
10448
|
+
function createSuppressedEmailExport() {
|
|
10449
|
+
return callApi({
|
|
10450
|
+
url: uiKitConfig.GATEWAY_PROXY + "/reports/suppressed-emails-exports",
|
|
10451
|
+
fetchOptions: {
|
|
10452
|
+
method: EMethods.post
|
|
10453
|
+
}
|
|
10454
|
+
});
|
|
10455
|
+
}
|
|
10456
|
+
function getSuppressedEmailExport(_a) {
|
|
10457
|
+
var exportId = _a.exportId;
|
|
10458
|
+
return callApi({
|
|
10459
|
+
url: uiKitConfig.GATEWAY_PROXY + "/reports/suppressed-emails-exports/" + exportId,
|
|
10460
|
+
fetchOptions: {
|
|
10461
|
+
method: EMethods.get,
|
|
10462
|
+
}
|
|
10463
|
+
});
|
|
10464
|
+
}
|
|
10465
|
+
function downloadSuppressedEmailExport(_a) {
|
|
10466
|
+
var exportId = _a.exportId;
|
|
10467
|
+
return callApi({
|
|
10468
|
+
url: uiKitConfig.GATEWAY_PROXY + "/reports/suppressed-emails-exports/".concat(exportId, "/download"),
|
|
10469
|
+
fetchOptions: {
|
|
10470
|
+
method: EMethods.get,
|
|
10471
|
+
}
|
|
10472
|
+
});
|
|
10473
|
+
}
|
|
10474
|
+
|
|
10418
10475
|
function listSystemEmails(_a) {
|
|
10419
10476
|
return callApi({
|
|
10420
10477
|
url: uiKitConfig.GATEWAY_PROXY + "/brands/default/system-emails",
|
|
@@ -17065,6 +17122,14 @@ var CampaignsFactory = /** @class */ (function () {
|
|
|
17065
17122
|
});
|
|
17066
17123
|
});
|
|
17067
17124
|
};
|
|
17125
|
+
CampaignsFactory.downloadCampaignLogExport = function (_a) {
|
|
17126
|
+
return __awaiter(this, arguments, void 0, function (_b) {
|
|
17127
|
+
var exportId = _b.exportId, campaignId = _b.campaignId;
|
|
17128
|
+
return __generator(this, function (_c) {
|
|
17129
|
+
return [2 /*return*/, downloadCampaignLogExport({ exportId: exportId, campaignId: campaignId })];
|
|
17130
|
+
});
|
|
17131
|
+
});
|
|
17132
|
+
};
|
|
17068
17133
|
return CampaignsFactory;
|
|
17069
17134
|
}());
|
|
17070
17135
|
|
|
@@ -17840,6 +17905,71 @@ var SupportFactory = /** @class */ (function () {
|
|
|
17840
17905
|
return SupportFactory;
|
|
17841
17906
|
}());
|
|
17842
17907
|
|
|
17908
|
+
var SuppressedEmailsFactory = /** @class */ (function () {
|
|
17909
|
+
function SuppressedEmailsFactory() {
|
|
17910
|
+
}
|
|
17911
|
+
SuppressedEmailsFactory.list = function (_a) {
|
|
17912
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
17913
|
+
var options = __rest(_a, []);
|
|
17914
|
+
return __generator(this, function (_b) {
|
|
17915
|
+
return [2 /*return*/, listSuppressedEmails(__assign({}, options))];
|
|
17916
|
+
});
|
|
17917
|
+
});
|
|
17918
|
+
};
|
|
17919
|
+
SuppressedEmailsFactory.add = function (_a) {
|
|
17920
|
+
return __awaiter(this, arguments, void 0, function (_b) {
|
|
17921
|
+
var email = _b.email;
|
|
17922
|
+
return __generator(this, function (_c) {
|
|
17923
|
+
return [2 /*return*/, addSuppressedEmail({ email: email }).then(function (data) {
|
|
17924
|
+
trackEvent(EEvents.SUPPRESSED_EMAIL_ADDED, { email: email });
|
|
17925
|
+
return data;
|
|
17926
|
+
})];
|
|
17927
|
+
});
|
|
17928
|
+
});
|
|
17929
|
+
};
|
|
17930
|
+
SuppressedEmailsFactory.delete = function (_a) {
|
|
17931
|
+
return __awaiter(this, arguments, void 0, function (_b) {
|
|
17932
|
+
var email = _b.email;
|
|
17933
|
+
return __generator(this, function (_c) {
|
|
17934
|
+
return [2 /*return*/, deleteSuppressedEmail({ email: email }).then(function (data) {
|
|
17935
|
+
trackEvent(EEvents.SUPPRESSED_EMAIL_DELETED, { email: email });
|
|
17936
|
+
return data;
|
|
17937
|
+
})];
|
|
17938
|
+
});
|
|
17939
|
+
});
|
|
17940
|
+
};
|
|
17941
|
+
SuppressedEmailsFactory.createExport = function () {
|
|
17942
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
17943
|
+
return __generator(this, function (_a) {
|
|
17944
|
+
return [2 /*return*/, createSuppressedEmailExport().then(function (data) {
|
|
17945
|
+
trackEvent(EEvents.SUPPRESSED_EMAIL_EXPORT_CREATED);
|
|
17946
|
+
return data;
|
|
17947
|
+
})];
|
|
17948
|
+
});
|
|
17949
|
+
});
|
|
17950
|
+
};
|
|
17951
|
+
SuppressedEmailsFactory.getExport = function (_a) {
|
|
17952
|
+
return __awaiter(this, arguments, void 0, function (_b) {
|
|
17953
|
+
var exportId = _b.exportId;
|
|
17954
|
+
return __generator(this, function (_c) {
|
|
17955
|
+
return [2 /*return*/, getSuppressedEmailExport({ exportId: exportId })];
|
|
17956
|
+
});
|
|
17957
|
+
});
|
|
17958
|
+
};
|
|
17959
|
+
SuppressedEmailsFactory.downloadExport = function (_a) {
|
|
17960
|
+
return __awaiter(this, arguments, void 0, function (_b) {
|
|
17961
|
+
var exportId = _b.exportId;
|
|
17962
|
+
return __generator(this, function (_c) {
|
|
17963
|
+
return [2 /*return*/, downloadSuppressedEmailExport({ exportId: exportId }).then(function (data) {
|
|
17964
|
+
trackEvent(EEvents.SUPPRESSED_EMAIL_EXPORT_DOWNLOAD, { exportId: exportId });
|
|
17965
|
+
return data;
|
|
17966
|
+
})];
|
|
17967
|
+
});
|
|
17968
|
+
});
|
|
17969
|
+
};
|
|
17970
|
+
return SuppressedEmailsFactory;
|
|
17971
|
+
}());
|
|
17972
|
+
|
|
17843
17973
|
var SystemEmailsFactory = /** @class */ (function () {
|
|
17844
17974
|
function SystemEmailsFactory() {
|
|
17845
17975
|
}
|
|
@@ -18068,4 +18198,4 @@ var UsersFactory = /** @class */ (function () {
|
|
|
18068
18198
|
return UsersFactory;
|
|
18069
18199
|
}());
|
|
18070
18200
|
|
|
18071
|
-
export { AccountModel, AccountsFactory, ActionBarContainer, ActionBarContainerHandler, AssetManager, AutomationsFactory, Avatar, BillingFactory, BrandWrapper, BrandsFactory, Button, ButtonMenu, CampaignModel, CampaignsFactory, Checkbox, Chip, CircularProgress, CodeInput, ColManager, ColorTextField, CommonFormModel, ContactModel, ContactsFactory, ContentSectionContainer, CopyToClipboard, CountryDropdown, CustomerModel, DataTable, DataTableHead, DataTableRow, DateCalendar, DatePicker, DateTimeCalendar, DateTimePicker, Dialog, DialogActions, DialogHandler, DialogTitle, Divider, Drawer, DrawerHandler, DropMenu, Dropdown, EApiLanguages, EAssetManagerMatchType, ECampaignStatuses, EEMailSummaryStatuses, EEditorType, EEmailAttachementTypes, EEmailLogType, EEmailLogTypeParam, EEmailProviders, EEmailSummaryEngagement, EEvents, EListAttributeType, EMethods, EOperatorTypes, EPartialInfoPool, EStorageType, ETaskType, ElementContains, Email, EmailAPIFactory, EmptyContent, EnhancedFormModel, FileUpload, FilterBar, FormModel, FormsFactory, FullBar, GenericWrapper, GenericWrapperContext, GroupedActions, Header, Icon, IconPill, InformationGroup, InlineTextEdit, LinearProgress, Link, ListCampaignModel, ListModel, ListTemplateModel, ListsFactory, LoadingContainer, LocationTextField, Logo, MD5, MetricCard, Modal, ModalHandler, ModalHeading, OverlayHandler, PhoneTextField, Radio, ResourceEdit, Search, SenderModel, SendersFactory, SideMenu, SideMenuContainer, SideMenuItem, SubNav, SummaryEnhancedFormModel, SupportFactory, SystemEmailsFactory, SystemEmailsModel, TagsFactory, TasksFactory, TemplateModel, TemplatesFactory, TextField, TimePicker, TimeSelector, Toggle, TopMenu, Typography, UserModel, UsersFactory, acceptListPolicy, addPartialInformation, addToImpersonificationTree, amIImpersonating, amILoggedInService, archiveCampaign, areAllPropertiesEmpty, buildMUITheme, callApi, camelCase, camelToSnakeCase, cancelCampaign, capitalizeFirstLetter, cleanPostHogId, clearImpersonificationTree, clearStorage, connectToZendeskSupportService, createAccount, createBrand, createCampaign, createCampaignLogsExports, createCampaignsReportsExport, createForm, createTemplate, deepMergeObject, deleteCampaign, deleteCampaignsReportsExport, deleteForm, deletePartialInformation, deleteStorageItem, deleteTaskService, deleteTemplate, descendingComparator, disableForm, downloadCampaignLogExport, downloadCampaignsReportsExport, downloadContactsExport, downloadListLogExport, emptyAccountAddress, emptyAccountLimits, enableForm, enrichBrand, enrichOrganization, enrichProfile, eventCondition, eventIdentify, eventLogout, fetchRetry, fetchRoute, findNestedProperty, formatNumber, getAccount, getAccountReport, getAdjustedBillingCycle, getBeeTokenService, getBestLocalMatch, getBrand, getBrandService, getBrandUrl, getCalendarFormat, getCampaign, getCampaignLinks, getCampaignLinksReport, getCampaignLogs, getCampaignLogsExports, getCampaignReport, getCampaignRevisions, getCampaignsReportsExport, getComparator, getCustomerProfile, getDate, getDomainFromEmail, getDomainsFromEmails, getDomainsService, getEmail, getEmailActivitySummary, getEmailReport, getEndOfDate, getForm, getHashQueryWithoutHistory, getIconSize, getList, getListLogs, getListReport, getNestedProperty, getPropertyValue, getSender, getStartOfDate, getStorage, getTColor, getTaskService, getTemplate, getUnixTime, getUrlQueryParam, getUser, getUtmCookies, googlePlacesMapper, hasDecimal, impersonateService, initFieldValidation, initPostHog, isColorLight, isDomainValidService, isSimpleType, isValidEmail, isValidString, isValidUrl, lisTEmailTags, listAccounts, listCampaigns, listCampaignsReportsExports, listContacts, listEmailLogs, listForms, listList, listListAttributes, listListInterests, listSenders, listSystemEmails, listTasksService, listTemplates, listUsers, logOutService, loginService, miliToSecond, modelSet, modelToJson, originalBrand, patchForm, popImpersonificationTree, postMessage, publishForm, reScheduleCampaign, removeEmptyProperties, removeQueryParams, removeTrailingChar, renderCampaign, renderForm, renderPublicHtmlForm, renderTemplate, requestSupportService, resumeCampaign, scheduleCampaign, searchCustomerProfiles, sendCampaignTest, setBrandHeadElements, setStorage, shareTemplate, splitArray, splitObject, stableSort, startPromisePool, suspendCampaign, trackEvent, truncateEmail, truncateText, uiKitConfig, unArchiveCampaign, unScheduleCampaign, unshareTemplate, updateAccount, updateAndClearUrlParams, updateCampaign, updateSystemEmails, updateTemplate, updateUser, validateColor, validateEmail, validateGenericInput, validateUrl, wait, whiteLabelBrand, whoAmi };
|
|
18201
|
+
export { AccountModel, AccountsFactory, ActionBarContainer, ActionBarContainerHandler, AssetManager, AutomationsFactory, Avatar, BillingFactory, BrandWrapper, BrandsFactory, Button, ButtonMenu, CampaignModel, CampaignsFactory, Checkbox, Chip, CircularProgress, CodeInput, ColManager, ColorTextField, CommonFormModel, ContactModel, ContactsFactory, ContentSectionContainer, CopyToClipboard, CountryDropdown, CustomerModel, DataTable, DataTableHead, DataTableRow, DateCalendar, DatePicker, DateTimeCalendar, DateTimePicker, Dialog, DialogActions, DialogHandler, DialogTitle, Divider, Drawer, DrawerHandler, DropMenu, Dropdown, EApiLanguages, EAssetManagerMatchType, ECampaignStatuses, EEMailSummaryStatuses, EEditorType, EEmailAttachementTypes, EEmailLogType, EEmailLogTypeParam, EEmailProviders, EEmailSummaryEngagement, EEvents, EListAttributeType, EMethods, EOperatorTypes, EPartialInfoPool, EStorageType, ETaskType, ElementContains, Email, EmailAPIFactory, EmptyContent, EnhancedFormModel, FileUpload, FilterBar, FormModel, FormsFactory, FullBar, GenericWrapper, GenericWrapperContext, GroupedActions, Header, Icon, IconPill, InformationGroup, InlineTextEdit, LinearProgress, Link, ListCampaignModel, ListModel, ListTemplateModel, ListsFactory, LoadingContainer, LocationTextField, Logo, MD5, MetricCard, Modal, ModalHandler, ModalHeading, OverlayHandler, PhoneTextField, Radio, ResourceEdit, Search, SenderModel, SendersFactory, SideMenu, SideMenuContainer, SideMenuItem, SubNav, SummaryEnhancedFormModel, SupportFactory, SuppressedEmailsFactory, SystemEmailsFactory, SystemEmailsModel, TagsFactory, TasksFactory, TemplateModel, TemplatesFactory, TextField, TimePicker, TimeSelector, Toggle, TopMenu, Typography, UserModel, UsersFactory, acceptListPolicy, addPartialInformation, addSuppressedEmail, addToImpersonificationTree, amIImpersonating, amILoggedInService, archiveCampaign, areAllPropertiesEmpty, buildMUITheme, callApi, camelCase, camelToSnakeCase, cancelCampaign, capitalizeFirstLetter, cleanPostHogId, clearImpersonificationTree, clearStorage, connectToZendeskSupportService, createAccount, createBrand, createCampaign, createCampaignLogsExports, createCampaignsReportsExport, createForm, createSuppressedEmailExport, createTemplate, deepMergeObject, deleteCampaign, deleteCampaignsReportsExport, deleteForm, deletePartialInformation, deleteStorageItem, deleteSuppressedEmail, deleteTaskService, deleteTemplate, descendingComparator, disableForm, downloadCampaignLogExport, downloadCampaignsReportsExport, downloadContactsExport, downloadListLogExport, downloadSuppressedEmailExport, emptyAccountAddress, emptyAccountLimits, enableForm, enrichBrand, enrichOrganization, enrichProfile, eventCondition, eventIdentify, eventLogout, fetchRetry, fetchRoute, findNestedProperty, formatNumber, getAccount, getAccountReport, getAdjustedBillingCycle, getBeeTokenService, getBestLocalMatch, getBrand, getBrandService, getBrandUrl, getCalendarFormat, getCampaign, getCampaignLinks, getCampaignLinksReport, getCampaignLogs, getCampaignLogsExports, getCampaignReport, getCampaignRevisions, getCampaignsReportsExport, getComparator, getCustomerProfile, getDate, getDomainFromEmail, getDomainsFromEmails, getDomainsService, getEmail, getEmailActivitySummary, getEmailReport, getEndOfDate, getForm, getHashQueryWithoutHistory, getIconSize, getList, getListLogs, getListReport, getNestedProperty, getPropertyValue, getSender, getStartOfDate, getStorage, getSuppressedEmailExport, getTColor, getTaskService, getTemplate, getUnixTime, getUrlQueryParam, getUser, getUtmCookies, googlePlacesMapper, hasDecimal, impersonateService, initFieldValidation, initPostHog, isColorLight, isDomainValidService, isSimpleType, isValidEmail, isValidString, isValidUrl, lisTEmailTags, listAccounts, listCampaigns, listCampaignsReportsExports, listContacts, listEmailLogs, listForms, listList, listListAttributes, listListInterests, listSenders, listSuppressedEmails, listSystemEmails, listTasksService, listTemplates, listUsers, logOutService, loginService, miliToSecond, modelSet, modelToJson, originalBrand, patchForm, popImpersonificationTree, postMessage, publishForm, reScheduleCampaign, removeEmptyProperties, removeQueryParams, removeTrailingChar, renderCampaign, renderForm, renderPublicHtmlForm, renderTemplate, requestSupportService, resumeCampaign, scheduleCampaign, searchCustomerProfiles, sendCampaignTest, setBrandHeadElements, setStorage, shareTemplate, splitArray, splitObject, stableSort, startPromisePool, suspendCampaign, trackEvent, truncateEmail, truncateText, uiKitConfig, unArchiveCampaign, unScheduleCampaign, unshareTemplate, updateAccount, updateAndClearUrlParams, updateCampaign, updateSystemEmails, updateTemplate, updateUser, validateColor, validateEmail, validateGenericInput, validateUrl, wait, whiteLabelBrand, whoAmi };
|