@wix/auto_sdk_crm_contacts 1.0.1045 → 1.0.1047
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 +9 -0
- 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 +9 -0
- 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 +9 -0
- 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 +9 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -2101,6 +2101,8 @@ interface ContactCreatedEnvelope {
|
|
|
2101
2101
|
* @permissionScopeId SCOPE.DC-CONTACTS.READ-CONTACTS
|
|
2102
2102
|
* @permissionScope Read Members and Contacts - all read permissions
|
|
2103
2103
|
* @permissionScopeId SCOPE.DC-CONTACTS-MEGA.READ-MEMBERS-CONTACTS
|
|
2104
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
2105
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
2104
2106
|
* @permissionScope Manage Contacts
|
|
2105
2107
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-CONTACTS
|
|
2106
2108
|
* @permissionScope Set Up Automations
|
|
@@ -2132,6 +2134,8 @@ interface ContactDeletedEnvelope {
|
|
|
2132
2134
|
* @permissionScopeId SCOPE.DC-CONTACTS.READ-CONTACTS
|
|
2133
2135
|
* @permissionScope Read Members and Contacts - all read permissions
|
|
2134
2136
|
* @permissionScopeId SCOPE.DC-CONTACTS-MEGA.READ-MEMBERS-CONTACTS
|
|
2137
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
2138
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
2135
2139
|
* @permissionScope Manage Contacts
|
|
2136
2140
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-CONTACTS
|
|
2137
2141
|
* @permissionScope Set Up Automations
|
|
@@ -2161,6 +2165,8 @@ interface ContactMergedEnvelope {
|
|
|
2161
2165
|
* @permissionScopeId SCOPE.DC-CONTACTS.READ-CONTACTS
|
|
2162
2166
|
* @permissionScope Read Members and Contacts - all read permissions
|
|
2163
2167
|
* @permissionScopeId SCOPE.DC-CONTACTS-MEGA.READ-MEMBERS-CONTACTS
|
|
2168
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
2169
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
2164
2170
|
* @permissionScope Manage Contacts
|
|
2165
2171
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-CONTACTS
|
|
2166
2172
|
* @permissionScope Set Up Automations
|
|
@@ -2177,6 +2183,7 @@ declare function onContactMerged(handler: (event: ContactMergedEnvelope) => void
|
|
|
2177
2183
|
interface ContactUpdatedEnvelope {
|
|
2178
2184
|
entity: Contact;
|
|
2179
2185
|
metadata: EventMetadata;
|
|
2186
|
+
modifiedFields: Record<string, any>;
|
|
2180
2187
|
}
|
|
2181
2188
|
/**
|
|
2182
2189
|
* Triggered when a contact is updated.
|
|
@@ -2190,6 +2197,8 @@ interface ContactUpdatedEnvelope {
|
|
|
2190
2197
|
* @permissionScopeId SCOPE.DC-CONTACTS.READ-CONTACTS
|
|
2191
2198
|
* @permissionScope Read Members and Contacts - all read permissions
|
|
2192
2199
|
* @permissionScopeId SCOPE.DC-CONTACTS-MEGA.READ-MEMBERS-CONTACTS
|
|
2200
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
2201
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
2193
2202
|
* @permissionScope Manage Contacts
|
|
2194
2203
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-CONTACTS
|
|
2195
2204
|
* @permissionScope Set Up Automations
|