zudoku 0.0.0-eb4182d → 0.0.0-eeace45

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 (936) hide show
  1. package/README.md +121 -0
  2. package/cli.js +2 -2
  3. package/client.d.ts +7 -0
  4. package/dist/app/demo.js +1 -3
  5. package/dist/app/demo.js.map +1 -1
  6. package/dist/app/entry.client.d.ts +1 -0
  7. package/dist/app/entry.client.js +16 -3
  8. package/dist/app/entry.client.js.map +1 -1
  9. package/dist/app/entry.server.d.ts +1 -0
  10. package/dist/app/entry.server.js +11 -8
  11. package/dist/app/entry.server.js.map +1 -1
  12. package/dist/app/main.d.ts +3 -2
  13. package/dist/app/main.js +16 -32
  14. package/dist/app/main.js.map +1 -1
  15. package/dist/app/sentry.d.ts +3 -0
  16. package/dist/app/sentry.js +19 -0
  17. package/dist/app/sentry.js.map +1 -0
  18. package/dist/app/standalone.js +1 -3
  19. package/dist/app/standalone.js.map +1 -1
  20. package/dist/app/tailwind.d.ts +2 -1
  21. package/dist/app/tailwind.js +64 -52
  22. package/dist/app/tailwind.js.map +1 -1
  23. package/dist/cli/cli.js +1 -4
  24. package/dist/cli/cli.js.map +1 -1
  25. package/dist/cli/cmds/build.js +1 -0
  26. package/dist/cli/cmds/build.js.map +1 -1
  27. package/dist/cli/cmds/dev.js +5 -0
  28. package/dist/cli/cmds/dev.js.map +1 -1
  29. package/dist/cli/common/logger.js +9 -0
  30. package/dist/cli/common/logger.js.map +1 -1
  31. package/dist/cli/common/machine-id/lib.js.map +1 -1
  32. package/dist/cli/common/outdated.js +2 -1
  33. package/dist/cli/common/outdated.js.map +1 -1
  34. package/dist/cli/common/utils/box.js.map +1 -1
  35. package/dist/cli/dev/handler.d.ts +1 -0
  36. package/dist/cli/dev/handler.js +3 -3
  37. package/dist/cli/dev/handler.js.map +1 -1
  38. package/dist/codegen.d.ts +3 -0
  39. package/dist/codegen.js +45 -0
  40. package/dist/codegen.js.map +1 -0
  41. package/dist/config/common.d.ts +8 -0
  42. package/dist/config/common.js +2 -0
  43. package/dist/config/common.js.map +1 -0
  44. package/dist/config/config.d.ts +3 -2
  45. package/dist/config/loader.d.ts +20 -0
  46. package/dist/config/loader.js +154 -0
  47. package/dist/config/loader.js.map +1 -0
  48. package/dist/config/validators/InputSidebarSchema.d.ts +35 -19
  49. package/dist/config/validators/InputSidebarSchema.js +7 -28
  50. package/dist/config/validators/InputSidebarSchema.js.map +1 -1
  51. package/dist/config/validators/SidebarSchema.d.ts +24 -1
  52. package/dist/config/validators/SidebarSchema.js +80 -44
  53. package/dist/config/validators/SidebarSchema.js.map +1 -1
  54. package/dist/config/validators/common.d.ts +4945 -0
  55. package/dist/config/validators/common.js +280 -0
  56. package/dist/config/validators/common.js.map +1 -0
  57. package/dist/config/validators/icon-types.d.ts +1 -0
  58. package/dist/config/validators/icon-types.js +2 -0
  59. package/dist/config/validators/icon-types.js.map +1 -0
  60. package/dist/config/validators/validate.d.ts +888 -453
  61. package/dist/config/validators/validate.js +14 -213
  62. package/dist/config/validators/validate.js.map +1 -1
  63. package/dist/index.d.ts +5 -1
  64. package/dist/index.js +1 -1
  65. package/dist/index.js.map +1 -1
  66. package/dist/lib/authentication/AuthenticationPlugin.d.ts +4 -2
  67. package/dist/lib/authentication/AuthenticationPlugin.js +3 -0
  68. package/dist/lib/authentication/AuthenticationPlugin.js.map +1 -1
  69. package/dist/lib/authentication/authentication.d.ts +3 -3
  70. package/dist/lib/authentication/components/CallbackHandler.js +21 -31
  71. package/dist/lib/authentication/components/CallbackHandler.js.map +1 -1
  72. package/dist/lib/authentication/components/SignIn.js +1 -1
  73. package/dist/lib/authentication/components/SignIn.js.map +1 -1
  74. package/dist/lib/authentication/components/SignOut.js +1 -1
  75. package/dist/lib/authentication/components/SignOut.js.map +1 -1
  76. package/dist/lib/authentication/hook.d.ts +5 -4
  77. package/dist/lib/authentication/hook.js +1 -3
  78. package/dist/lib/authentication/hook.js.map +1 -1
  79. package/dist/lib/authentication/providers/auth0.js +12 -11
  80. package/dist/lib/authentication/providers/auth0.js.map +1 -1
  81. package/dist/lib/authentication/providers/openid.d.ts +7 -1
  82. package/dist/lib/authentication/providers/openid.js +18 -27
  83. package/dist/lib/authentication/providers/openid.js.map +1 -1
  84. package/dist/lib/authentication/state.d.ts +25 -4
  85. package/dist/lib/authentication/state.js +28 -3
  86. package/dist/lib/authentication/state.js.map +1 -1
  87. package/dist/lib/authentication/use-broadcast/shared.d.ts +48 -0
  88. package/dist/lib/authentication/use-broadcast/shared.js +243 -0
  89. package/dist/lib/authentication/use-broadcast/shared.js.map +1 -0
  90. package/dist/lib/authentication/use-broadcast/useBroadcast.d.ts +24 -0
  91. package/dist/lib/authentication/use-broadcast/useBroadcast.js +106 -0
  92. package/dist/lib/authentication/use-broadcast/useBroadcast.js.map +1 -0
  93. package/dist/lib/components/AnchorLink.d.ts +1 -1
  94. package/dist/lib/components/AnchorLink.js +1 -1
  95. package/dist/lib/components/AnchorLink.js.map +1 -1
  96. package/dist/lib/components/Banner.js +7 -1
  97. package/dist/lib/components/Banner.js.map +1 -1
  98. package/dist/lib/components/Bootstrap.d.ts +4 -3
  99. package/dist/lib/components/Bootstrap.js +12 -6
  100. package/dist/lib/components/Bootstrap.js.map +1 -1
  101. package/dist/lib/components/ClientOnly.d.ts +4 -2
  102. package/dist/lib/components/ClientOnly.js +1 -1
  103. package/dist/lib/components/ClientOnly.js.map +1 -1
  104. package/dist/lib/components/DeveloperHint.js +2 -1
  105. package/dist/lib/components/DeveloperHint.js.map +1 -1
  106. package/dist/lib/components/ErrorPage.js +1 -2
  107. package/dist/lib/components/ErrorPage.js.map +1 -1
  108. package/dist/lib/components/Header.js +21 -10
  109. package/dist/lib/components/Header.js.map +1 -1
  110. package/dist/lib/components/Heading.d.ts +4 -4
  111. package/dist/lib/components/Heading.js +1 -1
  112. package/dist/lib/components/Heading.js.map +1 -1
  113. package/dist/lib/components/Layout.js +14 -5
  114. package/dist/lib/components/Layout.js.map +1 -1
  115. package/dist/lib/components/Markdown.js +1 -1
  116. package/dist/lib/components/Markdown.js.map +1 -1
  117. package/dist/lib/components/MobileTopNavigation.js +9 -6
  118. package/dist/lib/components/MobileTopNavigation.js.map +1 -1
  119. package/dist/lib/components/NotFoundPage.js +1 -1
  120. package/dist/lib/components/NotFoundPage.js.map +1 -1
  121. package/dist/lib/components/ReactMarkdown.d.ts +29 -0
  122. package/dist/lib/components/ReactMarkdown.js +182 -0
  123. package/dist/lib/components/ReactMarkdown.js.map +1 -0
  124. package/dist/lib/components/Search.d.ts +3 -1
  125. package/dist/lib/components/Search.js +3 -3
  126. package/dist/lib/components/Search.js.map +1 -1
  127. package/dist/lib/components/SlotletProvider.d.ts +11 -3
  128. package/dist/lib/components/SlotletProvider.js +4 -2
  129. package/dist/lib/components/SlotletProvider.js.map +1 -1
  130. package/dist/lib/components/SyntaxHighlight.js +19 -16
  131. package/dist/lib/components/SyntaxHighlight.js.map +1 -1
  132. package/dist/lib/components/ThemeSwitch.d.ts +1 -0
  133. package/dist/lib/components/ThemeSwitch.js +13 -0
  134. package/dist/lib/components/ThemeSwitch.js.map +1 -0
  135. package/dist/lib/components/TopNavigation.d.ts +5 -0
  136. package/dist/lib/components/TopNavigation.js +44 -5
  137. package/dist/lib/components/TopNavigation.js.map +1 -1
  138. package/dist/lib/components/{DevPortal.d.ts → Zudoku.d.ts} +3 -3
  139. package/dist/lib/components/{DevPortal.js → Zudoku.js} +14 -15
  140. package/dist/lib/components/Zudoku.js.map +1 -0
  141. package/dist/lib/components/context/ZudokuContext.d.ts +10 -14
  142. package/dist/lib/components/context/ZudokuContext.js +27 -26
  143. package/dist/lib/components/context/ZudokuContext.js.map +1 -1
  144. package/dist/lib/components/context/ZudokuProvider.d.ts +2 -2
  145. package/dist/lib/components/context/ZudokuProvider.js.map +1 -1
  146. package/dist/lib/components/index.d.ts +38 -16
  147. package/dist/lib/components/index.js +16 -6
  148. package/dist/lib/components/index.js.map +1 -1
  149. package/dist/lib/components/navigation/Sidebar.d.ts +3 -1
  150. package/dist/lib/components/navigation/Sidebar.js +4 -4
  151. package/dist/lib/components/navigation/Sidebar.js.map +1 -1
  152. package/dist/lib/components/navigation/SidebarBadge.d.ts +0 -9
  153. package/dist/lib/components/navigation/SidebarBadge.js +0 -9
  154. package/dist/lib/components/navigation/SidebarBadge.js.map +1 -1
  155. package/dist/lib/components/navigation/SidebarCategory.d.ts +2 -2
  156. package/dist/lib/components/navigation/SidebarCategory.js +18 -10
  157. package/dist/lib/components/navigation/SidebarCategory.js.map +1 -1
  158. package/dist/lib/components/navigation/SidebarItem.d.ts +2 -4
  159. package/dist/lib/components/navigation/SidebarItem.js +12 -12
  160. package/dist/lib/components/navigation/SidebarItem.js.map +1 -1
  161. package/dist/lib/components/navigation/SidebarWrapper.js +1 -1
  162. package/dist/lib/components/navigation/SidebarWrapper.js.map +1 -1
  163. package/dist/lib/components/navigation/utils.js +11 -15
  164. package/dist/lib/components/navigation/utils.js.map +1 -1
  165. package/dist/lib/core/{DevPortalContext.d.ts → ZudokuContext.d.ts} +7 -14
  166. package/dist/lib/core/{DevPortalContext.js → ZudokuContext.js} +2 -7
  167. package/dist/lib/core/ZudokuContext.js.map +1 -0
  168. package/dist/lib/core/plugins.d.ts +18 -13
  169. package/dist/lib/core/plugins.js.map +1 -1
  170. package/dist/lib/errors/ErrorAlert.d.ts +1 -1
  171. package/dist/lib/errors/ErrorAlert.js +8 -3
  172. package/dist/lib/errors/ErrorAlert.js.map +1 -1
  173. package/dist/lib/errors/RouterError.js +1 -1
  174. package/dist/lib/errors/RouterError.js.map +1 -1
  175. package/dist/lib/oas/graphql/index.js +10 -11
  176. package/dist/lib/oas/graphql/index.js.map +1 -1
  177. package/dist/lib/oas/parser/upgrade/index.d.ts +2 -2
  178. package/dist/lib/oas/parser/upgrade/index.js +2 -17
  179. package/dist/lib/oas/parser/upgrade/index.js.map +1 -1
  180. package/dist/lib/plugins/api-catalog/Catalog.d.ts +2 -0
  181. package/dist/lib/plugins/api-catalog/Catalog.js +36 -0
  182. package/dist/lib/plugins/api-catalog/Catalog.js.map +1 -0
  183. package/dist/lib/plugins/api-catalog/index.d.ts +30 -0
  184. package/dist/lib/plugins/api-catalog/index.js +15 -0
  185. package/dist/lib/plugins/api-catalog/index.js.map +1 -0
  186. package/dist/lib/plugins/api-keys/CreateApiKey.js +2 -2
  187. package/dist/lib/plugins/api-keys/CreateApiKey.js.map +1 -1
  188. package/dist/lib/plugins/api-keys/ProtectedRoute.js +1 -1
  189. package/dist/lib/plugins/api-keys/ProtectedRoute.js.map +1 -1
  190. package/dist/lib/plugins/api-keys/SettingsApiKeys.js +1 -1
  191. package/dist/lib/plugins/api-keys/SettingsApiKeys.js.map +1 -1
  192. package/dist/lib/plugins/api-keys/index.d.ts +9 -9
  193. package/dist/lib/plugins/api-keys/index.js +3 -0
  194. package/dist/lib/plugins/api-keys/index.js.map +1 -1
  195. package/dist/lib/plugins/custom-pages/CustomPage.d.ts +2 -0
  196. package/dist/lib/plugins/custom-pages/CustomPage.js +11 -0
  197. package/dist/lib/plugins/custom-pages/CustomPage.js.map +1 -0
  198. package/dist/lib/plugins/custom-pages/index.d.ts +10 -0
  199. package/dist/lib/plugins/custom-pages/index.js +11 -0
  200. package/dist/lib/plugins/custom-pages/index.js.map +1 -0
  201. package/dist/lib/plugins/markdown/MdxPage.d.ts +9 -1
  202. package/dist/lib/plugins/markdown/MdxPage.js +16 -3
  203. package/dist/lib/plugins/markdown/MdxPage.js.map +1 -1
  204. package/dist/lib/plugins/markdown/index.d.ts +8 -7
  205. package/dist/lib/plugins/markdown/index.js +31 -3
  206. package/dist/lib/plugins/markdown/index.js.map +1 -1
  207. package/dist/lib/plugins/markdown/resolver.d.ts +38 -0
  208. package/dist/lib/plugins/markdown/resolver.js +75 -0
  209. package/dist/lib/plugins/markdown/resolver.js.map +1 -0
  210. package/dist/lib/plugins/openapi/CollapsibleCode.d.ts +5 -0
  211. package/dist/lib/plugins/openapi/CollapsibleCode.js +24 -0
  212. package/dist/lib/plugins/openapi/CollapsibleCode.js.map +1 -0
  213. package/dist/lib/plugins/openapi/ColorizedParam.js +13 -9
  214. package/dist/lib/plugins/openapi/ColorizedParam.js.map +1 -1
  215. package/dist/lib/plugins/openapi/Endpoint.d.ts +1 -1
  216. package/dist/lib/plugins/openapi/Endpoint.js +5 -9
  217. package/dist/lib/plugins/openapi/Endpoint.js.map +1 -1
  218. package/dist/lib/plugins/openapi/OperationList.d.ts +2 -2
  219. package/dist/lib/plugins/openapi/OperationList.js +43 -23
  220. package/dist/lib/plugins/openapi/OperationList.js.map +1 -1
  221. package/dist/lib/plugins/openapi/OperationListItem.d.ts +2 -1
  222. package/dist/lib/plugins/openapi/OperationListItem.js +14 -4
  223. package/dist/lib/plugins/openapi/OperationListItem.js.map +1 -1
  224. package/dist/lib/plugins/openapi/ParameterListItem.js +6 -1
  225. package/dist/lib/plugins/openapi/ParameterListItem.js.map +1 -1
  226. package/dist/lib/plugins/openapi/RequestBodySidecarBox.js +7 -3
  227. package/dist/lib/plugins/openapi/RequestBodySidecarBox.js.map +1 -1
  228. package/dist/lib/plugins/openapi/ResponsesSidecarBox.js +9 -2
  229. package/dist/lib/plugins/openapi/ResponsesSidecarBox.js.map +1 -1
  230. package/dist/lib/plugins/openapi/Route.d.ts +7 -5
  231. package/dist/lib/plugins/openapi/Route.js +23 -5
  232. package/dist/lib/plugins/openapi/Route.js.map +1 -1
  233. package/dist/lib/plugins/openapi/Sidecar.d.ts +1 -1
  234. package/dist/lib/plugins/openapi/Sidecar.js +38 -46
  235. package/dist/lib/plugins/openapi/Sidecar.js.map +1 -1
  236. package/dist/lib/plugins/openapi/client/GraphQLClient.d.ts +8 -0
  237. package/dist/lib/plugins/openapi/client/GraphQLClient.js +114 -0
  238. package/dist/lib/plugins/openapi/client/GraphQLClient.js.map +1 -0
  239. package/dist/lib/plugins/openapi/client/GraphQLContext.d.ts +7 -0
  240. package/dist/lib/plugins/openapi/client/GraphQLContext.js +5 -0
  241. package/dist/lib/plugins/openapi/client/GraphQLContext.js.map +1 -0
  242. package/dist/lib/plugins/openapi/client/createServer.d.ts +1 -0
  243. package/dist/lib/plugins/openapi/client/useCreateQuery.d.ts +5 -0
  244. package/dist/lib/plugins/openapi/client/useCreateQuery.js +24 -0
  245. package/dist/lib/plugins/openapi/client/useCreateQuery.js.map +1 -0
  246. package/dist/lib/plugins/openapi/client/worker.d.ts +4 -1
  247. package/dist/lib/plugins/openapi/client/worker.js +23 -14
  248. package/dist/lib/plugins/openapi/client/worker.js.map +1 -1
  249. package/dist/lib/plugins/openapi/context.d.ts +3 -3
  250. package/dist/lib/plugins/openapi/graphql/fragment-masking.d.ts +3 -3
  251. package/dist/lib/plugins/openapi/graphql/fragment-masking.js +3 -4
  252. package/dist/lib/plugins/openapi/graphql/fragment-masking.js.map +1 -1
  253. package/dist/lib/plugins/openapi/graphql/gql.d.ts +5 -51
  254. package/dist/lib/plugins/openapi/graphql/gql.js +5 -3
  255. package/dist/lib/plugins/openapi/graphql/gql.js.map +1 -1
  256. package/dist/lib/plugins/openapi/graphql/graphql.d.ts +34 -8
  257. package/dist/lib/plugins/openapi/graphql/graphql.js +195 -662
  258. package/dist/lib/plugins/openapi/graphql/graphql.js.map +1 -1
  259. package/dist/lib/plugins/openapi/index.d.ts +2 -2
  260. package/dist/lib/plugins/openapi/index.js +56 -68
  261. package/dist/lib/plugins/openapi/index.js.map +1 -1
  262. package/dist/lib/plugins/openapi/interfaces.d.ts +20 -1
  263. package/dist/lib/plugins/openapi/playground/PathParams.js +1 -1
  264. package/dist/lib/plugins/openapi/playground/PathParams.js.map +1 -1
  265. package/dist/lib/plugins/openapi/playground/Playground.js +3 -2
  266. package/dist/lib/plugins/openapi/playground/Playground.js.map +1 -1
  267. package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js +1 -1
  268. package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js.map +1 -1
  269. package/dist/lib/plugins/openapi/playground/ResponseTab.js +1 -1
  270. package/dist/lib/plugins/openapi/playground/ResponseTab.js.map +1 -1
  271. package/dist/lib/plugins/openapi/post-processors/removeExtensions.d.ts +6 -0
  272. package/dist/lib/plugins/openapi/post-processors/removeExtensions.js +14 -0
  273. package/dist/lib/plugins/openapi/post-processors/removeExtensions.js.map +1 -0
  274. package/dist/lib/plugins/openapi/post-processors/removeExtensions.test.d.ts +1 -0
  275. package/dist/lib/plugins/openapi/post-processors/removeExtensions.test.js +125 -0
  276. package/dist/lib/plugins/openapi/post-processors/removeExtensions.test.js.map +1 -0
  277. package/dist/lib/plugins/openapi/post-processors/removePaths.d.ts +11 -0
  278. package/dist/lib/plugins/openapi/post-processors/removePaths.js +33 -0
  279. package/dist/lib/plugins/openapi/post-processors/removePaths.js.map +1 -0
  280. package/dist/lib/plugins/openapi/post-processors/removePaths.test.d.ts +1 -0
  281. package/dist/lib/plugins/openapi/post-processors/removePaths.test.js +104 -0
  282. package/dist/lib/plugins/openapi/post-processors/removePaths.test.js.map +1 -0
  283. package/dist/lib/plugins/openapi/post-processors/traverse.d.ts +1 -0
  284. package/dist/lib/plugins/openapi/post-processors/traverse.js +2 -0
  285. package/dist/lib/plugins/openapi/post-processors/traverse.js.map +1 -0
  286. package/dist/lib/plugins/openapi/schema/SchemaView.js +2 -1
  287. package/dist/lib/plugins/openapi/schema/SchemaView.js.map +1 -1
  288. package/dist/lib/plugins/openapi/util/generateSchemaExample.d.ts +0 -1
  289. package/dist/lib/plugins/openapi/util/generateSchemaExample.js +25 -36
  290. package/dist/lib/plugins/openapi/util/generateSchemaExample.js.map +1 -1
  291. package/dist/lib/plugins/openapi/util/methodToColor.d.ts +20 -0
  292. package/dist/lib/plugins/openapi/util/methodToColor.js +24 -0
  293. package/dist/lib/plugins/openapi/util/methodToColor.js.map +1 -0
  294. package/dist/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.d.ts +1 -0
  295. package/dist/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.js +27 -0
  296. package/dist/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.js.map +1 -0
  297. package/dist/lib/plugins/openapi-worker.d.ts +1 -1
  298. package/dist/lib/plugins/openapi-worker.js +7 -1
  299. package/dist/lib/plugins/openapi-worker.js.map +1 -1
  300. package/dist/lib/plugins/redirect/index.d.ts +4 -7
  301. package/dist/lib/plugins/redirect/index.js +2 -2
  302. package/dist/lib/plugins/redirect/index.js.map +1 -1
  303. package/dist/lib/plugins/search-inkeep/index.d.ts +24 -5
  304. package/dist/lib/plugins/search-inkeep/index.js +41 -5
  305. package/dist/lib/plugins/search-inkeep/index.js.map +1 -1
  306. package/dist/lib/plugins/search-inkeep/inkeep.d.ts +3 -4
  307. package/dist/lib/plugins/search-inkeep/inkeep.js.map +1 -1
  308. package/dist/lib/ui/Accordion.d.ts +7 -0
  309. package/dist/lib/ui/Accordion.js +14 -0
  310. package/dist/lib/ui/Accordion.js.map +1 -0
  311. package/dist/lib/ui/ActionButton.d.ts +4 -0
  312. package/dist/lib/ui/ActionButton.js +10 -0
  313. package/dist/lib/ui/ActionButton.js.map +1 -0
  314. package/dist/lib/ui/Alert.d.ts +8 -0
  315. package/dist/lib/ui/Alert.js +23 -0
  316. package/dist/lib/ui/Alert.js.map +1 -0
  317. package/dist/lib/ui/AlertDialog.d.ts +20 -0
  318. package/dist/lib/ui/AlertDialog.js +27 -0
  319. package/dist/lib/ui/AlertDialog.js.map +1 -0
  320. package/dist/lib/ui/AspectRatio.d.ts +3 -0
  321. package/dist/lib/ui/AspectRatio.js +4 -0
  322. package/dist/lib/ui/AspectRatio.js.map +1 -0
  323. package/dist/lib/ui/Badge.d.ts +9 -0
  324. package/dist/lib/ui/Badge.js +21 -0
  325. package/dist/lib/ui/Badge.js.map +1 -0
  326. package/dist/lib/ui/Breadcrumb.d.ts +19 -0
  327. package/dist/lib/ui/Breadcrumb.js +24 -0
  328. package/dist/lib/ui/Breadcrumb.js.map +1 -0
  329. package/dist/lib/ui/Button.d.ts +2 -3
  330. package/dist/lib/ui/Button.js +1 -1
  331. package/dist/lib/ui/Button.js.map +1 -1
  332. package/dist/lib/ui/Callout.d.ts +36 -35
  333. package/dist/lib/ui/Callout.js.map +1 -1
  334. package/dist/lib/ui/Carousel.d.ts +18 -0
  335. package/dist/lib/ui/Carousel.js +99 -0
  336. package/dist/lib/ui/Carousel.js.map +1 -0
  337. package/dist/lib/ui/Checkbox.d.ts +4 -0
  338. package/dist/lib/ui/Checkbox.js +9 -0
  339. package/dist/lib/ui/Checkbox.js.map +1 -0
  340. package/dist/lib/ui/Collapsible.d.ts +5 -0
  341. package/dist/lib/ui/Collapsible.js +6 -0
  342. package/dist/lib/ui/Collapsible.js.map +1 -0
  343. package/dist/lib/ui/Command.d.ts +80 -0
  344. package/dist/lib/ui/Command.js +31 -0
  345. package/dist/lib/ui/Command.js.map +1 -0
  346. package/dist/lib/{components → ui}/Dialog.js +2 -2
  347. package/dist/lib/ui/Dialog.js.map +1 -0
  348. package/dist/lib/ui/Drawer.d.ts +8 -10
  349. package/dist/lib/ui/Drawer.js.map +1 -1
  350. package/dist/lib/ui/Form.d.ts +23 -0
  351. package/dist/lib/ui/Form.js +63 -0
  352. package/dist/lib/ui/Form.js.map +1 -0
  353. package/dist/lib/ui/HoverCard.d.ts +6 -0
  354. package/dist/lib/ui/HoverCard.js +10 -0
  355. package/dist/lib/ui/HoverCard.js.map +1 -0
  356. package/dist/lib/ui/Label.d.ts +5 -0
  357. package/dist/lib/ui/Label.js +10 -0
  358. package/dist/lib/ui/Label.js.map +1 -0
  359. package/dist/lib/ui/Pagination.d.ts +28 -0
  360. package/dist/lib/ui/Pagination.js +24 -0
  361. package/dist/lib/ui/Pagination.js.map +1 -0
  362. package/dist/lib/ui/Popover.d.ts +6 -0
  363. package/dist/lib/ui/Popover.js +10 -0
  364. package/dist/lib/ui/Popover.js.map +1 -0
  365. package/dist/lib/ui/Progress.d.ts +4 -0
  366. package/dist/lib/ui/Progress.js +8 -0
  367. package/dist/lib/ui/Progress.js.map +1 -0
  368. package/dist/lib/ui/RadioGroup.d.ts +5 -0
  369. package/dist/lib/ui/RadioGroup.js +15 -0
  370. package/dist/lib/ui/RadioGroup.js.map +1 -0
  371. package/dist/lib/ui/ScrollArea.d.ts +5 -0
  372. package/dist/lib/ui/ScrollArea.js +12 -0
  373. package/dist/lib/ui/ScrollArea.js.map +1 -0
  374. package/dist/lib/ui/Select.js.map +1 -0
  375. package/dist/lib/ui/Skeleton.d.ts +2 -0
  376. package/dist/lib/ui/Skeleton.js +7 -0
  377. package/dist/lib/ui/Skeleton.js.map +1 -0
  378. package/dist/lib/ui/Slider.d.ts +4 -0
  379. package/dist/lib/ui/Slider.js +8 -0
  380. package/dist/lib/ui/Slider.js.map +1 -0
  381. package/dist/lib/ui/Switch.d.ts +4 -0
  382. package/dist/lib/ui/Switch.js +8 -0
  383. package/dist/lib/ui/Switch.js.map +1 -0
  384. package/dist/lib/ui/Textarea.d.ts +4 -0
  385. package/dist/lib/ui/Textarea.js +9 -0
  386. package/dist/lib/ui/Textarea.js.map +1 -0
  387. package/dist/lib/ui/Toggle.d.ts +12 -0
  388. package/dist/lib/ui/Toggle.js +26 -0
  389. package/dist/lib/ui/Toggle.js.map +1 -0
  390. package/dist/lib/ui/ToggleGroup.d.ts +12 -0
  391. package/dist/lib/ui/ToggleGroup.js +21 -0
  392. package/dist/lib/ui/ToggleGroup.js.map +1 -0
  393. package/dist/lib/ui/Tooltip.d.ts +7 -0
  394. package/dist/lib/ui/Tooltip.js +11 -0
  395. package/dist/lib/ui/Tooltip.js.map +1 -0
  396. package/dist/lib/util/MdxComponents.d.ts +19 -20
  397. package/dist/lib/util/MdxComponents.js +1 -3
  398. package/dist/lib/util/MdxComponents.js.map +1 -1
  399. package/dist/lib/util/createVariantComponent.d.ts +2 -2
  400. package/dist/lib/util/invariant.d.ts +9 -0
  401. package/dist/lib/util/invariant.js +7 -3
  402. package/dist/lib/util/invariant.js.map +1 -1
  403. package/dist/lib/util/traverse.d.ts +2 -0
  404. package/dist/lib/util/traverse.js +18 -0
  405. package/dist/lib/util/traverse.js.map +1 -0
  406. package/dist/lib/util/useExposedProps.d.ts +2 -0
  407. package/dist/lib/util/useExposedProps.js +9 -0
  408. package/dist/lib/util/useExposedProps.js.map +1 -0
  409. package/dist/lib/util/useIsomorphicLayoutEffect.d.ts +3 -0
  410. package/dist/lib/util/useIsomorphicLayoutEffect.js +4 -0
  411. package/dist/lib/util/useIsomorphicLayoutEffect.js.map +1 -0
  412. package/dist/lib/util/useOnScreen.d.ts +4 -0
  413. package/dist/lib/util/useOnScreen.js +19 -0
  414. package/dist/lib/util/useOnScreen.js.map +1 -0
  415. package/dist/lib/util/useScrollToAnchor.js +1 -1
  416. package/dist/lib/util/useScrollToAnchor.js.map +1 -1
  417. package/dist/lib/util/useScrollToTop.js +1 -1
  418. package/dist/lib/util/useScrollToTop.js.map +1 -1
  419. package/dist/vite/build.js +26 -5
  420. package/dist/vite/build.js.map +1 -1
  421. package/dist/vite/config.d.ts +6 -10
  422. package/dist/vite/config.js +91 -78
  423. package/dist/vite/config.js.map +1 -1
  424. package/dist/vite/config.test.js +7 -5
  425. package/dist/vite/config.test.js.map +1 -1
  426. package/dist/vite/css/collect.d.ts +2 -0
  427. package/dist/vite/css/collect.js +27 -0
  428. package/dist/vite/css/collect.js.map +1 -0
  429. package/dist/vite/css/plugin.d.ts +5 -0
  430. package/dist/vite/css/plugin.js +79 -0
  431. package/dist/vite/css/plugin.js.map +1 -0
  432. package/dist/vite/debug.d.ts +1 -0
  433. package/dist/vite/debug.js +10 -0
  434. package/dist/vite/debug.js.map +1 -0
  435. package/dist/vite/dev-server.d.ts +7 -1
  436. package/dist/vite/dev-server.js +35 -8
  437. package/dist/vite/dev-server.js.map +1 -1
  438. package/dist/vite/html.js +0 -2
  439. package/dist/vite/html.js.map +1 -1
  440. package/dist/vite/output.d.ts +101 -0
  441. package/dist/vite/output.js +62 -0
  442. package/dist/vite/output.js.map +1 -0
  443. package/dist/vite/plugin-api.js +100 -20
  444. package/dist/vite/plugin-api.js.map +1 -1
  445. package/dist/vite/plugin-component.js +17 -12
  446. package/dist/vite/plugin-component.js.map +1 -1
  447. package/dist/vite/plugin-config-reload.d.ts +1 -2
  448. package/dist/vite/plugin-config-reload.js +0 -2
  449. package/dist/vite/plugin-config-reload.js.map +1 -1
  450. package/dist/vite/plugin-config.d.ts +2 -3
  451. package/dist/vite/plugin-config.js +22 -3
  452. package/dist/vite/plugin-config.js.map +1 -1
  453. package/dist/vite/plugin-custom-pages.d.ts +4 -0
  454. package/dist/vite/plugin-custom-pages.js +30 -0
  455. package/dist/vite/plugin-custom-pages.js.map +1 -0
  456. package/dist/vite/plugin-docs.js +37 -26
  457. package/dist/vite/plugin-docs.js.map +1 -1
  458. package/dist/vite/plugin-docs.test.js +15 -23
  459. package/dist/vite/plugin-docs.test.js.map +1 -1
  460. package/dist/vite/plugin-frontmatter.d.ts +2 -1
  461. package/dist/vite/plugin-frontmatter.js +27 -24
  462. package/dist/vite/plugin-frontmatter.js.map +1 -1
  463. package/dist/vite/plugin-mdx.d.ts +0 -6
  464. package/dist/vite/plugin-mdx.js +80 -6
  465. package/dist/vite/plugin-mdx.js.map +1 -1
  466. package/dist/vite/plugin-search.d.ts +3 -0
  467. package/dist/vite/plugin-search.js +26 -0
  468. package/dist/vite/plugin-search.js.map +1 -0
  469. package/dist/vite/plugin-sidebar.js +7 -6
  470. package/dist/vite/plugin-sidebar.js.map +1 -1
  471. package/dist/vite/{plugin-custom-css.d.ts → plugin-theme-css.d.ts} +2 -2
  472. package/dist/vite/plugin-theme-css.js +114 -0
  473. package/dist/vite/plugin-theme-css.js.map +1 -0
  474. package/dist/vite/plugin.d.ts +1 -2
  475. package/dist/vite/plugin.js +12 -6
  476. package/dist/vite/plugin.js.map +1 -1
  477. package/dist/vite/prerender.d.ts +6 -1
  478. package/dist/vite/prerender.js +7 -5
  479. package/dist/vite/prerender.js.map +1 -1
  480. package/dist/vite/remarkStaticGeneration.d.ts +3 -0
  481. package/dist/vite/remarkStaticGeneration.js +125 -0
  482. package/dist/vite/remarkStaticGeneration.js.map +1 -0
  483. package/dist/vite/sitemap.d.ts +1 -1
  484. package/dist/zuplo/env.d.ts +6 -0
  485. package/dist/zuplo/env.js +9 -0
  486. package/dist/zuplo/env.js.map +1 -0
  487. package/dist/zuplo/with-zuplo.d.ts +3 -0
  488. package/dist/zuplo/with-zuplo.js +28 -0
  489. package/dist/zuplo/with-zuplo.js.map +1 -0
  490. package/lib/AnchorLink-DFZZbmvr.js +34 -0
  491. package/lib/AnchorLink-DFZZbmvr.js.map +1 -0
  492. package/lib/{AuthenticationPlugin-Bx9FK124.js → AuthenticationPlugin-DVLEc6cm.js} +23 -20
  493. package/lib/AuthenticationPlugin-DVLEc6cm.js.map +1 -0
  494. package/lib/Button-DeAoTouo.js +48 -0
  495. package/lib/Button-DeAoTouo.js.map +1 -0
  496. package/lib/CategoryHeading-CBconmtI.js +10 -0
  497. package/lib/{CategoryHeading-ovR-zHRq.js.map → CategoryHeading-CBconmtI.js.map} +1 -1
  498. package/lib/ClientOnly-E7hGysn1.js +11 -0
  499. package/lib/ClientOnly-E7hGysn1.js.map +1 -0
  500. package/lib/Dialog-Bxv1yEIg.js +67 -0
  501. package/lib/Dialog-Bxv1yEIg.js.map +1 -0
  502. package/lib/Markdown-CZDLNOFc.js +15202 -0
  503. package/lib/Markdown-CZDLNOFc.js.map +1 -0
  504. package/lib/MdxPage-DKMbBROv.js +188 -0
  505. package/lib/MdxPage-DKMbBROv.js.map +1 -0
  506. package/lib/OperationList-BKHUKlAL.js +5062 -0
  507. package/lib/OperationList-BKHUKlAL.js.map +1 -0
  508. package/lib/Route-DYwKZ_c_.js +35 -0
  509. package/lib/Route-DYwKZ_c_.js.map +1 -0
  510. package/lib/Select-B_IxRUUC.js +223 -0
  511. package/lib/Select-B_IxRUUC.js.map +1 -0
  512. package/lib/SlotletProvider-pfc9oejW.js +221 -0
  513. package/lib/SlotletProvider-pfc9oejW.js.map +1 -0
  514. package/lib/{Spinner-3cQDBVGr.js → Spinner-DuxJLLNE.js} +2 -2
  515. package/lib/{Spinner-3cQDBVGr.js.map → Spinner-DuxJLLNE.js.map} +1 -1
  516. package/lib/StaggeredRender-DgsamH_G.js +17 -0
  517. package/lib/StaggeredRender-DgsamH_G.js.map +1 -0
  518. package/lib/SyntaxHighlight-Bz-lOJtH.js +2979 -0
  519. package/lib/SyntaxHighlight-Bz-lOJtH.js.map +1 -0
  520. package/lib/ZudokuContext-hmLMUdf2.js +1217 -0
  521. package/lib/ZudokuContext-hmLMUdf2.js.map +1 -0
  522. package/lib/__vite-browser-external-BYRIRx8p.js +9 -0
  523. package/lib/__vite-browser-external-BYRIRx8p.js.map +1 -0
  524. package/lib/{index-CLd8ycZz.js → assets/index-C7jnHK4b.js} +1008 -957
  525. package/lib/assets/index-C7jnHK4b.js.map +1 -0
  526. package/lib/assets/{worker-Bcj4NA2p.js → worker-D2kRl-cG.js} +6035 -5375
  527. package/lib/assets/worker-D2kRl-cG.js.map +1 -0
  528. package/lib/chunk-D52XG6IA-Dl7HLe6j.js +1823 -0
  529. package/lib/chunk-D52XG6IA-Dl7HLe6j.js.map +1 -0
  530. package/lib/cn-qaFjX9_3.js +2279 -0
  531. package/lib/cn-qaFjX9_3.js.map +1 -0
  532. package/lib/context-h_UkBLvr.js +22 -0
  533. package/lib/context-h_UkBLvr.js.map +1 -0
  534. package/lib/createServer-69sLlmQA.js +15679 -0
  535. package/lib/createServer-69sLlmQA.js.map +1 -0
  536. package/lib/hook-CHq7pFyz.js +227 -0
  537. package/lib/hook-CHq7pFyz.js.map +1 -0
  538. package/lib/{assets/index-B9EWVYfo.js → index-CBXSgjaE.js} +1034 -983
  539. package/lib/index-CBXSgjaE.js.map +1 -0
  540. package/lib/index-CPNSgwSb.js +36 -0
  541. package/lib/index-CPNSgwSb.js.map +1 -0
  542. package/lib/index-CbrnMIak.js +1282 -0
  543. package/lib/index-CbrnMIak.js.map +1 -0
  544. package/lib/index-LNp6rxyU.js.map +1 -1
  545. package/lib/index.esm-BSV1C092.js +692 -0
  546. package/lib/index.esm-BSV1C092.js.map +1 -0
  547. package/lib/index.esm-BnnBRKJX.js +1214 -0
  548. package/lib/index.esm-BnnBRKJX.js.map +1 -0
  549. package/lib/invariant-Caa8-XvF.js +26 -0
  550. package/lib/invariant-Caa8-XvF.js.map +1 -0
  551. package/lib/jsx-runtime-Dx-03ztt.js +446 -0
  552. package/lib/jsx-runtime-Dx-03ztt.js.map +1 -0
  553. package/lib/object_hash-BNWPnMN9.js +787 -0
  554. package/lib/object_hash-BNWPnMN9.js.map +1 -0
  555. package/lib/post-processors/removeExtensions.js +11 -0
  556. package/lib/post-processors/removeExtensions.js.map +1 -0
  557. package/lib/post-processors/removePaths.js +28 -0
  558. package/lib/post-processors/removePaths.js.map +1 -0
  559. package/lib/post-processors/traverse.js +12 -0
  560. package/lib/post-processors/traverse.js.map +1 -0
  561. package/lib/prism-csharp.min-DUwvItt4.js +63 -0
  562. package/lib/{prism-csharp.min-Yizuc34Y.js.map → prism-csharp.min-DUwvItt4.js.map} +1 -1
  563. package/lib/prism-java.min-BtgBR4yd.js +35 -0
  564. package/lib/{prism-java.min-d5iT_mOd.js.map → prism-java.min-BtgBR4yd.js.map} +1 -1
  565. package/lib/prism-markup-BNGj0Tvm.js.map +1 -1
  566. package/lib/prism-ruby.min-DeDXCp1r.js +38 -0
  567. package/lib/{prism-ruby.min-C7LwcKyz.js.map → prism-ruby.min-DeDXCp1r.js.map} +1 -1
  568. package/lib/prism-typescript.min-CD7H2IYQ.js +34 -0
  569. package/lib/{prism-typescript.min-oSVeWCAd.js.map → prism-typescript.min-CD7H2IYQ.js.map} +1 -1
  570. package/lib/state-CFQsUZUP.js +202 -0
  571. package/lib/state-CFQsUZUP.js.map +1 -0
  572. package/lib/ui/Accordion.js +47 -0
  573. package/lib/ui/Accordion.js.map +1 -0
  574. package/lib/ui/ActionButton.js +25 -0
  575. package/lib/ui/ActionButton.js.map +1 -0
  576. package/lib/ui/Alert.js +51 -0
  577. package/lib/ui/Alert.js.map +1 -0
  578. package/lib/ui/AlertDialog.js +114 -0
  579. package/lib/ui/AlertDialog.js.map +1 -0
  580. package/lib/ui/AspectRatio.js +6 -0
  581. package/lib/ui/AspectRatio.js.map +1 -0
  582. package/lib/ui/Badge.js +27 -0
  583. package/lib/ui/Badge.js.map +1 -0
  584. package/lib/ui/Breadcrumb.js +94 -0
  585. package/lib/ui/Breadcrumb.js.map +1 -0
  586. package/lib/ui/Button.js +49 -0
  587. package/lib/ui/Button.js.map +1 -0
  588. package/lib/ui/Callout.js +77 -0
  589. package/lib/ui/Callout.js.map +1 -0
  590. package/lib/ui/Card.js +62 -0
  591. package/lib/ui/Card.js.map +1 -0
  592. package/lib/ui/Carousel.js +1416 -0
  593. package/lib/ui/Carousel.js.map +1 -0
  594. package/lib/ui/Checkbox.js +28 -0
  595. package/lib/ui/Checkbox.js.map +1 -0
  596. package/lib/ui/Collapsible.js +8 -0
  597. package/lib/ui/Collapsible.js.map +1 -0
  598. package/lib/ui/Command.js +553 -0
  599. package/lib/ui/Command.js.map +1 -0
  600. package/lib/ui/Dialog.js +101 -0
  601. package/lib/ui/Dialog.js.map +1 -0
  602. package/lib/ui/Drawer.js +1153 -0
  603. package/lib/ui/Drawer.js.map +1 -0
  604. package/lib/ui/DropdownMenu.js +145 -0
  605. package/lib/ui/DropdownMenu.js.map +1 -0
  606. package/lib/ui/Form.js +95 -0
  607. package/lib/ui/Form.js.map +1 -0
  608. package/lib/ui/HoverCard.js +24 -0
  609. package/lib/ui/HoverCard.js.map +1 -0
  610. package/lib/ui/Input.js +22 -0
  611. package/lib/ui/Input.js.map +1 -0
  612. package/lib/ui/Label.js +20 -0
  613. package/lib/ui/Label.js.map +1 -0
  614. package/lib/ui/Pagination.js +106 -0
  615. package/lib/ui/Pagination.js.map +1 -0
  616. package/lib/ui/Popover.js +24 -0
  617. package/lib/ui/Popover.js.map +1 -0
  618. package/lib/ui/Progress.js +27 -0
  619. package/lib/ui/Progress.js.map +1 -0
  620. package/lib/ui/RadioGroup.js +32 -0
  621. package/lib/ui/RadioGroup.js.map +1 -0
  622. package/lib/ui/ScrollArea.js +39 -0
  623. package/lib/ui/ScrollArea.js.map +1 -0
  624. package/lib/ui/Select.js +122 -0
  625. package/lib/ui/Select.js.map +1 -0
  626. package/lib/ui/Skeleton.js +18 -0
  627. package/lib/ui/Skeleton.js.map +1 -0
  628. package/lib/ui/Slider.js +24 -0
  629. package/lib/ui/Slider.js.map +1 -0
  630. package/lib/ui/Switch.js +28 -0
  631. package/lib/ui/Switch.js.map +1 -0
  632. package/lib/ui/Tabs.js +47 -0
  633. package/lib/ui/Tabs.js.map +1 -0
  634. package/lib/ui/Textarea.js +21 -0
  635. package/lib/ui/Textarea.js.map +1 -0
  636. package/lib/ui/Toggle.js +38 -0
  637. package/lib/ui/Toggle.js.map +1 -0
  638. package/lib/ui/ToggleGroup.js +42 -0
  639. package/lib/ui/ToggleGroup.js.map +1 -0
  640. package/lib/ui/Tooltip.js +24 -0
  641. package/lib/ui/Tooltip.js.map +1 -0
  642. package/lib/useExposedProps-DE9lR6MF.js +9 -0
  643. package/lib/useExposedProps-DE9lR6MF.js.map +1 -0
  644. package/lib/zudoku.auth-auth0.js +24 -18
  645. package/lib/zudoku.auth-auth0.js.map +1 -1
  646. package/lib/zudoku.auth-clerk.js +2 -2
  647. package/lib/zudoku.auth-clerk.js.map +1 -1
  648. package/lib/zudoku.auth-openid.js +620 -619
  649. package/lib/zudoku.auth-openid.js.map +1 -1
  650. package/lib/zudoku.components.js +1064 -3006
  651. package/lib/zudoku.components.js.map +1 -1
  652. package/lib/zudoku.openapi-worker.js +10 -16056
  653. package/lib/zudoku.openapi-worker.js.map +1 -1
  654. package/lib/zudoku.plugin-api-catalog.js +123 -0
  655. package/lib/zudoku.plugin-api-catalog.js.map +1 -0
  656. package/lib/zudoku.plugin-api-keys.js +72 -78
  657. package/lib/zudoku.plugin-api-keys.js.map +1 -1
  658. package/lib/zudoku.plugin-custom-pages.js +22 -0
  659. package/lib/zudoku.plugin-custom-pages.js.map +1 -0
  660. package/lib/zudoku.plugin-markdown.js +94 -27
  661. package/lib/zudoku.plugin-markdown.js.map +1 -1
  662. package/lib/zudoku.plugin-openapi.js +7 -12
  663. package/lib/zudoku.plugin-openapi.js.map +1 -1
  664. package/lib/zudoku.plugin-redirect.js +2 -2
  665. package/lib/zudoku.plugin-redirect.js.map +1 -1
  666. package/lib/zudoku.plugin-search-inkeep.js +53 -28
  667. package/lib/zudoku.plugin-search-inkeep.js.map +1 -1
  668. package/package.json +135 -87
  669. package/src/app/demo.tsx +1 -4
  670. package/src/app/entry.client.tsx +20 -3
  671. package/src/app/entry.server.tsx +63 -52
  672. package/src/app/main.css +5 -2
  673. package/src/app/main.tsx +24 -38
  674. package/src/app/sentry.ts +24 -0
  675. package/src/app/standalone.tsx +2 -5
  676. package/src/app/tailwind.ts +67 -52
  677. package/src/lib/authentication/AuthenticationPlugin.tsx +4 -1
  678. package/src/lib/authentication/authentication.ts +3 -3
  679. package/src/lib/authentication/components/CallbackHandler.tsx +20 -51
  680. package/src/lib/authentication/components/SignIn.tsx +1 -1
  681. package/src/lib/authentication/components/SignOut.tsx +1 -1
  682. package/src/lib/authentication/hook.ts +1 -3
  683. package/src/lib/authentication/providers/auth0.tsx +17 -11
  684. package/src/lib/authentication/providers/openid.tsx +22 -33
  685. package/src/lib/authentication/state.ts +50 -9
  686. package/{LICENSE.md → src/lib/authentication/use-broadcast/LICENSE.md} +2 -2
  687. package/src/lib/authentication/use-broadcast/shared.ts +372 -0
  688. package/src/lib/authentication/use-broadcast/useBroadcast.ts +146 -0
  689. package/src/lib/components/AnchorLink.tsx +1 -1
  690. package/src/lib/components/Banner.tsx +12 -2
  691. package/src/lib/components/Bootstrap.tsx +36 -16
  692. package/src/lib/components/ClientOnly.tsx +6 -3
  693. package/src/lib/components/DeveloperHint.tsx +6 -1
  694. package/src/lib/components/ErrorPage.tsx +0 -2
  695. package/src/lib/components/Header.tsx +91 -46
  696. package/src/lib/components/Heading.tsx +13 -13
  697. package/src/lib/components/Layout.tsx +56 -38
  698. package/src/lib/components/Markdown.tsx +1 -1
  699. package/src/lib/components/MobileTopNavigation.tsx +31 -26
  700. package/src/lib/components/NotFoundPage.tsx +1 -1
  701. package/src/lib/components/ReactMarkdown.license.txt +21 -0
  702. package/src/lib/components/ReactMarkdown.tsx +264 -0
  703. package/src/lib/components/Search.tsx +4 -4
  704. package/src/lib/components/SlotletProvider.tsx +29 -4
  705. package/src/lib/components/SyntaxHighlight.tsx +85 -50
  706. package/src/lib/components/ThemeSwitch.tsx +26 -0
  707. package/src/lib/components/TopNavigation.tsx +78 -23
  708. package/src/lib/components/Zudoku.tsx +108 -0
  709. package/src/lib/components/context/ZudokuContext.ts +33 -30
  710. package/src/lib/components/context/ZudokuProvider.tsx +2 -2
  711. package/src/lib/components/index.ts +19 -7
  712. package/src/lib/components/navigation/Sidebar.tsx +22 -12
  713. package/src/lib/components/navigation/SidebarBadge.tsx +0 -10
  714. package/src/lib/components/navigation/SidebarCategory.tsx +39 -32
  715. package/src/lib/components/navigation/SidebarItem.tsx +24 -30
  716. package/src/lib/components/navigation/SidebarWrapper.tsx +1 -1
  717. package/src/lib/components/navigation/utils.ts +12 -17
  718. package/src/lib/core/{DevPortalContext.ts → ZudokuContext.ts} +7 -14
  719. package/src/lib/core/plugins.ts +19 -17
  720. package/src/lib/errors/ErrorAlert.tsx +20 -6
  721. package/src/lib/errors/RouterError.tsx +1 -1
  722. package/src/lib/oas/graphql/index.ts +11 -16
  723. package/src/lib/oas/parser/upgrade/index.ts +3 -24
  724. package/src/lib/plugins/api-catalog/Catalog.tsx +123 -0
  725. package/src/lib/plugins/api-catalog/index.tsx +64 -0
  726. package/src/lib/plugins/api-keys/CreateApiKey.tsx +3 -3
  727. package/src/lib/plugins/api-keys/ProtectedRoute.tsx +1 -1
  728. package/src/lib/plugins/api-keys/SettingsApiKeys.tsx +1 -1
  729. package/src/lib/plugins/api-keys/index.tsx +13 -10
  730. package/src/lib/plugins/custom-pages/CustomPage.tsx +18 -0
  731. package/src/lib/plugins/custom-pages/index.tsx +24 -0
  732. package/src/lib/plugins/markdown/MdxPage.tsx +38 -10
  733. package/src/lib/plugins/markdown/index.tsx +53 -13
  734. package/src/lib/plugins/markdown/resolver.ts +90 -0
  735. package/src/lib/plugins/openapi/CollapsibleCode.tsx +80 -0
  736. package/src/lib/plugins/openapi/ColorizedParam.tsx +23 -14
  737. package/src/lib/plugins/openapi/Endpoint.tsx +7 -12
  738. package/src/lib/plugins/openapi/OperationList.tsx +81 -45
  739. package/src/lib/plugins/openapi/OperationListItem.tsx +31 -2
  740. package/src/lib/plugins/openapi/ParameterListItem.tsx +37 -31
  741. package/src/lib/plugins/openapi/RequestBodySidecarBox.tsx +18 -13
  742. package/src/lib/plugins/openapi/ResponsesSidecarBox.tsx +17 -12
  743. package/src/lib/plugins/openapi/Route.tsx +42 -12
  744. package/src/lib/plugins/openapi/Sidecar.tsx +75 -75
  745. package/src/lib/plugins/openapi/client/GraphQLClient.tsx +157 -0
  746. package/src/lib/plugins/openapi/client/GraphQLContext.tsx +16 -0
  747. package/src/lib/plugins/openapi/client/createServer.ts +2 -0
  748. package/src/lib/plugins/openapi/client/useCreateQuery.ts +33 -0
  749. package/src/lib/plugins/openapi/client/worker.ts +38 -24
  750. package/src/lib/plugins/openapi/context.tsx +2 -2
  751. package/src/lib/plugins/openapi/graphql/fragment-masking.ts +11 -18
  752. package/src/lib/plugins/openapi/graphql/gql.ts +12 -29
  753. package/src/lib/plugins/openapi/graphql/graphql.ts +236 -665
  754. package/src/lib/plugins/openapi/index.tsx +77 -97
  755. package/src/lib/plugins/openapi/interfaces.ts +22 -1
  756. package/src/lib/plugins/openapi/playground/PathParams.tsx +1 -0
  757. package/src/lib/plugins/openapi/playground/Playground.tsx +5 -4
  758. package/src/lib/plugins/openapi/playground/PlaygroundDialog.tsx +1 -1
  759. package/src/lib/plugins/openapi/playground/ResponseTab.tsx +0 -1
  760. package/src/lib/plugins/openapi/post-processors/removeExtensions.test.ts +144 -0
  761. package/src/lib/plugins/openapi/post-processors/removeExtensions.ts +24 -0
  762. package/src/lib/plugins/openapi/post-processors/removePaths.test.ts +126 -0
  763. package/src/lib/plugins/openapi/post-processors/removePaths.ts +55 -0
  764. package/src/lib/plugins/openapi/post-processors/traverse.ts +1 -0
  765. package/src/lib/plugins/openapi/schema/SchemaView.tsx +5 -2
  766. package/src/lib/plugins/openapi/util/generateSchemaExample.ts +28 -42
  767. package/src/lib/plugins/openapi/util/methodToColor.ts +27 -0
  768. package/src/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.tsx +32 -0
  769. package/src/lib/plugins/openapi-worker.ts +11 -1
  770. package/src/lib/plugins/redirect/index.tsx +6 -10
  771. package/src/lib/plugins/search-inkeep/index.tsx +80 -25
  772. package/src/lib/plugins/search-inkeep/inkeep.ts +3 -9
  773. package/src/lib/ui/Accordion.tsx +56 -0
  774. package/src/lib/ui/ActionButton.tsx +28 -0
  775. package/src/lib/ui/{Note.tsx → Alert.tsx} +11 -10
  776. package/src/lib/ui/AlertDialog.tsx +139 -0
  777. package/src/lib/ui/AspectRatio.tsx +5 -0
  778. package/src/lib/ui/Badge.tsx +36 -0
  779. package/src/lib/ui/Breadcrumb.tsx +115 -0
  780. package/src/lib/ui/Button.tsx +1 -1
  781. package/src/lib/ui/Callout.tsx +7 -6
  782. package/src/lib/ui/Carousel.tsx +260 -0
  783. package/src/lib/ui/Checkbox.tsx +28 -0
  784. package/src/lib/ui/Collapsible.tsx +9 -0
  785. package/src/lib/ui/Command.tsx +151 -0
  786. package/src/lib/{components → ui}/Dialog.tsx +4 -3
  787. package/src/lib/ui/Drawer.tsx +38 -36
  788. package/src/lib/ui/Form.tsx +177 -0
  789. package/src/lib/ui/HoverCard.tsx +27 -0
  790. package/src/lib/ui/Label.tsx +24 -0
  791. package/src/lib/ui/Pagination.tsx +117 -0
  792. package/src/lib/ui/Popover.tsx +29 -0
  793. package/src/lib/ui/Progress.tsx +26 -0
  794. package/src/lib/ui/RadioGroup.tsx +42 -0
  795. package/src/lib/ui/ScrollArea.tsx +46 -0
  796. package/src/lib/ui/Skeleton.tsx +15 -0
  797. package/src/lib/ui/Slider.tsx +26 -0
  798. package/src/lib/ui/Switch.tsx +27 -0
  799. package/src/lib/ui/Textarea.tsx +23 -0
  800. package/src/lib/ui/Toggle.tsx +43 -0
  801. package/src/lib/ui/ToggleGroup.tsx +59 -0
  802. package/src/lib/ui/Tooltip.tsx +28 -0
  803. package/src/lib/util/MdxComponents.tsx +3 -9
  804. package/src/lib/util/createVariantComponent.tsx +2 -2
  805. package/src/lib/util/invariant.ts +15 -3
  806. package/src/lib/util/traverse.ts +25 -0
  807. package/src/lib/util/useExposedProps.tsx +16 -0
  808. package/src/lib/util/useIsomorphicLayoutEffect.ts +5 -0
  809. package/src/lib/util/useOnScreen.ts +32 -0
  810. package/src/lib/util/useScrollToAnchor.ts +2 -2
  811. package/src/lib/util/useScrollToTop.ts +1 -1
  812. package/dist/internal.d.ts +0 -1
  813. package/dist/internal.js +0 -2
  814. package/dist/internal.js.map +0 -1
  815. package/dist/lib/components/DevPortal.js.map +0 -1
  816. package/dist/lib/components/Dialog.js.map +0 -1
  817. package/dist/lib/components/Select.js.map +0 -1
  818. package/dist/lib/components/context/ThemeContext.d.ts +0 -2
  819. package/dist/lib/components/context/ThemeContext.js +0 -7
  820. package/dist/lib/components/context/ThemeContext.js.map +0 -1
  821. package/dist/lib/components/context/ThemeProvider.d.ts +0 -4
  822. package/dist/lib/components/context/ThemeProvider.js +0 -23
  823. package/dist/lib/components/context/ThemeProvider.js.map +0 -1
  824. package/dist/lib/core/DevPortalContext.js.map +0 -1
  825. package/dist/lib/plugins/custom-page/index.d.ts +0 -8
  826. package/dist/lib/plugins/custom-page/index.js +0 -12
  827. package/dist/lib/plugins/custom-page/index.js.map +0 -1
  828. package/dist/lib/plugins/markdown/generateRoutes.d.ts +0 -3
  829. package/dist/lib/plugins/markdown/generateRoutes.js +0 -21
  830. package/dist/lib/plugins/markdown/generateRoutes.js.map +0 -1
  831. package/dist/lib/plugins/openapi/client/createMemoryClient.d.ts +0 -12
  832. package/dist/lib/plugins/openapi/client/createMemoryClient.js +0 -46
  833. package/dist/lib/plugins/openapi/client/createMemoryClient.js.map +0 -1
  834. package/dist/lib/plugins/openapi/client/createWorkerClient.d.ts +0 -10
  835. package/dist/lib/plugins/openapi/client/createWorkerClient.js +0 -61
  836. package/dist/lib/plugins/openapi/client/createWorkerClient.js.map +0 -1
  837. package/dist/lib/plugins/openapi/client/interfaces.d.ts +0 -4
  838. package/dist/lib/plugins/openapi/client/interfaces.js +0 -2
  839. package/dist/lib/plugins/openapi/client/interfaces.js.map +0 -1
  840. package/dist/lib/plugins/openapi/playground/Editor.d.ts +0 -1
  841. package/dist/lib/plugins/openapi/playground/Editor.js +0 -5
  842. package/dist/lib/plugins/openapi/playground/Editor.js.map +0 -1
  843. package/dist/lib/plugins/openapi/util/urql.d.ts +0 -7
  844. package/dist/lib/plugins/openapi/util/urql.js +0 -8
  845. package/dist/lib/plugins/openapi/util/urql.js.map +0 -1
  846. package/dist/lib/plugins/search-inkeep/InkeepCustomTrigger.d.ts +0 -2
  847. package/dist/lib/plugins/search-inkeep/InkeepCustomTrigger.js +0 -3
  848. package/dist/lib/plugins/search-inkeep/InkeepCustomTrigger.js.map +0 -1
  849. package/dist/lib/themeToggle.d.ts +0 -1
  850. package/dist/lib/themeToggle.js +0 -7
  851. package/dist/lib/themeToggle.js.map +0 -1
  852. package/dist/lib/ui/Note.d.ts +0 -8
  853. package/dist/lib/ui/Note.js +0 -23
  854. package/dist/lib/ui/Note.js.map +0 -1
  855. package/dist/lib/util/createWaitForNotify.d.ts +0 -1
  856. package/dist/lib/util/createWaitForNotify.js +0 -15
  857. package/dist/lib/util/createWaitForNotify.js.map +0 -1
  858. package/dist/vite/plugin-custom-css.js +0 -55
  859. package/dist/vite/plugin-custom-css.js.map +0 -1
  860. package/dist/vite/plugin-html-transform.d.ts +0 -2
  861. package/dist/vite/plugin-html-transform.js +0 -15
  862. package/dist/vite/plugin-html-transform.js.map +0 -1
  863. package/lib/AuthenticationPlugin-Bx9FK124.js.map +0 -1
  864. package/lib/CategoryHeading-ovR-zHRq.js +0 -10
  865. package/lib/DeveloperHint-YeWHKvyr.js +0 -16
  866. package/lib/DeveloperHint-YeWHKvyr.js.map +0 -1
  867. package/lib/ErrorPage-Dri5_2lr.js +0 -18
  868. package/lib/ErrorPage-Dri5_2lr.js.map +0 -1
  869. package/lib/InkeepCustomTrigger-CE5-K5ex.js +0 -6
  870. package/lib/InkeepCustomTrigger-CE5-K5ex.js.map +0 -1
  871. package/lib/Input-CtVUl3eT.js +0 -2198
  872. package/lib/Input-CtVUl3eT.js.map +0 -1
  873. package/lib/Markdown-DapSf3wG.js +0 -20281
  874. package/lib/Markdown-DapSf3wG.js.map +0 -1
  875. package/lib/MdxPage-BqBWsXZ1.js +0 -172
  876. package/lib/MdxPage-BqBWsXZ1.js.map +0 -1
  877. package/lib/OperationList-JAQF5-tn.js +0 -602
  878. package/lib/OperationList-JAQF5-tn.js.map +0 -1
  879. package/lib/Route-DSANUy5e.js +0 -14
  880. package/lib/Route-DSANUy5e.js.map +0 -1
  881. package/lib/SidebarBadge-Dx7jtnoA.js +0 -498
  882. package/lib/SidebarBadge-Dx7jtnoA.js.map +0 -1
  883. package/lib/SlotletProvider-D3UD5Go3.js +0 -238
  884. package/lib/SlotletProvider-D3UD5Go3.js.map +0 -1
  885. package/lib/ZudokuContext-cr-pTRY1.js +0 -1084
  886. package/lib/ZudokuContext-cr-pTRY1.js.map +0 -1
  887. package/lib/assets/index-B9EWVYfo.js.map +0 -1
  888. package/lib/assets/worker-Bcj4NA2p.js.map +0 -1
  889. package/lib/index-BG0g4WW0.js +0 -1771
  890. package/lib/index-BG0g4WW0.js.map +0 -1
  891. package/lib/index-BngPzhKn.js +0 -124
  892. package/lib/index-BngPzhKn.js.map +0 -1
  893. package/lib/index-CLd8ycZz.js.map +0 -1
  894. package/lib/index-Dolisrci.js +0 -2814
  895. package/lib/index-Dolisrci.js.map +0 -1
  896. package/lib/index-DyJyULzS.js +0 -5816
  897. package/lib/index-DyJyULzS.js.map +0 -1
  898. package/lib/joinPath-B7kNnUX4.js +0 -8
  899. package/lib/joinPath-B7kNnUX4.js.map +0 -1
  900. package/lib/jsx-runtime-B6kdoens.js +0 -635
  901. package/lib/jsx-runtime-B6kdoens.js.map +0 -1
  902. package/lib/prism-csharp.min-Yizuc34Y.js +0 -35
  903. package/lib/prism-java.min-d5iT_mOd.js +0 -7
  904. package/lib/prism-markup-templating-DZrrEs0A.js +0 -62
  905. package/lib/prism-markup-templating-DZrrEs0A.js.map +0 -1
  906. package/lib/prism-php.min-o7FpoMP_.js +0 -11
  907. package/lib/prism-php.min-o7FpoMP_.js.map +0 -1
  908. package/lib/prism-ruby.min-C7LwcKyz.js +0 -10
  909. package/lib/prism-typescript.min-oSVeWCAd.js +0 -6
  910. package/lib/router-D2p7Olpn.js +0 -2971
  911. package/lib/router-D2p7Olpn.js.map +0 -1
  912. package/lib/state-hNe1dw4B.js +0 -548
  913. package/lib/state-hNe1dw4B.js.map +0 -1
  914. package/lib/urql-YhcsXYy8.js +0 -1591
  915. package/lib/urql-YhcsXYy8.js.map +0 -1
  916. package/lib/utils-ByIc_KIM.js +0 -749
  917. package/lib/utils-ByIc_KIM.js.map +0 -1
  918. package/lib/zudoku.plugin-custom-page.js +0 -13
  919. package/lib/zudoku.plugin-custom-page.js.map +0 -1
  920. package/src/lib/components/DevPortal.tsx +0 -111
  921. package/src/lib/components/context/ThemeContext.tsx +0 -8
  922. package/src/lib/components/context/ThemeProvider.tsx +0 -27
  923. package/src/lib/plugins/custom-page/index.tsx +0 -22
  924. package/src/lib/plugins/markdown/generateRoutes.tsx +0 -38
  925. package/src/lib/plugins/openapi/client/createMemoryClient.ts +0 -56
  926. package/src/lib/plugins/openapi/client/createWorkerClient.ts +0 -80
  927. package/src/lib/plugins/openapi/client/interfaces.ts +0 -5
  928. package/src/lib/plugins/openapi/playground/Editor.tsx +0 -4
  929. package/src/lib/plugins/openapi/util/urql.ts +0 -8
  930. package/src/lib/plugins/search-inkeep/InkeepCustomTrigger.tsx +0 -3
  931. package/src/lib/themeToggle.ts +0 -7
  932. package/src/lib/util/createWaitForNotify.ts +0 -18
  933. /package/dist/lib/{components → ui}/Dialog.d.ts +0 -0
  934. /package/dist/lib/{components → ui}/Select.d.ts +0 -0
  935. /package/dist/lib/{components → ui}/Select.js +0 -0
  936. /package/src/lib/{components → ui}/Select.tsx +0 -0
@@ -1,102 +1,102 @@
1
- const ut = Symbol.for("yaml.alias"), rt = Symbol.for("yaml.document"), V = Symbol.for("yaml.map"), Kt = Symbol.for("yaml.pair"), R = Symbol.for("yaml.scalar"), fe = Symbol.for("yaml.seq"), K = Symbol.for("yaml.node.type"), Z = (s) => !!s && typeof s == "object" && s[K] === ut, ue = (s) => !!s && typeof s == "object" && s[K] === rt, he = (s) => !!s && typeof s == "object" && s[K] === V, I = (s) => !!s && typeof s == "object" && s[K] === Kt, E = (s) => !!s && typeof s == "object" && s[K] === R, de = (s) => !!s && typeof s == "object" && s[K] === fe;
1
+ const dt = Symbol.for("yaml.alias"), lt = Symbol.for("yaml.document"), J = Symbol.for("yaml.map"), qt = Symbol.for("yaml.pair"), R = Symbol.for("yaml.scalar"), he = Symbol.for("yaml.seq"), D = Symbol.for("yaml.node.type"), x = (s) => !!s && typeof s == "object" && s[D] === dt, ee = (s) => !!s && typeof s == "object" && s[D] === lt, de = (s) => !!s && typeof s == "object" && s[D] === J, I = (s) => !!s && typeof s == "object" && s[D] === qt, E = (s) => !!s && typeof s == "object" && s[D] === R, pe = (s) => !!s && typeof s == "object" && s[D] === he;
2
2
  function L(s) {
3
3
  if (s && typeof s == "object")
4
- switch (s[K]) {
5
- case V:
6
- case fe:
4
+ switch (s[D]) {
5
+ case J:
6
+ case he:
7
7
  return !0;
8
8
  }
9
9
  return !1;
10
10
  }
11
11
  function $(s) {
12
12
  if (s && typeof s == "object")
13
- switch (s[K]) {
14
- case ut:
15
- case V:
13
+ switch (s[D]) {
14
+ case dt:
15
+ case J:
16
16
  case R:
17
- case fe:
17
+ case he:
18
18
  return !0;
19
19
  }
20
20
  return !1;
21
21
  }
22
- const $s = (s) => (E(s) || L(s)) && !!s.anchor, M = Symbol("break visit"), Dt = Symbol("skip children"), U = Symbol("remove node");
23
- function J(s, e) {
24
- const t = qt(e);
25
- ue(s) ? se(null, s.contents, t, Object.freeze([s])) === U && (s.contents = null) : se(null, s, t, Object.freeze([]));
22
+ const vs = (s) => (E(s) || L(s)) && !!s.anchor, M = Symbol("break visit"), Ft = Symbol("skip children"), F = Symbol("remove node");
23
+ function G(s, e) {
24
+ const t = Rt(e);
25
+ ee(s) ? ie(null, s.contents, t, Object.freeze([s])) === F && (s.contents = null) : ie(null, s, t, Object.freeze([]));
26
26
  }
27
- J.BREAK = M;
28
- J.SKIP = Dt;
29
- J.REMOVE = U;
30
- function se(s, e, t, n) {
27
+ G.BREAK = M;
28
+ G.SKIP = Ft;
29
+ G.REMOVE = F;
30
+ function ie(s, e, t, n) {
31
31
  const i = Ut(s, e, t, n);
32
32
  if ($(i) || I(i))
33
- return Ft(s, n, i), se(s, i, t, n);
33
+ return Vt(s, n, i), ie(s, i, t, n);
34
34
  if (typeof i != "symbol") {
35
35
  if (L(e)) {
36
36
  n = Object.freeze(n.concat(e));
37
37
  for (let r = 0; r < e.items.length; ++r) {
38
- const o = se(r, e.items[r], t, n);
38
+ const o = ie(r, e.items[r], t, n);
39
39
  if (typeof o == "number")
40
40
  r = o - 1;
41
41
  else {
42
42
  if (o === M)
43
43
  return M;
44
- o === U && (e.items.splice(r, 1), r -= 1);
44
+ o === F && (e.items.splice(r, 1), r -= 1);
45
45
  }
46
46
  }
47
47
  } else if (I(e)) {
48
48
  n = Object.freeze(n.concat(e));
49
- const r = se("key", e.key, t, n);
49
+ const r = ie("key", e.key, t, n);
50
50
  if (r === M)
51
51
  return M;
52
- r === U && (e.key = null);
53
- const o = se("value", e.value, t, n);
52
+ r === F && (e.key = null);
53
+ const o = ie("value", e.value, t, n);
54
54
  if (o === M)
55
55
  return M;
56
- o === U && (e.value = null);
56
+ o === F && (e.value = null);
57
57
  }
58
58
  }
59
59
  return i;
60
60
  }
61
- async function De(s, e) {
62
- const t = qt(e);
63
- ue(s) ? await ne(null, s.contents, t, Object.freeze([s])) === U && (s.contents = null) : await ne(null, s, t, Object.freeze([]));
61
+ async function Fe(s, e) {
62
+ const t = Rt(e);
63
+ ee(s) ? await re(null, s.contents, t, Object.freeze([s])) === F && (s.contents = null) : await re(null, s, t, Object.freeze([]));
64
64
  }
65
- De.BREAK = M;
66
- De.SKIP = Dt;
67
- De.REMOVE = U;
68
- async function ne(s, e, t, n) {
65
+ Fe.BREAK = M;
66
+ Fe.SKIP = Ft;
67
+ Fe.REMOVE = F;
68
+ async function re(s, e, t, n) {
69
69
  const i = await Ut(s, e, t, n);
70
70
  if ($(i) || I(i))
71
- return Ft(s, n, i), ne(s, i, t, n);
71
+ return Vt(s, n, i), re(s, i, t, n);
72
72
  if (typeof i != "symbol") {
73
73
  if (L(e)) {
74
74
  n = Object.freeze(n.concat(e));
75
75
  for (let r = 0; r < e.items.length; ++r) {
76
- const o = await ne(r, e.items[r], t, n);
76
+ const o = await re(r, e.items[r], t, n);
77
77
  if (typeof o == "number")
78
78
  r = o - 1;
79
79
  else {
80
80
  if (o === M)
81
81
  return M;
82
- o === U && (e.items.splice(r, 1), r -= 1);
82
+ o === F && (e.items.splice(r, 1), r -= 1);
83
83
  }
84
84
  }
85
85
  } else if (I(e)) {
86
86
  n = Object.freeze(n.concat(e));
87
- const r = await ne("key", e.key, t, n);
87
+ const r = await re("key", e.key, t, n);
88
88
  if (r === M)
89
89
  return M;
90
- r === U && (e.key = null);
91
- const o = await ne("value", e.value, t, n);
90
+ r === F && (e.key = null);
91
+ const o = await re("value", e.value, t, n);
92
92
  if (o === M)
93
93
  return M;
94
- o === U && (e.value = null);
94
+ o === F && (e.value = null);
95
95
  }
96
96
  }
97
97
  return i;
98
98
  }
99
- function qt(s) {
99
+ function Rt(s) {
100
100
  return typeof s == "object" && (s.Collection || s.Node || s.Value) ? Object.assign({
101
101
  Alias: s.Node,
102
102
  Map: s.Node,
@@ -115,38 +115,38 @@ function Ut(s, e, t, n) {
115
115
  var i, r, o, l, a;
116
116
  if (typeof t == "function")
117
117
  return t(s, e, n);
118
- if (he(e))
119
- return (i = t.Map) == null ? void 0 : i.call(t, s, e, n);
120
118
  if (de(e))
119
+ return (i = t.Map) == null ? void 0 : i.call(t, s, e, n);
120
+ if (pe(e))
121
121
  return (r = t.Seq) == null ? void 0 : r.call(t, s, e, n);
122
122
  if (I(e))
123
123
  return (o = t.Pair) == null ? void 0 : o.call(t, s, e, n);
124
124
  if (E(e))
125
125
  return (l = t.Scalar) == null ? void 0 : l.call(t, s, e, n);
126
- if (Z(e))
126
+ if (x(e))
127
127
  return (a = t.Alias) == null ? void 0 : a.call(t, s, e, n);
128
128
  }
129
- function Ft(s, e, t) {
129
+ function Vt(s, e, t) {
130
130
  const n = e[e.length - 1];
131
131
  if (L(n))
132
132
  n.items[s] = t;
133
133
  else if (I(n))
134
134
  s === "key" ? n.key = t : n.value = t;
135
- else if (ue(n))
135
+ else if (ee(n))
136
136
  n.contents = t;
137
137
  else {
138
- const i = Z(n) ? "alias" : "scalar";
138
+ const i = x(n) ? "alias" : "scalar";
139
139
  throw new Error(`Cannot replace node with ${i} parent`);
140
140
  }
141
141
  }
142
- const _s = {
142
+ const Bs = {
143
143
  "!": "%21",
144
144
  ",": "%2C",
145
145
  "[": "%5B",
146
146
  "]": "%5D",
147
147
  "{": "%7B",
148
148
  "}": "%7D"
149
- }, Cs = (s) => s.replace(/[!,[\]{}]/g, (e) => _s[e]);
149
+ }, Ms = (s) => s.replace(/[!,[\]{}]/g, (e) => Bs[e]);
150
150
  class B {
151
151
  constructor(e, t) {
152
152
  this.docStart = null, this.docEnd = !1, this.yaml = Object.assign({}, B.defaultYaml, e), this.tags = Object.assign({}, B.defaultTags, t);
@@ -236,7 +236,7 @@ class B {
236
236
  tagString(e) {
237
237
  for (const [t, n] of Object.entries(this.tags))
238
238
  if (e.startsWith(n))
239
- return t + Cs(e.substring(n.length));
239
+ return t + Ms(e.substring(n.length));
240
240
  return e[0] === "!" ? e : `!<${e}>`;
241
241
  }
242
242
  toString(e) {
@@ -244,7 +244,7 @@ class B {
244
244
  let i;
245
245
  if (e && n.length > 0 && $(e.contents)) {
246
246
  const r = {};
247
- J(e.contents, (o, l) => {
247
+ G(e.contents, (o, l) => {
248
248
  $(l) && l.tag && (r[l.tag] = !0);
249
249
  }), i = Object.keys(r);
250
250
  } else
@@ -257,35 +257,35 @@ class B {
257
257
  }
258
258
  B.defaultYaml = { explicit: !1, version: "1.2" };
259
259
  B.defaultTags = { "!!": "tag:yaml.org,2002:" };
260
- function Rt(s) {
260
+ function Yt(s) {
261
261
  if (/[\x00-\x19\s,[\]{}]/.test(s)) {
262
262
  const t = `Anchor must not contain whitespace or control characters: ${JSON.stringify(s)}`;
263
263
  throw new Error(t);
264
264
  }
265
265
  return !0;
266
266
  }
267
- function Vt(s) {
267
+ function Jt(s) {
268
268
  const e = /* @__PURE__ */ new Set();
269
- return J(s, {
269
+ return G(s, {
270
270
  Value(t, n) {
271
271
  n.anchor && e.add(n.anchor);
272
272
  }
273
273
  }), e;
274
274
  }
275
- function Jt(s, e) {
275
+ function Gt(s, e) {
276
276
  for (let t = 1; ; ++t) {
277
277
  const n = `${s}${t}`;
278
278
  if (!e.has(n))
279
279
  return n;
280
280
  }
281
281
  }
282
- function vs(s, e) {
282
+ function Ks(s, e) {
283
283
  const t = [], n = /* @__PURE__ */ new Map();
284
284
  let i = null;
285
285
  return {
286
286
  onAnchor: (r) => {
287
- t.push(r), i || (i = Vt(s));
288
- const o = Jt(e, i);
287
+ t.push(r), i || (i = Jt(s));
288
+ const o = Gt(e, i);
289
289
  return i.add(o), o;
290
290
  },
291
291
  /**
@@ -307,35 +307,35 @@ function vs(s, e) {
307
307
  sourceObjects: n
308
308
  };
309
309
  }
310
- function ie(s, e, t, n) {
310
+ function oe(s, e, t, n) {
311
311
  if (n && typeof n == "object")
312
312
  if (Array.isArray(n))
313
313
  for (let i = 0, r = n.length; i < r; ++i) {
314
- const o = n[i], l = ie(s, n, String(i), o);
314
+ const o = n[i], l = oe(s, n, String(i), o);
315
315
  l === void 0 ? delete n[i] : l !== o && (n[i] = l);
316
316
  }
317
317
  else if (n instanceof Map)
318
318
  for (const i of Array.from(n.keys())) {
319
- const r = n.get(i), o = ie(s, n, i, r);
319
+ const r = n.get(i), o = oe(s, n, i, r);
320
320
  o === void 0 ? n.delete(i) : o !== r && n.set(i, o);
321
321
  }
322
322
  else if (n instanceof Set)
323
323
  for (const i of Array.from(n)) {
324
- const r = ie(s, n, i, i);
324
+ const r = oe(s, n, i, i);
325
325
  r === void 0 ? n.delete(i) : r !== i && (n.delete(i), n.add(r));
326
326
  }
327
327
  else
328
328
  for (const [i, r] of Object.entries(n)) {
329
- const o = ie(s, n, i, r);
329
+ const o = oe(s, n, i, r);
330
330
  o === void 0 ? delete n[i] : o !== r && (n[i] = o);
331
331
  }
332
332
  return s.call(e, t, n);
333
333
  }
334
- function j(s, e, t) {
334
+ function P(s, e, t) {
335
335
  if (Array.isArray(s))
336
- return s.map((n, i) => j(n, String(i), t));
336
+ return s.map((n, i) => P(n, String(i), t));
337
337
  if (s && typeof s.toJSON == "function") {
338
- if (!t || !$s(s))
338
+ if (!t || !vs(s))
339
339
  return s.toJSON(e, t);
340
340
  const n = { aliasCount: 0, count: 1, res: void 0 };
341
341
  t.anchors.set(s, n), t.onCreate = (r) => {
@@ -346,9 +346,9 @@ function j(s, e, t) {
346
346
  }
347
347
  return typeof s == "bigint" && !(t != null && t.keep) ? Number(s) : s;
348
348
  }
349
- class ht {
349
+ class pt {
350
350
  constructor(e) {
351
- Object.defineProperty(this, K, { value: e });
351
+ Object.defineProperty(this, D, { value: e });
352
352
  }
353
353
  /** Create a copy of this node. */
354
354
  clone() {
@@ -357,7 +357,7 @@ class ht {
357
357
  }
358
358
  /** A plain JavaScript representation of this node. */
359
359
  toJS(e, { mapAsMap: t, maxAliasCount: n, onAnchor: i, reviver: r } = {}) {
360
- if (!ue(e))
360
+ if (!ee(e))
361
361
  throw new TypeError("A document argument is required");
362
362
  const o = {
363
363
  anchors: /* @__PURE__ */ new Map(),
@@ -366,16 +366,16 @@ class ht {
366
366
  mapAsMap: t === !0,
367
367
  mapKeyWarned: !1,
368
368
  maxAliasCount: typeof n == "number" ? n : 100
369
- }, l = j(this, "", o);
369
+ }, l = P(this, "", o);
370
370
  if (typeof i == "function")
371
371
  for (const { count: a, res: c } of o.anchors.values())
372
372
  i(c, a);
373
- return typeof r == "function" ? ie(r, { "": l }, "", l) : l;
373
+ return typeof r == "function" ? oe(r, { "": l }, "", l) : l;
374
374
  }
375
375
  }
376
- class qe extends ht {
376
+ class Re extends pt {
377
377
  constructor(e) {
378
- super(ut), this.source = e, Object.defineProperty(this, "tag", {
378
+ super(dt), this.source = e, Object.defineProperty(this, "tag", {
379
379
  set() {
380
380
  throw new Error("Alias nodes cannot have tags");
381
381
  }
@@ -387,10 +387,10 @@ class qe extends ht {
387
387
  */
388
388
  resolve(e) {
389
389
  let t;
390
- return J(e, {
390
+ return G(e, {
391
391
  Node: (n, i) => {
392
392
  if (i === this)
393
- return J.BREAK;
393
+ return G.BREAK;
394
394
  i.anchor === this.source && (t = i);
395
395
  }
396
396
  }), t;
@@ -404,11 +404,11 @@ class qe extends ht {
404
404
  throw new ReferenceError(a);
405
405
  }
406
406
  let l = n.get(o);
407
- if (l || (j(o, null, t), l = n.get(o)), !l || l.res === void 0) {
407
+ if (l || (P(o, null, t), l = n.get(o)), !l || l.res === void 0) {
408
408
  const a = "This should not happen: Alias anchor was not resolved?";
409
409
  throw new ReferenceError(a);
410
410
  }
411
- if (r >= 0 && (l.count += 1, l.aliasCount === 0 && (l.aliasCount = _e(i, o, n)), l.count * l.aliasCount > r)) {
411
+ if (r >= 0 && (l.count += 1, l.aliasCount === 0 && (l.aliasCount = ve(i, o, n)), l.count * l.aliasCount > r)) {
412
412
  const a = "Excessive alias count indicates a resource exhaustion attack";
413
413
  throw new ReferenceError(a);
414
414
  }
@@ -417,7 +417,7 @@ class qe extends ht {
417
417
  toString(e, t, n) {
418
418
  const i = `*${this.source}`;
419
419
  if (e) {
420
- if (Rt(this.source), e.options.verifyAliasOrder && !e.anchors.has(this.source)) {
420
+ if (Yt(this.source), e.options.verifyAliasOrder && !e.anchors.has(this.source)) {
421
421
  const r = `Unresolved alias (the anchor must be set before the alias): ${this.source}`;
422
422
  throw new Error(r);
423
423
  }
@@ -427,42 +427,42 @@ class qe extends ht {
427
427
  return i;
428
428
  }
429
429
  }
430
- function _e(s, e, t) {
431
- if (Z(e)) {
430
+ function ve(s, e, t) {
431
+ if (x(e)) {
432
432
  const n = e.resolve(s), i = t && n && t.get(n);
433
433
  return i ? i.count * i.aliasCount : 0;
434
434
  } else if (L(e)) {
435
435
  let n = 0;
436
436
  for (const i of e.items) {
437
- const r = _e(s, i, t);
437
+ const r = ve(s, i, t);
438
438
  r > n && (n = r);
439
439
  }
440
440
  return n;
441
441
  } else if (I(e)) {
442
- const n = _e(s, e.key, t), i = _e(s, e.value, t);
442
+ const n = ve(s, e.key, t), i = ve(s, e.value, t);
443
443
  return Math.max(n, i);
444
444
  }
445
445
  return 1;
446
446
  }
447
- const Yt = (s) => !s || typeof s != "function" && typeof s != "object";
448
- class O extends ht {
447
+ const Qt = (s) => !s || typeof s != "function" && typeof s != "object";
448
+ class A extends pt {
449
449
  constructor(e) {
450
450
  super(R), this.value = e;
451
451
  }
452
452
  toJSON(e, t) {
453
- return t != null && t.keep ? this.value : j(this.value, e, t);
453
+ return t != null && t.keep ? this.value : P(this.value, e, t);
454
454
  }
455
455
  toString() {
456
456
  return String(this.value);
457
457
  }
458
458
  }
459
- O.BLOCK_FOLDED = "BLOCK_FOLDED";
460
- O.BLOCK_LITERAL = "BLOCK_LITERAL";
461
- O.PLAIN = "PLAIN";
462
- O.QUOTE_DOUBLE = "QUOTE_DOUBLE";
463
- O.QUOTE_SINGLE = "QUOTE_SINGLE";
464
- const Bs = "tag:yaml.org,2002:";
465
- function Ms(s, e, t) {
459
+ A.BLOCK_FOLDED = "BLOCK_FOLDED";
460
+ A.BLOCK_LITERAL = "BLOCK_LITERAL";
461
+ A.PLAIN = "PLAIN";
462
+ A.QUOTE_DOUBLE = "QUOTE_DOUBLE";
463
+ A.QUOTE_SINGLE = "QUOTE_SINGLE";
464
+ const Ps = "tag:yaml.org,2002:";
465
+ function Ds(s, e, t) {
466
466
  if (e) {
467
467
  const n = t.filter((r) => r.tag === e), i = n.find((r) => !r.format) ?? n[0];
468
468
  if (!i)
@@ -474,12 +474,12 @@ function Ms(s, e, t) {
474
474
  return ((i = n.identify) == null ? void 0 : i.call(n, s)) && !n.format;
475
475
  });
476
476
  }
477
- function Se(s, e, t) {
477
+ function ke(s, e, t) {
478
478
  var f, d, h;
479
- if (ue(s) && (s = s.contents), $(s))
479
+ if (ee(s) && (s = s.contents), $(s))
480
480
  return s;
481
481
  if (I(s)) {
482
- const y = (d = (f = t.schema[V]).createNode) == null ? void 0 : d.call(f, t.schema, null, t);
482
+ const y = (d = (f = t.schema[J]).createNode) == null ? void 0 : d.call(f, t.schema, null, t);
483
483
  return y.items.push(s), y;
484
484
  }
485
485
  (s instanceof String || s instanceof Number || s instanceof Boolean || typeof BigInt < "u" && s instanceof BigInt) && (s = s.valueOf());
@@ -487,23 +487,23 @@ function Se(s, e, t) {
487
487
  let a;
488
488
  if (n && s && typeof s == "object") {
489
489
  if (a = l.get(s), a)
490
- return a.anchor || (a.anchor = i(s)), new qe(a.anchor);
490
+ return a.anchor || (a.anchor = i(s)), new Re(a.anchor);
491
491
  a = { anchor: null, node: null }, l.set(s, a);
492
492
  }
493
- e != null && e.startsWith("!!") && (e = Bs + e.slice(2));
494
- let c = Ms(s, e, o.tags);
493
+ e != null && e.startsWith("!!") && (e = Ps + e.slice(2));
494
+ let c = Ds(s, e, o.tags);
495
495
  if (!c) {
496
496
  if (s && typeof s.toJSON == "function" && (s = s.toJSON()), !s || typeof s != "object") {
497
- const y = new O(s);
497
+ const y = new A(s);
498
498
  return a && (a.node = y), y;
499
499
  }
500
- c = s instanceof Map ? o[V] : Symbol.iterator in Object(s) ? o[fe] : o[V];
500
+ c = s instanceof Map ? o[J] : Symbol.iterator in Object(s) ? o[he] : o[J];
501
501
  }
502
502
  r && (r(c), delete t.onTagObj);
503
- const m = c != null && c.createNode ? c.createNode(t.schema, s, t) : typeof ((h = c == null ? void 0 : c.nodeClass) == null ? void 0 : h.from) == "function" ? c.nodeClass.from(t.schema, s, t) : new O(s);
504
- return e ? m.tag = e : c.default || (m.tag = c.tag), a && (a.node = m), m;
503
+ const p = c != null && c.createNode ? c.createNode(t.schema, s, t) : typeof ((h = c == null ? void 0 : c.nodeClass) == null ? void 0 : h.from) == "function" ? c.nodeClass.from(t.schema, s, t) : new A(s);
504
+ return e ? p.tag = e : c.default || (p.tag = c.tag), a && (a.node = p), p;
505
505
  }
506
- function Me(s, e, t) {
506
+ function Pe(s, e, t) {
507
507
  let n = t;
508
508
  for (let i = e.length - 1; i >= 0; --i) {
509
509
  const r = e[i];
@@ -513,7 +513,7 @@ function Me(s, e, t) {
513
513
  } else
514
514
  n = /* @__PURE__ */ new Map([[r, n]]);
515
515
  }
516
- return Se(n, void 0, {
516
+ return ke(n, void 0, {
517
517
  aliasDuplicateObjects: !1,
518
518
  keepUndefined: !1,
519
519
  onAnchor: () => {
@@ -523,8 +523,8 @@ function Me(s, e, t) {
523
523
  sourceObjects: /* @__PURE__ */ new Map()
524
524
  });
525
525
  }
526
- const be = (s) => s == null || typeof s == "object" && !!s[Symbol.iterator]().next().done;
527
- class Gt extends ht {
526
+ const we = (s) => s == null || typeof s == "object" && !!s[Symbol.iterator]().next().done;
527
+ class Wt extends pt {
528
528
  constructor(e, t) {
529
529
  super(e), Object.defineProperty(this, "schema", {
530
530
  value: t,
@@ -548,14 +548,14 @@ class Gt extends ht {
548
548
  * that already exists in the map.
549
549
  */
550
550
  addIn(e, t) {
551
- if (be(e))
551
+ if (we(e))
552
552
  this.add(t);
553
553
  else {
554
554
  const [n, ...i] = e, r = this.get(n, !0);
555
555
  if (L(r))
556
556
  r.addIn(i, t);
557
557
  else if (r === void 0 && this.schema)
558
- this.set(n, Me(this.schema, i, t));
558
+ this.set(n, Pe(this.schema, i, t));
559
559
  else
560
560
  throw new Error(`Expected YAML collection at ${n}. Remaining path: ${i}`);
561
561
  }
@@ -613,20 +613,20 @@ class Gt extends ht {
613
613
  if (L(r))
614
614
  r.setIn(i, t);
615
615
  else if (r === void 0 && this.schema)
616
- this.set(n, Me(this.schema, i, t));
616
+ this.set(n, Pe(this.schema, i, t));
617
617
  else
618
618
  throw new Error(`Expected YAML collection at ${n}. Remaining path: ${i}`);
619
619
  }
620
620
  }
621
621
  }
622
- const Ps = (s) => s.replace(/^(?!$)(?: $)?/gm, "#");
623
- function F(s, e) {
622
+ const js = (s) => s.replace(/^(?!$)(?: $)?/gm, "#");
623
+ function U(s, e) {
624
624
  return /^\n+$/.test(s) ? s.substring(1) : e ? s.replace(/^(?! *$)/gm, e) : s;
625
625
  }
626
- const W = (s, e, t) => s.endsWith(`
627
- `) ? F(t, e) : t.includes(`
626
+ const H = (s, e, t) => s.endsWith(`
627
+ `) ? U(t, e) : t.includes(`
628
628
  `) ? `
629
- ` + F(t, e) : (s.endsWith(" ") ? "" : " ") + t, Qt = "flow", ot = "block", Ce = "quoted";
629
+ ` + U(t, e) : (s.endsWith(" ") ? "" : " ") + t, Ht = "flow", at = "block", Be = "quoted";
630
630
  function Ue(s, e, t = "flow", { indentAtStart: n, lineWidth: i = 80, minContentWidth: r = 20, onFold: o, onOverflow: l } = {}) {
631
631
  if (!i || i < 0)
632
632
  return s;
@@ -634,14 +634,14 @@ function Ue(s, e, t = "flow", { indentAtStart: n, lineWidth: i = 80, minContentW
634
634
  const a = Math.max(1 + r, 1 + i - e.length);
635
635
  if (s.length <= a)
636
636
  return s;
637
- const c = [], m = {};
637
+ const c = [], p = {};
638
638
  let f = i - e.length;
639
639
  typeof n == "number" && (n > i - Math.max(2, r) ? c.push(0) : f = i - n);
640
- let d, h, y = !1, u = -1, p = -1, g = -1;
641
- t === ot && (u = It(s, u, e.length), u !== -1 && (f = u + a));
640
+ let d, h, y = !1, u = -1, m = -1, b = -1;
641
+ t === at && (u = $t(s, u, e.length), u !== -1 && (f = u + a));
642
642
  for (let N; N = s[u += 1]; ) {
643
- if (t === Ce && N === "\\") {
644
- switch (p = u, s[u + 1]) {
643
+ if (t === Be && N === "\\") {
644
+ switch (m = u, s[u + 1]) {
645
645
  case "x":
646
646
  u += 3;
647
647
  break;
@@ -654,11 +654,11 @@ function Ue(s, e, t = "flow", { indentAtStart: n, lineWidth: i = 80, minContentW
654
654
  default:
655
655
  u += 1;
656
656
  }
657
- g = u;
657
+ b = u;
658
658
  }
659
659
  if (N === `
660
660
  `)
661
- t === ot && (u = It(s, u, e.length)), f = u + e.length + a, d = void 0;
661
+ t === at && (u = $t(s, u, e.length)), f = u + e.length + a, d = void 0;
662
662
  else {
663
663
  if (N === " " && h && h !== " " && h !== `
664
664
  ` && h !== " ") {
@@ -669,13 +669,13 @@ function Ue(s, e, t = "flow", { indentAtStart: n, lineWidth: i = 80, minContentW
669
669
  if (u >= f)
670
670
  if (d)
671
671
  c.push(d), f = d + a, d = void 0;
672
- else if (t === Ce) {
672
+ else if (t === Be) {
673
673
  for (; h === " " || h === " "; )
674
674
  h = N, N = s[u += 1], y = !0;
675
- const S = u > g + 1 ? u - 2 : p - 1;
676
- if (m[S])
675
+ const S = u > b + 1 ? u - 2 : m - 1;
676
+ if (p[S])
677
677
  return s;
678
- c.push(S), m[S] = !0, f = S + a, d = void 0;
678
+ c.push(S), p[S] = !0, f = S + a, d = void 0;
679
679
  } else
680
680
  y = !0;
681
681
  }
@@ -686,14 +686,14 @@ function Ue(s, e, t = "flow", { indentAtStart: n, lineWidth: i = 80, minContentW
686
686
  o && o();
687
687
  let w = s.slice(0, c[0]);
688
688
  for (let N = 0; N < c.length; ++N) {
689
- const S = c[N], A = c[N + 1] || s.length;
689
+ const S = c[N], k = c[N + 1] || s.length;
690
690
  S === 0 ? w = `
691
- ${e}${s.slice(0, A)}` : (t === Ce && m[S] && (w += `${s[S]}\\`), w += `
692
- ${e}${s.slice(S + 1, A)}`);
691
+ ${e}${s.slice(0, k)}` : (t === Be && p[S] && (w += `${s[S]}\\`), w += `
692
+ ${e}${s.slice(S + 1, k)}`);
693
693
  }
694
694
  return w;
695
695
  }
696
- function It(s, e, t) {
696
+ function $t(s, e, t) {
697
697
  let n = e, i = e + 1, r = s[i];
698
698
  for (; r === " " || r === " "; )
699
699
  if (e < i + t)
@@ -707,12 +707,12 @@ function It(s, e, t) {
707
707
  }
708
708
  return n;
709
709
  }
710
- const Fe = (s, e) => ({
710
+ const Ve = (s, e) => ({
711
711
  indentAtStart: e ? s.indent.length : s.indentAtStart,
712
712
  lineWidth: s.options.lineWidth,
713
713
  minContentWidth: s.options.minContentWidth
714
- }), Re = (s) => /^(%|---|\.\.\.)/m.test(s);
715
- function js(s, e, t) {
714
+ }), Ye = (s) => /^(%|---|\.\.\.)/m.test(s);
715
+ function qs(s, e, t) {
716
716
  if (!e || e < 0)
717
717
  return !1;
718
718
  const n = e - t, i = s.length;
@@ -728,11 +728,11 @@ function js(s, e, t) {
728
728
  }
729
729
  return !0;
730
730
  }
731
- function we(s, e) {
731
+ function Se(s, e) {
732
732
  const t = JSON.stringify(s);
733
733
  if (e.options.doubleQuotedAsJSON)
734
734
  return t;
735
- const { implicitKey: n } = e, i = e.options.doubleQuotedMinMultiLineLength, r = e.indent || (Re(s) ? " " : "");
735
+ const { implicitKey: n } = e, i = e.options.doubleQuotedMinMultiLineLength, r = e.indent || (Ye(s) ? " " : "");
736
736
  let o = "", l = 0;
737
737
  for (let a = 0, c = t[a]; c; c = t[++a])
738
738
  if (c === " " && t[a + 1] === "\\" && t[a + 2] === "n" && (o += t.slice(l, a) + "\\ ", a += 1, l = a, c = "\\"), c === "\\")
@@ -740,8 +740,8 @@ function we(s, e) {
740
740
  case "u":
741
741
  {
742
742
  o += t.slice(l, a);
743
- const m = t.substr(a + 2, 4);
744
- switch (m) {
743
+ const p = t.substr(a + 2, 4);
744
+ switch (p) {
745
745
  case "0000":
746
746
  o += "\\0";
747
747
  break;
@@ -767,7 +767,7 @@ function we(s, e) {
767
767
  o += "\\P";
768
768
  break;
769
769
  default:
770
- m.substr(0, 2) === "00" ? o += "\\x" + m.substr(2) : o += t.substr(a, 6);
770
+ p.substr(0, 2) === "00" ? o += "\\x" + p.substr(2) : o += t.substr(a, 6);
771
771
  }
772
772
  a += 5, l = a + 1;
773
773
  }
@@ -787,43 +787,43 @@ function we(s, e) {
787
787
  default:
788
788
  a += 1;
789
789
  }
790
- return o = l ? o + t.slice(l) : t, n ? o : Ue(o, r, Ce, Fe(e, !1));
790
+ return o = l ? o + t.slice(l) : t, n ? o : Ue(o, r, Be, Ve(e, !1));
791
791
  }
792
- function lt(s, e) {
792
+ function ct(s, e) {
793
793
  if (e.options.singleQuote === !1 || e.implicitKey && s.includes(`
794
794
  `) || /[ \t]\n|\n[ \t]/.test(s))
795
- return we(s, e);
796
- const t = e.indent || (Re(s) ? " " : ""), n = "'" + s.replace(/'/g, "''").replace(/\n+/g, `$&
795
+ return Se(s, e);
796
+ const t = e.indent || (Ye(s) ? " " : ""), n = "'" + s.replace(/'/g, "''").replace(/\n+/g, `$&
797
797
  ${t}`) + "'";
798
- return e.implicitKey ? n : Ue(n, t, Qt, Fe(e, !1));
798
+ return e.implicitKey ? n : Ue(n, t, Ht, Ve(e, !1));
799
799
  }
800
- function re(s, e) {
800
+ function le(s, e) {
801
801
  const { singleQuote: t } = e.options;
802
802
  let n;
803
803
  if (t === !1)
804
- n = we;
804
+ n = Se;
805
805
  else {
806
806
  const i = s.includes('"'), r = s.includes("'");
807
- i && !r ? n = lt : r && !i ? n = we : n = t ? lt : we;
807
+ i && !r ? n = ct : r && !i ? n = Se : n = t ? ct : Se;
808
808
  }
809
809
  return n(s, e);
810
810
  }
811
- let at;
811
+ let ft;
812
812
  try {
813
- at = new RegExp(`(^|(?<!
813
+ ft = new RegExp(`(^|(?<!
814
814
  ))
815
815
  +(?!
816
816
  |$)`, "g");
817
817
  } catch {
818
- at = /\n+(?!\n|$)/g;
818
+ ft = /\n+(?!\n|$)/g;
819
819
  }
820
- function ve({ comment: s, type: e, value: t }, n, i, r) {
820
+ function Me({ comment: s, type: e, value: t }, n, i, r) {
821
821
  const { blockQuote: o, commentString: l, lineWidth: a } = n.options;
822
822
  if (!o || /\n[\t ]+$/.test(t) || /^\s*$/.test(t))
823
- return re(t, n);
824
- const c = n.indent || (n.forceBlockIndent || Re(t) ? " " : ""), m = o === "literal" ? !0 : o === "folded" || e === O.BLOCK_FOLDED ? !1 : e === O.BLOCK_LITERAL ? !0 : !js(t, a, c.length);
823
+ return le(t, n);
824
+ const c = n.indent || (n.forceBlockIndent || Ye(t) ? " " : ""), p = o === "literal" ? !0 : o === "folded" || e === A.BLOCK_FOLDED ? !1 : e === A.BLOCK_LITERAL ? !0 : !qs(t, a, c.length);
825
825
  if (!t)
826
- return m ? `|
826
+ return p ? `|
827
827
  ` : `>
828
828
  `;
829
829
  let f, d;
@@ -837,90 +837,97 @@ function ve({ comment: s, type: e, value: t }, n, i, r) {
837
837
  const y = h.indexOf(`
838
838
  `);
839
839
  y === -1 ? f = "-" : t === h || y !== h.length - 1 ? (f = "+", r && r()) : f = "", h && (t = t.slice(0, -h.length), h[h.length - 1] === `
840
- ` && (h = h.slice(0, -1)), h = h.replace(at, `$&${c}`));
841
- let u = !1, p, g = -1;
842
- for (p = 0; p < t.length; ++p) {
843
- const k = t[p];
840
+ ` && (h = h.slice(0, -1)), h = h.replace(ft, `$&${c}`));
841
+ let u = !1, m, b = -1;
842
+ for (m = 0; m < t.length; ++m) {
843
+ const k = t[m];
844
844
  if (k === " ")
845
845
  u = !0;
846
846
  else if (k === `
847
847
  `)
848
- g = p;
848
+ b = m;
849
849
  else
850
850
  break;
851
851
  }
852
- let w = t.substring(0, g < p ? g + 1 : p);
852
+ let w = t.substring(0, b < m ? b + 1 : m);
853
853
  w && (t = t.substring(w.length), w = w.replace(/\n+/g, `$&${c}`));
854
- let S = (m ? "|" : ">") + (u ? c ? "2" : "1" : "") + f;
855
- if (s && (S += " " + l(s.replace(/ ?[\r\n]+/g, " ")), i && i()), m)
856
- return t = t.replace(/\n+/g, `$&${c}`), `${S}
857
- ${c}${w}${t}${h}`;
858
- t = t.replace(/\n+/g, `
854
+ let S = (u ? c ? "2" : "1" : "") + f;
855
+ if (s && (S += " " + l(s.replace(/ ?[\r\n]+/g, " ")), i && i()), !p) {
856
+ const k = t.replace(/\n+/g, `
859
857
  $&`).replace(/(?:^|\n)([\t ].*)(?:([\n\t ]*)\n(?![\n\t ]))?/g, "$1$2").replace(/\n+/g, `$&${c}`);
860
- const A = Ue(`${w}${t}${h}`, c, ot, Fe(n, !0));
861
- return `${S}
862
- ${c}${A}`;
858
+ let O = !1;
859
+ const T = Ve(n, !0);
860
+ o !== "folded" && e !== A.BLOCK_FOLDED && (T.onOverflow = () => {
861
+ O = !0;
862
+ });
863
+ const g = Ue(`${w}${k}${h}`, c, at, T);
864
+ if (!O)
865
+ return `>${S}
866
+ ${c}${g}`;
867
+ }
868
+ return t = t.replace(/\n+/g, `$&${c}`), `|${S}
869
+ ${c}${w}${t}${h}`;
863
870
  }
864
- function Ks(s, e, t, n) {
865
- const { type: i, value: r } = s, { actualString: o, implicitKey: l, indent: a, indentStep: c, inFlow: m } = e;
871
+ function Fs(s, e, t, n) {
872
+ const { type: i, value: r } = s, { actualString: o, implicitKey: l, indent: a, indentStep: c, inFlow: p } = e;
866
873
  if (l && r.includes(`
867
- `) || m && /[[\]{},]/.test(r))
868
- return re(r, e);
874
+ `) || p && /[[\]{},]/.test(r))
875
+ return le(r, e);
869
876
  if (!r || /^[\n\t ,[\]{}#&*!|>'"%@`]|^[?-]$|^[?-][ \t]|[\n:][ \t]|[ \t]\n|[\n\t ]#|[\n\t :]$/.test(r))
870
- return l || m || !r.includes(`
871
- `) ? re(r, e) : ve(s, e, t, n);
872
- if (!l && !m && i !== O.PLAIN && r.includes(`
877
+ return l || p || !r.includes(`
878
+ `) ? le(r, e) : Me(s, e, t, n);
879
+ if (!l && !p && i !== A.PLAIN && r.includes(`
873
880
  `))
874
- return ve(s, e, t, n);
875
- if (Re(r)) {
881
+ return Me(s, e, t, n);
882
+ if (Ye(r)) {
876
883
  if (a === "")
877
- return e.forceBlockIndent = !0, ve(s, e, t, n);
884
+ return e.forceBlockIndent = !0, Me(s, e, t, n);
878
885
  if (l && a === c)
879
- return re(r, e);
886
+ return le(r, e);
880
887
  }
881
888
  const f = r.replace(/\n+/g, `$&
882
889
  ${a}`);
883
890
  if (o) {
884
891
  const d = (u) => {
885
- var p;
886
- return u.default && u.tag !== "tag:yaml.org,2002:str" && ((p = u.test) == null ? void 0 : p.test(f));
892
+ var m;
893
+ return u.default && u.tag !== "tag:yaml.org,2002:str" && ((m = u.test) == null ? void 0 : m.test(f));
887
894
  }, { compat: h, tags: y } = e.doc.schema;
888
895
  if (y.some(d) || h != null && h.some(d))
889
- return re(r, e);
896
+ return le(r, e);
890
897
  }
891
- return l ? f : Ue(f, a, Qt, Fe(e, !1));
898
+ return l ? f : Ue(f, a, Ht, Ve(e, !1));
892
899
  }
893
- function Oe(s, e, t, n) {
900
+ function Ae(s, e, t, n) {
894
901
  const { implicitKey: i, inFlow: r } = e, o = typeof s.value == "string" ? s : Object.assign({}, s, { value: String(s.value) });
895
902
  let { type: l } = s;
896
- l !== O.QUOTE_DOUBLE && /[\x00-\x08\x0b-\x1f\x7f-\x9f\u{D800}-\u{DFFF}]/u.test(o.value) && (l = O.QUOTE_DOUBLE);
897
- const a = (m) => {
898
- switch (m) {
899
- case O.BLOCK_FOLDED:
900
- case O.BLOCK_LITERAL:
901
- return i || r ? re(o.value, e) : ve(o, e, t, n);
902
- case O.QUOTE_DOUBLE:
903
- return we(o.value, e);
904
- case O.QUOTE_SINGLE:
905
- return lt(o.value, e);
906
- case O.PLAIN:
907
- return Ks(o, e, t, n);
903
+ l !== A.QUOTE_DOUBLE && /[\x00-\x08\x0b-\x1f\x7f-\x9f\u{D800}-\u{DFFF}]/u.test(o.value) && (l = A.QUOTE_DOUBLE);
904
+ const a = (p) => {
905
+ switch (p) {
906
+ case A.BLOCK_FOLDED:
907
+ case A.BLOCK_LITERAL:
908
+ return i || r ? le(o.value, e) : Me(o, e, t, n);
909
+ case A.QUOTE_DOUBLE:
910
+ return Se(o.value, e);
911
+ case A.QUOTE_SINGLE:
912
+ return ct(o.value, e);
913
+ case A.PLAIN:
914
+ return Fs(o, e, t, n);
908
915
  default:
909
916
  return null;
910
917
  }
911
918
  };
912
919
  let c = a(l);
913
920
  if (c === null) {
914
- const { defaultKeyType: m, defaultStringType: f } = e.options, d = i && m || f;
921
+ const { defaultKeyType: p, defaultStringType: f } = e.options, d = i && p || f;
915
922
  if (c = a(d), c === null)
916
923
  throw new Error(`Unsupported default string type ${d}`);
917
924
  }
918
925
  return c;
919
926
  }
920
- function Wt(s, e) {
927
+ function Xt(s, e) {
921
928
  const t = Object.assign({
922
929
  blockQuote: !0,
923
- commentString: Ps,
930
+ commentString: js,
924
931
  defaultKeyType: null,
925
932
  defaultStringType: "PLAIN",
926
933
  directives: null,
@@ -958,7 +965,7 @@ function Wt(s, e) {
958
965
  options: t
959
966
  };
960
967
  }
961
- function Ds(s, e) {
968
+ function Rs(s, e) {
962
969
  var i;
963
970
  if (e.tag) {
964
971
  const r = s.filter((o) => o.tag === e.tag);
@@ -968,10 +975,14 @@ function Ds(s, e) {
968
975
  let t, n;
969
976
  if (E(e)) {
970
977
  n = e.value;
971
- const r = s.filter((o) => {
978
+ let r = s.filter((o) => {
972
979
  var l;
973
980
  return (l = o.identify) == null ? void 0 : l.call(o, n);
974
981
  });
982
+ if (r.length > 1) {
983
+ const o = r.filter((l) => l.test);
984
+ o.length > 0 && (r = o);
985
+ }
975
986
  t = r.find((o) => o.format === e.format) ?? r.find((o) => !o.format);
976
987
  } else
977
988
  n = e, t = s.find((r) => r.nodeClass && n instanceof r.nodeClass);
@@ -981,19 +992,19 @@ function Ds(s, e) {
981
992
  }
982
993
  return t;
983
994
  }
984
- function qs(s, e, { anchors: t, doc: n }) {
995
+ function Us(s, e, { anchors: t, doc: n }) {
985
996
  if (!n.directives)
986
997
  return "";
987
998
  const i = [], r = (E(s) || L(s)) && s.anchor;
988
- r && Rt(r) && (t.add(r), i.push(`&${r}`));
999
+ r && Yt(r) && (t.add(r), i.push(`&${r}`));
989
1000
  const o = s.tag ? s.tag : e.default ? null : e.tag;
990
1001
  return o && i.push(n.directives.tagString(o)), i.join(" ");
991
1002
  }
992
- function ae(s, e, t, n) {
1003
+ function fe(s, e, t, n) {
993
1004
  var a;
994
1005
  if (I(s))
995
1006
  return s.toString(e, t, n);
996
- if (Z(s)) {
1007
+ if (x(s)) {
997
1008
  if (e.doc.directives)
998
1009
  return s.toString(e);
999
1010
  if ((a = e.resolvedAliases) != null && a.has(s))
@@ -1002,15 +1013,15 @@ function ae(s, e, t, n) {
1002
1013
  }
1003
1014
  let i;
1004
1015
  const r = $(s) ? s : e.doc.createNode(s, { onTagObj: (c) => i = c });
1005
- i || (i = Ds(e.doc.schema.tags, r));
1006
- const o = qs(r, i, e);
1016
+ i || (i = Rs(e.doc.schema.tags, r));
1017
+ const o = Us(r, i, e);
1007
1018
  o.length > 0 && (e.indentAtStart = (e.indentAtStart ?? 0) + o.length + 1);
1008
- const l = typeof i.stringify == "function" ? i.stringify(r, e, t, n) : E(r) ? Oe(r, e, t, n) : r.toString(e, t, n);
1019
+ const l = typeof i.stringify == "function" ? i.stringify(r, e, t, n) : E(r) ? Ae(r, e, t, n) : r.toString(e, t, n);
1009
1020
  return o ? E(r) || l[0] === "{" || l[0] === "[" ? `${o} ${l}` : `${o}
1010
1021
  ${e.indent}${l}` : l;
1011
1022
  }
1012
- function Us({ key: s, value: e }, t, n, i) {
1013
- const { allNullValues: r, doc: o, indent: l, indentStep: a, options: { commentString: c, indentSeq: m, simpleKeys: f } } = t;
1023
+ function Vs({ key: s, value: e }, t, n, i) {
1024
+ const { allNullValues: r, doc: o, indent: l, indentStep: a, options: { commentString: c, indentSeq: p, simpleKeys: f } } = t;
1014
1025
  let d = $(s) && s.comment || null;
1015
1026
  if (f) {
1016
1027
  if (d)
@@ -1020,80 +1031,108 @@ function Us({ key: s, value: e }, t, n, i) {
1020
1031
  throw new Error(T);
1021
1032
  }
1022
1033
  }
1023
- let h = !f && (!s || d && e == null && !t.inFlow || L(s) || (E(s) ? s.type === O.BLOCK_FOLDED || s.type === O.BLOCK_LITERAL : typeof s == "object"));
1034
+ let h = !f && (!s || d && e == null && !t.inFlow || L(s) || (E(s) ? s.type === A.BLOCK_FOLDED || s.type === A.BLOCK_LITERAL : typeof s == "object"));
1024
1035
  t = Object.assign({}, t, {
1025
1036
  allNullValues: !1,
1026
1037
  implicitKey: !h && (f || !r),
1027
1038
  indent: l + a
1028
1039
  });
1029
- let y = !1, u = !1, p = ae(s, t, () => y = !0, () => u = !0);
1030
- if (!h && !t.inFlow && p.length > 1024) {
1040
+ let y = !1, u = !1, m = fe(s, t, () => y = !0, () => u = !0);
1041
+ if (!h && !t.inFlow && m.length > 1024) {
1031
1042
  if (f)
1032
1043
  throw new Error("With simple keys, single line scalar must not span more than 1024 characters");
1033
1044
  h = !0;
1034
1045
  }
1035
1046
  if (t.inFlow) {
1036
1047
  if (r || e == null)
1037
- return y && n && n(), p === "" ? "?" : h ? `? ${p}` : p;
1048
+ return y && n && n(), m === "" ? "?" : h ? `? ${m}` : m;
1038
1049
  } else if (r && !f || e == null && h)
1039
- return p = `? ${p}`, d && !y ? p += W(p, t.indent, c(d)) : u && i && i(), p;
1040
- y && (d = null), h ? (d && (p += W(p, t.indent, c(d))), p = `? ${p}
1041
- ${l}:`) : (p = `${p}:`, d && (p += W(p, t.indent, c(d))));
1042
- let g, w, N;
1043
- $(e) ? (g = !!e.spaceBefore, w = e.commentBefore, N = e.comment) : (g = !1, w = null, N = null, e && typeof e == "object" && (e = o.createNode(e))), t.implicitKey = !1, !h && !d && E(e) && (t.indentAtStart = p.length + 1), u = !1, !m && a.length >= 2 && !t.inFlow && !h && de(e) && !e.flow && !e.tag && !e.anchor && (t.indent = t.indent.substring(2));
1050
+ return m = `? ${m}`, d && !y ? m += H(m, t.indent, c(d)) : u && i && i(), m;
1051
+ y && (d = null), h ? (d && (m += H(m, t.indent, c(d))), m = `? ${m}
1052
+ ${l}:`) : (m = `${m}:`, d && (m += H(m, t.indent, c(d))));
1053
+ let b, w, N;
1054
+ $(e) ? (b = !!e.spaceBefore, w = e.commentBefore, N = e.comment) : (b = !1, w = null, N = null, e && typeof e == "object" && (e = o.createNode(e))), t.implicitKey = !1, !h && !d && E(e) && (t.indentAtStart = m.length + 1), u = !1, !p && a.length >= 2 && !t.inFlow && !h && pe(e) && !e.flow && !e.tag && !e.anchor && (t.indent = t.indent.substring(2));
1044
1055
  let S = !1;
1045
- const A = ae(e, t, () => S = !0, () => u = !0);
1046
- let k = " ";
1047
- if (d || g || w) {
1048
- if (k = g ? `
1056
+ const k = fe(e, t, () => S = !0, () => u = !0);
1057
+ let O = " ";
1058
+ if (d || b || w) {
1059
+ if (O = b ? `
1049
1060
  ` : "", w) {
1050
1061
  const T = c(w);
1051
- k += `
1052
- ${F(T, t.indent)}`;
1062
+ O += `
1063
+ ${U(T, t.indent)}`;
1053
1064
  }
1054
- A === "" && !t.inFlow ? k === `
1055
- ` && (k = `
1065
+ k === "" && !t.inFlow ? O === `
1066
+ ` && (O = `
1056
1067
 
1057
- `) : k += `
1068
+ `) : O += `
1058
1069
  ${t.indent}`;
1059
1070
  } else if (!h && L(e)) {
1060
- const T = A[0], b = A.indexOf(`
1061
- `), _ = b !== -1, G = t.inFlow ?? e.flow ?? e.items.length === 0;
1062
- if (_ || !G) {
1063
- let x = !1;
1071
+ const T = k[0], g = k.indexOf(`
1072
+ `), _ = g !== -1, Y = t.inFlow ?? e.flow ?? e.items.length === 0;
1073
+ if (_ || !Y) {
1074
+ let te = !1;
1064
1075
  if (_ && (T === "&" || T === "!")) {
1065
- let C = A.indexOf(" ");
1066
- T === "&" && C !== -1 && C < b && A[C + 1] === "!" && (C = A.indexOf(" ", C + 1)), (C === -1 || b < C) && (x = !0);
1076
+ let C = k.indexOf(" ");
1077
+ T === "&" && C !== -1 && C < g && k[C + 1] === "!" && (C = k.indexOf(" ", C + 1)), (C === -1 || g < C) && (te = !0);
1067
1078
  }
1068
- x || (k = `
1079
+ te || (O = `
1069
1080
  ${t.indent}`);
1070
1081
  }
1071
- } else (A === "" || A[0] === `
1072
- `) && (k = "");
1073
- return p += k + A, t.inFlow ? S && n && n() : N && !S ? p += W(p, t.indent, c(N)) : u && i && i(), p;
1082
+ } else (k === "" || k[0] === `
1083
+ `) && (O = "");
1084
+ return m += O + k, t.inFlow ? S && n && n() : N && !S ? m += H(m, t.indent, c(N)) : u && i && i(), m;
1074
1085
  }
1075
- function Ht(s, e) {
1086
+ function zt(s, e) {
1076
1087
  (s === "debug" || s === "warn") && (typeof process < "u" && process.emitWarning ? process.emitWarning(e) : console.warn(e));
1077
1088
  }
1078
- const Tt = "<<";
1079
- function Xt(s, e, { key: t, value: n }) {
1080
- if (s != null && s.doc.schema.merge && Fs(t))
1081
- if (n = Z(n) ? n.resolve(s.doc) : n, de(n))
1082
- for (const i of n.items)
1083
- Ze(s, e, i);
1084
- else if (Array.isArray(n))
1085
- for (const i of n)
1086
- Ze(s, e, i);
1087
- else
1088
- Ze(s, e, n);
1089
+ const Ie = "<<", V = {
1090
+ identify: (s) => s === Ie || typeof s == "symbol" && s.description === Ie,
1091
+ default: "key",
1092
+ tag: "tag:yaml.org,2002:merge",
1093
+ test: /^<<$/,
1094
+ resolve: () => Object.assign(new A(Symbol(Ie)), {
1095
+ addToJSMap: Zt
1096
+ }),
1097
+ stringify: () => Ie
1098
+ }, Ys = (s, e) => (V.identify(e) || E(e) && (!e.type || e.type === A.PLAIN) && V.identify(e.value)) && (s == null ? void 0 : s.doc.schema.tags.some((t) => t.tag === V.tag && t.default));
1099
+ function Zt(s, e, t) {
1100
+ if (t = s && x(t) ? t.resolve(s.doc) : t, pe(t))
1101
+ for (const n of t.items)
1102
+ et(s, e, n);
1103
+ else if (Array.isArray(t))
1104
+ for (const n of t)
1105
+ et(s, e, n);
1106
+ else
1107
+ et(s, e, t);
1108
+ }
1109
+ function et(s, e, t) {
1110
+ const n = s && x(t) ? t.resolve(s.doc) : t;
1111
+ if (!de(n))
1112
+ throw new Error("Merge sources must be maps or map aliases");
1113
+ const i = n.toJSON(null, s, Map);
1114
+ for (const [r, o] of i)
1115
+ e instanceof Map ? e.has(r) || e.set(r, o) : e instanceof Set ? e.add(r) : Object.prototype.hasOwnProperty.call(e, r) || Object.defineProperty(e, r, {
1116
+ value: o,
1117
+ writable: !0,
1118
+ enumerable: !0,
1119
+ configurable: !0
1120
+ });
1121
+ return e;
1122
+ }
1123
+ function xt(s, e, { key: t, value: n }) {
1124
+ if ($(t) && t.addToJSMap)
1125
+ t.addToJSMap(s, e, n);
1126
+ else if (Ys(s, t))
1127
+ Zt(s, e, n);
1089
1128
  else {
1090
- const i = j(t, "", s);
1129
+ const i = P(t, "", s);
1091
1130
  if (e instanceof Map)
1092
- e.set(i, j(n, i, s));
1131
+ e.set(i, P(n, i, s));
1093
1132
  else if (e instanceof Set)
1094
1133
  e.add(i);
1095
1134
  else {
1096
- const r = Rs(t, i, s), o = j(n, r, s);
1135
+ const r = Js(t, i, s), o = P(n, r, s);
1097
1136
  r in e ? Object.defineProperty(e, r, {
1098
1137
  value: o,
1099
1138
  writable: !0,
@@ -1104,28 +1143,13 @@ function Xt(s, e, { key: t, value: n }) {
1104
1143
  }
1105
1144
  return e;
1106
1145
  }
1107
- const Fs = (s) => s === Tt || E(s) && s.value === Tt && (!s.type || s.type === O.PLAIN);
1108
- function Ze(s, e, t) {
1109
- const n = s && Z(t) ? t.resolve(s.doc) : t;
1110
- if (!he(n))
1111
- throw new Error("Merge sources must be maps or map aliases");
1112
- const i = n.toJSON(null, s, Map);
1113
- for (const [r, o] of i)
1114
- e instanceof Map ? e.has(r) || e.set(r, o) : e instanceof Set ? e.add(r) : Object.prototype.hasOwnProperty.call(e, r) || Object.defineProperty(e, r, {
1115
- value: o,
1116
- writable: !0,
1117
- enumerable: !0,
1118
- configurable: !0
1119
- });
1120
- return e;
1121
- }
1122
- function Rs(s, e, t) {
1146
+ function Js(s, e, t) {
1123
1147
  if (e === null)
1124
1148
  return "";
1125
1149
  if (typeof e != "object")
1126
1150
  return String(e);
1127
1151
  if ($(s) && (t != null && t.doc)) {
1128
- const n = Wt(t.doc, {});
1152
+ const n = Xt(t.doc, {});
1129
1153
  n.anchors = /* @__PURE__ */ new Set();
1130
1154
  for (const r of t.anchors.keys())
1131
1155
  n.anchors.add(r.anchor);
@@ -1133,19 +1157,19 @@ function Rs(s, e, t) {
1133
1157
  const i = s.toString(n);
1134
1158
  if (!t.mapKeyWarned) {
1135
1159
  let r = JSON.stringify(i);
1136
- r.length > 40 && (r = r.substring(0, 36) + '..."'), Ht(t.doc.options.logLevel, `Keys with collection values will be stringified due to JS Object restrictions: ${r}. Set mapAsMap: true to use object keys.`), t.mapKeyWarned = !0;
1160
+ r.length > 40 && (r = r.substring(0, 36) + '..."'), zt(t.doc.options.logLevel, `Keys with collection values will be stringified due to JS Object restrictions: ${r}. Set mapAsMap: true to use object keys.`), t.mapKeyWarned = !0;
1137
1161
  }
1138
1162
  return i;
1139
1163
  }
1140
1164
  return JSON.stringify(e);
1141
1165
  }
1142
- function dt(s, e, t) {
1143
- const n = Se(s, void 0, t), i = Se(e, void 0, t);
1166
+ function mt(s, e, t) {
1167
+ const n = ke(s, void 0, t), i = ke(e, void 0, t);
1144
1168
  return new v(n, i);
1145
1169
  }
1146
1170
  class v {
1147
1171
  constructor(e, t = null) {
1148
- Object.defineProperty(this, K, { value: Kt }), this.key = e, this.value = t;
1172
+ Object.defineProperty(this, D, { value: qt }), this.key = e, this.value = t;
1149
1173
  }
1150
1174
  clone(e) {
1151
1175
  let { key: t, value: n } = this;
@@ -1153,31 +1177,31 @@ class v {
1153
1177
  }
1154
1178
  toJSON(e, t) {
1155
1179
  const n = t != null && t.mapAsMap ? /* @__PURE__ */ new Map() : {};
1156
- return Xt(t, n, this);
1180
+ return xt(t, n, this);
1157
1181
  }
1158
1182
  toString(e, t, n) {
1159
- return e != null && e.doc ? Us(this, e, t, n) : JSON.stringify(this);
1183
+ return e != null && e.doc ? Vs(this, e, t, n) : JSON.stringify(this);
1160
1184
  }
1161
1185
  }
1162
- function zt(s, e, t) {
1163
- return (e.inFlow ?? s.flow ? Js : Vs)(s, e, t);
1186
+ function es(s, e, t) {
1187
+ return (e.inFlow ?? s.flow ? Qs : Gs)(s, e, t);
1164
1188
  }
1165
- function Vs({ comment: s, items: e }, t, { blockItemPrefix: n, flowChars: i, itemIndent: r, onChompKeep: o, onComment: l }) {
1166
- const { indent: a, options: { commentString: c } } = t, m = Object.assign({}, t, { indent: r, type: null });
1189
+ function Gs({ comment: s, items: e }, t, { blockItemPrefix: n, flowChars: i, itemIndent: r, onChompKeep: o, onComment: l }) {
1190
+ const { indent: a, options: { commentString: c } } = t, p = Object.assign({}, t, { indent: r, type: null });
1167
1191
  let f = !1;
1168
1192
  const d = [];
1169
1193
  for (let y = 0; y < e.length; ++y) {
1170
1194
  const u = e[y];
1171
- let p = null;
1195
+ let m = null;
1172
1196
  if ($(u))
1173
- !f && u.spaceBefore && d.push(""), Pe(t, d, u.commentBefore, f), u.comment && (p = u.comment);
1197
+ !f && u.spaceBefore && d.push(""), De(t, d, u.commentBefore, f), u.comment && (m = u.comment);
1174
1198
  else if (I(u)) {
1175
1199
  const w = $(u.key) ? u.key : null;
1176
- w && (!f && w.spaceBefore && d.push(""), Pe(t, d, w.commentBefore, f));
1200
+ w && (!f && w.spaceBefore && d.push(""), De(t, d, w.commentBefore, f));
1177
1201
  }
1178
1202
  f = !1;
1179
- let g = ae(u, m, () => p = null, () => f = !0);
1180
- p && (g += W(g, r, c(p))), f && p && (f = !1), d.push(n + g);
1203
+ let b = fe(u, p, () => m = null, () => f = !0);
1204
+ m && (b += H(b, r, c(m))), f && m && (f = !1), d.push(n + b);
1181
1205
  }
1182
1206
  let h;
1183
1207
  if (d.length === 0)
@@ -1192,9 +1216,9 @@ ${a}${u}` : `
1192
1216
  }
1193
1217
  }
1194
1218
  return s ? (h += `
1195
- ` + F(c(s), a), l && l()) : f && o && o(), h;
1219
+ ` + U(c(s), a), l && l()) : f && o && o(), h;
1196
1220
  }
1197
- function Js({ items: s }, e, { flowChars: t, itemIndent: n }) {
1221
+ function Qs({ items: s }, e, { flowChars: t, itemIndent: n }) {
1198
1222
  const { indent: i, indentStep: r, flowCollectionPadding: o, options: { commentString: l } } = e;
1199
1223
  n += r;
1200
1224
  const a = Object.assign({}, e, {
@@ -1202,29 +1226,29 @@ function Js({ items: s }, e, { flowChars: t, itemIndent: n }) {
1202
1226
  inFlow: !0,
1203
1227
  type: null
1204
1228
  });
1205
- let c = !1, m = 0;
1229
+ let c = !1, p = 0;
1206
1230
  const f = [];
1207
1231
  for (let y = 0; y < s.length; ++y) {
1208
1232
  const u = s[y];
1209
- let p = null;
1233
+ let m = null;
1210
1234
  if ($(u))
1211
- u.spaceBefore && f.push(""), Pe(e, f, u.commentBefore, !1), u.comment && (p = u.comment);
1235
+ u.spaceBefore && f.push(""), De(e, f, u.commentBefore, !1), u.comment && (m = u.comment);
1212
1236
  else if (I(u)) {
1213
1237
  const w = $(u.key) ? u.key : null;
1214
- w && (w.spaceBefore && f.push(""), Pe(e, f, w.commentBefore, !1), w.comment && (c = !0));
1238
+ w && (w.spaceBefore && f.push(""), De(e, f, w.commentBefore, !1), w.comment && (c = !0));
1215
1239
  const N = $(u.value) ? u.value : null;
1216
- N ? (N.comment && (p = N.comment), N.commentBefore && (c = !0)) : u.value == null && (w != null && w.comment) && (p = w.comment);
1240
+ N ? (N.comment && (m = N.comment), N.commentBefore && (c = !0)) : u.value == null && (w != null && w.comment) && (m = w.comment);
1217
1241
  }
1218
- p && (c = !0);
1219
- let g = ae(u, a, () => p = null);
1220
- y < s.length - 1 && (g += ","), p && (g += W(g, n, l(p))), !c && (f.length > m || g.includes(`
1221
- `)) && (c = !0), f.push(g), m = f.length;
1242
+ m && (c = !0);
1243
+ let b = fe(u, a, () => m = null);
1244
+ y < s.length - 1 && (b += ","), m && (b += H(b, n, l(m))), !c && (f.length > p || b.includes(`
1245
+ `)) && (c = !0), f.push(b), p = f.length;
1222
1246
  }
1223
1247
  const { start: d, end: h } = t;
1224
1248
  if (f.length === 0)
1225
1249
  return d + h;
1226
1250
  if (!c) {
1227
- const y = f.reduce((u, p) => u + p.length + 2, 2);
1251
+ const y = f.reduce((u, m) => u + m.length + 2, 2);
1228
1252
  c = e.options.lineWidth > 0 && y > e.options.lineWidth;
1229
1253
  }
1230
1254
  if (c) {
@@ -1238,24 +1262,24 @@ ${i}${h}`;
1238
1262
  } else
1239
1263
  return `${d}${o}${f.join(" ")}${o}${h}`;
1240
1264
  }
1241
- function Pe({ indent: s, options: { commentString: e } }, t, n, i) {
1265
+ function De({ indent: s, options: { commentString: e } }, t, n, i) {
1242
1266
  if (n && i && (n = n.replace(/^\n+/, "")), n) {
1243
- const r = F(e(n), s);
1267
+ const r = U(e(n), s);
1244
1268
  t.push(r.trimStart());
1245
1269
  }
1246
1270
  }
1247
- function H(s, e) {
1271
+ function X(s, e) {
1248
1272
  const t = E(e) ? e.value : e;
1249
1273
  for (const n of s)
1250
1274
  if (I(n) && (n.key === e || n.key === t || E(n.key) && n.key.value === t))
1251
1275
  return n;
1252
1276
  }
1253
- class P extends Gt {
1277
+ class K extends Wt {
1254
1278
  static get tagName() {
1255
1279
  return "tag:yaml.org,2002:map";
1256
1280
  }
1257
1281
  constructor(e) {
1258
- super(V, e), this.items = [];
1282
+ super(J, e), this.items = [];
1259
1283
  }
1260
1284
  /**
1261
1285
  * A generic collection parsing method that can be extended
@@ -1267,7 +1291,7 @@ class P extends Gt {
1267
1291
  c = r.call(t, a, c);
1268
1292
  else if (Array.isArray(r) && !r.includes(a))
1269
1293
  return;
1270
- (c !== void 0 || i) && o.items.push(dt(a, c, n));
1294
+ (c !== void 0 || i) && o.items.push(mt(a, c, n));
1271
1295
  };
1272
1296
  if (t instanceof Map)
1273
1297
  for (const [a, c] of t)
@@ -1287,11 +1311,11 @@ class P extends Gt {
1287
1311
  var o;
1288
1312
  let n;
1289
1313
  I(e) ? n = e : !e || typeof e != "object" || !("key" in e) ? n = new v(e, e == null ? void 0 : e.value) : n = new v(e.key, e.value);
1290
- const i = H(this.items, n.key), r = (o = this.schema) == null ? void 0 : o.sortMapEntries;
1314
+ const i = X(this.items, n.key), r = (o = this.schema) == null ? void 0 : o.sortMapEntries;
1291
1315
  if (i) {
1292
1316
  if (!t)
1293
1317
  throw new Error(`Key ${n.key} already set`);
1294
- E(i.value) && Yt(n.value) ? i.value.value = n.value : i.value = n.value;
1318
+ E(i.value) && Qt(n.value) ? i.value.value = n.value : i.value = n.value;
1295
1319
  } else if (r) {
1296
1320
  const l = this.items.findIndex((a) => r(n, a) < 0);
1297
1321
  l === -1 ? this.items.push(n) : this.items.splice(l, 0, n);
@@ -1299,15 +1323,15 @@ class P extends Gt {
1299
1323
  this.items.push(n);
1300
1324
  }
1301
1325
  delete(e) {
1302
- const t = H(this.items, e);
1326
+ const t = X(this.items, e);
1303
1327
  return t ? this.items.splice(this.items.indexOf(t), 1).length > 0 : !1;
1304
1328
  }
1305
1329
  get(e, t) {
1306
- const n = H(this.items, e), i = n == null ? void 0 : n.value;
1330
+ const n = X(this.items, e), i = n == null ? void 0 : n.value;
1307
1331
  return (!t && E(i) ? i.value : i) ?? void 0;
1308
1332
  }
1309
1333
  has(e) {
1310
- return !!H(this.items, e);
1334
+ return !!X(this.items, e);
1311
1335
  }
1312
1336
  set(e, t) {
1313
1337
  this.add(new v(e, t), !0);
@@ -1321,7 +1345,7 @@ class P extends Gt {
1321
1345
  const i = n ? new n() : t != null && t.mapAsMap ? /* @__PURE__ */ new Map() : {};
1322
1346
  t != null && t.onCreate && t.onCreate(i);
1323
1347
  for (const r of this.items)
1324
- Xt(t, i, r);
1348
+ xt(t, i, r);
1325
1349
  return i;
1326
1350
  }
1327
1351
  toString(e, t, n) {
@@ -1330,7 +1354,7 @@ class P extends Gt {
1330
1354
  for (const i of this.items)
1331
1355
  if (!I(i))
1332
1356
  throw new Error(`Map items must all be pairs; found ${JSON.stringify(i)} instead`);
1333
- return !e.allNullValues && this.hasAllNullValues(!1) && (e = Object.assign({}, e, { allNullValues: !0 })), zt(this, e, {
1357
+ return !e.allNullValues && this.hasAllNullValues(!1) && (e = Object.assign({}, e, { allNullValues: !0 })), es(this, e, {
1334
1358
  blockItemPrefix: "",
1335
1359
  flowChars: { start: "{", end: "}" },
1336
1360
  itemIndent: e.indent || "",
@@ -1339,22 +1363,22 @@ class P extends Gt {
1339
1363
  });
1340
1364
  }
1341
1365
  }
1342
- const pe = {
1366
+ const me = {
1343
1367
  collection: "map",
1344
1368
  default: !0,
1345
- nodeClass: P,
1369
+ nodeClass: K,
1346
1370
  tag: "tag:yaml.org,2002:map",
1347
1371
  resolve(s, e) {
1348
- return he(s) || e("Expected a mapping for this tag"), s;
1372
+ return de(s) || e("Expected a mapping for this tag"), s;
1349
1373
  },
1350
- createNode: (s, e, t) => P.from(s, e, t)
1374
+ createNode: (s, e, t) => K.from(s, e, t)
1351
1375
  };
1352
- class Y extends Gt {
1376
+ class Q extends Wt {
1353
1377
  static get tagName() {
1354
1378
  return "tag:yaml.org,2002:seq";
1355
1379
  }
1356
1380
  constructor(e) {
1357
- super(fe, e), this.items = [];
1381
+ super(he, e), this.items = [];
1358
1382
  }
1359
1383
  add(e) {
1360
1384
  this.items.push(e);
@@ -1368,11 +1392,11 @@ class Y extends Gt {
1368
1392
  * @returns `true` if the item was found and removed.
1369
1393
  */
1370
1394
  delete(e) {
1371
- const t = Ie(e);
1395
+ const t = Le(e);
1372
1396
  return typeof t != "number" ? !1 : this.items.splice(t, 1).length > 0;
1373
1397
  }
1374
1398
  get(e, t) {
1375
- const n = Ie(e);
1399
+ const n = Le(e);
1376
1400
  if (typeof n != "number")
1377
1401
  return;
1378
1402
  const i = this.items[n];
@@ -1385,7 +1409,7 @@ class Y extends Gt {
1385
1409
  * It may be wrapped in a `Scalar`.
1386
1410
  */
1387
1411
  has(e) {
1388
- const t = Ie(e);
1412
+ const t = Le(e);
1389
1413
  return typeof t == "number" && t < this.items.length;
1390
1414
  }
1391
1415
  /**
@@ -1396,22 +1420,22 @@ class Y extends Gt {
1396
1420
  * It may be wrapped in a `Scalar`.
1397
1421
  */
1398
1422
  set(e, t) {
1399
- const n = Ie(e);
1423
+ const n = Le(e);
1400
1424
  if (typeof n != "number")
1401
1425
  throw new Error(`Expected a valid index, not ${e}.`);
1402
1426
  const i = this.items[n];
1403
- E(i) && Yt(t) ? i.value = t : this.items[n] = t;
1427
+ E(i) && Qt(t) ? i.value = t : this.items[n] = t;
1404
1428
  }
1405
1429
  toJSON(e, t) {
1406
1430
  const n = [];
1407
1431
  t != null && t.onCreate && t.onCreate(n);
1408
1432
  let i = 0;
1409
1433
  for (const r of this.items)
1410
- n.push(j(r, String(i++), t));
1434
+ n.push(P(r, String(i++), t));
1411
1435
  return n;
1412
1436
  }
1413
1437
  toString(e, t, n) {
1414
- return e ? zt(this, e, {
1438
+ return e ? es(this, e, {
1415
1439
  blockItemPrefix: "- ",
1416
1440
  flowChars: { start: "[", end: "]" },
1417
1441
  itemIndent: (e.indent || "") + " ",
@@ -1428,49 +1452,49 @@ class Y extends Gt {
1428
1452
  const a = t instanceof Set ? l : String(o++);
1429
1453
  l = i.call(t, a, l);
1430
1454
  }
1431
- r.items.push(Se(l, void 0, n));
1455
+ r.items.push(ke(l, void 0, n));
1432
1456
  }
1433
1457
  }
1434
1458
  return r;
1435
1459
  }
1436
1460
  }
1437
- function Ie(s) {
1461
+ function Le(s) {
1438
1462
  let e = E(s) ? s.value : s;
1439
1463
  return e && typeof e == "string" && (e = Number(e)), typeof e == "number" && Number.isInteger(e) && e >= 0 ? e : null;
1440
1464
  }
1441
- const me = {
1465
+ const ye = {
1442
1466
  collection: "seq",
1443
1467
  default: !0,
1444
- nodeClass: Y,
1468
+ nodeClass: Q,
1445
1469
  tag: "tag:yaml.org,2002:seq",
1446
1470
  resolve(s, e) {
1447
- return de(s) || e("Expected a sequence for this tag"), s;
1471
+ return pe(s) || e("Expected a sequence for this tag"), s;
1448
1472
  },
1449
- createNode: (s, e, t) => Y.from(s, e, t)
1450
- }, Ve = {
1473
+ createNode: (s, e, t) => Q.from(s, e, t)
1474
+ }, Je = {
1451
1475
  identify: (s) => typeof s == "string",
1452
1476
  default: !0,
1453
1477
  tag: "tag:yaml.org,2002:str",
1454
1478
  resolve: (s) => s,
1455
1479
  stringify(s, e, t, n) {
1456
- return e = Object.assign({ actualString: !0 }, e), Oe(s, e, t, n);
1480
+ return e = Object.assign({ actualString: !0 }, e), Ae(s, e, t, n);
1457
1481
  }
1458
- }, Je = {
1482
+ }, Ge = {
1459
1483
  identify: (s) => s == null,
1460
- createNode: () => new O(null),
1484
+ createNode: () => new A(null),
1461
1485
  default: !0,
1462
1486
  tag: "tag:yaml.org,2002:null",
1463
1487
  test: /^(?:~|[Nn]ull|NULL)?$/,
1464
- resolve: () => new O(null),
1465
- stringify: ({ source: s }, e) => typeof s == "string" && Je.test.test(s) ? s : e.options.nullStr
1466
- }, pt = {
1488
+ resolve: () => new A(null),
1489
+ stringify: ({ source: s }, e) => typeof s == "string" && Ge.test.test(s) ? s : e.options.nullStr
1490
+ }, yt = {
1467
1491
  identify: (s) => typeof s == "boolean",
1468
1492
  default: !0,
1469
1493
  tag: "tag:yaml.org,2002:bool",
1470
1494
  test: /^(?:[Tt]rue|TRUE|[Ff]alse|FALSE)$/,
1471
- resolve: (s) => new O(s[0] === "t" || s[0] === "T"),
1495
+ resolve: (s) => new A(s[0] === "t" || s[0] === "T"),
1472
1496
  stringify({ source: s, value: e }, t) {
1473
- if (s && pt.test.test(s)) {
1497
+ if (s && yt.test.test(s)) {
1474
1498
  const n = s[0] === "t" || s[0] === "T";
1475
1499
  if (e === n)
1476
1500
  return s;
@@ -1494,14 +1518,14 @@ function q({ format: s, minFractionDigits: e, tag: t, value: n }) {
1494
1518
  }
1495
1519
  return r;
1496
1520
  }
1497
- const Zt = {
1521
+ const ts = {
1498
1522
  identify: (s) => typeof s == "number",
1499
1523
  default: !0,
1500
1524
  tag: "tag:yaml.org,2002:float",
1501
1525
  test: /^(?:[-+]?\.(?:inf|Inf|INF)|\.nan|\.NaN|\.NAN)$/,
1502
1526
  resolve: (s) => s.slice(-3).toLowerCase() === "nan" ? NaN : s[0] === "-" ? Number.NEGATIVE_INFINITY : Number.POSITIVE_INFINITY,
1503
1527
  stringify: q
1504
- }, xt = {
1528
+ }, ss = {
1505
1529
  identify: (s) => typeof s == "number",
1506
1530
  default: !0,
1507
1531
  tag: "tag:yaml.org,2002:float",
@@ -1512,92 +1536,92 @@ const Zt = {
1512
1536
  const e = Number(s.value);
1513
1537
  return isFinite(e) ? e.toExponential() : q(s);
1514
1538
  }
1515
- }, es = {
1539
+ }, ns = {
1516
1540
  identify: (s) => typeof s == "number",
1517
1541
  default: !0,
1518
1542
  tag: "tag:yaml.org,2002:float",
1519
1543
  test: /^[-+]?(?:\.[0-9]+|[0-9]+\.[0-9]*)$/,
1520
1544
  resolve(s) {
1521
- const e = new O(parseFloat(s)), t = s.indexOf(".");
1545
+ const e = new A(parseFloat(s)), t = s.indexOf(".");
1522
1546
  return t !== -1 && s[s.length - 1] === "0" && (e.minFractionDigits = s.length - t - 1), e;
1523
1547
  },
1524
1548
  stringify: q
1525
- }, Ye = (s) => typeof s == "bigint" || Number.isInteger(s), mt = (s, e, t, { intAsBigInt: n }) => n ? BigInt(s) : parseInt(s.substring(e), t);
1526
- function ts(s, e, t) {
1549
+ }, Qe = (s) => typeof s == "bigint" || Number.isInteger(s), gt = (s, e, t, { intAsBigInt: n }) => n ? BigInt(s) : parseInt(s.substring(e), t);
1550
+ function is(s, e, t) {
1527
1551
  const { value: n } = s;
1528
- return Ye(n) && n >= 0 ? t + n.toString(e) : q(s);
1552
+ return Qe(n) && n >= 0 ? t + n.toString(e) : q(s);
1529
1553
  }
1530
- const ss = {
1531
- identify: (s) => Ye(s) && s >= 0,
1554
+ const rs = {
1555
+ identify: (s) => Qe(s) && s >= 0,
1532
1556
  default: !0,
1533
1557
  tag: "tag:yaml.org,2002:int",
1534
1558
  format: "OCT",
1535
1559
  test: /^0o[0-7]+$/,
1536
- resolve: (s, e, t) => mt(s, 2, 8, t),
1537
- stringify: (s) => ts(s, 8, "0o")
1538
- }, ns = {
1539
- identify: Ye,
1560
+ resolve: (s, e, t) => gt(s, 2, 8, t),
1561
+ stringify: (s) => is(s, 8, "0o")
1562
+ }, os = {
1563
+ identify: Qe,
1540
1564
  default: !0,
1541
1565
  tag: "tag:yaml.org,2002:int",
1542
1566
  test: /^[-+]?[0-9]+$/,
1543
- resolve: (s, e, t) => mt(s, 0, 10, t),
1567
+ resolve: (s, e, t) => gt(s, 0, 10, t),
1544
1568
  stringify: q
1545
- }, is = {
1546
- identify: (s) => Ye(s) && s >= 0,
1569
+ }, ls = {
1570
+ identify: (s) => Qe(s) && s >= 0,
1547
1571
  default: !0,
1548
1572
  tag: "tag:yaml.org,2002:int",
1549
1573
  format: "HEX",
1550
1574
  test: /^0x[0-9a-fA-F]+$/,
1551
- resolve: (s, e, t) => mt(s, 2, 16, t),
1552
- stringify: (s) => ts(s, 16, "0x")
1553
- }, Ys = [
1554
- pe,
1575
+ resolve: (s, e, t) => gt(s, 2, 16, t),
1576
+ stringify: (s) => is(s, 16, "0x")
1577
+ }, Ws = [
1555
1578
  me,
1556
- Ve,
1579
+ ye,
1557
1580
  Je,
1558
- pt,
1581
+ Ge,
1582
+ yt,
1583
+ rs,
1584
+ os,
1585
+ ls,
1586
+ ts,
1559
1587
  ss,
1560
- ns,
1561
- is,
1562
- Zt,
1563
- xt,
1564
- es
1588
+ ns
1565
1589
  ];
1566
- function Lt(s) {
1590
+ function _t(s) {
1567
1591
  return typeof s == "bigint" || Number.isInteger(s);
1568
1592
  }
1569
- const Te = ({ value: s }) => JSON.stringify(s), Gs = [
1593
+ const $e = ({ value: s }) => JSON.stringify(s), Hs = [
1570
1594
  {
1571
1595
  identify: (s) => typeof s == "string",
1572
1596
  default: !0,
1573
1597
  tag: "tag:yaml.org,2002:str",
1574
1598
  resolve: (s) => s,
1575
- stringify: Te
1599
+ stringify: $e
1576
1600
  },
1577
1601
  {
1578
1602
  identify: (s) => s == null,
1579
- createNode: () => new O(null),
1603
+ createNode: () => new A(null),
1580
1604
  default: !0,
1581
1605
  tag: "tag:yaml.org,2002:null",
1582
1606
  test: /^null$/,
1583
1607
  resolve: () => null,
1584
- stringify: Te
1608
+ stringify: $e
1585
1609
  },
1586
1610
  {
1587
1611
  identify: (s) => typeof s == "boolean",
1588
1612
  default: !0,
1589
1613
  tag: "tag:yaml.org,2002:bool",
1590
- test: /^true|false$/,
1614
+ test: /^true$|^false$/,
1591
1615
  resolve: (s) => s === "true",
1592
- stringify: Te
1616
+ stringify: $e
1593
1617
  },
1594
1618
  {
1595
- identify: Lt,
1619
+ identify: _t,
1596
1620
  default: !0,
1597
1621
  tag: "tag:yaml.org,2002:int",
1598
1622
  test: /^-?(?:0|[1-9][0-9]*)$/,
1599
1623
  resolve: (s, e, { intAsBigInt: t }) => t ? BigInt(s) : parseInt(s, 10),
1600
- stringify: ({ value: s }) => Lt(s) ? s.toString() : JSON.stringify(s)
1624
+ stringify: ({ value: s }) => _t(s) ? s.toString() : JSON.stringify(s)
1601
1625
  },
1602
1626
  {
1603
1627
  identify: (s) => typeof s == "number",
@@ -1605,16 +1629,16 @@ const Te = ({ value: s }) => JSON.stringify(s), Gs = [
1605
1629
  tag: "tag:yaml.org,2002:float",
1606
1630
  test: /^-?(?:0|[1-9][0-9]*)(?:\.[0-9]*)?(?:[eE][-+]?[0-9]+)?$/,
1607
1631
  resolve: (s) => parseFloat(s),
1608
- stringify: Te
1632
+ stringify: $e
1609
1633
  }
1610
- ], Qs = {
1634
+ ], Xs = {
1611
1635
  default: !0,
1612
1636
  tag: "",
1613
1637
  test: /^/,
1614
1638
  resolve(s, e) {
1615
1639
  return e(`Unresolved plain scalar ${JSON.stringify(s)}`), s;
1616
1640
  }
1617
- }, Ws = [pe, me].concat(Gs, Qs), yt = {
1641
+ }, zs = [me, ye].concat(Hs, Xs), bt = {
1618
1642
  identify: (s) => s instanceof Uint8Array,
1619
1643
  // Buffer inherits from Uint8Array
1620
1644
  default: !1,
@@ -1650,24 +1674,24 @@ const Te = ({ value: s }) => JSON.stringify(s), Gs = [
1650
1674
  l = btoa(a);
1651
1675
  } else
1652
1676
  throw new Error("This environment does not support writing binary tags; either Buffer or btoa is required");
1653
- if (e || (e = O.BLOCK_LITERAL), e !== O.QUOTE_DOUBLE) {
1654
- const a = Math.max(n.options.lineWidth - n.indent.length, n.options.minContentWidth), c = Math.ceil(l.length / a), m = new Array(c);
1677
+ if (e || (e = A.BLOCK_LITERAL), e !== A.QUOTE_DOUBLE) {
1678
+ const a = Math.max(n.options.lineWidth - n.indent.length, n.options.minContentWidth), c = Math.ceil(l.length / a), p = new Array(c);
1655
1679
  for (let f = 0, d = 0; f < c; ++f, d += a)
1656
- m[f] = l.substr(d, a);
1657
- l = m.join(e === O.BLOCK_LITERAL ? `
1680
+ p[f] = l.substr(d, a);
1681
+ l = p.join(e === A.BLOCK_LITERAL ? `
1658
1682
  ` : " ");
1659
1683
  }
1660
- return Oe({ comment: s, type: e, value: l }, n, i, r);
1684
+ return Ae({ comment: s, type: e, value: l }, n, i, r);
1661
1685
  }
1662
1686
  };
1663
- function rs(s, e) {
1664
- if (de(s))
1687
+ function as(s, e) {
1688
+ if (pe(s))
1665
1689
  for (let t = 0; t < s.items.length; ++t) {
1666
1690
  let n = s.items[t];
1667
1691
  if (!I(n)) {
1668
- if (he(n)) {
1692
+ if (de(n)) {
1669
1693
  n.items.length > 1 && e("Each pair must have its own sequence indicator");
1670
- const i = n.items[0] || new v(new O(null));
1694
+ const i = n.items[0] || new v(new A(null));
1671
1695
  if (n.commentBefore && (i.key.commentBefore = i.key.commentBefore ? `${n.commentBefore}
1672
1696
  ${i.key.commentBefore}` : n.commentBefore), n.comment) {
1673
1697
  const r = i.value ?? i.key;
@@ -1683,8 +1707,8 @@ ${r.comment}` : n.comment;
1683
1707
  e("Expected a sequence for this tag");
1684
1708
  return s;
1685
1709
  }
1686
- function os(s, e, t) {
1687
- const { replacer: n } = t, i = new Y(s);
1710
+ function cs(s, e, t) {
1711
+ const { replacer: n } = t, i = new Q(s);
1688
1712
  i.tag = "tag:yaml.org,2002:pairs";
1689
1713
  let r = 0;
1690
1714
  if (e && Symbol.iterator in Object(e))
@@ -1704,20 +1728,20 @@ function os(s, e, t) {
1704
1728
  throw new TypeError(`Expected tuple with one key, not ${c.length} keys`);
1705
1729
  } else
1706
1730
  l = o;
1707
- i.items.push(dt(l, a, t));
1731
+ i.items.push(mt(l, a, t));
1708
1732
  }
1709
1733
  return i;
1710
1734
  }
1711
- const gt = {
1735
+ const wt = {
1712
1736
  collection: "seq",
1713
1737
  default: !1,
1714
1738
  tag: "tag:yaml.org,2002:pairs",
1715
- resolve: rs,
1716
- createNode: os
1739
+ resolve: as,
1740
+ createNode: cs
1717
1741
  };
1718
- class oe extends Y {
1742
+ class ae extends Q {
1719
1743
  constructor() {
1720
- super(), this.add = P.prototype.add.bind(this), this.delete = P.prototype.delete.bind(this), this.get = P.prototype.get.bind(this), this.has = P.prototype.has.bind(this), this.set = P.prototype.set.bind(this), this.tag = oe.tag;
1744
+ super(), this.add = K.prototype.add.bind(this), this.delete = K.prototype.delete.bind(this), this.get = K.prototype.get.bind(this), this.has = K.prototype.has.bind(this), this.set = K.prototype.set.bind(this), this.tag = ae.tag;
1721
1745
  }
1722
1746
  /**
1723
1747
  * If `ctx` is given, the return type is actually `Map<unknown, unknown>`,
@@ -1730,57 +1754,57 @@ class oe extends Y {
1730
1754
  t != null && t.onCreate && t.onCreate(n);
1731
1755
  for (const i of this.items) {
1732
1756
  let r, o;
1733
- if (I(i) ? (r = j(i.key, "", t), o = j(i.value, r, t)) : r = j(i, "", t), n.has(r))
1757
+ if (I(i) ? (r = P(i.key, "", t), o = P(i.value, r, t)) : r = P(i, "", t), n.has(r))
1734
1758
  throw new Error("Ordered maps must not include duplicate keys");
1735
1759
  n.set(r, o);
1736
1760
  }
1737
1761
  return n;
1738
1762
  }
1739
1763
  static from(e, t, n) {
1740
- const i = os(e, t, n), r = new this();
1764
+ const i = cs(e, t, n), r = new this();
1741
1765
  return r.items = i.items, r;
1742
1766
  }
1743
1767
  }
1744
- oe.tag = "tag:yaml.org,2002:omap";
1745
- const bt = {
1768
+ ae.tag = "tag:yaml.org,2002:omap";
1769
+ const St = {
1746
1770
  collection: "seq",
1747
1771
  identify: (s) => s instanceof Map,
1748
- nodeClass: oe,
1772
+ nodeClass: ae,
1749
1773
  default: !1,
1750
1774
  tag: "tag:yaml.org,2002:omap",
1751
1775
  resolve(s, e) {
1752
- const t = rs(s, e), n = [];
1776
+ const t = as(s, e), n = [];
1753
1777
  for (const { key: i } of t.items)
1754
1778
  E(i) && (n.includes(i.value) ? e(`Ordered maps must not include duplicate keys: ${i.value}`) : n.push(i.value));
1755
- return Object.assign(new oe(), t);
1779
+ return Object.assign(new ae(), t);
1756
1780
  },
1757
- createNode: (s, e, t) => oe.from(s, e, t)
1781
+ createNode: (s, e, t) => ae.from(s, e, t)
1758
1782
  };
1759
- function ls({ value: s, source: e }, t) {
1760
- return e && (s ? as : cs).test.test(e) ? e : s ? t.options.trueStr : t.options.falseStr;
1783
+ function fs({ value: s, source: e }, t) {
1784
+ return e && (s ? us : hs).test.test(e) ? e : s ? t.options.trueStr : t.options.falseStr;
1761
1785
  }
1762
- const as = {
1786
+ const us = {
1763
1787
  identify: (s) => s === !0,
1764
1788
  default: !0,
1765
1789
  tag: "tag:yaml.org,2002:bool",
1766
1790
  test: /^(?:Y|y|[Yy]es|YES|[Tt]rue|TRUE|[Oo]n|ON)$/,
1767
- resolve: () => new O(!0),
1768
- stringify: ls
1769
- }, cs = {
1791
+ resolve: () => new A(!0),
1792
+ stringify: fs
1793
+ }, hs = {
1770
1794
  identify: (s) => s === !1,
1771
1795
  default: !0,
1772
1796
  tag: "tag:yaml.org,2002:bool",
1773
1797
  test: /^(?:N|n|[Nn]o|NO|[Ff]alse|FALSE|[Oo]ff|OFF)$/,
1774
- resolve: () => new O(!1),
1775
- stringify: ls
1776
- }, Hs = {
1798
+ resolve: () => new A(!1),
1799
+ stringify: fs
1800
+ }, Zs = {
1777
1801
  identify: (s) => typeof s == "number",
1778
1802
  default: !0,
1779
1803
  tag: "tag:yaml.org,2002:float",
1780
1804
  test: /^(?:[-+]?\.(?:inf|Inf|INF)|\.nan|\.NaN|\.NAN)$/,
1781
1805
  resolve: (s) => s.slice(-3).toLowerCase() === "nan" ? NaN : s[0] === "-" ? Number.NEGATIVE_INFINITY : Number.POSITIVE_INFINITY,
1782
1806
  stringify: q
1783
- }, Xs = {
1807
+ }, xs = {
1784
1808
  identify: (s) => typeof s == "number",
1785
1809
  default: !0,
1786
1810
  tag: "tag:yaml.org,2002:float",
@@ -1791,13 +1815,13 @@ const as = {
1791
1815
  const e = Number(s.value);
1792
1816
  return isFinite(e) ? e.toExponential() : q(s);
1793
1817
  }
1794
- }, zs = {
1818
+ }, en = {
1795
1819
  identify: (s) => typeof s == "number",
1796
1820
  default: !0,
1797
1821
  tag: "tag:yaml.org,2002:float",
1798
1822
  test: /^[-+]?(?:[0-9][0-9_]*)?\.[0-9_]*$/,
1799
1823
  resolve(s) {
1800
- const e = new O(parseFloat(s.replace(/_/g, ""))), t = s.indexOf(".");
1824
+ const e = new A(parseFloat(s.replace(/_/g, ""))), t = s.indexOf(".");
1801
1825
  if (t !== -1) {
1802
1826
  const n = s.substring(t + 1).replace(/_/g, "");
1803
1827
  n[n.length - 1] === "0" && (e.minFractionDigits = n.length);
@@ -1805,8 +1829,8 @@ const as = {
1805
1829
  return e;
1806
1830
  },
1807
1831
  stringify: q
1808
- }, Ae = (s) => typeof s == "bigint" || Number.isInteger(s);
1809
- function Ge(s, e, t, { intAsBigInt: n }) {
1832
+ }, Ee = (s) => typeof s == "bigint" || Number.isInteger(s);
1833
+ function We(s, e, t, { intAsBigInt: n }) {
1810
1834
  const i = s[0];
1811
1835
  if ((i === "-" || i === "+") && (e += 1), s = s.substring(e).replace(/_/g, ""), n) {
1812
1836
  switch (t) {
@@ -1826,66 +1850,66 @@ function Ge(s, e, t, { intAsBigInt: n }) {
1826
1850
  const r = parseInt(s, t);
1827
1851
  return i === "-" ? -1 * r : r;
1828
1852
  }
1829
- function wt(s, e, t) {
1853
+ function kt(s, e, t) {
1830
1854
  const { value: n } = s;
1831
- if (Ae(n)) {
1855
+ if (Ee(n)) {
1832
1856
  const i = n.toString(e);
1833
1857
  return n < 0 ? "-" + t + i.substr(1) : t + i;
1834
1858
  }
1835
1859
  return q(s);
1836
1860
  }
1837
- const Zs = {
1838
- identify: Ae,
1861
+ const tn = {
1862
+ identify: Ee,
1839
1863
  default: !0,
1840
1864
  tag: "tag:yaml.org,2002:int",
1841
1865
  format: "BIN",
1842
1866
  test: /^[-+]?0b[0-1_]+$/,
1843
- resolve: (s, e, t) => Ge(s, 2, 2, t),
1844
- stringify: (s) => wt(s, 2, "0b")
1845
- }, xs = {
1846
- identify: Ae,
1867
+ resolve: (s, e, t) => We(s, 2, 2, t),
1868
+ stringify: (s) => kt(s, 2, "0b")
1869
+ }, sn = {
1870
+ identify: Ee,
1847
1871
  default: !0,
1848
1872
  tag: "tag:yaml.org,2002:int",
1849
1873
  format: "OCT",
1850
1874
  test: /^[-+]?0[0-7_]+$/,
1851
- resolve: (s, e, t) => Ge(s, 1, 8, t),
1852
- stringify: (s) => wt(s, 8, "0")
1853
- }, en = {
1854
- identify: Ae,
1875
+ resolve: (s, e, t) => We(s, 1, 8, t),
1876
+ stringify: (s) => kt(s, 8, "0")
1877
+ }, nn = {
1878
+ identify: Ee,
1855
1879
  default: !0,
1856
1880
  tag: "tag:yaml.org,2002:int",
1857
1881
  test: /^[-+]?[0-9][0-9_]*$/,
1858
- resolve: (s, e, t) => Ge(s, 0, 10, t),
1882
+ resolve: (s, e, t) => We(s, 0, 10, t),
1859
1883
  stringify: q
1860
- }, tn = {
1861
- identify: Ae,
1884
+ }, rn = {
1885
+ identify: Ee,
1862
1886
  default: !0,
1863
1887
  tag: "tag:yaml.org,2002:int",
1864
1888
  format: "HEX",
1865
1889
  test: /^[-+]?0x[0-9a-fA-F_]+$/,
1866
- resolve: (s, e, t) => Ge(s, 2, 16, t),
1867
- stringify: (s) => wt(s, 16, "0x")
1890
+ resolve: (s, e, t) => We(s, 2, 16, t),
1891
+ stringify: (s) => kt(s, 16, "0x")
1868
1892
  };
1869
- class le extends P {
1893
+ class ce extends K {
1870
1894
  constructor(e) {
1871
- super(e), this.tag = le.tag;
1895
+ super(e), this.tag = ce.tag;
1872
1896
  }
1873
1897
  add(e) {
1874
1898
  let t;
1875
- I(e) ? t = e : e && typeof e == "object" && "key" in e && "value" in e && e.value === null ? t = new v(e.key, null) : t = new v(e, null), H(this.items, t.key) || this.items.push(t);
1899
+ I(e) ? t = e : e && typeof e == "object" && "key" in e && "value" in e && e.value === null ? t = new v(e.key, null) : t = new v(e, null), X(this.items, t.key) || this.items.push(t);
1876
1900
  }
1877
1901
  /**
1878
1902
  * If `keepPair` is `true`, returns the Pair matching `key`.
1879
1903
  * Otherwise, returns the value of that Pair's key.
1880
1904
  */
1881
1905
  get(e, t) {
1882
- const n = H(this.items, e);
1906
+ const n = X(this.items, e);
1883
1907
  return !t && I(n) ? E(n.key) ? n.key.value : n.key : n;
1884
1908
  }
1885
1909
  set(e, t) {
1886
1910
  if (typeof t != "boolean")
1887
1911
  throw new Error(`Expected boolean value for set(key, value) in a YAML set, not ${typeof t}`);
1888
- const n = H(this.items, e);
1912
+ const n = X(this.items, e);
1889
1913
  n && !t ? this.items.splice(this.items.indexOf(n), 1) : !n && t && this.items.push(new v(e));
1890
1914
  }
1891
1915
  toJSON(e, t) {
@@ -1902,33 +1926,33 @@ class le extends P {
1902
1926
  const { replacer: i } = n, r = new this(e);
1903
1927
  if (t && Symbol.iterator in Object(t))
1904
1928
  for (let o of t)
1905
- typeof i == "function" && (o = i.call(t, o, o)), r.items.push(dt(o, null, n));
1929
+ typeof i == "function" && (o = i.call(t, o, o)), r.items.push(mt(o, null, n));
1906
1930
  return r;
1907
1931
  }
1908
1932
  }
1909
- le.tag = "tag:yaml.org,2002:set";
1910
- const St = {
1933
+ ce.tag = "tag:yaml.org,2002:set";
1934
+ const Nt = {
1911
1935
  collection: "map",
1912
1936
  identify: (s) => s instanceof Set,
1913
- nodeClass: le,
1937
+ nodeClass: ce,
1914
1938
  default: !1,
1915
1939
  tag: "tag:yaml.org,2002:set",
1916
- createNode: (s, e, t) => le.from(s, e, t),
1940
+ createNode: (s, e, t) => ce.from(s, e, t),
1917
1941
  resolve(s, e) {
1918
- if (he(s)) {
1942
+ if (de(s)) {
1919
1943
  if (s.hasAllNullValues(!0))
1920
- return Object.assign(new le(), s);
1944
+ return Object.assign(new ce(), s);
1921
1945
  e("Set items must all have null values");
1922
1946
  } else
1923
1947
  e("Expected a mapping for this tag");
1924
1948
  return s;
1925
1949
  }
1926
1950
  };
1927
- function kt(s, e) {
1951
+ function Ot(s, e) {
1928
1952
  const t = s[0], n = t === "-" || t === "+" ? s.substring(1) : s, i = (o) => e ? BigInt(o) : Number(o), r = n.replace(/_/g, "").split(":").reduce((o, l) => o * i(60) + i(l), i(0));
1929
1953
  return t === "-" ? i(-1) * r : r;
1930
1954
  }
1931
- function fs(s) {
1955
+ function ds(s) {
1932
1956
  let { value: e } = s, t = (o) => o;
1933
1957
  if (typeof e == "bigint")
1934
1958
  t = (o) => BigInt(o);
@@ -1939,23 +1963,23 @@ function fs(s) {
1939
1963
  const i = t(60), r = [e % i];
1940
1964
  return e < 60 ? r.unshift(0) : (e = (e - r[0]) / i, r.unshift(e % i), e >= 60 && (e = (e - r[0]) / i, r.unshift(e))), n + r.map((o) => String(o).padStart(2, "0")).join(":").replace(/000000\d*$/, "");
1941
1965
  }
1942
- const us = {
1966
+ const ps = {
1943
1967
  identify: (s) => typeof s == "bigint" || Number.isInteger(s),
1944
1968
  default: !0,
1945
1969
  tag: "tag:yaml.org,2002:int",
1946
1970
  format: "TIME",
1947
1971
  test: /^[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+$/,
1948
- resolve: (s, e, { intAsBigInt: t }) => kt(s, t),
1949
- stringify: fs
1950
- }, hs = {
1972
+ resolve: (s, e, { intAsBigInt: t }) => Ot(s, t),
1973
+ stringify: ds
1974
+ }, ms = {
1951
1975
  identify: (s) => typeof s == "number",
1952
1976
  default: !0,
1953
1977
  tag: "tag:yaml.org,2002:float",
1954
1978
  format: "TIME",
1955
1979
  test: /^[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+\.[0-9_]*$/,
1956
- resolve: (s) => kt(s, !1),
1957
- stringify: fs
1958
- }, Qe = {
1980
+ resolve: (s) => Ot(s, !1),
1981
+ stringify: ds
1982
+ }, He = {
1959
1983
  identify: (s) => s instanceof Date,
1960
1984
  default: !0,
1961
1985
  tag: "tag:yaml.org,2002:timestamp",
@@ -1964,105 +1988,110 @@ const us = {
1964
1988
  // assumed to be 00:00:00Z (start of day, UTC).
1965
1989
  test: RegExp("^([0-9]{4})-([0-9]{1,2})-([0-9]{1,2})(?:(?:t|T|[ \\t]+)([0-9]{1,2}):([0-9]{1,2}):([0-9]{1,2}(\\.[0-9]+)?)(?:[ \\t]*(Z|[-+][012]?[0-9](?::[0-9]{2})?))?)?$"),
1966
1990
  resolve(s) {
1967
- const e = s.match(Qe.test);
1991
+ const e = s.match(He.test);
1968
1992
  if (!e)
1969
1993
  throw new Error("!!timestamp expects a date, starting with yyyy-mm-dd");
1970
1994
  const [, t, n, i, r, o, l] = e.map(Number), a = e[7] ? Number((e[7] + "00").substr(1, 3)) : 0;
1971
1995
  let c = Date.UTC(t, n - 1, i, r || 0, o || 0, l || 0, a);
1972
- const m = e[8];
1973
- if (m && m !== "Z") {
1974
- let f = kt(m, !1);
1996
+ const p = e[8];
1997
+ if (p && p !== "Z") {
1998
+ let f = Ot(p, !1);
1975
1999
  Math.abs(f) < 30 && (f *= 60), c -= 6e4 * f;
1976
2000
  }
1977
2001
  return new Date(c);
1978
2002
  },
1979
- stringify: ({ value: s }) => s.toISOString().replace(/((T00:00)?:00)?\.000Z$/, "")
1980
- }, $t = [
1981
- pe,
2003
+ stringify: ({ value: s }) => s.toISOString().replace(/(T00:00:00)?\.000Z$/, "")
2004
+ }, Ct = [
1982
2005
  me,
1983
- Ve,
2006
+ ye,
1984
2007
  Je,
1985
- as,
1986
- cs,
2008
+ Ge,
2009
+ us,
2010
+ hs,
2011
+ tn,
2012
+ sn,
2013
+ nn,
2014
+ rn,
1987
2015
  Zs,
1988
2016
  xs,
1989
2017
  en,
1990
- tn,
1991
- Hs,
1992
- Xs,
1993
- zs,
1994
- yt,
1995
2018
  bt,
1996
- gt,
2019
+ V,
1997
2020
  St,
1998
- us,
1999
- hs,
2000
- Qe
2001
- ], _t = /* @__PURE__ */ new Map([
2002
- ["core", Ys],
2003
- ["failsafe", [pe, me, Ve]],
2004
- ["json", Ws],
2005
- ["yaml11", $t],
2006
- ["yaml-1.1", $t]
2007
- ]), Ct = {
2008
- binary: yt,
2009
- bool: pt,
2010
- float: es,
2011
- floatExp: xt,
2012
- floatNaN: Zt,
2013
- floatTime: hs,
2014
- int: ns,
2015
- intHex: is,
2016
- intOct: ss,
2017
- intTime: us,
2018
- map: pe,
2019
- null: Je,
2020
- omap: bt,
2021
- pairs: gt,
2022
- seq: me,
2023
- set: St,
2024
- timestamp: Qe
2025
- }, sn = {
2026
- "tag:yaml.org,2002:binary": yt,
2027
- "tag:yaml.org,2002:omap": bt,
2028
- "tag:yaml.org,2002:pairs": gt,
2029
- "tag:yaml.org,2002:set": St,
2030
- "tag:yaml.org,2002:timestamp": Qe
2021
+ wt,
2022
+ Nt,
2023
+ ps,
2024
+ ms,
2025
+ He
2026
+ ], vt = /* @__PURE__ */ new Map([
2027
+ ["core", Ws],
2028
+ ["failsafe", [me, ye, Je]],
2029
+ ["json", zs],
2030
+ ["yaml11", Ct],
2031
+ ["yaml-1.1", Ct]
2032
+ ]), Bt = {
2033
+ binary: bt,
2034
+ bool: yt,
2035
+ float: ns,
2036
+ floatExp: ss,
2037
+ floatNaN: ts,
2038
+ floatTime: ms,
2039
+ int: os,
2040
+ intHex: ls,
2041
+ intOct: rs,
2042
+ intTime: ps,
2043
+ map: me,
2044
+ merge: V,
2045
+ null: Ge,
2046
+ omap: St,
2047
+ pairs: wt,
2048
+ seq: ye,
2049
+ set: Nt,
2050
+ timestamp: He
2051
+ }, on = {
2052
+ "tag:yaml.org,2002:binary": bt,
2053
+ "tag:yaml.org,2002:merge": V,
2054
+ "tag:yaml.org,2002:omap": St,
2055
+ "tag:yaml.org,2002:pairs": wt,
2056
+ "tag:yaml.org,2002:set": Nt,
2057
+ "tag:yaml.org,2002:timestamp": He
2031
2058
  };
2032
- function xe(s, e) {
2033
- let t = _t.get(e);
2034
- if (!t)
2059
+ function tt(s, e, t) {
2060
+ const n = vt.get(e);
2061
+ if (n && !s)
2062
+ return t && !n.includes(V) ? n.concat(V) : n.slice();
2063
+ let i = n;
2064
+ if (!i)
2035
2065
  if (Array.isArray(s))
2036
- t = [];
2066
+ i = [];
2037
2067
  else {
2038
- const n = Array.from(_t.keys()).filter((i) => i !== "yaml11").map((i) => JSON.stringify(i)).join(", ");
2039
- throw new Error(`Unknown schema "${e}"; use one of ${n} or define customTags array`);
2068
+ const r = Array.from(vt.keys()).filter((o) => o !== "yaml11").map((o) => JSON.stringify(o)).join(", ");
2069
+ throw new Error(`Unknown schema "${e}"; use one of ${r} or define customTags array`);
2040
2070
  }
2041
2071
  if (Array.isArray(s))
2042
- for (const n of s)
2043
- t = t.concat(n);
2044
- else typeof s == "function" && (t = s(t.slice()));
2045
- return t.map((n) => {
2046
- if (typeof n != "string")
2047
- return n;
2048
- const i = Ct[n];
2049
- if (i)
2050
- return i;
2051
- const r = Object.keys(Ct).map((o) => JSON.stringify(o)).join(", ");
2052
- throw new Error(`Unknown custom tag "${n}"; use one of ${r}`);
2053
- });
2072
+ for (const r of s)
2073
+ i = i.concat(r);
2074
+ else typeof s == "function" && (i = s(i.slice()));
2075
+ return t && (i = i.concat(V)), i.reduce((r, o) => {
2076
+ const l = typeof o == "string" ? Bt[o] : o;
2077
+ if (!l) {
2078
+ const a = JSON.stringify(o), c = Object.keys(Bt).map((p) => JSON.stringify(p)).join(", ");
2079
+ throw new Error(`Unknown custom tag ${a}; use one of ${c}`);
2080
+ }
2081
+ return r.includes(l) || r.push(l), r;
2082
+ }, []);
2054
2083
  }
2055
- const nn = (s, e) => s.key < e.key ? -1 : s.key > e.key ? 1 : 0;
2056
- class We {
2084
+ const ln = (s, e) => s.key < e.key ? -1 : s.key > e.key ? 1 : 0;
2085
+ class Xe {
2057
2086
  constructor({ compat: e, customTags: t, merge: n, resolveKnownTags: i, schema: r, sortMapEntries: o, toStringDefaults: l }) {
2058
- this.compat = Array.isArray(e) ? xe(e, "compat") : e ? xe(null, e) : null, this.merge = !!n, this.name = typeof r == "string" && r || "core", this.knownTags = i ? sn : {}, this.tags = xe(t, this.name), this.toStringOptions = l ?? null, Object.defineProperty(this, V, { value: pe }), Object.defineProperty(this, R, { value: Ve }), Object.defineProperty(this, fe, { value: me }), this.sortMapEntries = typeof o == "function" ? o : o === !0 ? nn : null;
2087
+ this.compat = Array.isArray(e) ? tt(e, "compat") : e ? tt(null, e) : null, this.name = typeof r == "string" && r || "core", this.knownTags = i ? on : {}, this.tags = tt(t, this.name, n), this.toStringOptions = l ?? null, Object.defineProperty(this, J, { value: me }), Object.defineProperty(this, R, { value: Je }), Object.defineProperty(this, he, { value: ye }), this.sortMapEntries = typeof o == "function" ? o : o === !0 ? ln : null;
2059
2088
  }
2060
2089
  clone() {
2061
- const e = Object.create(We.prototype, Object.getOwnPropertyDescriptors(this));
2090
+ const e = Object.create(Xe.prototype, Object.getOwnPropertyDescriptors(this));
2062
2091
  return e.tags = this.tags.slice(), e;
2063
2092
  }
2064
2093
  }
2065
- function rn(s, e) {
2094
+ function an(s, e) {
2066
2095
  var a;
2067
2096
  const t = [];
2068
2097
  let n = e.directives === !0;
@@ -2071,44 +2100,44 @@ function rn(s, e) {
2071
2100
  c ? (t.push(c), n = !0) : s.directives.docStart && (n = !0);
2072
2101
  }
2073
2102
  n && t.push("---");
2074
- const i = Wt(s, e), { commentString: r } = i.options;
2103
+ const i = Xt(s, e), { commentString: r } = i.options;
2075
2104
  if (s.commentBefore) {
2076
2105
  t.length !== 1 && t.unshift("");
2077
2106
  const c = r(s.commentBefore);
2078
- t.unshift(F(c, ""));
2107
+ t.unshift(U(c, ""));
2079
2108
  }
2080
2109
  let o = !1, l = null;
2081
2110
  if (s.contents) {
2082
2111
  if ($(s.contents)) {
2083
2112
  if (s.contents.spaceBefore && n && t.push(""), s.contents.commentBefore) {
2084
2113
  const f = r(s.contents.commentBefore);
2085
- t.push(F(f, ""));
2114
+ t.push(U(f, ""));
2086
2115
  }
2087
2116
  i.forceBlockIndent = !!s.comment, l = s.contents.comment;
2088
2117
  }
2089
2118
  const c = l ? void 0 : () => o = !0;
2090
- let m = ae(s.contents, i, () => l = null, c);
2091
- l && (m += W(m, "", r(l))), (m[0] === "|" || m[0] === ">") && t[t.length - 1] === "---" ? t[t.length - 1] = `--- ${m}` : t.push(m);
2119
+ let p = fe(s.contents, i, () => l = null, c);
2120
+ l && (p += H(p, "", r(l))), (p[0] === "|" || p[0] === ">") && t[t.length - 1] === "---" ? t[t.length - 1] = `--- ${p}` : t.push(p);
2092
2121
  } else
2093
- t.push(ae(s.contents, i));
2122
+ t.push(fe(s.contents, i));
2094
2123
  if ((a = s.directives) != null && a.docEnd)
2095
2124
  if (s.comment) {
2096
2125
  const c = r(s.comment);
2097
2126
  c.includes(`
2098
- `) ? (t.push("..."), t.push(F(c, ""))) : t.push(`... ${c}`);
2127
+ `) ? (t.push("..."), t.push(U(c, ""))) : t.push(`... ${c}`);
2099
2128
  } else
2100
2129
  t.push("...");
2101
2130
  else {
2102
2131
  let c = s.comment;
2103
- c && o && (c = c.replace(/^\n+/, "")), c && ((!o || l) && t[t.length - 1] !== "" && t.push(""), t.push(F(r(c), "")));
2132
+ c && o && (c = c.replace(/^\n+/, "")), c && ((!o || l) && t[t.length - 1] !== "" && t.push(""), t.push(U(r(c), "")));
2104
2133
  }
2105
2134
  return t.join(`
2106
2135
  `) + `
2107
2136
  `;
2108
2137
  }
2109
- class ye {
2138
+ class ge {
2110
2139
  constructor(e, t, n) {
2111
- this.commentBefore = null, this.comment = null, this.errors = [], this.warnings = [], Object.defineProperty(this, K, { value: rt });
2140
+ this.commentBefore = null, this.comment = null, this.errors = [], this.warnings = [], Object.defineProperty(this, D, { value: lt });
2112
2141
  let i = null;
2113
2142
  typeof t == "function" || Array.isArray(t) ? i = t : n === void 0 && t && (n = t, t = void 0);
2114
2143
  const r = Object.assign({
@@ -2117,6 +2146,7 @@ class ye {
2117
2146
  logLevel: "warn",
2118
2147
  prettyErrors: !0,
2119
2148
  strict: !0,
2149
+ stringKeys: !1,
2120
2150
  uniqueKeys: !0,
2121
2151
  version: "1.2"
2122
2152
  }, n);
@@ -2130,18 +2160,18 @@ class ye {
2130
2160
  * Custom Node values that inherit from `Object` still refer to their original instances.
2131
2161
  */
2132
2162
  clone() {
2133
- const e = Object.create(ye.prototype, {
2134
- [K]: { value: rt }
2163
+ const e = Object.create(ge.prototype, {
2164
+ [D]: { value: lt }
2135
2165
  });
2136
2166
  return e.commentBefore = this.commentBefore, e.comment = this.comment, e.errors = this.errors.slice(), e.warnings = this.warnings.slice(), e.options = Object.assign({}, this.options), this.directives && (e.directives = this.directives.clone()), e.schema = this.schema.clone(), e.contents = $(this.contents) ? this.contents.clone(e.schema) : this.contents, this.range && (e.range = this.range.slice()), e;
2137
2167
  }
2138
2168
  /** Adds a value to the document. */
2139
2169
  add(e) {
2140
- ee(this.contents) && this.contents.add(e);
2170
+ se(this.contents) && this.contents.add(e);
2141
2171
  }
2142
2172
  /** Adds a value to the document. */
2143
2173
  addIn(e, t) {
2144
- ee(this.contents) && this.contents.addIn(e, t);
2174
+ se(this.contents) && this.contents.addIn(e, t);
2145
2175
  }
2146
2176
  /**
2147
2177
  * Create a new `Alias` node, ensuring that the target `node` has the required anchor.
@@ -2154,21 +2184,21 @@ class ye {
2154
2184
  */
2155
2185
  createAlias(e, t) {
2156
2186
  if (!e.anchor) {
2157
- const n = Vt(this);
2187
+ const n = Jt(this);
2158
2188
  e.anchor = // eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
2159
- !t || n.has(t) ? Jt(t || "a", n) : t;
2189
+ !t || n.has(t) ? Gt(t || "a", n) : t;
2160
2190
  }
2161
- return new qe(e.anchor);
2191
+ return new Re(e.anchor);
2162
2192
  }
2163
2193
  createNode(e, t, n) {
2164
2194
  let i;
2165
2195
  if (typeof t == "function")
2166
2196
  e = t.call({ "": e }, "", e), i = t;
2167
2197
  else if (Array.isArray(t)) {
2168
- const p = (w) => typeof w == "number" || w instanceof String || w instanceof Number, g = t.filter(p).map(String);
2169
- g.length > 0 && (t = t.concat(g)), i = t;
2198
+ const m = (w) => typeof w == "number" || w instanceof String || w instanceof Number, b = t.filter(m).map(String);
2199
+ b.length > 0 && (t = t.concat(b)), i = t;
2170
2200
  } else n === void 0 && t && (n = t, t = void 0);
2171
- const { aliasDuplicateObjects: r, anchorPrefix: o, flow: l, keepUndefined: a, onTagObj: c, tag: m } = n ?? {}, { onAnchor: f, setAnchors: d, sourceObjects: h } = vs(
2201
+ const { aliasDuplicateObjects: r, anchorPrefix: o, flow: l, keepUndefined: a, onTagObj: c, tag: p } = n ?? {}, { onAnchor: f, setAnchors: d, sourceObjects: h } = Ks(
2172
2202
  this,
2173
2203
  // eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
2174
2204
  o || "a"
@@ -2180,7 +2210,7 @@ class ye {
2180
2210
  replacer: i,
2181
2211
  schema: this.schema,
2182
2212
  sourceObjects: h
2183
- }, u = Se(e, m, y);
2213
+ }, u = ke(e, p, y);
2184
2214
  return l && L(u) && (u.flow = !0), d(), u;
2185
2215
  }
2186
2216
  /**
@@ -2196,14 +2226,14 @@ class ye {
2196
2226
  * @returns `true` if the item was found and removed.
2197
2227
  */
2198
2228
  delete(e) {
2199
- return ee(this.contents) ? this.contents.delete(e) : !1;
2229
+ return se(this.contents) ? this.contents.delete(e) : !1;
2200
2230
  }
2201
2231
  /**
2202
2232
  * Removes a value from the document.
2203
2233
  * @returns `true` if the item was found and removed.
2204
2234
  */
2205
2235
  deleteIn(e) {
2206
- return be(e) ? this.contents == null ? !1 : (this.contents = null, !0) : ee(this.contents) ? this.contents.deleteIn(e) : !1;
2236
+ return we(e) ? this.contents == null ? !1 : (this.contents = null, !0) : se(this.contents) ? this.contents.deleteIn(e) : !1;
2207
2237
  }
2208
2238
  /**
2209
2239
  * Returns item at `key`, or `undefined` if not found. By default unwraps
@@ -2219,7 +2249,7 @@ class ye {
2219
2249
  * `true` (collections are always returned intact).
2220
2250
  */
2221
2251
  getIn(e, t) {
2222
- return be(e) ? !t && E(this.contents) ? this.contents.value : this.contents : L(this.contents) ? this.contents.getIn(e, t) : void 0;
2252
+ return we(e) ? !t && E(this.contents) ? this.contents.value : this.contents : L(this.contents) ? this.contents.getIn(e, t) : void 0;
2223
2253
  }
2224
2254
  /**
2225
2255
  * Checks if the document includes a value with the key `key`.
@@ -2231,21 +2261,21 @@ class ye {
2231
2261
  * Checks if the document includes a value at `path`.
2232
2262
  */
2233
2263
  hasIn(e) {
2234
- return be(e) ? this.contents !== void 0 : L(this.contents) ? this.contents.hasIn(e) : !1;
2264
+ return we(e) ? this.contents !== void 0 : L(this.contents) ? this.contents.hasIn(e) : !1;
2235
2265
  }
2236
2266
  /**
2237
2267
  * Sets a value in this document. For `!!set`, `value` needs to be a
2238
2268
  * boolean to add/remove the item from the set.
2239
2269
  */
2240
2270
  set(e, t) {
2241
- this.contents == null ? this.contents = Me(this.schema, [e], t) : ee(this.contents) && this.contents.set(e, t);
2271
+ this.contents == null ? this.contents = Pe(this.schema, [e], t) : se(this.contents) && this.contents.set(e, t);
2242
2272
  }
2243
2273
  /**
2244
2274
  * Sets a value in this document. For `!!set`, `value` needs to be a
2245
2275
  * boolean to add/remove the item from the set.
2246
2276
  */
2247
2277
  setIn(e, t) {
2248
- be(e) ? this.contents = t : this.contents == null ? this.contents = Me(this.schema, Array.from(e), t) : ee(this.contents) && this.contents.setIn(e, t);
2278
+ we(e) ? this.contents = t : this.contents == null ? this.contents = Pe(this.schema, Array.from(e), t) : se(this.contents) && this.contents.setIn(e, t);
2249
2279
  }
2250
2280
  /**
2251
2281
  * Change the YAML version and schema used by the document.
@@ -2259,11 +2289,11 @@ class ye {
2259
2289
  let n;
2260
2290
  switch (e) {
2261
2291
  case "1.1":
2262
- this.directives ? this.directives.yaml.version = "1.1" : this.directives = new B({ version: "1.1" }), n = { merge: !0, resolveKnownTags: !1, schema: "yaml-1.1" };
2292
+ this.directives ? this.directives.yaml.version = "1.1" : this.directives = new B({ version: "1.1" }), n = { resolveKnownTags: !1, schema: "yaml-1.1" };
2263
2293
  break;
2264
2294
  case "1.2":
2265
2295
  case "next":
2266
- this.directives ? this.directives.yaml.version = e : this.directives = new B({ version: e }), n = { merge: !1, resolveKnownTags: !0, schema: "core" };
2296
+ this.directives ? this.directives.yaml.version = e : this.directives = new B({ version: e }), n = { resolveKnownTags: !0, schema: "core" };
2267
2297
  break;
2268
2298
  case null:
2269
2299
  this.directives && delete this.directives, n = null;
@@ -2276,7 +2306,7 @@ class ye {
2276
2306
  if (t.schema instanceof Object)
2277
2307
  this.schema = t.schema;
2278
2308
  else if (n)
2279
- this.schema = new We(Object.assign(n, t));
2309
+ this.schema = new Xe(Object.assign(n, t));
2280
2310
  else
2281
2311
  throw new Error("With a null YAML version, the { schema: Schema } option is required");
2282
2312
  }
@@ -2289,11 +2319,11 @@ class ye {
2289
2319
  mapAsMap: n === !0,
2290
2320
  mapKeyWarned: !1,
2291
2321
  maxAliasCount: typeof i == "number" ? i : 100
2292
- }, a = j(this.contents, t ?? "", l);
2322
+ }, a = P(this.contents, t ?? "", l);
2293
2323
  if (typeof r == "function")
2294
- for (const { count: c, res: m } of l.anchors.values())
2295
- r(m, c);
2296
- return typeof o == "function" ? ie(o, { "": a }, "", a) : a;
2324
+ for (const { count: c, res: p } of l.anchors.values())
2325
+ r(p, c);
2326
+ return typeof o == "function" ? oe(o, { "": a }, "", a) : a;
2297
2327
  }
2298
2328
  /**
2299
2329
  * A JSON representation of the document `contents`.
@@ -2312,25 +2342,25 @@ class ye {
2312
2342
  const t = JSON.stringify(e.indent);
2313
2343
  throw new Error(`"indent" option must be a positive integer, not ${t}`);
2314
2344
  }
2315
- return rn(this, e);
2345
+ return an(this, e);
2316
2346
  }
2317
2347
  }
2318
- function ee(s) {
2348
+ function se(s) {
2319
2349
  if (L(s))
2320
2350
  return !0;
2321
2351
  throw new Error("Expected a YAML collection as document contents");
2322
2352
  }
2323
- class Nt extends Error {
2353
+ class At extends Error {
2324
2354
  constructor(e, t, n, i) {
2325
2355
  super(), this.name = e, this.code = n, this.message = i, this.pos = t;
2326
2356
  }
2327
2357
  }
2328
- class X extends Nt {
2358
+ class z extends At {
2329
2359
  constructor(e, t, n) {
2330
2360
  super("YAMLParseError", e, t, n);
2331
2361
  }
2332
2362
  }
2333
- class ds extends Nt {
2363
+ class ys extends At {
2334
2364
  constructor(e, t, n) {
2335
2365
  super("YAMLWarning", e, t, n);
2336
2366
  }
@@ -2363,55 +2393,56 @@ ${c}
2363
2393
  `;
2364
2394
  }
2365
2395
  };
2366
- function ce(s, { flow: e, indicator: t, next: n, offset: i, onError: r, parentIndent: o, startOnNewline: l }) {
2367
- let a = !1, c = l, m = l, f = "", d = "", h = !1, y = !1, u = null, p = null, g = null, w = null, N = null, S = null, A = null;
2368
- for (const b of s)
2369
- switch (y && (b.type !== "space" && b.type !== "newline" && b.type !== "comma" && r(b.offset, "MISSING_CHAR", "Tags and anchors must be separated from the next token by white space"), y = !1), u && (c && b.type !== "comment" && b.type !== "newline" && r(u, "TAB_AS_INDENT", "Tabs are not allowed as indentation"), u = null), b.type) {
2396
+ function ue(s, { flow: e, indicator: t, next: n, offset: i, onError: r, parentIndent: o, startOnNewline: l }) {
2397
+ let a = !1, c = l, p = l, f = "", d = "", h = !1, y = !1, u = null, m = null, b = null, w = null, N = null, S = null, k = null;
2398
+ for (const g of s)
2399
+ switch (y && (g.type !== "space" && g.type !== "newline" && g.type !== "comma" && r(g.offset, "MISSING_CHAR", "Tags and anchors must be separated from the next token by white space"), y = !1), u && (c && g.type !== "comment" && g.type !== "newline" && r(u, "TAB_AS_INDENT", "Tabs are not allowed as indentation"), u = null), g.type) {
2370
2400
  case "space":
2371
- !e && (t !== "doc-start" || (n == null ? void 0 : n.type) !== "flow-collection") && b.source.includes(" ") && (u = b), m = !0;
2401
+ !e && (t !== "doc-start" || (n == null ? void 0 : n.type) !== "flow-collection") && g.source.includes(" ") && (u = g), p = !0;
2372
2402
  break;
2373
2403
  case "comment": {
2374
- m || r(b, "MISSING_CHAR", "Comments must be separated from other tokens by white space characters");
2375
- const _ = b.source.substring(1) || " ";
2404
+ p || r(g, "MISSING_CHAR", "Comments must be separated from other tokens by white space characters");
2405
+ const _ = g.source.substring(1) || " ";
2376
2406
  f ? f += d + _ : f = _, d = "", c = !1;
2377
2407
  break;
2378
2408
  }
2379
2409
  case "newline":
2380
- c ? f ? f += b.source : a = !0 : d += b.source, c = !0, h = !0, (p || g) && (w = b), m = !0;
2410
+ c ? f ? f += g.source : a = !0 : d += g.source, c = !0, h = !0, (m || b) && (w = g), p = !0;
2381
2411
  break;
2382
2412
  case "anchor":
2383
- p && r(b, "MULTIPLE_ANCHORS", "A node can have at most one anchor"), b.source.endsWith(":") && r(b.offset + b.source.length - 1, "BAD_ALIAS", "Anchor ending in : is ambiguous", !0), p = b, A === null && (A = b.offset), c = !1, m = !1, y = !0;
2413
+ m && r(g, "MULTIPLE_ANCHORS", "A node can have at most one anchor"), g.source.endsWith(":") && r(g.offset + g.source.length - 1, "BAD_ALIAS", "Anchor ending in : is ambiguous", !0), m = g, k === null && (k = g.offset), c = !1, p = !1, y = !0;
2384
2414
  break;
2385
2415
  case "tag": {
2386
- g && r(b, "MULTIPLE_TAGS", "A node can have at most one tag"), g = b, A === null && (A = b.offset), c = !1, m = !1, y = !0;
2416
+ b && r(g, "MULTIPLE_TAGS", "A node can have at most one tag"), b = g, k === null && (k = g.offset), c = !1, p = !1, y = !0;
2387
2417
  break;
2388
2418
  }
2389
2419
  case t:
2390
- (p || g) && r(b, "BAD_PROP_ORDER", `Anchors and tags must be after the ${b.source} indicator`), S && r(b, "UNEXPECTED_TOKEN", `Unexpected ${b.source} in ${e ?? "collection"}`), S = b, c = t === "seq-item-ind" || t === "explicit-key-ind", m = !1;
2420
+ (m || b) && r(g, "BAD_PROP_ORDER", `Anchors and tags must be after the ${g.source} indicator`), S && r(g, "UNEXPECTED_TOKEN", `Unexpected ${g.source} in ${e ?? "collection"}`), S = g, c = t === "seq-item-ind" || t === "explicit-key-ind", p = !1;
2391
2421
  break;
2392
2422
  case "comma":
2393
2423
  if (e) {
2394
- N && r(b, "UNEXPECTED_TOKEN", `Unexpected , in ${e}`), N = b, c = !1, m = !1;
2424
+ N && r(g, "UNEXPECTED_TOKEN", `Unexpected , in ${e}`), N = g, c = !1, p = !1;
2395
2425
  break;
2396
2426
  }
2427
+ // else fallthrough
2397
2428
  default:
2398
- r(b, "UNEXPECTED_TOKEN", `Unexpected ${b.type} token`), c = !1, m = !1;
2429
+ r(g, "UNEXPECTED_TOKEN", `Unexpected ${g.type} token`), c = !1, p = !1;
2399
2430
  }
2400
- const k = s[s.length - 1], T = k ? k.offset + k.source.length : i;
2431
+ const O = s[s.length - 1], T = O ? O.offset + O.source.length : i;
2401
2432
  return y && n && n.type !== "space" && n.type !== "newline" && n.type !== "comma" && (n.type !== "scalar" || n.source !== "") && r(n.offset, "MISSING_CHAR", "Tags and anchors must be separated from the next token by white space"), u && (c && u.indent <= o || (n == null ? void 0 : n.type) === "block-map" || (n == null ? void 0 : n.type) === "block-seq") && r(u, "TAB_AS_INDENT", "Tabs are not allowed as indentation"), {
2402
2433
  comma: N,
2403
2434
  found: S,
2404
2435
  spaceBefore: a,
2405
2436
  comment: f,
2406
2437
  hasNewline: h,
2407
- anchor: p,
2408
- tag: g,
2438
+ anchor: m,
2439
+ tag: b,
2409
2440
  newlineAfterProp: w,
2410
2441
  end: T,
2411
- start: A ?? T
2442
+ start: k ?? T
2412
2443
  };
2413
2444
  }
2414
- function ke(s) {
2445
+ function Ne(s) {
2415
2446
  if (!s)
2416
2447
  return null;
2417
2448
  switch (s.type) {
@@ -2438,7 +2469,7 @@ function ke(s) {
2438
2469
  if (t.type === "newline")
2439
2470
  return !0;
2440
2471
  }
2441
- if (ke(e.key) || ke(e.value))
2472
+ if (Ne(e.key) || Ne(e.value))
2442
2473
  return !0;
2443
2474
  }
2444
2475
  return !1;
@@ -2446,45 +2477,46 @@ function ke(s) {
2446
2477
  return !0;
2447
2478
  }
2448
2479
  }
2449
- function ct(s, e, t) {
2480
+ function ut(s, e, t) {
2450
2481
  if ((e == null ? void 0 : e.type) === "flow-collection") {
2451
2482
  const n = e.end[0];
2452
- n.indent === s && (n.source === "]" || n.source === "}") && ke(e) && t(n, "BAD_INDENT", "Flow end indicator should be more indented than parent", !0);
2483
+ n.indent === s && (n.source === "]" || n.source === "}") && Ne(e) && t(n, "BAD_INDENT", "Flow end indicator should be more indented than parent", !0);
2453
2484
  }
2454
2485
  }
2455
- function ps(s, e, t) {
2486
+ function gs(s, e, t) {
2456
2487
  const { uniqueKeys: n } = s.options;
2457
2488
  if (n === !1)
2458
2489
  return !1;
2459
- const i = typeof n == "function" ? n : (r, o) => r === o || E(r) && E(o) && r.value === o.value && !(r.value === "<<" && s.schema.merge);
2490
+ const i = typeof n == "function" ? n : (r, o) => r === o || E(r) && E(o) && r.value === o.value;
2460
2491
  return e.some((r) => i(r.key, t));
2461
2492
  }
2462
- const vt = "All mapping items must start at the same column";
2463
- function on({ composeNode: s, composeEmptyNode: e }, t, n, i, r) {
2464
- var m;
2465
- const o = (r == null ? void 0 : r.nodeClass) ?? P, l = new o(t.schema);
2493
+ const Mt = "All mapping items must start at the same column";
2494
+ function cn({ composeNode: s, composeEmptyNode: e }, t, n, i, r) {
2495
+ var p;
2496
+ const o = (r == null ? void 0 : r.nodeClass) ?? K, l = new o(t.schema);
2466
2497
  t.atRoot && (t.atRoot = !1);
2467
2498
  let a = n.offset, c = null;
2468
2499
  for (const f of n.items) {
2469
- const { start: d, key: h, sep: y, value: u } = f, p = ce(d, {
2500
+ const { start: d, key: h, sep: y, value: u } = f, m = ue(d, {
2470
2501
  indicator: "explicit-key-ind",
2471
2502
  next: h ?? (y == null ? void 0 : y[0]),
2472
2503
  offset: a,
2473
2504
  onError: i,
2474
2505
  parentIndent: n.indent,
2475
2506
  startOnNewline: !0
2476
- }), g = !p.found;
2477
- if (g) {
2478
- if (h && (h.type === "block-seq" ? i(a, "BLOCK_AS_IMPLICIT_KEY", "A block sequence may not be used as an implicit map key") : "indent" in h && h.indent !== n.indent && i(a, "BAD_INDENT", vt)), !p.anchor && !p.tag && !y) {
2479
- c = p.end, p.comment && (l.comment ? l.comment += `
2480
- ` + p.comment : l.comment = p.comment);
2507
+ }), b = !m.found;
2508
+ if (b) {
2509
+ if (h && (h.type === "block-seq" ? i(a, "BLOCK_AS_IMPLICIT_KEY", "A block sequence may not be used as an implicit map key") : "indent" in h && h.indent !== n.indent && i(a, "BAD_INDENT", Mt)), !m.anchor && !m.tag && !y) {
2510
+ c = m.end, m.comment && (l.comment ? l.comment += `
2511
+ ` + m.comment : l.comment = m.comment);
2481
2512
  continue;
2482
2513
  }
2483
- (p.newlineAfterProp || ke(h)) && i(h ?? d[d.length - 1], "MULTILINE_IMPLICIT_KEY", "Implicit keys need to be on a single line");
2484
- } else ((m = p.found) == null ? void 0 : m.indent) !== n.indent && i(a, "BAD_INDENT", vt);
2485
- const w = p.end, N = h ? s(t, h, p, i) : e(t, w, d, null, p, i);
2486
- t.schema.compat && ct(n.indent, h, i), ps(t, l.items, N) && i(w, "DUPLICATE_KEY", "Map keys must be unique");
2487
- const S = ce(y ?? [], {
2514
+ (m.newlineAfterProp || Ne(h)) && i(h ?? d[d.length - 1], "MULTILINE_IMPLICIT_KEY", "Implicit keys need to be on a single line");
2515
+ } else ((p = m.found) == null ? void 0 : p.indent) !== n.indent && i(a, "BAD_INDENT", Mt);
2516
+ t.atKey = !0;
2517
+ const w = m.end, N = h ? s(t, h, m, i) : e(t, w, d, null, m, i);
2518
+ t.schema.compat && ut(n.indent, h, i), t.atKey = !1, gs(t, l.items, N) && i(w, "DUPLICATE_KEY", "Map keys must be unique");
2519
+ const S = ue(y ?? [], {
2488
2520
  indicator: "map-value-ind",
2489
2521
  next: u,
2490
2522
  offset: N.range[2],
@@ -2493,26 +2525,26 @@ function on({ composeNode: s, composeEmptyNode: e }, t, n, i, r) {
2493
2525
  startOnNewline: !h || h.type === "block-scalar"
2494
2526
  });
2495
2527
  if (a = S.end, S.found) {
2496
- g && ((u == null ? void 0 : u.type) === "block-map" && !S.hasNewline && i(a, "BLOCK_AS_IMPLICIT_KEY", "Nested mappings are not allowed in compact mappings"), t.options.strict && p.start < S.found.offset - 1024 && i(N.range, "KEY_OVER_1024_CHARS", "The : indicator must be at most 1024 chars after the start of an implicit block mapping key"));
2497
- const A = u ? s(t, u, S, i) : e(t, a, y, null, S, i);
2498
- t.schema.compat && ct(n.indent, u, i), a = A.range[2];
2499
- const k = new v(N, A);
2500
- t.options.keepSourceTokens && (k.srcToken = f), l.items.push(k);
2528
+ b && ((u == null ? void 0 : u.type) === "block-map" && !S.hasNewline && i(a, "BLOCK_AS_IMPLICIT_KEY", "Nested mappings are not allowed in compact mappings"), t.options.strict && m.start < S.found.offset - 1024 && i(N.range, "KEY_OVER_1024_CHARS", "The : indicator must be at most 1024 chars after the start of an implicit block mapping key"));
2529
+ const k = u ? s(t, u, S, i) : e(t, a, y, null, S, i);
2530
+ t.schema.compat && ut(n.indent, u, i), a = k.range[2];
2531
+ const O = new v(N, k);
2532
+ t.options.keepSourceTokens && (O.srcToken = f), l.items.push(O);
2501
2533
  } else {
2502
- g && i(N.range, "MISSING_CHAR", "Implicit map keys need to be followed by map values"), S.comment && (N.comment ? N.comment += `
2534
+ b && i(N.range, "MISSING_CHAR", "Implicit map keys need to be followed by map values"), S.comment && (N.comment ? N.comment += `
2503
2535
  ` + S.comment : N.comment = S.comment);
2504
- const A = new v(N);
2505
- t.options.keepSourceTokens && (A.srcToken = f), l.items.push(A);
2536
+ const k = new v(N);
2537
+ t.options.keepSourceTokens && (k.srcToken = f), l.items.push(k);
2506
2538
  }
2507
2539
  }
2508
2540
  return c && c < a && i(c, "IMPOSSIBLE", "Map comment with trailing content"), l.range = [n.offset, a, c ?? a], l;
2509
2541
  }
2510
- function ln({ composeNode: s, composeEmptyNode: e }, t, n, i, r) {
2511
- const o = (r == null ? void 0 : r.nodeClass) ?? Y, l = new o(t.schema);
2512
- t.atRoot && (t.atRoot = !1);
2542
+ function fn({ composeNode: s, composeEmptyNode: e }, t, n, i, r) {
2543
+ const o = (r == null ? void 0 : r.nodeClass) ?? Q, l = new o(t.schema);
2544
+ t.atRoot && (t.atRoot = !1), t.atKey && (t.atKey = !1);
2513
2545
  let a = n.offset, c = null;
2514
- for (const { start: m, value: f } of n.items) {
2515
- const d = ce(m, {
2546
+ for (const { start: p, value: f } of n.items) {
2547
+ const d = ue(p, {
2516
2548
  indicator: "seq-item-ind",
2517
2549
  next: f,
2518
2550
  offset: a,
@@ -2527,12 +2559,12 @@ function ln({ composeNode: s, composeEmptyNode: e }, t, n, i, r) {
2527
2559
  c = d.end, d.comment && (l.comment = d.comment);
2528
2560
  continue;
2529
2561
  }
2530
- const h = f ? s(t, f, d, i) : e(t, d.end, m, null, d, i);
2531
- t.schema.compat && ct(n.indent, f, i), a = h.range[2], l.items.push(h);
2562
+ const h = f ? s(t, f, d, i) : e(t, d.end, p, null, d, i);
2563
+ t.schema.compat && ut(n.indent, f, i), a = h.range[2], l.items.push(h);
2532
2564
  }
2533
2565
  return l.range = [n.offset, a, c ?? a], l;
2534
2566
  }
2535
- function Ee(s, e, t, n) {
2567
+ function Te(s, e, t, n) {
2536
2568
  let i = "";
2537
2569
  if (s) {
2538
2570
  let r = !1, o = "";
@@ -2544,8 +2576,8 @@ function Ee(s, e, t, n) {
2544
2576
  break;
2545
2577
  case "comment": {
2546
2578
  t && !r && n(l, "MISSING_CHAR", "Comments must be separated from other tokens by white space characters");
2547
- const m = a.substring(1) || " ";
2548
- i ? i += o + m : i = m, o = "";
2579
+ const p = a.substring(1) || " ";
2580
+ i ? i += o + p : i = p, o = "";
2549
2581
  break;
2550
2582
  }
2551
2583
  case "newline":
@@ -2559,15 +2591,15 @@ function Ee(s, e, t, n) {
2559
2591
  }
2560
2592
  return { comment: i, offset: e };
2561
2593
  }
2562
- const et = "Block collections are not allowed within flow collections", tt = (s) => s && (s.type === "block-map" || s.type === "block-seq");
2563
- function an({ composeNode: s, composeEmptyNode: e }, t, n, i, r) {
2564
- const o = n.start.source === "{", l = o ? "flow map" : "flow sequence", a = (r == null ? void 0 : r.nodeClass) ?? (o ? P : Y), c = new a(t.schema);
2594
+ const st = "Block collections are not allowed within flow collections", nt = (s) => s && (s.type === "block-map" || s.type === "block-seq");
2595
+ function un({ composeNode: s, composeEmptyNode: e }, t, n, i, r) {
2596
+ const o = n.start.source === "{", l = o ? "flow map" : "flow sequence", a = (r == null ? void 0 : r.nodeClass) ?? (o ? K : Q), c = new a(t.schema);
2565
2597
  c.flow = !0;
2566
- const m = t.atRoot;
2567
- m && (t.atRoot = !1);
2598
+ const p = t.atRoot;
2599
+ p && (t.atRoot = !1), t.atKey && (t.atKey = !1);
2568
2600
  let f = n.offset + n.start.source.length;
2569
- for (let p = 0; p < n.items.length; ++p) {
2570
- const g = n.items[p], { start: w, key: N, sep: S, value: A } = g, k = ce(w, {
2601
+ for (let m = 0; m < n.items.length; ++m) {
2602
+ const b = n.items[m], { start: w, key: N, sep: S, value: k } = b, O = ue(w, {
2571
2603
  flow: l,
2572
2604
  indicator: "explicit-key-ind",
2573
2605
  next: N ?? (S == null ? void 0 : S[0]),
@@ -2576,57 +2608,58 @@ function an({ composeNode: s, composeEmptyNode: e }, t, n, i, r) {
2576
2608
  parentIndent: n.indent,
2577
2609
  startOnNewline: !1
2578
2610
  });
2579
- if (!k.found) {
2580
- if (!k.anchor && !k.tag && !S && !A) {
2581
- p === 0 && k.comma ? i(k.comma, "UNEXPECTED_TOKEN", `Unexpected , in ${l}`) : p < n.items.length - 1 && i(k.start, "UNEXPECTED_TOKEN", `Unexpected empty item in ${l}`), k.comment && (c.comment ? c.comment += `
2582
- ` + k.comment : c.comment = k.comment), f = k.end;
2611
+ if (!O.found) {
2612
+ if (!O.anchor && !O.tag && !S && !k) {
2613
+ m === 0 && O.comma ? i(O.comma, "UNEXPECTED_TOKEN", `Unexpected , in ${l}`) : m < n.items.length - 1 && i(O.start, "UNEXPECTED_TOKEN", `Unexpected empty item in ${l}`), O.comment && (c.comment ? c.comment += `
2614
+ ` + O.comment : c.comment = O.comment), f = O.end;
2583
2615
  continue;
2584
2616
  }
2585
- !o && t.options.strict && ke(N) && i(
2617
+ !o && t.options.strict && Ne(N) && i(
2586
2618
  N,
2587
2619
  // checked by containsNewline()
2588
2620
  "MULTILINE_IMPLICIT_KEY",
2589
2621
  "Implicit keys of flow sequence pairs need to be on a single line"
2590
2622
  );
2591
2623
  }
2592
- if (p === 0)
2593
- k.comma && i(k.comma, "UNEXPECTED_TOKEN", `Unexpected , in ${l}`);
2594
- else if (k.comma || i(k.start, "MISSING_CHAR", `Missing , between ${l} items`), k.comment) {
2624
+ if (m === 0)
2625
+ O.comma && i(O.comma, "UNEXPECTED_TOKEN", `Unexpected , in ${l}`);
2626
+ else if (O.comma || i(O.start, "MISSING_CHAR", `Missing , between ${l} items`), O.comment) {
2595
2627
  let T = "";
2596
- e: for (const b of w)
2597
- switch (b.type) {
2628
+ e: for (const g of w)
2629
+ switch (g.type) {
2598
2630
  case "comma":
2599
2631
  case "space":
2600
2632
  break;
2601
2633
  case "comment":
2602
- T = b.source.substring(1);
2634
+ T = g.source.substring(1);
2603
2635
  break e;
2604
2636
  default:
2605
2637
  break e;
2606
2638
  }
2607
2639
  if (T) {
2608
- let b = c.items[c.items.length - 1];
2609
- I(b) && (b = b.value ?? b.key), b.comment ? b.comment += `
2610
- ` + T : b.comment = T, k.comment = k.comment.substring(T.length + 1);
2640
+ let g = c.items[c.items.length - 1];
2641
+ I(g) && (g = g.value ?? g.key), g.comment ? g.comment += `
2642
+ ` + T : g.comment = T, O.comment = O.comment.substring(T.length + 1);
2611
2643
  }
2612
2644
  }
2613
- if (!o && !S && !k.found) {
2614
- const T = A ? s(t, A, k, i) : e(t, k.end, S, null, k, i);
2615
- c.items.push(T), f = T.range[2], tt(A) && i(T.range, "BLOCK_IN_FLOW", et);
2645
+ if (!o && !S && !O.found) {
2646
+ const T = k ? s(t, k, O, i) : e(t, O.end, S, null, O, i);
2647
+ c.items.push(T), f = T.range[2], nt(k) && i(T.range, "BLOCK_IN_FLOW", st);
2616
2648
  } else {
2617
- const T = k.end, b = N ? s(t, N, k, i) : e(t, T, w, null, k, i);
2618
- tt(N) && i(b.range, "BLOCK_IN_FLOW", et);
2619
- const _ = ce(S ?? [], {
2649
+ t.atKey = !0;
2650
+ const T = O.end, g = N ? s(t, N, O, i) : e(t, T, w, null, O, i);
2651
+ nt(N) && i(g.range, "BLOCK_IN_FLOW", st), t.atKey = !1;
2652
+ const _ = ue(S ?? [], {
2620
2653
  flow: l,
2621
2654
  indicator: "map-value-ind",
2622
- next: A,
2623
- offset: b.range[2],
2655
+ next: k,
2656
+ offset: g.range[2],
2624
2657
  onError: i,
2625
2658
  parentIndent: n.indent,
2626
2659
  startOnNewline: !1
2627
2660
  });
2628
2661
  if (_.found) {
2629
- if (!o && !k.found && t.options.strict) {
2662
+ if (!o && !O.found && t.options.strict) {
2630
2663
  if (S)
2631
2664
  for (const C of S) {
2632
2665
  if (C === _.found)
@@ -2636,21 +2669,23 @@ function an({ composeNode: s, composeEmptyNode: e }, t, n, i, r) {
2636
2669
  break;
2637
2670
  }
2638
2671
  }
2639
- k.start < _.found.offset - 1024 && i(_.found, "KEY_OVER_1024_CHARS", "The : indicator must be at most 1024 chars after the start of an implicit flow sequence key");
2672
+ O.start < _.found.offset - 1024 && i(_.found, "KEY_OVER_1024_CHARS", "The : indicator must be at most 1024 chars after the start of an implicit flow sequence key");
2640
2673
  }
2641
- } else A && ("source" in A && A.source && A.source[0] === ":" ? i(A, "MISSING_CHAR", `Missing space after : in ${l}`) : i(_.start, "MISSING_CHAR", `Missing , or : between ${l} items`));
2642
- const G = A ? s(t, A, _, i) : _.found ? e(t, _.end, S, null, _, i) : null;
2643
- G ? tt(A) && i(G.range, "BLOCK_IN_FLOW", et) : _.comment && (b.comment ? b.comment += `
2644
- ` + _.comment : b.comment = _.comment);
2645
- const x = new v(b, G);
2646
- if (t.options.keepSourceTokens && (x.srcToken = g), o) {
2674
+ } else k && ("source" in k && k.source && k.source[0] === ":" ? i(k, "MISSING_CHAR", `Missing space after : in ${l}`) : i(_.start, "MISSING_CHAR", `Missing , or : between ${l} items`));
2675
+ const Y = k ? s(t, k, _, i) : _.found ? e(t, _.end, S, null, _, i) : null;
2676
+ Y ? nt(k) && i(Y.range, "BLOCK_IN_FLOW", st) : _.comment && (g.comment ? g.comment += `
2677
+ ` + _.comment : g.comment = _.comment);
2678
+ const te = new v(g, Y);
2679
+ if (t.options.keepSourceTokens && (te.srcToken = b), o) {
2647
2680
  const C = c;
2648
- ps(t, C.items, b) && i(T, "DUPLICATE_KEY", "Map keys must be unique"), C.items.push(x);
2681
+ gs(t, C.items, g) && i(T, "DUPLICATE_KEY", "Map keys must be unique"), C.items.push(te);
2649
2682
  } else {
2650
- const C = new P(t.schema);
2651
- C.flow = !0, C.items.push(x), c.items.push(C);
2683
+ const C = new K(t.schema);
2684
+ C.flow = !0, C.items.push(te);
2685
+ const Lt = (Y ?? g).range;
2686
+ C.range = [g.range[0], Lt[1], Lt[2]], c.items.push(C);
2652
2687
  }
2653
- f = G ? G.range[2] : _.end;
2688
+ f = Y ? Y.range[2] : _.end;
2654
2689
  }
2655
2690
  }
2656
2691
  const d = o ? "}" : "]", [h, ...y] = n.end;
@@ -2658,22 +2693,22 @@ function an({ composeNode: s, composeEmptyNode: e }, t, n, i, r) {
2658
2693
  if (h && h.source === d)
2659
2694
  u = h.offset + h.source.length;
2660
2695
  else {
2661
- const p = l[0].toUpperCase() + l.substring(1), g = m ? `${p} must end with a ${d}` : `${p} in block collection must be sufficiently indented and end with a ${d}`;
2662
- i(f, m ? "MISSING_CHAR" : "BAD_INDENT", g), h && h.source.length !== 1 && y.unshift(h);
2696
+ const m = l[0].toUpperCase() + l.substring(1), b = p ? `${m} must end with a ${d}` : `${m} in block collection must be sufficiently indented and end with a ${d}`;
2697
+ i(f, p ? "MISSING_CHAR" : "BAD_INDENT", b), h && h.source.length !== 1 && y.unshift(h);
2663
2698
  }
2664
2699
  if (y.length > 0) {
2665
- const p = Ee(y, u, t.options.strict, i);
2666
- p.comment && (c.comment ? c.comment += `
2667
- ` + p.comment : c.comment = p.comment), c.range = [n.offset, u, p.offset];
2700
+ const m = Te(y, u, t.options.strict, i);
2701
+ m.comment && (c.comment ? c.comment += `
2702
+ ` + m.comment : c.comment = m.comment), c.range = [n.offset, u, m.offset];
2668
2703
  } else
2669
2704
  c.range = [n.offset, u, u];
2670
2705
  return c;
2671
2706
  }
2672
- function st(s, e, t, n, i, r) {
2673
- const o = t.type === "block-map" ? on(s, e, t, n, r) : t.type === "block-seq" ? ln(s, e, t, n, r) : an(s, e, t, n, r), l = o.constructor;
2707
+ function it(s, e, t, n, i, r) {
2708
+ const o = t.type === "block-map" ? cn(s, e, t, n, r) : t.type === "block-seq" ? fn(s, e, t, n, r) : un(s, e, t, n, r), l = o.constructor;
2674
2709
  return i === "!" || i === l.tagName ? (o.tag = l.tagName, o) : (i && (o.tag = i), o);
2675
2710
  }
2676
- function cn(s, e, t, n, i) {
2711
+ function hn(s, e, t, n, i) {
2677
2712
  var d;
2678
2713
  const r = n.tag, o = r ? e.directives.tagName(r.source, (h) => i(r, "TAG_RESOLVE_FAILED", h)) : null;
2679
2714
  if (t.type === "block-seq") {
@@ -2681,28 +2716,28 @@ function cn(s, e, t, n, i) {
2681
2716
  u && (!y || y.offset < u.offset) && i(u, "MISSING_CHAR", "Missing newline after block sequence props");
2682
2717
  }
2683
2718
  const l = t.type === "block-map" ? "map" : t.type === "block-seq" ? "seq" : t.start.source === "{" ? "map" : "seq";
2684
- if (!r || !o || o === "!" || o === P.tagName && l === "map" || o === Y.tagName && l === "seq")
2685
- return st(s, e, t, i, o);
2719
+ if (!r || !o || o === "!" || o === K.tagName && l === "map" || o === Q.tagName && l === "seq")
2720
+ return it(s, e, t, i, o);
2686
2721
  let a = e.schema.tags.find((h) => h.tag === o && h.collection === l);
2687
2722
  if (!a) {
2688
2723
  const h = e.schema.knownTags[o];
2689
2724
  if (h && h.collection === l)
2690
2725
  e.schema.tags.push(Object.assign({}, h, { default: !1 })), a = h;
2691
2726
  else
2692
- return h != null && h.collection ? i(r, "BAD_COLLECTION_TYPE", `${h.tag} used for ${l} collection, but expects ${h.collection}`, !0) : i(r, "TAG_RESOLVE_FAILED", `Unresolved tag: ${o}`, !0), st(s, e, t, i, o);
2727
+ return h != null && h.collection ? i(r, "BAD_COLLECTION_TYPE", `${h.tag} used for ${l} collection, but expects ${h.collection}`, !0) : i(r, "TAG_RESOLVE_FAILED", `Unresolved tag: ${o}`, !0), it(s, e, t, i, o);
2693
2728
  }
2694
- const c = st(s, e, t, i, o, a), m = ((d = a.resolve) == null ? void 0 : d.call(a, c, (h) => i(r, "TAG_RESOLVE_FAILED", h), e.options)) ?? c, f = $(m) ? m : new O(m);
2729
+ const c = it(s, e, t, i, o, a), p = ((d = a.resolve) == null ? void 0 : d.call(a, c, (h) => i(r, "TAG_RESOLVE_FAILED", h), e.options)) ?? c, f = $(p) ? p : new A(p);
2695
2730
  return f.range = c.range, f.tag = o, a != null && a.format && (f.format = a.format), f;
2696
2731
  }
2697
- function ms(s, e, t) {
2698
- const n = e.offset, i = fn(e, s.options.strict, t);
2732
+ function bs(s, e, t) {
2733
+ const n = e.offset, i = dn(e, s.options.strict, t);
2699
2734
  if (!i)
2700
2735
  return { value: "", type: null, comment: "", range: [n, n, n] };
2701
- const r = i.mode === ">" ? O.BLOCK_FOLDED : O.BLOCK_LITERAL, o = e.source ? un(e.source) : [];
2736
+ const r = i.mode === ">" ? A.BLOCK_FOLDED : A.BLOCK_LITERAL, o = e.source ? pn(e.source) : [];
2702
2737
  let l = o.length;
2703
2738
  for (let u = o.length - 1; u >= 0; --u) {
2704
- const p = o[u][1];
2705
- if (p === "" || p === "\r")
2739
+ const m = o[u][1];
2740
+ if (m === "" || m === "\r")
2706
2741
  l = u;
2707
2742
  else
2708
2743
  break;
@@ -2710,44 +2745,44 @@ function ms(s, e, t) {
2710
2745
  if (l === 0) {
2711
2746
  const u = i.chomp === "+" && o.length > 0 ? `
2712
2747
  `.repeat(Math.max(1, o.length - 1)) : "";
2713
- let p = n + i.length;
2714
- return e.source && (p += e.source.length), { value: u, type: r, comment: i.comment, range: [n, p, p] };
2748
+ let m = n + i.length;
2749
+ return e.source && (m += e.source.length), { value: u, type: r, comment: i.comment, range: [n, m, m] };
2715
2750
  }
2716
- let a = e.indent + i.indent, c = e.offset + i.length, m = 0;
2751
+ let a = e.indent + i.indent, c = e.offset + i.length, p = 0;
2717
2752
  for (let u = 0; u < l; ++u) {
2718
- const [p, g] = o[u];
2719
- if (g === "" || g === "\r")
2720
- i.indent === 0 && p.length > a && (a = p.length);
2753
+ const [m, b] = o[u];
2754
+ if (b === "" || b === "\r")
2755
+ i.indent === 0 && m.length > a && (a = m.length);
2721
2756
  else {
2722
- p.length < a && t(c + p.length, "MISSING_CHAR", "Block scalars with more-indented leading empty lines must use an explicit indentation indicator"), i.indent === 0 && (a = p.length), m = u, a === 0 && !s.atRoot && t(c, "BAD_INDENT", "Block scalar values in collections must be indented");
2757
+ m.length < a && t(c + m.length, "MISSING_CHAR", "Block scalars with more-indented leading empty lines must use an explicit indentation indicator"), i.indent === 0 && (a = m.length), p = u, a === 0 && !s.atRoot && t(c, "BAD_INDENT", "Block scalar values in collections must be indented");
2723
2758
  break;
2724
2759
  }
2725
- c += p.length + g.length + 1;
2760
+ c += m.length + b.length + 1;
2726
2761
  }
2727
2762
  for (let u = o.length - 1; u >= l; --u)
2728
2763
  o[u][0].length > a && (l = u + 1);
2729
2764
  let f = "", d = "", h = !1;
2730
- for (let u = 0; u < m; ++u)
2765
+ for (let u = 0; u < p; ++u)
2731
2766
  f += o[u][0].slice(a) + `
2732
2767
  `;
2733
- for (let u = m; u < l; ++u) {
2734
- let [p, g] = o[u];
2735
- c += p.length + g.length + 1;
2736
- const w = g[g.length - 1] === "\r";
2737
- if (w && (g = g.slice(0, -1)), g && p.length < a) {
2768
+ for (let u = p; u < l; ++u) {
2769
+ let [m, b] = o[u];
2770
+ c += m.length + b.length + 1;
2771
+ const w = b[b.length - 1] === "\r";
2772
+ if (w && (b = b.slice(0, -1)), b && m.length < a) {
2738
2773
  const S = `Block scalar lines must not be less indented than their ${i.indent ? "explicit indentation indicator" : "first line"}`;
2739
- t(c - g.length - (w ? 2 : 1), "BAD_INDENT", S), p = "";
2774
+ t(c - b.length - (w ? 2 : 1), "BAD_INDENT", S), m = "";
2740
2775
  }
2741
- r === O.BLOCK_LITERAL ? (f += d + p.slice(a) + g, d = `
2742
- `) : p.length > a || g[0] === " " ? (d === " " ? d = `
2776
+ r === A.BLOCK_LITERAL ? (f += d + m.slice(a) + b, d = `
2777
+ `) : m.length > a || b[0] === " " ? (d === " " ? d = `
2743
2778
  ` : !h && d === `
2744
2779
  ` && (d = `
2745
2780
 
2746
- `), f += d + p.slice(a) + g, d = `
2747
- `, h = !0) : g === "" ? d === `
2781
+ `), f += d + m.slice(a) + b, d = `
2782
+ `, h = !0) : b === "" ? d === `
2748
2783
  ` ? f += `
2749
2784
  ` : d = `
2750
- ` : (f += d + g, d = " ", h = !1);
2785
+ ` : (f += d + b, d = " ", h = !1);
2751
2786
  }
2752
2787
  switch (i.chomp) {
2753
2788
  case "-":
@@ -2767,7 +2802,7 @@ function ms(s, e, t) {
2767
2802
  const y = n + i.length + e.source.length;
2768
2803
  return { value: f, type: r, comment: i.comment, range: [n, y, y] };
2769
2804
  }
2770
- function fn({ offset: s, props: e }, t, n) {
2805
+ function dn({ offset: s, props: e }, t, n) {
2771
2806
  if (e[0].type !== "block-scalar-header")
2772
2807
  return n(e[0], "IMPOSSIBLE", "Block scalar header not found"), null;
2773
2808
  const { source: i } = e[0], r = i[0];
@@ -2782,21 +2817,23 @@ function fn({ offset: s, props: e }, t, n) {
2782
2817
  }
2783
2818
  }
2784
2819
  a !== -1 && n(a, "UNEXPECTED_TOKEN", `Block scalar header includes extra characters: ${i}`);
2785
- let c = !1, m = "", f = i.length;
2820
+ let c = !1, p = "", f = i.length;
2786
2821
  for (let d = 1; d < e.length; ++d) {
2787
2822
  const h = e[d];
2788
2823
  switch (h.type) {
2789
2824
  case "space":
2790
2825
  c = !0;
2826
+ // fallthrough
2791
2827
  case "newline":
2792
2828
  f += h.source.length;
2793
2829
  break;
2794
2830
  case "comment":
2795
- t && !c && n(h, "MISSING_CHAR", "Comments must be separated from other tokens by white space characters"), f += h.source.length, m = h.source.substring(1);
2831
+ t && !c && n(h, "MISSING_CHAR", "Comments must be separated from other tokens by white space characters"), f += h.source.length, p = h.source.substring(1);
2796
2832
  break;
2797
2833
  case "error":
2798
2834
  n(h, "UNEXPECTED_TOKEN", h.message), f += h.source.length;
2799
2835
  break;
2836
+ /* istanbul ignore next should not happen */
2800
2837
  default: {
2801
2838
  const y = `Unexpected token in block scalar header: ${h.type}`;
2802
2839
  n(h, "UNEXPECTED_TOKEN", y);
@@ -2805,28 +2842,29 @@ function fn({ offset: s, props: e }, t, n) {
2805
2842
  }
2806
2843
  }
2807
2844
  }
2808
- return { mode: r, indent: o, chomp: l, comment: m, length: f };
2845
+ return { mode: r, indent: o, chomp: l, comment: p, length: f };
2809
2846
  }
2810
- function un(s) {
2847
+ function pn(s) {
2811
2848
  const e = s.split(/\n( *)/), t = e[0], n = t.match(/^( *)/), r = [n != null && n[1] ? [n[1], t.slice(n[1].length)] : ["", t]];
2812
2849
  for (let o = 1; o < e.length; o += 2)
2813
2850
  r.push([e[o], e[o + 1]]);
2814
2851
  return r;
2815
2852
  }
2816
- function ys(s, e, t) {
2853
+ function ws(s, e, t) {
2817
2854
  const { offset: n, type: i, source: r, end: o } = s;
2818
2855
  let l, a;
2819
2856
  const c = (d, h, y) => t(n + d, h, y);
2820
2857
  switch (i) {
2821
2858
  case "scalar":
2822
- l = O.PLAIN, a = hn(r, c);
2859
+ l = A.PLAIN, a = mn(r, c);
2823
2860
  break;
2824
2861
  case "single-quoted-scalar":
2825
- l = O.QUOTE_SINGLE, a = dn(r, c);
2862
+ l = A.QUOTE_SINGLE, a = yn(r, c);
2826
2863
  break;
2827
2864
  case "double-quoted-scalar":
2828
- l = O.QUOTE_DOUBLE, a = pn(r, c);
2865
+ l = A.QUOTE_DOUBLE, a = gn(r, c);
2829
2866
  break;
2867
+ /* istanbul ignore next should not happen */
2830
2868
  default:
2831
2869
  return t(s, "UNEXPECTED_TOKEN", `Expected a flow scalar value, but found: ${i}`), {
2832
2870
  value: "",
@@ -2835,17 +2873,18 @@ function ys(s, e, t) {
2835
2873
  range: [n, n + r.length, n + r.length]
2836
2874
  };
2837
2875
  }
2838
- const m = n + r.length, f = Ee(o, m, e, t);
2876
+ const p = n + r.length, f = Te(o, p, e, t);
2839
2877
  return {
2840
2878
  value: a,
2841
2879
  type: l,
2842
2880
  comment: f.comment,
2843
- range: [n, m, f.offset]
2881
+ range: [n, p, f.offset]
2844
2882
  };
2845
2883
  }
2846
- function hn(s, e) {
2884
+ function mn(s, e) {
2847
2885
  let t = "";
2848
2886
  switch (s[0]) {
2887
+ /* istanbul ignore next should not happen */
2849
2888
  case " ":
2850
2889
  t = "a tab character";
2851
2890
  break;
@@ -2866,12 +2905,12 @@ function hn(s, e) {
2866
2905
  break;
2867
2906
  }
2868
2907
  }
2869
- return t && e(0, "BAD_SCALAR_START", `Plain value cannot start with ${t}`), gs(s);
2908
+ return t && e(0, "BAD_SCALAR_START", `Plain value cannot start with ${t}`), Ss(s);
2870
2909
  }
2871
- function dn(s, e) {
2872
- return (s[s.length - 1] !== "'" || s.length === 1) && e(s.length, "MISSING_CHAR", "Missing closing 'quote"), gs(s.slice(1, -1)).replace(/''/g, "'");
2910
+ function yn(s, e) {
2911
+ return (s[s.length - 1] !== "'" || s.length === 1) && e(s.length, "MISSING_CHAR", "Missing closing 'quote"), Ss(s.slice(1, -1)).replace(/''/g, "'");
2873
2912
  }
2874
- function gs(s) {
2913
+ function Ss(s) {
2875
2914
  let e, t;
2876
2915
  try {
2877
2916
  e = new RegExp(`(.*?)(?<![ ])[ ]*\r?
@@ -2891,7 +2930,7 @@ function gs(s) {
2891
2930
  const l = /[ \t]*(.*)/sy;
2892
2931
  return l.lastIndex = o, n = l.exec(s), i + r + ((n == null ? void 0 : n[1]) ?? "");
2893
2932
  }
2894
- function pn(s, e) {
2933
+ function gn(s, e) {
2895
2934
  let t = "";
2896
2935
  for (let n = 1; n < s.length - 1; ++n) {
2897
2936
  const i = s[n];
@@ -2899,11 +2938,11 @@ function pn(s, e) {
2899
2938
  `))
2900
2939
  if (i === `
2901
2940
  `) {
2902
- const { fold: r, offset: o } = mn(s, n);
2941
+ const { fold: r, offset: o } = bn(s, n);
2903
2942
  t += r, n = o;
2904
2943
  } else if (i === "\\") {
2905
2944
  let r = s[++n];
2906
- const o = yn[r];
2945
+ const o = wn[r];
2907
2946
  if (o)
2908
2947
  t += o;
2909
2948
  else if (r === `
@@ -2916,7 +2955,7 @@ function pn(s, e) {
2916
2955
  r = s[++n + 1];
2917
2956
  else if (r === "x" || r === "u" || r === "U") {
2918
2957
  const l = { x: 2, u: 4, U: 8 }[r];
2919
- t += gn(s, n + 1, l, e), n += l;
2958
+ t += Sn(s, n + 1, l, e), n += l;
2920
2959
  } else {
2921
2960
  const l = s.substr(n - 1, 2);
2922
2961
  e(n - 1, "BAD_DQ_ESCAPE", `Invalid escape sequence ${l}`), t += l;
@@ -2934,7 +2973,7 @@ function pn(s, e) {
2934
2973
  }
2935
2974
  return (s[s.length - 1] !== '"' || s.length === 1) && e(s.length, "MISSING_CHAR", 'Missing closing "quote'), t;
2936
2975
  }
2937
- function mn(s, e) {
2976
+ function bn(s, e) {
2938
2977
  let t = "", n = s[e + 1];
2939
2978
  for (; (n === " " || n === " " || n === `
2940
2979
  ` || n === "\r") && !(n === "\r" && s[e + 2] !== `
@@ -2944,7 +2983,7 @@ function mn(s, e) {
2944
2983
  `), e += 1, n = s[e + 1];
2945
2984
  return t || (t = " "), { fold: t, offset: e };
2946
2985
  }
2947
- const yn = {
2986
+ const wn = {
2948
2987
  0: "\0",
2949
2988
  // null character
2950
2989
  a: "\x07",
@@ -2978,7 +3017,7 @@ const yn = {
2978
3017
  "\\": "\\",
2979
3018
  " ": " "
2980
3019
  };
2981
- function gn(s, e, t, n) {
3020
+ function Sn(s, e, t, n) {
2982
3021
  const i = s.substr(e, t), o = i.length === t && /^[0-9a-fA-F]+$/.test(i) ? parseInt(i, 16) : NaN;
2983
3022
  if (isNaN(o)) {
2984
3023
  const l = s.substr(e - 2, t + 2);
@@ -2986,19 +3025,21 @@ function gn(s, e, t, n) {
2986
3025
  }
2987
3026
  return String.fromCodePoint(o);
2988
3027
  }
2989
- function bs(s, e, t, n) {
2990
- const { value: i, type: r, comment: o, range: l } = e.type === "block-scalar" ? ms(s, e, n) : ys(e, s.options.strict, n), a = t ? s.directives.tagName(t.source, (f) => n(t, "TAG_RESOLVE_FAILED", f)) : null, c = t && a ? bn(s.schema, i, a, t, n) : e.type === "scalar" ? wn(s, i, e, n) : s.schema[R];
2991
- let m;
3028
+ function ks(s, e, t, n) {
3029
+ const { value: i, type: r, comment: o, range: l } = e.type === "block-scalar" ? bs(s, e, n) : ws(e, s.options.strict, n), a = t ? s.directives.tagName(t.source, (f) => n(t, "TAG_RESOLVE_FAILED", f)) : null;
3030
+ let c;
3031
+ s.options.stringKeys && s.atKey ? c = s.schema[R] : a ? c = kn(s.schema, i, a, t, n) : e.type === "scalar" ? c = Nn(s, i, e, n) : c = s.schema[R];
3032
+ let p;
2992
3033
  try {
2993
3034
  const f = c.resolve(i, (d) => n(t ?? e, "TAG_RESOLVE_FAILED", d), s.options);
2994
- m = E(f) ? f : new O(f);
3035
+ p = E(f) ? f : new A(f);
2995
3036
  } catch (f) {
2996
3037
  const d = f instanceof Error ? f.message : String(f);
2997
- n(t ?? e, "TAG_RESOLVE_FAILED", d), m = new O(i);
3038
+ n(t ?? e, "TAG_RESOLVE_FAILED", d), p = new A(i);
2998
3039
  }
2999
- return m.range = l, m.source = i, r && (m.type = r), a && (m.tag = a), c.format && (m.format = c.format), o && (m.comment = o), m;
3040
+ return p.range = l, p.source = i, r && (p.type = r), a && (p.tag = a), c.format && (p.format = c.format), o && (p.comment = o), p;
3000
3041
  }
3001
- function bn(s, e, t, n, i) {
3042
+ function kn(s, e, t, n, i) {
3002
3043
  var l;
3003
3044
  if (t === "!")
3004
3045
  return s[R];
@@ -3015,24 +3056,24 @@ function bn(s, e, t, n, i) {
3015
3056
  const o = s.knownTags[t];
3016
3057
  return o && !o.collection ? (s.tags.push(Object.assign({}, o, { default: !1, test: void 0 })), o) : (i(n, "TAG_RESOLVE_FAILED", `Unresolved tag: ${t}`, t !== "tag:yaml.org,2002:str"), s[R]);
3017
3058
  }
3018
- function wn({ directives: s, schema: e }, t, n, i) {
3019
- const r = e.tags.find((o) => {
3020
- var l;
3021
- return o.default && ((l = o.test) == null ? void 0 : l.test(t));
3022
- }) || e[R];
3023
- if (e.compat) {
3024
- const o = e.compat.find((l) => {
3025
- var a;
3026
- return l.default && ((a = l.test) == null ? void 0 : a.test(t));
3027
- }) ?? e[R];
3028
- if (r.tag !== o.tag) {
3029
- const l = s.tagString(r.tag), a = s.tagString(o.tag), c = `Value may be parsed as either ${l} or ${a}`;
3030
- i(n, "TAG_RESOLVE_FAILED", c, !0);
3059
+ function Nn({ atKey: s, directives: e, schema: t }, n, i, r) {
3060
+ const o = t.tags.find((l) => {
3061
+ var a;
3062
+ return (l.default === !0 || s && l.default === "key") && ((a = l.test) == null ? void 0 : a.test(n));
3063
+ }) || t[R];
3064
+ if (t.compat) {
3065
+ const l = t.compat.find((a) => {
3066
+ var c;
3067
+ return a.default && ((c = a.test) == null ? void 0 : c.test(n));
3068
+ }) ?? t[R];
3069
+ if (o.tag !== l.tag) {
3070
+ const a = e.tagString(o.tag), c = e.tagString(l.tag), p = `Value may be parsed as either ${a} or ${c}`;
3071
+ r(i, "TAG_RESOLVE_FAILED", p, !0);
3031
3072
  }
3032
3073
  }
3033
- return r;
3074
+ return o;
3034
3075
  }
3035
- function Sn(s, e, t) {
3076
+ function On(s, e, t) {
3036
3077
  if (e) {
3037
3078
  t === null && (t = e.length);
3038
3079
  for (let n = t - 1; n >= 0; --n) {
@@ -3051,54 +3092,55 @@ function Sn(s, e, t) {
3051
3092
  }
3052
3093
  return s;
3053
3094
  }
3054
- const kn = { composeNode: ws, composeEmptyNode: Ot };
3055
- function ws(s, e, t, n) {
3056
- const { spaceBefore: i, comment: r, anchor: o, tag: l } = t;
3057
- let a, c = !0;
3095
+ const An = { composeNode: Ns, composeEmptyNode: Et };
3096
+ function Ns(s, e, t, n) {
3097
+ const i = s.atKey, { spaceBefore: r, comment: o, anchor: l, tag: a } = t;
3098
+ let c, p = !0;
3058
3099
  switch (e.type) {
3059
3100
  case "alias":
3060
- a = Nn(s, e, n), (o || l) && n(e, "ALIAS_PROPS", "An alias node must not specify any properties");
3101
+ c = En(s, e, n), (l || a) && n(e, "ALIAS_PROPS", "An alias node must not specify any properties");
3061
3102
  break;
3062
3103
  case "scalar":
3063
3104
  case "single-quoted-scalar":
3064
3105
  case "double-quoted-scalar":
3065
3106
  case "block-scalar":
3066
- a = bs(s, e, l, n), o && (a.anchor = o.source.substring(1));
3107
+ c = ks(s, e, a, n), l && (c.anchor = l.source.substring(1));
3067
3108
  break;
3068
3109
  case "block-map":
3069
3110
  case "block-seq":
3070
3111
  case "flow-collection":
3071
- a = cn(kn, s, e, t, n), o && (a.anchor = o.source.substring(1));
3112
+ c = hn(An, s, e, t, n), l && (c.anchor = l.source.substring(1));
3072
3113
  break;
3073
3114
  default: {
3074
- const m = e.type === "error" ? e.message : `Unsupported token (type: ${e.type})`;
3075
- n(e, "UNEXPECTED_TOKEN", m), a = Ot(s, e.offset, void 0, null, t, n), c = !1;
3115
+ const f = e.type === "error" ? e.message : `Unsupported token (type: ${e.type})`;
3116
+ n(e, "UNEXPECTED_TOKEN", f), c = Et(s, e.offset, void 0, null, t, n), p = !1;
3076
3117
  }
3077
3118
  }
3078
- return o && a.anchor === "" && n(o, "BAD_ALIAS", "Anchor cannot be an empty string"), i && (a.spaceBefore = !0), r && (e.type === "scalar" && e.source === "" ? a.comment = r : a.commentBefore = r), s.options.keepSourceTokens && c && (a.srcToken = e), a;
3119
+ return l && c.anchor === "" && n(l, "BAD_ALIAS", "Anchor cannot be an empty string"), i && s.options.stringKeys && (!E(c) || typeof c.value != "string" || c.tag && c.tag !== "tag:yaml.org,2002:str") && n(a ?? e, "NON_STRING_KEY", "With stringKeys, all keys must be strings"), r && (c.spaceBefore = !0), o && (e.type === "scalar" && e.source === "" ? c.comment = o : c.commentBefore = o), s.options.keepSourceTokens && p && (c.srcToken = e), c;
3079
3120
  }
3080
- function Ot(s, e, t, n, { spaceBefore: i, comment: r, anchor: o, tag: l, end: a }, c) {
3081
- const m = {
3121
+ function Et(s, e, t, n, { spaceBefore: i, comment: r, anchor: o, tag: l, end: a }, c) {
3122
+ const p = {
3082
3123
  type: "scalar",
3083
- offset: Sn(e, t, n),
3124
+ offset: On(e, t, n),
3084
3125
  indent: -1,
3085
3126
  source: ""
3086
- }, f = bs(s, m, l, c);
3127
+ }, f = ks(s, p, l, c);
3087
3128
  return o && (f.anchor = o.source.substring(1), f.anchor === "" && c(o, "BAD_ALIAS", "Anchor cannot be an empty string")), i && (f.spaceBefore = !0), r && (f.comment = r, f.range[2] = a), f;
3088
3129
  }
3089
- function Nn({ options: s }, { offset: e, source: t, end: n }, i) {
3090
- const r = new qe(t.substring(1));
3130
+ function En({ options: s }, { offset: e, source: t, end: n }, i) {
3131
+ const r = new Re(t.substring(1));
3091
3132
  r.source === "" && i(e, "BAD_ALIAS", "Alias cannot be an empty string"), r.source.endsWith(":") && i(e + t.length - 1, "BAD_ALIAS", "Alias ending in : is ambiguous", !0);
3092
- const o = e + t.length, l = Ee(n, o, s.strict, i);
3133
+ const o = e + t.length, l = Te(n, o, s.strict, i);
3093
3134
  return r.range = [e, o, l.offset], l.comment && (r.comment = l.comment), r;
3094
3135
  }
3095
- function On(s, e, { offset: t, start: n, value: i, end: r }, o) {
3096
- const l = Object.assign({ _directives: e }, s), a = new ye(void 0, l), c = {
3136
+ function Tn(s, e, { offset: t, start: n, value: i, end: r }, o) {
3137
+ const l = Object.assign({ _directives: e }, s), a = new ge(void 0, l), c = {
3138
+ atKey: !1,
3097
3139
  atRoot: !0,
3098
3140
  directives: a.directives,
3099
3141
  options: a.options,
3100
3142
  schema: a.schema
3101
- }, m = ce(n, {
3143
+ }, p = ue(n, {
3102
3144
  indicator: "doc-start",
3103
3145
  next: i ?? (r == null ? void 0 : r[0]),
3104
3146
  offset: t,
@@ -3106,11 +3148,11 @@ function On(s, e, { offset: t, start: n, value: i, end: r }, o) {
3106
3148
  parentIndent: 0,
3107
3149
  startOnNewline: !0
3108
3150
  });
3109
- m.found && (a.directives.docStart = !0, i && (i.type === "block-map" || i.type === "block-seq") && !m.hasNewline && o(m.end, "MISSING_CHAR", "Block collection cannot start on same line with directives-end marker")), a.contents = i ? ws(c, i, m, o) : Ot(c, m.end, n, null, m, o);
3110
- const f = a.contents.range[2], d = Ee(r, f, !1, o);
3151
+ p.found && (a.directives.docStart = !0, i && (i.type === "block-map" || i.type === "block-seq") && !p.hasNewline && o(p.end, "MISSING_CHAR", "Block collection cannot start on same line with directives-end marker")), a.contents = i ? Ns(c, i, p, o) : Et(c, p.end, n, null, p, o);
3152
+ const f = a.contents.range[2], d = Te(r, f, !1, o);
3111
3153
  return d.comment && (a.comment = d.comment), a.range = [t, f, d.offset], a;
3112
3154
  }
3113
- function ge(s) {
3155
+ function be(s) {
3114
3156
  if (typeof s == "number")
3115
3157
  return [s, s + 1];
3116
3158
  if (Array.isArray(s))
@@ -3118,7 +3160,7 @@ function ge(s) {
3118
3160
  const { offset: e, source: t } = s;
3119
3161
  return [e, e + (typeof t == "string" ? t.length : 1)];
3120
3162
  }
3121
- function Bt(s) {
3163
+ function Kt(s) {
3122
3164
  var i;
3123
3165
  let e = "", t = !1, n = !1;
3124
3166
  for (let r = 0; r < s.length; ++r) {
@@ -3139,15 +3181,15 @@ function Bt(s) {
3139
3181
  }
3140
3182
  return { comment: e, afterEmptyLine: n };
3141
3183
  }
3142
- class At {
3184
+ class Tt {
3143
3185
  constructor(e = {}) {
3144
3186
  this.doc = null, this.atDirectives = !1, this.prelude = [], this.errors = [], this.warnings = [], this.onError = (t, n, i, r) => {
3145
- const o = ge(t);
3146
- r ? this.warnings.push(new ds(o, n, i)) : this.errors.push(new X(o, n, i));
3187
+ const o = be(t);
3188
+ r ? this.warnings.push(new ys(o, n, i)) : this.errors.push(new z(o, n, i));
3147
3189
  }, this.directives = new B({ version: e.version || "1.2" }), this.options = e;
3148
3190
  }
3149
3191
  decorate(e, t) {
3150
- const { comment: n, afterEmptyLine: i } = Bt(this.prelude);
3192
+ const { comment: n, afterEmptyLine: i } = Kt(this.prelude);
3151
3193
  if (n) {
3152
3194
  const r = e.contents;
3153
3195
  if (t)
@@ -3176,7 +3218,7 @@ ${o}` : n;
3176
3218
  */
3177
3219
  streamInfo() {
3178
3220
  return {
3179
- comment: Bt(this.prelude).comment,
3221
+ comment: Kt(this.prelude).comment,
3180
3222
  directives: this.directives,
3181
3223
  errors: this.errors,
3182
3224
  warnings: this.warnings
@@ -3198,12 +3240,12 @@ ${o}` : n;
3198
3240
  switch (e.type) {
3199
3241
  case "directive":
3200
3242
  this.directives.add(e.source, (t, n, i) => {
3201
- const r = ge(e);
3243
+ const r = be(e);
3202
3244
  r[0] += t, this.onError(r, "BAD_DIRECTIVE", n, i);
3203
3245
  }), this.prelude.push(e.source), this.atDirectives = !0;
3204
3246
  break;
3205
3247
  case "document": {
3206
- const t = On(this.options, this.directives, e, this.onError);
3248
+ const t = Tn(this.options, this.directives, e, this.onError);
3207
3249
  this.atDirectives && !t.directives.docStart && this.onError(e, "MISSING_CHAR", "Missing directives-end/doc-start indicator line"), this.decorate(t, !1), this.doc && (yield this.doc), this.doc = t, this.atDirectives = !1;
3208
3250
  break;
3209
3251
  }
@@ -3215,18 +3257,18 @@ ${o}` : n;
3215
3257
  this.prelude.push(e.source);
3216
3258
  break;
3217
3259
  case "error": {
3218
- const t = e.source ? `${e.message}: ${JSON.stringify(e.source)}` : e.message, n = new X(ge(e), "UNEXPECTED_TOKEN", t);
3260
+ const t = e.source ? `${e.message}: ${JSON.stringify(e.source)}` : e.message, n = new z(be(e), "UNEXPECTED_TOKEN", t);
3219
3261
  this.atDirectives || !this.doc ? this.errors.push(n) : this.doc.errors.push(n);
3220
3262
  break;
3221
3263
  }
3222
3264
  case "doc-end": {
3223
3265
  if (!this.doc) {
3224
3266
  const n = "Unexpected doc-end without preceding document";
3225
- this.errors.push(new X(ge(e), "UNEXPECTED_TOKEN", n));
3267
+ this.errors.push(new z(be(e), "UNEXPECTED_TOKEN", n));
3226
3268
  break;
3227
3269
  }
3228
3270
  this.doc.directives.docEnd = !0;
3229
- const t = Ee(e.end, e.offset + e.source.length, this.doc.options.strict, this.onError);
3271
+ const t = Te(e.end, e.offset + e.source.length, this.doc.options.strict, this.onError);
3230
3272
  if (this.decorate(this.doc, !0), t.comment) {
3231
3273
  const n = this.doc.comment;
3232
3274
  this.doc.comment = n ? `${n}
@@ -3236,7 +3278,7 @@ ${t.comment}` : t.comment;
3236
3278
  break;
3237
3279
  }
3238
3280
  default:
3239
- this.errors.push(new X(ge(e), "UNEXPECTED_TOKEN", `Unsupported token ${e.type}`));
3281
+ this.errors.push(new z(be(e), "UNEXPECTED_TOKEN", `Unsupported token ${e.type}`));
3240
3282
  }
3241
3283
  }
3242
3284
  /**
@@ -3249,33 +3291,33 @@ ${t.comment}` : t.comment;
3249
3291
  if (this.doc)
3250
3292
  this.decorate(this.doc, !0), yield this.doc, this.doc = null;
3251
3293
  else if (e) {
3252
- const n = Object.assign({ _directives: this.directives }, this.options), i = new ye(void 0, n);
3294
+ const n = Object.assign({ _directives: this.directives }, this.options), i = new ge(void 0, n);
3253
3295
  this.atDirectives && this.onError(t, "MISSING_CHAR", "Missing directives-end indicator line"), i.range = [0, t, t], this.decorate(i, !1), yield i;
3254
3296
  }
3255
3297
  }
3256
3298
  }
3257
- function An(s, e = !0, t) {
3299
+ function In(s, e = !0, t) {
3258
3300
  if (s) {
3259
3301
  const n = (i, r, o) => {
3260
3302
  const l = typeof i == "number" ? i : Array.isArray(i) ? i[0] : i.offset;
3261
3303
  if (t)
3262
3304
  t(l, r, o);
3263
3305
  else
3264
- throw new X([l, l + 1], r, o);
3306
+ throw new z([l, l + 1], r, o);
3265
3307
  };
3266
3308
  switch (s.type) {
3267
3309
  case "scalar":
3268
3310
  case "single-quoted-scalar":
3269
3311
  case "double-quoted-scalar":
3270
- return ys(s, e, n);
3312
+ return ws(s, e, n);
3271
3313
  case "block-scalar":
3272
- return ms({ options: { strict: e } }, s, n);
3314
+ return bs({ options: { strict: e } }, s, n);
3273
3315
  }
3274
3316
  }
3275
3317
  return null;
3276
3318
  }
3277
- function En(s, e) {
3278
- const { implicitKey: t = !1, indent: n, inFlow: i = !1, offset: r = -1, type: o = "PLAIN" } = e, l = Oe({ type: o, value: s }, {
3319
+ function Ln(s, e) {
3320
+ const { implicitKey: t = !1, indent: n, inFlow: i = !1, offset: r = -1, type: o = "PLAIN" } = e, l = Ae({ type: o, value: s }, {
3279
3321
  implicitKey: t,
3280
3322
  indent: n > 0 ? " ".repeat(n) : "",
3281
3323
  inFlow: i,
@@ -3288,11 +3330,11 @@ function En(s, e) {
3288
3330
  case "|":
3289
3331
  case ">": {
3290
3332
  const c = l.indexOf(`
3291
- `), m = l.substring(0, c), f = l.substring(c + 1) + `
3333
+ `), p = l.substring(0, c), f = l.substring(c + 1) + `
3292
3334
  `, d = [
3293
- { type: "block-scalar-header", offset: r, indent: n, source: m }
3335
+ { type: "block-scalar-header", offset: r, indent: n, source: p }
3294
3336
  ];
3295
- return Ss(d, a) || d.push({ type: "newline", offset: -1, indent: n, source: `
3337
+ return Os(d, a) || d.push({ type: "newline", offset: -1, indent: n, source: `
3296
3338
  ` }), { type: "block-scalar", offset: r, indent: n, props: d, source: f };
3297
3339
  }
3298
3340
  case '"':
@@ -3303,7 +3345,7 @@ function En(s, e) {
3303
3345
  return { type: "scalar", offset: r, indent: n, source: l, end: a };
3304
3346
  }
3305
3347
  }
3306
- function In(s, e, t = {}) {
3348
+ function $n(s, e, t = {}) {
3307
3349
  let { afterKey: n = !1, implicitKey: i = !1, inFlow: r = !1, type: o } = t, l = "indent" in s ? s.indent : null;
3308
3350
  if (n && typeof l == "number" && (l += 2), !o)
3309
3351
  switch (s.type) {
@@ -3323,7 +3365,7 @@ function In(s, e, t = {}) {
3323
3365
  default:
3324
3366
  o = "PLAIN";
3325
3367
  }
3326
- const a = Oe({ type: o, value: e }, {
3368
+ const a = Ae({ type: o, value: e }, {
3327
3369
  implicitKey: i || l === null,
3328
3370
  indent: l !== null && l > 0 ? " ".repeat(l) : "",
3329
3371
  inFlow: r,
@@ -3332,19 +3374,19 @@ function In(s, e, t = {}) {
3332
3374
  switch (a[0]) {
3333
3375
  case "|":
3334
3376
  case ">":
3335
- Tn(s, a);
3377
+ _n(s, a);
3336
3378
  break;
3337
3379
  case '"':
3338
- nt(s, a, "double-quoted-scalar");
3380
+ rt(s, a, "double-quoted-scalar");
3339
3381
  break;
3340
3382
  case "'":
3341
- nt(s, a, "single-quoted-scalar");
3383
+ rt(s, a, "single-quoted-scalar");
3342
3384
  break;
3343
3385
  default:
3344
- nt(s, a, "scalar");
3386
+ rt(s, a, "scalar");
3345
3387
  }
3346
3388
  }
3347
- function Tn(s, e) {
3389
+ function _n(s, e) {
3348
3390
  const t = e.indexOf(`
3349
3391
  `), n = e.substring(0, t), i = e.substring(t + 1) + `
3350
3392
  `;
@@ -3357,14 +3399,14 @@ function Tn(s, e) {
3357
3399
  const { offset: r } = s, o = "indent" in s ? s.indent : -1, l = [
3358
3400
  { type: "block-scalar-header", offset: r, indent: o, source: n }
3359
3401
  ];
3360
- Ss(l, "end" in s ? s.end : void 0) || l.push({ type: "newline", offset: -1, indent: o, source: `
3402
+ Os(l, "end" in s ? s.end : void 0) || l.push({ type: "newline", offset: -1, indent: o, source: `
3361
3403
  ` });
3362
3404
  for (const a of Object.keys(s))
3363
3405
  a !== "type" && a !== "offset" && delete s[a];
3364
3406
  Object.assign(s, { type: "block-scalar", indent: o, props: l, source: i });
3365
3407
  }
3366
3408
  }
3367
- function Ss(s, e) {
3409
+ function Os(s, e) {
3368
3410
  if (e)
3369
3411
  for (const t of e)
3370
3412
  switch (t.type) {
@@ -3377,7 +3419,7 @@ function Ss(s, e) {
3377
3419
  }
3378
3420
  return !1;
3379
3421
  }
3380
- function nt(s, e, t) {
3422
+ function rt(s, e, t) {
3381
3423
  switch (s.type) {
3382
3424
  case "scalar":
3383
3425
  case "double-quoted-scalar":
@@ -3408,32 +3450,32 @@ function nt(s, e, t) {
3408
3450
  }
3409
3451
  }
3410
3452
  }
3411
- const Ln = (s) => "type" in s ? Ke(s) : Be(s);
3412
- function Ke(s) {
3453
+ const Cn = (s) => "type" in s ? qe(s) : Ke(s);
3454
+ function qe(s) {
3413
3455
  switch (s.type) {
3414
3456
  case "block-scalar": {
3415
3457
  let e = "";
3416
3458
  for (const t of s.props)
3417
- e += Ke(t);
3459
+ e += qe(t);
3418
3460
  return e + s.source;
3419
3461
  }
3420
3462
  case "block-map":
3421
3463
  case "block-seq": {
3422
3464
  let e = "";
3423
3465
  for (const t of s.items)
3424
- e += Be(t);
3466
+ e += Ke(t);
3425
3467
  return e;
3426
3468
  }
3427
3469
  case "flow-collection": {
3428
3470
  let e = s.start.source;
3429
3471
  for (const t of s.items)
3430
- e += Be(t);
3472
+ e += Ke(t);
3431
3473
  for (const t of s.end)
3432
3474
  e += t.source;
3433
3475
  return e;
3434
3476
  }
3435
3477
  case "document": {
3436
- let e = Be(s);
3478
+ let e = Ke(s);
3437
3479
  if (s.end)
3438
3480
  for (const t of s.end)
3439
3481
  e += t.source;
@@ -3448,23 +3490,23 @@ function Ke(s) {
3448
3490
  }
3449
3491
  }
3450
3492
  }
3451
- function Be({ start: s, key: e, sep: t, value: n }) {
3493
+ function Ke({ start: s, key: e, sep: t, value: n }) {
3452
3494
  let i = "";
3453
3495
  for (const r of s)
3454
3496
  i += r.source;
3455
- if (e && (i += Ke(e)), t)
3497
+ if (e && (i += qe(e)), t)
3456
3498
  for (const r of t)
3457
3499
  i += r.source;
3458
- return n && (i += Ke(n)), i;
3500
+ return n && (i += qe(n)), i;
3459
3501
  }
3460
- const ft = Symbol("break visit"), $n = Symbol("skip children"), ks = Symbol("remove item");
3461
- function z(s, e) {
3462
- "type" in s && s.type === "document" && (s = { start: s.start, value: s.value }), Ns(Object.freeze([]), s, e);
3502
+ const ht = Symbol("break visit"), vn = Symbol("skip children"), As = Symbol("remove item");
3503
+ function Z(s, e) {
3504
+ "type" in s && s.type === "document" && (s = { start: s.start, value: s.value }), Es(Object.freeze([]), s, e);
3463
3505
  }
3464
- z.BREAK = ft;
3465
- z.SKIP = $n;
3466
- z.REMOVE = ks;
3467
- z.itemAtPath = (s, e) => {
3506
+ Z.BREAK = ht;
3507
+ Z.SKIP = vn;
3508
+ Z.REMOVE = As;
3509
+ Z.itemAtPath = (s, e) => {
3468
3510
  let t = s;
3469
3511
  for (const [n, i] of e) {
3470
3512
  const r = t == null ? void 0 : t[n];
@@ -3475,13 +3517,13 @@ z.itemAtPath = (s, e) => {
3475
3517
  }
3476
3518
  return t;
3477
3519
  };
3478
- z.parentCollection = (s, e) => {
3479
- const t = z.itemAtPath(s, e.slice(0, -1)), n = e[e.length - 1][0], i = t == null ? void 0 : t[n];
3520
+ Z.parentCollection = (s, e) => {
3521
+ const t = Z.itemAtPath(s, e.slice(0, -1)), n = e[e.length - 1][0], i = t == null ? void 0 : t[n];
3480
3522
  if (i && "items" in i)
3481
3523
  return i;
3482
3524
  throw new Error("Parent collection not found");
3483
3525
  };
3484
- function Ns(s, e, t) {
3526
+ function Es(s, e, t) {
3485
3527
  let n = t(e, s);
3486
3528
  if (typeof n == "symbol")
3487
3529
  return n;
@@ -3489,13 +3531,13 @@ function Ns(s, e, t) {
3489
3531
  const r = e[i];
3490
3532
  if (r && "items" in r) {
3491
3533
  for (let o = 0; o < r.items.length; ++o) {
3492
- const l = Ns(Object.freeze(s.concat([[i, o]])), r.items[o], t);
3534
+ const l = Es(Object.freeze(s.concat([[i, o]])), r.items[o], t);
3493
3535
  if (typeof l == "number")
3494
3536
  o = l - 1;
3495
3537
  else {
3496
- if (l === ft)
3497
- return ft;
3498
- l === ks && (r.items.splice(o, 1), o -= 1);
3538
+ if (l === ht)
3539
+ return ht;
3540
+ l === As && (r.items.splice(o, 1), o -= 1);
3499
3541
  }
3500
3542
  }
3501
3543
  typeof n == "function" && i === "key" && (n = n(e, s));
@@ -3503,30 +3545,30 @@ function Ns(s, e, t) {
3503
3545
  }
3504
3546
  return typeof n == "function" ? n(e, s) : n;
3505
3547
  }
3506
- const He = "\uFEFF", Xe = "", ze = "", Ne = "", _n = (s) => !!s && "items" in s, Cn = (s) => !!s && (s.type === "scalar" || s.type === "single-quoted-scalar" || s.type === "double-quoted-scalar" || s.type === "block-scalar");
3507
- function vn(s) {
3548
+ const ze = "\uFEFF", Ze = "", xe = "", Oe = "", Bn = (s) => !!s && "items" in s, Mn = (s) => !!s && (s.type === "scalar" || s.type === "single-quoted-scalar" || s.type === "double-quoted-scalar" || s.type === "block-scalar");
3549
+ function Kn(s) {
3508
3550
  switch (s) {
3509
- case He:
3551
+ case ze:
3510
3552
  return "<BOM>";
3511
- case Xe:
3553
+ case Ze:
3512
3554
  return "<DOC>";
3513
- case ze:
3555
+ case xe:
3514
3556
  return "<FLOW_END>";
3515
- case Ne:
3557
+ case Oe:
3516
3558
  return "<SCALAR>";
3517
3559
  default:
3518
3560
  return JSON.stringify(s);
3519
3561
  }
3520
3562
  }
3521
- function Os(s) {
3563
+ function Ts(s) {
3522
3564
  switch (s) {
3523
- case He:
3565
+ case ze:
3524
3566
  return "byte-order-mark";
3525
- case Xe:
3567
+ case Ze:
3526
3568
  return "doc-mode";
3527
- case ze:
3569
+ case xe:
3528
3570
  return "flow-error-end";
3529
- case Ne:
3571
+ case Oe:
3530
3572
  return "scalar";
3531
3573
  case "---":
3532
3574
  return "doc-start";
@@ -3579,23 +3621,23 @@ function Os(s) {
3579
3621
  }
3580
3622
  return null;
3581
3623
  }
3582
- const Bn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3624
+ var Pn = /* @__PURE__ */ Object.freeze({
3583
3625
  __proto__: null,
3584
- BOM: He,
3585
- DOCUMENT: Xe,
3586
- FLOW_END: ze,
3587
- SCALAR: Ne,
3588
- createScalarToken: En,
3589
- isCollection: _n,
3590
- isScalar: Cn,
3591
- prettyToken: vn,
3592
- resolveAsScalar: An,
3593
- setScalarValue: In,
3594
- stringify: Ln,
3595
- tokenType: Os,
3596
- visit: z
3597
- }, Symbol.toStringTag, { value: "Module" }));
3598
- function D(s) {
3626
+ BOM: ze,
3627
+ DOCUMENT: Ze,
3628
+ FLOW_END: xe,
3629
+ SCALAR: Oe,
3630
+ createScalarToken: Ln,
3631
+ isCollection: Bn,
3632
+ isScalar: Mn,
3633
+ prettyToken: Kn,
3634
+ resolveAsScalar: In,
3635
+ setScalarValue: $n,
3636
+ stringify: Cn,
3637
+ tokenType: Ts,
3638
+ visit: Z
3639
+ });
3640
+ function j(s) {
3599
3641
  switch (s) {
3600
3642
  case void 0:
3601
3643
  case " ":
@@ -3608,9 +3650,9 @@ function D(s) {
3608
3650
  return !1;
3609
3651
  }
3610
3652
  }
3611
- const Mt = new Set("0123456789ABCDEFabcdef"), Mn = new Set("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-#;/?:@&=+$_.!~*'()"), Le = new Set(",[]{}"), Pn = new Set(` ,[]{}
3612
- \r `), it = (s) => !s || Pn.has(s);
3613
- class As {
3653
+ const Pt = new Set("0123456789ABCDEFabcdef"), Dn = new Set("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-#;/?:@&=+$_.!~*'()"), _e = new Set(",[]{}"), jn = new Set(` ,[]{}
3654
+ \r `), ot = (s) => !s || jn.has(s);
3655
+ class Is {
3614
3656
  constructor() {
3615
3657
  this.atEnd = !1, this.blockScalarIndent = -1, this.blockScalarKeep = !1, this.buffer = "", this.flowKey = !1, this.flowLevel = 0, this.indentNext = 0, this.indentValue = 0, this.lineEndPos = null, this.next = null, this.pos = 0;
3616
3658
  }
@@ -3659,7 +3701,7 @@ class As {
3659
3701
  }
3660
3702
  if (t === "-" || t === ".") {
3661
3703
  const n = this.buffer.substr(e, 3);
3662
- if ((n === "---" || n === "...") && D(this.buffer[e + 3]))
3704
+ if ((n === "---" || n === "...") && j(this.buffer[e + 3]))
3663
3705
  return -1;
3664
3706
  }
3665
3707
  return e;
@@ -3702,7 +3744,7 @@ class As {
3702
3744
  let e = this.getLine();
3703
3745
  if (e === null)
3704
3746
  return this.setNext("stream");
3705
- if (e[0] === He && (yield* this.pushCount(1), e = e.substring(1)), e[0] === "%") {
3747
+ if (e[0] === ze && (yield* this.pushCount(1), e = e.substring(1)), e[0] === "%") {
3706
3748
  let t = e.length, n = e.indexOf("#");
3707
3749
  for (; n !== -1; ) {
3708
3750
  const r = e[n - 1];
@@ -3726,7 +3768,7 @@ class As {
3726
3768
  const t = yield* this.pushSpaces(!0);
3727
3769
  return yield* this.pushCount(e.length - t), yield* this.pushNewline(), "stream";
3728
3770
  }
3729
- return yield Xe, yield* this.parseLineStart();
3771
+ return yield Ze, yield* this.parseLineStart();
3730
3772
  }
3731
3773
  *parseLineStart() {
3732
3774
  const e = this.charAt(0);
@@ -3736,16 +3778,16 @@ class As {
3736
3778
  if (!this.atEnd && !this.hasChars(4))
3737
3779
  return this.setNext("line-start");
3738
3780
  const t = this.peek(3);
3739
- if ((t === "---" || t === "...") && D(this.charAt(3)))
3781
+ if ((t === "---" || t === "...") && j(this.charAt(3)))
3740
3782
  return yield* this.pushCount(3), this.indentValue = 0, this.indentNext = 0, t === "---" ? "doc" : "stream";
3741
3783
  }
3742
- return this.indentValue = yield* this.pushSpaces(!1), this.indentNext > this.indentValue && !D(this.charAt(1)) && (this.indentNext = this.indentValue), yield* this.parseBlockStart();
3784
+ return this.indentValue = yield* this.pushSpaces(!1), this.indentNext > this.indentValue && !j(this.charAt(1)) && (this.indentNext = this.indentValue), yield* this.parseBlockStart();
3743
3785
  }
3744
3786
  *parseBlockStart() {
3745
3787
  const [e, t] = this.peek(2);
3746
3788
  if (!t && !this.atEnd)
3747
3789
  return this.setNext("block-start");
3748
- if ((e === "-" || e === "?" || e === ":") && D(t)) {
3790
+ if ((e === "-" || e === "?" || e === ":") && j(t)) {
3749
3791
  const n = (yield* this.pushCount(1)) + (yield* this.pushSpaces(!0));
3750
3792
  return this.indentNext = this.indentValue + 1, this.indentValue += n, yield* this.parseBlockStart();
3751
3793
  }
@@ -3760,6 +3802,7 @@ class As {
3760
3802
  switch (e[t]) {
3761
3803
  case "#":
3762
3804
  yield* this.pushCount(e.length - t);
3805
+ // fallthrough
3763
3806
  case void 0:
3764
3807
  return yield* this.pushNewline(), yield* this.parseLineStart();
3765
3808
  case "{":
@@ -3769,7 +3812,7 @@ class As {
3769
3812
  case "]":
3770
3813
  return yield* this.pushCount(1), "doc";
3771
3814
  case "*":
3772
- return yield* this.pushUntil(it), "doc";
3815
+ return yield* this.pushUntil(ot), "doc";
3773
3816
  case '"':
3774
3817
  case "'":
3775
3818
  return yield* this.parseQuotedScalar();
@@ -3788,8 +3831,8 @@ class As {
3788
3831
  const i = this.getLine();
3789
3832
  if (i === null)
3790
3833
  return this.setNext("flow");
3791
- if ((n !== -1 && n < this.indentNext && i[0] !== "#" || n === 0 && (i.startsWith("---") || i.startsWith("...")) && D(i[3])) && !(n === this.indentNext - 1 && this.flowLevel === 1 && (i[0] === "]" || i[0] === "}")))
3792
- return this.flowLevel = 0, yield ze, yield* this.parseLineStart();
3834
+ if ((n !== -1 && n < this.indentNext && i[0] !== "#" || n === 0 && (i.startsWith("---") || i.startsWith("...")) && j(i[3])) && !(n === this.indentNext - 1 && this.flowLevel === 1 && (i[0] === "]" || i[0] === "}")))
3835
+ return this.flowLevel = 0, yield xe, yield* this.parseLineStart();
3793
3836
  let r = 0;
3794
3837
  for (; i[r] === ","; )
3795
3838
  r += yield* this.pushCount(1), r += yield* this.pushSpaces(!0), this.flowKey = !1;
@@ -3805,15 +3848,16 @@ class As {
3805
3848
  case "]":
3806
3849
  return yield* this.pushCount(1), this.flowKey = !0, this.flowLevel -= 1, this.flowLevel ? "flow" : "doc";
3807
3850
  case "*":
3808
- return yield* this.pushUntil(it), "flow";
3851
+ return yield* this.pushUntil(ot), "flow";
3809
3852
  case '"':
3810
3853
  case "'":
3811
3854
  return this.flowKey = !0, yield* this.parseQuotedScalar();
3812
3855
  case ":": {
3813
3856
  const o = this.charAt(1);
3814
- if (this.flowKey || D(o) || o === ",")
3857
+ if (this.flowKey || j(o) || o === ",")
3815
3858
  return this.flowKey = !1, yield* this.pushCount(1), yield* this.pushSpaces(!0), "flow";
3816
3859
  }
3860
+ // fallthrough
3817
3861
  default:
3818
3862
  return this.flowKey = !1, yield* this.parsePlainScalar();
3819
3863
  }
@@ -3865,7 +3909,7 @@ class As {
3865
3909
  else if (t !== "-")
3866
3910
  break;
3867
3911
  }
3868
- return yield* this.pushUntil((t) => D(t) || t === "#");
3912
+ return yield* this.pushUntil((t) => j(t) || t === "#");
3869
3913
  }
3870
3914
  *parseBlockScalar() {
3871
3915
  let e = this.pos - 1, t = 0, n;
@@ -3886,6 +3930,7 @@ class As {
3886
3930
  `)
3887
3931
  break;
3888
3932
  }
3933
+ // fallthrough
3889
3934
  default:
3890
3935
  break e;
3891
3936
  }
@@ -3927,7 +3972,7 @@ class As {
3927
3972
  else
3928
3973
  break;
3929
3974
  } while (!0);
3930
- return yield Ne, yield* this.pushToIndex(e + 1, !0), yield* this.parseLineStart();
3975
+ return yield Oe, yield* this.pushToIndex(e + 1, !0), yield* this.parseLineStart();
3931
3976
  }
3932
3977
  *parsePlainScalar() {
3933
3978
  const e = this.flowLevel > 0;
@@ -3935,14 +3980,14 @@ class As {
3935
3980
  for (; i = this.buffer[++n]; )
3936
3981
  if (i === ":") {
3937
3982
  const r = this.buffer[n + 1];
3938
- if (D(r) || e && Le.has(r))
3983
+ if (j(r) || e && _e.has(r))
3939
3984
  break;
3940
3985
  t = n;
3941
- } else if (D(i)) {
3986
+ } else if (j(i)) {
3942
3987
  let r = this.buffer[n + 1];
3943
3988
  if (i === "\r" && (r === `
3944
3989
  ` ? (n += 1, i = `
3945
- `, r = this.buffer[n + 1]) : t = n), r === "#" || e && Le.has(r))
3990
+ `, r = this.buffer[n + 1]) : t = n), r === "#" || e && _e.has(r))
3946
3991
  break;
3947
3992
  if (i === `
3948
3993
  `) {
@@ -3952,11 +3997,11 @@ class As {
3952
3997
  n = Math.max(n, o - 2);
3953
3998
  }
3954
3999
  } else {
3955
- if (e && Le.has(i))
4000
+ if (e && _e.has(i))
3956
4001
  break;
3957
4002
  t = n;
3958
4003
  }
3959
- return !i && !this.atEnd ? this.setNext("plain-scalar") : (yield Ne, yield* this.pushToIndex(t + 1, !0), e ? "flow" : "doc");
4004
+ return !i && !this.atEnd ? this.setNext("plain-scalar") : (yield Oe, yield* this.pushToIndex(t + 1, !0), e ? "flow" : "doc");
3960
4005
  }
3961
4006
  *pushCount(e) {
3962
4007
  return e > 0 ? (yield this.buffer.substr(this.pos, e), this.pos += e, e) : 0;
@@ -3970,12 +4015,14 @@ class As {
3970
4015
  case "!":
3971
4016
  return (yield* this.pushTag()) + (yield* this.pushSpaces(!0)) + (yield* this.pushIndicators());
3972
4017
  case "&":
3973
- return (yield* this.pushUntil(it)) + (yield* this.pushSpaces(!0)) + (yield* this.pushIndicators());
4018
+ return (yield* this.pushUntil(ot)) + (yield* this.pushSpaces(!0)) + (yield* this.pushIndicators());
3974
4019
  case "-":
4020
+ // this is an error
3975
4021
  case "?":
4022
+ // this is an error outside flow collections
3976
4023
  case ":": {
3977
4024
  const e = this.flowLevel > 0, t = this.charAt(1);
3978
- if (D(t) || e && Le.has(t))
4025
+ if (j(t) || e && _e.has(t))
3979
4026
  return e ? this.flowKey && (this.flowKey = !1) : this.indentNext = this.indentValue + 1, (yield* this.pushCount(1)) + (yield* this.pushSpaces(!0)) + (yield* this.pushIndicators());
3980
4027
  }
3981
4028
  }
@@ -3984,15 +4031,15 @@ class As {
3984
4031
  *pushTag() {
3985
4032
  if (this.charAt(1) === "<") {
3986
4033
  let e = this.pos + 2, t = this.buffer[e];
3987
- for (; !D(t) && t !== ">"; )
4034
+ for (; !j(t) && t !== ">"; )
3988
4035
  t = this.buffer[++e];
3989
4036
  return yield* this.pushToIndex(t === ">" ? e + 1 : e, !1);
3990
4037
  } else {
3991
4038
  let e = this.pos + 1, t = this.buffer[e];
3992
4039
  for (; t; )
3993
- if (Mn.has(t))
4040
+ if (Dn.has(t))
3994
4041
  t = this.buffer[++e];
3995
- else if (t === "%" && Mt.has(this.buffer[e + 1]) && Mt.has(this.buffer[e + 2]))
4042
+ else if (t === "%" && Pt.has(this.buffer[e + 1]) && Pt.has(this.buffer[e + 2]))
3996
4043
  t = this.buffer[e += 3];
3997
4044
  else
3998
4045
  break;
@@ -4020,7 +4067,7 @@ class As {
4020
4067
  return yield* this.pushToIndex(t, !1);
4021
4068
  }
4022
4069
  }
4023
- class Es {
4070
+ class Ls {
4024
4071
  constructor() {
4025
4072
  this.lineStarts = [], this.addNewLine = (e) => this.lineStarts.push(e), this.linePos = (e) => {
4026
4073
  let t = 0, n = this.lineStarts.length;
@@ -4037,13 +4084,13 @@ class Es {
4037
4084
  };
4038
4085
  }
4039
4086
  }
4040
- function Q(s, e) {
4087
+ function W(s, e) {
4041
4088
  for (let t = 0; t < s.length; ++t)
4042
4089
  if (s[t].type === e)
4043
4090
  return !0;
4044
4091
  return !1;
4045
4092
  }
4046
- function Pt(s) {
4093
+ function Dt(s) {
4047
4094
  for (let e = 0; e < s.length; ++e)
4048
4095
  switch (s[e].type) {
4049
4096
  case "space":
@@ -4055,7 +4102,7 @@ function Pt(s) {
4055
4102
  }
4056
4103
  return -1;
4057
4104
  }
4058
- function Is(s) {
4105
+ function $s(s) {
4059
4106
  switch (s == null ? void 0 : s.type) {
4060
4107
  case "alias":
4061
4108
  case "scalar":
@@ -4067,7 +4114,7 @@ function Is(s) {
4067
4114
  return !1;
4068
4115
  }
4069
4116
  }
4070
- function $e(s) {
4117
+ function Ce(s) {
4071
4118
  switch (s.type) {
4072
4119
  case "document":
4073
4120
  return s.start;
@@ -4077,11 +4124,12 @@ function $e(s) {
4077
4124
  }
4078
4125
  case "block-seq":
4079
4126
  return s.items[s.items.length - 1].start;
4127
+ /* istanbul ignore next should not happen */
4080
4128
  default:
4081
4129
  return [];
4082
4130
  }
4083
4131
  }
4084
- function te(s) {
4132
+ function ne(s) {
4085
4133
  var t;
4086
4134
  if (s.length === 0)
4087
4135
  return [];
@@ -4102,15 +4150,15 @@ function te(s) {
4102
4150
  function jt(s) {
4103
4151
  if (s.start.type === "flow-seq-start")
4104
4152
  for (const e of s.items)
4105
- e.sep && !e.value && !Q(e.start, "explicit-key-ind") && !Q(e.sep, "map-value-ind") && (e.key && (e.value = e.key), delete e.key, Is(e.value) ? e.value.end ? Array.prototype.push.apply(e.value.end, e.sep) : e.value.end = e.sep : Array.prototype.push.apply(e.start, e.sep), delete e.sep);
4153
+ e.sep && !e.value && !W(e.start, "explicit-key-ind") && !W(e.sep, "map-value-ind") && (e.key && (e.value = e.key), delete e.key, $s(e.value) ? e.value.end ? Array.prototype.push.apply(e.value.end, e.sep) : e.value.end = e.sep : Array.prototype.push.apply(e.start, e.sep), delete e.sep);
4106
4154
  }
4107
- class Et {
4155
+ class It {
4108
4156
  /**
4109
4157
  * @param onNewLine - If defined, called separately with the start position of
4110
4158
  * each new line (in `parse()`, including the start of input).
4111
4159
  */
4112
4160
  constructor(e) {
4113
- this.atNewLine = !0, this.atScalar = !1, this.indent = 0, this.offset = 0, this.onKeyLine = !1, this.stack = [], this.source = "", this.type = "", this.lexer = new As(), this.onNewLine = e;
4161
+ this.atNewLine = !0, this.atScalar = !1, this.indent = 0, this.offset = 0, this.onKeyLine = !1, this.stack = [], this.source = "", this.type = "", this.lexer = new Is(), this.onNewLine = e;
4114
4162
  }
4115
4163
  /**
4116
4164
  * Parse `source` as a YAML stream.
@@ -4134,7 +4182,7 @@ class Et {
4134
4182
  this.atScalar = !1, yield* this.step(), this.offset += e.length;
4135
4183
  return;
4136
4184
  }
4137
- const t = Os(e);
4185
+ const t = Ts(e);
4138
4186
  if (t)
4139
4187
  if (t === "scalar")
4140
4188
  this.atNewLine = !1, this.atScalar = !0, this.type = "scalar";
@@ -4253,12 +4301,13 @@ class Et {
4253
4301
  !i || i.value ? n.items.push({ start: [], key: t, sep: [] }) : i.sep ? i.value = t : Object.assign(i, { key: t, sep: [] });
4254
4302
  return;
4255
4303
  }
4304
+ /* istanbul ignore next should not happen */
4256
4305
  default:
4257
4306
  yield* this.pop(), yield* this.pop(t);
4258
4307
  }
4259
4308
  if ((n.type === "document" || n.type === "block-map" || n.type === "block-seq") && (t.type === "block-map" || t.type === "block-seq")) {
4260
4309
  const i = t.items[t.items.length - 1];
4261
- i && !i.sep && !i.value && i.start.length > 0 && Pt(i.start) === -1 && (t.indent === 0 || i.start.every((r) => r.type !== "comment" || r.indent < t.indent)) && (n.type === "document" ? n.end = i.start : n.items.push({ start: i.start }), t.items.splice(-1, 1));
4310
+ i && !i.sep && !i.value && i.start.length > 0 && Dt(i.start) === -1 && (t.indent === 0 || i.start.every((r) => r.type !== "comment" || r.indent < t.indent)) && (n.type === "document" ? n.end = i.start : n.items.push({ start: i.start }), t.items.splice(-1, 1));
4262
4311
  }
4263
4312
  }
4264
4313
  }
@@ -4296,7 +4345,7 @@ class Et {
4296
4345
  return yield* this.lineEnd(e);
4297
4346
  switch (this.type) {
4298
4347
  case "doc-start": {
4299
- Pt(e.start) !== -1 ? (yield* this.pop(), yield* this.step()) : e.start.push(this.sourceToken);
4348
+ Dt(e.start) !== -1 ? (yield* this.pop(), yield* this.step()) : e.start.push(this.sourceToken);
4300
4349
  return;
4301
4350
  }
4302
4351
  case "anchor":
@@ -4317,7 +4366,7 @@ class Et {
4317
4366
  }
4318
4367
  *scalar(e) {
4319
4368
  if (this.type === "map-value-ind") {
4320
- const t = $e(this.peek(2)), n = te(t);
4369
+ const t = Ce(this.peek(2)), n = ne(t);
4321
4370
  let i;
4322
4371
  e.end ? (i = e.end, i.push(this.sourceToken), delete e.end) : i = [this.sourceToken];
4323
4372
  const r = {
@@ -4347,6 +4396,7 @@ class Et {
4347
4396
  }
4348
4397
  yield* this.pop();
4349
4398
  break;
4399
+ /* istanbul ignore next should not happen */
4350
4400
  default:
4351
4401
  yield* this.pop(), yield* this.step();
4352
4402
  }
@@ -4419,15 +4469,15 @@ class Et {
4419
4469
  if (t.sep)
4420
4470
  if (t.value)
4421
4471
  e.items.push({ start: [], key: null, sep: [this.sourceToken] });
4422
- else if (Q(t.sep, "map-value-ind"))
4472
+ else if (W(t.sep, "map-value-ind"))
4423
4473
  this.stack.push({
4424
4474
  type: "block-map",
4425
4475
  offset: this.offset,
4426
4476
  indent: this.indent,
4427
4477
  items: [{ start: o, key: null, sep: [this.sourceToken] }]
4428
4478
  });
4429
- else if (Is(t.key) && !Q(t.sep, "newline")) {
4430
- const l = te(t.start), a = t.key, c = t.sep;
4479
+ else if ($s(t.key) && !W(t.sep, "newline")) {
4480
+ const l = ne(t.start), a = t.key, c = t.sep;
4431
4481
  c.push(this.sourceToken), delete t.key, delete t.sep, this.stack.push({
4432
4482
  type: "block-map",
4433
4483
  offset: this.offset,
@@ -4435,10 +4485,10 @@ class Et {
4435
4485
  items: [{ start: l, key: a, sep: c }]
4436
4486
  });
4437
4487
  } else o.length > 0 ? t.sep = t.sep.concat(o, this.sourceToken) : t.sep.push(this.sourceToken);
4438
- else if (Q(t.start, "newline"))
4488
+ else if (W(t.start, "newline"))
4439
4489
  Object.assign(t, { key: null, sep: [this.sourceToken] });
4440
4490
  else {
4441
- const l = te(t.start);
4491
+ const l = ne(t.start);
4442
4492
  this.stack.push({
4443
4493
  type: "block-map",
4444
4494
  offset: this.offset,
@@ -4447,7 +4497,7 @@ class Et {
4447
4497
  });
4448
4498
  }
4449
4499
  else
4450
- t.sep ? t.value || r ? e.items.push({ start: o, key: null, sep: [this.sourceToken] }) : Q(t.sep, "map-value-ind") ? this.stack.push({
4500
+ t.sep ? t.value || r ? e.items.push({ start: o, key: null, sep: [this.sourceToken] }) : W(t.sep, "map-value-ind") ? this.stack.push({
4451
4501
  type: "block-map",
4452
4502
  offset: this.offset,
4453
4503
  indent: this.indent,
@@ -4509,7 +4559,7 @@ class Et {
4509
4559
  case "seq-item-ind":
4510
4560
  if (this.indent !== e.indent)
4511
4561
  break;
4512
- t.value || Q(t.start, "seq-item-ind") ? e.items.push({ start: [this.sourceToken] }) : t.start.push(this.sourceToken);
4562
+ t.value || W(t.start, "seq-item-ind") ? e.items.push({ start: [this.sourceToken] }) : t.start.push(this.sourceToken);
4513
4563
  return;
4514
4564
  }
4515
4565
  if (this.indent > e.indent) {
@@ -4564,7 +4614,7 @@ class Et {
4564
4614
  if (n.type === "block-map" && (this.type === "map-value-ind" && n.indent === e.indent || this.type === "newline" && !n.items[n.items.length - 1].sep))
4565
4615
  yield* this.pop(), yield* this.step();
4566
4616
  else if (this.type === "map-value-ind" && n.type !== "flow-collection") {
4567
- const i = $e(n), r = te(i);
4617
+ const i = Ce(n), r = ne(i);
4568
4618
  jt(e);
4569
4619
  const o = e.end.splice(1, e.end.length);
4570
4620
  o.push(this.sourceToken);
@@ -4628,7 +4678,7 @@ class Et {
4628
4678
  };
4629
4679
  case "explicit-key-ind": {
4630
4680
  this.onKeyLine = !0;
4631
- const t = $e(e), n = te(t);
4681
+ const t = Ce(e), n = ne(t);
4632
4682
  return n.push(this.sourceToken), {
4633
4683
  type: "block-map",
4634
4684
  offset: this.offset,
@@ -4638,7 +4688,7 @@ class Et {
4638
4688
  }
4639
4689
  case "map-value-ind": {
4640
4690
  this.onKeyLine = !0;
4641
- const t = $e(e), n = te(t);
4691
+ const t = Ce(e), n = ne(t);
4642
4692
  return {
4643
4693
  type: "block-map",
4644
4694
  offset: this.offset,
@@ -4667,6 +4717,7 @@ class Et {
4667
4717
  break;
4668
4718
  case "newline":
4669
4719
  this.onKeyLine = !1;
4720
+ // fallthrough
4670
4721
  case "space":
4671
4722
  case "comment":
4672
4723
  default:
@@ -4674,43 +4725,43 @@ class Et {
4674
4725
  }
4675
4726
  }
4676
4727
  }
4677
- function Ts(s) {
4728
+ function _s(s) {
4678
4729
  const e = s.prettyErrors !== !1;
4679
- return { lineCounter: s.lineCounter || e && new Es() || null, prettyErrors: e };
4730
+ return { lineCounter: s.lineCounter || e && new Ls() || null, prettyErrors: e };
4680
4731
  }
4681
- function jn(s, e = {}) {
4682
- const { lineCounter: t, prettyErrors: n } = Ts(e), i = new Et(t == null ? void 0 : t.addNewLine), r = new At(e), o = Array.from(r.compose(i.parse(s)));
4732
+ function qn(s, e = {}) {
4733
+ const { lineCounter: t, prettyErrors: n } = _s(e), i = new It(t == null ? void 0 : t.addNewLine), r = new Tt(e), o = Array.from(r.compose(i.parse(s)));
4683
4734
  if (n && t)
4684
4735
  for (const l of o)
4685
4736
  l.errors.forEach(je(s, t)), l.warnings.forEach(je(s, t));
4686
4737
  return o.length > 0 ? o : Object.assign([], { empty: !0 }, r.streamInfo());
4687
4738
  }
4688
- function Ls(s, e = {}) {
4689
- const { lineCounter: t, prettyErrors: n } = Ts(e), i = new Et(t == null ? void 0 : t.addNewLine), r = new At(e);
4739
+ function Cs(s, e = {}) {
4740
+ const { lineCounter: t, prettyErrors: n } = _s(e), i = new It(t == null ? void 0 : t.addNewLine), r = new Tt(e);
4690
4741
  let o = null;
4691
4742
  for (const l of r.compose(i.parse(s), !0, s.length))
4692
4743
  if (!o)
4693
4744
  o = l;
4694
4745
  else if (o.options.logLevel !== "silent") {
4695
- o.errors.push(new X(l.range.slice(0, 2), "MULTIPLE_DOCS", "Source contains multiple documents; please use YAML.parseAllDocuments()"));
4746
+ o.errors.push(new z(l.range.slice(0, 2), "MULTIPLE_DOCS", "Source contains multiple documents; please use YAML.parseAllDocuments()"));
4696
4747
  break;
4697
4748
  }
4698
4749
  return n && t && (o.errors.forEach(je(s, t)), o.warnings.forEach(je(s, t))), o;
4699
4750
  }
4700
- function Kn(s, e, t) {
4751
+ function Fn(s, e, t) {
4701
4752
  let n;
4702
4753
  typeof e == "function" ? n = e : t === void 0 && e && typeof e == "object" && (t = e);
4703
- const i = Ls(s, t);
4754
+ const i = Cs(s, t);
4704
4755
  if (!i)
4705
4756
  return null;
4706
- if (i.warnings.forEach((r) => Ht(i.options.logLevel, r)), i.errors.length > 0) {
4757
+ if (i.warnings.forEach((r) => zt(i.options.logLevel, r)), i.errors.length > 0) {
4707
4758
  if (i.options.logLevel !== "silent")
4708
4759
  throw i.errors[0];
4709
4760
  i.errors = [];
4710
4761
  }
4711
4762
  return i.toJS(Object.assign({ reviver: n }, t));
4712
4763
  }
4713
- function Dn(s, e, t) {
4764
+ function Rn(s, e, t) {
4714
4765
  let n = null;
4715
4766
  if (typeof e == "function" || Array.isArray(e) ? n = e : t === void 0 && e && (t = e), typeof t == "string" && (t = t.length), typeof t == "number") {
4716
4767
  const i = Math.round(t);
@@ -4721,70 +4772,70 @@ function Dn(s, e, t) {
4721
4772
  if (!i)
4722
4773
  return;
4723
4774
  }
4724
- return new ye(s, n, t).toString(t);
4775
+ return ee(s) && !n ? s.toString(t) : new ge(s, n, t).toString(t);
4725
4776
  }
4726
- const qn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4777
+ var Un = /* @__PURE__ */ Object.freeze({
4727
4778
  __proto__: null,
4728
- Alias: qe,
4729
- CST: Bn,
4730
- Composer: At,
4731
- Document: ye,
4732
- Lexer: As,
4733
- LineCounter: Es,
4779
+ Alias: Re,
4780
+ CST: Pn,
4781
+ Composer: Tt,
4782
+ Document: ge,
4783
+ Lexer: Is,
4784
+ LineCounter: Ls,
4734
4785
  Pair: v,
4735
- Parser: Et,
4736
- Scalar: O,
4737
- Schema: We,
4738
- YAMLError: Nt,
4739
- YAMLMap: P,
4740
- YAMLParseError: X,
4741
- YAMLSeq: Y,
4742
- YAMLWarning: ds,
4743
- isAlias: Z,
4786
+ Parser: It,
4787
+ Scalar: A,
4788
+ Schema: Xe,
4789
+ YAMLError: At,
4790
+ YAMLMap: K,
4791
+ YAMLParseError: z,
4792
+ YAMLSeq: Q,
4793
+ YAMLWarning: ys,
4794
+ isAlias: x,
4744
4795
  isCollection: L,
4745
- isDocument: ue,
4746
- isMap: he,
4796
+ isDocument: ee,
4797
+ isMap: de,
4747
4798
  isNode: $,
4748
4799
  isPair: I,
4749
4800
  isScalar: E,
4750
- isSeq: de,
4751
- parse: Kn,
4752
- parseAllDocuments: jn,
4753
- parseDocument: Ls,
4754
- stringify: Dn,
4755
- visit: J,
4756
- visitAsync: De
4757
- }, Symbol.toStringTag, { value: "Module" }));
4801
+ isSeq: pe,
4802
+ parse: Fn,
4803
+ parseAllDocuments: qn,
4804
+ parseDocument: Cs,
4805
+ stringify: Rn,
4806
+ visit: G,
4807
+ visitAsync: Fe
4808
+ });
4758
4809
  export {
4759
- qe as Alias,
4760
- Bn as CST,
4761
- At as Composer,
4762
- ye as Document,
4763
- As as Lexer,
4764
- Es as LineCounter,
4810
+ Re as Alias,
4811
+ Pn as CST,
4812
+ Tt as Composer,
4813
+ ge as Document,
4814
+ Is as Lexer,
4815
+ Ls as LineCounter,
4765
4816
  v as Pair,
4766
- Et as Parser,
4767
- O as Scalar,
4768
- We as Schema,
4769
- Nt as YAMLError,
4770
- P as YAMLMap,
4771
- X as YAMLParseError,
4772
- Y as YAMLSeq,
4773
- ds as YAMLWarning,
4774
- qn as default,
4775
- Z as isAlias,
4817
+ It as Parser,
4818
+ A as Scalar,
4819
+ Xe as Schema,
4820
+ At as YAMLError,
4821
+ K as YAMLMap,
4822
+ z as YAMLParseError,
4823
+ Q as YAMLSeq,
4824
+ ys as YAMLWarning,
4825
+ Un as default,
4826
+ x as isAlias,
4776
4827
  L as isCollection,
4777
- ue as isDocument,
4778
- he as isMap,
4828
+ ee as isDocument,
4829
+ de as isMap,
4779
4830
  $ as isNode,
4780
4831
  I as isPair,
4781
4832
  E as isScalar,
4782
- de as isSeq,
4783
- Kn as parse,
4784
- jn as parseAllDocuments,
4785
- Ls as parseDocument,
4786
- Dn as stringify,
4787
- J as visit,
4788
- De as visitAsync
4833
+ pe as isSeq,
4834
+ Fn as parse,
4835
+ qn as parseAllDocuments,
4836
+ Cs as parseDocument,
4837
+ Rn as stringify,
4838
+ G as visit,
4839
+ Fe as visitAsync
4789
4840
  };
4790
- //# sourceMappingURL=index-CLd8ycZz.js.map
4841
+ //# sourceMappingURL=index-C7jnHK4b.js.map