@wix/auto_sdk_crm_contacts 1.0.626 → 1.0.628
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/build/cjs/index.d.ts +4 -4
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.d.mts +4 -4
- package/build/es/index.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +4 -4
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/es/index.d.mts +4 -4
- package/build/internal/es/index.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.d.ts
CHANGED
|
@@ -210,21 +210,21 @@ declare const getContact: MaybeContext<BuildRESTFunction<typeof getContact$1> &
|
|
|
210
210
|
/**
|
|
211
211
|
* Triggered when a contact is created.
|
|
212
212
|
*/
|
|
213
|
-
declare const onContactCreated: BuildEventDefinition<typeof onContactCreated$1
|
|
213
|
+
declare const onContactCreated: BuildEventDefinition<typeof onContactCreated$1> & typeof onContactCreated$1;
|
|
214
214
|
/**
|
|
215
215
|
* Triggered when a contact is deleted.
|
|
216
216
|
*
|
|
217
217
|
* If a contact is deleted as part of a merge, the `originatedFrom` property is sent as `merge`.
|
|
218
218
|
* Otherwise, `originatedFrom` isn't returned.
|
|
219
219
|
*/
|
|
220
|
-
declare const onContactDeleted: BuildEventDefinition<typeof onContactDeleted$1
|
|
220
|
+
declare const onContactDeleted: BuildEventDefinition<typeof onContactDeleted$1> & typeof onContactDeleted$1;
|
|
221
221
|
/**
|
|
222
222
|
* Triggered when one or more source contacts are merged into a target contact.
|
|
223
223
|
*/
|
|
224
|
-
declare const onContactMerged: BuildEventDefinition<typeof onContactMerged$1
|
|
224
|
+
declare const onContactMerged: BuildEventDefinition<typeof onContactMerged$1> & typeof onContactMerged$1;
|
|
225
225
|
/**
|
|
226
226
|
* Triggered when a contact is updated.
|
|
227
227
|
*/
|
|
228
|
-
declare const onContactUpdated: BuildEventDefinition<typeof onContactUpdated$1
|
|
228
|
+
declare const onContactUpdated: BuildEventDefinition<typeof onContactUpdated$1> & typeof onContactUpdated$1;
|
|
229
229
|
|
|
230
230
|
export { Contact, ContactCreatedEnvelope, ContactDeletedEnvelope, ContactInfo, ContactMergedEnvelope, ContactUpdatedEnvelope, ContactsQueryBuilder, CreateContactApplicationErrors, CreateContactOptions, CreateContactResponse, DeleteContactApplicationErrors, GetContactApplicationErrors, GetContactOptions, LabelContactApplicationErrors, LabelContactResponse, MergeContactsApplicationErrors, MergeContactsOptions, MergeContactsResponse, QueryContactsOptions, UnlabelContactApplicationErrors, UnlabelContactResponse, UpdateContactApplicationErrors, UpdateContactOptions, UpdateContactResponse, createContact, deleteContact, getContact, labelContact, mergeContacts, onContactCreated, onContactDeleted, onContactMerged, onContactUpdated, queryContacts, unlabelContact, updateContact };
|