@continuous-labs/sdk 0.0.4 → 0.0.6

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 (254) hide show
  1. package/README.md +1 -1
  2. package/esm/funcs/simulations-create-simulation.d.ts +1 -1
  3. package/esm/funcs/simulations-create-simulation.js +1 -1
  4. package/esm/funcs/simulations-fork-simulation.d.ts +1 -1
  5. package/esm/funcs/simulations-fork-simulation.js +1 -1
  6. package/esm/funcs/simulations-get-simulation.d.ts +1 -1
  7. package/esm/funcs/simulations-get-simulation.js +1 -1
  8. package/esm/funcs/simulations-list-simulation-steps.d.ts +1 -1
  9. package/esm/funcs/simulations-list-simulation-steps.js +1 -1
  10. package/esm/funcs/simulations-mint-simulation-token.d.ts +1 -1
  11. package/esm/funcs/simulations-mint-simulation-token.js +1 -1
  12. package/esm/funcs/simulations-start-simulation.d.ts +1 -1
  13. package/esm/funcs/simulations-start-simulation.js +1 -1
  14. package/esm/funcs/simulations-stop-simulation.d.ts +1 -1
  15. package/esm/funcs/simulations-stop-simulation.js +1 -1
  16. package/esm/funcs/simulators-build-simulator.d.ts +1 -1
  17. package/esm/funcs/simulators-build-simulator.js +1 -1
  18. package/esm/funcs/worlds-build-world.d.ts +1 -1
  19. package/esm/funcs/worlds-build-world.js +1 -1
  20. package/esm/funcs/worlds-start-world.d.ts +1 -1
  21. package/esm/funcs/worlds-start-world.js +1 -1
  22. package/esm/lib/config.d.ts +2 -2
  23. package/esm/lib/config.js +2 -2
  24. package/esm/models/build-simulator-request.d.ts +6 -6
  25. package/esm/models/build-simulator-request.js +1 -1
  26. package/esm/models/build-world-request.d.ts +2 -2
  27. package/esm/models/create-simulation-request.d.ts +1 -1
  28. package/esm/models/created-simulation.d.ts +8 -8
  29. package/esm/models/created-simulation.js +1 -1
  30. package/esm/models/list-worlds-response.d.ts +1 -1
  31. package/esm/models/operations/build-simulator.d.ts +1 -1
  32. package/esm/models/operations/cancel-simulator-build.d.ts +1 -1
  33. package/esm/models/operations/cancel-world-build.d.ts +1 -1
  34. package/esm/models/operations/delete-simulation.d.ts +1 -1
  35. package/esm/models/operations/delete-simulator.d.ts +1 -1
  36. package/esm/models/operations/delete-world.d.ts +1 -1
  37. package/esm/models/operations/fork-simulation.d.ts +1 -1
  38. package/esm/models/operations/get-simulation.d.ts +1 -1
  39. package/esm/models/operations/get-simulator.d.ts +1 -1
  40. package/esm/models/operations/get-world.d.ts +1 -1
  41. package/esm/models/operations/list-simulation-steps.d.ts +1 -1
  42. package/esm/models/operations/list-simulations.d.ts +4 -4
  43. package/esm/models/operations/list-simulations.js +1 -1
  44. package/esm/models/operations/list-simulators.d.ts +1 -1
  45. package/esm/models/operations/list-worlds.d.ts +1 -1
  46. package/esm/models/operations/mint-simulation-token.d.ts +1 -1
  47. package/esm/models/operations/start-simulation.d.ts +1 -1
  48. package/esm/models/operations/start-world.d.ts +1 -1
  49. package/esm/models/operations/stop-simulation.d.ts +1 -1
  50. package/esm/models/operations/stop-world.d.ts +1 -1
  51. package/esm/models/simulation-token.d.ts +1 -1
  52. package/esm/models/simulation.d.ts +7 -7
  53. package/esm/models/simulation.js +1 -1
  54. package/esm/models/simulator.d.ts +8 -8
  55. package/esm/models/simulator.js +2 -2
  56. package/esm/models/step.d.ts +2 -2
  57. package/esm/models/world-simulation.d.ts +2 -2
  58. package/esm/models/world.d.ts +7 -7
  59. package/esm/models/world.js +1 -1
  60. package/esm/sdk/simulations.d.ts +7 -7
  61. package/esm/sdk/simulations.js +7 -7
  62. package/esm/sdk/simulators.d.ts +1 -1
  63. package/esm/sdk/simulators.js +1 -1
  64. package/esm/sdk/worlds.d.ts +2 -2
  65. package/esm/sdk/worlds.js +2 -2
  66. package/jsr.json +1 -1
  67. package/package.json +2 -2
  68. package/src/funcs/simulations-create-simulation.ts +1 -1
  69. package/src/funcs/simulations-fork-simulation.ts +1 -1
  70. package/src/funcs/simulations-get-simulation.ts +1 -1
  71. package/src/funcs/simulations-list-simulation-steps.ts +1 -1
  72. package/src/funcs/simulations-mint-simulation-token.ts +1 -1
  73. package/src/funcs/simulations-start-simulation.ts +1 -1
  74. package/src/funcs/simulations-stop-simulation.ts +1 -1
  75. package/src/funcs/simulators-build-simulator.ts +1 -1
  76. package/src/funcs/worlds-build-world.ts +1 -1
  77. package/src/funcs/worlds-start-world.ts +1 -1
  78. package/src/lib/config.ts +2 -2
  79. package/src/models/build-simulator-request.ts +6 -6
  80. package/src/models/build-world-request.ts +2 -2
  81. package/src/models/create-simulation-request.ts +1 -1
  82. package/src/models/created-simulation.ts +8 -8
  83. package/src/models/list-worlds-response.ts +1 -1
  84. package/src/models/operations/build-simulator.ts +1 -1
  85. package/src/models/operations/cancel-simulator-build.ts +1 -1
  86. package/src/models/operations/cancel-world-build.ts +1 -1
  87. package/src/models/operations/delete-simulation.ts +1 -1
  88. package/src/models/operations/delete-simulator.ts +1 -1
  89. package/src/models/operations/delete-world.ts +1 -1
  90. package/src/models/operations/fork-simulation.ts +1 -1
  91. package/src/models/operations/get-simulation.ts +1 -1
  92. package/src/models/operations/get-simulator.ts +1 -1
  93. package/src/models/operations/get-world.ts +1 -1
  94. package/src/models/operations/list-simulation-steps.ts +1 -1
  95. package/src/models/operations/list-simulations.ts +4 -4
  96. package/src/models/operations/list-simulators.ts +1 -1
  97. package/src/models/operations/list-worlds.ts +1 -1
  98. package/src/models/operations/mint-simulation-token.ts +1 -1
  99. package/src/models/operations/start-simulation.ts +1 -1
  100. package/src/models/operations/start-world.ts +1 -1
  101. package/src/models/operations/stop-simulation.ts +1 -1
  102. package/src/models/operations/stop-world.ts +1 -1
  103. package/src/models/simulation-token.ts +1 -1
  104. package/src/models/simulation.ts +7 -7
  105. package/src/models/simulator.ts +8 -8
  106. package/src/models/step.ts +2 -2
  107. package/src/models/world-simulation.ts +2 -2
  108. package/src/models/world.ts +7 -7
  109. package/src/sdk/simulations.ts +7 -7
  110. package/src/sdk/simulators.ts +1 -1
  111. package/src/sdk/worlds.ts +2 -2
  112. package/esm/models/errors/continuous-simulation-default-error.d.ts +0 -10
  113. package/esm/models/errors/continuous-simulation-default-error.d.ts.map +0 -1
  114. package/esm/models/errors/continuous-simulation-default-error.js +0 -30
  115. package/esm/models/errors/continuous-simulation-default-error.js.map +0 -1
  116. package/esm/models/errors/continuous-simulation-error.d.ts +0 -19
  117. package/esm/models/errors/continuous-simulation-error.d.ts.map +0 -1
  118. package/esm/models/errors/continuous-simulation-error.js +0 -26
  119. package/esm/models/errors/continuous-simulation-error.js.map +0 -1
  120. package/examples/node_modules/@types/node/assert/strict.d.ts +0 -8
  121. package/examples/node_modules/@types/node/assert.d.ts +0 -1062
  122. package/examples/node_modules/@types/node/async_hooks.d.ts +0 -605
  123. package/examples/node_modules/@types/node/buffer.buffer.d.ts +0 -471
  124. package/examples/node_modules/@types/node/buffer.d.ts +0 -1936
  125. package/examples/node_modules/@types/node/child_process.d.ts +0 -1475
  126. package/examples/node_modules/@types/node/cluster.d.ts +0 -577
  127. package/examples/node_modules/@types/node/compatibility/disposable.d.ts +0 -16
  128. package/examples/node_modules/@types/node/compatibility/index.d.ts +0 -9
  129. package/examples/node_modules/@types/node/compatibility/indexable.d.ts +0 -20
  130. package/examples/node_modules/@types/node/compatibility/iterators.d.ts +0 -21
  131. package/examples/node_modules/@types/node/console.d.ts +0 -452
  132. package/examples/node_modules/@types/node/constants.d.ts +0 -21
  133. package/examples/node_modules/@types/node/crypto.d.ts +0 -4590
  134. package/examples/node_modules/@types/node/dgram.d.ts +0 -597
  135. package/examples/node_modules/@types/node/diagnostics_channel.d.ts +0 -578
  136. package/examples/node_modules/@types/node/dns/promises.d.ts +0 -479
  137. package/examples/node_modules/@types/node/dns.d.ts +0 -871
  138. package/examples/node_modules/@types/node/domain.d.ts +0 -170
  139. package/examples/node_modules/@types/node/events.d.ts +0 -977
  140. package/examples/node_modules/@types/node/fs/promises.d.ts +0 -1270
  141. package/examples/node_modules/@types/node/fs.d.ts +0 -4375
  142. package/examples/node_modules/@types/node/globals.d.ts +0 -172
  143. package/examples/node_modules/@types/node/globals.typedarray.d.ts +0 -38
  144. package/examples/node_modules/@types/node/http.d.ts +0 -2049
  145. package/examples/node_modules/@types/node/http2.d.ts +0 -2712
  146. package/examples/node_modules/@types/node/https.d.ts +0 -578
  147. package/examples/node_modules/@types/node/index.d.ts +0 -93
  148. package/examples/node_modules/@types/node/inspector.generated.d.ts +0 -3966
  149. package/examples/node_modules/@types/node/module.d.ts +0 -539
  150. package/examples/node_modules/@types/node/net.d.ts +0 -1031
  151. package/examples/node_modules/@types/node/os.d.ts +0 -506
  152. package/examples/node_modules/@types/node/path.d.ts +0 -200
  153. package/examples/node_modules/@types/node/perf_hooks.d.ts +0 -961
  154. package/examples/node_modules/@types/node/process.d.ts +0 -1961
  155. package/examples/node_modules/@types/node/punycode.d.ts +0 -117
  156. package/examples/node_modules/@types/node/querystring.d.ts +0 -152
  157. package/examples/node_modules/@types/node/readline/promises.d.ts +0 -162
  158. package/examples/node_modules/@types/node/readline.d.ts +0 -589
  159. package/examples/node_modules/@types/node/repl.d.ts +0 -430
  160. package/examples/node_modules/@types/node/sea.d.ts +0 -153
  161. package/examples/node_modules/@types/node/stream/consumers.d.ts +0 -38
  162. package/examples/node_modules/@types/node/stream/promises.d.ts +0 -90
  163. package/examples/node_modules/@types/node/stream/web.d.ts +0 -533
  164. package/examples/node_modules/@types/node/stream.d.ts +0 -1698
  165. package/examples/node_modules/@types/node/string_decoder.d.ts +0 -67
  166. package/examples/node_modules/@types/node/test.d.ts +0 -1787
  167. package/examples/node_modules/@types/node/timers/promises.d.ts +0 -108
  168. package/examples/node_modules/@types/node/timers.d.ts +0 -286
  169. package/examples/node_modules/@types/node/tls.d.ts +0 -1259
  170. package/examples/node_modules/@types/node/trace_events.d.ts +0 -197
  171. package/examples/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +0 -468
  172. package/examples/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +0 -34
  173. package/examples/node_modules/@types/node/ts5.6/index.d.ts +0 -93
  174. package/examples/node_modules/@types/node/tty.d.ts +0 -208
  175. package/examples/node_modules/@types/node/url.d.ts +0 -964
  176. package/examples/node_modules/@types/node/util.d.ts +0 -2331
  177. package/examples/node_modules/@types/node/v8.d.ts +0 -809
  178. package/examples/node_modules/@types/node/vm.d.ts +0 -1001
  179. package/examples/node_modules/@types/node/wasi.d.ts +0 -181
  180. package/examples/node_modules/@types/node/web-globals/abortcontroller.d.ts +0 -34
  181. package/examples/node_modules/@types/node/web-globals/domexception.d.ts +0 -68
  182. package/examples/node_modules/@types/node/web-globals/events.d.ts +0 -97
  183. package/examples/node_modules/@types/node/web-globals/fetch.d.ts +0 -55
  184. package/examples/node_modules/@types/node/worker_threads.d.ts +0 -715
  185. package/examples/node_modules/@types/node/zlib.d.ts +0 -598
  186. package/examples/node_modules/dotenv/config.d.ts +0 -1
  187. package/examples/node_modules/dotenv/config.js +0 -9
  188. package/examples/node_modules/dotenv/lib/cli-options.js +0 -17
  189. package/examples/node_modules/dotenv/lib/env-options.js +0 -28
  190. package/examples/node_modules/dotenv/lib/main.d.ts +0 -162
  191. package/examples/node_modules/dotenv/lib/main.js +0 -386
  192. package/examples/node_modules/esbuild/install.js +0 -300
  193. package/examples/node_modules/esbuild/lib/main.d.ts +0 -720
  194. package/examples/node_modules/esbuild/lib/main.js +0 -2536
  195. package/examples/node_modules/tsx/dist/cjs/api/index.mjs +0 -1
  196. package/examples/node_modules/tsx/dist/cjs/index.mjs +0 -1
  197. package/examples/node_modules/tsx/dist/cli.mjs +0 -55
  198. package/examples/node_modules/tsx/dist/client-D_mPDF5S.mjs +0 -1
  199. package/examples/node_modules/tsx/dist/esm/api/index.mjs +0 -1
  200. package/examples/node_modules/tsx/dist/esm/index.mjs +0 -1
  201. package/examples/node_modules/tsx/dist/get-pipe-path-_tAJyU_v.mjs +0 -1
  202. package/examples/node_modules/tsx/dist/index-DCefr8NP.mjs +0 -14
  203. package/examples/node_modules/tsx/dist/index-gbaejti9.mjs +0 -1
  204. package/examples/node_modules/tsx/dist/lexer-DQCqS3nf.mjs +0 -3
  205. package/examples/node_modules/tsx/dist/loader.mjs +0 -1
  206. package/examples/node_modules/tsx/dist/node-features-JeyyvQz6.mjs +0 -1
  207. package/examples/node_modules/tsx/dist/package-BL7Whz21.mjs +0 -1
  208. package/examples/node_modules/tsx/dist/patch-repl.mjs +0 -1
  209. package/examples/node_modules/tsx/dist/preflight.mjs +0 -1
  210. package/examples/node_modules/tsx/dist/register-DHgpdRjs.mjs +0 -10
  211. package/examples/node_modules/tsx/dist/register-SoqaU4rg.mjs +0 -2
  212. package/examples/node_modules/tsx/dist/repl.mjs +0 -3
  213. package/examples/node_modules/tsx/dist/require-Cuv-0BLU.mjs +0 -1
  214. package/examples/node_modules/tsx/dist/suppress-warnings.mjs +0 -1
  215. package/examples/node_modules/tsx/dist/temporary-directory-BDDVQOvU.mjs +0 -1
  216. package/examples/node_modules/tsx/dist/types-Cxp8y2TL.d.ts +0 -5
  217. package/examples/node_modules/undici-types/agent.d.ts +0 -31
  218. package/examples/node_modules/undici-types/api.d.ts +0 -43
  219. package/examples/node_modules/undici-types/balanced-pool.d.ts +0 -29
  220. package/examples/node_modules/undici-types/cache.d.ts +0 -36
  221. package/examples/node_modules/undici-types/client.d.ts +0 -108
  222. package/examples/node_modules/undici-types/connector.d.ts +0 -34
  223. package/examples/node_modules/undici-types/content-type.d.ts +0 -21
  224. package/examples/node_modules/undici-types/cookies.d.ts +0 -28
  225. package/examples/node_modules/undici-types/diagnostics-channel.d.ts +0 -66
  226. package/examples/node_modules/undici-types/dispatcher.d.ts +0 -256
  227. package/examples/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -21
  228. package/examples/node_modules/undici-types/errors.d.ts +0 -149
  229. package/examples/node_modules/undici-types/eventsource.d.ts +0 -61
  230. package/examples/node_modules/undici-types/fetch.d.ts +0 -209
  231. package/examples/node_modules/undici-types/file.d.ts +0 -39
  232. package/examples/node_modules/undici-types/filereader.d.ts +0 -54
  233. package/examples/node_modules/undici-types/formdata.d.ts +0 -108
  234. package/examples/node_modules/undici-types/global-dispatcher.d.ts +0 -9
  235. package/examples/node_modules/undici-types/global-origin.d.ts +0 -7
  236. package/examples/node_modules/undici-types/handlers.d.ts +0 -15
  237. package/examples/node_modules/undici-types/header.d.ts +0 -4
  238. package/examples/node_modules/undici-types/index.d.ts +0 -71
  239. package/examples/node_modules/undici-types/interceptors.d.ts +0 -17
  240. package/examples/node_modules/undici-types/mock-agent.d.ts +0 -50
  241. package/examples/node_modules/undici-types/mock-client.d.ts +0 -25
  242. package/examples/node_modules/undici-types/mock-errors.d.ts +0 -12
  243. package/examples/node_modules/undici-types/mock-interceptor.d.ts +0 -93
  244. package/examples/node_modules/undici-types/mock-pool.d.ts +0 -25
  245. package/examples/node_modules/undici-types/patch.d.ts +0 -33
  246. package/examples/node_modules/undici-types/pool-stats.d.ts +0 -19
  247. package/examples/node_modules/undici-types/pool.d.ts +0 -39
  248. package/examples/node_modules/undici-types/proxy-agent.d.ts +0 -28
  249. package/examples/node_modules/undici-types/readable.d.ts +0 -65
  250. package/examples/node_modules/undici-types/retry-agent.d.ts +0 -8
  251. package/examples/node_modules/undici-types/retry-handler.d.ts +0 -116
  252. package/examples/node_modules/undici-types/util.d.ts +0 -18
  253. package/examples/node_modules/undici-types/webidl.d.ts +0 -228
  254. package/examples/node_modules/undici-types/websocket.d.ts +0 -150
@@ -1,66 +0,0 @@
1
- import { Socket } from "net";
2
- import { URL } from "url";
3
- import Connector from "./connector";
4
- import Dispatcher from "./dispatcher";
5
-
6
- declare namespace DiagnosticsChannel {
7
- interface Request {
8
- origin?: string | URL;
9
- completed: boolean;
10
- method?: Dispatcher.HttpMethod;
11
- path: string;
12
- headers: any;
13
- }
14
- interface Response {
15
- statusCode: number;
16
- statusText: string;
17
- headers: Array<Buffer>;
18
- }
19
- type Error = unknown;
20
- interface ConnectParams {
21
- host: URL["host"];
22
- hostname: URL["hostname"];
23
- protocol: URL["protocol"];
24
- port: URL["port"];
25
- servername: string | null;
26
- }
27
- type Connector = Connector.connector;
28
- export interface RequestCreateMessage {
29
- request: Request;
30
- }
31
- export interface RequestBodySentMessage {
32
- request: Request;
33
- }
34
- export interface RequestHeadersMessage {
35
- request: Request;
36
- response: Response;
37
- }
38
- export interface RequestTrailersMessage {
39
- request: Request;
40
- trailers: Array<Buffer>;
41
- }
42
- export interface RequestErrorMessage {
43
- request: Request;
44
- error: Error;
45
- }
46
- export interface ClientSendHeadersMessage {
47
- request: Request;
48
- headers: string;
49
- socket: Socket;
50
- }
51
- export interface ClientBeforeConnectMessage {
52
- connectParams: ConnectParams;
53
- connector: Connector;
54
- }
55
- export interface ClientConnectedMessage {
56
- socket: Socket;
57
- connectParams: ConnectParams;
58
- connector: Connector;
59
- }
60
- export interface ClientConnectErrorMessage {
61
- error: Error;
62
- socket: Socket;
63
- connectParams: ConnectParams;
64
- connector: Connector;
65
- }
66
- }
@@ -1,256 +0,0 @@
1
- import { URL } from 'url'
2
- import { Duplex, Readable, Writable } from 'stream'
3
- import { EventEmitter } from 'events'
4
- import { Blob } from 'buffer'
5
- import { IncomingHttpHeaders } from './header'
6
- import BodyReadable from './readable'
7
- import { FormData } from './formdata'
8
- import Errors from './errors'
9
-
10
- type AbortSignal = unknown;
11
-
12
- export default Dispatcher
13
-
14
- /** Dispatcher is the core API used to dispatch requests. */
15
- declare class Dispatcher extends EventEmitter {
16
- /** Dispatches a request. This API is expected to evolve through semver-major versions and is less stable than the preceding higher level APIs. It is primarily intended for library developers who implement higher level APIs on top of this. */
17
- dispatch(options: Dispatcher.DispatchOptions, handler: Dispatcher.DispatchHandlers): boolean;
18
- /** Starts two-way communications with the requested resource. */
19
- connect(options: Dispatcher.ConnectOptions): Promise<Dispatcher.ConnectData>;
20
- connect(options: Dispatcher.ConnectOptions, callback: (err: Error | null, data: Dispatcher.ConnectData) => void): void;
21
- /** Compose a chain of dispatchers */
22
- compose(dispatchers: Dispatcher.DispatcherComposeInterceptor[]): Dispatcher.ComposedDispatcher;
23
- compose(...dispatchers: Dispatcher.DispatcherComposeInterceptor[]): Dispatcher.ComposedDispatcher;
24
- /** Performs an HTTP request. */
25
- request(options: Dispatcher.RequestOptions): Promise<Dispatcher.ResponseData>;
26
- request(options: Dispatcher.RequestOptions, callback: (err: Error | null, data: Dispatcher.ResponseData) => void): void;
27
- /** For easy use with `stream.pipeline`. */
28
- pipeline(options: Dispatcher.PipelineOptions, handler: Dispatcher.PipelineHandler): Duplex;
29
- /** A faster version of `Dispatcher.request`. */
30
- stream(options: Dispatcher.RequestOptions, factory: Dispatcher.StreamFactory): Promise<Dispatcher.StreamData>;
31
- stream(options: Dispatcher.RequestOptions, factory: Dispatcher.StreamFactory, callback: (err: Error | null, data: Dispatcher.StreamData) => void): void;
32
- /** Upgrade to a different protocol. */
33
- upgrade(options: Dispatcher.UpgradeOptions): Promise<Dispatcher.UpgradeData>;
34
- upgrade(options: Dispatcher.UpgradeOptions, callback: (err: Error | null, data: Dispatcher.UpgradeData) => void): void;
35
- /** Closes the client and gracefully waits for enqueued requests to complete before invoking the callback (or returning a promise if no callback is provided). */
36
- close(): Promise<void>;
37
- close(callback: () => void): void;
38
- /** Destroy the client abruptly with the given err. All the pending and running requests will be asynchronously aborted and error. Waits until socket is closed before invoking the callback (or returning a promise if no callback is provided). Since this operation is asynchronously dispatched there might still be some progress on dispatched requests. */
39
- destroy(): Promise<void>;
40
- destroy(err: Error | null): Promise<void>;
41
- destroy(callback: () => void): void;
42
- destroy(err: Error | null, callback: () => void): void;
43
-
44
- on(eventName: 'connect', callback: (origin: URL, targets: readonly Dispatcher[]) => void): this;
45
- on(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
46
- on(eventName: 'connectionError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
47
- on(eventName: 'drain', callback: (origin: URL) => void): this;
48
-
49
-
50
- once(eventName: 'connect', callback: (origin: URL, targets: readonly Dispatcher[]) => void): this;
51
- once(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
52
- once(eventName: 'connectionError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
53
- once(eventName: 'drain', callback: (origin: URL) => void): this;
54
-
55
-
56
- off(eventName: 'connect', callback: (origin: URL, targets: readonly Dispatcher[]) => void): this;
57
- off(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
58
- off(eventName: 'connectionError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
59
- off(eventName: 'drain', callback: (origin: URL) => void): this;
60
-
61
-
62
- addListener(eventName: 'connect', callback: (origin: URL, targets: readonly Dispatcher[]) => void): this;
63
- addListener(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
64
- addListener(eventName: 'connectionError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
65
- addListener(eventName: 'drain', callback: (origin: URL) => void): this;
66
-
67
- removeListener(eventName: 'connect', callback: (origin: URL, targets: readonly Dispatcher[]) => void): this;
68
- removeListener(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
69
- removeListener(eventName: 'connectionError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
70
- removeListener(eventName: 'drain', callback: (origin: URL) => void): this;
71
-
72
- prependListener(eventName: 'connect', callback: (origin: URL, targets: readonly Dispatcher[]) => void): this;
73
- prependListener(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
74
- prependListener(eventName: 'connectionError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
75
- prependListener(eventName: 'drain', callback: (origin: URL) => void): this;
76
-
77
- prependOnceListener(eventName: 'connect', callback: (origin: URL, targets: readonly Dispatcher[]) => void): this;
78
- prependOnceListener(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
79
- prependOnceListener(eventName: 'connectionError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;
80
- prependOnceListener(eventName: 'drain', callback: (origin: URL) => void): this;
81
-
82
- listeners(eventName: 'connect'): ((origin: URL, targets: readonly Dispatcher[]) => void)[]
83
- listeners(eventName: 'disconnect'): ((origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void)[];
84
- listeners(eventName: 'connectionError'): ((origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void)[];
85
- listeners(eventName: 'drain'): ((origin: URL) => void)[];
86
-
87
- rawListeners(eventName: 'connect'): ((origin: URL, targets: readonly Dispatcher[]) => void)[]
88
- rawListeners(eventName: 'disconnect'): ((origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void)[];
89
- rawListeners(eventName: 'connectionError'): ((origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void)[];
90
- rawListeners(eventName: 'drain'): ((origin: URL) => void)[];
91
-
92
- emit(eventName: 'connect', origin: URL, targets: readonly Dispatcher[]): boolean;
93
- emit(eventName: 'disconnect', origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError): boolean;
94
- emit(eventName: 'connectionError', origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError): boolean;
95
- emit(eventName: 'drain', origin: URL): boolean;
96
- }
97
-
98
- declare namespace Dispatcher {
99
- export interface ComposedDispatcher extends Dispatcher {}
100
- export type DispatcherComposeInterceptor = (dispatch: Dispatcher['dispatch']) => Dispatcher['dispatch'];
101
- export interface DispatchOptions {
102
- origin?: string | URL;
103
- path: string;
104
- method: HttpMethod;
105
- /** Default: `null` */
106
- body?: string | Buffer | Uint8Array | Readable | null | FormData;
107
- /** Default: `null` */
108
- headers?: IncomingHttpHeaders | string[] | Iterable<[string, string | string[] | undefined]> | null;
109
- /** Query string params to be embedded in the request URL. Default: `null` */
110
- query?: Record<string, any>;
111
- /** Whether the requests can be safely retried or not. If `false` the request won't be sent until all preceding requests in the pipeline have completed. Default: `true` if `method` is `HEAD` or `GET`. */
112
- idempotent?: boolean;
113
- /** Whether the response is expected to take a long time and would end up blocking the pipeline. When this is set to `true` further pipelining will be avoided on the same connection until headers have been received. */
114
- blocking?: boolean;
115
- /** Upgrade the request. Should be used to specify the kind of upgrade i.e. `'Websocket'`. Default: `method === 'CONNECT' || null`. */
116
- upgrade?: boolean | string | null;
117
- /** The amount of time, in milliseconds, the parser will wait to receive the complete HTTP headers. Defaults to 300 seconds. */
118
- headersTimeout?: number | null;
119
- /** The timeout after which a request will time out, in milliseconds. Monitors time between receiving body data. Use 0 to disable it entirely. Defaults to 300 seconds. */
120
- bodyTimeout?: number | null;
121
- /** Whether the request should stablish a keep-alive or not. Default `false` */
122
- reset?: boolean;
123
- /** Whether Undici should throw an error upon receiving a 4xx or 5xx response from the server. Defaults to false */
124
- throwOnError?: boolean;
125
- /** For H2, it appends the expect: 100-continue header, and halts the request body until a 100-continue is received from the remote server*/
126
- expectContinue?: boolean;
127
- }
128
- export interface ConnectOptions {
129
- origin: string | URL;
130
- path: string;
131
- /** Default: `null` */
132
- headers?: IncomingHttpHeaders | string[] | null;
133
- /** Default: `null` */
134
- signal?: AbortSignal | EventEmitter | null;
135
- /** This argument parameter is passed through to `ConnectData` */
136
- opaque?: unknown;
137
- /** Default: 0 */
138
- maxRedirections?: number;
139
- /** Default: false */
140
- redirectionLimitReached?: boolean;
141
- /** Default: `null` */
142
- responseHeader?: 'raw' | null;
143
- }
144
- export interface RequestOptions extends DispatchOptions {
145
- /** Default: `null` */
146
- opaque?: unknown;
147
- /** Default: `null` */
148
- signal?: AbortSignal | EventEmitter | null;
149
- /** Default: 0 */
150
- maxRedirections?: number;
151
- /** Default: false */
152
- redirectionLimitReached?: boolean;
153
- /** Default: `null` */
154
- onInfo?: (info: { statusCode: number, headers: Record<string, string | string[]> }) => void;
155
- /** Default: `null` */
156
- responseHeader?: 'raw' | null;
157
- /** Default: `64 KiB` */
158
- highWaterMark?: number;
159
- }
160
- export interface PipelineOptions extends RequestOptions {
161
- /** `true` if the `handler` will return an object stream. Default: `false` */
162
- objectMode?: boolean;
163
- }
164
- export interface UpgradeOptions {
165
- path: string;
166
- /** Default: `'GET'` */
167
- method?: string;
168
- /** Default: `null` */
169
- headers?: IncomingHttpHeaders | string[] | null;
170
- /** A string of comma separated protocols, in descending preference order. Default: `'Websocket'` */
171
- protocol?: string;
172
- /** Default: `null` */
173
- signal?: AbortSignal | EventEmitter | null;
174
- /** Default: 0 */
175
- maxRedirections?: number;
176
- /** Default: false */
177
- redirectionLimitReached?: boolean;
178
- /** Default: `null` */
179
- responseHeader?: 'raw' | null;
180
- }
181
- export interface ConnectData {
182
- statusCode: number;
183
- headers: IncomingHttpHeaders;
184
- socket: Duplex;
185
- opaque: unknown;
186
- }
187
- export interface ResponseData {
188
- statusCode: number;
189
- headers: IncomingHttpHeaders;
190
- body: BodyReadable & BodyMixin;
191
- trailers: Record<string, string>;
192
- opaque: unknown;
193
- context: object;
194
- }
195
- export interface PipelineHandlerData {
196
- statusCode: number;
197
- headers: IncomingHttpHeaders;
198
- opaque: unknown;
199
- body: BodyReadable;
200
- context: object;
201
- }
202
- export interface StreamData {
203
- opaque: unknown;
204
- trailers: Record<string, string>;
205
- }
206
- export interface UpgradeData {
207
- headers: IncomingHttpHeaders;
208
- socket: Duplex;
209
- opaque: unknown;
210
- }
211
- export interface StreamFactoryData {
212
- statusCode: number;
213
- headers: IncomingHttpHeaders;
214
- opaque: unknown;
215
- context: object;
216
- }
217
- export type StreamFactory = (data: StreamFactoryData) => Writable;
218
- export interface DispatchHandlers {
219
- /** Invoked before request is dispatched on socket. May be invoked multiple times when a request is retried when the request at the head of the pipeline fails. */
220
- onConnect?(abort: (err?: Error) => void): void;
221
- /** Invoked when an error has occurred. */
222
- onError?(err: Error): void;
223
- /** Invoked when request is upgraded either due to a `Upgrade` header or `CONNECT` method. */
224
- onUpgrade?(statusCode: number, headers: Buffer[] | string[] | null, socket: Duplex): void;
225
- /** Invoked when response is received, before headers have been read. **/
226
- onResponseStarted?(): void;
227
- /** Invoked when statusCode and headers have been received. May be invoked multiple times due to 1xx informational headers. */
228
- onHeaders?(statusCode: number, headers: Buffer[], resume: () => void, statusText: string): boolean;
229
- /** Invoked when response payload data is received. */
230
- onData?(chunk: Buffer): boolean;
231
- /** Invoked when response payload and trailers have been received and the request has completed. */
232
- onComplete?(trailers: string[] | null): void;
233
- /** Invoked when a body chunk is sent to the server. May be invoked multiple times for chunked requests */
234
- onBodySent?(chunkSize: number, totalBytesSent: number): void;
235
- }
236
- export type PipelineHandler = (data: PipelineHandlerData) => Readable;
237
- export type HttpMethod = 'GET' | 'HEAD' | 'POST' | 'PUT' | 'DELETE' | 'CONNECT' | 'OPTIONS' | 'TRACE' | 'PATCH';
238
-
239
- /**
240
- * @link https://fetch.spec.whatwg.org/#body-mixin
241
- */
242
- interface BodyMixin {
243
- readonly body?: never;
244
- readonly bodyUsed: boolean;
245
- arrayBuffer(): Promise<ArrayBuffer>;
246
- blob(): Promise<Blob>;
247
- bytes(): Promise<Uint8Array>;
248
- formData(): Promise<never>;
249
- json(): Promise<unknown>;
250
- text(): Promise<string>;
251
- }
252
-
253
- export interface DispatchInterceptor {
254
- (dispatch: Dispatcher['dispatch']): Dispatcher['dispatch']
255
- }
256
- }
@@ -1,21 +0,0 @@
1
- import Agent from './agent'
2
- import Dispatcher from './dispatcher'
3
-
4
- export default EnvHttpProxyAgent
5
-
6
- declare class EnvHttpProxyAgent extends Dispatcher {
7
- constructor(opts?: EnvHttpProxyAgent.Options)
8
-
9
- dispatch(options: Agent.DispatchOptions, handler: Dispatcher.DispatchHandlers): boolean;
10
- }
11
-
12
- declare namespace EnvHttpProxyAgent {
13
- export interface Options extends Agent.Options {
14
- /** Overrides the value of the HTTP_PROXY environment variable */
15
- httpProxy?: string;
16
- /** Overrides the value of the HTTPS_PROXY environment variable */
17
- httpsProxy?: string;
18
- /** Overrides the value of the NO_PROXY environment variable */
19
- noProxy?: string;
20
- }
21
- }
@@ -1,149 +0,0 @@
1
- import { IncomingHttpHeaders } from "./header";
2
- import Client from './client'
3
-
4
- export default Errors
5
-
6
- declare namespace Errors {
7
- export class UndiciError extends Error {
8
- name: string;
9
- code: string;
10
- }
11
-
12
- /** Connect timeout error. */
13
- export class ConnectTimeoutError extends UndiciError {
14
- name: 'ConnectTimeoutError';
15
- code: 'UND_ERR_CONNECT_TIMEOUT';
16
- }
17
-
18
- /** A header exceeds the `headersTimeout` option. */
19
- export class HeadersTimeoutError extends UndiciError {
20
- name: 'HeadersTimeoutError';
21
- code: 'UND_ERR_HEADERS_TIMEOUT';
22
- }
23
-
24
- /** Headers overflow error. */
25
- export class HeadersOverflowError extends UndiciError {
26
- name: 'HeadersOverflowError'
27
- code: 'UND_ERR_HEADERS_OVERFLOW'
28
- }
29
-
30
- /** A body exceeds the `bodyTimeout` option. */
31
- export class BodyTimeoutError extends UndiciError {
32
- name: 'BodyTimeoutError';
33
- code: 'UND_ERR_BODY_TIMEOUT';
34
- }
35
-
36
- export class ResponseStatusCodeError extends UndiciError {
37
- constructor (
38
- message?: string,
39
- statusCode?: number,
40
- headers?: IncomingHttpHeaders | string[] | null,
41
- body?: null | Record<string, any> | string
42
- );
43
- name: 'ResponseStatusCodeError';
44
- code: 'UND_ERR_RESPONSE_STATUS_CODE';
45
- body: null | Record<string, any> | string
46
- status: number
47
- statusCode: number
48
- headers: IncomingHttpHeaders | string[] | null;
49
- }
50
-
51
- /** Passed an invalid argument. */
52
- export class InvalidArgumentError extends UndiciError {
53
- name: 'InvalidArgumentError';
54
- code: 'UND_ERR_INVALID_ARG';
55
- }
56
-
57
- /** Returned an invalid value. */
58
- export class InvalidReturnValueError extends UndiciError {
59
- name: 'InvalidReturnValueError';
60
- code: 'UND_ERR_INVALID_RETURN_VALUE';
61
- }
62
-
63
- /** The request has been aborted by the user. */
64
- export class RequestAbortedError extends UndiciError {
65
- name: 'AbortError';
66
- code: 'UND_ERR_ABORTED';
67
- }
68
-
69
- /** Expected error with reason. */
70
- export class InformationalError extends UndiciError {
71
- name: 'InformationalError';
72
- code: 'UND_ERR_INFO';
73
- }
74
-
75
- /** Request body length does not match content-length header. */
76
- export class RequestContentLengthMismatchError extends UndiciError {
77
- name: 'RequestContentLengthMismatchError';
78
- code: 'UND_ERR_REQ_CONTENT_LENGTH_MISMATCH';
79
- }
80
-
81
- /** Response body length does not match content-length header. */
82
- export class ResponseContentLengthMismatchError extends UndiciError {
83
- name: 'ResponseContentLengthMismatchError';
84
- code: 'UND_ERR_RES_CONTENT_LENGTH_MISMATCH';
85
- }
86
-
87
- /** Trying to use a destroyed client. */
88
- export class ClientDestroyedError extends UndiciError {
89
- name: 'ClientDestroyedError';
90
- code: 'UND_ERR_DESTROYED';
91
- }
92
-
93
- /** Trying to use a closed client. */
94
- export class ClientClosedError extends UndiciError {
95
- name: 'ClientClosedError';
96
- code: 'UND_ERR_CLOSED';
97
- }
98
-
99
- /** There is an error with the socket. */
100
- export class SocketError extends UndiciError {
101
- name: 'SocketError';
102
- code: 'UND_ERR_SOCKET';
103
- socket: Client.SocketInfo | null
104
- }
105
-
106
- /** Encountered unsupported functionality. */
107
- export class NotSupportedError extends UndiciError {
108
- name: 'NotSupportedError';
109
- code: 'UND_ERR_NOT_SUPPORTED';
110
- }
111
-
112
- /** No upstream has been added to the BalancedPool. */
113
- export class BalancedPoolMissingUpstreamError extends UndiciError {
114
- name: 'MissingUpstreamError';
115
- code: 'UND_ERR_BPL_MISSING_UPSTREAM';
116
- }
117
-
118
- export class HTTPParserError extends UndiciError {
119
- name: 'HTTPParserError';
120
- code: string;
121
- }
122
-
123
- /** The response exceed the length allowed. */
124
- export class ResponseExceededMaxSizeError extends UndiciError {
125
- name: 'ResponseExceededMaxSizeError';
126
- code: 'UND_ERR_RES_EXCEEDED_MAX_SIZE';
127
- }
128
-
129
- export class RequestRetryError extends UndiciError {
130
- constructor (
131
- message: string,
132
- statusCode: number,
133
- headers?: IncomingHttpHeaders | string[] | null,
134
- body?: null | Record<string, any> | string
135
- );
136
- name: 'RequestRetryError';
137
- code: 'UND_ERR_REQ_RETRY';
138
- statusCode: number;
139
- data: {
140
- count: number;
141
- };
142
- headers: Record<string, string | string[]>;
143
- }
144
-
145
- export class SecureProxyConnectionError extends UndiciError {
146
- name: 'SecureProxyConnectionError';
147
- code: 'UND_ERR_PRX_TLS';
148
- }
149
- }
@@ -1,61 +0,0 @@
1
- import { MessageEvent, ErrorEvent } from './websocket'
2
- import Dispatcher from './dispatcher'
3
-
4
- import {
5
- EventListenerOptions,
6
- AddEventListenerOptions,
7
- EventListenerOrEventListenerObject
8
- } from './patch'
9
-
10
- interface EventSourceEventMap {
11
- error: ErrorEvent
12
- message: MessageEvent
13
- open: Event
14
- }
15
-
16
- interface EventSource extends EventTarget {
17
- close(): void
18
- readonly CLOSED: 2
19
- readonly CONNECTING: 0
20
- readonly OPEN: 1
21
- onerror: (this: EventSource, ev: ErrorEvent) => any
22
- onmessage: (this: EventSource, ev: MessageEvent) => any
23
- onopen: (this: EventSource, ev: Event) => any
24
- readonly readyState: 0 | 1 | 2
25
- readonly url: string
26
- readonly withCredentials: boolean
27
-
28
- addEventListener<K extends keyof EventSourceEventMap>(
29
- type: K,
30
- listener: (this: EventSource, ev: EventSourceEventMap[K]) => any,
31
- options?: boolean | AddEventListenerOptions
32
- ): void
33
- addEventListener(
34
- type: string,
35
- listener: EventListenerOrEventListenerObject,
36
- options?: boolean | AddEventListenerOptions
37
- ): void
38
- removeEventListener<K extends keyof EventSourceEventMap>(
39
- type: K,
40
- listener: (this: EventSource, ev: EventSourceEventMap[K]) => any,
41
- options?: boolean | EventListenerOptions
42
- ): void
43
- removeEventListener(
44
- type: string,
45
- listener: EventListenerOrEventListenerObject,
46
- options?: boolean | EventListenerOptions
47
- ): void
48
- }
49
-
50
- export declare const EventSource: {
51
- prototype: EventSource
52
- new (url: string | URL, init?: EventSourceInit): EventSource
53
- readonly CLOSED: 2
54
- readonly CONNECTING: 0
55
- readonly OPEN: 1
56
- }
57
-
58
- interface EventSourceInit {
59
- withCredentials?: boolean,
60
- dispatcher?: Dispatcher
61
- }