@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
|
@@ -20,6 +20,22 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
20
20
|
// meta.ts
|
|
21
21
|
var meta_exports = {};
|
|
22
22
|
__export(meta_exports, {
|
|
23
|
+
ChoiceRightnessOriginal: () => ChoiceRightness,
|
|
24
|
+
DescriptionFieldSetOriginal: () => DescriptionFieldSet,
|
|
25
|
+
DurationUnitOriginal: () => DurationUnit,
|
|
26
|
+
ParticipantStepStateOriginal: () => ParticipantStepState,
|
|
27
|
+
ParticipationStateOriginal: () => ParticipationState,
|
|
28
|
+
PaymentTypeOriginal: () => PaymentType,
|
|
29
|
+
QueryParticipantsRequestJoinPathOriginal: () => QueryParticipantsRequestJoinPath,
|
|
30
|
+
QueryParticipantsRequestSortingCriterionOriginal: () => QueryParticipantsRequestSortingCriterion,
|
|
31
|
+
QueryParticipantsRequestSortingOrderOriginal: () => QueryParticipantsRequestSortingOrder,
|
|
32
|
+
QuizTypeOriginal: () => QuizType,
|
|
33
|
+
ResolutionStatusOriginal: () => ResolutionStatus,
|
|
34
|
+
SortingCriterionOriginal: () => SortingCriterion,
|
|
35
|
+
SortingOrderOriginal: () => SortingOrder,
|
|
36
|
+
StateOriginal: () => State,
|
|
37
|
+
StatusOriginal: () => Status,
|
|
38
|
+
WebhookIdentityTypeOriginal: () => WebhookIdentityType,
|
|
23
39
|
addAllParticipant: () => addAllParticipant2,
|
|
24
40
|
addParticipant: () => addParticipant2,
|
|
25
41
|
addParticipants: () => addParticipants2,
|
|
@@ -122,6 +138,9 @@ function queryParticipants(payload) {
|
|
|
122
138
|
method: "POST",
|
|
123
139
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.QueryParticipants",
|
|
124
140
|
packageName: PACKAGE_NAME,
|
|
141
|
+
migrationOptions: {
|
|
142
|
+
optInTransformResponse: true
|
|
143
|
+
},
|
|
125
144
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
126
145
|
protoPath: "/api/v1/participants/{challengeId}/query",
|
|
127
146
|
data: payload,
|
|
@@ -184,6 +203,9 @@ function listParticipants(payload) {
|
|
|
184
203
|
method: "GET",
|
|
185
204
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.ListParticipants",
|
|
186
205
|
packageName: PACKAGE_NAME,
|
|
206
|
+
migrationOptions: {
|
|
207
|
+
optInTransformResponse: true
|
|
208
|
+
},
|
|
187
209
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
188
210
|
protoPath: "/api/v1/participants/{challengeId}",
|
|
189
211
|
data: payload,
|
|
@@ -257,6 +279,9 @@ function joinParticipant(payload) {
|
|
|
257
279
|
method: "POST",
|
|
258
280
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.JoinParticipant",
|
|
259
281
|
packageName: PACKAGE_NAME,
|
|
282
|
+
migrationOptions: {
|
|
283
|
+
optInTransformResponse: true
|
|
284
|
+
},
|
|
260
285
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
261
286
|
protoPath: "/api/v1/participants/{challengeId}",
|
|
262
287
|
data: payload,
|
|
@@ -319,6 +344,9 @@ function addParticipant(payload) {
|
|
|
319
344
|
method: "POST",
|
|
320
345
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.AddParticipant",
|
|
321
346
|
packageName: PACKAGE_NAME,
|
|
347
|
+
migrationOptions: {
|
|
348
|
+
optInTransformResponse: true
|
|
349
|
+
},
|
|
322
350
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
323
351
|
protoPath: "/api/v1/participants/{challengeId}/add",
|
|
324
352
|
data: payload,
|
|
@@ -381,6 +409,9 @@ function addParticipants(payload) {
|
|
|
381
409
|
method: "POST",
|
|
382
410
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.AddParticipants",
|
|
383
411
|
packageName: PACKAGE_NAME,
|
|
412
|
+
migrationOptions: {
|
|
413
|
+
optInTransformResponse: true
|
|
414
|
+
},
|
|
384
415
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
385
416
|
protoPath: "/api/v1/participants/{challengeId}/bulk-add",
|
|
386
417
|
data: payload,
|
|
@@ -443,6 +474,9 @@ function addAllParticipant(payload) {
|
|
|
443
474
|
method: "POST",
|
|
444
475
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.AddAllParticipant",
|
|
445
476
|
packageName: PACKAGE_NAME,
|
|
477
|
+
migrationOptions: {
|
|
478
|
+
optInTransformResponse: true
|
|
479
|
+
},
|
|
446
480
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
447
481
|
protoPath: "/api/v1/participants/{challengeId}/add-all",
|
|
448
482
|
data: payload,
|
|
@@ -461,6 +495,9 @@ function createJoinRequest(payload) {
|
|
|
461
495
|
method: "POST",
|
|
462
496
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.CreateJoinRequest",
|
|
463
497
|
packageName: PACKAGE_NAME,
|
|
498
|
+
migrationOptions: {
|
|
499
|
+
optInTransformResponse: true
|
|
500
|
+
},
|
|
464
501
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
465
502
|
protoPath: "/api/v1/participants/{challengeId}/join-requests",
|
|
466
503
|
data: payload,
|
|
@@ -523,6 +560,9 @@ function inviteParticipants(payload) {
|
|
|
523
560
|
method: "POST",
|
|
524
561
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.InviteParticipants",
|
|
525
562
|
packageName: PACKAGE_NAME,
|
|
563
|
+
migrationOptions: {
|
|
564
|
+
optInTransformResponse: true
|
|
565
|
+
},
|
|
526
566
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
527
567
|
protoPath: "/api/v1/participants/{challengeId}/invitations",
|
|
528
568
|
data: payload,
|
|
@@ -541,6 +581,9 @@ function inviteAllParticipants(payload) {
|
|
|
541
581
|
method: "POST",
|
|
542
582
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.InviteAllParticipants",
|
|
543
583
|
packageName: PACKAGE_NAME,
|
|
584
|
+
migrationOptions: {
|
|
585
|
+
optInTransformResponse: true
|
|
586
|
+
},
|
|
544
587
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
545
588
|
protoPath: "/api/v1/participants/{challengeId}/invite-all",
|
|
546
589
|
data: payload,
|
|
@@ -559,6 +602,9 @@ function getParticipant(payload) {
|
|
|
559
602
|
method: "GET",
|
|
560
603
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.GetParticipant",
|
|
561
604
|
packageName: PACKAGE_NAME,
|
|
605
|
+
migrationOptions: {
|
|
606
|
+
optInTransformResponse: true
|
|
607
|
+
},
|
|
562
608
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
563
609
|
protoPath: "/api/v1/participants/{challengeId}/{participantId}",
|
|
564
610
|
data: payload,
|
|
@@ -632,6 +678,9 @@ function updateParticipant(payload) {
|
|
|
632
678
|
method: "PATCH",
|
|
633
679
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.UpdateParticipant",
|
|
634
680
|
packageName: PACKAGE_NAME,
|
|
681
|
+
migrationOptions: {
|
|
682
|
+
optInTransformResponse: true
|
|
683
|
+
},
|
|
635
684
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
636
685
|
protoPath: "/api/v1/participants/{challengeId}/{participantId}",
|
|
637
686
|
data: payload,
|
|
@@ -694,6 +743,9 @@ function deleteParticipant(payload) {
|
|
|
694
743
|
method: "DELETE",
|
|
695
744
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.DeleteParticipant",
|
|
696
745
|
packageName: PACKAGE_NAME,
|
|
746
|
+
migrationOptions: {
|
|
747
|
+
optInTransformResponse: true
|
|
748
|
+
},
|
|
697
749
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
698
750
|
protoPath: "/api/v1/participants/{challengeId}/{participantId}",
|
|
699
751
|
data: payload,
|
|
@@ -712,6 +764,9 @@ function reviveParticipant(payload) {
|
|
|
712
764
|
method: "PATCH",
|
|
713
765
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.ReviveParticipant",
|
|
714
766
|
packageName: PACKAGE_NAME,
|
|
767
|
+
migrationOptions: {
|
|
768
|
+
optInTransformResponse: true
|
|
769
|
+
},
|
|
715
770
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
716
771
|
protoPath: "/api/v1/participants/{challengeId}/revive/{participantId}",
|
|
717
772
|
data: payload,
|
|
@@ -774,6 +829,9 @@ function resetParticipantProgress(payload) {
|
|
|
774
829
|
method: "PATCH",
|
|
775
830
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.ResetParticipantProgress",
|
|
776
831
|
packageName: PACKAGE_NAME,
|
|
832
|
+
migrationOptions: {
|
|
833
|
+
optInTransformResponse: true
|
|
834
|
+
},
|
|
777
835
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
778
836
|
protoPath: "/api/v1/participants/{challengeId}/reset/{participantId}",
|
|
779
837
|
data: payload,
|
|
@@ -836,6 +894,9 @@ function issueParticipantCertificate(payload) {
|
|
|
836
894
|
method: "POST",
|
|
837
895
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.IssueParticipantCertificate",
|
|
838
896
|
packageName: PACKAGE_NAME,
|
|
897
|
+
migrationOptions: {
|
|
898
|
+
optInTransformResponse: true
|
|
899
|
+
},
|
|
839
900
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
840
901
|
protoPath: "/api/v1/participants/{challengeId}/issue_certificate/{participantId}",
|
|
841
902
|
data: payload,
|
|
@@ -898,6 +959,9 @@ function issueCertificate(payload) {
|
|
|
898
959
|
method: "POST",
|
|
899
960
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.IssueCertificate",
|
|
900
961
|
packageName: PACKAGE_NAME,
|
|
962
|
+
migrationOptions: {
|
|
963
|
+
optInTransformResponse: true
|
|
964
|
+
},
|
|
901
965
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
902
966
|
protoPath: "/api/v1/participants/{challengeId}/get_certificate/{participantId}",
|
|
903
967
|
data: payload,
|
|
@@ -960,6 +1024,9 @@ function getCertificate(payload) {
|
|
|
960
1024
|
method: "GET",
|
|
961
1025
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.GetCertificate",
|
|
962
1026
|
packageName: PACKAGE_NAME,
|
|
1027
|
+
migrationOptions: {
|
|
1028
|
+
optInTransformResponse: true
|
|
1029
|
+
},
|
|
963
1030
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
964
1031
|
protoPath: "/api/v1/participants/{challengeId}/certificate/{participantId}",
|
|
965
1032
|
data: payload,
|
|
@@ -989,6 +1056,9 @@ function createPaymentOrder(payload) {
|
|
|
989
1056
|
method: "POST",
|
|
990
1057
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.CreatePaymentOrder",
|
|
991
1058
|
packageName: PACKAGE_NAME,
|
|
1059
|
+
migrationOptions: {
|
|
1060
|
+
optInTransformResponse: true
|
|
1061
|
+
},
|
|
992
1062
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
993
1063
|
protoPath: "/api/v1/participants/{challengeId}/payment-orders/{participantId}",
|
|
994
1064
|
data: payload,
|
|
@@ -1051,6 +1121,9 @@ function applyCouponToOrder(payload) {
|
|
|
1051
1121
|
method: "POST",
|
|
1052
1122
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.ApplyCouponToOrder",
|
|
1053
1123
|
packageName: PACKAGE_NAME,
|
|
1124
|
+
migrationOptions: {
|
|
1125
|
+
optInTransformResponse: true
|
|
1126
|
+
},
|
|
1054
1127
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
1055
1128
|
protoPath: "/api/v1/participants/{challengeId}/payment-orders/{participantId}/coupons/{orderId}",
|
|
1056
1129
|
data: payload,
|
|
@@ -1069,6 +1142,9 @@ function removeCouponFromOrder(payload) {
|
|
|
1069
1142
|
method: "DELETE",
|
|
1070
1143
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.RemoveCouponFromOrder",
|
|
1071
1144
|
packageName: PACKAGE_NAME,
|
|
1145
|
+
migrationOptions: {
|
|
1146
|
+
optInTransformResponse: true
|
|
1147
|
+
},
|
|
1072
1148
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
1073
1149
|
protoPath: "/api/v1/participants/{challengeId}/payment-orders/{participantId}/coupons/{orderId}/{couponId}",
|
|
1074
1150
|
data: payload,
|
|
@@ -1096,6 +1172,9 @@ function listSteps(payload) {
|
|
|
1096
1172
|
method: "GET",
|
|
1097
1173
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.ListSteps",
|
|
1098
1174
|
packageName: PACKAGE_NAME,
|
|
1175
|
+
migrationOptions: {
|
|
1176
|
+
optInTransformResponse: true
|
|
1177
|
+
},
|
|
1099
1178
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
1100
1179
|
protoPath: "/api/v1/participants/{challengeId}/steps/{participantId}",
|
|
1101
1180
|
data: serializedData,
|
|
@@ -1408,6 +1487,9 @@ function getStep(payload) {
|
|
|
1408
1487
|
method: "GET",
|
|
1409
1488
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.GetStep",
|
|
1410
1489
|
packageName: PACKAGE_NAME,
|
|
1490
|
+
migrationOptions: {
|
|
1491
|
+
optInTransformResponse: true
|
|
1492
|
+
},
|
|
1411
1493
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
1412
1494
|
protoPath: "/api/v1/participants/{challengeId}/steps/{participantId}/{stepId}",
|
|
1413
1495
|
data: serializedData,
|
|
@@ -2035,6 +2117,9 @@ function resolveStep(payload) {
|
|
|
2035
2117
|
method: "PATCH",
|
|
2036
2118
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.ResolveStep",
|
|
2037
2119
|
packageName: PACKAGE_NAME,
|
|
2120
|
+
migrationOptions: {
|
|
2121
|
+
optInTransformResponse: true
|
|
2122
|
+
},
|
|
2038
2123
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
2039
2124
|
protoPath: "/api/v1/participants/{challengeId}/steps/{participantId}/{stepId}",
|
|
2040
2125
|
data: serializedData,
|
|
@@ -2389,6 +2474,9 @@ function updateStepFeedback(payload) {
|
|
|
2389
2474
|
method: "PUT",
|
|
2390
2475
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.UpdateStepFeedback",
|
|
2391
2476
|
packageName: PACKAGE_NAME,
|
|
2477
|
+
migrationOptions: {
|
|
2478
|
+
optInTransformResponse: true
|
|
2479
|
+
},
|
|
2392
2480
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
2393
2481
|
protoPath: "/api/v1/participants/{challengeId}/steps/{participantId}/feedback/{stepId}",
|
|
2394
2482
|
data: serializedData,
|
|
@@ -2681,6 +2769,9 @@ function getMediaUploadInfo(payload) {
|
|
|
2681
2769
|
method: "GET",
|
|
2682
2770
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.GetMediaUploadInfo",
|
|
2683
2771
|
packageName: PACKAGE_NAME,
|
|
2772
|
+
migrationOptions: {
|
|
2773
|
+
optInTransformResponse: true
|
|
2774
|
+
},
|
|
2684
2775
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
2685
2776
|
protoPath: "/api/v1/participants/{challengeId}/media/upload_info/{participantId}",
|
|
2686
2777
|
data: payload,
|
|
@@ -2710,6 +2801,9 @@ function listSections(payload) {
|
|
|
2710
2801
|
method: "GET",
|
|
2711
2802
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.ListSections",
|
|
2712
2803
|
packageName: PACKAGE_NAME,
|
|
2804
|
+
migrationOptions: {
|
|
2805
|
+
optInTransformResponse: true
|
|
2806
|
+
},
|
|
2713
2807
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
2714
2808
|
protoPath: "/api/v1/participants/{challengeId}/sections/{participantId}",
|
|
2715
2809
|
data: payload,
|
|
@@ -3240,6 +3334,9 @@ function getSection(payload) {
|
|
|
3240
3334
|
method: "GET",
|
|
3241
3335
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.GetSection",
|
|
3242
3336
|
packageName: PACKAGE_NAME,
|
|
3337
|
+
migrationOptions: {
|
|
3338
|
+
optInTransformResponse: true
|
|
3339
|
+
},
|
|
3243
3340
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
3244
3341
|
protoPath: "/api/v1/participants/{challengeId}/sections/{participantId}/{sectionId}",
|
|
3245
3342
|
data: payload,
|
|
@@ -3770,6 +3867,9 @@ function myProgram(payload) {
|
|
|
3770
3867
|
method: "GET",
|
|
3771
3868
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.MyProgram",
|
|
3772
3869
|
packageName: PACKAGE_NAME,
|
|
3870
|
+
migrationOptions: {
|
|
3871
|
+
optInTransformResponse: true
|
|
3872
|
+
},
|
|
3773
3873
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
3774
3874
|
protoPath: "/api/v1/participants/my_program/{programId}",
|
|
3775
3875
|
data: payload,
|
|
@@ -3843,6 +3943,9 @@ function myProgramStep(payload) {
|
|
|
3843
3943
|
method: "GET",
|
|
3844
3944
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.MyProgramStep",
|
|
3845
3945
|
packageName: PACKAGE_NAME,
|
|
3946
|
+
migrationOptions: {
|
|
3947
|
+
optInTransformResponse: true
|
|
3948
|
+
},
|
|
3846
3949
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
3847
3950
|
protoPath: "/api/v1/participants/my_program/{programId}/step/{programStepId}",
|
|
3848
3951
|
data: payload,
|
|
@@ -4146,6 +4249,9 @@ function myProgramSection(payload) {
|
|
|
4146
4249
|
method: "GET",
|
|
4147
4250
|
methodFqn: "com.wixpress.achievements.api.v1.ParticipantsService.MyProgramSection",
|
|
4148
4251
|
packageName: PACKAGE_NAME,
|
|
4252
|
+
migrationOptions: {
|
|
4253
|
+
optInTransformResponse: true
|
|
4254
|
+
},
|
|
4149
4255
|
url: resolveComWixpressAchievementsApiV1ParticipantsServiceUrl({
|
|
4150
4256
|
protoPath: "/api/v1/participants/my_program/{programId}/section/{programSectionId}",
|
|
4151
4257
|
data: payload,
|
|
@@ -4674,6 +4780,128 @@ function myProgramSection(payload) {
|
|
|
4674
4780
|
return __myProgramSection;
|
|
4675
4781
|
}
|
|
4676
4782
|
|
|
4783
|
+
// src/challenges-v1-participant-online-program-participants.types.ts
|
|
4784
|
+
var ParticipantStepState = /* @__PURE__ */ ((ParticipantStepState2) => {
|
|
4785
|
+
ParticipantStepState2["PENDING"] = "PENDING";
|
|
4786
|
+
ParticipantStepState2["RUNNING"] = "RUNNING";
|
|
4787
|
+
ParticipantStepState2["COMPLETED"] = "COMPLETED";
|
|
4788
|
+
ParticipantStepState2["SKIPPED"] = "SKIPPED";
|
|
4789
|
+
ParticipantStepState2["CONFIRMED"] = "CONFIRMED";
|
|
4790
|
+
ParticipantStepState2["REJECTED"] = "REJECTED";
|
|
4791
|
+
ParticipantStepState2["OVERDUE"] = "OVERDUE";
|
|
4792
|
+
ParticipantStepState2["FAILED"] = "FAILED";
|
|
4793
|
+
return ParticipantStepState2;
|
|
4794
|
+
})(ParticipantStepState || {});
|
|
4795
|
+
var State = /* @__PURE__ */ ((State2) => {
|
|
4796
|
+
State2["JOIN_REQUESTED"] = "JOIN_REQUESTED";
|
|
4797
|
+
State2["INVITED"] = "INVITED";
|
|
4798
|
+
State2["JOIN_REJECTED"] = "JOIN_REJECTED";
|
|
4799
|
+
State2["PAYMENT_REQUESTED"] = "PAYMENT_REQUESTED";
|
|
4800
|
+
State2["PAYMENT_STARTED"] = "PAYMENT_STARTED";
|
|
4801
|
+
State2["JOINED"] = "JOINED";
|
|
4802
|
+
State2["LEFT"] = "LEFT";
|
|
4803
|
+
State2["REMOVED"] = "REMOVED";
|
|
4804
|
+
State2["RUNNING"] = "RUNNING";
|
|
4805
|
+
State2["COMPLETED"] = "COMPLETED";
|
|
4806
|
+
State2["FAILED"] = "FAILED";
|
|
4807
|
+
State2["PAYMENT_STARTED_OFFLINE"] = "PAYMENT_STARTED_OFFLINE";
|
|
4808
|
+
State2["SUSPENDED"] = "SUSPENDED";
|
|
4809
|
+
State2["AUTO_REMOVED"] = "AUTO_REMOVED";
|
|
4810
|
+
return State2;
|
|
4811
|
+
})(State || {});
|
|
4812
|
+
var ParticipationState = /* @__PURE__ */ ((ParticipationState2) => {
|
|
4813
|
+
ParticipationState2["NotStarted"] = "NotStarted";
|
|
4814
|
+
ParticipationState2["InProgress"] = "InProgress";
|
|
4815
|
+
ParticipationState2["Finished"] = "Finished";
|
|
4816
|
+
ParticipationState2["Suspended"] = "Suspended";
|
|
4817
|
+
ParticipationState2["AutoRemoved"] = "AutoRemoved";
|
|
4818
|
+
return ParticipationState2;
|
|
4819
|
+
})(ParticipationState || {});
|
|
4820
|
+
var QueryParticipantsRequestJoinPath = /* @__PURE__ */ ((QueryParticipantsRequestJoinPath2) => {
|
|
4821
|
+
QueryParticipantsRequestJoinPath2["UNKNOWN_JOIN_PATH"] = "UNKNOWN_JOIN_PATH";
|
|
4822
|
+
QueryParticipantsRequestJoinPath2["FREE"] = "FREE";
|
|
4823
|
+
QueryParticipantsRequestJoinPath2["ADDED"] = "ADDED";
|
|
4824
|
+
QueryParticipantsRequestJoinPath2["SINGLE_PAYMENT"] = "SINGLE_PAYMENT";
|
|
4825
|
+
QueryParticipantsRequestJoinPath2["PAID_PLAN"] = "PAID_PLAN";
|
|
4826
|
+
return QueryParticipantsRequestJoinPath2;
|
|
4827
|
+
})(QueryParticipantsRequestJoinPath || {});
|
|
4828
|
+
var QueryParticipantsRequestSortingCriterion = /* @__PURE__ */ ((QueryParticipantsRequestSortingCriterion2) => {
|
|
4829
|
+
QueryParticipantsRequestSortingCriterion2["DEFAULT"] = "DEFAULT";
|
|
4830
|
+
QueryParticipantsRequestSortingCriterion2["JOIN_DATE"] = "JOIN_DATE";
|
|
4831
|
+
QueryParticipantsRequestSortingCriterion2["NAME"] = "NAME";
|
|
4832
|
+
QueryParticipantsRequestSortingCriterion2["LAST_EVENT"] = "LAST_EVENT";
|
|
4833
|
+
QueryParticipantsRequestSortingCriterion2["PERFORMANCE"] = "PERFORMANCE";
|
|
4834
|
+
return QueryParticipantsRequestSortingCriterion2;
|
|
4835
|
+
})(QueryParticipantsRequestSortingCriterion || {});
|
|
4836
|
+
var QueryParticipantsRequestSortingOrder = /* @__PURE__ */ ((QueryParticipantsRequestSortingOrder2) => {
|
|
4837
|
+
QueryParticipantsRequestSortingOrder2["ORDER_DEFAULT"] = "ORDER_DEFAULT";
|
|
4838
|
+
QueryParticipantsRequestSortingOrder2["ORDER_ASC"] = "ORDER_ASC";
|
|
4839
|
+
QueryParticipantsRequestSortingOrder2["ORDER_DESC"] = "ORDER_DESC";
|
|
4840
|
+
return QueryParticipantsRequestSortingOrder2;
|
|
4841
|
+
})(QueryParticipantsRequestSortingOrder || {});
|
|
4842
|
+
var SortingCriterion = /* @__PURE__ */ ((SortingCriterion2) => {
|
|
4843
|
+
SortingCriterion2["DEFAULT"] = "DEFAULT";
|
|
4844
|
+
SortingCriterion2["JOIN_DATE"] = "JOIN_DATE";
|
|
4845
|
+
SortingCriterion2["NAME"] = "NAME";
|
|
4846
|
+
SortingCriterion2["LAST_EVENT"] = "LAST_EVENT";
|
|
4847
|
+
SortingCriterion2["PERFORMANCE"] = "PERFORMANCE";
|
|
4848
|
+
return SortingCriterion2;
|
|
4849
|
+
})(SortingCriterion || {});
|
|
4850
|
+
var SortingOrder = /* @__PURE__ */ ((SortingOrder2) => {
|
|
4851
|
+
SortingOrder2["ORDER_DEFAULT"] = "ORDER_DEFAULT";
|
|
4852
|
+
SortingOrder2["ORDER_ASC"] = "ORDER_ASC";
|
|
4853
|
+
SortingOrder2["ORDER_DESC"] = "ORDER_DESC";
|
|
4854
|
+
return SortingOrder2;
|
|
4855
|
+
})(SortingOrder || {});
|
|
4856
|
+
var PaymentType = /* @__PURE__ */ ((PaymentType2) => {
|
|
4857
|
+
PaymentType2["SINGLE_PAYMENT"] = "SINGLE_PAYMENT";
|
|
4858
|
+
PaymentType2["PAID_PLANS"] = "PAID_PLANS";
|
|
4859
|
+
return PaymentType2;
|
|
4860
|
+
})(PaymentType || {});
|
|
4861
|
+
var DescriptionFieldSet = /* @__PURE__ */ ((DescriptionFieldSet2) => {
|
|
4862
|
+
DescriptionFieldSet2["EXTENDED"] = "EXTENDED";
|
|
4863
|
+
DescriptionFieldSet2["STANDARD"] = "STANDARD";
|
|
4864
|
+
return DescriptionFieldSet2;
|
|
4865
|
+
})(DescriptionFieldSet || {});
|
|
4866
|
+
var ChoiceRightness = /* @__PURE__ */ ((ChoiceRightness2) => {
|
|
4867
|
+
ChoiceRightness2["NEUTRAL"] = "NEUTRAL";
|
|
4868
|
+
ChoiceRightness2["RIGHT"] = "RIGHT";
|
|
4869
|
+
ChoiceRightness2["WRONG"] = "WRONG";
|
|
4870
|
+
return ChoiceRightness2;
|
|
4871
|
+
})(ChoiceRightness || {});
|
|
4872
|
+
var QuizType = /* @__PURE__ */ ((QuizType2) => {
|
|
4873
|
+
QuizType2["QUIZ"] = "QUIZ";
|
|
4874
|
+
QuizType2["QUESTIONNAIRE"] = "QUESTIONNAIRE";
|
|
4875
|
+
return QuizType2;
|
|
4876
|
+
})(QuizType || {});
|
|
4877
|
+
var DurationUnit = /* @__PURE__ */ ((DurationUnit2) => {
|
|
4878
|
+
DurationUnit2["WEEKS"] = "WEEKS";
|
|
4879
|
+
DurationUnit2["DAYS"] = "DAYS";
|
|
4880
|
+
DurationUnit2["HOURS"] = "HOURS";
|
|
4881
|
+
DurationUnit2["MINUTES"] = "MINUTES";
|
|
4882
|
+
return DurationUnit2;
|
|
4883
|
+
})(DurationUnit || {});
|
|
4884
|
+
var ResolutionStatus = /* @__PURE__ */ ((ResolutionStatus2) => {
|
|
4885
|
+
ResolutionStatus2["COMPLETED"] = "COMPLETED";
|
|
4886
|
+
ResolutionStatus2["SKIPPED"] = "SKIPPED";
|
|
4887
|
+
ResolutionStatus2["UNDO"] = "UNDO";
|
|
4888
|
+
ResolutionStatus2["QUIZ_SUBMIT"] = "QUIZ_SUBMIT";
|
|
4889
|
+
return ResolutionStatus2;
|
|
4890
|
+
})(ResolutionStatus || {});
|
|
4891
|
+
var Status = /* @__PURE__ */ ((Status2) => {
|
|
4892
|
+
Status2["COMPLETED"] = "COMPLETED";
|
|
4893
|
+
Status2["FAILED"] = "FAILED";
|
|
4894
|
+
return Status2;
|
|
4895
|
+
})(Status || {});
|
|
4896
|
+
var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
4897
|
+
WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
|
|
4898
|
+
WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
|
|
4899
|
+
WebhookIdentityType2["MEMBER"] = "MEMBER";
|
|
4900
|
+
WebhookIdentityType2["WIX_USER"] = "WIX_USER";
|
|
4901
|
+
WebhookIdentityType2["APP"] = "APP";
|
|
4902
|
+
return WebhookIdentityType2;
|
|
4903
|
+
})(WebhookIdentityType || {});
|
|
4904
|
+
|
|
4677
4905
|
// src/challenges-v1-participant-online-program-participants.meta.ts
|
|
4678
4906
|
function queryParticipants2() {
|
|
4679
4907
|
const payload = { challengeId: ":challengeId" };
|
|
@@ -5312,6 +5540,22 @@ function myProgramSection2() {
|
|
|
5312
5540
|
}
|
|
5313
5541
|
// Annotate the CommonJS export names for ESM import in node:
|
|
5314
5542
|
0 && (module.exports = {
|
|
5543
|
+
ChoiceRightnessOriginal,
|
|
5544
|
+
DescriptionFieldSetOriginal,
|
|
5545
|
+
DurationUnitOriginal,
|
|
5546
|
+
ParticipantStepStateOriginal,
|
|
5547
|
+
ParticipationStateOriginal,
|
|
5548
|
+
PaymentTypeOriginal,
|
|
5549
|
+
QueryParticipantsRequestJoinPathOriginal,
|
|
5550
|
+
QueryParticipantsRequestSortingCriterionOriginal,
|
|
5551
|
+
QueryParticipantsRequestSortingOrderOriginal,
|
|
5552
|
+
QuizTypeOriginal,
|
|
5553
|
+
ResolutionStatusOriginal,
|
|
5554
|
+
SortingCriterionOriginal,
|
|
5555
|
+
SortingOrderOriginal,
|
|
5556
|
+
StateOriginal,
|
|
5557
|
+
StatusOriginal,
|
|
5558
|
+
WebhookIdentityTypeOriginal,
|
|
5315
5559
|
addAllParticipant,
|
|
5316
5560
|
addParticipant,
|
|
5317
5561
|
addParticipants,
|