@wix/auto_sdk_crm_contacts 1.0.808 → 1.0.810

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.
@@ -172,6 +172,9 @@ function createContact(payload) {
172
172
  method: "POST",
173
173
  methodFqn: "com.wixpress.contacts.core.api.v4.ContactsServiceV4.CreateContact",
174
174
  packageName: PACKAGE_NAME,
175
+ migrationOptions: {
176
+ optInTransformResponse: true
177
+ },
175
178
  url: resolveComWixpressContactsCoreApiV4ContactsServiceV4Url({
176
179
  protoPath: "/v4/contacts",
177
180
  data: serializedData,
@@ -235,6 +238,9 @@ function updateContact(payload) {
235
238
  method: "PATCH",
236
239
  methodFqn: "com.wixpress.contacts.core.api.v4.ContactsServiceV4.UpdateContact",
237
240
  packageName: PACKAGE_NAME,
241
+ migrationOptions: {
242
+ optInTransformResponse: true
243
+ },
238
244
  url: resolveComWixpressContactsCoreApiV4ContactsServiceV4Url({
239
245
  protoPath: "/v4/contacts/{contactId}",
240
246
  data: serializedData,
@@ -281,6 +287,9 @@ function mergeContacts(payload) {
281
287
  method: "POST",
282
288
  methodFqn: "com.wixpress.contacts.core.api.v4.ContactsServiceV4.MergeContacts",
283
289
  packageName: PACKAGE_NAME,
290
+ migrationOptions: {
291
+ optInTransformResponse: true
292
+ },
284
293
  url: resolveComWixpressContactsCoreApiV4ContactsServiceV4Url({
285
294
  protoPath: "/v4/contacts/{targetContactId}/merge",
286
295
  data: payload,
@@ -327,6 +336,9 @@ function previewMergeContacts(payload) {
327
336
  method: "POST",
328
337
  methodFqn: "com.wixpress.contacts.core.api.v4.ContactsServiceV4.PreviewMergeContacts",
329
338
  packageName: PACKAGE_NAME,
339
+ migrationOptions: {
340
+ optInTransformResponse: true
341
+ },
330
342
  url: resolveComWixpressContactsCoreApiV4ContactsServiceV4Url({
331
343
  protoPath: "/v4/contacts/{targetContactId}/preview-merge",
332
344
  data: payload,
@@ -373,6 +385,9 @@ function deleteContact(payload) {
373
385
  method: "DELETE",
374
386
  methodFqn: "com.wixpress.contacts.core.api.v4.ContactsServiceV4.DeleteContact",
375
387
  packageName: PACKAGE_NAME,
388
+ migrationOptions: {
389
+ optInTransformResponse: true
390
+ },
376
391
  url: resolveComWixpressContactsCoreApiV4ContactsServiceV4Url({
377
392
  protoPath: "/v4/contacts/{contactId}",
378
393
  data: payload,
@@ -391,6 +406,9 @@ function labelContact(payload) {
391
406
  method: "POST",
392
407
  methodFqn: "com.wixpress.contacts.core.api.v4.ContactsServiceV4.LabelContact",
393
408
  packageName: PACKAGE_NAME,
409
+ migrationOptions: {
410
+ optInTransformResponse: true
411
+ },
394
412
  url: resolveComWixpressContactsCoreApiV4ContactsServiceV4Url({
395
413
  protoPath: "/v4/contacts/{contactId}/labels",
396
414
  data: payload,
@@ -437,6 +455,9 @@ function unlabelContact(payload) {
437
455
  method: "DELETE",
438
456
  methodFqn: "com.wixpress.contacts.core.api.v4.ContactsServiceV4.UnlabelContact",
439
457
  packageName: PACKAGE_NAME,
458
+ migrationOptions: {
459
+ optInTransformResponse: true
460
+ },
440
461
  url: resolveComWixpressContactsCoreApiV4ContactsServiceV4Url({
441
462
  protoPath: "/v4/contacts/{contactId}/labels",
442
463
  data: payload,
@@ -483,6 +504,9 @@ function listContacts(payload) {
483
504
  method: "GET",
484
505
  methodFqn: "com.wixpress.contacts.core.api.v4.ContactsServiceV4.ListContacts",
485
506
  packageName: PACKAGE_NAME,
507
+ migrationOptions: {
508
+ optInTransformResponse: true
509
+ },
486
510
  url: resolveComWixpressContactsCoreApiV4ContactsServiceV4Url({
487
511
  protoPath: "/v4/contacts",
488
512
  data: payload,
@@ -531,6 +555,9 @@ function queryContacts(payload) {
531
555
  method: "POST",
532
556
  methodFqn: "com.wixpress.contacts.core.api.v4.ContactsServiceV4.QueryContacts",
533
557
  packageName: PACKAGE_NAME,
558
+ migrationOptions: {
559
+ optInTransformResponse: true
560
+ },
534
561
  url: resolveComWixpressContactsCoreApiV4ContactsServiceV4Url({
535
562
  protoPath: "/v4/contacts/query",
536
563
  data: payload,
@@ -579,6 +606,9 @@ function listFacets(payload) {
579
606
  method: "GET",
580
607
  methodFqn: "com.wixpress.contacts.core.api.v4.ContactsServiceV4.ListFacets",
581
608
  packageName: PACKAGE_NAME,
609
+ migrationOptions: {
610
+ optInTransformResponse: true
611
+ },
582
612
  url: resolveComWixpressContactsCoreApiV4ContactsServiceV4Url({
583
613
  protoPath: "/v4/contacts/facets",
584
614
  data: payload,
@@ -597,6 +627,9 @@ function queryFacets(payload) {
597
627
  method: "POST",
598
628
  methodFqn: "com.wixpress.contacts.core.api.v4.ContactsServiceV4.QueryFacets",
599
629
  packageName: PACKAGE_NAME,
630
+ migrationOptions: {
631
+ optInTransformResponse: true
632
+ },
600
633
  url: resolveComWixpressContactsCoreApiV4ContactsServiceV4Url({
601
634
  protoPath: "/v4/contacts/facets/query",
602
635
  data: payload,
@@ -615,6 +648,9 @@ function bulkDeleteContacts(payload) {
615
648
  method: "POST",
616
649
  methodFqn: "com.wixpress.contacts.core.api.v4.ContactsServiceV4.BulkDeleteContacts",
617
650
  packageName: PACKAGE_NAME,
651
+ migrationOptions: {
652
+ optInTransformResponse: true
653
+ },
618
654
  url: resolveComWixpressContactsCoreApiV4ContactsServiceV4Url({
619
655
  protoPath: "/v4/bulk/contacts/delete",
620
656
  data: payload,
@@ -650,6 +686,9 @@ function bulkUpdateContacts(payload) {
650
686
  method: "POST",
651
687
  methodFqn: "com.wixpress.contacts.core.api.v4.ContactsServiceV4.BulkUpdateContacts",
652
688
  packageName: PACKAGE_NAME,
689
+ migrationOptions: {
690
+ optInTransformResponse: true
691
+ },
653
692
  url: resolveComWixpressContactsCoreApiV4ContactsServiceV4Url({
654
693
  protoPath: "/v4/bulk/contacts/update",
655
694
  data: serializedData,
@@ -668,6 +707,9 @@ function bulkLabelAndUnlabelContacts(payload) {
668
707
  method: "POST",
669
708
  methodFqn: "com.wixpress.contacts.core.api.v4.ContactsServiceV4.BulkLabelAndUnlabelContacts",
670
709
  packageName: PACKAGE_NAME,
710
+ migrationOptions: {
711
+ optInTransformResponse: true
712
+ },
671
713
  url: resolveComWixpressContactsCoreApiV4ContactsServiceV4Url({
672
714
  protoPath: "/v4/bulk/contacts/add-remove-labels",
673
715
  data: payload,
@@ -686,6 +728,9 @@ function getContact(payload) {
686
728
  method: "GET",
687
729
  methodFqn: "com.wixpress.contacts.core.api.v4.ContactsServiceV4.GetContact",
688
730
  packageName: PACKAGE_NAME,
731
+ migrationOptions: {
732
+ optInTransformResponse: true
733
+ },
689
734
  url: resolveComWixpressContactsCoreApiV4ContactsServiceV4Url({
690
735
  protoPath: "/v4/contacts/{id}",
691
736
  data: payload,