Skip to content

Commit

Permalink
Bump version to 1.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikescops committed Sep 1, 2023
1 parent db56d71 commit 92a0638
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dashlane/cli",
"version": "1.13.0",
"version": "1.14.1",
"description": "Manage your Dashlane vault through a CLI tool",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/cliVersion.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { CliVersion } from './types';

export const CLI_VERSION: CliVersion = { major: 1, minor: 13, patch: 0 };
export const CLI_VERSION: CliVersion = { major: 1, minor: 14, patch: 1 };
export const breakingChangesVersions: CliVersion[] = [];

export const cliVersionToString = (version: CliVersion): string => {
Expand Down
8 changes: 4 additions & 4 deletions src/command-handlers/teamLogs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { getTeamDeviceCredentials, jsonToCsv, epochTimestampToIso } from '../uti
import { GenericLog } from '../types/logs';

export const runTeamLogs = async (options: {
start: number;
end: number;
start: string;
end: string;
type: string;
category: string;
csv: boolean;
Expand All @@ -17,8 +17,8 @@ export const runTeamLogs = async (options: {

let logs = await getAuditLogs({
teamDeviceCredentials,
startDateRangeUnix: start,
endDateRangeUnix: end,
startDateRangeUnix: parseInt(start),
endDateRangeUnix: parseInt(end),
logType: type,
category,
});
Expand Down
2 changes: 1 addition & 1 deletion src/utils/strings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const customParseTimestampMilliseconds = (value: string, _dummyPrevious:
if (parsedValue < 999999999999 || parsedValue > 100000000000000) {
throw new commander.InvalidArgumentError('Timestamp must be in milliseconds.');
}
return parsedValue;
return parsedValue.toString();
};

/** Remove underscores and capitalize string */
Expand Down

0 comments on commit 92a0638

Please sign in to comment.