namirasoft-cost 1.4.5 → 1.4.7

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.
Files changed (56) hide show
  1. package/.ns-sdkg-dir-deep +2 -2
  2. package/.ns-sdkg-file-keep +6 -6
  3. package/dist/NamirasoftCostServer.js +1 -1
  4. package/dist/NamirasoftCostServerBillWatchAWS.d.ts +1 -0
  5. package/dist/NamirasoftCostServerBillWatchAWS.js.map +1 -1
  6. package/dist/NamirasoftCostServerBillWatchAzure.d.ts +1 -0
  7. package/dist/NamirasoftCostServerBillWatchAzure.js.map +1 -1
  8. package/dist/NamirasoftCostServerBillWatchGCP.d.ts +1 -0
  9. package/dist/NamirasoftCostServerBillWatchGCP.js.map +1 -1
  10. package/dist/TimeUtil.d.ts +1 -1
  11. package/dist/TimeUtil.js +31 -20
  12. package/dist/TimeUtil.js.map +1 -1
  13. package/dist/command/BillWatchAWSEstimationCommand.js +9 -0
  14. package/dist/command/BillWatchAWSEstimationCommand.js.map +1 -1
  15. package/dist/command/BillWatchAzureEstimationCommand.js +9 -0
  16. package/dist/command/BillWatchAzureEstimationCommand.js.map +1 -1
  17. package/dist/command/BillWatchGCPEstimationCommand.js +9 -0
  18. package/dist/command/BillWatchGCPEstimationCommand.js.map +1 -1
  19. package/dist/index.d.ts +2 -2
  20. package/dist/index.js +2 -2
  21. package/dist/index.js.map +1 -1
  22. package/package.json +27 -27
  23. package/src/NamirasoftCostServer.ts +47 -47
  24. package/src/NamirasoftCostServerBase.ts +29 -29
  25. package/src/NamirasoftCostServerBillWatchAWS.ts +38 -38
  26. package/src/NamirasoftCostServerBillWatchAzure.ts +38 -38
  27. package/src/NamirasoftCostServerBillWatchGCP.ts +38 -38
  28. package/src/NamirasoftCostServerCost.ts +49 -49
  29. package/src/NamirasoftCostServerHealthz.ts +35 -35
  30. package/src/NamirasoftCostServerValue.ts +36 -36
  31. package/src/TimeUtil.ts +52 -52
  32. package/src/command/BillWatchAWSCommand.ts +31 -31
  33. package/src/command/BillWatchAWSEstimationCommand.ts +73 -64
  34. package/src/command/BillWatchAzureCommand.ts +31 -31
  35. package/src/command/BillWatchAzureEstimationCommand.ts +73 -64
  36. package/src/command/BillWatchGCPCommand.ts +31 -31
  37. package/src/command/BillWatchGCPEstimationCommand.ts +73 -64
  38. package/src/command/CostCommand.ts +33 -33
  39. package/src/command/CostListCommand.ts +44 -44
  40. package/src/command/Cost_CreateForCommand.ts +172 -172
  41. package/src/command/HealthzCommand.ts +31 -31
  42. package/src/command/HealthzGetCommand.ts +44 -44
  43. package/src/command/ValueCommand.ts +31 -31
  44. package/src/command/ValueListCommand.ts +44 -44
  45. package/src/command/cli.ts +42 -42
  46. package/src/enum/TrialUnit.ts +5 -5
  47. package/src/index.ts +52 -52
  48. package/src/meta/CostMetaTable.ts +79 -79
  49. package/src/meta/NamirasoftCostMetaDatabase.ts +50 -50
  50. package/src/row/CostCreateRow.ts +36 -36
  51. package/src/row/CostRow.ts +39 -39
  52. package/src/type/Estimation.ts +6 -6
  53. package/src/type/EstimationRow.ts +6 -6
  54. package/src/type/Period.ts +4 -4
  55. package/src/type/Trial.ts +6 -6
  56. package/src/type/TrialDuration.ts +6 -6
@@ -1,39 +1,39 @@
1
- /****************************************************************/
2
- /* */
3
- /* This is an Auto-Generated File */
4
- /* Made By */
5
- /* Namirasoft SDK Generator NPM Package */
6
- /* */
7
- /****************************************************************/
8
- /****************************************************************/
9
- /* */
10
- /* Please do not make any change to this file */
11
- /* If any change is required, ns-sdkg command must be used */
12
- /* */
13
- /****************************************************************/
14
- /****************************************************************/
15
- /* */
16
- /* Namira Software Corporation */
17
- /* https://namirasoft.com */
18
- /* */
19
- /****************************************************************/
20
-
21
- import { Estimation } from "./type/Estimation";
22
- import { NamirasoftCostServer } from "./NamirasoftCostServer";
23
- import { NamirasoftCostServerBase } from "./NamirasoftCostServerBase";
24
- import { Period } from "./type/Period";
25
-
26
- export class NamirasoftCostServerBillWatchAzure extends NamirasoftCostServerBase
27
- {
28
- constructor(server: NamirasoftCostServer)
29
- {
30
- super(server);
31
- this.Estimation = this.Estimation.bind(this);
32
- }
33
- async Estimation(body: { period: Period, active: boolean }): Promise<Estimation>
34
- {
35
- let path = `/estimation/bill-watch/watch/azure`;
36
- let { data } = await this.server._post<Estimation>(path, {}, body);
37
- return data;
38
- }
1
+ /****************************************************************/
2
+ /* */
3
+ /* This is an Auto-Generated File */
4
+ /* Made By */
5
+ /* Namirasoft SDK Generator NPM Package */
6
+ /* */
7
+ /****************************************************************/
8
+ /****************************************************************/
9
+ /* */
10
+ /* Please do not make any change to this file */
11
+ /* If any change is required, ns-sdkg command must be used */
12
+ /* */
13
+ /****************************************************************/
14
+ /****************************************************************/
15
+ /* */
16
+ /* Namira Software Corporation */
17
+ /* https://namirasoft.com */
18
+ /* */
19
+ /****************************************************************/
20
+
21
+ import { Estimation } from "./type/Estimation";
22
+ import { NamirasoftCostServer } from "./NamirasoftCostServer";
23
+ import { NamirasoftCostServerBase } from "./NamirasoftCostServerBase";
24
+ import { Period } from "./type/Period";
25
+
26
+ export class NamirasoftCostServerBillWatchAzure extends NamirasoftCostServerBase
27
+ {
28
+ constructor(server: NamirasoftCostServer)
29
+ {
30
+ super(server);
31
+ this.Estimation = this.Estimation.bind(this);
32
+ }
33
+ async Estimation(body: { first_watch_created_at: (string | null), period: Period, active: boolean }): Promise<Estimation>
34
+ {
35
+ let path = `/estimation/bill-watch/watch/azure`;
36
+ let { data } = await this.server._post<Estimation>(path, {}, body);
37
+ return data;
38
+ }
39
39
  };
@@ -1,39 +1,39 @@
1
- /****************************************************************/
2
- /* */
3
- /* This is an Auto-Generated File */
4
- /* Made By */
5
- /* Namirasoft SDK Generator NPM Package */
6
- /* */
7
- /****************************************************************/
8
- /****************************************************************/
9
- /* */
10
- /* Please do not make any change to this file */
11
- /* If any change is required, ns-sdkg command must be used */
12
- /* */
13
- /****************************************************************/
14
- /****************************************************************/
15
- /* */
16
- /* Namira Software Corporation */
17
- /* https://namirasoft.com */
18
- /* */
19
- /****************************************************************/
20
-
21
- import { Estimation } from "./type/Estimation";
22
- import { NamirasoftCostServer } from "./NamirasoftCostServer";
23
- import { NamirasoftCostServerBase } from "./NamirasoftCostServerBase";
24
- import { Period } from "./type/Period";
25
-
26
- export class NamirasoftCostServerBillWatchGCP extends NamirasoftCostServerBase
27
- {
28
- constructor(server: NamirasoftCostServer)
29
- {
30
- super(server);
31
- this.Estimation = this.Estimation.bind(this);
32
- }
33
- async Estimation(body: { period: Period, active: boolean }): Promise<Estimation>
34
- {
35
- let path = `/estimation/bill-watch/watch/gcp`;
36
- let { data } = await this.server._post<Estimation>(path, {}, body);
37
- return data;
38
- }
1
+ /****************************************************************/
2
+ /* */
3
+ /* This is an Auto-Generated File */
4
+ /* Made By */
5
+ /* Namirasoft SDK Generator NPM Package */
6
+ /* */
7
+ /****************************************************************/
8
+ /****************************************************************/
9
+ /* */
10
+ /* Please do not make any change to this file */
11
+ /* If any change is required, ns-sdkg command must be used */
12
+ /* */
13
+ /****************************************************************/
14
+ /****************************************************************/
15
+ /* */
16
+ /* Namira Software Corporation */
17
+ /* https://namirasoft.com */
18
+ /* */
19
+ /****************************************************************/
20
+
21
+ import { Estimation } from "./type/Estimation";
22
+ import { NamirasoftCostServer } from "./NamirasoftCostServer";
23
+ import { NamirasoftCostServerBase } from "./NamirasoftCostServerBase";
24
+ import { Period } from "./type/Period";
25
+
26
+ export class NamirasoftCostServerBillWatchGCP extends NamirasoftCostServerBase
27
+ {
28
+ constructor(server: NamirasoftCostServer)
29
+ {
30
+ super(server);
31
+ this.Estimation = this.Estimation.bind(this);
32
+ }
33
+ async Estimation(body: { first_watch_created_at: (string | null), period: Period, active: boolean }): Promise<Estimation>
34
+ {
35
+ let path = `/estimation/bill-watch/watch/gcp`;
36
+ let { data } = await this.server._post<Estimation>(path, {}, body);
37
+ return data;
38
+ }
39
39
  };
@@ -1,50 +1,50 @@
1
- /****************************************************************/
2
- /* */
3
- /* This is an Auto-Generated File */
4
- /* Made By */
5
- /* Namirasoft SDK Generator NPM Package */
6
- /* */
7
- /****************************************************************/
8
- /****************************************************************/
9
- /* */
10
- /* Please do not make any change to this file */
11
- /* If any change is required, ns-sdkg command must be used */
12
- /* */
13
- /****************************************************************/
14
- /****************************************************************/
15
- /* */
16
- /* Namira Software Corporation */
17
- /* https://namirasoft.com */
18
- /* */
19
- /****************************************************************/
20
-
21
- import { CostCreateRow } from "./row/CostCreateRow";
22
- import { CostRow } from "./row/CostRow";
23
- import { FilterItem } from "namirasoft-core";
24
- import { NamirasoftCostServer } from "./NamirasoftCostServer";
25
- import { NamirasoftCostServerBase } from "./NamirasoftCostServerBase";
26
- import { SortItem } from "namirasoft-core";
27
-
28
- export class NamirasoftCostServerCost extends NamirasoftCostServerBase
29
- {
30
- constructor(server: NamirasoftCostServer)
31
- {
32
- super(server);
33
- this.List = this.List.bind(this);
34
- this._CreateFor = this._CreateFor.bind(this);
35
- }
36
- async List(filters: FilterItem[] | null, page: (number | null), size: (number | null), sorts: SortItem[]): Promise<{ rows: CostRow[], count: number }>
37
- {
38
- let filters_string_value: string = FilterItem.stringify(filters);
39
- let sorts_string_value: string = SortItem.stringify(sorts);
40
- let path = `/cost/list`;
41
- let { data } = await this.server._get<{ rows: CostRow[], count: number }>(path, { filters: filters_string_value, page, size, sorts: sorts_string_value });
42
- return data;
43
- }
44
- async _CreateFor(user_id: string, body: CostCreateRow): Promise<CostRow>
45
- {
46
- let path = `/application/user/${user_id}/cost`;
47
- let { data } = await this.server._post<CostRow>(path, {}, body);
48
- return data;
49
- }
1
+ /****************************************************************/
2
+ /* */
3
+ /* This is an Auto-Generated File */
4
+ /* Made By */
5
+ /* Namirasoft SDK Generator NPM Package */
6
+ /* */
7
+ /****************************************************************/
8
+ /****************************************************************/
9
+ /* */
10
+ /* Please do not make any change to this file */
11
+ /* If any change is required, ns-sdkg command must be used */
12
+ /* */
13
+ /****************************************************************/
14
+ /****************************************************************/
15
+ /* */
16
+ /* Namira Software Corporation */
17
+ /* https://namirasoft.com */
18
+ /* */
19
+ /****************************************************************/
20
+
21
+ import { CostCreateRow } from "./row/CostCreateRow";
22
+ import { CostRow } from "./row/CostRow";
23
+ import { FilterItem } from "namirasoft-core";
24
+ import { NamirasoftCostServer } from "./NamirasoftCostServer";
25
+ import { NamirasoftCostServerBase } from "./NamirasoftCostServerBase";
26
+ import { SortItem } from "namirasoft-core";
27
+
28
+ export class NamirasoftCostServerCost extends NamirasoftCostServerBase
29
+ {
30
+ constructor(server: NamirasoftCostServer)
31
+ {
32
+ super(server);
33
+ this.List = this.List.bind(this);
34
+ this._CreateFor = this._CreateFor.bind(this);
35
+ }
36
+ async List(filters: FilterItem[] | null, page: (number | null), size: (number | null), sorts: SortItem[]): Promise<{ rows: CostRow[], count: number }>
37
+ {
38
+ let filters_string_value: string = FilterItem.stringify(filters);
39
+ let sorts_string_value: string = SortItem.stringify(sorts);
40
+ let path = `/cost/list`;
41
+ let { data } = await this.server._get<{ rows: CostRow[], count: number }>(path, { filters: filters_string_value, page, size, sorts: sorts_string_value });
42
+ return data;
43
+ }
44
+ async _CreateFor(user_id: string, body: CostCreateRow): Promise<CostRow>
45
+ {
46
+ let path = `/application/user/${user_id}/cost`;
47
+ let { data } = await this.server._post<CostRow>(path, {}, body);
48
+ return data;
49
+ }
50
50
  };
@@ -1,36 +1,36 @@
1
- /****************************************************************/
2
- /* */
3
- /* This is an Auto-Generated File */
4
- /* Made By */
5
- /* Namirasoft SDK Generator NPM Package */
6
- /* */
7
- /****************************************************************/
8
- /****************************************************************/
9
- /* */
10
- /* Please do not make any change to this file */
11
- /* If any change is required, ns-sdkg command must be used */
12
- /* */
13
- /****************************************************************/
14
- /****************************************************************/
15
- /* */
16
- /* Namira Software Corporation */
17
- /* https://namirasoft.com */
18
- /* */
19
- /****************************************************************/
20
-
21
- import { NamirasoftCostServer } from "./NamirasoftCostServer";
22
- import { NamirasoftCostServerBase } from "./NamirasoftCostServerBase";
23
-
24
- export class NamirasoftCostServerHealthz extends NamirasoftCostServerBase
25
- {
26
- constructor(server: NamirasoftCostServer)
27
- {
28
- super(server);
29
- this.Get = this.Get.bind(this);
30
- }
31
- async Get(): Promise<void>
32
- {
33
- let path = `/healthz`;
34
- await this.server._get<void>(path, {});
35
- }
1
+ /****************************************************************/
2
+ /* */
3
+ /* This is an Auto-Generated File */
4
+ /* Made By */
5
+ /* Namirasoft SDK Generator NPM Package */
6
+ /* */
7
+ /****************************************************************/
8
+ /****************************************************************/
9
+ /* */
10
+ /* Please do not make any change to this file */
11
+ /* If any change is required, ns-sdkg command must be used */
12
+ /* */
13
+ /****************************************************************/
14
+ /****************************************************************/
15
+ /* */
16
+ /* Namira Software Corporation */
17
+ /* https://namirasoft.com */
18
+ /* */
19
+ /****************************************************************/
20
+
21
+ import { NamirasoftCostServer } from "./NamirasoftCostServer";
22
+ import { NamirasoftCostServerBase } from "./NamirasoftCostServerBase";
23
+
24
+ export class NamirasoftCostServerHealthz extends NamirasoftCostServerBase
25
+ {
26
+ constructor(server: NamirasoftCostServer)
27
+ {
28
+ super(server);
29
+ this.Get = this.Get.bind(this);
30
+ }
31
+ async Get(): Promise<void>
32
+ {
33
+ let path = `/healthz`;
34
+ await this.server._get<void>(path, {});
35
+ }
36
36
  };
@@ -1,37 +1,37 @@
1
- /****************************************************************/
2
- /* */
3
- /* This is an Auto-Generated File */
4
- /* Made By */
5
- /* Namirasoft SDK Generator NPM Package */
6
- /* */
7
- /****************************************************************/
8
- /****************************************************************/
9
- /* */
10
- /* Please do not make any change to this file */
11
- /* If any change is required, ns-sdkg command must be used */
12
- /* */
13
- /****************************************************************/
14
- /****************************************************************/
15
- /* */
16
- /* Namira Software Corporation */
17
- /* https://namirasoft.com */
18
- /* */
19
- /****************************************************************/
20
-
21
- import { NamirasoftCostServer } from "./NamirasoftCostServer";
22
- import { NamirasoftCostServerBase } from "./NamirasoftCostServerBase";
23
-
24
- export class NamirasoftCostServerValue extends NamirasoftCostServerBase
25
- {
26
- constructor(server: NamirasoftCostServer)
27
- {
28
- super(server);
29
- this.List = this.List.bind(this);
30
- }
31
- async List(table: string, column: string, search: (string | null), field_id: (string | null), limit: (number | null)): Promise<string[]>
32
- {
33
- let path = `/value/list/${table}/${column}`;
34
- let { data } = await this.server._get<string[]>(path, { search, field_id, limit });
35
- return data;
36
- }
1
+ /****************************************************************/
2
+ /* */
3
+ /* This is an Auto-Generated File */
4
+ /* Made By */
5
+ /* Namirasoft SDK Generator NPM Package */
6
+ /* */
7
+ /****************************************************************/
8
+ /****************************************************************/
9
+ /* */
10
+ /* Please do not make any change to this file */
11
+ /* If any change is required, ns-sdkg command must be used */
12
+ /* */
13
+ /****************************************************************/
14
+ /****************************************************************/
15
+ /* */
16
+ /* Namira Software Corporation */
17
+ /* https://namirasoft.com */
18
+ /* */
19
+ /****************************************************************/
20
+
21
+ import { NamirasoftCostServer } from "./NamirasoftCostServer";
22
+ import { NamirasoftCostServerBase } from "./NamirasoftCostServerBase";
23
+
24
+ export class NamirasoftCostServerValue extends NamirasoftCostServerBase
25
+ {
26
+ constructor(server: NamirasoftCostServer)
27
+ {
28
+ super(server);
29
+ this.List = this.List.bind(this);
30
+ }
31
+ async List(table: string, column: string, search: (string | null), field_id: (string | null), limit: (number | null)): Promise<string[]>
32
+ {
33
+ let path = `/value/list/${table}/${column}`;
34
+ let { data } = await this.server._get<string[]>(path, { search, field_id, limit });
35
+ return data;
36
+ }
37
37
  };
package/src/TimeUtil.ts CHANGED
@@ -1,53 +1,53 @@
1
- import { TimeOperation } from "namirasoft-core";
2
- import { Trial } from "./type/Trial";
3
- import { Period } from "./type/Period";
4
- import { TrialUnit } from "./enum/TrialUnit";
5
-
6
- export class TimeUtil
7
- {
8
- static trialEndsAt(trial: Trial)
9
- {
10
- if (trial.duration.unit == TrialUnit.Day)
11
- return TimeOperation.daysLater(trial.duration.value, trial.started_at);
12
- if (trial.duration.unit == TrialUnit.Week)
13
- return TimeOperation.daysLater(trial.duration.value * 7, trial.started_at);
14
- if (trial.duration.unit == TrialUnit.Month)
15
- return TimeOperation.monthsLater(trial.duration.value, trial.started_at);
16
- return trial.started_at;
17
- }
18
- static isTrial(trial: Trial, date: Date)
19
- {
20
- return date <= TimeUtil.trialEndsAt(trial);
21
- }
22
- static loopHourly(trial: Trial | null, period: Period, estimate_hour: (period: Period) => void)
23
- {
24
- if (period.end <= period.start)
25
- return;
26
-
27
- if (trial)
28
- {
29
- let ends_at = TimeUtil.trialEndsAt(trial);
30
- if (period.end <= ends_at)
31
- return;
32
- if (period.start <= ends_at)
33
- period.start = ends_at;
34
- }
35
-
36
- let start = period.start;
37
- let end = null;
38
-
39
- do
40
- {
41
- end = TimeOperation.hoursLater(1, start);
42
- end.setMilliseconds(0);
43
- end.setSeconds(0);
44
- end.setMinutes(0);
45
- if (period.end < end)
46
- end = period.end;
47
-
48
- estimate_hour({ start, end });
49
- start = end;
50
- }
51
- while (end < period.end)
52
- }
1
+ import { TimeOperation } from "namirasoft-core";
2
+ import { Trial } from "./type/Trial";
3
+ import { Period } from "./type/Period";
4
+ import { TrialUnit } from "./enum/TrialUnit";
5
+
6
+ export class TimeUtil
7
+ {
8
+ static trialEndsAt(trial: Trial)
9
+ {
10
+ if (trial.duration.unit == TrialUnit.Day)
11
+ return TimeOperation.daysLater(trial.duration.value, trial.started_at);
12
+ if (trial.duration.unit == TrialUnit.Week)
13
+ return TimeOperation.daysLater(trial.duration.value * 7, trial.started_at);
14
+ if (trial.duration.unit == TrialUnit.Month)
15
+ return TimeOperation.monthsLater(trial.duration.value, trial.started_at);
16
+ return trial.started_at;
17
+ }
18
+ static isTrial(trial: Trial, date: Date)
19
+ {
20
+ return date <= TimeUtil.trialEndsAt(trial);
21
+ }
22
+ static async loopHourly(trial: Trial | null, period: Period, estimate_hour: (period: Period) => Promise<void>): Promise<void>
23
+ {
24
+ if (period.end <= period.start)
25
+ return;
26
+
27
+ if (trial)
28
+ {
29
+ let ends_at = TimeUtil.trialEndsAt(trial);
30
+ if (period.end <= ends_at)
31
+ return;
32
+ if (period.start <= ends_at)
33
+ period.start = ends_at;
34
+ }
35
+
36
+ let start = period.start;
37
+ let end = null;
38
+
39
+ do
40
+ {
41
+ end = TimeOperation.hoursLater(1, start);
42
+ end.setMilliseconds(0);
43
+ end.setSeconds(0);
44
+ end.setMinutes(0);
45
+ if (period.end < end)
46
+ end = period.end;
47
+
48
+ await estimate_hour({ start, end });
49
+ start = end;
50
+ }
51
+ while (end < period.end)
52
+ }
53
53
  }
@@ -1,32 +1,32 @@
1
- /****************************************************************/
2
- /* */
3
- /* This is an Auto-Generated File */
4
- /* Made By */
5
- /* Namirasoft SDK Generator NPM Package */
6
- /* */
7
- /****************************************************************/
8
- /****************************************************************/
9
- /* */
10
- /* Please do not make any change to this file */
11
- /* If any change is required, ns-sdkg command must be used */
12
- /* */
13
- /****************************************************************/
14
- /****************************************************************/
15
- /* */
16
- /* Namira Software Corporation */
17
- /* https://namirasoft.com */
18
- /* */
19
- /****************************************************************/
20
-
21
- import { BaseNavigatorCommand } from "namirasoft-node-cli";
22
- import { BillWatchAWSEstimationCommand } from "./BillWatchAWSEstimationCommand";
23
-
24
- export class BillWatchAWSCommand extends BaseNavigatorCommand
25
- {
26
- constructor(argv: string[])
27
- {
28
- super(argv, {
29
- "estimation": BillWatchAWSEstimationCommand,
30
- });
31
- }
1
+ /****************************************************************/
2
+ /* */
3
+ /* This is an Auto-Generated File */
4
+ /* Made By */
5
+ /* Namirasoft SDK Generator NPM Package */
6
+ /* */
7
+ /****************************************************************/
8
+ /****************************************************************/
9
+ /* */
10
+ /* Please do not make any change to this file */
11
+ /* If any change is required, ns-sdkg command must be used */
12
+ /* */
13
+ /****************************************************************/
14
+ /****************************************************************/
15
+ /* */
16
+ /* Namira Software Corporation */
17
+ /* https://namirasoft.com */
18
+ /* */
19
+ /****************************************************************/
20
+
21
+ import { BaseNavigatorCommand } from "namirasoft-node-cli";
22
+ import { BillWatchAWSEstimationCommand } from "./BillWatchAWSEstimationCommand";
23
+
24
+ export class BillWatchAWSCommand extends BaseNavigatorCommand
25
+ {
26
+ constructor(argv: string[])
27
+ {
28
+ super(argv, {
29
+ "estimation": BillWatchAWSEstimationCommand,
30
+ });
31
+ }
32
32
  };