node-opcua-nodeset-machine-vision 2.151.0 → 2.154.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/dt_binary_id_base.d.ts +1 -1
- package/dist/dt_configuration.d.ts +1 -1
- package/dist/dt_configuration_transfer_options.d.ts +1 -1
- package/dist/dt_job_id.d.ts +1 -1
- package/dist/dt_meas_id.d.ts +1 -1
- package/dist/dt_part_id.d.ts +1 -1
- package/dist/dt_processing_times.d.ts +1 -1
- package/dist/dt_product.d.ts +1 -1
- package/dist/dt_product_id.d.ts +1 -1
- package/dist/dt_recipe_transfer_options.d.ts +1 -1
- package/dist/dt_result.d.ts +1 -1
- package/dist/dt_result_id.d.ts +1 -1
- package/dist/dt_result_transfer_options.d.ts +1 -1
- package/dist/dt_system_state_description.d.ts +1 -1
- package/dist/ua_acquisition_done_event.d.ts +1 -1
- package/dist/ua_configuration_folder.d.ts +1 -1
- package/dist/ua_configuration_management.d.ts +1 -1
- package/dist/ua_configuration_transfer.d.ts +1 -1
- package/dist/ua_enter_step_sequence_event.d.ts +1 -1
- package/dist/ua_error_event.d.ts +1 -1
- package/dist/ua_error_resolved_event.d.ts +1 -1
- package/dist/ua_job_started_event.d.ts +1 -1
- package/dist/ua_leave_step_sequence_event.d.ts +1 -1
- package/dist/ua_next_step_event.d.ts +1 -1
- package/dist/ua_product_folder.d.ts +1 -1
- package/dist/ua_ready_event.d.ts +1 -1
- package/dist/ua_recipe.d.ts +1 -1
- package/dist/ua_recipe_folder.d.ts +1 -1
- package/dist/ua_recipe_management.d.ts +1 -1
- package/dist/ua_recipe_prepared_event.d.ts +1 -1
- package/dist/ua_recipe_transfer.d.ts +1 -1
- package/dist/ua_result.d.ts +1 -1
- package/dist/ua_result_folder.d.ts +1 -1
- package/dist/ua_result_ready_event.d.ts +1 -1
- package/dist/ua_result_transfer.d.ts +1 -1
- package/dist/ua_safety_state_management.d.ts +1 -1
- package/dist/ua_state_changed_event.d.ts +1 -1
- package/dist/ua_vision_automatic_mode_state_machine.d.ts +3 -3
- package/dist/ua_vision_condition.d.ts +1 -1
- package/dist/ua_vision_event.d.ts +1 -1
- package/dist/ua_vision_safety_event.d.ts +1 -1
- package/dist/ua_vision_state_machine.d.ts +3 -3
- package/dist/ua_vision_step_model_state_machine.d.ts +4 -4
- package/dist/ua_vision_system.d.ts +3 -3
- package/package.json +10 -10
- package/source/dt_binary_id_base.ts +1 -1
- package/source/dt_configuration.ts +1 -1
- package/source/dt_configuration_transfer_options.ts +1 -1
- package/source/dt_job_id.ts +1 -1
- package/source/dt_meas_id.ts +1 -1
- package/source/dt_part_id.ts +1 -1
- package/source/dt_processing_times.ts +1 -1
- package/source/dt_product.ts +1 -1
- package/source/dt_product_id.ts +1 -1
- package/source/dt_recipe_transfer_options.ts +1 -1
- package/source/dt_result.ts +1 -1
- package/source/dt_result_id.ts +1 -1
- package/source/dt_result_transfer_options.ts +1 -1
- package/source/dt_system_state_description.ts +1 -1
- package/source/ua_acquisition_done_event.ts +1 -1
- package/source/ua_configuration_folder.ts +1 -3
- package/source/ua_configuration_management.ts +1 -2
- package/source/ua_configuration_transfer.ts +1 -5
- package/source/ua_enter_step_sequence_event.ts +1 -1
- package/source/ua_error_event.ts +1 -6
- package/source/ua_error_resolved_event.ts +1 -1
- package/source/ua_job_started_event.ts +1 -1
- package/source/ua_leave_step_sequence_event.ts +1 -1
- package/source/ua_next_step_event.ts +1 -1
- package/source/ua_product_folder.ts +1 -3
- package/source/ua_ready_event.ts +1 -1
- package/source/ua_recipe.ts +1 -1
- package/source/ua_recipe_folder.ts +1 -7
- package/source/ua_recipe_management.ts +1 -2
- package/source/ua_recipe_prepared_event.ts +1 -1
- package/source/ua_recipe_transfer.ts +1 -3
- package/source/ua_result.ts +2 -2
- package/source/ua_result_folder.ts +1 -13
- package/source/ua_result_management.ts +0 -2
- package/source/ua_result_ready_event.ts +2 -2
- package/source/ua_result_transfer.ts +1 -3
- package/source/ua_safety_state_management.ts +1 -2
- package/source/ua_state_changed_event.ts +1 -1
- package/source/ua_vision_automatic_mode_state_machine.ts +3 -8
- package/source/ua_vision_condition.ts +3 -7
- package/source/ua_vision_event.ts +1 -1
- package/source/ua_vision_safety_event.ts +1 -1
- package/source/ua_vision_state_machine.ts +3 -7
- package/source/ua_vision_step_model_state_machine.ts +4 -4
- package/source/ua_vision_system.ts +4 -5
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { LocalizedText } from "node-opcua-data-model";
|
|
2
2
|
import { UAString } from "node-opcua-basic-types";
|
|
3
3
|
import { ExtensionObject } from "node-opcua-extension-object";
|
|
4
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
4
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
|
7
7
|
* |-----------|------------------------------------------------------------|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ExtensionObject } from "node-opcua-extension-object";
|
|
2
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
2
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
|
|
3
3
|
import { DTConfigurationId } from "./dt_configuration_id";
|
|
4
4
|
/**
|
|
5
5
|
* | | |
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ExtensionObject } from "node-opcua-extension-object";
|
|
2
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
2
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
|
|
3
3
|
import { DTConfigurationId } from "./dt_configuration_id";
|
|
4
4
|
/**
|
|
5
5
|
* | | |
|
package/dist/dt_job_id.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UAString } from "node-opcua-basic-types";
|
|
2
2
|
import { ExtensionObject } from "node-opcua-extension-object";
|
|
3
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
3
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
|
|
4
4
|
/**
|
|
5
5
|
* | | |
|
|
6
6
|
* |-----------|------------------------------------------------------------|
|
package/dist/dt_meas_id.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { LocalizedText } from "node-opcua-data-model";
|
|
2
2
|
import { UAString } from "node-opcua-basic-types";
|
|
3
3
|
import { ExtensionObject } from "node-opcua-extension-object";
|
|
4
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
4
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
|
7
7
|
* |-----------|------------------------------------------------------------|
|
package/dist/dt_part_id.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { LocalizedText } from "node-opcua-data-model";
|
|
2
2
|
import { UAString } from "node-opcua-basic-types";
|
|
3
3
|
import { ExtensionObject } from "node-opcua-extension-object";
|
|
4
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
4
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
|
7
7
|
* |-----------|------------------------------------------------------------|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ExtensionObject } from "node-opcua-extension-object";
|
|
2
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
2
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
|
|
3
3
|
/**
|
|
4
4
|
* | | |
|
|
5
5
|
* |-----------|------------------------------------------------------------|
|
package/dist/dt_product.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ExtensionObject } from "node-opcua-extension-object";
|
|
2
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
2
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
|
|
3
3
|
import { DTProductId } from "./dt_product_id";
|
|
4
4
|
/**
|
|
5
5
|
* | | |
|
package/dist/dt_product_id.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { LocalizedText } from "node-opcua-data-model";
|
|
2
2
|
import { UAString } from "node-opcua-basic-types";
|
|
3
3
|
import { ExtensionObject } from "node-opcua-extension-object";
|
|
4
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
4
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
|
7
7
|
* |-----------|------------------------------------------------------------|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ExtensionObject } from "node-opcua-extension-object";
|
|
2
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
2
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
|
|
3
3
|
import { DTRecipeIdInternal } from "./dt_recipe_id_internal";
|
|
4
4
|
/**
|
|
5
5
|
* | | |
|
package/dist/dt_result.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Variant } from "node-opcua-variant";
|
|
2
2
|
import { Int32 } from "node-opcua-basic-types";
|
|
3
3
|
import { ExtensionObject } from "node-opcua-extension-object";
|
|
4
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
4
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
|
|
5
5
|
import { DTResultId } from "./dt_result_id";
|
|
6
6
|
import { DTMeasId } from "./dt_meas_id";
|
|
7
7
|
import { DTPartId } from "./dt_part_id";
|
package/dist/dt_result_id.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UAString } from "node-opcua-basic-types";
|
|
2
2
|
import { ExtensionObject } from "node-opcua-extension-object";
|
|
3
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
3
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
|
|
4
4
|
/**
|
|
5
5
|
* | | |
|
|
6
6
|
* |-----------|------------------------------------------------------------|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ExtensionObject } from "node-opcua-extension-object";
|
|
2
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
2
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
|
|
3
3
|
import { DTResultId } from "./dt_result_id";
|
|
4
4
|
/**
|
|
5
5
|
* | | |
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UAString } from "node-opcua-basic-types";
|
|
2
2
|
import { ExtensionObject } from "node-opcua-extension-object";
|
|
3
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
3
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
|
|
4
4
|
import { EnumSystemState } from "./enum_system_state";
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import { DataType } from "node-opcua-variant";
|
|
3
|
-
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/
|
|
3
|
+
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event";
|
|
4
4
|
import { DTJobId } from "./dt_job_id";
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UAObject, UAMethod } from "node-opcua-address-space-base";
|
|
2
2
|
import { DataType } from "node-opcua-variant";
|
|
3
|
-
import { UABaseDataVariable } from "node-opcua-nodeset-ua/
|
|
3
|
+
import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
4
4
|
import { DTConfiguration } from "./dt_configuration";
|
|
5
5
|
import { UAConfigurationFolder } from "./ua_configuration_folder";
|
|
6
6
|
import { UAConfigurationTransfer } from "./ua_configuration_transfer";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { UAMethod } from "node-opcua-address-space-base";
|
|
2
|
-
import { UATemporaryFileTransfer, UATemporaryFileTransfer_Base } from "node-opcua-nodeset-ua/
|
|
2
|
+
import { UATemporaryFileTransfer, UATemporaryFileTransfer_Base } from "node-opcua-nodeset-ua/dist/ua_temporary_file_transfer";
|
|
3
3
|
/**
|
|
4
4
|
* | | |
|
|
5
5
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import { DataType } from "node-opcua-variant";
|
|
3
3
|
import { Int32 } from "node-opcua-basic-types";
|
|
4
|
-
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/
|
|
4
|
+
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event";
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
|
7
7
|
* |----------------|------------------------------------------------------------|
|
package/dist/ua_error_event.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { UATransitionEvent, UATransitionEvent_Base } from "node-opcua-nodeset-ua/
|
|
1
|
+
import { UATransitionEvent, UATransitionEvent_Base } from "node-opcua-nodeset-ua/dist/ua_transition_event";
|
|
2
2
|
/**
|
|
3
3
|
* | | |
|
|
4
4
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { UATransitionEvent, UATransitionEvent_Base } from "node-opcua-nodeset-ua/
|
|
1
|
+
import { UATransitionEvent, UATransitionEvent_Base } from "node-opcua-nodeset-ua/dist/ua_transition_event";
|
|
2
2
|
/**
|
|
3
3
|
* | | |
|
|
4
4
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import { DataType } from "node-opcua-variant";
|
|
3
|
-
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/
|
|
3
|
+
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event";
|
|
4
4
|
import { DTJobId } from "./dt_job_id";
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/
|
|
1
|
+
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event";
|
|
2
2
|
/**
|
|
3
3
|
* | | |
|
|
4
4
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import { DataType } from "node-opcua-variant";
|
|
3
3
|
import { Int32 } from "node-opcua-basic-types";
|
|
4
|
-
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/
|
|
4
|
+
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event";
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
|
7
7
|
* |----------------|------------------------------------------------------------|
|
package/dist/ua_ready_event.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import { DataType } from "node-opcua-variant";
|
|
3
|
-
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/
|
|
3
|
+
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event";
|
|
4
4
|
import { DTJobId } from "./dt_job_id";
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
package/dist/ua_recipe.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UAObject, UAMethod, UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import { DataType } from "node-opcua-variant";
|
|
3
|
-
import { UAFile } from "node-opcua-nodeset-ua/
|
|
3
|
+
import { UAFile } from "node-opcua-nodeset-ua/dist/ua_file";
|
|
4
4
|
import { DTRecipeIdExternal } from "./dt_recipe_id_external";
|
|
5
5
|
import { DTRecipeIdInternal } from "./dt_recipe_id_internal";
|
|
6
6
|
import { DTProductId } from "./dt_product_id";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UAObject, UAMethod } from "node-opcua-address-space-base";
|
|
2
2
|
import { DataType } from "node-opcua-variant";
|
|
3
|
-
import { UABaseDataVariable } from "node-opcua-nodeset-ua/
|
|
3
|
+
import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
4
4
|
import { DTProduct } from "./dt_product";
|
|
5
5
|
import { UAProductFolder } from "./ua_product_folder";
|
|
6
6
|
import { UARecipeFolder } from "./ua_recipe_folder";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import { DataType } from "node-opcua-variant";
|
|
3
|
-
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/
|
|
3
|
+
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event";
|
|
4
4
|
import { DTRecipeIdExternal } from "./dt_recipe_id_external";
|
|
5
5
|
import { DTRecipeIdInternal } from "./dt_recipe_id_internal";
|
|
6
6
|
import { DTProductId } from "./dt_product_id";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { UAMethod } from "node-opcua-address-space-base";
|
|
2
|
-
import { UATemporaryFileTransfer, UATemporaryFileTransfer_Base } from "node-opcua-nodeset-ua/
|
|
2
|
+
import { UATemporaryFileTransfer, UATemporaryFileTransfer_Base } from "node-opcua-nodeset-ua/dist/ua_temporary_file_transfer";
|
|
3
3
|
/**
|
|
4
4
|
* | | |
|
|
5
5
|
* |----------------|------------------------------------------------------------|
|
package/dist/ua_result.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DataType } from "node-opcua-variant";
|
|
2
2
|
import { Int32 } from "node-opcua-basic-types";
|
|
3
|
-
import { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/
|
|
3
|
+
import { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
4
4
|
import { DTResult } from "./dt_result";
|
|
5
5
|
import { DTConfigurationId } from "./dt_configuration_id";
|
|
6
6
|
import { DTRecipeIdExternal } from "./dt_recipe_id_external";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import { DataType } from "node-opcua-variant";
|
|
3
3
|
import { Int32 } from "node-opcua-basic-types";
|
|
4
|
-
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/
|
|
4
|
+
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event";
|
|
5
5
|
import { DTConfigurationId } from "./dt_configuration_id";
|
|
6
6
|
import { DTRecipeIdExternal } from "./dt_recipe_id_external";
|
|
7
7
|
import { DTRecipeIdInternal } from "./dt_recipe_id_internal";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { UAMethod } from "node-opcua-address-space-base";
|
|
2
|
-
import { UATemporaryFileTransfer, UATemporaryFileTransfer_Base } from "node-opcua-nodeset-ua/
|
|
2
|
+
import { UATemporaryFileTransfer, UATemporaryFileTransfer_Base } from "node-opcua-nodeset-ua/dist/ua_temporary_file_transfer";
|
|
3
3
|
/**
|
|
4
4
|
* | | |
|
|
5
5
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { UAObject, UAMethod } from "node-opcua-address-space-base";
|
|
2
2
|
import { DataType } from "node-opcua-variant";
|
|
3
3
|
import { UAString } from "node-opcua-basic-types";
|
|
4
|
-
import { UABaseDataVariable } from "node-opcua-nodeset-ua/
|
|
4
|
+
import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
|
7
7
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { UATransitionEvent, UATransitionEvent_Base } from "node-opcua-nodeset-ua/
|
|
1
|
+
import { UATransitionEvent, UATransitionEvent_Base } from "node-opcua-nodeset-ua/dist/ua_transition_event";
|
|
2
2
|
/**
|
|
3
3
|
* | | |
|
|
4
4
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { UAMethod } from "node-opcua-address-space-base";
|
|
2
|
-
import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/
|
|
3
|
-
import { UAState } from "node-opcua-nodeset-ua/
|
|
4
|
-
import { UATransition } from "node-opcua-nodeset-ua/
|
|
2
|
+
import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
|
|
3
|
+
import { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
4
|
+
import { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
5
5
|
import { UAVisionStepModelStateMachine } from "./ua_vision_step_model_state_machine";
|
|
6
6
|
/**
|
|
7
7
|
* | | |
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import { DataType } from "node-opcua-variant";
|
|
3
3
|
import { UInt64, UAString } from "node-opcua-basic-types";
|
|
4
|
-
import { UAAcknowledgeableCondition, UAAcknowledgeableCondition_Base } from "node-opcua-nodeset-ua/
|
|
4
|
+
import { UAAcknowledgeableCondition, UAAcknowledgeableCondition_Base } from "node-opcua-nodeset-ua/dist/ua_acknowledgeable_condition";
|
|
5
5
|
import { DTConfigurationId } from "./dt_configuration_id";
|
|
6
6
|
import { DTRecipeIdExternal } from "./dt_recipe_id_external";
|
|
7
7
|
import { DTRecipeIdInternal } from "./dt_recipe_id_internal";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import { DataType } from "node-opcua-variant";
|
|
3
3
|
import { UAString } from "node-opcua-basic-types";
|
|
4
|
-
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/
|
|
4
|
+
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event";
|
|
5
5
|
import { DTConfigurationId } from "./dt_configuration_id";
|
|
6
6
|
import { DTRecipeIdExternal } from "./dt_recipe_id_external";
|
|
7
7
|
import { DTRecipeIdInternal } from "./dt_recipe_id_internal";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import { DataType } from "node-opcua-variant";
|
|
3
3
|
import { UAString } from "node-opcua-basic-types";
|
|
4
|
-
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/
|
|
4
|
+
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event";
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
|
7
7
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { UAMethod } from "node-opcua-address-space-base";
|
|
2
|
-
import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/
|
|
3
|
-
import { UAState } from "node-opcua-nodeset-ua/
|
|
4
|
-
import { UATransition } from "node-opcua-nodeset-ua/
|
|
2
|
+
import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
|
|
3
|
+
import { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
4
|
+
import { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
5
5
|
import { UAVisionAutomaticModeStateMachine } from "./ua_vision_automatic_mode_state_machine";
|
|
6
6
|
import { UAVisionStepModelStateMachine } from "./ua_vision_step_model_state_machine";
|
|
7
7
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { UAMethod } from "node-opcua-address-space-base";
|
|
2
|
-
import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/
|
|
3
|
-
import { UAInitialState } from "node-opcua-nodeset-ua/
|
|
4
|
-
import { UATransition } from "node-opcua-nodeset-ua/
|
|
5
|
-
import { UAState } from "node-opcua-nodeset-ua/
|
|
2
|
+
import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
|
|
3
|
+
import { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state";
|
|
4
|
+
import { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
5
|
+
import { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
6
6
|
/**
|
|
7
7
|
* | | |
|
|
8
8
|
* |----------------|------------------------------------------------------------|
|
|
@@ -2,9 +2,9 @@ import { UAObject, UAMethod } from "node-opcua-address-space-base";
|
|
|
2
2
|
import { DataType } from "node-opcua-variant";
|
|
3
3
|
import { LocalizedText } from "node-opcua-data-model";
|
|
4
4
|
import { UInt16 } from "node-opcua-basic-types";
|
|
5
|
-
import { UAFiniteStateVariable } from "node-opcua-nodeset-ua/
|
|
6
|
-
import { UAState } from "node-opcua-nodeset-ua/
|
|
7
|
-
import { UABaseDataVariable } from "node-opcua-nodeset-ua/
|
|
5
|
+
import { UAFiniteStateVariable } from "node-opcua-nodeset-ua/dist/ua_finite_state_variable";
|
|
6
|
+
import { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
7
|
+
import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
8
8
|
import { DTSystemStateDescription } from "./dt_system_state_description";
|
|
9
9
|
import { UAVisionStateMachine } from "./ua_vision_state_machine";
|
|
10
10
|
import { UAVisionAutomaticModeStateMachine } from "./ua_vision_automatic_mode_state_machine";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-nodeset-machine-vision",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.154.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module node-opcua-nodeset-machine-vision",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -11,14 +11,14 @@
|
|
|
11
11
|
"author": "Etienne Rossignon <etienne.rossignon@sterfive.com>",
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"node-opcua-address-space-base": "2.
|
|
15
|
-
"node-opcua-basic-types": "2.
|
|
16
|
-
"node-opcua-data-model": "2.
|
|
17
|
-
"node-opcua-extension-object": "2.
|
|
18
|
-
"node-opcua-nodeid": "2.
|
|
19
|
-
"node-opcua-nodeset-ua": "2.
|
|
20
|
-
"node-opcua-status-code": "2.
|
|
21
|
-
"node-opcua-variant": "2.
|
|
14
|
+
"node-opcua-address-space-base": "2.154.0",
|
|
15
|
+
"node-opcua-basic-types": "2.154.0",
|
|
16
|
+
"node-opcua-data-model": "2.154.0",
|
|
17
|
+
"node-opcua-extension-object": "2.154.0",
|
|
18
|
+
"node-opcua-nodeid": "2.153.0",
|
|
19
|
+
"node-opcua-nodeset-ua": "2.154.0",
|
|
20
|
+
"node-opcua-status-code": "2.153.0",
|
|
21
|
+
"node-opcua-variant": "2.154.0"
|
|
22
22
|
},
|
|
23
23
|
"files": [
|
|
24
24
|
"dist",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"internet of things"
|
|
38
38
|
],
|
|
39
39
|
"homepage": "http://node-opcua.github.io/",
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "134c73195f93f46c0101b2837bed22754156c916"
|
|
41
41
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { LocalizedText } from "node-opcua-data-model"
|
|
3
3
|
import { UAString } from "node-opcua-basic-types"
|
|
4
4
|
import { ExtensionObject } from "node-opcua-extension-object"
|
|
5
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
5
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure"
|
|
6
6
|
/**
|
|
7
7
|
* | | |
|
|
8
8
|
* |-----------|------------------------------------------------------------|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { ExtensionObject } from "node-opcua-extension-object"
|
|
3
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
3
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure"
|
|
4
4
|
import { DTConfigurationId } from "./dt_configuration_id"
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { ExtensionObject } from "node-opcua-extension-object"
|
|
3
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
3
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure"
|
|
4
4
|
import { DTConfigurationId } from "./dt_configuration_id"
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
package/source/dt_job_id.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAString } from "node-opcua-basic-types"
|
|
3
3
|
import { ExtensionObject } from "node-opcua-extension-object"
|
|
4
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
4
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure"
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
|
7
7
|
* |-----------|------------------------------------------------------------|
|
package/source/dt_meas_id.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { LocalizedText } from "node-opcua-data-model"
|
|
3
3
|
import { UAString } from "node-opcua-basic-types"
|
|
4
4
|
import { ExtensionObject } from "node-opcua-extension-object"
|
|
5
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
5
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure"
|
|
6
6
|
/**
|
|
7
7
|
* | | |
|
|
8
8
|
* |-----------|------------------------------------------------------------|
|
package/source/dt_part_id.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { LocalizedText } from "node-opcua-data-model"
|
|
3
3
|
import { UAString } from "node-opcua-basic-types"
|
|
4
4
|
import { ExtensionObject } from "node-opcua-extension-object"
|
|
5
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
5
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure"
|
|
6
6
|
/**
|
|
7
7
|
* | | |
|
|
8
8
|
* |-----------|------------------------------------------------------------|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { ExtensionObject } from "node-opcua-extension-object"
|
|
3
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
3
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure"
|
|
4
4
|
/**
|
|
5
5
|
* | | |
|
|
6
6
|
* |-----------|------------------------------------------------------------|
|
package/source/dt_product.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { ExtensionObject } from "node-opcua-extension-object"
|
|
3
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
3
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure"
|
|
4
4
|
import { DTProductId } from "./dt_product_id"
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
package/source/dt_product_id.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { LocalizedText } from "node-opcua-data-model"
|
|
3
3
|
import { UAString } from "node-opcua-basic-types"
|
|
4
4
|
import { ExtensionObject } from "node-opcua-extension-object"
|
|
5
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
5
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure"
|
|
6
6
|
/**
|
|
7
7
|
* | | |
|
|
8
8
|
* |-----------|------------------------------------------------------------|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { ExtensionObject } from "node-opcua-extension-object"
|
|
3
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
3
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure"
|
|
4
4
|
import { DTRecipeIdInternal } from "./dt_recipe_id_internal"
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
package/source/dt_result.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { Variant } from "node-opcua-variant"
|
|
3
3
|
import { Int32 } from "node-opcua-basic-types"
|
|
4
4
|
import { ExtensionObject } from "node-opcua-extension-object"
|
|
5
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
5
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure"
|
|
6
6
|
import { DTResultId } from "./dt_result_id"
|
|
7
7
|
import { DTMeasId } from "./dt_meas_id"
|
|
8
8
|
import { DTPartId } from "./dt_part_id"
|
package/source/dt_result_id.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAString } from "node-opcua-basic-types"
|
|
3
3
|
import { ExtensionObject } from "node-opcua-extension-object"
|
|
4
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
4
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure"
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
|
7
7
|
* |-----------|------------------------------------------------------------|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { ExtensionObject } from "node-opcua-extension-object"
|
|
3
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
3
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure"
|
|
4
4
|
import { DTResultId } from "./dt_result_id"
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAString } from "node-opcua-basic-types"
|
|
3
3
|
import { ExtensionObject } from "node-opcua-extension-object"
|
|
4
|
-
import { DTStructure } from "node-opcua-nodeset-ua/
|
|
4
|
+
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure"
|
|
5
5
|
import { EnumSystemState } from "./enum_system_state"
|
|
6
6
|
/**
|
|
7
7
|
* | | |
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAProperty } from "node-opcua-address-space-base"
|
|
3
3
|
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/
|
|
4
|
+
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event"
|
|
5
5
|
import { DTJobId } from "./dt_job_id"
|
|
6
6
|
/**
|
|
7
7
|
* | | |
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
import {
|
|
3
|
-
import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/source/ua_folder"
|
|
4
|
-
import { DTConfiguration } from "./dt_configuration"
|
|
2
|
+
import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/dist/ua_folder"
|
|
5
3
|
/**
|
|
6
4
|
* | | |
|
|
7
5
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAObject, UAMethod } from "node-opcua-address-space-base"
|
|
3
3
|
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import {
|
|
5
|
-
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable"
|
|
4
|
+
import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable"
|
|
6
5
|
import { DTConfiguration } from "./dt_configuration"
|
|
7
6
|
import { UAConfigurationFolder } from "./ua_configuration_folder"
|
|
8
7
|
import { UAConfigurationTransfer } from "./ua_configuration_transfer"
|
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAMethod } from "node-opcua-address-space-base"
|
|
3
|
-
import {
|
|
4
|
-
import { LocalizedText } from "node-opcua-data-model"
|
|
5
|
-
import { UInt32 } from "node-opcua-basic-types"
|
|
6
|
-
import { DTArgument } from "node-opcua-nodeset-ua/source/dt_argument"
|
|
7
|
-
import { UATemporaryFileTransfer, UATemporaryFileTransfer_Base } from "node-opcua-nodeset-ua/source/ua_temporary_file_transfer"
|
|
3
|
+
import { UATemporaryFileTransfer, UATemporaryFileTransfer_Base } from "node-opcua-nodeset-ua/dist/ua_temporary_file_transfer"
|
|
8
4
|
/**
|
|
9
5
|
* | | |
|
|
10
6
|
* |----------------|------------------------------------------------------------|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { UAProperty } from "node-opcua-address-space-base"
|
|
3
3
|
import { DataType } from "node-opcua-variant"
|
|
4
4
|
import { Int32 } from "node-opcua-basic-types"
|
|
5
|
-
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/
|
|
5
|
+
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event"
|
|
6
6
|
/**
|
|
7
7
|
* | | |
|
|
8
8
|
* |----------------|------------------------------------------------------------|
|
package/source/ua_error_event.ts
CHANGED
|
@@ -1,10 +1,5 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
import {
|
|
3
|
-
import { LocalizedText, QualifiedName } from "node-opcua-data-model"
|
|
4
|
-
import { NodeId } from "node-opcua-nodeid"
|
|
5
|
-
import { UInt32, UInt16, UAString } from "node-opcua-basic-types"
|
|
6
|
-
import { DTTimeZone } from "node-opcua-nodeset-ua/source/dt_time_zone"
|
|
7
|
-
import { UATransitionEvent, UATransitionEvent_Base } from "node-opcua-nodeset-ua/source/ua_transition_event"
|
|
2
|
+
import { UATransitionEvent, UATransitionEvent_Base } from "node-opcua-nodeset-ua/dist/ua_transition_event"
|
|
8
3
|
/**
|
|
9
4
|
* | | |
|
|
10
5
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
import { UATransitionEvent, UATransitionEvent_Base } from "node-opcua-nodeset-ua/
|
|
2
|
+
import { UATransitionEvent, UATransitionEvent_Base } from "node-opcua-nodeset-ua/dist/ua_transition_event"
|
|
3
3
|
/**
|
|
4
4
|
* | | |
|
|
5
5
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAProperty } from "node-opcua-address-space-base"
|
|
3
3
|
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/
|
|
4
|
+
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event"
|
|
5
5
|
import { DTJobId } from "./dt_job_id"
|
|
6
6
|
/**
|
|
7
7
|
* | | |
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/
|
|
2
|
+
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event"
|
|
3
3
|
/**
|
|
4
4
|
* | | |
|
|
5
5
|
* |----------------|------------------------------------------------------------|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { UAProperty } from "node-opcua-address-space-base"
|
|
3
3
|
import { DataType } from "node-opcua-variant"
|
|
4
4
|
import { Int32 } from "node-opcua-basic-types"
|
|
5
|
-
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/
|
|
5
|
+
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event"
|
|
6
6
|
/**
|
|
7
7
|
* | | |
|
|
8
8
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
import {
|
|
3
|
-
import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/source/ua_folder"
|
|
4
|
-
import { DTProduct } from "./dt_product"
|
|
2
|
+
import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/dist/ua_folder"
|
|
5
3
|
/**
|
|
6
4
|
* | | |
|
|
7
5
|
* |----------------|------------------------------------------------------------|
|
package/source/ua_ready_event.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAProperty } from "node-opcua-address-space-base"
|
|
3
3
|
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/
|
|
4
|
+
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event"
|
|
5
5
|
import { DTJobId } from "./dt_job_id"
|
|
6
6
|
/**
|
|
7
7
|
* | | |
|
package/source/ua_recipe.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAObject, UAMethod, UAProperty } from "node-opcua-address-space-base"
|
|
3
3
|
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import { UAFile } from "node-opcua-nodeset-ua/
|
|
4
|
+
import { UAFile } from "node-opcua-nodeset-ua/dist/ua_file"
|
|
5
5
|
import { DTRecipeIdExternal } from "./dt_recipe_id_external"
|
|
6
6
|
import { DTRecipeIdInternal } from "./dt_recipe_id_internal"
|
|
7
7
|
import { DTProductId } from "./dt_product_id"
|
|
@@ -1,11 +1,5 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
import {
|
|
3
|
-
import { UInt64, UInt32, UInt16, UAString } from "node-opcua-basic-types"
|
|
4
|
-
import { DTArgument } from "node-opcua-nodeset-ua/source/dt_argument"
|
|
5
|
-
import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/source/ua_folder"
|
|
6
|
-
import { DTRecipeIdExternal } from "./dt_recipe_id_external"
|
|
7
|
-
import { DTRecipeIdInternal } from "./dt_recipe_id_internal"
|
|
8
|
-
import { DTProductId } from "./dt_product_id"
|
|
2
|
+
import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/dist/ua_folder"
|
|
9
3
|
/**
|
|
10
4
|
* | | |
|
|
11
5
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAObject, UAMethod } from "node-opcua-address-space-base"
|
|
3
3
|
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import {
|
|
5
|
-
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable"
|
|
4
|
+
import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable"
|
|
6
5
|
import { DTProduct } from "./dt_product"
|
|
7
6
|
import { UAProductFolder } from "./ua_product_folder"
|
|
8
7
|
import { UARecipeFolder } from "./ua_recipe_folder"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAProperty } from "node-opcua-address-space-base"
|
|
3
3
|
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/
|
|
4
|
+
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event"
|
|
5
5
|
import { DTRecipeIdExternal } from "./dt_recipe_id_external"
|
|
6
6
|
import { DTRecipeIdInternal } from "./dt_recipe_id_internal"
|
|
7
7
|
import { DTProductId } from "./dt_product_id"
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAMethod } from "node-opcua-address-space-base"
|
|
3
|
-
import {
|
|
4
|
-
import { DTArgument } from "node-opcua-nodeset-ua/source/dt_argument"
|
|
5
|
-
import { UATemporaryFileTransfer, UATemporaryFileTransfer_Base } from "node-opcua-nodeset-ua/source/ua_temporary_file_transfer"
|
|
3
|
+
import { UATemporaryFileTransfer, UATemporaryFileTransfer_Base } from "node-opcua-nodeset-ua/dist/ua_temporary_file_transfer"
|
|
6
4
|
/**
|
|
7
5
|
* | | |
|
|
8
6
|
* |----------------|------------------------------------------------------------|
|
package/source/ua_result.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
import { DataType
|
|
2
|
+
import { DataType } from "node-opcua-variant"
|
|
3
3
|
import { Int32 } from "node-opcua-basic-types"
|
|
4
|
-
import { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/
|
|
4
|
+
import { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/dist/ua_base_data_variable"
|
|
5
5
|
import { DTResult } from "./dt_result"
|
|
6
6
|
import { DTConfigurationId } from "./dt_configuration_id"
|
|
7
7
|
import { DTRecipeIdExternal } from "./dt_recipe_id_external"
|
|
@@ -1,17 +1,5 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
import {
|
|
3
|
-
import { Int32 } from "node-opcua-basic-types"
|
|
4
|
-
import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/source/ua_folder"
|
|
5
|
-
import { DTResult } from "./dt_result"
|
|
6
|
-
import { DTConfigurationId } from "./dt_configuration_id"
|
|
7
|
-
import { DTRecipeIdExternal } from "./dt_recipe_id_external"
|
|
8
|
-
import { DTRecipeIdInternal } from "./dt_recipe_id_internal"
|
|
9
|
-
import { DTJobId } from "./dt_job_id"
|
|
10
|
-
import { DTMeasId } from "./dt_meas_id"
|
|
11
|
-
import { DTPartId } from "./dt_part_id"
|
|
12
|
-
import { DTProcessingTimes } from "./dt_processing_times"
|
|
13
|
-
import { DTProductId } from "./dt_product_id"
|
|
14
|
-
import { DTResultId } from "./dt_result_id"
|
|
2
|
+
import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/dist/ua_folder"
|
|
15
3
|
/**
|
|
16
4
|
* | | |
|
|
17
5
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAObject, UAMethod } from "node-opcua-address-space-base"
|
|
3
|
-
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import { DTArgument } from "node-opcua-nodeset-ua/source/dt_argument"
|
|
5
3
|
import { UAResultFolder } from "./ua_result_folder"
|
|
6
4
|
import { UAResultTransfer } from "./ua_result_transfer"
|
|
7
5
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAProperty } from "node-opcua-address-space-base"
|
|
3
|
-
import { DataType
|
|
3
|
+
import { DataType } from "node-opcua-variant"
|
|
4
4
|
import { Int32 } from "node-opcua-basic-types"
|
|
5
|
-
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/
|
|
5
|
+
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event"
|
|
6
6
|
import { DTConfigurationId } from "./dt_configuration_id"
|
|
7
7
|
import { DTRecipeIdExternal } from "./dt_recipe_id_external"
|
|
8
8
|
import { DTRecipeIdInternal } from "./dt_recipe_id_internal"
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAMethod } from "node-opcua-address-space-base"
|
|
3
|
-
import {
|
|
4
|
-
import { DTArgument } from "node-opcua-nodeset-ua/source/dt_argument"
|
|
5
|
-
import { UATemporaryFileTransfer, UATemporaryFileTransfer_Base } from "node-opcua-nodeset-ua/source/ua_temporary_file_transfer"
|
|
3
|
+
import { UATemporaryFileTransfer, UATemporaryFileTransfer_Base } from "node-opcua-nodeset-ua/dist/ua_temporary_file_transfer"
|
|
6
4
|
/**
|
|
7
5
|
* | | |
|
|
8
6
|
* |----------------|------------------------------------------------------------|
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
import { UAObject, UAMethod } from "node-opcua-address-space-base"
|
|
3
3
|
import { DataType } from "node-opcua-variant"
|
|
4
4
|
import { UAString } from "node-opcua-basic-types"
|
|
5
|
-
import {
|
|
6
|
-
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable"
|
|
5
|
+
import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable"
|
|
7
6
|
/**
|
|
8
7
|
* | | |
|
|
9
8
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
import { UATransitionEvent, UATransitionEvent_Base } from "node-opcua-nodeset-ua/
|
|
2
|
+
import { UATransitionEvent, UATransitionEvent_Base } from "node-opcua-nodeset-ua/dist/ua_transition_event"
|
|
3
3
|
/**
|
|
4
4
|
* | | |
|
|
5
5
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,13 +1,8 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAMethod } from "node-opcua-address-space-base"
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import { UInt32 } from "node-opcua-basic-types"
|
|
7
|
-
import { DTArgument } from "node-opcua-nodeset-ua/source/dt_argument"
|
|
8
|
-
import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/source/ua_finite_state_machine"
|
|
9
|
-
import { UAState } from "node-opcua-nodeset-ua/source/ua_state"
|
|
10
|
-
import { UATransition } from "node-opcua-nodeset-ua/source/ua_transition"
|
|
3
|
+
import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine"
|
|
4
|
+
import { UAState } from "node-opcua-nodeset-ua/dist/ua_state"
|
|
5
|
+
import { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition"
|
|
11
6
|
import { UAVisionStepModelStateMachine } from "./ua_vision_step_model_state_machine"
|
|
12
7
|
/**
|
|
13
8
|
* | | |
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAProperty } from "node-opcua-address-space-base"
|
|
3
|
-
import { DataType
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import { StatusCode } from "node-opcua-status-code"
|
|
7
|
-
import { UInt64, UInt16, UAString } from "node-opcua-basic-types"
|
|
8
|
-
import { DTArgument } from "node-opcua-nodeset-ua/source/dt_argument"
|
|
9
|
-
import { UAAcknowledgeableCondition, UAAcknowledgeableCondition_Base } from "node-opcua-nodeset-ua/source/ua_acknowledgeable_condition"
|
|
3
|
+
import { DataType } from "node-opcua-variant"
|
|
4
|
+
import { UInt64, UAString } from "node-opcua-basic-types"
|
|
5
|
+
import { UAAcknowledgeableCondition, UAAcknowledgeableCondition_Base } from "node-opcua-nodeset-ua/dist/ua_acknowledgeable_condition"
|
|
10
6
|
import { DTConfigurationId } from "./dt_configuration_id"
|
|
11
7
|
import { DTRecipeIdExternal } from "./dt_recipe_id_external"
|
|
12
8
|
import { DTRecipeIdInternal } from "./dt_recipe_id_internal"
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { UAProperty } from "node-opcua-address-space-base"
|
|
3
3
|
import { DataType } from "node-opcua-variant"
|
|
4
4
|
import { UAString } from "node-opcua-basic-types"
|
|
5
|
-
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/
|
|
5
|
+
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event"
|
|
6
6
|
import { DTConfigurationId } from "./dt_configuration_id"
|
|
7
7
|
import { DTRecipeIdExternal } from "./dt_recipe_id_external"
|
|
8
8
|
import { DTRecipeIdInternal } from "./dt_recipe_id_internal"
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { UAProperty } from "node-opcua-address-space-base"
|
|
3
3
|
import { DataType } from "node-opcua-variant"
|
|
4
4
|
import { UAString } from "node-opcua-basic-types"
|
|
5
|
-
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/
|
|
5
|
+
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event"
|
|
6
6
|
/**
|
|
7
7
|
* | | |
|
|
8
8
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAMethod } from "node-opcua-address-space-base"
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import { DTArgument } from "node-opcua-nodeset-ua/source/dt_argument"
|
|
7
|
-
import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/source/ua_finite_state_machine"
|
|
8
|
-
import { UAState } from "node-opcua-nodeset-ua/source/ua_state"
|
|
9
|
-
import { UATransition } from "node-opcua-nodeset-ua/source/ua_transition"
|
|
3
|
+
import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine"
|
|
4
|
+
import { UAState } from "node-opcua-nodeset-ua/dist/ua_state"
|
|
5
|
+
import { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition"
|
|
10
6
|
import { UAVisionAutomaticModeStateMachine } from "./ua_vision_automatic_mode_state_machine"
|
|
11
7
|
import { UAVisionStepModelStateMachine } from "./ua_vision_step_model_state_machine"
|
|
12
8
|
/**
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAMethod } from "node-opcua-address-space-base"
|
|
3
|
-
import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/
|
|
4
|
-
import { UAInitialState } from "node-opcua-nodeset-ua/
|
|
5
|
-
import { UATransition } from "node-opcua-nodeset-ua/
|
|
6
|
-
import { UAState } from "node-opcua-nodeset-ua/
|
|
3
|
+
import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine"
|
|
4
|
+
import { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state"
|
|
5
|
+
import { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition"
|
|
6
|
+
import { UAState } from "node-opcua-nodeset-ua/dist/ua_state"
|
|
7
7
|
/**
|
|
8
8
|
* | | |
|
|
9
9
|
* |----------------|------------------------------------------------------------|
|
|
@@ -2,11 +2,10 @@
|
|
|
2
2
|
import { UAObject, UAMethod } from "node-opcua-address-space-base"
|
|
3
3
|
import { DataType } from "node-opcua-variant"
|
|
4
4
|
import { LocalizedText } from "node-opcua-data-model"
|
|
5
|
-
import { UInt16
|
|
6
|
-
import { UAFiniteStateVariable } from "node-opcua-nodeset-ua/
|
|
7
|
-
import { UAState } from "node-opcua-nodeset-ua/
|
|
8
|
-
import { UABaseDataVariable } from "node-opcua-nodeset-ua/
|
|
9
|
-
import { DTConfiguration } from "./dt_configuration"
|
|
5
|
+
import { UInt16 } from "node-opcua-basic-types"
|
|
6
|
+
import { UAFiniteStateVariable } from "node-opcua-nodeset-ua/dist/ua_finite_state_variable"
|
|
7
|
+
import { UAState } from "node-opcua-nodeset-ua/dist/ua_state"
|
|
8
|
+
import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable"
|
|
10
9
|
import { DTSystemStateDescription } from "./dt_system_state_description"
|
|
11
10
|
import { UAVisionStateMachine } from "./ua_vision_state_machine"
|
|
12
11
|
import { UAVisionAutomaticModeStateMachine } from "./ua_vision_automatic_mode_state_machine"
|