@contrail/entity-types 1.1.56-1 → 1.1.56-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.
Files changed (2) hide show
  1. package/lib/loader.d.ts +8 -0
  2. package/package.json +1 -1
package/lib/loader.d.ts CHANGED
@@ -96,6 +96,14 @@ export interface ColorLoadResult {
96
96
  colorsFailedUpdate: RowLoadError[];
97
97
  failed: boolean;
98
98
  }
99
+ export interface CustomEntityLoadResult {
100
+ customEntityCreated: any[];
101
+ customEntityUpdated: any[];
102
+ customEntityUnchanged: any[];
103
+ customEntityFailedCreate: RowLoadError[];
104
+ customEntityFailedUpdate: RowLoadError[];
105
+ failed: boolean;
106
+ }
99
107
  export interface ItemsLoadResult {
100
108
  itemsCreated: any[];
101
109
  itemsUpdated: any[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contrail/entity-types",
3
- "version": "1.1.56-1",
3
+ "version": "1.1.56-2",
4
4
  "description": "A types library for Vibeiq entities.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",