node-opcua-address-space 2.88.0 → 2.89.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/source/address_space_ts.d.ts +4 -4
- package/dist/source/address_space_ts.js +3 -3
- package/dist/source/address_space_ts.js.map +1 -1
- package/dist/source/helpers/argument_list.js +8 -12
- package/dist/source/helpers/argument_list.js.map +1 -1
- package/dist/source/helpers/call_helpers.d.ts +1 -1
- package/dist/source/helpers/multiform_func.d.ts +8 -8
- package/dist/source/interfaces/alarms_and_conditions/ua_condition_ex.d.ts +1 -1
- package/dist/source/interfaces/extension_object_constructor.d.ts +1 -1
- package/dist/source/interfaces/state_machine/ua_state_machine_type.d.ts +2 -2
- package/dist/source/loader/generateAddressSpaceRaw.d.ts +2 -2
- package/dist/source/loader/make_xml_extension_object_parser.d.ts +1 -1
- package/dist/source/loader/namespace_post_step.d.ts +1 -1
- package/dist/source/session_context.d.ts +1 -1
- package/dist/src/address_space.js +11 -11
- package/dist/src/address_space.js.map +1 -1
- package/dist/src/apply_condition_refresh.d.ts +1 -1
- package/dist/src/base_node_impl.js +44 -44
- package/dist/src/base_node_impl.js.map +1 -1
- package/dist/src/event_data.d.ts +2 -2
- package/dist/src/extension_object_array_node.d.ts +1 -1
- package/dist/src/extension_object_array_node.js +11 -9
- package/dist/src/extension_object_array_node.js.map +1 -1
- package/dist/src/nodeid_manager.d.ts +3 -3
- package/dist/src/nodeset_tools/nodeset_to_xml.d.ts +1 -1
- package/dist/src/reference_impl.js +6 -6
- package/dist/src/reference_impl.js.map +1 -1
- package/dist/src/tool_isSupertypeOf.d.ts +4 -4
- package/dist/src/ua_data_type_impl.js +12 -12
- package/dist/src/ua_data_type_impl.js.map +1 -1
- package/dist/src/ua_method_impl.js +6 -6
- package/dist/src/ua_method_impl.js.map +1 -1
- package/dist/src/ua_object_impl.js +7 -7
- package/dist/src/ua_object_impl.js.map +1 -1
- package/dist/src/ua_object_type_impl.js +6 -6
- package/dist/src/ua_object_type_impl.js.map +1 -1
- package/dist/src/ua_reference_type_impl.js +6 -6
- package/dist/src/ua_reference_type_impl.js.map +1 -1
- package/dist/src/ua_variable_impl.d.ts +4 -0
- package/dist/src/ua_variable_impl.js +41 -54
- package/dist/src/ua_variable_impl.js.map +1 -1
- package/dist/src/ua_variable_impl_ext_obj.d.ts +10 -8
- package/dist/src/ua_variable_impl_ext_obj.js +287 -240
- package/dist/src/ua_variable_impl_ext_obj.js.map +1 -1
- package/dist/src/ua_variable_type_impl.js +7 -7
- package/dist/src/ua_variable_type_impl.js.map +1 -1
- package/dist/src/ua_view_impl.js +3 -3
- package/dist/src/ua_view_impl.js.map +1 -1
- package/package.json +26 -26
- package/source/address_space_ts.ts +1 -1
- package/source/helpers/argument_list.ts +26 -26
- package/src/extension_object_array_node.ts +11 -10
- package/src/ua_variable_impl.ts +40 -51
- package/src/ua_variable_impl_ext_obj.ts +333 -288
- package/src/ua_variable_type_impl.ts +4 -4
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { BindExtensionObjectOptions } from "node-opcua-address-space-base";
|
|
1
|
+
import { BindExtensionObjectOptions, UAVariable } from "node-opcua-address-space-base";
|
|
2
2
|
import { PreciseClock } from "node-opcua-date-time";
|
|
3
3
|
import { ExtensionObject } from "node-opcua-extension-object";
|
|
4
4
|
import { UAVariableImpl } from "./ua_variable_impl";
|
|
5
|
+
export declare function getProxyTarget(ext: any): any;
|
|
5
6
|
/**
|
|
6
7
|
* inconditionnaly change the time stamp of the variable
|
|
7
8
|
* if the variable is being listened to, and if the minimumSamplingInterval is exactly zero,
|
|
@@ -9,11 +10,12 @@ import { UAVariableImpl } from "./ua_variable_impl";
|
|
|
9
10
|
*
|
|
10
11
|
*/
|
|
11
12
|
export declare function _touchValue(property: UAVariableImpl, now: PreciseClock): void;
|
|
12
|
-
export declare function propagateTouchValueUpward(self: UAVariableImpl, now: PreciseClock): void;
|
|
13
|
-
export declare function
|
|
14
|
-
export declare function
|
|
15
|
-
export declare function
|
|
16
|
-
export declare function
|
|
17
|
-
export declare function
|
|
18
|
-
export declare function
|
|
13
|
+
export declare function propagateTouchValueUpward(self: UAVariableImpl, now: PreciseClock, cache?: Set<UAVariable>): void;
|
|
14
|
+
export declare function setExtensionObjectPartialValue(node: UAVariableImpl, partialObject: any, sourceTimestamp?: PreciseClock): void;
|
|
15
|
+
export declare function _installExtensionObjectBindingOnProperties(uaVariable: UAVariableImpl, options?: BindExtensionObjectOptions): void;
|
|
16
|
+
export declare function _bindExtensionObject(uaVariable: UAVariableImpl, optionalExtensionObject?: ExtensionObject, options?: BindExtensionObjectOptions): ExtensionObject | null;
|
|
17
|
+
export declare function _bindExtensionObjectArrayOrMatrix(uaVariable: UAVariableImpl, optionalExtensionObjectArray?: ExtensionObject[], options?: BindExtensionObjectOptions): ExtensionObject[];
|
|
18
|
+
export declare function getElement(path: string | string[], data: any): any;
|
|
19
|
+
export declare function setElement(path: string | string[], data: any, value: any): void;
|
|
20
|
+
export declare function incrementElement(path: string | string[], data: any): void;
|
|
19
21
|
export declare function extractPartialData(path: string | string[], extensionObject: ExtensionObject): any;
|