@idlebox/stripe-node-types 24.0.14-patch.0

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 (113) hide show
  1. package/LICENSE +22 -0
  2. package/README.md +16 -0
  3. package/assert/strict.d.ts +5 -0
  4. package/assert.d.ts +1053 -0
  5. package/async_hooks.d.ts +621 -0
  6. package/buffer.buffer.d.ts +464 -0
  7. package/buffer.d.ts +1928 -0
  8. package/child_process.d.ts +1547 -0
  9. package/cluster.d.ts +576 -0
  10. package/compatibility/iterators.d.ts +22 -0
  11. package/console.d.ts +449 -0
  12. package/constants.d.ts +18 -0
  13. package/crypto.d.ts +4514 -0
  14. package/dgram.d.ts +597 -0
  15. package/diagnostics_channel.d.ts +576 -0
  16. package/dns/promises.d.ts +501 -0
  17. package/dns.d.ts +916 -0
  18. package/dom-events.d.ts +100 -0
  19. package/domain.d.ts +168 -0
  20. package/events.d.ts +927 -0
  21. package/fs/promises.d.ts +1278 -0
  22. package/fs.d.ts +4444 -0
  23. package/globals.d.ts +368 -0
  24. package/globals.typedarray.d.ts +23 -0
  25. package/http.d.ts +2044 -0
  26. package/http2.d.ts +2626 -0
  27. package/https.d.ts +543 -0
  28. package/index.d.ts +96 -0
  29. package/inspector.d.ts +3993 -0
  30. package/module.d.ts +866 -0
  31. package/my-shim.d.ts +57 -0
  32. package/net.d.ts +1030 -0
  33. package/os.d.ts +494 -0
  34. package/package.json +158 -0
  35. package/path.d.ts +189 -0
  36. package/perf_hooks.d.ts +968 -0
  37. package/process.d.ts +2016 -0
  38. package/punycode.d.ts +115 -0
  39. package/querystring.d.ts +150 -0
  40. package/readline/promises.d.ts +159 -0
  41. package/readline.d.ts +592 -0
  42. package/repl.d.ts +426 -0
  43. package/sea.d.ts +154 -0
  44. package/sqlite.d.ts +689 -0
  45. package/stream/consumers.d.ts +36 -0
  46. package/stream/promises.d.ts +88 -0
  47. package/stream/web.d.ts +616 -0
  48. package/stream.d.ts +1654 -0
  49. package/string_decoder.d.ts +65 -0
  50. package/test.d.ts +2216 -0
  51. package/timers/promises.d.ts +106 -0
  52. package/timers.d.ts +285 -0
  53. package/tls.d.ts +1211 -0
  54. package/trace_events.d.ts +195 -0
  55. package/ts5.1/compatibility/disposable.d.ts +13 -0
  56. package/ts5.1/index.d.ts +100 -0
  57. package/ts5.6/buffer.buffer.d.ts +461 -0
  58. package/ts5.6/compatibility/float16array.d.ts +72 -0
  59. package/ts5.6/globals.typedarray.d.ts +21 -0
  60. package/ts5.6/index.d.ts +98 -0
  61. package/ts5.7/compatibility/float16array.d.ts +73 -0
  62. package/ts5.7/index.d.ts +98 -0
  63. package/tty.d.ts +206 -0
  64. package/undici-types/LICENSE +22 -0
  65. package/undici-types/README.md +7 -0
  66. package/undici-types/agent.d.ts +32 -0
  67. package/undici-types/api.d.ts +44 -0
  68. package/undici-types/balanced-pool.d.ts +30 -0
  69. package/undici-types/cache-interceptor.d.ts +173 -0
  70. package/undici-types/cache.d.ts +37 -0
  71. package/undici-types/client.d.ts +108 -0
  72. package/undici-types/connector.d.ts +35 -0
  73. package/undici-types/content-type.d.ts +22 -0
  74. package/undici-types/cookies.d.ts +31 -0
  75. package/undici-types/diagnostics-channel.d.ts +67 -0
  76. package/undici-types/dispatcher.d.ts +282 -0
  77. package/undici-types/env-http-proxy-agent.d.ts +22 -0
  78. package/undici-types/errors.d.ts +172 -0
  79. package/undici-types/eventsource.d.ts +62 -0
  80. package/undici-types/fetch.d.ts +211 -0
  81. package/undici-types/formdata.d.ts +109 -0
  82. package/undici-types/global-dispatcher.d.ts +10 -0
  83. package/undici-types/global-origin.d.ts +8 -0
  84. package/undici-types/h2c-client.d.ts +76 -0
  85. package/undici-types/handlers.d.ts +16 -0
  86. package/undici-types/header.d.ts +161 -0
  87. package/undici-types/index.d.ts +76 -0
  88. package/undici-types/interceptors.d.ts +35 -0
  89. package/undici-types/mock-agent.d.ts +66 -0
  90. package/undici-types/mock-call-history.d.ts +112 -0
  91. package/undici-types/mock-client.d.ts +26 -0
  92. package/undici-types/mock-errors.d.ts +13 -0
  93. package/undici-types/mock-interceptor.d.ts +94 -0
  94. package/undici-types/mock-pool.d.ts +26 -0
  95. package/undici-types/package.json +55 -0
  96. package/undici-types/patch.d.ts +30 -0
  97. package/undici-types/pool-stats.d.ts +20 -0
  98. package/undici-types/pool.d.ts +40 -0
  99. package/undici-types/proxy-agent.d.ts +29 -0
  100. package/undici-types/readable.d.ts +69 -0
  101. package/undici-types/retry-agent.d.ts +9 -0
  102. package/undici-types/retry-handler.d.ts +117 -0
  103. package/undici-types/util.d.ts +19 -0
  104. package/undici-types/utility.d.ts +8 -0
  105. package/undici-types/webidl.d.ts +267 -0
  106. package/undici-types/websocket.d.ts +185 -0
  107. package/url.d.ts +1012 -0
  108. package/util.d.ts +2300 -0
  109. package/v8.d.ts +917 -0
  110. package/vm.d.ts +1034 -0
  111. package/wasi.d.ts +179 -0
  112. package/worker_threads.d.ts +773 -0
  113. package/zlib.d.ts +666 -0
package/globals.d.ts ADDED
@@ -0,0 +1,368 @@
1
+ export {}; // Make this a module
2
+
3
+ // #region Fetch and friends
4
+ // Conditional type aliases, used at the end of this file.
5
+ // Will either be empty if lib.dom (or lib.webworker) is included, or the undici version otherwise.
6
+ type _Request = typeof globalThis extends { onmessage: any } ? {} : import('./undici-types').Request;
7
+ type _Response = typeof globalThis extends { onmessage: any } ? {} : import('./undici-types').Response;
8
+ type _FormData = typeof globalThis extends { onmessage: any } ? {} : import('./undici-types').FormData;
9
+ type _Headers = typeof globalThis extends { onmessage: any } ? {} : import('./undici-types').Headers;
10
+ type _MessageEvent = typeof globalThis extends { onmessage: any } ? {} : import('./undici-types').MessageEvent;
11
+ type _RequestInit = typeof globalThis extends { onmessage: any } ? {}
12
+ : import('./undici-types').RequestInit;
13
+ type _ResponseInit = typeof globalThis extends { onmessage: any } ? {}
14
+ : import('./undici-types').ResponseInit;
15
+ type _WebSocket = typeof globalThis extends { onmessage: any } ? {} : import('./undici-types').WebSocket;
16
+ type _EventSource = typeof globalThis extends { onmessage: any } ? {} : import('./undici-types').EventSource;
17
+ type _CloseEvent = typeof globalThis extends { onmessage: any } ? {} : import('./undici-types').CloseEvent;
18
+ // #endregion Fetch and friends
19
+
20
+ // Conditional type definitions for webstorage interface, which conflicts with lib.dom otherwise.
21
+ type _Storage = typeof globalThis extends { onabort: any } ? {} : {
22
+ readonly length: number;
23
+ clear(): void;
24
+ getItem(key: string): string | null;
25
+ key(index: number): string | null;
26
+ removeItem(key: string): void;
27
+ setItem(key: string, value: string): void;
28
+ [key: string]: any;
29
+ };
30
+
31
+ // #region DOMException
32
+ type _DOMException = typeof globalThis extends { onmessage: any } ? {} : NodeDOMException;
33
+ interface NodeDOMException extends Error {
34
+ readonly code: number;
35
+ readonly message: string;
36
+ readonly name: string;
37
+ readonly INDEX_SIZE_ERR: 1;
38
+ readonly DOMSTRING_SIZE_ERR: 2;
39
+ readonly HIERARCHY_REQUEST_ERR: 3;
40
+ readonly WRONG_DOCUMENT_ERR: 4;
41
+ readonly INVALID_CHARACTER_ERR: 5;
42
+ readonly NO_DATA_ALLOWED_ERR: 6;
43
+ readonly NO_MODIFICATION_ALLOWED_ERR: 7;
44
+ readonly NOT_FOUND_ERR: 8;
45
+ readonly NOT_SUPPORTED_ERR: 9;
46
+ readonly INUSE_ATTRIBUTE_ERR: 10;
47
+ readonly INVALID_STATE_ERR: 11;
48
+ readonly SYNTAX_ERR: 12;
49
+ readonly INVALID_MODIFICATION_ERR: 13;
50
+ readonly NAMESPACE_ERR: 14;
51
+ readonly INVALID_ACCESS_ERR: 15;
52
+ readonly VALIDATION_ERR: 16;
53
+ readonly TYPE_MISMATCH_ERR: 17;
54
+ readonly SECURITY_ERR: 18;
55
+ readonly NETWORK_ERR: 19;
56
+ readonly ABORT_ERR: 20;
57
+ readonly URL_MISMATCH_ERR: 21;
58
+ readonly QUOTA_EXCEEDED_ERR: 22;
59
+ readonly TIMEOUT_ERR: 23;
60
+ readonly INVALID_NODE_TYPE_ERR: 24;
61
+ readonly DATA_CLONE_ERR: 25;
62
+ }
63
+ interface NodeDOMExceptionConstructor {
64
+ prototype: DOMException;
65
+ new(message?: string, nameOrOptions?: string | { name?: string; cause?: unknown }): DOMException;
66
+ readonly INDEX_SIZE_ERR: 1;
67
+ readonly DOMSTRING_SIZE_ERR: 2;
68
+ readonly HIERARCHY_REQUEST_ERR: 3;
69
+ readonly WRONG_DOCUMENT_ERR: 4;
70
+ readonly INVALID_CHARACTER_ERR: 5;
71
+ readonly NO_DATA_ALLOWED_ERR: 6;
72
+ readonly NO_MODIFICATION_ALLOWED_ERR: 7;
73
+ readonly NOT_FOUND_ERR: 8;
74
+ readonly NOT_SUPPORTED_ERR: 9;
75
+ readonly INUSE_ATTRIBUTE_ERR: 10;
76
+ readonly INVALID_STATE_ERR: 11;
77
+ readonly SYNTAX_ERR: 12;
78
+ readonly INVALID_MODIFICATION_ERR: 13;
79
+ readonly NAMESPACE_ERR: 14;
80
+ readonly INVALID_ACCESS_ERR: 15;
81
+ readonly VALIDATION_ERR: 16;
82
+ readonly TYPE_MISMATCH_ERR: 17;
83
+ readonly SECURITY_ERR: 18;
84
+ readonly NETWORK_ERR: 19;
85
+ readonly ABORT_ERR: 20;
86
+ readonly URL_MISMATCH_ERR: 21;
87
+ readonly QUOTA_EXCEEDED_ERR: 22;
88
+ readonly TIMEOUT_ERR: 23;
89
+ readonly INVALID_NODE_TYPE_ERR: 24;
90
+ readonly DATA_CLONE_ERR: 25;
91
+ }
92
+ // #endregion DOMException
93
+
94
+ declare global {
95
+ var global: typeof globalThis;
96
+
97
+ var process: NodeJS.Process;
98
+ var console: Console;
99
+
100
+ interface ErrorConstructor {
101
+ /**
102
+ * Creates a `.stack` property on `targetObject`, which when accessed returns
103
+ * a string representing the location in the code at which
104
+ * `Error.captureStackTrace()` was called.
105
+ *
106
+ * ```js
107
+ * const myObject = {};
108
+ * Error.captureStackTrace(myObject);
109
+ * myObject.stack; // Similar to `new Error().stack`
110
+ * ```
111
+ *
112
+ * The first line of the trace will be prefixed with
113
+ * `${myObject.name}: ${myObject.message}`.
114
+ *
115
+ * The optional `constructorOpt` argument accepts a function. If given, all frames
116
+ * above `constructorOpt`, including `constructorOpt`, will be omitted from the
117
+ * generated stack trace.
118
+ *
119
+ * The `constructorOpt` argument is useful for hiding implementation
120
+ * details of error generation from the user. For instance:
121
+ *
122
+ * ```js
123
+ * function a() {
124
+ * b();
125
+ * }
126
+ *
127
+ * function b() {
128
+ * c();
129
+ * }
130
+ *
131
+ * function c() {
132
+ * // Create an error without stack trace to avoid calculating the stack trace twice.
133
+ * const { stackTraceLimit } = Error;
134
+ * Error.stackTraceLimit = 0;
135
+ * const error = new Error();
136
+ * Error.stackTraceLimit = stackTraceLimit;
137
+ *
138
+ * // Capture the stack trace above function b
139
+ * Error.captureStackTrace(error, b); // Neither function c, nor b is included in the stack trace
140
+ * throw error;
141
+ * }
142
+ *
143
+ * a();
144
+ * ```
145
+ */
146
+ captureStackTrace(targetObject: object, constructorOpt?: Function): void;
147
+ /**
148
+ * @see https://v8.dev/docs/stack-trace-api#customizing-stack-traces
149
+ */
150
+ prepareStackTrace(err: Error, stackTraces: NodeJS.CallSite[]): any;
151
+ /**
152
+ * The `Error.stackTraceLimit` property specifies the number of stack frames
153
+ * collected by a stack trace (whether generated by `new Error().stack` or
154
+ * `Error.captureStackTrace(obj)`).
155
+ *
156
+ * The default value is `10` but may be set to any valid JavaScript number. Changes
157
+ * will affect any stack trace captured _after_ the value has been changed.
158
+ *
159
+ * If set to a non-number value, or set to a negative number, stack traces will
160
+ * not capture any frames.
161
+ */
162
+ stackTraceLimit: number;
163
+ }
164
+
165
+ /**
166
+ * Enable this API with the `--expose-gc` CLI flag.
167
+ */
168
+ var gc: NodeJS.GCFunction | undefined;
169
+
170
+ namespace NodeJS {
171
+ interface CallSite {
172
+ getColumnNumber(): number | null;
173
+ getEnclosingColumnNumber(): number | null;
174
+ getEnclosingLineNumber(): number | null;
175
+ getEvalOrigin(): string | undefined;
176
+ getFileName(): string | null;
177
+ getFunction(): Function | undefined;
178
+ getFunctionName(): string | null;
179
+ getLineNumber(): number | null;
180
+ getMethodName(): string | null;
181
+ getPosition(): number;
182
+ getPromiseIndex(): number | null;
183
+ getScriptHash(): string;
184
+ getScriptNameOrSourceURL(): string | null;
185
+ getThis(): unknown;
186
+ getTypeName(): string | null;
187
+ isAsync(): boolean;
188
+ isConstructor(): boolean;
189
+ isEval(): boolean;
190
+ isNative(): boolean;
191
+ isPromiseAll(): boolean;
192
+ isToplevel(): boolean;
193
+ }
194
+
195
+ interface ErrnoException extends Error {
196
+ errno?: number | undefined;
197
+ code?: string | undefined;
198
+ path?: string | undefined;
199
+ syscall?: string | undefined;
200
+ }
201
+
202
+ interface ReadableStream extends EventEmitter {
203
+ readable: boolean;
204
+ read(size?: number): string | Buffer;
205
+ setEncoding(encoding: BufferEncoding): this;
206
+ pause(): this;
207
+ resume(): this;
208
+ isPaused(): boolean;
209
+ pipe<T extends WritableStream>(destination: T, options?: { end?: boolean | undefined }): T;
210
+ unpipe(destination?: WritableStream): this;
211
+ unshift(chunk: string | Uint8Array, encoding?: BufferEncoding): void;
212
+ wrap(oldStream: ReadableStream): this;
213
+ [Symbol.asyncIterator](): AsyncIterableIterator<string | Buffer>;
214
+ }
215
+
216
+ interface WritableStream extends EventEmitter {
217
+ writable: boolean;
218
+ write(buffer: Uint8Array | string, cb?: (err?: Error | null) => void): boolean;
219
+ write(str: string, encoding?: BufferEncoding, cb?: (err?: Error | null) => void): boolean;
220
+ end(cb?: () => void): this;
221
+ end(data: string | Uint8Array, cb?: () => void): this;
222
+ end(str: string, encoding?: BufferEncoding, cb?: () => void): this;
223
+ }
224
+
225
+ interface ReadWriteStream extends ReadableStream, WritableStream {}
226
+
227
+ interface RefCounted {
228
+ ref(): this;
229
+ unref(): this;
230
+ }
231
+
232
+ interface Dict<T> {
233
+ [key: string]: T | undefined;
234
+ }
235
+
236
+ interface ReadOnlyDict<T> {
237
+ readonly [key: string]: T | undefined;
238
+ }
239
+
240
+ interface GCFunction {
241
+ (minor?: boolean): void;
242
+ (options: NodeJS.GCOptions & { execution: "async" }): Promise<void>;
243
+ (options: NodeJS.GCOptions): void;
244
+ }
245
+
246
+ interface GCOptions {
247
+ execution?: "sync" | "async" | undefined;
248
+ flavor?: "regular" | "last-resort" | undefined;
249
+ type?: "major-snapshot" | "major" | "minor" | undefined;
250
+ filename?: string | undefined;
251
+ }
252
+
253
+ /** An iterable iterator returned by the Node.js API. */
254
+ interface Iterator<T, TReturn = undefined, TNext = any> extends IteratorObject<T, TReturn, TNext> {
255
+ [Symbol.iterator](): NodeJS.Iterator<T, TReturn, TNext>;
256
+ }
257
+
258
+ /** An async iterable iterator returned by the Node.js API. */
259
+ interface AsyncIterator<T, TReturn = undefined, TNext = any> extends AsyncIteratorObject<T, TReturn, TNext> {
260
+ [Symbol.asyncIterator](): NodeJS.AsyncIterator<T, TReturn, TNext>;
261
+ }
262
+ }
263
+
264
+ // Global DOM types
265
+
266
+ interface DOMException extends _DOMException {}
267
+ var DOMException: typeof globalThis extends { onmessage: any; DOMException: infer T } ? T
268
+ : NodeDOMExceptionConstructor;
269
+
270
+ // #region AbortController
271
+ interface AbortController {
272
+ readonly signal: AbortSignal;
273
+ abort(reason?: any): void;
274
+ }
275
+ var AbortController: typeof globalThis extends { onmessage: any; AbortController: infer T } ? T
276
+ : {
277
+ prototype: AbortController;
278
+ new(): AbortController;
279
+ };
280
+
281
+ interface AbortSignal extends EventTarget {
282
+ readonly aborted: boolean;
283
+ onabort: ((this: AbortSignal, ev: Event) => any) | null;
284
+ readonly reason: any;
285
+ throwIfAborted(): void;
286
+ }
287
+ var AbortSignal: typeof globalThis extends { onmessage: any; AbortSignal: infer T } ? T
288
+ : {
289
+ prototype: AbortSignal;
290
+ new(): AbortSignal;
291
+ abort(reason?: any): AbortSignal;
292
+ any(signals: AbortSignal[]): AbortSignal;
293
+ timeout(milliseconds: number): AbortSignal;
294
+ };
295
+ // #endregion AbortController
296
+
297
+ // #region Storage
298
+ interface Storage extends _Storage {}
299
+ // Conditional on `onabort` rather than `onmessage`, in order to exclude lib.webworker
300
+ var Storage: typeof globalThis extends { onabort: any; Storage: infer T } ? T
301
+ : {
302
+ prototype: Storage;
303
+ new(): Storage;
304
+ };
305
+
306
+ var localStorage: Storage;
307
+ var sessionStorage: Storage;
308
+ // #endregion Storage
309
+
310
+ // #region fetch
311
+ interface RequestInit extends _RequestInit {}
312
+
313
+ function fetch(
314
+ input: string | URL | globalThis.Request,
315
+ init?: RequestInit,
316
+ ): Promise<Response>;
317
+
318
+ interface Request extends _Request {}
319
+ var Request: typeof globalThis extends {
320
+ onmessage: any;
321
+ Request: infer T;
322
+ } ? T
323
+ : typeof import('./undici-types').Request;
324
+
325
+ interface ResponseInit extends _ResponseInit {}
326
+
327
+ interface Response extends _Response {}
328
+ var Response: typeof globalThis extends {
329
+ onmessage: any;
330
+ Response: infer T;
331
+ } ? T
332
+ : typeof import('./undici-types').Response;
333
+
334
+ interface FormData extends _FormData {}
335
+ var FormData: typeof globalThis extends {
336
+ onmessage: any;
337
+ FormData: infer T;
338
+ } ? T
339
+ : typeof import('./undici-types').FormData;
340
+
341
+ interface Headers extends _Headers {}
342
+ var Headers: typeof globalThis extends {
343
+ onmessage: any;
344
+ Headers: infer T;
345
+ } ? T
346
+ : typeof import('./undici-types').Headers;
347
+
348
+ interface MessageEvent extends _MessageEvent {}
349
+ var MessageEvent: typeof globalThis extends {
350
+ onmessage: any;
351
+ MessageEvent: infer T;
352
+ } ? T
353
+ : typeof import('./undici-types').MessageEvent;
354
+
355
+ interface WebSocket extends _WebSocket {}
356
+ var WebSocket: typeof globalThis extends { onmessage: any; WebSocket: infer T } ? T
357
+ : typeof import('./undici-types').WebSocket;
358
+
359
+ interface EventSource extends _EventSource {}
360
+ var EventSource: typeof globalThis extends { onmessage: any; EventSource: infer T } ? T
361
+ : typeof import('./undici-types').EventSource;
362
+
363
+ interface CloseEvent extends _CloseEvent {}
364
+ var CloseEvent: typeof globalThis extends { onmessage: any; CloseEvent: infer T } ? T
365
+ : typeof import('./undici-types').CloseEvent;
366
+ // #endregion fetch
367
+ }
368
+
@@ -0,0 +1,23 @@
1
+ export {}; // Make this a module
2
+
3
+ declare global {
4
+ namespace NodeJS {
5
+ type TypedArray<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> =
6
+ | Uint8Array<TArrayBuffer>
7
+ | Uint8ClampedArray<TArrayBuffer>
8
+ | Uint16Array<TArrayBuffer>
9
+ | Uint32Array<TArrayBuffer>
10
+ | Int8Array<TArrayBuffer>
11
+ | Int16Array<TArrayBuffer>
12
+ | Int32Array<TArrayBuffer>
13
+ | BigUint64Array<TArrayBuffer>
14
+ | BigInt64Array<TArrayBuffer>
15
+ | Float16Array<TArrayBuffer>
16
+ | Float32Array<TArrayBuffer>
17
+ | Float64Array<TArrayBuffer>;
18
+ type ArrayBufferView<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> =
19
+ | TypedArray<TArrayBuffer>
20
+ | DataView<TArrayBuffer>;
21
+ }
22
+ }
23
+