diff --git a/package.json b/package.json index e8b5633..6f4ab77 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "build": "npm run clean && tsc && node scripts/esbuild.js" }, "dependencies": { - "@tribufu/mintaka": "0.1.7" + "@tribufu/mintaka": "0.1.8" }, "devDependencies": { "@types/node": "^20.10.6", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 374c681..953fa75 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -6,8 +6,8 @@ settings: dependencies: '@tribufu/mintaka': - specifier: 0.1.7 - version: 0.1.7 + specifier: 0.1.8 + version: 0.1.8 devDependencies: '@types/node': @@ -260,8 +260,8 @@ packages: dev: true optional: true - /@tribufu/mintaka@0.1.7: - resolution: {integrity: sha512-9GZb4WzChV8NCWV9Z3Q2n5TSg7XLZKjv6H2+spCaIhqdolhak/V/IT/3hNoMHmK1Oygm4MXrn6p9lA/DfcUq/w==} + /@tribufu/mintaka@0.1.8: + resolution: {integrity: sha512-qUvReWlz8irSIbKCTfjFnUnUq7MIgLjnTBPeWv2ayyiwGkf8L3q7qi1Zxuqt3OduOugSOtxYQwXOaClldIMUTQ==} dependencies: axios: 1.6.4 camelcase-keys: 9.1.2 diff --git a/src/api.ts b/src/api.ts index 32c0be5..0e94a38 100644 --- a/src/api.ts +++ b/src/api.ts @@ -28,7 +28,7 @@ export class TribufuApi { this.http = new HttpClient({ baseUrl: TribufuApi.getBaseUrl(), headers: TribufuApi.defaultHeaders(), - enableLog: TribufuApi.debugEnabled(), + logEnabled: TribufuApi.debugEnabled(), jsonRequestCasing: JsonCasing.SnakeCase, jsonResponseCasing: JsonCasing.CamelCase, });