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

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 +54 -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 +54 -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,75 @@
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 _ErrorEvent_message, _ErrorEvent_filename, _ErrorEvent_lineno, _ErrorEvent_colno, _ErrorEvent_error;
13
+ // Copyright 2018-2025 the oak authors. All rights reserved. MIT license.
14
+ import * as dntShim from "../../../../_dnt.shims.js";
15
+ class ErrorEvent extends Event {
16
+ get message() {
17
+ return __classPrivateFieldGet(this, _ErrorEvent_message, "f");
18
+ }
19
+ get filename() {
20
+ return __classPrivateFieldGet(this, _ErrorEvent_filename, "f");
21
+ }
22
+ get lineno() {
23
+ return __classPrivateFieldGet(this, _ErrorEvent_lineno, "f");
24
+ }
25
+ get colno() {
26
+ return __classPrivateFieldGet(this, _ErrorEvent_colno, "f");
27
+ }
28
+ // deno-lint-ignore no-explicit-any
29
+ get error() {
30
+ return __classPrivateFieldGet(this, _ErrorEvent_error, "f");
31
+ }
32
+ constructor(type, eventInitDict = {}) {
33
+ super(type, eventInitDict);
34
+ _ErrorEvent_message.set(this, void 0);
35
+ _ErrorEvent_filename.set(this, void 0);
36
+ _ErrorEvent_lineno.set(this, void 0);
37
+ _ErrorEvent_colno.set(this, void 0);
38
+ // deno-lint-ignore no-explicit-any
39
+ _ErrorEvent_error.set(this, void 0);
40
+ const { message = "error", filename = "", lineno = 0, colno = 0, error } = eventInitDict;
41
+ __classPrivateFieldSet(this, _ErrorEvent_message, message, "f");
42
+ __classPrivateFieldSet(this, _ErrorEvent_filename, filename, "f");
43
+ __classPrivateFieldSet(this, _ErrorEvent_lineno, lineno, "f");
44
+ __classPrivateFieldSet(this, _ErrorEvent_colno, colno, "f");
45
+ __classPrivateFieldSet(this, _ErrorEvent_error, error, "f");
46
+ }
47
+ }
48
+ _ErrorEvent_message = new WeakMap(), _ErrorEvent_filename = new WeakMap(), _ErrorEvent_lineno = new WeakMap(), _ErrorEvent_colno = new WeakMap(), _ErrorEvent_error = new WeakMap();
49
+ if (!("ErrorEvent" in dntShim.dntGlobalThis)) {
50
+ Object.defineProperty(dntShim.dntGlobalThis, "ErrorEvent", {
51
+ value: ErrorEvent,
52
+ writable: true,
53
+ enumerable: false,
54
+ configurable: true,
55
+ });
56
+ }
57
+ if (!("ReadableStream" in dntShim.dntGlobalThis) || !("TransformStream" in dntShim.dntGlobalThis)) {
58
+ (async () => {
59
+ const { ReadableStream, TransformStream } = await import("node:stream/web");
60
+ Object.defineProperties(dntShim.dntGlobalThis, {
61
+ "ReadableStream": {
62
+ value: ReadableStream,
63
+ writable: true,
64
+ enumerable: false,
65
+ configurable: true,
66
+ },
67
+ "TransformStream": {
68
+ value: TransformStream,
69
+ writable: true,
70
+ enumerable: false,
71
+ configurable: true,
72
+ },
73
+ });
74
+ })();
75
+ }
@@ -0,0 +1,133 @@
1
+ /**
2
+ * Contains the {@linkcode Request} abstraction used by oak.
3
+ *
4
+ * Most end users would not need to directly access this module.
5
+ *
6
+ * @module
7
+ */
8
+ import { Body } from "./body.js";
9
+ import { type HTTPMethods, type ServerSentEventTarget, type ServerSentEventTargetOptions, UserAgent } from "./deps.js";
10
+ import type { ServerRequest, UpgradeWebSocketOptions } from "./types.js";
11
+ interface OakRequestOptions {
12
+ jsonBodyReviver?: (key: string, value: unknown) => unknown;
13
+ proxy?: boolean;
14
+ secure?: boolean;
15
+ }
16
+ /** An interface which provides information about the current request. The
17
+ * instance related to the current request is available on the
18
+ * {@linkcode Context}'s `.request` property.
19
+ *
20
+ * The interface contains several properties to get information about the
21
+ * request as well as several methods, which include content negotiation and
22
+ * the ability to decode a request body.
23
+ */
24
+ export declare class Request {
25
+ #private;
26
+ /** An interface to access the body of the request. This provides an API that
27
+ * aligned to the **Fetch Request** API, but in a dedicated API.
28
+ */
29
+ get body(): Body;
30
+ /** Is `true` if the request might have a body, otherwise `false`.
31
+ *
32
+ * **WARNING** this is an unreliable API. In HTTP/2 in many situations you
33
+ * cannot determine if a request has a body or not unless you attempt to read
34
+ * the body, due to the streaming nature of HTTP/2. As of Deno 1.16.1, for
35
+ * HTTP/1.1, Deno also reflects that behaviour. The only reliable way to
36
+ * determine if a request has a body or not is to attempt to read the body.
37
+ */
38
+ get hasBody(): boolean;
39
+ /** The `Headers` supplied in the request. */
40
+ get headers(): Headers;
41
+ /** Request remote address. When the application's `.proxy` is true, the
42
+ * `X-Forwarded-For` will be used to determine the requesting remote address.
43
+ */
44
+ get ip(): string;
45
+ /** When the application's `.proxy` is `true`, this will be set to an array of
46
+ * IPs, ordered from upstream to downstream, based on the value of the header
47
+ * `X-Forwarded-For`. When `false` an empty array is returned. */
48
+ get ips(): string[];
49
+ /** The HTTP Method used by the request. */
50
+ get method(): HTTPMethods;
51
+ /** Shortcut to `request.url.protocol === "https:"`. */
52
+ get secure(): boolean;
53
+ /** Set to the value of the low level oak server request abstraction.
54
+ *
55
+ * @deprecated this will be removed in future versions of oak. Accessing this
56
+ * abstraction is not useful to end users and is now a bit of a misnomer.
57
+ */
58
+ get originalRequest(): ServerRequest;
59
+ /** Returns the original Fetch API `Request` if available.
60
+ *
61
+ * This should be set with requests on Deno, but will not be set when running
62
+ * on Node.js.
63
+ */
64
+ get source(): globalThis.Request | undefined;
65
+ /** A parsed URL for the request which complies with the browser standards.
66
+ * When the application's `.proxy` is `true`, this value will be based off of
67
+ * the `X-Forwarded-Proto` and `X-Forwarded-Host` header values if present in
68
+ * the request. */
69
+ get url(): URL;
70
+ /** An object representing the requesting user agent. If the `User-Agent`
71
+ * header isn't defined in the request, all the properties will be undefined.
72
+ *
73
+ * See [std/http/user_agent#UserAgent](https://deno.land/std@0.223/http/user_agent.ts?s=UserAgent)
74
+ * for more information.
75
+ */
76
+ get userAgent(): UserAgent;
77
+ constructor(serverRequest: ServerRequest, { proxy, secure, jsonBodyReviver }?: OakRequestOptions);
78
+ /** Returns an array of media types, accepted by the requestor, in order of
79
+ * preference. If there are no encodings supplied by the requestor,
80
+ * then accepting any is implied is returned.
81
+ */
82
+ accepts(): string[] | undefined;
83
+ /** For a given set of media types, return the best match accepted by the
84
+ * requestor. If there are no encoding that match, then the method returns
85
+ * `undefined`.
86
+ */
87
+ accepts(...types: string[]): string | undefined;
88
+ /** Returns an array of encodings, accepted by the requestor, in order of
89
+ * preference. If there are no encodings supplied by the requestor,
90
+ * then `["*"]` is returned, matching any.
91
+ */
92
+ acceptsEncodings(): string[] | undefined;
93
+ /** For a given set of encodings, return the best match accepted by the
94
+ * requestor. If there are no encodings that match, then the method returns
95
+ * `undefined`.
96
+ *
97
+ * **NOTE:** You should always supply `identity` as one of the encodings
98
+ * to ensure that there is a match when the `Accept-Encoding` header is part
99
+ * of the request.
100
+ */
101
+ acceptsEncodings(...encodings: string[]): string | undefined;
102
+ /** Returns an array of languages, accepted by the requestor, in order of
103
+ * preference. If there are no languages supplied by the requestor,
104
+ * `["*"]` is returned, indicating any language is accepted.
105
+ */
106
+ acceptsLanguages(): string[] | undefined;
107
+ /** For a given set of languages, return the best match accepted by the
108
+ * requestor. If there are no languages that match, then the method returns
109
+ * `undefined`. */
110
+ acceptsLanguages(...langs: string[]): string | undefined;
111
+ /** Take the current request and initiate server sent event connection.
112
+ *
113
+ * > ![WARNING]
114
+ * > This is not intended for direct use, as it will not manage the target in
115
+ * > the overall context or ensure that additional middleware does not attempt
116
+ * > to respond to the request.
117
+ */
118
+ sendEvents(options?: ServerSentEventTargetOptions, init?: RequestInit): Promise<ServerSentEventTarget>;
119
+ /** Take the current request and upgrade it to a web socket, returning a web
120
+ * standard `WebSocket` object.
121
+ *
122
+ * If the underlying server abstraction does not support upgrades, this will
123
+ * throw.
124
+ *
125
+ * > ![WARNING]
126
+ * > This is not intended for direct use, as it will not manage the websocket
127
+ * > in the overall context or ensure that additional middleware does not
128
+ * > attempt to respond to the request.
129
+ */
130
+ upgrade(options?: UpgradeWebSocketOptions): WebSocket;
131
+ }
132
+ export {};
133
+ //# sourceMappingURL=request.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"request.d.ts","sourceRoot":"","sources":["../../../../../src/deps/deno.land/x/oak@v17.1.4/request.ts"],"names":[],"mappings":"AAEA;;;;;;GAMG;AAEH,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AAEjC,OAAO,EAIL,KAAK,WAAW,EAChB,KAAK,qBAAqB,EAC1B,KAAK,4BAA4B,EACjC,SAAS,EACV,MAAM,WAAW,CAAC;AACnB,OAAO,KAAK,EAAE,aAAa,EAAE,uBAAuB,EAAE,MAAM,YAAY,CAAC;AAEzE,UAAU,iBAAiB;IACzB,eAAe,CAAC,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,OAAO,KAAK,OAAO,CAAC;IAC3D,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED;;;;;;;GAOG;AACH,qBAAa,OAAO;;IAYlB;;OAEG;IACH,IAAI,IAAI,IAAI,IAAI,CAEf;IAED;;;;;;;OAOG;IACH,IAAI,OAAO,IAAI,OAAO,CAErB;IAED,6CAA6C;IAC7C,IAAI,OAAO,IAAI,OAAO,CAErB;IAED;;OAEG;IACH,IAAI,EAAE,IAAI,MAAM,CAEf;IAED;;sEAEkE;IAClE,IAAI,GAAG,IAAI,MAAM,EAAE,CAKlB;IAED,2CAA2C;IAC3C,IAAI,MAAM,IAAI,WAAW,CAExB;IAED,uDAAuD;IACvD,IAAI,MAAM,IAAI,OAAO,CAEpB;IAED;;;;OAIG;IACH,IAAI,eAAe,IAAI,aAAa,CAEnC;IAED;;;;OAIG;IACH,IAAI,MAAM,IAAI,UAAU,CAAC,OAAO,GAAG,SAAS,CAE3C;IAED;;;sBAGkB;IAClB,IAAI,GAAG,IAAI,GAAG,CAwCb;IAED;;;;;OAKG;IACH,IAAI,SAAS,IAAI,SAAS,CAEzB;gBAGC,aAAa,EAAE,aAAa,EAC5B,EAAE,KAAa,EAAE,MAAc,EAAE,eAAe,EAAE,GAAE,iBAAsB;IAS5E;;;OAGG;IACH,OAAO,IAAI,MAAM,EAAE,GAAG,SAAS;IAC/B;;;OAGG;IACH,OAAO,CAAC,GAAG,KAAK,EAAE,MAAM,EAAE,GAAG,MAAM,GAAG,SAAS;IAW/C;;;OAGG;IACH,gBAAgB,IAAI,MAAM,EAAE,GAAG,SAAS;IACxC;;;;;;;OAOG;IACH,gBAAgB,CAAC,GAAG,SAAS,EAAE,MAAM,EAAE,GAAG,MAAM,GAAG,SAAS;IAW5D;;;OAGG;IACH,gBAAgB,IAAI,MAAM,EAAE,GAAG,SAAS;IACxC;;sBAEkB;IAClB,gBAAgB,CAAC,GAAG,KAAK,EAAE,MAAM,EAAE,GAAG,MAAM,GAAG,SAAS;IAWxD;;;;;;OAMG;IACG,UAAU,CACd,OAAO,CAAC,EAAE,4BAA4B,EACtC,IAAI,CAAC,EAAE,WAAW,GACjB,OAAO,CAAC,qBAAqB,CAAC;IAMjC;;;;;;;;;;OAUG;IACH,OAAO,CAAC,OAAO,CAAC,EAAE,uBAAuB,GAAG,SAAS;CAkDtD"}
@@ -0,0 +1,246 @@
1
+ // Copyright 2018-2025 the oak authors. All rights reserved. MIT license.
2
+ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {
3
+ if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
4
+ 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");
5
+ return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
6
+ };
7
+ var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
8
+ if (kind === "m") throw new TypeError("Private method is not writable");
9
+ if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
10
+ 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");
11
+ return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
12
+ };
13
+ var _Request_instances, _Request_body, _Request_proxy, _Request_secure, _Request_serverRequest, _Request_url, _Request_userAgent, _Request_getRemoteAddr;
14
+ /**
15
+ * Contains the {@linkcode Request} abstraction used by oak.
16
+ *
17
+ * Most end users would not need to directly access this module.
18
+ *
19
+ * @module
20
+ */
21
+ import { Body } from "./body.js";
22
+ import { ServerSentEventStreamTarget } from "./deps.js";
23
+ import { accepts, acceptsEncodings, acceptsLanguages, UserAgent, } from "./deps.js";
24
+ /** An interface which provides information about the current request. The
25
+ * instance related to the current request is available on the
26
+ * {@linkcode Context}'s `.request` property.
27
+ *
28
+ * The interface contains several properties to get information about the
29
+ * request as well as several methods, which include content negotiation and
30
+ * the ability to decode a request body.
31
+ */
32
+ export class Request {
33
+ /** An interface to access the body of the request. This provides an API that
34
+ * aligned to the **Fetch Request** API, but in a dedicated API.
35
+ */
36
+ get body() {
37
+ return __classPrivateFieldGet(this, _Request_body, "f");
38
+ }
39
+ /** Is `true` if the request might have a body, otherwise `false`.
40
+ *
41
+ * **WARNING** this is an unreliable API. In HTTP/2 in many situations you
42
+ * cannot determine if a request has a body or not unless you attempt to read
43
+ * the body, due to the streaming nature of HTTP/2. As of Deno 1.16.1, for
44
+ * HTTP/1.1, Deno also reflects that behaviour. The only reliable way to
45
+ * determine if a request has a body or not is to attempt to read the body.
46
+ */
47
+ get hasBody() {
48
+ return __classPrivateFieldGet(this, _Request_body, "f").has;
49
+ }
50
+ /** The `Headers` supplied in the request. */
51
+ get headers() {
52
+ return __classPrivateFieldGet(this, _Request_serverRequest, "f").headers;
53
+ }
54
+ /** Request remote address. When the application's `.proxy` is true, the
55
+ * `X-Forwarded-For` will be used to determine the requesting remote address.
56
+ */
57
+ get ip() {
58
+ return (__classPrivateFieldGet(this, _Request_proxy, "f") ? this.ips[0] : __classPrivateFieldGet(this, _Request_instances, "m", _Request_getRemoteAddr).call(this)) ?? "";
59
+ }
60
+ /** When the application's `.proxy` is `true`, this will be set to an array of
61
+ * IPs, ordered from upstream to downstream, based on the value of the header
62
+ * `X-Forwarded-For`. When `false` an empty array is returned. */
63
+ get ips() {
64
+ return __classPrivateFieldGet(this, _Request_proxy, "f")
65
+ ? (__classPrivateFieldGet(this, _Request_serverRequest, "f").headers.get("x-forwarded-for") ??
66
+ __classPrivateFieldGet(this, _Request_instances, "m", _Request_getRemoteAddr).call(this)).split(/\s*,\s*/)
67
+ : [];
68
+ }
69
+ /** The HTTP Method used by the request. */
70
+ get method() {
71
+ return __classPrivateFieldGet(this, _Request_serverRequest, "f").method;
72
+ }
73
+ /** Shortcut to `request.url.protocol === "https:"`. */
74
+ get secure() {
75
+ return __classPrivateFieldGet(this, _Request_secure, "f");
76
+ }
77
+ /** Set to the value of the low level oak server request abstraction.
78
+ *
79
+ * @deprecated this will be removed in future versions of oak. Accessing this
80
+ * abstraction is not useful to end users and is now a bit of a misnomer.
81
+ */
82
+ get originalRequest() {
83
+ return __classPrivateFieldGet(this, _Request_serverRequest, "f");
84
+ }
85
+ /** Returns the original Fetch API `Request` if available.
86
+ *
87
+ * This should be set with requests on Deno, but will not be set when running
88
+ * on Node.js.
89
+ */
90
+ get source() {
91
+ return __classPrivateFieldGet(this, _Request_serverRequest, "f").request;
92
+ }
93
+ /** A parsed URL for the request which complies with the browser standards.
94
+ * When the application's `.proxy` is `true`, this value will be based off of
95
+ * the `X-Forwarded-Proto` and `X-Forwarded-Host` header values if present in
96
+ * the request. */
97
+ get url() {
98
+ if (!__classPrivateFieldGet(this, _Request_url, "f")) {
99
+ const serverRequest = __classPrivateFieldGet(this, _Request_serverRequest, "f");
100
+ // between Deno 1.9.0 and 1.9.1 the request.url of the native HTTP started
101
+ // returning the full URL, where previously it only returned the path
102
+ // so we will try to use that URL here, but default back to old logic
103
+ // if the URL isn't valid.
104
+ try {
105
+ if (serverRequest.rawUrl) {
106
+ __classPrivateFieldSet(this, _Request_url, new URL(serverRequest.rawUrl), "f");
107
+ }
108
+ }
109
+ catch {
110
+ // we don't care about errors here
111
+ }
112
+ if (__classPrivateFieldGet(this, _Request_proxy, "f") || !__classPrivateFieldGet(this, _Request_url, "f")) {
113
+ let proto;
114
+ let host;
115
+ if (__classPrivateFieldGet(this, _Request_proxy, "f")) {
116
+ proto = serverRequest
117
+ .headers.get("x-forwarded-proto")?.split(/\s*,\s*/, 1)[0] ??
118
+ "http";
119
+ host = serverRequest.headers.get("x-forwarded-host") ??
120
+ __classPrivateFieldGet(this, _Request_url, "f")?.hostname ??
121
+ serverRequest.headers.get("host") ??
122
+ serverRequest.headers.get(":authority") ?? "";
123
+ }
124
+ else {
125
+ proto = __classPrivateFieldGet(this, _Request_secure, "f") ? "https" : "http";
126
+ host = serverRequest.headers.get("host") ??
127
+ serverRequest.headers.get(":authority") ?? "";
128
+ }
129
+ try {
130
+ __classPrivateFieldSet(this, _Request_url, new URL(`${proto}://${host}${serverRequest.url}`), "f");
131
+ }
132
+ catch {
133
+ throw new TypeError(`The server request URL of "${proto}://${host}${serverRequest.url}" is invalid.`);
134
+ }
135
+ }
136
+ }
137
+ return __classPrivateFieldGet(this, _Request_url, "f");
138
+ }
139
+ /** An object representing the requesting user agent. If the `User-Agent`
140
+ * header isn't defined in the request, all the properties will be undefined.
141
+ *
142
+ * See [std/http/user_agent#UserAgent](https://deno.land/std@0.223/http/user_agent.ts?s=UserAgent)
143
+ * for more information.
144
+ */
145
+ get userAgent() {
146
+ return __classPrivateFieldGet(this, _Request_userAgent, "f");
147
+ }
148
+ constructor(serverRequest, { proxy = false, secure = false, jsonBodyReviver } = {}) {
149
+ _Request_instances.add(this);
150
+ _Request_body.set(this, void 0);
151
+ _Request_proxy.set(this, void 0);
152
+ _Request_secure.set(this, void 0);
153
+ _Request_serverRequest.set(this, void 0);
154
+ _Request_url.set(this, void 0);
155
+ _Request_userAgent.set(this, void 0);
156
+ __classPrivateFieldSet(this, _Request_proxy, proxy, "f");
157
+ __classPrivateFieldSet(this, _Request_secure, secure, "f");
158
+ __classPrivateFieldSet(this, _Request_serverRequest, serverRequest, "f");
159
+ __classPrivateFieldSet(this, _Request_body, new Body(serverRequest, jsonBodyReviver), "f");
160
+ __classPrivateFieldSet(this, _Request_userAgent, new UserAgent(serverRequest.headers.get("user-agent")), "f");
161
+ }
162
+ accepts(...types) {
163
+ if (!__classPrivateFieldGet(this, _Request_serverRequest, "f").headers.has("Accept")) {
164
+ return types.length ? types[0] : ["*/*"];
165
+ }
166
+ if (types.length) {
167
+ return accepts(__classPrivateFieldGet(this, _Request_serverRequest, "f"), ...types);
168
+ }
169
+ return accepts(__classPrivateFieldGet(this, _Request_serverRequest, "f"));
170
+ }
171
+ acceptsEncodings(...encodings) {
172
+ if (!__classPrivateFieldGet(this, _Request_serverRequest, "f").headers.has("Accept-Encoding")) {
173
+ return encodings.length ? encodings[0] : ["*"];
174
+ }
175
+ if (encodings.length) {
176
+ return acceptsEncodings(__classPrivateFieldGet(this, _Request_serverRequest, "f"), ...encodings);
177
+ }
178
+ return acceptsEncodings(__classPrivateFieldGet(this, _Request_serverRequest, "f"));
179
+ }
180
+ acceptsLanguages(...langs) {
181
+ if (!__classPrivateFieldGet(this, _Request_serverRequest, "f").headers.get("Accept-Language")) {
182
+ return langs.length ? langs[0] : ["*"];
183
+ }
184
+ if (langs.length) {
185
+ return acceptsLanguages(__classPrivateFieldGet(this, _Request_serverRequest, "f"), ...langs);
186
+ }
187
+ return acceptsLanguages(__classPrivateFieldGet(this, _Request_serverRequest, "f"));
188
+ }
189
+ /** Take the current request and initiate server sent event connection.
190
+ *
191
+ * > ![WARNING]
192
+ * > This is not intended for direct use, as it will not manage the target in
193
+ * > the overall context or ensure that additional middleware does not attempt
194
+ * > to respond to the request.
195
+ */
196
+ async sendEvents(options, init) {
197
+ const sse = new ServerSentEventStreamTarget(options);
198
+ await __classPrivateFieldGet(this, _Request_serverRequest, "f").respond(sse.asResponse(init));
199
+ return sse;
200
+ }
201
+ /** Take the current request and upgrade it to a web socket, returning a web
202
+ * standard `WebSocket` object.
203
+ *
204
+ * If the underlying server abstraction does not support upgrades, this will
205
+ * throw.
206
+ *
207
+ * > ![WARNING]
208
+ * > This is not intended for direct use, as it will not manage the websocket
209
+ * > in the overall context or ensure that additional middleware does not
210
+ * > attempt to respond to the request.
211
+ */
212
+ upgrade(options) {
213
+ if (!__classPrivateFieldGet(this, _Request_serverRequest, "f").upgrade) {
214
+ throw new TypeError("Web sockets upgrade not supported in this runtime.");
215
+ }
216
+ return __classPrivateFieldGet(this, _Request_serverRequest, "f").upgrade(options);
217
+ }
218
+ [(_Request_body = new WeakMap(), _Request_proxy = new WeakMap(), _Request_secure = new WeakMap(), _Request_serverRequest = new WeakMap(), _Request_url = new WeakMap(), _Request_userAgent = new WeakMap(), _Request_instances = new WeakSet(), _Request_getRemoteAddr = function _Request_getRemoteAddr() {
219
+ return __classPrivateFieldGet(this, _Request_serverRequest, "f").remoteAddr ?? "";
220
+ }, Symbol.for("Deno.customInspect"))](inspect) {
221
+ const { body, hasBody, headers, ip, ips, method, secure, url, userAgent } = this;
222
+ return `${this.constructor.name} ${inspect({
223
+ body,
224
+ hasBody,
225
+ headers,
226
+ ip,
227
+ ips,
228
+ method,
229
+ secure,
230
+ url: url.toString(),
231
+ userAgent,
232
+ })}`;
233
+ }
234
+ [Symbol.for("nodejs.util.inspect.custom")](depth,
235
+ // deno-lint-ignore no-explicit-any
236
+ options, inspect) {
237
+ if (depth < 0) {
238
+ return options.stylize(`[${this.constructor.name}]`, "special");
239
+ }
240
+ const newOptions = Object.assign({}, options, {
241
+ depth: options.depth === null ? null : options.depth - 1,
242
+ });
243
+ const { body, hasBody, headers, ip, ips, method, secure, url, userAgent } = this;
244
+ return `${options.stylize(this.constructor.name, "special")} ${inspect({ body, hasBody, headers, ip, ips, method, secure, url, userAgent }, newOptions)}`;
245
+ }
246
+ }
@@ -0,0 +1,148 @@
1
+ /**
2
+ * Contains the {@linkcode Response} abstraction used by oak.
3
+ *
4
+ * Most end users would not need to directly access this module.
5
+ *
6
+ * @module
7
+ */
8
+ import { Status } from "./deps.js";
9
+ import type { Request } from "./request.js";
10
+ /** The various types of bodies supported when setting the value of `.body`
11
+ * on a {@linkcode Response} */
12
+ export type ResponseBody = string | number | bigint | boolean | symbol | object | undefined | null;
13
+ /** A function that when invoked returns or resolves to a
14
+ * {@linkcode ResponseBody}. */
15
+ export type ResponseBodyFunction = () => ResponseBody | Promise<ResponseBody>;
16
+ /** A symbol that indicates to `response.redirect()` to attempt to redirect
17
+ * back to the request referrer. For example:
18
+ *
19
+ * ```ts
20
+ * import { Application, REDIRECT_BACK } from "jsr:@oak/oak/";
21
+ *
22
+ * const app = new Application();
23
+ *
24
+ * app.use((ctx) => {
25
+ * if (ctx.request.url.pathName === "/back") {
26
+ * ctx.response.redirect(REDIRECT_BACK, "/");
27
+ * }
28
+ * });
29
+ *
30
+ * await app.listen({ port: 80 });
31
+ * ```
32
+ */
33
+ export declare const REDIRECT_BACK: unique symbol;
34
+ /** An interface to control what response will be sent when the middleware
35
+ * finishes processing the request.
36
+ *
37
+ * The response is usually accessed via the context's `.response` property.
38
+ *
39
+ * ### Example
40
+ *
41
+ * ```ts
42
+ * import { Application, Status } from "jsr:@oak/oak/";
43
+ *
44
+ * const app = new Application();
45
+ *
46
+ * app.use((ctx) => {
47
+ * ctx.response.body = { hello: "oak" };
48
+ * ctx.response.type = "json";
49
+ * ctx.response.status = Status.OK;
50
+ * });
51
+ * ```
52
+ */
53
+ export declare class Response {
54
+ #private;
55
+ /** The body of the response. The body will be automatically processed when
56
+ * the response is being sent and converted to a `Uint8Array` or a
57
+ * `Deno.Reader`.
58
+ *
59
+ * Automatic conversion to a `Deno.Reader` occurs for async iterables. */
60
+ get body(): ResponseBody | ResponseBodyFunction;
61
+ /** The body of the response. The body will be automatically processed when
62
+ * the response is being sent and converted to a `Uint8Array` or a
63
+ * `Deno.Reader`.
64
+ *
65
+ * Automatic conversion to a `Deno.Reader` occurs for async iterables. */
66
+ set body(value: ResponseBody | ResponseBodyFunction);
67
+ /** Headers that will be returned in the response. */
68
+ get headers(): Headers;
69
+ /** Headers that will be returned in the response. */
70
+ set headers(value: Headers);
71
+ /** The HTTP status of the response. If this has not been explicitly set,
72
+ * reading the value will return what would be the value of status if the
73
+ * response were sent at this point in processing the middleware. If the body
74
+ * has been set, the status will be `200 OK`. If a value for the body has
75
+ * not been set yet, the status will be `404 Not Found`. */
76
+ get status(): Status;
77
+ /** The HTTP status of the response. If this has not been explicitly set,
78
+ * reading the value will return what would be the value of status if the
79
+ * response were sent at this point in processing the middleware. If the body
80
+ * has been set, the status will be `200 OK`. If a value for the body has
81
+ * not been set yet, the status will be `404 Not Found`. */
82
+ set status(value: Status);
83
+ /** The media type, or extension of the response. Setting this value will
84
+ * ensure an appropriate `Content-Type` header is added to the response. */
85
+ get type(): string | undefined;
86
+ /** The media type, or extension of the response. Setting this value will
87
+ * ensure an appropriate `Content-Type` header is added to the response. */
88
+ set type(value: string | undefined);
89
+ /** A read-only property which determines if the response is writable or not.
90
+ * Once the response has been processed, this value is set to `false`. */
91
+ get writable(): boolean;
92
+ constructor(request: Request, jsonBodyReplacer?: (key: string, value: unknown) => unknown);
93
+ /** Add a resource to the list of resources that will be closed when the
94
+ * request is destroyed. */
95
+ addResource(resource: {
96
+ close(): void;
97
+ }): void;
98
+ /** Release any resources that are being tracked by the response.
99
+ *
100
+ * @param closeResources close any resource IDs registered with the response
101
+ */
102
+ destroy(closeResources?: boolean): void;
103
+ /** Sets the response to redirect to the supplied `url`.
104
+ *
105
+ * If the `.status` is not currently a redirect status, the status will be set
106
+ * to `302 Found`.
107
+ *
108
+ * The body will be set to a message indicating the redirection is occurring.
109
+ */
110
+ redirect(url: string | URL): void;
111
+ /** Sets the response to redirect back to the referrer if available, with an
112
+ * optional `alt` URL if there is no referrer header on the request. If there
113
+ * is no referrer header, nor an `alt` parameter, the redirect is set to `/`.
114
+ *
115
+ * If the `.status` is not currently a redirect status, the status will be set
116
+ * to `302 Found`.
117
+ *
118
+ * The body will be set to a message indicating the redirection is occurring.
119
+ */
120
+ redirect(url: typeof REDIRECT_BACK, alt?: string | URL): void;
121
+ toDomResponse(): Promise<globalThis.Response>;
122
+ /** Instead of responding based on the values of the response, explicitly set
123
+ * the response with a Fetch API `Response`.
124
+ *
125
+ * If the response is already finalized, this will throw. You can check
126
+ * the `.writable` property to determine the state if you are unsure.
127
+ *
128
+ * > [!NOTE]
129
+ * > This will ignore/override values set in the response like the body,
130
+ * > headers and status, meaning things like cookie management and automatic
131
+ * > body typing will be ignored.
132
+ */
133
+ with(response: globalThis.Response): void;
134
+ /** Instead of responding based on the values of the response, explicitly set
135
+ * the response by providing the initialization to create a Fetch API
136
+ * `Response`.
137
+ *
138
+ * If the response is already finalized, this will throw. You can check
139
+ * the `.writable` property to determine the state if you are unsure.
140
+ *
141
+ * > [!NOTE]
142
+ * > This will ignore/override values set in the response like the body,
143
+ * > headers and status, meaning things like cookie management and automatic
144
+ * > body typing will be ignored.
145
+ */
146
+ with(body?: BodyInit | null, init?: ResponseInit): void;
147
+ }
148
+ //# sourceMappingURL=response.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"response.d.ts","sourceRoot":"","sources":["../../../../../src/deps/deno.land/x/oak@v17.1.4/response.ts"],"names":[],"mappings":"AAEA;;;;;;GAMG;AAEH,OAAO,EAAiC,MAAM,EAAe,MAAM,WAAW,CAAC;AAE/E,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAS5C;+BAC+B;AAC/B,MAAM,MAAM,YAAY,GACpB,MAAM,GACN,MAAM,GACN,MAAM,GACN,OAAO,GACP,MAAM,GACN,MAAM,GACN,SAAS,GACT,IAAI,CAAC;AAET;+BAC+B;AAC/B,MAAM,MAAM,oBAAoB,GAAG,MAAM,YAAY,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;AAE9E;;;;;;;;;;;;;;;;GAgBG;AACH,eAAO,MAAM,aAAa,eAA+B,CAAC;AAsC1D;;;;;;;;;;;;;;;;;;GAkBG;AACH,qBAAa,QAAQ;;IA+BnB;;;;6EAIyE;IACzE,IAAI,IAAI,IAAI,YAAY,GAAG,oBAAoB,CAE9C;IAED;;;;6EAIyE;IACzE,IAAI,IAAI,CAAC,KAAK,EAAE,YAAY,GAAG,oBAAoB,EAMlD;IAED,qDAAqD;IACrD,IAAI,OAAO,IAAI,OAAO,CAErB;IAED,qDAAqD;IACrD,IAAI,OAAO,CAAC,KAAK,EAAE,OAAO,EAKzB;IAED;;;;+DAI2D;IAC3D,IAAI,MAAM,IAAI,MAAM,CASnB;IAED;;;;+DAI2D;IAC3D,IAAI,MAAM,CAAC,KAAK,EAAE,MAAM,EAKvB;IAED;+EAC2E;IAC3E,IAAI,IAAI,IAAI,MAAM,GAAG,SAAS,CAE7B;IACD;+EAC2E;IAC3E,IAAI,IAAI,CAAC,KAAK,EAAE,MAAM,GAAG,SAAS,EAKjC;IAED;6EACyE;IACzE,IAAI,QAAQ,IAAI,OAAO,CAEtB;gBAGC,OAAO,EAAE,OAAO,EAChB,gBAAgB,CAAC,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,OAAO,KAAK,OAAO;IAM7D;+BAC2B;IAC3B,WAAW,CAAC,QAAQ,EAAE;QAAE,KAAK,IAAI,IAAI,CAAA;KAAE,GAAG,IAAI;IAI9C;;;OAGG;IACH,OAAO,CAAC,cAAc,UAAO,GAAG,IAAI;IAepC;;;;;;OAMG;IACH,QAAQ,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,GAAG,IAAI;IACjC;;;;;;;;OAQG;IACH,QAAQ,CAAC,GAAG,EAAE,OAAO,aAAa,EAAE,GAAG,CAAC,EAAE,MAAM,GAAG,GAAG,GAAG,IAAI;IAyBvD,aAAa,IAAI,OAAO,CAAC,UAAU,CAAC,QAAQ,CAAC;IAmCnD;;;;;;;;;;OAUG;IACH,IAAI,CAAC,QAAQ,EAAE,UAAU,CAAC,QAAQ,GAAG,IAAI;IACzC;;;;;;;;;;;OAWG;IACH,IAAI,CAAC,IAAI,CAAC,EAAE,QAAQ,GAAG,IAAI,EAAE,IAAI,CAAC,EAAE,YAAY,GAAG,IAAI;CA6CxD"}