namirasoft-cost 1.4.24 → 1.4.26
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/.ns-sdkg-file-keep +9 -8
- package/dist/NamirasoftCostServerBillWatchAWS.d.ts +2 -2
- package/dist/NamirasoftCostServerBillWatchAWS.js +4 -4
- package/dist/NamirasoftCostServerBillWatchAzure.d.ts +2 -2
- package/dist/NamirasoftCostServerBillWatchAzure.js +4 -4
- package/dist/NamirasoftCostServerBillWatchGCP.d.ts +2 -2
- package/dist/NamirasoftCostServerBillWatchGCP.js +4 -4
- package/dist/NamirasoftCostServerFieldCategory.d.ts +2 -2
- package/dist/NamirasoftCostServerFieldCategory.js +4 -4
- package/dist/NamirasoftCostServerFieldField.d.ts +2 -2
- package/dist/NamirasoftCostServerFieldField.js +4 -4
- package/dist/NamirasoftCostServerSecretSecret.d.ts +2 -2
- package/dist/NamirasoftCostServerSecretSecret.js +4 -4
- package/dist/estimator/BillWatchAWSRecordEstimator.d.ts +3 -0
- package/dist/estimator/BillWatchAWSRecordEstimator.js +8 -0
- package/dist/estimator/BillWatchAWSRecordEstimator.js.map +1 -0
- package/dist/estimator/BillWatchAzureRecordEstimator.d.ts +3 -0
- package/dist/estimator/BillWatchAzureRecordEstimator.js +8 -0
- package/dist/estimator/BillWatchAzureRecordEstimator.js.map +1 -0
- package/dist/estimator/{BillWatchBaseHourlyEstimator.d.ts → BillWatchBaseRecordEstimator.d.ts} +1 -1
- package/dist/estimator/{BillWatchBaseHourlyEstimator.js → BillWatchBaseRecordEstimator.js} +6 -6
- package/dist/estimator/{BillWatchBaseHourlyEstimator.js.map → BillWatchBaseRecordEstimator.js.map} +1 -1
- package/dist/estimator/BillWatchGCPRecordEstimator.d.ts +3 -0
- package/dist/estimator/BillWatchGCPRecordEstimator.js +8 -0
- package/dist/estimator/BillWatchGCPRecordEstimator.js.map +1 -0
- package/dist/estimator/{FieldBaseHourlyEstimator.d.ts → FieldBaseRecordEstimator.d.ts} +1 -1
- package/dist/estimator/{FieldBaseHourlyEstimator.js → FieldBaseRecordEstimator.js} +4 -4
- package/dist/estimator/{FieldBaseHourlyEstimator.js.map → FieldBaseRecordEstimator.js.map} +1 -1
- package/dist/estimator/FieldCategoryRecordEstimator.d.ts +8 -0
- package/dist/estimator/FieldCategoryRecordEstimator.js +12 -0
- package/dist/estimator/{FieldCategoryHourlyEstimator.js.map → FieldCategoryRecordEstimator.js.map} +1 -1
- package/dist/estimator/FieldFieldRecordEstimator.d.ts +8 -0
- package/dist/estimator/FieldFieldRecordEstimator.js +12 -0
- package/dist/estimator/{FieldFieldHourlyEstimator.js.map → FieldFieldRecordEstimator.js.map} +1 -1
- package/dist/estimator/{SecretSecretHourlyEstimator.d.ts → SecretSecretRecordEstimator.d.ts} +1 -1
- package/dist/estimator/{SecretSecretHourlyEstimator.js → SecretSecretRecordEstimator.js} +6 -6
- package/dist/estimator/{SecretSecretHourlyEstimator.js.map → SecretSecretRecordEstimator.js.map} +1 -1
- package/dist/index.d.ts +9 -37
- package/dist/index.js +9 -37
- package/dist/index.js.map +1 -1
- package/dist/type/Bonus.d.ts +9 -0
- package/dist/type/Bonus.js +16 -0
- package/dist/type/Bonus.js.map +1 -0
- package/dist/type/Estimation.d.ts +4 -0
- package/dist/type/Estimation.js +22 -0
- package/dist/type/Estimation.js.map +1 -1
- package/dist/type/EstimationOption.d.ts +4 -0
- package/dist/type/EstimationOption.js +20 -0
- package/dist/type/EstimationOption.js.map +1 -1
- package/dist/type/EstimationUsage.d.ts +4 -0
- package/dist/type/EstimationUsage.js +15 -0
- package/dist/type/EstimationUsage.js.map +1 -1
- package/dist/type/Period.d.ts +4 -0
- package/dist/type/Period.js +27 -4
- package/dist/type/Period.js.map +1 -1
- package/package.json +4 -3
- package/src/NamirasoftCostServerBillWatchAWS.ts +4 -4
- package/src/NamirasoftCostServerBillWatchAzure.ts +4 -4
- package/src/NamirasoftCostServerBillWatchGCP.ts +4 -4
- package/src/NamirasoftCostServerFieldCategory.ts +4 -4
- package/src/NamirasoftCostServerFieldField.ts +4 -4
- package/src/NamirasoftCostServerSecretSecret.ts +4 -4
- package/src/estimator/BillWatchAWSRecordEstimator.ts +5 -0
- package/src/estimator/BillWatchAzureRecordEstimator.ts +5 -0
- package/src/estimator/{BillWatchBaseEstimator.ts → BillWatchBaseRecordEstimator.ts} +2 -2
- package/src/estimator/BillWatchGCPRecordEstimator.ts +5 -0
- package/src/estimator/{FieldBaseEstimator.ts → FieldBaseRecordEstimator.ts} +1 -1
- package/src/estimator/FieldCategoryRecordEstimator.ts +10 -0
- package/src/estimator/FieldFieldRecordEstimator.ts +10 -0
- package/src/estimator/{SecretSecretEstimator.ts → SecretSecretRecordEstimator.ts} +2 -2
- package/src/index.ts +9 -37
- package/src/type/Bonus.ts +21 -0
- package/src/type/Estimation.ts +24 -3
- package/src/type/EstimationOption.ts +22 -2
- package/src/type/EstimationUsage.ts +18 -1
- package/src/type/Period.ts +27 -3
- package/dist/command/BillWatchAWSCommand.d.ts +0 -4
- package/dist/command/BillWatchAWSCommand.js +0 -17
- package/dist/command/BillWatchAWSCommand.js.map +0 -1
- package/dist/command/BillWatchAWSEstimateHourlyCommand.d.ts +0 -5
- package/dist/command/BillWatchAWSEstimateHourlyCommand.js +0 -76
- package/dist/command/BillWatchAWSEstimateHourlyCommand.js.map +0 -1
- package/dist/command/BillWatchAWS_CreateForHourlyCommand.d.ts +0 -5
- package/dist/command/BillWatchAWS_CreateForHourlyCommand.js +0 -94
- package/dist/command/BillWatchAWS_CreateForHourlyCommand.js.map +0 -1
- package/dist/command/BillWatchAzureCommand.d.ts +0 -4
- package/dist/command/BillWatchAzureCommand.js +0 -17
- package/dist/command/BillWatchAzureCommand.js.map +0 -1
- package/dist/command/BillWatchAzureEstimateHourlyCommand.d.ts +0 -5
- package/dist/command/BillWatchAzureEstimateHourlyCommand.js +0 -76
- package/dist/command/BillWatchAzureEstimateHourlyCommand.js.map +0 -1
- package/dist/command/BillWatchAzure_CreateForHourlyCommand.d.ts +0 -5
- package/dist/command/BillWatchAzure_CreateForHourlyCommand.js +0 -94
- package/dist/command/BillWatchAzure_CreateForHourlyCommand.js.map +0 -1
- package/dist/command/BillWatchGCPCommand.d.ts +0 -4
- package/dist/command/BillWatchGCPCommand.js +0 -17
- package/dist/command/BillWatchGCPCommand.js.map +0 -1
- package/dist/command/BillWatchGCPEstimateHourlyCommand.d.ts +0 -5
- package/dist/command/BillWatchGCPEstimateHourlyCommand.js +0 -76
- package/dist/command/BillWatchGCPEstimateHourlyCommand.js.map +0 -1
- package/dist/command/BillWatchGCP_CreateForHourlyCommand.d.ts +0 -5
- package/dist/command/BillWatchGCP_CreateForHourlyCommand.js +0 -94
- package/dist/command/BillWatchGCP_CreateForHourlyCommand.js.map +0 -1
- package/dist/command/CostCommand.d.ts +0 -4
- package/dist/command/CostCommand.js +0 -17
- package/dist/command/CostCommand.js.map +0 -1
- package/dist/command/CostListCommand.d.ts +0 -5
- package/dist/command/CostListCommand.js +0 -38
- package/dist/command/CostListCommand.js.map +0 -1
- package/dist/command/Cost_CreateForCommand.d.ts +0 -5
- package/dist/command/Cost_CreateForCommand.js +0 -175
- package/dist/command/Cost_CreateForCommand.js.map +0 -1
- package/dist/command/FieldCategoryCommand.d.ts +0 -4
- package/dist/command/FieldCategoryCommand.js +0 -17
- package/dist/command/FieldCategoryCommand.js.map +0 -1
- package/dist/command/FieldCategoryEstimateHourlyCommand.d.ts +0 -5
- package/dist/command/FieldCategoryEstimateHourlyCommand.js +0 -76
- package/dist/command/FieldCategoryEstimateHourlyCommand.js.map +0 -1
- package/dist/command/FieldCategory_CreateForHourlyCommand.d.ts +0 -5
- package/dist/command/FieldCategory_CreateForHourlyCommand.js +0 -94
- package/dist/command/FieldCategory_CreateForHourlyCommand.js.map +0 -1
- package/dist/command/FieldFieldCommand.d.ts +0 -4
- package/dist/command/FieldFieldCommand.js +0 -17
- package/dist/command/FieldFieldCommand.js.map +0 -1
- package/dist/command/FieldFieldEstimateHourlyCommand.d.ts +0 -5
- package/dist/command/FieldFieldEstimateHourlyCommand.js +0 -76
- package/dist/command/FieldFieldEstimateHourlyCommand.js.map +0 -1
- package/dist/command/FieldField_CreateForHourlyCommand.d.ts +0 -5
- package/dist/command/FieldField_CreateForHourlyCommand.js +0 -94
- package/dist/command/FieldField_CreateForHourlyCommand.js.map +0 -1
- package/dist/command/HealthzCommand.d.ts +0 -4
- package/dist/command/HealthzCommand.js +0 -15
- package/dist/command/HealthzCommand.js.map +0 -1
- package/dist/command/HealthzGetCommand.d.ts +0 -5
- package/dist/command/HealthzGetCommand.js +0 -38
- package/dist/command/HealthzGetCommand.js.map +0 -1
- package/dist/command/MetricsCommand.d.ts +0 -4
- package/dist/command/MetricsCommand.js +0 -15
- package/dist/command/MetricsCommand.js.map +0 -1
- package/dist/command/MetricsGetCommand.d.ts +0 -5
- package/dist/command/MetricsGetCommand.js +0 -38
- package/dist/command/MetricsGetCommand.js.map +0 -1
- package/dist/command/SecretSecretCommand.d.ts +0 -4
- package/dist/command/SecretSecretCommand.js +0 -21
- package/dist/command/SecretSecretCommand.js.map +0 -1
- package/dist/command/SecretSecretEstimateHourlyCommand.d.ts +0 -5
- package/dist/command/SecretSecretEstimateHourlyCommand.js +0 -76
- package/dist/command/SecretSecretEstimateHourlyCommand.js.map +0 -1
- package/dist/command/SecretSecretEstimateReadCommand.d.ts +0 -5
- package/dist/command/SecretSecretEstimateReadCommand.js +0 -76
- package/dist/command/SecretSecretEstimateReadCommand.js.map +0 -1
- package/dist/command/SecretSecret_CreateForHourlyCommand.d.ts +0 -5
- package/dist/command/SecretSecret_CreateForHourlyCommand.js +0 -94
- package/dist/command/SecretSecret_CreateForHourlyCommand.js.map +0 -1
- package/dist/command/SecretSecret_CreateForReadCommand.d.ts +0 -5
- package/dist/command/SecretSecret_CreateForReadCommand.js +0 -94
- package/dist/command/SecretSecret_CreateForReadCommand.js.map +0 -1
- package/dist/command/ValueCommand.d.ts +0 -4
- package/dist/command/ValueCommand.js +0 -15
- package/dist/command/ValueCommand.js.map +0 -1
- package/dist/command/ValueListCommand.d.ts +0 -5
- package/dist/command/ValueListCommand.js +0 -38
- package/dist/command/ValueListCommand.js.map +0 -1
- package/dist/command/cli.d.ts +0 -2
- package/dist/command/cli.js +0 -32
- package/dist/command/cli.js.map +0 -1
- package/dist/estimator/BillWatchAWSEstimator.d.ts +0 -3
- package/dist/estimator/BillWatchAWSEstimator.js +0 -8
- package/dist/estimator/BillWatchAWSEstimator.js.map +0 -1
- package/dist/estimator/BillWatchAWSHourlyEstimator.d.ts +0 -3
- package/dist/estimator/BillWatchAWSHourlyEstimator.js +0 -8
- package/dist/estimator/BillWatchAWSHourlyEstimator.js.map +0 -1
- package/dist/estimator/BillWatchAzureEstimator.d.ts +0 -3
- package/dist/estimator/BillWatchAzureEstimator.js +0 -8
- package/dist/estimator/BillWatchAzureEstimator.js.map +0 -1
- package/dist/estimator/BillWatchAzureHourlyEstimator.d.ts +0 -3
- package/dist/estimator/BillWatchAzureHourlyEstimator.js +0 -8
- package/dist/estimator/BillWatchAzureHourlyEstimator.js.map +0 -1
- package/dist/estimator/BillWatchBaseEstimator.d.ts +0 -14
- package/dist/estimator/BillWatchBaseEstimator.js +0 -26
- package/dist/estimator/BillWatchBaseEstimator.js.map +0 -1
- package/dist/estimator/BillWatchGCPEstimator.d.ts +0 -3
- package/dist/estimator/BillWatchGCPEstimator.js +0 -8
- package/dist/estimator/BillWatchGCPEstimator.js.map +0 -1
- package/dist/estimator/BillWatchGCPHourlyEstimator.d.ts +0 -3
- package/dist/estimator/BillWatchGCPHourlyEstimator.js +0 -8
- package/dist/estimator/BillWatchGCPHourlyEstimator.js.map +0 -1
- package/dist/estimator/FieldBaseEstimator.d.ts +0 -9
- package/dist/estimator/FieldBaseEstimator.js +0 -22
- package/dist/estimator/FieldBaseEstimator.js.map +0 -1
- package/dist/estimator/FieldCategoryEstimator.d.ts +0 -8
- package/dist/estimator/FieldCategoryEstimator.js +0 -12
- package/dist/estimator/FieldCategoryEstimator.js.map +0 -1
- package/dist/estimator/FieldCategoryHourlyEstimator.d.ts +0 -8
- package/dist/estimator/FieldCategoryHourlyEstimator.js +0 -12
- package/dist/estimator/FieldFieldEstimator.d.ts +0 -8
- package/dist/estimator/FieldFieldEstimator.js +0 -12
- package/dist/estimator/FieldFieldEstimator.js.map +0 -1
- package/dist/estimator/FieldFieldHourlyEstimator.d.ts +0 -8
- package/dist/estimator/FieldFieldHourlyEstimator.js +0 -12
- package/dist/estimator/SecretSecretEstimator.d.ts +0 -14
- package/dist/estimator/SecretSecretEstimator.js +0 -25
- package/dist/estimator/SecretSecretEstimator.js.map +0 -1
- package/src/command/BillWatchAWSCommand.ts +0 -34
- package/src/command/BillWatchAWSEstimateHourlyCommand.ts +0 -83
- package/src/command/BillWatchAWS_CreateForHourlyCommand.ts +0 -101
- package/src/command/BillWatchAzureCommand.ts +0 -34
- package/src/command/BillWatchAzureEstimateHourlyCommand.ts +0 -83
- package/src/command/BillWatchAzure_CreateForHourlyCommand.ts +0 -101
- package/src/command/BillWatchGCPCommand.ts +0 -34
- package/src/command/BillWatchGCPEstimateHourlyCommand.ts +0 -83
- package/src/command/BillWatchGCP_CreateForHourlyCommand.ts +0 -101
- package/src/command/CostCommand.ts +0 -34
- package/src/command/CostListCommand.ts +0 -45
- package/src/command/Cost_CreateForCommand.ts +0 -182
- package/src/command/FieldCategoryCommand.ts +0 -34
- package/src/command/FieldCategoryEstimateHourlyCommand.ts +0 -83
- package/src/command/FieldCategory_CreateForHourlyCommand.ts +0 -101
- package/src/command/FieldFieldCommand.ts +0 -34
- package/src/command/FieldFieldEstimateHourlyCommand.ts +0 -83
- package/src/command/FieldField_CreateForHourlyCommand.ts +0 -101
- package/src/command/HealthzCommand.ts +0 -32
- package/src/command/HealthzGetCommand.ts +0 -45
- package/src/command/MetricsCommand.ts +0 -32
- package/src/command/MetricsGetCommand.ts +0 -45
- package/src/command/SecretSecretCommand.ts +0 -38
- package/src/command/SecretSecretEstimateHourlyCommand.ts +0 -83
- package/src/command/SecretSecretEstimateReadCommand.ts +0 -83
- package/src/command/SecretSecret_CreateForHourlyCommand.ts +0 -101
- package/src/command/SecretSecret_CreateForReadCommand.ts +0 -101
- package/src/command/ValueCommand.ts +0 -32
- package/src/command/ValueListCommand.ts +0 -45
- package/src/command/cli.ts +0 -51
- package/src/estimator/BillWatchAWSEstimator.ts +0 -5
- package/src/estimator/BillWatchAzureEstimator.ts +0 -5
- package/src/estimator/BillWatchGCPEstimator.ts +0 -5
- package/src/estimator/FieldCategoryEstimator.ts +0 -10
- package/src/estimator/FieldFieldEstimator.ts +0 -10
package/.ns-sdkg-file-keep
CHANGED
@@ -8,15 +8,16 @@ src/bonus/LowTotalCountBonus.ts
|
|
8
8
|
src/bonus/LowTotalValueBonus.ts
|
9
9
|
src/bonus/TrialBonus.ts
|
10
10
|
src/bonus/BaseEstimator.ts
|
11
|
-
src/bonus/
|
12
|
-
src/bonus/
|
13
|
-
src/bonus/
|
14
|
-
src/bonus/
|
15
|
-
src/bonus/
|
16
|
-
src/bonus/
|
17
|
-
src/bonus/
|
18
|
-
src/bonus/
|
11
|
+
src/bonus/BillWatchAWSRecordEstimator.ts
|
12
|
+
src/bonus/BillWatchAzureRecordEstimator.ts
|
13
|
+
src/bonus/BillWatchBaseEstimator.ts
|
14
|
+
src/bonus/BillWatchGCPRecordEstimator.ts
|
15
|
+
src/bonus/FieldBaseEstimator.ts
|
16
|
+
src/bonus/FieldCategoryRecordEstimator.ts
|
17
|
+
src/bonus/FieldFieldRecordEstimator.ts
|
18
|
+
src/bonus/SecretSecretRecordEstimator.ts
|
19
19
|
src/bonus/SecretSecretReadEstimator.ts
|
20
|
+
src/type/Bonus.ts
|
20
21
|
src/type/Estimation.ts
|
21
22
|
src/type/EstimationOption.ts
|
22
23
|
src/type/EstimationUsage.ts
|
@@ -5,13 +5,13 @@ import { NamirasoftCostServerBase } from "./NamirasoftCostServerBase";
|
|
5
5
|
import { Period } from "./type/Period";
|
6
6
|
export declare class NamirasoftCostServerBillWatchAWS extends NamirasoftCostServerBase {
|
7
7
|
constructor(server: NamirasoftCostServer);
|
8
|
-
|
8
|
+
EstimateRecord(body: {
|
9
9
|
first_entity_created_at: (Date | null);
|
10
10
|
period: Period;
|
11
11
|
row_number: number;
|
12
12
|
active: boolean;
|
13
13
|
}): Promise<Estimation>;
|
14
|
-
|
14
|
+
_CreateForRecord(user_id: string, body: {
|
15
15
|
first_entity_created_at: (Date | null);
|
16
16
|
period: Period;
|
17
17
|
row_number: number;
|
@@ -14,17 +14,17 @@ const NamirasoftCostServerBase_1 = require("./NamirasoftCostServerBase");
|
|
14
14
|
class NamirasoftCostServerBillWatchAWS extends NamirasoftCostServerBase_1.NamirasoftCostServerBase {
|
15
15
|
constructor(server) {
|
16
16
|
super(server);
|
17
|
-
this.
|
18
|
-
this.
|
17
|
+
this.EstimateRecord = this.EstimateRecord.bind(this);
|
18
|
+
this._CreateForRecord = this._CreateForRecord.bind(this);
|
19
19
|
}
|
20
|
-
|
20
|
+
EstimateRecord(body) {
|
21
21
|
return __awaiter(this, void 0, void 0, function* () {
|
22
22
|
let path = `/estimation/bill-watch/aws/hourly`;
|
23
23
|
let { data } = yield this.server._post(path, {}, body);
|
24
24
|
return data;
|
25
25
|
});
|
26
26
|
}
|
27
|
-
|
27
|
+
_CreateForRecord(user_id, body) {
|
28
28
|
return __awaiter(this, void 0, void 0, function* () {
|
29
29
|
let path = `/application/user/${user_id}/cost/bill-watch/aws/hourly`;
|
30
30
|
let { data } = yield this.server._post(path, {}, body);
|
@@ -5,13 +5,13 @@ import { NamirasoftCostServerBase } from "./NamirasoftCostServerBase";
|
|
5
5
|
import { Period } from "./type/Period";
|
6
6
|
export declare class NamirasoftCostServerBillWatchAzure extends NamirasoftCostServerBase {
|
7
7
|
constructor(server: NamirasoftCostServer);
|
8
|
-
|
8
|
+
EstimateRecord(body: {
|
9
9
|
first_entity_created_at: (Date | null);
|
10
10
|
period: Period;
|
11
11
|
row_number: number;
|
12
12
|
active: boolean;
|
13
13
|
}): Promise<Estimation>;
|
14
|
-
|
14
|
+
_CreateForRecord(user_id: string, body: {
|
15
15
|
first_entity_created_at: (Date | null);
|
16
16
|
period: Period;
|
17
17
|
row_number: number;
|
@@ -14,17 +14,17 @@ const NamirasoftCostServerBase_1 = require("./NamirasoftCostServerBase");
|
|
14
14
|
class NamirasoftCostServerBillWatchAzure extends NamirasoftCostServerBase_1.NamirasoftCostServerBase {
|
15
15
|
constructor(server) {
|
16
16
|
super(server);
|
17
|
-
this.
|
18
|
-
this.
|
17
|
+
this.EstimateRecord = this.EstimateRecord.bind(this);
|
18
|
+
this._CreateForRecord = this._CreateForRecord.bind(this);
|
19
19
|
}
|
20
|
-
|
20
|
+
EstimateRecord(body) {
|
21
21
|
return __awaiter(this, void 0, void 0, function* () {
|
22
22
|
let path = `/estimation/bill-watch/azure/hourly`;
|
23
23
|
let { data } = yield this.server._post(path, {}, body);
|
24
24
|
return data;
|
25
25
|
});
|
26
26
|
}
|
27
|
-
|
27
|
+
_CreateForRecord(user_id, body) {
|
28
28
|
return __awaiter(this, void 0, void 0, function* () {
|
29
29
|
let path = `/application/user/${user_id}/cost/bill-watch/azure/hourly`;
|
30
30
|
let { data } = yield this.server._post(path, {}, body);
|
@@ -5,13 +5,13 @@ import { NamirasoftCostServerBase } from "./NamirasoftCostServerBase";
|
|
5
5
|
import { Period } from "./type/Period";
|
6
6
|
export declare class NamirasoftCostServerBillWatchGCP extends NamirasoftCostServerBase {
|
7
7
|
constructor(server: NamirasoftCostServer);
|
8
|
-
|
8
|
+
EstimateRecord(body: {
|
9
9
|
first_entity_created_at: (Date | null);
|
10
10
|
period: Period;
|
11
11
|
row_number: number;
|
12
12
|
active: boolean;
|
13
13
|
}): Promise<Estimation>;
|
14
|
-
|
14
|
+
_CreateForRecord(user_id: string, body: {
|
15
15
|
first_entity_created_at: (Date | null);
|
16
16
|
period: Period;
|
17
17
|
row_number: number;
|
@@ -14,17 +14,17 @@ const NamirasoftCostServerBase_1 = require("./NamirasoftCostServerBase");
|
|
14
14
|
class NamirasoftCostServerBillWatchGCP extends NamirasoftCostServerBase_1.NamirasoftCostServerBase {
|
15
15
|
constructor(server) {
|
16
16
|
super(server);
|
17
|
-
this.
|
18
|
-
this.
|
17
|
+
this.EstimateRecord = this.EstimateRecord.bind(this);
|
18
|
+
this._CreateForRecord = this._CreateForRecord.bind(this);
|
19
19
|
}
|
20
|
-
|
20
|
+
EstimateRecord(body) {
|
21
21
|
return __awaiter(this, void 0, void 0, function* () {
|
22
22
|
let path = `/estimation/bill-watch/gcp/hourly`;
|
23
23
|
let { data } = yield this.server._post(path, {}, body);
|
24
24
|
return data;
|
25
25
|
});
|
26
26
|
}
|
27
|
-
|
27
|
+
_CreateForRecord(user_id, body) {
|
28
28
|
return __awaiter(this, void 0, void 0, function* () {
|
29
29
|
let path = `/application/user/${user_id}/cost/bill-watch/gcp/hourly`;
|
30
30
|
let { data } = yield this.server._post(path, {}, body);
|
@@ -5,13 +5,13 @@ import { NamirasoftCostServerBase } from "./NamirasoftCostServerBase";
|
|
5
5
|
import { Period } from "./type/Period";
|
6
6
|
export declare class NamirasoftCostServerFieldCategory extends NamirasoftCostServerBase {
|
7
7
|
constructor(server: NamirasoftCostServer);
|
8
|
-
|
8
|
+
EstimateRecord(body: {
|
9
9
|
first_entity_created_at: (Date | null);
|
10
10
|
period: Period;
|
11
11
|
row_number: number;
|
12
12
|
active: boolean;
|
13
13
|
}): Promise<Estimation>;
|
14
|
-
|
14
|
+
_CreateForRecord(user_id: string, body: {
|
15
15
|
first_entity_created_at: (Date | null);
|
16
16
|
period: Period;
|
17
17
|
row_number: number;
|
@@ -14,17 +14,17 @@ const NamirasoftCostServerBase_1 = require("./NamirasoftCostServerBase");
|
|
14
14
|
class NamirasoftCostServerFieldCategory extends NamirasoftCostServerBase_1.NamirasoftCostServerBase {
|
15
15
|
constructor(server) {
|
16
16
|
super(server);
|
17
|
-
this.
|
18
|
-
this.
|
17
|
+
this.EstimateRecord = this.EstimateRecord.bind(this);
|
18
|
+
this._CreateForRecord = this._CreateForRecord.bind(this);
|
19
19
|
}
|
20
|
-
|
20
|
+
EstimateRecord(body) {
|
21
21
|
return __awaiter(this, void 0, void 0, function* () {
|
22
22
|
let path = `/estimation/field/category/hourly`;
|
23
23
|
let { data } = yield this.server._post(path, {}, body);
|
24
24
|
return data;
|
25
25
|
});
|
26
26
|
}
|
27
|
-
|
27
|
+
_CreateForRecord(user_id, body) {
|
28
28
|
return __awaiter(this, void 0, void 0, function* () {
|
29
29
|
let path = `/application/user/${user_id}/cost/field/category/hourly`;
|
30
30
|
let { data } = yield this.server._post(path, {}, body);
|
@@ -5,13 +5,13 @@ import { NamirasoftCostServerBase } from "./NamirasoftCostServerBase";
|
|
5
5
|
import { Period } from "./type/Period";
|
6
6
|
export declare class NamirasoftCostServerFieldField extends NamirasoftCostServerBase {
|
7
7
|
constructor(server: NamirasoftCostServer);
|
8
|
-
|
8
|
+
EstimateRecord(body: {
|
9
9
|
first_entity_created_at: (Date | null);
|
10
10
|
period: Period;
|
11
11
|
row_number: number;
|
12
12
|
active: boolean;
|
13
13
|
}): Promise<Estimation>;
|
14
|
-
|
14
|
+
_CreateForRecord(user_id: string, body: {
|
15
15
|
first_entity_created_at: (Date | null);
|
16
16
|
period: Period;
|
17
17
|
row_number: number;
|
@@ -14,17 +14,17 @@ const NamirasoftCostServerBase_1 = require("./NamirasoftCostServerBase");
|
|
14
14
|
class NamirasoftCostServerFieldField extends NamirasoftCostServerBase_1.NamirasoftCostServerBase {
|
15
15
|
constructor(server) {
|
16
16
|
super(server);
|
17
|
-
this.
|
18
|
-
this.
|
17
|
+
this.EstimateRecord = this.EstimateRecord.bind(this);
|
18
|
+
this._CreateForRecord = this._CreateForRecord.bind(this);
|
19
19
|
}
|
20
|
-
|
20
|
+
EstimateRecord(body) {
|
21
21
|
return __awaiter(this, void 0, void 0, function* () {
|
22
22
|
let path = `/estimation/field/field/hourly`;
|
23
23
|
let { data } = yield this.server._post(path, {}, body);
|
24
24
|
return data;
|
25
25
|
});
|
26
26
|
}
|
27
|
-
|
27
|
+
_CreateForRecord(user_id, body) {
|
28
28
|
return __awaiter(this, void 0, void 0, function* () {
|
29
29
|
let path = `/application/user/${user_id}/cost/field/field/hourly`;
|
30
30
|
let { data } = yield this.server._post(path, {}, body);
|
@@ -5,13 +5,13 @@ import { NamirasoftCostServerBase } from "./NamirasoftCostServerBase";
|
|
5
5
|
import { Period } from "./type/Period";
|
6
6
|
export declare class NamirasoftCostServerSecretSecret extends NamirasoftCostServerBase {
|
7
7
|
constructor(server: NamirasoftCostServer);
|
8
|
-
|
8
|
+
EstimateRecord(body: {
|
9
9
|
first_entity_created_at: (Date | null);
|
10
10
|
period: Period;
|
11
11
|
row_number: number;
|
12
12
|
active: boolean;
|
13
13
|
}): Promise<Estimation>;
|
14
|
-
|
14
|
+
_CreateForRecord(user_id: string, body: {
|
15
15
|
first_entity_created_at: (Date | null);
|
16
16
|
period: Period;
|
17
17
|
row_number: number;
|
@@ -14,19 +14,19 @@ const NamirasoftCostServerBase_1 = require("./NamirasoftCostServerBase");
|
|
14
14
|
class NamirasoftCostServerSecretSecret extends NamirasoftCostServerBase_1.NamirasoftCostServerBase {
|
15
15
|
constructor(server) {
|
16
16
|
super(server);
|
17
|
-
this.
|
18
|
-
this.
|
17
|
+
this.EstimateRecord = this.EstimateRecord.bind(this);
|
18
|
+
this._CreateForRecord = this._CreateForRecord.bind(this);
|
19
19
|
this.EstimateRead = this.EstimateRead.bind(this);
|
20
20
|
this._CreateForRead = this._CreateForRead.bind(this);
|
21
21
|
}
|
22
|
-
|
22
|
+
EstimateRecord(body) {
|
23
23
|
return __awaiter(this, void 0, void 0, function* () {
|
24
24
|
let path = `/estimation/secret/secret/hourly`;
|
25
25
|
let { data } = yield this.server._post(path, {}, body);
|
26
26
|
return data;
|
27
27
|
});
|
28
28
|
}
|
29
|
-
|
29
|
+
_CreateForRecord(user_id, body) {
|
30
30
|
return __awaiter(this, void 0, void 0, function* () {
|
31
31
|
let path = `/application/user/${user_id}/cost/secret/secret/hourly`;
|
32
32
|
let { data } = yield this.server._post(path, {}, body);
|
@@ -0,0 +1,8 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.BillWatchAWSRecordEstimator = void 0;
|
4
|
+
const BillWatchBaseRecordEstimator_1 = require("./BillWatchBaseRecordEstimator");
|
5
|
+
class BillWatchAWSRecordEstimator extends BillWatchBaseRecordEstimator_1.BillWatchBaseRecordEstimator {
|
6
|
+
}
|
7
|
+
exports.BillWatchAWSRecordEstimator = BillWatchAWSRecordEstimator;
|
8
|
+
//# sourceMappingURL=BillWatchAWSRecordEstimator.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"BillWatchAWSRecordEstimator.js","sourceRoot":"","sources":["../../src/estimator/BillWatchAWSRecordEstimator.ts"],"names":[],"mappings":";;;AAAA,iFAA8E;AAE9E,MAAa,2BAA4B,SAAQ,2DAA4B;CAE5E;AAFD,kEAEC"}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.BillWatchAzureRecordEstimator = void 0;
|
4
|
+
const BillWatchBaseRecordEstimator_1 = require("./BillWatchBaseRecordEstimator");
|
5
|
+
class BillWatchAzureRecordEstimator extends BillWatchBaseRecordEstimator_1.BillWatchBaseRecordEstimator {
|
6
|
+
}
|
7
|
+
exports.BillWatchAzureRecordEstimator = BillWatchAzureRecordEstimator;
|
8
|
+
//# sourceMappingURL=BillWatchAzureRecordEstimator.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"BillWatchAzureRecordEstimator.js","sourceRoot":"","sources":["../../src/estimator/BillWatchAzureRecordEstimator.ts"],"names":[],"mappings":";;;AAAA,iFAA8E;AAE9E,MAAa,6BAA8B,SAAQ,2DAA4B;CAE9E;AAFD,sEAEC"}
|
package/dist/estimator/{BillWatchBaseHourlyEstimator.d.ts → BillWatchBaseRecordEstimator.d.ts}
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
import { BaseEstimator } from "./BaseEstimator";
|
2
2
|
import { TrialBonus } from "../bonus/TrialBonus";
|
3
|
-
export declare abstract class
|
3
|
+
export declare abstract class BillWatchBaseRecordEstimator extends BaseEstimator {
|
4
4
|
static WATCH_PER_HOUR_ACTIVE: number;
|
5
5
|
getFee(): {
|
6
6
|
active: number;
|
@@ -1,13 +1,13 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
3
|
+
exports.BillWatchBaseRecordEstimator = void 0;
|
4
4
|
const namirasoft_core_1 = require("namirasoft-core");
|
5
5
|
const BaseEstimator_1 = require("./BaseEstimator");
|
6
6
|
const Usage_1 = require("../type/Usage");
|
7
7
|
const TrialBonus_1 = require("../bonus/TrialBonus");
|
8
|
-
class
|
8
|
+
class BillWatchBaseRecordEstimator extends BaseEstimator_1.BaseEstimator {
|
9
9
|
getFee() {
|
10
|
-
return { active:
|
10
|
+
return { active: BillWatchBaseRecordEstimator.WATCH_PER_HOUR_ACTIVE, deactive: 0 };
|
11
11
|
}
|
12
12
|
getUsage() {
|
13
13
|
return {
|
@@ -21,6 +21,6 @@ class BillWatchBaseHourlyEstimator extends BaseEstimator_1.BaseEstimator {
|
|
21
21
|
];
|
22
22
|
}
|
23
23
|
}
|
24
|
-
exports.
|
25
|
-
|
26
|
-
//# sourceMappingURL=
|
24
|
+
exports.BillWatchBaseRecordEstimator = BillWatchBaseRecordEstimator;
|
25
|
+
BillWatchBaseRecordEstimator.WATCH_PER_HOUR_ACTIVE = namirasoft_core_1.PriceOperation.cent_to_millicent(3);
|
26
|
+
//# sourceMappingURL=BillWatchBaseRecordEstimator.js.map
|
package/dist/estimator/{BillWatchBaseHourlyEstimator.js.map → BillWatchBaseRecordEstimator.js.map}
RENAMED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"
|
1
|
+
{"version":3,"file":"BillWatchBaseRecordEstimator.js","sourceRoot":"","sources":["../../src/estimator/BillWatchBaseRecordEstimator.ts"],"names":[],"mappings":";;;AAAA,qDAA+D;AAC/D,mDAAgD;AAChD,yCAAsC;AACtC,oDAAiD;AAEjD,MAAsB,4BAA6B,SAAQ,6BAAa;IAG3D,MAAM;QAEX,OAAO,EAAE,MAAM,EAAE,4BAA4B,CAAC,qBAAqB,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;IACvF,CAAC;IACQ,QAAQ;QAEb,OAAO;YACH,IAAI,EAAE,aAAK,CAAC,IAAI,CAAC,IAAI;YACrB,IAAI,EAAE,aAAK,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI;SACnC,CAAC;IACN,CAAC;IACQ,SAAS;QAEd,OAAO;YACH,IAAI,uBAAU,CAAC,CAAC,EAAE,8BAAY,CAAC,IAAI,CAAC;SACvC,CAAC;IACN,CAAC;;AAnBL,oEAoBC;AAlBU,kDAAqB,GAAG,gCAAc,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC"}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.BillWatchGCPRecordEstimator = void 0;
|
4
|
+
const BillWatchBaseRecordEstimator_1 = require("./BillWatchBaseRecordEstimator");
|
5
|
+
class BillWatchGCPRecordEstimator extends BillWatchBaseRecordEstimator_1.BillWatchBaseRecordEstimator {
|
6
|
+
}
|
7
|
+
exports.BillWatchGCPRecordEstimator = BillWatchGCPRecordEstimator;
|
8
|
+
//# sourceMappingURL=BillWatchGCPRecordEstimator.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"BillWatchGCPRecordEstimator.js","sourceRoot":"","sources":["../../src/estimator/BillWatchGCPRecordEstimator.ts"],"names":[],"mappings":";;;AAAA,iFAA8E;AAE9E,MAAa,2BAA4B,SAAQ,2DAA4B;CAE5E;AAFD,kEAEC"}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { TrialBonus } from "../bonus/TrialBonus";
|
2
2
|
import { BaseEstimator } from "./BaseEstimator";
|
3
|
-
export declare abstract class
|
3
|
+
export declare abstract class FieldBaseRecordEstimator extends BaseEstimator {
|
4
4
|
getBonues(): TrialBonus[];
|
5
5
|
getUsage(): {
|
6
6
|
name: string;
|
@@ -1,11 +1,11 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
3
|
+
exports.FieldBaseRecordEstimator = void 0;
|
4
4
|
const namirasoft_core_1 = require("namirasoft-core");
|
5
5
|
const TrialBonus_1 = require("../bonus/TrialBonus");
|
6
6
|
const BaseEstimator_1 = require("./BaseEstimator");
|
7
7
|
const Usage_1 = require("../type/Usage");
|
8
|
-
class
|
8
|
+
class FieldBaseRecordEstimator extends BaseEstimator_1.BaseEstimator {
|
9
9
|
getBonues() {
|
10
10
|
return [
|
11
11
|
new TrialBonus_1.TrialBonus(1, namirasoft_core_1.DurationUnit.Week)
|
@@ -18,5 +18,5 @@ class FieldBaseHourlyEstimator extends BaseEstimator_1.BaseEstimator {
|
|
18
18
|
};
|
19
19
|
}
|
20
20
|
}
|
21
|
-
exports.
|
22
|
-
//# sourceMappingURL=
|
21
|
+
exports.FieldBaseRecordEstimator = FieldBaseRecordEstimator;
|
22
|
+
//# sourceMappingURL=FieldBaseRecordEstimator.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"
|
1
|
+
{"version":3,"file":"FieldBaseRecordEstimator.js","sourceRoot":"","sources":["../../src/estimator/FieldBaseRecordEstimator.ts"],"names":[],"mappings":";;;AAAA,qDAA+C;AAC/C,oDAAiD;AACjD,mDAAgD;AAChD,yCAAsC;AAEtC,MAAsB,wBAAyB,SAAQ,6BAAa;IAEvD,SAAS;QAEd,OAAO;YACH,IAAI,uBAAU,CAAC,CAAC,EAAE,8BAAY,CAAC,IAAI,CAAC;SACvC,CAAC;IACN,CAAC;IACQ,QAAQ;QAEb,OAAO;YACH,IAAI,EAAE,aAAK,CAAC,IAAI,CAAC,IAAI;YACrB,IAAI,EAAE,aAAK,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI;SACnC,CAAC;IACN,CAAC;CACJ;AAfD,4DAeC"}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.FieldCategoryRecordEstimator = void 0;
|
4
|
+
const FieldBaseRecordEstimator_1 = require("./FieldBaseRecordEstimator");
|
5
|
+
class FieldCategoryRecordEstimator extends FieldBaseRecordEstimator_1.FieldBaseRecordEstimator {
|
6
|
+
getFee() {
|
7
|
+
return { active: FieldCategoryRecordEstimator.PER_HOUR_ACTIVE, deactive: FieldCategoryRecordEstimator.PER_HOUR_ACTIVE };
|
8
|
+
}
|
9
|
+
}
|
10
|
+
exports.FieldCategoryRecordEstimator = FieldCategoryRecordEstimator;
|
11
|
+
FieldCategoryRecordEstimator.PER_HOUR_ACTIVE = 200;
|
12
|
+
//# sourceMappingURL=FieldCategoryRecordEstimator.js.map
|
package/dist/estimator/{FieldCategoryHourlyEstimator.js.map → FieldCategoryRecordEstimator.js.map}
RENAMED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"
|
1
|
+
{"version":3,"file":"FieldCategoryRecordEstimator.js","sourceRoot":"","sources":["../../src/estimator/FieldCategoryRecordEstimator.ts"],"names":[],"mappings":";;;AAAA,yEAAsE;AAEtE,MAAa,4BAA6B,SAAQ,mDAAwB;IAG7D,MAAM;QAEX,OAAO,EAAE,MAAM,EAAE,4BAA4B,CAAC,eAAe,EAAE,QAAQ,EAAE,4BAA4B,CAAC,eAAe,EAAE,CAAC;IAC5H,CAAC;;AANL,oEAOC;AALU,4CAAe,GAAG,GAAG,CAAC"}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.FieldFieldRecordEstimator = void 0;
|
4
|
+
const FieldBaseRecordEstimator_1 = require("./FieldBaseRecordEstimator");
|
5
|
+
class FieldFieldRecordEstimator extends FieldBaseRecordEstimator_1.FieldBaseRecordEstimator {
|
6
|
+
getFee() {
|
7
|
+
return { active: FieldFieldRecordEstimator.PER_HOUR_ACTIVE, deactive: FieldFieldRecordEstimator.PER_HOUR_ACTIVE };
|
8
|
+
}
|
9
|
+
}
|
10
|
+
exports.FieldFieldRecordEstimator = FieldFieldRecordEstimator;
|
11
|
+
FieldFieldRecordEstimator.PER_HOUR_ACTIVE = 250;
|
12
|
+
//# sourceMappingURL=FieldFieldRecordEstimator.js.map
|
package/dist/estimator/{FieldFieldHourlyEstimator.js.map → FieldFieldRecordEstimator.js.map}
RENAMED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"
|
1
|
+
{"version":3,"file":"FieldFieldRecordEstimator.js","sourceRoot":"","sources":["../../src/estimator/FieldFieldRecordEstimator.ts"],"names":[],"mappings":";;;AAAA,yEAAsE;AAEtE,MAAa,yBAA0B,SAAQ,mDAAwB;IAG1D,MAAM;QAEX,OAAO,EAAE,MAAM,EAAE,yBAAyB,CAAC,eAAe,EAAE,QAAQ,EAAE,yBAAyB,CAAC,eAAe,EAAE,CAAC;IACtH,CAAC;;AANL,8DAOC;AALU,yCAAe,GAAG,GAAG,CAAC"}
|
package/dist/estimator/{SecretSecretHourlyEstimator.d.ts → SecretSecretRecordEstimator.d.ts}
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
import { FreeCountBonus } from "../bonus/FreeCountBonus";
|
2
2
|
import { BaseEstimator } from "./BaseEstimator";
|
3
|
-
export declare class
|
3
|
+
export declare class SecretSecretRecordEstimator extends BaseEstimator {
|
4
4
|
static PER_HOUR_ACTIVE: number;
|
5
5
|
getFee(): {
|
6
6
|
active: number;
|
@@ -1,12 +1,12 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
3
|
+
exports.SecretSecretRecordEstimator = void 0;
|
4
4
|
const FreeCountBonus_1 = require("../bonus/FreeCountBonus");
|
5
5
|
const Usage_1 = require("../type/Usage");
|
6
6
|
const BaseEstimator_1 = require("./BaseEstimator");
|
7
|
-
class
|
7
|
+
class SecretSecretRecordEstimator extends BaseEstimator_1.BaseEstimator {
|
8
8
|
getFee() {
|
9
|
-
return { active:
|
9
|
+
return { active: SecretSecretRecordEstimator.PER_HOUR_ACTIVE, deactive: SecretSecretRecordEstimator.PER_HOUR_ACTIVE };
|
10
10
|
}
|
11
11
|
getUsage() {
|
12
12
|
return {
|
@@ -20,6 +20,6 @@ class SecretSecretHourlyEstimator extends BaseEstimator_1.BaseEstimator {
|
|
20
20
|
];
|
21
21
|
}
|
22
22
|
}
|
23
|
-
exports.
|
24
|
-
|
25
|
-
//# sourceMappingURL=
|
23
|
+
exports.SecretSecretRecordEstimator = SecretSecretRecordEstimator;
|
24
|
+
SecretSecretRecordEstimator.PER_HOUR_ACTIVE = 2;
|
25
|
+
//# sourceMappingURL=SecretSecretRecordEstimator.js.map
|
package/dist/estimator/{SecretSecretHourlyEstimator.js.map → SecretSecretRecordEstimator.js.map}
RENAMED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"
|
1
|
+
{"version":3,"file":"SecretSecretRecordEstimator.js","sourceRoot":"","sources":["../../src/estimator/SecretSecretRecordEstimator.ts"],"names":[],"mappings":";;;AAAA,4DAAyD;AACzD,yCAAsC;AACtC,mDAAgD;AAEhD,MAAa,2BAA4B,SAAQ,6BAAa;IAGjD,MAAM;QAEX,OAAO,EAAE,MAAM,EAAE,2BAA2B,CAAC,eAAe,EAAE,QAAQ,EAAE,2BAA2B,CAAC,eAAe,EAAE,CAAC;IAC1H,CAAC;IACQ,QAAQ;QAEb,OAAO;YACH,IAAI,EAAE,aAAK,CAAC,IAAI,CAAC,IAAI;YACrB,IAAI,EAAE,aAAK,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI;SACnC,CAAC;IACN,CAAC;IACQ,SAAS;QAEd,OAAO;YACH,IAAI,+BAAc,CAAC,GAAG,CAAC;SAC1B,CAAC;IACN,CAAC;;AAnBL,kEAoBC;AAlBU,2CAAe,GAAG,CAAC,CAAC"}
|
package/dist/index.d.ts
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
export * from "./bonus/BaseBonus";
|
2
2
|
export * from "./estimator/BaseEstimator";
|
3
|
-
export * from "./estimator/
|
4
|
-
export * from "./estimator/
|
5
|
-
export * from "./estimator/
|
6
|
-
export * from "./estimator/
|
7
|
-
export * from "./estimator/
|
8
|
-
export * from "./estimator/
|
9
|
-
export * from "./estimator/
|
10
|
-
export * from "./estimator/
|
3
|
+
export * from "./estimator/BillWatchAWSRecordEstimator";
|
4
|
+
export * from "./estimator/BillWatchAzureRecordEstimator";
|
5
|
+
export * from "./estimator/BillWatchBaseRecordEstimator";
|
6
|
+
export * from "./estimator/BillWatchGCPRecordEstimator";
|
7
|
+
export * from "./estimator/FieldBaseRecordEstimator";
|
8
|
+
export * from "./estimator/FieldCategoryRecordEstimator";
|
9
|
+
export * from "./estimator/FieldFieldRecordEstimator";
|
10
|
+
export * from "./estimator/SecretSecretRecordEstimator";
|
11
11
|
export * from "./estimator/SecretSecretReadEstimator";
|
12
12
|
export * from "./NamirasoftCostServer";
|
13
13
|
export * from "./NamirasoftCostServerBase";
|
@@ -21,39 +21,11 @@ export * from "./NamirasoftCostServerHealthz";
|
|
21
21
|
export * from "./NamirasoftCostServerMetrics";
|
22
22
|
export * from "./NamirasoftCostServerSecretSecret";
|
23
23
|
export * from "./NamirasoftCostServerValue";
|
24
|
-
export * from "./command/BillWatchAWSCommand";
|
25
|
-
export * from "./command/BillWatchAWSEstimateHourlyCommand";
|
26
|
-
export * from "./command/BillWatchAWS_CreateForHourlyCommand";
|
27
|
-
export * from "./command/BillWatchAzureCommand";
|
28
|
-
export * from "./command/BillWatchAzureEstimateHourlyCommand";
|
29
|
-
export * from "./command/BillWatchAzure_CreateForHourlyCommand";
|
30
|
-
export * from "./command/BillWatchGCPCommand";
|
31
|
-
export * from "./command/BillWatchGCPEstimateHourlyCommand";
|
32
|
-
export * from "./command/BillWatchGCP_CreateForHourlyCommand";
|
33
|
-
export * from "./command/CostCommand";
|
34
|
-
export * from "./command/CostListCommand";
|
35
|
-
export * from "./command/Cost_CreateForCommand";
|
36
|
-
export * from "./command/FieldCategoryCommand";
|
37
|
-
export * from "./command/FieldCategoryEstimateHourlyCommand";
|
38
|
-
export * from "./command/FieldCategory_CreateForHourlyCommand";
|
39
|
-
export * from "./command/FieldFieldCommand";
|
40
|
-
export * from "./command/FieldFieldEstimateHourlyCommand";
|
41
|
-
export * from "./command/FieldField_CreateForHourlyCommand";
|
42
|
-
export * from "./command/HealthzCommand";
|
43
|
-
export * from "./command/HealthzGetCommand";
|
44
|
-
export * from "./command/MetricsCommand";
|
45
|
-
export * from "./command/MetricsGetCommand";
|
46
|
-
export * from "./command/SecretSecretCommand";
|
47
|
-
export * from "./command/SecretSecretEstimateHourlyCommand";
|
48
|
-
export * from "./command/SecretSecretEstimateReadCommand";
|
49
|
-
export * from "./command/SecretSecret_CreateForHourlyCommand";
|
50
|
-
export * from "./command/SecretSecret_CreateForReadCommand";
|
51
|
-
export * from "./command/ValueCommand";
|
52
|
-
export * from "./command/ValueListCommand";
|
53
24
|
export * from "./meta/CostMetaTable";
|
54
25
|
export * from "./meta/NamirasoftCostMetaDatabase";
|
55
26
|
export * from "./row/CostCreateRow";
|
56
27
|
export * from "./row/CostRow";
|
28
|
+
export * from "./type/Bonus";
|
57
29
|
export * from "./type/Estimation";
|
58
30
|
export * from "./type/EstimationOption";
|
59
31
|
export * from "./type/EstimationUsage";
|