@contrail/entity-types 1.1.58 → 1.1.59-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.
@@ -2,7 +2,7 @@ name: empty-passing-test
2
2
  on: pull_request
3
3
  jobs:
4
4
  test:
5
- runs-on: ubuntu-20.04
5
+ runs-on: ubuntu-24.04
6
6
  strategy:
7
7
  matrix:
8
8
  node-version: [16.17.0]
@@ -8,7 +8,7 @@ on:
8
8
  workflow_dispatch: # allow running in github actions manually
9
9
  jobs:
10
10
  deploy-docs:
11
- runs-on: ubuntu-20.04
11
+ runs-on: ubuntu-24.04
12
12
  steps:
13
13
  - name: Node.js
14
14
  uses: actions/setup-node@v3
@@ -0,0 +1,3 @@
1
+ {
2
+ "prettier.singleQuote": true
3
+ }
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,9 @@ 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",
201
+ PROJECT_ITEM = "project-item",
202
+ ASSORTMENT = "assortment",
203
+ PARTIAL_ASSORTMENT = "partial-assortment"
199
204
  }
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,8 @@ var EntityType;
105
106
  (function (EntityType) {
106
107
  EntityType["COLOR"] = "color";
107
108
  EntityType["CUSTOM_ENTITY"] = "custom-entity";
109
+ EntityType["ITEM"] = "item";
110
+ EntityType["PROJECT_ITEM"] = "project-item";
111
+ EntityType["ASSORTMENT"] = "assortment";
112
+ EntityType["PARTIAL_ASSORTMENT"] = "partial-assortment";
108
113
  })(EntityType = exports.EntityType || (exports.EntityType = {}));
@@ -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.58",
3
+ "version": "1.1.59-1",
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
+ }