@omnia/management-system 7.5.53-preview → 7.5.54-preview

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.
@@ -2,5 +2,6 @@ import { GuidValue, PropertyValue } from "@omnia/fx/models";
2
2
  export declare class ProcessPropertyValue extends PropertyValue {
3
3
  opmProcessIds: GuidValue[];
4
4
  constructor(opmProcessIds: GuidValue[]);
5
+ isEmpty(): boolean;
5
6
  }
6
7
  export declare const processPropertyDefinitionId = "61d4d5f8-e33a-43c7-a7d5-5b4877426817";
@@ -7,6 +7,9 @@ class ProcessPropertyValue extends models_1.PropertyValue {
7
7
  super();
8
8
  this.opmProcessIds = opmProcessIds;
9
9
  }
10
+ isEmpty() {
11
+ return this.opmProcessIds?.length == 0;
12
+ }
10
13
  }
11
14
  exports.ProcessPropertyValue = ProcessPropertyValue;
12
15
  exports.processPropertyDefinitionId = "61d4d5f8-e33a-43c7-a7d5-5b4877426817";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/management-system",
3
3
  "license": "MIT",
4
- "version": "7.5.53-preview",
4
+ "version": "7.5.54-preview",
5
5
  "description": "Omnia Management System.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"