node-opcua-factory 2.76.0 → 2.76.2

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.
Files changed (66) hide show
  1. package/dist/base_ua_object.d.ts +53 -53
  2. package/dist/base_ua_object.js +535 -535
  3. package/dist/basic_type.d.ts +40 -40
  4. package/dist/basic_type.js +118 -118
  5. package/dist/builtin_types.d.ts +46 -46
  6. package/dist/builtin_types.js +283 -283
  7. package/dist/builtin_types_special.d.ts +5 -5
  8. package/dist/builtin_types_special.js +45 -45
  9. package/dist/constructor_type.d.ts +15 -0
  10. package/dist/constructor_type.js +3 -0
  11. package/dist/constructor_type.js.map +1 -0
  12. package/dist/datatype_factory.d.ts +36 -36
  13. package/dist/datatype_factory.js +307 -307
  14. package/dist/encode_decode.d.ts +9 -9
  15. package/dist/encode_decode.js +39 -39
  16. package/dist/enumerations.d.ts +32 -32
  17. package/dist/enumerations.js +77 -77
  18. package/dist/factories_baseobject.d.ts +56 -0
  19. package/dist/factories_baseobject.js +535 -0
  20. package/dist/factories_baseobject.js.map +1 -0
  21. package/dist/factories_basic_type.d.ts +40 -0
  22. package/dist/factories_basic_type.js +136 -0
  23. package/dist/factories_basic_type.js.map +1 -0
  24. package/dist/factories_builtin_types.d.ts +32 -0
  25. package/dist/factories_builtin_types.js +262 -0
  26. package/dist/factories_builtin_types.js.map +1 -0
  27. package/dist/factories_builtin_types_special.d.ts +5 -0
  28. package/dist/factories_builtin_types_special.js +46 -0
  29. package/dist/factories_builtin_types_special.js.map +1 -0
  30. package/dist/factories_enumerations.d.ts +31 -0
  31. package/dist/factories_enumerations.js +78 -0
  32. package/dist/factories_enumerations.js.map +1 -0
  33. package/dist/factories_factories.d.ts +17 -0
  34. package/dist/factories_factories.js +54 -0
  35. package/dist/factories_factories.js.map +1 -0
  36. package/dist/factories_id_generator.d.ts +3 -0
  37. package/dist/factories_id_generator.js +22 -0
  38. package/dist/factories_id_generator.js.map +1 -0
  39. package/dist/factories_schema_helpers.d.ts +27 -0
  40. package/dist/factories_schema_helpers.js +122 -0
  41. package/dist/factories_schema_helpers.js.map +1 -0
  42. package/dist/factories_structuredTypeSchema.d.ts +45 -0
  43. package/dist/factories_structuredTypeSchema.js +277 -0
  44. package/dist/factories_structuredTypeSchema.js.map +1 -0
  45. package/dist/get_built_in_type.js +1 -1
  46. package/dist/get_standard_data_type_factory.d.ts +12 -12
  47. package/dist/get_standard_data_type_factory.js +34 -34
  48. package/dist/get_structured_type_schema.d.ts +4 -4
  49. package/dist/get_structured_type_schema.js +12 -12
  50. package/dist/id_generator.d.ts +3 -3
  51. package/dist/id_generator.js +21 -21
  52. package/dist/index.d.ts +18 -18
  53. package/dist/index.js +34 -34
  54. package/dist/nodeid_type.d.ts +13 -13
  55. package/dist/nodeid_type.js +18 -18
  56. package/dist/parameters.d.ts +3 -3
  57. package/dist/parameters.js +6 -6
  58. package/dist/register_class_definition.d.ts +3 -3
  59. package/dist/register_class_definition.js +8 -8
  60. package/dist/schema_helpers.d.ts +24 -24
  61. package/dist/schema_helpers.js +99 -99
  62. package/dist/structured_type_schema.d.ts +44 -44
  63. package/dist/structured_type_schema.js +278 -278
  64. package/dist/types.d.ts +151 -151
  65. package/dist/types.js +9 -9
  66. package/package.json +9 -9
@@ -1,53 +1,53 @@
1
- import { BinaryStream, OutputBinaryStream } from "node-opcua-binary-stream";
2
- import { Func1, IStructuredTypeSchema, IBaseUAObject, DecodeDebugOptions } from "./types";
3
- export interface BaseUAObject extends IBaseUAObject {
4
- schema: IStructuredTypeSchema;
5
- }
6
- /**
7
- * @class BaseUAObject
8
- * @constructor
9
- */
10
- export declare class BaseUAObject {
11
- constructor();
12
- /**
13
- * Encode the object to the binary stream.
14
- * @class BaseUAObject
15
- * @method encode
16
- * @param stream {BinaryStream}
17
- */
18
- encode(stream: OutputBinaryStream): void;
19
- /**
20
- * Decode the object from the binary stream.
21
- * @class BaseUAObject
22
- * @method decode
23
- * @param stream {BinaryStream}
24
- */
25
- decode(stream: BinaryStream): void;
26
- /**
27
- * Calculate the required size to store this object in a binary stream.
28
- * @method binaryStoreSize
29
- * @return number
30
- */
31
- binaryStoreSize(): number;
32
- /**
33
- * @method toString
34
- * @return {String}
35
- */
36
- toString(...args: any[]): string;
37
- /**
38
- *
39
- * verify that all object attributes values are valid according to schema
40
- * @method isValid
41
- * @return boolean
42
- */
43
- isValid(): boolean;
44
- /**
45
- * @method decodeDebug
46
- *
47
- */
48
- decodeDebug(stream: BinaryStream, options: DecodeDebugOptions): void;
49
- explore(): string;
50
- applyOnAllFields<T>(func: Func1<T>, data: T): void;
51
- toJSON(): any;
52
- clone(): any;
53
- }
1
+ import { BinaryStream, OutputBinaryStream } from "node-opcua-binary-stream";
2
+ import { Func1, IStructuredTypeSchema, IBaseUAObject, DecodeDebugOptions } from "./types";
3
+ export interface BaseUAObject extends IBaseUAObject {
4
+ schema: IStructuredTypeSchema;
5
+ }
6
+ /**
7
+ * @class BaseUAObject
8
+ * @constructor
9
+ */
10
+ export declare class BaseUAObject {
11
+ constructor();
12
+ /**
13
+ * Encode the object to the binary stream.
14
+ * @class BaseUAObject
15
+ * @method encode
16
+ * @param stream {BinaryStream}
17
+ */
18
+ encode(stream: OutputBinaryStream): void;
19
+ /**
20
+ * Decode the object from the binary stream.
21
+ * @class BaseUAObject
22
+ * @method decode
23
+ * @param stream {BinaryStream}
24
+ */
25
+ decode(stream: BinaryStream): void;
26
+ /**
27
+ * Calculate the required size to store this object in a binary stream.
28
+ * @method binaryStoreSize
29
+ * @return number
30
+ */
31
+ binaryStoreSize(): number;
32
+ /**
33
+ * @method toString
34
+ * @return {String}
35
+ */
36
+ toString(...args: any[]): string;
37
+ /**
38
+ *
39
+ * verify that all object attributes values are valid according to schema
40
+ * @method isValid
41
+ * @return boolean
42
+ */
43
+ isValid(): boolean;
44
+ /**
45
+ * @method decodeDebug
46
+ *
47
+ */
48
+ decodeDebug(stream: BinaryStream, options: DecodeDebugOptions): void;
49
+ explore(): string;
50
+ applyOnAllFields<T>(func: Func1<T>, data: T): void;
51
+ toJSON(): any;
52
+ clone(): any;
53
+ }