cdk-ecr-deployment 3.0.81 → 3.0.82

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 (51) hide show
  1. package/.jsii +2 -2
  2. package/lib/index.js +3 -3
  3. package/node_modules/@types/cacheable-request/node_modules/@types/node/README.md +1 -1
  4. package/node_modules/@types/cacheable-request/node_modules/@types/node/buffer.d.ts +11 -0
  5. package/node_modules/@types/cacheable-request/node_modules/@types/node/globals.d.ts +16 -0
  6. package/node_modules/@types/cacheable-request/node_modules/@types/node/package.json +3 -3
  7. package/node_modules/@types/cacheable-request/node_modules/@types/node/process.d.ts +121 -2
  8. package/node_modules/@types/cacheable-request/node_modules/@types/node/test.d.ts +128 -1
  9. package/node_modules/@types/cacheable-request/node_modules/undici-types/dispatcher.d.ts +4 -4
  10. package/node_modules/@types/cacheable-request/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
  11. package/node_modules/@types/cacheable-request/node_modules/undici-types/eventsource.d.ts +4 -2
  12. package/node_modules/@types/cacheable-request/node_modules/undici-types/fetch.d.ts +2 -1
  13. package/node_modules/@types/cacheable-request/node_modules/undici-types/index.d.ts +7 -1
  14. package/node_modules/@types/cacheable-request/node_modules/undici-types/interceptors.d.ts +8 -2
  15. package/node_modules/@types/cacheable-request/node_modules/undici-types/mock-interceptor.d.ts +4 -4
  16. package/node_modules/@types/cacheable-request/node_modules/undici-types/package.json +1 -1
  17. package/node_modules/@types/cacheable-request/node_modules/undici-types/util.d.ts +4 -17
  18. package/node_modules/@types/cacheable-request/node_modules/undici-types/webidl.d.ts +7 -8
  19. package/node_modules/@types/keyv/node_modules/@types/node/README.md +1 -1
  20. package/node_modules/@types/keyv/node_modules/@types/node/buffer.d.ts +11 -0
  21. package/node_modules/@types/keyv/node_modules/@types/node/globals.d.ts +16 -0
  22. package/node_modules/@types/keyv/node_modules/@types/node/package.json +3 -3
  23. package/node_modules/@types/keyv/node_modules/@types/node/process.d.ts +121 -2
  24. package/node_modules/@types/keyv/node_modules/@types/node/test.d.ts +128 -1
  25. package/node_modules/@types/keyv/node_modules/undici-types/dispatcher.d.ts +4 -4
  26. package/node_modules/@types/keyv/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
  27. package/node_modules/@types/keyv/node_modules/undici-types/eventsource.d.ts +4 -2
  28. package/node_modules/@types/keyv/node_modules/undici-types/fetch.d.ts +2 -1
  29. package/node_modules/@types/keyv/node_modules/undici-types/index.d.ts +7 -1
  30. package/node_modules/@types/keyv/node_modules/undici-types/interceptors.d.ts +8 -2
  31. package/node_modules/@types/keyv/node_modules/undici-types/mock-interceptor.d.ts +4 -4
  32. package/node_modules/@types/keyv/node_modules/undici-types/package.json +1 -1
  33. package/node_modules/@types/keyv/node_modules/undici-types/util.d.ts +4 -17
  34. package/node_modules/@types/keyv/node_modules/undici-types/webidl.d.ts +7 -8
  35. package/node_modules/@types/responselike/node_modules/@types/node/README.md +1 -1
  36. package/node_modules/@types/responselike/node_modules/@types/node/buffer.d.ts +11 -0
  37. package/node_modules/@types/responselike/node_modules/@types/node/globals.d.ts +16 -0
  38. package/node_modules/@types/responselike/node_modules/@types/node/package.json +3 -3
  39. package/node_modules/@types/responselike/node_modules/@types/node/process.d.ts +121 -2
  40. package/node_modules/@types/responselike/node_modules/@types/node/test.d.ts +128 -1
  41. package/node_modules/@types/responselike/node_modules/undici-types/dispatcher.d.ts +4 -4
  42. package/node_modules/@types/responselike/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
  43. package/node_modules/@types/responselike/node_modules/undici-types/eventsource.d.ts +4 -2
  44. package/node_modules/@types/responselike/node_modules/undici-types/fetch.d.ts +2 -1
  45. package/node_modules/@types/responselike/node_modules/undici-types/index.d.ts +7 -1
  46. package/node_modules/@types/responselike/node_modules/undici-types/interceptors.d.ts +8 -2
  47. package/node_modules/@types/responselike/node_modules/undici-types/mock-interceptor.d.ts +4 -4
  48. package/node_modules/@types/responselike/node_modules/undici-types/package.json +1 -1
  49. package/node_modules/@types/responselike/node_modules/undici-types/util.d.ts +4 -17
  50. package/node_modules/@types/responselike/node_modules/undici-types/webidl.d.ts +7 -8
  51. package/package.json +1 -1
@@ -8,24 +8,11 @@ export namespace util {
8
8
  /**
9
9
  * Receives a header object and returns the parsed value.
10
10
  * @param headers Header object
11
+ * @param obj Object to specify a proxy object. Used to assign parsed values.
12
+ * @returns If `obj` is specified, it is equivalent to `obj`.
11
13
  */
12
14
  export function parseHeaders(
13
- headers:
14
- | Record<string, string | string[]>
15
- | (Buffer | string | (Buffer | string)[])[]
16
- ): Record<string, string | string[]>;
17
- /**
18
- * Receives a header object and returns the parsed value.
19
- * @param headers Header object
20
- * @param obj Object to specify a proxy object. Used to assign parsed values. But, if `headers` is an object, it is not used.
21
- * @returns If `headers` is an object, it is `headers`. Otherwise, if `obj` is specified, it is equivalent to `obj`.
22
- */
23
- export function parseHeaders<
24
- H extends
25
- | Record<string, string | string[]>
26
- | (Buffer | string | (Buffer | string)[])[]
27
- >(
28
- headers: H,
29
- obj?: H extends any[] ? Record<string, string | string[]> : never
15
+ headers: (Buffer | string | (Buffer | string)[])[],
16
+ obj?: Record<string, string | string[]>
30
17
  ): Record<string, string | string[]>;
31
18
  }
@@ -55,7 +55,9 @@ interface WebidlUtil {
55
55
  V: unknown,
56
56
  bitLength: number,
57
57
  signedness: 'signed' | 'unsigned',
58
- opts?: ConvertToIntOpts
58
+ opts?: ConvertToIntOpts,
59
+ prefix: string,
60
+ argument: string
59
61
  ): number
60
62
 
61
63
  /**
@@ -73,14 +75,14 @@ interface WebidlConverters {
73
75
  /**
74
76
  * @see https://webidl.spec.whatwg.org/#es-DOMString
75
77
  */
76
- DOMString (V: unknown, opts?: {
78
+ DOMString (V: unknown, prefix: string, argument: string, opts?: {
77
79
  legacyNullToEmptyString: boolean
78
80
  }): string
79
81
 
80
82
  /**
81
83
  * @see https://webidl.spec.whatwg.org/#es-ByteString
82
84
  */
83
- ByteString (V: unknown): string
85
+ ByteString (V: unknown, prefix: string, argument: string): string
84
86
 
85
87
  /**
86
88
  * @see https://webidl.spec.whatwg.org/#es-USVString
@@ -204,7 +206,7 @@ export interface Webidl {
204
206
  */
205
207
  dictionaryConverter (converters: {
206
208
  key: string,
207
- defaultValue?: unknown,
209
+ defaultValue?: () => unknown,
208
210
  required?: boolean,
209
211
  converter: (...args: unknown[]) => unknown,
210
212
  allowedValues?: unknown[]
@@ -218,8 +220,5 @@ export interface Webidl {
218
220
  converter: Converter<T>
219
221
  ): (V: unknown) => ReturnType<typeof converter> | null
220
222
 
221
- argumentLengthCheck (args: { length: number }, min: number, context: {
222
- header: string
223
- message?: string
224
- }): void
223
+ argumentLengthCheck (args: { length: number }, min: number, context: string): void
225
224
  }
package/package.json CHANGED
@@ -93,7 +93,7 @@
93
93
  "publishConfig": {
94
94
  "access": "public"
95
95
  },
96
- "version": "3.0.81",
96
+ "version": "3.0.82",
97
97
  "jest": {
98
98
  "coverageProvider": "v8",
99
99
  "testMatch": [