@wix/auto_sdk_online-programs_participants 1.0.0 → 1.0.1

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.
@@ -285,6 +285,9 @@ function joinProgram(payload) {
285
285
  method: "POST",
286
286
  methodFqn: "wix.onlineprograms.participants.v3.ParticipantsService.JoinProgram",
287
287
  packageName: PACKAGE_NAME,
288
+ migrationOptions: {
289
+ optInTransformResponse: true
290
+ },
288
291
  url: resolveWixOnlineprogramsParticipantsV3ParticipantsServiceUrl({
289
292
  protoPath: "/v3/participants/join",
290
293
  data: payload,
@@ -317,6 +320,9 @@ function getParticipant(payload) {
317
320
  method: "GET",
318
321
  methodFqn: "wix.onlineprograms.participants.v3.ParticipantsService.GetParticipant",
319
322
  packageName: PACKAGE_NAME,
323
+ migrationOptions: {
324
+ optInTransformResponse: true
325
+ },
320
326
  url: resolveWixOnlineprogramsParticipantsV3ParticipantsServiceUrl({
321
327
  protoPath: "/v3/participants/{participantId}",
322
328
  data: payload,
@@ -349,6 +355,9 @@ function leaveProgram(payload) {
349
355
  method: "POST",
350
356
  methodFqn: "wix.onlineprograms.participants.v3.ParticipantsService.LeaveProgram",
351
357
  packageName: PACKAGE_NAME,
358
+ migrationOptions: {
359
+ optInTransformResponse: true
360
+ },
352
361
  url: resolveWixOnlineprogramsParticipantsV3ParticipantsServiceUrl({
353
362
  protoPath: "/v3/participants/{participantId}/leave",
354
363
  data: payload,
@@ -367,6 +376,9 @@ function queryParticipants(payload) {
367
376
  method: "POST",
368
377
  methodFqn: "wix.onlineprograms.participants.v3.ParticipantsService.QueryParticipants",
369
378
  packageName: PACKAGE_NAME,
379
+ migrationOptions: {
380
+ optInTransformResponse: true
381
+ },
370
382
  url: resolveWixOnlineprogramsParticipantsV3ParticipantsServiceUrl({
371
383
  protoPath: "/v3/participants/query",
372
384
  data: payload,
@@ -399,6 +411,9 @@ function getAccessStatus(payload) {
399
411
  method: "GET",
400
412
  methodFqn: "wix.onlineprograms.participants.v3.ParticipantsService.GetAccessStatus",
401
413
  packageName: PACKAGE_NAME,
414
+ migrationOptions: {
415
+ optInTransformResponse: true
416
+ },
402
417
  url: resolveWixOnlineprogramsParticipantsV3ParticipantsServiceUrl({
403
418
  protoPath: "/v3/participants/access",
404
419
  data: payload,
@@ -417,6 +432,9 @@ function applyCoupon(payload) {
417
432
  method: "POST",
418
433
  methodFqn: "wix.onlineprograms.participants.v3.ParticipantsService.ApplyCoupon",
419
434
  packageName: PACKAGE_NAME,
435
+ migrationOptions: {
436
+ optInTransformResponse: true
437
+ },
420
438
  url: resolveWixOnlineprogramsParticipantsV3ParticipantsServiceUrl({
421
439
  protoPath: "/v3/participants/{participantId}/coupons/{couponCode}/apply",
422
440
  data: payload,
@@ -445,6 +463,9 @@ function revertCoupon(payload) {
445
463
  method: "POST",
446
464
  methodFqn: "wix.onlineprograms.participants.v3.ParticipantsService.RevertCoupon",
447
465
  packageName: PACKAGE_NAME,
466
+ migrationOptions: {
467
+ optInTransformResponse: true
468
+ },
448
469
  url: resolveWixOnlineprogramsParticipantsV3ParticipantsServiceUrl({
449
470
  protoPath: "/v3/participants/{participantId}/coupons/{couponId}/revert",
450
471
  data: payload,
@@ -469,6 +490,9 @@ function bulkInviteToProgram(payload) {
469
490
  method: "POST",
470
491
  methodFqn: "wix.onlineprograms.participants.v3.ManageParticipantsService.BulkInviteToProgram",
471
492
  packageName: PACKAGE_NAME,
493
+ migrationOptions: {
494
+ optInTransformResponse: true
495
+ },
472
496
  url: resolveWixOnlineprogramsParticipantsV3ManageParticipantsServiceUrl({
473
497
  protoPath: "/v3/bulk/participants/invite",
474
498
  data: payload,
@@ -501,6 +525,9 @@ function bulkInviteAllToProgram(payload) {
501
525
  method: "POST",
502
526
  methodFqn: "wix.onlineprograms.participants.v3.ManageParticipantsService.BulkInviteAllToProgram",
503
527
  packageName: PACKAGE_NAME,
528
+ migrationOptions: {
529
+ optInTransformResponse: true
530
+ },
504
531
  url: resolveWixOnlineprogramsParticipantsV3ManageParticipantsServiceUrl({
505
532
  protoPath: "/v3/bulk/participants/invite-all",
506
533
  data: payload,
@@ -519,6 +546,9 @@ function bulkAddToProgram(payload) {
519
546
  method: "POST",
520
547
  methodFqn: "wix.onlineprograms.participants.v3.ManageParticipantsService.BulkAddToProgram",
521
548
  packageName: PACKAGE_NAME,
549
+ migrationOptions: {
550
+ optInTransformResponse: true
551
+ },
522
552
  url: resolveWixOnlineprogramsParticipantsV3ManageParticipantsServiceUrl({
523
553
  protoPath: "/v3/bulk/participants/add",
524
554
  data: payload,
@@ -551,6 +581,9 @@ function bulkAddAllToProgram(payload) {
551
581
  method: "POST",
552
582
  methodFqn: "wix.onlineprograms.participants.v3.ManageParticipantsService.BulkAddAllToProgram",
553
583
  packageName: PACKAGE_NAME,
584
+ migrationOptions: {
585
+ optInTransformResponse: true
586
+ },
554
587
  url: resolveWixOnlineprogramsParticipantsV3ManageParticipantsServiceUrl({
555
588
  protoPath: "/v3/bulk/participants/add-all",
556
589
  data: payload,
@@ -569,6 +602,9 @@ function bulkApproveParticipant(payload) {
569
602
  method: "POST",
570
603
  methodFqn: "wix.onlineprograms.participants.v3.ManageParticipantsService.BulkApproveParticipant",
571
604
  packageName: PACKAGE_NAME,
605
+ migrationOptions: {
606
+ optInTransformResponse: true
607
+ },
572
608
  url: resolveWixOnlineprogramsParticipantsV3ManageParticipantsServiceUrl({
573
609
  protoPath: "/v3/bulk/participants/approve",
574
610
  data: payload,
@@ -601,6 +637,9 @@ function bulkApproveAllParticipant(payload) {
601
637
  method: "POST",
602
638
  methodFqn: "wix.onlineprograms.participants.v3.ManageParticipantsService.BulkApproveAllParticipant",
603
639
  packageName: PACKAGE_NAME,
640
+ migrationOptions: {
641
+ optInTransformResponse: true
642
+ },
604
643
  url: resolveWixOnlineprogramsParticipantsV3ManageParticipantsServiceUrl({
605
644
  protoPath: "/v3/bulk/participants/approve-all",
606
645
  data: payload,
@@ -619,6 +658,9 @@ function deleteParticipant(payload) {
619
658
  method: "DELETE",
620
659
  methodFqn: "wix.onlineprograms.participants.v3.ManageParticipantsService.DeleteParticipant",
621
660
  packageName: PACKAGE_NAME,
661
+ migrationOptions: {
662
+ optInTransformResponse: true
663
+ },
622
664
  url: resolveWixOnlineprogramsParticipantsV3ManageParticipantsServiceUrl({
623
665
  protoPath: "/v3/participants/{participantId}",
624
666
  data: payload,
@@ -637,6 +679,9 @@ function issueCertificate(payload) {
637
679
  method: "POST",
638
680
  methodFqn: "wix.onlineprograms.participants.v3.ManageParticipantsService.IssueCertificate",
639
681
  packageName: PACKAGE_NAME,
682
+ migrationOptions: {
683
+ optInTransformResponse: true
684
+ },
640
685
  url: resolveWixOnlineprogramsParticipantsV3ManageParticipantsServiceUrl({
641
686
  protoPath: "/v3/participants/{participantId}/issue-certificate",
642
687
  data: payload,
@@ -669,6 +714,9 @@ function getCompletionStats(payload) {
669
714
  method: "GET",
670
715
  methodFqn: "wix.onlineprograms.participants.v3.ManageParticipantsService.GetCompletionStats",
671
716
  packageName: PACKAGE_NAME,
717
+ migrationOptions: {
718
+ optInTransformResponse: true
719
+ },
672
720
  url: resolveWixOnlineprogramsParticipantsV3ManageParticipantsServiceUrl({
673
721
  protoPath: "/v3/stats/completion/{programId}",
674
722
  data: payload,
@@ -693,6 +741,9 @@ function getPremiumStats(payload) {
693
741
  method: "GET",
694
742
  methodFqn: "wix.onlineprograms.participants.v3.ManageParticipantsService.GetPremiumStats",
695
743
  packageName: PACKAGE_NAME,
744
+ migrationOptions: {
745
+ optInTransformResponse: true
746
+ },
696
747
  url: resolveWixOnlineprogramsParticipantsV3ManageParticipantsServiceUrl({
697
748
  protoPath: "/v3/stats/premium",
698
749
  data: payload,
@@ -711,6 +762,9 @@ function exportParticipantsStats(payload) {
711
762
  method: "GET",
712
763
  methodFqn: "wix.onlineprograms.participants.v3.ParticipantExportsService.ExportParticipantsStats",
713
764
  packageName: PACKAGE_NAME,
765
+ migrationOptions: {
766
+ optInTransformResponse: true
767
+ },
714
768
  url: resolveWixOnlineprogramsParticipantsV3ParticipantExportsServiceUrl({
715
769
  protoPath: "/v3/participants/export/{programId}",
716
770
  data: payload,