namirasoft-cost 1.4.16 → 1.4.18

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 (90) hide show
  1. package/.ns-sdkg-dir-deep +2 -2
  2. package/.ns-sdkg-file-keep +7 -6
  3. package/dist/NamirasoftCostServer.js +1 -1
  4. package/dist/NamirasoftCostServerBillWatchAWS.d.ts +4 -2
  5. package/dist/NamirasoftCostServerBillWatchAWS.js.map +1 -1
  6. package/dist/NamirasoftCostServerBillWatchAzure.d.ts +4 -2
  7. package/dist/NamirasoftCostServerBillWatchAzure.js.map +1 -1
  8. package/dist/NamirasoftCostServerBillWatchGCP.d.ts +4 -2
  9. package/dist/NamirasoftCostServerBillWatchGCP.js.map +1 -1
  10. package/dist/NamirasoftCostServerFieldCategory.d.ts +4 -2
  11. package/dist/NamirasoftCostServerFieldCategory.js.map +1 -1
  12. package/dist/NamirasoftCostServerFieldField.d.ts +4 -2
  13. package/dist/NamirasoftCostServerFieldField.js.map +1 -1
  14. package/dist/command/BillWatchAWSEstimationCommand.js +14 -5
  15. package/dist/command/BillWatchAWSEstimationCommand.js.map +1 -1
  16. package/dist/command/BillWatchAWS_CreateForCommand.js +13 -4
  17. package/dist/command/BillWatchAWS_CreateForCommand.js.map +1 -1
  18. package/dist/command/BillWatchAzureEstimationCommand.js +14 -5
  19. package/dist/command/BillWatchAzureEstimationCommand.js.map +1 -1
  20. package/dist/command/BillWatchAzure_CreateForCommand.js +13 -4
  21. package/dist/command/BillWatchAzure_CreateForCommand.js.map +1 -1
  22. package/dist/command/BillWatchGCPEstimationCommand.js +14 -5
  23. package/dist/command/BillWatchGCPEstimationCommand.js.map +1 -1
  24. package/dist/command/BillWatchGCP_CreateForCommand.js +13 -4
  25. package/dist/command/BillWatchGCP_CreateForCommand.js.map +1 -1
  26. package/dist/command/Cost_CreateForCommand.js +10 -1
  27. package/dist/command/Cost_CreateForCommand.js.map +1 -1
  28. package/dist/command/FieldCategoryEstimationCommand.js +14 -5
  29. package/dist/command/FieldCategoryEstimationCommand.js.map +1 -1
  30. package/dist/command/FieldCategory_CreateForCommand.js +13 -4
  31. package/dist/command/FieldCategory_CreateForCommand.js.map +1 -1
  32. package/dist/command/FieldFieldEstimationCommand.js +14 -5
  33. package/dist/command/FieldFieldEstimationCommand.js.map +1 -1
  34. package/dist/command/FieldField_CreateForCommand.js +13 -4
  35. package/dist/command/FieldField_CreateForCommand.js.map +1 -1
  36. package/dist/meta/CostMetaTable.d.ts +1 -0
  37. package/dist/meta/CostMetaTable.js +1 -0
  38. package/dist/meta/CostMetaTable.js.map +1 -1
  39. package/dist/row/CostCreateRow.d.ts +1 -0
  40. package/dist/row/CostRow.d.ts +1 -0
  41. package/package.json +27 -27
  42. package/src/NamirasoftCostServer.ts +56 -56
  43. package/src/NamirasoftCostServerBase.ts +29 -29
  44. package/src/NamirasoftCostServerBillWatchAWS.ts +46 -46
  45. package/src/NamirasoftCostServerBillWatchAzure.ts +46 -46
  46. package/src/NamirasoftCostServerBillWatchGCP.ts +46 -46
  47. package/src/NamirasoftCostServerCost.ts +49 -49
  48. package/src/NamirasoftCostServerFieldCategory.ts +46 -46
  49. package/src/NamirasoftCostServerFieldField.ts +46 -46
  50. package/src/NamirasoftCostServerHealthz.ts +35 -35
  51. package/src/NamirasoftCostServerMetrics.ts +35 -35
  52. package/src/NamirasoftCostServerValue.ts +36 -36
  53. package/src/TimeUtil.ts +56 -56
  54. package/src/command/BillWatchAWSCommand.ts +33 -33
  55. package/src/command/BillWatchAWSEstimationCommand.ts +82 -73
  56. package/src/command/BillWatchAWS_CreateForCommand.ts +100 -91
  57. package/src/command/BillWatchAzureCommand.ts +33 -33
  58. package/src/command/BillWatchAzureEstimationCommand.ts +82 -73
  59. package/src/command/BillWatchAzure_CreateForCommand.ts +100 -91
  60. package/src/command/BillWatchGCPCommand.ts +33 -33
  61. package/src/command/BillWatchGCPEstimationCommand.ts +82 -73
  62. package/src/command/BillWatchGCP_CreateForCommand.ts +100 -91
  63. package/src/command/CostCommand.ts +33 -33
  64. package/src/command/CostListCommand.ts +44 -44
  65. package/src/command/Cost_CreateForCommand.ts +181 -172
  66. package/src/command/FieldCategoryCommand.ts +33 -33
  67. package/src/command/FieldCategoryEstimationCommand.ts +82 -73
  68. package/src/command/FieldCategory_CreateForCommand.ts +100 -91
  69. package/src/command/FieldFieldCommand.ts +33 -33
  70. package/src/command/FieldFieldEstimationCommand.ts +82 -73
  71. package/src/command/FieldField_CreateForCommand.ts +100 -91
  72. package/src/command/HealthzCommand.ts +31 -31
  73. package/src/command/HealthzGetCommand.ts +44 -44
  74. package/src/command/MetricsCommand.ts +31 -31
  75. package/src/command/MetricsGetCommand.ts +44 -44
  76. package/src/command/ValueCommand.ts +31 -31
  77. package/src/command/ValueListCommand.ts +44 -44
  78. package/src/command/cli.ts +48 -48
  79. package/src/enum/TrialUnit.ts +5 -5
  80. package/src/index.ts +66 -66
  81. package/src/meta/CostMetaTable.ts +81 -79
  82. package/src/meta/NamirasoftCostMetaDatabase.ts +50 -50
  83. package/src/row/CostCreateRow.ts +37 -36
  84. package/src/row/CostRow.ts +40 -39
  85. package/src/type/Estimation.ts +6 -6
  86. package/src/type/EstimationRow.ts +9 -9
  87. package/src/type/EstimationUsage.ts +5 -5
  88. package/src/type/Period.ts +4 -4
  89. package/src/type/Trial.ts +6 -6
  90. package/src/type/TrialDuration.ts +6 -6
package/src/type/Trial.ts CHANGED
@@ -1,7 +1,7 @@
1
- import { TrialDuration } from "./TrialDuration";
2
-
3
- export type Trial =
4
- {
5
- started_at: Date;
6
- duration: TrialDuration;
1
+ import { TrialDuration } from "./TrialDuration";
2
+
3
+ export type Trial =
4
+ {
5
+ started_at: Date;
6
+ duration: TrialDuration;
7
7
  };
@@ -1,7 +1,7 @@
1
- import { TrialUnit } from "../enum/TrialUnit";
2
-
3
- export type TrialDuration =
4
- {
5
- value: number;
6
- unit: TrialUnit;
1
+ import { TrialUnit } from "../enum/TrialUnit";
2
+
3
+ export type TrialDuration =
4
+ {
5
+ value: number;
6
+ unit: TrialUnit;
7
7
  };