@wix/crm_contacts
Advanced tools
Comparing version 1.0.48 to 1.0.49
@@ -23,3 +23,3 @@ export interface Contact { | ||
*/ | ||
createdDate?: Date; | ||
createdDate?: Date | null; | ||
/** | ||
@@ -29,3 +29,3 @@ * Date and time the contact was last updated. | ||
*/ | ||
updatedDate?: Date; | ||
updatedDate?: Date | null; | ||
/** | ||
@@ -79,3 +79,3 @@ * Details about the contact's last action in the site. | ||
/** Date and time of the last action. */ | ||
activityDate?: Date; | ||
activityDate?: Date | null; | ||
/** | ||
@@ -214,3 +214,3 @@ * Contact's last action in the site. | ||
*/ | ||
urlExpirationDate?: Date; | ||
urlExpirationDate?: Date | null; | ||
} | ||
@@ -584,3 +584,3 @@ export interface ContactInfo { | ||
/** Signup date */ | ||
signupDate?: Date; | ||
signupDate?: Date | null; | ||
/** Login email */ | ||
@@ -647,5 +647,5 @@ email?: string | null; | ||
/** Last time the member logged in to the website */ | ||
lastWebLogin?: Date; | ||
lastWebLogin?: Date | null; | ||
/** Last time the member logged in to one of the mobile apps */ | ||
lastMobileLogin?: Date; | ||
lastMobileLogin?: Date | null; | ||
/** List of mobile apps that the member has ever logged in to */ | ||
@@ -680,3 +680,3 @@ mobileAppNames?: string[]; | ||
/** Date and time the contact was updated with the email subscription or deliverability status. */ | ||
updatedDate?: Date; | ||
updatedDate?: Date | null; | ||
} | ||
@@ -691,3 +691,3 @@ export interface ContactPhoneSubscriptionUpdated { | ||
/** Date and time the contact was updated with the SMS subscription status. */ | ||
updatedDate?: Date; | ||
updatedDate?: Date | null; | ||
} | ||
@@ -723,3 +723,3 @@ /** | ||
/** Activity date. */ | ||
activityDate?: Date; | ||
activityDate?: Date | null; | ||
/** Activity translation key. */ | ||
@@ -1544,3 +1544,3 @@ activityTranslationKey?: string; | ||
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */ | ||
eventTime?: Date; | ||
eventTime?: Date | null; | ||
/** | ||
@@ -1576,3 +1576,3 @@ * Whether the event was triggered as a result of a privacy regulation application | ||
export interface RestoreInfo { | ||
deletedDate?: Date; | ||
deletedDate?: Date | null; | ||
} | ||
@@ -1579,0 +1579,0 @@ export interface EntityUpdatedEvent { |
@@ -8,10 +8,10 @@ import { createContact as publicCreateContact, updateContact as publicUpdateContact, mergeContacts as publicMergeContacts, deleteContact as publicDeleteContact, labelContact as publicLabelContact, unlabelContact as publicUnlabelContact, queryContacts as publicQueryContacts, getContact as publicGetContact, } from './contacts-v4-contact-contacts.public'; | ||
import { onContactDeleted as publicOnContactDeleted } from './contacts-v4-contact-contacts.public'; | ||
export const createContact = createRESTModule(publicCreateContact); | ||
export const updateContact = createRESTModule(publicUpdateContact); | ||
export const mergeContacts = createRESTModule(publicMergeContacts); | ||
export const deleteContact = createRESTModule(publicDeleteContact); | ||
export const labelContact = createRESTModule(publicLabelContact); | ||
export const unlabelContact = createRESTModule(publicUnlabelContact); | ||
export const queryContacts = createRESTModule(publicQueryContacts); | ||
export const getContact = createRESTModule(publicGetContact); | ||
export const createContact = /*#__PURE__*/ createRESTModule(publicCreateContact); | ||
export const updateContact = /*#__PURE__*/ createRESTModule(publicUpdateContact); | ||
export const mergeContacts = /*#__PURE__*/ createRESTModule(publicMergeContacts); | ||
export const deleteContact = /*#__PURE__*/ createRESTModule(publicDeleteContact); | ||
export const labelContact = /*#__PURE__*/ createRESTModule(publicLabelContact); | ||
export const unlabelContact = /*#__PURE__*/ createRESTModule(publicUnlabelContact); | ||
export const queryContacts = /*#__PURE__*/ createRESTModule(publicQueryContacts); | ||
export const getContact = /*#__PURE__*/ createRESTModule(publicGetContact); | ||
export { publicOnContactCreated }; | ||
@@ -18,0 +18,0 @@ /** |
@@ -23,3 +23,3 @@ export interface Contact { | ||
*/ | ||
createdDate?: Date; | ||
createdDate?: Date | null; | ||
/** | ||
@@ -29,3 +29,3 @@ * Date and time the contact was last updated. | ||
*/ | ||
updatedDate?: Date; | ||
updatedDate?: Date | null; | ||
/** | ||
@@ -79,3 +79,3 @@ * Details about the contact's last action in the site. | ||
/** Date and time of the last action. */ | ||
activityDate?: Date; | ||
activityDate?: Date | null; | ||
/** | ||
@@ -214,3 +214,3 @@ * Contact's last action in the site. | ||
*/ | ||
urlExpirationDate?: Date; | ||
urlExpirationDate?: Date | null; | ||
} | ||
@@ -584,3 +584,3 @@ export interface ContactInfo { | ||
/** Signup date */ | ||
signupDate?: Date; | ||
signupDate?: Date | null; | ||
/** Login email */ | ||
@@ -647,5 +647,5 @@ email?: string | null; | ||
/** Last time the member logged in to the website */ | ||
lastWebLogin?: Date; | ||
lastWebLogin?: Date | null; | ||
/** Last time the member logged in to one of the mobile apps */ | ||
lastMobileLogin?: Date; | ||
lastMobileLogin?: Date | null; | ||
/** List of mobile apps that the member has ever logged in to */ | ||
@@ -680,3 +680,3 @@ mobileAppNames?: string[]; | ||
/** Date and time the contact was updated with the email subscription or deliverability status. */ | ||
updatedDate?: Date; | ||
updatedDate?: Date | null; | ||
} | ||
@@ -691,3 +691,3 @@ export interface ContactPhoneSubscriptionUpdated { | ||
/** Date and time the contact was updated with the SMS subscription status. */ | ||
updatedDate?: Date; | ||
updatedDate?: Date | null; | ||
} | ||
@@ -723,3 +723,3 @@ /** | ||
/** Activity date. */ | ||
activityDate?: Date; | ||
activityDate?: Date | null; | ||
/** Activity translation key. */ | ||
@@ -1544,3 +1544,3 @@ activityTranslationKey?: string; | ||
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */ | ||
eventTime?: Date; | ||
eventTime?: Date | null; | ||
/** | ||
@@ -1576,3 +1576,3 @@ * Whether the event was triggered as a result of a privacy regulation application | ||
export interface RestoreInfo { | ||
deletedDate?: Date; | ||
deletedDate?: Date | null; | ||
} | ||
@@ -1579,0 +1579,0 @@ export interface EntityUpdatedEvent { |
{ | ||
"name": "@wix/crm_contacts", | ||
"version": "1.0.48", | ||
"version": "1.0.49", | ||
"publishConfig": { | ||
@@ -46,3 +46,3 @@ "registry": "https://registry.npmjs.org/", | ||
}, | ||
"falconPackageHash": "5123e9a9ad7c69e1f1616e6160c2305958f198df1f959c48fc794ead" | ||
"falconPackageHash": "fd2688d742a2cdc711afb984a221bfc6768f3b162e647a4a34911977" | ||
} |
@@ -23,3 +23,3 @@ interface Contact$1 { | ||
*/ | ||
createdDate?: Date; | ||
createdDate?: Date | null; | ||
/** | ||
@@ -29,3 +29,3 @@ * Date and time the contact was last updated. | ||
*/ | ||
updatedDate?: Date; | ||
updatedDate?: Date | null; | ||
/** | ||
@@ -79,3 +79,3 @@ * Details about the contact's last action in the site. | ||
/** Date and time of the last action. */ | ||
activityDate?: Date; | ||
activityDate?: Date | null; | ||
/** | ||
@@ -208,3 +208,3 @@ * Contact's last action in the site. | ||
*/ | ||
urlExpirationDate?: Date; | ||
urlExpirationDate?: Date | null; | ||
} | ||
@@ -935,3 +935,3 @@ interface ContactInfo$1 { | ||
*/ | ||
_createdDate?: Date; | ||
_createdDate?: Date | null; | ||
/** | ||
@@ -941,3 +941,3 @@ * Date and time the contact was last updated. | ||
*/ | ||
_updatedDate?: Date; | ||
_updatedDate?: Date | null; | ||
/** | ||
@@ -993,3 +993,3 @@ * Details about the contact's last action in the site. | ||
/** Date and time of the last action. */ | ||
activityDate?: Date; | ||
activityDate?: Date | null; | ||
/** */ | ||
@@ -996,0 +996,0 @@ activityType?: ContactActivityType; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
965673