Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion attw.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
"brainhubeu__react-carousel",
"bramus__pagination-sequence",
"browserify",
"bwip-js",
"byte-size",
"call-bind",
"casperjs",
Expand Down
12 changes: 12 additions & 0 deletions notNeededPackages.json
Original file line number Diff line number Diff line change
Expand Up @@ -620,6 +620,10 @@
"libraryName": "burns",
"asOfVersion": "2.1.0"
},
"bwip-js": {
"libraryName": "bwip-js",
"asOfVersion": "4.0.0"
},
"cache-manager": {
"libraryName": "cache-manager",
"asOfVersion": "5.0.0"
Expand Down Expand Up @@ -4601,6 +4605,10 @@
"libraryName": "mobx-task",
"asOfVersion": "2.0.0"
},
"moc-better-sqlite3": {
"libraryName": "moc-better-sqlite3",
"asOfVersion": "7.0.2"
},
"mock-property": {
"libraryName": "mock-property",
"asOfVersion": "1.1.0"
Expand Down Expand Up @@ -4729,6 +4737,10 @@
"libraryName": "nano",
"asOfVersion": "7.0.0"
},
"nanoassert": {
"libraryName": "nanoassert",
"asOfVersion": "3.0.0"
},
"nanoevents": {
"libraryName": "nanoevents",
"asOfVersion": "3.0.0"
Expand Down
5 changes: 4 additions & 1 deletion types/aws-lambda/test/api-gateway-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,10 @@ const proxyHandlerv2WithJKTAuthorizer: APIGatewayProxyHandlerV2WithJWTAuthorizer
authorizer.jwt.scopes;
// All non-null or undefined types are converted to string.
obj = authorizer.jwt.claims;
array = authorizer.jwt.scopes;
if (authorizer.jwt.scopes !== null) {
array = authorizer.jwt.scopes;
}
const nullableScopes: string[] | null = authorizer.jwt.scopes;
// And these extra properties are added
str = authorizer.principalId;
num = authorizer.integrationLatency;
Expand Down
2 changes: 1 addition & 1 deletion types/aws-lambda/trigger/api-gateway-proxy.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ export interface APIGatewayEventRequestContextJWTAuthorizer {
integrationLatency: number;
jwt: {
claims: { [name: string]: string | number | boolean | string[] };
scopes: string[];
scopes: string[] | null;
};
}

Expand Down
5 changes: 0 additions & 5 deletions types/bwip-js/.eslintrc.json

This file was deleted.

172 changes: 0 additions & 172 deletions types/bwip-js/bwip-js-tests.ts

This file was deleted.

Loading