@wix/auto_sdk_blog_categories 1.0.21 → 1.0.23

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.
@@ -195,6 +195,9 @@ function createCategory(payload) {
195
195
  method: "POST",
196
196
  methodFqn: "com.wixpress.npm.communities.platformized.blog.v3.CategoryService.CreateCategory",
197
197
  packageName: PACKAGE_NAME,
198
+ migrationOptions: {
199
+ optInTransformResponse: true
200
+ },
198
201
  url: resolveComWixpressNpmCommunitiesPlatformizedBlogV3CategoryServiceUrl(
199
202
  { protoPath: "/v3/categories", data: serializedData, host }
200
203
  ),
@@ -247,6 +250,9 @@ function updateCategory(payload) {
247
250
  method: "PATCH",
248
251
  methodFqn: "com.wixpress.npm.communities.platformized.blog.v3.CategoryService.UpdateCategory",
249
252
  packageName: PACKAGE_NAME,
253
+ migrationOptions: {
254
+ optInTransformResponse: true
255
+ },
250
256
  url: resolveComWixpressNpmCommunitiesPlatformizedBlogV3CategoryServiceUrl(
251
257
  {
252
258
  protoPath: "/v3/categories/{category.id}",
@@ -283,6 +289,9 @@ function getCategory(payload) {
283
289
  method: "GET",
284
290
  methodFqn: "com.wixpress.npm.communities.platformized.blog.v3.CategoryService.GetCategory",
285
291
  packageName: PACKAGE_NAME,
292
+ migrationOptions: {
293
+ optInTransformResponse: true
294
+ },
286
295
  url: resolveComWixpressNpmCommunitiesPlatformizedBlogV3CategoryServiceUrl(
287
296
  { protoPath: "/v3/categories/{categoryId}", data: payload, host }
288
297
  ),
@@ -315,6 +324,9 @@ function getCategoryBySlug(payload) {
315
324
  method: "GET",
316
325
  methodFqn: "com.wixpress.npm.communities.platformized.blog.v3.CategoryService.GetCategoryBySlug",
317
326
  packageName: PACKAGE_NAME,
327
+ migrationOptions: {
328
+ optInTransformResponse: true
329
+ },
318
330
  url: resolveComWixpressNpmCommunitiesPlatformizedBlogV3CategoryServiceUrl(
319
331
  { protoPath: "/v3/categories/slugs/{slug}", data: payload, host }
320
332
  ),
@@ -347,6 +359,9 @@ function listCategories(payload) {
347
359
  method: "GET",
348
360
  methodFqn: "com.wixpress.npm.communities.platformized.blog.v3.CategoryService.ListCategories",
349
361
  packageName: PACKAGE_NAME,
362
+ migrationOptions: {
363
+ optInTransformResponse: true
364
+ },
350
365
  url: resolveComWixpressNpmCommunitiesPlatformizedBlogV3CategoryServiceUrl(
351
366
  { protoPath: "/v3/categories", data: payload, host }
352
367
  ),
@@ -379,6 +394,9 @@ function queryCategories(payload) {
379
394
  method: "POST",
380
395
  methodFqn: "com.wixpress.npm.communities.platformized.blog.v3.CategoryService.QueryCategories",
381
396
  packageName: PACKAGE_NAME,
397
+ migrationOptions: {
398
+ optInTransformResponse: true
399
+ },
382
400
  url: resolveComWixpressNpmCommunitiesPlatformizedBlogV3CategoryServiceUrl(
383
401
  { protoPath: "/v3/categories/query", data: payload, host }
384
402
  ),
@@ -411,6 +429,9 @@ function deleteCategory(payload) {
411
429
  method: "DELETE",
412
430
  methodFqn: "com.wixpress.npm.communities.platformized.blog.v3.CategoryService.DeleteCategory",
413
431
  packageName: PACKAGE_NAME,
432
+ migrationOptions: {
433
+ optInTransformResponse: true
434
+ },
414
435
  url: resolveComWixpressNpmCommunitiesPlatformizedBlogV3CategoryServiceUrl(
415
436
  { protoPath: "/v3/categories/{categoryId}", data: payload, host }
416
437
  ),