diff --git a/.eslintrc.js b/.eslintrc.js index f8e2339..e4da6a6 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -73,7 +73,6 @@ module.exports = { "@typescript-eslint/no-shadow": ["error"], "no-throw-literal": "error", "no-undef-init": "error", - "no-undefined": "error", "no-underscore-dangle": "error", "no-unneeded-ternary": "error", "no-unused-expressions": "error", diff --git a/src/alpaca/actions.ts b/src/alpaca/actions.ts index e3d7375..83fc753 100644 --- a/src/alpaca/actions.ts +++ b/src/alpaca/actions.ts @@ -22,7 +22,12 @@ export class AlpacaActionProvider { readonly fetchActions = (options: ActionFetchOptions): Promise => { return (this.alpaca.getAccountActivities({ activityTypes: "FILL", + until: undefined, + after: undefined, direction: "desc", + date: undefined, + pageSize: undefined, + pageToken: undefined, }) as Promise).then((activities) => { return new ActionFetchResponse( activities