aws-delivlib 14.15.73 → 14.15.74
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.
- package/lib/publishing/github/node_modules/.yarn-integrity +1 -1
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/README.md +1 -1
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/package.json +2 -2
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/util.d.ts +12 -6
- package/package.json +1 -1
@@ -52,7 +52,7 @@
|
|
52
52
|
"@types/changelog-parser@^2.8.1": "https://registry.yarnpkg.com/@types/changelog-parser/-/changelog-parser-2.8.4.tgz#45d70417e742ac3bc6bef3786aa453e1f1d63ecc",
|
53
53
|
"@types/jsonwebtoken@^9.0.0": "https://registry.yarnpkg.com/@types/jsonwebtoken/-/jsonwebtoken-9.0.9.tgz#a4c3a446c0ebaaf467a58398382616f416345fb3",
|
54
54
|
"@types/ms@*": "https://registry.yarnpkg.com/@types/ms/-/ms-2.1.0.tgz#052aa67a48eccc4309d7f0191b7e41434b90bb78",
|
55
|
-
"@types/node@*": "https://registry.yarnpkg.com/@types/node/-/node-22.14.
|
55
|
+
"@types/node@*": "https://registry.yarnpkg.com/@types/node/-/node-22.14.1.tgz#53b54585cec81c21eee3697521e31312d6ca1e6f",
|
56
56
|
"@types/node@^14": "https://registry.yarnpkg.com/@types/node/-/node-14.18.63.tgz#1788fa8da838dbb5f9ea994b834278205db6ca2b",
|
57
57
|
"aggregate-error@^3.1.0": "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a",
|
58
58
|
"before-after-hook@^2.2.0": "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.2.3.tgz#c51e809c81a4e354084422b9b26bad88249c517c",
|
package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/README.md
CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for node (https://nodejs.org/).
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node.
|
9
9
|
|
10
10
|
### Additional Details
|
11
|
-
* Last updated:
|
11
|
+
* Last updated: Fri, 11 Apr 2025 21:33:04 GMT
|
12
12
|
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)
|
13
13
|
|
14
14
|
# Credits
|
package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@types/node",
|
3
|
-
"version": "22.14.
|
3
|
+
"version": "22.14.1",
|
4
4
|
"description": "TypeScript definitions for node",
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
6
6
|
"license": "MIT",
|
@@ -215,6 +215,6 @@
|
|
215
215
|
"undici-types": "~6.21.0"
|
216
216
|
},
|
217
217
|
"peerDependencies": {},
|
218
|
-
"typesPublisherContentHash": "
|
218
|
+
"typesPublisherContentHash": "666e3d9e77ea72fce79aa22dfe4006fda32f236b986a7afa862b545ff146046f",
|
219
219
|
"typeScriptVersion": "5.1"
|
220
220
|
}
|
package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/util.d.ts
CHANGED
@@ -1561,11 +1561,17 @@ declare module "util" {
|
|
1561
1561
|
* @return The parsed command line arguments:
|
1562
1562
|
*/
|
1563
1563
|
export function parseArgs<T extends ParseArgsConfig>(config?: T): ParsedResults<T>;
|
1564
|
-
|
1564
|
+
|
1565
|
+
/**
|
1566
|
+
* Type of argument used in {@link parseArgs}.
|
1567
|
+
*/
|
1568
|
+
export type ParseArgsOptionsType = "boolean" | "string";
|
1569
|
+
|
1570
|
+
export interface ParseArgsOptionDescriptor {
|
1565
1571
|
/**
|
1566
1572
|
* Type of argument.
|
1567
1573
|
*/
|
1568
|
-
type:
|
1574
|
+
type: ParseArgsOptionsType;
|
1569
1575
|
/**
|
1570
1576
|
* Whether this option can be provided multiple times.
|
1571
1577
|
* If `true`, all values will be collected in an array.
|
@@ -1586,8 +1592,8 @@ declare module "util" {
|
|
1586
1592
|
*/
|
1587
1593
|
default?: string | boolean | string[] | boolean[] | undefined;
|
1588
1594
|
}
|
1589
|
-
interface ParseArgsOptionsConfig {
|
1590
|
-
[longOption: string]:
|
1595
|
+
export interface ParseArgsOptionsConfig {
|
1596
|
+
[longOption: string]: ParseArgsOptionDescriptor;
|
1591
1597
|
}
|
1592
1598
|
export interface ParseArgsConfig {
|
1593
1599
|
/**
|
@@ -1639,7 +1645,7 @@ declare module "util" {
|
|
1639
1645
|
: T extends true ? IfTrue
|
1640
1646
|
: IfFalse;
|
1641
1647
|
|
1642
|
-
type ExtractOptionValue<T extends ParseArgsConfig, O extends
|
1648
|
+
type ExtractOptionValue<T extends ParseArgsConfig, O extends ParseArgsOptionDescriptor> = IfDefaultsTrue<
|
1643
1649
|
T["strict"],
|
1644
1650
|
O["type"] extends "string" ? string : O["type"] extends "boolean" ? boolean : string | boolean,
|
1645
1651
|
string | boolean
|
@@ -1672,7 +1678,7 @@ declare module "util" {
|
|
1672
1678
|
|
1673
1679
|
type PreciseTokenForOptions<
|
1674
1680
|
K extends string,
|
1675
|
-
O extends
|
1681
|
+
O extends ParseArgsOptionDescriptor,
|
1676
1682
|
> = O["type"] extends "string" ? {
|
1677
1683
|
kind: "option";
|
1678
1684
|
index: number;
|