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

node-opcua-numeric-range

Package Overview
Dependencies
Maintainers
1
Versions
187
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-opcua-numeric-range - npm Package Compare versions

Comparing version 2.0.0-alpha.11 to 2.0.0-alpha.12

8

dist/numeric_range.d.ts
import { UAString } from "node-opcua-basic-types";
import { BinaryStream } from "node-opcua-binary-stream";
import { BinaryStream, OutputBinaryStream } from "node-opcua-binary-stream";
export declare const schemaNumericRange: {

@@ -7,3 +7,3 @@ name: string;

defaultValue: () => NumericRange;
encode: (value: NumericRange | null, stream: BinaryStream) => void;
encode: (value: NumericRange | null, stream: OutputBinaryStream) => void;
decode: (stream: BinaryStream) => NumericRange;

@@ -78,8 +78,8 @@ random: () => NumericRange;

};
encode(stream: BinaryStream): void;
encode(stream: OutputBinaryStream): void;
decode(stream: BinaryStream): void;
}
export declare function encodeNumericRange(numericRange: NumericRange, stream: BinaryStream): void;
export declare function encodeNumericRange(numericRange: NumericRange, stream: OutputBinaryStream): void;
export declare function decodeNumericRange(stream: BinaryStream): NumericRange;
declare function coerceNumericRange(value: any | string | NumericRange | null | number[]): NumericRange;
export {};
{
"name": "node-opcua-numeric-range",
"version": "2.0.0-alpha.11",
"version": "2.0.0-alpha.12",
"description": "pure nodejs OPCUA SDK - module -numeric-range",

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

"node-opcua-assert": "^2.0.0-alpha.10",
"node-opcua-basic-types": "^2.0.0-alpha.11",
"node-opcua-binary-stream": "^2.0.0-alpha.10",
"node-opcua-basic-types": "^2.0.0-alpha.12",
"node-opcua-binary-stream": "^2.0.0-alpha.12",
"node-opcua-enum": "^2.0.0-alpha.10",
"node-opcua-factory": "^2.0.0-alpha.11",
"node-opcua-status-code": "^2.0.0-alpha.10",
"node-opcua-factory": "^2.0.0-alpha.12",
"node-opcua-status-code": "^2.0.0-alpha.12",
"underscore": "^1.9.1"

@@ -25,3 +25,3 @@ },

"node-opcua-nodeid": "^2.0.0-alpha.11",
"node-opcua-packet-analyzer": "^2.0.0-alpha.11",
"node-opcua-packet-analyzer": "^2.0.0-alpha.12",
"node-opcua-test-helpers": "^2.0.0-alpha.9",

@@ -43,3 +43,3 @@ "should": "13.2.3"

"homepage": "http://node-opcua.github.io/",
"gitHead": "bf7ea24732637e662af9b5b63941388e89fd3427"
"gitHead": "61699a99c75c631388f2e8d8e33eb209649c5eac"
}

@@ -8,3 +8,3 @@ /**

import { decodeString, encodeString, UAString } from "node-opcua-basic-types";
import { BinaryStream } from "node-opcua-binary-stream";
import { BinaryStream, OutputBinaryStream } from "node-opcua-binary-stream";
import { registerBasicType } from "node-opcua-factory";

@@ -54,3 +54,3 @@ import { StatusCodes } from "node-opcua-status-code";

encode: (value: NumericRange | null, stream: BinaryStream) => {
encode: (value: NumericRange | null, stream: OutputBinaryStream) => {
assert(value === null || value instanceof NumericRange);

@@ -537,3 +537,3 @@ const strValue = (value === null) ? null : value.toEncodeableString();

public encode(stream: BinaryStream) {
public encode(stream: OutputBinaryStream) {
encodeString(this.toEncodeableString(), stream);

@@ -714,3 +714,3 @@ }

export function encodeNumericRange(numericRange: NumericRange, stream: BinaryStream) {
export function encodeNumericRange(numericRange: NumericRange, stream: OutputBinaryStream) {
assert(numericRange instanceof NumericRange);

@@ -717,0 +717,0 @@ numericRange.encode(stream);

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