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

node-opcua-address-space-base

Package Overview
Dependencies
Maintainers
1
Versions
105
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-opcua-address-space-base - npm Package Compare versions

Comparing version 2.86.0 to 2.86.1

2

dist/address_space.d.ts

@@ -20,3 +20,3 @@ import { ExtensionObject } from "node-opcua-extension-object";

import { UAView } from "./ua_view";
export type ShutdownTask = ((this: IAddressSpace) => void) | ((this: IAddressSpace) => Promise<void>);
export declare type ShutdownTask = ((this: IAddressSpace) => void) | ((this: IAddressSpace) => Promise<void>);
interface UARootFolder_Objects extends UAObject {

@@ -23,0 +23,0 @@ server: UAObject;

/// <reference types="node" />
import { EventEmitter } from "events";
export type Duration = number;
export declare type Duration = number;
import { AccessRestrictionsFlag, AttributeIds, BrowseDirection, LocalizedText, NodeClass, QualifiedName, QualifiedNameLike, QualifiedNameOptions } from "node-opcua-data-model";

@@ -5,0 +5,0 @@ import { DataType } from "node-opcua-variant";

@@ -9,15 +9,15 @@ import { Variant, VariantLike } from "node-opcua-variant";

import { ContinuationData, ISessionContext } from "./session_context";
export type VariableSetterVariation1 = (this: UAVariable, value: Variant) => StatusCode;
export type VariableSetterVariation2 = (this: UAVariable, value: Variant, callback: CallbackT<StatusCode>) => void;
export type VariableSetter = VariableSetterVariation1 | VariableSetterVariation2;
export type HistoryReadFunc = (context: ISessionContext, historyReadDetails: ReadRawModifiedDetails | ReadEventDetails | ReadProcessedDetails | ReadAtTimeDetails, indexRange: NumericRange | null, dataEncoding: QualifiedNameLike | null, continuationData: ContinuationData, callback: CallbackT<HistoryReadResult>) => void;
export type GetFunc = (this: UAVariable) => Variant;
export type SetFunc = VariableSetter | null;
export type VariableDataValueGetterSync = (this: UAVariable) => DataValue;
export type VariableDataValueGetterPromise = (this: UAVariable) => Promise<DataValue>;
export type VariableDataValueGetterCallback = (this: UAVariable, callback: CallbackT<DataValue>) => void;
export type VariableDataValueSetterWithCallback = (this: UAVariable, dataValue: DataValue, callback: CallbackT<StatusCode>) => void;
export type VariableDataValueSetterWithPromise = (this: UAVariable, dataValue: DataValue) => Promise<StatusCode>;
export type TimestampGetFunc = VariableDataValueGetterSync | VariableDataValueGetterPromise | VariableDataValueGetterCallback;
export type TimestampSetFunc = VariableDataValueSetterWithCallback | VariableDataValueSetterWithPromise;
export declare type VariableSetterVariation1 = (this: UAVariable, value: Variant) => StatusCode;
export declare type VariableSetterVariation2 = (this: UAVariable, value: Variant, callback: CallbackT<StatusCode>) => void;
export declare type VariableSetter = VariableSetterVariation1 | VariableSetterVariation2;
export declare type HistoryReadFunc = (context: ISessionContext, historyReadDetails: ReadRawModifiedDetails | ReadEventDetails | ReadProcessedDetails | ReadAtTimeDetails, indexRange: NumericRange | null, dataEncoding: QualifiedNameLike | null, continuationData: ContinuationData, callback: CallbackT<HistoryReadResult>) => void;
export declare type GetFunc = (this: UAVariable) => Variant;
export declare type SetFunc = VariableSetter | null;
export declare type VariableDataValueGetterSync = (this: UAVariable) => DataValue;
export declare type VariableDataValueGetterPromise = (this: UAVariable) => Promise<DataValue>;
export declare type VariableDataValueGetterCallback = (this: UAVariable, callback: CallbackT<DataValue>) => void;
export declare type VariableDataValueSetterWithCallback = (this: UAVariable, dataValue: DataValue, callback: CallbackT<StatusCode>) => void;
export declare type VariableDataValueSetterWithPromise = (this: UAVariable, dataValue: DataValue) => Promise<StatusCode>;
export declare type TimestampGetFunc = VariableDataValueGetterSync | VariableDataValueGetterPromise | VariableDataValueGetterCallback;
export declare type TimestampSetFunc = VariableDataValueSetterWithCallback | VariableDataValueSetterWithPromise;
export interface BindVariableOptionsVariation1 {

@@ -53,2 +53,2 @@ get: GetFunc;

}
export type BindVariableOptions = BindVariableOptionsVariation1 | BindVariableOptionsVariation2 | BindVariableOptionsVariation3 | BindVariableOptionsVariation4;
export declare type BindVariableOptions = BindVariableOptionsVariation1 | BindVariableOptionsVariation2 | BindVariableOptionsVariation3 | BindVariableOptionsVariation4;
import { ByteString } from "node-opcua-basic-types";
export type ContinuationPoint = ByteString;
export declare type ContinuationPoint = ByteString;

@@ -1,1 +0,1 @@

export type ModellingRuleType = "Mandatory" | "Optional" | "MandatoryPlaceholder" | "OptionalPlaceholder" | "ExposesItsArray" | null;
export declare type ModellingRuleType = "Mandatory" | "Optional" | "MandatoryPlaceholder" | "OptionalPlaceholder" | "ExposesItsArray" | null;

@@ -95,3 +95,3 @@ import { QualifiedNameLike, AccessRestrictionsFlag, LocalizedTextLike } from "node-opcua-data-model";

}
export type AccessLevelString = string;
export declare type AccessLevelString = string;
export interface VariableStuff {

@@ -209,3 +209,3 @@ dataType?: string | NodeIdLike | UADataType;

}
export type CreateNodeOptions = any;
export declare type CreateNodeOptions = any;
export interface RequiredModel {

@@ -212,0 +212,0 @@ modelUri: string;

@@ -14,3 +14,3 @@ import { NodeClass } from "node-opcua-data-model";

export declare type MethodFunctorA = (this: UAMethod, inputArguments: Variant[], context: ISessionContext) => Promise<CallMethodResultOptions>;
export type MethodFunctor = MethodFunctorC | MethodFunctorA;
export declare type MethodFunctor = MethodFunctorC | MethodFunctorA;
export declare class UAMethod extends BaseNode {

@@ -17,0 +17,0 @@ readonly nodeClass: NodeClass.Method;

@@ -14,3 +14,3 @@ /// <reference types="node" />

import { EventNotifierFlags } from "./event_notifier_flags";
export type EventTypeLike = string | NodeId | UAEventType;
export declare type EventTypeLike = string | NodeId | UAEventType;
export interface PseudoVariantNull {

@@ -105,4 +105,4 @@ dataType: "Null" | DataType.Null;

}
export type PseudoVariantNumber = PseudoVariantUInt32 | PseudoVariantUInt16 | PseudoVariantByte | PseudoVariantInt32 | PseudoVariantInt16 | PseudoVariantSByte | PseudoVariantDouble | PseudoVariantFloat;
export type PseudoVariant = PseudoVariantNull | PseudoVariantString | PseudoVariantBoolean | PseudoVariantByteString | PseudoVariantNodeId | PseudoVariantDateTime | PseudoVariantByteString | PseudoVariantDuration | PseudoVariantLocalizedText | PseudoVariantStatusCode | PseudoVariantNumber | PseudoVariantExtensionObject | PseudoVariantExtensionObjectArray | PseudoVariantVariant | PseudoVariantVariantArray;
export declare type PseudoVariantNumber = PseudoVariantUInt32 | PseudoVariantUInt16 | PseudoVariantByte | PseudoVariantInt32 | PseudoVariantInt16 | PseudoVariantSByte | PseudoVariantDouble | PseudoVariantFloat;
export declare type PseudoVariant = PseudoVariantNull | PseudoVariantString | PseudoVariantBoolean | PseudoVariantByteString | PseudoVariantNodeId | PseudoVariantDateTime | PseudoVariantByteString | PseudoVariantDuration | PseudoVariantLocalizedText | PseudoVariantStatusCode | PseudoVariantNumber | PseudoVariantExtensionObject | PseudoVariantExtensionObjectArray | PseudoVariantVariant | PseudoVariantVariantArray;
export interface RaiseEventData {

@@ -109,0 +109,0 @@ $eventDataSource?: UAEventType;

@@ -37,3 +37,3 @@ import { AttributeIds, CallbackT, PreciseClock, StatusCode, StatusCodeCallback, UInt32 } from "node-opcua-basic-types";

}
export type IHistoricalDataNodeOptions = IVariableHistorianOptions | {
export declare type IHistoricalDataNodeOptions = IVariableHistorianOptions | {
historian: IVariableHistorian;

@@ -40,0 +40,0 @@ };

{
"name": "node-opcua-address-space-base",
"version": "2.86.0",
"version": "2.86.1",
"description": "pure nodejs OPCUA SDK - module -address-space",

@@ -19,15 +19,15 @@ "main": "./dist/index.js",

"dependencies": {
"node-opcua-basic-types": "2.86.0",
"node-opcua-basic-types": "2.86.1",
"node-opcua-constants": "2.77.0",
"node-opcua-crypto": "^2.1.2",
"node-opcua-data-model": "2.86.0",
"node-opcua-data-value": "2.86.0",
"node-opcua-data-model": "2.86.1",
"node-opcua-data-value": "2.86.1",
"node-opcua-date-time": "2.86.0",
"node-opcua-extension-object": "2.86.0",
"node-opcua-extension-object": "2.86.1",
"node-opcua-nodeid": "2.86.0",
"node-opcua-numeric-range": "2.86.0",
"node-opcua-schemas": "2.86.0",
"node-opcua-status-code": "2.86.0",
"node-opcua-types": "2.86.0",
"node-opcua-variant": "2.86.0"
"node-opcua-numeric-range": "2.86.1",
"node-opcua-schemas": "2.86.1",
"node-opcua-status-code": "2.86.1",
"node-opcua-types": "2.86.1",
"node-opcua-variant": "2.86.1"
},

@@ -49,3 +49,3 @@ "author": "Etienne Rossignon",

"homepage": "http://node-opcua.github.io/",
"gitHead": "36afc46fe2c91aa5664a8c5418f4db5a354670c3"
"gitHead": "389ba18585ff4b62f6fee58b69bd871a8e6b0dff"
}
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