From 9e99c8d17ca8b184d36037cacb8eab2c97f7bb00 Mon Sep 17 00:00:00 2001 From: Carter Bertolini Date: Tue, 14 Nov 2023 17:06:39 -0500 Subject: [PATCH 1/2] Remove const from action side and date type. --- src/interface/actions.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/interface/actions.ts b/src/interface/actions.ts index e03b8af..a81fd97 100644 --- a/src/interface/actions.ts +++ b/src/interface/actions.ts @@ -1,7 +1,7 @@ /** * Enum representing the possible sides of an action. */ -export const enum ActionSide { +export enum ActionSide { Buy, Sell, } @@ -41,7 +41,7 @@ export interface Action { * Enum representing the type of date filter used in an action fetch. * @enum {number} */ -export const enum ActionDateType { +export enum ActionDateType { On, After, Before, From 4ded18b7c91e1b3f9e83c626b9b5215eadd0acc9 Mon Sep 17 00:00:00 2001 From: Carter Bertolini Date: Tue, 14 Nov 2023 17:06:57 -0500 Subject: [PATCH 2/2] Bump package version. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f31cbd4..e9a8ee3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@finvis/usxi", - "version": "1.6.0", + "version": "1.7.0", "description": "", "main": "./dist/index.js", "types": "./dist/index.d.ts",