@wix/auto_sdk_crm_contacts 1.0.1046 → 1.0.1048
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.js +16 -3
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +1 -8
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.mjs +16 -3
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +1 -8
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.js +16 -3
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +1 -8
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.mjs +16 -3
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +1 -8
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -2095,8 +2095,6 @@ interface ContactCreatedEnvelope {
|
|
|
2095
2095
|
* @permissionScopeId SCOPE.DC-CONTACTS.READ-CONTACTS
|
|
2096
2096
|
* @permissionScope Read Members and Contacts - all read permissions
|
|
2097
2097
|
* @permissionScopeId SCOPE.DC-CONTACTS-MEGA.READ-MEMBERS-CONTACTS
|
|
2098
|
-
* @permissionScope Manage Restaurants - all permissions
|
|
2099
|
-
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
2100
2098
|
* @permissionScope Manage Contacts
|
|
2101
2099
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-CONTACTS
|
|
2102
2100
|
* @permissionScope Set Up Automations
|
|
@@ -2128,8 +2126,6 @@ interface ContactDeletedEnvelope {
|
|
|
2128
2126
|
* @permissionScopeId SCOPE.DC-CONTACTS.READ-CONTACTS
|
|
2129
2127
|
* @permissionScope Read Members and Contacts - all read permissions
|
|
2130
2128
|
* @permissionScopeId SCOPE.DC-CONTACTS-MEGA.READ-MEMBERS-CONTACTS
|
|
2131
|
-
* @permissionScope Manage Restaurants - all permissions
|
|
2132
|
-
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
2133
2129
|
* @permissionScope Manage Contacts
|
|
2134
2130
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-CONTACTS
|
|
2135
2131
|
* @permissionScope Set Up Automations
|
|
@@ -2159,8 +2155,6 @@ interface ContactMergedEnvelope {
|
|
|
2159
2155
|
* @permissionScopeId SCOPE.DC-CONTACTS.READ-CONTACTS
|
|
2160
2156
|
* @permissionScope Read Members and Contacts - all read permissions
|
|
2161
2157
|
* @permissionScopeId SCOPE.DC-CONTACTS-MEGA.READ-MEMBERS-CONTACTS
|
|
2162
|
-
* @permissionScope Manage Restaurants - all permissions
|
|
2163
|
-
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
2164
2158
|
* @permissionScope Manage Contacts
|
|
2165
2159
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-CONTACTS
|
|
2166
2160
|
* @permissionScope Set Up Automations
|
|
@@ -2177,6 +2171,7 @@ declare function onContactMerged(handler: (event: ContactMergedEnvelope) => void
|
|
|
2177
2171
|
interface ContactUpdatedEnvelope {
|
|
2178
2172
|
entity: Contact;
|
|
2179
2173
|
metadata: EventMetadata;
|
|
2174
|
+
modifiedFields: Record<string, any>;
|
|
2180
2175
|
}
|
|
2181
2176
|
/**
|
|
2182
2177
|
* Triggered when a contact is updated.
|
|
@@ -2190,8 +2185,6 @@ interface ContactUpdatedEnvelope {
|
|
|
2190
2185
|
* @permissionScopeId SCOPE.DC-CONTACTS.READ-CONTACTS
|
|
2191
2186
|
* @permissionScope Read Members and Contacts - all read permissions
|
|
2192
2187
|
* @permissionScopeId SCOPE.DC-CONTACTS-MEGA.READ-MEMBERS-CONTACTS
|
|
2193
|
-
* @permissionScope Manage Restaurants - all permissions
|
|
2194
|
-
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
2195
2188
|
* @permissionScope Manage Contacts
|
|
2196
2189
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-CONTACTS
|
|
2197
2190
|
* @permissionScope Set Up Automations
|