File tree Expand file tree Collapse file tree 6 files changed +9
-8
lines changed
client-pinpoint-browser/types
credential-provider-process/src
src/ServiceCustomizations/customizationsFromModel Expand file tree Collapse file tree 6 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 37
37
"jest" : " ^24.7.1" ,
38
38
"lerna" : " 3.14.1" ,
39
39
"lint-staged" : " ^9.0.0" ,
40
- "prettier" : " 1.17.0 " ,
40
+ "prettier" : " 1.18.2 " ,
41
41
"typescript" : " ~3.4.0"
42
42
},
43
43
"workspaces" : [
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ export interface _SendUsersMessageResponse {
30
30
[
31
31
string ,
32
32
33
+
33
34
| { [ key : string ] : _EndpointMessageResult }
34
35
| Iterable < [ string , _EndpointMessageResult ] >
35
36
]
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ async function resolveProcessCredentials(
90
90
`Profile ${ profileName } credential_process returned expired credentials.`
91
91
) ;
92
92
}
93
- expirationUnix = Math . floor ( new Date ( expiration ) . valueOf ( ) / 1000 )
93
+ expirationUnix = Math . floor ( new Date ( expiration ) . valueOf ( ) / 1000 ) ;
94
94
}
95
95
96
96
return {
Original file line number Diff line number Diff line change 28
28
"@aws-sdk/service-types-generator" : " ^0.1.0-preview.6" ,
29
29
"@aws-sdk/types" : " ^0.1.0-preview.3" ,
30
30
"glob" : " ^7.1.2" ,
31
+ "prettier" : " 1.18.2" ,
31
32
"rimraf" : " ^2.6.2" ,
32
33
"semver" : " ^6.0.0" ,
33
34
"tslib" : " ^1.8.0" ,
34
- "yargs" : " ^8.0.2" ,
35
- "prettier" : " 1.17.0"
35
+ "yargs" : " ^8.0.2"
36
36
},
37
37
"devDependencies" : {
38
38
"@types/glob" : " ^7.1.1" ,
39
39
"@types/jest" : " ^24.0.12" ,
40
40
"@types/node" : " ^10.0.0" ,
41
+ "@types/prettier" : " 1.16.4" ,
41
42
"@types/rimraf" : " ^2.0.2" ,
42
43
"@types/semver" : " ^6.0.0" ,
43
44
"@types/yargs" : " ^8.0" ,
44
- "@types/prettier" : " 1.16.3" ,
45
45
"jest" : " ^24.7.1" ,
46
46
"typescript" : " ~3.4.0"
47
47
}
Original file line number Diff line number Diff line change 6
6
"dependencies" : {
7
7
"@aws-sdk/build-types" : " ^0.1.0-preview.3" ,
8
8
"@aws-sdk/types" : " ^0.1.0-preview.3" ,
9
- "prettier" : " 1.17.0 " ,
9
+ "prettier" : " 1.18.2 " ,
10
10
"tslib" : " ^1.8.0"
11
11
},
12
12
"devDependencies" : {
13
13
"@types/jest" : " ^24.0.12" ,
14
14
"@types/node" : " ^10.0.0" ,
15
- "@types/prettier" : " 1.16.3 " ,
15
+ "@types/prettier" : " 1.16.4 " ,
16
16
"jest" : " ^24.7.1" ,
17
17
"typescript" : " ~3.4.0"
18
18
},
Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ function signerProperty(
199
199
const typesPackage = packageNameToVariable ( "@aws-sdk/types" ) ;
200
200
// for sig version not 's3' or 's3v4', the uriEscapePath should be true
201
201
const uriEscapePath = [ "s3" , "s3v4" ] . indexOf ( metadata . signatureVersion ) < 0 ;
202
-
202
+
203
203
return {
204
204
type : "unified" ,
205
205
inputType : `${ typesPackage } .RequestSigner` ,
You can’t perform that action at this time.
0 commit comments