@grnsft/if 0.4.0-beta.0 → 0.4.0-beta.1

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