Skip to content

Commit

Permalink
fix: typescript missing export field
Browse files Browse the repository at this point in the history
  • Loading branch information
vanhtuan0409 committed Jan 18, 2024
1 parent ed41e3c commit d3db21e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@anduintransaction/rivendell",
"version": "0.5.0",
"version": "0.5.1",
"repository": {
"type": "git",
"url": "git+https://github.com/anduintransaction/rivendell.git"
Expand Down
4 changes: 2 additions & 2 deletions js/src/secrets/infisical.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ClientSettings, InfisicalClient, LogLevel } from "@infisical/sdk";
import { ClientSettings, InfisicalClient } from "@infisical/sdk";
import { SecretProvider } from "../context";

export interface InfisicalOpt extends ClientSettings {
Expand All @@ -18,7 +18,7 @@ export class InfisicalSecretProvider implements SecretProvider {
this.projectId = projectId;
this.client = new InfisicalClient({
...rest,
logLevel: debug ? LogLevel.Debug : LogLevel.Warn,
logLevel: debug ? 1 : 3,
});
}

Expand Down

0 comments on commit d3db21e

Please sign in to comment.