@wix/auto_sdk_online-programs_online-program-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 +90 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js +90 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +213 -1
- package/build/cjs/meta.js +244 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +90 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs +90 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +213 -1
- package/build/es/meta.mjs +228 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +90 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.js +90 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +213 -1
- package/build/internal/cjs/meta.js +244 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +90 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.mjs +90 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +213 -1
- package/build/internal/es/meta.mjs +228 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +3 -3
package/build/es/meta.mjs
CHANGED
|
@@ -67,6 +67,9 @@ function queryParticipants(payload) {
|
|
|
67
67
|
method: "POST",
|
|
68
68
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.QueryParticipants",
|
|
69
69
|
packageName: PACKAGE_NAME,
|
|
70
|
+
migrationOptions: {
|
|
71
|
+
optInTransformResponse: true
|
|
72
|
+
},
|
|
70
73
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
71
74
|
protoPath: "/api/v1/participants/{challengeId}/query",
|
|
72
75
|
data: payload,
|
|
@@ -129,6 +132,9 @@ function listParticipants(payload) {
|
|
|
129
132
|
method: "GET",
|
|
130
133
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.ListParticipants",
|
|
131
134
|
packageName: PACKAGE_NAME,
|
|
135
|
+
migrationOptions: {
|
|
136
|
+
optInTransformResponse: true
|
|
137
|
+
},
|
|
132
138
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
133
139
|
protoPath: "/api/v1/participants/{challengeId}",
|
|
134
140
|
data: payload,
|
|
@@ -202,6 +208,9 @@ function joinParticipant(payload) {
|
|
|
202
208
|
method: "POST",
|
|
203
209
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.JoinParticipant",
|
|
204
210
|
packageName: PACKAGE_NAME,
|
|
211
|
+
migrationOptions: {
|
|
212
|
+
optInTransformResponse: true
|
|
213
|
+
},
|
|
205
214
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
206
215
|
protoPath: "/api/v1/participants/{challengeId}",
|
|
207
216
|
data: payload,
|
|
@@ -264,6 +273,9 @@ function addParticipant(payload) {
|
|
|
264
273
|
method: "POST",
|
|
265
274
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.AddParticipant",
|
|
266
275
|
packageName: PACKAGE_NAME,
|
|
276
|
+
migrationOptions: {
|
|
277
|
+
optInTransformResponse: true
|
|
278
|
+
},
|
|
267
279
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
268
280
|
protoPath: "/api/v1/participants/{challengeId}/add",
|
|
269
281
|
data: payload,
|
|
@@ -326,6 +338,9 @@ function addParticipants(payload) {
|
|
|
326
338
|
method: "POST",
|
|
327
339
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.AddParticipants",
|
|
328
340
|
packageName: PACKAGE_NAME,
|
|
341
|
+
migrationOptions: {
|
|
342
|
+
optInTransformResponse: true
|
|
343
|
+
},
|
|
329
344
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
330
345
|
protoPath: "/api/v1/participants/{challengeId}/bulk-add",
|
|
331
346
|
data: payload,
|
|
@@ -388,6 +403,9 @@ function addAllParticipant(payload) {
|
|
|
388
403
|
method: "POST",
|
|
389
404
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.AddAllParticipant",
|
|
390
405
|
packageName: PACKAGE_NAME,
|
|
406
|
+
migrationOptions: {
|
|
407
|
+
optInTransformResponse: true
|
|
408
|
+
},
|
|
391
409
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
392
410
|
protoPath: "/api/v1/participants/{challengeId}/add-all",
|
|
393
411
|
data: payload,
|
|
@@ -406,6 +424,9 @@ function createJoinRequest(payload) {
|
|
|
406
424
|
method: "POST",
|
|
407
425
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.CreateJoinRequest",
|
|
408
426
|
packageName: PACKAGE_NAME,
|
|
427
|
+
migrationOptions: {
|
|
428
|
+
optInTransformResponse: true
|
|
429
|
+
},
|
|
409
430
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
410
431
|
protoPath: "/api/v1/participants/{challengeId}/join-requests",
|
|
411
432
|
data: payload,
|
|
@@ -468,6 +489,9 @@ function inviteParticipants(payload) {
|
|
|
468
489
|
method: "POST",
|
|
469
490
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.InviteParticipants",
|
|
470
491
|
packageName: PACKAGE_NAME,
|
|
492
|
+
migrationOptions: {
|
|
493
|
+
optInTransformResponse: true
|
|
494
|
+
},
|
|
471
495
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
472
496
|
protoPath: "/api/v1/participants/{challengeId}/invitations",
|
|
473
497
|
data: payload,
|
|
@@ -486,6 +510,9 @@ function inviteAllParticipants(payload) {
|
|
|
486
510
|
method: "POST",
|
|
487
511
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.InviteAllParticipants",
|
|
488
512
|
packageName: PACKAGE_NAME,
|
|
513
|
+
migrationOptions: {
|
|
514
|
+
optInTransformResponse: true
|
|
515
|
+
},
|
|
489
516
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
490
517
|
protoPath: "/api/v1/participants/{challengeId}/invite-all",
|
|
491
518
|
data: payload,
|
|
@@ -504,6 +531,9 @@ function getParticipant(payload) {
|
|
|
504
531
|
method: "GET",
|
|
505
532
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.GetParticipant",
|
|
506
533
|
packageName: PACKAGE_NAME,
|
|
534
|
+
migrationOptions: {
|
|
535
|
+
optInTransformResponse: true
|
|
536
|
+
},
|
|
507
537
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
508
538
|
protoPath: "/api/v1/participants/{challengeId}/{participantId}",
|
|
509
539
|
data: payload,
|
|
@@ -577,6 +607,9 @@ function updateParticipant(payload) {
|
|
|
577
607
|
method: "PATCH",
|
|
578
608
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.UpdateParticipant",
|
|
579
609
|
packageName: PACKAGE_NAME,
|
|
610
|
+
migrationOptions: {
|
|
611
|
+
optInTransformResponse: true
|
|
612
|
+
},
|
|
580
613
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
581
614
|
protoPath: "/api/v1/participants/{challengeId}/{participantId}",
|
|
582
615
|
data: payload,
|
|
@@ -639,6 +672,9 @@ function deleteParticipant(payload) {
|
|
|
639
672
|
method: "DELETE",
|
|
640
673
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.DeleteParticipant",
|
|
641
674
|
packageName: PACKAGE_NAME,
|
|
675
|
+
migrationOptions: {
|
|
676
|
+
optInTransformResponse: true
|
|
677
|
+
},
|
|
642
678
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
643
679
|
protoPath: "/api/v1/participants/{challengeId}/{participantId}",
|
|
644
680
|
data: payload,
|
|
@@ -657,6 +693,9 @@ function reviveParticipant(payload) {
|
|
|
657
693
|
method: "PATCH",
|
|
658
694
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.ReviveParticipant",
|
|
659
695
|
packageName: PACKAGE_NAME,
|
|
696
|
+
migrationOptions: {
|
|
697
|
+
optInTransformResponse: true
|
|
698
|
+
},
|
|
660
699
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
661
700
|
protoPath: "/api/v1/participants/{challengeId}/revive/{participantId}",
|
|
662
701
|
data: payload,
|
|
@@ -719,6 +758,9 @@ function resetParticipantProgress(payload) {
|
|
|
719
758
|
method: "PATCH",
|
|
720
759
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.ResetParticipantProgress",
|
|
721
760
|
packageName: PACKAGE_NAME,
|
|
761
|
+
migrationOptions: {
|
|
762
|
+
optInTransformResponse: true
|
|
763
|
+
},
|
|
722
764
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
723
765
|
protoPath: "/api/v1/participants/{challengeId}/reset/{participantId}",
|
|
724
766
|
data: payload,
|
|
@@ -781,6 +823,9 @@ function issueParticipantCertificate(payload) {
|
|
|
781
823
|
method: "POST",
|
|
782
824
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.IssueParticipantCertificate",
|
|
783
825
|
packageName: PACKAGE_NAME,
|
|
826
|
+
migrationOptions: {
|
|
827
|
+
optInTransformResponse: true
|
|
828
|
+
},
|
|
784
829
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
785
830
|
protoPath: "/api/v1/participants/{challengeId}/issue_certificate/{participantId}",
|
|
786
831
|
data: payload,
|
|
@@ -843,6 +888,9 @@ function issueCertificate(payload) {
|
|
|
843
888
|
method: "POST",
|
|
844
889
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.IssueCertificate",
|
|
845
890
|
packageName: PACKAGE_NAME,
|
|
891
|
+
migrationOptions: {
|
|
892
|
+
optInTransformResponse: true
|
|
893
|
+
},
|
|
846
894
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
847
895
|
protoPath: "/api/v1/participants/{challengeId}/get_certificate/{participantId}",
|
|
848
896
|
data: payload,
|
|
@@ -905,6 +953,9 @@ function getCertificate(payload) {
|
|
|
905
953
|
method: "GET",
|
|
906
954
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.GetCertificate",
|
|
907
955
|
packageName: PACKAGE_NAME,
|
|
956
|
+
migrationOptions: {
|
|
957
|
+
optInTransformResponse: true
|
|
958
|
+
},
|
|
908
959
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
909
960
|
protoPath: "/api/v1/participants/{challengeId}/certificate/{participantId}",
|
|
910
961
|
data: payload,
|
|
@@ -934,6 +985,9 @@ function createPaymentOrder(payload) {
|
|
|
934
985
|
method: "POST",
|
|
935
986
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.CreatePaymentOrder",
|
|
936
987
|
packageName: PACKAGE_NAME,
|
|
988
|
+
migrationOptions: {
|
|
989
|
+
optInTransformResponse: true
|
|
990
|
+
},
|
|
937
991
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
938
992
|
protoPath: "/api/v1/participants/{challengeId}/payment-orders/{participantId}",
|
|
939
993
|
data: payload,
|
|
@@ -996,6 +1050,9 @@ function applyCouponToOrder(payload) {
|
|
|
996
1050
|
method: "POST",
|
|
997
1051
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.ApplyCouponToOrder",
|
|
998
1052
|
packageName: PACKAGE_NAME,
|
|
1053
|
+
migrationOptions: {
|
|
1054
|
+
optInTransformResponse: true
|
|
1055
|
+
},
|
|
999
1056
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
1000
1057
|
protoPath: "/api/v1/participants/{challengeId}/payment-orders/{participantId}/coupons/{orderId}",
|
|
1001
1058
|
data: payload,
|
|
@@ -1014,6 +1071,9 @@ function removeCouponFromOrder(payload) {
|
|
|
1014
1071
|
method: "DELETE",
|
|
1015
1072
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.RemoveCouponFromOrder",
|
|
1016
1073
|
packageName: PACKAGE_NAME,
|
|
1074
|
+
migrationOptions: {
|
|
1075
|
+
optInTransformResponse: true
|
|
1076
|
+
},
|
|
1017
1077
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
1018
1078
|
protoPath: "/api/v1/participants/{challengeId}/payment-orders/{participantId}/coupons/{orderId}/{couponId}",
|
|
1019
1079
|
data: payload,
|
|
@@ -1041,6 +1101,9 @@ function listSteps(payload) {
|
|
|
1041
1101
|
method: "GET",
|
|
1042
1102
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.ListSteps",
|
|
1043
1103
|
packageName: PACKAGE_NAME,
|
|
1104
|
+
migrationOptions: {
|
|
1105
|
+
optInTransformResponse: true
|
|
1106
|
+
},
|
|
1044
1107
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
1045
1108
|
protoPath: "/api/v1/participants/{challengeId}/steps/{participantId}",
|
|
1046
1109
|
data: serializedData,
|
|
@@ -1353,6 +1416,9 @@ function getStep(payload) {
|
|
|
1353
1416
|
method: "GET",
|
|
1354
1417
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.GetStep",
|
|
1355
1418
|
packageName: PACKAGE_NAME,
|
|
1419
|
+
migrationOptions: {
|
|
1420
|
+
optInTransformResponse: true
|
|
1421
|
+
},
|
|
1356
1422
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
1357
1423
|
protoPath: "/api/v1/participants/{challengeId}/steps/{participantId}/{stepId}",
|
|
1358
1424
|
data: serializedData,
|
|
@@ -1980,6 +2046,9 @@ function resolveStep(payload) {
|
|
|
1980
2046
|
method: "PATCH",
|
|
1981
2047
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.ResolveStep",
|
|
1982
2048
|
packageName: PACKAGE_NAME,
|
|
2049
|
+
migrationOptions: {
|
|
2050
|
+
optInTransformResponse: true
|
|
2051
|
+
},
|
|
1983
2052
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
1984
2053
|
protoPath: "/api/v1/participants/{challengeId}/steps/{participantId}/{stepId}",
|
|
1985
2054
|
data: serializedData,
|
|
@@ -2334,6 +2403,9 @@ function updateStepFeedback(payload) {
|
|
|
2334
2403
|
method: "PUT",
|
|
2335
2404
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.UpdateStepFeedback",
|
|
2336
2405
|
packageName: PACKAGE_NAME,
|
|
2406
|
+
migrationOptions: {
|
|
2407
|
+
optInTransformResponse: true
|
|
2408
|
+
},
|
|
2337
2409
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
2338
2410
|
protoPath: "/api/v1/participants/{challengeId}/steps/{participantId}/feedback/{stepId}",
|
|
2339
2411
|
data: serializedData,
|
|
@@ -2626,6 +2698,9 @@ function getMediaUploadInfo(payload) {
|
|
|
2626
2698
|
method: "GET",
|
|
2627
2699
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.GetMediaUploadInfo",
|
|
2628
2700
|
packageName: PACKAGE_NAME,
|
|
2701
|
+
migrationOptions: {
|
|
2702
|
+
optInTransformResponse: true
|
|
2703
|
+
},
|
|
2629
2704
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
2630
2705
|
protoPath: "/api/v1/participants/{challengeId}/media/upload_info/{participantId}",
|
|
2631
2706
|
data: payload,
|
|
@@ -2655,6 +2730,9 @@ function listSections(payload) {
|
|
|
2655
2730
|
method: "GET",
|
|
2656
2731
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.ListSections",
|
|
2657
2732
|
packageName: PACKAGE_NAME,
|
|
2733
|
+
migrationOptions: {
|
|
2734
|
+
optInTransformResponse: true
|
|
2735
|
+
},
|
|
2658
2736
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
2659
2737
|
protoPath: "/api/v1/participants/{challengeId}/sections/{participantId}",
|
|
2660
2738
|
data: payload,
|
|
@@ -3185,6 +3263,9 @@ function getSection(payload) {
|
|
|
3185
3263
|
method: "GET",
|
|
3186
3264
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.GetSection",
|
|
3187
3265
|
packageName: PACKAGE_NAME,
|
|
3266
|
+
migrationOptions: {
|
|
3267
|
+
optInTransformResponse: true
|
|
3268
|
+
},
|
|
3188
3269
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
3189
3270
|
protoPath: "/api/v1/participants/{challengeId}/sections/{participantId}/{sectionId}",
|
|
3190
3271
|
data: payload,
|
|
@@ -3715,6 +3796,9 @@ function myProgram(payload) {
|
|
|
3715
3796
|
method: "GET",
|
|
3716
3797
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.MyProgram",
|
|
3717
3798
|
packageName: PACKAGE_NAME,
|
|
3799
|
+
migrationOptions: {
|
|
3800
|
+
optInTransformResponse: true
|
|
3801
|
+
},
|
|
3718
3802
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
3719
3803
|
protoPath: "/api/v1/participants/my_program/{programId}",
|
|
3720
3804
|
data: payload,
|
|
@@ -3788,6 +3872,9 @@ function myProgramStep(payload) {
|
|
|
3788
3872
|
method: "GET",
|
|
3789
3873
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.MyProgramStep",
|
|
3790
3874
|
packageName: PACKAGE_NAME,
|
|
3875
|
+
migrationOptions: {
|
|
3876
|
+
optInTransformResponse: true
|
|
3877
|
+
},
|
|
3791
3878
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
3792
3879
|
protoPath: "/api/v1/participants/my_program/{programId}/step/{programStepId}",
|
|
3793
3880
|
data: payload,
|
|
@@ -4091,6 +4178,9 @@ function myProgramSection(payload) {
|
|
|
4091
4178
|
method: "GET",
|
|
4092
4179
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.MyProgramSection",
|
|
4093
4180
|
packageName: PACKAGE_NAME,
|
|
4181
|
+
migrationOptions: {
|
|
4182
|
+
optInTransformResponse: true
|
|
4183
|
+
},
|
|
4094
4184
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
4095
4185
|
protoPath: "/api/v1/participants/my_program/{programId}/section/{programSectionId}",
|
|
4096
4186
|
data: payload,
|
|
@@ -4619,6 +4709,128 @@ function myProgramSection(payload) {
|
|
|
4619
4709
|
return __myProgramSection;
|
|
4620
4710
|
}
|
|
4621
4711
|
|
|
4712
|
+
// src/challenges-v1-participant-online-program-participants.types.ts
|
|
4713
|
+
var ParticipantStepState = /* @__PURE__ */ ((ParticipantStepState2) => {
|
|
4714
|
+
ParticipantStepState2["PENDING"] = "PENDING";
|
|
4715
|
+
ParticipantStepState2["RUNNING"] = "RUNNING";
|
|
4716
|
+
ParticipantStepState2["COMPLETED"] = "COMPLETED";
|
|
4717
|
+
ParticipantStepState2["SKIPPED"] = "SKIPPED";
|
|
4718
|
+
ParticipantStepState2["CONFIRMED"] = "CONFIRMED";
|
|
4719
|
+
ParticipantStepState2["REJECTED"] = "REJECTED";
|
|
4720
|
+
ParticipantStepState2["OVERDUE"] = "OVERDUE";
|
|
4721
|
+
ParticipantStepState2["FAILED"] = "FAILED";
|
|
4722
|
+
return ParticipantStepState2;
|
|
4723
|
+
})(ParticipantStepState || {});
|
|
4724
|
+
var State = /* @__PURE__ */ ((State2) => {
|
|
4725
|
+
State2["JOIN_REQUESTED"] = "JOIN_REQUESTED";
|
|
4726
|
+
State2["INVITED"] = "INVITED";
|
|
4727
|
+
State2["JOIN_REJECTED"] = "JOIN_REJECTED";
|
|
4728
|
+
State2["PAYMENT_REQUESTED"] = "PAYMENT_REQUESTED";
|
|
4729
|
+
State2["PAYMENT_STARTED"] = "PAYMENT_STARTED";
|
|
4730
|
+
State2["JOINED"] = "JOINED";
|
|
4731
|
+
State2["LEFT"] = "LEFT";
|
|
4732
|
+
State2["REMOVED"] = "REMOVED";
|
|
4733
|
+
State2["RUNNING"] = "RUNNING";
|
|
4734
|
+
State2["COMPLETED"] = "COMPLETED";
|
|
4735
|
+
State2["FAILED"] = "FAILED";
|
|
4736
|
+
State2["PAYMENT_STARTED_OFFLINE"] = "PAYMENT_STARTED_OFFLINE";
|
|
4737
|
+
State2["SUSPENDED"] = "SUSPENDED";
|
|
4738
|
+
State2["AUTO_REMOVED"] = "AUTO_REMOVED";
|
|
4739
|
+
return State2;
|
|
4740
|
+
})(State || {});
|
|
4741
|
+
var ParticipationState = /* @__PURE__ */ ((ParticipationState2) => {
|
|
4742
|
+
ParticipationState2["NotStarted"] = "NotStarted";
|
|
4743
|
+
ParticipationState2["InProgress"] = "InProgress";
|
|
4744
|
+
ParticipationState2["Finished"] = "Finished";
|
|
4745
|
+
ParticipationState2["Suspended"] = "Suspended";
|
|
4746
|
+
ParticipationState2["AutoRemoved"] = "AutoRemoved";
|
|
4747
|
+
return ParticipationState2;
|
|
4748
|
+
})(ParticipationState || {});
|
|
4749
|
+
var QueryParticipantsRequestJoinPath = /* @__PURE__ */ ((QueryParticipantsRequestJoinPath2) => {
|
|
4750
|
+
QueryParticipantsRequestJoinPath2["UNKNOWN_JOIN_PATH"] = "UNKNOWN_JOIN_PATH";
|
|
4751
|
+
QueryParticipantsRequestJoinPath2["FREE"] = "FREE";
|
|
4752
|
+
QueryParticipantsRequestJoinPath2["ADDED"] = "ADDED";
|
|
4753
|
+
QueryParticipantsRequestJoinPath2["SINGLE_PAYMENT"] = "SINGLE_PAYMENT";
|
|
4754
|
+
QueryParticipantsRequestJoinPath2["PAID_PLAN"] = "PAID_PLAN";
|
|
4755
|
+
return QueryParticipantsRequestJoinPath2;
|
|
4756
|
+
})(QueryParticipantsRequestJoinPath || {});
|
|
4757
|
+
var QueryParticipantsRequestSortingCriterion = /* @__PURE__ */ ((QueryParticipantsRequestSortingCriterion2) => {
|
|
4758
|
+
QueryParticipantsRequestSortingCriterion2["DEFAULT"] = "DEFAULT";
|
|
4759
|
+
QueryParticipantsRequestSortingCriterion2["JOIN_DATE"] = "JOIN_DATE";
|
|
4760
|
+
QueryParticipantsRequestSortingCriterion2["NAME"] = "NAME";
|
|
4761
|
+
QueryParticipantsRequestSortingCriterion2["LAST_EVENT"] = "LAST_EVENT";
|
|
4762
|
+
QueryParticipantsRequestSortingCriterion2["PERFORMANCE"] = "PERFORMANCE";
|
|
4763
|
+
return QueryParticipantsRequestSortingCriterion2;
|
|
4764
|
+
})(QueryParticipantsRequestSortingCriterion || {});
|
|
4765
|
+
var QueryParticipantsRequestSortingOrder = /* @__PURE__ */ ((QueryParticipantsRequestSortingOrder2) => {
|
|
4766
|
+
QueryParticipantsRequestSortingOrder2["ORDER_DEFAULT"] = "ORDER_DEFAULT";
|
|
4767
|
+
QueryParticipantsRequestSortingOrder2["ORDER_ASC"] = "ORDER_ASC";
|
|
4768
|
+
QueryParticipantsRequestSortingOrder2["ORDER_DESC"] = "ORDER_DESC";
|
|
4769
|
+
return QueryParticipantsRequestSortingOrder2;
|
|
4770
|
+
})(QueryParticipantsRequestSortingOrder || {});
|
|
4771
|
+
var SortingCriterion = /* @__PURE__ */ ((SortingCriterion2) => {
|
|
4772
|
+
SortingCriterion2["DEFAULT"] = "DEFAULT";
|
|
4773
|
+
SortingCriterion2["JOIN_DATE"] = "JOIN_DATE";
|
|
4774
|
+
SortingCriterion2["NAME"] = "NAME";
|
|
4775
|
+
SortingCriterion2["LAST_EVENT"] = "LAST_EVENT";
|
|
4776
|
+
SortingCriterion2["PERFORMANCE"] = "PERFORMANCE";
|
|
4777
|
+
return SortingCriterion2;
|
|
4778
|
+
})(SortingCriterion || {});
|
|
4779
|
+
var SortingOrder = /* @__PURE__ */ ((SortingOrder2) => {
|
|
4780
|
+
SortingOrder2["ORDER_DEFAULT"] = "ORDER_DEFAULT";
|
|
4781
|
+
SortingOrder2["ORDER_ASC"] = "ORDER_ASC";
|
|
4782
|
+
SortingOrder2["ORDER_DESC"] = "ORDER_DESC";
|
|
4783
|
+
return SortingOrder2;
|
|
4784
|
+
})(SortingOrder || {});
|
|
4785
|
+
var PaymentType = /* @__PURE__ */ ((PaymentType2) => {
|
|
4786
|
+
PaymentType2["SINGLE_PAYMENT"] = "SINGLE_PAYMENT";
|
|
4787
|
+
PaymentType2["PAID_PLANS"] = "PAID_PLANS";
|
|
4788
|
+
return PaymentType2;
|
|
4789
|
+
})(PaymentType || {});
|
|
4790
|
+
var DescriptionFieldSet = /* @__PURE__ */ ((DescriptionFieldSet2) => {
|
|
4791
|
+
DescriptionFieldSet2["EXTENDED"] = "EXTENDED";
|
|
4792
|
+
DescriptionFieldSet2["STANDARD"] = "STANDARD";
|
|
4793
|
+
return DescriptionFieldSet2;
|
|
4794
|
+
})(DescriptionFieldSet || {});
|
|
4795
|
+
var ChoiceRightness = /* @__PURE__ */ ((ChoiceRightness2) => {
|
|
4796
|
+
ChoiceRightness2["NEUTRAL"] = "NEUTRAL";
|
|
4797
|
+
ChoiceRightness2["RIGHT"] = "RIGHT";
|
|
4798
|
+
ChoiceRightness2["WRONG"] = "WRONG";
|
|
4799
|
+
return ChoiceRightness2;
|
|
4800
|
+
})(ChoiceRightness || {});
|
|
4801
|
+
var QuizType = /* @__PURE__ */ ((QuizType2) => {
|
|
4802
|
+
QuizType2["QUIZ"] = "QUIZ";
|
|
4803
|
+
QuizType2["QUESTIONNAIRE"] = "QUESTIONNAIRE";
|
|
4804
|
+
return QuizType2;
|
|
4805
|
+
})(QuizType || {});
|
|
4806
|
+
var DurationUnit = /* @__PURE__ */ ((DurationUnit2) => {
|
|
4807
|
+
DurationUnit2["WEEKS"] = "WEEKS";
|
|
4808
|
+
DurationUnit2["DAYS"] = "DAYS";
|
|
4809
|
+
DurationUnit2["HOURS"] = "HOURS";
|
|
4810
|
+
DurationUnit2["MINUTES"] = "MINUTES";
|
|
4811
|
+
return DurationUnit2;
|
|
4812
|
+
})(DurationUnit || {});
|
|
4813
|
+
var ResolutionStatus = /* @__PURE__ */ ((ResolutionStatus2) => {
|
|
4814
|
+
ResolutionStatus2["COMPLETED"] = "COMPLETED";
|
|
4815
|
+
ResolutionStatus2["SKIPPED"] = "SKIPPED";
|
|
4816
|
+
ResolutionStatus2["UNDO"] = "UNDO";
|
|
4817
|
+
ResolutionStatus2["QUIZ_SUBMIT"] = "QUIZ_SUBMIT";
|
|
4818
|
+
return ResolutionStatus2;
|
|
4819
|
+
})(ResolutionStatus || {});
|
|
4820
|
+
var Status = /* @__PURE__ */ ((Status2) => {
|
|
4821
|
+
Status2["COMPLETED"] = "COMPLETED";
|
|
4822
|
+
Status2["FAILED"] = "FAILED";
|
|
4823
|
+
return Status2;
|
|
4824
|
+
})(Status || {});
|
|
4825
|
+
var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
4826
|
+
WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
|
|
4827
|
+
WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
|
|
4828
|
+
WebhookIdentityType2["MEMBER"] = "MEMBER";
|
|
4829
|
+
WebhookIdentityType2["WIX_USER"] = "WIX_USER";
|
|
4830
|
+
WebhookIdentityType2["APP"] = "APP";
|
|
4831
|
+
return WebhookIdentityType2;
|
|
4832
|
+
})(WebhookIdentityType || {});
|
|
4833
|
+
|
|
4622
4834
|
// src/challenges-v1-participant-online-program-participants.meta.ts
|
|
4623
4835
|
function queryParticipants2() {
|
|
4624
4836
|
const payload = { challengeId: ":challengeId" };
|
|
@@ -5256,6 +5468,22 @@ function myProgramSection2() {
|
|
|
5256
5468
|
};
|
|
5257
5469
|
}
|
|
5258
5470
|
export {
|
|
5471
|
+
ChoiceRightness as ChoiceRightnessOriginal,
|
|
5472
|
+
DescriptionFieldSet as DescriptionFieldSetOriginal,
|
|
5473
|
+
DurationUnit as DurationUnitOriginal,
|
|
5474
|
+
ParticipantStepState as ParticipantStepStateOriginal,
|
|
5475
|
+
ParticipationState as ParticipationStateOriginal,
|
|
5476
|
+
PaymentType as PaymentTypeOriginal,
|
|
5477
|
+
QueryParticipantsRequestJoinPath as QueryParticipantsRequestJoinPathOriginal,
|
|
5478
|
+
QueryParticipantsRequestSortingCriterion as QueryParticipantsRequestSortingCriterionOriginal,
|
|
5479
|
+
QueryParticipantsRequestSortingOrder as QueryParticipantsRequestSortingOrderOriginal,
|
|
5480
|
+
QuizType as QuizTypeOriginal,
|
|
5481
|
+
ResolutionStatus as ResolutionStatusOriginal,
|
|
5482
|
+
SortingCriterion as SortingCriterionOriginal,
|
|
5483
|
+
SortingOrder as SortingOrderOriginal,
|
|
5484
|
+
State as StateOriginal,
|
|
5485
|
+
Status as StatusOriginal,
|
|
5486
|
+
WebhookIdentityType as WebhookIdentityTypeOriginal,
|
|
5259
5487
|
addAllParticipant2 as addAllParticipant,
|
|
5260
5488
|
addParticipant2 as addParticipant,
|
|
5261
5489
|
addParticipants2 as addParticipants,
|