@integromat/proto
Advanced tools
Comparing version 2.2.0 to 2.3.0
@@ -11,2 +11,3 @@ /// <reference types="node" /> | ||
export type EnvironmentData = Record<string, any>; | ||
export type InternalData = Record<string, any>; | ||
export declare enum ModuleType { | ||
@@ -58,2 +59,3 @@ NONE = 0, | ||
environment: EnvironmentData | null; | ||
internal: InternalData | null; | ||
/** | ||
@@ -60,0 +62,0 @@ * Initializes the module. Function that overrides should always call super. |
@@ -83,2 +83,3 @@ "use strict"; | ||
_this.environment = null; | ||
_this.internal = null; | ||
return _this; | ||
@@ -85,0 +86,0 @@ } |
/// <reference types="node" /> | ||
import { EventEmitter } from 'events'; | ||
import { CommonData, EnvironmentData, Parameters } from './base'; | ||
import { CommonData, EnvironmentData, InternalData, Parameters } from './base'; | ||
import { DoneCallback, DoneWithResultCallback } from './types'; | ||
@@ -16,2 +16,3 @@ /** | ||
environment: EnvironmentData | null; | ||
internal: InternalData | null; | ||
constructor(); | ||
@@ -18,0 +19,0 @@ /** |
@@ -34,2 +34,3 @@ "use strict"; | ||
_this.environment = null; | ||
_this.internal = null; | ||
return _this; | ||
@@ -36,0 +37,0 @@ } |
@@ -12,3 +12,3 @@ { | ||
], | ||
"version": "2.2.0", | ||
"version": "2.3.0", | ||
"main": "dist/index.js", | ||
@@ -15,0 +15,0 @@ "types": "dist/index.d.ts", |
@@ -18,2 +18,4 @@ import * as util from 'util'; | ||
export type InternalData = Record<string, any>; | ||
export enum ModuleType { | ||
@@ -68,2 +70,3 @@ NONE = 0, | ||
public environment: EnvironmentData | null = null; | ||
public internal: InternalData | null = null; | ||
@@ -70,0 +73,0 @@ /** |
import { EventEmitter } from 'events'; | ||
import { CommonData, EnvironmentData, Parameters } from './base'; | ||
import { CommonData, EnvironmentData, InternalData, Parameters } from './base'; | ||
import { DoneCallback, DoneWithResultCallback } from './types'; | ||
@@ -17,2 +17,3 @@ | ||
public environment: EnvironmentData | null; | ||
public internal: InternalData | null; | ||
@@ -25,2 +26,3 @@ constructor() { | ||
this.environment = null; | ||
this.internal = null; | ||
} | ||
@@ -27,0 +29,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
170539
3648