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

node-opcua-basic-types

Package Overview
Dependencies
Maintainers
1
Versions
170
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-opcua-basic-types - npm Package Compare versions

Comparing version 2.88.0 to 2.89.0

2

dist/boolean.d.ts

@@ -7,4 +7,4 @@ import { BinaryStream, OutputBinaryStream } from "node-opcua-binary-stream";

export declare function coerceBoolean(value: string): boolean;
export declare type UABoolean = boolean;
export type UABoolean = boolean;
export declare const encodeUABoolean: typeof encodeBoolean;
export declare const decodeUABoolean: typeof decodeBoolean;

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

export declare function isValidByteString(value: unknown): boolean;
export declare type ByteString = Buffer;
export type ByteString = Buffer;
export declare function randomByteString(value: unknown, len: number): ByteString;

@@ -10,0 +10,0 @@ export declare function encodeByteString(byteString: ByteString, stream: OutputBinaryStream): void;

@@ -6,2 +6,2 @@ /***

import { DateWithPicoseconds } from "node-opcua-date-time";
export declare type DateTime = Date | DateWithPicoseconds | null;
export type DateTime = Date | DateWithPicoseconds | null;

@@ -6,3 +6,3 @@ /***

export declare function isValidFloat(value: number): boolean;
export declare type Float = number;
export type Float = number;
export declare function randomFloat(): Float;

@@ -12,3 +12,3 @@ export declare function encodeFloat(value: Float, stream: OutputBinaryStream): void;

export declare function isValidDouble(value: number): boolean;
export declare type Double = number;
export type Double = number;
export declare function randomDouble(): Double;

@@ -15,0 +15,0 @@ export declare function encodeDouble(value: Double, stream: OutputBinaryStream): void;

@@ -6,5 +6,5 @@ /***

export { isValidGuid, emptyGuid } from "node-opcua-guid";
export declare type Guid = string;
export type Guid = string;
export declare function randomGuid(): Guid;
export declare function encodeGuid(guid: Guid, stream: OutputBinaryStream): void;
export declare function decodeGuid(stream: BinaryStream, value?: Guid): Guid;

@@ -19,2 +19,2 @@ /***

export * from "./string";
export declare type ByteString = Buffer;
export type ByteString = Buffer;
import { BinaryStream, OutputBinaryStream } from "node-opcua-binary-stream";
export declare function isValidUInt16(value: number): boolean;
export declare type UInt8 = number;
export declare type UInt16 = number;
export declare type UInt32 = number;
export declare type UInt64 = UInt32[];
export declare type Int8 = number;
export declare type Int16 = number;
export declare type Int32 = number;
export declare type Int64 = UInt32[];
export declare type Byte = UInt8;
export declare type SByte = Int8;
export type UInt8 = number;
export type UInt16 = number;
export type UInt32 = number;
export type UInt64 = UInt32[];
export type Int8 = number;
export type Int16 = number;
export type Int32 = number;
export type Int64 = UInt32[];
export type Byte = UInt8;
export type SByte = Int8;
export declare function randomUInt16(): UInt16;

@@ -14,0 +14,0 @@ export declare function encodeUInt16(value: UInt16, stream: OutputBinaryStream): void;

@@ -7,4 +7,4 @@ /***

export declare function validateLocaleId(value: unknown): boolean;
export declare type LocaleId = UAString;
export type LocaleId = UAString;
export declare function encodeLocaleId(localeId: LocaleId, stream: OutputBinaryStream): void;
export declare function decodeLocaleId(stream: BinaryStream): LocaleId;

@@ -9,5 +9,5 @@ /***

export declare function encodeString(value: null | string, stream: OutputBinaryStream): void;
export declare type CharArray = string;
export declare type UAString = string | null;
export type CharArray = string;
export type UAString = string | null;
export declare const decodeUAString: typeof decodeString;
export declare const encodeUAString: typeof encodeString;
{
"name": "node-opcua-basic-types",
"version": "2.88.0",
"version": "2.89.0",
"description": "pure nodejs OPCUA SDK - module -basic-types",

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

"node-opcua-assert": "2.88.0",
"node-opcua-binary-stream": "2.88.0",
"node-opcua-binary-stream": "2.89.0",
"node-opcua-buffer-utils": "2.88.0",
"node-opcua-date-time": "2.88.0",
"node-opcua-date-time": "2.89.0",
"node-opcua-guid": "2.88.0",
"node-opcua-nodeid": "2.88.0",
"node-opcua-status-code": "2.88.0"
"node-opcua-status-code": "2.89.0"
},

@@ -44,3 +44,3 @@ "devDependencies": {

"homepage": "http://node-opcua.github.io/",
"gitHead": "0c20078b474f36855b799557f8fe931dbe20c2ca"
"gitHead": "93d5502a1b71afbb5e5fa56846615c412b63cc1b"
}
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