New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gtm-event-tracker

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gtm-event-tracker - npm Package Compare versions

Comparing version 1.7.0-beta.3 to 1.7.0-beta.4

8

dist/configuration/configuration-types.d.ts

@@ -5,7 +5,7 @@ /**

*/
export declare type LoggerConfigurations = {
export declare type LoggerConfigurations = Partial<{
debugAll: boolean;
debugEvents: boolean;
debugContext: boolean;
};
}>;
/**

@@ -15,4 +15,4 @@ * All available configuration options.

*/
export declare type Configurations = {
export declare type Configurations = Partial<{
logger: LoggerConfigurations;
};
}>;
import type { Configurations } from './configuration-types';
export declare function createConfiguration(): {
get: () => Configurations;
get: () => Partial<{
logger: Partial<{
debugAll: boolean;
debugEvents: boolean;
debugContext: boolean;
}>;
}>;
defaults: () => Configurations;
configure: (customConfigs: Partial<Configurations>) => void;
configure: (customConfigs: Configurations) => void;
};
export declare const configuration: {
get: () => Configurations;
get: () => Partial<{
logger: Partial<{
debugAll: boolean;
debugEvents: boolean;
debugContext: boolean;
}>;
}>;
defaults: () => Configurations;
configure: (customConfigs: Partial<Configurations>) => void;
configure: (customConfigs: Configurations) => void;
};

@@ -16,2 +28,2 @@ /**

*/
export declare const configure: (customConfigs: Partial<Configurations>) => void;
export declare const configure: (customConfigs: Configurations) => void;

@@ -5,5 +5,5 @@ /**

*/
export declare type Configurations = {
export declare type Configurations = Partial<{
logger: LoggerConfigurations;
};
}>;

@@ -14,3 +14,3 @@ /**

*/
export declare const configure: (customConfigs: Partial<Configurations>) => void;
export declare const configure: (customConfigs: Configurations) => void;

@@ -71,7 +71,7 @@ /**

*/
export declare type LoggerConfigurations = {
export declare type LoggerConfigurations = Partial<{
debugAll: boolean;
debugEvents: boolean;
debugContext: boolean;
};
}>;

@@ -78,0 +78,0 @@ /**

@@ -5,3 +5,3 @@ {

"license": "MIT",
"version": "1.7.0-beta.3",
"version": "1.7.0-beta.4",
"description": "A type-safe, reusable, and flexible way for triggering Google Tag Manager track events.",

@@ -8,0 +8,0 @@ "keywords": [

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