@contrail/entity-types 1.1.57-3 → 1.1.58-1

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/lib/loader.d.ts CHANGED
@@ -184,6 +184,7 @@ export declare class LoaderProcess implements OrgManagedEntity {
184
184
  hasErrors?: boolean;
185
185
  parallelWorkerCount?: number;
186
186
  messageGroupId?: string;
187
+ isPartialFailure?: boolean;
187
188
  }
188
189
  export declare enum IssueType {
189
190
  CONFIG = "CONFIG",
package/lib/loader.js CHANGED
@@ -81,6 +81,7 @@ class LoaderProcess {
81
81
  hasErrors;
82
82
  parallelWorkerCount;
83
83
  messageGroupId;
84
+ isPartialFailure;
84
85
  }
85
86
  exports.LoaderProcess = LoaderProcess;
86
87
  var IssueType;
@@ -22,7 +22,8 @@ export declare enum PropertyType {
22
22
  Image = "image",
23
23
  Json = "json",
24
24
  Password = "password",
25
- SizeRange = "size_range"
25
+ SizeRange = "size_range",
26
+ TypeReference = "type_reference"
26
27
  }
27
28
  export interface PropertyTypeMetaData {
28
29
  label: string;
@@ -27,4 +27,5 @@ var PropertyType;
27
27
  PropertyType["Json"] = "json";
28
28
  PropertyType["Password"] = "password";
29
29
  PropertyType["SizeRange"] = "size_range";
30
+ PropertyType["TypeReference"] = "type_reference";
30
31
  })(PropertyType = exports.PropertyType || (exports.PropertyType = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contrail/entity-types",
3
- "version": "1.1.57-3",
3
+ "version": "1.1.58-1",
4
4
  "description": "A types library for Vibeiq entities.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",