deepv-code 1.0.182

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 (223) hide show
  1. package/LICENSE +202 -0
  2. package/README.md +3 -0
  3. package/bundle/assets/help/README.md +113 -0
  4. package/bundle/assets/help/cli-help-knowledge.md +1382 -0
  5. package/bundle/assets/sounds/README.md +74 -0
  6. package/bundle/assets/sounds/confirmation-required.wav +0 -0
  7. package/bundle/assets/sounds/response-complete.wav +0 -0
  8. package/bundle/assets/sounds/selection-made.wav +0 -0
  9. package/bundle/dvcode.js +4442 -0
  10. package/bundle/fix-binary-permissions.js +215 -0
  11. package/bundle/login/templates/authSelectPage.html +870 -0
  12. package/bundle/login/templates/deepv.ico +0 -0
  13. package/bundle/login/templates/feishu.ico +0 -0
  14. package/bundle/node_modules/@vscode/ripgrep/bin/darwin-arm64-rg +0 -0
  15. package/bundle/node_modules/@vscode/ripgrep/bin/darwin-x64-rg +0 -0
  16. package/bundle/node_modules/@vscode/ripgrep/bin/linux-arm-rg +0 -0
  17. package/bundle/node_modules/@vscode/ripgrep/bin/linux-arm64-rg +0 -0
  18. package/bundle/node_modules/@vscode/ripgrep/bin/linux-x64-rg +0 -0
  19. package/bundle/node_modules/@vscode/ripgrep/bin/rg.exe +0 -0
  20. package/bundle/node_modules/@vscode/ripgrep/bin/win32-arm64-rg.exe +0 -0
  21. package/bundle/node_modules/@vscode/ripgrep/bin/win32-ia32-rg.exe +0 -0
  22. package/bundle/node_modules/@vscode/ripgrep/bin/win32-x64-rg.exe +0 -0
  23. package/bundle/node_modules/@vscode/ripgrep/lib/download.js +357 -0
  24. package/bundle/node_modules/@vscode/ripgrep/lib/index.d.ts +1 -0
  25. package/bundle/node_modules/@vscode/ripgrep/lib/index.js +42 -0
  26. package/bundle/node_modules/@vscode/ripgrep/lib/postinstall.js +121 -0
  27. package/bundle/node_modules/@vscode/ripgrep/package.json +24 -0
  28. package/bundle/node_modules/undici/LICENSE +21 -0
  29. package/bundle/node_modules/undici/README.md +472 -0
  30. package/bundle/node_modules/undici/docs/docs/api/Agent.md +83 -0
  31. package/bundle/node_modules/undici/docs/docs/api/BalancedPool.md +99 -0
  32. package/bundle/node_modules/undici/docs/docs/api/CacheStorage.md +30 -0
  33. package/bundle/node_modules/undici/docs/docs/api/CacheStore.md +151 -0
  34. package/bundle/node_modules/undici/docs/docs/api/Client.md +281 -0
  35. package/bundle/node_modules/undici/docs/docs/api/ClientStats.md +27 -0
  36. package/bundle/node_modules/undici/docs/docs/api/Connector.md +115 -0
  37. package/bundle/node_modules/undici/docs/docs/api/ContentType.md +57 -0
  38. package/bundle/node_modules/undici/docs/docs/api/Cookies.md +101 -0
  39. package/bundle/node_modules/undici/docs/docs/api/Debug.md +62 -0
  40. package/bundle/node_modules/undici/docs/docs/api/DiagnosticsChannel.md +204 -0
  41. package/bundle/node_modules/undici/docs/docs/api/Dispatcher.md +1200 -0
  42. package/bundle/node_modules/undici/docs/docs/api/EnvHttpProxyAgent.md +159 -0
  43. package/bundle/node_modules/undici/docs/docs/api/Errors.md +49 -0
  44. package/bundle/node_modules/undici/docs/docs/api/EventSource.md +45 -0
  45. package/bundle/node_modules/undici/docs/docs/api/Fetch.md +52 -0
  46. package/bundle/node_modules/undici/docs/docs/api/H2CClient.md +262 -0
  47. package/bundle/node_modules/undici/docs/docs/api/MockAgent.md +603 -0
  48. package/bundle/node_modules/undici/docs/docs/api/MockCallHistory.md +197 -0
  49. package/bundle/node_modules/undici/docs/docs/api/MockCallHistoryLog.md +43 -0
  50. package/bundle/node_modules/undici/docs/docs/api/MockClient.md +77 -0
  51. package/bundle/node_modules/undici/docs/docs/api/MockErrors.md +12 -0
  52. package/bundle/node_modules/undici/docs/docs/api/MockPool.md +548 -0
  53. package/bundle/node_modules/undici/docs/docs/api/Pool.md +84 -0
  54. package/bundle/node_modules/undici/docs/docs/api/PoolStats.md +35 -0
  55. package/bundle/node_modules/undici/docs/docs/api/ProxyAgent.md +227 -0
  56. package/bundle/node_modules/undici/docs/docs/api/RedirectHandler.md +96 -0
  57. package/bundle/node_modules/undici/docs/docs/api/RetryAgent.md +45 -0
  58. package/bundle/node_modules/undici/docs/docs/api/RetryHandler.md +117 -0
  59. package/bundle/node_modules/undici/docs/docs/api/Util.md +25 -0
  60. package/bundle/node_modules/undici/docs/docs/api/WebSocket.md +85 -0
  61. package/bundle/node_modules/undici/docs/docs/api/api-lifecycle.md +91 -0
  62. package/bundle/node_modules/undici/docs/docs/best-practices/client-certificate.md +64 -0
  63. package/bundle/node_modules/undici/docs/docs/best-practices/mocking-request.md +190 -0
  64. package/bundle/node_modules/undici/docs/docs/best-practices/proxy.md +127 -0
  65. package/bundle/node_modules/undici/docs/docs/best-practices/writing-tests.md +20 -0
  66. package/bundle/node_modules/undici/index-fetch.js +35 -0
  67. package/bundle/node_modules/undici/index.d.ts +3 -0
  68. package/bundle/node_modules/undici/index.js +183 -0
  69. package/bundle/node_modules/undici/lib/api/abort-signal.js +59 -0
  70. package/bundle/node_modules/undici/lib/api/api-connect.js +110 -0
  71. package/bundle/node_modules/undici/lib/api/api-pipeline.js +252 -0
  72. package/bundle/node_modules/undici/lib/api/api-request.js +199 -0
  73. package/bundle/node_modules/undici/lib/api/api-stream.js +209 -0
  74. package/bundle/node_modules/undici/lib/api/api-upgrade.js +110 -0
  75. package/bundle/node_modules/undici/lib/api/index.js +7 -0
  76. package/bundle/node_modules/undici/lib/api/readable.js +558 -0
  77. package/bundle/node_modules/undici/lib/api/util.js +95 -0
  78. package/bundle/node_modules/undici/lib/cache/memory-cache-store.js +234 -0
  79. package/bundle/node_modules/undici/lib/cache/sqlite-cache-store.js +461 -0
  80. package/bundle/node_modules/undici/lib/core/connect.js +164 -0
  81. package/bundle/node_modules/undici/lib/core/constants.js +143 -0
  82. package/bundle/node_modules/undici/lib/core/diagnostics.js +196 -0
  83. package/bundle/node_modules/undici/lib/core/errors.js +244 -0
  84. package/bundle/node_modules/undici/lib/core/request.js +397 -0
  85. package/bundle/node_modules/undici/lib/core/symbols.js +68 -0
  86. package/bundle/node_modules/undici/lib/core/tree.js +160 -0
  87. package/bundle/node_modules/undici/lib/core/util.js +988 -0
  88. package/bundle/node_modules/undici/lib/dispatcher/agent.js +135 -0
  89. package/bundle/node_modules/undici/lib/dispatcher/balanced-pool.js +206 -0
  90. package/bundle/node_modules/undici/lib/dispatcher/client-h1.js +1615 -0
  91. package/bundle/node_modules/undici/lib/dispatcher/client-h2.js +798 -0
  92. package/bundle/node_modules/undici/lib/dispatcher/client.js +614 -0
  93. package/bundle/node_modules/undici/lib/dispatcher/dispatcher-base.js +161 -0
  94. package/bundle/node_modules/undici/lib/dispatcher/dispatcher.js +48 -0
  95. package/bundle/node_modules/undici/lib/dispatcher/env-http-proxy-agent.js +151 -0
  96. package/bundle/node_modules/undici/lib/dispatcher/fixed-queue.js +159 -0
  97. package/bundle/node_modules/undici/lib/dispatcher/h2c-client.js +122 -0
  98. package/bundle/node_modules/undici/lib/dispatcher/pool-base.js +191 -0
  99. package/bundle/node_modules/undici/lib/dispatcher/pool.js +118 -0
  100. package/bundle/node_modules/undici/lib/dispatcher/proxy-agent.js +275 -0
  101. package/bundle/node_modules/undici/lib/dispatcher/retry-agent.js +35 -0
  102. package/bundle/node_modules/undici/lib/global.js +32 -0
  103. package/bundle/node_modules/undici/lib/handler/cache-handler.js +448 -0
  104. package/bundle/node_modules/undici/lib/handler/cache-revalidation-handler.js +124 -0
  105. package/bundle/node_modules/undici/lib/handler/decorator-handler.js +67 -0
  106. package/bundle/node_modules/undici/lib/handler/redirect-handler.js +227 -0
  107. package/bundle/node_modules/undici/lib/handler/retry-handler.js +342 -0
  108. package/bundle/node_modules/undici/lib/handler/unwrap-handler.js +96 -0
  109. package/bundle/node_modules/undici/lib/handler/wrap-handler.js +95 -0
  110. package/bundle/node_modules/undici/lib/interceptor/cache.js +372 -0
  111. package/bundle/node_modules/undici/lib/interceptor/dns.js +432 -0
  112. package/bundle/node_modules/undici/lib/interceptor/dump.js +111 -0
  113. package/bundle/node_modules/undici/lib/interceptor/redirect.js +21 -0
  114. package/bundle/node_modules/undici/lib/interceptor/response-error.js +95 -0
  115. package/bundle/node_modules/undici/lib/interceptor/retry.js +19 -0
  116. package/bundle/node_modules/undici/lib/llhttp/.gitkeep +0 -0
  117. package/bundle/node_modules/undici/lib/llhttp/constants.d.ts +97 -0
  118. package/bundle/node_modules/undici/lib/llhttp/constants.js +498 -0
  119. package/bundle/node_modules/undici/lib/llhttp/constants.js.map +1 -0
  120. package/bundle/node_modules/undici/lib/llhttp/llhttp-wasm.js +15 -0
  121. package/bundle/node_modules/undici/lib/llhttp/llhttp_simd-wasm.js +15 -0
  122. package/bundle/node_modules/undici/lib/llhttp/utils.d.ts +2 -0
  123. package/bundle/node_modules/undici/lib/llhttp/utils.js +15 -0
  124. package/bundle/node_modules/undici/lib/llhttp/utils.js.map +1 -0
  125. package/bundle/node_modules/undici/lib/mock/mock-agent.js +224 -0
  126. package/bundle/node_modules/undici/lib/mock/mock-call-history.js +248 -0
  127. package/bundle/node_modules/undici/lib/mock/mock-client.js +64 -0
  128. package/bundle/node_modules/undici/lib/mock/mock-errors.js +19 -0
  129. package/bundle/node_modules/undici/lib/mock/mock-interceptor.js +209 -0
  130. package/bundle/node_modules/undici/lib/mock/mock-pool.js +64 -0
  131. package/bundle/node_modules/undici/lib/mock/mock-symbols.js +31 -0
  132. package/bundle/node_modules/undici/lib/mock/mock-utils.js +433 -0
  133. package/bundle/node_modules/undici/lib/mock/pending-interceptors-formatter.js +43 -0
  134. package/bundle/node_modules/undici/lib/util/cache.js +368 -0
  135. package/bundle/node_modules/undici/lib/util/date.js +259 -0
  136. package/bundle/node_modules/undici/lib/util/stats.js +32 -0
  137. package/bundle/node_modules/undici/lib/util/timers.js +423 -0
  138. package/bundle/node_modules/undici/lib/web/cache/cache.js +862 -0
  139. package/bundle/node_modules/undici/lib/web/cache/cachestorage.js +152 -0
  140. package/bundle/node_modules/undici/lib/web/cache/util.js +45 -0
  141. package/bundle/node_modules/undici/lib/web/cookies/constants.js +12 -0
  142. package/bundle/node_modules/undici/lib/web/cookies/index.js +199 -0
  143. package/bundle/node_modules/undici/lib/web/cookies/parse.js +322 -0
  144. package/bundle/node_modules/undici/lib/web/cookies/util.js +282 -0
  145. package/bundle/node_modules/undici/lib/web/eventsource/eventsource-stream.js +399 -0
  146. package/bundle/node_modules/undici/lib/web/eventsource/eventsource.js +484 -0
  147. package/bundle/node_modules/undici/lib/web/eventsource/util.js +37 -0
  148. package/bundle/node_modules/undici/lib/web/fetch/LICENSE +21 -0
  149. package/bundle/node_modules/undici/lib/web/fetch/body.js +532 -0
  150. package/bundle/node_modules/undici/lib/web/fetch/constants.js +131 -0
  151. package/bundle/node_modules/undici/lib/web/fetch/data-url.js +744 -0
  152. package/bundle/node_modules/undici/lib/web/fetch/dispatcher-weakref.js +46 -0
  153. package/bundle/node_modules/undici/lib/web/fetch/formdata-parser.js +501 -0
  154. package/bundle/node_modules/undici/lib/web/fetch/formdata.js +263 -0
  155. package/bundle/node_modules/undici/lib/web/fetch/global.js +40 -0
  156. package/bundle/node_modules/undici/lib/web/fetch/headers.js +719 -0
  157. package/bundle/node_modules/undici/lib/web/fetch/index.js +2258 -0
  158. package/bundle/node_modules/undici/lib/web/fetch/request.js +1099 -0
  159. package/bundle/node_modules/undici/lib/web/fetch/response.js +636 -0
  160. package/bundle/node_modules/undici/lib/web/fetch/util.js +1782 -0
  161. package/bundle/node_modules/undici/lib/web/fetch/webidl.js +740 -0
  162. package/bundle/node_modules/undici/lib/web/websocket/connection.js +325 -0
  163. package/bundle/node_modules/undici/lib/web/websocket/constants.js +126 -0
  164. package/bundle/node_modules/undici/lib/web/websocket/events.js +331 -0
  165. package/bundle/node_modules/undici/lib/web/websocket/frame.js +138 -0
  166. package/bundle/node_modules/undici/lib/web/websocket/permessage-deflate.js +70 -0
  167. package/bundle/node_modules/undici/lib/web/websocket/receiver.js +454 -0
  168. package/bundle/node_modules/undici/lib/web/websocket/sender.js +109 -0
  169. package/bundle/node_modules/undici/lib/web/websocket/stream/websocketerror.js +83 -0
  170. package/bundle/node_modules/undici/lib/web/websocket/stream/websocketstream.js +485 -0
  171. package/bundle/node_modules/undici/lib/web/websocket/util.js +338 -0
  172. package/bundle/node_modules/undici/lib/web/websocket/websocket.js +686 -0
  173. package/bundle/node_modules/undici/package.json +149 -0
  174. package/bundle/node_modules/undici/scripts/strip-comments.js +10 -0
  175. package/bundle/node_modules/undici/types/README.md +6 -0
  176. package/bundle/node_modules/undici/types/agent.d.ts +35 -0
  177. package/bundle/node_modules/undici/types/api.d.ts +43 -0
  178. package/bundle/node_modules/undici/types/balanced-pool.d.ts +29 -0
  179. package/bundle/node_modules/undici/types/cache-interceptor.d.ts +172 -0
  180. package/bundle/node_modules/undici/types/cache.d.ts +36 -0
  181. package/bundle/node_modules/undici/types/client-stats.d.ts +15 -0
  182. package/bundle/node_modules/undici/types/client.d.ts +110 -0
  183. package/bundle/node_modules/undici/types/connector.d.ts +34 -0
  184. package/bundle/node_modules/undici/types/content-type.d.ts +21 -0
  185. package/bundle/node_modules/undici/types/cookies.d.ts +30 -0
  186. package/bundle/node_modules/undici/types/diagnostics-channel.d.ts +66 -0
  187. package/bundle/node_modules/undici/types/dispatcher.d.ts +281 -0
  188. package/bundle/node_modules/undici/types/env-http-proxy-agent.d.ts +21 -0
  189. package/bundle/node_modules/undici/types/errors.d.ts +171 -0
  190. package/bundle/node_modules/undici/types/eventsource.d.ts +61 -0
  191. package/bundle/node_modules/undici/types/fetch.d.ts +210 -0
  192. package/bundle/node_modules/undici/types/formdata.d.ts +108 -0
  193. package/bundle/node_modules/undici/types/global-dispatcher.d.ts +9 -0
  194. package/bundle/node_modules/undici/types/global-origin.d.ts +7 -0
  195. package/bundle/node_modules/undici/types/h2c-client.d.ts +75 -0
  196. package/bundle/node_modules/undici/types/handlers.d.ts +15 -0
  197. package/bundle/node_modules/undici/types/header.d.ts +160 -0
  198. package/bundle/node_modules/undici/types/index.d.ts +75 -0
  199. package/bundle/node_modules/undici/types/interceptors.d.ts +34 -0
  200. package/bundle/node_modules/undici/types/mock-agent.d.ts +68 -0
  201. package/bundle/node_modules/undici/types/mock-call-history.d.ts +111 -0
  202. package/bundle/node_modules/undici/types/mock-client.d.ts +25 -0
  203. package/bundle/node_modules/undici/types/mock-errors.d.ts +12 -0
  204. package/bundle/node_modules/undici/types/mock-interceptor.d.ts +93 -0
  205. package/bundle/node_modules/undici/types/mock-pool.d.ts +25 -0
  206. package/bundle/node_modules/undici/types/patch.d.ts +29 -0
  207. package/bundle/node_modules/undici/types/pool-stats.d.ts +19 -0
  208. package/bundle/node_modules/undici/types/pool.d.ts +41 -0
  209. package/bundle/node_modules/undici/types/proxy-agent.d.ts +29 -0
  210. package/bundle/node_modules/undici/types/readable.d.ts +68 -0
  211. package/bundle/node_modules/undici/types/retry-agent.d.ts +8 -0
  212. package/bundle/node_modules/undici/types/retry-handler.d.ts +116 -0
  213. package/bundle/node_modules/undici/types/util.d.ts +18 -0
  214. package/bundle/node_modules/undici/types/utility.d.ts +7 -0
  215. package/bundle/node_modules/undici/types/webidl.d.ts +266 -0
  216. package/bundle/node_modules/undici/types/websocket.d.ts +184 -0
  217. package/bundle/sandbox-macos-permissive-closed.sb +26 -0
  218. package/bundle/sandbox-macos-permissive-open.sb +19 -0
  219. package/bundle/sandbox-macos-permissive-proxied.sb +31 -0
  220. package/bundle/sandbox-macos-restrictive-closed.sb +87 -0
  221. package/bundle/sandbox-macos-restrictive-open.sb +90 -0
  222. package/bundle/sandbox-macos-restrictive-proxied.sb +92 -0
  223. package/package.json +137 -0
@@ -0,0 +1,210 @@
1
+ // based on https://github.com/Ethan-Arrowood/undici-fetch/blob/249269714db874351589d2d364a0645d5160ae71/index.d.ts (MIT license)
2
+ // and https://github.com/node-fetch/node-fetch/blob/914ce6be5ec67a8bab63d68510aabf07cb818b6d/index.d.ts (MIT license)
3
+ /// <reference types="node" />
4
+
5
+ import { Blob } from 'buffer'
6
+ import { URL, URLSearchParams } from 'url'
7
+ import { ReadableStream } from 'stream/web'
8
+ import { FormData } from './formdata'
9
+ import { HeaderRecord } from './header'
10
+ import Dispatcher from './dispatcher'
11
+
12
+ export type RequestInfo = string | URL | Request
13
+
14
+ export declare function fetch (
15
+ input: RequestInfo,
16
+ init?: RequestInit
17
+ ): Promise<Response>
18
+
19
+ export type BodyInit =
20
+ | ArrayBuffer
21
+ | AsyncIterable<Uint8Array>
22
+ | Blob
23
+ | FormData
24
+ | Iterable<Uint8Array>
25
+ | NodeJS.ArrayBufferView
26
+ | URLSearchParams
27
+ | null
28
+ | string
29
+
30
+ export class BodyMixin {
31
+ readonly body: ReadableStream | null
32
+ readonly bodyUsed: boolean
33
+
34
+ readonly arrayBuffer: () => Promise<ArrayBuffer>
35
+ readonly blob: () => Promise<Blob>
36
+ /**
37
+ * @deprecated This method is not recommended for parsing multipart/form-data bodies in server environments.
38
+ * It is recommended to use a library such as [@fastify/busboy](https://www.npmjs.com/package/@fastify/busboy) as follows:
39
+ *
40
+ * @example
41
+ * ```js
42
+ * import { Busboy } from '@fastify/busboy'
43
+ * import { Readable } from 'node:stream'
44
+ *
45
+ * const response = await fetch('...')
46
+ * const busboy = new Busboy({ headers: { 'content-type': response.headers.get('content-type') } })
47
+ *
48
+ * // handle events emitted from `busboy`
49
+ *
50
+ * Readable.fromWeb(response.body).pipe(busboy)
51
+ * ```
52
+ */
53
+ readonly formData: () => Promise<FormData>
54
+ readonly json: () => Promise<unknown>
55
+ readonly text: () => Promise<string>
56
+ }
57
+
58
+ export interface SpecIterator<T, TReturn = any, TNext = undefined> {
59
+ next(...args: [] | [TNext]): IteratorResult<T, TReturn>;
60
+ }
61
+
62
+ export interface SpecIterableIterator<T> extends SpecIterator<T> {
63
+ [Symbol.iterator](): SpecIterableIterator<T>;
64
+ }
65
+
66
+ export interface SpecIterable<T> {
67
+ [Symbol.iterator](): SpecIterator<T>;
68
+ }
69
+
70
+ export type HeadersInit = [string, string][] | HeaderRecord | Headers
71
+
72
+ export declare class Headers implements SpecIterable<[string, string]> {
73
+ constructor (init?: HeadersInit)
74
+ readonly append: (name: string, value: string) => void
75
+ readonly delete: (name: string) => void
76
+ readonly get: (name: string) => string | null
77
+ readonly has: (name: string) => boolean
78
+ readonly set: (name: string, value: string) => void
79
+ readonly getSetCookie: () => string[]
80
+ readonly forEach: (
81
+ callbackfn: (value: string, key: string, iterable: Headers) => void,
82
+ thisArg?: unknown
83
+ ) => void
84
+
85
+ readonly keys: () => SpecIterableIterator<string>
86
+ readonly values: () => SpecIterableIterator<string>
87
+ readonly entries: () => SpecIterableIterator<[string, string]>
88
+ readonly [Symbol.iterator]: () => SpecIterableIterator<[string, string]>
89
+ }
90
+
91
+ export type RequestCache =
92
+ | 'default'
93
+ | 'force-cache'
94
+ | 'no-cache'
95
+ | 'no-store'
96
+ | 'only-if-cached'
97
+ | 'reload'
98
+
99
+ export type RequestCredentials = 'omit' | 'include' | 'same-origin'
100
+
101
+ type RequestDestination =
102
+ | ''
103
+ | 'audio'
104
+ | 'audioworklet'
105
+ | 'document'
106
+ | 'embed'
107
+ | 'font'
108
+ | 'image'
109
+ | 'manifest'
110
+ | 'object'
111
+ | 'paintworklet'
112
+ | 'report'
113
+ | 'script'
114
+ | 'sharedworker'
115
+ | 'style'
116
+ | 'track'
117
+ | 'video'
118
+ | 'worker'
119
+ | 'xslt'
120
+
121
+ export interface RequestInit {
122
+ body?: BodyInit | null
123
+ cache?: RequestCache
124
+ credentials?: RequestCredentials
125
+ dispatcher?: Dispatcher
126
+ duplex?: RequestDuplex
127
+ headers?: HeadersInit
128
+ integrity?: string
129
+ keepalive?: boolean
130
+ method?: string
131
+ mode?: RequestMode
132
+ redirect?: RequestRedirect
133
+ referrer?: string
134
+ referrerPolicy?: ReferrerPolicy
135
+ signal?: AbortSignal | null
136
+ window?: null
137
+ }
138
+
139
+ export type ReferrerPolicy =
140
+ | ''
141
+ | 'no-referrer'
142
+ | 'no-referrer-when-downgrade'
143
+ | 'origin'
144
+ | 'origin-when-cross-origin'
145
+ | 'same-origin'
146
+ | 'strict-origin'
147
+ | 'strict-origin-when-cross-origin'
148
+ | 'unsafe-url'
149
+
150
+ export type RequestMode = 'cors' | 'navigate' | 'no-cors' | 'same-origin'
151
+
152
+ export type RequestRedirect = 'error' | 'follow' | 'manual'
153
+
154
+ export type RequestDuplex = 'half'
155
+
156
+ export declare class Request extends BodyMixin {
157
+ constructor (input: RequestInfo, init?: RequestInit)
158
+
159
+ readonly cache: RequestCache
160
+ readonly credentials: RequestCredentials
161
+ readonly destination: RequestDestination
162
+ readonly headers: Headers
163
+ readonly integrity: string
164
+ readonly method: string
165
+ readonly mode: RequestMode
166
+ readonly redirect: RequestRedirect
167
+ readonly referrer: string
168
+ readonly referrerPolicy: ReferrerPolicy
169
+ readonly url: string
170
+
171
+ readonly keepalive: boolean
172
+ readonly signal: AbortSignal
173
+ readonly duplex: RequestDuplex
174
+
175
+ readonly clone: () => Request
176
+ }
177
+
178
+ export interface ResponseInit {
179
+ readonly status?: number
180
+ readonly statusText?: string
181
+ readonly headers?: HeadersInit
182
+ }
183
+
184
+ export type ResponseType =
185
+ | 'basic'
186
+ | 'cors'
187
+ | 'default'
188
+ | 'error'
189
+ | 'opaque'
190
+ | 'opaqueredirect'
191
+
192
+ export type ResponseRedirectStatus = 301 | 302 | 303 | 307 | 308
193
+
194
+ export declare class Response extends BodyMixin {
195
+ constructor (body?: BodyInit, init?: ResponseInit)
196
+
197
+ readonly headers: Headers
198
+ readonly ok: boolean
199
+ readonly status: number
200
+ readonly statusText: string
201
+ readonly type: ResponseType
202
+ readonly url: string
203
+ readonly redirected: boolean
204
+
205
+ readonly clone: () => Response
206
+
207
+ static error (): Response
208
+ static json (data: any, init?: ResponseInit): Response
209
+ static redirect (url: string | URL, status: ResponseRedirectStatus): Response
210
+ }
@@ -0,0 +1,108 @@
1
+ // Based on https://github.com/octet-stream/form-data/blob/2d0f0dc371517444ce1f22cdde13f51995d0953a/lib/FormData.ts (MIT)
2
+ /// <reference types="node" />
3
+
4
+ import { File } from 'buffer'
5
+ import { SpecIterableIterator } from './fetch'
6
+
7
+ /**
8
+ * A `string` or `File` that represents a single value from a set of `FormData` key-value pairs.
9
+ */
10
+ declare type FormDataEntryValue = string | File
11
+
12
+ /**
13
+ * Provides a way to easily construct a set of key/value pairs representing form fields and their values, which can then be easily sent using fetch().
14
+ */
15
+ export declare class FormData {
16
+ /**
17
+ * Appends a new value onto an existing key inside a FormData object,
18
+ * or adds the key if it does not already exist.
19
+ *
20
+ * The difference between `set()` and `append()` is that if the specified key already exists, `set()` will overwrite all existing values with the new one, whereas `append()` will append the new value onto the end of the existing set of values.
21
+ *
22
+ * @param name The name of the field whose data is contained in `value`.
23
+ * @param value The field's value. This can be [`Blob`](https://developer.mozilla.org/en-US/docs/Web/API/Blob)
24
+ or [`File`](https://developer.mozilla.org/en-US/docs/Web/API/File). If none of these are specified the value is converted to a string.
25
+ * @param fileName The filename reported to the server, when a Blob or File is passed as the second parameter. The default filename for Blob objects is "blob". The default filename for File objects is the file's filename.
26
+ */
27
+ append (name: string, value: unknown, fileName?: string): void
28
+
29
+ /**
30
+ * Set a new value for an existing key inside FormData,
31
+ * or add the new field if it does not already exist.
32
+ *
33
+ * @param name The name of the field whose data is contained in `value`.
34
+ * @param value The field's value. This can be [`Blob`](https://developer.mozilla.org/en-US/docs/Web/API/Blob)
35
+ or [`File`](https://developer.mozilla.org/en-US/docs/Web/API/File). If none of these are specified the value is converted to a string.
36
+ * @param fileName The filename reported to the server, when a Blob or File is passed as the second parameter. The default filename for Blob objects is "blob". The default filename for File objects is the file's filename.
37
+ *
38
+ */
39
+ set (name: string, value: unknown, fileName?: string): void
40
+
41
+ /**
42
+ * Returns the first value associated with a given key from within a `FormData` object.
43
+ * If you expect multiple values and want all of them, use the `getAll()` method instead.
44
+ *
45
+ * @param {string} name A name of the value you want to retrieve.
46
+ *
47
+ * @returns A `FormDataEntryValue` containing the value. If the key doesn't exist, the method returns null.
48
+ */
49
+ get (name: string): FormDataEntryValue | null
50
+
51
+ /**
52
+ * Returns all the values associated with a given key from within a `FormData` object.
53
+ *
54
+ * @param {string} name A name of the value you want to retrieve.
55
+ *
56
+ * @returns An array of `FormDataEntryValue` whose key matches the value passed in the `name` parameter. If the key doesn't exist, the method returns an empty list.
57
+ */
58
+ getAll (name: string): FormDataEntryValue[]
59
+
60
+ /**
61
+ * Returns a boolean stating whether a `FormData` object contains a certain key.
62
+ *
63
+ * @param name A string representing the name of the key you want to test for.
64
+ *
65
+ * @return A boolean value.
66
+ */
67
+ has (name: string): boolean
68
+
69
+ /**
70
+ * Deletes a key and its value(s) from a `FormData` object.
71
+ *
72
+ * @param name The name of the key you want to delete.
73
+ */
74
+ delete (name: string): void
75
+
76
+ /**
77
+ * Executes given callback function for each field of the FormData instance
78
+ */
79
+ forEach: (
80
+ callbackfn: (value: FormDataEntryValue, key: string, iterable: FormData) => void,
81
+ thisArg?: unknown
82
+ ) => void
83
+
84
+ /**
85
+ * Returns an [`iterator`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols) allowing to go through all keys contained in this `FormData` object.
86
+ * Each key is a `string`.
87
+ */
88
+ keys: () => SpecIterableIterator<string>
89
+
90
+ /**
91
+ * Returns an [`iterator`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols) allowing to go through all values contained in this object `FormData` object.
92
+ * Each value is a [`FormDataValue`](https://developer.mozilla.org/en-US/docs/Web/API/FormDataEntryValue).
93
+ */
94
+ values: () => SpecIterableIterator<FormDataEntryValue>
95
+
96
+ /**
97
+ * Returns an [`iterator`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols) allowing to go through the `FormData` key/value pairs.
98
+ * The key of each pair is a string; the value is a [`FormDataValue`](https://developer.mozilla.org/en-US/docs/Web/API/FormDataEntryValue).
99
+ */
100
+ entries: () => SpecIterableIterator<[string, FormDataEntryValue]>
101
+
102
+ /**
103
+ * An alias for FormData#entries()
104
+ */
105
+ [Symbol.iterator]: () => SpecIterableIterator<[string, FormDataEntryValue]>
106
+
107
+ readonly [Symbol.toStringTag]: string
108
+ }
@@ -0,0 +1,9 @@
1
+ import Dispatcher from './dispatcher'
2
+
3
+ declare function setGlobalDispatcher<DispatcherImplementation extends Dispatcher> (dispatcher: DispatcherImplementation): void
4
+ declare function getGlobalDispatcher (): Dispatcher
5
+
6
+ export {
7
+ getGlobalDispatcher,
8
+ setGlobalDispatcher
9
+ }
@@ -0,0 +1,7 @@
1
+ declare function setGlobalOrigin (origin: string | URL | undefined): void
2
+ declare function getGlobalOrigin (): URL | undefined
3
+
4
+ export {
5
+ setGlobalOrigin,
6
+ getGlobalOrigin
7
+ }
@@ -0,0 +1,75 @@
1
+ import { URL } from 'url'
2
+ import Dispatcher from './dispatcher'
3
+ import buildConnector from './connector'
4
+
5
+ type H2ClientOptions = Omit<Dispatcher.ConnectOptions, 'origin'>
6
+
7
+ /**
8
+ * A basic H2C client, mapped on top a single TCP connection. Pipelining is disabled by default.
9
+ */
10
+ export class H2CClient extends Dispatcher {
11
+ constructor (url: string | URL, options?: H2CClient.Options)
12
+ /** Property to get and set the pipelining factor. */
13
+ pipelining: number
14
+ /** `true` after `client.close()` has been called. */
15
+ closed: boolean
16
+ /** `true` after `client.destroyed()` has been called or `client.close()` has been called and the client shutdown has completed. */
17
+ destroyed: boolean
18
+
19
+ // Override dispatcher APIs.
20
+ override connect (
21
+ options: H2ClientOptions
22
+ ): Promise<Dispatcher.ConnectData>
23
+ override connect (
24
+ options: H2ClientOptions,
25
+ callback: (err: Error | null, data: Dispatcher.ConnectData) => void
26
+ ): void
27
+ }
28
+
29
+ export declare namespace H2CClient {
30
+ export interface Options {
31
+ /** The maximum length of request headers in bytes. Default: Node.js' `--max-http-header-size` or `16384` (16KiB). */
32
+ maxHeaderSize?: number;
33
+ /** The amount of time, in milliseconds, the parser will wait to receive the complete HTTP headers (Node 14 and above only). Default: `300e3` milliseconds (300s). */
34
+ headersTimeout?: number;
35
+ /** TODO */
36
+ connectTimeout?: number;
37
+ /** The timeout after which a request will time out, in milliseconds. Monitors time between receiving body data. Use `0` to disable it entirely. Default: `300e3` milliseconds (300s). */
38
+ bodyTimeout?: number;
39
+ /** the timeout, in milliseconds, after which a socket without active requests will time out. Monitors time between activity on a connected socket. This value may be overridden by *keep-alive* hints from the server. Default: `4e3` milliseconds (4s). */
40
+ keepAliveTimeout?: number;
41
+ /** the maximum allowed `idleTimeout`, in milliseconds, when overridden by *keep-alive* hints from the server. Default: `600e3` milliseconds (10min). */
42
+ keepAliveMaxTimeout?: number;
43
+ /** A number of milliseconds subtracted from server *keep-alive* hints when overriding `idleTimeout` to account for timing inaccuracies caused by e.g. transport latency. Default: `1e3` milliseconds (1s). */
44
+ keepAliveTimeoutThreshold?: number;
45
+ /** TODO */
46
+ socketPath?: string;
47
+ /** The amount of concurrent requests to be sent over the single TCP/TLS connection according to [RFC7230](https://tools.ietf.org/html/rfc7230#section-6.3.2). Default: `1`. */
48
+ pipelining?: number;
49
+ /** If `true`, an error is thrown when the request content-length header doesn't match the length of the request body. Default: `true`. */
50
+ strictContentLength?: boolean;
51
+ /** TODO */
52
+ maxCachedSessions?: number;
53
+ /** TODO */
54
+ maxRedirections?: number;
55
+ /** TODO */
56
+ connect?: Omit<Partial<buildConnector.BuildOptions>, 'allowH2'> | buildConnector.connector;
57
+ /** TODO */
58
+ maxRequestsPerClient?: number;
59
+ /** TODO */
60
+ localAddress?: string;
61
+ /** Max response body size in bytes, -1 is disabled */
62
+ maxResponseSize?: number;
63
+ /** Enables a family autodetection algorithm that loosely implements section 5 of RFC 8305. */
64
+ autoSelectFamily?: boolean;
65
+ /** The amount of time in milliseconds to wait for a connection attempt to finish before trying the next address when using the `autoSelectFamily` option. */
66
+ autoSelectFamilyAttemptTimeout?: number;
67
+ /**
68
+ * @description Dictates the maximum number of concurrent streams for a single H2 session. It can be overridden by a SETTINGS remote frame.
69
+ * @default 100
70
+ */
71
+ maxConcurrentStreams?: number
72
+ }
73
+ }
74
+
75
+ export default H2CClient
@@ -0,0 +1,15 @@
1
+ import Dispatcher from './dispatcher'
2
+
3
+ export declare class RedirectHandler implements Dispatcher.DispatchHandler {
4
+ constructor (
5
+ dispatch: Dispatcher,
6
+ maxRedirections: number,
7
+ opts: Dispatcher.DispatchOptions,
8
+ handler: Dispatcher.DispatchHandler,
9
+ redirectionLimitReached: boolean
10
+ )
11
+ }
12
+
13
+ export declare class DecoratorHandler implements Dispatcher.DispatchHandler {
14
+ constructor (handler: Dispatcher.DispatchHandler)
15
+ }
@@ -0,0 +1,160 @@
1
+ import { Autocomplete } from './utility'
2
+
3
+ /**
4
+ * The header type declaration of `undici`.
5
+ */
6
+ export type IncomingHttpHeaders = Record<string, string | string[] | undefined>
7
+
8
+ type HeaderNames = Autocomplete<
9
+ | 'Accept'
10
+ | 'Accept-CH'
11
+ | 'Accept-Charset'
12
+ | 'Accept-Encoding'
13
+ | 'Accept-Language'
14
+ | 'Accept-Patch'
15
+ | 'Accept-Post'
16
+ | 'Accept-Ranges'
17
+ | 'Access-Control-Allow-Credentials'
18
+ | 'Access-Control-Allow-Headers'
19
+ | 'Access-Control-Allow-Methods'
20
+ | 'Access-Control-Allow-Origin'
21
+ | 'Access-Control-Expose-Headers'
22
+ | 'Access-Control-Max-Age'
23
+ | 'Access-Control-Request-Headers'
24
+ | 'Access-Control-Request-Method'
25
+ | 'Age'
26
+ | 'Allow'
27
+ | 'Alt-Svc'
28
+ | 'Alt-Used'
29
+ | 'Authorization'
30
+ | 'Cache-Control'
31
+ | 'Clear-Site-Data'
32
+ | 'Connection'
33
+ | 'Content-Disposition'
34
+ | 'Content-Encoding'
35
+ | 'Content-Language'
36
+ | 'Content-Length'
37
+ | 'Content-Location'
38
+ | 'Content-Range'
39
+ | 'Content-Security-Policy'
40
+ | 'Content-Security-Policy-Report-Only'
41
+ | 'Content-Type'
42
+ | 'Cookie'
43
+ | 'Cross-Origin-Embedder-Policy'
44
+ | 'Cross-Origin-Opener-Policy'
45
+ | 'Cross-Origin-Resource-Policy'
46
+ | 'Date'
47
+ | 'Device-Memory'
48
+ | 'ETag'
49
+ | 'Expect'
50
+ | 'Expect-CT'
51
+ | 'Expires'
52
+ | 'Forwarded'
53
+ | 'From'
54
+ | 'Host'
55
+ | 'If-Match'
56
+ | 'If-Modified-Since'
57
+ | 'If-None-Match'
58
+ | 'If-Range'
59
+ | 'If-Unmodified-Since'
60
+ | 'Keep-Alive'
61
+ | 'Last-Modified'
62
+ | 'Link'
63
+ | 'Location'
64
+ | 'Max-Forwards'
65
+ | 'Origin'
66
+ | 'Permissions-Policy'
67
+ | 'Priority'
68
+ | 'Proxy-Authenticate'
69
+ | 'Proxy-Authorization'
70
+ | 'Range'
71
+ | 'Referer'
72
+ | 'Referrer-Policy'
73
+ | 'Retry-After'
74
+ | 'Sec-Fetch-Dest'
75
+ | 'Sec-Fetch-Mode'
76
+ | 'Sec-Fetch-Site'
77
+ | 'Sec-Fetch-User'
78
+ | 'Sec-Purpose'
79
+ | 'Sec-WebSocket-Accept'
80
+ | 'Server'
81
+ | 'Server-Timing'
82
+ | 'Service-Worker-Navigation-Preload'
83
+ | 'Set-Cookie'
84
+ | 'SourceMap'
85
+ | 'Strict-Transport-Security'
86
+ | 'TE'
87
+ | 'Timing-Allow-Origin'
88
+ | 'Trailer'
89
+ | 'Transfer-Encoding'
90
+ | 'Upgrade'
91
+ | 'Upgrade-Insecure-Requests'
92
+ | 'User-Agent'
93
+ | 'Vary'
94
+ | 'Via'
95
+ | 'WWW-Authenticate'
96
+ | 'X-Content-Type-Options'
97
+ | 'X-Frame-Options'
98
+ >
99
+
100
+ type IANARegisteredMimeType = Autocomplete<
101
+ | 'audio/aac'
102
+ | 'video/x-msvideo'
103
+ | 'image/avif'
104
+ | 'video/av1'
105
+ | 'application/octet-stream'
106
+ | 'image/bmp'
107
+ | 'text/css'
108
+ | 'text/csv'
109
+ | 'application/vnd.ms-fontobject'
110
+ | 'application/epub+zip'
111
+ | 'image/gif'
112
+ | 'application/gzip'
113
+ | 'text/html'
114
+ | 'image/x-icon'
115
+ | 'text/calendar'
116
+ | 'image/jpeg'
117
+ | 'text/javascript'
118
+ | 'application/json'
119
+ | 'application/ld+json'
120
+ | 'audio/x-midi'
121
+ | 'audio/mpeg'
122
+ | 'video/mp4'
123
+ | 'video/mpeg'
124
+ | 'audio/ogg'
125
+ | 'video/ogg'
126
+ | 'application/ogg'
127
+ | 'audio/opus'
128
+ | 'font/otf'
129
+ | 'application/pdf'
130
+ | 'image/png'
131
+ | 'application/rtf'
132
+ | 'image/svg+xml'
133
+ | 'image/tiff'
134
+ | 'video/mp2t'
135
+ | 'font/ttf'
136
+ | 'text/plain'
137
+ | 'application/wasm'
138
+ | 'video/webm'
139
+ | 'audio/webm'
140
+ | 'image/webp'
141
+ | 'font/woff'
142
+ | 'font/woff2'
143
+ | 'application/xhtml+xml'
144
+ | 'application/xml'
145
+ | 'application/zip'
146
+ | 'video/3gpp'
147
+ | 'video/3gpp2'
148
+ | 'model/gltf+json'
149
+ | 'model/gltf-binary'
150
+ >
151
+
152
+ type KnownHeaderValues = {
153
+ 'content-type': IANARegisteredMimeType
154
+ }
155
+
156
+ export type HeaderRecord = {
157
+ [K in HeaderNames | Lowercase<HeaderNames>]?: Lowercase<K> extends keyof KnownHeaderValues
158
+ ? KnownHeaderValues[Lowercase<K>]
159
+ : string
160
+ }
@@ -0,0 +1,75 @@
1
+ import Dispatcher from './dispatcher'
2
+ import { setGlobalDispatcher, getGlobalDispatcher } from './global-dispatcher'
3
+ import { setGlobalOrigin, getGlobalOrigin } from './global-origin'
4
+ import Pool from './pool'
5
+ import { RedirectHandler, DecoratorHandler } from './handlers'
6
+
7
+ import BalancedPool from './balanced-pool'
8
+ import Client from './client'
9
+ import H2CClient from './h2c-client'
10
+ import buildConnector from './connector'
11
+ import errors from './errors'
12
+ import Agent from './agent'
13
+ import MockClient from './mock-client'
14
+ import MockPool from './mock-pool'
15
+ import MockAgent from './mock-agent'
16
+ import { MockCallHistory, MockCallHistoryLog } from './mock-call-history'
17
+ import mockErrors from './mock-errors'
18
+ import ProxyAgent from './proxy-agent'
19
+ import EnvHttpProxyAgent from './env-http-proxy-agent'
20
+ import RetryHandler from './retry-handler'
21
+ import RetryAgent from './retry-agent'
22
+ import { request, pipeline, stream, connect, upgrade } from './api'
23
+ import interceptors from './interceptors'
24
+
25
+ export * from './util'
26
+ export * from './cookies'
27
+ export * from './eventsource'
28
+ export * from './fetch'
29
+ export * from './formdata'
30
+ export * from './diagnostics-channel'
31
+ export * from './websocket'
32
+ export * from './content-type'
33
+ export * from './cache'
34
+ export { Interceptable } from './mock-interceptor'
35
+
36
+ export { Dispatcher, BalancedPool, Pool, Client, buildConnector, errors, Agent, request, stream, pipeline, connect, upgrade, setGlobalDispatcher, getGlobalDispatcher, setGlobalOrigin, getGlobalOrigin, interceptors, MockClient, MockPool, MockAgent, MockCallHistory, MockCallHistoryLog, mockErrors, ProxyAgent, EnvHttpProxyAgent, RedirectHandler, DecoratorHandler, RetryHandler, RetryAgent, H2CClient }
37
+ export default Undici
38
+
39
+ declare namespace Undici {
40
+ const Dispatcher: typeof import('./dispatcher').default
41
+ const Pool: typeof import('./pool').default
42
+ const RedirectHandler: typeof import ('./handlers').RedirectHandler
43
+ const DecoratorHandler: typeof import ('./handlers').DecoratorHandler
44
+ const RetryHandler: typeof import ('./retry-handler').default
45
+ const BalancedPool: typeof import('./balanced-pool').default
46
+ const Client: typeof import('./client').default
47
+ const H2CClient: typeof import('./h2c-client').default
48
+ const buildConnector: typeof import('./connector').default
49
+ const errors: typeof import('./errors').default
50
+ const Agent: typeof import('./agent').default
51
+ const setGlobalDispatcher: typeof import('./global-dispatcher').setGlobalDispatcher
52
+ const getGlobalDispatcher: typeof import('./global-dispatcher').getGlobalDispatcher
53
+ const request: typeof import('./api').request
54
+ const stream: typeof import('./api').stream
55
+ const pipeline: typeof import('./api').pipeline
56
+ const connect: typeof import('./api').connect
57
+ const upgrade: typeof import('./api').upgrade
58
+ const MockClient: typeof import('./mock-client').default
59
+ const MockPool: typeof import('./mock-pool').default
60
+ const MockAgent: typeof import('./mock-agent').default
61
+ const MockCallHistory: typeof import('./mock-call-history').MockCallHistory
62
+ const MockCallHistoryLog: typeof import('./mock-call-history').MockCallHistoryLog
63
+ const mockErrors: typeof import('./mock-errors').default
64
+ const fetch: typeof import('./fetch').fetch
65
+ const Headers: typeof import('./fetch').Headers
66
+ const Response: typeof import('./fetch').Response
67
+ const Request: typeof import('./fetch').Request
68
+ const FormData: typeof import('./formdata').FormData
69
+ const caches: typeof import('./cache').caches
70
+ const interceptors: typeof import('./interceptors').default
71
+ const cacheStores: {
72
+ MemoryCacheStore: typeof import('./cache-interceptor').default.MemoryCacheStore,
73
+ SqliteCacheStore: typeof import('./cache-interceptor').default.SqliteCacheStore
74
+ }
75
+ }