@wix/auto_sdk_events_notifications 1.0.41 → 1.0.42

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.
@@ -170,6 +170,9 @@ function triggerNotification(payload) {
170
170
  method: "POST",
171
171
  methodFqn: "wix.events.notifications.v2.NotificationService.TriggerNotification",
172
172
  packageName: PACKAGE_NAME,
173
+ migrationOptions: {
174
+ optInTransformResponse: true
175
+ },
173
176
  url: resolveWixEventsNotificationsV2NotificationServiceUrl({
174
177
  protoPath: "/v2/notifications/trigger",
175
178
  data: payload,
@@ -188,6 +191,9 @@ function resolveNotificationConfig(payload) {
188
191
  method: "GET",
189
192
  methodFqn: "wix.events.notifications.v2.NotificationConfigManagement.ResolveNotificationConfig",
190
193
  packageName: PACKAGE_NAME,
194
+ migrationOptions: {
195
+ optInTransformResponse: true
196
+ },
191
197
  url: resolveWixEventsNotificationsV2NotificationConfigManagementUrl({
192
198
  protoPath: "/v2/notification-configs/resolve/{notificationConfigId}",
193
199
  data: payload,
@@ -228,6 +234,9 @@ function upsertNotificationConfig(payload) {
228
234
  method: "POST",
229
235
  methodFqn: "wix.events.notifications.v2.NotificationConfigManagement.UpsertNotificationConfig",
230
236
  packageName: PACKAGE_NAME,
237
+ migrationOptions: {
238
+ optInTransformResponse: true
239
+ },
231
240
  url: resolveWixEventsNotificationsV2NotificationConfigManagementUrl({
232
241
  protoPath: "/v2/notification-configs/{notificationConfig.id}",
233
242
  data: serializedData,