node-opcua-pseudo-session
Advanced tools
Comparing version 2.6.0-alpha.6 to 2.6.0-alpha.7
@@ -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; |
{ | ||
"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
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
21454
334
13
+ Addednode-opcua-service-write@2.139.0(transitive)
Updatednode-opcua-service-translate-browse-path@^2.6.0-alpha.7