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,65 +1,74 @@
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 { BaseFinalCommand } from "namirasoft-node-cli";
22
- import { IStorageMemoryDedicated } from "namirasoft-core";
23
- import { NamirasoftCostServer } from "../NamirasoftCostServer";
24
- import { TokenManager } from "namirasoft-account";
25
-
26
- export class BillWatchAWSEstimationCommand extends BaseFinalCommand
27
- {
28
- constructor(argv: string[])
29
- {
30
- super(argv, [], [
31
- {
32
- name: "period",
33
- short: "",
34
- description: "Provides the value of 'period' in body",
35
- optional: false,
36
- args: ["period"],
37
- defaults: [""]
38
- },
39
- {
40
- name: "active",
41
- short: "",
42
- description: "Provides the value of 'active' in body",
43
- optional: false,
44
- args: ["active"],
45
- defaults: [""]
46
- }
47
- ]);
48
- }
49
- override async exec()
50
- {
51
- let token = this.app.storage.getNSAToken();
52
- if (token == null)
53
- throw new Error("Token is not available. Please login first using:\nns-cost account config \nor \nns-cost account login.");
54
- let storage = new IStorageMemoryDedicated();
55
- let manager = new TokenManager(storage, () => { });
56
- manager.setValue(token, false);
57
- let url = this.app.storage.getItem("ns-cost-server-url");
58
- let server = new NamirasoftCostServer(url, manager, e => this.app.logger.error(e.message));
59
- let ans = await server.bill_watch_a_w_s.Estimation({
60
- period: this.option_values.period,
61
- active: this.option_values.active
62
- });
63
- this.app.logger.success(JSON.stringify(ans));
64
- }
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 { BaseFinalCommand } from "namirasoft-node-cli";
22
+ import { IStorageMemoryDedicated } from "namirasoft-core";
23
+ import { NamirasoftCostServer } from "../NamirasoftCostServer";
24
+ import { TokenManager } from "namirasoft-account";
25
+
26
+ export class BillWatchAWSEstimationCommand extends BaseFinalCommand
27
+ {
28
+ constructor(argv: string[])
29
+ {
30
+ super(argv, [], [
31
+ {
32
+ name: "first_watch_created_at",
33
+ short: "",
34
+ description: "Provides the value of 'first_watch_created_at' in body",
35
+ optional: true,
36
+ args: ["first_watch_created_at"],
37
+ defaults: [""]
38
+ },
39
+ {
40
+ name: "period",
41
+ short: "",
42
+ description: "Provides the value of 'period' in body",
43
+ optional: false,
44
+ args: ["period"],
45
+ defaults: [""]
46
+ },
47
+ {
48
+ name: "active",
49
+ short: "",
50
+ description: "Provides the value of 'active' in body",
51
+ optional: false,
52
+ args: ["active"],
53
+ defaults: [""]
54
+ }
55
+ ]);
56
+ }
57
+ override async exec()
58
+ {
59
+ let token = this.app.storage.getNSAToken();
60
+ if (token == null)
61
+ throw new Error("Token is not available. Please login first using:\nns-cost account config \nor \nns-cost account login.");
62
+ let storage = new IStorageMemoryDedicated();
63
+ let manager = new TokenManager(storage, () => { });
64
+ manager.setValue(token, false);
65
+ let url = this.app.storage.getItem("ns-cost-server-url");
66
+ let server = new NamirasoftCostServer(url, manager, e => this.app.logger.error(e.message));
67
+ let ans = await server.bill_watch_a_w_s.Estimation({
68
+ first_watch_created_at: this.option_values.first_watch_created_at,
69
+ period: this.option_values.period,
70
+ active: this.option_values.active
71
+ });
72
+ this.app.logger.success(JSON.stringify(ans));
73
+ }
65
74
  };
@@ -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 { BillWatchAzureEstimationCommand } from "./BillWatchAzureEstimationCommand";
23
-
24
- export class BillWatchAzureCommand extends BaseNavigatorCommand
25
- {
26
- constructor(argv: string[])
27
- {
28
- super(argv, {
29
- "estimation": BillWatchAzureEstimationCommand,
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 { BillWatchAzureEstimationCommand } from "./BillWatchAzureEstimationCommand";
23
+
24
+ export class BillWatchAzureCommand extends BaseNavigatorCommand
25
+ {
26
+ constructor(argv: string[])
27
+ {
28
+ super(argv, {
29
+ "estimation": BillWatchAzureEstimationCommand,
30
+ });
31
+ }
32
32
  };
@@ -1,65 +1,74 @@
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 { BaseFinalCommand } from "namirasoft-node-cli";
22
- import { IStorageMemoryDedicated } from "namirasoft-core";
23
- import { NamirasoftCostServer } from "../NamirasoftCostServer";
24
- import { TokenManager } from "namirasoft-account";
25
-
26
- export class BillWatchAzureEstimationCommand extends BaseFinalCommand
27
- {
28
- constructor(argv: string[])
29
- {
30
- super(argv, [], [
31
- {
32
- name: "period",
33
- short: "",
34
- description: "Provides the value of 'period' in body",
35
- optional: false,
36
- args: ["period"],
37
- defaults: [""]
38
- },
39
- {
40
- name: "active",
41
- short: "",
42
- description: "Provides the value of 'active' in body",
43
- optional: false,
44
- args: ["active"],
45
- defaults: [""]
46
- }
47
- ]);
48
- }
49
- override async exec()
50
- {
51
- let token = this.app.storage.getNSAToken();
52
- if (token == null)
53
- throw new Error("Token is not available. Please login first using:\nns-cost account config \nor \nns-cost account login.");
54
- let storage = new IStorageMemoryDedicated();
55
- let manager = new TokenManager(storage, () => { });
56
- manager.setValue(token, false);
57
- let url = this.app.storage.getItem("ns-cost-server-url");
58
- let server = new NamirasoftCostServer(url, manager, e => this.app.logger.error(e.message));
59
- let ans = await server.bill_watch_azure.Estimation({
60
- period: this.option_values.period,
61
- active: this.option_values.active
62
- });
63
- this.app.logger.success(JSON.stringify(ans));
64
- }
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 { BaseFinalCommand } from "namirasoft-node-cli";
22
+ import { IStorageMemoryDedicated } from "namirasoft-core";
23
+ import { NamirasoftCostServer } from "../NamirasoftCostServer";
24
+ import { TokenManager } from "namirasoft-account";
25
+
26
+ export class BillWatchAzureEstimationCommand extends BaseFinalCommand
27
+ {
28
+ constructor(argv: string[])
29
+ {
30
+ super(argv, [], [
31
+ {
32
+ name: "first_watch_created_at",
33
+ short: "",
34
+ description: "Provides the value of 'first_watch_created_at' in body",
35
+ optional: true,
36
+ args: ["first_watch_created_at"],
37
+ defaults: [""]
38
+ },
39
+ {
40
+ name: "period",
41
+ short: "",
42
+ description: "Provides the value of 'period' in body",
43
+ optional: false,
44
+ args: ["period"],
45
+ defaults: [""]
46
+ },
47
+ {
48
+ name: "active",
49
+ short: "",
50
+ description: "Provides the value of 'active' in body",
51
+ optional: false,
52
+ args: ["active"],
53
+ defaults: [""]
54
+ }
55
+ ]);
56
+ }
57
+ override async exec()
58
+ {
59
+ let token = this.app.storage.getNSAToken();
60
+ if (token == null)
61
+ throw new Error("Token is not available. Please login first using:\nns-cost account config \nor \nns-cost account login.");
62
+ let storage = new IStorageMemoryDedicated();
63
+ let manager = new TokenManager(storage, () => { });
64
+ manager.setValue(token, false);
65
+ let url = this.app.storage.getItem("ns-cost-server-url");
66
+ let server = new NamirasoftCostServer(url, manager, e => this.app.logger.error(e.message));
67
+ let ans = await server.bill_watch_azure.Estimation({
68
+ first_watch_created_at: this.option_values.first_watch_created_at,
69
+ period: this.option_values.period,
70
+ active: this.option_values.active
71
+ });
72
+ this.app.logger.success(JSON.stringify(ans));
73
+ }
65
74
  };
@@ -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 { BillWatchGCPEstimationCommand } from "./BillWatchGCPEstimationCommand";
23
-
24
- export class BillWatchGCPCommand extends BaseNavigatorCommand
25
- {
26
- constructor(argv: string[])
27
- {
28
- super(argv, {
29
- "estimation": BillWatchGCPEstimationCommand,
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 { BillWatchGCPEstimationCommand } from "./BillWatchGCPEstimationCommand";
23
+
24
+ export class BillWatchGCPCommand extends BaseNavigatorCommand
25
+ {
26
+ constructor(argv: string[])
27
+ {
28
+ super(argv, {
29
+ "estimation": BillWatchGCPEstimationCommand,
30
+ });
31
+ }
32
32
  };
@@ -1,65 +1,74 @@
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 { BaseFinalCommand } from "namirasoft-node-cli";
22
- import { IStorageMemoryDedicated } from "namirasoft-core";
23
- import { NamirasoftCostServer } from "../NamirasoftCostServer";
24
- import { TokenManager } from "namirasoft-account";
25
-
26
- export class BillWatchGCPEstimationCommand extends BaseFinalCommand
27
- {
28
- constructor(argv: string[])
29
- {
30
- super(argv, [], [
31
- {
32
- name: "period",
33
- short: "",
34
- description: "Provides the value of 'period' in body",
35
- optional: false,
36
- args: ["period"],
37
- defaults: [""]
38
- },
39
- {
40
- name: "active",
41
- short: "",
42
- description: "Provides the value of 'active' in body",
43
- optional: false,
44
- args: ["active"],
45
- defaults: [""]
46
- }
47
- ]);
48
- }
49
- override async exec()
50
- {
51
- let token = this.app.storage.getNSAToken();
52
- if (token == null)
53
- throw new Error("Token is not available. Please login first using:\nns-cost account config \nor \nns-cost account login.");
54
- let storage = new IStorageMemoryDedicated();
55
- let manager = new TokenManager(storage, () => { });
56
- manager.setValue(token, false);
57
- let url = this.app.storage.getItem("ns-cost-server-url");
58
- let server = new NamirasoftCostServer(url, manager, e => this.app.logger.error(e.message));
59
- let ans = await server.bill_watch_g_c_p.Estimation({
60
- period: this.option_values.period,
61
- active: this.option_values.active
62
- });
63
- this.app.logger.success(JSON.stringify(ans));
64
- }
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 { BaseFinalCommand } from "namirasoft-node-cli";
22
+ import { IStorageMemoryDedicated } from "namirasoft-core";
23
+ import { NamirasoftCostServer } from "../NamirasoftCostServer";
24
+ import { TokenManager } from "namirasoft-account";
25
+
26
+ export class BillWatchGCPEstimationCommand extends BaseFinalCommand
27
+ {
28
+ constructor(argv: string[])
29
+ {
30
+ super(argv, [], [
31
+ {
32
+ name: "first_watch_created_at",
33
+ short: "",
34
+ description: "Provides the value of 'first_watch_created_at' in body",
35
+ optional: true,
36
+ args: ["first_watch_created_at"],
37
+ defaults: [""]
38
+ },
39
+ {
40
+ name: "period",
41
+ short: "",
42
+ description: "Provides the value of 'period' in body",
43
+ optional: false,
44
+ args: ["period"],
45
+ defaults: [""]
46
+ },
47
+ {
48
+ name: "active",
49
+ short: "",
50
+ description: "Provides the value of 'active' in body",
51
+ optional: false,
52
+ args: ["active"],
53
+ defaults: [""]
54
+ }
55
+ ]);
56
+ }
57
+ override async exec()
58
+ {
59
+ let token = this.app.storage.getNSAToken();
60
+ if (token == null)
61
+ throw new Error("Token is not available. Please login first using:\nns-cost account config \nor \nns-cost account login.");
62
+ let storage = new IStorageMemoryDedicated();
63
+ let manager = new TokenManager(storage, () => { });
64
+ manager.setValue(token, false);
65
+ let url = this.app.storage.getItem("ns-cost-server-url");
66
+ let server = new NamirasoftCostServer(url, manager, e => this.app.logger.error(e.message));
67
+ let ans = await server.bill_watch_g_c_p.Estimation({
68
+ first_watch_created_at: this.option_values.first_watch_created_at,
69
+ period: this.option_values.period,
70
+ active: this.option_values.active
71
+ });
72
+ this.app.logger.success(JSON.stringify(ans));
73
+ }
65
74
  };
@@ -1,34 +1,34 @@
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 { CostListCommand } from "./CostListCommand";
23
- import { Cost_CreateForCommand } from "./Cost_CreateForCommand";
24
-
25
- export class CostCommand extends BaseNavigatorCommand
26
- {
27
- constructor(argv: string[])
28
- {
29
- super(argv, {
30
- "list": CostListCommand,
31
- "_createfor": Cost_CreateForCommand,
32
- });
33
- }
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 { CostListCommand } from "./CostListCommand";
23
+ import { Cost_CreateForCommand } from "./Cost_CreateForCommand";
24
+
25
+ export class CostCommand extends BaseNavigatorCommand
26
+ {
27
+ constructor(argv: string[])
28
+ {
29
+ super(argv, {
30
+ "list": CostListCommand,
31
+ "_createfor": Cost_CreateForCommand,
32
+ });
33
+ }
34
34
  };