@contrail/entity-types 1.1.58 → 1.1.59-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/lib/loader.d.ts
CHANGED
|
@@ -176,6 +176,7 @@ export declare class LoaderProcess implements OrgManagedEntity {
|
|
|
176
176
|
hasErrors?: boolean;
|
|
177
177
|
parallelWorkerCount?: number;
|
|
178
178
|
messageGroupId?: string;
|
|
179
|
+
isPartialFailure?: boolean;
|
|
179
180
|
}
|
|
180
181
|
export declare enum IssueType {
|
|
181
182
|
CONFIG = "CONFIG",
|
|
@@ -195,5 +196,6 @@ export declare enum LoaderFailureArea {
|
|
|
195
196
|
}
|
|
196
197
|
export declare enum EntityType {
|
|
197
198
|
COLOR = "color",
|
|
198
|
-
CUSTOM_ENTITY = "custom-entity"
|
|
199
|
+
CUSTOM_ENTITY = "custom-entity",
|
|
200
|
+
ITEM = "item"
|
|
199
201
|
}
|
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;
|
|
@@ -105,4 +106,5 @@ var EntityType;
|
|
|
105
106
|
(function (EntityType) {
|
|
106
107
|
EntityType["COLOR"] = "color";
|
|
107
108
|
EntityType["CUSTOM_ENTITY"] = "custom-entity";
|
|
109
|
+
EntityType["ITEM"] = "item";
|
|
108
110
|
})(EntityType = exports.EntityType || (exports.EntityType = {}));
|
package/lib/property-type.d.ts
CHANGED
package/lib/property-type.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contrail/entity-types",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.59-0",
|
|
4
4
|
"description": "A types library for Vibeiq entities.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -23,4 +23,4 @@
|
|
|
23
23
|
"typedoc-plugin-extras": "^3.0.0",
|
|
24
24
|
"typescript": "^4.2"
|
|
25
25
|
}
|
|
26
|
-
}
|
|
26
|
+
}
|