@contrail/entity-types 1.1.57-0 → 1.1.57-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 +7 -7
  2. package/package.json +1 -1
package/lib/loader.d.ts CHANGED
@@ -46,7 +46,7 @@ export declare enum LoadType {
46
46
  }
47
47
  export interface LoadResult {
48
48
  colorsLoadResult?: ColorLoadResult;
49
- customEntityLoadResult?: CustomEntityLoadResult;
49
+ customEntitiesLoadResult?: CustomEntitiesLoadResult;
50
50
  itemsLoadResult?: ItemsLoadResult;
51
51
  projectItemsLoadResult?: ProjectItemsLoadResult;
52
52
  assortmentItemsLoadResult?: AssortmentItemsLoadResult;
@@ -97,12 +97,12 @@ export interface ColorLoadResult {
97
97
  colorsFailedUpdate: RowLoadError[];
98
98
  failed: boolean;
99
99
  }
100
- export interface CustomEntityLoadResult {
101
- customEntityCreated: any[];
102
- customEntityUpdated: any[];
103
- customEntityUnchanged: any[];
104
- customEntityFailedCreate: RowLoadError[];
105
- customEntityFailedUpdate: RowLoadError[];
100
+ export interface CustomEntitiesLoadResult {
101
+ customEntitiesCreated: any[];
102
+ customEntitiesUpdated: any[];
103
+ customEntitiesUnchanged: any[];
104
+ customEntitiesFailedCreate: RowLoadError[];
105
+ customEntitiesFailedUpdate: RowLoadError[];
106
106
  failed: boolean;
107
107
  }
108
108
  export interface ItemsLoadResult {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contrail/entity-types",
3
- "version": "1.1.57-0",
3
+ "version": "1.1.57-2",
4
4
  "description": "A types library for Vibeiq entities.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",