File tree 3 files changed +26
-1
lines changed
3 files changed +26
-1
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,10 @@ const validChallengeParams = {
45
45
StartDate : 'startDate' ,
46
46
ProjectId : 'projectId' ,
47
47
Name : 'name' ,
48
+ Type : 'type' ,
49
+ NumOfSubmissions : 'numOfSubmissions' ,
50
+ NumOfRegistrants : 'numOfRegistrants' ,
51
+ Status : 'status' ,
48
52
TypeId : 'typeId' ,
49
53
Prizes : 'overview.totalPrizes'
50
54
}
Original file line number Diff line number Diff line change @@ -360,6 +360,9 @@ paths:
360
360
projectId,
361
361
name,
362
362
typeId,
363
+ numOfRegistrants,
364
+ numOfSubmissions,
365
+ status,
363
366
overview.totalPrizes,
364
367
]
365
368
- name : sortOrder
@@ -3007,7 +3010,7 @@ definitions:
3007
3010
type : boolean
3008
3011
selfServiceCopilot :
3009
3012
type : string
3010
- cancelReason :
3013
+ cancelReason :
3011
3014
type : string
3012
3015
billing :
3013
3016
type : object
Original file line number Diff line number Diff line change @@ -41,6 +41,24 @@ const initES = async () => {
41
41
} ,
42
42
normalizer : 'custom_sort_normalizer'
43
43
} ,
44
+ status : {
45
+ type : 'keyword' ,
46
+ fields : {
47
+ text : {
48
+ type : 'text'
49
+ }
50
+ } ,
51
+ normalizer : 'custom_sort_normalizer'
52
+ } ,
53
+ type : {
54
+ type : 'keyword' ,
55
+ fields : {
56
+ text : {
57
+ type : 'text'
58
+ }
59
+ } ,
60
+ normalizer : 'custom_sort_normalizer'
61
+ } ,
44
62
prizeSets : {
45
63
properties : {
46
64
type : { type : 'text' } ,
You can’t perform that action at this time.
0 commit comments