@@ -52,9 +52,9 @@ export default defineAction({
5252 "xml" ,
5353 ] ,
5454 } ,
55- markAsExportedFilter : {
55+ markedAsExported : {
5656 type : "boolean" ,
57- label : "Mark as Exported (Filter) " ,
57+ label : "Marked as Exported" ,
5858 description : "Filters out reports that have already been exported with that label out" ,
5959 optional : true ,
6060 } ,
@@ -74,7 +74,7 @@ export default defineAction({
7474 employeeEmail : {
7575 type : "string" ,
7676 label : "Employee Email" ,
77- description : "The reports will be exported from that the specified employee email" ,
77+ description : "Export reports for the specified employee email" ,
7878 optional : true ,
7979 } ,
8080 policyIds : {
@@ -171,20 +171,20 @@ export default defineAction({
171171 startDate : this . startDate ,
172172 endDate : this . endDate ,
173173 approvedAfter : this . approvedAfter ,
174- markAsExported : this . markAsExportedFilter ,
174+ markedAsExported : this . markedAsExported ,
175175 policyIDList : this . policyIds
176176 ? this . policyIds . join ( "," )
177177 : undefined ,
178178 } ,
179- reportStates : this . reportStates
179+ reportState : this . reportStates
180180 ? this . reportStates . join ( "," )
181181 : undefined ,
182182 employeeEmail : this . employeeEmail ,
183183 limit : this . limit ,
184184 } ,
185185 outputSettings : {
186186 fileExtension : this . fileExtension ,
187- fileBaseName : this . fileBaseName ,
187+ fileBasename : this . fileBaseName ,
188188 includeFullPageReceiptsPdf : this . includeFullPageReceiptsPdf ,
189189 } ,
190190 onFinish,
0 commit comments