node-opcua-status-code
Advanced tools
Comparing version 2.86.0 to 2.86.1
@@ -420,3 +420,3 @@ /** | ||
static GoodNoData: ConstantStatusCode; | ||
/** The data or event field was successfully replaced in the historical database. */ | ||
/** More data is available in the time range beyond the number of values requested. */ | ||
static GoodMoreData: ConstantStatusCode; | ||
@@ -437,2 +437,4 @@ /** The requested number of Aggregates does not match the requested number of NodeIds. */ | ||
static BadRequestNotComplete: ConstantStatusCode; | ||
/** The operation is not allowed because a transaction is in progress. */ | ||
static BadTransactionPending: ConstantStatusCode; | ||
/** The device identity needs a ticket before it can be accepted. */ | ||
@@ -442,2 +444,4 @@ static BadTicketRequired: ConstantStatusCode; | ||
static BadTicketInvalid: ConstantStatusCode; | ||
/** The requested operation is not allowed, because the Node is locked by a different application. */ | ||
static BadLocked: ConstantStatusCode; | ||
/** The value does not come from the real source and has been edited by the server. */ | ||
@@ -444,0 +448,0 @@ static GoodEdited: ConstantStatusCode; |
@@ -6,7 +6,7 @@ /// <reference types="node" /> | ||
import { StatusCode } from "./opcua_status_code"; | ||
export type ErrorCallback = (err?: Error) => void; | ||
export type Callback2<T> = (err: Error | null, result?: T) => void; | ||
export type CallbackT<T> = (err: Error | null, result?: T) => void; | ||
export type StatusCodeCallback = CallbackT<StatusCode>; | ||
export type CallbackWithData = CallbackT<Buffer>; | ||
export type Callback<T> = (err: Error | null, result?: T) => void; | ||
export declare type ErrorCallback = (err?: Error) => void; | ||
export declare type Callback2<T> = (err: Error | null, result?: T) => void; | ||
export declare type CallbackT<T> = (err: Error | null, result?: T) => void; | ||
export declare type StatusCodeCallback = CallbackT<StatusCode>; | ||
export declare type CallbackWithData = CallbackT<Buffer>; | ||
export declare type Callback<T> = (err: Error | null, result?: T) => void; |
{ | ||
"name": "node-opcua-status-code", | ||
"version": "2.86.0", | ||
"version": "2.86.1", | ||
"description": "pure nodejs OPCUA SDK - module -status-code", | ||
@@ -36,3 +36,3 @@ "main": "./dist/index.js", | ||
"homepage": "http://node-opcua.github.io/", | ||
"gitHead": "36afc46fe2c91aa5664a8c5418f4db5a354670c3" | ||
"gitHead": "389ba18585ff4b62f6fee58b69bd871a8e6b0dff" | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
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
284246
4580