namirasoft-cost 1.4.13 → 1.4.14

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/index.d.ts CHANGED
@@ -41,6 +41,7 @@ export * from "./row/CostCreateRow";
41
41
  export * from "./row/CostRow";
42
42
  export * from "./type/Estimation";
43
43
  export * from "./type/EstimationRow";
44
+ export * from "./type/EstimationUsage";
44
45
  export * from "./type/Period";
45
46
  export * from "./type/Trial";
46
47
  export * from "./type/TrialDuration";
package/dist/index.js CHANGED
@@ -57,6 +57,7 @@ __exportStar(require("./row/CostCreateRow"), exports);
57
57
  __exportStar(require("./row/CostRow"), exports);
58
58
  __exportStar(require("./type/Estimation"), exports);
59
59
  __exportStar(require("./type/EstimationRow"), exports);
60
+ __exportStar(require("./type/EstimationUsage"), exports);
60
61
  __exportStar(require("./type/Period"), exports);
61
62
  __exportStar(require("./type/Trial"), exports);
62
63
  __exportStar(require("./type/TrialDuration"), exports);
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAoBA,yDAAuC;AACvC,6DAA2C;AAC3C,qEAAmD;AACnD,uEAAqD;AACrD,qEAAmD;AACnD,6DAA2C;AAC3C,sEAAoD;AACpD,mEAAiD;AACjD,gEAA8C;AAC9C,gEAA8C;AAC9C,8DAA4C;AAC5C,6CAA2B;AAC3B,gEAA8C;AAC9C,0EAAwD;AACxD,0EAAwD;AACxD,kEAAgD;AAChD,4EAA0D;AAC1D,4EAA0D;AAC1D,gEAA8C;AAC9C,0EAAwD;AACxD,0EAAwD;AACxD,wDAAsC;AACtC,4DAA0C;AAC1C,kEAAgD;AAChD,iEAA+C;AAC/C,2EAAyD;AACzD,2EAAyD;AACzD,8DAA4C;AAC5C,wEAAsD;AACtD,wEAAsD;AACtD,2DAAyC;AACzC,8DAA4C;AAC5C,2DAAyC;AACzC,8DAA4C;AAC5C,yDAAuC;AACvC,6DAA2C;AAC3C,mDAAiC;AACjC,uDAAqC;AACrC,oEAAkD;AAClD,sDAAoC;AACpC,gDAA8B;AAC9B,oDAAkC;AAClC,uDAAqC;AACrC,gDAA8B;AAC9B,+CAA6B;AAC7B,uDAAqC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAoBA,yDAAuC;AACvC,6DAA2C;AAC3C,qEAAmD;AACnD,uEAAqD;AACrD,qEAAmD;AACnD,6DAA2C;AAC3C,sEAAoD;AACpD,mEAAiD;AACjD,gEAA8C;AAC9C,gEAA8C;AAC9C,8DAA4C;AAC5C,6CAA2B;AAC3B,gEAA8C;AAC9C,0EAAwD;AACxD,0EAAwD;AACxD,kEAAgD;AAChD,4EAA0D;AAC1D,4EAA0D;AAC1D,gEAA8C;AAC9C,0EAAwD;AACxD,0EAAwD;AACxD,wDAAsC;AACtC,4DAA0C;AAC1C,kEAAgD;AAChD,iEAA+C;AAC/C,2EAAyD;AACzD,2EAAyD;AACzD,8DAA4C;AAC5C,wEAAsD;AACtD,wEAAsD;AACtD,2DAAyC;AACzC,8DAA4C;AAC5C,2DAAyC;AACzC,8DAA4C;AAC5C,yDAAuC;AACvC,6DAA2C;AAC3C,mDAAiC;AACjC,uDAAqC;AACrC,oEAAkD;AAClD,sDAAoC;AACpC,gDAA8B;AAC9B,oDAAkC;AAClC,uDAAqC;AACrC,yDAAuC;AACvC,gDAA8B;AAC9B,+CAA6B;AAC7B,uDAAqC"}
@@ -1,6 +1,8 @@
1
+ import { EstimationUsage } from "./EstimationUsage";
1
2
  import { Period } from "./Period";
2
3
  export type EstimationRow = {
3
4
  period: Period;
5
+ usage: EstimationUsage;
4
6
  amount: number;
5
7
  trial: boolean;
6
8
  };
@@ -0,0 +1,5 @@
1
+ export type EstimationUsage = {
2
+ name: string;
3
+ value: number;
4
+ unit: string;
5
+ };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=EstimationUsage.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EstimationUsage.js","sourceRoot":"","sources":["../../src/type/EstimationUsage.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "framework": "npm",
9
9
  "application": "package",
10
10
  "private": false,
11
- "version": "1.4.13",
11
+ "version": "1.4.14",
12
12
  "author": "Amir Abolhasani",
13
13
  "license": "MIT",
14
14
  "main": "./dist/index.js",
package/src/index.ts CHANGED
@@ -61,6 +61,7 @@ export * from "./row/CostCreateRow";
61
61
  export * from "./row/CostRow";
62
62
  export * from "./type/Estimation";
63
63
  export * from "./type/EstimationRow";
64
+ export * from "./type/EstimationUsage";
64
65
  export * from "./type/Period";
65
66
  export * from "./type/Trial";
66
67
  export * from "./type/TrialDuration";
@@ -1,8 +1,10 @@
1
+ import { EstimationUsage } from "./EstimationUsage";
1
2
  import { Period } from "./Period";
2
3
 
3
4
  export type EstimationRow =
4
5
  {
5
6
  period: Period;
7
+ usage: EstimationUsage;
6
8
  amount: number;
7
9
  trial: boolean;
8
10
  };
@@ -0,0 +1,6 @@
1
+ export type EstimationUsage =
2
+ {
3
+ name: string;
4
+ value: number;
5
+ unit: string;
6
+ };