Skip to content

Commit

Permalink
feat: add fap data export for a call (#486)
Browse files Browse the repository at this point in the history
* feat: add fap data export for a call

* fix ts config
  • Loading branch information
TCMeldrum authored Aug 9, 2024
1 parent dbd81ef commit 2a98810
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/workflows/xlsx/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export default function getXLSXWorkflowManager(
case 'proposal':
return newProposalXLSXWorkflowManager(properties);
case 'fap':
case 'call_fap':
return newFapXLSXWorkflowManager(properties);
default:
throw new Error(`Unknown XLSX type: ${xlsxType}`);
Expand Down
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"lib": [
"ES2019",
"esnext.asynciterable",
"DOM",
"DOM"
] /* Specify library files to be included in the compilation. */,
"allowJs": true /* Allow javascript files to be compiled. */,
// "checkJs": true, /* Report errors in .js files. */
Expand Down Expand Up @@ -57,8 +57,8 @@
/* Experimental Options */
"emitDecoratorMetadata": true /* Enables experimental support for emitting type metadata for decorators. */,
"experimentalDecorators": true /* Enables experimental support for ES7 decorators. */,
"resolveJsonModule": true,
"resolveJsonModule": true
},
"include": ["src"],
"exclude": ["node_modules", "**/*.spec.ts", "build", "coverage"],
"exclude": ["node_modules", "**/*.spec.ts", "build", "coverage"]
}

0 comments on commit 2a98810

Please sign in to comment.