@wix/auto_sdk_fast-gallery_galleries 1.0.5 → 1.0.7

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.
@@ -81,6 +81,9 @@ function createGallery(payload) {
81
81
  method: "POST",
82
82
  methodFqn: "wix.fastgallery.gallery.v1.GalleryService.CreateGallery",
83
83
  packageName: PACKAGE_NAME,
84
+ migrationOptions: {
85
+ optInTransformResponse: true
86
+ },
84
87
  url: resolveWixFastgalleryGalleryV1GalleryServiceUrl({
85
88
  protoPath: "/v1/galleries",
86
89
  data: serializedData,
@@ -108,6 +111,9 @@ function getGallery(payload) {
108
111
  method: "GET",
109
112
  methodFqn: "wix.fastgallery.gallery.v1.GalleryService.GetGallery",
110
113
  packageName: PACKAGE_NAME,
114
+ migrationOptions: {
115
+ optInTransformResponse: true
116
+ },
111
117
  url: resolveWixFastgalleryGalleryV1GalleryServiceUrl({
112
118
  protoPath: "/v1/galleries/{galleryId}",
113
119
  data: payload,
@@ -135,6 +141,9 @@ function getGalleryByDraftGalleryId(payload) {
135
141
  method: "GET",
136
142
  methodFqn: "wix.fastgallery.gallery.v1.GalleryService.GetGalleryByDraftGalleryId",
137
143
  packageName: PACKAGE_NAME,
144
+ migrationOptions: {
145
+ optInTransformResponse: true
146
+ },
138
147
  url: resolveWixFastgalleryGalleryV1GalleryServiceUrl({
139
148
  protoPath: "/v1/galleries/draft-gallery-id/{draftGalleryId}",
140
149
  data: payload,
@@ -175,6 +184,9 @@ function updateGallery(payload) {
175
184
  method: "PATCH",
176
185
  methodFqn: "wix.fastgallery.gallery.v1.GalleryService.UpdateGallery",
177
186
  packageName: PACKAGE_NAME,
187
+ migrationOptions: {
188
+ optInTransformResponse: true
189
+ },
178
190
  url: resolveWixFastgalleryGalleryV1GalleryServiceUrl({
179
191
  protoPath: "/v1/galleries/{gallery.id}",
180
192
  data: serializedData,
@@ -202,6 +214,9 @@ function queryGalleries(payload) {
202
214
  method: "GET",
203
215
  methodFqn: "wix.fastgallery.gallery.v1.GalleryService.QueryGalleries",
204
216
  packageName: PACKAGE_NAME,
217
+ migrationOptions: {
218
+ optInTransformResponse: true
219
+ },
205
220
  url: resolveWixFastgalleryGalleryV1GalleryServiceUrl({
206
221
  protoPath: "/v1/galleries/query",
207
222
  data: payload,
@@ -240,6 +255,9 @@ function updateExtendedFields(payload) {
240
255
  method: "POST",
241
256
  methodFqn: "wix.fastgallery.gallery.v1.GalleryService.UpdateExtendedFields",
242
257
  packageName: PACKAGE_NAME,
258
+ migrationOptions: {
259
+ optInTransformResponse: true
260
+ },
243
261
  url: resolveWixFastgalleryGalleryV1GalleryServiceUrl({
244
262
  protoPath: "/v1/galleries/{id}/update-extended-fields",
245
263
  data: payload,
@@ -276,6 +294,9 @@ function bulkCreateGalleries(payload) {
276
294
  method: "POST",
277
295
  methodFqn: "wix.fastgallery.gallery.v1.GalleryService.BulkCreateGalleries",
278
296
  packageName: PACKAGE_NAME,
297
+ migrationOptions: {
298
+ optInTransformResponse: true
299
+ },
279
300
  url: resolveWixFastgalleryGalleryV1GalleryServiceUrl({
280
301
  protoPath: "/v1/bulk/galleries/create",
281
302
  data: serializedData,
@@ -316,6 +337,9 @@ function bulkUpdateGalleries(payload) {
316
337
  method: "POST",
317
338
  methodFqn: "wix.fastgallery.gallery.v1.GalleryService.BulkUpdateGalleries",
318
339
  packageName: PACKAGE_NAME,
340
+ migrationOptions: {
341
+ optInTransformResponse: true
342
+ },
319
343
  url: resolveWixFastgalleryGalleryV1GalleryServiceUrl({
320
344
  protoPath: "/v1/bulk/galleries/update",
321
345
  data: serializedData,
@@ -343,6 +367,9 @@ function bulkDeleteGalleries(payload) {
343
367
  method: "POST",
344
368
  methodFqn: "wix.fastgallery.gallery.v1.GalleryService.BulkDeleteGalleries",
345
369
  packageName: PACKAGE_NAME,
370
+ migrationOptions: {
371
+ optInTransformResponse: true
372
+ },
346
373
  url: resolveWixFastgalleryGalleryV1GalleryServiceUrl({
347
374
  protoPath: "/v1/bulk/galleries/delete",
348
375
  data: payload,
@@ -361,6 +388,9 @@ function getDeletedGallery(payload) {
361
388
  method: "GET",
362
389
  methodFqn: "wix.fastgallery.gallery.v1.GalleryService.GetDeletedGallery",
363
390
  packageName: PACKAGE_NAME,
391
+ migrationOptions: {
392
+ optInTransformResponse: true
393
+ },
364
394
  url: resolveWixFastgalleryGalleryV1GalleryServiceUrl({
365
395
  protoPath: "/v1/galleries/trash-bin/{galleryId}",
366
396
  data: payload,
@@ -388,6 +418,9 @@ function listDeletedGalleries(payload) {
388
418
  method: "GET",
389
419
  methodFqn: "wix.fastgallery.gallery.v1.GalleryService.ListDeletedGalleries",
390
420
  packageName: PACKAGE_NAME,
421
+ migrationOptions: {
422
+ optInTransformResponse: true
423
+ },
391
424
  url: resolveWixFastgalleryGalleryV1GalleryServiceUrl({
392
425
  protoPath: "/v1/galleries/trash-bin",
393
426
  data: payload,
@@ -415,6 +448,9 @@ function restoreGalleryFromTrashBin(payload) {
415
448
  method: "POST",
416
449
  methodFqn: "wix.fastgallery.gallery.v1.GalleryService.RestoreGalleryFromTrashBin",
417
450
  packageName: PACKAGE_NAME,
451
+ migrationOptions: {
452
+ optInTransformResponse: true
453
+ },
418
454
  url: resolveWixFastgalleryGalleryV1GalleryServiceUrl({
419
455
  protoPath: "/v1/galleries/trash-bin/{galleryId}/restore",
420
456
  data: payload,
@@ -442,6 +478,9 @@ function removeGalleryFromTrashBin(payload) {
442
478
  method: "DELETE",
443
479
  methodFqn: "wix.fastgallery.gallery.v1.GalleryService.RemoveGalleryFromTrashBin",
444
480
  packageName: PACKAGE_NAME,
481
+ migrationOptions: {
482
+ optInTransformResponse: true
483
+ },
445
484
  url: resolveWixFastgalleryGalleryV1GalleryServiceUrl({
446
485
  protoPath: "/v1/galleries/trash-bin/{galleryId}",
447
486
  data: payload,