@softwear/latestcollectioncore 1.0.52 → 1.0.54

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
@@ -1,3 +1,11 @@
1
+ declare enum subscriptionE {
2
+ DATA_ONLY = "data_only",
3
+ STARTER = "starter",
4
+ SMALL = "small",
5
+ MEDIUM = "medium",
6
+ LARGE = "large",
7
+ X_LARGE = "x_large"
8
+ }
1
9
  declare enum vatCategoryE {
2
10
  LOW = "low",
3
11
  HIGH = "high",
@@ -211,4 +219,4 @@ declare enum mappingStrategyE {
211
219
  CLEAN = "clean",
212
220
  MARK = "markMissingMapping"
213
221
  }
214
- export { RowI, StockTransferSelectionI, MarkedSkuI, vatCategoryE, tagTypeE, SkuI, GroupI, ProductI, ImageI, AttributeI, ColorI, MatrixI, StockTransferDataI, StockTransferMatrixI, BrandSettingI, mappingStrategyE, };
222
+ export { RowI, StockTransferSelectionI, MarkedSkuI, vatCategoryE, tagTypeE, SkuI, GroupI, ProductI, ImageI, AttributeI, ColorI, MatrixI, StockTransferDataI, StockTransferMatrixI, BrandSettingI, mappingStrategyE, subscriptionE, };
package/dist/types.js CHANGED
@@ -1,6 +1,16 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.mappingStrategyE = exports.tagTypeE = exports.vatCategoryE = void 0;
3
+ exports.subscriptionE = exports.mappingStrategyE = exports.tagTypeE = exports.vatCategoryE = void 0;
4
+ var subscriptionE;
5
+ (function (subscriptionE) {
6
+ subscriptionE["DATA_ONLY"] = "data_only";
7
+ subscriptionE["STARTER"] = "starter";
8
+ subscriptionE["SMALL"] = "small";
9
+ subscriptionE["MEDIUM"] = "medium";
10
+ subscriptionE["LARGE"] = "large";
11
+ subscriptionE["X_LARGE"] = "x_large";
12
+ })(subscriptionE || (subscriptionE = {}));
13
+ exports.subscriptionE = subscriptionE;
4
14
  var vatCategoryE;
5
15
  (function (vatCategoryE) {
6
16
  vatCategoryE["LOW"] = "low";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softwear/latestcollectioncore",
3
- "version": "1.0.52",
3
+ "version": "1.0.54",
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
@@ -1,3 +1,12 @@
1
+ enum subscriptionE {
2
+ DATA_ONLY = 'data_only',
3
+ STARTER = 'starter',
4
+ SMALL = 'small',
5
+ MEDIUM = 'medium',
6
+ LARGE = 'large',
7
+ X_LARGE = 'x_large',
8
+ }
9
+
1
10
  enum vatCategoryE {
2
11
  LOW = 'low',
3
12
  HIGH = 'high',
@@ -241,4 +250,5 @@ export {
241
250
  StockTransferMatrixI,
242
251
  BrandSettingI,
243
252
  mappingStrategyE,
253
+ subscriptionE,
244
254
  }