@softwear/latestcollectioncore 1.0.145 → 1.0.146

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/dist/types.d.ts CHANGED
@@ -255,6 +255,7 @@ declare enum transactionTypeE {
255
255
  B2B_SOLD = "92",
256
256
  B2B_RE_SOLD = "93",
257
257
  PICK_LIST = "94",
258
+ CONSIGNMENT = "95",
258
259
  ORDER = "96",
259
260
  RE_ORDER = "97",
260
261
  OFFER = "98"
package/dist/types.js CHANGED
@@ -49,6 +49,7 @@ var transactionTypeE;
49
49
  transactionTypeE["B2B_SOLD"] = "92";
50
50
  transactionTypeE["B2B_RE_SOLD"] = "93";
51
51
  transactionTypeE["PICK_LIST"] = "94";
52
+ transactionTypeE["CONSIGNMENT"] = "95";
52
53
  transactionTypeE["ORDER"] = "96";
53
54
  transactionTypeE["RE_ORDER"] = "97";
54
55
  transactionTypeE["OFFER"] = "98";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softwear/latestcollectioncore",
3
- "version": "1.0.145",
3
+ "version": "1.0.146",
4
4
  "description": "Core functions for LatestCollections applications",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/types.ts CHANGED
@@ -271,6 +271,7 @@ enum transactionTypeE {
271
271
  B2B_SOLD = '92',
272
272
  B2B_RE_SOLD = '93',
273
273
  PICK_LIST = '94',
274
+ CONSIGNMENT = '95',
274
275
  ORDER = '96',
275
276
  RE_ORDER = '97',
276
277
  OFFER = '98',