@grnsft/if 0.4.0-beta.0 → 0.4.0

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 (181) hide show
  1. package/CONTRIBUTING.md +3 -0
  2. package/README.md +6 -0
  3. package/build/builtins/coefficient/index.d.ts +3 -0
  4. package/build/builtins/coefficient/index.js +51 -0
  5. package/build/builtins/coefficient/types.d.ts +5 -0
  6. package/build/builtins/coefficient/types.js +3 -0
  7. package/build/builtins/csv-lookup/index.d.ts +2 -0
  8. package/build/builtins/csv-lookup/index.js +181 -0
  9. package/build/builtins/divide/index.d.ts +2 -0
  10. package/build/builtins/divide/index.js +67 -0
  11. package/build/builtins/exponent/index.d.ts +3 -0
  12. package/build/builtins/exponent/index.js +72 -0
  13. package/build/builtins/exponent/types.d.ts +5 -0
  14. package/build/builtins/exponent/types.js +3 -0
  15. package/build/builtins/export-csv-raw.js +4 -1
  16. package/build/builtins/export-csv.js +4 -1
  17. package/build/builtins/export-log.js +4 -2
  18. package/build/builtins/export-yaml.js +4 -1
  19. package/build/builtins/index.d.ts +13 -0
  20. package/build/builtins/index.js +28 -2
  21. package/build/builtins/interpolation/index.d.ts +2 -0
  22. package/build/builtins/interpolation/index.js +146 -0
  23. package/build/builtins/interpolation/types.d.ts +5 -0
  24. package/build/builtins/interpolation/types.js +10 -0
  25. package/build/builtins/mock-observations/helpers/common-generator.d.ts +3 -0
  26. package/build/builtins/mock-observations/helpers/common-generator.js +32 -0
  27. package/build/builtins/mock-observations/helpers/rand-int-generator.d.ts +3 -0
  28. package/build/builtins/mock-observations/helpers/rand-int-generator.js +58 -0
  29. package/build/builtins/mock-observations/index.d.ts +3 -0
  30. package/build/builtins/mock-observations/index.js +116 -0
  31. package/build/builtins/mock-observations/interfaces/index.d.ts +6 -0
  32. package/build/builtins/mock-observations/interfaces/index.js +3 -0
  33. package/build/builtins/mock-observations/types.d.ts +13 -0
  34. package/build/builtins/mock-observations/types.js +3 -0
  35. package/build/builtins/multiply/index.d.ts +3 -0
  36. package/build/builtins/multiply/index.js +63 -0
  37. package/build/builtins/multiply/types.d.ts +4 -0
  38. package/build/builtins/multiply/types.js +3 -0
  39. package/build/builtins/regex/index.d.ts +3 -0
  40. package/build/builtins/regex/index.js +78 -0
  41. package/build/builtins/sci/config.d.ts +1 -0
  42. package/build/builtins/sci/config.js +44 -0
  43. package/build/builtins/sci/index.d.ts +3 -0
  44. package/build/builtins/sci/index.js +69 -0
  45. package/build/builtins/sci-embodied/index.d.ts +2 -0
  46. package/build/builtins/sci-embodied/index.js +115 -0
  47. package/build/builtins/shell/index.d.ts +3 -0
  48. package/build/builtins/shell/index.js +58 -0
  49. package/build/builtins/subtract/index.d.ts +3 -0
  50. package/build/builtins/subtract/index.js +75 -0
  51. package/build/builtins/subtract/types.d.ts +4 -0
  52. package/build/builtins/subtract/types.js +3 -0
  53. package/build/builtins/sum/index.d.ts +3 -0
  54. package/build/builtins/sum/index.js +61 -0
  55. package/build/builtins/sum/types.d.ts +4 -0
  56. package/build/builtins/sum/types.js +3 -0
  57. package/build/config/config.d.ts +8 -2
  58. package/build/config/config.js +34 -1
  59. package/build/config/strings.d.ts +22 -0
  60. package/build/config/strings.js +23 -1
  61. package/build/diff.d.ts +2 -0
  62. package/build/diff.js +46 -0
  63. package/build/index.js +8 -4
  64. package/build/lib/aggregate.js +5 -1
  65. package/build/lib/compare.d.ts +10 -0
  66. package/build/lib/compare.js +56 -0
  67. package/build/lib/compute.js +9 -1
  68. package/build/lib/environment.js +9 -3
  69. package/build/lib/exhaust.js +3 -2
  70. package/build/lib/initialize.js +5 -2
  71. package/build/lib/load.d.ts +48 -0
  72. package/build/lib/load.js +49 -2
  73. package/build/lib/parameterize.js +8 -4
  74. package/build/types/common.d.ts +4 -0
  75. package/build/types/common.js +3 -0
  76. package/build/types/helpers.d.ts +4 -0
  77. package/build/types/helpers.js +3 -0
  78. package/build/types/interface.d.ts +2 -1
  79. package/build/types/interface.js +1 -1
  80. package/build/types/lib/compare.d.ts +7 -0
  81. package/build/types/lib/compare.js +3 -0
  82. package/build/types/process-args.d.ts +7 -1
  83. package/build/types/process-args.js +1 -1
  84. package/build/types/util/args.d.ts +5 -0
  85. package/build/types/util/args.js +3 -0
  86. package/build/util/args.d.ts +7 -2
  87. package/build/util/args.js +49 -11
  88. package/build/util/debug-logger.d.ts +4 -0
  89. package/build/util/debug-logger.js +117 -0
  90. package/build/util/errors.d.ts +1 -1
  91. package/build/util/errors.js +6 -1
  92. package/build/util/helpers.d.ts +23 -0
  93. package/build/util/helpers.js +116 -2
  94. package/build/util/log-memoize.d.ts +1 -1
  95. package/build/util/log-memoize.js +1 -1
  96. package/build/util/validations.d.ts +59 -51
  97. package/build/util/validations.js +49 -18
  98. package/github-processes.md +39 -0
  99. package/package.json +1 -1
  100. package/.env +0 -5
  101. package/coverage/clover.xml +0 -1590
  102. package/coverage/coverage-final.json +0 -50
  103. package/coverage/lcov-report/base.css +0 -224
  104. package/coverage/lcov-report/block-navigation.js +0 -87
  105. package/coverage/lcov-report/builtins/coefficient/index.html +0 -116
  106. package/coverage/lcov-report/builtins/coefficient/index.ts.html +0 -295
  107. package/coverage/lcov-report/builtins/csv-lookup/index.html +0 -116
  108. package/coverage/lcov-report/builtins/csv-lookup/index.ts.html +0 -832
  109. package/coverage/lcov-report/builtins/divide/index.html +0 -116
  110. package/coverage/lcov-report/builtins/divide/index.ts.html +0 -361
  111. package/coverage/lcov-report/builtins/exponent/index.html +0 -116
  112. package/coverage/lcov-report/builtins/exponent/index.ts.html +0 -355
  113. package/coverage/lcov-report/builtins/export-csv-raw.ts.html +0 -553
  114. package/coverage/lcov-report/builtins/export-csv.ts.html +0 -433
  115. package/coverage/lcov-report/builtins/export-log.ts.html +0 -145
  116. package/coverage/lcov-report/builtins/export-yaml.ts.html +0 -184
  117. package/coverage/lcov-report/builtins/group-by.ts.html +0 -364
  118. package/coverage/lcov-report/builtins/index.html +0 -206
  119. package/coverage/lcov-report/builtins/index.ts.html +0 -130
  120. package/coverage/lcov-report/builtins/interpolation/index.html +0 -131
  121. package/coverage/lcov-report/builtins/interpolation/index.ts.html +0 -670
  122. package/coverage/lcov-report/builtins/interpolation/types.ts.html +0 -100
  123. package/coverage/lcov-report/builtins/mock-observations/helpers/common-generator.ts.html +0 -181
  124. package/coverage/lcov-report/builtins/mock-observations/helpers/index.html +0 -131
  125. package/coverage/lcov-report/builtins/mock-observations/helpers/rand-int-generator.ts.html +0 -295
  126. package/coverage/lcov-report/builtins/mock-observations/index.html +0 -116
  127. package/coverage/lcov-report/builtins/mock-observations/index.ts.html +0 -613
  128. package/coverage/lcov-report/builtins/multiply/index.html +0 -116
  129. package/coverage/lcov-report/builtins/multiply/index.ts.html +0 -337
  130. package/coverage/lcov-report/builtins/regex/index.html +0 -116
  131. package/coverage/lcov-report/builtins/regex/index.ts.html +0 -379
  132. package/coverage/lcov-report/builtins/sci/config.ts.html +0 -205
  133. package/coverage/lcov-report/builtins/sci/index.html +0 -116
  134. package/coverage/lcov-report/builtins/sci/index.ts.html +0 -331
  135. package/coverage/lcov-report/builtins/sci-embodied/index.html +0 -116
  136. package/coverage/lcov-report/builtins/sci-embodied/index.ts.html +0 -481
  137. package/coverage/lcov-report/builtins/shell/index.html +0 -116
  138. package/coverage/lcov-report/builtins/shell/index.ts.html +0 -283
  139. package/coverage/lcov-report/builtins/subtract/index.html +0 -116
  140. package/coverage/lcov-report/builtins/subtract/index.ts.html +0 -373
  141. package/coverage/lcov-report/builtins/sum/index.html +0 -116
  142. package/coverage/lcov-report/builtins/sum/index.ts.html +0 -340
  143. package/coverage/lcov-report/builtins/time-sync.ts.html +0 -1459
  144. package/coverage/lcov-report/config/config.ts.html +0 -334
  145. package/coverage/lcov-report/config/index.html +0 -161
  146. package/coverage/lcov-report/config/index.ts.html +0 -94
  147. package/coverage/lcov-report/config/params.ts.html +0 -697
  148. package/coverage/lcov-report/config/strings.ts.html +0 -415
  149. package/coverage/lcov-report/favicon.png +0 -0
  150. package/coverage/lcov-report/index.html +0 -386
  151. package/coverage/lcov-report/lib/aggregate.ts.html +0 -331
  152. package/coverage/lcov-report/lib/compare.ts.html +0 -283
  153. package/coverage/lcov-report/lib/compute.ts.html +0 -391
  154. package/coverage/lcov-report/lib/environment.ts.html +0 -343
  155. package/coverage/lcov-report/lib/exhaust.ts.html +0 -283
  156. package/coverage/lcov-report/lib/index.html +0 -221
  157. package/coverage/lcov-report/lib/initialize.ts.html +0 -388
  158. package/coverage/lcov-report/lib/load.ts.html +0 -268
  159. package/coverage/lcov-report/lib/parameterize.ts.html +0 -283
  160. package/coverage/lcov-report/prettify.css +0 -1
  161. package/coverage/lcov-report/prettify.js +0 -2
  162. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  163. package/coverage/lcov-report/sorter.js +0 -196
  164. package/coverage/lcov-report/types/aggregation.ts.html +0 -94
  165. package/coverage/lcov-report/types/index.html +0 -146
  166. package/coverage/lcov-report/types/interface.ts.html +0 -181
  167. package/coverage/lcov-report/types/parameters.ts.html +0 -106
  168. package/coverage/lcov-report/util/aggregation-helper.ts.html +0 -286
  169. package/coverage/lcov-report/util/args.ts.html +0 -508
  170. package/coverage/lcov-report/util/errors.ts.html +0 -232
  171. package/coverage/lcov-report/util/helpers.ts.html +0 -613
  172. package/coverage/lcov-report/util/index.html +0 -266
  173. package/coverage/lcov-report/util/json.ts.html +0 -115
  174. package/coverage/lcov-report/util/log-memoize.ts.html +0 -145
  175. package/coverage/lcov-report/util/logger.ts.html +0 -151
  176. package/coverage/lcov-report/util/os-checker.ts.html +0 -421
  177. package/coverage/lcov-report/util/plugin-storage.ts.html +0 -199
  178. package/coverage/lcov-report/util/validations.ts.html +0 -526
  179. package/coverage/lcov-report/util/yaml.ts.html +0 -193
  180. package/coverage/lcov.info +0 -2811
  181. package/src/__tests__/integration/manifest/sci-e.yaml +0 -23
@@ -1,23 +0,0 @@
1
- name: integration-template
2
- description: null
3
- tags: null
4
- initialize:
5
- plugins:
6
- sci-e:
7
- method: SciE
8
- path: '@grnsft/if-plugins'
9
- outputs:
10
- - log
11
- tree:
12
- children:
13
- child:
14
- pipeline:
15
- - sci-e
16
- config:
17
- sci-e: {}
18
- inputs:
19
- - timestamp: 2023-08-06T00:00
20
- duration: 3600
21
- cpu/energy: 10
22
- memory/energy: 100
23
- network/energy: 100