ravcredit-core 0.0.13 → 0.0.15

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.
@@ -179,12 +179,12 @@ export const cAsset = {
179
179
  IMEI: ""
180
180
  };
181
181
  export const cAssetFeatures = {
182
- category: [],
183
- brand: [],
184
- paymentOption: [],
185
- catalog: [],
182
+ categories: [],
183
+ brands: [],
184
+ paymentOptions: [],
185
+ catalogs: [],
186
186
  offers: [],
187
- score: []
187
+ scores: []
188
188
  };
189
189
  export const cCompany = {
190
190
  name: "",
@@ -2,3 +2,10 @@ export declare enum eAssetPeriod {
2
2
  MONTH = "MONTH",
3
3
  WEEK = "WEEK"
4
4
  }
5
+ export declare enum eAssetType {
6
+ BRAND = "brands",
7
+ CATEGORY = "categories",
8
+ CATALOG = "catalogs",
9
+ OFFER = "offers",
10
+ SCORES = "scores"
11
+ }
@@ -3,3 +3,11 @@ export var eAssetPeriod;
3
3
  eAssetPeriod["MONTH"] = "MONTH";
4
4
  eAssetPeriod["WEEK"] = "WEEK";
5
5
  })(eAssetPeriod || (eAssetPeriod = {}));
6
+ export var eAssetType;
7
+ (function (eAssetType) {
8
+ eAssetType["BRAND"] = "brands";
9
+ eAssetType["CATEGORY"] = "categories";
10
+ eAssetType["CATALOG"] = "catalogs";
11
+ eAssetType["OFFER"] = "offers";
12
+ eAssetType["SCORES"] = "scores";
13
+ })(eAssetType || (eAssetType = {}));
@@ -38,10 +38,10 @@ export interface oAsset {
38
38
  IMEI: string;
39
39
  }
40
40
  export interface oAssetFeatures {
41
- category: oAssetCategory[];
42
- brand: oAssetBrand[];
43
- paymentOption: oPaymentOption[];
44
- catalog: oCatalog[];
41
+ categories: oAssetCategory[];
42
+ brands: oAssetBrand[];
43
+ paymentOptions: oPaymentOption[];
44
+ catalogs: oCatalog[];
45
45
  offers: oAssetOffer[];
46
- score: oScoreReference[];
46
+ scores: oScoreReference[];
47
47
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ravcredit-core",
3
- "version": "0.0.13",
3
+ "version": "0.0.15",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {