node-opcua-nodeset-machine-vision 2.74.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.
- package/dist/ua_acquisition_done_event.d.ts +1 -1
- package/dist/ua_configuration_folder.d.ts +1 -2
- package/dist/ua_configuration_management.d.ts +1 -1
- package/dist/ua_enter_step_sequence_event.d.ts +1 -1
- package/dist/ua_error_event.d.ts +1 -2
- package/dist/ua_error_resolved_event.d.ts +1 -2
- package/dist/ua_job_started_event.d.ts +1 -1
- package/dist/ua_leave_step_sequence_event.d.ts +1 -2
- package/dist/ua_next_step_event.d.ts +1 -1
- package/dist/ua_product_folder.d.ts +1 -2
- package/dist/ua_ready_event.d.ts +1 -1
- package/dist/ua_recipe.d.ts +5 -5
- package/dist/ua_recipe_folder.d.ts +1 -2
- package/dist/ua_recipe_management.d.ts +1 -1
- package/dist/ua_recipe_prepared_event.d.ts +3 -3
- package/dist/ua_result.d.ts +17 -17
- package/dist/ua_result_folder.d.ts +1 -2
- package/dist/ua_result_ready_event.d.ts +14 -14
- package/dist/ua_safety_state_management.d.ts +2 -2
- package/dist/ua_state_changed_event.d.ts +1 -2
- package/dist/ua_vision_condition.d.ts +14 -14
- package/dist/ua_vision_diagnostic_info_event.d.ts +1 -2
- package/dist/ua_vision_error_condition.d.ts +1 -2
- package/dist/ua_vision_event.d.ts +10 -10
- package/dist/ua_vision_information_event.d.ts +1 -2
- package/dist/ua_vision_persistent_error_condition.d.ts +1 -2
- package/dist/ua_vision_safety_event.d.ts +2 -2
- package/dist/ua_vision_system.d.ts +2 -2
- package/dist/ua_vision_warning_condition.d.ts +1 -2
- package/package.json +9 -9
- package/source/dt_binary_id_base.ts +1 -1
- package/source/dt_configuration.ts +1 -1
- package/source/dt_configuration_id.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_id_external.ts +1 -1
- package/source/dt_recipe_id_internal.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 -2
- package/source/ua_configuration_management.ts +1 -1
- package/source/ua_enter_step_sequence_event.ts +1 -1
- package/source/ua_error_event.ts +1 -2
- package/source/ua_error_resolved_event.ts +1 -2
- package/source/ua_job_started_event.ts +1 -1
- package/source/ua_leave_step_sequence_event.ts +1 -2
- package/source/ua_next_step_event.ts +1 -1
- package/source/ua_product_folder.ts +1 -2
- package/source/ua_ready_event.ts +1 -1
- package/source/ua_recipe.ts +5 -5
- package/source/ua_recipe_folder.ts +1 -2
- package/source/ua_recipe_management.ts +1 -1
- package/source/ua_recipe_prepared_event.ts +3 -3
- package/source/ua_result.ts +17 -17
- package/source/ua_result_folder.ts +1 -2
- package/source/ua_result_ready_event.ts +14 -14
- package/source/ua_safety_state_management.ts +2 -2
- package/source/ua_state_changed_event.ts +1 -2
- package/source/ua_vision_condition.ts +14 -14
- package/source/ua_vision_diagnostic_info_event.ts +1 -2
- package/source/ua_vision_error_condition.ts +1 -2
- package/source/ua_vision_event.ts +10 -10
- package/source/ua_vision_information_event.ts +1 -2
- package/source/ua_vision_persistent_error_condition.ts +1 -2
- package/source/ua_vision_safety_event.ts +2 -2
- package/source/ua_vision_system.ts +2 -2
- package/source/ua_vision_warning_condition.ts +1 -2
|
@@ -11,7 +11,7 @@ import { DTJobId } from "./dt_job_id";
|
|
|
11
11
|
* |isAbstract |false |
|
|
12
12
|
*/
|
|
13
13
|
export interface UAAcquisitionDoneEvent_Base extends UABaseEvent_Base {
|
|
14
|
-
jobId: UAProperty<DTJobId,
|
|
14
|
+
jobId: UAProperty<DTJobId, DataType.ExtensionObject>;
|
|
15
15
|
}
|
|
16
16
|
export interface UAAcquisitionDoneEvent extends UABaseEvent, UAAcquisitionDoneEvent_Base {
|
|
17
17
|
}
|
|
@@ -7,7 +7,6 @@ import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/source/ua_folder"
|
|
|
7
7
|
* |typedDefinition |4:ConfigurationFolderType ns=4;i=1011 |
|
|
8
8
|
* |isAbstract |false |
|
|
9
9
|
*/
|
|
10
|
-
export
|
|
11
|
-
}
|
|
10
|
+
export declare type UAConfigurationFolder_Base = UAFolder_Base;
|
|
12
11
|
export interface UAConfigurationFolder extends UAFolder, UAConfigurationFolder_Base {
|
|
13
12
|
}
|
|
@@ -14,7 +14,7 @@ import { UAConfigurationTransfer } from "./ua_configuration_transfer";
|
|
|
14
14
|
*/
|
|
15
15
|
export interface UAConfigurationManagement_Base {
|
|
16
16
|
activateConfiguration: UAMethod;
|
|
17
|
-
activeConfiguration: UABaseDataVariable<DTConfiguration,
|
|
17
|
+
activeConfiguration: UABaseDataVariable<DTConfiguration, DataType.ExtensionObject>;
|
|
18
18
|
addConfiguration?: UAMethod;
|
|
19
19
|
configurations?: UAConfigurationFolder;
|
|
20
20
|
configurationTransfer?: UAConfigurationTransfer;
|
|
@@ -11,7 +11,7 @@ import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/source/ua_b
|
|
|
11
11
|
* |isAbstract |false |
|
|
12
12
|
*/
|
|
13
13
|
export interface UAEnterStepSequenceEvent_Base extends UABaseEvent_Base {
|
|
14
|
-
steps: UAProperty<Int32,
|
|
14
|
+
steps: UAProperty<Int32, DataType.Int32>;
|
|
15
15
|
}
|
|
16
16
|
export interface UAEnterStepSequenceEvent extends UABaseEvent, UAEnterStepSequenceEvent_Base {
|
|
17
17
|
}
|
package/dist/ua_error_event.d.ts
CHANGED
|
@@ -7,7 +7,6 @@ import { UATransitionEvent, UATransitionEvent_Base } from "node-opcua-nodeset-ua
|
|
|
7
7
|
* |typedDefinition |4:ErrorEventType ns=4;i=1019 |
|
|
8
8
|
* |isAbstract |false |
|
|
9
9
|
*/
|
|
10
|
-
export
|
|
11
|
-
}
|
|
10
|
+
export declare type UAErrorEvent_Base = UATransitionEvent_Base;
|
|
12
11
|
export interface UAErrorEvent extends UATransitionEvent, UAErrorEvent_Base {
|
|
13
12
|
}
|
|
@@ -7,7 +7,6 @@ import { UATransitionEvent, UATransitionEvent_Base } from "node-opcua-nodeset-ua
|
|
|
7
7
|
* |typedDefinition |4:ErrorResolvedEventType ns=4;i=1020 |
|
|
8
8
|
* |isAbstract |false |
|
|
9
9
|
*/
|
|
10
|
-
export
|
|
11
|
-
}
|
|
10
|
+
export declare type UAErrorResolvedEvent_Base = UATransitionEvent_Base;
|
|
12
11
|
export interface UAErrorResolvedEvent extends UATransitionEvent, UAErrorResolvedEvent_Base {
|
|
13
12
|
}
|
|
@@ -11,7 +11,7 @@ import { DTJobId } from "./dt_job_id";
|
|
|
11
11
|
* |isAbstract |false |
|
|
12
12
|
*/
|
|
13
13
|
export interface UAJobStartedEvent_Base extends UABaseEvent_Base {
|
|
14
|
-
jobId: UAProperty<DTJobId,
|
|
14
|
+
jobId: UAProperty<DTJobId, DataType.ExtensionObject>;
|
|
15
15
|
}
|
|
16
16
|
export interface UAJobStartedEvent extends UABaseEvent, UAJobStartedEvent_Base {
|
|
17
17
|
}
|
|
@@ -7,7 +7,6 @@ import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/source/ua_b
|
|
|
7
7
|
* |typedDefinition |4:LeaveStepSequenceEventType ns=4;i=1029 |
|
|
8
8
|
* |isAbstract |false |
|
|
9
9
|
*/
|
|
10
|
-
export
|
|
11
|
-
}
|
|
10
|
+
export declare type UALeaveStepSequenceEvent_Base = UABaseEvent_Base;
|
|
12
11
|
export interface UALeaveStepSequenceEvent extends UABaseEvent, UALeaveStepSequenceEvent_Base {
|
|
13
12
|
}
|
|
@@ -11,7 +11,7 @@ import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/source/ua_b
|
|
|
11
11
|
* |isAbstract |false |
|
|
12
12
|
*/
|
|
13
13
|
export interface UANextStepEvent_Base extends UABaseEvent_Base {
|
|
14
|
-
step: UAProperty<Int32,
|
|
14
|
+
step: UAProperty<Int32, DataType.Int32>;
|
|
15
15
|
}
|
|
16
16
|
export interface UANextStepEvent extends UABaseEvent, UANextStepEvent_Base {
|
|
17
17
|
}
|
|
@@ -7,7 +7,6 @@ import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/source/ua_folder"
|
|
|
7
7
|
* |typedDefinition |4:ProductFolderType ns=4;i=1010 |
|
|
8
8
|
* |isAbstract |false |
|
|
9
9
|
*/
|
|
10
|
-
export
|
|
11
|
-
}
|
|
10
|
+
export declare type UAProductFolder_Base = UAFolder_Base;
|
|
12
11
|
export interface UAProductFolder extends UAFolder, UAProductFolder_Base {
|
|
13
12
|
}
|
package/dist/ua_ready_event.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ import { DTJobId } from "./dt_job_id";
|
|
|
11
11
|
* |isAbstract |false |
|
|
12
12
|
*/
|
|
13
13
|
export interface UAReadyEvent_Base extends UABaseEvent_Base {
|
|
14
|
-
jobId: UAProperty<DTJobId,
|
|
14
|
+
jobId: UAProperty<DTJobId, DataType.ExtensionObject>;
|
|
15
15
|
}
|
|
16
16
|
export interface UAReadyEvent extends UABaseEvent, UAReadyEvent_Base {
|
|
17
17
|
}
|
package/dist/ua_recipe.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ export interface UARecipe_Base {
|
|
|
19
19
|
* vision system. The ExternalID is only managed by
|
|
20
20
|
* the host system.
|
|
21
21
|
*/
|
|
22
|
-
externalId?: UAProperty<DTRecipeIdExternal,
|
|
22
|
+
externalId?: UAProperty<DTRecipeIdExternal, DataType.ExtensionObject>;
|
|
23
23
|
/**
|
|
24
24
|
* handle
|
|
25
25
|
* The file handle refers to the recipe data, which
|
|
@@ -33,14 +33,14 @@ export interface UARecipe_Base {
|
|
|
33
33
|
* System-wide unique ID for identifying a recipe.
|
|
34
34
|
* This ID is assigned by the vision system.
|
|
35
35
|
*/
|
|
36
|
-
internalId: UAProperty<DTRecipeIdInternal,
|
|
37
|
-
isPrepared: UAProperty<boolean,
|
|
36
|
+
internalId: UAProperty<DTRecipeIdInternal, DataType.ExtensionObject>;
|
|
37
|
+
isPrepared: UAProperty<boolean, DataType.Boolean>;
|
|
38
38
|
/**
|
|
39
39
|
* lastModified
|
|
40
40
|
* The time when this recipe was last modified.
|
|
41
41
|
*/
|
|
42
|
-
lastModified: UAProperty<Date,
|
|
43
|
-
linkedProducts?: UAProperty<DTProductId[],
|
|
42
|
+
lastModified: UAProperty<Date, DataType.DateTime>;
|
|
43
|
+
linkedProducts?: UAProperty<DTProductId[], DataType.ExtensionObject>;
|
|
44
44
|
linkProduct?: UAMethod;
|
|
45
45
|
prepare: UAMethod;
|
|
46
46
|
unlinkProduct?: UAMethod;
|
|
@@ -7,7 +7,6 @@ import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/source/ua_folder"
|
|
|
7
7
|
* |typedDefinition |4:RecipeFolderType ns=4;i=1008 |
|
|
8
8
|
* |isAbstract |false |
|
|
9
9
|
*/
|
|
10
|
-
export
|
|
11
|
-
}
|
|
10
|
+
export declare type UARecipeFolder_Base = UAFolder_Base;
|
|
12
11
|
export interface UARecipeFolder extends UAFolder, UARecipeFolder_Base {
|
|
13
12
|
}
|
|
@@ -6,7 +6,7 @@ import { UAProductFolder } from "./ua_product_folder";
|
|
|
6
6
|
import { UARecipeFolder } from "./ua_recipe_folder";
|
|
7
7
|
import { UARecipeTransfer } from "./ua_recipe_transfer";
|
|
8
8
|
export interface UARecipeManagement_products extends Omit<UAProductFolder, "$Product$"> {
|
|
9
|
-
"$Product$": UABaseDataVariable<DTProduct,
|
|
9
|
+
"$Product$": UABaseDataVariable<DTProduct, DataType.ExtensionObject>;
|
|
10
10
|
}
|
|
11
11
|
/**
|
|
12
12
|
* | | |
|
|
@@ -13,9 +13,9 @@ import { DTProductId } from "./dt_product_id";
|
|
|
13
13
|
* |isAbstract |false |
|
|
14
14
|
*/
|
|
15
15
|
export interface UARecipePreparedEvent_Base extends UABaseEvent_Base {
|
|
16
|
-
externalId?: UAProperty<DTRecipeIdExternal,
|
|
17
|
-
internalId: UAProperty<DTRecipeIdInternal,
|
|
18
|
-
productId?: UAProperty<DTProductId,
|
|
16
|
+
externalId?: UAProperty<DTRecipeIdExternal, DataType.ExtensionObject>;
|
|
17
|
+
internalId: UAProperty<DTRecipeIdInternal, DataType.ExtensionObject>;
|
|
18
|
+
productId?: UAProperty<DTProductId, DataType.ExtensionObject>;
|
|
19
19
|
}
|
|
20
20
|
export interface UARecipePreparedEvent extends UABaseEvent, UARecipePreparedEvent_Base {
|
|
21
21
|
}
|
package/dist/ua_result.d.ts
CHANGED
|
@@ -21,23 +21,23 @@ import { DTResultId } from "./dt_result_id";
|
|
|
21
21
|
* |dataType Name |DTResult ns=4;i=3006 |
|
|
22
22
|
* |isAbstract |false |
|
|
23
23
|
*/
|
|
24
|
-
export interface UAResult_Base<T extends DTResult> extends UABaseDataVariable_Base<T,
|
|
25
|
-
creationTime: UABaseDataVariable<Date,
|
|
26
|
-
externalConfigurationId?: UABaseDataVariable<DTConfigurationId,
|
|
27
|
-
externalRecipeId?: UABaseDataVariable<DTRecipeIdExternal,
|
|
28
|
-
hasTransferableDataOnFile?: UABaseDataVariable<boolean,
|
|
29
|
-
internalConfigurationId: UABaseDataVariable<DTConfigurationId,
|
|
30
|
-
internalRecipeId: UABaseDataVariable<DTRecipeIdInternal,
|
|
31
|
-
isPartial: UABaseDataVariable<boolean,
|
|
32
|
-
isSimulated?: UABaseDataVariable<boolean,
|
|
33
|
-
jobId: UABaseDataVariable<DTJobId,
|
|
34
|
-
measId?: UABaseDataVariable<DTMeasId,
|
|
35
|
-
partId?: UABaseDataVariable<DTPartId,
|
|
36
|
-
processingTimes?: UABaseDataVariable<DTProcessingTimes,
|
|
37
|
-
productId?: UABaseDataVariable<DTProductId,
|
|
24
|
+
export interface UAResult_Base<T extends DTResult> extends UABaseDataVariable_Base<T, DataType.ExtensionObject> {
|
|
25
|
+
creationTime: UABaseDataVariable<Date, DataType.DateTime>;
|
|
26
|
+
externalConfigurationId?: UABaseDataVariable<DTConfigurationId, DataType.ExtensionObject>;
|
|
27
|
+
externalRecipeId?: UABaseDataVariable<DTRecipeIdExternal, DataType.ExtensionObject>;
|
|
28
|
+
hasTransferableDataOnFile?: UABaseDataVariable<boolean, DataType.Boolean>;
|
|
29
|
+
internalConfigurationId: UABaseDataVariable<DTConfigurationId, DataType.ExtensionObject>;
|
|
30
|
+
internalRecipeId: UABaseDataVariable<DTRecipeIdInternal, DataType.ExtensionObject>;
|
|
31
|
+
isPartial: UABaseDataVariable<boolean, DataType.Boolean>;
|
|
32
|
+
isSimulated?: UABaseDataVariable<boolean, DataType.Boolean>;
|
|
33
|
+
jobId: UABaseDataVariable<DTJobId, DataType.ExtensionObject>;
|
|
34
|
+
measId?: UABaseDataVariable<DTMeasId, DataType.ExtensionObject>;
|
|
35
|
+
partId?: UABaseDataVariable<DTPartId, DataType.ExtensionObject>;
|
|
36
|
+
processingTimes?: UABaseDataVariable<DTProcessingTimes, DataType.ExtensionObject>;
|
|
37
|
+
productId?: UABaseDataVariable<DTProductId, DataType.ExtensionObject>;
|
|
38
38
|
resultContent?: UABaseDataVariable<any, any>;
|
|
39
|
-
resultId: UABaseDataVariable<DTResultId,
|
|
40
|
-
resultState: UABaseDataVariable<Int32,
|
|
39
|
+
resultId: UABaseDataVariable<DTResultId, DataType.ExtensionObject>;
|
|
40
|
+
resultState: UABaseDataVariable<Int32, DataType.Int32>;
|
|
41
41
|
}
|
|
42
|
-
export interface UAResult<T extends DTResult> extends UABaseDataVariable<T,
|
|
42
|
+
export interface UAResult<T extends DTResult> extends UABaseDataVariable<T, DataType.ExtensionObject>, UAResult_Base<T> {
|
|
43
43
|
}
|
|
@@ -7,7 +7,6 @@ import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/source/ua_folder"
|
|
|
7
7
|
* |typedDefinition |4:ResultFolderType ns=4;i=1016 |
|
|
8
8
|
* |isAbstract |false |
|
|
9
9
|
*/
|
|
10
|
-
export
|
|
11
|
-
}
|
|
10
|
+
export declare type UAResultFolder_Base = UAFolder_Base;
|
|
12
11
|
export interface UAResultFolder extends UAFolder, UAResultFolder_Base {
|
|
13
12
|
}
|
|
@@ -20,21 +20,21 @@ import { DTResultId } from "./dt_result_id";
|
|
|
20
20
|
* |isAbstract |false |
|
|
21
21
|
*/
|
|
22
22
|
export interface UAResultReadyEvent_Base extends UABaseEvent_Base {
|
|
23
|
-
creationTime: UAProperty<Date,
|
|
24
|
-
externalConfigurationId?: UAProperty<DTConfigurationId,
|
|
25
|
-
externalRecipeId?: UAProperty<DTRecipeIdExternal,
|
|
26
|
-
internalConfigurationId: UAProperty<DTConfigurationId,
|
|
27
|
-
internalRecipeId: UAProperty<DTRecipeIdInternal,
|
|
28
|
-
isPartial: UAProperty<boolean,
|
|
29
|
-
isSimulated?: UAProperty<boolean,
|
|
30
|
-
jobId: UAProperty<DTJobId,
|
|
31
|
-
measId?: UAProperty<DTMeasId,
|
|
32
|
-
partId?: UAProperty<DTPartId,
|
|
33
|
-
processingTimes?: UAProperty<DTProcessingTimes,
|
|
34
|
-
productId?: UAProperty<DTProductId,
|
|
23
|
+
creationTime: UAProperty<Date, DataType.DateTime>;
|
|
24
|
+
externalConfigurationId?: UAProperty<DTConfigurationId, DataType.ExtensionObject>;
|
|
25
|
+
externalRecipeId?: UAProperty<DTRecipeIdExternal, DataType.ExtensionObject>;
|
|
26
|
+
internalConfigurationId: UAProperty<DTConfigurationId, DataType.ExtensionObject>;
|
|
27
|
+
internalRecipeId: UAProperty<DTRecipeIdInternal, DataType.ExtensionObject>;
|
|
28
|
+
isPartial: UAProperty<boolean, DataType.Boolean>;
|
|
29
|
+
isSimulated?: UAProperty<boolean, DataType.Boolean>;
|
|
30
|
+
jobId: UAProperty<DTJobId, DataType.ExtensionObject>;
|
|
31
|
+
measId?: UAProperty<DTMeasId, DataType.ExtensionObject>;
|
|
32
|
+
partId?: UAProperty<DTPartId, DataType.ExtensionObject>;
|
|
33
|
+
processingTimes?: UAProperty<DTProcessingTimes, DataType.ExtensionObject>;
|
|
34
|
+
productId?: UAProperty<DTProductId, DataType.ExtensionObject>;
|
|
35
35
|
resultContent?: UAProperty<any, any>;
|
|
36
|
-
resultId: UAProperty<DTResultId,
|
|
37
|
-
resultState: UAProperty<Int32,
|
|
36
|
+
resultId: UAProperty<DTResultId, DataType.ExtensionObject>;
|
|
37
|
+
resultState: UAProperty<Int32, DataType.Int32>;
|
|
38
38
|
}
|
|
39
39
|
export interface UAResultReadyEvent extends UABaseEvent, UAResultReadyEvent_Base {
|
|
40
40
|
}
|
|
@@ -12,8 +12,8 @@ import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_va
|
|
|
12
12
|
*/
|
|
13
13
|
export interface UASafetyStateManagement_Base {
|
|
14
14
|
reportSafetyState: UAMethod;
|
|
15
|
-
visionSafetyInformation: UABaseDataVariable<UAString,
|
|
16
|
-
visionSafetyTriggered: UABaseDataVariable<boolean,
|
|
15
|
+
visionSafetyInformation: UABaseDataVariable<UAString, DataType.String>;
|
|
16
|
+
visionSafetyTriggered: UABaseDataVariable<boolean, DataType.Boolean>;
|
|
17
17
|
}
|
|
18
18
|
export interface UASafetyStateManagement extends UAObject, UASafetyStateManagement_Base {
|
|
19
19
|
}
|
|
@@ -7,7 +7,6 @@ import { UATransitionEvent, UATransitionEvent_Base } from "node-opcua-nodeset-ua
|
|
|
7
7
|
* |typedDefinition |4:StateChangedEventType ns=4;i=1018 |
|
|
8
8
|
* |isAbstract |false |
|
|
9
9
|
*/
|
|
10
|
-
export
|
|
11
|
-
}
|
|
10
|
+
export declare type UAStateChangedEvent_Base = UATransitionEvent_Base;
|
|
12
11
|
export interface UAStateChangedEvent extends UATransitionEvent, UAStateChangedEvent_Base {
|
|
13
12
|
}
|
|
@@ -19,20 +19,20 @@ import { DTResultId } from "./dt_result_id";
|
|
|
19
19
|
* |isAbstract |true |
|
|
20
20
|
*/
|
|
21
21
|
export interface UAVisionCondition_Base extends UAAcknowledgeableCondition_Base {
|
|
22
|
-
blockReaction: UAProperty<boolean,
|
|
23
|
-
causePath?: UAProperty<UAString,
|
|
24
|
-
errorCode?: UAProperty<UInt64,
|
|
25
|
-
errorString?: UAProperty<UAString,
|
|
26
|
-
externalConfigurationId?: UAProperty<DTConfigurationId,
|
|
27
|
-
externalRecipeId?: UAProperty<DTRecipeIdExternal,
|
|
28
|
-
internalConfigurationId?: UAProperty<DTConfigurationId,
|
|
29
|
-
internalRecipeId?: UAProperty<DTRecipeIdInternal,
|
|
30
|
-
jobId?: UAProperty<DTJobId,
|
|
31
|
-
measId?: UAProperty<DTMeasId,
|
|
32
|
-
partId?: UAProperty<DTPartId,
|
|
33
|
-
productId?: UAProperty<DTProductId,
|
|
34
|
-
resultId?: UAProperty<DTResultId,
|
|
35
|
-
stopReaction: UAProperty<boolean,
|
|
22
|
+
blockReaction: UAProperty<boolean, DataType.Boolean>;
|
|
23
|
+
causePath?: UAProperty<UAString, DataType.String>;
|
|
24
|
+
errorCode?: UAProperty<UInt64, DataType.UInt64>;
|
|
25
|
+
errorString?: UAProperty<UAString, DataType.String>;
|
|
26
|
+
externalConfigurationId?: UAProperty<DTConfigurationId, DataType.ExtensionObject>;
|
|
27
|
+
externalRecipeId?: UAProperty<DTRecipeIdExternal, DataType.ExtensionObject>;
|
|
28
|
+
internalConfigurationId?: UAProperty<DTConfigurationId, DataType.ExtensionObject>;
|
|
29
|
+
internalRecipeId?: UAProperty<DTRecipeIdInternal, DataType.ExtensionObject>;
|
|
30
|
+
jobId?: UAProperty<DTJobId, DataType.ExtensionObject>;
|
|
31
|
+
measId?: UAProperty<DTMeasId, DataType.ExtensionObject>;
|
|
32
|
+
partId?: UAProperty<DTPartId, DataType.ExtensionObject>;
|
|
33
|
+
productId?: UAProperty<DTProductId, DataType.ExtensionObject>;
|
|
34
|
+
resultId?: UAProperty<DTResultId, DataType.ExtensionObject>;
|
|
35
|
+
stopReaction: UAProperty<boolean, DataType.Boolean>;
|
|
36
36
|
}
|
|
37
37
|
export interface UAVisionCondition extends UAAcknowledgeableCondition, UAVisionCondition_Base {
|
|
38
38
|
}
|
|
@@ -7,7 +7,6 @@ import { UAVisionEvent, UAVisionEvent_Base } from "./ua_vision_event";
|
|
|
7
7
|
* |typedDefinition |4:VisionDiagnosticInfoEventType ns=4;i=1037 |
|
|
8
8
|
* |isAbstract |false |
|
|
9
9
|
*/
|
|
10
|
-
export
|
|
11
|
-
}
|
|
10
|
+
export declare type UAVisionDiagnosticInfoEvent_Base = UAVisionEvent_Base;
|
|
12
11
|
export interface UAVisionDiagnosticInfoEvent extends UAVisionEvent, UAVisionDiagnosticInfoEvent_Base {
|
|
13
12
|
}
|
|
@@ -7,7 +7,6 @@ import { UAVisionCondition, UAVisionCondition_Base } from "./ua_vision_condition
|
|
|
7
7
|
* |typedDefinition |4:VisionErrorConditionType ns=4;i=1035 |
|
|
8
8
|
* |isAbstract |false |
|
|
9
9
|
*/
|
|
10
|
-
export
|
|
11
|
-
}
|
|
10
|
+
export declare type UAVisionErrorCondition_Base = UAVisionCondition_Base;
|
|
12
11
|
export interface UAVisionErrorCondition extends UAVisionCondition, UAVisionErrorCondition_Base {
|
|
13
12
|
}
|
|
@@ -19,16 +19,16 @@ import { DTResultId } from "./dt_result_id";
|
|
|
19
19
|
* |isAbstract |true |
|
|
20
20
|
*/
|
|
21
21
|
export interface UAVisionEvent_Base extends UABaseEvent_Base {
|
|
22
|
-
causePath?: UAProperty<UAString,
|
|
23
|
-
externalConfigurationId?: UAProperty<DTConfigurationId,
|
|
24
|
-
externalRecipeId?: UAProperty<DTRecipeIdExternal,
|
|
25
|
-
internalConfigurationId?: UAProperty<DTConfigurationId,
|
|
26
|
-
internalRecipeId?: UAProperty<DTRecipeIdInternal,
|
|
27
|
-
jobId?: UAProperty<DTJobId,
|
|
28
|
-
measId?: UAProperty<DTMeasId,
|
|
29
|
-
partId?: UAProperty<DTPartId,
|
|
30
|
-
productId?: UAProperty<DTProductId,
|
|
31
|
-
resultId?: UAProperty<DTResultId,
|
|
22
|
+
causePath?: UAProperty<UAString, DataType.String>;
|
|
23
|
+
externalConfigurationId?: UAProperty<DTConfigurationId, DataType.ExtensionObject>;
|
|
24
|
+
externalRecipeId?: UAProperty<DTRecipeIdExternal, DataType.ExtensionObject>;
|
|
25
|
+
internalConfigurationId?: UAProperty<DTConfigurationId, DataType.ExtensionObject>;
|
|
26
|
+
internalRecipeId?: UAProperty<DTRecipeIdInternal, DataType.ExtensionObject>;
|
|
27
|
+
jobId?: UAProperty<DTJobId, DataType.ExtensionObject>;
|
|
28
|
+
measId?: UAProperty<DTMeasId, DataType.ExtensionObject>;
|
|
29
|
+
partId?: UAProperty<DTPartId, DataType.ExtensionObject>;
|
|
30
|
+
productId?: UAProperty<DTProductId, DataType.ExtensionObject>;
|
|
31
|
+
resultId?: UAProperty<DTResultId, DataType.ExtensionObject>;
|
|
32
32
|
}
|
|
33
33
|
export interface UAVisionEvent extends UABaseEvent, UAVisionEvent_Base {
|
|
34
34
|
}
|
|
@@ -7,7 +7,6 @@ import { UAVisionEvent, UAVisionEvent_Base } from "./ua_vision_event";
|
|
|
7
7
|
* |typedDefinition |4:VisionInformationEventType ns=4;i=1038 |
|
|
8
8
|
* |isAbstract |false |
|
|
9
9
|
*/
|
|
10
|
-
export
|
|
11
|
-
}
|
|
10
|
+
export declare type UAVisionInformationEvent_Base = UAVisionEvent_Base;
|
|
12
11
|
export interface UAVisionInformationEvent extends UAVisionEvent, UAVisionInformationEvent_Base {
|
|
13
12
|
}
|
|
@@ -7,7 +7,6 @@ import { UAVisionCondition, UAVisionCondition_Base } from "./ua_vision_condition
|
|
|
7
7
|
* |typedDefinition |4:VisionPersistentErrorConditionType ns=4;i=1036 |
|
|
8
8
|
* |isAbstract |false |
|
|
9
9
|
*/
|
|
10
|
-
export
|
|
11
|
-
}
|
|
10
|
+
export declare type UAVisionPersistentErrorCondition_Base = UAVisionCondition_Base;
|
|
12
11
|
export interface UAVisionPersistentErrorCondition extends UAVisionCondition, UAVisionPersistentErrorCondition_Base {
|
|
13
12
|
}
|
|
@@ -11,8 +11,8 @@ import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/source/ua_b
|
|
|
11
11
|
* |isAbstract |false |
|
|
12
12
|
*/
|
|
13
13
|
export interface UAVisionSafetyEvent_Base extends UABaseEvent_Base {
|
|
14
|
-
visionSafetyInformation: UAProperty<UAString,
|
|
15
|
-
visionSafetyTriggered: UAProperty<boolean,
|
|
14
|
+
visionSafetyInformation: UAProperty<UAString, DataType.String>;
|
|
15
|
+
visionSafetyTriggered: UAProperty<boolean, DataType.Boolean>;
|
|
16
16
|
}
|
|
17
17
|
export interface UAVisionSafetyEvent extends UABaseEvent, UAVisionSafetyEvent_Base {
|
|
18
18
|
}
|
|
@@ -38,11 +38,11 @@ export interface UAVisionSystem_visionStateMachine extends Omit<UAVisionStateMac
|
|
|
38
38
|
*/
|
|
39
39
|
export interface UAVisionSystem_Base {
|
|
40
40
|
configurationManagement?: UAConfigurationManagement;
|
|
41
|
-
diagnosticLevel?: UABaseDataVariable<UInt16,
|
|
41
|
+
diagnosticLevel?: UABaseDataVariable<UInt16, DataType.UInt16>;
|
|
42
42
|
recipeManagement?: UARecipeManagement;
|
|
43
43
|
resultManagement?: UAResultManagement;
|
|
44
44
|
safetyStateManagement?: UASafetyStateManagement;
|
|
45
|
-
systemState?: UABaseDataVariable<DTSystemStateDescription,
|
|
45
|
+
systemState?: UABaseDataVariable<DTSystemStateDescription, DataType.ExtensionObject>;
|
|
46
46
|
visionStateMachine: UAVisionSystem_visionStateMachine;
|
|
47
47
|
}
|
|
48
48
|
export interface UAVisionSystem extends UAObject, UAVisionSystem_Base {
|
|
@@ -7,7 +7,6 @@ import { UAVisionCondition, UAVisionCondition_Base } from "./ua_vision_condition
|
|
|
7
7
|
* |typedDefinition |4:VisionWarningConditionType ns=4;i=1034 |
|
|
8
8
|
* |isAbstract |false |
|
|
9
9
|
*/
|
|
10
|
-
export
|
|
11
|
-
}
|
|
10
|
+
export declare type UAVisionWarningCondition_Base = UAVisionCondition_Base;
|
|
12
11
|
export interface UAVisionWarningCondition extends UAVisionCondition, UAVisionWarningCondition_Base {
|
|
13
12
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-nodeset-machine-vision",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.76.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
"author": "etienne.rossignon@sterfive.com",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"node-opcua-address-space-base": "2.
|
|
14
|
-
"node-opcua-basic-types": "2.
|
|
15
|
-
"node-opcua-data-model": "2.
|
|
16
|
-
"node-opcua-nodeid": "2.
|
|
17
|
-
"node-opcua-nodeset-ua": "2.
|
|
18
|
-
"node-opcua-status-code": "2.
|
|
19
|
-
"node-opcua-variant": "2.
|
|
13
|
+
"node-opcua-address-space-base": "2.76.2",
|
|
14
|
+
"node-opcua-basic-types": "2.76.2",
|
|
15
|
+
"node-opcua-data-model": "2.76.2",
|
|
16
|
+
"node-opcua-nodeid": "2.76.2",
|
|
17
|
+
"node-opcua-nodeset-ua": "2.76.2",
|
|
18
|
+
"node-opcua-status-code": "2.76.2",
|
|
19
|
+
"node-opcua-variant": "2.76.2"
|
|
20
20
|
},
|
|
21
|
-
"gitHead": "
|
|
21
|
+
"gitHead": "acb5ecaf1e1c71af3b63e80909d58447f3f298e7"
|
|
22
22
|
}
|
|
@@ -10,7 +10,7 @@ import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
|
10
10
|
* | name |4:BinaryIdBaseDataType |
|
|
11
11
|
* | isAbstract|true |
|
|
12
12
|
*/
|
|
13
|
-
export interface DTBinaryIdBase extends DTStructure
|
|
13
|
+
export interface DTBinaryIdBase extends DTStructure {
|
|
14
14
|
/** Id is a system-wide unique name for identifying the recipe.*/
|
|
15
15
|
id: UAString; // String ns=4;i=3017
|
|
16
16
|
/** Represents an optional version number of the identified recipe. It is recommended to be of the format Major.minor.patch.build or a subset thereof, but the actual format is implementation defined.*/
|
|
@@ -9,7 +9,7 @@ import { DTConfigurationId } from "./dt_configuration_id"
|
|
|
9
9
|
* | name |4:ConfigurationDataType |
|
|
10
10
|
* | isAbstract|false |
|
|
11
11
|
*/
|
|
12
|
-
export interface DTConfiguration extends DTStructure
|
|
12
|
+
export interface DTConfiguration extends DTStructure {
|
|
13
13
|
/** Indicates that actual content of the configuration may be transferred through temporary file transfer method.*/
|
|
14
14
|
hasTransferableDataOnFile: boolean; // Boolean ns=0;i=1
|
|
15
15
|
/** Identification of the configuration used by the environment. This argument must not be empty.*/
|
|
@@ -10,7 +10,7 @@ import { DTBinaryIdBase } from "./dt_binary_id_base"
|
|
|
10
10
|
* | name |4:ConfigurationIdDataType |
|
|
11
11
|
* | isAbstract|false |
|
|
12
12
|
*/
|
|
13
|
-
export interface DTConfigurationId extends DTBinaryIdBase
|
|
13
|
+
export interface DTConfigurationId extends DTBinaryIdBase {
|
|
14
14
|
/** Id is a system-wide unique name for identifying the recipe.*/
|
|
15
15
|
id: UAString; // String ns=4;i=3017
|
|
16
16
|
/** Represents an optional version number of the identified recipe. It is recommended to be of the format Major.minor.patch.build or a subset thereof, but the actual format is implementation defined.*/
|
|
@@ -9,7 +9,7 @@ import { DTConfigurationId } from "./dt_configuration_id"
|
|
|
9
9
|
* | name |4:ConfigurationTransferOptions |
|
|
10
10
|
* | isAbstract|false |
|
|
11
11
|
*/
|
|
12
|
-
export interface DTConfigurationTransferOptions extends DTStructure
|
|
12
|
+
export interface DTConfigurationTransferOptions extends DTStructure {
|
|
13
13
|
/** The Id of the configuration to be transferred to or from the client.*/
|
|
14
14
|
internalId: DTConfigurationId; // ExtensionObject ns=4;i=3008
|
|
15
15
|
}
|
package/source/dt_job_id.ts
CHANGED
|
@@ -9,7 +9,7 @@ import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
|
9
9
|
* | name |4:JobIdDataType |
|
|
10
10
|
* | isAbstract|false |
|
|
11
11
|
*/
|
|
12
|
-
export interface DTJobId extends DTStructure
|
|
12
|
+
export interface DTJobId extends DTStructure {
|
|
13
13
|
/** Id is a system-wide unique identifier/name for identifying the job carried out.*/
|
|
14
14
|
id: UAString; // String ns=4;i=3017
|
|
15
15
|
}
|
package/source/dt_meas_id.ts
CHANGED
|
@@ -10,7 +10,7 @@ import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
|
10
10
|
* | name |4:MeasIdDataType |
|
|
11
11
|
* | isAbstract|false |
|
|
12
12
|
*/
|
|
13
|
-
export interface DTMeasId extends DTStructure
|
|
13
|
+
export interface DTMeasId extends DTStructure {
|
|
14
14
|
/** Id is an identifier/name for identifying the measurement operation. This identifier is passed by the client to the vision system so no assumptions can be made about its uniqueness or other properties.*/
|
|
15
15
|
id: UAString; // String ns=4;i=3017
|
|
16
16
|
/** Optional short human readable description of the measurement.*/
|
package/source/dt_part_id.ts
CHANGED
|
@@ -10,7 +10,7 @@ import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
|
10
10
|
* | name |4:PartIdDataType |
|
|
11
11
|
* | isAbstract|false |
|
|
12
12
|
*/
|
|
13
|
-
export interface DTPartId extends DTStructure
|
|
13
|
+
export interface DTPartId extends DTStructure {
|
|
14
14
|
/** Describes the connection between a unit under test and a result, which was created during the processing of a recipe applied on this unit under test. Usually passed by the client with a Start method call and not changed by the server.*/
|
|
15
15
|
id: UAString; // String ns=4;i=3017
|
|
16
16
|
/** Optional short human readable description of the part.*/
|
|
@@ -8,7 +8,7 @@ import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
|
8
8
|
* | name |4:ProcessingTimesDataType |
|
|
9
9
|
* | isAbstract|false |
|
|
10
10
|
*/
|
|
11
|
-
export interface DTProcessingTimes extends DTStructure
|
|
11
|
+
export interface DTProcessingTimes extends DTStructure {
|
|
12
12
|
/** Contains the time when the vision system started execution of the recipe.*/
|
|
13
13
|
startTime: Date; // DateTime ns=0;i=294
|
|
14
14
|
/** Contains the time when the vision system finished (or stopped/aborted) execution of the recipe.*/
|
package/source/dt_product.ts
CHANGED
|
@@ -9,7 +9,7 @@ import { DTProductId } from "./dt_product_id"
|
|
|
9
9
|
* | name |4:ProductDataType |
|
|
10
10
|
* | isAbstract|false |
|
|
11
11
|
*/
|
|
12
|
-
export interface DTProduct extends DTStructure
|
|
12
|
+
export interface DTProduct extends DTStructure {
|
|
13
13
|
/** Identification of the product used by the environment. This argument must not be empty.*/
|
|
14
14
|
externalId: DTProductId; // ExtensionObject ns=4;i=3003
|
|
15
15
|
}
|
package/source/dt_product_id.ts
CHANGED
|
@@ -10,7 +10,7 @@ import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
|
10
10
|
* | name |4:ProductIdDataType |
|
|
11
11
|
* | isAbstract|false |
|
|
12
12
|
*/
|
|
13
|
-
export interface DTProductId extends DTStructure
|
|
13
|
+
export interface DTProductId extends DTStructure {
|
|
14
14
|
/** Id is a system-wide unique identifier/name for identifying the product.*/
|
|
15
15
|
id: UAString; // String ns=4;i=3017
|
|
16
16
|
/** Optional short human readable description of the configuration*/
|
|
@@ -10,7 +10,7 @@ import { DTBinaryIdBase } from "./dt_binary_id_base"
|
|
|
10
10
|
* | name |4:RecipeIdExternalDataType |
|
|
11
11
|
* | isAbstract|false |
|
|
12
12
|
*/
|
|
13
|
-
export interface DTRecipeIdExternal extends DTBinaryIdBase
|
|
13
|
+
export interface DTRecipeIdExternal extends DTBinaryIdBase {
|
|
14
14
|
/** Id is a system-wide unique name for identifying the recipe.*/
|
|
15
15
|
id: UAString; // String ns=4;i=3017
|
|
16
16
|
/** Represents an optional version number of the identified recipe. It is recommended to be of the format Major.minor.patch.build or a subset thereof, but the actual format is implementation defined.*/
|
|
@@ -10,7 +10,7 @@ import { DTBinaryIdBase } from "./dt_binary_id_base"
|
|
|
10
10
|
* | name |4:RecipeIdInternalDataType |
|
|
11
11
|
* | isAbstract|false |
|
|
12
12
|
*/
|
|
13
|
-
export interface DTRecipeIdInternal extends DTBinaryIdBase
|
|
13
|
+
export interface DTRecipeIdInternal extends DTBinaryIdBase {
|
|
14
14
|
/** Id is a system-wide unique name for identifying the recipe.*/
|
|
15
15
|
id: UAString; // String ns=4;i=3017
|
|
16
16
|
/** Represents an optional version number of the identified recipe. It is recommended to be of the format Major.minor.patch.build or a subset thereof, but the actual format is implementation defined.*/
|
|
@@ -9,7 +9,7 @@ import { DTRecipeIdInternal } from "./dt_recipe_id_internal"
|
|
|
9
9
|
* | name |4:RecipeTransferOptions |
|
|
10
10
|
* | isAbstract|false |
|
|
11
11
|
*/
|
|
12
|
-
export interface DTRecipeTransferOptions extends DTStructure
|
|
12
|
+
export interface DTRecipeTransferOptions extends DTStructure {
|
|
13
13
|
/** The InternalId of the recipe to be transferred to or from the client.*/
|
|
14
14
|
internalId: DTRecipeIdInternal; // ExtensionObject ns=4;i=3013
|
|
15
15
|
}
|
package/source/dt_result.ts
CHANGED
|
@@ -18,7 +18,7 @@ import { DTProcessingTimes } from "./dt_processing_times"
|
|
|
18
18
|
* | name |4:ResultDataType |
|
|
19
19
|
* | isAbstract|false |
|
|
20
20
|
*/
|
|
21
|
-
export interface DTResult extends DTStructure
|
|
21
|
+
export interface DTResult extends DTStructure {
|
|
22
22
|
/** System-wide unique identifier, which is assigned by the system. This ID can be used for fetching exactly this result using the pertinent result management methods and it is identical to the ResultId of the ResultReadyEventType.*/
|
|
23
23
|
resultId: DTResultId; // ExtensionObject ns=4;i=3021
|
|
24
24
|
/** Indicates that additional data for this result can be retrieved by temporary file transfer.*/
|
package/source/dt_result_id.ts
CHANGED
|
@@ -9,7 +9,7 @@ import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
|
9
9
|
* | name |4:ResultIdDataType |
|
|
10
10
|
* | isAbstract|false |
|
|
11
11
|
*/
|
|
12
|
-
export interface DTResultId extends DTStructure
|
|
12
|
+
export interface DTResultId extends DTStructure {
|
|
13
13
|
/** Id is a system-wide unique identifier/name for identifying the generated result.*/
|
|
14
14
|
id: UAString; // String ns=4;i=3017
|
|
15
15
|
}
|
|
@@ -9,7 +9,7 @@ import { DTResultId } from "./dt_result_id"
|
|
|
9
9
|
* | name |4:ResultTransferOptions |
|
|
10
10
|
* | isAbstract|false |
|
|
11
11
|
*/
|
|
12
|
-
export interface DTResultTransferOptions extends DTStructure
|
|
12
|
+
export interface DTResultTransferOptions extends DTStructure {
|
|
13
13
|
/** The Id of the result to be transferred to the client.*/
|
|
14
14
|
id: DTResultId; // ExtensionObject ns=4;i=3021
|
|
15
15
|
}
|
|
@@ -10,7 +10,7 @@ import { EnumSystemState } from "./enum_system_state"
|
|
|
10
10
|
* | name |4:SystemStateDescriptionDataType |
|
|
11
11
|
* | isAbstract|false |
|
|
12
12
|
*/
|
|
13
|
-
export interface DTSystemStateDescription extends DTStructure
|
|
13
|
+
export interface DTSystemStateDescription extends DTStructure {
|
|
14
14
|
/** Denotes one of the basic SEMI E10 states*/
|
|
15
15
|
state: EnumSystemState; // Int32 ns=4;i=3023
|
|
16
16
|
/** Optional string describing the full state path, starting with the SEMI E10 state denoted by the state member; the string format is described in Section 11.5.*/
|
|
@@ -12,7 +12,7 @@ import { DTJobId } from "./dt_job_id"
|
|
|
12
12
|
* |isAbstract |false |
|
|
13
13
|
*/
|
|
14
14
|
export interface UAAcquisitionDoneEvent_Base extends UABaseEvent_Base {
|
|
15
|
-
jobId: UAProperty<DTJobId,
|
|
15
|
+
jobId: UAProperty<DTJobId, DataType.ExtensionObject>;
|
|
16
16
|
}
|
|
17
17
|
export interface UAAcquisitionDoneEvent extends UABaseEvent, UAAcquisitionDoneEvent_Base {
|
|
18
18
|
}
|
|
@@ -10,7 +10,6 @@ import { DTConfiguration } from "./dt_configuration"
|
|
|
10
10
|
* |typedDefinition |4:ConfigurationFolderType ns=4;i=1011 |
|
|
11
11
|
* |isAbstract |false |
|
|
12
12
|
*/
|
|
13
|
-
export
|
|
14
|
-
}
|
|
13
|
+
export type UAConfigurationFolder_Base = UAFolder_Base;
|
|
15
14
|
export interface UAConfigurationFolder extends UAFolder, UAConfigurationFolder_Base {
|
|
16
15
|
}
|
|
@@ -16,7 +16,7 @@ import { UAConfigurationTransfer } from "./ua_configuration_transfer"
|
|
|
16
16
|
*/
|
|
17
17
|
export interface UAConfigurationManagement_Base {
|
|
18
18
|
activateConfiguration: UAMethod;
|
|
19
|
-
activeConfiguration: UABaseDataVariable<DTConfiguration,
|
|
19
|
+
activeConfiguration: UABaseDataVariable<DTConfiguration, DataType.ExtensionObject>;
|
|
20
20
|
addConfiguration?: UAMethod;
|
|
21
21
|
configurations?: UAConfigurationFolder;
|
|
22
22
|
configurationTransfer?: UAConfigurationTransfer;
|
|
@@ -12,7 +12,7 @@ import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/source/ua_b
|
|
|
12
12
|
* |isAbstract |false |
|
|
13
13
|
*/
|
|
14
14
|
export interface UAEnterStepSequenceEvent_Base extends UABaseEvent_Base {
|
|
15
|
-
steps: UAProperty<Int32,
|
|
15
|
+
steps: UAProperty<Int32, DataType.Int32>;
|
|
16
16
|
}
|
|
17
17
|
export interface UAEnterStepSequenceEvent extends UABaseEvent, UAEnterStepSequenceEvent_Base {
|
|
18
18
|
}
|
package/source/ua_error_event.ts
CHANGED
|
@@ -13,7 +13,6 @@ import { UATransitionEvent, UATransitionEvent_Base } from "node-opcua-nodeset-ua
|
|
|
13
13
|
* |typedDefinition |4:ErrorEventType ns=4;i=1019 |
|
|
14
14
|
* |isAbstract |false |
|
|
15
15
|
*/
|
|
16
|
-
export
|
|
17
|
-
}
|
|
16
|
+
export type UAErrorEvent_Base = UATransitionEvent_Base;
|
|
18
17
|
export interface UAErrorEvent extends UATransitionEvent, UAErrorEvent_Base {
|
|
19
18
|
}
|
|
@@ -8,7 +8,6 @@ import { UATransitionEvent, UATransitionEvent_Base } from "node-opcua-nodeset-ua
|
|
|
8
8
|
* |typedDefinition |4:ErrorResolvedEventType ns=4;i=1020 |
|
|
9
9
|
* |isAbstract |false |
|
|
10
10
|
*/
|
|
11
|
-
export
|
|
12
|
-
}
|
|
11
|
+
export type UAErrorResolvedEvent_Base = UATransitionEvent_Base;
|
|
13
12
|
export interface UAErrorResolvedEvent extends UATransitionEvent, UAErrorResolvedEvent_Base {
|
|
14
13
|
}
|
|
@@ -12,7 +12,7 @@ import { DTJobId } from "./dt_job_id"
|
|
|
12
12
|
* |isAbstract |false |
|
|
13
13
|
*/
|
|
14
14
|
export interface UAJobStartedEvent_Base extends UABaseEvent_Base {
|
|
15
|
-
jobId: UAProperty<DTJobId,
|
|
15
|
+
jobId: UAProperty<DTJobId, DataType.ExtensionObject>;
|
|
16
16
|
}
|
|
17
17
|
export interface UAJobStartedEvent extends UABaseEvent, UAJobStartedEvent_Base {
|
|
18
18
|
}
|
|
@@ -8,7 +8,6 @@ import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/source/ua_b
|
|
|
8
8
|
* |typedDefinition |4:LeaveStepSequenceEventType ns=4;i=1029 |
|
|
9
9
|
* |isAbstract |false |
|
|
10
10
|
*/
|
|
11
|
-
export
|
|
12
|
-
}
|
|
11
|
+
export type UALeaveStepSequenceEvent_Base = UABaseEvent_Base;
|
|
13
12
|
export interface UALeaveStepSequenceEvent extends UABaseEvent, UALeaveStepSequenceEvent_Base {
|
|
14
13
|
}
|
|
@@ -12,7 +12,7 @@ import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/source/ua_b
|
|
|
12
12
|
* |isAbstract |false |
|
|
13
13
|
*/
|
|
14
14
|
export interface UANextStepEvent_Base extends UABaseEvent_Base {
|
|
15
|
-
step: UAProperty<Int32,
|
|
15
|
+
step: UAProperty<Int32, DataType.Int32>;
|
|
16
16
|
}
|
|
17
17
|
export interface UANextStepEvent extends UABaseEvent, UANextStepEvent_Base {
|
|
18
18
|
}
|
|
@@ -10,7 +10,6 @@ import { DTProduct } from "./dt_product"
|
|
|
10
10
|
* |typedDefinition |4:ProductFolderType ns=4;i=1010 |
|
|
11
11
|
* |isAbstract |false |
|
|
12
12
|
*/
|
|
13
|
-
export
|
|
14
|
-
}
|
|
13
|
+
export type UAProductFolder_Base = UAFolder_Base;
|
|
15
14
|
export interface UAProductFolder extends UAFolder, UAProductFolder_Base {
|
|
16
15
|
}
|
package/source/ua_ready_event.ts
CHANGED
|
@@ -12,7 +12,7 @@ import { DTJobId } from "./dt_job_id"
|
|
|
12
12
|
* |isAbstract |false |
|
|
13
13
|
*/
|
|
14
14
|
export interface UAReadyEvent_Base extends UABaseEvent_Base {
|
|
15
|
-
jobId: UAProperty<DTJobId,
|
|
15
|
+
jobId: UAProperty<DTJobId, DataType.ExtensionObject>;
|
|
16
16
|
}
|
|
17
17
|
export interface UAReadyEvent extends UABaseEvent, UAReadyEvent_Base {
|
|
18
18
|
}
|
package/source/ua_recipe.ts
CHANGED
|
@@ -20,7 +20,7 @@ export interface UARecipe_Base {
|
|
|
20
20
|
* vision system. The ExternalID is only managed by
|
|
21
21
|
* the host system.
|
|
22
22
|
*/
|
|
23
|
-
externalId?: UAProperty<DTRecipeIdExternal,
|
|
23
|
+
externalId?: UAProperty<DTRecipeIdExternal, DataType.ExtensionObject>;
|
|
24
24
|
/**
|
|
25
25
|
* handle
|
|
26
26
|
* The file handle refers to the recipe data, which
|
|
@@ -34,14 +34,14 @@ export interface UARecipe_Base {
|
|
|
34
34
|
* System-wide unique ID for identifying a recipe.
|
|
35
35
|
* This ID is assigned by the vision system.
|
|
36
36
|
*/
|
|
37
|
-
internalId: UAProperty<DTRecipeIdInternal,
|
|
38
|
-
isPrepared: UAProperty<boolean,
|
|
37
|
+
internalId: UAProperty<DTRecipeIdInternal, DataType.ExtensionObject>;
|
|
38
|
+
isPrepared: UAProperty<boolean, DataType.Boolean>;
|
|
39
39
|
/**
|
|
40
40
|
* lastModified
|
|
41
41
|
* The time when this recipe was last modified.
|
|
42
42
|
*/
|
|
43
|
-
lastModified: UAProperty<Date,
|
|
44
|
-
linkedProducts?: UAProperty<DTProductId[],
|
|
43
|
+
lastModified: UAProperty<Date, DataType.DateTime>;
|
|
44
|
+
linkedProducts?: UAProperty<DTProductId[], DataType.ExtensionObject>;
|
|
45
45
|
linkProduct?: UAMethod;
|
|
46
46
|
prepare: UAMethod;
|
|
47
47
|
unlinkProduct?: UAMethod;
|
|
@@ -14,7 +14,6 @@ import { DTProductId } from "./dt_product_id"
|
|
|
14
14
|
* |typedDefinition |4:RecipeFolderType ns=4;i=1008 |
|
|
15
15
|
* |isAbstract |false |
|
|
16
16
|
*/
|
|
17
|
-
export
|
|
18
|
-
}
|
|
17
|
+
export type UARecipeFolder_Base = UAFolder_Base;
|
|
19
18
|
export interface UARecipeFolder extends UAFolder, UARecipeFolder_Base {
|
|
20
19
|
}
|
|
@@ -8,7 +8,7 @@ import { UAProductFolder } from "./ua_product_folder"
|
|
|
8
8
|
import { UARecipeFolder } from "./ua_recipe_folder"
|
|
9
9
|
import { UARecipeTransfer } from "./ua_recipe_transfer"
|
|
10
10
|
export interface UARecipeManagement_products extends Omit<UAProductFolder, "$Product$"> { // Object
|
|
11
|
-
"$Product$": UABaseDataVariable<DTProduct,
|
|
11
|
+
"$Product$": UABaseDataVariable<DTProduct, DataType.ExtensionObject>;
|
|
12
12
|
}
|
|
13
13
|
/**
|
|
14
14
|
* | | |
|
|
@@ -14,9 +14,9 @@ import { DTProductId } from "./dt_product_id"
|
|
|
14
14
|
* |isAbstract |false |
|
|
15
15
|
*/
|
|
16
16
|
export interface UARecipePreparedEvent_Base extends UABaseEvent_Base {
|
|
17
|
-
externalId?: UAProperty<DTRecipeIdExternal,
|
|
18
|
-
internalId: UAProperty<DTRecipeIdInternal,
|
|
19
|
-
productId?: UAProperty<DTProductId,
|
|
17
|
+
externalId?: UAProperty<DTRecipeIdExternal, DataType.ExtensionObject>;
|
|
18
|
+
internalId: UAProperty<DTRecipeIdInternal, DataType.ExtensionObject>;
|
|
19
|
+
productId?: UAProperty<DTProductId, DataType.ExtensionObject>;
|
|
20
20
|
}
|
|
21
21
|
export interface UARecipePreparedEvent extends UABaseEvent, UARecipePreparedEvent_Base {
|
|
22
22
|
}
|
package/source/ua_result.ts
CHANGED
|
@@ -22,23 +22,23 @@ import { DTResultId } from "./dt_result_id"
|
|
|
22
22
|
* |dataType Name |DTResult ns=4;i=3006 |
|
|
23
23
|
* |isAbstract |false |
|
|
24
24
|
*/
|
|
25
|
-
export interface UAResult_Base<T extends DTResult
|
|
26
|
-
creationTime: UABaseDataVariable<Date,
|
|
27
|
-
externalConfigurationId?: UABaseDataVariable<DTConfigurationId,
|
|
28
|
-
externalRecipeId?: UABaseDataVariable<DTRecipeIdExternal,
|
|
29
|
-
hasTransferableDataOnFile?: UABaseDataVariable<boolean,
|
|
30
|
-
internalConfigurationId: UABaseDataVariable<DTConfigurationId,
|
|
31
|
-
internalRecipeId: UABaseDataVariable<DTRecipeIdInternal,
|
|
32
|
-
isPartial: UABaseDataVariable<boolean,
|
|
33
|
-
isSimulated?: UABaseDataVariable<boolean,
|
|
34
|
-
jobId: UABaseDataVariable<DTJobId,
|
|
35
|
-
measId?: UABaseDataVariable<DTMeasId,
|
|
36
|
-
partId?: UABaseDataVariable<DTPartId,
|
|
37
|
-
processingTimes?: UABaseDataVariable<DTProcessingTimes,
|
|
38
|
-
productId?: UABaseDataVariable<DTProductId,
|
|
25
|
+
export interface UAResult_Base<T extends DTResult> extends UABaseDataVariable_Base<T, DataType.ExtensionObject> {
|
|
26
|
+
creationTime: UABaseDataVariable<Date, DataType.DateTime>;
|
|
27
|
+
externalConfigurationId?: UABaseDataVariable<DTConfigurationId, DataType.ExtensionObject>;
|
|
28
|
+
externalRecipeId?: UABaseDataVariable<DTRecipeIdExternal, DataType.ExtensionObject>;
|
|
29
|
+
hasTransferableDataOnFile?: UABaseDataVariable<boolean, DataType.Boolean>;
|
|
30
|
+
internalConfigurationId: UABaseDataVariable<DTConfigurationId, DataType.ExtensionObject>;
|
|
31
|
+
internalRecipeId: UABaseDataVariable<DTRecipeIdInternal, DataType.ExtensionObject>;
|
|
32
|
+
isPartial: UABaseDataVariable<boolean, DataType.Boolean>;
|
|
33
|
+
isSimulated?: UABaseDataVariable<boolean, DataType.Boolean>;
|
|
34
|
+
jobId: UABaseDataVariable<DTJobId, DataType.ExtensionObject>;
|
|
35
|
+
measId?: UABaseDataVariable<DTMeasId, DataType.ExtensionObject>;
|
|
36
|
+
partId?: UABaseDataVariable<DTPartId, DataType.ExtensionObject>;
|
|
37
|
+
processingTimes?: UABaseDataVariable<DTProcessingTimes, DataType.ExtensionObject>;
|
|
38
|
+
productId?: UABaseDataVariable<DTProductId, DataType.ExtensionObject>;
|
|
39
39
|
resultContent?: UABaseDataVariable<any, any>;
|
|
40
|
-
resultId: UABaseDataVariable<DTResultId,
|
|
41
|
-
resultState: UABaseDataVariable<Int32,
|
|
40
|
+
resultId: UABaseDataVariable<DTResultId, DataType.ExtensionObject>;
|
|
41
|
+
resultState: UABaseDataVariable<Int32, DataType.Int32>;
|
|
42
42
|
}
|
|
43
|
-
export interface UAResult<T extends DTResult
|
|
43
|
+
export interface UAResult<T extends DTResult> extends UABaseDataVariable<T, DataType.ExtensionObject>, UAResult_Base<T> {
|
|
44
44
|
}
|
|
@@ -20,7 +20,6 @@ import { DTResultId } from "./dt_result_id"
|
|
|
20
20
|
* |typedDefinition |4:ResultFolderType ns=4;i=1016 |
|
|
21
21
|
* |isAbstract |false |
|
|
22
22
|
*/
|
|
23
|
-
export
|
|
24
|
-
}
|
|
23
|
+
export type UAResultFolder_Base = UAFolder_Base;
|
|
25
24
|
export interface UAResultFolder extends UAFolder, UAResultFolder_Base {
|
|
26
25
|
}
|
|
@@ -21,21 +21,21 @@ import { DTResultId } from "./dt_result_id"
|
|
|
21
21
|
* |isAbstract |false |
|
|
22
22
|
*/
|
|
23
23
|
export interface UAResultReadyEvent_Base extends UABaseEvent_Base {
|
|
24
|
-
creationTime: UAProperty<Date,
|
|
25
|
-
externalConfigurationId?: UAProperty<DTConfigurationId,
|
|
26
|
-
externalRecipeId?: UAProperty<DTRecipeIdExternal,
|
|
27
|
-
internalConfigurationId: UAProperty<DTConfigurationId,
|
|
28
|
-
internalRecipeId: UAProperty<DTRecipeIdInternal,
|
|
29
|
-
isPartial: UAProperty<boolean,
|
|
30
|
-
isSimulated?: UAProperty<boolean,
|
|
31
|
-
jobId: UAProperty<DTJobId,
|
|
32
|
-
measId?: UAProperty<DTMeasId,
|
|
33
|
-
partId?: UAProperty<DTPartId,
|
|
34
|
-
processingTimes?: UAProperty<DTProcessingTimes,
|
|
35
|
-
productId?: UAProperty<DTProductId,
|
|
24
|
+
creationTime: UAProperty<Date, DataType.DateTime>;
|
|
25
|
+
externalConfigurationId?: UAProperty<DTConfigurationId, DataType.ExtensionObject>;
|
|
26
|
+
externalRecipeId?: UAProperty<DTRecipeIdExternal, DataType.ExtensionObject>;
|
|
27
|
+
internalConfigurationId: UAProperty<DTConfigurationId, DataType.ExtensionObject>;
|
|
28
|
+
internalRecipeId: UAProperty<DTRecipeIdInternal, DataType.ExtensionObject>;
|
|
29
|
+
isPartial: UAProperty<boolean, DataType.Boolean>;
|
|
30
|
+
isSimulated?: UAProperty<boolean, DataType.Boolean>;
|
|
31
|
+
jobId: UAProperty<DTJobId, DataType.ExtensionObject>;
|
|
32
|
+
measId?: UAProperty<DTMeasId, DataType.ExtensionObject>;
|
|
33
|
+
partId?: UAProperty<DTPartId, DataType.ExtensionObject>;
|
|
34
|
+
processingTimes?: UAProperty<DTProcessingTimes, DataType.ExtensionObject>;
|
|
35
|
+
productId?: UAProperty<DTProductId, DataType.ExtensionObject>;
|
|
36
36
|
resultContent?: UAProperty<any, any>;
|
|
37
|
-
resultId: UAProperty<DTResultId,
|
|
38
|
-
resultState: UAProperty<Int32,
|
|
37
|
+
resultId: UAProperty<DTResultId, DataType.ExtensionObject>;
|
|
38
|
+
resultState: UAProperty<Int32, DataType.Int32>;
|
|
39
39
|
}
|
|
40
40
|
export interface UAResultReadyEvent extends UABaseEvent, UAResultReadyEvent_Base {
|
|
41
41
|
}
|
|
@@ -14,8 +14,8 @@ import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_va
|
|
|
14
14
|
*/
|
|
15
15
|
export interface UASafetyStateManagement_Base {
|
|
16
16
|
reportSafetyState: UAMethod;
|
|
17
|
-
visionSafetyInformation: UABaseDataVariable<UAString,
|
|
18
|
-
visionSafetyTriggered: UABaseDataVariable<boolean,
|
|
17
|
+
visionSafetyInformation: UABaseDataVariable<UAString, DataType.String>;
|
|
18
|
+
visionSafetyTriggered: UABaseDataVariable<boolean, DataType.Boolean>;
|
|
19
19
|
}
|
|
20
20
|
export interface UASafetyStateManagement extends UAObject, UASafetyStateManagement_Base {
|
|
21
21
|
}
|
|
@@ -8,7 +8,6 @@ import { UATransitionEvent, UATransitionEvent_Base } from "node-opcua-nodeset-ua
|
|
|
8
8
|
* |typedDefinition |4:StateChangedEventType ns=4;i=1018 |
|
|
9
9
|
* |isAbstract |false |
|
|
10
10
|
*/
|
|
11
|
-
export
|
|
12
|
-
}
|
|
11
|
+
export type UAStateChangedEvent_Base = UATransitionEvent_Base;
|
|
13
12
|
export interface UAStateChangedEvent extends UATransitionEvent, UAStateChangedEvent_Base {
|
|
14
13
|
}
|
|
@@ -24,20 +24,20 @@ import { DTResultId } from "./dt_result_id"
|
|
|
24
24
|
* |isAbstract |true |
|
|
25
25
|
*/
|
|
26
26
|
export interface UAVisionCondition_Base extends UAAcknowledgeableCondition_Base {
|
|
27
|
-
blockReaction: UAProperty<boolean,
|
|
28
|
-
causePath?: UAProperty<UAString,
|
|
29
|
-
errorCode?: UAProperty<UInt64,
|
|
30
|
-
errorString?: UAProperty<UAString,
|
|
31
|
-
externalConfigurationId?: UAProperty<DTConfigurationId,
|
|
32
|
-
externalRecipeId?: UAProperty<DTRecipeIdExternal,
|
|
33
|
-
internalConfigurationId?: UAProperty<DTConfigurationId,
|
|
34
|
-
internalRecipeId?: UAProperty<DTRecipeIdInternal,
|
|
35
|
-
jobId?: UAProperty<DTJobId,
|
|
36
|
-
measId?: UAProperty<DTMeasId,
|
|
37
|
-
partId?: UAProperty<DTPartId,
|
|
38
|
-
productId?: UAProperty<DTProductId,
|
|
39
|
-
resultId?: UAProperty<DTResultId,
|
|
40
|
-
stopReaction: UAProperty<boolean,
|
|
27
|
+
blockReaction: UAProperty<boolean, DataType.Boolean>;
|
|
28
|
+
causePath?: UAProperty<UAString, DataType.String>;
|
|
29
|
+
errorCode?: UAProperty<UInt64, DataType.UInt64>;
|
|
30
|
+
errorString?: UAProperty<UAString, DataType.String>;
|
|
31
|
+
externalConfigurationId?: UAProperty<DTConfigurationId, DataType.ExtensionObject>;
|
|
32
|
+
externalRecipeId?: UAProperty<DTRecipeIdExternal, DataType.ExtensionObject>;
|
|
33
|
+
internalConfigurationId?: UAProperty<DTConfigurationId, DataType.ExtensionObject>;
|
|
34
|
+
internalRecipeId?: UAProperty<DTRecipeIdInternal, DataType.ExtensionObject>;
|
|
35
|
+
jobId?: UAProperty<DTJobId, DataType.ExtensionObject>;
|
|
36
|
+
measId?: UAProperty<DTMeasId, DataType.ExtensionObject>;
|
|
37
|
+
partId?: UAProperty<DTPartId, DataType.ExtensionObject>;
|
|
38
|
+
productId?: UAProperty<DTProductId, DataType.ExtensionObject>;
|
|
39
|
+
resultId?: UAProperty<DTResultId, DataType.ExtensionObject>;
|
|
40
|
+
stopReaction: UAProperty<boolean, DataType.Boolean>;
|
|
41
41
|
}
|
|
42
42
|
export interface UAVisionCondition extends UAAcknowledgeableCondition, UAVisionCondition_Base {
|
|
43
43
|
}
|
|
@@ -8,7 +8,6 @@ import { UAVisionEvent, UAVisionEvent_Base } from "./ua_vision_event"
|
|
|
8
8
|
* |typedDefinition |4:VisionDiagnosticInfoEventType ns=4;i=1037 |
|
|
9
9
|
* |isAbstract |false |
|
|
10
10
|
*/
|
|
11
|
-
export
|
|
12
|
-
}
|
|
11
|
+
export type UAVisionDiagnosticInfoEvent_Base = UAVisionEvent_Base;
|
|
13
12
|
export interface UAVisionDiagnosticInfoEvent extends UAVisionEvent, UAVisionDiagnosticInfoEvent_Base {
|
|
14
13
|
}
|
|
@@ -8,7 +8,6 @@ import { UAVisionCondition, UAVisionCondition_Base } from "./ua_vision_condition
|
|
|
8
8
|
* |typedDefinition |4:VisionErrorConditionType ns=4;i=1035 |
|
|
9
9
|
* |isAbstract |false |
|
|
10
10
|
*/
|
|
11
|
-
export
|
|
12
|
-
}
|
|
11
|
+
export type UAVisionErrorCondition_Base = UAVisionCondition_Base;
|
|
13
12
|
export interface UAVisionErrorCondition extends UAVisionCondition, UAVisionErrorCondition_Base {
|
|
14
13
|
}
|
|
@@ -20,16 +20,16 @@ import { DTResultId } from "./dt_result_id"
|
|
|
20
20
|
* |isAbstract |true |
|
|
21
21
|
*/
|
|
22
22
|
export interface UAVisionEvent_Base extends UABaseEvent_Base {
|
|
23
|
-
causePath?: UAProperty<UAString,
|
|
24
|
-
externalConfigurationId?: UAProperty<DTConfigurationId,
|
|
25
|
-
externalRecipeId?: UAProperty<DTRecipeIdExternal,
|
|
26
|
-
internalConfigurationId?: UAProperty<DTConfigurationId,
|
|
27
|
-
internalRecipeId?: UAProperty<DTRecipeIdInternal,
|
|
28
|
-
jobId?: UAProperty<DTJobId,
|
|
29
|
-
measId?: UAProperty<DTMeasId,
|
|
30
|
-
partId?: UAProperty<DTPartId,
|
|
31
|
-
productId?: UAProperty<DTProductId,
|
|
32
|
-
resultId?: UAProperty<DTResultId,
|
|
23
|
+
causePath?: UAProperty<UAString, DataType.String>;
|
|
24
|
+
externalConfigurationId?: UAProperty<DTConfigurationId, DataType.ExtensionObject>;
|
|
25
|
+
externalRecipeId?: UAProperty<DTRecipeIdExternal, DataType.ExtensionObject>;
|
|
26
|
+
internalConfigurationId?: UAProperty<DTConfigurationId, DataType.ExtensionObject>;
|
|
27
|
+
internalRecipeId?: UAProperty<DTRecipeIdInternal, DataType.ExtensionObject>;
|
|
28
|
+
jobId?: UAProperty<DTJobId, DataType.ExtensionObject>;
|
|
29
|
+
measId?: UAProperty<DTMeasId, DataType.ExtensionObject>;
|
|
30
|
+
partId?: UAProperty<DTPartId, DataType.ExtensionObject>;
|
|
31
|
+
productId?: UAProperty<DTProductId, DataType.ExtensionObject>;
|
|
32
|
+
resultId?: UAProperty<DTResultId, DataType.ExtensionObject>;
|
|
33
33
|
}
|
|
34
34
|
export interface UAVisionEvent extends UABaseEvent, UAVisionEvent_Base {
|
|
35
35
|
}
|
|
@@ -8,7 +8,6 @@ import { UAVisionEvent, UAVisionEvent_Base } from "./ua_vision_event"
|
|
|
8
8
|
* |typedDefinition |4:VisionInformationEventType ns=4;i=1038 |
|
|
9
9
|
* |isAbstract |false |
|
|
10
10
|
*/
|
|
11
|
-
export
|
|
12
|
-
}
|
|
11
|
+
export type UAVisionInformationEvent_Base = UAVisionEvent_Base;
|
|
13
12
|
export interface UAVisionInformationEvent extends UAVisionEvent, UAVisionInformationEvent_Base {
|
|
14
13
|
}
|
|
@@ -8,7 +8,6 @@ import { UAVisionCondition, UAVisionCondition_Base } from "./ua_vision_condition
|
|
|
8
8
|
* |typedDefinition |4:VisionPersistentErrorConditionType ns=4;i=1036 |
|
|
9
9
|
* |isAbstract |false |
|
|
10
10
|
*/
|
|
11
|
-
export
|
|
12
|
-
}
|
|
11
|
+
export type UAVisionPersistentErrorCondition_Base = UAVisionCondition_Base;
|
|
13
12
|
export interface UAVisionPersistentErrorCondition extends UAVisionCondition, UAVisionPersistentErrorCondition_Base {
|
|
14
13
|
}
|
|
@@ -12,8 +12,8 @@ import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/source/ua_b
|
|
|
12
12
|
* |isAbstract |false |
|
|
13
13
|
*/
|
|
14
14
|
export interface UAVisionSafetyEvent_Base extends UABaseEvent_Base {
|
|
15
|
-
visionSafetyInformation: UAProperty<UAString,
|
|
16
|
-
visionSafetyTriggered: UAProperty<boolean,
|
|
15
|
+
visionSafetyInformation: UAProperty<UAString, DataType.String>;
|
|
16
|
+
visionSafetyTriggered: UAProperty<boolean, DataType.Boolean>;
|
|
17
17
|
}
|
|
18
18
|
export interface UAVisionSafetyEvent extends UABaseEvent, UAVisionSafetyEvent_Base {
|
|
19
19
|
}
|
|
@@ -40,11 +40,11 @@ export interface UAVisionSystem_visionStateMachine extends Omit<UAVisionStateMac
|
|
|
40
40
|
*/
|
|
41
41
|
export interface UAVisionSystem_Base {
|
|
42
42
|
configurationManagement?: UAConfigurationManagement;
|
|
43
|
-
diagnosticLevel?: UABaseDataVariable<UInt16,
|
|
43
|
+
diagnosticLevel?: UABaseDataVariable<UInt16, DataType.UInt16>;
|
|
44
44
|
recipeManagement?: UARecipeManagement;
|
|
45
45
|
resultManagement?: UAResultManagement;
|
|
46
46
|
safetyStateManagement?: UASafetyStateManagement;
|
|
47
|
-
systemState?: UABaseDataVariable<DTSystemStateDescription,
|
|
47
|
+
systemState?: UABaseDataVariable<DTSystemStateDescription, DataType.ExtensionObject>;
|
|
48
48
|
visionStateMachine: UAVisionSystem_visionStateMachine;
|
|
49
49
|
}
|
|
50
50
|
export interface UAVisionSystem extends UAObject, UAVisionSystem_Base {
|
|
@@ -8,7 +8,6 @@ import { UAVisionCondition, UAVisionCondition_Base } from "./ua_vision_condition
|
|
|
8
8
|
* |typedDefinition |4:VisionWarningConditionType ns=4;i=1034 |
|
|
9
9
|
* |isAbstract |false |
|
|
10
10
|
*/
|
|
11
|
-
export
|
|
12
|
-
}
|
|
11
|
+
export type UAVisionWarningCondition_Base = UAVisionCondition_Base;
|
|
13
12
|
export interface UAVisionWarningCondition extends UAVisionCondition, UAVisionWarningCondition_Base {
|
|
14
13
|
}
|