ravcredit-core 0.0.19 → 0.0.22

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.
@@ -164,6 +164,10 @@ export const cScoreReference = {
164
164
  score: 0
165
165
  };
166
166
  export const cAsset = {
167
+ deadline: {
168
+ weeks: 0,
169
+ interest: 0
170
+ },
167
171
  name: "",
168
172
  id: "",
169
173
  createAt: 0,
@@ -1,6 +1,7 @@
1
1
  import { eAssetPeriod } from "../enum/EnumAsset.js";
2
2
  import { oScoreNoHit, oScoreReference } from "./oScore.js";
3
3
  import { oCatalog } from "./oCatalog.js";
4
+ import { oBusinessDeadlines } from "../../v1/objects/oBusiness.js";
4
5
  export interface oAssetCategory {
5
6
  name: string;
6
7
  id: string;
@@ -37,6 +38,7 @@ export interface oAsset {
37
38
  score: oScoreReference;
38
39
  IMEI: string;
39
40
  inStock: boolean;
41
+ deadline: oBusinessDeadlines;
40
42
  }
41
43
  export interface oAssetFeatures {
42
44
  categories: oAssetCategory[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ravcredit-core",
3
- "version": "0.0.19",
3
+ "version": "0.0.22",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {