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

node-opcua-pseudo-session

Package Overview
Dependencies
Maintainers
1
Versions
205
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-opcua-pseudo-session - npm Package Compare versions

Comparing version 2.6.0-alpha.6 to 2.6.0-alpha.7

8

dist/basic_session_interface.d.ts

@@ -7,4 +7,6 @@ /// <reference types="node" />

import { ReadValueIdOptions } from "node-opcua-service-read";
import { WriteValueOptions } from "node-opcua-service-write";
import { BrowsePath, BrowsePathResult } from "node-opcua-service-translate-browse-path";
import { Variant } from "node-opcua-variant";
import { StatusCode } from "node-opcua-status-code";
export declare type BrowseDescriptionLike = string | BrowseDescriptionOptions;

@@ -53,2 +55,8 @@ export declare type ReadValueIdLike = ReadValueIdOptions;

}
export interface IBaseSession {
write(nodeToWrite: WriteValueOptions, callback: ResponseCallback<StatusCode>): void;
write(nodesToWrite: WriteValueOptions[], callback: ResponseCallback<StatusCode[]>): void;
write(nodeToWrite: WriteValueOptions): Promise<StatusCode>;
write(nodesToWrite: WriteValueOptions[]): Promise<StatusCode[]>;
}
export declare function getArgumentDefinitionHelper(session: IBasicSession, methodId: MethodId, callback: ResponseCallback<ArgumentDefinition>): void;

19

package.json
{
"name": "node-opcua-pseudo-session",
"version": "2.6.0-alpha.6",
"version": "2.6.0-alpha.7",
"description": "pure nodejs OPCUA SDK - module -client-proxy",

@@ -15,12 +15,13 @@ "scripts": {

"async": "^3.2.0",
"node-opcua-data-model": "^2.6.0-alpha.1",
"node-opcua-data-value": "^2.6.0-alpha.6",
"node-opcua-data-model": "^2.6.0-alpha.7",
"node-opcua-data-value": "^2.6.0-alpha.7",
"node-opcua-nodeid": "^2.6.0-alpha.1",
"node-opcua-service-browse": "^2.6.0-alpha.6",
"node-opcua-service-call": "^2.6.0-alpha.6",
"node-opcua-service-read": "^2.6.0-alpha.6",
"node-opcua-service-translate-browse-path": "^2.6.0-alpha.6",
"node-opcua-service-browse": "^2.6.0-alpha.7",
"node-opcua-service-call": "^2.6.0-alpha.7",
"node-opcua-service-read": "^2.6.0-alpha.7",
"node-opcua-service-translate-browse-path": "^2.6.0-alpha.7",
"node-opcua-service-write": "^2.6.0-alpha.7",
"node-opcua-status-code": "^2.6.0-alpha.1",
"node-opcua-utils": "^2.6.0-alpha.1",
"node-opcua-variant": "^2.6.0-alpha.6",
"node-opcua-variant": "^2.6.0-alpha.7",
"underscore": "^1.10.2"

@@ -43,3 +44,3 @@ },

"homepage": "http://node-opcua.github.io/",
"gitHead": "8c187b05d678baf80703dec448e9d9ed1813ba16"
"gitHead": "6af0c6f183dcb96ddc5a2befc98851d0960c5fd0"
}

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

import {
WriteValueOptions
} from "node-opcua-service-write";
import {
BrowsePath,

@@ -33,2 +36,3 @@ BrowsePathResult

import { Variant } from "node-opcua-variant";
import { StatusCode } from "node-opcua-status-code";

@@ -143,2 +147,12 @@ export type BrowseDescriptionLike = string | BrowseDescriptionOptions;

export interface IBaseSession {
write(nodeToWrite: WriteValueOptions, callback: ResponseCallback<StatusCode>): void;
write(nodesToWrite: WriteValueOptions[], callback: ResponseCallback<StatusCode[]>): void;
write(nodeToWrite: WriteValueOptions): Promise<StatusCode>;
write(nodesToWrite: WriteValueOptions[]): Promise<StatusCode[]>;
}
export function getArgumentDefinitionHelper(

@@ -145,0 +159,0 @@ session: IBasicSession,

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