step-node-agent 3.25.4 → 3.26.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 (289) hide show
  1. package/AgentConf.yaml +13 -0
  2. package/api/controllers/controller.js +4 -0
  3. package/api/routes/routes.js +1 -0
  4. package/node_modules/aws4/aws4.js +1 -1
  5. package/node_modules/aws4/package.json +2 -2
  6. package/node_modules/body-parser/HISTORY.md +7 -0
  7. package/node_modules/body-parser/README.md +11 -0
  8. package/node_modules/body-parser/lib/types/urlencoded.js +30 -7
  9. package/node_modules/body-parser/package.json +2 -2
  10. package/node_modules/encodeurl/README.md +19 -38
  11. package/node_modules/encodeurl/index.js +1 -1
  12. package/node_modules/encodeurl/package.json +7 -7
  13. package/node_modules/express/History.md +27 -0
  14. package/node_modules/express/Readme.md +100 -6
  15. package/node_modules/express/lib/response.js +11 -10
  16. package/node_modules/express/package.json +11 -11
  17. package/node_modules/finalhandler/HISTORY.md +15 -0
  18. package/node_modules/finalhandler/README.md +2 -2
  19. package/node_modules/finalhandler/index.js +7 -2
  20. package/node_modules/finalhandler/package.json +8 -7
  21. package/node_modules/get-fqdn/LICENSE +21 -0
  22. package/node_modules/get-fqdn/README.md +83 -0
  23. package/node_modules/get-fqdn/index.js +17 -0
  24. package/node_modules/get-fqdn/package.json +73 -0
  25. package/node_modules/is-core-module/CHANGELOG.md +10 -0
  26. package/node_modules/is-core-module/core.json +2 -2
  27. package/node_modules/is-core-module/package.json +4 -4
  28. package/node_modules/is-core-module/test/index.js +17 -1
  29. package/node_modules/merge-descriptors/README.md +4 -3
  30. package/node_modules/merge-descriptors/index.js +3 -3
  31. package/node_modules/merge-descriptors/package.json +14 -7
  32. package/node_modules/path-to-regexp/index.js +57 -40
  33. package/node_modules/path-to-regexp/package.json +2 -2
  34. package/node_modules/qs/.editorconfig +3 -0
  35. package/node_modules/qs/.eslintrc +2 -2
  36. package/node_modules/qs/CHANGELOG.md +59 -5
  37. package/node_modules/qs/README.md +133 -49
  38. package/node_modules/qs/dist/qs.js +56 -2020
  39. package/node_modules/qs/lib/parse.js +46 -13
  40. package/node_modules/qs/lib/stringify.js +53 -28
  41. package/node_modules/qs/lib/utils.js +47 -34
  42. package/node_modules/qs/package.json +26 -12
  43. package/node_modules/qs/test/empty-keys-cases.js +267 -0
  44. package/node_modules/qs/test/parse.js +347 -32
  45. package/node_modules/qs/test/stringify.js +436 -47
  46. package/node_modules/send/HISTORY.md +5 -0
  47. package/node_modules/send/index.js +1 -2
  48. package/node_modules/send/node_modules/encodeurl/LICENSE +22 -0
  49. package/node_modules/send/node_modules/encodeurl/README.md +128 -0
  50. package/node_modules/send/node_modules/encodeurl/index.js +60 -0
  51. package/node_modules/send/node_modules/encodeurl/package.json +40 -0
  52. package/node_modules/send/package.json +1 -1
  53. package/node_modules/serve-static/HISTORY.md +16 -0
  54. package/node_modules/serve-static/index.js +1 -2
  55. package/node_modules/serve-static/package.json +3 -3
  56. package/node_modules/yaml/LICENSE +13 -0
  57. package/node_modules/yaml/README.md +155 -0
  58. package/node_modules/yaml/bin.mjs +11 -0
  59. package/node_modules/yaml/browser/dist/compose/compose-collection.js +88 -0
  60. package/node_modules/yaml/browser/dist/compose/compose-doc.js +42 -0
  61. package/node_modules/yaml/browser/dist/compose/compose-node.js +92 -0
  62. package/node_modules/yaml/browser/dist/compose/compose-scalar.js +80 -0
  63. package/node_modules/yaml/browser/dist/compose/composer.js +217 -0
  64. package/node_modules/yaml/browser/dist/compose/resolve-block-map.js +113 -0
  65. package/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +198 -0
  66. package/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +47 -0
  67. package/node_modules/yaml/browser/dist/compose/resolve-end.js +37 -0
  68. package/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +203 -0
  69. package/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +223 -0
  70. package/node_modules/yaml/browser/dist/compose/resolve-props.js +148 -0
  71. package/node_modules/yaml/browser/dist/compose/util-contains-newline.js +34 -0
  72. package/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +27 -0
  73. package/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +15 -0
  74. package/node_modules/yaml/browser/dist/compose/util-map-includes.js +17 -0
  75. package/node_modules/yaml/browser/dist/doc/Document.js +334 -0
  76. package/node_modules/yaml/browser/dist/doc/anchors.js +72 -0
  77. package/node_modules/yaml/browser/dist/doc/applyReviver.js +55 -0
  78. package/node_modules/yaml/browser/dist/doc/createNode.js +89 -0
  79. package/node_modules/yaml/browser/dist/doc/directives.js +176 -0
  80. package/node_modules/yaml/browser/dist/errors.js +57 -0
  81. package/node_modules/yaml/browser/dist/index.js +17 -0
  82. package/node_modules/yaml/browser/dist/log.js +14 -0
  83. package/node_modules/yaml/browser/dist/nodes/Alias.js +101 -0
  84. package/node_modules/yaml/browser/dist/nodes/Collection.js +147 -0
  85. package/node_modules/yaml/browser/dist/nodes/Node.js +38 -0
  86. package/node_modules/yaml/browser/dist/nodes/Pair.js +36 -0
  87. package/node_modules/yaml/browser/dist/nodes/Scalar.js +24 -0
  88. package/node_modules/yaml/browser/dist/nodes/YAMLMap.js +144 -0
  89. package/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +113 -0
  90. package/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +104 -0
  91. package/node_modules/yaml/browser/dist/nodes/identity.js +36 -0
  92. package/node_modules/yaml/browser/dist/nodes/toJS.js +37 -0
  93. package/node_modules/yaml/browser/dist/parse/cst-scalar.js +214 -0
  94. package/node_modules/yaml/browser/dist/parse/cst-stringify.js +61 -0
  95. package/node_modules/yaml/browser/dist/parse/cst-visit.js +97 -0
  96. package/node_modules/yaml/browser/dist/parse/cst.js +98 -0
  97. package/node_modules/yaml/browser/dist/parse/lexer.js +717 -0
  98. package/node_modules/yaml/browser/dist/parse/line-counter.js +39 -0
  99. package/node_modules/yaml/browser/dist/parse/parser.js +954 -0
  100. package/node_modules/yaml/browser/dist/public-api.js +99 -0
  101. package/node_modules/yaml/browser/dist/schema/Schema.js +38 -0
  102. package/node_modules/yaml/browser/dist/schema/common/map.js +17 -0
  103. package/node_modules/yaml/browser/dist/schema/common/null.js +15 -0
  104. package/node_modules/yaml/browser/dist/schema/common/seq.js +17 -0
  105. package/node_modules/yaml/browser/dist/schema/common/string.js +14 -0
  106. package/node_modules/yaml/browser/dist/schema/core/bool.js +19 -0
  107. package/node_modules/yaml/browser/dist/schema/core/float.js +43 -0
  108. package/node_modules/yaml/browser/dist/schema/core/int.js +38 -0
  109. package/node_modules/yaml/browser/dist/schema/core/schema.js +23 -0
  110. package/node_modules/yaml/browser/dist/schema/json/schema.js +62 -0
  111. package/node_modules/yaml/browser/dist/schema/tags.js +83 -0
  112. package/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +66 -0
  113. package/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +26 -0
  114. package/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +46 -0
  115. package/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +71 -0
  116. package/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +74 -0
  117. package/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +78 -0
  118. package/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +37 -0
  119. package/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +93 -0
  120. package/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +101 -0
  121. package/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +146 -0
  122. package/node_modules/yaml/browser/dist/stringify/stringify.js +124 -0
  123. package/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +143 -0
  124. package/node_modules/yaml/browser/dist/stringify/stringifyComment.js +20 -0
  125. package/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +85 -0
  126. package/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +24 -0
  127. package/node_modules/yaml/browser/dist/stringify/stringifyPair.js +150 -0
  128. package/node_modules/yaml/browser/dist/stringify/stringifyString.js +328 -0
  129. package/node_modules/yaml/browser/dist/util.js +11 -0
  130. package/node_modules/yaml/browser/dist/visit.js +233 -0
  131. package/node_modules/yaml/browser/index.js +5 -0
  132. package/node_modules/yaml/browser/package.json +3 -0
  133. package/node_modules/yaml/dist/cli.d.ts +8 -0
  134. package/node_modules/yaml/dist/cli.mjs +199 -0
  135. package/node_modules/yaml/dist/compose/compose-collection.d.ts +11 -0
  136. package/node_modules/yaml/dist/compose/compose-collection.js +90 -0
  137. package/node_modules/yaml/dist/compose/compose-doc.d.ts +7 -0
  138. package/node_modules/yaml/dist/compose/compose-doc.js +44 -0
  139. package/node_modules/yaml/dist/compose/compose-node.d.ts +28 -0
  140. package/node_modules/yaml/dist/compose/compose-node.js +95 -0
  141. package/node_modules/yaml/dist/compose/compose-scalar.d.ts +5 -0
  142. package/node_modules/yaml/dist/compose/compose-scalar.js +82 -0
  143. package/node_modules/yaml/dist/compose/composer.d.ts +62 -0
  144. package/node_modules/yaml/dist/compose/composer.js +221 -0
  145. package/node_modules/yaml/dist/compose/resolve-block-map.d.ts +6 -0
  146. package/node_modules/yaml/dist/compose/resolve-block-map.js +115 -0
  147. package/node_modules/yaml/dist/compose/resolve-block-scalar.d.ts +11 -0
  148. package/node_modules/yaml/dist/compose/resolve-block-scalar.js +200 -0
  149. package/node_modules/yaml/dist/compose/resolve-block-seq.d.ts +6 -0
  150. package/node_modules/yaml/dist/compose/resolve-block-seq.js +49 -0
  151. package/node_modules/yaml/dist/compose/resolve-end.d.ts +6 -0
  152. package/node_modules/yaml/dist/compose/resolve-end.js +39 -0
  153. package/node_modules/yaml/dist/compose/resolve-flow-collection.d.ts +7 -0
  154. package/node_modules/yaml/dist/compose/resolve-flow-collection.js +205 -0
  155. package/node_modules/yaml/dist/compose/resolve-flow-scalar.d.ts +10 -0
  156. package/node_modules/yaml/dist/compose/resolve-flow-scalar.js +225 -0
  157. package/node_modules/yaml/dist/compose/resolve-props.d.ts +23 -0
  158. package/node_modules/yaml/dist/compose/resolve-props.js +150 -0
  159. package/node_modules/yaml/dist/compose/util-contains-newline.d.ts +2 -0
  160. package/node_modules/yaml/dist/compose/util-contains-newline.js +36 -0
  161. package/node_modules/yaml/dist/compose/util-empty-scalar-position.d.ts +2 -0
  162. package/node_modules/yaml/dist/compose/util-empty-scalar-position.js +29 -0
  163. package/node_modules/yaml/dist/compose/util-flow-indent-check.d.ts +3 -0
  164. package/node_modules/yaml/dist/compose/util-flow-indent-check.js +17 -0
  165. package/node_modules/yaml/dist/compose/util-map-includes.d.ts +4 -0
  166. package/node_modules/yaml/dist/compose/util-map-includes.js +19 -0
  167. package/node_modules/yaml/dist/doc/Document.d.ts +141 -0
  168. package/node_modules/yaml/dist/doc/Document.js +336 -0
  169. package/node_modules/yaml/dist/doc/anchors.d.ts +24 -0
  170. package/node_modules/yaml/dist/doc/anchors.js +77 -0
  171. package/node_modules/yaml/dist/doc/applyReviver.d.ts +9 -0
  172. package/node_modules/yaml/dist/doc/applyReviver.js +57 -0
  173. package/node_modules/yaml/dist/doc/createNode.d.ts +17 -0
  174. package/node_modules/yaml/dist/doc/createNode.js +91 -0
  175. package/node_modules/yaml/dist/doc/directives.d.ts +49 -0
  176. package/node_modules/yaml/dist/doc/directives.js +178 -0
  177. package/node_modules/yaml/dist/errors.d.ts +21 -0
  178. package/node_modules/yaml/dist/errors.js +62 -0
  179. package/node_modules/yaml/dist/index.d.ts +22 -0
  180. package/node_modules/yaml/dist/index.js +50 -0
  181. package/node_modules/yaml/dist/log.d.ts +3 -0
  182. package/node_modules/yaml/dist/log.js +17 -0
  183. package/node_modules/yaml/dist/nodes/Alias.d.ts +28 -0
  184. package/node_modules/yaml/dist/nodes/Alias.js +103 -0
  185. package/node_modules/yaml/dist/nodes/Collection.d.ts +73 -0
  186. package/node_modules/yaml/dist/nodes/Collection.js +151 -0
  187. package/node_modules/yaml/dist/nodes/Node.d.ts +47 -0
  188. package/node_modules/yaml/dist/nodes/Node.js +40 -0
  189. package/node_modules/yaml/dist/nodes/Pair.d.ts +21 -0
  190. package/node_modules/yaml/dist/nodes/Pair.js +39 -0
  191. package/node_modules/yaml/dist/nodes/Scalar.d.ts +42 -0
  192. package/node_modules/yaml/dist/nodes/Scalar.js +27 -0
  193. package/node_modules/yaml/dist/nodes/YAMLMap.d.ts +53 -0
  194. package/node_modules/yaml/dist/nodes/YAMLMap.js +147 -0
  195. package/node_modules/yaml/dist/nodes/YAMLSeq.d.ts +60 -0
  196. package/node_modules/yaml/dist/nodes/YAMLSeq.js +115 -0
  197. package/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts +4 -0
  198. package/node_modules/yaml/dist/nodes/addPairToJSMap.js +106 -0
  199. package/node_modules/yaml/dist/nodes/identity.d.ts +23 -0
  200. package/node_modules/yaml/dist/nodes/identity.js +53 -0
  201. package/node_modules/yaml/dist/nodes/toJS.d.ts +27 -0
  202. package/node_modules/yaml/dist/nodes/toJS.js +39 -0
  203. package/node_modules/yaml/dist/options.d.ts +338 -0
  204. package/node_modules/yaml/dist/parse/cst-scalar.d.ts +64 -0
  205. package/node_modules/yaml/dist/parse/cst-scalar.js +218 -0
  206. package/node_modules/yaml/dist/parse/cst-stringify.d.ts +8 -0
  207. package/node_modules/yaml/dist/parse/cst-stringify.js +63 -0
  208. package/node_modules/yaml/dist/parse/cst-visit.d.ts +39 -0
  209. package/node_modules/yaml/dist/parse/cst-visit.js +99 -0
  210. package/node_modules/yaml/dist/parse/cst.d.ts +108 -0
  211. package/node_modules/yaml/dist/parse/cst.js +112 -0
  212. package/node_modules/yaml/dist/parse/lexer.d.ts +87 -0
  213. package/node_modules/yaml/dist/parse/lexer.js +719 -0
  214. package/node_modules/yaml/dist/parse/line-counter.d.ts +22 -0
  215. package/node_modules/yaml/dist/parse/line-counter.js +41 -0
  216. package/node_modules/yaml/dist/parse/parser.d.ts +84 -0
  217. package/node_modules/yaml/dist/parse/parser.js +958 -0
  218. package/node_modules/yaml/dist/public-api.d.ts +43 -0
  219. package/node_modules/yaml/dist/public-api.js +104 -0
  220. package/node_modules/yaml/dist/schema/Schema.d.ts +18 -0
  221. package/node_modules/yaml/dist/schema/Schema.js +40 -0
  222. package/node_modules/yaml/dist/schema/common/map.d.ts +2 -0
  223. package/node_modules/yaml/dist/schema/common/map.js +19 -0
  224. package/node_modules/yaml/dist/schema/common/null.d.ts +4 -0
  225. package/node_modules/yaml/dist/schema/common/null.js +17 -0
  226. package/node_modules/yaml/dist/schema/common/seq.d.ts +2 -0
  227. package/node_modules/yaml/dist/schema/common/seq.js +19 -0
  228. package/node_modules/yaml/dist/schema/common/string.d.ts +2 -0
  229. package/node_modules/yaml/dist/schema/common/string.js +16 -0
  230. package/node_modules/yaml/dist/schema/core/bool.d.ts +4 -0
  231. package/node_modules/yaml/dist/schema/core/bool.js +21 -0
  232. package/node_modules/yaml/dist/schema/core/float.d.ts +4 -0
  233. package/node_modules/yaml/dist/schema/core/float.js +47 -0
  234. package/node_modules/yaml/dist/schema/core/int.d.ts +4 -0
  235. package/node_modules/yaml/dist/schema/core/int.js +42 -0
  236. package/node_modules/yaml/dist/schema/core/schema.d.ts +1 -0
  237. package/node_modules/yaml/dist/schema/core/schema.js +25 -0
  238. package/node_modules/yaml/dist/schema/json/schema.d.ts +2 -0
  239. package/node_modules/yaml/dist/schema/json/schema.js +64 -0
  240. package/node_modules/yaml/dist/schema/json-schema.d.ts +69 -0
  241. package/node_modules/yaml/dist/schema/tags.d.ts +40 -0
  242. package/node_modules/yaml/dist/schema/tags.js +86 -0
  243. package/node_modules/yaml/dist/schema/types.d.ts +90 -0
  244. package/node_modules/yaml/dist/schema/yaml-1.1/binary.d.ts +2 -0
  245. package/node_modules/yaml/dist/schema/yaml-1.1/binary.js +68 -0
  246. package/node_modules/yaml/dist/schema/yaml-1.1/bool.d.ts +7 -0
  247. package/node_modules/yaml/dist/schema/yaml-1.1/bool.js +29 -0
  248. package/node_modules/yaml/dist/schema/yaml-1.1/float.d.ts +4 -0
  249. package/node_modules/yaml/dist/schema/yaml-1.1/float.js +50 -0
  250. package/node_modules/yaml/dist/schema/yaml-1.1/int.d.ts +5 -0
  251. package/node_modules/yaml/dist/schema/yaml-1.1/int.js +76 -0
  252. package/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts +28 -0
  253. package/node_modules/yaml/dist/schema/yaml-1.1/omap.js +77 -0
  254. package/node_modules/yaml/dist/schema/yaml-1.1/pairs.d.ts +10 -0
  255. package/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +82 -0
  256. package/node_modules/yaml/dist/schema/yaml-1.1/schema.d.ts +1 -0
  257. package/node_modules/yaml/dist/schema/yaml-1.1/schema.js +39 -0
  258. package/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts +28 -0
  259. package/node_modules/yaml/dist/schema/yaml-1.1/set.js +96 -0
  260. package/node_modules/yaml/dist/schema/yaml-1.1/timestamp.d.ts +6 -0
  261. package/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +105 -0
  262. package/node_modules/yaml/dist/stringify/foldFlowLines.d.ts +34 -0
  263. package/node_modules/yaml/dist/stringify/foldFlowLines.js +151 -0
  264. package/node_modules/yaml/dist/stringify/stringify.d.ts +21 -0
  265. package/node_modules/yaml/dist/stringify/stringify.js +127 -0
  266. package/node_modules/yaml/dist/stringify/stringifyCollection.d.ts +17 -0
  267. package/node_modules/yaml/dist/stringify/stringifyCollection.js +145 -0
  268. package/node_modules/yaml/dist/stringify/stringifyComment.d.ts +10 -0
  269. package/node_modules/yaml/dist/stringify/stringifyComment.js +24 -0
  270. package/node_modules/yaml/dist/stringify/stringifyDocument.d.ts +4 -0
  271. package/node_modules/yaml/dist/stringify/stringifyDocument.js +87 -0
  272. package/node_modules/yaml/dist/stringify/stringifyNumber.d.ts +2 -0
  273. package/node_modules/yaml/dist/stringify/stringifyNumber.js +26 -0
  274. package/node_modules/yaml/dist/stringify/stringifyPair.d.ts +3 -0
  275. package/node_modules/yaml/dist/stringify/stringifyPair.js +152 -0
  276. package/node_modules/yaml/dist/stringify/stringifyString.d.ts +9 -0
  277. package/node_modules/yaml/dist/stringify/stringifyString.js +330 -0
  278. package/node_modules/yaml/dist/test-events.d.ts +4 -0
  279. package/node_modules/yaml/dist/test-events.js +134 -0
  280. package/node_modules/yaml/dist/util.d.ts +12 -0
  281. package/node_modules/yaml/dist/util.js +28 -0
  282. package/node_modules/yaml/dist/visit.d.ts +102 -0
  283. package/node_modules/yaml/dist/visit.js +236 -0
  284. package/node_modules/yaml/package.json +96 -0
  285. package/node_modules/yaml/util.js +2 -0
  286. package/package.json +7 -3
  287. package/server.js +50 -23
  288. package/node_modules/path-to-regexp/History.md +0 -36
  289. /package/node_modules/{encodeurl → send/node_modules/encodeurl}/HISTORY.md +0 -0
@@ -0,0 +1,147 @@
1
+ 'use strict';
2
+
3
+ var stringifyCollection = require('../stringify/stringifyCollection.js');
4
+ var addPairToJSMap = require('./addPairToJSMap.js');
5
+ var Collection = require('./Collection.js');
6
+ var identity = require('./identity.js');
7
+ var Pair = require('./Pair.js');
8
+ var Scalar = require('./Scalar.js');
9
+
10
+ function findPair(items, key) {
11
+ const k = identity.isScalar(key) ? key.value : key;
12
+ for (const it of items) {
13
+ if (identity.isPair(it)) {
14
+ if (it.key === key || it.key === k)
15
+ return it;
16
+ if (identity.isScalar(it.key) && it.key.value === k)
17
+ return it;
18
+ }
19
+ }
20
+ return undefined;
21
+ }
22
+ class YAMLMap extends Collection.Collection {
23
+ static get tagName() {
24
+ return 'tag:yaml.org,2002:map';
25
+ }
26
+ constructor(schema) {
27
+ super(identity.MAP, schema);
28
+ this.items = [];
29
+ }
30
+ /**
31
+ * A generic collection parsing method that can be extended
32
+ * to other node classes that inherit from YAMLMap
33
+ */
34
+ static from(schema, obj, ctx) {
35
+ const { keepUndefined, replacer } = ctx;
36
+ const map = new this(schema);
37
+ const add = (key, value) => {
38
+ if (typeof replacer === 'function')
39
+ value = replacer.call(obj, key, value);
40
+ else if (Array.isArray(replacer) && !replacer.includes(key))
41
+ return;
42
+ if (value !== undefined || keepUndefined)
43
+ map.items.push(Pair.createPair(key, value, ctx));
44
+ };
45
+ if (obj instanceof Map) {
46
+ for (const [key, value] of obj)
47
+ add(key, value);
48
+ }
49
+ else if (obj && typeof obj === 'object') {
50
+ for (const key of Object.keys(obj))
51
+ add(key, obj[key]);
52
+ }
53
+ if (typeof schema.sortMapEntries === 'function') {
54
+ map.items.sort(schema.sortMapEntries);
55
+ }
56
+ return map;
57
+ }
58
+ /**
59
+ * Adds a value to the collection.
60
+ *
61
+ * @param overwrite - If not set `true`, using a key that is already in the
62
+ * collection will throw. Otherwise, overwrites the previous value.
63
+ */
64
+ add(pair, overwrite) {
65
+ let _pair;
66
+ if (identity.isPair(pair))
67
+ _pair = pair;
68
+ else if (!pair || typeof pair !== 'object' || !('key' in pair)) {
69
+ // In TypeScript, this never happens.
70
+ _pair = new Pair.Pair(pair, pair?.value);
71
+ }
72
+ else
73
+ _pair = new Pair.Pair(pair.key, pair.value);
74
+ const prev = findPair(this.items, _pair.key);
75
+ const sortEntries = this.schema?.sortMapEntries;
76
+ if (prev) {
77
+ if (!overwrite)
78
+ throw new Error(`Key ${_pair.key} already set`);
79
+ // For scalars, keep the old node & its comments and anchors
80
+ if (identity.isScalar(prev.value) && Scalar.isScalarValue(_pair.value))
81
+ prev.value.value = _pair.value;
82
+ else
83
+ prev.value = _pair.value;
84
+ }
85
+ else if (sortEntries) {
86
+ const i = this.items.findIndex(item => sortEntries(_pair, item) < 0);
87
+ if (i === -1)
88
+ this.items.push(_pair);
89
+ else
90
+ this.items.splice(i, 0, _pair);
91
+ }
92
+ else {
93
+ this.items.push(_pair);
94
+ }
95
+ }
96
+ delete(key) {
97
+ const it = findPair(this.items, key);
98
+ if (!it)
99
+ return false;
100
+ const del = this.items.splice(this.items.indexOf(it), 1);
101
+ return del.length > 0;
102
+ }
103
+ get(key, keepScalar) {
104
+ const it = findPair(this.items, key);
105
+ const node = it?.value;
106
+ return (!keepScalar && identity.isScalar(node) ? node.value : node) ?? undefined;
107
+ }
108
+ has(key) {
109
+ return !!findPair(this.items, key);
110
+ }
111
+ set(key, value) {
112
+ this.add(new Pair.Pair(key, value), true);
113
+ }
114
+ /**
115
+ * @param ctx - Conversion context, originally set in Document#toJS()
116
+ * @param {Class} Type - If set, forces the returned collection type
117
+ * @returns Instance of Type, Map, or Object
118
+ */
119
+ toJSON(_, ctx, Type) {
120
+ const map = Type ? new Type() : ctx?.mapAsMap ? new Map() : {};
121
+ if (ctx?.onCreate)
122
+ ctx.onCreate(map);
123
+ for (const item of this.items)
124
+ addPairToJSMap.addPairToJSMap(ctx, map, item);
125
+ return map;
126
+ }
127
+ toString(ctx, onComment, onChompKeep) {
128
+ if (!ctx)
129
+ return JSON.stringify(this);
130
+ for (const item of this.items) {
131
+ if (!identity.isPair(item))
132
+ throw new Error(`Map items must all be pairs; found ${JSON.stringify(item)} instead`);
133
+ }
134
+ if (!ctx.allNullValues && this.hasAllNullValues(false))
135
+ ctx = Object.assign({}, ctx, { allNullValues: true });
136
+ return stringifyCollection.stringifyCollection(this, ctx, {
137
+ blockItemPrefix: '',
138
+ flowChars: { start: '{', end: '}' },
139
+ itemIndent: ctx.indent || '',
140
+ onChompKeep,
141
+ onComment
142
+ });
143
+ }
144
+ }
145
+
146
+ exports.YAMLMap = YAMLMap;
147
+ exports.findPair = findPair;
@@ -0,0 +1,60 @@
1
+ import { CreateNodeContext } from '../doc/createNode.js';
2
+ import type { BlockSequence, FlowCollection } from '../parse/cst.js';
3
+ import type { Schema } from '../schema/Schema.js';
4
+ import type { StringifyContext } from '../stringify/stringify.js';
5
+ import { Collection } from './Collection.js';
6
+ import type { ParsedNode, Range } from './Node.js';
7
+ import type { Pair } from './Pair.js';
8
+ import { Scalar } from './Scalar.js';
9
+ import { ToJSContext } from './toJS.js';
10
+ export declare namespace YAMLSeq {
11
+ interface Parsed<T extends ParsedNode | Pair<ParsedNode, ParsedNode | null> = ParsedNode> extends YAMLSeq<T> {
12
+ items: T[];
13
+ range: Range;
14
+ srcToken?: BlockSequence | FlowCollection;
15
+ }
16
+ }
17
+ export declare class YAMLSeq<T = unknown> extends Collection {
18
+ static get tagName(): 'tag:yaml.org,2002:seq';
19
+ items: T[];
20
+ constructor(schema?: Schema);
21
+ add(value: T): void;
22
+ /**
23
+ * Removes a value from the collection.
24
+ *
25
+ * `key` must contain a representation of an integer for this to succeed.
26
+ * It may be wrapped in a `Scalar`.
27
+ *
28
+ * @returns `true` if the item was found and removed.
29
+ */
30
+ delete(key: unknown): boolean;
31
+ /**
32
+ * Returns item at `key`, or `undefined` if not found. By default unwraps
33
+ * scalar values from their surrounding node; to disable set `keepScalar` to
34
+ * `true` (collections are always returned intact).
35
+ *
36
+ * `key` must contain a representation of an integer for this to succeed.
37
+ * It may be wrapped in a `Scalar`.
38
+ */
39
+ get(key: unknown, keepScalar: true): Scalar<T> | undefined;
40
+ get(key: unknown, keepScalar?: false): T | undefined;
41
+ get(key: unknown, keepScalar?: boolean): T | Scalar<T> | undefined;
42
+ /**
43
+ * Checks if the collection includes a value with the key `key`.
44
+ *
45
+ * `key` must contain a representation of an integer for this to succeed.
46
+ * It may be wrapped in a `Scalar`.
47
+ */
48
+ has(key: unknown): boolean;
49
+ /**
50
+ * Sets a value in this collection. For `!!set`, `value` needs to be a
51
+ * boolean to add/remove the item from the set.
52
+ *
53
+ * If `key` does not contain a representation of an integer, this will throw.
54
+ * It may be wrapped in a `Scalar`.
55
+ */
56
+ set(key: unknown, value: T): void;
57
+ toJSON(_?: unknown, ctx?: ToJSContext): unknown[];
58
+ toString(ctx?: StringifyContext, onComment?: () => void, onChompKeep?: () => void): string;
59
+ static from(schema: Schema, obj: unknown, ctx: CreateNodeContext): YAMLSeq<unknown>;
60
+ }
@@ -0,0 +1,115 @@
1
+ 'use strict';
2
+
3
+ var createNode = require('../doc/createNode.js');
4
+ var stringifyCollection = require('../stringify/stringifyCollection.js');
5
+ var Collection = require('./Collection.js');
6
+ var identity = require('./identity.js');
7
+ var Scalar = require('./Scalar.js');
8
+ var toJS = require('./toJS.js');
9
+
10
+ class YAMLSeq extends Collection.Collection {
11
+ static get tagName() {
12
+ return 'tag:yaml.org,2002:seq';
13
+ }
14
+ constructor(schema) {
15
+ super(identity.SEQ, schema);
16
+ this.items = [];
17
+ }
18
+ add(value) {
19
+ this.items.push(value);
20
+ }
21
+ /**
22
+ * Removes a value from the collection.
23
+ *
24
+ * `key` must contain a representation of an integer for this to succeed.
25
+ * It may be wrapped in a `Scalar`.
26
+ *
27
+ * @returns `true` if the item was found and removed.
28
+ */
29
+ delete(key) {
30
+ const idx = asItemIndex(key);
31
+ if (typeof idx !== 'number')
32
+ return false;
33
+ const del = this.items.splice(idx, 1);
34
+ return del.length > 0;
35
+ }
36
+ get(key, keepScalar) {
37
+ const idx = asItemIndex(key);
38
+ if (typeof idx !== 'number')
39
+ return undefined;
40
+ const it = this.items[idx];
41
+ return !keepScalar && identity.isScalar(it) ? it.value : it;
42
+ }
43
+ /**
44
+ * Checks if the collection includes a value with the key `key`.
45
+ *
46
+ * `key` must contain a representation of an integer for this to succeed.
47
+ * It may be wrapped in a `Scalar`.
48
+ */
49
+ has(key) {
50
+ const idx = asItemIndex(key);
51
+ return typeof idx === 'number' && idx < this.items.length;
52
+ }
53
+ /**
54
+ * Sets a value in this collection. For `!!set`, `value` needs to be a
55
+ * boolean to add/remove the item from the set.
56
+ *
57
+ * If `key` does not contain a representation of an integer, this will throw.
58
+ * It may be wrapped in a `Scalar`.
59
+ */
60
+ set(key, value) {
61
+ const idx = asItemIndex(key);
62
+ if (typeof idx !== 'number')
63
+ throw new Error(`Expected a valid index, not ${key}.`);
64
+ const prev = this.items[idx];
65
+ if (identity.isScalar(prev) && Scalar.isScalarValue(value))
66
+ prev.value = value;
67
+ else
68
+ this.items[idx] = value;
69
+ }
70
+ toJSON(_, ctx) {
71
+ const seq = [];
72
+ if (ctx?.onCreate)
73
+ ctx.onCreate(seq);
74
+ let i = 0;
75
+ for (const item of this.items)
76
+ seq.push(toJS.toJS(item, String(i++), ctx));
77
+ return seq;
78
+ }
79
+ toString(ctx, onComment, onChompKeep) {
80
+ if (!ctx)
81
+ return JSON.stringify(this);
82
+ return stringifyCollection.stringifyCollection(this, ctx, {
83
+ blockItemPrefix: '- ',
84
+ flowChars: { start: '[', end: ']' },
85
+ itemIndent: (ctx.indent || '') + ' ',
86
+ onChompKeep,
87
+ onComment
88
+ });
89
+ }
90
+ static from(schema, obj, ctx) {
91
+ const { replacer } = ctx;
92
+ const seq = new this(schema);
93
+ if (obj && Symbol.iterator in Object(obj)) {
94
+ let i = 0;
95
+ for (let it of obj) {
96
+ if (typeof replacer === 'function') {
97
+ const key = obj instanceof Set ? it : String(i++);
98
+ it = replacer.call(obj, key, it);
99
+ }
100
+ seq.items.push(createNode.createNode(it, undefined, ctx));
101
+ }
102
+ }
103
+ return seq;
104
+ }
105
+ }
106
+ function asItemIndex(key) {
107
+ let idx = identity.isScalar(key) ? key.value : key;
108
+ if (idx && typeof idx === 'string')
109
+ idx = Number(idx);
110
+ return typeof idx === 'number' && Number.isInteger(idx) && idx >= 0
111
+ ? idx
112
+ : null;
113
+ }
114
+
115
+ exports.YAMLSeq = YAMLSeq;
@@ -0,0 +1,4 @@
1
+ import type { Pair } from './Pair.js';
2
+ import { ToJSContext } from './toJS.js';
3
+ import type { MapLike } from './YAMLMap.js';
4
+ export declare function addPairToJSMap(ctx: ToJSContext | undefined, map: MapLike, { key, value }: Pair): MapLike;
@@ -0,0 +1,106 @@
1
+ 'use strict';
2
+
3
+ var log = require('../log.js');
4
+ var stringify = require('../stringify/stringify.js');
5
+ var identity = require('./identity.js');
6
+ var Scalar = require('./Scalar.js');
7
+ var toJS = require('./toJS.js');
8
+
9
+ const MERGE_KEY = '<<';
10
+ function addPairToJSMap(ctx, map, { key, value }) {
11
+ if (ctx?.doc.schema.merge && isMergeKey(key)) {
12
+ value = identity.isAlias(value) ? value.resolve(ctx.doc) : value;
13
+ if (identity.isSeq(value))
14
+ for (const it of value.items)
15
+ mergeToJSMap(ctx, map, it);
16
+ else if (Array.isArray(value))
17
+ for (const it of value)
18
+ mergeToJSMap(ctx, map, it);
19
+ else
20
+ mergeToJSMap(ctx, map, value);
21
+ }
22
+ else {
23
+ const jsKey = toJS.toJS(key, '', ctx);
24
+ if (map instanceof Map) {
25
+ map.set(jsKey, toJS.toJS(value, jsKey, ctx));
26
+ }
27
+ else if (map instanceof Set) {
28
+ map.add(jsKey);
29
+ }
30
+ else {
31
+ const stringKey = stringifyKey(key, jsKey, ctx);
32
+ const jsValue = toJS.toJS(value, stringKey, ctx);
33
+ if (stringKey in map)
34
+ Object.defineProperty(map, stringKey, {
35
+ value: jsValue,
36
+ writable: true,
37
+ enumerable: true,
38
+ configurable: true
39
+ });
40
+ else
41
+ map[stringKey] = jsValue;
42
+ }
43
+ }
44
+ return map;
45
+ }
46
+ const isMergeKey = (key) => key === MERGE_KEY ||
47
+ (identity.isScalar(key) &&
48
+ key.value === MERGE_KEY &&
49
+ (!key.type || key.type === Scalar.Scalar.PLAIN));
50
+ // If the value associated with a merge key is a single mapping node, each of
51
+ // its key/value pairs is inserted into the current mapping, unless the key
52
+ // already exists in it. If the value associated with the merge key is a
53
+ // sequence, then this sequence is expected to contain mapping nodes and each
54
+ // of these nodes is merged in turn according to its order in the sequence.
55
+ // Keys in mapping nodes earlier in the sequence override keys specified in
56
+ // later mapping nodes. -- http://yaml.org/type/merge.html
57
+ function mergeToJSMap(ctx, map, value) {
58
+ const source = ctx && identity.isAlias(value) ? value.resolve(ctx.doc) : value;
59
+ if (!identity.isMap(source))
60
+ throw new Error('Merge sources must be maps or map aliases');
61
+ const srcMap = source.toJSON(null, ctx, Map);
62
+ for (const [key, value] of srcMap) {
63
+ if (map instanceof Map) {
64
+ if (!map.has(key))
65
+ map.set(key, value);
66
+ }
67
+ else if (map instanceof Set) {
68
+ map.add(key);
69
+ }
70
+ else if (!Object.prototype.hasOwnProperty.call(map, key)) {
71
+ Object.defineProperty(map, key, {
72
+ value,
73
+ writable: true,
74
+ enumerable: true,
75
+ configurable: true
76
+ });
77
+ }
78
+ }
79
+ return map;
80
+ }
81
+ function stringifyKey(key, jsKey, ctx) {
82
+ if (jsKey === null)
83
+ return '';
84
+ if (typeof jsKey !== 'object')
85
+ return String(jsKey);
86
+ if (identity.isNode(key) && ctx?.doc) {
87
+ const strCtx = stringify.createStringifyContext(ctx.doc, {});
88
+ strCtx.anchors = new Set();
89
+ for (const node of ctx.anchors.keys())
90
+ strCtx.anchors.add(node.anchor);
91
+ strCtx.inFlow = true;
92
+ strCtx.inStringifyKey = true;
93
+ const strKey = key.toString(strCtx);
94
+ if (!ctx.mapKeyWarned) {
95
+ let jsonStr = JSON.stringify(strKey);
96
+ if (jsonStr.length > 40)
97
+ jsonStr = jsonStr.substring(0, 36) + '..."';
98
+ log.warn(ctx.doc.options.logLevel, `Keys with collection values will be stringified due to JS Object restrictions: ${jsonStr}. Set mapAsMap: true to use object keys.`);
99
+ ctx.mapKeyWarned = true;
100
+ }
101
+ return strKey;
102
+ }
103
+ return JSON.stringify(jsKey);
104
+ }
105
+
106
+ exports.addPairToJSMap = addPairToJSMap;
@@ -0,0 +1,23 @@
1
+ import type { Document } from '../doc/Document.js';
2
+ import type { Alias } from './Alias.js';
3
+ import type { Node } from './Node.js';
4
+ import type { Pair } from './Pair.js';
5
+ import type { Scalar } from './Scalar.js';
6
+ import type { YAMLMap } from './YAMLMap.js';
7
+ import type { YAMLSeq } from './YAMLSeq.js';
8
+ export declare const ALIAS: unique symbol;
9
+ export declare const DOC: unique symbol;
10
+ export declare const MAP: unique symbol;
11
+ export declare const PAIR: unique symbol;
12
+ export declare const SCALAR: unique symbol;
13
+ export declare const SEQ: unique symbol;
14
+ export declare const NODE_TYPE: unique symbol;
15
+ export declare const isAlias: (node: any) => node is Alias;
16
+ export declare const isDocument: <T extends Node = Node>(node: any) => node is Document<T>;
17
+ export declare const isMap: <K = unknown, V = unknown>(node: any) => node is YAMLMap<K, V>;
18
+ export declare const isPair: <K = unknown, V = unknown>(node: any) => node is Pair<K, V>;
19
+ export declare const isScalar: <T = unknown>(node: any) => node is Scalar<T>;
20
+ export declare const isSeq: <T = unknown>(node: any) => node is YAMLSeq<T>;
21
+ export declare function isCollection<K = unknown, V = unknown>(node: any): node is YAMLMap<K, V> | YAMLSeq<V>;
22
+ export declare function isNode<T = unknown>(node: any): node is Node<T>;
23
+ export declare const hasAnchor: <K = unknown, V = unknown>(node: unknown) => node is Scalar<V> | YAMLMap<K, V> | YAMLSeq<V>;
@@ -0,0 +1,53 @@
1
+ 'use strict';
2
+
3
+ const ALIAS = Symbol.for('yaml.alias');
4
+ const DOC = Symbol.for('yaml.document');
5
+ const MAP = Symbol.for('yaml.map');
6
+ const PAIR = Symbol.for('yaml.pair');
7
+ const SCALAR = Symbol.for('yaml.scalar');
8
+ const SEQ = Symbol.for('yaml.seq');
9
+ const NODE_TYPE = Symbol.for('yaml.node.type');
10
+ const isAlias = (node) => !!node && typeof node === 'object' && node[NODE_TYPE] === ALIAS;
11
+ const isDocument = (node) => !!node && typeof node === 'object' && node[NODE_TYPE] === DOC;
12
+ const isMap = (node) => !!node && typeof node === 'object' && node[NODE_TYPE] === MAP;
13
+ const isPair = (node) => !!node && typeof node === 'object' && node[NODE_TYPE] === PAIR;
14
+ const isScalar = (node) => !!node && typeof node === 'object' && node[NODE_TYPE] === SCALAR;
15
+ const isSeq = (node) => !!node && typeof node === 'object' && node[NODE_TYPE] === SEQ;
16
+ function isCollection(node) {
17
+ if (node && typeof node === 'object')
18
+ switch (node[NODE_TYPE]) {
19
+ case MAP:
20
+ case SEQ:
21
+ return true;
22
+ }
23
+ return false;
24
+ }
25
+ function isNode(node) {
26
+ if (node && typeof node === 'object')
27
+ switch (node[NODE_TYPE]) {
28
+ case ALIAS:
29
+ case MAP:
30
+ case SCALAR:
31
+ case SEQ:
32
+ return true;
33
+ }
34
+ return false;
35
+ }
36
+ const hasAnchor = (node) => (isScalar(node) || isCollection(node)) && !!node.anchor;
37
+
38
+ exports.ALIAS = ALIAS;
39
+ exports.DOC = DOC;
40
+ exports.MAP = MAP;
41
+ exports.NODE_TYPE = NODE_TYPE;
42
+ exports.PAIR = PAIR;
43
+ exports.SCALAR = SCALAR;
44
+ exports.SEQ = SEQ;
45
+ exports.hasAnchor = hasAnchor;
46
+ exports.isAlias = isAlias;
47
+ exports.isCollection = isCollection;
48
+ exports.isDocument = isDocument;
49
+ exports.isMap = isMap;
50
+ exports.isNode = isNode;
51
+ exports.isPair = isPair;
52
+ exports.isScalar = isScalar;
53
+ exports.isSeq = isSeq;
@@ -0,0 +1,27 @@
1
+ import type { Document } from '../doc/Document.js';
2
+ import type { Node } from './Node.js';
3
+ export interface AnchorData {
4
+ aliasCount: number;
5
+ count: number;
6
+ res: unknown;
7
+ }
8
+ export interface ToJSContext {
9
+ anchors: Map<Node, AnchorData>;
10
+ doc: Document<Node, boolean>;
11
+ keep: boolean;
12
+ mapAsMap: boolean;
13
+ mapKeyWarned: boolean;
14
+ maxAliasCount: number;
15
+ onCreate?: (res: unknown) => void;
16
+ }
17
+ /**
18
+ * Recursively convert any node or its contents to native JavaScript
19
+ *
20
+ * @param value - The input value
21
+ * @param arg - If `value` defines a `toJSON()` method, use this
22
+ * as its first argument
23
+ * @param ctx - Conversion context, originally set in Document#toJS(). If
24
+ * `{ keep: true }` is not set, output should be suitable for JSON
25
+ * stringification.
26
+ */
27
+ export declare function toJS(value: any, arg: string | null, ctx?: ToJSContext): any;
@@ -0,0 +1,39 @@
1
+ 'use strict';
2
+
3
+ var identity = require('./identity.js');
4
+
5
+ /**
6
+ * Recursively convert any node or its contents to native JavaScript
7
+ *
8
+ * @param value - The input value
9
+ * @param arg - If `value` defines a `toJSON()` method, use this
10
+ * as its first argument
11
+ * @param ctx - Conversion context, originally set in Document#toJS(). If
12
+ * `{ keep: true }` is not set, output should be suitable for JSON
13
+ * stringification.
14
+ */
15
+ function toJS(value, arg, ctx) {
16
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-return
17
+ if (Array.isArray(value))
18
+ return value.map((v, i) => toJS(v, String(i), ctx));
19
+ if (value && typeof value.toJSON === 'function') {
20
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-call
21
+ if (!ctx || !identity.hasAnchor(value))
22
+ return value.toJSON(arg, ctx);
23
+ const data = { aliasCount: 0, count: 1, res: undefined };
24
+ ctx.anchors.set(value, data);
25
+ ctx.onCreate = res => {
26
+ data.res = res;
27
+ delete ctx.onCreate;
28
+ };
29
+ const res = value.toJSON(arg, ctx);
30
+ if (ctx.onCreate)
31
+ ctx.onCreate(res);
32
+ return res;
33
+ }
34
+ if (typeof value === 'bigint' && !ctx?.keep)
35
+ return Number(value);
36
+ return value;
37
+ }
38
+
39
+ exports.toJS = toJS;