aws-delivlib 14.15.30 → 14.15.32

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.
@@ -50,9 +50,9 @@
50
50
  "@types/aws-lambda@^8.10.83": "https://registry.yarnpkg.com/@types/aws-lambda/-/aws-lambda-8.10.147.tgz#dc5c89aa32f47a9b35e52c32630545c83afa6f2f",
51
51
  "@types/btoa-lite@^1.0.0": "https://registry.yarnpkg.com/@types/btoa-lite/-/btoa-lite-1.0.2.tgz#82bb6aab00abf7cff3ca2825abe010c0cd536ae5",
52
52
  "@types/changelog-parser@^2.8.1": "https://registry.yarnpkg.com/@types/changelog-parser/-/changelog-parser-2.8.4.tgz#45d70417e742ac3bc6bef3786aa453e1f1d63ecc",
53
- "@types/jsonwebtoken@^9.0.0": "https://registry.yarnpkg.com/@types/jsonwebtoken/-/jsonwebtoken-9.0.8.tgz#313490052801edfb031bb32b6bbd77cc9f230852",
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.13.4.tgz#3fe454d77cd4a2d73c214008b3e331bfaaf5038a",
55
+ "@types/node@*": "https://registry.yarnpkg.com/@types/node/-/node-22.13.5.tgz#23add1d71acddab2c6a4d31db89c0f98d330b511",
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",
@@ -8,7 +8,7 @@ This package contains type definitions for jsonwebtoken (https://github.com/auth
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jsonwebtoken.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Fri, 24 Jan 2025 08:35:18 GMT
11
+ * Last updated: Sat, 22 Feb 2025 08:03:24 GMT
12
12
  * Dependencies: [@types/ms](https://npmjs.com/package/@types/ms), [@types/node](https://npmjs.com/package/@types/node)
13
13
 
14
14
  # Credits
@@ -85,12 +85,12 @@ export type VerifyErrors =
85
85
  | TokenExpiredError;
86
86
  export type VerifyCallback<T = Jwt | JwtPayload | string> = (
87
87
  error: VerifyErrors | null,
88
- decoded: T | undefined,
88
+ decoded?: T | undefined,
89
89
  ) => void;
90
90
 
91
91
  export type SignCallback = (
92
92
  error: Error | null,
93
- encoded: string | undefined,
93
+ encoded?: string | undefined,
94
94
  ) => void;
95
95
 
96
96
  // standard names https://www.rfc-editor.org/rfc/rfc7515.html#section-4.1
@@ -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: Thu, 13 Feb 2025 22:34:15 GMT
11
+ * Last updated: Fri, 21 Feb 2025 20:33:17 GMT
12
12
  * Dependencies: [undici-types](https://npmjs.com/package/undici-types)
13
13
 
14
14
  # Credits
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "22.13.4",
3
+ "version": "22.13.5",
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.20.0"
216
216
  },
217
217
  "peerDependencies": {},
218
- "typesPublisherContentHash": "dc164d6e72b86dd792e2033448f0a31cec674ea22fb6cbaf0dc05885f4337473",
218
+ "typesPublisherContentHash": "f50d94abf6b192ce8d4087c8e3714bfeea42915f01b0f6338f726e5286a67f3a",
219
219
  "typeScriptVersion": "5.0"
220
220
  }
@@ -10,7 +10,7 @@
10
10
  * work:
11
11
  *
12
12
  * ```js
13
- * import sqlite from 'node:sqlite';
13
+ * import sqlite from 'sqlite';
14
14
  * ```
15
15
  *
16
16
  * The following example shows the basic usage of the `node:sqlite` module to open
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/jsonwebtoken",
3
- "version": "9.0.8",
3
+ "version": "9.0.9",
4
4
  "description": "TypeScript definitions for jsonwebtoken",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jsonwebtoken",
6
6
  "license": "MIT",
@@ -79,6 +79,6 @@
79
79
  "@types/node": "*"
80
80
  },
81
81
  "peerDependencies": {},
82
- "typesPublisherContentHash": "9cb3f377ff85102b88de21c56a894e35633e74cb51f4cbb7cd9c8aed600ad823",
82
+ "typesPublisherContentHash": "1af47fd7adaac303d61fe420f090b7c63e0654a22805acad05550770fa3f5d9c",
83
83
  "typeScriptVersion": "5.0"
84
84
  }
package/package.json CHANGED
@@ -53,7 +53,7 @@
53
53
  "@typescript-eslint/eslint-plugin": "^8",
54
54
  "@typescript-eslint/parser": "^8",
55
55
  "adm-zip": "^0.5.16",
56
- "aws-cdk": "2.1000.2",
56
+ "aws-cdk": "2.1000.3",
57
57
  "aws-cdk-lib": "^2.150.0",
58
58
  "commit-and-tag-version": "^12",
59
59
  "constructs": "10.1.31",
@@ -68,11 +68,11 @@
68
68
  "JSONStream": "^1.3.5",
69
69
  "minipass": "3.2.1",
70
70
  "node-ical": "0.15.1",
71
- "projen": "^0.91.12",
71
+ "projen": "^0.91.13",
72
72
  "rrule": "^2.8.1",
73
73
  "standard-version": "^9",
74
74
  "tar": "^6.2.1",
75
- "ts-jest": "^29.2.5",
75
+ "ts-jest": "^29.2.6",
76
76
  "ts-node": "^10.9.2",
77
77
  "typescript": "~4.9.5"
78
78
  },
@@ -97,7 +97,7 @@
97
97
  "publishConfig": {
98
98
  "access": "public"
99
99
  },
100
- "version": "14.15.30",
100
+ "version": "14.15.32",
101
101
  "jest": {
102
102
  "coverageProvider": "v8",
103
103
  "testMatch": [