cdk-common 2.0.1296 → 2.0.1298

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 (41) hide show
  1. package/.jsii +2 -2
  2. package/lib/main.js +1 -1
  3. package/node_modules/@types/concat-stream/node_modules/@types/node/README.md +1 -1
  4. package/node_modules/@types/concat-stream/node_modules/@types/node/crypto.d.ts +515 -139
  5. package/node_modules/@types/concat-stream/node_modules/@types/node/fs.d.ts +4 -0
  6. package/node_modules/@types/concat-stream/node_modules/@types/node/http.d.ts +10 -0
  7. package/node_modules/@types/concat-stream/node_modules/@types/node/http2.d.ts +1 -1
  8. package/node_modules/@types/concat-stream/node_modules/@types/node/index.d.ts +2 -0
  9. package/node_modules/@types/concat-stream/node_modules/@types/node/inspector.d.ts +24 -0
  10. package/node_modules/@types/concat-stream/node_modules/@types/node/inspector.generated.d.ts +181 -0
  11. package/node_modules/@types/concat-stream/node_modules/@types/node/package.json +3 -3
  12. package/node_modules/@types/concat-stream/node_modules/@types/node/sqlite.d.ts +6 -4
  13. package/node_modules/@types/concat-stream/node_modules/@types/node/stream/web.d.ts +6 -55
  14. package/node_modules/@types/concat-stream/node_modules/@types/node/test.d.ts +29 -3
  15. package/node_modules/@types/concat-stream/node_modules/@types/node/ts5.6/index.d.ts +2 -0
  16. package/node_modules/@types/concat-stream/node_modules/@types/node/ts5.7/index.d.ts +2 -0
  17. package/node_modules/@types/concat-stream/node_modules/@types/node/web-globals/crypto.d.ts +32 -0
  18. package/node_modules/@types/concat-stream/node_modules/@types/node/web-globals/streams.d.ts +22 -0
  19. package/node_modules/@types/concat-stream/node_modules/undici-types/eventsource.d.ts +6 -1
  20. package/node_modules/@types/concat-stream/node_modules/undici-types/index.d.ts +4 -1
  21. package/node_modules/@types/concat-stream/node_modules/undici-types/package.json +1 -1
  22. package/node_modules/@types/form-data/node_modules/@types/node/README.md +1 -1
  23. package/node_modules/@types/form-data/node_modules/@types/node/crypto.d.ts +515 -139
  24. package/node_modules/@types/form-data/node_modules/@types/node/fs.d.ts +4 -0
  25. package/node_modules/@types/form-data/node_modules/@types/node/http.d.ts +10 -0
  26. package/node_modules/@types/form-data/node_modules/@types/node/http2.d.ts +1 -1
  27. package/node_modules/@types/form-data/node_modules/@types/node/index.d.ts +2 -0
  28. package/node_modules/@types/form-data/node_modules/@types/node/inspector.d.ts +24 -0
  29. package/node_modules/@types/form-data/node_modules/@types/node/inspector.generated.d.ts +181 -0
  30. package/node_modules/@types/form-data/node_modules/@types/node/package.json +3 -3
  31. package/node_modules/@types/form-data/node_modules/@types/node/sqlite.d.ts +6 -4
  32. package/node_modules/@types/form-data/node_modules/@types/node/stream/web.d.ts +6 -55
  33. package/node_modules/@types/form-data/node_modules/@types/node/test.d.ts +29 -3
  34. package/node_modules/@types/form-data/node_modules/@types/node/ts5.6/index.d.ts +2 -0
  35. package/node_modules/@types/form-data/node_modules/@types/node/ts5.7/index.d.ts +2 -0
  36. package/node_modules/@types/form-data/node_modules/@types/node/web-globals/crypto.d.ts +32 -0
  37. package/node_modules/@types/form-data/node_modules/@types/node/web-globals/streams.d.ts +22 -0
  38. package/node_modules/@types/form-data/node_modules/undici-types/eventsource.d.ts +6 -1
  39. package/node_modules/@types/form-data/node_modules/undici-types/index.d.ts +4 -1
  40. package/node_modules/@types/form-data/node_modules/undici-types/package.json +1 -1
  41. package/package.json +1 -1
@@ -0,0 +1,22 @@
1
+ export {};
2
+
3
+ import * as webstreams from "stream/web";
4
+
5
+ type _CompressionStream = typeof globalThis extends { onmessage: any } ? {} : webstreams.CompressionStream;
6
+ type _DecompressionStream = typeof globalThis extends { onmessage: any } ? {} : webstreams.DecompressionStream;
7
+
8
+ declare global {
9
+ interface CompressionStream extends _CompressionStream {}
10
+ var CompressionStream: typeof globalThis extends {
11
+ onmessage: any;
12
+ CompressionStream: infer T;
13
+ } ? T
14
+ : typeof webstreams.CompressionStream;
15
+
16
+ interface DecompressionStream extends _DecompressionStream {}
17
+ var DecompressionStream: typeof globalThis extends {
18
+ onmessage: any;
19
+ DecompressionStream: infer T;
20
+ } ? T
21
+ : typeof webstreams.DecompressionStream;
22
+ }
@@ -56,6 +56,11 @@ export declare const EventSource: {
56
56
  }
57
57
 
58
58
  interface EventSourceInit {
59
- withCredentials?: boolean,
59
+ withCredentials?: boolean
60
+ // @deprecated use `node.dispatcher` instead
60
61
  dispatcher?: Dispatcher
62
+ node?: {
63
+ dispatcher?: Dispatcher
64
+ reconnectionTime?: number
65
+ }
61
66
  }
@@ -34,7 +34,9 @@ export * from './content-type'
34
34
  export * from './cache'
35
35
  export { Interceptable } from './mock-interceptor'
36
36
 
37
- export { Dispatcher, BalancedPool, Pool, Client, buildConnector, errors, Agent, request, stream, pipeline, connect, upgrade, setGlobalDispatcher, getGlobalDispatcher, setGlobalOrigin, getGlobalOrigin, interceptors, MockClient, MockPool, MockAgent, SnapshotAgent, MockCallHistory, MockCallHistoryLog, mockErrors, ProxyAgent, EnvHttpProxyAgent, RedirectHandler, DecoratorHandler, RetryHandler, RetryAgent, H2CClient }
37
+ declare function globalThisInstall (): void
38
+
39
+ export { Dispatcher, BalancedPool, Pool, Client, buildConnector, errors, Agent, request, stream, pipeline, connect, upgrade, setGlobalDispatcher, getGlobalDispatcher, setGlobalOrigin, getGlobalOrigin, interceptors, MockClient, MockPool, MockAgent, SnapshotAgent, MockCallHistory, MockCallHistoryLog, mockErrors, ProxyAgent, EnvHttpProxyAgent, RedirectHandler, DecoratorHandler, RetryHandler, RetryAgent, H2CClient, globalThisInstall as install }
38
40
  export default Undici
39
41
 
40
42
  declare namespace Undici {
@@ -74,4 +76,5 @@ declare namespace Undici {
74
76
  MemoryCacheStore: typeof import('./cache-interceptor').default.MemoryCacheStore,
75
77
  SqliteCacheStore: typeof import('./cache-interceptor').default.SqliteCacheStore
76
78
  }
79
+ const install: typeof globalThisInstall
77
80
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "undici-types",
3
- "version": "7.13.0",
3
+ "version": "7.14.0",
4
4
  "description": "A stand-alone types package for Undici",
5
5
  "homepage": "https://undici.nodejs.org",
6
6
  "bugs": {
package/package.json CHANGED
@@ -87,7 +87,7 @@
87
87
  "publishConfig": {
88
88
  "access": "public"
89
89
  },
90
- "version": "2.0.1296",
90
+ "version": "2.0.1298",
91
91
  "jest": {
92
92
  "coverageProvider": "v8",
93
93
  "testMatch": [