@contrail/entity-types 1.1.55-5 → 1.1.55-7

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
@@ -53,6 +53,13 @@ export interface LoadResult {
53
53
  transformWarnings?: any[];
54
54
  globalIssues?: GeneralIssueDetails[];
55
55
  failureArea?: LoaderFailureArea;
56
+ preprocessingStepResults: PreProcessingStep[];
57
+ }
58
+ export declare class PreProcessingStep {
59
+ preprocessingStepName: string;
60
+ numberOfWarnings: Number;
61
+ fileId: string;
62
+ numberOfErrors: Number;
56
63
  }
57
64
  export interface RowLoadError {
58
65
  data: any;
package/lib/loader.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.LoaderFailureArea = exports.IssueType = exports.LoaderProcess = exports.LoadType = exports.LoadStatus = exports.ValueToAssortment = exports.AssortmentSplit = exports.ConditionalValues = exports.ColumnDefinition = void 0;
3
+ exports.LoaderFailureArea = exports.IssueType = exports.LoaderProcess = exports.PreProcessingStep = exports.LoadType = exports.LoadStatus = exports.ValueToAssortment = exports.AssortmentSplit = exports.ConditionalValues = exports.ColumnDefinition = void 0;
4
4
  class ColumnDefinition {
5
5
  fromProperty;
6
6
  toProperty;
@@ -43,6 +43,13 @@ var LoadType;
43
43
  LoadType["SIZE_RANGE_TEMPLATE"] = "SIZE_RANGE_TEMPLATE";
44
44
  LoadType["PROJECT"] = "PROJECT";
45
45
  })(LoadType = exports.LoadType || (exports.LoadType = {}));
46
+ class PreProcessingStep {
47
+ preprocessingStepName;
48
+ numberOfWarnings;
49
+ fileId;
50
+ numberOfErrors;
51
+ }
52
+ exports.PreProcessingStep = PreProcessingStep;
46
53
  class LoaderProcess {
47
54
  id;
48
55
  createdOn;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contrail/entity-types",
3
- "version": "1.1.55-5",
3
+ "version": "1.1.55-7",
4
4
  "description": "A types library for Vibeiq entities.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",