Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@aircall/logger

Package Overview
Dependencies
Maintainers
5
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aircall/logger - npm Package Compare versions

Comparing version 2.8.3 to 2.8.4

dist/logger.cjs.development.js

4

CHANGELOG.md

@@ -6,2 +6,6 @@ # Change Log

## [2.8.4](https://gitlab.com/aircall/shared/front-end-modules/compare/@aircall/logger@2.8.3...@aircall/logger@2.8.4) (2023-01-27)
**Note:** Version bump only for package @aircall/logger
## [2.8.3](https://gitlab.com/aircall/shared/front-end-modules/compare/@aircall/logger@2.8.2...@aircall/logger@2.8.3) (2023-01-13)

@@ -8,0 +12,0 @@

@@ -0,0 +0,0 @@ import { Action } from 'redux';

export declare const DEBUG_MODE_LIMIT_STORED_ACTIONS = 20;
export declare const SENSITIVE_KEYS: string[];
export declare const DEFAULT_SENSITIVE_TEXT = "<sensitive>";
export * from './actions';
export * from './middleware';
export * from './Logger';

12

dist/index.js

@@ -1,4 +0,8 @@

export * from './actions';
export * from './middleware';
export * from './Logger';
//# sourceMappingURL=index.js.map
'use strict'
if (process.env.NODE_ENV === 'production') {
module.exports = require('./logger.cjs.production.min.js')
} else {
module.exports = require('./logger.cjs.development.js')
}

@@ -0,0 +0,0 @@ import { StatusType, LogsEvent } from '@datadog/browser-logs';

@@ -0,0 +0,0 @@ import { Action, Dispatch } from 'redux';

@@ -0,0 +0,0 @@ declare type ObjectRecord = Record<string, any>;

{
"name": "@aircall/logger",
"version": "2.8.3",
"version": "2.8.4",
"main": "dist/index.js",
"module": "dist/logger.esm.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {

@@ -10,5 +12,5 @@ "compile:schema:validation": "rm -rf src/validate-schema.js && ts-node scripts/validations/build-validate-schema.mjs",

"prebuild": "yarn compile:schema:validation",
"start": "tsc -w",
"start": "npx tsdx watch",
"clean": "rm -rf dist",
"build": "tsc"
"build": "npx tsdx build"
},

@@ -18,3 +20,3 @@ "publishConfig": {

},
"gitHead": "8b834c28bfd294b3c6094b1b3103f033cd57f227",
"gitHead": "f059e6e4b1680327760f83292a1c8735f118bed4",
"dependencies": {

@@ -21,0 +23,0 @@ "@datadog/browser-logs": "4.23.3",

@@ -20,14 +20,2 @@ import { datadogLogs as sdk, StatusType, HandlerType, LogsEvent } from '@datadog/browser-logs';

// Corresponds to the required properties for all logs across Aircall services and apps
interface MandatoryFields {
version: string;
env: string;
service: string;
host: string;
timestamp: string; // date-time format
level: StatusType;
message: string;
user?: User;
}
export declare interface User extends Context {

@@ -34,0 +22,0 @@ id?: number;

@@ -6,10 +6,10 @@ {

"baseUrl": ".",
"rootDir": "./src",
"outDir": "./dist",
"rootDir": "./src",
"paths": {
"@aircall/*": ["../../node_modules/@aircall/*/src"]
},
}
},
"include": ["**/*.ts"],
"exclude": ["node_modules", "dist", "**/*.spec.ts"]
"exclude": ["node_modules", "dist", "scripts", "**/*.spec.ts"]
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc