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

@integromat/proto

Package Overview
Dependencies
Maintainers
76
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@integromat/proto - npm Package Compare versions

Comparing version 2.2.0 to 2.3.0

2

dist/base.d.ts

@@ -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 @@ }

3

dist/rpc.d.ts
/// <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

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