@versori/run 0.0.1-alpha.2 → 0.0.1-alpha.3

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 (861) hide show
  1. package/esm/_dnt.polyfills.d.ts +14 -0
  2. package/esm/_dnt.polyfills.d.ts.map +1 -0
  3. package/esm/_dnt.polyfills.js +12 -0
  4. package/esm/deps/deno.land/x/oak@v17.1.4/application.d.ts +383 -0
  5. package/esm/deps/deno.land/x/oak@v17.1.4/application.d.ts.map +1 -0
  6. package/esm/deps/deno.land/x/oak@v17.1.4/application.js +526 -0
  7. package/esm/deps/deno.land/x/oak@v17.1.4/body.d.ts +71 -0
  8. package/esm/deps/deno.land/x/oak@v17.1.4/body.d.ts.map +1 -0
  9. package/esm/deps/deno.land/x/oak@v17.1.4/body.js +236 -0
  10. package/esm/deps/deno.land/x/oak@v17.1.4/context.d.ts +163 -0
  11. package/esm/deps/deno.land/x/oak@v17.1.4/context.d.ts.map +1 -0
  12. package/esm/deps/deno.land/x/oak@v17.1.4/context.js +287 -0
  13. package/esm/deps/deno.land/x/oak@v17.1.4/deps.d.ts +19 -0
  14. package/esm/deps/deno.land/x/oak@v17.1.4/deps.d.ts.map +1 -0
  15. package/esm/deps/deno.land/x/oak@v17.1.4/deps.js +21 -0
  16. package/esm/deps/deno.land/x/oak@v17.1.4/http_server_bun.d.ts +51 -0
  17. package/esm/deps/deno.land/x/oak@v17.1.4/http_server_bun.d.ts.map +1 -0
  18. package/esm/deps/deno.land/x/oak@v17.1.4/http_server_bun.js +147 -0
  19. package/esm/deps/deno.land/x/oak@v17.1.4/http_server_native.d.ts +17 -0
  20. package/esm/deps/deno.land/x/oak@v17.1.4/http_server_native.d.ts.map +1 -0
  21. package/esm/deps/deno.land/x/oak@v17.1.4/http_server_native.js +100 -0
  22. package/esm/deps/deno.land/x/oak@v17.1.4/http_server_native_request.d.ts +26 -0
  23. package/esm/deps/deno.land/x/oak@v17.1.4/http_server_native_request.d.ts.map +1 -0
  24. package/esm/deps/deno.land/x/oak@v17.1.4/http_server_native_request.js +112 -0
  25. package/esm/deps/deno.land/x/oak@v17.1.4/http_server_node.d.ts +48 -0
  26. package/esm/deps/deno.land/x/oak@v17.1.4/http_server_node.d.ts.map +1 -0
  27. package/esm/deps/deno.land/x/oak@v17.1.4/http_server_node.js +152 -0
  28. package/esm/deps/deno.land/x/oak@v17.1.4/middleware/etag.d.ts +20 -0
  29. package/esm/deps/deno.land/x/oak@v17.1.4/middleware/etag.d.ts.map +1 -0
  30. package/esm/deps/deno.land/x/oak@v17.1.4/middleware/etag.js +53 -0
  31. package/esm/deps/deno.land/x/oak@v17.1.4/middleware/proxy.d.ts +67 -0
  32. package/esm/deps/deno.land/x/oak@v17.1.4/middleware/proxy.d.ts.map +1 -0
  33. package/esm/deps/deno.land/x/oak@v17.1.4/middleware/proxy.js +127 -0
  34. package/esm/deps/deno.land/x/oak@v17.1.4/middleware/serve.d.ts +114 -0
  35. package/esm/deps/deno.land/x/oak@v17.1.4/middleware/serve.d.ts.map +1 -0
  36. package/esm/deps/deno.land/x/oak@v17.1.4/middleware/serve.js +211 -0
  37. package/esm/deps/deno.land/x/oak@v17.1.4/middleware.d.ts +36 -0
  38. package/esm/deps/deno.land/x/oak@v17.1.4/middleware.d.ts.map +1 -0
  39. package/esm/deps/deno.land/x/oak@v17.1.4/middleware.js +34 -0
  40. package/esm/deps/deno.land/x/oak@v17.1.4/mod.d.ts +111 -0
  41. package/esm/deps/deno.land/x/oak@v17.1.4/mod.d.ts.map +1 -0
  42. package/esm/deps/deno.land/x/oak@v17.1.4/mod.js +109 -0
  43. package/esm/deps/deno.land/x/oak@v17.1.4/node_shims.d.ts +2 -0
  44. package/esm/deps/deno.land/x/oak@v17.1.4/node_shims.d.ts.map +1 -0
  45. package/esm/deps/deno.land/x/oak@v17.1.4/node_shims.js +75 -0
  46. package/esm/deps/deno.land/x/oak@v17.1.4/request.d.ts +133 -0
  47. package/esm/deps/deno.land/x/oak@v17.1.4/request.d.ts.map +1 -0
  48. package/esm/deps/deno.land/x/oak@v17.1.4/request.js +246 -0
  49. package/esm/deps/deno.land/x/oak@v17.1.4/response.d.ts +148 -0
  50. package/esm/deps/deno.land/x/oak@v17.1.4/response.d.ts.map +1 -0
  51. package/esm/deps/deno.land/x/oak@v17.1.4/response.js +295 -0
  52. package/esm/deps/deno.land/x/oak@v17.1.4/router.d.ts +363 -0
  53. package/esm/deps/deno.land/x/oak@v17.1.4/router.d.ts.map +1 -0
  54. package/esm/deps/deno.land/x/oak@v17.1.4/router.js +636 -0
  55. package/esm/deps/deno.land/x/oak@v17.1.4/send.d.ts +75 -0
  56. package/esm/deps/deno.land/x/oak@v17.1.4/send.d.ts.map +1 -0
  57. package/esm/deps/deno.land/x/oak@v17.1.4/send.js +196 -0
  58. package/esm/deps/deno.land/x/oak@v17.1.4/testing.d.ts +33 -0
  59. package/esm/deps/deno.land/x/oak@v17.1.4/testing.d.ts.map +1 -0
  60. package/esm/deps/deno.land/x/oak@v17.1.4/testing.js +112 -0
  61. package/esm/deps/deno.land/x/oak@v17.1.4/types.d.ts +77 -0
  62. package/esm/deps/deno.land/x/oak@v17.1.4/types.d.ts.map +1 -0
  63. package/esm/deps/deno.land/x/oak@v17.1.4/types.js +1 -0
  64. package/esm/deps/deno.land/x/oak@v17.1.4/utils/clone_state.d.ts +3 -0
  65. package/esm/deps/deno.land/x/oak@v17.1.4/utils/clone_state.d.ts.map +1 -0
  66. package/esm/deps/deno.land/x/oak@v17.1.4/utils/clone_state.js +16 -0
  67. package/esm/deps/deno.land/x/oak@v17.1.4/utils/consts.d.ts +3 -0
  68. package/esm/deps/deno.land/x/oak@v17.1.4/utils/consts.d.ts.map +1 -0
  69. package/esm/deps/deno.land/x/oak@v17.1.4/utils/consts.js +3 -0
  70. package/esm/deps/deno.land/x/oak@v17.1.4/utils/create_promise_with_resolvers.d.ts +7 -0
  71. package/esm/deps/deno.land/x/oak@v17.1.4/utils/create_promise_with_resolvers.d.ts.map +1 -0
  72. package/esm/deps/deno.land/x/oak@v17.1.4/utils/create_promise_with_resolvers.js +20 -0
  73. package/esm/deps/deno.land/x/oak@v17.1.4/utils/decode.d.ts +6 -0
  74. package/esm/deps/deno.land/x/oak@v17.1.4/utils/decode.d.ts.map +1 -0
  75. package/esm/deps/deno.land/x/oak@v17.1.4/utils/decode.js +17 -0
  76. package/esm/deps/deno.land/x/oak@v17.1.4/utils/decode_component.d.ts +6 -0
  77. package/esm/deps/deno.land/x/oak@v17.1.4/utils/decode_component.d.ts.map +1 -0
  78. package/esm/deps/deno.land/x/oak@v17.1.4/utils/decode_component.js +13 -0
  79. package/esm/deps/deno.land/x/oak@v17.1.4/utils/encode_url.d.ts +3 -0
  80. package/esm/deps/deno.land/x/oak@v17.1.4/utils/encode_url.d.ts.map +1 -0
  81. package/esm/deps/deno.land/x/oak@v17.1.4/utils/encode_url.js +10 -0
  82. package/esm/deps/deno.land/x/oak@v17.1.4/utils/resolve_path.d.ts +31 -0
  83. package/esm/deps/deno.land/x/oak@v17.1.4/utils/resolve_path.d.ts.map +1 -0
  84. package/esm/deps/deno.land/x/oak@v17.1.4/utils/resolve_path.js +56 -0
  85. package/esm/deps/deno.land/x/oak@v17.1.4/utils/streams.d.ts +9 -0
  86. package/esm/deps/deno.land/x/oak@v17.1.4/utils/streams.d.ts.map +1 -0
  87. package/esm/deps/deno.land/x/oak@v17.1.4/utils/streams.js +75 -0
  88. package/esm/deps/deno.land/x/oak@v17.1.4/utils/type_guards.d.ts +17 -0
  89. package/esm/deps/deno.land/x/oak@v17.1.4/utils/type_guards.d.ts.map +1 -0
  90. package/esm/deps/deno.land/x/oak@v17.1.4/utils/type_guards.js +37 -0
  91. package/esm/deps/jsr.io/@oak/commons/1.0.0/content_disposition.d.ts +16 -0
  92. package/esm/deps/jsr.io/@oak/commons/1.0.0/content_disposition.d.ts.map +1 -0
  93. package/esm/deps/jsr.io/@oak/commons/1.0.0/content_disposition.js +125 -0
  94. package/esm/deps/jsr.io/@oak/commons/1.0.0/cookie_map.d.ts +363 -0
  95. package/esm/deps/jsr.io/@oak/commons/1.0.0/cookie_map.d.ts.map +1 -0
  96. package/esm/deps/jsr.io/@oak/commons/1.0.0/cookie_map.js +602 -0
  97. package/esm/deps/jsr.io/@oak/commons/1.0.0/form_data.d.ts +9 -0
  98. package/esm/deps/jsr.io/@oak/commons/1.0.0/form_data.d.ts.map +1 -0
  99. package/esm/deps/jsr.io/@oak/commons/1.0.0/form_data.js +285 -0
  100. package/esm/deps/jsr.io/@oak/commons/1.0.0/forwarded.d.ts +16 -0
  101. package/esm/deps/jsr.io/@oak/commons/1.0.0/forwarded.d.ts.map +1 -0
  102. package/esm/deps/jsr.io/@oak/commons/1.0.0/forwarded.js +208 -0
  103. package/esm/deps/jsr.io/@oak/commons/1.0.0/header_utils.d.ts +6 -0
  104. package/esm/deps/jsr.io/@oak/commons/1.0.0/header_utils.d.ts.map +1 -0
  105. package/esm/deps/jsr.io/@oak/commons/1.0.0/header_utils.js +28 -0
  106. package/esm/deps/jsr.io/@oak/commons/1.0.0/http_errors.d.ts +123 -0
  107. package/esm/deps/jsr.io/@oak/commons/1.0.0/http_errors.d.ts.map +1 -0
  108. package/esm/deps/jsr.io/@oak/commons/1.0.0/http_errors.js +233 -0
  109. package/esm/deps/jsr.io/@oak/commons/1.0.0/keystack.d.ts +56 -0
  110. package/esm/deps/jsr.io/@oak/commons/1.0.0/keystack.d.ts.map +1 -0
  111. package/esm/deps/jsr.io/@oak/commons/1.0.0/keystack.js +165 -0
  112. package/esm/deps/jsr.io/@oak/commons/1.0.0/media_types.d.ts +56 -0
  113. package/esm/deps/jsr.io/@oak/commons/1.0.0/media_types.d.ts.map +1 -0
  114. package/esm/deps/jsr.io/@oak/commons/1.0.0/media_types.js +205 -0
  115. package/esm/deps/jsr.io/@oak/commons/1.0.0/method.d.ts +29 -0
  116. package/esm/deps/jsr.io/@oak/commons/1.0.0/method.d.ts.map +1 -0
  117. package/esm/deps/jsr.io/@oak/commons/1.0.0/method.js +62 -0
  118. package/esm/deps/jsr.io/@oak/commons/1.0.0/range.d.ts +324 -0
  119. package/esm/deps/jsr.io/@oak/commons/1.0.0/range.d.ts.map +1 -0
  120. package/esm/deps/jsr.io/@oak/commons/1.0.0/range.js +503 -0
  121. package/esm/deps/jsr.io/@oak/commons/1.0.0/server_sent_event.d.ts +178 -0
  122. package/esm/deps/jsr.io/@oak/commons/1.0.0/server_sent_event.d.ts.map +1 -0
  123. package/esm/deps/jsr.io/@oak/commons/1.0.0/server_sent_event.js +262 -0
  124. package/esm/deps/jsr.io/@oak/commons/1.0.0/status.d.ts +389 -0
  125. package/esm/deps/jsr.io/@oak/commons/1.0.0/status.d.ts.map +1 -0
  126. package/esm/deps/jsr.io/@oak/commons/1.0.0/status.js +386 -0
  127. package/esm/deps/jsr.io/@std/assert/1.0.11/assert.d.ts +16 -0
  128. package/esm/deps/jsr.io/@std/assert/1.0.11/assert.d.ts.map +1 -0
  129. package/esm/deps/jsr.io/@std/assert/1.0.11/assert.js +22 -0
  130. package/esm/deps/jsr.io/@std/assert/1.0.11/assertion_error.d.ts +26 -0
  131. package/esm/deps/jsr.io/@std/assert/1.0.11/assertion_error.d.ts.map +1 -0
  132. package/esm/deps/jsr.io/@std/assert/1.0.11/assertion_error.js +30 -0
  133. package/esm/deps/jsr.io/@std/bytes/1.0.5/_types.d.ts +9 -0
  134. package/esm/deps/jsr.io/@std/bytes/1.0.5/_types.d.ts.map +1 -0
  135. package/esm/deps/jsr.io/@std/bytes/1.0.5/_types.js +2 -0
  136. package/esm/deps/jsr.io/@std/bytes/1.0.5/concat.d.ts +21 -0
  137. package/esm/deps/jsr.io/@std/bytes/1.0.5/concat.d.ts.map +1 -0
  138. package/esm/deps/jsr.io/@std/bytes/1.0.5/concat.js +32 -0
  139. package/esm/deps/jsr.io/@std/crypto/1.0.4/timing_safe_equal.d.ts +34 -0
  140. package/esm/deps/jsr.io/@std/crypto/1.0.4/timing_safe_equal.d.ts.map +1 -0
  141. package/esm/deps/jsr.io/@std/crypto/1.0.4/timing_safe_equal.js +55 -0
  142. package/esm/deps/jsr.io/@std/encoding/1.0.7/_types.d.ts +9 -0
  143. package/esm/deps/jsr.io/@std/encoding/1.0.7/_types.d.ts.map +1 -0
  144. package/esm/deps/jsr.io/@std/encoding/1.0.7/_types.js +2 -0
  145. package/esm/deps/jsr.io/@std/encoding/1.0.7/_validate_binary_like.d.ts +2 -0
  146. package/esm/deps/jsr.io/@std/encoding/1.0.7/_validate_binary_like.d.ts.map +1 -0
  147. package/esm/deps/jsr.io/@std/encoding/1.0.7/_validate_binary_like.js +26 -0
  148. package/esm/deps/jsr.io/@std/encoding/1.0.7/base64.d.ts +40 -0
  149. package/esm/deps/jsr.io/@std/encoding/1.0.7/base64.d.ts.map +1 -0
  150. package/esm/deps/jsr.io/@std/encoding/1.0.7/base64.js +163 -0
  151. package/esm/deps/jsr.io/@std/encoding/1.0.7/base64url.d.ts +40 -0
  152. package/esm/deps/jsr.io/@std/encoding/1.0.7/base64url.d.ts.map +1 -0
  153. package/esm/deps/jsr.io/@std/encoding/1.0.7/base64url.js +81 -0
  154. package/esm/deps/jsr.io/@std/http/1.0.13/_negotiation/common.d.ts +38 -0
  155. package/esm/deps/jsr.io/@std/http/1.0.13/_negotiation/common.d.ts.map +1 -0
  156. package/esm/deps/jsr.io/@std/http/1.0.13/_negotiation/common.js +40 -0
  157. package/esm/deps/jsr.io/@std/http/1.0.13/_negotiation/encoding.d.ts +34 -0
  158. package/esm/deps/jsr.io/@std/http/1.0.13/_negotiation/encoding.d.ts.map +1 -0
  159. package/esm/deps/jsr.io/@std/http/1.0.13/_negotiation/encoding.js +123 -0
  160. package/esm/deps/jsr.io/@std/http/1.0.13/_negotiation/language.d.ts +31 -0
  161. package/esm/deps/jsr.io/@std/http/1.0.13/_negotiation/language.d.ts.map +1 -0
  162. package/esm/deps/jsr.io/@std/http/1.0.13/_negotiation/language.js +113 -0
  163. package/esm/deps/jsr.io/@std/http/1.0.13/_negotiation/media_type.d.ts +31 -0
  164. package/esm/deps/jsr.io/@std/http/1.0.13/_negotiation/media_type.d.ts.map +1 -0
  165. package/esm/deps/jsr.io/@std/http/1.0.13/_negotiation/media_type.js +140 -0
  166. package/esm/deps/jsr.io/@std/http/1.0.13/etag.d.ts +148 -0
  167. package/esm/deps/jsr.io/@std/http/1.0.13/etag.d.ts.map +1 -0
  168. package/esm/deps/jsr.io/@std/http/1.0.13/etag.js +135 -0
  169. package/esm/deps/jsr.io/@std/http/1.0.13/negotiation.d.ts +148 -0
  170. package/esm/deps/jsr.io/@std/http/1.0.13/negotiation.d.ts.map +1 -0
  171. package/esm/deps/jsr.io/@std/http/1.0.13/negotiation.js +37 -0
  172. package/esm/deps/jsr.io/@std/http/1.0.13/user_agent.d.ts +200 -0
  173. package/esm/deps/jsr.io/@std/http/1.0.13/user_agent.d.ts.map +1 -0
  174. package/esm/deps/jsr.io/@std/http/1.0.13/user_agent.js +1150 -0
  175. package/esm/deps/jsr.io/@std/media-types/1.1.0/_db.d.ts +8 -0
  176. package/esm/deps/jsr.io/@std/media-types/1.1.0/_db.d.ts.map +1 -0
  177. package/esm/deps/jsr.io/@std/media-types/1.1.0/_db.js +33 -0
  178. package/esm/deps/jsr.io/@std/media-types/1.1.0/_util.d.ts +15 -0
  179. package/esm/deps/jsr.io/@std/media-types/1.1.0/_util.d.ts.map +1 -0
  180. package/esm/deps/jsr.io/@std/media-types/1.1.0/_util.js +122 -0
  181. package/esm/deps/jsr.io/@std/media-types/1.1.0/content_type.d.ts +43 -0
  182. package/esm/deps/jsr.io/@std/media-types/1.1.0/content_type.d.ts.map +1 -0
  183. package/esm/deps/jsr.io/@std/media-types/1.1.0/content_type.js +57 -0
  184. package/esm/deps/jsr.io/@std/media-types/1.1.0/format_media_type.d.ts +33 -0
  185. package/esm/deps/jsr.io/@std/media-types/1.1.0/format_media_type.d.ts.map +1 -0
  186. package/esm/deps/jsr.io/@std/media-types/1.1.0/format_media_type.js +77 -0
  187. package/esm/deps/jsr.io/@std/media-types/1.1.0/get_charset.d.ts +22 -0
  188. package/esm/deps/jsr.io/@std/media-types/1.1.0/get_charset.d.ts.map +1 -0
  189. package/esm/deps/jsr.io/@std/media-types/1.1.0/get_charset.js +43 -0
  190. package/esm/deps/jsr.io/@std/media-types/1.1.0/parse_media_type.d.ts +31 -0
  191. package/esm/deps/jsr.io/@std/media-types/1.1.0/parse_media_type.d.ts.map +1 -0
  192. package/esm/deps/jsr.io/@std/media-types/1.1.0/parse_media_type.js +114 -0
  193. package/esm/deps/jsr.io/@std/media-types/1.1.0/type_by_extension.d.ts +25 -0
  194. package/esm/deps/jsr.io/@std/media-types/1.1.0/type_by_extension.d.ts.map +1 -0
  195. package/esm/deps/jsr.io/@std/media-types/1.1.0/type_by_extension.js +31 -0
  196. package/esm/deps/jsr.io/@std/media-types/1.1.0/vendor/db.d.ts +9103 -0
  197. package/esm/deps/jsr.io/@std/media-types/1.1.0/vendor/db.d.ts.map +1 -0
  198. package/esm/deps/jsr.io/@std/media-types/1.1.0/vendor/db.js +9138 -0
  199. package/esm/deps/jsr.io/@std/path/1.0.8/_common/assert_path.d.ts +2 -0
  200. package/esm/deps/jsr.io/@std/path/1.0.8/_common/assert_path.d.ts.map +1 -0
  201. package/esm/deps/jsr.io/@std/path/1.0.8/_common/assert_path.js +7 -0
  202. package/esm/deps/jsr.io/@std/path/1.0.8/_common/basename.d.ts +4 -0
  203. package/esm/deps/jsr.io/@std/path/1.0.8/_common/basename.d.ts.map +1 -0
  204. package/esm/deps/jsr.io/@std/path/1.0.8/_common/basename.js +40 -0
  205. package/esm/deps/jsr.io/@std/path/1.0.8/_common/common.d.ts +2 -0
  206. package/esm/deps/jsr.io/@std/path/1.0.8/_common/common.d.ts.map +1 -0
  207. package/esm/deps/jsr.io/@std/path/1.0.8/_common/common.js +23 -0
  208. package/esm/deps/jsr.io/@std/path/1.0.8/_common/constants.d.ts +40 -0
  209. package/esm/deps/jsr.io/@std/path/1.0.8/_common/constants.d.ts.map +1 -0
  210. package/esm/deps/jsr.io/@std/path/1.0.8/_common/constants.js +46 -0
  211. package/esm/deps/jsr.io/@std/path/1.0.8/_common/dirname.d.ts +2 -0
  212. package/esm/deps/jsr.io/@std/path/1.0.8/_common/dirname.d.ts.map +1 -0
  213. package/esm/deps/jsr.io/@std/path/1.0.8/_common/dirname.js +8 -0
  214. package/esm/deps/jsr.io/@std/path/1.0.8/_common/format.d.ts +4 -0
  215. package/esm/deps/jsr.io/@std/path/1.0.8/_common/format.d.ts.map +1 -0
  216. package/esm/deps/jsr.io/@std/path/1.0.8/_common/format.js +19 -0
  217. package/esm/deps/jsr.io/@std/path/1.0.8/_common/from_file_url.d.ts +2 -0
  218. package/esm/deps/jsr.io/@std/path/1.0.8/_common/from_file_url.d.ts.map +1 -0
  219. package/esm/deps/jsr.io/@std/path/1.0.8/_common/from_file_url.js +9 -0
  220. package/esm/deps/jsr.io/@std/path/1.0.8/_common/glob_to_reg_exp.d.ts +35 -0
  221. package/esm/deps/jsr.io/@std/path/1.0.8/_common/glob_to_reg_exp.d.ts.map +1 -0
  222. package/esm/deps/jsr.io/@std/path/1.0.8/_common/glob_to_reg_exp.js +234 -0
  223. package/esm/deps/jsr.io/@std/path/1.0.8/_common/normalize.d.ts +2 -0
  224. package/esm/deps/jsr.io/@std/path/1.0.8/_common/normalize.d.ts.map +1 -0
  225. package/esm/deps/jsr.io/@std/path/1.0.8/_common/normalize.js +8 -0
  226. package/esm/deps/jsr.io/@std/path/1.0.8/_common/normalize_string.d.ts +2 -0
  227. package/esm/deps/jsr.io/@std/path/1.0.8/_common/normalize_string.d.ts.map +1 -0
  228. package/esm/deps/jsr.io/@std/path/1.0.8/_common/normalize_string.js +77 -0
  229. package/esm/deps/jsr.io/@std/path/1.0.8/_common/relative.d.ts +2 -0
  230. package/esm/deps/jsr.io/@std/path/1.0.8/_common/relative.d.ts.map +1 -0
  231. package/esm/deps/jsr.io/@std/path/1.0.8/_common/relative.js +9 -0
  232. package/esm/deps/jsr.io/@std/path/1.0.8/_common/strip_trailing_separators.d.ts +2 -0
  233. package/esm/deps/jsr.io/@std/path/1.0.8/_common/strip_trailing_separators.d.ts.map +1 -0
  234. package/esm/deps/jsr.io/@std/path/1.0.8/_common/strip_trailing_separators.js +19 -0
  235. package/esm/deps/jsr.io/@std/path/1.0.8/_common/to_file_url.d.ts +2 -0
  236. package/esm/deps/jsr.io/@std/path/1.0.8/_common/to_file_url.d.ts.map +1 -0
  237. package/esm/deps/jsr.io/@std/path/1.0.8/_common/to_file_url.js +15 -0
  238. package/esm/deps/jsr.io/@std/path/1.0.8/_os.d.ts +2 -0
  239. package/esm/deps/jsr.io/@std/path/1.0.8/_os.d.ts.map +1 -0
  240. package/esm/deps/jsr.io/@std/path/1.0.8/_os.js +9 -0
  241. package/esm/deps/jsr.io/@std/path/1.0.8/basename.d.ts +28 -0
  242. package/esm/deps/jsr.io/@std/path/1.0.8/basename.d.ts.map +1 -0
  243. package/esm/deps/jsr.io/@std/path/1.0.8/basename.js +36 -0
  244. package/esm/deps/jsr.io/@std/path/1.0.8/common.d.ts +28 -0
  245. package/esm/deps/jsr.io/@std/path/1.0.8/common.d.ts.map +1 -0
  246. package/esm/deps/jsr.io/@std/path/1.0.8/common.js +33 -0
  247. package/esm/deps/jsr.io/@std/path/1.0.8/constants.d.ts +15 -0
  248. package/esm/deps/jsr.io/@std/path/1.0.8/constants.d.ts.map +1 -0
  249. package/esm/deps/jsr.io/@std/path/1.0.8/constants.js +17 -0
  250. package/esm/deps/jsr.io/@std/path/1.0.8/dirname.d.ts +23 -0
  251. package/esm/deps/jsr.io/@std/path/1.0.8/dirname.d.ts.map +1 -0
  252. package/esm/deps/jsr.io/@std/path/1.0.8/dirname.js +29 -0
  253. package/esm/deps/jsr.io/@std/path/1.0.8/extname.d.ts +23 -0
  254. package/esm/deps/jsr.io/@std/path/1.0.8/extname.d.ts.map +1 -0
  255. package/esm/deps/jsr.io/@std/path/1.0.8/extname.js +29 -0
  256. package/esm/deps/jsr.io/@std/path/1.0.8/format.d.ts +22 -0
  257. package/esm/deps/jsr.io/@std/path/1.0.8/format.d.ts.map +1 -0
  258. package/esm/deps/jsr.io/@std/path/1.0.8/format.js +27 -0
  259. package/esm/deps/jsr.io/@std/path/1.0.8/from_file_url.d.ts +22 -0
  260. package/esm/deps/jsr.io/@std/path/1.0.8/from_file_url.d.ts.map +1 -0
  261. package/esm/deps/jsr.io/@std/path/1.0.8/from_file_url.js +28 -0
  262. package/esm/deps/jsr.io/@std/path/1.0.8/glob_to_regexp.d.ts +77 -0
  263. package/esm/deps/jsr.io/@std/path/1.0.8/glob_to_regexp.d.ts.map +1 -0
  264. package/esm/deps/jsr.io/@std/path/1.0.8/glob_to_regexp.js +83 -0
  265. package/esm/deps/jsr.io/@std/path/1.0.8/is_absolute.d.ts +22 -0
  266. package/esm/deps/jsr.io/@std/path/1.0.8/is_absolute.d.ts.map +1 -0
  267. package/esm/deps/jsr.io/@std/path/1.0.8/is_absolute.js +28 -0
  268. package/esm/deps/jsr.io/@std/path/1.0.8/is_glob.d.ts +17 -0
  269. package/esm/deps/jsr.io/@std/path/1.0.8/is_glob.d.ts.map +1 -0
  270. package/esm/deps/jsr.io/@std/path/1.0.8/is_glob.js +42 -0
  271. package/esm/deps/jsr.io/@std/path/1.0.8/join.d.ts +23 -0
  272. package/esm/deps/jsr.io/@std/path/1.0.8/join.d.ts.map +1 -0
  273. package/esm/deps/jsr.io/@std/path/1.0.8/join.js +29 -0
  274. package/esm/deps/jsr.io/@std/path/1.0.8/join_globs.d.ts +28 -0
  275. package/esm/deps/jsr.io/@std/path/1.0.8/join_globs.d.ts.map +1 -0
  276. package/esm/deps/jsr.io/@std/path/1.0.8/join_globs.js +34 -0
  277. package/esm/deps/jsr.io/@std/path/1.0.8/mod.d.ts +54 -0
  278. package/esm/deps/jsr.io/@std/path/1.0.8/mod.d.ts.map +1 -0
  279. package/esm/deps/jsr.io/@std/path/1.0.8/mod.js +57 -0
  280. package/esm/deps/jsr.io/@std/path/1.0.8/normalize.d.ts +27 -0
  281. package/esm/deps/jsr.io/@std/path/1.0.8/normalize.d.ts.map +1 -0
  282. package/esm/deps/jsr.io/@std/path/1.0.8/normalize.js +33 -0
  283. package/esm/deps/jsr.io/@std/path/1.0.8/normalize_glob.d.ts +29 -0
  284. package/esm/deps/jsr.io/@std/path/1.0.8/normalize_glob.d.ts.map +1 -0
  285. package/esm/deps/jsr.io/@std/path/1.0.8/normalize_glob.js +35 -0
  286. package/esm/deps/jsr.io/@std/path/1.0.8/parse.d.ts +35 -0
  287. package/esm/deps/jsr.io/@std/path/1.0.8/parse.d.ts.map +1 -0
  288. package/esm/deps/jsr.io/@std/path/1.0.8/parse.js +39 -0
  289. package/esm/deps/jsr.io/@std/path/1.0.8/posix/_util.d.ts +2 -0
  290. package/esm/deps/jsr.io/@std/path/1.0.8/posix/_util.d.ts.map +1 -0
  291. package/esm/deps/jsr.io/@std/path/1.0.8/posix/_util.js +8 -0
  292. package/esm/deps/jsr.io/@std/path/1.0.8/posix/basename.d.ts +40 -0
  293. package/esm/deps/jsr.io/@std/path/1.0.8/posix/basename.d.ts.map +1 -0
  294. package/esm/deps/jsr.io/@std/path/1.0.8/posix/basename.js +49 -0
  295. package/esm/deps/jsr.io/@std/path/1.0.8/posix/constants.d.ts +13 -0
  296. package/esm/deps/jsr.io/@std/path/1.0.8/posix/constants.d.ts.map +1 -0
  297. package/esm/deps/jsr.io/@std/path/1.0.8/posix/constants.js +14 -0
  298. package/esm/deps/jsr.io/@std/path/1.0.8/posix/dirname.d.ts +32 -0
  299. package/esm/deps/jsr.io/@std/path/1.0.8/posix/dirname.d.ts.map +1 -0
  300. package/esm/deps/jsr.io/@std/path/1.0.8/posix/dirname.js +62 -0
  301. package/esm/deps/jsr.io/@std/path/1.0.8/posix/extname.d.ts +37 -0
  302. package/esm/deps/jsr.io/@std/path/1.0.8/posix/extname.d.ts.map +1 -0
  303. package/esm/deps/jsr.io/@std/path/1.0.8/posix/extname.js +89 -0
  304. package/esm/deps/jsr.io/@std/path/1.0.8/posix/format.d.ts +24 -0
  305. package/esm/deps/jsr.io/@std/path/1.0.8/posix/format.d.ts.map +1 -0
  306. package/esm/deps/jsr.io/@std/path/1.0.8/posix/format.js +28 -0
  307. package/esm/deps/jsr.io/@std/path/1.0.8/posix/from_file_url.d.ts +16 -0
  308. package/esm/deps/jsr.io/@std/path/1.0.8/posix/from_file_url.d.ts.map +1 -0
  309. package/esm/deps/jsr.io/@std/path/1.0.8/posix/from_file_url.js +21 -0
  310. package/esm/deps/jsr.io/@std/path/1.0.8/posix/glob_to_regexp.d.ts +72 -0
  311. package/esm/deps/jsr.io/@std/path/1.0.8/posix/glob_to_regexp.d.ts.map +1 -0
  312. package/esm/deps/jsr.io/@std/path/1.0.8/posix/glob_to_regexp.js +82 -0
  313. package/esm/deps/jsr.io/@std/path/1.0.8/posix/is_absolute.d.ts +17 -0
  314. package/esm/deps/jsr.io/@std/path/1.0.8/posix/is_absolute.d.ts.map +1 -0
  315. package/esm/deps/jsr.io/@std/path/1.0.8/posix/is_absolute.js +23 -0
  316. package/esm/deps/jsr.io/@std/path/1.0.8/posix/join.d.ts +33 -0
  317. package/esm/deps/jsr.io/@std/path/1.0.8/posix/join.d.ts.map +1 -0
  318. package/esm/deps/jsr.io/@std/path/1.0.8/posix/join.js +42 -0
  319. package/esm/deps/jsr.io/@std/path/1.0.8/posix/join_globs.d.ts +20 -0
  320. package/esm/deps/jsr.io/@std/path/1.0.8/posix/join_globs.d.ts.map +1 -0
  321. package/esm/deps/jsr.io/@std/path/1.0.8/posix/join_globs.js +40 -0
  322. package/esm/deps/jsr.io/@std/path/1.0.8/posix/normalize.d.ts +40 -0
  323. package/esm/deps/jsr.io/@std/path/1.0.8/posix/normalize.d.ts.map +1 -0
  324. package/esm/deps/jsr.io/@std/path/1.0.8/posix/normalize.js +57 -0
  325. package/esm/deps/jsr.io/@std/path/1.0.8/posix/normalize_glob.d.ts +20 -0
  326. package/esm/deps/jsr.io/@std/path/1.0.8/posix/normalize_glob.d.ts.map +1 -0
  327. package/esm/deps/jsr.io/@std/path/1.0.8/posix/normalize_glob.js +32 -0
  328. package/esm/deps/jsr.io/@std/path/1.0.8/posix/parse.d.ts +25 -0
  329. package/esm/deps/jsr.io/@std/path/1.0.8/posix/parse.d.ts.map +1 -0
  330. package/esm/deps/jsr.io/@std/path/1.0.8/posix/parse.js +115 -0
  331. package/esm/deps/jsr.io/@std/path/1.0.8/posix/relative.d.ts +20 -0
  332. package/esm/deps/jsr.io/@std/path/1.0.8/posix/relative.d.ts.map +1 -0
  333. package/esm/deps/jsr.io/@std/path/1.0.8/posix/relative.js +106 -0
  334. package/esm/deps/jsr.io/@std/path/1.0.8/posix/resolve.d.ts +17 -0
  335. package/esm/deps/jsr.io/@std/path/1.0.8/posix/resolve.d.ts.map +1 -0
  336. package/esm/deps/jsr.io/@std/path/1.0.8/posix/resolve.js +59 -0
  337. package/esm/deps/jsr.io/@std/path/1.0.8/posix/to_file_url.d.ts +17 -0
  338. package/esm/deps/jsr.io/@std/path/1.0.8/posix/to_file_url.d.ts.map +1 -0
  339. package/esm/deps/jsr.io/@std/path/1.0.8/posix/to_file_url.js +27 -0
  340. package/esm/deps/jsr.io/@std/path/1.0.8/posix/to_namespaced_path.d.ts +16 -0
  341. package/esm/deps/jsr.io/@std/path/1.0.8/posix/to_namespaced_path.d.ts.map +1 -0
  342. package/esm/deps/jsr.io/@std/path/1.0.8/posix/to_namespaced_path.js +20 -0
  343. package/esm/deps/jsr.io/@std/path/1.0.8/relative.d.ts +24 -0
  344. package/esm/deps/jsr.io/@std/path/1.0.8/relative.d.ts.map +1 -0
  345. package/esm/deps/jsr.io/@std/path/1.0.8/relative.js +30 -0
  346. package/esm/deps/jsr.io/@std/path/1.0.8/resolve.d.ts +22 -0
  347. package/esm/deps/jsr.io/@std/path/1.0.8/resolve.d.ts.map +1 -0
  348. package/esm/deps/jsr.io/@std/path/1.0.8/resolve.js +30 -0
  349. package/esm/deps/jsr.io/@std/path/1.0.8/to_file_url.d.ts +22 -0
  350. package/esm/deps/jsr.io/@std/path/1.0.8/to_file_url.d.ts.map +1 -0
  351. package/esm/deps/jsr.io/@std/path/1.0.8/to_file_url.js +28 -0
  352. package/esm/deps/jsr.io/@std/path/1.0.8/to_namespaced_path.d.ts +21 -0
  353. package/esm/deps/jsr.io/@std/path/1.0.8/to_namespaced_path.d.ts.map +1 -0
  354. package/esm/deps/jsr.io/@std/path/1.0.8/to_namespaced_path.js +29 -0
  355. package/esm/deps/jsr.io/@std/path/1.0.8/types.d.ts +38 -0
  356. package/esm/deps/jsr.io/@std/path/1.0.8/types.d.ts.map +1 -0
  357. package/esm/deps/jsr.io/@std/path/1.0.8/types.js +3 -0
  358. package/esm/deps/jsr.io/@std/path/1.0.8/windows/_util.d.ts +4 -0
  359. package/esm/deps/jsr.io/@std/path/1.0.8/windows/_util.d.ts.map +1 -0
  360. package/esm/deps/jsr.io/@std/path/1.0.8/windows/_util.js +15 -0
  361. package/esm/deps/jsr.io/@std/path/1.0.8/windows/basename.d.ts +23 -0
  362. package/esm/deps/jsr.io/@std/path/1.0.8/windows/basename.d.ts.map +1 -0
  363. package/esm/deps/jsr.io/@std/path/1.0.8/windows/basename.js +44 -0
  364. package/esm/deps/jsr.io/@std/path/1.0.8/windows/constants.d.ts +13 -0
  365. package/esm/deps/jsr.io/@std/path/1.0.8/windows/constants.d.ts.map +1 -0
  366. package/esm/deps/jsr.io/@std/path/1.0.8/windows/constants.js +14 -0
  367. package/esm/deps/jsr.io/@std/path/1.0.8/windows/dirname.d.ts +20 -0
  368. package/esm/deps/jsr.io/@std/path/1.0.8/windows/dirname.d.ts.map +1 -0
  369. package/esm/deps/jsr.io/@std/path/1.0.8/windows/dirname.js +112 -0
  370. package/esm/deps/jsr.io/@std/path/1.0.8/windows/extname.d.ts +20 -0
  371. package/esm/deps/jsr.io/@std/path/1.0.8/windows/extname.d.ts.map +1 -0
  372. package/esm/deps/jsr.io/@std/path/1.0.8/windows/extname.js +81 -0
  373. package/esm/deps/jsr.io/@std/path/1.0.8/windows/format.d.ts +24 -0
  374. package/esm/deps/jsr.io/@std/path/1.0.8/windows/format.d.ts.map +1 -0
  375. package/esm/deps/jsr.io/@std/path/1.0.8/windows/format.js +28 -0
  376. package/esm/deps/jsr.io/@std/path/1.0.8/windows/from_file_url.d.ts +18 -0
  377. package/esm/deps/jsr.io/@std/path/1.0.8/windows/from_file_url.d.ts.map +1 -0
  378. package/esm/deps/jsr.io/@std/path/1.0.8/windows/from_file_url.js +30 -0
  379. package/esm/deps/jsr.io/@std/path/1.0.8/windows/glob_to_regexp.d.ts +71 -0
  380. package/esm/deps/jsr.io/@std/path/1.0.8/windows/glob_to_regexp.d.ts.map +1 -0
  381. package/esm/deps/jsr.io/@std/path/1.0.8/windows/glob_to_regexp.js +82 -0
  382. package/esm/deps/jsr.io/@std/path/1.0.8/windows/is_absolute.d.ts +17 -0
  383. package/esm/deps/jsr.io/@std/path/1.0.8/windows/is_absolute.d.ts.map +1 -0
  384. package/esm/deps/jsr.io/@std/path/1.0.8/windows/is_absolute.js +38 -0
  385. package/esm/deps/jsr.io/@std/path/1.0.8/windows/join.d.ts +20 -0
  386. package/esm/deps/jsr.io/@std/path/1.0.8/windows/join.d.ts.map +1 -0
  387. package/esm/deps/jsr.io/@std/path/1.0.8/windows/join.js +74 -0
  388. package/esm/deps/jsr.io/@std/path/1.0.8/windows/join_globs.d.ts +21 -0
  389. package/esm/deps/jsr.io/@std/path/1.0.8/windows/join_globs.d.ts.map +1 -0
  390. package/esm/deps/jsr.io/@std/path/1.0.8/windows/join_globs.js +41 -0
  391. package/esm/deps/jsr.io/@std/path/1.0.8/windows/normalize.d.ts +22 -0
  392. package/esm/deps/jsr.io/@std/path/1.0.8/windows/normalize.d.ts.map +1 -0
  393. package/esm/deps/jsr.io/@std/path/1.0.8/windows/normalize.js +134 -0
  394. package/esm/deps/jsr.io/@std/path/1.0.8/windows/normalize_glob.d.ts +20 -0
  395. package/esm/deps/jsr.io/@std/path/1.0.8/windows/normalize_glob.d.ts.map +1 -0
  396. package/esm/deps/jsr.io/@std/path/1.0.8/windows/normalize_glob.js +32 -0
  397. package/esm/deps/jsr.io/@std/path/1.0.8/windows/parse.d.ts +25 -0
  398. package/esm/deps/jsr.io/@std/path/1.0.8/windows/parse.d.ts.map +1 -0
  399. package/esm/deps/jsr.io/@std/path/1.0.8/windows/parse.js +176 -0
  400. package/esm/deps/jsr.io/@std/path/1.0.8/windows/relative.d.ts +23 -0
  401. package/esm/deps/jsr.io/@std/path/1.0.8/windows/relative.d.ts.map +1 -0
  402. package/esm/deps/jsr.io/@std/path/1.0.8/windows/relative.js +131 -0
  403. package/esm/deps/jsr.io/@std/path/1.0.8/windows/resolve.d.ts +17 -0
  404. package/esm/deps/jsr.io/@std/path/1.0.8/windows/resolve.d.ts.map +1 -0
  405. package/esm/deps/jsr.io/@std/path/1.0.8/windows/resolve.js +154 -0
  406. package/esm/deps/jsr.io/@std/path/1.0.8/windows/to_file_url.d.ts +17 -0
  407. package/esm/deps/jsr.io/@std/path/1.0.8/windows/to_file_url.d.ts.map +1 -0
  408. package/esm/deps/jsr.io/@std/path/1.0.8/windows/to_file_url.js +34 -0
  409. package/esm/deps/jsr.io/@std/path/1.0.8/windows/to_namespaced_path.d.ts +17 -0
  410. package/esm/deps/jsr.io/@std/path/1.0.8/windows/to_namespaced_path.d.ts.map +1 -0
  411. package/esm/deps/jsr.io/@std/path/1.0.8/windows/to_namespaced_path.js +49 -0
  412. package/esm/mod.d.ts +1 -0
  413. package/esm/mod.d.ts.map +1 -1
  414. package/esm/mod.js +1 -0
  415. package/esm/src/dsl/http/versori/internalauth.d.ts.map +1 -1
  416. package/esm/src/dsl/http/versori/internalauth.js +17 -10
  417. package/esm/src/dsl/http/versori/roundtripper.d.ts.map +1 -1
  418. package/esm/src/dsl/http/versori/roundtripper.js +10 -1
  419. package/esm/src/dsl/triggers/WebhookTrigger.d.ts +13 -0
  420. package/esm/src/dsl/triggers/WebhookTrigger.d.ts.map +1 -0
  421. package/esm/src/dsl/triggers/WebhookTrigger.js +31 -0
  422. package/esm/src/interpreter/memory/MemoryInterpreter.d.ts +9 -1
  423. package/esm/src/interpreter/memory/MemoryInterpreter.d.ts.map +1 -1
  424. package/esm/src/interpreter/memory/MemoryInterpreter.js +53 -21
  425. package/esm/src/interpreter/memory/ObservableCompiler.d.ts +2 -0
  426. package/esm/src/interpreter/memory/ObservableCompiler.d.ts.map +1 -1
  427. package/esm/src/interpreter/memory/ObservableCompiler.js +2 -0
  428. package/esm/src/interpreter/memory/compilers/webhook.d.ts +4 -0
  429. package/esm/src/interpreter/memory/compilers/webhook.d.ts.map +1 -0
  430. package/esm/src/interpreter/memory/compilers/webhook.js +40 -0
  431. package/package.json +2 -1
  432. package/script/_dnt.polyfills.d.ts +14 -0
  433. package/script/_dnt.polyfills.d.ts.map +1 -0
  434. package/script/_dnt.polyfills.js +12 -0
  435. package/script/deps/deno.land/x/oak@v17.1.4/application.d.ts +383 -0
  436. package/script/deps/deno.land/x/oak@v17.1.4/application.d.ts.map +1 -0
  437. package/script/deps/deno.land/x/oak@v17.1.4/application.js +554 -0
  438. package/script/deps/deno.land/x/oak@v17.1.4/body.d.ts +71 -0
  439. package/script/deps/deno.land/x/oak@v17.1.4/body.d.ts.map +1 -0
  440. package/script/deps/deno.land/x/oak@v17.1.4/body.js +240 -0
  441. package/script/deps/deno.land/x/oak@v17.1.4/context.d.ts +163 -0
  442. package/script/deps/deno.land/x/oak@v17.1.4/context.d.ts.map +1 -0
  443. package/script/deps/deno.land/x/oak@v17.1.4/context.js +291 -0
  444. package/script/deps/deno.land/x/oak@v17.1.4/deps.d.ts +19 -0
  445. package/script/deps/deno.land/x/oak@v17.1.4/deps.d.ts.map +1 -0
  446. package/script/deps/deno.land/x/oak@v17.1.4/deps.js +60 -0
  447. package/script/deps/deno.land/x/oak@v17.1.4/http_server_bun.d.ts +51 -0
  448. package/script/deps/deno.land/x/oak@v17.1.4/http_server_bun.d.ts.map +1 -0
  449. package/script/deps/deno.land/x/oak@v17.1.4/http_server_bun.js +151 -0
  450. package/script/deps/deno.land/x/oak@v17.1.4/http_server_native.d.ts +17 -0
  451. package/script/deps/deno.land/x/oak@v17.1.4/http_server_native.d.ts.map +1 -0
  452. package/script/deps/deno.land/x/oak@v17.1.4/http_server_native.js +127 -0
  453. package/script/deps/deno.land/x/oak@v17.1.4/http_server_native_request.d.ts +26 -0
  454. package/script/deps/deno.land/x/oak@v17.1.4/http_server_native_request.d.ts.map +1 -0
  455. package/script/deps/deno.land/x/oak@v17.1.4/http_server_native_request.js +140 -0
  456. package/script/deps/deno.land/x/oak@v17.1.4/http_server_node.d.ts +48 -0
  457. package/script/deps/deno.land/x/oak@v17.1.4/http_server_node.d.ts.map +1 -0
  458. package/script/deps/deno.land/x/oak@v17.1.4/http_server_node.js +180 -0
  459. package/script/deps/deno.land/x/oak@v17.1.4/middleware/etag.d.ts +20 -0
  460. package/script/deps/deno.land/x/oak@v17.1.4/middleware/etag.d.ts.map +1 -0
  461. package/script/deps/deno.land/x/oak@v17.1.4/middleware/etag.js +57 -0
  462. package/script/deps/deno.land/x/oak@v17.1.4/middleware/proxy.d.ts +67 -0
  463. package/script/deps/deno.land/x/oak@v17.1.4/middleware/proxy.d.ts.map +1 -0
  464. package/script/deps/deno.land/x/oak@v17.1.4/middleware/proxy.js +130 -0
  465. package/script/deps/deno.land/x/oak@v17.1.4/middleware/serve.d.ts +114 -0
  466. package/script/deps/deno.land/x/oak@v17.1.4/middleware/serve.d.ts.map +1 -0
  467. package/script/deps/deno.land/x/oak@v17.1.4/middleware/serve.js +218 -0
  468. package/script/deps/deno.land/x/oak@v17.1.4/middleware.d.ts +36 -0
  469. package/script/deps/deno.land/x/oak@v17.1.4/middleware.d.ts.map +1 -0
  470. package/script/deps/deno.land/x/oak@v17.1.4/middleware.js +38 -0
  471. package/script/deps/deno.land/x/oak@v17.1.4/mod.d.ts +111 -0
  472. package/script/deps/deno.land/x/oak@v17.1.4/mod.d.ts.map +1 -0
  473. package/script/deps/deno.land/x/oak@v17.1.4/mod.js +159 -0
  474. package/script/deps/deno.land/x/oak@v17.1.4/node_shims.d.ts +2 -0
  475. package/script/deps/deno.land/x/oak@v17.1.4/node_shims.d.ts.map +1 -0
  476. package/script/deps/deno.land/x/oak@v17.1.4/node_shims.js +100 -0
  477. package/script/deps/deno.land/x/oak@v17.1.4/request.d.ts +133 -0
  478. package/script/deps/deno.land/x/oak@v17.1.4/request.d.ts.map +1 -0
  479. package/script/deps/deno.land/x/oak@v17.1.4/request.js +250 -0
  480. package/script/deps/deno.land/x/oak@v17.1.4/response.d.ts +148 -0
  481. package/script/deps/deno.land/x/oak@v17.1.4/response.d.ts.map +1 -0
  482. package/script/deps/deno.land/x/oak@v17.1.4/response.js +299 -0
  483. package/script/deps/deno.land/x/oak@v17.1.4/router.d.ts +363 -0
  484. package/script/deps/deno.land/x/oak@v17.1.4/router.d.ts.map +1 -0
  485. package/script/deps/deno.land/x/oak@v17.1.4/router.js +641 -0
  486. package/script/deps/deno.land/x/oak@v17.1.4/send.d.ts +75 -0
  487. package/script/deps/deno.land/x/oak@v17.1.4/send.d.ts.map +1 -0
  488. package/script/deps/deno.land/x/oak@v17.1.4/send.js +222 -0
  489. package/script/deps/deno.land/x/oak@v17.1.4/testing.d.ts +33 -0
  490. package/script/deps/deno.land/x/oak@v17.1.4/testing.d.ts.map +1 -0
  491. package/script/deps/deno.land/x/oak@v17.1.4/testing.js +118 -0
  492. package/script/deps/deno.land/x/oak@v17.1.4/types.d.ts +77 -0
  493. package/script/deps/deno.land/x/oak@v17.1.4/types.d.ts.map +1 -0
  494. package/script/deps/deno.land/x/oak@v17.1.4/types.js +2 -0
  495. package/script/deps/deno.land/x/oak@v17.1.4/utils/clone_state.d.ts +3 -0
  496. package/script/deps/deno.land/x/oak@v17.1.4/utils/clone_state.d.ts.map +1 -0
  497. package/script/deps/deno.land/x/oak@v17.1.4/utils/clone_state.js +19 -0
  498. package/script/deps/deno.land/x/oak@v17.1.4/utils/consts.d.ts +3 -0
  499. package/script/deps/deno.land/x/oak@v17.1.4/utils/consts.d.ts.map +1 -0
  500. package/script/deps/deno.land/x/oak@v17.1.4/utils/consts.js +6 -0
  501. package/script/deps/deno.land/x/oak@v17.1.4/utils/create_promise_with_resolvers.d.ts +7 -0
  502. package/script/deps/deno.land/x/oak@v17.1.4/utils/create_promise_with_resolvers.d.ts.map +1 -0
  503. package/script/deps/deno.land/x/oak@v17.1.4/utils/create_promise_with_resolvers.js +23 -0
  504. package/script/deps/deno.land/x/oak@v17.1.4/utils/decode.d.ts +6 -0
  505. package/script/deps/deno.land/x/oak@v17.1.4/utils/decode.d.ts.map +1 -0
  506. package/script/deps/deno.land/x/oak@v17.1.4/utils/decode.js +20 -0
  507. package/script/deps/deno.land/x/oak@v17.1.4/utils/decode_component.d.ts +6 -0
  508. package/script/deps/deno.land/x/oak@v17.1.4/utils/decode_component.d.ts.map +1 -0
  509. package/script/deps/deno.land/x/oak@v17.1.4/utils/decode_component.js +16 -0
  510. package/script/deps/deno.land/x/oak@v17.1.4/utils/encode_url.d.ts +3 -0
  511. package/script/deps/deno.land/x/oak@v17.1.4/utils/encode_url.d.ts.map +1 -0
  512. package/script/deps/deno.land/x/oak@v17.1.4/utils/encode_url.js +13 -0
  513. package/script/deps/deno.land/x/oak@v17.1.4/utils/resolve_path.d.ts +31 -0
  514. package/script/deps/deno.land/x/oak@v17.1.4/utils/resolve_path.d.ts.map +1 -0
  515. package/script/deps/deno.land/x/oak@v17.1.4/utils/resolve_path.js +59 -0
  516. package/script/deps/deno.land/x/oak@v17.1.4/utils/streams.d.ts +9 -0
  517. package/script/deps/deno.land/x/oak@v17.1.4/utils/streams.d.ts.map +1 -0
  518. package/script/deps/deno.land/x/oak@v17.1.4/utils/streams.js +80 -0
  519. package/script/deps/deno.land/x/oak@v17.1.4/utils/type_guards.d.ts +17 -0
  520. package/script/deps/deno.land/x/oak@v17.1.4/utils/type_guards.d.ts.map +1 -0
  521. package/script/deps/deno.land/x/oak@v17.1.4/utils/type_guards.js +70 -0
  522. package/script/deps/jsr.io/@oak/commons/1.0.0/content_disposition.d.ts +16 -0
  523. package/script/deps/jsr.io/@oak/commons/1.0.0/content_disposition.d.ts.map +1 -0
  524. package/script/deps/jsr.io/@oak/commons/1.0.0/content_disposition.js +128 -0
  525. package/script/deps/jsr.io/@oak/commons/1.0.0/cookie_map.d.ts +363 -0
  526. package/script/deps/jsr.io/@oak/commons/1.0.0/cookie_map.d.ts.map +1 -0
  527. package/script/deps/jsr.io/@oak/commons/1.0.0/cookie_map.js +608 -0
  528. package/script/deps/jsr.io/@oak/commons/1.0.0/form_data.d.ts +9 -0
  529. package/script/deps/jsr.io/@oak/commons/1.0.0/form_data.d.ts.map +1 -0
  530. package/script/deps/jsr.io/@oak/commons/1.0.0/form_data.js +288 -0
  531. package/script/deps/jsr.io/@oak/commons/1.0.0/forwarded.d.ts +16 -0
  532. package/script/deps/jsr.io/@oak/commons/1.0.0/forwarded.d.ts.map +1 -0
  533. package/script/deps/jsr.io/@oak/commons/1.0.0/forwarded.js +211 -0
  534. package/script/deps/jsr.io/@oak/commons/1.0.0/header_utils.d.ts +6 -0
  535. package/script/deps/jsr.io/@oak/commons/1.0.0/header_utils.d.ts.map +1 -0
  536. package/script/deps/jsr.io/@oak/commons/1.0.0/header_utils.js +32 -0
  537. package/script/deps/jsr.io/@oak/commons/1.0.0/http_errors.d.ts +123 -0
  538. package/script/deps/jsr.io/@oak/commons/1.0.0/http_errors.d.ts.map +1 -0
  539. package/script/deps/jsr.io/@oak/commons/1.0.0/http_errors.js +239 -0
  540. package/script/deps/jsr.io/@oak/commons/1.0.0/keystack.d.ts +56 -0
  541. package/script/deps/jsr.io/@oak/commons/1.0.0/keystack.d.ts.map +1 -0
  542. package/script/deps/jsr.io/@oak/commons/1.0.0/keystack.js +169 -0
  543. package/script/deps/jsr.io/@oak/commons/1.0.0/media_types.d.ts +56 -0
  544. package/script/deps/jsr.io/@oak/commons/1.0.0/media_types.d.ts.map +1 -0
  545. package/script/deps/jsr.io/@oak/commons/1.0.0/media_types.js +212 -0
  546. package/script/deps/jsr.io/@oak/commons/1.0.0/method.d.ts +29 -0
  547. package/script/deps/jsr.io/@oak/commons/1.0.0/method.d.ts.map +1 -0
  548. package/script/deps/jsr.io/@oak/commons/1.0.0/method.js +66 -0
  549. package/script/deps/jsr.io/@oak/commons/1.0.0/range.d.ts +324 -0
  550. package/script/deps/jsr.io/@oak/commons/1.0.0/range.d.ts.map +1 -0
  551. package/script/deps/jsr.io/@oak/commons/1.0.0/range.js +536 -0
  552. package/script/deps/jsr.io/@oak/commons/1.0.0/server_sent_event.d.ts +178 -0
  553. package/script/deps/jsr.io/@oak/commons/1.0.0/server_sent_event.d.ts.map +1 -0
  554. package/script/deps/jsr.io/@oak/commons/1.0.0/server_sent_event.js +267 -0
  555. package/script/deps/jsr.io/@oak/commons/1.0.0/status.d.ts +389 -0
  556. package/script/deps/jsr.io/@oak/commons/1.0.0/status.d.ts.map +1 -0
  557. package/script/deps/jsr.io/@oak/commons/1.0.0/status.js +396 -0
  558. package/script/deps/jsr.io/@std/assert/1.0.11/assert.d.ts +16 -0
  559. package/script/deps/jsr.io/@std/assert/1.0.11/assert.d.ts.map +1 -0
  560. package/script/deps/jsr.io/@std/assert/1.0.11/assert.js +25 -0
  561. package/script/deps/jsr.io/@std/assert/1.0.11/assertion_error.d.ts +26 -0
  562. package/script/deps/jsr.io/@std/assert/1.0.11/assertion_error.d.ts.map +1 -0
  563. package/script/deps/jsr.io/@std/assert/1.0.11/assertion_error.js +34 -0
  564. package/script/deps/jsr.io/@std/bytes/1.0.5/_types.d.ts +9 -0
  565. package/script/deps/jsr.io/@std/bytes/1.0.5/_types.d.ts.map +1 -0
  566. package/script/deps/jsr.io/@std/bytes/1.0.5/_types.js +3 -0
  567. package/script/deps/jsr.io/@std/bytes/1.0.5/concat.d.ts +21 -0
  568. package/script/deps/jsr.io/@std/bytes/1.0.5/concat.d.ts.map +1 -0
  569. package/script/deps/jsr.io/@std/bytes/1.0.5/concat.js +35 -0
  570. package/script/deps/jsr.io/@std/crypto/1.0.4/timing_safe_equal.d.ts +34 -0
  571. package/script/deps/jsr.io/@std/crypto/1.0.4/timing_safe_equal.d.ts.map +1 -0
  572. package/script/deps/jsr.io/@std/crypto/1.0.4/timing_safe_equal.js +58 -0
  573. package/script/deps/jsr.io/@std/encoding/1.0.7/_types.d.ts +9 -0
  574. package/script/deps/jsr.io/@std/encoding/1.0.7/_types.d.ts.map +1 -0
  575. package/script/deps/jsr.io/@std/encoding/1.0.7/_types.js +3 -0
  576. package/script/deps/jsr.io/@std/encoding/1.0.7/_validate_binary_like.d.ts +2 -0
  577. package/script/deps/jsr.io/@std/encoding/1.0.7/_validate_binary_like.d.ts.map +1 -0
  578. package/script/deps/jsr.io/@std/encoding/1.0.7/_validate_binary_like.js +29 -0
  579. package/script/deps/jsr.io/@std/encoding/1.0.7/base64.d.ts +40 -0
  580. package/script/deps/jsr.io/@std/encoding/1.0.7/base64.d.ts.map +1 -0
  581. package/script/deps/jsr.io/@std/encoding/1.0.7/base64.js +167 -0
  582. package/script/deps/jsr.io/@std/encoding/1.0.7/base64url.d.ts +40 -0
  583. package/script/deps/jsr.io/@std/encoding/1.0.7/base64url.d.ts.map +1 -0
  584. package/script/deps/jsr.io/@std/encoding/1.0.7/base64url.js +108 -0
  585. package/script/deps/jsr.io/@std/http/1.0.13/_negotiation/common.d.ts +38 -0
  586. package/script/deps/jsr.io/@std/http/1.0.13/_negotiation/common.d.ts.map +1 -0
  587. package/script/deps/jsr.io/@std/http/1.0.13/_negotiation/common.js +44 -0
  588. package/script/deps/jsr.io/@std/http/1.0.13/_negotiation/encoding.d.ts +34 -0
  589. package/script/deps/jsr.io/@std/http/1.0.13/_negotiation/encoding.d.ts.map +1 -0
  590. package/script/deps/jsr.io/@std/http/1.0.13/_negotiation/encoding.js +126 -0
  591. package/script/deps/jsr.io/@std/http/1.0.13/_negotiation/language.d.ts +31 -0
  592. package/script/deps/jsr.io/@std/http/1.0.13/_negotiation/language.d.ts.map +1 -0
  593. package/script/deps/jsr.io/@std/http/1.0.13/_negotiation/language.js +116 -0
  594. package/script/deps/jsr.io/@std/http/1.0.13/_negotiation/media_type.d.ts +31 -0
  595. package/script/deps/jsr.io/@std/http/1.0.13/_negotiation/media_type.d.ts.map +1 -0
  596. package/script/deps/jsr.io/@std/http/1.0.13/_negotiation/media_type.js +143 -0
  597. package/script/deps/jsr.io/@std/http/1.0.13/etag.d.ts +148 -0
  598. package/script/deps/jsr.io/@std/http/1.0.13/etag.d.ts.map +1 -0
  599. package/script/deps/jsr.io/@std/http/1.0.13/etag.js +140 -0
  600. package/script/deps/jsr.io/@std/http/1.0.13/negotiation.d.ts +148 -0
  601. package/script/deps/jsr.io/@std/http/1.0.13/negotiation.d.ts.map +1 -0
  602. package/script/deps/jsr.io/@std/http/1.0.13/negotiation.js +42 -0
  603. package/script/deps/jsr.io/@std/http/1.0.13/user_agent.d.ts +200 -0
  604. package/script/deps/jsr.io/@std/http/1.0.13/user_agent.d.ts.map +1 -0
  605. package/script/deps/jsr.io/@std/http/1.0.13/user_agent.js +1154 -0
  606. package/script/deps/jsr.io/@std/media-types/1.1.0/_db.d.ts +8 -0
  607. package/script/deps/jsr.io/@std/media-types/1.1.0/_db.d.ts.map +1 -0
  608. package/script/deps/jsr.io/@std/media-types/1.1.0/_db.js +40 -0
  609. package/script/deps/jsr.io/@std/media-types/1.1.0/_util.d.ts +15 -0
  610. package/script/deps/jsr.io/@std/media-types/1.1.0/_util.d.ts.map +1 -0
  611. package/script/deps/jsr.io/@std/media-types/1.1.0/_util.js +132 -0
  612. package/script/deps/jsr.io/@std/media-types/1.1.0/content_type.d.ts +43 -0
  613. package/script/deps/jsr.io/@std/media-types/1.1.0/content_type.d.ts.map +1 -0
  614. package/script/deps/jsr.io/@std/media-types/1.1.0/content_type.js +60 -0
  615. package/script/deps/jsr.io/@std/media-types/1.1.0/format_media_type.d.ts +33 -0
  616. package/script/deps/jsr.io/@std/media-types/1.1.0/format_media_type.d.ts.map +1 -0
  617. package/script/deps/jsr.io/@std/media-types/1.1.0/format_media_type.js +80 -0
  618. package/script/deps/jsr.io/@std/media-types/1.1.0/get_charset.d.ts +22 -0
  619. package/script/deps/jsr.io/@std/media-types/1.1.0/get_charset.d.ts.map +1 -0
  620. package/script/deps/jsr.io/@std/media-types/1.1.0/get_charset.js +46 -0
  621. package/script/deps/jsr.io/@std/media-types/1.1.0/parse_media_type.d.ts +31 -0
  622. package/script/deps/jsr.io/@std/media-types/1.1.0/parse_media_type.d.ts.map +1 -0
  623. package/script/deps/jsr.io/@std/media-types/1.1.0/parse_media_type.js +117 -0
  624. package/script/deps/jsr.io/@std/media-types/1.1.0/type_by_extension.d.ts +25 -0
  625. package/script/deps/jsr.io/@std/media-types/1.1.0/type_by_extension.d.ts.map +1 -0
  626. package/script/deps/jsr.io/@std/media-types/1.1.0/type_by_extension.js +34 -0
  627. package/script/deps/jsr.io/@std/media-types/1.1.0/vendor/db.d.ts +9103 -0
  628. package/script/deps/jsr.io/@std/media-types/1.1.0/vendor/db.d.ts.map +1 -0
  629. package/script/deps/jsr.io/@std/media-types/1.1.0/vendor/db.js +9140 -0
  630. package/script/deps/jsr.io/@std/path/1.0.8/_common/assert_path.d.ts +2 -0
  631. package/script/deps/jsr.io/@std/path/1.0.8/_common/assert_path.d.ts.map +1 -0
  632. package/script/deps/jsr.io/@std/path/1.0.8/_common/assert_path.js +10 -0
  633. package/script/deps/jsr.io/@std/path/1.0.8/_common/basename.d.ts +4 -0
  634. package/script/deps/jsr.io/@std/path/1.0.8/_common/basename.d.ts.map +1 -0
  635. package/script/deps/jsr.io/@std/path/1.0.8/_common/basename.js +45 -0
  636. package/script/deps/jsr.io/@std/path/1.0.8/_common/common.d.ts +2 -0
  637. package/script/deps/jsr.io/@std/path/1.0.8/_common/common.d.ts.map +1 -0
  638. package/script/deps/jsr.io/@std/path/1.0.8/_common/common.js +26 -0
  639. package/script/deps/jsr.io/@std/path/1.0.8/_common/constants.d.ts +40 -0
  640. package/script/deps/jsr.io/@std/path/1.0.8/_common/constants.d.ts.map +1 -0
  641. package/script/deps/jsr.io/@std/path/1.0.8/_common/constants.js +49 -0
  642. package/script/deps/jsr.io/@std/path/1.0.8/_common/dirname.d.ts +2 -0
  643. package/script/deps/jsr.io/@std/path/1.0.8/_common/dirname.d.ts.map +1 -0
  644. package/script/deps/jsr.io/@std/path/1.0.8/_common/dirname.js +11 -0
  645. package/script/deps/jsr.io/@std/path/1.0.8/_common/format.d.ts +4 -0
  646. package/script/deps/jsr.io/@std/path/1.0.8/_common/format.d.ts.map +1 -0
  647. package/script/deps/jsr.io/@std/path/1.0.8/_common/format.js +23 -0
  648. package/script/deps/jsr.io/@std/path/1.0.8/_common/from_file_url.d.ts +2 -0
  649. package/script/deps/jsr.io/@std/path/1.0.8/_common/from_file_url.d.ts.map +1 -0
  650. package/script/deps/jsr.io/@std/path/1.0.8/_common/from_file_url.js +12 -0
  651. package/script/deps/jsr.io/@std/path/1.0.8/_common/glob_to_reg_exp.d.ts +35 -0
  652. package/script/deps/jsr.io/@std/path/1.0.8/_common/glob_to_reg_exp.d.ts.map +1 -0
  653. package/script/deps/jsr.io/@std/path/1.0.8/_common/glob_to_reg_exp.js +237 -0
  654. package/script/deps/jsr.io/@std/path/1.0.8/_common/normalize.d.ts +2 -0
  655. package/script/deps/jsr.io/@std/path/1.0.8/_common/normalize.d.ts.map +1 -0
  656. package/script/deps/jsr.io/@std/path/1.0.8/_common/normalize.js +11 -0
  657. package/script/deps/jsr.io/@std/path/1.0.8/_common/normalize_string.d.ts +2 -0
  658. package/script/deps/jsr.io/@std/path/1.0.8/_common/normalize_string.d.ts.map +1 -0
  659. package/script/deps/jsr.io/@std/path/1.0.8/_common/normalize_string.js +80 -0
  660. package/script/deps/jsr.io/@std/path/1.0.8/_common/relative.d.ts +2 -0
  661. package/script/deps/jsr.io/@std/path/1.0.8/_common/relative.d.ts.map +1 -0
  662. package/script/deps/jsr.io/@std/path/1.0.8/_common/relative.js +12 -0
  663. package/script/deps/jsr.io/@std/path/1.0.8/_common/strip_trailing_separators.d.ts +2 -0
  664. package/script/deps/jsr.io/@std/path/1.0.8/_common/strip_trailing_separators.d.ts.map +1 -0
  665. package/script/deps/jsr.io/@std/path/1.0.8/_common/strip_trailing_separators.js +22 -0
  666. package/script/deps/jsr.io/@std/path/1.0.8/_common/to_file_url.d.ts +2 -0
  667. package/script/deps/jsr.io/@std/path/1.0.8/_common/to_file_url.d.ts.map +1 -0
  668. package/script/deps/jsr.io/@std/path/1.0.8/_common/to_file_url.js +18 -0
  669. package/script/deps/jsr.io/@std/path/1.0.8/_os.d.ts +2 -0
  670. package/script/deps/jsr.io/@std/path/1.0.8/_os.d.ts.map +1 -0
  671. package/script/deps/jsr.io/@std/path/1.0.8/_os.js +35 -0
  672. package/script/deps/jsr.io/@std/path/1.0.8/basename.d.ts +28 -0
  673. package/script/deps/jsr.io/@std/path/1.0.8/basename.d.ts.map +1 -0
  674. package/script/deps/jsr.io/@std/path/1.0.8/basename.js +39 -0
  675. package/script/deps/jsr.io/@std/path/1.0.8/common.d.ts +28 -0
  676. package/script/deps/jsr.io/@std/path/1.0.8/common.d.ts.map +1 -0
  677. package/script/deps/jsr.io/@std/path/1.0.8/common.js +36 -0
  678. package/script/deps/jsr.io/@std/path/1.0.8/constants.d.ts +15 -0
  679. package/script/deps/jsr.io/@std/path/1.0.8/constants.d.ts.map +1 -0
  680. package/script/deps/jsr.io/@std/path/1.0.8/constants.js +20 -0
  681. package/script/deps/jsr.io/@std/path/1.0.8/dirname.d.ts +23 -0
  682. package/script/deps/jsr.io/@std/path/1.0.8/dirname.d.ts.map +1 -0
  683. package/script/deps/jsr.io/@std/path/1.0.8/dirname.js +32 -0
  684. package/script/deps/jsr.io/@std/path/1.0.8/extname.d.ts +23 -0
  685. package/script/deps/jsr.io/@std/path/1.0.8/extname.d.ts.map +1 -0
  686. package/script/deps/jsr.io/@std/path/1.0.8/extname.js +32 -0
  687. package/script/deps/jsr.io/@std/path/1.0.8/format.d.ts +22 -0
  688. package/script/deps/jsr.io/@std/path/1.0.8/format.d.ts.map +1 -0
  689. package/script/deps/jsr.io/@std/path/1.0.8/format.js +30 -0
  690. package/script/deps/jsr.io/@std/path/1.0.8/from_file_url.d.ts +22 -0
  691. package/script/deps/jsr.io/@std/path/1.0.8/from_file_url.d.ts.map +1 -0
  692. package/script/deps/jsr.io/@std/path/1.0.8/from_file_url.js +31 -0
  693. package/script/deps/jsr.io/@std/path/1.0.8/glob_to_regexp.d.ts +77 -0
  694. package/script/deps/jsr.io/@std/path/1.0.8/glob_to_regexp.d.ts.map +1 -0
  695. package/script/deps/jsr.io/@std/path/1.0.8/glob_to_regexp.js +86 -0
  696. package/script/deps/jsr.io/@std/path/1.0.8/is_absolute.d.ts +22 -0
  697. package/script/deps/jsr.io/@std/path/1.0.8/is_absolute.d.ts.map +1 -0
  698. package/script/deps/jsr.io/@std/path/1.0.8/is_absolute.js +31 -0
  699. package/script/deps/jsr.io/@std/path/1.0.8/is_glob.d.ts +17 -0
  700. package/script/deps/jsr.io/@std/path/1.0.8/is_glob.d.ts.map +1 -0
  701. package/script/deps/jsr.io/@std/path/1.0.8/is_glob.js +45 -0
  702. package/script/deps/jsr.io/@std/path/1.0.8/join.d.ts +23 -0
  703. package/script/deps/jsr.io/@std/path/1.0.8/join.d.ts.map +1 -0
  704. package/script/deps/jsr.io/@std/path/1.0.8/join.js +32 -0
  705. package/script/deps/jsr.io/@std/path/1.0.8/join_globs.d.ts +28 -0
  706. package/script/deps/jsr.io/@std/path/1.0.8/join_globs.d.ts.map +1 -0
  707. package/script/deps/jsr.io/@std/path/1.0.8/join_globs.js +37 -0
  708. package/script/deps/jsr.io/@std/path/1.0.8/mod.d.ts +54 -0
  709. package/script/deps/jsr.io/@std/path/1.0.8/mod.d.ts.map +1 -0
  710. package/script/deps/jsr.io/@std/path/1.0.8/mod.js +73 -0
  711. package/script/deps/jsr.io/@std/path/1.0.8/normalize.d.ts +27 -0
  712. package/script/deps/jsr.io/@std/path/1.0.8/normalize.d.ts.map +1 -0
  713. package/script/deps/jsr.io/@std/path/1.0.8/normalize.js +36 -0
  714. package/script/deps/jsr.io/@std/path/1.0.8/normalize_glob.d.ts +29 -0
  715. package/script/deps/jsr.io/@std/path/1.0.8/normalize_glob.d.ts.map +1 -0
  716. package/script/deps/jsr.io/@std/path/1.0.8/normalize_glob.js +38 -0
  717. package/script/deps/jsr.io/@std/path/1.0.8/parse.d.ts +35 -0
  718. package/script/deps/jsr.io/@std/path/1.0.8/parse.d.ts.map +1 -0
  719. package/script/deps/jsr.io/@std/path/1.0.8/parse.js +42 -0
  720. package/script/deps/jsr.io/@std/path/1.0.8/posix/_util.d.ts +2 -0
  721. package/script/deps/jsr.io/@std/path/1.0.8/posix/_util.d.ts.map +1 -0
  722. package/script/deps/jsr.io/@std/path/1.0.8/posix/_util.js +11 -0
  723. package/script/deps/jsr.io/@std/path/1.0.8/posix/basename.d.ts +40 -0
  724. package/script/deps/jsr.io/@std/path/1.0.8/posix/basename.d.ts.map +1 -0
  725. package/script/deps/jsr.io/@std/path/1.0.8/posix/basename.js +52 -0
  726. package/script/deps/jsr.io/@std/path/1.0.8/posix/constants.d.ts +13 -0
  727. package/script/deps/jsr.io/@std/path/1.0.8/posix/constants.d.ts.map +1 -0
  728. package/script/deps/jsr.io/@std/path/1.0.8/posix/constants.js +17 -0
  729. package/script/deps/jsr.io/@std/path/1.0.8/posix/dirname.d.ts +32 -0
  730. package/script/deps/jsr.io/@std/path/1.0.8/posix/dirname.d.ts.map +1 -0
  731. package/script/deps/jsr.io/@std/path/1.0.8/posix/dirname.js +65 -0
  732. package/script/deps/jsr.io/@std/path/1.0.8/posix/extname.d.ts +37 -0
  733. package/script/deps/jsr.io/@std/path/1.0.8/posix/extname.d.ts.map +1 -0
  734. package/script/deps/jsr.io/@std/path/1.0.8/posix/extname.js +92 -0
  735. package/script/deps/jsr.io/@std/path/1.0.8/posix/format.d.ts +24 -0
  736. package/script/deps/jsr.io/@std/path/1.0.8/posix/format.d.ts.map +1 -0
  737. package/script/deps/jsr.io/@std/path/1.0.8/posix/format.js +31 -0
  738. package/script/deps/jsr.io/@std/path/1.0.8/posix/from_file_url.d.ts +16 -0
  739. package/script/deps/jsr.io/@std/path/1.0.8/posix/from_file_url.d.ts.map +1 -0
  740. package/script/deps/jsr.io/@std/path/1.0.8/posix/from_file_url.js +24 -0
  741. package/script/deps/jsr.io/@std/path/1.0.8/posix/glob_to_regexp.d.ts +72 -0
  742. package/script/deps/jsr.io/@std/path/1.0.8/posix/glob_to_regexp.d.ts.map +1 -0
  743. package/script/deps/jsr.io/@std/path/1.0.8/posix/glob_to_regexp.js +85 -0
  744. package/script/deps/jsr.io/@std/path/1.0.8/posix/is_absolute.d.ts +17 -0
  745. package/script/deps/jsr.io/@std/path/1.0.8/posix/is_absolute.d.ts.map +1 -0
  746. package/script/deps/jsr.io/@std/path/1.0.8/posix/is_absolute.js +26 -0
  747. package/script/deps/jsr.io/@std/path/1.0.8/posix/join.d.ts +33 -0
  748. package/script/deps/jsr.io/@std/path/1.0.8/posix/join.d.ts.map +1 -0
  749. package/script/deps/jsr.io/@std/path/1.0.8/posix/join.js +45 -0
  750. package/script/deps/jsr.io/@std/path/1.0.8/posix/join_globs.d.ts +20 -0
  751. package/script/deps/jsr.io/@std/path/1.0.8/posix/join_globs.d.ts.map +1 -0
  752. package/script/deps/jsr.io/@std/path/1.0.8/posix/join_globs.js +43 -0
  753. package/script/deps/jsr.io/@std/path/1.0.8/posix/normalize.d.ts +40 -0
  754. package/script/deps/jsr.io/@std/path/1.0.8/posix/normalize.d.ts.map +1 -0
  755. package/script/deps/jsr.io/@std/path/1.0.8/posix/normalize.js +60 -0
  756. package/script/deps/jsr.io/@std/path/1.0.8/posix/normalize_glob.d.ts +20 -0
  757. package/script/deps/jsr.io/@std/path/1.0.8/posix/normalize_glob.d.ts.map +1 -0
  758. package/script/deps/jsr.io/@std/path/1.0.8/posix/normalize_glob.js +35 -0
  759. package/script/deps/jsr.io/@std/path/1.0.8/posix/parse.d.ts +25 -0
  760. package/script/deps/jsr.io/@std/path/1.0.8/posix/parse.d.ts.map +1 -0
  761. package/script/deps/jsr.io/@std/path/1.0.8/posix/parse.js +118 -0
  762. package/script/deps/jsr.io/@std/path/1.0.8/posix/relative.d.ts +20 -0
  763. package/script/deps/jsr.io/@std/path/1.0.8/posix/relative.d.ts.map +1 -0
  764. package/script/deps/jsr.io/@std/path/1.0.8/posix/relative.js +109 -0
  765. package/script/deps/jsr.io/@std/path/1.0.8/posix/resolve.d.ts +17 -0
  766. package/script/deps/jsr.io/@std/path/1.0.8/posix/resolve.d.ts.map +1 -0
  767. package/script/deps/jsr.io/@std/path/1.0.8/posix/resolve.js +85 -0
  768. package/script/deps/jsr.io/@std/path/1.0.8/posix/to_file_url.d.ts +17 -0
  769. package/script/deps/jsr.io/@std/path/1.0.8/posix/to_file_url.d.ts.map +1 -0
  770. package/script/deps/jsr.io/@std/path/1.0.8/posix/to_file_url.js +30 -0
  771. package/script/deps/jsr.io/@std/path/1.0.8/posix/to_namespaced_path.d.ts +16 -0
  772. package/script/deps/jsr.io/@std/path/1.0.8/posix/to_namespaced_path.d.ts.map +1 -0
  773. package/script/deps/jsr.io/@std/path/1.0.8/posix/to_namespaced_path.js +23 -0
  774. package/script/deps/jsr.io/@std/path/1.0.8/relative.d.ts +24 -0
  775. package/script/deps/jsr.io/@std/path/1.0.8/relative.d.ts.map +1 -0
  776. package/script/deps/jsr.io/@std/path/1.0.8/relative.js +33 -0
  777. package/script/deps/jsr.io/@std/path/1.0.8/resolve.d.ts +22 -0
  778. package/script/deps/jsr.io/@std/path/1.0.8/resolve.d.ts.map +1 -0
  779. package/script/deps/jsr.io/@std/path/1.0.8/resolve.js +33 -0
  780. package/script/deps/jsr.io/@std/path/1.0.8/to_file_url.d.ts +22 -0
  781. package/script/deps/jsr.io/@std/path/1.0.8/to_file_url.d.ts.map +1 -0
  782. package/script/deps/jsr.io/@std/path/1.0.8/to_file_url.js +31 -0
  783. package/script/deps/jsr.io/@std/path/1.0.8/to_namespaced_path.d.ts +21 -0
  784. package/script/deps/jsr.io/@std/path/1.0.8/to_namespaced_path.d.ts.map +1 -0
  785. package/script/deps/jsr.io/@std/path/1.0.8/to_namespaced_path.js +32 -0
  786. package/script/deps/jsr.io/@std/path/1.0.8/types.d.ts +38 -0
  787. package/script/deps/jsr.io/@std/path/1.0.8/types.d.ts.map +1 -0
  788. package/script/deps/jsr.io/@std/path/1.0.8/types.js +4 -0
  789. package/script/deps/jsr.io/@std/path/1.0.8/windows/_util.d.ts +4 -0
  790. package/script/deps/jsr.io/@std/path/1.0.8/windows/_util.d.ts.map +1 -0
  791. package/script/deps/jsr.io/@std/path/1.0.8/windows/_util.js +20 -0
  792. package/script/deps/jsr.io/@std/path/1.0.8/windows/basename.d.ts +23 -0
  793. package/script/deps/jsr.io/@std/path/1.0.8/windows/basename.d.ts.map +1 -0
  794. package/script/deps/jsr.io/@std/path/1.0.8/windows/basename.js +47 -0
  795. package/script/deps/jsr.io/@std/path/1.0.8/windows/constants.d.ts +13 -0
  796. package/script/deps/jsr.io/@std/path/1.0.8/windows/constants.d.ts.map +1 -0
  797. package/script/deps/jsr.io/@std/path/1.0.8/windows/constants.js +17 -0
  798. package/script/deps/jsr.io/@std/path/1.0.8/windows/dirname.d.ts +20 -0
  799. package/script/deps/jsr.io/@std/path/1.0.8/windows/dirname.d.ts.map +1 -0
  800. package/script/deps/jsr.io/@std/path/1.0.8/windows/dirname.js +115 -0
  801. package/script/deps/jsr.io/@std/path/1.0.8/windows/extname.d.ts +20 -0
  802. package/script/deps/jsr.io/@std/path/1.0.8/windows/extname.d.ts.map +1 -0
  803. package/script/deps/jsr.io/@std/path/1.0.8/windows/extname.js +84 -0
  804. package/script/deps/jsr.io/@std/path/1.0.8/windows/format.d.ts +24 -0
  805. package/script/deps/jsr.io/@std/path/1.0.8/windows/format.d.ts.map +1 -0
  806. package/script/deps/jsr.io/@std/path/1.0.8/windows/format.js +31 -0
  807. package/script/deps/jsr.io/@std/path/1.0.8/windows/from_file_url.d.ts +18 -0
  808. package/script/deps/jsr.io/@std/path/1.0.8/windows/from_file_url.d.ts.map +1 -0
  809. package/script/deps/jsr.io/@std/path/1.0.8/windows/from_file_url.js +33 -0
  810. package/script/deps/jsr.io/@std/path/1.0.8/windows/glob_to_regexp.d.ts +71 -0
  811. package/script/deps/jsr.io/@std/path/1.0.8/windows/glob_to_regexp.d.ts.map +1 -0
  812. package/script/deps/jsr.io/@std/path/1.0.8/windows/glob_to_regexp.js +85 -0
  813. package/script/deps/jsr.io/@std/path/1.0.8/windows/is_absolute.d.ts +17 -0
  814. package/script/deps/jsr.io/@std/path/1.0.8/windows/is_absolute.d.ts.map +1 -0
  815. package/script/deps/jsr.io/@std/path/1.0.8/windows/is_absolute.js +41 -0
  816. package/script/deps/jsr.io/@std/path/1.0.8/windows/join.d.ts +20 -0
  817. package/script/deps/jsr.io/@std/path/1.0.8/windows/join.d.ts.map +1 -0
  818. package/script/deps/jsr.io/@std/path/1.0.8/windows/join.js +77 -0
  819. package/script/deps/jsr.io/@std/path/1.0.8/windows/join_globs.d.ts +21 -0
  820. package/script/deps/jsr.io/@std/path/1.0.8/windows/join_globs.d.ts.map +1 -0
  821. package/script/deps/jsr.io/@std/path/1.0.8/windows/join_globs.js +44 -0
  822. package/script/deps/jsr.io/@std/path/1.0.8/windows/normalize.d.ts +22 -0
  823. package/script/deps/jsr.io/@std/path/1.0.8/windows/normalize.d.ts.map +1 -0
  824. package/script/deps/jsr.io/@std/path/1.0.8/windows/normalize.js +137 -0
  825. package/script/deps/jsr.io/@std/path/1.0.8/windows/normalize_glob.d.ts +20 -0
  826. package/script/deps/jsr.io/@std/path/1.0.8/windows/normalize_glob.d.ts.map +1 -0
  827. package/script/deps/jsr.io/@std/path/1.0.8/windows/normalize_glob.js +35 -0
  828. package/script/deps/jsr.io/@std/path/1.0.8/windows/parse.d.ts +25 -0
  829. package/script/deps/jsr.io/@std/path/1.0.8/windows/parse.d.ts.map +1 -0
  830. package/script/deps/jsr.io/@std/path/1.0.8/windows/parse.js +179 -0
  831. package/script/deps/jsr.io/@std/path/1.0.8/windows/relative.d.ts +23 -0
  832. package/script/deps/jsr.io/@std/path/1.0.8/windows/relative.d.ts.map +1 -0
  833. package/script/deps/jsr.io/@std/path/1.0.8/windows/relative.js +134 -0
  834. package/script/deps/jsr.io/@std/path/1.0.8/windows/resolve.d.ts +17 -0
  835. package/script/deps/jsr.io/@std/path/1.0.8/windows/resolve.d.ts.map +1 -0
  836. package/script/deps/jsr.io/@std/path/1.0.8/windows/resolve.js +180 -0
  837. package/script/deps/jsr.io/@std/path/1.0.8/windows/to_file_url.d.ts +17 -0
  838. package/script/deps/jsr.io/@std/path/1.0.8/windows/to_file_url.d.ts.map +1 -0
  839. package/script/deps/jsr.io/@std/path/1.0.8/windows/to_file_url.js +37 -0
  840. package/script/deps/jsr.io/@std/path/1.0.8/windows/to_namespaced_path.d.ts +17 -0
  841. package/script/deps/jsr.io/@std/path/1.0.8/windows/to_namespaced_path.d.ts.map +1 -0
  842. package/script/deps/jsr.io/@std/path/1.0.8/windows/to_namespaced_path.js +52 -0
  843. package/script/mod.d.ts +1 -0
  844. package/script/mod.d.ts.map +1 -1
  845. package/script/mod.js +1 -0
  846. package/script/src/dsl/http/versori/internalauth.d.ts.map +1 -1
  847. package/script/src/dsl/http/versori/internalauth.js +17 -10
  848. package/script/src/dsl/http/versori/roundtripper.d.ts.map +1 -1
  849. package/script/src/dsl/http/versori/roundtripper.js +10 -1
  850. package/script/src/dsl/triggers/WebhookTrigger.d.ts +13 -0
  851. package/script/src/dsl/triggers/WebhookTrigger.d.ts.map +1 -0
  852. package/script/src/dsl/triggers/WebhookTrigger.js +36 -0
  853. package/script/src/interpreter/memory/MemoryInterpreter.d.ts +9 -1
  854. package/script/src/interpreter/memory/MemoryInterpreter.d.ts.map +1 -1
  855. package/script/src/interpreter/memory/MemoryInterpreter.js +53 -21
  856. package/script/src/interpreter/memory/ObservableCompiler.d.ts +2 -0
  857. package/script/src/interpreter/memory/ObservableCompiler.d.ts.map +1 -1
  858. package/script/src/interpreter/memory/ObservableCompiler.js +2 -0
  859. package/script/src/interpreter/memory/compilers/webhook.d.ts +4 -0
  860. package/script/src/interpreter/memory/compilers/webhook.d.ts.map +1 -0
  861. package/script/src/interpreter/memory/compilers/webhook.js +43 -0
@@ -0,0 +1,503 @@
1
+ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {
2
+ if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
3
+ if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
4
+ return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
5
+ };
6
+ var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
7
+ if (kind === "m") throw new TypeError("Private method is not writable");
8
+ if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
9
+ if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
10
+ return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
11
+ };
12
+ var _MultiPartByteRangesStream_instances, _MultiPartByteRangesStream_boundary, _MultiPartByteRangesStream_contentLength, _MultiPartByteRangesStream_postscript, _MultiPartByteRangesStream_previous, _MultiPartByteRangesStream_ranges, _MultiPartByteRangesStream_seen, _MultiPartByteRangesStream_source, _MultiPartByteRangesStream_type, _MultiPartByteRangesStream_readRange;
13
+ /**
14
+ * A module which provides capabilities to deal with handling HTTP
15
+ * [range requests](https://developer.mozilla.org/en-US/docs/Web/HTTP/Range_requests).
16
+ *
17
+ * The {@linkcode range} function can be used to determine if a range can be
18
+ * satisfied for a requested resource. The {@linkcode responseRange} can be used
19
+ * to fulfill range requests.
20
+ *
21
+ * The module provides specific support for {@linkcode Deno.FsFile} to provide
22
+ * an efficient way of send the response to the range request without having to
23
+ * read the whole file into memory by using the `.seek()` API.
24
+ *
25
+ * There are also some lower level constructs which can be used for advanced
26
+ * use cases.
27
+ *
28
+ * - {@linkcode MultiPartByteRangesStream} is a readable stream which
29
+ * generates a body that converts the source to a multipart byte range
30
+ * document.
31
+ * - {@linkcode RangeByteTransformStream} is a transform stream which will
32
+ * only stream the bytes indicated by the range.
33
+ * - {@linkcode contentRange} sets the headers that are appropriate when
34
+ * sending a range content response.
35
+ * - {@linkcode multiPartByteRanges} sets the headers that are appropriate
36
+ * when sending a multi part byte range content response.
37
+ * - {@linkcode asLimitedReadableStream} leverages the `.seek()` APIs with a
38
+ * {@linkcode Deno.FsFile} to provide a more performant and memory efficient
39
+ * way to stream just a range of bytes form a file.
40
+ *
41
+ * @example A simple static webserver supporting range requests
42
+ *
43
+ * ```ts
44
+ * import { range, responseRange } from "jsr:@oak/commons/range";
45
+ * import { typeByExtension } from "jsr:@std/media-types/type-by-extension";
46
+ * import { extname } from "jsr:@std/path/extname";
47
+ *
48
+ * Deno.serve(async (req) => {
49
+ * const url = new URL(req.url);
50
+ * const file = await Deno.open(`./static${url.pathname}`);
51
+ * const fileInfo = await file.stat();
52
+ * const headers = { "accept-ranges": "bytes", "content-type": type };
53
+ * if (req.method === "HEAD") {
54
+ * return new Response(null, {
55
+ * headers: {
56
+ * ...headers,
57
+ * "content-length": String(fileInfo.size),
58
+ * },
59
+ * });
60
+ * }
61
+ * if (req.method === "GET") {
62
+ * const result = await range(req, fileInfo);
63
+ * if (result.ok) {
64
+ * if (result.ranges) {
65
+ * return responseRange(file, fileInfo.size, result.ranges, {
66
+ * headers,
67
+ * }, { type });
68
+ * } else {
69
+ * return new Response(file.readable, {
70
+ * headers: {
71
+ * ...headers,
72
+ * "content-length": String(fileInfo.size),
73
+ * },
74
+ * });
75
+ * }
76
+ * } else {
77
+ * return new Response(null, {
78
+ * status: 416,
79
+ * statusText: "Range Not Satisfiable",
80
+ * headers,
81
+ * });
82
+ * }
83
+ * }
84
+ * return new Response(null, { status: 405, statusText: "Method Not Allowed" });
85
+ * });
86
+ * ```
87
+ *
88
+ * @module
89
+ */
90
+ import * as dntShim from "../../../../../_dnt.shims.js";
91
+ import { assert } from "../../../@std/assert/1.0.11/assert.js";
92
+ import { concat } from "../../../@std/bytes/1.0.5/concat.js";
93
+ import { eTag } from "../../../@std/http/1.0.13/etag.js";
94
+ const DEFAULT_CHUNK_SIZE = 524_288;
95
+ const ETAG_RE = /(?:W\/)?"[ !#-\x7E\x80-\xFF]+"/;
96
+ const encoder = new TextEncoder();
97
+ function isDenoFsFile(value) {
98
+ if (!value || value === null || !("Deno" in dntShim.dntGlobalThis) || !dntShim.Deno.FsFile) {
99
+ return false;
100
+ }
101
+ return value instanceof dntShim.Deno.FsFile;
102
+ }
103
+ function isFileInfo(value) {
104
+ return !!(typeof value === "object" && value && "mtime" in value);
105
+ }
106
+ function isModified(value, mtime) {
107
+ const a = new Date(value).getTime();
108
+ let b = mtime.getTime();
109
+ // adjust to the precision of HTTP UTC time
110
+ b -= b % 1000;
111
+ return a < b;
112
+ }
113
+ async function readRange(file, { start, end }) {
114
+ const parts = [];
115
+ let read = 0;
116
+ const length = end - start + 1;
117
+ const pos = await file.seek(start, dntShim.Deno.SeekMode.Start);
118
+ if (pos !== start) {
119
+ throw new RangeError("Could not seek to range start.");
120
+ }
121
+ while (read < length) {
122
+ const chunk = new Uint8Array(length - read);
123
+ const count = await file.read(chunk);
124
+ if (count === null) {
125
+ throw new RangeError("Could not read to range end.");
126
+ }
127
+ parts.push(chunk);
128
+ read += count;
129
+ }
130
+ return parts.length > 1 ? concat(parts) : parts[0];
131
+ }
132
+ /**
133
+ * A readable stream that will stream a body formatted as a
134
+ * `multipart/byteranges` document. The `source` needs to be a
135
+ * {@linkcode Deno.FsFile}, {@linkcode ReadableStream}, {@linkcode Blob},
136
+ * {@linkcode BufferSource}, or a `string`.
137
+ */
138
+ export class MultiPartByteRangesStream extends ReadableStream {
139
+ /**
140
+ * The boundary being used when segmenting different parts of the body
141
+ * response. This should be reflected in the `Content-Type` header when
142
+ * being sent to a client.
143
+ */
144
+ get boundary() {
145
+ return __classPrivateFieldGet(this, _MultiPartByteRangesStream_boundary, "f");
146
+ }
147
+ /**
148
+ * The length of the content being supplied by the stream. This should be
149
+ * reflected in the `Content-Length` header when being sent to a client.
150
+ */
151
+ get contentLength() {
152
+ return __classPrivateFieldGet(this, _MultiPartByteRangesStream_contentLength, "f");
153
+ }
154
+ constructor(source, ranges, size, options = {}) {
155
+ const { autoClose = true, boundary = "OAK-COMMONS-BOUNDARY", type, } = options;
156
+ super({
157
+ pull: async (controller) => {
158
+ const range = __classPrivateFieldGet(this, _MultiPartByteRangesStream_ranges, "f").shift();
159
+ if (!range) {
160
+ controller.enqueue(__classPrivateFieldGet(this, _MultiPartByteRangesStream_postscript, "f"));
161
+ controller.close();
162
+ if (autoClose && isDenoFsFile(__classPrivateFieldGet(this, _MultiPartByteRangesStream_source, "f"))) {
163
+ __classPrivateFieldGet(this, _MultiPartByteRangesStream_source, "f").close();
164
+ }
165
+ if (__classPrivateFieldGet(this, _MultiPartByteRangesStream_source, "f") instanceof ReadableStreamDefaultReader) {
166
+ __classPrivateFieldGet(this, _MultiPartByteRangesStream_source, "f").releaseLock();
167
+ }
168
+ return;
169
+ }
170
+ const bytes = await __classPrivateFieldGet(this, _MultiPartByteRangesStream_instances, "m", _MultiPartByteRangesStream_readRange).call(this, range);
171
+ const preamble = encoder.encode(`\r\n--${boundary}\r\nContent-Type: ${__classPrivateFieldGet(this, _MultiPartByteRangesStream_type, "f")}\r\nContent-Range: ${range.start}-${range.end}/${size}\r\n\r\n`);
172
+ controller.enqueue(concat([preamble, bytes]));
173
+ },
174
+ });
175
+ _MultiPartByteRangesStream_instances.add(this);
176
+ _MultiPartByteRangesStream_boundary.set(this, void 0);
177
+ _MultiPartByteRangesStream_contentLength.set(this, void 0);
178
+ _MultiPartByteRangesStream_postscript.set(this, void 0);
179
+ _MultiPartByteRangesStream_previous.set(this, void 0);
180
+ _MultiPartByteRangesStream_ranges.set(this, void 0);
181
+ _MultiPartByteRangesStream_seen.set(this, 0);
182
+ _MultiPartByteRangesStream_source.set(this, void 0);
183
+ _MultiPartByteRangesStream_type.set(this, void 0);
184
+ __classPrivateFieldSet(this, _MultiPartByteRangesStream_boundary, boundary, "f");
185
+ __classPrivateFieldSet(this, _MultiPartByteRangesStream_ranges, [...ranges], "f");
186
+ __classPrivateFieldGet(this, _MultiPartByteRangesStream_ranges, "f").sort(({ start: a }, { start: b }) => a - b);
187
+ if (ArrayBuffer.isView(source)) {
188
+ __classPrivateFieldSet(this, _MultiPartByteRangesStream_source, source.buffer, "f");
189
+ }
190
+ else if (typeof source === "string") {
191
+ __classPrivateFieldSet(this, _MultiPartByteRangesStream_source, encoder.encode(source).buffer, "f");
192
+ }
193
+ else if (source instanceof ReadableStream) {
194
+ __classPrivateFieldSet(this, _MultiPartByteRangesStream_source, source.getReader(), "f");
195
+ }
196
+ else {
197
+ __classPrivateFieldSet(this, _MultiPartByteRangesStream_source, source, "f");
198
+ }
199
+ __classPrivateFieldSet(this, _MultiPartByteRangesStream_type, type || (source instanceof Blob && source.type) ||
200
+ "application/octet-stream", "f");
201
+ __classPrivateFieldSet(this, _MultiPartByteRangesStream_postscript, encoder.encode(`\r\n--${boundary}--\r\n`), "f");
202
+ __classPrivateFieldSet(this, _MultiPartByteRangesStream_contentLength, ranges.reduce((prev, { start, end }) => prev +
203
+ encoder.encode(`\r\n--${boundary}\r\nContent-Type: ${__classPrivateFieldGet(this, _MultiPartByteRangesStream_type, "f")}\r\nContent-Range: ${start}-${end}/${size}\r\n\r\n`).byteLength + (end - start) + 1, __classPrivateFieldGet(this, _MultiPartByteRangesStream_postscript, "f").byteLength), "f");
204
+ }
205
+ }
206
+ _MultiPartByteRangesStream_boundary = new WeakMap(), _MultiPartByteRangesStream_contentLength = new WeakMap(), _MultiPartByteRangesStream_postscript = new WeakMap(), _MultiPartByteRangesStream_previous = new WeakMap(), _MultiPartByteRangesStream_ranges = new WeakMap(), _MultiPartByteRangesStream_seen = new WeakMap(), _MultiPartByteRangesStream_source = new WeakMap(), _MultiPartByteRangesStream_type = new WeakMap(), _MultiPartByteRangesStream_instances = new WeakSet(), _MultiPartByteRangesStream_readRange = async function _MultiPartByteRangesStream_readRange({ start, end }) {
207
+ if (isDenoFsFile(__classPrivateFieldGet(this, _MultiPartByteRangesStream_source, "f"))) {
208
+ return readRange(__classPrivateFieldGet(this, _MultiPartByteRangesStream_source, "f"), { start, end });
209
+ }
210
+ if (__classPrivateFieldGet(this, _MultiPartByteRangesStream_source, "f") instanceof Blob) {
211
+ return new Uint8Array(await __classPrivateFieldGet(this, _MultiPartByteRangesStream_source, "f").slice(start, end + 1).arrayBuffer());
212
+ }
213
+ if (__classPrivateFieldGet(this, _MultiPartByteRangesStream_source, "f") instanceof ArrayBuffer) {
214
+ return new Uint8Array(__classPrivateFieldGet(this, _MultiPartByteRangesStream_source, "f").slice(start, end + 1));
215
+ }
216
+ const length = end - start;
217
+ let read = 0;
218
+ let result;
219
+ const processChunk = (chunk) => {
220
+ if (__classPrivateFieldGet(this, _MultiPartByteRangesStream_seen, "f") + chunk.byteLength >= start) {
221
+ if (__classPrivateFieldGet(this, _MultiPartByteRangesStream_seen, "f") < start) {
222
+ chunk = chunk.slice(start - __classPrivateFieldGet(this, _MultiPartByteRangesStream_seen, "f"));
223
+ __classPrivateFieldSet(this, _MultiPartByteRangesStream_seen, start, "f");
224
+ }
225
+ if (read + chunk.byteLength > length + 1) {
226
+ __classPrivateFieldSet(this, _MultiPartByteRangesStream_previous, chunk.slice(length - read + 1), "f");
227
+ chunk = chunk.slice(0, length - read + 1);
228
+ }
229
+ read += chunk.byteLength;
230
+ __classPrivateFieldSet(this, _MultiPartByteRangesStream_seen, __classPrivateFieldGet(this, _MultiPartByteRangesStream_seen, "f") + chunk.byteLength, "f");
231
+ return chunk;
232
+ }
233
+ __classPrivateFieldSet(this, _MultiPartByteRangesStream_seen, __classPrivateFieldGet(this, _MultiPartByteRangesStream_seen, "f") + chunk.byteLength, "f");
234
+ };
235
+ if (__classPrivateFieldGet(this, _MultiPartByteRangesStream_previous, "f")) {
236
+ const chunk = __classPrivateFieldGet(this, _MultiPartByteRangesStream_previous, "f");
237
+ __classPrivateFieldSet(this, _MultiPartByteRangesStream_previous, undefined, "f");
238
+ const res = processChunk(chunk);
239
+ if (res) {
240
+ result = res;
241
+ }
242
+ }
243
+ while (read < length) {
244
+ const { done, value: chunk } = await __classPrivateFieldGet(this, _MultiPartByteRangesStream_source, "f").read();
245
+ if (chunk) {
246
+ const res = processChunk(chunk);
247
+ if (res) {
248
+ result = result ? concat([result, res]) : res;
249
+ }
250
+ }
251
+ if (done) {
252
+ throw new RangeError("Unable to read range.");
253
+ }
254
+ }
255
+ assert(result);
256
+ return result;
257
+ };
258
+ /**
259
+ * A {@linkcode TransformStream} which will only provide the range of bytes from
260
+ * the source stream.
261
+ */
262
+ export class RangeByteTransformStream extends TransformStream {
263
+ constructor(range) {
264
+ const { start, end } = range;
265
+ const length = end - start;
266
+ let seen = 0;
267
+ let read = 0;
268
+ super({
269
+ transform(chunk, controller) {
270
+ if (seen + chunk.byteLength >= start) {
271
+ if (seen < start) {
272
+ // start is part way through chunk
273
+ chunk = chunk.slice(start - seen);
274
+ seen = start;
275
+ }
276
+ if (read + chunk.byteLength > length + 1) {
277
+ // chunk extends past end
278
+ chunk = chunk.slice(0, length - read + 1);
279
+ }
280
+ read += chunk.byteLength;
281
+ seen += chunk.byteLength;
282
+ controller.enqueue(chunk);
283
+ if (read >= length) {
284
+ controller.terminate();
285
+ }
286
+ }
287
+ else {
288
+ // skip chunk
289
+ seen += chunk.byteLength;
290
+ }
291
+ },
292
+ });
293
+ }
294
+ }
295
+ /**
296
+ * Set {@linkcode Headers} related to returning a content range to the client.
297
+ *
298
+ * This will set the `Accept-Ranges`, `Content-Range` and `Content-Length` as
299
+ * appropriate. If the headers does not contain a `Content-Type` header, and one
300
+ * is supplied, it will be added.
301
+ */
302
+ export function contentRange(headers, range, size, type) {
303
+ const { start, end } = range;
304
+ headers.set("accept-ranges", "bytes");
305
+ headers.set("content-range", `bytes ${start}-${end}/${size}`);
306
+ headers.set("content-length", String(end - start + 1));
307
+ if (type && !headers.has("content-type")) {
308
+ headers.set("content-type", type);
309
+ }
310
+ }
311
+ /**
312
+ * Set {@linkcode Headers} related to returning a multipart byte range response.
313
+ *
314
+ * This will set the `Content-Type` and `Content-Length` headers as appropriate.
315
+ */
316
+ export function multiPartByteRanges(headers, init) {
317
+ const { contentLength, boundary } = init;
318
+ headers.set("content-type", `multipart/byteranges; boundary=${boundary}`);
319
+ headers.set("content-length", String(contentLength));
320
+ }
321
+ /**
322
+ * Converts a {@linkcode DenoFile} and a {@linkcode ByteRange} into a byte
323
+ * {@linkcode ReadableStream} which will provide just the range of bytes.
324
+ *
325
+ * When the stream is finished being ready, the file will be closed. Changing
326
+ * the option to `autoClose` to `false` will disable this behavior.
327
+ */
328
+ export function asLimitedReadableStream(fsFile, range, options = {}) {
329
+ const { start, end } = range;
330
+ const { autoClose = true, chunkSize = DEFAULT_CHUNK_SIZE } = options;
331
+ let read = 0;
332
+ const length = end - start + 1;
333
+ return new ReadableStream({
334
+ start(controller) {
335
+ const pos = fsFile.seekSync(start, dntShim.Deno.SeekMode.Start);
336
+ if (pos !== start) {
337
+ controller.error(new RangeError("Could not seek to range start."));
338
+ }
339
+ },
340
+ async pull(controller) {
341
+ const chunk = new Uint8Array(Math.min(length - read, chunkSize));
342
+ const count = await fsFile.read(chunk);
343
+ if (count == null) {
344
+ controller.error(new RangeError("Could not read to range end."));
345
+ return;
346
+ }
347
+ controller.enqueue(chunk);
348
+ read += count;
349
+ if (read >= length) {
350
+ controller.close();
351
+ if (autoClose) {
352
+ fsFile.close();
353
+ }
354
+ }
355
+ },
356
+ autoAllocateChunkSize: chunkSize,
357
+ type: "bytes",
358
+ });
359
+ }
360
+ export async function range(request, entity, fileInfo) {
361
+ const ifRange = request.headers.get("if-range");
362
+ if (ifRange) {
363
+ const matches = ETAG_RE.exec(ifRange);
364
+ if (matches) {
365
+ const [match] = matches;
366
+ // this indicates that it would be a weak tag, and we cannot compare on
367
+ // weak tags, the full entity should be returned
368
+ if (!fileInfo || match.startsWith("W")) {
369
+ return { ok: true, ranges: null };
370
+ }
371
+ // @ts-ignore the types for eTag are not correct
372
+ if (match !== await eTag(entity)) {
373
+ return { ok: true, ranges: null };
374
+ }
375
+ }
376
+ else {
377
+ assert(fileInfo || isFileInfo(entity));
378
+ const { mtime } = fileInfo ?? entity;
379
+ if (!mtime || isModified(ifRange, mtime)) {
380
+ return { ok: true, ranges: null };
381
+ }
382
+ }
383
+ }
384
+ const value = request.headers.get("range");
385
+ if (!value) {
386
+ return { ok: true, ranges: null };
387
+ }
388
+ const [unit, rangesStr] = value.split("=");
389
+ if (unit !== "bytes") {
390
+ return { ok: false, ranges: null };
391
+ }
392
+ const ranges = [];
393
+ for (const range of rangesStr.split(/\s*,\s+/)) {
394
+ const item = range.split("-");
395
+ if (item.length !== 2) {
396
+ return { ok: false, ranges: null };
397
+ }
398
+ const { size } = fileInfo ?? entity;
399
+ const [startStr, endStr] = item;
400
+ let start;
401
+ let end;
402
+ try {
403
+ if (startStr === "") {
404
+ start = size - parseInt(endStr, 10) - 1;
405
+ end = size - 1;
406
+ }
407
+ else if (endStr === "") {
408
+ start = parseInt(startStr, 10);
409
+ end = size - 1;
410
+ }
411
+ else {
412
+ start = parseInt(startStr, 10);
413
+ end = parseInt(endStr, 10);
414
+ }
415
+ }
416
+ catch {
417
+ return { ok: false, ranges: null };
418
+ }
419
+ if (start < 0 || start >= size || end < 0 || end >= size || start > end) {
420
+ return { ok: false, ranges: null };
421
+ }
422
+ ranges.push({ start, end });
423
+ }
424
+ return { ok: true, ranges };
425
+ }
426
+ /**
427
+ * Resolves with a {@linkcode Response} with a body which is just the range of
428
+ * bytes supplied, along with the appropriate headers which indicate that it is
429
+ * the fulfillment of a range request.
430
+ *
431
+ * The `body` is a {@linkcode Response} {@linkcode BodyInit} with the addition
432
+ * of supporting {@linkcode Deno.FsFile} and does not accept
433
+ * {@linkcode FormData} or {@linkcode URLSearchParams}. When using
434
+ * {@linkcode Deno.FsFile} the seek capabilities in order to read ranges more
435
+ * efficiently.
436
+ *
437
+ * The `size` is the total number of bytes in the resource being responded to.
438
+ * This needs to be provided, because the full size of the resource being
439
+ * requested it may not be easy to determine at the time being requested.
440
+ *
441
+ * @example
442
+ *
443
+ * ```ts
444
+ * import { responseRange } from "jsr:@oak/commons/range";
445
+ *
446
+ * const file = await Deno.open("./movie.mp4");
447
+ * const { size } = await file.stat();
448
+ * const res = responseRange(
449
+ * file,
450
+ * size,
451
+ * { start: 0, end: 1_048_575 },
452
+ * { headers: { "content-type": "video/mp4" } },
453
+ * );
454
+ * const ab = await res.arrayBuffer();
455
+ * // ab will be the first 1MB of the video file
456
+ * ```
457
+ */
458
+ export function responseRange(body, size, ranges, init = {}, options = {}) {
459
+ if (!ranges.length) {
460
+ throw new RangeError("At least one range expected.");
461
+ }
462
+ if (ranges.length === 1) {
463
+ const [range] = ranges;
464
+ let type = options.type ?? "application/octet-stream";
465
+ if (isDenoFsFile(body)) {
466
+ body = asLimitedReadableStream(body, range, options);
467
+ }
468
+ else if (body instanceof ReadableStream) {
469
+ body = body.pipeThrough(new RangeByteTransformStream(range));
470
+ }
471
+ else if (body instanceof Blob) {
472
+ type = body.type;
473
+ body = body.slice(range.start, range.end + 1);
474
+ }
475
+ else if (ArrayBuffer.isView(body)) {
476
+ body = body.buffer.slice(range.start, range.end + 1);
477
+ }
478
+ else if (body instanceof ArrayBuffer) {
479
+ body = body.slice(range.start, range.end + 1);
480
+ }
481
+ else if (typeof body === "string") {
482
+ body = encoder.encode(body).slice(range.start, range.end + 1);
483
+ }
484
+ else {
485
+ throw TypeError("Invalid body type.");
486
+ }
487
+ const res = new Response(body, {
488
+ ...init,
489
+ status: 206,
490
+ statusText: "Partial Content",
491
+ });
492
+ contentRange(res.headers, range, size, type);
493
+ return res;
494
+ }
495
+ const stream = new MultiPartByteRangesStream(body, ranges, size, options);
496
+ const res = new Response(stream, {
497
+ ...init,
498
+ status: 206,
499
+ statusText: "Partial Content",
500
+ });
501
+ multiPartByteRanges(res.headers, stream);
502
+ return res;
503
+ }
@@ -0,0 +1,178 @@
1
+ /** Options which can be set when initializing a {@linkcode ServerSentEvent}. */
2
+ export interface ServerSentEventInit extends EventInit {
3
+ /**
4
+ * Optional arbitrary data to send to the client, data this is a string will
5
+ * be sent unmodified, otherwise `JSON.stringify()` will be used to serialize
6
+ * the value.
7
+ */
8
+ data?: unknown;
9
+ /** An optional `id` which will be sent with the event and exposed in the
10
+ * client `EventSource`. */
11
+ id?: number;
12
+ /** The replacer is passed to `JSON.stringify` when converting the `data`
13
+ * property to a JSON string. */
14
+ replacer?: (string | number)[] | ((this: any, key: string, value: any) => any);
15
+ /** Space is passed to `JSON.stringify` when converting the `data` property
16
+ * to a JSON string. */
17
+ space?: string | number;
18
+ }
19
+ /**
20
+ * Options which can be sent when initializing a
21
+ * {@linkcode ServerSentEventTarget}.
22
+ */
23
+ export interface ServerSentEventTargetOptions {
24
+ /** Keep client connections alive by sending a comment event to the client
25
+ * at a specified interval. If `true`, then it polls every 30000 milliseconds
26
+ * (30 seconds). If set to a number, then it polls that number of
27
+ * milliseconds. The feature is disabled if set to `false`. It defaults to
28
+ * `false`. */
29
+ keepAlive?: boolean | number;
30
+ }
31
+ declare class CloseEvent extends Event {
32
+ constructor(eventInit: EventInit);
33
+ }
34
+ /**
35
+ * An event which contains information which will be sent to the remote
36
+ * connection and be made available in an `EventSource` as an event. A server
37
+ * creates new events and dispatches them on the target which will then be
38
+ * sent to a client.
39
+ *
40
+ * See more about Server-sent events on [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events)
41
+ *
42
+ * ### Example
43
+ *
44
+ * ```ts
45
+ * import {
46
+ * ServerSentEvent,
47
+ * ServerSentEventStreamTarget,
48
+ * } from "jsr:@oak/commons/server_sent_event";
49
+ *
50
+ * Deno.serve({ port: 8000 }, (request) => {
51
+ * const target = new ServerSentEventStreamTarget();
52
+ * const evt = new ServerSentEvent("message", {
53
+ * data: { hello: "world" },
54
+ * id: 1
55
+ * });
56
+ * target.dispatchEvent(evt);
57
+ * return target.asResponse();
58
+ * });
59
+ * ```
60
+ */
61
+ export declare class ServerSentEvent extends Event {
62
+ #private;
63
+ /**
64
+ * @param type the event type that will be available on the client. The type
65
+ * of `"message"` will be handled specifically as a message
66
+ * server-side event.
67
+ * @param eventInit initialization options for the event
68
+ */
69
+ constructor(type: string, eventInit?: ServerSentEventInit);
70
+ /** The data associated with the event, which will be sent to the client and
71
+ * be made available in the `EventSource`. */
72
+ get data(): string;
73
+ /** The optional ID associated with the event that will be sent to the client
74
+ * and be made available in the `EventSource`. */
75
+ get id(): number | undefined;
76
+ toString(): string;
77
+ }
78
+ /**
79
+ * The abstract interface for server sent events, which is implemented in
80
+ * {@linkcode ServerSentEventStreamTarget}.
81
+ */
82
+ export interface ServerSentEventTarget extends EventTarget {
83
+ /** Is set to `true` if events cannot be sent to the remote connection.
84
+ * Otherwise it is set to `false`.
85
+ *
86
+ * *Note*: This flag is lazily set, and might not reflect a closed state until
87
+ * another event, comment or message is attempted to be processed. */
88
+ readonly closed: boolean;
89
+ /** Close the target, refusing to accept any more events. */
90
+ close(): Promise<void>;
91
+ /** Send a comment to the remote connection. Comments are not exposed to the
92
+ * client `EventSource` but are used for diagnostics and helping ensure a
93
+ * connection is kept alive.
94
+ *
95
+ * ```ts
96
+ * import { ServerSentEventStreamTarget } from "jsr:@oak/commons/server_sent_event";
97
+ *
98
+ * Deno.serve({ port: 8000 }, (request) => {
99
+ * const target = new ServerSentEventStreamTarget();
100
+ * target.dispatchComment("this is a comment");
101
+ * return target.asResponse();
102
+ * });
103
+ * ```
104
+ */
105
+ dispatchComment(comment: string): boolean;
106
+ /** Dispatch a message to the client. This message will contain `data: ` only
107
+ * and be available on the client `EventSource` on the `onmessage` or an event
108
+ * listener of type `"message"`. */
109
+ dispatchMessage(data: unknown): boolean;
110
+ /** Dispatch a server sent event to the client. The event `type` will be
111
+ * sent as `event: ` to the client which will be raised as a `MessageEvent`
112
+ * on the `EventSource` in the client.
113
+ *
114
+ * Any local event handlers will be dispatched to first, and if the event
115
+ * is cancelled, it will not be sent to the client.
116
+ *
117
+ * ```ts
118
+ * import {
119
+ * ServerSentEvent,
120
+ * ServerSentEventStreamTarget,
121
+ * } from "jsr:@oak/commons/server_sent_event";
122
+ *
123
+ * Deno.serve({ port: 8000 }, (request) => {
124
+ * const target = new ServerSentEventStreamTarget();
125
+ * const evt = new ServerSentEvent("ping", { data: "hello" });
126
+ * target.dispatchEvent(evt);
127
+ * return target.asResponse();
128
+ * });
129
+ * ```
130
+ */
131
+ dispatchEvent(event: ServerSentEvent): boolean;
132
+ /** Dispatch a server sent event to the client. The event `type` will be
133
+ * sent as `event: ` to the client which will be raised as a `MessageEvent`
134
+ * on the `EventSource` in the client.
135
+ *
136
+ * Any local event handlers will be dispatched to first, and if the event
137
+ * is cancelled, it will not be sent to the client.
138
+ *
139
+ * ```ts
140
+ * import {
141
+ * ServerSentEvent,
142
+ * ServerSentEventStreamTarget,
143
+ * } from "jsr:@oak/commons/server_sent_event";
144
+ *
145
+ * Deno.serve({ port: 8000 }, (request) => {
146
+ * const target = new ServerSentEventStreamTarget();
147
+ * const evt = new ServerSentEvent("ping", { data: "hello" });
148
+ * target.dispatchEvent(evt);
149
+ * return target.asResponse();
150
+ * });
151
+ * ```
152
+ */
153
+ dispatchEvent(event: CloseEvent | ErrorEvent): boolean;
154
+ }
155
+ /**
156
+ * An implementation of {@linkcode ServerSentEventTarget} that provides a
157
+ * readable stream as a body of a response to establish a connection to a
158
+ * client.
159
+ */
160
+ export declare class ServerSentEventStreamTarget extends EventTarget implements ServerSentEventTarget {
161
+ #private;
162
+ get closed(): boolean;
163
+ constructor({ keepAlive }?: ServerSentEventTargetOptions);
164
+ /** Returns a {@linkcode Response} which contains the body and headers needed
165
+ * to initiate a SSE connection with the client. */
166
+ asResponse(responseInit?: ResponseInit): Response;
167
+ /** Returns a tuple which contains the {@linkcode BodyInit} and
168
+ * {@linkcode ResponseInit} needed to create a response that will establish
169
+ * a SSE connection with the client. */
170
+ asResponseInit(responseInit?: ResponseInit): [BodyInit, ResponseInit];
171
+ close(): Promise<void>;
172
+ dispatchComment(comment: string): boolean;
173
+ dispatchMessage(data: any): boolean;
174
+ dispatchEvent(event: ServerSentEvent): boolean;
175
+ dispatchEvent(event: CloseEvent | ErrorEvent): boolean;
176
+ }
177
+ export {};
178
+ //# sourceMappingURL=server_sent_event.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"server_sent_event.d.ts","sourceRoot":"","sources":["../../../../../../src/deps/jsr.io/@oak/commons/1.0.0/server_sent_event.ts"],"names":[],"mappings":"AAkDA,gFAAgF;AAChF,MAAM,WAAW,mBAAoB,SAAQ,SAAS;IACpD;;;;OAIG;IACH,IAAI,CAAC,EAAE,OAAO,CAAC;IAEf;+BAC2B;IAC3B,EAAE,CAAC,EAAE,MAAM,CAAC;IAEZ;oCACgC;IAChC,QAAQ,CAAC,EACL,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,GAEnB,CAAC,CAAC,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,KAAK,GAAG,CAAC,CAAC;IAElD;2BACuB;IACvB,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CACzB;AAED;;;GAGG;AACH,MAAM,WAAW,4BAA4B;IAC3C;;;;kBAIc;IACd,SAAS,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;CAC9B;AAED,cAAM,UAAW,SAAQ,KAAK;gBAChB,SAAS,EAAE,SAAS;CAGjC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,qBAAa,eAAgB,SAAQ,KAAK;;IAKxC;;;;;OAKG;gBACS,IAAI,EAAE,MAAM,EAAE,SAAS,GAAE,mBAAwB;IAoB7D;iDAC6C;IAC7C,IAAI,IAAI,IAAI,MAAM,CAEjB;IAED;qDACiD;IACjD,IAAI,EAAE,IAAI,MAAM,GAAG,SAAS,CAE3B;IAEQ,QAAQ,IAAI,MAAM;CAM5B;AASD;;;GAGG;AACH,MAAM,WAAW,qBAAsB,SAAQ,WAAW;IACxD;;;;yEAIqE;IACrE,QAAQ,CAAC,MAAM,EAAE,OAAO,CAAC;IAEzB,4DAA4D;IAC5D,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IAEvB;;;;;;;;;;;;;OAaG;IACH,eAAe,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC;IAE1C;;uCAEmC;IACnC,eAAe,CAAC,IAAI,EAAE,OAAO,GAAG,OAAO,CAAC;IAExC;;;;;;;;;;;;;;;;;;;;OAoBG;IACH,aAAa,CAAC,KAAK,EAAE,eAAe,GAAG,OAAO,CAAC;IAE/C;;;;;;;;;;;;;;;;;;;;OAoBG;IACH,aAAa,CAAC,KAAK,EAAE,UAAU,GAAG,UAAU,GAAG,OAAO,CAAC;CACxD;AAED;;;;GAIG;AACH,qBAAa,2BAA4B,SAAQ,WAC/C,YAAW,qBAAqB;;IA2BhC,IAAI,MAAM,IAAI,OAAO,CAEpB;gBAEW,EAAE,SAAiB,EAAE,GAAE,4BAAiC;IA8CpE;uDACmD;IACnD,UAAU,CAAC,YAAY,CAAC,EAAE,YAAY,GAAG,QAAQ;IAIjD;;2CAEuC;IACvC,cAAc,CAAC,YAAY,GAAE,YAAiB,GAAG,CAAC,QAAQ,EAAE,YAAY,CAAC;IASzE,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;IAKtB,eAAe,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO;IAMzC,eAAe,CAAC,IAAI,EAAE,GAAG,GAAG,OAAO;IAK1B,aAAa,CAAC,KAAK,EAAE,eAAe,GAAG,OAAO;IAC9C,aAAa,CAAC,KAAK,EAAE,UAAU,GAAG,UAAU,GAAG,OAAO;CAwChE"}