@wix/auto_sdk_online-programs_participants 1.0.0 → 1.0.2
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.
- package/build/cjs/index.js +54 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js +54 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +853 -1
- package/build/cjs/meta.js +214 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +54 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs +54 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +853 -1
- package/build/es/meta.mjs +198 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +54 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.js +54 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +853 -1
- package/build/internal/cjs/meta.js +214 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +54 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.mjs +54 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +853 -1
- package/build/internal/es/meta.mjs +198 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -271,6 +271,9 @@ function joinProgram(payload) {
|
|
|
271
271
|
method: "POST",
|
|
272
272
|
methodFqn: "wix.onlineprograms.participants.v3.ParticipantsService.JoinProgram",
|
|
273
273
|
packageName: PACKAGE_NAME,
|
|
274
|
+
migrationOptions: {
|
|
275
|
+
optInTransformResponse: true
|
|
276
|
+
},
|
|
274
277
|
url: resolveWixOnlineprogramsParticipantsV3ParticipantsServiceUrl({
|
|
275
278
|
protoPath: "/v3/participants/join",
|
|
276
279
|
data: payload,
|
|
@@ -303,6 +306,9 @@ function getParticipant(payload) {
|
|
|
303
306
|
method: "GET",
|
|
304
307
|
methodFqn: "wix.onlineprograms.participants.v3.ParticipantsService.GetParticipant",
|
|
305
308
|
packageName: PACKAGE_NAME,
|
|
309
|
+
migrationOptions: {
|
|
310
|
+
optInTransformResponse: true
|
|
311
|
+
},
|
|
306
312
|
url: resolveWixOnlineprogramsParticipantsV3ParticipantsServiceUrl({
|
|
307
313
|
protoPath: "/v3/participants/{participantId}",
|
|
308
314
|
data: payload,
|
|
@@ -335,6 +341,9 @@ function leaveProgram(payload) {
|
|
|
335
341
|
method: "POST",
|
|
336
342
|
methodFqn: "wix.onlineprograms.participants.v3.ParticipantsService.LeaveProgram",
|
|
337
343
|
packageName: PACKAGE_NAME,
|
|
344
|
+
migrationOptions: {
|
|
345
|
+
optInTransformResponse: true
|
|
346
|
+
},
|
|
338
347
|
url: resolveWixOnlineprogramsParticipantsV3ParticipantsServiceUrl({
|
|
339
348
|
protoPath: "/v3/participants/{participantId}/leave",
|
|
340
349
|
data: payload,
|
|
@@ -353,6 +362,9 @@ function queryParticipants(payload) {
|
|
|
353
362
|
method: "POST",
|
|
354
363
|
methodFqn: "wix.onlineprograms.participants.v3.ParticipantsService.QueryParticipants",
|
|
355
364
|
packageName: PACKAGE_NAME,
|
|
365
|
+
migrationOptions: {
|
|
366
|
+
optInTransformResponse: true
|
|
367
|
+
},
|
|
356
368
|
url: resolveWixOnlineprogramsParticipantsV3ParticipantsServiceUrl({
|
|
357
369
|
protoPath: "/v3/participants/query",
|
|
358
370
|
data: payload,
|
|
@@ -385,6 +397,9 @@ function getAccessStatus(payload) {
|
|
|
385
397
|
method: "GET",
|
|
386
398
|
methodFqn: "wix.onlineprograms.participants.v3.ParticipantsService.GetAccessStatus",
|
|
387
399
|
packageName: PACKAGE_NAME,
|
|
400
|
+
migrationOptions: {
|
|
401
|
+
optInTransformResponse: true
|
|
402
|
+
},
|
|
388
403
|
url: resolveWixOnlineprogramsParticipantsV3ParticipantsServiceUrl({
|
|
389
404
|
protoPath: "/v3/participants/access",
|
|
390
405
|
data: payload,
|
|
@@ -403,6 +418,9 @@ function applyCoupon(payload) {
|
|
|
403
418
|
method: "POST",
|
|
404
419
|
methodFqn: "wix.onlineprograms.participants.v3.ParticipantsService.ApplyCoupon",
|
|
405
420
|
packageName: PACKAGE_NAME,
|
|
421
|
+
migrationOptions: {
|
|
422
|
+
optInTransformResponse: true
|
|
423
|
+
},
|
|
406
424
|
url: resolveWixOnlineprogramsParticipantsV3ParticipantsServiceUrl({
|
|
407
425
|
protoPath: "/v3/participants/{participantId}/coupons/{couponCode}/apply",
|
|
408
426
|
data: payload,
|
|
@@ -431,6 +449,9 @@ function revertCoupon(payload) {
|
|
|
431
449
|
method: "POST",
|
|
432
450
|
methodFqn: "wix.onlineprograms.participants.v3.ParticipantsService.RevertCoupon",
|
|
433
451
|
packageName: PACKAGE_NAME,
|
|
452
|
+
migrationOptions: {
|
|
453
|
+
optInTransformResponse: true
|
|
454
|
+
},
|
|
434
455
|
url: resolveWixOnlineprogramsParticipantsV3ParticipantsServiceUrl({
|
|
435
456
|
protoPath: "/v3/participants/{participantId}/coupons/{couponId}/revert",
|
|
436
457
|
data: payload,
|
|
@@ -455,6 +476,9 @@ function bulkInviteToProgram(payload) {
|
|
|
455
476
|
method: "POST",
|
|
456
477
|
methodFqn: "wix.onlineprograms.participants.v3.ManageParticipantsService.BulkInviteToProgram",
|
|
457
478
|
packageName: PACKAGE_NAME,
|
|
479
|
+
migrationOptions: {
|
|
480
|
+
optInTransformResponse: true
|
|
481
|
+
},
|
|
458
482
|
url: resolveWixOnlineprogramsParticipantsV3ManageParticipantsServiceUrl({
|
|
459
483
|
protoPath: "/v3/bulk/participants/invite",
|
|
460
484
|
data: payload,
|
|
@@ -487,6 +511,9 @@ function bulkInviteAllToProgram(payload) {
|
|
|
487
511
|
method: "POST",
|
|
488
512
|
methodFqn: "wix.onlineprograms.participants.v3.ManageParticipantsService.BulkInviteAllToProgram",
|
|
489
513
|
packageName: PACKAGE_NAME,
|
|
514
|
+
migrationOptions: {
|
|
515
|
+
optInTransformResponse: true
|
|
516
|
+
},
|
|
490
517
|
url: resolveWixOnlineprogramsParticipantsV3ManageParticipantsServiceUrl({
|
|
491
518
|
protoPath: "/v3/bulk/participants/invite-all",
|
|
492
519
|
data: payload,
|
|
@@ -505,6 +532,9 @@ function bulkAddToProgram(payload) {
|
|
|
505
532
|
method: "POST",
|
|
506
533
|
methodFqn: "wix.onlineprograms.participants.v3.ManageParticipantsService.BulkAddToProgram",
|
|
507
534
|
packageName: PACKAGE_NAME,
|
|
535
|
+
migrationOptions: {
|
|
536
|
+
optInTransformResponse: true
|
|
537
|
+
},
|
|
508
538
|
url: resolveWixOnlineprogramsParticipantsV3ManageParticipantsServiceUrl({
|
|
509
539
|
protoPath: "/v3/bulk/participants/add",
|
|
510
540
|
data: payload,
|
|
@@ -537,6 +567,9 @@ function bulkAddAllToProgram(payload) {
|
|
|
537
567
|
method: "POST",
|
|
538
568
|
methodFqn: "wix.onlineprograms.participants.v3.ManageParticipantsService.BulkAddAllToProgram",
|
|
539
569
|
packageName: PACKAGE_NAME,
|
|
570
|
+
migrationOptions: {
|
|
571
|
+
optInTransformResponse: true
|
|
572
|
+
},
|
|
540
573
|
url: resolveWixOnlineprogramsParticipantsV3ManageParticipantsServiceUrl({
|
|
541
574
|
protoPath: "/v3/bulk/participants/add-all",
|
|
542
575
|
data: payload,
|
|
@@ -555,6 +588,9 @@ function bulkApproveParticipant(payload) {
|
|
|
555
588
|
method: "POST",
|
|
556
589
|
methodFqn: "wix.onlineprograms.participants.v3.ManageParticipantsService.BulkApproveParticipant",
|
|
557
590
|
packageName: PACKAGE_NAME,
|
|
591
|
+
migrationOptions: {
|
|
592
|
+
optInTransformResponse: true
|
|
593
|
+
},
|
|
558
594
|
url: resolveWixOnlineprogramsParticipantsV3ManageParticipantsServiceUrl({
|
|
559
595
|
protoPath: "/v3/bulk/participants/approve",
|
|
560
596
|
data: payload,
|
|
@@ -587,6 +623,9 @@ function bulkApproveAllParticipant(payload) {
|
|
|
587
623
|
method: "POST",
|
|
588
624
|
methodFqn: "wix.onlineprograms.participants.v3.ManageParticipantsService.BulkApproveAllParticipant",
|
|
589
625
|
packageName: PACKAGE_NAME,
|
|
626
|
+
migrationOptions: {
|
|
627
|
+
optInTransformResponse: true
|
|
628
|
+
},
|
|
590
629
|
url: resolveWixOnlineprogramsParticipantsV3ManageParticipantsServiceUrl({
|
|
591
630
|
protoPath: "/v3/bulk/participants/approve-all",
|
|
592
631
|
data: payload,
|
|
@@ -605,6 +644,9 @@ function deleteParticipant(payload) {
|
|
|
605
644
|
method: "DELETE",
|
|
606
645
|
methodFqn: "wix.onlineprograms.participants.v3.ManageParticipantsService.DeleteParticipant",
|
|
607
646
|
packageName: PACKAGE_NAME,
|
|
647
|
+
migrationOptions: {
|
|
648
|
+
optInTransformResponse: true
|
|
649
|
+
},
|
|
608
650
|
url: resolveWixOnlineprogramsParticipantsV3ManageParticipantsServiceUrl({
|
|
609
651
|
protoPath: "/v3/participants/{participantId}",
|
|
610
652
|
data: payload,
|
|
@@ -623,6 +665,9 @@ function issueCertificate(payload) {
|
|
|
623
665
|
method: "POST",
|
|
624
666
|
methodFqn: "wix.onlineprograms.participants.v3.ManageParticipantsService.IssueCertificate",
|
|
625
667
|
packageName: PACKAGE_NAME,
|
|
668
|
+
migrationOptions: {
|
|
669
|
+
optInTransformResponse: true
|
|
670
|
+
},
|
|
626
671
|
url: resolveWixOnlineprogramsParticipantsV3ManageParticipantsServiceUrl({
|
|
627
672
|
protoPath: "/v3/participants/{participantId}/issue-certificate",
|
|
628
673
|
data: payload,
|
|
@@ -655,6 +700,9 @@ function getCompletionStats(payload) {
|
|
|
655
700
|
method: "GET",
|
|
656
701
|
methodFqn: "wix.onlineprograms.participants.v3.ManageParticipantsService.GetCompletionStats",
|
|
657
702
|
packageName: PACKAGE_NAME,
|
|
703
|
+
migrationOptions: {
|
|
704
|
+
optInTransformResponse: true
|
|
705
|
+
},
|
|
658
706
|
url: resolveWixOnlineprogramsParticipantsV3ManageParticipantsServiceUrl({
|
|
659
707
|
protoPath: "/v3/stats/completion/{programId}",
|
|
660
708
|
data: payload,
|
|
@@ -679,6 +727,9 @@ function getPremiumStats(payload) {
|
|
|
679
727
|
method: "GET",
|
|
680
728
|
methodFqn: "wix.onlineprograms.participants.v3.ManageParticipantsService.GetPremiumStats",
|
|
681
729
|
packageName: PACKAGE_NAME,
|
|
730
|
+
migrationOptions: {
|
|
731
|
+
optInTransformResponse: true
|
|
732
|
+
},
|
|
682
733
|
url: resolveWixOnlineprogramsParticipantsV3ManageParticipantsServiceUrl({
|
|
683
734
|
protoPath: "/v3/stats/premium",
|
|
684
735
|
data: payload,
|
|
@@ -697,6 +748,9 @@ function exportParticipantsStats(payload) {
|
|
|
697
748
|
method: "GET",
|
|
698
749
|
methodFqn: "wix.onlineprograms.participants.v3.ParticipantExportsService.ExportParticipantsStats",
|
|
699
750
|
packageName: PACKAGE_NAME,
|
|
751
|
+
migrationOptions: {
|
|
752
|
+
optInTransformResponse: true
|
|
753
|
+
},
|
|
700
754
|
url: resolveWixOnlineprogramsParticipantsV3ParticipantExportsServiceUrl({
|
|
701
755
|
protoPath: "/v3/participants/export/{programId}",
|
|
702
756
|
data: payload,
|