@wix/auto_sdk_calendar_schedules 1.0.69 → 1.0.71

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.
@@ -108,6 +108,9 @@ function getSchedule(payload) {
108
108
  method: "GET",
109
109
  methodFqn: "wix.calendar.schedules.v3.SchedulesService.GetSchedule",
110
110
  packageName: PACKAGE_NAME,
111
+ migrationOptions: {
112
+ optInTransformResponse: true
113
+ },
111
114
  url: resolveWixCalendarSchedulesV3SchedulesServiceUrl({
112
115
  protoPath: "/v3/schedules/{scheduleId}",
113
116
  data: payload,
@@ -135,6 +138,9 @@ function querySchedules(payload) {
135
138
  method: "POST",
136
139
  methodFqn: "wix.calendar.schedules.v3.SchedulesService.QuerySchedules",
137
140
  packageName: PACKAGE_NAME,
141
+ migrationOptions: {
142
+ optInTransformResponse: true
143
+ },
138
144
  url: resolveWixCalendarSchedulesV3SchedulesServiceUrl({
139
145
  protoPath: "/v3/schedules/query",
140
146
  data: payload,
@@ -171,6 +177,9 @@ function createSchedule(payload) {
171
177
  method: "POST",
172
178
  methodFqn: "wix.calendar.schedules.v3.SchedulesService.CreateSchedule",
173
179
  packageName: PACKAGE_NAME,
180
+ migrationOptions: {
181
+ optInTransformResponse: true
182
+ },
174
183
  url: resolveWixCalendarSchedulesV3SchedulesServiceUrl({
175
184
  protoPath: "/v3/schedules",
176
185
  data: serializedData,
@@ -211,6 +220,9 @@ function updateSchedule(payload) {
211
220
  method: "PATCH",
212
221
  methodFqn: "wix.calendar.schedules.v3.SchedulesService.UpdateSchedule",
213
222
  packageName: PACKAGE_NAME,
223
+ migrationOptions: {
224
+ optInTransformResponse: true
225
+ },
214
226
  url: resolveWixCalendarSchedulesV3SchedulesServiceUrl({
215
227
  protoPath: "/v3/schedules/{schedule.id}",
216
228
  data: serializedData,
@@ -238,6 +250,9 @@ function cancelSchedule(payload) {
238
250
  method: "POST",
239
251
  methodFqn: "wix.calendar.schedules.v3.SchedulesService.CancelSchedule",
240
252
  packageName: PACKAGE_NAME,
253
+ migrationOptions: {
254
+ optInTransformResponse: true
255
+ },
241
256
  url: resolveWixCalendarSchedulesV3SchedulesServiceUrl({
242
257
  protoPath: "/v3/schedules/{scheduleId}/cancel",
243
258
  data: payload,