@cakemail-org/ui-components-v2 2.2.100 → 2.2.102
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 +8 -0
- package/dist/cjs/models/customDomains/index.d.ts +2 -1
- package/dist/cjs/models/customDomains/types.d.ts +6 -0
- package/dist/esm/index.js +9 -1
- package/dist/esm/models/customDomains/index.d.ts +2 -1
- package/dist/esm/models/customDomains/types.d.ts +6 -0
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -12202,12 +12202,20 @@ exports.EIngressRouteStatus = void 0;
|
|
|
12202
12202
|
EIngressRouteStatus["missing"] = "missing";
|
|
12203
12203
|
EIngressRouteStatus["present"] = "present";
|
|
12204
12204
|
})(exports.EIngressRouteStatus || (exports.EIngressRouteStatus = {}));
|
|
12205
|
+
exports.EDnsStatus = void 0;
|
|
12206
|
+
(function (EDnsStatus) {
|
|
12207
|
+
EDnsStatus["pending"] = "pending";
|
|
12208
|
+
EDnsStatus["ok"] = "ok";
|
|
12209
|
+
EDnsStatus["failed"] = "failed";
|
|
12210
|
+
})(exports.EDnsStatus || (exports.EDnsStatus = {}));
|
|
12205
12211
|
|
|
12206
12212
|
var CustomDomainModel = /** @class */ (function () {
|
|
12207
12213
|
function CustomDomainModel(params) {
|
|
12214
|
+
var _a;
|
|
12208
12215
|
this.id = params.id;
|
|
12209
12216
|
this.account_id = params.account_id;
|
|
12210
12217
|
this.domain = params.domain;
|
|
12218
|
+
this.dns_status = (_a = params.dns_status) !== null && _a !== void 0 ? _a : exports.EDnsStatus.pending;
|
|
12211
12219
|
this.certificate_status = params.certificate_status;
|
|
12212
12220
|
this.ingress_route_status = params.ingress_route_status;
|
|
12213
12221
|
this.ready = params.ready;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { TDeleteApiResource } from "../../types";
|
|
2
|
-
import { ECertificateStatus, EIngressRouteStatus, TCustomDomainModel, TCustomDomainVerificationPayload } from "./types";
|
|
2
|
+
import { ECertificateStatus, EDnsStatus, EIngressRouteStatus, TCustomDomainModel, TCustomDomainVerificationPayload } from "./types";
|
|
3
3
|
export declare class CustomDomainModel {
|
|
4
4
|
id: string;
|
|
5
5
|
account_id: number;
|
|
6
6
|
domain: string;
|
|
7
|
+
dns_status: EDnsStatus;
|
|
7
8
|
certificate_status: ECertificateStatus;
|
|
8
9
|
ingress_route_status: EIngressRouteStatus;
|
|
9
10
|
ready: boolean;
|
|
@@ -10,6 +10,11 @@ export declare enum EIngressRouteStatus {
|
|
|
10
10
|
missing = "missing",
|
|
11
11
|
present = "present"
|
|
12
12
|
}
|
|
13
|
+
export declare enum EDnsStatus {
|
|
14
|
+
pending = "pending",
|
|
15
|
+
ok = "ok",
|
|
16
|
+
failed = "failed"
|
|
17
|
+
}
|
|
13
18
|
export type TCustomDomainDnsCname = {
|
|
14
19
|
hostname: string;
|
|
15
20
|
point_to: string;
|
|
@@ -26,6 +31,7 @@ export type TCustomDomainModel = {
|
|
|
26
31
|
id: string;
|
|
27
32
|
account_id: number;
|
|
28
33
|
domain: string;
|
|
34
|
+
dns_status?: EDnsStatus;
|
|
29
35
|
certificate_status: ECertificateStatus;
|
|
30
36
|
ingress_route_status: EIngressRouteStatus;
|
|
31
37
|
ready: boolean;
|
package/dist/esm/index.js
CHANGED
|
@@ -12182,12 +12182,20 @@ var EIngressRouteStatus;
|
|
|
12182
12182
|
EIngressRouteStatus["missing"] = "missing";
|
|
12183
12183
|
EIngressRouteStatus["present"] = "present";
|
|
12184
12184
|
})(EIngressRouteStatus || (EIngressRouteStatus = {}));
|
|
12185
|
+
var EDnsStatus;
|
|
12186
|
+
(function (EDnsStatus) {
|
|
12187
|
+
EDnsStatus["pending"] = "pending";
|
|
12188
|
+
EDnsStatus["ok"] = "ok";
|
|
12189
|
+
EDnsStatus["failed"] = "failed";
|
|
12190
|
+
})(EDnsStatus || (EDnsStatus = {}));
|
|
12185
12191
|
|
|
12186
12192
|
var CustomDomainModel = /** @class */ (function () {
|
|
12187
12193
|
function CustomDomainModel(params) {
|
|
12194
|
+
var _a;
|
|
12188
12195
|
this.id = params.id;
|
|
12189
12196
|
this.account_id = params.account_id;
|
|
12190
12197
|
this.domain = params.domain;
|
|
12198
|
+
this.dns_status = (_a = params.dns_status) !== null && _a !== void 0 ? _a : EDnsStatus.pending;
|
|
12191
12199
|
this.certificate_status = params.certificate_status;
|
|
12192
12200
|
this.ingress_route_status = params.ingress_route_status;
|
|
12193
12201
|
this.ready = params.ready;
|
|
@@ -20121,4 +20129,4 @@ var UsersFactory = /** @class */ (function () {
|
|
|
20121
20129
|
return UsersFactory;
|
|
20122
20130
|
}());
|
|
20123
20131
|
|
|
20124
|
-
export { AccountModel, AccountsFactory, ActionBarContainer, ActionBarContainerHandler, AssetManager, AutomationModel, AutomationsFactory, Avatar, BillingFactory, BrandWrapper, BrandsFactory, Button, ButtonMenu, CampaignModel, CampaignsFactory, Checkbox, Chip, CircularProgress, CodeInput, ColManager, ColorTextField, CommonFormModel, ContactModel, ContactsFactory, ContentSectionContainer, CountryDropdown, CustomDomainModel, CustomDomainsFactory, CustomerModel, DataTable, DataTableHead, DataTableRow, DateCalendar, DatePicker, DateTimeCalendar, DateTimePicker, Dialog, DialogActions, DialogHandler, DialogTitle, Divider, Drawer, DrawerHandler, DropMenu, Dropdown, EApiLanguages, EAssetManagerMatchType, ECampaignStatuses, ECertificateStatus, EEMailSummaryStatuses, EEditorType, EEmailAttachementTypes, EEmailLogType, EEmailLogTypeParam, EEmailProviders, EEmailStatuses, EEmailSummaryEngagement, EEvents, EIngressRouteStatus, EListAttributeType, EMethods, EOperatorTypes, EPageBranding, EPartialInfoPool, EPopupBranding, EPopupBrowserType, EPopupCloseButtonPosition, EPopupDeviceType, EPopupDisplayFrequency, EPopupPosition, EPopupTriggerType, EStorageType, ETaskType, ElementContains, Email, EmailAPIFactory, EmptyContent, EnhancedFormModel, FileUpload, FilterBar, FormModel, FormsFactory, FullBar, GenericWrapper, GenericWrapperContext, GroupedActions, Header, Icon, IconPill, InformationGroup, InlineTextEdit, LinearProgress, Link, ListCampaignModel, ListModel, ListPageModel, ListPopupModel, ListTemplateModel, ListsFactory, LoadingContainer, LocationTextField, Logo, MD5, MetricCard, Modal, ModalHandler, ModalHeading, Overlay, OverlayHandler, OverlayHeading, PageModel, PagesFactory, PhoneTextField, PopupModel, PopupsFactory, Radio, ResourceEdit, Search, SenderModel, SendersFactory, SideMenu, SideMenuContainer, SideMenuItem, SubNav, SummaryEnhancedFormModel, SuppressedEmailsFactory, SystemEmailsFactory, SystemEmailsModel, TagsFactory, TasksFactory, TemplateModel, TemplatesFactory, TextField, TimePicker, TimeSelector, Toggle, TopMenu, Typography, UserModel, UsersFactory, acceptListPolicy, addInterestsToContactsOfList, addPartialInformation, addSuppressedEmail, addToImpersonificationTree, amIImpersonating, amILoggedInService, archiveCampaign, areAllPropertiesEmpty, buildMUITheme, callApi, camelCase, camelToSnakeCase, cancelCampaign, capitalizeFirstLetter, cleanPostHogId, clearImpersonificationTree, clearStorage, copyToClipboard, createAccount, createBrand, createCampaign, createCampaignLogsExports, createCampaignsReportsExport, createContactsExport, createCustomDomain, createForm, createPage, createPopup, createSender, createSuppressedEmailExport, createTemplate, deepMergeObject, deleteAccount, deleteAnyAutomation, deleteAutomation, deleteCampaign, deleteCampaignsReportsExport, deleteContact, deleteCustomDomain, deleteForm, deleteList, deletePage, deletePartialInformation, deletePopup, deleteSender, deleteStorageItem, deleteSuppressedEmail, deleteTaskService, deleteTemplate, deleteUser, deleteWorkflow, descendingComparator, disableForm, disablePage, disablePopup, domainHasValidCertificateService, downloadCampaignLogExport, downloadCampaignsReportsExport, downloadContactsExport, downloadListLogExport, downloadSuppressedEmailExport, emptyAccountAddress, emptyAccountLimits, enableForm, enablePage, enablePopup, enrichBrand, enrichOrganization, enrichProfile, eventCondition, eventIdentify, eventLogout, fetchRetry, fetchRoute, findNestedProperty, formatNumber, getAccount, getAccountMetadata, getAccountReport, getAdjustedBillingCycle, getAllAutomationStats, getAutomation, getAutomationEmailContent, getAutomationExecutionsCount, getAutomationStats, getBeeTokenService, getBestLocalMatch, getBrand, getBrandService, getBrandUrl, getCalendarFormat, getCampaign, getCampaignLinks, getCampaignLinksReport, getCampaignLogs, getCampaignLogsExports, getCampaignReport, getCampaignRevisions, getCampaignsReportsExport, getComparator, getContactsExport, getCustomDomain, getCustomerProfile, getDate, getDomainFromEmail, getDomainsFromEmails, getDomainsService, getEmail, getEmailActivitySummary, getEmailReport, getEndOfDate, getForm, getHashQueryWithoutHistory, getIconSize, getList, getListLogs, getListReport, getNestedProperty, getPage, getPopup, getPropertyValue, getSender, getStartOfDate, getStorage, getSuppressedEmailExport, getTColor, getTaskService, getTemplate, getUnixTime, getUrlQueryParam, getUser, getUtmCookies, googlePlacesMapper, hasDecimal, impersonateService, initFieldValidation, initPostHog, isColorLight, isDomainValidService, isPublicEmailProviderService, isSimpleType, isValidEmail, isValidString, isValidUrl, lisTEmailTags, listAccounts, listAutomations, listCampaigns, listCampaignsReportsExports, listContacts, listCustomDomains, listDkimService, listEmailLogs, listForms, listList, listListAttributes, listListInterests, listPages, listPopups, listSenders, listSuppressedEmails, listSystemEmails, listTasksService, listTemplates, listUsers, listWorkflows, logOutService, loginService, miliToSecond, modelSet, modelToJson, originalBrand, patchAccountDomainsService, patchForm, popImpersonificationTree, postMessage, publishForm, publishPage, publishPopup, reScheduleCampaign, removeEmptyProperties, removeInterestsFromContactsOfList, removeQueryParams, removeTrailingChar, renderCampaign, renderEmail, renderForm, renderPage, renderPopup, renderPublicHtmlForm, renderTemplate, requestSupportService, resendEmail, resendVerificationEmail, resumeCampaign, saveList, scheduleCampaign, searchCustomerProfiles, sendCampaignTest, setBrandHeadElements, setStorage, shareTemplate, splitArray, splitObject, stableSort, startPromisePool, suspendAccount, suspendCampaign, tagContact, tagsContactsOfList, trackEvent, truncateEmail, truncateText, uiKitConfig, unArchiveCampaign, unScheduleCampaign, unSuspendAccount, unshareTemplate, unsubscribeContact, untagContact, untagContactsOfList, updateAccount, updateAndClearUrlParams, updateAnyAutomation, updateAutomation, updateCampaign, updatePage, updatePopup, updateSystemEmails, updateTemplate, updateUser, updateWorkflow, validateColor, validateEmail, validateGenericInput, validateUrl, verifyCustomDomain, verifyTrackingCnamesService, wait, whiteLabelBrand, whoAmi };
|
|
20132
|
+
export { AccountModel, AccountsFactory, ActionBarContainer, ActionBarContainerHandler, AssetManager, AutomationModel, AutomationsFactory, Avatar, BillingFactory, BrandWrapper, BrandsFactory, Button, ButtonMenu, CampaignModel, CampaignsFactory, Checkbox, Chip, CircularProgress, CodeInput, ColManager, ColorTextField, CommonFormModel, ContactModel, ContactsFactory, ContentSectionContainer, CountryDropdown, CustomDomainModel, CustomDomainsFactory, CustomerModel, DataTable, DataTableHead, DataTableRow, DateCalendar, DatePicker, DateTimeCalendar, DateTimePicker, Dialog, DialogActions, DialogHandler, DialogTitle, Divider, Drawer, DrawerHandler, DropMenu, Dropdown, EApiLanguages, EAssetManagerMatchType, ECampaignStatuses, ECertificateStatus, EDnsStatus, EEMailSummaryStatuses, EEditorType, EEmailAttachementTypes, EEmailLogType, EEmailLogTypeParam, EEmailProviders, EEmailStatuses, EEmailSummaryEngagement, EEvents, EIngressRouteStatus, EListAttributeType, EMethods, EOperatorTypes, EPageBranding, EPartialInfoPool, EPopupBranding, EPopupBrowserType, EPopupCloseButtonPosition, EPopupDeviceType, EPopupDisplayFrequency, EPopupPosition, EPopupTriggerType, EStorageType, ETaskType, ElementContains, Email, EmailAPIFactory, EmptyContent, EnhancedFormModel, FileUpload, FilterBar, FormModel, FormsFactory, FullBar, GenericWrapper, GenericWrapperContext, GroupedActions, Header, Icon, IconPill, InformationGroup, InlineTextEdit, LinearProgress, Link, ListCampaignModel, ListModel, ListPageModel, ListPopupModel, ListTemplateModel, ListsFactory, LoadingContainer, LocationTextField, Logo, MD5, MetricCard, Modal, ModalHandler, ModalHeading, Overlay, OverlayHandler, OverlayHeading, PageModel, PagesFactory, PhoneTextField, PopupModel, PopupsFactory, Radio, ResourceEdit, Search, SenderModel, SendersFactory, SideMenu, SideMenuContainer, SideMenuItem, SubNav, SummaryEnhancedFormModel, SuppressedEmailsFactory, SystemEmailsFactory, SystemEmailsModel, TagsFactory, TasksFactory, TemplateModel, TemplatesFactory, TextField, TimePicker, TimeSelector, Toggle, TopMenu, Typography, UserModel, UsersFactory, acceptListPolicy, addInterestsToContactsOfList, addPartialInformation, addSuppressedEmail, addToImpersonificationTree, amIImpersonating, amILoggedInService, archiveCampaign, areAllPropertiesEmpty, buildMUITheme, callApi, camelCase, camelToSnakeCase, cancelCampaign, capitalizeFirstLetter, cleanPostHogId, clearImpersonificationTree, clearStorage, copyToClipboard, createAccount, createBrand, createCampaign, createCampaignLogsExports, createCampaignsReportsExport, createContactsExport, createCustomDomain, createForm, createPage, createPopup, createSender, createSuppressedEmailExport, createTemplate, deepMergeObject, deleteAccount, deleteAnyAutomation, deleteAutomation, deleteCampaign, deleteCampaignsReportsExport, deleteContact, deleteCustomDomain, deleteForm, deleteList, deletePage, deletePartialInformation, deletePopup, deleteSender, deleteStorageItem, deleteSuppressedEmail, deleteTaskService, deleteTemplate, deleteUser, deleteWorkflow, descendingComparator, disableForm, disablePage, disablePopup, domainHasValidCertificateService, downloadCampaignLogExport, downloadCampaignsReportsExport, downloadContactsExport, downloadListLogExport, downloadSuppressedEmailExport, emptyAccountAddress, emptyAccountLimits, enableForm, enablePage, enablePopup, enrichBrand, enrichOrganization, enrichProfile, eventCondition, eventIdentify, eventLogout, fetchRetry, fetchRoute, findNestedProperty, formatNumber, getAccount, getAccountMetadata, getAccountReport, getAdjustedBillingCycle, getAllAutomationStats, getAutomation, getAutomationEmailContent, getAutomationExecutionsCount, getAutomationStats, getBeeTokenService, getBestLocalMatch, getBrand, getBrandService, getBrandUrl, getCalendarFormat, getCampaign, getCampaignLinks, getCampaignLinksReport, getCampaignLogs, getCampaignLogsExports, getCampaignReport, getCampaignRevisions, getCampaignsReportsExport, getComparator, getContactsExport, getCustomDomain, getCustomerProfile, getDate, getDomainFromEmail, getDomainsFromEmails, getDomainsService, getEmail, getEmailActivitySummary, getEmailReport, getEndOfDate, getForm, getHashQueryWithoutHistory, getIconSize, getList, getListLogs, getListReport, getNestedProperty, getPage, getPopup, getPropertyValue, getSender, getStartOfDate, getStorage, getSuppressedEmailExport, getTColor, getTaskService, getTemplate, getUnixTime, getUrlQueryParam, getUser, getUtmCookies, googlePlacesMapper, hasDecimal, impersonateService, initFieldValidation, initPostHog, isColorLight, isDomainValidService, isPublicEmailProviderService, isSimpleType, isValidEmail, isValidString, isValidUrl, lisTEmailTags, listAccounts, listAutomations, listCampaigns, listCampaignsReportsExports, listContacts, listCustomDomains, listDkimService, listEmailLogs, listForms, listList, listListAttributes, listListInterests, listPages, listPopups, listSenders, listSuppressedEmails, listSystemEmails, listTasksService, listTemplates, listUsers, listWorkflows, logOutService, loginService, miliToSecond, modelSet, modelToJson, originalBrand, patchAccountDomainsService, patchForm, popImpersonificationTree, postMessage, publishForm, publishPage, publishPopup, reScheduleCampaign, removeEmptyProperties, removeInterestsFromContactsOfList, removeQueryParams, removeTrailingChar, renderCampaign, renderEmail, renderForm, renderPage, renderPopup, renderPublicHtmlForm, renderTemplate, requestSupportService, resendEmail, resendVerificationEmail, resumeCampaign, saveList, scheduleCampaign, searchCustomerProfiles, sendCampaignTest, setBrandHeadElements, setStorage, shareTemplate, splitArray, splitObject, stableSort, startPromisePool, suspendAccount, suspendCampaign, tagContact, tagsContactsOfList, trackEvent, truncateEmail, truncateText, uiKitConfig, unArchiveCampaign, unScheduleCampaign, unSuspendAccount, unshareTemplate, unsubscribeContact, untagContact, untagContactsOfList, updateAccount, updateAndClearUrlParams, updateAnyAutomation, updateAutomation, updateCampaign, updatePage, updatePopup, updateSystemEmails, updateTemplate, updateUser, updateWorkflow, validateColor, validateEmail, validateGenericInput, validateUrl, verifyCustomDomain, verifyTrackingCnamesService, wait, whiteLabelBrand, whoAmi };
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { TDeleteApiResource } from "../../types";
|
|
2
|
-
import { ECertificateStatus, EIngressRouteStatus, TCustomDomainModel, TCustomDomainVerificationPayload } from "./types";
|
|
2
|
+
import { ECertificateStatus, EDnsStatus, EIngressRouteStatus, TCustomDomainModel, TCustomDomainVerificationPayload } from "./types";
|
|
3
3
|
export declare class CustomDomainModel {
|
|
4
4
|
id: string;
|
|
5
5
|
account_id: number;
|
|
6
6
|
domain: string;
|
|
7
|
+
dns_status: EDnsStatus;
|
|
7
8
|
certificate_status: ECertificateStatus;
|
|
8
9
|
ingress_route_status: EIngressRouteStatus;
|
|
9
10
|
ready: boolean;
|
|
@@ -10,6 +10,11 @@ export declare enum EIngressRouteStatus {
|
|
|
10
10
|
missing = "missing",
|
|
11
11
|
present = "present"
|
|
12
12
|
}
|
|
13
|
+
export declare enum EDnsStatus {
|
|
14
|
+
pending = "pending",
|
|
15
|
+
ok = "ok",
|
|
16
|
+
failed = "failed"
|
|
17
|
+
}
|
|
13
18
|
export type TCustomDomainDnsCname = {
|
|
14
19
|
hostname: string;
|
|
15
20
|
point_to: string;
|
|
@@ -26,6 +31,7 @@ export type TCustomDomainModel = {
|
|
|
26
31
|
id: string;
|
|
27
32
|
account_id: number;
|
|
28
33
|
domain: string;
|
|
34
|
+
dns_status?: EDnsStatus;
|
|
29
35
|
certificate_status: ECertificateStatus;
|
|
30
36
|
ingress_route_status: EIngressRouteStatus;
|
|
31
37
|
ready: boolean;
|